diff --git a/.gitignore b/.gitignore
index 383fd21c639c75b1cbbdcc8002bef28be69ec4c4..ad5e7f26ed0705c8ef3e0e3d98dc76907b40e3d2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,4 @@ src/plugin_examples/*/
 .vscode
 .idea
 deploy/datasets/data/
+.DS_Store
diff --git a/.vscode/launch.json b/.vscode/launch.json
deleted file mode 100644
index 7073e92f60c04685964761920c916969cee8c876..0000000000000000000000000000000000000000
--- a/.vscode/launch.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
-    // Use IntelliSense to learn about possible attributes.
-    // Hover to view descriptions of existing attributes.
-    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
-    "version": "0.2.0",
-    "configurations": [
-        {
-            "type": "node",
-            "request": "launch",
-            "name": "Launch Program",
-            "program": "${workspaceFolder}/src/ui/databrowserModule/databrowser.service.ts",
-            "outFiles": [
-                "${workspaceFolder}/**/*.js"
-            ]
-        }
-    ]
-}
\ No newline at end of file
diff --git a/Dockerfile b/Dockerfile
index a20f2d36324fee46ce3a90f029ba9361839ab550..67876d05bf57addb564b5e6c48622c12719ef1ab 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM node:8 as builder
+FROM node:10 as builder
 
 ARG BACKEND_URL
 ENV BACKEND_URL=$BACKEND_URL
@@ -8,12 +8,23 @@ WORKDIR /iv
 
 ENV VERSION=devNext
 
+RUN apt update && apt upgrade -y && apt install brotli
+
 RUN npm i
 RUN npm run build-aot
 
+# gzipping container
+FROM ubuntu:18.10 as compressor
+RUN apt upgrade -y && apt update && apt install brotli
+
+RUN mkdir /iv
+COPY --from=builder /iv/dist/aot /iv
+WORKDIR /iv
+
+RUN for f in $(find . -type f); do gzip < $f > $f.gz && brotli < $f > $f.br; done
 
 # prod container
-FROM node:8-alpine 
+FROM node:10-alpine 
 
 ARG PORT
 ENV PORT=$PORT
@@ -23,14 +34,15 @@ RUN apk --no-cache add ca-certificates
 RUN mkdir /iv-app
 WORKDIR /iv-app
 
-# Copy built interactive viewer
-COPY --from=builder /iv/dist/aot ./public
-
 # Copy the express server
 COPY --from=builder /iv/deploy .
 
+# Copy built interactive viewer
+COPY --from=compressor /iv ./public
+
 # Copy the resources files needed to respond to queries
-COPY --from=builder /iv/src/res/ext ./res
+# is this even necessary any more?
+COPY --from=compressor /iv/res/json ./res
 RUN npm i
 
 EXPOSE $PORT
diff --git a/README.md b/README.md
index 3481157abf73562adf36db5ae3eb836009a7c064..7e5bf0ced2ed36396ee0d75aaabba9f79996b27c 100644
--- a/README.md
+++ b/README.md
@@ -9,6 +9,8 @@ A live version of the Interactive Atlas Viewer is available at [https://kg.human
 ### General information
 Interactive atlas viewer is built with [Angular (v6.0)](https://angular.io/), [Bootstrap (v4)](http://getbootstrap.com/), and [fontawesome icons](https://fontawesome.com/). Some other notable packages used are: [ng2-charts](https://valor-software.com/ng2-charts/) for charts visualisation, [ngx-bootstrap](https://valor-software.com/ngx-bootstrap/) for UI and [ngrx/store](https://github.com/ngrx/platform) for state management. 
 
+Releases newer than [v0.2.9](https://github.com/HumanBrainProject/interactive-viewer/tree/v0.2.9) also uses a nodejs backend, which uses [passportjs](http://www.passportjs.org/) for user authentication, [express](https://expressjs.com/) as a http framework.
+
 ### Prerequisites
 
 - node > 6
@@ -19,27 +21,48 @@ Interactive atlas viewer is built with [Angular (v6.0)](https://angular.io/), [B
 To run a dev server, run:
 
 ```
-git clone https://github.com/HumanBrainProject/interactive-viewer
-cd interactive-viewer
-npm i
-npm run dev-server
+$ git clone https://github.com/HumanBrainProject/interactive-viewer
+$ cd interactive-viewer
+$ npm i
+$ npm run dev
 ```
 
 ### Develop Plugins
 
-To develop plugins for the interactive viewer, run:
+For releases newer than [v0.2.9](https://github.com/HumanBrainProject/interactive-viewer/tree/v0.2.9), Interactive Atlas Viewer attempts to fetch `GET {BACKEND_URL}/plugins` to retrieve a list of URLs. The interactive atlas viewer will then perform a `GET` request for each of the listed URLs, parsing them as [manifests](src/plugin_examples/README.md#Manifest%20JSON).
+
+The backend reads the environment variable `PLUGIN_URLS` and separate the string with `;` as a delimiter. In order to return a response akin to the following:
+
+```JSON
+["http://localhost:3001/manifest.json","http://localhost:9001/manifest.json"]
+```
+
+Plugin developers may choose to do any of the following:
+
+_shell_
+
+set env var every time
+
+```bash
+$ PLUGIN_URLS=http://localhost:3001/manifest.json;http://localhost:9001/manifest.json npm run dev
+```
+
+_dotenv_
+
+set a `.env` file in `./deploy/` once
+
+```bash
+$ echo `PLUGIN_URLS=http://localhost:3001/manifest.json;http://localhost:9001/manifest.json` > ./deploy/.env
 ```
-git clone https://github.com/HumanBrainProject/interactive-viewer
-cd interactive-viewer
-npm i
-npm run dev-plugin
 
-/* or define your own endpoint that returns string of manifests */
-PLUGINDEV=http://mycustom.io/allPluginmanifest npm run dev-server
+then, simple start the dev process with
 
+```bash
+$ npm run dev
 ```
 
-The contents inside the folder in `./src/plugin_examples` will be automatically fetched by the dev instance of the interactive-viewer on load. 
+Plugin developers can start their own webserver, use [interactive-viewer-plugin-template](https://github.com/HumanBrainProject/interactive-viewer-plugin-template), or (coming soon) provide link to a github repository.
+
 
 [plugin readme](src/plugin_examples/README.md)
 
@@ -48,19 +71,17 @@ The contents inside the folder in `./src/plugin_examples` will be automatically
 [plugin migration guide](src/plugin_examples/migrationGuide.md)
 
 
-## Deployment
+## Compilation
 
 `package.json` provide with two ways of building the interactive atlas viewer, `JIT` or `AOT` compilation. In general, `AOT` compilation produces a smaller package and has better performance. 
 
-## AOT compilation
-
-Define `BUNDLEDPLUGINS` as a comma separated environment variables to bundle the plugins. 
+### AOT compilation
 
 ```
-[BUNDLEDPLUGINS=pluginDir1[,pluginDir2...]] npm run build-aot
+npm run build-aot
 ```
 
-## JIT Compilation
+### JIT Compilation
 ```
 npm run build
 
@@ -69,6 +90,21 @@ npm run build
 npm run build-min
 ```
 
+### Docker
+
+The repository also provides a `Dockerfile`. Here are the environment variables used:
+
+_build time_
+- __BACKEND_URL__ : same as `HOSTNAME` during run time. Needed as root URL when fetching templates / datasets etc. If left empty, will fetch without hostname.
+
+_run time_
+
+- __SESSION_SECRET__ : needed for session
+- __HOSTNAME__ : needed for OIDC redirect
+- __HBP_CLIENTID__ : neded for OIDC authentication
+- __HBP_CLIENTSECRET__ : needed for OIDC authentication
+- __PLUGIN_URLS__ : optional. Allows plugins to be populated
+- __REFRESH_TOKEN__ : needed for access of public data
 
 ## Contributing
 
@@ -80,4 +116,4 @@ Commit history prior to v0.2.0 is available in the [legacy-v0.2.0](https://githu
 
 ## License
 
-MIT
+TO BE DECIDED
\ No newline at end of file
diff --git a/deploy/app.js b/deploy/app.js
index bd6d3be4b0de6ce041fbafdb6f250d1b7d50d797..9cff68eecab451b4656f6bb6c39738d722d9d594 100644
--- a/deploy/app.js
+++ b/deploy/app.js
@@ -3,6 +3,7 @@ const express = require('express')
 const app = express()
 const session = require('express-session')
 const MemoryStore = require('memorystore')(session)
+const crypto = require('crypto')
 
 app.disable('x-powered-by')
 
@@ -10,6 +11,22 @@ if (process.env.NODE_ENV !== 'production') {
   app.use(require('cors')())
 }
 
+const hash = string => crypto.createHash('sha256').update(string).digest('hex')
+
+app.use((req, _, next) => {
+  if (/main\.bundle\.js$/.test(req.originalUrl)){
+    const xForwardedFor = req.headers['x-forwarded-for']
+    const ip = req.connection.remoteAddress
+    console.log({
+      type: 'visitorLog',
+      method: 'main.bundle.js',
+      xForwardedFor: xForwardedFor && xForwardedFor.replace(/\ /g, '').split(',').map(hash),
+      ip: hash(ip)
+    })
+  }
+  next()
+})
+
 /**
  * load env first, then load other modules
  */
@@ -32,6 +49,11 @@ app.use(session({
   store
 }))
 
+/**
+ * configure CSP
+ */
+require('./csp')(app)
+
 /**
  * configure Auth
  * async function, but can start server without
@@ -44,17 +66,35 @@ const PUBLIC_PATH = process.env.NODE_ENV === 'production'
   ? path.join(__dirname, 'public')
   : path.join(__dirname, '..', 'dist', 'aot')
 
+/**
+ * well known path
+ */
+app.use('/.well-known', express.static(path.join(__dirname, 'well-known')))
+
 app.use((_req, res, next) => {
   res.setHeader('Referrer-Policy', 'origin-when-cross-origin')
   next()
 })
 
-app.use(express.static(PUBLIC_PATH))
+/**
+ * show dev banner
+ * n.b., must be before express.static() call
+ */
+app.use(require('./devBanner'))
+
+/**
+ * only use compression for production
+ * this allows locally built aot to be served without errors
+ */
 
-app.use((req, res, next) => {
-  res.set('Content-Type', 'application/json')
+const { compressionMiddleware } = require('nomiseco')
+
+app.use(compressionMiddleware, express.static(PUBLIC_PATH))
+
+const jsonMiddleware = (req, res, next) => {
+  if (!res.get('Content-Type')) res.set('Content-Type', 'application/json')
   next()
-})
+}
 
 const templateRouter = require('./templates')
 const nehubaConfigRouter = require('./nehubaConfig')
@@ -62,13 +102,13 @@ const datasetRouter = require('./datasets')
 const pluginRouter = require('./plugins')
 const previewRouter = require('./preview')
 
-app.use('/templates', templateRouter)
-app.use('/nehubaConfig', nehubaConfigRouter)
-app.use('/datasets', datasetRouter)
-app.use('/plugins', pluginRouter)
-app.use('/preview', previewRouter)
+app.use('/templates', jsonMiddleware, templateRouter)
+app.use('/nehubaConfig', jsonMiddleware, nehubaConfigRouter)
+app.use('/datasets', jsonMiddleware, datasetRouter)
+app.use('/plugins', jsonMiddleware, pluginRouter)
+app.use('/preview', jsonMiddleware, previewRouter)
 
 const catchError = require('./catchError')
 app.use(catchError)
 
-module.exports = app
\ No newline at end of file
+module.exports = app
diff --git a/deploy/auth/hbp-oidc.js b/deploy/auth/hbp-oidc.js
index cbb7ce83f0d34de5814048a3e2986a660640f40c..a6963750d8469a224c04018c1ef63209cfa9bfc8 100644
--- a/deploy/auth/hbp-oidc.js
+++ b/deploy/auth/hbp-oidc.js
@@ -17,23 +17,27 @@ const cb = (tokenset, {sub, given_name, family_name, ...rest}, done) => {
 }
 
 module.exports = async (app) => {
-  const { oidcStrategy } = await configureAuth({
-    clientId,
-    clientSecret,
-    discoveryUrl,
-    redirectUri,
-    cb,
-    scope: 'openid offline_access',
-    clientConfig: {
-      redirect_uris: [ redirectUri ],
-      response_types: [ 'code' ]
-    }
-  })
-  
-  passport.use('hbp-oidc', oidcStrategy)
-  app.get('/hbp-oidc/auth', passport.authenticate('hbp-oidc'))
-  app.get('/hbp-oidc/cb', passport.authenticate('hbp-oidc', {
-    successRedirect: '/',
-    failureRedirect: '/'
-  }))
+  try {
+    const { oidcStrategy } = await configureAuth({
+      clientId,
+      clientSecret,
+      discoveryUrl,
+      redirectUri,
+      cb,
+      scope: 'openid offline_access',
+      clientConfig: {
+        redirect_uris: [ redirectUri ],
+        response_types: [ 'code' ]
+      }
+    })
+    
+    passport.use('hbp-oidc', oidcStrategy)
+    app.get('/hbp-oidc/auth', passport.authenticate('hbp-oidc'))
+    app.get('/hbp-oidc/cb', passport.authenticate('hbp-oidc', {
+      successRedirect: '/',
+      failureRedirect: '/'
+    }))
+  } catch (e) {
+    console.error(e)
+  }
 }
diff --git a/deploy/auth/index.js b/deploy/auth/index.js
index bfd8fab1724d4a1f052734684b2440baa1374e79..4f0f75a53c987f8207cd943cc7923acd704ef974 100644
--- a/deploy/auth/index.js
+++ b/deploy/auth/index.js
@@ -14,10 +14,8 @@ module.exports = async (app) => {
 
   passport.deserializeUser((id, done) => {
     const user = objStoreDb.get(id)
-    if (user) 
-      return done(null, user)
-    else
-      return done(null, false)
+    if (user) return done(null, user)
+    else return done(null, false)
   })
 
   await hbpOidc(app)
@@ -26,7 +24,7 @@ module.exports = async (app) => {
     if (req.user) {
       return res.status(200).send(JSON.stringify(req.user))
     } else {
-      return res.sendStatus(401)
+      return res.status(401).end()
     }
   })
 
diff --git a/deploy/catchError.js b/deploy/catchError.js
index 0fdc484348a9e6f8e1f1fc9072eaec5b8de5e1d9..cba45cc581ea605cafa6e66a4bfa6478c3536907 100644
--- a/deploy/catchError.js
+++ b/deploy/catchError.js
@@ -1,11 +1,13 @@
-module.exports = ({code = 500, error = 'an error had occured', trace = 'undefined trace'}, req, res, next) => {
+module.exports = (raw, req, res, next) => {
   /**
    * probably use more elaborate logging?
    */
-  console.log('Catching error', {
+  const { code, error, trace } = raw
+  console.error('Catching error', {
     code,
     error,
-    trace
+    trace,
+    raw
   })
-  res.status(code).send()
+  res.status(code || 500).end()
 }
\ No newline at end of file
diff --git a/deploy/csp/index.js b/deploy/csp/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..4ce347a10fbce23d2d50acd0ed02f1f4a3e9f9db
--- /dev/null
+++ b/deploy/csp/index.js
@@ -0,0 +1,79 @@
+const csp = require('helmet-csp')
+const bodyParser = require('body-parser')
+
+let ALLOWED_DEFAULT_SRC, DATA_SRC
+
+const reportOnly = process.env.NODE_ENV !== 'production'
+
+try {
+  ALLOWED_DEFAULT_SRC = JSON.parse(process.env.ALLOWED_DEFAULT_SRC || '[]')
+} catch (e) {
+  console.warn(`parsing ALLOWED_DEFAULT_SRC error ${process.env.ALLOWED_DEFAULT_SRC}`, e)
+  ALLOWED_DEFAULT_SRC = []
+}
+
+try {
+  DATA_SRC = JSON.parse(process.env.DATA_SRC || '[]')
+} catch (e) {
+  console.warn(`parsing DATA_SRC error ${process.env.DATA_SRC}`, e)
+  DATA_SRC = []
+}
+
+const defaultAllowedSites = [
+  "'self'",
+  '*.apps.hbp.eu',
+  '*.apps-dev.hbp.eu'
+]
+
+const dataSource = [
+  "'self'",
+  '*.humanbrainproject.org',
+  '*.humanbrainproject.eu',
+  '*.fz-juelich.de',
+  ...DATA_SRC
+]
+
+module.exports = (app) => {
+  app.use(csp({
+    directives: {
+      defaultSrc: [
+        ...defaultAllowedSites
+      ],
+      styleSrc: [
+        ...defaultAllowedSites,
+        '*.bootstrapcdn.com',
+        '*.fontawesome.com',
+        "'unsafe-inline'" // required for angular [style.xxx] bindings
+      ],
+      fontSrc: [ '*.fontawesome.com' ],
+      connectSrc: [
+        ...defaultAllowedSites,
+        ...dataSource
+      ],
+      scriptSrc:[
+        "'self'",
+        '*.apps.hbp.eu',
+        '*.apps-dev.hbp.eu',
+        '*.jquery.com',
+        '*.cloudflare.com',
+        'unpkg.com',
+        '*.unpkg.com',
+        '*.jsdelivr.net',
+        ...ALLOWED_DEFAULT_SRC
+      ],
+      reportUri: '/report-violation'
+    },
+    reportOnly
+  }))
+
+  app.post('/report-violation', bodyParser.json({
+    type: ['json', 'application/csp-report']
+  }), (req, res) => {
+    if (req.body) {
+      console.warn(`CSP Violation: `, req.body)
+    } else {
+      console.warn(`CSP Violation: no data received!`)
+    }
+    res.status(204).end()
+  })
+}
\ No newline at end of file
diff --git a/deploy/datasets/index.js b/deploy/datasets/index.js
index f286bf4440153eced78be31fe5b0237b411bba6f..1a7bc99122ff035e95632d5e6d6772a669a99cf4 100644
--- a/deploy/datasets/index.js
+++ b/deploy/datasets/index.js
@@ -2,29 +2,57 @@ const express = require('express')
 const path = require('path')
 const fs = require('fs')
 const datasetsRouter = express.Router()
-const { init, getDatasets, getPreview } = require('./query')
+const { init, getDatasets, getPreview, getDatasetFromId, getDatasetFileAsZip, getTos, hasPreview } = require('./query')
+const { retry } = require('./util')
 const url = require('url')
 const qs = require('querystring')
 
 const bodyParser = require('body-parser')
+
 datasetsRouter.use(bodyParser.urlencoded({ extended: false }))
 datasetsRouter.use(bodyParser.json())
 
+init()
+  .then(() => console.log(`dataset init success`))
+  .catch(e => {
+    console.warn(`dataset init failed`, e)
+    retry(() => init())
+  })
 
-init().catch(e => {
-  console.warn(`dataset init failed`, e)
-})
+const cacheMaxAge24Hr = (_req, res, next) => {
+  const oneDay = 24 * 60 * 60
+  res.setHeader('Cache-Control', `max-age=${oneDay}`)
+  next()
+}
 
-datasetsRouter.use((req, res, next) => {
+const noCacheMiddleWare = (_req, res, next) => {
   res.setHeader('Cache-Control', 'no-cache')
   next()
-})
+}
 
+const getVary = (headers) => (_req, res, next) => {
+  if (!headers instanceof Array) {
+    console.warn(`getVary arguments needs to be an Array of string`)
+    return next()
+  }
+  res.setHeader('Vary', headers.join(', '))
+  next()
+}
 
 
-datasetsRouter.use('/spatialSearch', require('./spatialRouter'))
+datasetsRouter.get('/tos', cacheMaxAge24Hr, async (req, res) => {
+  const tos = getTos()
+  if (tos) {
+    res.setHeader('Content-Type', 'text/markdown; charset=utf-8')
+    res.status(200).send(tos)
+  } else {
+    res.status(404).end()
+  }
+})
 
-datasetsRouter.get('/templateName/:templateName', (req, res, next) => {
+datasetsRouter.use('/spatialSearch', noCacheMiddleWare, require('./spatialRouter'))
+
+datasetsRouter.get('/templateName/:templateName', noCacheMiddleWare, (req, res, next) => {
   const { templateName } = req.params
   const { user } = req
   getDatasets({ templateName, user })
@@ -40,7 +68,7 @@ datasetsRouter.get('/templateName/:templateName', (req, res, next) => {
     })
 })
 
-datasetsRouter.get('/parcellationName/:parcellationName', (req, res, next) => {
+datasetsRouter.get('/parcellationName/:parcellationName', noCacheMiddleWare, (req, res, next) => {
   const { parcellationName } = req.params
   const { user } = req
   getDatasets({ parcellationName, user })
@@ -56,7 +84,10 @@ datasetsRouter.get('/parcellationName/:parcellationName', (req, res, next) => {
     })
 })
 
-datasetsRouter.get('/preview/:datasetName', (req, res, next) => {
+/**
+ * It appears that query param are not 
+ */
+datasetsRouter.get('/preview/:datasetName', getVary(['referer']), cacheMaxAge24Hr, (req, res, next) => {
   const { datasetName } = req.params
   const ref = url.parse(req.headers.referer)
   const { templateSelected, parcellationSelected } = qs.parse(ref.query)
@@ -91,15 +122,27 @@ const PUBLIC_PATH = process.env.NODE_ENV === 'production'
 const RECEPTOR_PATH = path.join(PUBLIC_PATH, 'res', 'image')
 fs.readdir(RECEPTOR_PATH, (err, files) => {
   if (err) {
-    console.log('reading receptor error', err)
+    console.warn('reading receptor error', err)
     return
   }
   files.forEach(file => previewFileMap.set(`res/image/receptor/${file}`, path.join(RECEPTOR_PATH, file)))
 })
 
-datasetsRouter.get('/previewFile', (req, res) => {
+datasetsRouter.get('/previewFile', cacheMaxAge24Hr, (req, res) => {
   const { file } = req.query
   const filePath = previewFileMap.get(file)
+
+  // Set content type to give browser a hint for download
+  const ext = path.extname(filePath).slice(1)
+  const type = express.static.mime.types[ext]
+
+  if (type) res.setHeader('Content-Type', type)
+
+  // even though req.url is modified, req.query is not
+  // for now, just serve non encoded image
+
+  res.removeHeader('Content-Encoding')
+  
   if (filePath) {
     fs.createReadStream(filePath).pipe(res)
   } else {
@@ -107,43 +150,38 @@ datasetsRouter.get('/previewFile', (req, res) => {
   }
 })
 
+const checkKgQuery = (req, res, next) => {
+  const { kgSchema } = req.query
+  if (kgSchema !== 'minds/core/dataset/v1.0.0') return res.status(400).send('Only kgSchema is required and the only accepted value is minds/core/dataset/v1.0.0')
+  else return next()
+}
+
+datasetsRouter.get('/hasPreview', cacheMaxAge24Hr, async (req, res) => {
+  const { datasetName } = req.query
+  if (!datasetName || datasetName === '') return res.status(400).send(`datasetName as query param is required.`)
+  return res.status(200).json({
+    preview: hasPreview({ datasetName })
+  })
+})
 
+datasetsRouter.get('/kgInfo', checkKgQuery, cacheMaxAge24Hr, async (req, res) => {
+  const { kgId } = req.query
+  const { user } = req
+  const stream = await getDatasetFromId({ user, kgId, returnAsStream: true })
+  stream.pipe(res)
+})
 
-var JSZip = require("jszip");
-
-datasetsRouter.post("/downloadParcellationThemself", (req,res, next) => {
-
-
-  //ToDo We can add termsOfUse Text file somewhere - will be better
-  const termsOfUse = 'Access to the data and metadata provided through HBP Knowledge Graph Data Platform ' +
-      '("KG") requires that you cite and acknowledge said data and metadata according to the Terms and' +
-      ' Conditions of the Platform.\r\n## Citation requirements are outlined - https://www.humanbrainproject.eu/en/explore-the-brain/search-terms-of-use#citations' +
-      '\r\n## Acknowledgement requirements are outlined - https://www.humanbrainproject.eu/en/explore-the-brain/search-terms-of-use#acknowledgements' +
-      '\r\n## These outlines are based on the authoritative Terms and Conditions are found - https://www.humanbrainproject.eu/en/explore-the-brain/search-terms-of-use' +
-      '\r\n## If you do not accept the Terms & Conditions you are not permitted to access or use the KG to search for, to submit, to post, or to download any materials found there-in.'
-
-
-  var zip = new JSZip();
-
-  zip.file("Publications.txt", req.body['publicationsText'])
-  zip.file("Terms of use.txt", termsOfUse)
-
-
-
-  //ToDo: Need to download files dynamicly. Nii folder should remove
-  if (req.body['fileName'].includes("JuBrain Cytoarchitectonic Atlas")) {
-    var nii = zip.folder("nifti")
-    nii.file('jubrain-max-pmap-v22c_space-mnicolin27.nii', fs.readFileSync(path.join(__dirname, 'nii') + '/' + 'jubrain-max-pmap-v22c_space-mnicolin27.nii'))
+datasetsRouter.get('/downloadKgFiles', checkKgQuery, async (req, res) => {
+  const { kgId } = req.query
+  const { user } = req
+  try {
+    const stream = await getDatasetFileAsZip({ user, kgId })
+    res.setHeader('Content-Type', 'application/zip')
+    stream.pipe(res)
+  } catch (e) {
+    console.warn('datasets/index#downloadKgFiles', e)
+    res.status(400).send(e.toString())
   }
-
-  zip.generateAsync({type:"base64"})
-      .then(function (content) {
-        // location.href="data:application/zip;base64,"+content;
-        res.end(content)
-      });
-
-
-
-});
+})
 
 module.exports = datasetsRouter
\ No newline at end of file
diff --git a/deploy/datasets/kgtos.md b/deploy/datasets/kgtos.md
new file mode 100644
index 0000000000000000000000000000000000000000..44bc5966c7674b3bfbd5d40ff535d9464bd4ba4a
--- /dev/null
+++ b/deploy/datasets/kgtos.md
@@ -0,0 +1,16 @@
+The interactive viewer queries HBP Knowledge Graph Data Platform ("KG") for published datasets.
+
+
+Access to the data and metadata provided through KG requires that you cite and acknowledge said data and metadata according to the Terms and Conditions of the Platform.
+
+
+Citation requirements are outlined <https://www.humanbrainproject.eu/en/explore-the-brain/search-terms-of-use#citations> .
+
+
+Acknowledgement requirements are outlined <https://www.humanbrainproject.eu/en/explore-the-brain/search-terms-of-use#acknowledgements>
+
+
+These outlines are based on the authoritative Terms and Conditions are found <https://www.humanbrainproject.eu/en/explore-the-brain/search-terms-of-use>
+
+
+If you do not accept the Terms & Conditions you are not permitted to access or use the KG to search for, to submit, to post, or to download any materials found there-in.
diff --git a/deploy/datasets/nii/jubrain-max-pmap-v22c_space-mnicolin27.nii b/deploy/datasets/nii/jubrain-max-pmap-v22c_space-mnicolin27.nii
deleted file mode 100644
index 502dcb1e31b901ea3191c86717795d91880b9e3e..0000000000000000000000000000000000000000
Binary files a/deploy/datasets/nii/jubrain-max-pmap-v22c_space-mnicolin27.nii and /dev/null differ
diff --git a/deploy/datasets/query.js b/deploy/datasets/query.js
index c69cfcdac8ffc752b7195d581b95e48b824e06fb..83986048bfd30ee2eca99c1bba2cd97cddf51b6d 100644
--- a/deploy/datasets/query.js
+++ b/deploy/datasets/query.js
@@ -1,37 +1,39 @@
 const fs = require('fs')
 const request = require('request')
+const URL = require('url')
 const path = require('path')
+const archiver = require('archiver')
 const { commonSenseDsFilter } = require('./supplements/commonSense')
 const { getPreviewFile, hasPreview } = require('./supplements/previewFile')
-const { manualFilter: manualFilterDWM, manualMap: manualMapDWM } = require('./supplements/util/mapDwm')
-
-const kgQueryUtil = require('./../auth/util')
+const { init: kgQueryUtilInit, getUserKGRequestParam } = require('./util')
 
 let cachedData = null
 let otherQueryResult = null
-const queryUrl = process.env.KG_DATASET_QUERY_URL || `https://kg.humanbrainproject.org/query/minds/core/dataset/v1.0.0/interactiveViewerKgQuery/instances?size=450&vocab=https%3A%2F%2Fschema.hbp.eu%2FmyQuery%2F`
-const timeout = process.env.TIMEOUT || 5000
-const STORAGE_PATH = process.env.STORAGE_PATH || path.join(__dirname, 'data')
 
-let getPublicAccessToken
+const KG_ROOT = process.env.KG_ROOT || `https://kg.humanbrainproject.org`
+const KG_PATH = process.env.KG_PATH || `/query/minds/core/dataset/v1.0.0/interactiveViewerKgQuery-v0_3`
+const KG_PARAM = {
+  size: process.env.KG_SEARCH_SIZE || '1000',
+  vocab: process.env.KG_SEARCH_VOCAB || 'https://schema.hbp.eu/myQuery/'
+}
 
-const fetchDatasetFromKg = async (arg) => {
+const KG_QUERY_DATASETS_URL = new URL.URL(`${KG_ROOT}${KG_PATH}/instances`)
+for (let key in KG_PARAM) {
+  KG_QUERY_DATASETS_URL.searchParams.set(key, KG_PARAM[key])
+}
+
+const getKgQuerySingleDatasetUrl = ({ kgId }) => {
+  const _newUrl = new URL.URL(KG_QUERY_DATASETS_URL)
+  _newUrl.pathname = `${KG_PATH}/instances/${kgId}`
+  return _newUrl
+}
+
+const fetchDatasetFromKg = async ({ user } = {}) => {
+
+  const { releasedOnly, option } = await getUserKGRequestParam({ user })
 
-  const accessToken = arg && arg.user && arg.user.tokenset && arg.user.tokenset.access_token
-  const releasedOnly = !accessToken
-  let publicAccessToken
-  if (!accessToken && getPublicAccessToken) {
-    publicAccessToken = await getPublicAccessToken()
-  }
-  const option = accessToken || publicAccessToken || process.env.ACCESS_TOKEN
-    ? {
-        auth: {
-          'bearer': accessToken || publicAccessToken || process.env.ACCESS_TOKEN
-        }
-      }
-    : {}
   return await new Promise((resolve, reject) => {
-    request(`${queryUrl}${releasedOnly ? '&databaseScope=RELEASED' : ''}`, option, (err, resp, body) => {
+    request(`${KG_QUERY_DATASETS_URL}${releasedOnly ? '&databaseScope=RELEASED' : ''}`, option, (err, resp, body) => {
       if (err)
         return reject(err)
       if (resp.statusCode >= 400)
@@ -43,26 +45,40 @@ const fetchDatasetFromKg = async (arg) => {
 }
 
 
-const cacheData = ({results, ...rest}) => {
+const cacheData = ({ results, ...rest }) => {
   cachedData = results
   otherQueryResult = rest
   return cachedData
 }
 
-const getPublicDs = () => Promise.race([
-  new Promise((rs, rj) => {
-    setTimeout(() => {
-      if (cachedData) {
-        rs(cachedData)
-      } else {
-        /**
-         * cached data not available, have to wait
-         */
-      }
-    }, timeout)
-  }),
-  fetchDatasetFromKg().then(cacheData)
-])
+let fetchingPublicDataInProgress = false
+let getPublicDsPr
+
+const getPublicDs = async () => {
+
+  /**
+   * every request to public ds will trigger a refresh pull from master KG (throttled pending on resolved request)
+   */
+  if (!fetchingPublicDataInProgress) {
+    fetchingPublicDataInProgress = true
+    getPublicDsPr = fetchDatasetFromKg()
+      .then(_ => {
+        fetchingPublicDataInProgress = false
+        getPublicDsPr = null
+        return _
+      })
+      .then(cacheData)
+  }
+
+  if (cachedData) return Promise.resolve(cachedData)
+  if (getPublicDsPr) return getPublicDsPr
+  throw `cached Data not yet resolved, neither is get public ds defined`
+} 
+
+
+const getDs = ({ user }) => user
+  ? fetchDatasetFromKg({ user }).then(({ results }) => results)
+  : getPublicDs()
 
 /**
  * Needed by filter by parcellation
@@ -84,77 +100,90 @@ const readConfigFile = (filename) => new Promise((resolve, reject) => {
     filepath = path.join(__dirname, '..', '..', 'src', 'res', 'ext', filename)
   }
   fs.readFile(filepath, 'utf-8', (err, data) => {
-    if(err) reject(err)
+    if (err) reject(err)
     resolve(data)
   })
 })
 
-const parcellationNameToFlattenedRegion = new Map()
-
-const appendMap = (parcellation) => {
-  const { name, regions } = parcellation
-  parcellationNameToFlattenedRegion.set(name, flattenArray(regions))
+const populateSet = (flattenedRegions, set = new Set()) => {
+  if (!(set instanceof Set)) throw `set needs to be an instance of Set`
+  if (!(flattenedRegions instanceof Array)) throw `flattenedRegions needs to be an instance of Array`
+  for (const region of flattenedRegions) {
+    const { name, relatedAreas } = region
+    if (name) set.add(name)
+    if (relatedAreas && relatedAreas instanceof Array && relatedAreas.length > 0) {
+      for (const relatedArea of relatedAreas) {
+        if(typeof relatedArea === 'string') set.add(relatedArea)
+        else console.warn(`related area not an instance of String. skipping`, relatedArea)
+      }
+    }
+  }
+  return set
 }
 
-readConfigFile('bigbrain.json')
-  .then(data => JSON.parse(data))
-  .then(json => {
-    const p = json.parcellations.find(p => p.name === 'Cytoarchitectonic Maps')
-    if (p) {
-      appendMap(p)
-    }
-  })
-  .catch(console.error)
+let juBrainSet = new Set(),
+  shortBundleSet = new Set(),
+  longBundleSet = new Set(),
+  waxholm1Set = new Set(),
+  waxholm2Set = new Set(),
+  waxholm3Set = new Set(),
+  allen2015Set = new Set(),
+  allen2017Set = new Set()
 
 readConfigFile('colin.json')
   .then(data => JSON.parse(data))
   .then(json => {
-    const p = json.parcellations.find(p => p.name === 'JuBrain Cytoarchitectonic Atlas')
-    if (p) {
-      appendMap(p)
-    }
+    const juBrain = flattenArray(json.parcellations[0].regions)
+    juBrainSet = populateSet(juBrain)
+    
   })
   .catch(console.error)
 
 readConfigFile('MNI152.json')
   .then(data => JSON.parse(data))
   .then(json => {
-    const p1 = json.parcellations.find(p => p.name === 'fibre bundle long')
-    if (p1) {
-      appendMap(p1)
-    }
-    const p2 = json.parcellations.find(p => p.name === 'fibre bundle short')
-    if (p2) {
-      appendMap(p2)
-    }
+    const longBundle = flattenArray(json.parcellations.find(({ name }) => name === 'Fibre Bundle Atlas - Long Bundle').regions)
+    const shortBundle = flattenArray(json.parcellations.find(({ name }) =>  name === 'Fibre Bundle Atlas - Short Bundle').regions)
+
+    longBundleSet = populateSet(longBundle)
+    shortBundleSet = populateSet(shortBundle)
   })
   .catch(console.error)
 
 readConfigFile('waxholmRatV2_0.json')
   .then(data => JSON.parse(data))
   .then(json => {
-    const p = json.parcellations.find(p => p.name === 'Waxholm Space rat brain atlas v.2.0')
-    if (p) {
-      appendMap(p)
-    }
+    const waxholm3 = flattenArray(json.parcellations[0].regions)
+    const waxholm2 = flattenArray(json.parcellations[1].regions)
+    const waxholm1 = flattenArray(json.parcellations[2].regions)
+
+    waxholm1Set = populateSet(waxholm1)
+    waxholm2Set = populateSet(waxholm2)
+    waxholm3Set = populateSet(waxholm3)
   })
   .catch(console.error)
 
-/**
- * deprecated
- */
-const filterByPRs = (prs, atlasPr) => atlasPr
-  ? prs.some(pr => {
-      const regex = new RegExp(pr.name.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&'), 'i')
-      return atlasPr.some(aPr => regex.test(aPr.name))
-    })
-  : false
+readConfigFile('allenMouse.json')
+  .then(data => JSON.parse(data))
+  .then(json => {
+    const flattenedAllen = flattenArray(json.parcellations[0].regions)
+    allen2017Set = populateSet(flattenedAllen)
+
+    const flattenedAllen2017 = flattenArray(json.parcellations[1].regions)
+    allen2017Set = populateSet(flattenedAllen2017)
+  })
 
-const manualFilter = require('./supplements/parcellation')
+const filterByPRSet = (prs, atlasPrSet = new Set()) => {
+  if (!(atlasPrSet instanceof Set)) throw `atlasPrSet needs to be a set!`
+  return prs.some(({ name, alias }) => atlasPrSet.has(alias) || atlasPrSet.has(name))
+}
 
+const filterByPRName = ({ parcellationName = null, dataset = {parcellationAtlas: []} } = {}) => parcellationName === null || dataset.parcellationAtlas.length === 0
+  ? true
+  : (dataset.parcellationAtlas || []).some(({ name }) => name === parcellationName)
 
-const filterDataset = (datasets = [], {templateName, parcellationName}) => datasets
-  .filter(ds => commonSenseDsFilter({ds, templateName, parcellationName }))
+const filter = (datasets = [], { templateName, parcellationName }) => datasets
+  .filter(ds => commonSenseDsFilter({ ds, templateName, parcellationName }))
   .filter(ds => {
     if (/infant/.test(ds.name))
       return false
@@ -162,30 +191,51 @@ const filterDataset = (datasets = [], {templateName, parcellationName}) => datas
       return ds.referenceSpaces.some(rs => rs.name === templateName)
     }
     if (parcellationName) {
-      if (parcellationName === 'Fibre Bundle Atlas - Long Bundle'){
-        return manualFilterDWM(ds)
-      }
-      if (ds.parcellationRegion.length > 0) {
-        const flattenedRegions = parcellationNameToFlattenedRegion.get(parcellationName)
-        if (flattenedRegions) {
-          return filterByPRs(ds.parcellationRegion, flattenedRegions)
-        }
-      } else {
-        return false
+      if (ds.parcellationRegion.length === 0) return false
+
+      let useSet
+
+      // temporary measure
+      // TODO ask curaion team re name of jubrain atlas
+      let overwriteParcellationName
+      switch (parcellationName) {
+        case 'Cytoarchitectonic Maps':
+        case 'JuBrain Cytoarchitectonic Atlas': 
+          useSet = juBrainSet
+          overwriteParcellationName = 'Jülich Cytoarchitechtonic Brain Atlas (human)'
+          break;
+        case 'Fibre Bundle Atlas - Short Bundle':
+          useSet = shortBundleSet
+          break;
+        case 'Fibre Bundle Atlas - Long Bundle':
+          useSet = longBundleSet
+          break;
+        case 'Waxholm Space rat brain atlas v1':
+          useSet = waxholm1Set
+          break;
+        case 'Waxholm Space rat brain atlas v2':
+          useSet = waxholm2Set
+          break;
+        case 'Waxholm Space rat brain atlas v3':
+          useSet = waxholm3Set
+          break;
+        case 'Allen Mouse Common Coordinate Framework v3 2015':
+          useSet = allen2015Set
+          break;
+        case 'Allen Mouse Common Coordinate Framework v3 2017':
+          useSet = allen2017Set
+          break;
+        default:
+          useSet = new Set()
       }
+      return filterByPRName({ dataset: ds, parcellationName: overwriteParcellationName || parcellationName }) && filterByPRSet(ds.parcellationRegion, useSet)
     }
 
     return false
   })
   .map(ds => {
-    if (parcellationName && parcellationName === 'Fibre Bundle Atlas - Long Bundle') {
-      return manualMapDWM(ds)
-    }
     return {
       ...ds,
-      ...parcellationName && ds.parcellationRegion.length === 0
-        ? { parcellationRegion: [{ name: manualFilter({ parcellationName, dataset: ds }) }] }
-        : {},
       preview: hasPreview({ datasetName: ds.name })
     }
   })
@@ -193,69 +243,104 @@ const filterDataset = (datasets = [], {templateName, parcellationName}) => datas
 /**
  * on init, populate the cached data
  */
-exports.init = async () => {
-  const { getPublicAccessToken: getPublic } = await kgQueryUtil()
-  getPublicAccessToken = getPublic
-  const {results = []} = await fetchDatasetFromKg()
-  cachedData = results
+const init = async () => {
+  await kgQueryUtilInit()
+  return await getPublicDs()
 }
 
-exports.getDatasets = ({ templateName, parcellationName, user }) => (user
-  ? fetchDatasetFromKg({ user }).then(({results}) => results)
-  : getPublicDs())
-    .then(json => filterDataset(json, {templateName, parcellationName}))
-
-exports.getPreview = ({ datasetName, templateSelected }) => getPreviewFile({ datasetName, templateSelected })
+const getDatasets = ({ templateName, parcellationName, user }) => getDs({ user })
+  .then(json => filter(json, { templateName, parcellationName }))
 
-/**
- * TODO
- * change to real spatial query
- */
-const cachedMap = new Map()
-const fetchSpatialDataFromKg = async ({ templateName, queryArg }) => {
-  // const cachedResult = cachedMap.get(templateName)
-  // if (cachedResult) 
-  //   return cachedResult
-    
-  try {
-    const filename = path.join(STORAGE_PATH, templateName + '.json')
-    const exists = fs.existsSync(filename)
+const getPreview = ({ datasetName, templateSelected }) => getPreviewFile({ datasetName, templateSelected })
 
-    if (!exists)
-      return []
-    
-    const data = fs.readFileSync(filename, 'utf-8')
-    const json = JSON.parse(data)
-    var splitQueryArg = queryArg.split('__');
-    const cubeDots = []    
-    splitQueryArg.forEach(element => {
-      cubeDots.push(element.split('_'))
-    });
-
-    // cachedMap.set(templateName, json.filter(filterByqueryArg(cubeDots)))
-    return json.filter(filterByqueryArg(cubeDots))
-  } catch (e) {
-    console.log('datasets#query.js#fetchSpatialDataFromKg', 'read file and parse json failed', e)
-    return []
-  }
+const getDatasetFromId = async ({ user, kgId, returnAsStream = false }) => {
+  const { option, releasedOnly } = await getUserKGRequestParam({ user })
+  const _url = getKgQuerySingleDatasetUrl({ kgId })
+  if (releasedOnly) _url.searchParams.set('databaseScope', 'RELEASED')
+  if (returnAsStream) return request(_url, option)
+  else return new Promise((resolve, reject) => {
+    request(_url, option, (err, resp, body) => {
+      if (err) return reject(err)
+      if (resp.statusCode >= 400) return reject(resp.statusCode)
+      return resolve(JSON.parse(body))
+    })
+  })
 }
 
-exports.getSpatialDatasets = async ({ templateName, queryGeometry, queryArg }) => {
-  return await fetchSpatialDataFromKg({ templateName, queryArg })
+const renderPublication = ({ name, cite, doi }) => `${name}
+  ${cite}
+  DOI: ${doi}
+`
+
+const prepareDatasetMetadata = ({ name, description, kgReference, contributors, publications }) => {
+
+  return `${name}
+
+${description}
+
+${publications.map(renderPublication).join('\n')}
+`
 }
 
+let kgtos
 
-function filterByqueryArg(cubeDots) {
-  return function (item) {
-    const px = item.geometry.position[0]
-    const py = item.geometry.position[1]
-    const pz = item.geometry.position[2]
-    if (cubeDots[0][0] <= px && px <= cubeDots[1][0] 
-      && cubeDots[0][1] <= py && py <= cubeDots[1][1] 
-      && cubeDots[0][2] <= pz && pz <= cubeDots[1][2]) {
-      return true;
-    }
-  } 
-  return false;   
+fs.readFile(path.join(__dirname, 'kgtos.md') , 'utf-8', (err, data) => {
+  if (err) console.warn(`reading kgtos Error`, err)
+  kgtos = data
+})
+
+const getTos = () => kgtos
+
+const getLicense = ({ licenseInfo }) => licenseInfo.map(({ name, url }) => `${name}
+<${url}>
+`).join('\n')
+
+const getDatasetFileAsZip = async ({ user, kgId } = {}) => {
+  if (!kgId) {
+    throw new Error('kgId must be defined')
+  }
+
+  const dataset = await getDatasetFromId({ user, kgId })
+  const { files, name: datasetName } = dataset
+  const zip = archiver('zip')
+
+  /**
+   * append citation information
+   */
+  zip.append(prepareDatasetMetadata(dataset), {
+    name: `README.txt`
+  })
+
+  /**
+   * append kg citation policy
+   */
+
+  zip.append(getLicense(dataset), {
+    name: `LICENSE.md`
+  })
+
+  /**
+   * append all of the files
+   */
+  for (let file of files) {
+    const { name, absolutePath } = file
+    zip.append(request(absolutePath), { 
+      name: path.join(datasetName, name)
+    })
+  }
+
+  zip.finalize()
+
+  return zip
 }
-    
+
+module.exports = {
+  getDatasetFromId,
+  getDatasetFileAsZip,
+  init,
+  getDatasets,
+  getPreview,
+  hasPreview,
+  getTos
+}
+
diff --git a/deploy/datasets/spatialQuery.js b/deploy/datasets/spatialQuery.js
new file mode 100644
index 0000000000000000000000000000000000000000..a93e41cdda0eb157a5b20c103251010041da34bd
--- /dev/null
+++ b/deploy/datasets/spatialQuery.js
@@ -0,0 +1,105 @@
+const url = require('url')
+const request = require('request')
+const { getUserKGRequestParam } = require('./util')
+const { transformWaxholmV2NmToVoxel, transformWaxholmV2VoxelToNm } = require('./spatialXform/waxholmRat')
+
+/**
+ * TODO change to URL constructor to improve readability
+ */
+const spatialQuery = 'https://kg.humanbrainproject.eu/query/neuroglancer/seeg/coordinate/v1.0.0/spatialWithCoordinatesNG/instances?vocab=https%3A%2F%2Fschema.hbp.eu%2FmyQuery%2F'
+
+const defaultXform = (coord) => coord
+
+const getXformFn = (templateSpace) => {
+  const _ = {}
+  switch(templateSpace){
+    case 'Waxholm Space rat brain MRI/DTI': 
+      _['nmToVoxel'] = transformWaxholmV2NmToVoxel
+      _['voxelToNm'] = transformWaxholmV2VoxelToNm
+      break;
+    default: {
+      _['nmToVoxel'] = defaultXform
+      _['voxelToNm'] = defaultXform
+    }
+  }
+  return _
+}
+
+const getSpatialSearcParam = ({ templateName, queryArg }) => {
+  let kgSpaceName
+  const { nmToVoxel } = getXformFn(templateName)
+
+  const coordsString = queryArg.split('__');
+  const boundingBoxCorners = coordsString.map(coordString => coordString.split('_'))
+  const bbInVoxelSpace = boundingBoxCorners.map(nmToVoxel)
+
+  switch (templateName){
+    case 'Waxholm Space rat brain MRI/DTI':
+      kgSpaceName = 'waxholmV2'
+      break;
+    default: 
+      kgSpaceName = templateName
+  }
+  return {
+    boundingBox: `${kgSpaceName}:${bbInVoxelSpace.map(v => v.join(',')).join(',')}`
+  }
+}
+
+
+const fetchSpatialDataFromKg = async ({ templateName, queryGeometry, queryArg, user }) => {
+
+  const { releasedOnly, option } = await getUserKGRequestParam({ user })
+
+  const _ = getSpatialSearcParam({ templateName, queryGeometry, queryArg })
+  const search = new url.URLSearchParams()
+  
+  for (let key in _) {
+    search.append(key, _[key])  
+  }
+  if (releasedOnly) search.append('databaseScope', 'RELEASED')
+  
+  const _url = `${spatialQuery}&${search.toString()}`
+  return await new Promise((resolve, reject) => {
+    request(_url, option, (err, resp, body) => {
+      if (err)
+        return reject(err)
+      if (resp.statusCode >= 400) {
+        return reject(resp.statusCode)
+      }
+      const json = JSON.parse(body)
+
+      const { voxelToNm } = getXformFn(templateName)
+
+      const _ = json.results.map(({ name, coordinates, dataset}) => {
+        return {
+          name,
+          templateSpace: templateName,
+          dataset: dataset.map(ds => ds = {name: ds.name, externalLink: 'https://kg.humanbrainproject.eu/instances/Dataset/' + ds.identifier}),
+          geometry: {
+            type: 'point',
+            space: 'real',
+            position: voxelToNm([
+              coordinates[0].x,
+              coordinates[0].y,
+              coordinates[0].z
+            ])
+          }
+        }
+      })
+
+      return resolve(_)
+    })
+  })
+}
+
+
+const getSpatialDatasets = async ({ templateName, queryGeometry, queryArg, user }) => {
+  /**
+   * Local data can be injected here
+   */
+  return await fetchSpatialDataFromKg({ templateName, queryGeometry, queryArg, user })
+}
+
+module.exports = {
+  getSpatialDatasets
+}
\ No newline at end of file
diff --git a/deploy/datasets/spatialRouter.js b/deploy/datasets/spatialRouter.js
index 584eae6db178407be0590eea5a8d5c3a395742e6..5bfb78a2c241c4d134628a11dce2914842d9b430 100644
--- a/deploy/datasets/spatialRouter.js
+++ b/deploy/datasets/spatialRouter.js
@@ -1,5 +1,5 @@
 const router = require('express').Router()
-const { getSpatialDatasets } = require('./query')
+const { getSpatialDatasets } = require('./spatialQuery')
 
 const badRequestString = `spatialSearch endpoint uses param as follows:
 
@@ -24,8 +24,10 @@ router.get('/templateName/:templateName/:queryGeometry/:queryArg', (req, res, ne
       error: errorString,
       trace: 'dataset#spatialRouter'
     })
-  
-  getSpatialDatasets({ templateName, queryGeometry, queryArg })
+
+  const { user } = req
+
+  getSpatialDatasets({ templateName, queryGeometry, queryArg, user })
     .then(arr => res.status(200).json(arr))
     .catch(error => {
       next({
diff --git a/deploy/datasets/spatialXform/waxholmRat.js b/deploy/datasets/spatialXform/waxholmRat.js
new file mode 100644
index 0000000000000000000000000000000000000000..480013b5b98310c8d77c6f117d550d4126737db0
--- /dev/null
+++ b/deploy/datasets/spatialXform/waxholmRat.js
@@ -0,0 +1,33 @@
+
+/**
+ * perhaps export the xform fns into a different module
+ * ideally, in the future, KG can handle xform of voxel to nm
+ */
+const transformWaxholmV2NmToVoxel = (coord) => {
+  /**
+   * as waxholm is already in RAS, does not need to swap axis
+   */
+
+  /**
+   * atlas viewer applies translation (below in nm) in order to center the brain
+   * query already translates nm to mm, so the unit of transl should be [mm, mm, mm]
+   */
+  const transl = [-9550781, -24355468, -9707031].map(v => v / 1e6)
+
+  /**
+   * mm/voxel
+   */
+  const voxelDim = [0.0390625, 0.0390625, 0.0390625]
+  return coord.map((v, idx) => (v - transl[idx]) / voxelDim[idx])
+}
+
+const transformWaxholmV2VoxelToNm = (coord) => {
+  const transl = [-9550781, -24355468, -9707031].map(v => v / 1e6)
+  const voxelDim = [0.0390625, 0.0390625, 0.0390625]
+  return coord.map((v, idx) => (v * voxelDim[idx]) + transl[idx])
+}
+
+module.exports = {
+  transformWaxholmV2NmToVoxel,
+  transformWaxholmV2VoxelToNm
+}
\ No newline at end of file
diff --git a/deploy/datasets/supplements/commonSense.js b/deploy/datasets/supplements/commonSense.js
index 92fcad4baae62b29d0b5a9d8dbf703633c9ef3b7..42e4f30f57e4a2b8e1c15ed7ebba0a4572bbcb60 100644
--- a/deploy/datasets/supplements/commonSense.js
+++ b/deploy/datasets/supplements/commonSense.js
@@ -7,8 +7,8 @@ const humanTemplateSet = new Set([
 
 const humanParcellationSet = new Set([
   'Grey/White matter',
-  'Area V1',
-  'Area V2',
+  'Cytoarchitectonic Maps',
+  'BigBrain Cortical Layers Segmentation',
   'JuBrain Cytoarchitectonic Atlas',
   'Fibre Bundle Atlas - Short Bundle',
   'Fibre Bundle Atlas - Long Bundle',
@@ -16,11 +16,13 @@ const humanParcellationSet = new Set([
 ])
 
 const ratTemplateSet = new Set([
-  'Waxholm Space rat brain atlas v.2.0'
+  'Waxholm Space rat brain MRI/DTI'
 ])
 
 const ratParcellationSet = new Set([
-  'Waxholm Space rat brain atlas v.2.0'
+  'Waxholm Space rat brain atlas v1',
+  'Waxholm Space rat brain atlas v2',
+  'Waxholm Space rat brain atlas v3'
 ])
 
 const mouseTemplateSet = new Set([
@@ -28,7 +30,8 @@ const mouseTemplateSet = new Set([
 ])
 
 const mouseParcellationSet = new Set([
-  'Allen adult mouse brain reference atlas V3 Brain Atlas'
+  'Allen Mouse Common Coordinate Framework v3 2017',
+  'Allen Mouse Common Coordinate Framework v3 2015'
 ])
 
 const dsIsHuman = ({ds}) => ds && ds.species.some(species => /homo\ sapiens/i.test(species))
diff --git a/deploy/datasets/supplements/data/pmapJuBrainV17Preview.json b/deploy/datasets/supplements/data/pmapJuBrainV17Preview.json
index b75b00c83a118e77f837d3c76282e328ffb7819e..d25da3b776f825bdcf21e810480aa54365d2e21e 100644
--- a/deploy/datasets/supplements/data/pmapJuBrainV17Preview.json
+++ b/deploy/datasets/supplements/data/pmapJuBrainV17Preview.json
@@ -7,28 +7,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Fp2 (FPole) [v2.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/FrontalPole_Fp2_l_N10_nlin2MNI152ASYM2009C_2.4_publicP_b8d8440ba6ff4ee72e8184b4a71d44d2.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/FrontalPole_Fp2_l_N10_nlin2MNI152ASYM2009C_2.4_publicP_b8d8440ba6ff4ee72e8184b4a71d44d2.nii.gz",
+        "position": [
+          -6503595,
+          59384951,
+          -3961993
+        ]
       },
       {
         "filename": "Area Fp2 (FPole) [v2.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Fp2 (FPole) [v2.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/FrontalPole_Fp2_l_N10_nlin2Stdcolin27_2.4_publicP_15ceb771b7ce41cf5db287ca4d09ef13.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/FrontalPole_Fp2_l_N10_nlin2Stdcolin27_2.4_publicP_15ceb771b7ce41cf5db287ca4d09ef13.nii.gz",
+        "position": [
+          -3739067,
+          59074587,
+          -1181973
+        ]
       },
       {
         "filename": "Area Fp2 (FPole) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Fp2 (FPole) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/FrontalPole_Fp2_r_N10_nlin2MNI152ASYM2009C_2.4_publicP_78d77928de1e288d9fc00d23eee7de12.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/FrontalPole_Fp2_r_N10_nlin2MNI152ASYM2009C_2.4_publicP_78d77928de1e288d9fc00d23eee7de12.nii.gz",
+        "position": [
+          4778743,
+          61080225,
+          -3022228
+        ]
       },
       {
         "filename": "Area Fp2 (FPole) [v2.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Fp2 (FPole) [v2.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/FrontalPole_Fp2_r_N10_nlin2Stdcolin27_2.4_publicP_8590239cbabdbb022a92cf2d783b5525.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/FrontalPole_Fp2_r_N10_nlin2Stdcolin27_2.4_publicP_8590239cbabdbb022a92cf2d783b5525.nii.gz",
+        "position": [
+          6093420,
+          59611191,
+          -509606
+        ]
       }
     ]
   ],
@@ -40,28 +60,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Fp1 (FPole) [v2.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/FrontalPole_Fp1_l_N10_nlin2MNI152ASYM2009C_2.4_publicP_21db93ae699b350d3f7fe2e9637a09d3.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/FrontalPole_Fp1_l_N10_nlin2MNI152ASYM2009C_2.4_publicP_21db93ae699b350d3f7fe2e9637a09d3.nii.gz",
+        "position": [
+          -19102858,
+          63747679,
+          -1631986
+        ]
       },
       {
         "filename": "Area Fp1 (FPole) [v2.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Fp1 (FPole) [v2.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/FrontalPole_Fp1_l_N10_nlin2Stdcolin27_2.4_publicP_649d51f8daede7444548e13722b688ef.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/FrontalPole_Fp1_l_N10_nlin2Stdcolin27_2.4_publicP_649d51f8daede7444548e13722b688ef.nii.gz",
+        "position": [
+          -16331031,
+          64168302,
+          549101
+        ]
       },
       {
         "filename": "Area Fp1 (FPole) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Fp1 (FPole) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/FrontalPole_Fp1_r_N10_nlin2MNI152ASYM2009C_2.4_publicP_640c94e1dcb94d8921a6e6236ea90243.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/FrontalPole_Fp1_r_N10_nlin2MNI152ASYM2009C_2.4_publicP_640c94e1dcb94d8921a6e6236ea90243.nii.gz",
+        "position": [
+          17092523,
+          64510614,
+          -2304434
+        ]
       },
       {
         "filename": "Area Fp1 (FPole) [v2.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Fp1 (FPole) [v2.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/FrontalPole_Fp1_r_N10_nlin2Stdcolin27_2.4_publicP_aaf0923c7315332fd3c14bbe15360aca.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/FrontalPole_Fp1_r_N10_nlin2Stdcolin27_2.4_publicP_aaf0923c7315332fd3c14bbe15360aca.nii.gz",
+        "position": [
+          18482225,
+          63988011,
+          -317043
+        ]
       }
     ]
   ],
@@ -73,28 +113,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hIP1 (IPS) [v6.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/AIPS_IP1_l_N10_nlin2MNI152ASYM2009C_6.1_publicP_5c0b00a1393dc8c54505db7207f1097c.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/AIPS_IP1_l_N10_nlin2MNI152ASYM2009C_6.1_publicP_5c0b00a1393dc8c54505db7207f1097c.nii.gz",
+        "position": [
+          -37649600,
+          -50042430,
+          40308099
+        ]
       },
       {
         "filename": "Area hIP1 (IPS) [v6.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hIP1 (IPS) [v6.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/AIPS_IP1_l_N10_nlin2Stdcolin27_6.1_publicP_828db42625a675c3a954c6be2e2b3b88.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/AIPS_IP1_l_N10_nlin2Stdcolin27_6.1_publicP_828db42625a675c3a954c6be2e2b3b88.nii.gz",
+        "position": [
+          -36841999,
+          -49449871,
+          40584028
+        ]
       },
       {
         "filename": "Area hIP1 (IPS) [v6.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hIP1 (IPS) [v6.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/AIPS_IP1_r_N10_nlin2MNI152ASYM2009C_6.1_publicP_a411667d98b0ebc9b772565131414de1.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/AIPS_IP1_r_N10_nlin2MNI152ASYM2009C_6.1_publicP_a411667d98b0ebc9b772565131414de1.nii.gz",
+        "position": [
+          40174687,
+          -47498075,
+          39221848
+        ]
       },
       {
         "filename": "Area hIP1 (IPS) [v6.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hIP1 (IPS) [v6.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/AIPS_IP1_r_N10_nlin2Stdcolin27_6.1_publicP_667c85bcddc6c019b2bdd45fc499737a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/AIPS_IP1_r_N10_nlin2Stdcolin27_6.1_publicP_667c85bcddc6c019b2bdd45fc499737a.nii.gz",
+        "position": [
+          40629988,
+          -48019372,
+          39158853
+        ]
       }
     ]
   ],
@@ -106,28 +166,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hIP2 (IPS) [v6.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/AIPS_IP2_l_N10_nlin2MNI152ASYM2009C_6.1_publicP_1ae25994cd5faa62178a54a4110cac1e.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/AIPS_IP2_l_N10_nlin2MNI152ASYM2009C_6.1_publicP_1ae25994cd5faa62178a54a4110cac1e.nii.gz",
+        "position": [
+          -48109229,
+          -42174005,
+          43577477
+        ]
       },
       {
         "filename": "Area hIP2 (IPS) [v6.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hIP2 (IPS) [v6.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/AIPS_IP2_l_N10_nlin2Stdcolin27_6.1_publicP_1c0b051794d33c3042124e8ff29838a0.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/AIPS_IP2_l_N10_nlin2Stdcolin27_6.1_publicP_1c0b051794d33c3042124e8ff29838a0.nii.gz",
+        "position": [
+          -46531100,
+          -41482722,
+          43278044
+        ]
       },
       {
         "filename": "Area hIP2 (IPS) [v6.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hIP2 (IPS) [v6.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/AIPS_IP2_r_N10_nlin2MNI152ASYM2009C_6.1_publicP_fff0207eaabf4a9e3e019f94a7782922.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/AIPS_IP2_r_N10_nlin2MNI152ASYM2009C_6.1_publicP_fff0207eaabf4a9e3e019f94a7782922.nii.gz",
+        "position": [
+          44102535,
+          -39182604,
+          45742512
+        ]
       },
       {
         "filename": "Area hIP2 (IPS) [v6.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hIP2 (IPS) [v6.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/AIPS_IP2_r_N10_nlin2Stdcolin27_6.1_publicP_ddcac02713410823e3545a59be530553.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/AIPS_IP2_r_N10_nlin2Stdcolin27_6.1_publicP_ddcac02713410823e3545a59be530553.nii.gz",
+        "position": [
+          44605145,
+          -39958613,
+          45130872
+        ]
       }
     ]
   ],
@@ -139,28 +219,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hIP3 (IPS) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/AIPS_IP3_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_b125d0e714a3b435ecb517fb1af63842.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/AIPS_IP3_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_b125d0e714a3b435ecb517fb1af63842.nii.gz",
+        "position": [
+          -31442940,
+          -54720825,
+          48220503
+        ]
       },
       {
         "filename": "Area hIP3 (IPS) [v8.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hIP3 (IPS) [v8.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/AIPS_IP3_l_N10_nlin2Stdcolin27_8.4_publicP_5894ab3681e1b909971d902f17707d8a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/AIPS_IP3_l_N10_nlin2Stdcolin27_8.4_publicP_5894ab3681e1b909971d902f17707d8a.nii.gz",
+        "position": [
+          -30430769,
+          -55031164,
+          46842209
+        ]
       },
       {
         "filename": "Area hIP3 (IPS) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hIP3 (IPS) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/AIPS_IP3_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_2d3134fd35e30da41ab4395a8f120b31.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/AIPS_IP3_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_2d3134fd35e30da41ab4395a8f120b31.nii.gz",
+        "position": [
+          33068074,
+          -49000000,
+          50509215
+        ]
       },
       {
         "filename": "Area hIP3 (IPS) [v8.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hIP3 (IPS) [v8.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/AIPS_IP3_r_N10_nlin2Stdcolin27_8.4_publicP_c74eb8ebcf63468f544e4086d2b21348.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/AIPS_IP3_r_N10_nlin2Stdcolin27_8.4_publicP_c74eb8ebcf63468f544e4086d2b21348.nii.gz",
+        "position": [
+          33538679,
+          -49884591,
+          50461950
+        ]
       }
     ]
   ],
@@ -205,28 +305,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Id6 (Insula) [v3.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id6_l_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_f9be3b6ea62c4a0e9ee3b360c504be5b.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id6_l_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_f9be3b6ea62c4a0e9ee3b360c504be5b.nii.gz",
+        "position": [
+          -37077741,
+          9330986,
+          2058685
+        ]
       },
       {
         "filename": "Area Id6 (Insula) [v3.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Id6 (Insula) [v3.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id6_l_N10_nlin2Stdcolin27_3.1_publicDOI_faf17b46bcdda12944790fc12f5f91ff.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id6_l_N10_nlin2Stdcolin27_3.1_publicDOI_faf17b46bcdda12944790fc12f5f91ff.nii.gz",
+        "position": [
+          -36392282,
+          9843698,
+          3385341
+        ]
       },
       {
         "filename": "Area Id6 (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Id6 (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id6_r_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_dc6814386bbab79325bc1bfb4ca9aa1e.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id6_r_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_dc6814386bbab79325bc1bfb4ca9aa1e.nii.gz",
+        "position": [
+          35516562,
+          11115104,
+          2772938
+        ]
       },
       {
         "filename": "Area Id6 (Insula) [v3.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Id6 (Insula) [v3.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id6_r_N10_nlin2Stdcolin27_3.1_publicDOI_13a51145c04f8ff160009f50c312b834.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id6_r_N10_nlin2Stdcolin27_3.1_publicDOI_13a51145c04f8ff160009f50c312b834.nii.gz",
+        "position": [
+          37750946,
+          10762642,
+          3041624
+        ]
       }
     ]
   ],
@@ -238,28 +358,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Id7 (Insula) [v6.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id7_l_N10_nlin2MNI152ASYM2009C_6.1_publicDOI_ff4f0b96f9355bd5e924191a126e7faa.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id7_l_N10_nlin2MNI152ASYM2009C_6.1_publicDOI_ff4f0b96f9355bd5e924191a126e7faa.nii.gz",
+        "position": [
+          -32161180,
+          23947874,
+          2868999
+        ]
       },
       {
         "filename": "Area Id7 (Insula) [v6.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Id7 (Insula) [v6.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id7_l_N10_nlin2Stdcolin27_6.1_publicDOI_f2f17c06c0a643ce49d98b126a619601.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id7_l_N10_nlin2Stdcolin27_6.1_publicDOI_f2f17c06c0a643ce49d98b126a619601.nii.gz",
+        "position": [
+          -30926962,
+          23741297,
+          4787031
+        ]
       },
       {
         "filename": "Area Id7 (Insula) [v6.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Id7 (Insula) [v6.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id7_r_N10_nlin2MNI152ASYM2009C_6.1_publicDOI_02b5d10dbbb00b886a864301521bdd9c.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id7_r_N10_nlin2MNI152ASYM2009C_6.1_publicDOI_02b5d10dbbb00b886a864301521bdd9c.nii.gz",
+        "position": [
+          32412012,
+          26220735,
+          1550497
+        ]
       },
       {
         "filename": "Area Id7 (Insula) [v6.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Id7 (Insula) [v6.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id7_r_N10_nlin2Stdcolin27_6.1_publicDOI_683c76c33eaea809fcf576f4e8dcbbb3.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id7_r_N10_nlin2Stdcolin27_6.1_publicDOI_683c76c33eaea809fcf576f4e8dcbbb3.nii.gz",
+        "position": [
+          35034429,
+          24873239,
+          2446009
+        ]
       }
     ]
   ],
@@ -271,28 +411,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "IF (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Amygdala_IF_l_N10_nlin2MNI152ASYM2009C_6.4_publicP_7ed573bb867fd5b59b89ff3fe66f934a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Amygdala_IF_l_N10_nlin2MNI152ASYM2009C_6.4_publicP_7ed573bb867fd5b59b89ff3fe66f934a.nii.gz",
+        "position": [
+          -29180412,
+          -3664948,
+          -18242268
+        ]
       },
       {
         "filename": "IF (Amygdala) [v6.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "IF (Amygdala) [v6.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Amygdala_IF_l_N10_nlin2Stdcolin27_6.4_publicP_84f75af1298ba054b19f5c5b437cd279.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Amygdala_IF_l_N10_nlin2Stdcolin27_6.4_publicP_84f75af1298ba054b19f5c5b437cd279.nii.gz",
+        "position": [
+          -27588235,
+          -1431373,
+          -17460784
+        ]
       },
       {
         "filename": "IF (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "IF (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Amygdala_IF_r_N10_nlin2MNI152ASYM2009C_6.4_publicP_74b5ee9c4204b0512afa6ce3199a033a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Amygdala_IF_r_N10_nlin2MNI152ASYM2009C_6.4_publicP_74b5ee9c4204b0512afa6ce3199a033a.nii.gz",
+        "position": [
+          27247368,
+          -2310526,
+          -17973684
+        ]
       },
       {
         "filename": "IF (Amygdala) [v6.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "IF (Amygdala) [v6.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Amygdala_IF_r_N10_nlin2Stdcolin27_6.4_publicP_547c4687931539b4eab1883219f1eeed.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Amygdala_IF_r_N10_nlin2Stdcolin27_6.4_publicP_547c4687931539b4eab1883219f1eeed.nii.gz",
+        "position": [
+          29372549,
+          -813725,
+          -16578431
+        ]
       }
     ]
   ],
@@ -304,28 +464,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Ig1 (Insula) [v13.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Ig1_l_N10_nlin2MNI152ASYM2009C_13.1_publicP_b659cb9b754d41229061b52f2dbeeff0.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Ig1_l_N10_nlin2MNI152ASYM2009C_13.1_publicP_b659cb9b754d41229061b52f2dbeeff0.nii.gz",
+        "position": [
+          -33927907,
+          -25610078,
+          9513953
+        ]
       },
       {
         "filename": "Area Ig1 (Insula) [v13.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Ig1 (Insula) [v13.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Ig1_l_N10_nlin2Stdcolin27_13.1_publicP_c2f1f49fa6544f1c6386897250d0b3cf.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Ig1_l_N10_nlin2Stdcolin27_13.1_publicP_c2f1f49fa6544f1c6386897250d0b3cf.nii.gz",
+        "position": [
+          -33211215,
+          -24171963,
+          9923364
+        ]
       },
       {
         "filename": "Area Ig1 (Insula) [v13.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Ig1 (Insula) [v13.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Ig1_r_N10_nlin2MNI152ASYM2009C_13.1_publicP_1bf5001025e34de9da6ff59cd3ba048e.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Ig1_r_N10_nlin2MNI152ASYM2009C_13.1_publicP_1bf5001025e34de9da6ff59cd3ba048e.nii.gz",
+        "position": [
+          33261224,
+          -23922449,
+          8838776
+        ]
       },
       {
         "filename": "Area Ig1 (Insula) [v13.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Ig1 (Insula) [v13.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Ig1_r_N10_nlin2Stdcolin27_13.1_publicP_3143abb5953077f77f51e2f2231e557e.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Ig1_r_N10_nlin2Stdcolin27_13.1_publicP_3143abb5953077f77f51e2f2231e557e.nii.gz",
+        "position": [
+          33707983,
+          -23338235,
+          9071429
+        ]
       }
     ]
   ],
@@ -370,28 +550,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Ig2 (Insula) [v13.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Ig2_l_N10_nlin2MNI152ASYM2009C_13.1_publicP_e1defc10cb006c64ad31bf10ddb5b1a1.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Ig2_l_N10_nlin2MNI152ASYM2009C_13.1_publicP_e1defc10cb006c64ad31bf10ddb5b1a1.nii.gz",
+        "position": [
+          -38185879,
+          -19442363,
+          5011527
+        ]
       },
       {
         "filename": "Area Ig2 (Insula) [v13.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Ig2 (Insula) [v13.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Ig2_l_N10_nlin2Stdcolin27_13.1_publicP_f02dd3446cff31f94e4f75b1dd145122.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Ig2_l_N10_nlin2Stdcolin27_13.1_publicP_f02dd3446cff31f94e4f75b1dd145122.nii.gz",
+        "position": [
+          -37117338,
+          -17859895,
+          5094571
+        ]
       },
       {
         "filename": "Area Ig2 (Insula) [v13.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Ig2 (Insula) [v13.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Ig2_r_N10_nlin2MNI152ASYM2009C_13.1_publicP_cf1b3cc5b32d89ea8937c189f218f726.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Ig2_r_N10_nlin2MNI152ASYM2009C_13.1_publicP_cf1b3cc5b32d89ea8937c189f218f726.nii.gz",
+        "position": [
+          37140230,
+          -17412644,
+          5868966
+        ]
       },
       {
         "filename": "Area Ig2 (Insula) [v13.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Ig2 (Insula) [v13.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Ig2_r_N10_nlin2Stdcolin27_13.1_publicP_d7cbe960f4d01de62a6621ba53084fae.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Ig2_r_N10_nlin2Stdcolin27_13.1_publicP_d7cbe960f4d01de62a6621ba53084fae.nii.gz",
+        "position": [
+          37843632,
+          -16445145,
+          5703657
+        ]
       }
     ]
   ],
@@ -403,28 +603,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "MF (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Amygdala_MF_l_N10_nlin2MNI152ASYM2009C_6.4_publicP_f7f3ec6cff03ca0a9e6556fab15e0d86.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Amygdala_MF_l_N10_nlin2MNI152ASYM2009C_6.4_publicP_f7f3ec6cff03ca0a9e6556fab15e0d86.nii.gz",
+        "position": [
+          -19722222,
+          -8722222,
+          -16222222
+        ]
       },
       {
         "filename": "MF (Amygdala) [v6.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "MF (Amygdala) [v6.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Amygdala_MF_l_N10_nlin2Stdcolin27_6.4_publicP_68bfc4e1ca51ebd1e8f37cd28b43a2c1.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Amygdala_MF_l_N10_nlin2Stdcolin27_6.4_publicP_68bfc4e1ca51ebd1e8f37cd28b43a2c1.nii.gz",
+        "position": [
+          -18714286,
+          -6523810,
+          -15428571
+        ]
       },
       {
         "filename": "MF (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "MF (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Amygdala_MF_r_N10_nlin2MNI152ASYM2009C_6.4_publicP_ef50d13c143d16b3e1f06cfdd57badbc.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Amygdala_MF_r_N10_nlin2MNI152ASYM2009C_6.4_publicP_ef50d13c143d16b3e1f06cfdd57badbc.nii.gz",
+        "position": [
+          19157143,
+          -6585714,
+          -15985714
+        ]
       },
       {
         "filename": "MF (Amygdala) [v6.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "MF (Amygdala) [v6.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Amygdala_MF_r_N10_nlin2Stdcolin27_6.4_publicP_39ae43f234d7908175c30bda61f59d55.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Amygdala_MF_r_N10_nlin2Stdcolin27_6.4_publicP_39ae43f234d7908175c30bda61f59d55.nii.gz",
+        "position": [
+          20976744,
+          -4930233,
+          -14441860
+        ]
       }
     ]
   ],
@@ -436,28 +656,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 4a (PreCG) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Motor_4a_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_01413787435fa644af34b2913b9771ed.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Motor_4a_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_01413787435fa644af34b2913b9771ed.nii.gz",
+        "position": [
+          -17759520,
+          -26329160,
+          66684048
+        ]
       },
       {
         "filename": "Area 4a (PreCG) [v9.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 4a (PreCG) [v9.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Motor_4a_l_N10_nlin2Stdcolin27_9.4_publicP_967ad34852b2b9fe3c92d8c17097a66a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Motor_4a_l_N10_nlin2Stdcolin27_9.4_publicP_967ad34852b2b9fe3c92d8c17097a66a.nii.gz",
+        "position": [
+          -17367391,
+          -28669064,
+          67404682
+        ]
       },
       {
         "filename": "Area 4a (PreCG) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 4a (PreCG) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Motor_4a_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_f91dc988bd91110bcc58057f905dfd3c.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Motor_4a_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_f91dc988bd91110bcc58057f905dfd3c.nii.gz",
+        "position": [
+          9561296,
+          -29536520,
+          67748853
+        ]
       },
       {
         "filename": "Area 4a (PreCG) [v9.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 4a (PreCG) [v9.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Motor_4a_r_N10_nlin2Stdcolin27_9.4_publicP_a8ae6146c4f0e1a7062686fd8828c149.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Motor_4a_r_N10_nlin2Stdcolin27_9.4_publicP_a8ae6146c4f0e1a7062686fd8828c149.nii.gz",
+        "position": [
+          9609157,
+          -31334779,
+          68068112
+        ]
       }
     ]
   ],
@@ -502,28 +742,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 4p (PreCG) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Motor_4p_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_647ca28e87fc9be073617bbe8b5bad86.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Motor_4p_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_647ca28e87fc9be073617bbe8b5bad86.nii.gz",
+        "position": [
+          -37145015,
+          -22255287,
+          49007049
+        ]
       },
       {
         "filename": "Area 4p (PreCG) [v9.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 4p (PreCG) [v9.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Motor_4p_l_N10_nlin2Stdcolin27_9.4_publicP_fae2f48dfd8b980f3818a7145d0d4dde.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Motor_4p_l_N10_nlin2Stdcolin27_9.4_publicP_fae2f48dfd8b980f3818a7145d0d4dde.nii.gz",
+        "position": [
+          -36140917,
+          -22750424,
+          49282965
+        ]
       },
       {
         "filename": "Area 4p (PreCG) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 4p (PreCG) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Motor_4p_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_2725e886a126b53cfe63447ade13fa56.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Motor_4p_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_2725e886a126b53cfe63447ade13fa56.nii.gz",
+        "position": [
+          36616185,
+          -18949518,
+          46248351
+        ]
       },
       {
         "filename": "Area 4p (PreCG) [v9.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 4p (PreCG) [v9.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Motor_4p_r_N10_nlin2Stdcolin27_9.4_publicP_b99378d72b97c81ef4f4f2f9e7c6ac19.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Motor_4p_r_N10_nlin2Stdcolin27_9.4_publicP_b99378d72b97c81ef4f4f2f9e7c6ac19.nii.gz",
+        "position": [
+          37510795,
+          -21359659,
+          46456250
+        ]
       }
     ]
   ],
@@ -535,28 +795,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "VTM (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Amygdala_VTM_l_N10_nlin2MNI152ASYM2009C_6.4_publicP_3b1ee29b8db55ee9a9bf4229bf24d656.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Amygdala_VTM_l_N10_nlin2MNI152ASYM2009C_6.4_publicP_3b1ee29b8db55ee9a9bf4229bf24d656.nii.gz",
+        "position": [
+          -24442675,
+          -12143312,
+          -15697452
+        ]
       },
       {
         "filename": "VTM (Amygdala) [v6.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "VTM (Amygdala) [v6.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Amygdala_VTM_l_N10_nlin2Stdcolin27_6.4_publicP_e9cc71b8b7cadcb07a9fb45099934d06.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Amygdala_VTM_l_N10_nlin2Stdcolin27_6.4_publicP_e9cc71b8b7cadcb07a9fb45099934d06.nii.gz",
+        "position": [
+          -23377907,
+          -9837209,
+          -14848837
+        ]
       },
       {
         "filename": "VTM (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "VTM (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Amygdala_VTM_r_N10_nlin2MNI152ASYM2009C_6.4_publicP_8607d965d235dfa99b8c3f060676bd14.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Amygdala_VTM_r_N10_nlin2MNI152ASYM2009C_6.4_publicP_8607d965d235dfa99b8c3f060676bd14.nii.gz",
+        "position": [
+          23257426,
+          -10816832,
+          -17326733
+        ]
       },
       {
         "filename": "VTM (Amygdala) [v6.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "VTM (Amygdala) [v6.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Amygdala_VTM_r_N10_nlin2Stdcolin27_6.4_publicP_dbfa70d00d5a54048d9ca8d94aadd1c2.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Amygdala_VTM_r_N10_nlin2Stdcolin27_6.4_publicP_dbfa70d00d5a54048d9ca8d94aadd1c2.nii.gz",
+        "position": [
+          25513514,
+          -8881081,
+          -15551351
+        ]
       }
     ]
   ],
@@ -568,28 +848,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Fo1 (OFC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo1_l_N10_nlin2MNI152ASYM2009C_3.4_publicP_b76752e4ec43a64644f4a66658fed730.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo1_l_N10_nlin2MNI152ASYM2009C_3.4_publicP_b76752e4ec43a64644f4a66658fed730.nii.gz",
+        "position": [
+          -8931833,
+          40936870,
+          -25550705
+        ]
       },
       {
         "filename": "Area Fo1 (OFC) [v3.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Fo1 (OFC) [v3.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo1_l_N10_nlin2Stdcolin27_3.4_publicP_960a53948ed107f3d09f6adf79cbb80a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo1_l_N10_nlin2Stdcolin27_3.4_publicP_960a53948ed107f3d09f6adf79cbb80a.nii.gz",
+        "position": [
+          -7962771,
+          41364968,
+          -22537687
+        ]
       },
       {
         "filename": "Area Fo1 (OFC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Fo1 (OFC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo1_r_N10_nlin2MNI152ASYM2009C_3.4_publicP_dc994a89413230daa7a59d4104903cb9.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo1_r_N10_nlin2MNI152ASYM2009C_3.4_publicP_dc994a89413230daa7a59d4104903cb9.nii.gz",
+        "position": [
+          7452738,
+          40856484,
+          -25066859
+        ]
       },
       {
         "filename": "Area Fo1 (OFC) [v3.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Fo1 (OFC) [v3.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo1_r_N10_nlin2Stdcolin27_3.4_publicP_aaa29c0e90498575ad47fb91c00248ad.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo1_r_N10_nlin2Stdcolin27_3.4_publicP_aaa29c0e90498575ad47fb91c00248ad.nii.gz",
+        "position": [
+          9705948,
+          40760961,
+          -22481988
+        ]
       }
     ]
   ],
@@ -601,28 +901,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area STS1 (STS) [v3.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_STS1_l_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_35e08e97ab66dad36d8f02ac0c9b1dd5.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_STS1_l_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_35e08e97ab66dad36d8f02ac0c9b1dd5.nii.gz",
+        "position": [
+          -55442669,
+          -18314601,
+          -6381831
+        ]
       },
       {
         "filename": "Area STS1 (STS) [v3.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area STS1 (STS) [v3.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_STS1_l_N10_nlin2Stdcolin27_3.1_publicDOI_08e75c6446f93d9bc7c39fa4a2a715da.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_STS1_l_N10_nlin2Stdcolin27_3.1_publicDOI_08e75c6446f93d9bc7c39fa4a2a715da.nii.gz",
+        "position": [
+          -54514755,
+          -16753913,
+          -5260713
+        ]
       },
       {
         "filename": "Area STS1 (STS) [v3.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area STS1 (STS) [v3.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_STS1_r_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_e3f43aa517e0b1ccee53510ac28d73f7.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_STS1_r_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_e3f43aa517e0b1ccee53510ac28d73f7.nii.gz",
+        "position": [
+          52602966,
+          -18339402,
+          -5666868
+        ]
       },
       {
         "filename": "Area STS1 (STS) [v3.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area STS1 (STS) [v3.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_STS1_r_N10_nlin2Stdcolin27_3.1_publicDOI_63fc6556f6555e1eb5cf57200a7a6677.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_STS1_r_N10_nlin2Stdcolin27_3.1_publicDOI_63fc6556f6555e1eb5cf57200a7a6677.nii.gz",
+        "position": [
+          54536567,
+          -17992636,
+          -5712544
+        ]
       }
     ]
   ],
@@ -634,28 +954,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Fo2 (OFC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo2_l_N10_nlin2MNI152ASYM2009C_3.4_publicP_9057b123cfeca54e02e5e9efc5a04dc9.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo2_l_N10_nlin2MNI152ASYM2009C_3.4_publicP_9057b123cfeca54e02e5e9efc5a04dc9.nii.gz",
+        "position": [
+          -10107850,
+          20731801,
+          -22045790
+        ]
       },
       {
         "filename": "Area Fo2 (OFC) [v3.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Fo2 (OFC) [v3.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo2_l_N10_nlin2Stdcolin27_3.4_publicP_51dd6cb82eb566bb0a87a2bd61ba549f.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo2_l_N10_nlin2Stdcolin27_3.4_publicP_51dd6cb82eb566bb0a87a2bd61ba549f.nii.gz",
+        "position": [
+          -8588272,
+          22532156,
+          -20474464
+        ]
       },
       {
         "filename": "Area Fo2 (OFC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Fo2 (OFC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo2_r_N10_nlin2MNI152ASYM2009C_3.4_publicP_abfaca459f6612336d3c6bda36e4d1db.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo2_r_N10_nlin2MNI152ASYM2009C_3.4_publicP_abfaca459f6612336d3c6bda36e4d1db.nii.gz",
+        "position": [
+          7453208,
+          20602446,
+          -21936370
+        ]
       },
       {
         "filename": "Area Fo2 (OFC) [v3.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Fo2 (OFC) [v3.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo2_r_N10_nlin2Stdcolin27_3.4_publicP_2993d715ed11871738e21953c1b93134.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo2_r_N10_nlin2Stdcolin27_3.4_publicP_2993d715ed11871738e21953c1b93134.nii.gz",
+        "position": [
+          9164379,
+          21928964,
+          -20593342
+        ]
       }
     ]
   ],
@@ -667,28 +1007,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area STS2 (STS) [v3.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_STS2_l_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_9863d498fad2329d136af9b25e10a93f.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_STS2_l_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_9863d498fad2329d136af9b25e10a93f.nii.gz",
+        "position": [
+          -57958891,
+          -8931681,
+          -16581483
+        ]
       },
       {
         "filename": "Area STS2 (STS) [v3.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area STS2 (STS) [v3.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_STS2_l_N10_nlin2Stdcolin27_3.1_publicDOI_4bab85dc8ab1547e1dcf842a06ed1efa.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_STS2_l_N10_nlin2Stdcolin27_3.1_publicDOI_4bab85dc8ab1547e1dcf842a06ed1efa.nii.gz",
+        "position": [
+          -56352486,
+          -8557380,
+          -14844672
+        ]
       },
       {
         "filename": "Area STS2 (STS) [v3.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area STS2 (STS) [v3.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_STS2_r_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_7a0524e4cf9b00435a6a8171436b8100.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_STS2_r_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_7a0524e4cf9b00435a6a8171436b8100.nii.gz",
+        "position": [
+          55536716,
+          -8701651,
+          -16698805
+        ]
       },
       {
         "filename": "Area STS2 (STS) [v3.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area STS2 (STS) [v3.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_STS2_r_N10_nlin2Stdcolin27_3.1_publicDOI_cd667b25d5535ff74ce57baecd64a272.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_STS2_r_N10_nlin2Stdcolin27_3.1_publicDOI_cd667b25d5535ff74ce57baecd64a272.nii.gz",
+        "position": [
+          56942990,
+          -8020716,
+          -16067930
+        ]
       }
     ]
   ],
@@ -700,28 +1060,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Fo3 (OFC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo3_l_N10_nlin2MNI152ASYM2009C_3.4_publicP_b35caf53bd38ac05bc10de2a73ec516a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo3_l_N10_nlin2MNI152ASYM2009C_3.4_publicP_b35caf53bd38ac05bc10de2a73ec516a.nii.gz",
+        "position": [
+          -22798035,
+          32470959,
+          -20700499
+        ]
       },
       {
         "filename": "Area Fo3 (OFC) [v3.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Fo3 (OFC) [v3.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo3_l_N10_nlin2Stdcolin27_3.4_publicP_e314f4e0944f6f0dc273af9a69645b35.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo3_l_N10_nlin2Stdcolin27_3.4_publicP_e314f4e0944f6f0dc273af9a69645b35.nii.gz",
+        "position": [
+          -21866985,
+          33732378,
+          -19882472
+        ]
       },
       {
         "filename": "Area Fo3 (OFC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Fo3 (OFC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo3_r_N10_nlin2MNI152ASYM2009C_3.4_publicP_c326c00231994112cd4d31e430e76ae5.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo3_r_N10_nlin2MNI152ASYM2009C_3.4_publicP_c326c00231994112cd4d31e430e76ae5.nii.gz",
+        "position": [
+          20788728,
+          33338701,
+          -20253609
+        ]
       },
       {
         "filename": "Area Fo3 (OFC) [v3.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Fo3 (OFC) [v3.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo3_r_N10_nlin2Stdcolin27_3.4_publicP_765b825bdf19beaade700c86b65a27ac.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo3_r_N10_nlin2Stdcolin27_3.4_publicP_765b825bdf19beaade700c86b65a27ac.nii.gz",
+        "position": [
+          22929678,
+          33527877,
+          -20231493
+        ]
       }
     ]
   ],
@@ -733,28 +1113,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area TE 1.0 (HESCHL) [v5.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_Te10_l_N10_nlin2MNI152ASYM2009C_5.1_publicP_f5231652a1e4874e2b5aefb147324d99.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_Te10_l_N10_nlin2MNI152ASYM2009C_5.1_publicP_f5231652a1e4874e2b5aefb147324d99.nii.gz",
+        "position": [
+          -47745772,
+          -19329763,
+          7810034
+        ]
       },
       {
         "filename": "Area TE 1.0 (HESCHL) [v5.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area TE 1.0 (HESCHL) [v5.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_Te10_l_N10_nlin2Stdcolin27_5.1_publicP_be05cf2a0b23ccd1cdf2271345cbe45d.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_Te10_l_N10_nlin2Stdcolin27_5.1_publicP_be05cf2a0b23ccd1cdf2271345cbe45d.nii.gz",
+        "position": [
+          -46560150,
+          -17508772,
+          7622807
+        ]
       },
       {
         "filename": "Area TE 1.0 (HESCHL) [v5.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area TE 1.0 (HESCHL) [v5.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_Te10_r_N10_nlin2MNI152ASYM2009C_5.1_publicP_6c782e3d47b34522a2c7c86736785154.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_Te10_r_N10_nlin2MNI152ASYM2009C_5.1_publicP_6c782e3d47b34522a2c7c86736785154.nii.gz",
+        "position": [
+          49200565,
+          -12937288,
+          5319209
+        ]
       },
       {
         "filename": "Area TE 1.0 (HESCHL) [v5.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area TE 1.0 (HESCHL) [v5.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_Te10_r_N10_nlin2Stdcolin27_5.1_publicP_12e3532cc654e44a531eadb30caf0051.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_Te10_r_N10_nlin2Stdcolin27_5.1_publicP_12e3532cc654e44a531eadb30caf0051.nii.gz",
+        "position": [
+          50392116,
+          -12932573,
+          5942946
+        ]
       }
     ]
   ],
@@ -766,28 +1166,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Fo4 (OFC) [v2.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo4_l_N10_nlin2MNI152ASYM2009C_2.1_publicDOI_859db429081144422ef1ebe055725a08.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo4_l_N10_nlin2MNI152ASYM2009C_2.1_publicDOI_859db429081144422ef1ebe055725a08.nii.gz",
+        "position": [
+          -29237908,
+          52508436,
+          -15236783
+        ]
       },
       {
         "filename": "Area Fo4 (OFC) [v2.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Fo4 (OFC) [v2.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo4_l_N10_nlin2Stdcolin27_2.1_publicDOI_2df70e06cfd5cfa015ca9558ff732dae.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo4_l_N10_nlin2Stdcolin27_2.1_publicDOI_2df70e06cfd5cfa015ca9558ff732dae.nii.gz",
+        "position": [
+          -27573653,
+          52998204,
+          -14510778
+        ]
       },
       {
         "filename": "Area Fo4 (OFC) [v2.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Fo4 (OFC) [v2.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo4_r_N10_nlin2MNI152ASYM2009C_2.1_publicDOI_71a978cf4004bbc4a5e82338412b2e08.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo4_r_N10_nlin2MNI152ASYM2009C_2.1_publicDOI_71a978cf4004bbc4a5e82338412b2e08.nii.gz",
+        "position": [
+          31156863,
+          53829721,
+          -15390093
+        ]
       },
       {
         "filename": "Area Fo4 (OFC) [v2.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Fo4 (OFC) [v2.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo4_r_N10_nlin2Stdcolin27_2.1_publicDOI_b61321e1759cee1e45c2208e678a3943.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo4_r_N10_nlin2Stdcolin27_2.1_publicDOI_b61321e1759cee1e45c2208e678a3943.nii.gz",
+        "position": [
+          33636124,
+          52034755,
+          -15509742
+        ]
       }
     ]
   ],
@@ -799,28 +1219,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area TE 1.1 (HESCHL) [v5.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_Te11_l_N10_nlin2MNI152ASYM2009C_5.1_publicP_581d86297fa5d38371013e6c8fd0dddf.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_Te11_l_N10_nlin2MNI152ASYM2009C_5.1_publicP_581d86297fa5d38371013e6c8fd0dddf.nii.gz",
+        "position": [
+          -39537206,
+          -29185649,
+          11225133
+        ]
       },
       {
         "filename": "Area TE 1.1 (HESCHL) [v5.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area TE 1.1 (HESCHL) [v5.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_Te11_l_N10_nlin2Stdcolin27_5.1_publicP_7bb30fe3a0a0cf415780103440b15dbe.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_Te11_l_N10_nlin2Stdcolin27_5.1_publicP_7bb30fe3a0a0cf415780103440b15dbe.nii.gz",
+        "position": [
+          -38219760,
+          -27125577,
+          10774700
+        ]
       },
       {
         "filename": "Area TE 1.1 (HESCHL) [v5.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area TE 1.1 (HESCHL) [v5.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_Te11_r_N10_nlin2MNI152ASYM2009C_5.1_publicP_ecf57e88c589320863218aa0e19dd47f.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_Te11_r_N10_nlin2MNI152ASYM2009C_5.1_publicP_ecf57e88c589320863218aa0e19dd47f.nii.gz",
+        "position": [
+          40353878,
+          -24757143,
+          10842857
+        ]
       },
       {
         "filename": "Area TE 1.1 (HESCHL) [v5.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area TE 1.1 (HESCHL) [v5.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_Te11_r_N10_nlin2Stdcolin27_5.1_publicP_6eb19b3b79d6ff1f27500016ed215dc1.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_Te11_r_N10_nlin2Stdcolin27_5.1_publicP_6eb19b3b79d6ff1f27500016ed215dc1.nii.gz",
+        "position": [
+          40719340,
+          -24106132,
+          10308962
+        ]
       }
     ]
   ],
@@ -832,28 +1272,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Fo5 (OFC) [v2.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo5_l_N10_nlin2MNI152ASYM2009C_2.1_publicDOI_80964dd50cce23aa6e01dfe8e0467452.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo5_l_N10_nlin2MNI152ASYM2009C_2.1_publicDOI_80964dd50cce23aa6e01dfe8e0467452.nii.gz",
+        "position": [
+          -39738252,
+          56611294,
+          -10218054
+        ]
       },
       {
         "filename": "Area Fo5 (OFC) [v2.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Fo5 (OFC) [v2.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo5_l_N10_nlin2Stdcolin27_2.1_publicDOI_74ea50aa11cb4d70f5f8e76e595c2e30.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo5_l_N10_nlin2Stdcolin27_2.1_publicDOI_74ea50aa11cb4d70f5f8e76e595c2e30.nii.gz",
+        "position": [
+          -38055351,
+          56315867,
+          -8720295
+        ]
       },
       {
         "filename": "Area Fo5 (OFC) [v2.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Fo5 (OFC) [v2.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo5_r_N10_nlin2MNI152ASYM2009C_2.1_publicDOI_6e4b48db27652889ee3d45efbe0b0465.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo5_r_N10_nlin2MNI152ASYM2009C_2.1_publicDOI_6e4b48db27652889ee3d45efbe0b0465.nii.gz",
+        "position": [
+          38497105,
+          57087145,
+          -6858425
+        ]
       },
       {
         "filename": "Area Fo5 (OFC) [v2.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Fo5 (OFC) [v2.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo5_r_N10_nlin2Stdcolin27_2.1_publicDOI_d31f76f366fcbce1ecefd0d1c681c0fe.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo5_r_N10_nlin2Stdcolin27_2.1_publicDOI_d31f76f366fcbce1ecefd0d1c681c0fe.nii.gz",
+        "position": [
+          40545983,
+          54504228,
+          -4983615
+        ]
       }
     ]
   ],
@@ -865,28 +1325,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area TE 1.2 (HESCHL) [v5.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_Te12_l_N10_nlin2MNI152ASYM2009C_5.1_publicP_bda66ce8906251c75ef771084941709f.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_Te12_l_N10_nlin2MNI152ASYM2009C_5.1_publicP_bda66ce8906251c75ef771084941709f.nii.gz",
+        "position": [
+          -51139794,
+          -7275300,
+          2604631
+        ]
       },
       {
         "filename": "Area TE 1.2 (HESCHL) [v5.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area TE 1.2 (HESCHL) [v5.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_Te12_l_N10_nlin2Stdcolin27_5.1_publicP_ae0c6a3a2c11d13f70e25df33dde9f86.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_Te12_l_N10_nlin2Stdcolin27_5.1_publicP_ae0c6a3a2c11d13f70e25df33dde9f86.nii.gz",
+        "position": [
+          -50810427,
+          -6551343,
+          1635071
+        ]
       },
       {
         "filename": "Area TE 1.2 (HESCHL) [v5.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area TE 1.2 (HESCHL) [v5.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_Te12_r_N10_nlin2MNI152ASYM2009C_5.1_publicP_c4445d58dc84a7f8214f0888cf46c153.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_Te12_r_N10_nlin2MNI152ASYM2009C_5.1_publicP_c4445d58dc84a7f8214f0888cf46c153.nii.gz",
+        "position": [
+          53854260,
+          -2428251,
+          -1426009
+        ]
       },
       {
         "filename": "Area TE 1.2 (HESCHL) [v5.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area TE 1.2 (HESCHL) [v5.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_Te12_r_N10_nlin2Stdcolin27_5.1_publicP_1e94be7f543a6aa668fb776361b6e58a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_Te12_r_N10_nlin2Stdcolin27_5.1_publicP_1e94be7f543a6aa668fb776361b6e58a.nii.gz",
+        "position": [
+          55870330,
+          -2672527,
+          52747
+        ]
       }
     ]
   ],
@@ -898,28 +1378,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Fo6 (OFC) [v2.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo6_l_N10_nlin2MNI152ASYM2009C_2.1_publicDOI_374b5da5692230b1dde61b8f24e5a869.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo6_l_N10_nlin2MNI152ASYM2009C_2.1_publicDOI_374b5da5692230b1dde61b8f24e5a869.nii.gz",
+        "position": [
+          -45788648,
+          42884347,
+          -14819256
+        ]
       },
       {
         "filename": "Area Fo6 (OFC) [v2.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Fo6 (OFC) [v2.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo6_l_N10_nlin2Stdcolin27_2.1_publicDOI_e0280f196fcc134583b19342a2b4b407.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo6_l_N10_nlin2Stdcolin27_2.1_publicDOI_e0280f196fcc134583b19342a2b4b407.nii.gz",
+        "position": [
+          -44272971,
+          42876258,
+          -12938967
+        ]
       },
       {
         "filename": "Area Fo6 (OFC) [v2.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Fo6 (OFC) [v2.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo6_r_N10_nlin2MNI152ASYM2009C_2.1_publicDOI_af30bdb7baf3287cd9f417c9e70992e2.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo6_r_N10_nlin2MNI152ASYM2009C_2.1_publicDOI_af30bdb7baf3287cd9f417c9e70992e2.nii.gz",
+        "position": [
+          46408524,
+          41220374,
+          -14205821
+        ]
       },
       {
         "filename": "Area Fo6 (OFC) [v2.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Fo6 (OFC) [v2.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo6_r_N10_nlin2Stdcolin27_2.1_publicDOI_db7ea44b1acf9a9a11c471874ae702cf.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo6_r_N10_nlin2Stdcolin27_2.1_publicDOI_db7ea44b1acf9a9a11c471874ae702cf.nii.gz",
+        "position": [
+          48891176,
+          40513824,
+          -12457353
+        ]
       }
     ]
   ],
@@ -931,28 +1431,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area TE 3 (STG) [v5.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_Te3_l_N10_nlin2MNI152ASYM2009C_5.1_publicP_20343504909e5d586f6c6afb53aede2d.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_Te3_l_N10_nlin2MNI152ASYM2009C_5.1_publicP_20343504909e5d586f6c6afb53aede2d.nii.gz",
+        "position": [
+          -65021452,
+          -13798267,
+          691213
+        ]
       },
       {
         "filename": "Area TE 3 (STG) [v5.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area TE 3 (STG) [v5.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_Te3_l_N10_nlin2Stdcolin27_5.1_publicP_ee94f5c173aaf6496d93f5ebc621a740.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_Te3_l_N10_nlin2Stdcolin27_5.1_publicP_ee94f5c173aaf6496d93f5ebc621a740.nii.gz",
+        "position": [
+          -64398501,
+          -12497885,
+          1316801
+        ]
       },
       {
         "filename": "Area TE 3 (STG) [v5.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area TE 3 (STG) [v5.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_Te3_r_N10_nlin2MNI152ASYM2009C_5.1_publicP_7f5ec1e2a1b9f2ce861d5b99273925b6.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_Te3_r_N10_nlin2MNI152ASYM2009C_5.1_publicP_7f5ec1e2a1b9f2ce861d5b99273925b6.nii.gz",
+        "position": [
+          63517180,
+          -9223240,
+          -1006136
+        ]
       },
       {
         "filename": "Area TE 3 (STG) [v5.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area TE 3 (STG) [v5.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_Te3_r_N10_nlin2Stdcolin27_5.1_publicP_83d1cf7a0c3717f030a7c8920887bc00.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_Te3_r_N10_nlin2Stdcolin27_5.1_publicP_83d1cf7a0c3717f030a7c8920887bc00.nii.gz",
+        "position": [
+          65811519,
+          -9018989,
+          -1027621
+        ]
       }
     ]
   ],
@@ -964,28 +1484,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Fo7 (OFC) [v2.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo7_l_N10_nlin2MNI152ASYM2009C_2.1_publicDOI_964a532cb5853aa4d2c7a059559902cc.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo7_l_N10_nlin2MNI152ASYM2009C_2.1_publicDOI_964a532cb5853aa4d2c7a059559902cc.nii.gz",
+        "position": [
+          -37151362,
+          38147830,
+          -12621090
+        ]
       },
       {
         "filename": "Area Fo7 (OFC) [v2.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Fo7 (OFC) [v2.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo7_l_N10_nlin2Stdcolin27_2.1_publicDOI_297152bbde864baaf7a26011d61a93df.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo7_l_N10_nlin2Stdcolin27_2.1_publicDOI_297152bbde864baaf7a26011d61a93df.nii.gz",
+        "position": [
+          -36046240,
+          37308943,
+          -11666667
+        ]
       },
       {
         "filename": "Area Fo7 (OFC) [v2.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Fo7 (OFC) [v2.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo7_r_N10_nlin2MNI152ASYM2009C_2.1_publicDOI_233826baa502af5501d24aa815fa91ee.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo7_r_N10_nlin2MNI152ASYM2009C_2.1_publicDOI_233826baa502af5501d24aa815fa91ee.nii.gz",
+        "position": [
+          35554006,
+          39868546,
+          -13535015
+        ]
       },
       {
         "filename": "Area Fo7 (OFC) [v2.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Fo7 (OFC) [v2.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo7_r_N10_nlin2Stdcolin27_2.1_publicDOI_14d60086cddf17c0923499b5197b374a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo7_r_N10_nlin2Stdcolin27_2.1_publicDOI_14d60086cddf17c0923499b5197b374a.nii.gz",
+        "position": [
+          37850755,
+          37700302,
+          -13777644
+        ]
       }
     ]
   ],
@@ -997,28 +1537,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Ch 123 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Bforebrain_123_l_N10_nlin2MNI152ASYM2009C_4.2_publicP_2ee34ae3e4b3d88ead80c2ca66cbd91a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Bforebrain_123_l_N10_nlin2MNI152ASYM2009C_4.2_publicP_2ee34ae3e4b3d88ead80c2ca66cbd91a.nii.gz",
+        "position": [
+          -3648265,
+          3367508,
+          -8957413
+        ]
       },
       {
         "filename": "Ch 123 (Basal Forebrain) [v4.2, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Ch 123 (Basal Forebrain) [v4.2, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Bforebrain_123_l_N10_nlin2Stdcolin27_4.2_publicP_276e61aa375a96aa30727b96fdbcb359.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Bforebrain_123_l_N10_nlin2Stdcolin27_4.2_publicP_276e61aa375a96aa30727b96fdbcb359.nii.gz",
+        "position": [
+          -2339339,
+          4405405,
+          -8804805
+        ]
       },
       {
         "filename": "Ch 123 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Ch 123 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Bforebrain_123_r_N10_nlin2MNI152ASYM2009C_4.2_publicP_5150e72146b5a751407c4dc28ba1703b.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Bforebrain_123_r_N10_nlin2MNI152ASYM2009C_4.2_publicP_5150e72146b5a751407c4dc28ba1703b.nii.gz",
+        "position": [
+          1687097,
+          4148387,
+          -8461290
+        ]
       },
       {
         "filename": "Ch 123 (Basal Forebrain) [v4.2, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Ch 123 (Basal Forebrain) [v4.2, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Bforebrain_123_r_N10_nlin2Stdcolin27_4.2_publicP_08a22f59a0ef477bcd6839aa94654d41.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Bforebrain_123_r_N10_nlin2Stdcolin27_4.2_publicP_08a22f59a0ef477bcd6839aa94654d41.nii.gz",
+        "position": [
+          3240000,
+          5153846,
+          -8347692
+        ]
       }
     ]
   ],
@@ -1030,28 +1590,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Ch 4 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Bforebrain_4_l_N10_nlin2MNI152ASYM2009C_4.2_publicP_29a2440c314f295d548cbb0996fe3252.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Bforebrain_4_l_N10_nlin2MNI152ASYM2009C_4.2_publicP_29a2440c314f295d548cbb0996fe3252.nii.gz",
+        "position": [
+          -17620275,
+          -2290378,
+          -12609966
+        ]
       },
       {
         "filename": "Ch 4 (Basal Forebrain) [v4.2, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Ch 4 (Basal Forebrain) [v4.2, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Bforebrain_4_l_N10_nlin2Stdcolin27_4.2_publicP_b92bf6270f6426059d719a6ff4d46aa7.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Bforebrain_4_l_N10_nlin2Stdcolin27_4.2_publicP_b92bf6270f6426059d719a6ff4d46aa7.nii.gz",
+        "position": [
+          -16053628,
+          -454259,
+          -12470032
+        ]
       },
       {
         "filename": "Ch 4 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Ch 4 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Bforebrain_4_r_N10_nlin2MNI152ASYM2009C_4.2_publicP_aca0b12b3a3f42b5ae08fb7d1e8d43c5.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Bforebrain_4_r_N10_nlin2MNI152ASYM2009C_4.2_publicP_aca0b12b3a3f42b5ae08fb7d1e8d43c5.nii.gz",
+        "position": [
+          15978528,
+          -1288344,
+          -12582822
+        ]
       },
       {
         "filename": "Ch 4 (Basal Forebrain) [v4.2, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Ch 4 (Basal Forebrain) [v4.2, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Bforebrain_4_r_N10_nlin2Stdcolin27_4.2_publicP_a38a48076577c2c94ed7aad80c625952.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Bforebrain_4_r_N10_nlin2Stdcolin27_4.2_publicP_a38a48076577c2c94ed7aad80c625952.nii.gz",
+        "position": [
+          17655072,
+          263768,
+          -11539130
+        ]
       }
     ]
   ],
@@ -1063,28 +1643,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area OP1 (POperc) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP1_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_09f37b8616fa6fa74f59826ece9ba380.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP1_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_09f37b8616fa6fa74f59826ece9ba380.nii.gz",
+        "position": [
+          -52293320,
+          -24316468,
+          18030093
+        ]
       },
       {
         "filename": "Area OP1 (POperc) [v9.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area OP1 (POperc) [v9.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP1_l_N10_nlin2Stdcolin27_9.4_publicP_45c04bd91a3a2027b2d3c6c266bb90e7.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP1_l_N10_nlin2Stdcolin27_9.4_publicP_45c04bd91a3a2027b2d3c6c266bb90e7.nii.gz",
+        "position": [
+          -51566527,
+          -22523828,
+          17190240
+        ]
       },
       {
         "filename": "Area OP1 (POperc) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area OP1 (POperc) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP1_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_8b2c48b662c5e6df1958feb0fc6976c3.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP1_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_8b2c48b662c5e6df1958feb0fc6976c3.nii.gz",
+        "position": [
+          51168165,
+          -19477523,
+          18151001
+        ]
       },
       {
         "filename": "Area OP1 (POperc) [v9.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area OP1 (POperc) [v9.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP1_r_N10_nlin2Stdcolin27_9.4_publicP_30c32326b70316dcb9ddea7b64c3adfe.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP1_r_N10_nlin2Stdcolin27_9.4_publicP_30c32326b70316dcb9ddea7b64c3adfe.nii.gz",
+        "position": [
+          52888430,
+          -20697107,
+          17000826
+        ]
       }
     ]
   ],
@@ -1096,28 +1696,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 44 (IFG) [v7.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Broca_44_l_N10_nlin2MNI152ASYM2009C_7.4_publicP_1a7ee2bd006ecd2b0afec1294b1edc4f.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Broca_44_l_N10_nlin2MNI152ASYM2009C_7.4_publicP_1a7ee2bd006ecd2b0afec1294b1edc4f.nii.gz",
+        "position": [
+          -54134365,
+          11216664,
+          15641040
+        ]
       },
       {
         "filename": "Area 44 (IFG) [v7.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 44 (IFG) [v7.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Broca_44_l_N10_nlin2Stdcolin27_7.4_publicP_e59cf54b21c0c5b6bc9f28238caca480.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Broca_44_l_N10_nlin2Stdcolin27_7.4_publicP_e59cf54b21c0c5b6bc9f28238caca480.nii.gz",
+        "position": [
+          -54242820,
+          11425127,
+          18292735
+        ]
       },
       {
         "filename": "Area 44 (IFG) [v7.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 44 (IFG) [v7.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Broca_44_r_N10_nlin2MNI152ASYM2009C_7.4_publicP_ecd680988f3750c6003e02836832a9c9.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Broca_44_r_N10_nlin2MNI152ASYM2009C_7.4_publicP_ecd680988f3750c6003e02836832a9c9.nii.gz",
+        "position": [
+          53627432,
+          13897917,
+          11532612
+        ]
       },
       {
         "filename": "Area 44 (IFG) [v7.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 44 (IFG) [v7.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Broca_44_r_N10_nlin2Stdcolin27_7.4_publicP_a654ac4a5ffb29e71ea8ba6607d8d636.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Broca_44_r_N10_nlin2Stdcolin27_7.4_publicP_a654ac4a5ffb29e71ea8ba6607d8d636.nii.gz",
+        "position": [
+          56359074,
+          11741030,
+          13444358
+        ]
       }
     ]
   ],
@@ -1129,28 +1749,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area OP2 (POperc) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP2_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_8eb1862721707ee0a0d09c3492b947ca.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP2_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_8eb1862721707ee0a0d09c3492b947ca.nii.gz",
+        "position": [
+          -37009402,
+          -24886325,
+          19503419
+        ]
       },
       {
         "filename": "Area OP2 (POperc) [v9.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area OP2 (POperc) [v9.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP2_l_N10_nlin2Stdcolin27_9.4_publicP_1e664b1d4576c31315365aad04e9dc25.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP2_l_N10_nlin2Stdcolin27_9.4_publicP_1e664b1d4576c31315365aad04e9dc25.nii.gz",
+        "position": [
+          -36355372,
+          -23452479,
+          18938017
+        ]
       },
       {
         "filename": "Area OP2 (POperc) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area OP2 (POperc) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP2_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_9ab95451711065d019b3a27312213d18.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP2_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_9ab95451711065d019b3a27312213d18.nii.gz",
+        "position": [
+          35239706,
+          -21379412,
+          18500000
+        ]
       },
       {
         "filename": "Area OP2 (POperc) [v9.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area OP2 (POperc) [v9.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP2_r_N10_nlin2Stdcolin27_9.4_publicP_ede1b5a176315095e131e0791a00f1f5.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP2_r_N10_nlin2Stdcolin27_9.4_publicP_ede1b5a176315095e131e0791a00f1f5.nii.gz",
+        "position": [
+          35629457,
+          -21159690,
+          18021705
+        ]
       }
     ]
   ],
@@ -1162,28 +1802,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 45 (IFG) [v7.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Broca_45_l_N10_nlin2MNI152ASYM2009C_7.4_publicP_6d43de9c7bb9817691ec792334a3152c.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Broca_45_l_N10_nlin2MNI152ASYM2009C_7.4_publicP_6d43de9c7bb9817691ec792334a3152c.nii.gz",
+        "position": [
+          -54741552,
+          27110876,
+          13391235
+        ]
       },
       {
         "filename": "Area 45 (IFG) [v7.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 45 (IFG) [v7.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Broca_45_l_N10_nlin2Stdcolin27_7.4_publicP_08da4129fea7c04d5608bded93dfda10.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Broca_45_l_N10_nlin2Stdcolin27_7.4_publicP_08da4129fea7c04d5608bded93dfda10.nii.gz",
+        "position": [
+          -54903012,
+          26558233,
+          15528514
+        ]
       },
       {
         "filename": "Area 45 (IFG) [v7.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 45 (IFG) [v7.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Broca_45_r_N10_nlin2MNI152ASYM2009C_7.4_publicP_45869e9e77064496f151048475e0716d.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Broca_45_r_N10_nlin2MNI152ASYM2009C_7.4_publicP_45869e9e77064496f151048475e0716d.nii.gz",
+        "position": [
+          52598442,
+          28512366,
+          11201622
+        ]
       },
       {
         "filename": "Area 45 (IFG) [v7.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 45 (IFG) [v7.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Broca_45_r_N10_nlin2Stdcolin27_7.4_publicP_b9da1fa5cada59f4d42bac9f59e8eafe.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Broca_45_r_N10_nlin2Stdcolin27_7.4_publicP_b9da1fa5cada59f4d42bac9f59e8eafe.nii.gz",
+        "position": [
+          55787613,
+          26216770,
+          12102941
+        ]
       }
     ]
   ],
@@ -1195,28 +1855,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area OP3 (POperc) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP3_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_4ce38061bc18f309b8195c6dcf1ef1be.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP3_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_4ce38061bc18f309b8195c6dcf1ef1be.nii.gz",
+        "position": [
+          -41843266,
+          -14720501,
+          18247318
+        ]
       },
       {
         "filename": "Area OP3 (POperc) [v9.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area OP3 (POperc) [v9.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP3_l_N10_nlin2Stdcolin27_9.4_publicP_c92d37026fafed1a509eb680c6503d7c.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP3_l_N10_nlin2Stdcolin27_9.4_publicP_c92d37026fafed1a509eb680c6503d7c.nii.gz",
+        "position": [
+          -40814044,
+          -13737321,
+          17669701
+        ]
       },
       {
         "filename": "Area OP3 (POperc) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area OP3 (POperc) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP3_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_56be809cb09e6ec59bf5331f228a2ae1.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP3_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_56be809cb09e6ec59bf5331f228a2ae1.nii.gz",
+        "position": [
+          40261521,
+          -11390553,
+          18514977
+        ]
       },
       {
         "filename": "Area OP3 (POperc) [v9.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area OP3 (POperc) [v9.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP3_r_N10_nlin2Stdcolin27_9.4_publicP_d42f39d7978a6678b4778dba5fae7718.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP3_r_N10_nlin2Stdcolin27_9.4_publicP_d42f39d7978a6678b4778dba5fae7718.nii.gz",
+        "position": [
+          41195980,
+          -11633166,
+          18002513
+        ]
       }
     ]
   ],
@@ -1228,28 +1908,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cerebellum_Ndentd_l_N10_nlin2MNI152ASYM2009C_6.2_publicP_3a764725c01a90a232d8cf70bdbc7add.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cerebellum_Ndentd_l_N10_nlin2MNI152ASYM2009C_6.2_publicP_3a764725c01a90a232d8cf70bdbc7add.nii.gz",
+        "position": [
+          -17069823,
+          -58618780,
+          -38297753
+        ]
       },
       {
         "filename": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cerebellum_Ndentd_l_N10_nlin2Stdcolin27_6.2_publicP_e4005dbb191bf6e7d186a59d7054f585.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cerebellum_Ndentd_l_N10_nlin2Stdcolin27_6.2_publicP_e4005dbb191bf6e7d186a59d7054f585.nii.gz",
+        "position": [
+          -16612782,
+          -56036341,
+          -36064536
+        ]
       },
       {
         "filename": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cerebellum_Ndentd_r_N10_nlin2MNI152ASYM2009C_6.2_publicP_4211130f95a204cfd747f2cbed179536.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cerebellum_Ndentd_r_N10_nlin2MNI152ASYM2009C_6.2_publicP_4211130f95a204cfd747f2cbed179536.nii.gz",
+        "position": [
+          13542553,
+          -60120346,
+          -37750665
+        ]
       },
       {
         "filename": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cerebellum_Ndentd_r_N10_nlin2Stdcolin27_6.2_publicP_1f16cdf30a2b987c7f6dd013b08b73ad.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cerebellum_Ndentd_r_N10_nlin2Stdcolin27_6.2_publicP_1f16cdf30a2b987c7f6dd013b08b73ad.nii.gz",
+        "position": [
+          15388967,
+          -58303395,
+          -36586280
+        ]
       }
     ]
   ],
@@ -1261,28 +1961,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area OP4 (POperc) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP4_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_0a5b380ef43ab7bc87198206a1a02353.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP4_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_0a5b380ef43ab7bc87198206a1a02353.nii.gz",
+        "position": [
+          -61452452,
+          -11957958,
+          14987487
+        ]
       },
       {
         "filename": "Area OP4 (POperc) [v9.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area OP4 (POperc) [v9.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP4_l_N10_nlin2Stdcolin27_9.4_publicP_d23daf7663d8febb3aa0d092e350f570.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP4_l_N10_nlin2Stdcolin27_9.4_publicP_d23daf7663d8febb3aa0d092e350f570.nii.gz",
+        "position": [
+          -60514139,
+          -10849614,
+          15368038
+        ]
       },
       {
         "filename": "Area OP4 (POperc) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area OP4 (POperc) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP4_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_748101beb3152bc7f2991094971c1f3a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP4_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_748101beb3152bc7f2991094971c1f3a.nii.gz",
+        "position": [
+          61825815,
+          -8262531,
+          12300125
+        ]
       },
       {
         "filename": "Area OP4 (POperc) [v9.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area OP4 (POperc) [v9.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP4_r_N10_nlin2Stdcolin27_9.4_publicP_82f74a89a06e43d8e64ffec0b6ef473f.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP4_r_N10_nlin2Stdcolin27_9.4_publicP_82f74a89a06e43d8e64ffec0b6ef473f.nii.gz",
+        "position": [
+          63398148,
+          -9211111,
+          12780864
+        ]
       }
     ]
   ],
@@ -1294,28 +2014,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Ventral Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cerebellum_Ndentv_l_N10_nlin2MNI152ASYM2009C_6.2_publicP_0cb86cca6476c331a50318f46208a2a9.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cerebellum_Ndentv_l_N10_nlin2MNI152ASYM2009C_6.2_publicP_0cb86cca6476c331a50318f46208a2a9.nii.gz",
+        "position": [
+          -13748954,
+          -58276151,
+          -31782427
+        ]
       },
       {
         "filename": "Ventral Dentate Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Ventral Dentate Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cerebellum_Ndentv_l_N10_nlin2Stdcolin27_6.2_publicP_66c0eabf5055063dc9c4e26745bc39d0.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cerebellum_Ndentv_l_N10_nlin2Stdcolin27_6.2_publicP_66c0eabf5055063dc9c4e26745bc39d0.nii.gz",
+        "position": [
+          -13112867,
+          -56176072,
+          -29957111
+        ]
       },
       {
         "filename": "Ventral Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Ventral Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cerebellum_Ndentv_r_N10_nlin2MNI152ASYM2009C_6.2_publicP_fc8be37b4b948d2aa1a7e94d00e3310e.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cerebellum_Ndentv_r_N10_nlin2MNI152ASYM2009C_6.2_publicP_fc8be37b4b948d2aa1a7e94d00e3310e.nii.gz",
+        "position": [
+          10255877,
+          -57747740,
+          -32527125
+        ]
       },
       {
         "filename": "Ventral Dentate Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Ventral Dentate Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cerebellum_Ndentv_r_N10_nlin2Stdcolin27_6.2_publicP_0a940b0c0455d9073942ab515304ead9.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cerebellum_Ndentv_r_N10_nlin2Stdcolin27_6.2_publicP_0a940b0c0455d9073942ab515304ead9.nii.gz",
+        "position": [
+          12107011,
+          -55974170,
+          -31385609
+        ]
       }
     ]
   ],
@@ -1327,28 +2067,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area OP8 (Frontal Operculum) [v5.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP8_l_N10_nlin2MNI152ASYM2009C_5.1_publicDOI_cac2827254edba301e8dc491d78df49a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP8_l_N10_nlin2MNI152ASYM2009C_5.1_publicDOI_cac2827254edba301e8dc491d78df49a.nii.gz",
+        "position": [
+          -42412158,
+          17741884,
+          5519733
+        ]
       },
       {
         "filename": "Area OP8 (Frontal Operculum) [v5.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area OP8 (Frontal Operculum) [v5.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP8_l_N10_nlin2Stdcolin27_5.1_publicDOI_1d25df23892ebedebbf9ffe115a0f202.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP8_l_N10_nlin2Stdcolin27_5.1_publicDOI_1d25df23892ebedebbf9ffe115a0f202.nii.gz",
+        "position": [
+          -41777921,
+          17183344,
+          7912847
+        ]
       },
       {
         "filename": "Area OP8 (Frontal Operculum) [v5.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area OP8 (Frontal Operculum) [v5.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP8_r_N10_nlin2MNI152ASYM2009C_5.1_publicDOI_3ca7868161d7378b7b3493e7b9eab16d.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP8_r_N10_nlin2MNI152ASYM2009C_5.1_publicDOI_3ca7868161d7378b7b3493e7b9eab16d.nii.gz",
+        "position": [
+          40480213,
+          18898782,
+          6836377
+        ]
       },
       {
         "filename": "Area OP8 (Frontal Operculum) [v5.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area OP8 (Frontal Operculum) [v5.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP8_r_N10_nlin2Stdcolin27_5.1_publicDOI_a3118794ab13bf97592444a1eeca8f9f.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP8_r_N10_nlin2Stdcolin27_5.1_publicDOI_a3118794ab13bf97592444a1eeca8f9f.nii.gz",
+        "position": [
+          42725111,
+          16774146,
+          7832095
+        ]
       }
     ]
   ],
@@ -1360,28 +2120,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Fastigial Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cerebellum_Nfast_l_N10_nlin2MNI152ASYM2009C_6.2_publicP_d42e05acf865e8478e5fe97385a78d00.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cerebellum_Nfast_l_N10_nlin2MNI152ASYM2009C_6.2_publicP_d42e05acf865e8478e5fe97385a78d00.nii.gz",
+        "position": [
+          -4666667,
+          -54963333,
+          -30763333
+        ]
       },
       {
         "filename": "Fastigial Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Fastigial Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cerebellum_Nfast_l_N10_nlin2Stdcolin27_6.2_publicP_c18475ec9af75fe8a1f5dce004278e55.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cerebellum_Nfast_l_N10_nlin2Stdcolin27_6.2_publicP_c18475ec9af75fe8a1f5dce004278e55.nii.gz",
+        "position": [
+          -3828877,
+          -53149733,
+          -29013369
+        ]
       },
       {
         "filename": "Fastigial Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Fastigial Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cerebellum_Nfast_r_N10_nlin2MNI152ASYM2009C_6.2_publicP_6d0b43f4d2b4981735164ac4d52a4d6d.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cerebellum_Nfast_r_N10_nlin2MNI152ASYM2009C_6.2_publicP_6d0b43f4d2b4981735164ac4d52a4d6d.nii.gz",
+        "position": [
+          1261658,
+          -54932642,
+          -30598446
+        ]
       },
       {
         "filename": "Fastigial Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Fastigial Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cerebellum_Nfast_r_N10_nlin2Stdcolin27_6.2_publicP_6745e48df4cef0ef4cd9c1e9f9d114b3.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cerebellum_Nfast_r_N10_nlin2Stdcolin27_6.2_publicP_6745e48df4cef0ef4cd9c1e9f9d114b3.nii.gz",
+        "position": [
+          3011287,
+          -53069977,
+          -29040632
+        ]
       }
     ]
   ],
@@ -1393,28 +2173,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Interposed Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cerebellum_Ninterp_l_N10_nlin2MNI152ASYM2009C_6.2_publicP_be17425dcfd546aaf5ec80e315d642d9.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cerebellum_Ninterp_l_N10_nlin2MNI152ASYM2009C_6.2_publicP_be17425dcfd546aaf5ec80e315d642d9.nii.gz",
+        "position": [
+          -9205882,
+          -57128342,
+          -32224599
+        ]
       },
       {
         "filename": "Interposed Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Interposed Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cerebellum_Ninterp_l_N10_nlin2Stdcolin27_6.2_publicP_2f9237309b1e61c190196401e9a11c7f.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cerebellum_Ninterp_l_N10_nlin2Stdcolin27_6.2_publicP_2f9237309b1e61c190196401e9a11c7f.nii.gz",
+        "position": [
+          -8457921,
+          -55262376,
+          -30235149
+        ]
       },
       {
         "filename": "Interposed Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Interposed Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cerebellum_Ninterp_r_N10_nlin2MNI152ASYM2009C_6.2_publicP_793abbe42c2a952e6e728f8250f1f54c.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cerebellum_Ninterp_r_N10_nlin2MNI152ASYM2009C_6.2_publicP_793abbe42c2a952e6e728f8250f1f54c.nii.gz",
+        "position": [
+          6034375,
+          -56068750,
+          -32600000
+        ]
       },
       {
         "filename": "Interposed Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Interposed Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cerebellum_Ninterp_r_N10_nlin2Stdcolin27_6.2_publicP_58293b82b27045ef76bc1a0ef3428afc.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cerebellum_Ninterp_r_N10_nlin2Stdcolin27_6.2_publicP_58293b82b27045ef76bc1a0ef3428afc.nii.gz",
+        "position": [
+          7917989,
+          -54201058,
+          -31489418
+        ]
       }
     ]
   ],
@@ -1426,28 +2226,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area OP9 (Frontal Operculum) [v5.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP9_l_N10_nlin2MNI152ASYM2009C_5.1_publicDOI_45982890da26f7e740fc6bc2e9325ff3.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP9_l_N10_nlin2MNI152ASYM2009C_5.1_publicDOI_45982890da26f7e740fc6bc2e9325ff3.nii.gz",
+        "position": [
+          -45695111,
+          26848756,
+          3249018
+        ]
       },
       {
         "filename": "Area OP9 (Frontal Operculum) [v5.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area OP9 (Frontal Operculum) [v5.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP9_l_N10_nlin2Stdcolin27_5.1_publicDOI_ec9bf05b99fa3460ea63073a38693826.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP9_l_N10_nlin2Stdcolin27_5.1_publicDOI_ec9bf05b99fa3460ea63073a38693826.nii.gz",
+        "position": [
+          -45090542,
+          25998787,
+          5597413
+        ]
       },
       {
         "filename": "Area OP9 (Frontal Operculum) [v5.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area OP9 (Frontal Operculum) [v5.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP9_r_N10_nlin2MNI152ASYM2009C_5.1_publicDOI_1ec9370a2dc7b55a2a26d86da01d88e5.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP9_r_N10_nlin2MNI152ASYM2009C_5.1_publicDOI_1ec9370a2dc7b55a2a26d86da01d88e5.nii.gz",
+        "position": [
+          41290819,
+          28113597,
+          1086868
+        ]
       },
       {
         "filename": "Area OP9 (Frontal Operculum) [v5.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area OP9 (Frontal Operculum) [v5.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP9_r_N10_nlin2Stdcolin27_5.1_publicDOI_6f622eda1620ccab62d46c4d95b396bb.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP9_r_N10_nlin2Stdcolin27_5.1_publicDOI_6f622eda1620ccab62d46c4d95b396bb.nii.gz",
+        "position": [
+          44374928,
+          26272467,
+          2966228
+        ]
       }
     ]
   ],
@@ -1459,28 +2279,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 25 (sACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_25_l_N10_nlin2MNI152ASYM2009C_16.1_publicP_bc3b69f445a7d6db586b15476c88b2de.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_25_l_N10_nlin2MNI152ASYM2009C_16.1_publicP_bc3b69f445a7d6db586b15476c88b2de.nii.gz",
+        "position": [
+          -5565878,
+          12434122,
+          -13119932
+        ]
       },
       {
         "filename": "Area 25 (sACC) [v16.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 25 (sACC) [v16.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_25_l_N10_nlin2Stdcolin27_16.1_publicP_84abfca40abffa2dffd2e7743f8a6ab3.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_25_l_N10_nlin2Stdcolin27_16.1_publicP_84abfca40abffa2dffd2e7743f8a6ab3.nii.gz",
+        "position": [
+          -3522692,
+          13560250,
+          -11860720
+        ]
       },
       {
         "filename": "Area 25 (sACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 25 (sACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_25_r_N10_nlin2MNI152ASYM2009C_16.1_publicP_6e2e70f1c2693df95f1f8c65d9ab6cef.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_25_r_N10_nlin2MNI152ASYM2009C_16.1_publicP_6e2e70f1c2693df95f1f8c65d9ab6cef.nii.gz",
+        "position": [
+          3297386,
+          11678649,
+          -13530501
+        ]
       },
       {
         "filename": "Area 25 (sACC) [v16.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 25 (sACC) [v16.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_25_r_N10_nlin2Stdcolin27_16.1_publicP_976b0f40ea5674a178c1c4560b4d56e7.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_25_r_N10_nlin2Stdcolin27_16.1_publicP_976b0f40ea5674a178c1c4560b4d56e7.nii.gz",
+        "position": [
+          4564663,
+          12954463,
+          -12174863
+        ]
       }
     ]
   ],
@@ -1492,28 +2332,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 33 (ACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_33_l_N10_nlin2MNI152ASYM2009C_16.1_publicP_9832e9c4ee8ed764f11c12e68e84f790.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_33_l_N10_nlin2MNI152ASYM2009C_16.1_publicP_9832e9c4ee8ed764f11c12e68e84f790.nii.gz",
+        "position": [
+          -6094628,
+          15035613,
+          15966015
+        ]
       },
       {
         "filename": "Area 33 (ACC) [v16.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 33 (ACC) [v16.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_33_l_N10_nlin2Stdcolin27_16.1_publicP_9effbeac2461fdf77b2d49619f168d75.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_33_l_N10_nlin2Stdcolin27_16.1_publicP_9effbeac2461fdf77b2d49619f168d75.nii.gz",
+        "position": [
+          -4861218,
+          14163048,
+          15911877
+        ]
       },
       {
         "filename": "Area 33 (ACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 33 (ACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_33_r_N10_nlin2MNI152ASYM2009C_16.1_publicP_0a2943971f268fce0cc9e5f59e6fe55c.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_33_r_N10_nlin2MNI152ASYM2009C_16.1_publicP_0a2943971f268fce0cc9e5f59e6fe55c.nii.gz",
+        "position": [
+          4398596,
+          17026911,
+          15680187
+        ]
       },
       {
         "filename": "Area 33 (ACC) [v16.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 33 (ACC) [v16.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_33_r_N10_nlin2Stdcolin27_16.1_publicP_94750db9a4bede8ee6b6970d7ccd8f17.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_33_r_N10_nlin2Stdcolin27_16.1_publicP_94750db9a4bede8ee6b6970d7ccd8f17.nii.gz",
+        "position": [
+          5087045,
+          15562321,
+          16125051
+        ]
       }
     ]
   ],
@@ -1525,28 +2385,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hIP4 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP4_l_N10_nlin2MNI152ASYM2009C_7.1_publicP_95a503dc474773d76ea6bc295bb14cb1.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP4_l_N10_nlin2MNI152ASYM2009C_7.1_publicP_95a503dc474773d76ea6bc295bb14cb1.nii.gz",
+        "position": [
+          -31264133,
+          -81080409,
+          24906920
+        ]
       },
       {
         "filename": "Area hIP4 (IPS) [v7.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hIP4 (IPS) [v7.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP4_l_N10_nlin2Stdcolin27_7.1_publicP_511ed7fad34d51f367f33e8938e47ba4.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP4_l_N10_nlin2Stdcolin27_7.1_publicP_511ed7fad34d51f367f33e8938e47ba4.nii.gz",
+        "position": [
+          -29349066,
+          -79948651,
+          25849585
+        ]
       },
       {
         "filename": "Area hIP4 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hIP4 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP4_r_N10_nlin2MNI152ASYM2009C_7.1_publicP_0c36e58e56b65c803270b83dc677c35e.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP4_r_N10_nlin2MNI152ASYM2009C_7.1_publicP_0c36e58e56b65c803270b83dc677c35e.nii.gz",
+        "position": [
+          37282609,
+          -76348814,
+          22440217
+        ]
       },
       {
         "filename": "Area hIP4 (IPS) [v7.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hIP4 (IPS) [v7.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP4_r_N10_nlin2Stdcolin27_7.1_publicP_6fd00fe205e860d895e79132747d2713.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP4_r_N10_nlin2Stdcolin27_7.1_publicP_6fd00fe205e860d895e79132747d2713.nii.gz",
+        "position": [
+          37324927,
+          -76495150,
+          22338021
+        ]
       }
     ]
   ],
@@ -1558,28 +2438,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area p24ab (pACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_p24ab_l_N10_nlin2MNI152ASYM2009C_16.1_publicP_b004997e409abb7655a9f4a52d352e6c.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_p24ab_l_N10_nlin2MNI152ASYM2009C_16.1_publicP_b004997e409abb7655a9f4a52d352e6c.nii.gz",
+        "position": [
+          -3951741,
+          38786470,
+          4481049
+        ]
       },
       {
         "filename": "Area p24ab (pACC) [v16.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area p24ab (pACC) [v16.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_p24ab_l_N10_nlin2Stdcolin27_16.1_publicP_444aa7585813722d798a82dbe79e1c9a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_p24ab_l_N10_nlin2Stdcolin27_16.1_publicP_444aa7585813722d798a82dbe79e1c9a.nii.gz",
+        "position": [
+          -2244059,
+          38783168,
+          6389109
+        ]
       },
       {
         "filename": "Area p24ab (pACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area p24ab (pACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_p24ab_r_N10_nlin2MNI152ASYM2009C_16.1_publicP_d5ca48b6f8408bcc485e957c01499681.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_p24ab_r_N10_nlin2MNI152ASYM2009C_16.1_publicP_d5ca48b6f8408bcc485e957c01499681.nii.gz",
+        "position": [
+          2508004,
+          39161686,
+          6891142
+        ]
       },
       {
         "filename": "Area p24ab (pACC) [v16.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area p24ab (pACC) [v16.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_p24ab_r_N10_nlin2Stdcolin27_16.16c52469cebca3f350d92d20020c62e87.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_p24ab_r_N10_nlin2Stdcolin27_16.16c52469cebca3f350d92d20020c62e87.nii.gz",
+        "position": [
+          3429274,
+          38385609,
+          7809963
+        ]
       }
     ]
   ],
@@ -1591,28 +2491,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hIP5 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP5_l_N10_nlin2MNI152ASYM2009C_7.1_publicP_76c140b3be6a72b8c969ee82d3427019.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP5_l_N10_nlin2MNI152ASYM2009C_7.1_publicP_76c140b3be6a72b8c969ee82d3427019.nii.gz",
+        "position": [
+          -29185032,
+          -74634355,
+          36823512
+        ]
       },
       {
         "filename": "Area hIP5 (IPS) [v7.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hIP5 (IPS) [v7.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP5_l_N10_nlin2Stdcolin27_7.1_publicP_f4d4897056aa0e68c6f79d32dd059b0d.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP5_l_N10_nlin2Stdcolin27_7.1_publicP_f4d4897056aa0e68c6f79d32dd059b0d.nii.gz",
+        "position": [
+          -28321120,
+          -73162807,
+          36664362
+        ]
       },
       {
         "filename": "Area hIP5 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hIP5 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP5_r_N10_nlin2MNI152ASYM2009C_7.1_publicP_dd7a3a18d34fa1294a1c0691a9540d9a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP5_r_N10_nlin2MNI152ASYM2009C_7.1_publicP_dd7a3a18d34fa1294a1c0691a9540d9a.nii.gz",
+        "position": [
+          33939891,
+          -69259563,
+          34275566
+        ]
       },
       {
         "filename": "Area hIP5 (IPS) [v7.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hIP5 (IPS) [v7.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP5_r_N10_nlin2Stdcolin27_7.1_publicP_70cec9386200f81db1eca7667ce0e208.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP5_r_N10_nlin2Stdcolin27_7.1_publicP_70cec9386200f81db1eca7667ce0e208.nii.gz",
+        "position": [
+          34614713,
+          -68930590,
+          33299252
+        ]
       }
     ]
   ],
@@ -1624,28 +2544,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area p24c (pACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_p24c_l_N10_nlin2MNI152ASYM2009C_16.1_publicP_e440a4a4eee9203abcc4aac8f6381216.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_p24c_l_N10_nlin2MNI152ASYM2009C_16.1_publicP_e440a4a4eee9203abcc4aac8f6381216.nii.gz",
+        "position": [
+          -10315842,
+          41083498,
+          11735644
+        ]
       },
       {
         "filename": "Area p24c (pACC) [v16.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area p24c (pACC) [v16.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_p24c_l_N10_nlin2Stdcolin27_16.1_publicP_9c9d82fb9bfe36b1bce38672bdb4740a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_p24c_l_N10_nlin2Stdcolin27_16.1_publicP_9c9d82fb9bfe36b1bce38672bdb4740a.nii.gz",
+        "position": [
+          -8144989,
+          41168443,
+          14314854
+        ]
       },
       {
         "filename": "Area p24c (pACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area p24c (pACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_p24c_r_N10_nlin2MNI152ASYM2009C_16.1_publicP_795c9d7ed029f33449d4d41098cd51dc.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_p24c_r_N10_nlin2MNI152ASYM2009C_16.1_publicP_795c9d7ed029f33449d4d41098cd51dc.nii.gz",
+        "position": [
+          9082066,
+          42907018,
+          11145614
+        ]
       },
       {
         "filename": "Area p24c (pACC) [v16.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area p24c (pACC) [v16.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_p24c_r_N10_nlin2Stdcolin27_16.1_publicP_beb8c3fb63fe05540e87a2007acc40af.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_p24c_r_N10_nlin2Stdcolin27_16.1_publicP_beb8c3fb63fe05540e87a2007acc40af.nii.gz",
+        "position": [
+          9856593,
+          40780558,
+          12002406
+        ]
       }
     ]
   ],
@@ -1657,28 +2597,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hIP6 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP6_l_N10_nlin2MNI152ASYM2009C_7.1_publicP_1032d08a95d8735b03b41de55118631a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP6_l_N10_nlin2MNI152ASYM2009C_7.1_publicP_1032d08a95d8735b03b41de55118631a.nii.gz",
+        "position": [
+          -32177576,
+          -67578743,
+          47685353
+        ]
       },
       {
         "filename": "Area hIP6 (IPS) [v7.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hIP6 (IPS) [v7.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP6_l_N10_nlin2Stdcolin27_7.1_publicP_ba9a8054c3e2430d74d51b88da896aef.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP6_l_N10_nlin2Stdcolin27_7.1_publicP_ba9a8054c3e2430d74d51b88da896aef.nii.gz",
+        "position": [
+          -31988131,
+          -66522626,
+          46155045
+        ]
       },
       {
         "filename": "Area hIP6 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hIP6 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP6_r_N10_nlin2MNI152ASYM2009C_7.1_publicP_c339fe027afa1f985af1f062b0a03014.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP6_r_N10_nlin2MNI152ASYM2009C_7.1_publicP_c339fe027afa1f985af1f062b0a03014.nii.gz",
+        "position": [
+          37140789,
+          -63130263,
+          45176974
+        ]
       },
       {
         "filename": "Area hIP6 (IPS) [v7.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hIP6 (IPS) [v7.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP6_r_N10_nlin2Stdcolin27_7.1_publicP_e268e88709a2c36a2861204c3566f63b.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP6_r_N10_nlin2Stdcolin27_7.1_publicP_e268e88709a2c36a2861204c3566f63b.nii.gz",
+        "position": [
+          37069307,
+          -63723479,
+          45628006
+        ]
       }
     ]
   ],
@@ -1690,28 +2650,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area p32 (pACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_p32_l_N10_nlin2MNI152ASYM2009C_16.1_publicP_bce14f798627873c1f117df0141f35ca.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_p32_l_N10_nlin2MNI152ASYM2009C_16.1_publicP_bce14f798627873c1f117df0141f35ca.nii.gz",
+        "position": [
+          -8368982,
+          49719698,
+          10114173
+        ]
       },
       {
         "filename": "Area p32 (pACC) [v16.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area p32 (pACC) [v16.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_p32_l_N10_nlin2Stdcolin27_16.1_publicP_0f60df84cc5f99ea1dd97d1b025707a6.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_p32_l_N10_nlin2Stdcolin27_16.1_publicP_0f60df84cc5f99ea1dd97d1b025707a6.nii.gz",
+        "position": [
+          -6122937,
+          49256108,
+          11929896
+        ]
       },
       {
         "filename": "Area p32 (pACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area p32 (pACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_p32_r_N10_nlin2MNI152ASYM2009C_16.1_publicP_0431a46ee288499cc60db2685889b56d.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_p32_r_N10_nlin2MNI152ASYM2009C_16.1_publicP_0431a46ee288499cc60db2685889b56d.nii.gz",
+        "position": [
+          6403235,
+          50410059,
+          10022042
+        ]
       },
       {
         "filename": "Area p32 (pACC) [v16.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area p32 (pACC) [v16.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_p32_r_N10_nlin2Stdcolin27_16.1_publicP_84d50c4187b65ff997e92bd334553f98.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_p32_r_N10_nlin2Stdcolin27_16.1_publicP_84d50c4187b65ff997e92bd334553f98.nii.gz",
+        "position": [
+          7759613,
+          48520792,
+          12436058
+        ]
       }
     ]
   ],
@@ -1723,28 +2703,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area s24 (sACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_s24_l_N10_nlin2MNI152ASYM2009C_16.1_publicP_6194d2467924e498b62b367a118db468.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_s24_l_N10_nlin2MNI152ASYM2009C_16.1_publicP_6194d2467924e498b62b367a118db468.nii.gz",
+        "position": [
+          -4719528,
+          24562540,
+          -11547224
+        ]
       },
       {
         "filename": "Area s24 (sACC) [v16.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area s24 (sACC) [v16.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_s24_l_N10_nlin2Stdcolin27_16.1_publicP_4c14280cc9c6d43bb5b7c25981828311.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_s24_l_N10_nlin2Stdcolin27_16.1_publicP_4c14280cc9c6d43bb5b7c25981828311.nii.gz",
+        "position": [
+          -3247887,
+          24596479,
+          -9615493
+        ]
       },
       {
         "filename": "Area s24 (sACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area s24 (sACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_s24_r_N10_nlin2MNI152ASYM2009C_16.1_publicP_cc3351d4b652a47f4e23c9fe980f55ed.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_s24_r_N10_nlin2MNI152ASYM2009C_16.1_publicP_cc3351d4b652a47f4e23c9fe980f55ed.nii.gz",
+        "position": [
+          2316712,
+          23962938,
+          -10923181
+        ]
       },
       {
         "filename": "Area s24 (sACC) [v16.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area s24 (sACC) [v16.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_s24_r_N10_nlin2Stdcolin27_16.1_publicP_ae32c2acd10da0c3cba50800ced302e6.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_s24_r_N10_nlin2Stdcolin27_16.1_publicP_ae32c2acd10da0c3cba50800ced302e6.nii.gz",
+        "position": [
+          3259899,
+          23813535,
+          -9257019
+        ]
       }
     ]
   ],
@@ -1756,28 +2756,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hIP7 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP7_l_N10_nlin2MNI152ASYM2009C_7.1_publicP_01279b11f7257b593960584b6e3a567a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP7_l_N10_nlin2MNI152ASYM2009C_7.1_publicP_01279b11f7257b593960584b6e3a567a.nii.gz",
+        "position": [
+          -24182639,
+          -81016889,
+          28962687
+        ]
       },
       {
         "filename": "Area hIP7 (IPS) [v7.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hIP7 (IPS) [v7.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP7_l_N10_nlin2Stdcolin27_7.1_publicP_7e7b8d7878cc99b15f8f1515966166e1.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP7_l_N10_nlin2Stdcolin27_7.1_publicP_7e7b8d7878cc99b15f8f1515966166e1.nii.gz",
+        "position": [
+          -22044741,
+          -79989011,
+          29353218
+        ]
       },
       {
         "filename": "Area hIP7 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hIP7 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP7_r_N10_nlin2MNI152ASYM2009C_7.1_publicP_77a72d8d813cf367572aa6841e360f00.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP7_r_N10_nlin2MNI152ASYM2009C_7.1_publicP_77a72d8d813cf367572aa6841e360f00.nii.gz",
+        "position": [
+          29594078,
+          -79106072,
+          27718516
+        ]
       },
       {
         "filename": "Area hIP7 (IPS) [v7.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hIP7 (IPS) [v7.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP7_r_N10_nlin2Stdcolin27_7.1_publicP_07b80edd2afed887351766ddc6cfbcfa.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP7_r_N10_nlin2Stdcolin27_7.1_publicP_07b80edd2afed887351766ddc6cfbcfa.nii.gz",
+        "position": [
+          29041586,
+          -79117828,
+          27046207
+        ]
       }
     ]
   ],
@@ -1789,28 +2809,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area s32 (sACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_s32_l_N10_nlin2MNI152ASYM2009C_16.1_publicP_c123300e746ae0b2a68198747b7c8b39.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_s32_l_N10_nlin2MNI152ASYM2009C_16.1_publicP_c123300e746ae0b2a68198747b7c8b39.nii.gz",
+        "position": [
+          -7960610,
+          35317027,
+          -14716010
+        ]
       },
       {
         "filename": "Area s32 (sACC) [v16.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area s32 (sACC) [v16.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_s32_l_N10_nlin2Stdcolin27_16.1_publicP_cfdb1e6e4d0f7f0636e30669917bd3b8.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_s32_l_N10_nlin2Stdcolin27_16.1_publicP_cfdb1e6e4d0f7f0636e30669917bd3b8.nii.gz",
+        "position": [
+          -6738110,
+          35256183,
+          -11765377
+        ]
       },
       {
         "filename": "Area s32 (sACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area s32 (sACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_s32_r_N10_nlin2MNI152ASYM2009C_16.1_publicP_670b2d5859f33ce2264adf0864930347.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_s32_r_N10_nlin2MNI152ASYM2009C_16.1_publicP_670b2d5859f33ce2264adf0864930347.nii.gz",
+        "position": [
+          2693907,
+          34682777,
+          -15008494
+        ]
       },
       {
         "filename": "Area s32 (sACC) [v16.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area s32 (sACC) [v16.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_s32_r_N10_nlin2Stdcolin27_16.1_publicP_af05582934888efe929b28dda1b672ec.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_s32_r_N10_nlin2Stdcolin27_16.1_publicP_af05582934888efe929b28dda1b672ec.nii.gz",
+        "position": [
+          4307795,
+          34460360,
+          -12141905
+        ]
       }
     ]
   ],
@@ -1822,28 +2862,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hIP8 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP8_l_N10_nlin2MNI152ASYM2009C_7.1_publicP_a759b709141aecb734964c73df1cce45.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP8_l_N10_nlin2MNI152ASYM2009C_7.1_publicP_a759b709141aecb734964c73df1cce45.nii.gz",
+        "position": [
+          -18598696,
+          -73068715,
+          43463501
+        ]
       },
       {
         "filename": "Area hIP8 (IPS) [v7.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hIP8 (IPS) [v7.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP8_l_N10_nlin2Stdcolin27_7.1_publicP_7defaa4bb2de378b12a92982ffaabfa9.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP8_l_N10_nlin2Stdcolin27_7.1_publicP_7defaa4bb2de378b12a92982ffaabfa9.nii.gz",
+        "position": [
+          -18133307,
+          -72231198,
+          43245125
+        ]
       },
       {
         "filename": "Area hIP8 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hIP8 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP8_r_N10_nlin2MNI152ASYM2009C_7.1_publicP_57d552da2aaefda7bb6c70e40ca43aab.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP8_r_N10_nlin2MNI152ASYM2009C_7.1_publicP_57d552da2aaefda7bb6c70e40ca43aab.nii.gz",
+        "position": [
+          24977204,
+          -71433131,
+          41158435
+        ]
       },
       {
         "filename": "Area hIP8 (IPS) [v7.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hIP8 (IPS) [v7.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP8_r_N10_nlin2Stdcolin27_7.1_publicP_cd21b04dab60b31f1b7c409a60bd8144.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP8_r_N10_nlin2Stdcolin27_7.1_publicP_cd21b04dab60b31f1b7c409a60bd8144.nii.gz",
+        "position": [
+          26220986,
+          -71480127,
+          41680048
+        ]
       }
     ]
   ],
@@ -1855,28 +2915,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "CA (Hippocampus) [v11.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_CA_l_N10_nlin2MNI152ASYM2009C_11.1_publicP_fd49776deee300e6dd94db513592d716.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_CA_l_N10_nlin2MNI152ASYM2009C_11.1_publicP_fd49776deee300e6dd94db513592d716.nii.gz",
+        "position": [
+          -28408447,
+          -27605379,
+          -12640617
+        ]
       },
       {
         "filename": "CA (Hippocampus) [v11.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "CA (Hippocampus) [v11.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_CA_l_N10_nlin2Stdcolin27_11.1_publicP_171cb45e2e19686d663f24ede52ef4d5.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_CA_l_N10_nlin2Stdcolin27_11.1_publicP_171cb45e2e19686d663f24ede52ef4d5.nii.gz",
+        "position": [
+          -27476326,
+          -26068931,
+          -11082817
+        ]
       },
       {
         "filename": "CA (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "CA (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_CA_r_N10_nlin2MNI152ASYM2009C_11.1_publicP_15fe605957c7968f858481c082673d8f.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_CA_r_N10_nlin2MNI152ASYM2009C_11.1_publicP_15fe605957c7968f858481c082673d8f.nii.gz",
+        "position": [
+          27668137,
+          -26314056,
+          -11735266
+        ]
       },
       {
         "filename": "CA (Hippocampus) [v11.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "CA (Hippocampus) [v11.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_CA_r_N10_nlin2Stdcolin27_11.1_publicP_0852971ef836a0f321ed9f16ef1a26db.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_CA_r_N10_nlin2Stdcolin27_11.1_publicP_0852971ef836a0f321ed9f16ef1a26db.nii.gz",
+        "position": [
+          29426785,
+          -24801145,
+          -11142814
+        ]
       }
     ]
   ],
@@ -1888,28 +2968,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hPO1 (POS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hPO1_l_N10_nlin2MNI152ASYM2009C_7.1_publicP_20a70c234cb120fb4a7ed16b9a23cdfb.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hPO1_l_N10_nlin2MNI152ASYM2009C_7.1_publicP_20a70c234cb120fb4a7ed16b9a23cdfb.nii.gz",
+        "position": [
+          -16522864,
+          -81584154,
+          36346936
+        ]
       },
       {
         "filename": "Area hPO1 (POS) [v7.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hPO1 (POS) [v7.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hPO1_l_N10_nlin2Stdcolin27_7.1_publicP_1756f24793fb8a34d206aa15ae8c1031.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hPO1_l_N10_nlin2Stdcolin27_7.1_publicP_1756f24793fb8a34d206aa15ae8c1031.nii.gz",
+        "position": [
+          -15069260,
+          -80661951,
+          37074565
+        ]
       },
       {
         "filename": "Area hPO1 (POS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hPO1 (POS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hPO1_r_N10_nlin2MNI152ASYM2009C_7.1_publicP_f137efe6e7e30006a286764b0708afd4.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hPO1_r_N10_nlin2MNI152ASYM2009C_7.1_publicP_f137efe6e7e30006a286764b0708afd4.nii.gz",
+        "position": [
+          21240705,
+          -81149825,
+          37156498
+        ]
       },
       {
         "filename": "Area hPO1 (POS) [v7.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hPO1 (POS) [v7.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hPO1_r_N10_nlin2Stdcolin27_7.1_publicP_4dbcc62e2fb44101eb2c4d032be1ba5b.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hPO1_r_N10_nlin2Stdcolin27_7.1_publicP_4dbcc62e2fb44101eb2c4d032be1ba5b.nii.gz",
+        "position": [
+          21853147,
+          -80927739,
+          37048660
+        ]
       }
     ]
   ],
@@ -1921,28 +3021,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "DG (Hippocampus) [v11.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_DG_l_N10_nlin2MNI152ASYM2009C_11.1_publicP_f56d6af9b18d378060c91acd2189f5b2.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_DG_l_N10_nlin2MNI152ASYM2009C_11.1_publicP_f56d6af9b18d378060c91acd2189f5b2.nii.gz",
+        "position": [
+          -27551185,
+          -28070616,
+          -11281043
+        ]
       },
       {
         "filename": "DG (Hippocampus) [v11.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "DG (Hippocampus) [v11.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_DG_l_N10_nlin2Stdcolin27_11.1_publicP_4d4162b28b535e77fe7ef3d85ee658cb.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_DG_l_N10_nlin2Stdcolin27_11.1_publicP_4d4162b28b535e77fe7ef3d85ee658cb.nii.gz",
+        "position": [
+          -26946498,
+          -26708171,
+          -9589494
+        ]
       },
       {
         "filename": "DG (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "DG (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_DG_r_N10_nlin2MNI152ASYM2009C_11.1_publicP_6fe4e1ff07604e82573426ff9d507757.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_DG_r_N10_nlin2MNI152ASYM2009C_11.1_publicP_6fe4e1ff07604e82573426ff9d507757.nii.gz",
+        "position": [
+          26996134,
+          -25789948,
+          -11462629
+        ]
       },
       {
         "filename": "DG (Hippocampus) [v11.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "DG (Hippocampus) [v11.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_DG_r_N10_nlin2Stdcolin27_11.1_publicP_e3fa939acecddade8c39c1c55a421c28.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_DG_r_N10_nlin2Stdcolin27_11.1_publicP_e3fa939acecddade8c39c1c55a421c28.nii.gz",
+        "position": [
+          28316456,
+          -24674684,
+          -10596203
+        ]
       }
     ]
   ],
@@ -1954,28 +3074,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 1 (PostCG) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PSC_1_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_a9fedffac41cadad59359dc8b602ef95.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PSC_1_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_a9fedffac41cadad59359dc8b602ef95.nii.gz",
+        "position": [
+          -47975865,
+          -26902730,
+          58870063
+        ]
       },
       {
         "filename": "Area 1 (PostCG) [v8.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 1 (PostCG) [v8.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PSC_1_l_N10_nlin2Stdcolin27_8.4_publicP_8ffb7eeab7118f647e972259c9d3247d.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PSC_1_l_N10_nlin2Stdcolin27_8.4_publicP_8ffb7eeab7118f647e972259c9d3247d.nii.gz",
+        "position": [
+          -47104485,
+          -28297920,
+          57798046
+        ]
       },
       {
         "filename": "Area 1 (PostCG) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 1 (PostCG) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PSC_1_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_e8d32d9779cbacab28b0a21d92e5c098.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PSC_1_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_e8d32d9779cbacab28b0a21d92e5c098.nii.gz",
+        "position": [
+          48161578,
+          -22485924,
+          56291435
+        ]
       },
       {
         "filename": "Area 1 (PostCG) [v8.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 1 (PostCG) [v8.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PSC_1_r_N10_nlin2Stdcolin27_8.4_publicP_9456a4c195570c19d6d8cf9fd9e964d1.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PSC_1_r_N10_nlin2Stdcolin27_8.4_publicP_9456a4c195570c19d6d8cf9fd9e964d1.nii.gz",
+        "position": [
+          48452543,
+          -27132790,
+          56150187
+        ]
       }
     ]
   ],
@@ -1987,28 +3127,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Entorhinal Cortex [v11.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_EC_l_N10_nlin2MNI152ASYM2009C_11.1_publicP_67c7cc903d9847c1e0ba7b2bd042de48.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_EC_l_N10_nlin2MNI152ASYM2009C_11.1_publicP_67c7cc903d9847c1e0ba7b2bd042de48.nii.gz",
+        "position": [
+          -23891483,
+          -7276972,
+          -35148896
+        ]
       },
       {
         "filename": "Entorhinal Cortex [v11.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Entorhinal Cortex [v11.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_EC_l_N10_nlin2Stdcolin27_11.1_publicP_dc4cead53434d7d9cc2545815a575a37.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_EC_l_N10_nlin2Stdcolin27_11.1_publicP_dc4cead53434d7d9cc2545815a575a37.nii.gz",
+        "position": [
+          -20926052,
+          -6082765,
+          -33357509
+        ]
       },
       {
         "filename": "Entorhinal Cortex [v11.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Entorhinal Cortex [v11.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_EC_r_N10_nlin2MNI152ASYM2009C_11.1_publicP_239306c24449da501573917ad567a9de.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_EC_r_N10_nlin2MNI152ASYM2009C_11.1_publicP_239306c24449da501573917ad567a9de.nii.gz",
+        "position": [
+          21129607,
+          -4977075,
+          -34844921
+        ]
       },
       {
         "filename": "Entorhinal Cortex [v11.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Entorhinal Cortex [v11.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_EC_r_N10_nlin2Stdcolin27_11.1_publicP_63cabbcc6e81767942bee38595ebb234.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_EC_r_N10_nlin2Stdcolin27_11.1_publicP_63cabbcc6e81767942bee38595ebb234.nii.gz",
+        "position": [
+          22877203,
+          -3501469,
+          -32577556
+        ]
       }
     ]
   ],
@@ -2020,28 +3180,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 2 (PostCS) [v3.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PSC_2_l_N9_nlin2MNI152ASYM2009C_3.4_publicP_7526b786324a9bc0d0cf4b2942cacad7.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PSC_2_l_N9_nlin2MNI152ASYM2009C_3.4_publicP_7526b786324a9bc0d0cf4b2942cacad7.nii.gz",
+        "position": [
+          -43927866,
+          -31926548,
+          51956851
+        ]
       },
       {
         "filename": "Area 2 (PostCS) [v3.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 2 (PostCS) [v3.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PSC_2_l_N9_nlin2Stdcolin27_3.4_publicP_e6e0da89a546443ab761cc23fafdaa92.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PSC_2_l_N9_nlin2Stdcolin27_3.4_publicP_e6e0da89a546443ab761cc23fafdaa92.nii.gz",
+        "position": [
+          -42268059,
+          -32424512,
+          51210202
+        ]
       },
       {
         "filename": "Area 2 (PostCS) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 2 (PostCS) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PSC_2_r_N9_nlin2MNI152ASYM2009C_3.4_publicP_c529c51f6c6e6ed10e8b2f46ebb8550a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PSC_2_r_N9_nlin2MNI152ASYM2009C_3.4_publicP_c529c51f6c6e6ed10e8b2f46ebb8550a.nii.gz",
+        "position": [
+          38456046,
+          -31522535,
+          52910085
+        ]
       },
       {
         "filename": "Area 2 (PostCS) [v3.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 2 (PostCS) [v3.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PSC_2_r_N9_nlin2Stdcolin27_3.4_publicP_6494012cddba7185bab87cb36ea8f69c.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PSC_2_r_N9_nlin2Stdcolin27_3.4_publicP_6494012cddba7185bab87cb36ea8f69c.nii.gz",
+        "position": [
+          38223619,
+          -34651627,
+          52535010
+        ]
       }
     ]
   ],
@@ -2053,28 +3233,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "HATA (Hippocampus) [v11.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_HATA_l_N10_nlin2MNI152ASYM2009C_11.1_publicP_cd1178d271dfb2a4fe7c26cd21c76cab.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_HATA_l_N10_nlin2MNI152ASYM2009C_11.1_publicP_cd1178d271dfb2a4fe7c26cd21c76cab.nii.gz",
+        "position": [
+          -14934109,
+          -11686047,
+          -20011628
+        ]
       },
       {
         "filename": "HATA (Hippocampus) [v11.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "HATA (Hippocampus) [v11.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_HATA_l_N10_nlin2Stdcolin27_11.1_publicP_69c99510ed9618dcf2dec7f75c7097e5.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_HATA_l_N10_nlin2Stdcolin27_11.1_publicP_69c99510ed9618dcf2dec7f75c7097e5.nii.gz",
+        "position": [
+          -13947917,
+          -9576389,
+          -18975694
+        ]
       },
       {
         "filename": "HATA (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "HATA (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_HATA_r_N10_nlin2MNI152ASYM2009C_11.1_publicP_b68796684358ad9cec6b7ca719575e48.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_HATA_r_N10_nlin2MNI152ASYM2009C_11.1_publicP_b68796684358ad9cec6b7ca719575e48.nii.gz",
+        "position": [
+          13262963,
+          -10581481,
+          -18866667
+        ]
       },
       {
         "filename": "HATA (Hippocampus) [v11.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "HATA (Hippocampus) [v11.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_HATA_r_N10_nlin2Stdcolin27_11.1_publicP_e32109435541023150892d6244db83a8.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_HATA_r_N10_nlin2Stdcolin27_11.1_publicP_e32109435541023150892d6244db83a8.nii.gz",
+        "position": [
+          15080586,
+          -8358974,
+          -17871795
+        ]
       }
     ]
   ],
@@ -2086,28 +3286,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 3a (PostCG) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PSC_3a_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_21c814255639c5a26e2e67ee4201f3a3.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PSC_3a_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_21c814255639c5a26e2e67ee4201f3a3.nii.gz",
+        "position": [
+          -32589090,
+          -25737826,
+          44292752
+        ]
       },
       {
         "filename": "Area 3a (PostCG) [v8.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 3a (PostCG) [v8.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PSC_3a_l_N10_nlin2Stdcolin27_8.4_publicP_9312aac3b742096e56db0acecf0dfd37.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PSC_3a_l_N10_nlin2Stdcolin27_8.4_publicP_9312aac3b742096e56db0acecf0dfd37.nii.gz",
+        "position": [
+          -31927553,
+          -25650901,
+          44513889
+        ]
       },
       {
         "filename": "Area 3a (PostCG) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 3a (PostCG) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PSC_3a_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_4a0f0ebb63caf309c661bd550229a26e.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PSC_3a_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_4a0f0ebb63caf309c661bd550229a26e.nii.gz",
+        "position": [
+          38084107,
+          -18062645,
+          36367169
+        ]
       },
       {
         "filename": "Area 3a (PostCG) [v8.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 3a (PostCG) [v8.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PSC_3a_r_N10_nlin2Stdcolin27_8.4_publicP_207f7b2221c3112d391d19c3932ec0f2.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PSC_3a_r_N10_nlin2Stdcolin27_8.4_publicP_207f7b2221c3112d391d19c3932ec0f2.nii.gz",
+        "position": [
+          38813714,
+          -19184000,
+          36284571
+        ]
       }
     ]
   ],
@@ -2119,28 +3339,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 3b (PostCG) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PSC_3b_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_e77fb21b2a8fa6b90a791acdd0c8f690.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PSC_3b_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_e77fb21b2a8fa6b90a791acdd0c8f690.nii.gz",
+        "position": [
+          -46100804,
+          -21517231,
+          46289585
+        ]
       },
       {
         "filename": "Area 3b (PostCG) [v8.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 3b (PostCG) [v8.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PSC_3b_l_N10_nlin2Stdcolin27_8.4_publicP_5286409024d66bf87a9033052b3169bf.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PSC_3b_l_N10_nlin2Stdcolin27_8.4_publicP_5286409024d66bf87a9033052b3169bf.nii.gz",
+        "position": [
+          -44439219,
+          -21735041,
+          46012387
+        ]
       },
       {
         "filename": "Area 3b (PostCG) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 3b (PostCG) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PSC_3b_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_789bbc4124edc3f32b9058473b70ce62.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PSC_3b_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_789bbc4124edc3f32b9058473b70ce62.nii.gz",
+        "position": [
+          39338624,
+          -21564818,
+          47310887
+        ]
       },
       {
         "filename": "Area 3b (PostCG) [v8.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 3b (PostCG) [v8.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PSC_3b_r_N10_nlin2Stdcolin27_8.4_publicP_4b88129088fd1b5dabcab0dffc15a2e7.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PSC_3b_r_N10_nlin2Stdcolin27_8.4_publicP_4b88129088fd1b5dabcab0dffc15a2e7.nii.gz",
+        "position": [
+          38765839,
+          -25096118,
+          48227174
+        ]
       }
     ]
   ],
@@ -2152,28 +3392,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Subiculum (Hippocampus) [v11.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_Subc_l_N10_nlin2MNI152ASYM2009C_11.1_publicP_febae932d584834b5365ece4a3a311cc.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_Subc_l_N10_nlin2MNI152ASYM2009C_11.1_publicP_febae932d584834b5365ece4a3a311cc.nii.gz",
+        "position": [
+          -22231264,
+          -25557482,
+          -18551904
+        ]
       },
       {
         "filename": "Subiculum (Hippocampus) [v11.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Subiculum (Hippocampus) [v11.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_Subc_l_N10_nlin2Stdcolin27_11.1_publicP_b049e4690de44f9cf0e0091f2f1ae328.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_Subc_l_N10_nlin2Stdcolin27_11.1_publicP_b049e4690de44f9cf0e0091f2f1ae328.nii.gz",
+        "position": [
+          -20352171,
+          -24057796,
+          -16326997
+        ]
       },
       {
         "filename": "Subiculum (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Subiculum (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_Subc_r_N10_nlin2MNI152ASYM2009C_11.1_publicP_e6c2e76f622d20d65d1021f6d1a89eef.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_Subc_r_N10_nlin2MNI152ASYM2009C_11.1_publicP_e6c2e76f622d20d65d1021f6d1a89eef.nii.gz",
+        "position": [
+          21763286,
+          -24252804,
+          -18015846
+        ]
       },
       {
         "filename": "Subiculum (Hippocampus) [v11.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Subiculum (Hippocampus) [v11.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_Subc_r_N10_nlin2Stdcolin27_11.1_publicP_386adc58f1ebd7a13ef6eb64978fef65.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_Subc_r_N10_nlin2Stdcolin27_11.1_publicP_386adc58f1ebd7a13ef6eb64978fef65.nii.gz",
+        "position": [
+          22543982,
+          -23195614,
+          -15923499
+        ]
       }
     ]
   ],
@@ -2317,28 +3577,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area ifs1 (IFS) [v2.2, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifs1_l_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_77901443edc477e83f2bb6b47a363873.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifs1_l_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_77901443edc477e83f2bb6b47a363873.nii.gz",
+        "position": [
+          -41240214,
+          26505338,
+          21403915
+        ]
       },
       {
         "filename": "Area ifs1 (IFS) [v2.2, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area ifs1 (IFS) [v2.2, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifs1_l_N10_nlin2Stdcolin27_2.2_publicDOI_2fbed54a956057637fdba19857b48e9f.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifs1_l_N10_nlin2Stdcolin27_2.2_publicDOI_2fbed54a956057637fdba19857b48e9f.nii.gz",
+        "position": [
+          -39909399,
+          27014395,
+          23931414
+        ]
       },
       {
         "filename": "Area ifs1 (IFS) [v2.2, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area ifs1 (IFS) [v2.2, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifs1_r_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_144113cffdeb98e2b16d713a6b7502e4.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifs1_r_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_144113cffdeb98e2b16d713a6b7502e4.nii.gz",
+        "position": [
+          37182877,
+          25882979,
+          24050152
+        ]
       },
       {
         "filename": "Area ifs1 (IFS) [v2.2, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area ifs1 (IFS) [v2.2, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifs1_r_N10_nlin2Stdcolin27_2.2_publicDOI_baf7f7a7c7d00a2044f409b92b78b926.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifs1_r_N10_nlin2Stdcolin27_2.2_publicDOI_baf7f7a7c7d00a2044f409b92b78b926.nii.gz",
+        "position": [
+          38421729,
+          23445093,
+          24414720
+        ]
       }
     ]
   ],
@@ -2350,28 +3630,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 6d3 (SFS) [v4.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Premotor_6d3_l_N10_nlin2MNI152ASYM2009C_4.1_publicDOI_285f0f08aca736a967a265f27b78f267.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Premotor_6d3_l_N10_nlin2MNI152ASYM2009C_4.1_publicDOI_285f0f08aca736a967a265f27b78f267.nii.gz",
+        "position": [
+          -24754304,
+          4064945,
+          51648670
+        ]
       },
       {
         "filename": "Area 6d3 (SFS) [v4.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 6d3 (SFS) [v4.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Premotor_6d3_l_N10_nlin2Stdcolin27_4.1_publicDOI_20d31470e7af79c7af8918d842904696.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Premotor_6d3_l_N10_nlin2Stdcolin27_4.1_publicDOI_20d31470e7af79c7af8918d842904696.nii.gz",
+        "position": [
+          -23315931,
+          4317151,
+          51434008
+        ]
       },
       {
         "filename": "Area 6d3 (SFS) [v4.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 6d3 (SFS) [v4.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Premotor_6d3_r_N10_nlin2MNI152ASYM2009C_4.1_publicDOI_49949fbd2006bb6a9f3f6032f79fc1e7.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Premotor_6d3_r_N10_nlin2MNI152ASYM2009C_4.1_publicDOI_49949fbd2006bb6a9f3f6032f79fc1e7.nii.gz",
+        "position": [
+          23956070,
+          3653802,
+          53205165
+        ]
       },
       {
         "filename": "Area 6d3 (SFS) [v4.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 6d3 (SFS) [v4.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Premotor_6d3_r_N10_nlin2Stdcolin27_4.1_publicDOI_1087f075fb1d7c254046f74f77f67bc5.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Premotor_6d3_r_N10_nlin2Stdcolin27_4.1_publicDOI_1087f075fb1d7c254046f74f77f67bc5.nii.gz",
+        "position": [
+          25173639,
+          1578188,
+          53334281
+        ]
       }
     ]
   ],
@@ -2383,28 +3683,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area ifs2 (IFS) [v2.2, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifs2_l_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_3b1bdcf898eaa037f9cfed73620493e0.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifs2_l_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_3b1bdcf898eaa037f9cfed73620493e0.nii.gz",
+        "position": [
+          -46574074,
+          23629630,
+          20222222
+        ]
       },
       {
         "filename": "Area ifs2 (IFS) [v2.2, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area ifs2 (IFS) [v2.2, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifs2_l_N10_nlin2Stdcolin27_2.2_publicDOI_5ca6ef9bbc75f8785f3ca7701919d6d2.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifs2_l_N10_nlin2Stdcolin27_2.2_publicDOI_5ca6ef9bbc75f8785f3ca7701919d6d2.nii.gz",
+        "position": [
+          -45300578,
+          24184971,
+          23809249
+        ]
       },
       {
         "filename": "Area ifs2 (IFS) [v2.2, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area ifs2 (IFS) [v2.2, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifs2_r_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_022d278402aab813fcb610330f53c4e7.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifs2_r_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_022d278402aab813fcb610330f53c4e7.nii.gz",
+        "position": [
+          43901709,
+          23803419,
+          22797009
+        ]
       },
       {
         "filename": "Area ifs2 (IFS) [v2.2, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area ifs2 (IFS) [v2.2, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifs2_r_N10_nlin2Stdcolin27_2.2_publicDOI_fa175bc55a78d67a6b90011fecd7ade5.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifs2_r_N10_nlin2Stdcolin27_2.2_publicDOI_fa175bc55a78d67a6b90011fecd7ade5.nii.gz",
+        "position": [
+          45405759,
+          21756545,
+          24905759
+        ]
       }
     ]
   ],
@@ -2416,28 +3736,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area ifs3 (IFS) [v2.2, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifs3_l_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_163dfd8bdc1ea401267827a07fe3c938.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifs3_l_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_163dfd8bdc1ea401267827a07fe3c938.nii.gz",
+        "position": [
+          -42019070,
+          19604186,
+          28443256
+        ]
       },
       {
         "filename": "Area ifs3 (IFS) [v2.2, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area ifs3 (IFS) [v2.2, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifs3_l_N10_nlin2Stdcolin27_2.2_publicDOI_a6839437711ba9eb50fd17baf7c6a562.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifs3_l_N10_nlin2Stdcolin27_2.2_publicDOI_a6839437711ba9eb50fd17baf7c6a562.nii.gz",
+        "position": [
+          -40949064,
+          19720374,
+          31260915
+        ]
       },
       {
         "filename": "Area ifs3 (IFS) [v2.2, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area ifs3 (IFS) [v2.2, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifs3_r_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_e664da66c465b00af07d0d53e6300b17.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifs3_r_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_e664da66c465b00af07d0d53e6300b17.nii.gz",
+        "position": [
+          38801055,
+          21694631,
+          32716683
+        ]
       },
       {
         "filename": "Area ifs3 (IFS) [v2.2, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area ifs3 (IFS) [v2.2, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifs3_r_N10_nlin2Stdcolin27_2.2_publicDOI_634ba65855c32e73a6d9848f6512f62a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifs3_r_N10_nlin2Stdcolin27_2.2_publicDOI_634ba65855c32e73a6d9848f6512f62a.nii.gz",
+        "position": [
+          39614936,
+          18494749,
+          32861144
+        ]
       }
     ]
   ],
@@ -2449,28 +3789,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 5Ci (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_5Ci_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_c87b6ceb439d4f1598d5c77cb8479a1e.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_5Ci_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_c87b6ceb439d4f1598d5c77cb8479a1e.nii.gz",
+        "position": [
+          -15736664,
+          -35457926,
+          42264087
+        ]
       },
       {
         "filename": "Area 5Ci (SPL) [v8.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 5Ci (SPL) [v8.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_5Ci_l_N10_nlin2Stdcolin27_8.4_publicP_19a32582858cc57b7fe1834b22bd118a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_5Ci_l_N10_nlin2Stdcolin27_8.4_publicP_19a32582858cc57b7fe1834b22bd118a.nii.gz",
+        "position": [
+          -14033790,
+          -35828311,
+          43857534
+        ]
       },
       {
         "filename": "Area 5Ci (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 5Ci (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_5Ci_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_6b7ea73932bf60acbe2bf9c395381f55.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_5Ci_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_6b7ea73932bf60acbe2bf9c395381f55.nii.gz",
+        "position": [
+          11398622,
+          -35143701,
+          45477854
+        ]
       },
       {
         "filename": "Area 5Ci (SPL) [v8.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 5Ci (SPL) [v8.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_5Ci_r_N10_nlin2Stdcolin27_8.4_publicP_b9fefdaa91a8382c7839fd5182e37f5c.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_5Ci_r_N10_nlin2Stdcolin27_8.4_publicP_b9fefdaa91a8382c7839fd5182e37f5c.nii.gz",
+        "position": [
+          10563961,
+          -36194957,
+          46892989
+        ]
       }
     ]
   ],
@@ -2482,28 +3842,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area ifs4 (IFS) [v2.2, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifs4_l_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_57c4832619f167ab18995996c02d8295.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifs4_l_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_57c4832619f167ab18995996c02d8295.nii.gz",
+        "position": [
+          -45664223,
+          18206745,
+          23127566
+        ]
       },
       {
         "filename": "Area ifs4 (IFS) [v2.2, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area ifs4 (IFS) [v2.2, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifs4_l_N10_nlin2Stdcolin27_2.2_publicDOI_9c0d663426f3c3fe44dc19c2e4c524f7.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifs4_l_N10_nlin2Stdcolin27_2.2_publicDOI_9c0d663426f3c3fe44dc19c2e4c524f7.nii.gz",
+        "position": [
+          -45241935,
+          18912903,
+          26316129
+        ]
       },
       {
         "filename": "Area ifs4 (IFS) [v2.2, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area ifs4 (IFS) [v2.2, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifs4_r_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_0d57128ee2cd1878ec1c0b36a390ea82.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifs4_r_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_0d57128ee2cd1878ec1c0b36a390ea82.nii.gz",
+        "position": [
+          42233716,
+          20120690,
+          28285441
+        ]
       },
       {
         "filename": "Area ifs4 (IFS) [v2.2, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area ifs4 (IFS) [v2.2, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifs4_r_N10_nlin2Stdcolin27_2.2_publicDOI_9dc7b73fc32e0ace1895b041827fa134.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifs4_r_N10_nlin2Stdcolin27_2.2_publicDOI_9dc7b73fc32e0ace1895b041827fa134.nii.gz",
+        "position": [
+          43070175,
+          17662768,
+          28884990
+        ]
       }
     ]
   ],
@@ -2515,28 +3895,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 5L (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_5L_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_ee264b92d11f2a43b0ed49f9e7bfffd4.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_5L_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_ee264b92d11f2a43b0ed49f9e7bfffd4.nii.gz",
+        "position": [
+          -18756077,
+          -45216005,
+          67108905
+        ]
       },
       {
         "filename": "Area 5L (SPL) [v8.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 5L (SPL) [v8.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_5L_l_N10_nlin2Stdcolin27_8.4_publicP_b200762900ac415160ab4f0ea4c97ff8.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_5L_l_N10_nlin2Stdcolin27_8.4_publicP_b200762900ac415160ab4f0ea4c97ff8.nii.gz",
+        "position": [
+          -18807832,
+          -47524930,
+          66950353
+        ]
       },
       {
         "filename": "Area 5L (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 5L (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_5L_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_86b905ed83404e843f135f497cf484a9.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_5L_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_86b905ed83404e843f135f497cf484a9.nii.gz",
+        "position": [
+          14224079,
+          -48937984,
+          69561773
+        ]
       },
       {
         "filename": "Area 5L (SPL) [v8.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 5L (SPL) [v8.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_5L_r_N10_nlin2Stdcolin27_8.4_publicP_51222bf8c65bb707a787a659fbdbc655.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_5L_r_N10_nlin2Stdcolin27_8.4_publicP_51222bf8c65bb707a787a659fbdbc655.nii.gz",
+        "position": [
+          12970516,
+          -51174624,
+          70371695
+        ]
       }
     ]
   ],
@@ -2548,28 +3948,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area PF (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PF_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_a10eb8515cb0f7b434137ce6f04eb00b.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PF_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_a10eb8515cb0f7b434137ce6f04eb00b.nii.gz",
+        "position": [
+          -62326709,
+          -38492101,
+          37676006
+        ]
       },
       {
         "filename": "Area PF (IPL) [v9.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area PF (IPL) [v9.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PF_l_N10_nlin2Stdcolin27_9.4_publicP_74d941df6a0b70295896125e27f1072b.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PF_l_N10_nlin2Stdcolin27_9.4_publicP_74d941df6a0b70295896125e27f1072b.nii.gz",
+        "position": [
+          -59814938,
+          -37432365,
+          36569295
+        ]
       },
       {
         "filename": "Area PF (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area PF (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PF_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_d8f88811f56dbc28045070aaf370d0ed.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PF_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_d8f88811f56dbc28045070aaf370d0ed.nii.gz",
+        "position": [
+          64184952,
+          -31767876,
+          31797118
+        ]
       },
       {
         "filename": "Area PF (IPL) [v9.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area PF (IPL) [v9.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PF_r_N10_nlin2Stdcolin27_9.4_publicP_d715b06e48a51a04939d084ce5a3d7c1.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PF_r_N10_nlin2Stdcolin27_9.4_publicP_d715b06e48a51a04939d084ce5a3d7c1.nii.gz",
+        "position": [
+          64016699,
+          -33052700,
+          30153112
+        ]
       }
     ]
   ],
@@ -2581,28 +4001,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 5M (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_5M_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_b8d9fc804f57f2a6bd1116f02acffec8.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_5M_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_b8d9fc804f57f2a6bd1116f02acffec8.nii.gz",
+        "position": [
+          -8469145,
+          -40822964,
+          57099393
+        ]
       },
       {
         "filename": "Area 5M (SPL) [v8.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 5M (SPL) [v8.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_5M_l_N10_nlin2Stdcolin27_8.4_publicP_3531d80a4f71b30b4c45468af8fa3307.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_5M_l_N10_nlin2Stdcolin27_8.4_publicP_3531d80a4f71b30b4c45468af8fa3307.nii.gz",
+        "position": [
+          -7527881,
+          -41962560,
+          59221721
+        ]
       },
       {
         "filename": "Area 5M (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 5M (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_5M_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_21ee1551a3c30324f42ca0bb903eaae1.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_5M_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_21ee1551a3c30324f42ca0bb903eaae1.nii.gz",
+        "position": [
+          5921975,
+          -43433519,
+          59763933
+        ]
       },
       {
         "filename": "Area 5M (SPL) [v8.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 5M (SPL) [v8.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_5M_r_N10_nlin2Stdcolin27_8.4_publicP_e6d90903b848aebfa656c909f1766a66.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_5M_r_N10_nlin2Stdcolin27_8.4_publicP_e6d90903b848aebfa656c909f1766a66.nii.gz",
+        "position": [
+          4642562,
+          -44304959,
+          60273140
+        ]
       }
     ]
   ],
@@ -2614,28 +4054,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area PFcm (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PFcm_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_e4c354cb14a007545e1c43189fb196e2.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PFcm_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_e4c354cb14a007545e1c43189fb196e2.nii.gz",
+        "position": [
+          -53295618,
+          -39421369,
+          23142857
+        ]
       },
       {
         "filename": "Area PFcm (IPL) [v9.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area PFcm (IPL) [v9.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PFcm_l_N10_nlin2Stdcolin27_9.4_publicP_de6698f167f750bb781dc1d94ac9c428.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PFcm_l_N10_nlin2Stdcolin27_9.4_publicP_de6698f167f750bb781dc1d94ac9c428.nii.gz",
+        "position": [
+          -51751410,
+          -36954069,
+          22546334
+        ]
       },
       {
         "filename": "Area PFcm (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area PFcm (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PFcm_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_e83b1b144fa6d3e72e61b29a4757001d.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PFcm_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_e83b1b144fa6d3e72e61b29a4757001d.nii.gz",
+        "position": [
+          52927071,
+          -29776768,
+          24592525
+        ]
       },
       {
         "filename": "Area PFcm (IPL) [v9.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area PFcm (IPL) [v9.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PFcm_r_N10_nlin2Stdcolin27_9.4_publicP_da886451f173415a44331d3eb80a2386.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PFcm_r_N10_nlin2Stdcolin27_9.4_publicP_da886451f173415a44331d3eb80a2386.nii.gz",
+        "position": [
+          53524370,
+          -31637287,
+          23177904
+        ]
       }
     ]
   ],
@@ -2647,28 +4107,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area PFm (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PFm_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_c82d509502b39957d20e5aa6989c8ca0.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PFm_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_c82d509502b39957d20e5aa6989c8ca0.nii.gz",
+        "position": [
+          -56791928,
+          -53657866,
+          40055933
+        ]
       },
       {
         "filename": "Area PFm (IPL) [v9.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area PFm (IPL) [v9.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PFm_l_N10_nlin2Stdcolin27_9.4_publicP_e1feae26309f20f208adf341fe5db53f.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PFm_l_N10_nlin2Stdcolin27_9.4_publicP_e1feae26309f20f208adf341fe5db53f.nii.gz",
+        "position": [
+          -54527689,
+          -52389045,
+          38877207
+        ]
       },
       {
         "filename": "Area PFm (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area PFm (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PFm_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_7758af8727da3ced2d840afdef6f2495.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PFm_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_7758af8727da3ced2d840afdef6f2495.nii.gz",
+        "position": [
+          57321981,
+          -44055488,
+          39537196
+        ]
       },
       {
         "filename": "Area PFm (IPL) [v9.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area PFm (IPL) [v9.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PFm_r_N10_nlin2Stdcolin27_9.4_publicP_99fefc475d6c934e896cb0a5055f8c1b.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PFm_r_N10_nlin2Stdcolin27_9.4_publicP_99fefc475d6c934e896cb0a5055f8c1b.nii.gz",
+        "position": [
+          56990022,
+          -45541717,
+          38606571
+        ]
       }
     ]
   ],
@@ -2680,28 +4160,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 7A (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_7A_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_0120e6ac53deea83a5203a7368a35b31.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_7A_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_0120e6ac53deea83a5203a7368a35b31.nii.gz",
+        "position": [
+          -20931652,
+          -61293975,
+          62298721
+        ]
       },
       {
         "filename": "Area 7A (SPL) [v8.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 7A (SPL) [v8.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_7A_l_N10_nlin2Stdcolin27_8.4_publicP_8d57d1cf5be46a085868adc403ad297f.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_7A_l_N10_nlin2Stdcolin27_8.4_publicP_8d57d1cf5be46a085868adc403ad297f.nii.gz",
+        "position": [
+          -20856230,
+          -62269710,
+          61643512
+        ]
       },
       {
         "filename": "Area 7A (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 7A (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_7A_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_b5a68034a7ab7caabf5fe1909cbb87dd.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_7A_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_b5a68034a7ab7caabf5fe1909cbb87dd.nii.gz",
+        "position": [
+          20754675,
+          -61621387,
+          62051683
+        ]
       },
       {
         "filename": "Area 7A (SPL) [v8.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 7A (SPL) [v8.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_7A_r_N10_nlin2Stdcolin27_8.4_publicP_1c5f7d8bdc2a3fcce61ed23e3ed2e292.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_7A_r_N10_nlin2Stdcolin27_8.4_publicP_1c5f7d8bdc2a3fcce61ed23e3ed2e292.nii.gz",
+        "position": [
+          20910951,
+          -62880523,
+          62944473
+        ]
       }
     ]
   ],
@@ -2713,28 +4213,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area PFop (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PFop_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_35417f04bfb29680c7afe881261e9105.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PFop_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_35417f04bfb29680c7afe881261e9105.nii.gz",
+        "position": [
+          -62520113,
+          -25681018,
+          24621307
+        ]
       },
       {
         "filename": "Area PFop (IPL) [v9.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area PFop (IPL) [v9.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PFop_l_N10_nlin2Stdcolin27_9.4_publicP_9088f650ae3c0cc599550c9ad9e7c2fa.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PFop_l_N10_nlin2Stdcolin27_9.4_publicP_9088f650ae3c0cc599550c9ad9e7c2fa.nii.gz",
+        "position": [
+          -60026462,
+          -24694986,
+          24259053
+        ]
       },
       {
         "filename": "Area PFop (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area PFop (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PFop_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_bd4eaecba1988bc31a745cf4e1f85ef5.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PFop_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_bd4eaecba1988bc31a745cf4e1f85ef5.nii.gz",
+        "position": [
+          57801693,
+          -19413543,
+          26279323
+        ]
       },
       {
         "filename": "Area PFop (IPL) [v9.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area PFop (IPL) [v9.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PFop_r_N10_nlin2Stdcolin27_9.4_publicP_08ee99acfb5bc508cfbf18685554bd3d.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PFop_r_N10_nlin2Stdcolin27_9.4_publicP_08ee99acfb5bc508cfbf18685554bd3d.nii.gz",
+        "position": [
+          58286575,
+          -20617534,
+          24917260
+        ]
       }
     ]
   ],
@@ -2746,28 +4266,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 7M (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_7M_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_46e88581204e26ce7ba9e597c08f9901.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_7M_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_46e88581204e26ce7ba9e597c08f9901.nii.gz",
+        "position": [
+          -2488934,
+          -78308853,
+          35074447
+        ]
       },
       {
         "filename": "Area 7M (SPL) [v8.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 7M (SPL) [v8.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_7M_l_N10_nlin2Stdcolin27_8.4_publicP_28a7a8c33070d0e9b3c1d5dcf17e85e3.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_7M_l_N10_nlin2Stdcolin27_8.4_publicP_28a7a8c33070d0e9b3c1d5dcf17e85e3.nii.gz",
+        "position": [
+          -777896,
+          -78103082,
+          35256111
+        ]
       },
       {
         "filename": "Area 7M (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 7M (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_7M_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_9bd981fd9aae90aa1751a39c62cb1f57.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_7M_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_9bd981fd9aae90aa1751a39c62cb1f57.nii.gz",
+        "position": [
+          2937879,
+          -75031818,
+          38515152
+        ]
       },
       {
         "filename": "Area 7M (SPL) [v8.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 7M (SPL) [v8.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_7M_r_N10_nlin2Stdcolin27_8.4_publicP_a9c108b2081c8086b63d247c2f8942ef.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_7M_r_N10_nlin2Stdcolin27_8.4_publicP_a9c108b2081c8086b63d247c2f8942ef.nii.gz",
+        "position": [
+          4281250,
+          -75882812,
+          38312500
+        ]
       }
     ]
   ],
@@ -2779,28 +4319,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area PFt (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PFt_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_2f30461bc406dfda445b68b5edd8950f.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PFt_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_2f30461bc406dfda445b68b5edd8950f.nii.gz",
+        "position": [
+          -57342169,
+          -28159557,
+          38579423
+        ]
       },
       {
         "filename": "Area PFt (IPL) [v9.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area PFt (IPL) [v9.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PFt_l_N10_nlin2Stdcolin27_9.4_publicP_ae4814e8e10a39f2226cbe0e40d5898d.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PFt_l_N10_nlin2Stdcolin27_9.4_publicP_ae4814e8e10a39f2226cbe0e40d5898d.nii.gz",
+        "position": [
+          -55015237,
+          -27583919,
+          38095874
+        ]
       },
       {
         "filename": "Area PFt (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area PFt (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PFt_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_28f7d67ec4042c21c459d44566c13c5c.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PFt_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_28f7d67ec4042c21c459d44566c13c5c.nii.gz",
+        "position": [
+          55074906,
+          -22994639,
+          39924515
+        ]
       },
       {
         "filename": "Area PFt (IPL) [v9.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area PFt (IPL) [v9.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PFt_r_N10_nlin2Stdcolin27_9.4_publicP_fbac57b455b0c33989a35f2201126cb2.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PFt_r_N10_nlin2Stdcolin27_9.4_publicP_fbac57b455b0c33989a35f2201126cb2.nii.gz",
+        "position": [
+          54808632,
+          -24626296,
+          37973570
+        ]
       }
     ]
   ],
@@ -2812,28 +4372,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area PGa (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PGa_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_aefd1d612523c56e9d11b1b33d2d1373.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PGa_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_aefd1d612523c56e9d11b1b33d2d1373.nii.gz",
+        "position": [
+          -50169585,
+          -63561531,
+          38956978
+        ]
       },
       {
         "filename": "Area PGa (IPL) [v9.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area PGa (IPL) [v9.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PGa_l_N10_nlin2Stdcolin27_9.4_publicP_655596fcf8594262ae9c7f305b2b4b30.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PGa_l_N10_nlin2Stdcolin27_9.4_publicP_655596fcf8594262ae9c7f305b2b4b30.nii.gz",
+        "position": [
+          -48873487,
+          -60780569,
+          37191889
+        ]
       },
       {
         "filename": "Area PGa (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area PGa (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PGa_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_a381916e2df422a0c89db5471c9c4d41.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PGa_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_a381916e2df422a0c89db5471c9c4d41.nii.gz",
+        "position": [
+          55106872,
+          -54828987,
+          31733304
+        ]
       },
       {
         "filename": "Area PGa (IPL) [v9.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area PGa (IPL) [v9.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PGa_r_N10_nlin2Stdcolin27_9.4_publicP_4e7ecd6470da24e8ec1545022ba7bf4c.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PGa_r_N10_nlin2Stdcolin27_9.4_publicP_4e7ecd6470da24e8ec1545022ba7bf4c.nii.gz",
+        "position": [
+          55283797,
+          -55333653,
+          30316395
+        ]
       }
     ]
   ],
@@ -2845,28 +4425,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 7PC (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_7PC_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_cad4c9dd53f23303d2a4528613035cd7.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_7PC_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_cad4c9dd53f23303d2a4528613035cd7.nii.gz",
+        "position": [
+          -33528332,
+          -47472312,
+          63389891
+        ]
       },
       {
         "filename": "Area 7PC (SPL) [v8.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 7PC (SPL) [v8.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_7PC_l_N10_nlin2Stdcolin27_8.4_publicP_483e2a5a539829e9649282df4d175613.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_7PC_l_N10_nlin2Stdcolin27_8.4_publicP_483e2a5a539829e9649282df4d175613.nii.gz",
+        "position": [
+          -32056266,
+          -48916454,
+          60868713
+        ]
       },
       {
         "filename": "Area 7PC (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 7PC (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_7PC_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_d49e9f09d2c83787b8b287b7799b2288.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_7PC_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_d49e9f09d2c83787b8b287b7799b2288.nii.gz",
+        "position": [
+          29759690,
+          -46534053,
+          62336656
+        ]
       },
       {
         "filename": "Area 7PC (SPL) [v8.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 7PC (SPL) [v8.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_7PC_r_N10_nlin2Stdcolin27_8.4_publicP_00436b9550b3a0706826b44a31e38b01.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_7PC_r_N10_nlin2Stdcolin27_8.4_publicP_00436b9550b3a0706826b44a31e38b01.nii.gz",
+        "position": [
+          30055171,
+          -49079568,
+          61493485
+        ]
       }
     ]
   ],
@@ -2878,28 +4478,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area PGp (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PGp_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_65aec0498dabf336f51f1ab5a5e1e173.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PGp_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_65aec0498dabf336f51f1ab5a5e1e173.nii.gz",
+        "position": [
+          -46213502,
+          -75081229,
+          30404363
+        ]
       },
       {
         "filename": "Area PGp (IPL) [v9.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area PGp (IPL) [v9.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PGp_l_N10_nlin2Stdcolin27_9.4_publicP_147e4c8a390add242ab474108811d45e.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PGp_l_N10_nlin2Stdcolin27_9.4_publicP_147e4c8a390add242ab474108811d45e.nii.gz",
+        "position": [
+          -44673441,
+          -73269937,
+          29840224
+        ]
       },
       {
         "filename": "Area PGp (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area PGp (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PGp_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_94fab0bde3d23f23ff0554b7d426c912.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PGp_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_94fab0bde3d23f23ff0554b7d426c912.nii.gz",
+        "position": [
+          47682598,
+          -70326680,
+          31755974
+        ]
       },
       {
         "filename": "Area PGp (IPL) [v9.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area PGp (IPL) [v9.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PGp_r_N10_nlin2Stdcolin27_9.4_publicP_43784aadc4d7a4f7f853ed4a09253161.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PGp_r_N10_nlin2Stdcolin27_9.4_publicP_43784aadc4d7a4f7f853ed4a09253161.nii.gz",
+        "position": [
+          47749459,
+          -70528695,
+          30721440
+        ]
       }
     ]
   ],
@@ -2911,28 +4531,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 7P (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_7P_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_39e6e34f2218b19b39dc7fae4d00b548.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_7P_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_39e6e34f2218b19b39dc7fae4d00b548.nii.gz",
+        "position": [
+          -8012999,
+          -74699164,
+          53070102
+        ]
       },
       {
         "filename": "Area 7P (SPL) [v8.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 7P (SPL) [v8.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_7P_l_N10_nlin2Stdcolin27_8.4_publicP_273286deb524b6db60c55aef828b39b7.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_7P_l_N10_nlin2Stdcolin27_8.4_publicP_273286deb524b6db60c55aef828b39b7.nii.gz",
+        "position": [
+          -7679310,
+          -76043295,
+          52631801
+        ]
       },
       {
         "filename": "Area 7P (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 7P (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_7P_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_bc14a93165a26089f5ca0150f3116b02.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_7P_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_bc14a93165a26089f5ca0150f3116b02.nii.gz",
+        "position": [
+          14174790,
+          -74087955,
+          55690476
+        ]
       },
       {
         "filename": "Area 7P (SPL) [v8.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 7P (SPL) [v8.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_7P_r_N10_nlin2Stdcolin27_8.4_publicP_4985145e131f3b2db24765767d8ad833.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_7P_r_N10_nlin2Stdcolin27_8.4_publicP_4985145e131f3b2db24765767d8ad833.nii.gz",
+        "position": [
+          14232037,
+          -74892094,
+          56304919
+        ]
       }
     ]
   ],
@@ -2944,28 +4584,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Ia (Insula) [v3.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Ia_l_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_3ecba4e28455cd52544127ad4efce4ca.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Ia_l_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_3ecba4e28455cd52544127ad4efce4ca.nii.gz",
+        "position": [
+          -41710811,
+          -3478378,
+          -8602703
+        ]
       },
       {
         "filename": "Area Ia (Insula) [v3.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Ia (Insula) [v3.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Ia_l_N10_nlin2Stdcolin27_3.1_publicDOI_a1dc222eaef902176bb1a87e51cb57a9.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Ia_l_N10_nlin2Stdcolin27_3.1_publicDOI_a1dc222eaef902176bb1a87e51cb57a9.nii.gz",
+        "position": [
+          -41612827,
+          -1876485,
+          -7019002
+        ]
       },
       {
         "filename": "Area Ia (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Ia (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Ia_r_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_190a0e68cec5c6c22f8afca48aa861c8.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Ia_r_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_190a0e68cec5c6c22f8afca48aa861c8.nii.gz",
+        "position": [
+          40271008,
+          -306723,
+          -8955882
+        ]
       },
       {
         "filename": "Area Ia (Insula) [v3.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Ia (Insula) [v3.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Ia_r_N10_nlin2Stdcolin27_3.1_publicDOI_75c6474e570337081abb1929e73752a2.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Ia_r_N10_nlin2Stdcolin27_3.1_publicDOI_75c6474e570337081abb1929e73752a2.nii.gz",
+        "position": [
+          43525000,
+          36538,
+          -7609615
+        ]
       }
     ]
   ],
@@ -2977,28 +4637,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 6ma (preSMA, mesial SFG) [v9.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Supplementarymotor_presma_l_N10_nlin2MNI152ASYM2009C_9.1_publicP_64a7846e7444bfc427baffe0d5dd606f.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Supplementarymotor_presma_l_N10_nlin2MNI152ASYM2009C_9.1_publicP_64a7846e7444bfc427baffe0d5dd606f.nii.gz",
+        "position": [
+          -5793912,
+          6001050,
+          57168300
+        ]
       },
       {
         "filename": "Area 6ma (preSMA, mesial SFG) [v9.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 6ma (preSMA, mesial SFG) [v9.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Supplementarymotor_presma_l_N10_nlin2Stdcolin27_9.1_publicP_c4e110a68942904a829ce1a6abb28bd1.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Supplementarymotor_presma_l_N10_nlin2Stdcolin27_9.1_publicP_c4e110a68942904a829ce1a6abb28bd1.nii.gz",
+        "position": [
+          -4083913,
+          4296092,
+          58555023
+        ]
       },
       {
         "filename": "Area 6ma (preSMA, mesial SFG) [v9.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 6ma (preSMA, mesial SFG) [v9.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Supplementarymotor_presma_r_N10_nlin2MNI152ASYM2009C_9.1_publicP_e6a4f1fe3062ba205a426d5f759a95f9.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Supplementarymotor_presma_r_N10_nlin2MNI152ASYM2009C_9.1_publicP_e6a4f1fe3062ba205a426d5f759a95f9.nii.gz",
+        "position": [
+          5128280,
+          6328025,
+          57073758
+        ]
       },
       {
         "filename": "Area 6ma (preSMA, mesial SFG) [v9.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 6ma (preSMA, mesial SFG) [v9.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Supplementarymotor_presma_r_N10_nlin2Stdcolin27_9.1_publicP_d7e68149ee548516d2e3f63158253c5f.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Supplementarymotor_presma_r_N10_nlin2Stdcolin27_9.1_publicP_d7e68149ee548516d2e3f63158253c5f.nii.gz",
+        "position": [
+          5230140,
+          4042128,
+          58355079
+        ]
       }
     ]
   ],
@@ -3010,28 +4690,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Id1 (Insula) [v13.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id1_l_N10_nlin2MNI152ASYM2009C_13.1_publicP_d5d83b0e83b5f1315d7c452f48475a08.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id1_l_N10_nlin2MNI152ASYM2009C_13.1_publicP_d5d83b0e83b5f1315d7c452f48475a08.nii.gz",
+        "position": [
+          -41135158,
+          -19816750,
+          -5491708
+        ]
       },
       {
         "filename": "Area Id1 (Insula) [v13.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Id1 (Insula) [v13.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id1_l_N10_nlin2Stdcolin27_13.1_publicP_4849992227f5c257e1a9f7666fe1ad7b.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id1_l_N10_nlin2Stdcolin27_13.1_publicP_4849992227f5c257e1a9f7666fe1ad7b.nii.gz",
+        "position": [
+          -40090747,
+          -18279359,
+          -4567616
+        ]
       },
       {
         "filename": "Area Id1 (Insula) [v13.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Id1 (Insula) [v13.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id1_r_N10_nlin2MNI152ASYM2009C_13.1_publicP_91c85673b4f142ddaca21d81c9b487ec.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id1_r_N10_nlin2MNI152ASYM2009C_13.1_publicP_91c85673b4f142ddaca21d81c9b487ec.nii.gz",
+        "position": [
+          38820470,
+          -17815436,
+          -5112416
+        ]
       },
       {
         "filename": "Area Id1 (Insula) [v13.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Id1 (Insula) [v13.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id1_r_N10_nlin2Stdcolin27_13.1_publicP_a053eee829eb22d5266c402ad29f98cb.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id1_r_N10_nlin2Stdcolin27_13.1_publicP_a053eee829eb22d5266c402ad29f98cb.nii.gz",
+        "position": [
+          40527825,
+          -17443508,
+          -4688027
+        ]
       }
     ]
   ],
@@ -3043,28 +4743,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Id4 (Insula) [v3.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id4_l_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_e96ae430032349aac6a4a61aaee79b4d.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id4_l_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_e96ae430032349aac6a4a61aaee79b4d.nii.gz",
+        "position": [
+          -37849096,
+          -4693324,
+          11819889
+        ]
       },
       {
         "filename": "Area Id4 (Insula) [v3.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Id4 (Insula) [v3.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id4_l_N10_nlin2Stdcolin27_3.1_publicDOI_f18ef7c60cb32c3641014f0909f93e02.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id4_l_N10_nlin2Stdcolin27_3.1_publicDOI_f18ef7c60cb32c3641014f0909f93e02.nii.gz",
+        "position": [
+          -37055965,
+          -3505155,
+          11422680
+        ]
       },
       {
         "filename": "Area Id4 (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Id4 (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id4_r_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_5389bc4c23b416171b9f8defacac1a0a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id4_r_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_5389bc4c23b416171b9f8defacac1a0a.nii.gz",
+        "position": [
+          36201613,
+          -3791475,
+          10987327
+        ]
       },
       {
         "filename": "Area Id4 (Insula) [v3.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Id4 (Insula) [v3.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id4_r_N10_nlin2Stdcolin27_3.1_publicDOI_2a6668950e5a00f4a74bf38acca581aa.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id4_r_N10_nlin2Stdcolin27_3.1_publicDOI_2a6668950e5a00f4a74bf38acca581aa.nii.gz",
+        "position": [
+          37461444,
+          -3746634,
+          10858017
+        ]
       }
     ]
   ],
@@ -3076,28 +4796,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 6mp (SMA, mesial SFG) [v9.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Supplementarymotor_sma_l_N10_nlin2MNI152ASYM2009C_9.1_publicP_70b04cf0590767ac0261524c4f4c791a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Supplementarymotor_sma_l_N10_nlin2MNI152ASYM2009C_9.1_publicP_70b04cf0590767ac0261524c4f4c791a.nii.gz",
+        "position": [
+          -5060089,
+          -12636499,
+          57999629
+        ]
       },
       {
         "filename": "Area 6mp (SMA, mesial SFG) [v9.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 6mp (SMA, mesial SFG) [v9.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Supplementarymotor_sma_l_N10_nlin2Stdcolin27_9.1_publicP_1d38ab9abb3e1e48cca85f22de5b6336.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Supplementarymotor_sma_l_N10_nlin2Stdcolin27_9.1_publicP_1d38ab9abb3e1e48cca85f22de5b6336.nii.gz",
+        "position": [
+          -4094374,
+          -14286751,
+          59329220
+        ]
       },
       {
         "filename": "Area 6mp (SMA, mesial SFG) [v9.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area 6mp (SMA, mesial SFG) [v9.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Supplementarymotor_sma_r_N10_nlin2MNI152ASYM2009C_9.1_publicP_9f44531c44b109bd3899ee4c5c654a12.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Supplementarymotor_sma_r_N10_nlin2MNI152ASYM2009C_9.1_publicP_9f44531c44b109bd3899ee4c5c654a12.nii.gz",
+        "position": [
+          4281209,
+          -12118010,
+          56050065
+        ]
       },
       {
         "filename": "Area 6mp (SMA, mesial SFG) [v9.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area 6mp (SMA, mesial SFG) [v9.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Supplementarymotor_sma_r_N10_nlin2Stdcolin27_9.1_publicP_a587671b8f0fbf0a2b8f3ae5d75ec32a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Supplementarymotor_sma_r_N10_nlin2Stdcolin27_9.1_publicP_a587671b8f0fbf0a2b8f3ae5d75ec32a.nii.gz",
+        "position": [
+          4949202,
+          -13788668,
+          57534028
+        ]
       }
     ]
   ],
@@ -3109,28 +4849,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Id5 (Insula) [v3.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id5_l_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_c4cac3c40faf5b360f496c93d228a5f7.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id5_l_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_c4cac3c40faf5b360f496c93d228a5f7.nii.gz",
+        "position": [
+          -40449519,
+          -4582933,
+          382212
+        ]
       },
       {
         "filename": "Area Id5 (Insula) [v3.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Id5 (Insula) [v3.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id5_l_N10_nlin2Stdcolin27_3.1_publicDOI_b2b955819205633599cce414a0175604.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id5_l_N10_nlin2Stdcolin27_3.1_publicDOI_b2b955819205633599cce414a0175604.nii.gz",
+        "position": [
+          -40174302,
+          -3354190,
+          741899
+        ]
       },
       {
         "filename": "Area Id5 (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area Id5 (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id5_r_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_9c6734478af4d58b09478ea8a0f4f2ca.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id5_r_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_9c6734478af4d58b09478ea8a0f4f2ca.nii.gz",
+        "position": [
+          38537963,
+          -2796296,
+          165741
+        ]
       },
       {
         "filename": "Area Id5 (Insula) [v3.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area Id5 (Insula) [v3.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id5_r_N10_nlin2Stdcolin27_3.1_publicDOI_2baf1d46de3dc9859c78fc1b034d1855.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id5_r_N10_nlin2Stdcolin27_3.1_publicDOI_2baf1d46de3dc9859c78fc1b034d1855.nii.gz",
+        "position": [
+          41094953,
+          -2659538,
+          607357
+        ]
       }
     ]
   ],
@@ -3142,28 +4902,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area FG1 (FusG) [v1.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_FG1_l_N10_nlin2MNI152ASYM2009C_1.4_publicP_bce8572815ce38ebf2348113c526316b.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_FG1_l_N10_nlin2MNI152ASYM2009C_1.4_publicP_bce8572815ce38ebf2348113c526316b.nii.gz",
+        "position": [
+          -30094949,
+          -68384410,
+          -12800146
+        ]
       },
       {
         "filename": "Area FG1 (FusG) [v1.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area FG1 (FusG) [v1.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_FG1_l_N10_nlin2Stdcolin27_1.4_publicP_f15aef925b85cdda07a24cd5df5bb2fa.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_FG1_l_N10_nlin2Stdcolin27_1.4_publicP_f15aef925b85cdda07a24cd5df5bb2fa.nii.gz",
+        "position": [
+          -29006116,
+          -66264526,
+          -12290010
+        ]
       },
       {
         "filename": "Area FG1 (FusG) [v1.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area FG1 (FusG) [v1.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_FG1_r_N10_nlin2MNI152ASYM2009C_1.4_publicP_0d97288189f30b47b6d46a4641c6aaca.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_FG1_r_N10_nlin2MNI152ASYM2009C_1.4_publicP_0d97288189f30b47b6d46a4641c6aaca.nii.gz",
+        "position": [
+          32164756,
+          -65600287,
+          -12459885
+        ]
       },
       {
         "filename": "Area FG1 (FusG) [v1.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area FG1 (FusG) [v1.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_FG1_r_N10_nlin2Stdcolin27_1.4_publicP_db04aa33e7871003968694b1876d0a54.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_FG1_r_N10_nlin2Stdcolin27_1.4_publicP_db04aa33e7871003968694b1876d0a54.nii.gz",
+        "position": [
+          32840456,
+          -64340456,
+          -12612536
+        ]
       }
     ]
   ],
@@ -3175,28 +4955,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area FG2 (FusG) [v1.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_FG2_l_N10_nlin2MNI152ASYM2009C_1.4_publicP_f4ec7bdd50b94de8e24d588f921fe24f.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_FG2_l_N10_nlin2MNI152ASYM2009C_1.4_publicP_f4ec7bdd50b94de8e24d588f921fe24f.nii.gz",
+        "position": [
+          -44484053,
+          -67922326,
+          -16558015
+        ]
       },
       {
         "filename": "Area FG2 (FusG) [v1.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area FG2 (FusG) [v1.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_FG2_l_N10_nlin2Stdcolin27_1.4_publicP_795615fc9a62df9aabc1b4184fc26b60.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_FG2_l_N10_nlin2Stdcolin27_1.4_publicP_795615fc9a62df9aabc1b4184fc26b60.nii.gz",
+        "position": [
+          -43549584,
+          -65531770,
+          -16708135
+        ]
       },
       {
         "filename": "Area FG2 (FusG) [v1.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area FG2 (FusG) [v1.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_FG2_r_N10_nlin2MNI152ASYM2009C_1.4_publicP_c1ec4350fea589df56fdcdc451202997.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_FG2_r_N10_nlin2MNI152ASYM2009C_1.4_publicP_c1ec4350fea589df56fdcdc451202997.nii.gz",
+        "position": [
+          44057346,
+          -64586582,
+          -16661544
+        ]
       },
       {
         "filename": "Area FG2 (FusG) [v1.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area FG2 (FusG) [v1.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_FG2_r_N10_nlin2Stdcolin27_1.4_publicP_b6d8306c22a2872d2010aaaed2a09e7a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_FG2_r_N10_nlin2Stdcolin27_1.4_publicP_b6d8306c22a2872d2010aaaed2a09e7a.nii.gz",
+        "position": [
+          44839825,
+          -63606518,
+          -17316773
+        ]
       }
     ]
   ],
@@ -3208,28 +5008,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area FG3 (FusG) [v6.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_FG3_l_N10_nlin2MNI152ASYM2009C_6.1_publicP_821be84fb0820b15066242a2e9bfd144.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_FG3_l_N10_nlin2MNI152ASYM2009C_6.1_publicP_821be84fb0820b15066242a2e9bfd144.nii.gz",
+        "position": [
+          -31763265,
+          -47519967,
+          -14980126
+        ]
       },
       {
         "filename": "Area FG3 (FusG) [v6.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area FG3 (FusG) [v6.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_FG3_l_N10_nlin2Stdcolin27_6.1_publicP_cf55dcdaad33d8a1b493fb6e74b44588.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_FG3_l_N10_nlin2Stdcolin27_6.1_publicP_cf55dcdaad33d8a1b493fb6e74b44588.nii.gz",
+        "position": [
+          -29844935,
+          -45368421,
+          -14184493
+        ]
       },
       {
         "filename": "Area FG3 (FusG) [v6.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area FG3 (FusG) [v6.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_FG3_r_N10_nlin2MNI152ASYM2009C_6.1_publicP_6471455ff336127c39e73465265c8dae.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_FG3_r_N10_nlin2MNI152ASYM2009C_6.1_publicP_6471455ff336127c39e73465265c8dae.nii.gz",
+        "position": [
+          30835007,
+          -45941176,
+          -15743424
+        ]
       },
       {
         "filename": "Area FG3 (FusG) [v6.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area FG3 (FusG) [v6.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_FG3_r_N10_nlin2Stdcolin27_6.1_publicP_06d27f91c81bee534e4fe646b1cbbbc1.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_FG3_r_N10_nlin2Stdcolin27_6.1_publicP_06d27f91c81bee534e4fe646b1cbbbc1.nii.gz",
+        "position": [
+          31148061,
+          -44485336,
+          -15533822
+        ]
       }
     ]
   ],
@@ -3241,28 +5061,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area FG4 (FusG) [v6.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_FG4_l_N10_nlin2MNI152ASYM2009C_6.1_publicP_2cd9d3a99ed5b800e8c27ab6dd33a5de.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_FG4_l_N10_nlin2MNI152ASYM2009C_6.1_publicP_2cd9d3a99ed5b800e8c27ab6dd33a5de.nii.gz",
+        "position": [
+          -44817844,
+          -46757217,
+          -19517597
+        ]
       },
       {
         "filename": "Area FG4 (FusG) [v6.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area FG4 (FusG) [v6.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_FG4_l_N10_nlin2Stdcolin27_6.1_publicP_1c321f02425aa7828dce7a5b042bda82.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_FG4_l_N10_nlin2Stdcolin27_6.1_publicP_1c321f02425aa7828dce7a5b042bda82.nii.gz",
+        "position": [
+          -43204016,
+          -44325167,
+          -20016734
+        ]
       },
       {
         "filename": "Area FG4 (FusG) [v6.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area FG4 (FusG) [v6.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_FG4_r_N10_nlin2MNI152ASYM2009C_6.1_publicP_f0a0c573824a033925bd4af891146e5c.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_FG4_r_N10_nlin2MNI152ASYM2009C_6.1_publicP_f0a0c573824a033925bd4af891146e5c.nii.gz",
+        "position": [
+          42929445,
+          -44444275,
+          -21712296
+        ]
       },
       {
         "filename": "Area FG4 (FusG) [v6.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area FG4 (FusG) [v6.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_FG4_r_N10_nlin2Stdcolin27_6.1_publicP_683f9ce4bb17648f79caaafb95e3a967.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_FG4_r_N10_nlin2Stdcolin27_6.1_publicP_683f9ce4bb17648f79caaafb95e3a967.nii.gz",
+        "position": [
+          43609694,
+          -43478025,
+          -22392295
+        ]
       }
     ]
   ],
@@ -3274,28 +5114,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hOc1 (V1, 17, CalcS) [v2.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc1_l_N10_nlin2MNI152ASYM2009C_2.4_publicP_d3045ee3c0c4de9820eb1516d2cc72bb.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc1_l_N10_nlin2MNI152ASYM2009C_2.4_publicP_d3045ee3c0c4de9820eb1516d2cc72bb.nii.gz",
+        "position": [
+          -10265298,
+          -84434623,
+          2016671
+        ]
       },
       {
         "filename": "Area hOc1 (V1, 17, CalcS) [v2.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hOc1 (V1, 17, CalcS) [v2.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc1_l_N10_nlin2Stdcolin27_2.4_publicP_788fe1ea663b1fa4e7e9a8b5cf26c5d6.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc1_l_N10_nlin2Stdcolin27_2.4_publicP_788fe1ea663b1fa4e7e9a8b5cf26c5d6.nii.gz",
+        "position": [
+          -8533787,
+          -84646549,
+          1855106
+        ]
       },
       {
         "filename": "Area hOc1 (V1, 17, CalcS) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hOc1 (V1, 17, CalcS) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc1_r_N10_nlin2MNI152ASYM2009C_2.4_publicP_a48ca5d938781ebaf1eaa25f59df74d0.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc1_r_N10_nlin2MNI152ASYM2009C_2.4_publicP_a48ca5d938781ebaf1eaa25f59df74d0.nii.gz",
+        "position": [
+          13123488,
+          -81803556,
+          2052487
+        ]
       },
       {
         "filename": "Area hOc1 (V1, 17, CalcS) [v2.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hOc1 (V1, 17, CalcS) [v2.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc1_r_N10_nlin2Stdcolin27_2.4_publicP_b3b742528b1d1a933c89b2604d23028d.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc1_r_N10_nlin2Stdcolin27_2.4_publicP_b3b742528b1d1a933c89b2604d23028d.nii.gz",
+        "position": [
+          14654595,
+          -81416396,
+          1637838
+        ]
       }
     ]
   ],
@@ -3307,28 +5167,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hOc2 (V2, 18) [v2.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc2_l_N10_nlin2MNI152ASYM2009C_2.4_publicP_df81c453f3cf5b8092f52723b348b1e9.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc2_l_N10_nlin2MNI152ASYM2009C_2.4_publicP_df81c453f3cf5b8092f52723b348b1e9.nii.gz",
+        "position": [
+          -10978138,
+          -87917881,
+          3523276
+        ]
       },
       {
         "filename": "Area hOc2 (V2, 18) [v2.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hOc2 (V2, 18) [v2.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc2_l_N10_nlin2Stdcolin27_2.4_publicP_107c22563c6a2e866be63e0fa46dc438.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc2_l_N10_nlin2Stdcolin27_2.4_publicP_107c22563c6a2e866be63e0fa46dc438.nii.gz",
+        "position": [
+          -10521334,
+          -88185706,
+          4055081
+        ]
       },
       {
         "filename": "Area hOc2 (V2, 18) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hOc2 (V2, 18) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc2_r_N10_nlin2MNI152ASYM2009C_2.4_publicP_ce802616d4367d2869dd4bbd3f11f1cb.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc2_r_N10_nlin2MNI152ASYM2009C_2.4_publicP_ce802616d4367d2869dd4bbd3f11f1cb.nii.gz",
+        "position": [
+          12703537,
+          -86800460,
+          3658074
+        ]
       },
       {
         "filename": "Area hOc2 (V2, 18) [v2.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hOc2 (V2, 18) [v2.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc2_r_N10_nlin2Stdcolin27_2.4_publicP_a06dd5eab4720f7e81c5940c36f9af41.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc2_r_N10_nlin2Stdcolin27_2.4_publicP_a06dd5eab4720f7e81c5940c36f9af41.nii.gz",
+        "position": [
+          15409559,
+          -86163484,
+          2905309
+        ]
       }
     ]
   ],
@@ -3340,28 +5220,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hOc3d (Cuneus) [v2.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc3d_l_N10_nlin2MNI152ASYM2009C_2.4_publicP_a79ba6482dee871a17b26451912fc724.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc3d_l_N10_nlin2MNI152ASYM2009C_2.4_publicP_a79ba6482dee871a17b26451912fc724.nii.gz",
+        "position": [
+          -14416089,
+          -92302582,
+          21786681
+        ]
       },
       {
         "filename": "Area hOc3d (Cuneus) [v2.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hOc3d (Cuneus) [v2.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc3d_l_N10_nlin2Stdcolin27_2.4_publicP_635ec81714dba724ca5da95e03ff2f40.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc3d_l_N10_nlin2Stdcolin27_2.4_publicP_635ec81714dba724ca5da95e03ff2f40.nii.gz",
+        "position": [
+          -12816505,
+          -91289984,
+          21840872
+        ]
       },
       {
         "filename": "Area hOc3d (Cuneus) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hOc3d (Cuneus) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc3d_r_N10_nlin2MNI152ASYM2009C_2.4_publicP_1a84fb38fc980635c9428b549b3c510c.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc3d_r_N10_nlin2MNI152ASYM2009C_2.4_publicP_1a84fb38fc980635c9428b549b3c510c.nii.gz",
+        "position": [
+          14188075,
+          -89168467,
+          24647659
+        ]
       },
       {
         "filename": "Area hOc3d (Cuneus) [v2.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hOc3d (Cuneus) [v2.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc3d_r_N10_nlin2Stdcolin27_2.4_publicP_9263f0e0b2aafbd5e3f8eb672ab49353.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc3d_r_N10_nlin2Stdcolin27_2.4_publicP_9263f0e0b2aafbd5e3f8eb672ab49353.nii.gz",
+        "position": [
+          16129503,
+          -88897084,
+          23080617
+        ]
       }
     ]
   ],
@@ -3373,28 +5273,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hOc3v (LingG) [v3.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc3v_l_N10_nlin2MNI152ASYM2009C_3.4_publicP_65e888ad8a2a691d651f0404947518fb.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc3v_l_N10_nlin2MNI152ASYM2009C_3.4_publicP_65e888ad8a2a691d651f0404947518fb.nii.gz",
+        "position": [
+          -19368217,
+          -87017481,
+          -10849154
+        ]
       },
       {
         "filename": "Area hOc3v (LingG) [v3.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hOc3v (LingG) [v3.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc3v_l_N10_nlin2Stdcolin27_3.4_publicP_1a697c6ce10e7244d6a934a45c5dc79c.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc3v_l_N10_nlin2Stdcolin27_3.4_publicP_1a697c6ce10e7244d6a934a45c5dc79c.nii.gz",
+        "position": [
+          -18685863,
+          -85629087,
+          -10106719
+        ]
       },
       {
         "filename": "Area hOc3v (LingG) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hOc3v (LingG) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc3v_r_N10_nlin2MNI152ASYM2009C_3.4_publicP_8ce4868d81d4785cc2ac6a8d0b7a670b.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc3v_r_N10_nlin2MNI152ASYM2009C_3.4_publicP_8ce4868d81d4785cc2ac6a8d0b7a670b.nii.gz",
+        "position": [
+          22758654,
+          -83233966,
+          -10415129
+        ]
       },
       {
         "filename": "Area hOc3v (LingG) [v3.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hOc3v (LingG) [v3.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc3v_r_N10_nlin2Stdcolin27_3.4_publicP_5ac50d54d3501d4acffbbe89b8b3521b.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc3v_r_N10_nlin2Stdcolin27_3.4_publicP_5ac50d54d3501d4acffbbe89b8b3521b.nii.gz",
+        "position": [
+          24296060,
+          -81686611,
+          -10031193
+        ]
       }
     ]
   ],
@@ -3406,28 +5326,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hOc4d (Cuneus) [v2.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc4d_l_N10_nlin2MNI152ASYM2009C_2.4_publicP_85c7f5168facd3330e23ac4af64a4275.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc4d_l_N10_nlin2MNI152ASYM2009C_2.4_publicP_85c7f5168facd3330e23ac4af64a4275.nii.gz",
+        "position": [
+          -18518125,
+          -89169571,
+          25335483
+        ]
       },
       {
         "filename": "Area hOc4d (Cuneus) [v2.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hOc4d (Cuneus) [v2.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc4d_l_N10_nlin2Stdcolin27_2.4_publicP_61837c79a744d456c34d3af946b676a3.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc4d_l_N10_nlin2Stdcolin27_2.4_publicP_61837c79a744d456c34d3af946b676a3.nii.gz",
+        "position": [
+          -17209585,
+          -87846006,
+          25522684
+        ]
       },
       {
         "filename": "Area hOc4d (Cuneus) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hOc4d (Cuneus) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc4d_r_N10_nlin2MNI152ASYM2009C_2.4_publicP_cb49cab793d13a0886b57da4d8585e53.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc4d_r_N10_nlin2MNI152ASYM2009C_2.4_publicP_cb49cab793d13a0886b57da4d8585e53.nii.gz",
+        "position": [
+          19552047,
+          -87379086,
+          27567915
+        ]
       },
       {
         "filename": "Area hOc4d (Cuneus) [v2.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hOc4d (Cuneus) [v2.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc4d_r_N10_nlin2Stdcolin27_2.4_publicP_d4018904740da8830742474d5e8f94e0.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc4d_r_N10_nlin2Stdcolin27_2.4_publicP_d4018904740da8830742474d5e8f94e0.nii.gz",
+        "position": [
+          20232373,
+          -87193644,
+          27253227
+        ]
       }
     ]
   ],
@@ -3439,28 +5379,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hOc4la (LOC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc4la_l_N10_nlin2MNI152ASYM2009C_3.4_publicP_4b22039a9e6b5d46c63af27028c3eb2c.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc4la_l_N10_nlin2MNI152ASYM2009C_3.4_publicP_4b22039a9e6b5d46c63af27028c3eb2c.nii.gz",
+        "position": [
+          -47307308,
+          -79566994,
+          -653781
+        ]
       },
       {
         "filename": "Area hOc4la (LOC) [v3.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hOc4la (LOC) [v3.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc4la_l_N10_nlin2Stdcolin27_3.4_publicP_16f642398096ac1344ca8f41bcd72cfe.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc4la_l_N10_nlin2Stdcolin27_3.4_publicP_16f642398096ac1344ca8f41bcd72cfe.nii.gz",
+        "position": [
+          -46291484,
+          -76947955,
+          -372761
+        ]
       },
       {
         "filename": "Area hOc4la (LOC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hOc4la (LOC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc4la_r_N10_nlin2MNI152ASYM2009C_3.4_publicP_4216964f14a3201ed0e59f698e071935.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc4la_r_N10_nlin2MNI152ASYM2009C_3.4_publicP_4216964f14a3201ed0e59f698e071935.nii.gz",
+        "position": [
+          47940691,
+          -74716566,
+          251812
+        ]
       },
       {
         "filename": "Area hOc4la (LOC) [v3.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hOc4la (LOC) [v3.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc4la_r_N10_nlin2Stdcolin27_3.4_publicP_18a6ea6984f712e91c0de10b2bb9a407.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc4la_r_N10_nlin2Stdcolin27_3.4_publicP_18a6ea6984f712e91c0de10b2bb9a407.nii.gz",
+        "position": [
+          48566255,
+          -73862041,
+          -779202
+        ]
       }
     ]
   ],
@@ -3472,28 +5432,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hOc4lp (LOC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc4lp_l_N10_nlin2MNI152ASYM2009C_3.4_publicP_505d832a41fdf69427cedbbca146705e.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc4lp_l_N10_nlin2MNI152ASYM2009C_3.4_publicP_505d832a41fdf69427cedbbca146705e.nii.gz",
+        "position": [
+          -34774834,
+          -90654982,
+          6585904
+        ]
       },
       {
         "filename": "Area hOc4lp (LOC) [v3.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hOc4lp (LOC) [v3.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc4lp_l_N10_nlin2Stdcolin27_3.4_publicP_fabcd708723f7c86e6cac4e4128e2c4d.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc4lp_l_N10_nlin2Stdcolin27_3.4_publicP_fabcd708723f7c86e6cac4e4128e2c4d.nii.gz",
+        "position": [
+          -34066943,
+          -88725728,
+          6360721
+        ]
       },
       {
         "filename": "Area hOc4lp (LOC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hOc4lp (LOC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc4lp_r_N10_nlin2MNI152ASYM2009C_3.4_publicP_fa5a9ca0badef71585a2c9ab40ce1ddf.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc4lp_r_N10_nlin2MNI152ASYM2009C_3.4_publicP_fa5a9ca0badef71585a2c9ab40ce1ddf.nii.gz",
+        "position": [
+          37344111,
+          -86863972,
+          4946882
+        ]
       },
       {
         "filename": "Area hOc4lp (LOC) [v3.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hOc4lp (LOC) [v3.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc4lp_r_N10_nlin2Stdcolin27_3.4_publicP_1b5e1b3ae596329a1cdbb2d93d525507.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc4lp_r_N10_nlin2Stdcolin27_3.4_publicP_1b5e1b3ae596329a1cdbb2d93d525507.nii.gz",
+        "position": [
+          38538256,
+          -86375516,
+          4086228
+        ]
       }
     ]
   ],
@@ -3505,28 +5485,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hOc4v (LingG) [v3.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc4v_l_N10_nlin2MNI152ASYM2009C_3.4_publicP_411fef399d0549ef7e4b5a717fdd4c23.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc4v_l_N10_nlin2MNI152ASYM2009C_3.4_publicP_411fef399d0549ef7e4b5a717fdd4c23.nii.gz",
+        "position": [
+          -27885066,
+          -80622049,
+          -13384313
+        ]
       },
       {
         "filename": "Area hOc4v (LingG) [v3.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hOc4v (LingG) [v3.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc4v_l_N10_nlin2Stdcolin27_3.4_publicP_45fabb5f075b26870141ef823fa15afb.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc4v_l_N10_nlin2Stdcolin27_3.4_publicP_45fabb5f075b26870141ef823fa15afb.nii.gz",
+        "position": [
+          -26315808,
+          -78419533,
+          -12497238
+        ]
       },
       {
         "filename": "Area hOc4v (LingG) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hOc4v (LingG) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc4v_r_N10_nlin2MNI152ASYM2009C_3.4_publicP_520fad8687876ce9cbbb2d4ef43de4d2.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc4v_r_N10_nlin2MNI152ASYM2009C_3.4_publicP_520fad8687876ce9cbbb2d4ef43de4d2.nii.gz",
+        "position": [
+          31875471,
+          -78011213,
+          -12568268
+        ]
       },
       {
         "filename": "Area hOc4v (LingG) [v3.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hOc4v (LingG) [v3.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc4v_r_N10_nlin2Stdcolin27_3.4_publicP_82034ecd08bd39b16df0f465c94ceac0.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc4v_r_N10_nlin2Stdcolin27_3.4_publicP_82034ecd08bd39b16df0f465c94ceac0.nii.gz",
+        "position": [
+          32665897,
+          -76519832,
+          -12453305
+        ]
       }
     ]
   ],
@@ -3538,28 +5538,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hOc5 (LOC) [v2.4, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc5_l_N10_nlin2MNI152ASYM2009C_2.4_publicP_8711958bf427c07b36e28d6687bd7003.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc5_l_N10_nlin2MNI152ASYM2009C_2.4_publicP_8711958bf427c07b36e28d6687bd7003.nii.gz",
+        "position": [
+          -43339493,
+          -73484161,
+          1403907
+        ]
       },
       {
         "filename": "Area hOc5 (LOC) [v2.4, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hOc5 (LOC) [v2.4, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc5_l_N10_nlin2Stdcolin27_2.4_publicP_6ed980373c276947f90f58eefe410f96.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc5_l_N10_nlin2Stdcolin27_2.4_publicP_6ed980373c276947f90f58eefe410f96.nii.gz",
+        "position": [
+          -42484324,
+          -71486486,
+          1795676
+        ]
       },
       {
         "filename": "Area hOc5 (LOC) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hOc5 (LOC) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc5_r_N10_nlin2MNI152ASYM2009C_2.4_publicP_f5d20a1ad3db354a5b9a6f13beb905b6.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc5_r_N10_nlin2MNI152ASYM2009C_2.4_publicP_f5d20a1ad3db354a5b9a6f13beb905b6.nii.gz",
+        "position": [
+          47686640,
+          -66001965,
+          4126719
+        ]
       },
       {
         "filename": "Area hOc5 (LOC) [v2.4, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hOc5 (LOC) [v2.4, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc5_r_N10_nlin2Stdcolin27_2.4_publicP_7542c361d311176986f0dbab9561b2f6.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc5_r_N10_nlin2Stdcolin27_2.4_publicP_7542c361d311176986f0dbab9561b2f6.nii.gz",
+        "position": [
+          48090700,
+          -66172216,
+          3121699
+        ]
       }
     ]
   ],
@@ -3571,28 +5591,48 @@
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hOc6 (POS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc6_l_N10_nlin2MNI152ASYM2009C_7.1_publicP_768ea7470e377af487c4bab30b5e3f5a.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc6_l_N10_nlin2MNI152ASYM2009C_7.1_publicP_768ea7470e377af487c4bab30b5e3f5a.nii.gz",
+        "position": [
+          -17598229,
+          -72213366,
+          15094203
+        ]
       },
       {
         "filename": "Area hOc6 (POS) [v7.1, Colin 27, left hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hOc6 (POS) [v7.1, Colin 27, left hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc6_l_N10_nlin2Stdcolin27_7.1_publicP_be904a3989a71a4a202110ff3c6bc446.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc6_l_N10_nlin2Stdcolin27_7.1_publicP_be904a3989a71a4a202110ff3c6bc446.nii.gz",
+        "position": [
+          -15925775,
+          -70685971,
+          16518760
+        ]
       },
       {
         "filename": "Area hOc6 (POS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
         "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
         "name": "Area hOc6 (POS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc6_r_N10_nlin2MNI152ASYM2009C_7.1_publicP_abac2ae4767d3c4a3dbf7d9558d9f789.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc6_r_N10_nlin2MNI152ASYM2009C_7.1_publicP_abac2ae4767d3c4a3dbf7d9558d9f789.nii.gz",
+        "position": [
+          17851310,
+          -68066256,
+          18144838
+        ]
       },
       {
         "filename": "Area hOc6 (POS) [v7.1, Colin 27, right hemisphere]",
         "templateSpace": "MNI Colin 27",
         "name": "Area hOc6 (POS) [v7.1, Colin 27, right hemisphere]",
         "mimetype": "application/nifti",
-        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc6_r_N10_nlin2Stdcolin27_7.1_publicP_d39518619b83c18a818916c2d96bca68.nii.gz"
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc6_r_N10_nlin2Stdcolin27_7.1_publicP_d39518619b83c18a818916c2d96bca68.nii.gz",
+        "position": [
+          17750454,
+          -67625227,
+          17755898
+        ]
       }
     ]
   ]
diff --git a/deploy/datasets/supplements/data/receptorPreview.json b/deploy/datasets/supplements/data/receptorPreview.json
index 535ad50bf3bed721ddb1ae3eba56469784b7e66a..42946ebe56dff104ca37097d99f7242b1b5ed8f7 100644
--- a/deploy/datasets/supplements/data/receptorPreview.json
+++ b/deploy/datasets/supplements/data/receptorPreview.json
@@ -1 +1 @@
-[["Density measurements of different receptors for Area 4p",[{"name":"Receptor density fingerprint of Area 4p","filename":"fingerprint","mimetype":"application/json","properties":{"description":"**Multireceptor fingerprint for area 4p.** This polar plot shows the mean receptor densities in fmol/mg protein (solid shape) and standard deviation (dashed line) of 16 receptor binding sites in the area 4p. The data is based on the left and right hemisphere of one female subject (brain id: hg0201, sample ids: ID07 and ID08, age: 77, cause of death: lung edema) and the right hemispheres of two male subjects (brain id: hg0500, sample ids: ID09, age: 72, cause of death: cardiac arrest | brain id: hg0100, sample ids: ID12, age: 77, cause of death: coronary heart disease).","publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["286","286","739","NA","999","1842","1337","245","141","400","69","193","111","162","234","49"]},{"label":"mean_sd","data":["40","35","1","NA","108","10","65","23","27","44","13","7","15","31","2","5"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 4p (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(139,71,137,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAᴀ(BZ) in Area 4p","filename":"GABAᴀ(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_BZ.jpg"},{"name":"Sample autoradiograph of α₁(NA) in Area 4p","filename":"α₁(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area 4p","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAᴀ(GABA) in Area 4p","filename":"GABAᴀ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area 4p","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area 4p","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of M₁(ACh) in Area 4p","filename":"M₁(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HT₁ᴀ(5-HT) in Area 4p","filename":"5-HT₁ᴀ(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area 4p","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_kainate.jpg"},{"name":"Sample autoradiograph of M₂(ACh) in Area 4p","filename":"M₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area 4p","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_AMPA.jpg"},{"name":"Sample autoradiograph of D₁(DA) in Area 4p","filename":"D₁(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area 4p","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area 4p","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HT₂(5-HT) in Area 4p","filename":"5-HT₂(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAᴃ(GABA) in Area 4p","filename":"GABAᴃ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_GABAB.jpg"},{"name":"Sample profile of GABAᴀ(BZ) in Area 4p","filename":"GABAᴀ(BZ)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of BZ receptor in area 4p.** This profile plot shows examplary the course of the BZ receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(BZ) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(BZ) in Area 4p"],"datasets":[{"data":[{"x":0,"y":2413.7942},{"x":1,"y":2579.6044},{"x":2,"y":2702.8189},{"x":3,"y":2798.8989},{"x":4,"y":2884.1463},{"x":5,"y":2974.3385},{"x":6,"y":3051.5047},{"x":7,"y":3111.7795},{"x":8,"y":3147.6055},{"x":9,"y":3166.3901},{"x":10,"y":3176.7118},{"x":11,"y":3186.6968},{"x":12,"y":3190.6774},{"x":13,"y":3175.9626},{"x":14,"y":3150.1009},{"x":15,"y":3126.9474},{"x":16,"y":3101.0072},{"x":17,"y":3067.388},{"x":18,"y":3019.0921},{"x":19,"y":2941.8543},{"x":20,"y":2848.7345},{"x":21,"y":2764.5887},{"x":22,"y":2685.3707},{"x":23,"y":2594.0466},{"x":24,"y":2495.2953},{"x":25,"y":2407.7066},{"x":26,"y":2333.9791},{"x":27,"y":2251.1285},{"x":28,"y":2180.8211},{"x":29,"y":2123.6526},{"x":30,"y":2079.9581},{"x":31,"y":2034.0584},{"x":32,"y":1997.3294},{"x":33,"y":1965.5269},{"x":34,"y":1940.2193},{"x":35,"y":1916.1916},{"x":36,"y":1883.4167},{"x":37,"y":1853.6692},{"x":38,"y":1826.0956},{"x":39,"y":1798.6402},{"x":40,"y":1775.9312},{"x":41,"y":1750.9717},{"x":42,"y":1727.9437},{"x":43,"y":1717.8377},{"x":44,"y":1704.3227},{"x":45,"y":1694.9437},{"x":46,"y":1689.5052},{"x":47,"y":1686.4007},{"x":48,"y":1677.6482},{"x":49,"y":1661.8785},{"x":50,"y":1644.2679},{"x":51,"y":1620.0272},{"x":52,"y":1587.3433},{"x":53,"y":1554.6403},{"x":54,"y":1521.1183},{"x":55,"y":1486.9183},{"x":56,"y":1456.6702},{"x":57,"y":1437.946},{"x":58,"y":1421.5769},{"x":59,"y":1408.4279},{"x":60,"y":1398.5662},{"x":61,"y":1392.2645},{"x":62,"y":1387.9689},{"x":63,"y":1381.544},{"x":64,"y":1371.8216},{"x":65,"y":1366.965},{"x":66,"y":1370.4149},{"x":67,"y":1366.3302},{"x":68,"y":1347.7732},{"x":69,"y":1331.3701},{"x":70,"y":1324.8525},{"x":71,"y":1319.6012},{"x":72,"y":1305.0713},{"x":73,"y":1286.3558},{"x":74,"y":1267.4558},{"x":75,"y":1254.2137},{"x":76,"y":1240.9391},{"x":77,"y":1223.9838},{"x":78,"y":1203.4248},{"x":79,"y":1185.6071},{"x":80,"y":1161.864},{"x":81,"y":1125.0255},{"x":82,"y":1091.9493},{"x":83,"y":1069.7976},{"x":84,"y":1045.3628},{"x":85,"y":1021.5118},{"x":86,"y":1002.7278},{"x":87,"y":990.1426},{"x":88,"y":974.0419},{"x":89,"y":950.0222},{"x":90,"y":927.9979},{"x":91,"y":915.1907},{"x":92,"y":895.0272},{"x":93,"y":863.2511},{"x":94,"y":825.0214},{"x":95,"y":784.9342},{"x":96,"y":741.202},{"x":97,"y":698.1911},{"x":98,"y":646.022},{"x":99,"y":581.6678},{"x":100,"y":528.1679}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of α₁(NA) in Area 4p","filename":"α₁(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha1 receptor in area 4p.** This profile plot shows examplary the course of the alpha1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₁(NA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₁(NA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":205.1842},{"x":1,"y":240.3517},{"x":2,"y":275.207},{"x":3,"y":299.4163},{"x":4,"y":314.1489},{"x":5,"y":321.4688},{"x":6,"y":323.7348},{"x":7,"y":322.5535},{"x":8,"y":319.1139},{"x":9,"y":313.5944},{"x":10,"y":307.5699},{"x":11,"y":300.6218},{"x":12,"y":293.9241},{"x":13,"y":287.1282},{"x":14,"y":279.3099},{"x":15,"y":271.8437},{"x":16,"y":265.1888},{"x":17,"y":259.4219},{"x":18,"y":254.1061},{"x":19,"y":247.1481},{"x":20,"y":239.451},{"x":21,"y":231.8765},{"x":22,"y":223.962},{"x":23,"y":217.4048},{"x":24,"y":211.3585},{"x":25,"y":204.6168},{"x":26,"y":199.1226},{"x":27,"y":192.9799},{"x":28,"y":187.1456},{"x":29,"y":183.5182},{"x":30,"y":180.0959},{"x":31,"y":176.4296},{"x":32,"y":173.5105},{"x":33,"y":171.3133},{"x":34,"y":168.9334},{"x":35,"y":167.0311},{"x":36,"y":165.0458},{"x":37,"y":163.317},{"x":38,"y":160.9514},{"x":39,"y":157.7277},{"x":40,"y":154.1254},{"x":41,"y":152.0029},{"x":42,"y":151.2182},{"x":43,"y":148.4541},{"x":44,"y":146.2252},{"x":45,"y":145.4551},{"x":46,"y":144.9319},{"x":47,"y":145.0735},{"x":48,"y":146.0921},{"x":49,"y":147.1874},{"x":50,"y":148.6085},{"x":51,"y":149.702},{"x":52,"y":151.0333},{"x":53,"y":153.2793},{"x":54,"y":155.3491},{"x":55,"y":157.6639},{"x":56,"y":158.7428},{"x":57,"y":160.2607},{"x":58,"y":160.9932},{"x":59,"y":160.3886},{"x":60,"y":159.3193},{"x":61,"y":158.2289},{"x":62,"y":157.1462},{"x":63,"y":157.2808},{"x":64,"y":158.3863},{"x":65,"y":158.7046},{"x":66,"y":158.4448},{"x":67,"y":157.8302},{"x":68,"y":156.3656},{"x":69,"y":154.7349},{"x":70,"y":154.0051},{"x":71,"y":153.2451},{"x":72,"y":152.9668},{"x":73,"y":153.9097},{"x":74,"y":154.6538},{"x":75,"y":155.4769},{"x":76,"y":157.1326},{"x":77,"y":157.4459},{"x":78,"y":157.7777},{"x":79,"y":159.3443},{"x":80,"y":161.0418},{"x":81,"y":162.1393},{"x":82,"y":161.385},{"x":83,"y":158.7497},{"x":84,"y":155.2385},{"x":85,"y":151.8252},{"x":86,"y":147.909},{"x":87,"y":144.1392},{"x":88,"y":140.7435},{"x":89,"y":138.6898},{"x":90,"y":135.0542},{"x":91,"y":130.393},{"x":92,"y":126.5798},{"x":93,"y":122.5006},{"x":94,"y":117.679},{"x":95,"y":113.1031},{"x":96,"y":109.215},{"x":97,"y":103.6431},{"x":98,"y":97.0317},{"x":99,"y":89.5429},{"x":100,"y":83.3149}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area 4p","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of NMDA receptor in area 4p.** This profile plot shows examplary the course of the NMDA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area 4p"],"datasets":[{"data":[{"x":0,"y":671.5327},{"x":1,"y":762.0834},{"x":2,"y":825.9149},{"x":3,"y":876.0997},{"x":4,"y":908.4196},{"x":5,"y":948.0117},{"x":6,"y":983.0097},{"x":7,"y":1006.7643},{"x":8,"y":1024.6274},{"x":9,"y":1040.8895},{"x":10,"y":1055.4347},{"x":11,"y":1065.6967},{"x":12,"y":1073.718},{"x":13,"y":1076.7193},{"x":14,"y":1076.3371},{"x":15,"y":1076.2685},{"x":16,"y":1072.7573},{"x":17,"y":1065.5468},{"x":18,"y":1060.4237},{"x":19,"y":1054.4459},{"x":20,"y":1043.0831},{"x":21,"y":1031.6371},{"x":22,"y":1019.9855},{"x":23,"y":1011.1376},{"x":24,"y":1001.1152},{"x":25,"y":990.5897},{"x":26,"y":983.1137},{"x":27,"y":973.6314},{"x":28,"y":962.1853},{"x":29,"y":949.9465},{"x":30,"y":940.0855},{"x":31,"y":927.9226},{"x":32,"y":912.8959},{"x":33,"y":895.8703},{"x":34,"y":876.6853},{"x":35,"y":860.5046},{"x":36,"y":847.7047},{"x":37,"y":833.4613},{"x":38,"y":817.7553},{"x":39,"y":805.428},{"x":40,"y":793.0707},{"x":41,"y":784.4402},{"x":42,"y":780.7564},{"x":43,"y":777.5456},{"x":44,"y":778.4201},{"x":45,"y":777.6818},{"x":46,"y":769.9891},{"x":47,"y":759.2726},{"x":48,"y":748.9673},{"x":49,"y":738.2948},{"x":50,"y":727.8748},{"x":51,"y":714.372},{"x":52,"y":702.6996},{"x":53,"y":694.3483},{"x":54,"y":691.909},{"x":55,"y":692.0614},{"x":56,"y":688.4385},{"x":57,"y":685.6036},{"x":58,"y":683.1186},{"x":59,"y":676.6456},{"x":60,"y":669.4609},{"x":61,"y":669.0202},{"x":62,"y":669.4426},{"x":63,"y":669.2955},{"x":64,"y":671.8318},{"x":65,"y":671.8088},{"x":66,"y":666.7441},{"x":67,"y":659.3642},{"x":68,"y":653.5222},{"x":69,"y":648.1735},{"x":70,"y":641.1897},{"x":71,"y":633.3543},{"x":72,"y":624.8101},{"x":73,"y":617.3287},{"x":74,"y":607.1936},{"x":75,"y":596.4136},{"x":76,"y":588.6646},{"x":77,"y":584.88},{"x":78,"y":583.2397},{"x":79,"y":578.3057},{"x":80,"y":569.7393},{"x":81,"y":565.8268},{"x":82,"y":567.3331},{"x":83,"y":561.5273},{"x":84,"y":556.82},{"x":85,"y":558.0755},{"x":86,"y":557.7605},{"x":87,"y":556.2149},{"x":88,"y":551.3922},{"x":89,"y":549.3613},{"x":90,"y":548.2166},{"x":91,"y":542.1893},{"x":92,"y":532.1291},{"x":93,"y":520.8956},{"x":94,"y":510.1724},{"x":95,"y":496.3677},{"x":96,"y":480.5641},{"x":97,"y":468.4919},{"x":98,"y":455.219},{"x":99,"y":441.33},{"x":100,"y":422.7714}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴀ(GABA) in Area 4p","filename":"GABAᴀ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAA receptor in area 4p.** This profile plot shows examplary the course of the GABAA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(GABA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(GABA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":965.5393},{"x":1,"y":1151.589},{"x":2,"y":1269.8641},{"x":3,"y":1430.0462},{"x":4,"y":1647.1004},{"x":5,"y":1845.1383},{"x":6,"y":1973.9805},{"x":7,"y":2039.1232},{"x":8,"y":2121.6727},{"x":9,"y":2198.0932},{"x":10,"y":2271.2382},{"x":11,"y":2330.7525},{"x":12,"y":2381.1104},{"x":13,"y":2422.7618},{"x":14,"y":2472.3095},{"x":15,"y":2517.238},{"x":16,"y":2551.9437},{"x":17,"y":2565.2157},{"x":18,"y":2569.4004},{"x":19,"y":2563.6702},{"x":20,"y":2552.1965},{"x":21,"y":2533.0733},{"x":22,"y":2507.8129},{"x":23,"y":2490.4359},{"x":24,"y":2466.1782},{"x":25,"y":2432.777},{"x":26,"y":2381.5361},{"x":27,"y":2312.2432},{"x":28,"y":2236.4699},{"x":29,"y":2162.9645},{"x":30,"y":2086.5463},{"x":31,"y":2014.0596},{"x":32,"y":1943.6458},{"x":33,"y":1871.2318},{"x":34,"y":1812.889},{"x":35,"y":1747.1772},{"x":36,"y":1687.3703},{"x":37,"y":1631.6518},{"x":38,"y":1572.9243},{"x":39,"y":1525.8313},{"x":40,"y":1491.4072},{"x":41,"y":1452.491},{"x":42,"y":1407.0283},{"x":43,"y":1364.8219},{"x":44,"y":1324.3999},{"x":45,"y":1285.3707},{"x":46,"y":1245.3963},{"x":47,"y":1205.4298},{"x":48,"y":1172.975},{"x":49,"y":1151.8664},{"x":50,"y":1135.9644},{"x":51,"y":1112.919},{"x":52,"y":1089.5399},{"x":53,"y":1070.048},{"x":54,"y":1051.2739},{"x":55,"y":1032.4496},{"x":56,"y":1013.6026},{"x":57,"y":993.1959},{"x":58,"y":972.977},{"x":59,"y":953.3375},{"x":60,"y":936.7445},{"x":61,"y":924.2896},{"x":62,"y":909.1979},{"x":63,"y":898.075},{"x":64,"y":888.4155},{"x":65,"y":866.639},{"x":66,"y":849.7873},{"x":67,"y":843.6005},{"x":68,"y":830.8216},{"x":69,"y":813.7414},{"x":70,"y":796.1059},{"x":71,"y":787.1312},{"x":72,"y":781.821},{"x":73,"y":776.9668},{"x":74,"y":773.711},{"x":75,"y":771.0308},{"x":76,"y":769.5572},{"x":77,"y":762.1573},{"x":78,"y":755.5919},{"x":79,"y":748.7084},{"x":80,"y":744.6876},{"x":81,"y":742.9751},{"x":82,"y":745.0323},{"x":83,"y":746.6802},{"x":84,"y":739.1477},{"x":85,"y":714.0092},{"x":86,"y":684.6236},{"x":87,"y":657.7985},{"x":88,"y":639.7674},{"x":89,"y":616.9143},{"x":90,"y":594.2077},{"x":91,"y":576.7812},{"x":92,"y":557.1305},{"x":93,"y":535.8097},{"x":94,"y":521.4719},{"x":95,"y":491.7572},{"x":96,"y":446.4722},{"x":97,"y":400.0985},{"x":98,"y":369.1684},{"x":99,"y":351.5054},{"x":100,"y":326.5083}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area 4p","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha2 receptor in area 4p.** This profile plot shows examplary the course of the alpha2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":246.2534},{"x":1,"y":259.4862},{"x":2,"y":277.4986},{"x":3,"y":285.2216},{"x":4,"y":294.0173},{"x":5,"y":300.7106},{"x":6,"y":306.3066},{"x":7,"y":312.9451},{"x":8,"y":314.0576},{"x":9,"y":314.2408},{"x":10,"y":314.8368},{"x":11,"y":317.026},{"x":12,"y":320.4883},{"x":13,"y":321.852},{"x":14,"y":326.9512},{"x":15,"y":328.7829},{"x":16,"y":328.8389},{"x":17,"y":328.4249},{"x":18,"y":328.2449},{"x":19,"y":327.5129},{"x":20,"y":325.5236},{"x":21,"y":324.4907},{"x":22,"y":322.0809},{"x":23,"y":320.5948},{"x":24,"y":318.2293},{"x":25,"y":312.8317},{"x":26,"y":307.4058},{"x":27,"y":303.2551},{"x":28,"y":297.6031},{"x":29,"y":291.8421},{"x":30,"y":287.2327},{"x":31,"y":280.3822},{"x":32,"y":272.6439},{"x":33,"y":266.0348},{"x":34,"y":260.7282},{"x":35,"y":255.295},{"x":36,"y":251.4279},{"x":37,"y":246.2224},{"x":38,"y":240.9865},{"x":39,"y":232.7538},{"x":40,"y":225.5775},{"x":41,"y":219.1856},{"x":42,"y":212.542},{"x":43,"y":206.4109},{"x":44,"y":198.4776},{"x":45,"y":191.7136},{"x":46,"y":184.8949},{"x":47,"y":177.3725},{"x":48,"y":170.9253},{"x":49,"y":163.2244},{"x":50,"y":158.5991},{"x":51,"y":155.6667},{"x":52,"y":151.1555},{"x":53,"y":149.0065},{"x":54,"y":146.8623},{"x":55,"y":143.5166},{"x":56,"y":142.1431},{"x":57,"y":139.5216},{"x":58,"y":137.763},{"x":59,"y":135.723},{"x":60,"y":134.9706},{"x":61,"y":134.3301},{"x":62,"y":132.7478},{"x":63,"y":128.6403},{"x":64,"y":128.8844},{"x":65,"y":127.1248},{"x":66,"y":124.9873},{"x":67,"y":122.3877},{"x":68,"y":120.8569},{"x":69,"y":119.7062},{"x":70,"y":117.9047},{"x":71,"y":118.1982},{"x":72,"y":117.7951},{"x":73,"y":117.6583},{"x":74,"y":118.3453},{"x":75,"y":121.5278},{"x":76,"y":122.7096},{"x":77,"y":121.637},{"x":78,"y":120.9788},{"x":79,"y":121.9424},{"x":80,"y":124.0766},{"x":81,"y":127.485},{"x":82,"y":128.8032},{"x":83,"y":131.1107},{"x":84,"y":131.5831},{"x":85,"y":131.9437},{"x":86,"y":132.7724},{"x":87,"y":131.3279},{"x":88,"y":130.4136},{"x":89,"y":129.4572},{"x":90,"y":128.3176},{"x":91,"y":127.5929},{"x":92,"y":125.9543},{"x":93,"y":121.9733},{"x":94,"y":114.7188},{"x":95,"y":110.2009},{"x":96,"y":103.4671},{"x":97,"y":97.5537},{"x":98,"y":93.8018},{"x":99,"y":85.5132},{"x":100,"y":78.944}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area 4p","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha4-beta2 receptor in area 4p.** This profile plot shows examplary the course of the alpha4-beta2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the right hemisphere of one male subject (brain id: MR1, sample id: ID02, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area 4p"],"datasets":[{"data":[{"x":0,"y":23.3964},{"x":1,"y":27.5677},{"x":2,"y":33.1487},{"x":3,"y":38.0441},{"x":4,"y":39.9948},{"x":5,"y":41.6577},{"x":6,"y":41.4725},{"x":7,"y":42.5339},{"x":8,"y":41.9263},{"x":9,"y":42.1979},{"x":10,"y":42.9298},{"x":11,"y":43.7589},{"x":12,"y":47.5871},{"x":13,"y":52.4842},{"x":14,"y":56.0057},{"x":15,"y":59.4803},{"x":16,"y":63.3273},{"x":17,"y":64.846},{"x":18,"y":65.7842},{"x":19,"y":67.2184},{"x":20,"y":65.0516},{"x":21,"y":63.3048},{"x":22,"y":63.2549},{"x":23,"y":63.0501},{"x":24,"y":61.1246},{"x":25,"y":58.7209},{"x":26,"y":58.6303},{"x":27,"y":57.2076},{"x":28,"y":56.8928},{"x":29,"y":58.8376},{"x":30,"y":60.7044},{"x":31,"y":60.8714},{"x":32,"y":60.1396},{"x":33,"y":57.9379},{"x":34,"y":54.8886},{"x":35,"y":53.3826},{"x":36,"y":54.1466},{"x":37,"y":52.2331},{"x":38,"y":50.1424},{"x":39,"y":47.0771},{"x":40,"y":44.8462},{"x":41,"y":43.2539},{"x":42,"y":41.6472},{"x":43,"y":40.3653},{"x":44,"y":38.8388},{"x":45,"y":36.4354},{"x":46,"y":34.9368},{"x":47,"y":32.7955},{"x":48,"y":30.5269},{"x":49,"y":29.4819},{"x":50,"y":28.6333},{"x":51,"y":27.4856},{"x":52,"y":30.0795},{"x":53,"y":29.6557},{"x":54,"y":27.9403},{"x":55,"y":27.1986},{"x":56,"y":27.3866},{"x":57,"y":28.5206},{"x":58,"y":29.9391},{"x":59,"y":28.32},{"x":60,"y":26.3162},{"x":61,"y":25.2729},{"x":62,"y":23.8304},{"x":63,"y":23.2192},{"x":64,"y":22.7362},{"x":65,"y":23.9736},{"x":66,"y":26.6035},{"x":67,"y":28.2756},{"x":68,"y":29.7539},{"x":69,"y":29.3688},{"x":70,"y":28.7515},{"x":71,"y":27.8298},{"x":72,"y":26.2974},{"x":73,"y":26.1557},{"x":74,"y":25.338},{"x":75,"y":26.0453},{"x":76,"y":27.9933},{"x":77,"y":26.4202},{"x":78,"y":24.6767},{"x":79,"y":27.4102},{"x":80,"y":27.7946},{"x":81,"y":29.4776},{"x":82,"y":30.8489},{"x":83,"y":30.712},{"x":84,"y":30.2648},{"x":85,"y":27.2451},{"x":86,"y":26.7469},{"x":87,"y":24.9955},{"x":88,"y":22.4077},{"x":89,"y":19.4475},{"x":90,"y":17.9922},{"x":91,"y":17.8824},{"x":92,"y":17.8844},{"x":93,"y":17.4764},{"x":94,"y":19.2903},{"x":95,"y":23.8196},{"x":96,"y":27.6593},{"x":97,"y":29.3031},{"x":98,"y":29.8073},{"x":99,"y":28.1852},{"x":100,"y":24.9341}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of M₁(ACh) in Area 4p","filename":"M₁(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M1 receptor in area 4p.** This profile plot shows examplary the course of the M1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₁(ACh) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₁(ACh) in Area 4p"],"datasets":[{"data":[{"x":0,"y":177.5613},{"x":1,"y":212.9125},{"x":2,"y":237.2639},{"x":3,"y":246.8467},{"x":4,"y":251.8385},{"x":5,"y":261.0618},{"x":6,"y":273.723},{"x":7,"y":280.7772},{"x":8,"y":285.8265},{"x":9,"y":290.192},{"x":10,"y":297.355},{"x":11,"y":301.9992},{"x":12,"y":303.6063},{"x":13,"y":303.2138},{"x":14,"y":302.084},{"x":15,"y":300.7632},{"x":16,"y":297.0427},{"x":17,"y":296.8666},{"x":18,"y":298.0317},{"x":19,"y":301.7782},{"x":20,"y":301.3352},{"x":21,"y":297.8462},{"x":22,"y":288.1062},{"x":23,"y":280.651},{"x":24,"y":280.3739},{"x":25,"y":284.5969},{"x":26,"y":292.552},{"x":27,"y":297.0228},{"x":28,"y":295.1052},{"x":29,"y":290.6341},{"x":30,"y":282.2568},{"x":31,"y":276.5483},{"x":32,"y":273.3071},{"x":33,"y":272.3669},{"x":34,"y":268.6228},{"x":35,"y":264.066},{"x":36,"y":255.4622},{"x":37,"y":247.7011},{"x":38,"y":244.7823},{"x":39,"y":242.7695},{"x":40,"y":244.436},{"x":41,"y":239.7032},{"x":42,"y":240.084},{"x":43,"y":241.3789},{"x":44,"y":239.0415},{"x":45,"y":231.2252},{"x":46,"y":225.5254},{"x":47,"y":227.1775},{"x":48,"y":229.674},{"x":49,"y":231.0203},{"x":50,"y":226.7826},{"x":51,"y":223.0323},{"x":52,"y":223.463},{"x":53,"y":225.4177},{"x":54,"y":226.4601},{"x":55,"y":223.5417},{"x":56,"y":220.1629},{"x":57,"y":211.5754},{"x":58,"y":206.0136},{"x":59,"y":202.2226},{"x":60,"y":201.2661},{"x":61,"y":203.4258},{"x":62,"y":204.7404},{"x":63,"y":205.0382},{"x":64,"y":208.381},{"x":65,"y":212.1368},{"x":66,"y":214.4771},{"x":67,"y":212.6352},{"x":68,"y":204.4166},{"x":69,"y":196.9347},{"x":70,"y":191.4556},{"x":71,"y":189.1072},{"x":72,"y":190.59},{"x":73,"y":188.3134},{"x":74,"y":184.0019},{"x":75,"y":180.1806},{"x":76,"y":175.4552},{"x":77,"y":173.0925},{"x":78,"y":170.2103},{"x":79,"y":167.2494},{"x":80,"y":164.0523},{"x":81,"y":156.5838},{"x":82,"y":149.7573},{"x":83,"y":149.6057},{"x":84,"y":159.9707},{"x":85,"y":168.7063},{"x":86,"y":168.9057},{"x":87,"y":170.7221},{"x":88,"y":171.0815},{"x":89,"y":169.9085},{"x":90,"y":168.0826},{"x":91,"y":169.9774},{"x":92,"y":175.4958},{"x":93,"y":178.4184},{"x":94,"y":174.982},{"x":95,"y":177.1927},{"x":96,"y":178.7234},{"x":97,"y":176.297},{"x":98,"y":170.38},{"x":99,"y":158.8722},{"x":100,"y":147.2249}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₁ᴀ(5-HT) in Area 4p","filename":"5-HT₁ᴀ(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT1A receptor in area 4p.** This profile plot shows examplary the course of the 5-HT1A receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₁ᴀ(5-HT) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₁ᴀ(5-HT) in Area 4p"],"datasets":[{"data":[{"x":0,"y":428.9308},{"x":1,"y":495.1403},{"x":2,"y":541.9164},{"x":3,"y":588.555},{"x":4,"y":647.0351},{"x":5,"y":692.3516},{"x":6,"y":724.4157},{"x":7,"y":736.4219},{"x":8,"y":741.1353},{"x":9,"y":742.8676},{"x":10,"y":750.2411},{"x":11,"y":748.3506},{"x":12,"y":734.6194},{"x":13,"y":714.5461},{"x":14,"y":693.3643},{"x":15,"y":676.2287},{"x":16,"y":645.0704},{"x":17,"y":602.1474},{"x":18,"y":552.7692},{"x":19,"y":514.9649},{"x":20,"y":490.3583},{"x":21,"y":439.6608},{"x":22,"y":388.6937},{"x":23,"y":345.0375},{"x":24,"y":300.4365},{"x":25,"y":263.1994},{"x":26,"y":244.5633},{"x":27,"y":225.1518},{"x":28,"y":197.3158},{"x":29,"y":173.332},{"x":30,"y":153.4922},{"x":31,"y":137.1926},{"x":32,"y":129.6507},{"x":33,"y":125.2547},{"x":34,"y":115.9493},{"x":35,"y":106.9346},{"x":36,"y":99.137},{"x":37,"y":93.7743},{"x":38,"y":91.4765},{"x":39,"y":88.9536},{"x":40,"y":85.2524},{"x":41,"y":82.2302},{"x":42,"y":80.2956},{"x":43,"y":79.4478},{"x":44,"y":80.01},{"x":45,"y":81.0778},{"x":46,"y":81.496},{"x":47,"y":82.1455},{"x":48,"y":82.2895},{"x":49,"y":82.5744},{"x":50,"y":83.0285},{"x":51,"y":83.3794},{"x":52,"y":83.746},{"x":53,"y":84.2743},{"x":54,"y":84.9396},{"x":55,"y":84.8718},{"x":56,"y":85.0799},{"x":57,"y":85.1204},{"x":58,"y":83.9936},{"x":59,"y":82.4071},{"x":60,"y":82.0888},{"x":61,"y":83.2833},{"x":62,"y":82.994},{"x":63,"y":82.5629},{"x":64,"y":82.4524},{"x":65,"y":82.6655},{"x":66,"y":83.2486},{"x":67,"y":84.6959},{"x":68,"y":85.0116},{"x":69,"y":85.4611},{"x":70,"y":87.0886},{"x":71,"y":87.4156},{"x":72,"y":86.4148},{"x":73,"y":85.9081},{"x":74,"y":86.8308},{"x":75,"y":88.2356},{"x":76,"y":88.6416},{"x":77,"y":89.0933},{"x":78,"y":90.7302},{"x":79,"y":92.9634},{"x":80,"y":95.5819},{"x":81,"y":96.8833},{"x":82,"y":100.074},{"x":83,"y":103.905},{"x":84,"y":108.4788},{"x":85,"y":111.3809},{"x":86,"y":111.5588},{"x":87,"y":112.7189},{"x":88,"y":113.3942},{"x":89,"y":113.6225},{"x":90,"y":112.8714},{"x":91,"y":111.7206},{"x":92,"y":111.6132},{"x":93,"y":110.3027},{"x":94,"y":107.5104},{"x":95,"y":103.692},{"x":96,"y":99.1192},{"x":97,"y":94.175},{"x":98,"y":90.759},{"x":99,"y":88.0743},{"x":100,"y":86.1116}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of kainate (Glu) in Area 4p","filename":"kainate (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of kainate receptor in area 4p.** This profile plot shows examplary the course of the kainate receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of kainate (Glu) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of kainate (Glu) in Area 4p"],"datasets":[{"data":[{"x":0,"y":444.9013},{"x":1,"y":478.853},{"x":2,"y":522.3044},{"x":3,"y":566.3769},{"x":4,"y":611.4381},{"x":5,"y":639.1643},{"x":6,"y":670.3777},{"x":7,"y":709.8891},{"x":8,"y":736.845},{"x":9,"y":751.4612},{"x":10,"y":759.8265},{"x":11,"y":760.0773},{"x":12,"y":755.6988},{"x":13,"y":748.2128},{"x":14,"y":737.3758},{"x":15,"y":714.9009},{"x":16,"y":698.4431},{"x":17,"y":692.0432},{"x":18,"y":693.9772},{"x":19,"y":694.4279},{"x":20,"y":689.9882},{"x":21,"y":673.9338},{"x":22,"y":662.2802},{"x":23,"y":659.3315},{"x":24,"y":647.7461},{"x":25,"y":635.2646},{"x":26,"y":624.9549},{"x":27,"y":613.6821},{"x":28,"y":601.6596},{"x":29,"y":595.9311},{"x":30,"y":585.5849},{"x":31,"y":572.7356},{"x":32,"y":564.8913},{"x":33,"y":552.4053},{"x":34,"y":546.3442},{"x":35,"y":543.6978},{"x":36,"y":537.0066},{"x":37,"y":539.8829},{"x":38,"y":543.2446},{"x":39,"y":539.9692},{"x":40,"y":538.3033},{"x":41,"y":537.9807},{"x":42,"y":535.1719},{"x":43,"y":526.5822},{"x":44,"y":513.5545},{"x":45,"y":514.0201},{"x":46,"y":509.4211},{"x":47,"y":517.0931},{"x":48,"y":529.9028},{"x":49,"y":541.1426},{"x":50,"y":548.2803},{"x":51,"y":550.3827},{"x":52,"y":558.8487},{"x":53,"y":559.927},{"x":54,"y":560.2662},{"x":55,"y":557.1831},{"x":56,"y":548.6018},{"x":57,"y":555.1562},{"x":58,"y":555.5079},{"x":59,"y":557.5307},{"x":60,"y":553.8345},{"x":61,"y":549.0618},{"x":62,"y":537.1122},{"x":63,"y":531.8627},{"x":64,"y":512.7822},{"x":65,"y":500.884},{"x":66,"y":494.9313},{"x":67,"y":503.8626},{"x":68,"y":509.7465},{"x":69,"y":507.8355},{"x":70,"y":516.0139},{"x":71,"y":515.2897},{"x":72,"y":505.1189},{"x":73,"y":499.4815},{"x":74,"y":500.4826},{"x":75,"y":509.1224},{"x":76,"y":520.0008},{"x":77,"y":537.0228},{"x":78,"y":541.7035},{"x":79,"y":540.2282},{"x":80,"y":550.8264},{"x":81,"y":558.0364},{"x":82,"y":554.3041},{"x":83,"y":557.8952},{"x":84,"y":561.7992},{"x":85,"y":560.6808},{"x":86,"y":560.0122},{"x":87,"y":549.6383},{"x":88,"y":544.6991},{"x":89,"y":530.6341},{"x":90,"y":519.7908},{"x":91,"y":503.1348},{"x":92,"y":488.2597},{"x":93,"y":472.8749},{"x":94,"y":453.6037},{"x":95,"y":443.4381},{"x":96,"y":425.9718},{"x":97,"y":392.7833},{"x":98,"y":359.1279},{"x":99,"y":327.3993},{"x":100,"y":302.0907}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of M₂(ACh) in Area 4p","filename":"M₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M2 receptor in area 4p.** This profile plot shows examplary the course of the M2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₂(ACh) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₂(ACh) in Area 4p"],"datasets":[{"data":[{"x":0,"y":108.2147},{"x":1,"y":114.7941},{"x":2,"y":120.2603},{"x":3,"y":125.0035},{"x":4,"y":128.6499},{"x":5,"y":132.0851},{"x":6,"y":134.0588},{"x":7,"y":134.9646},{"x":8,"y":135.1502},{"x":9,"y":136.6637},{"x":10,"y":139.1111},{"x":11,"y":141.3666},{"x":12,"y":143.7458},{"x":13,"y":146.0771},{"x":14,"y":148.2536},{"x":15,"y":149.713},{"x":16,"y":150.2325},{"x":17,"y":149.7311},{"x":18,"y":149.3945},{"x":19,"y":149.9737},{"x":20,"y":150.5448},{"x":21,"y":150.9979},{"x":22,"y":151.4884},{"x":23,"y":152.231},{"x":24,"y":153.3646},{"x":25,"y":153.7209},{"x":26,"y":152.6501},{"x":27,"y":150.9449},{"x":28,"y":150.306},{"x":29,"y":149.1485},{"x":30,"y":145.8366},{"x":31,"y":142.4922},{"x":32,"y":140.3508},{"x":33,"y":137.7917},{"x":34,"y":134.5651},{"x":35,"y":131.6808},{"x":36,"y":128.9564},{"x":37,"y":125.9953},{"x":38,"y":123.1399},{"x":39,"y":120.5989},{"x":40,"y":118.195},{"x":41,"y":115.7174},{"x":42,"y":113.2899},{"x":43,"y":111.0312},{"x":44,"y":109.5123},{"x":45,"y":108.6353},{"x":46,"y":107.6214},{"x":47,"y":106.4588},{"x":48,"y":106.1123},{"x":49,"y":106.3376},{"x":50,"y":106.3804},{"x":51,"y":106.4234},{"x":52,"y":107.1362},{"x":53,"y":108.5413},{"x":54,"y":110.5437},{"x":55,"y":112.1884},{"x":56,"y":112.5979},{"x":57,"y":111.7477},{"x":58,"y":110.9647},{"x":59,"y":110.829},{"x":60,"y":110.451},{"x":61,"y":110.8103},{"x":62,"y":111.6594},{"x":63,"y":111.6352},{"x":64,"y":111.4361},{"x":65,"y":111.1668},{"x":66,"y":111.0769},{"x":67,"y":111.3845},{"x":68,"y":111.3357},{"x":69,"y":110.8876},{"x":70,"y":110.7298},{"x":71,"y":110.6314},{"x":72,"y":110.1852},{"x":73,"y":110.0184},{"x":74,"y":110.7682},{"x":75,"y":111.9656},{"x":76,"y":113.3596},{"x":77,"y":114.1831},{"x":78,"y":113.6895},{"x":79,"y":112.8259},{"x":80,"y":111.3391},{"x":81,"y":108.0408},{"x":82,"y":104.7079},{"x":83,"y":102.3317},{"x":84,"y":100.0946},{"x":85,"y":97.6344},{"x":86,"y":95.0103},{"x":87,"y":92.2051},{"x":88,"y":90.4907},{"x":89,"y":90.0506},{"x":90,"y":89.2417},{"x":91,"y":87.593},{"x":92,"y":85.9571},{"x":93,"y":84.4195},{"x":94,"y":82.4064},{"x":95,"y":79.9042},{"x":96,"y":77.0442},{"x":97,"y":74.3645},{"x":98,"y":71.9937},{"x":99,"y":69.748},{"x":100,"y":67.4857}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area 4p","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of AMPA receptor in area 4p.** This profile plot shows examplary the course of the AMPA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area 4p"],"datasets":[{"data":[{"x":0,"y":405.7916},{"x":1,"y":451.3663},{"x":2,"y":486.7215},{"x":3,"y":556.2107},{"x":4,"y":609.283},{"x":5,"y":645.7985},{"x":6,"y":667.0372},{"x":7,"y":716.559},{"x":8,"y":766.1185},{"x":9,"y":798.6767},{"x":10,"y":810.0016},{"x":11,"y":817.6583},{"x":12,"y":820.0057},{"x":13,"y":809.1266},{"x":14,"y":808.9703},{"x":15,"y":794.2326},{"x":16,"y":772.7793},{"x":17,"y":748.0217},{"x":18,"y":735.2597},{"x":19,"y":723.7105},{"x":20,"y":708.2348},{"x":21,"y":692.1717},{"x":22,"y":683.6878},{"x":23,"y":672.5242},{"x":24,"y":650.3613},{"x":25,"y":634.4599},{"x":26,"y":618.5452},{"x":27,"y":606.5234},{"x":28,"y":592.2186},{"x":29,"y":574.8941},{"x":30,"y":555.0607},{"x":31,"y":540.9853},{"x":32,"y":529.1812},{"x":33,"y":518.2187},{"x":34,"y":501.6061},{"x":35,"y":485.3405},{"x":36,"y":479.7732},{"x":37,"y":468.6642},{"x":38,"y":456.7342},{"x":39,"y":440.1297},{"x":40,"y":435.0405},{"x":41,"y":431.0196},{"x":42,"y":431.2259},{"x":43,"y":433.7448},{"x":44,"y":437.309},{"x":45,"y":436.3714},{"x":46,"y":430.2076},{"x":47,"y":423.0664},{"x":48,"y":423.831},{"x":49,"y":418.9397},{"x":50,"y":409.6095},{"x":51,"y":407.9441},{"x":52,"y":410.3914},{"x":53,"y":406.0006},{"x":54,"y":410.7625},{"x":55,"y":418.8226},{"x":56,"y":424.2864},{"x":57,"y":424.1622},{"x":58,"y":421.3889},{"x":59,"y":415.1754},{"x":60,"y":415.0224},{"x":61,"y":419.8106},{"x":62,"y":421.9317},{"x":63,"y":423.2834},{"x":64,"y":416.2717},{"x":65,"y":418.4447},{"x":66,"y":413.9094},{"x":67,"y":405.157},{"x":68,"y":391.95},{"x":69,"y":386.3918},{"x":70,"y":384.7671},{"x":71,"y":386.3889},{"x":72,"y":375.4532},{"x":73,"y":371.8443},{"x":74,"y":366.1416},{"x":75,"y":357.2842},{"x":76,"y":355.9336},{"x":77,"y":355.7511},{"x":78,"y":353.0054},{"x":79,"y":355.1551},{"x":80,"y":355.1524},{"x":81,"y":355.9313},{"x":82,"y":362.7427},{"x":83,"y":367.925},{"x":84,"y":379.8562},{"x":85,"y":391.2873},{"x":86,"y":400.3471},{"x":87,"y":406.154},{"x":88,"y":414.1834},{"x":89,"y":416.4235},{"x":90,"y":408.1863},{"x":91,"y":404.4585},{"x":92,"y":403.4157},{"x":93,"y":408.1966},{"x":94,"y":418.5663},{"x":95,"y":419.7757},{"x":96,"y":418.716},{"x":97,"y":410.7785},{"x":98,"y":388.4193},{"x":99,"y":373.8454},{"x":100,"y":356.4581}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of D₁(DA) in Area 4p","filename":"D₁(DA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of D1 receptor in area 4p.** This profile plot shows examplary the course of the D1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of D₁(DA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of D₁(DA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":81.0356},{"x":1,"y":85.4032},{"x":2,"y":91.5277},{"x":3,"y":95.2649},{"x":4,"y":98.9659},{"x":5,"y":101.4835},{"x":6,"y":102.5073},{"x":7,"y":103.2116},{"x":8,"y":103.5853},{"x":9,"y":102.1317},{"x":10,"y":100.4424},{"x":11,"y":98.5238},{"x":12,"y":97.7946},{"x":13,"y":97.9194},{"x":14,"y":98.453},{"x":15,"y":98.4084},{"x":16,"y":98.6345},{"x":17,"y":98.3342},{"x":18,"y":98.0803},{"x":19,"y":98.4198},{"x":20,"y":99.6212},{"x":21,"y":100.3751},{"x":22,"y":100.9769},{"x":23,"y":102.7118},{"x":24,"y":102.9193},{"x":25,"y":103.5926},{"x":26,"y":103.0699},{"x":27,"y":103.2264},{"x":28,"y":102.756},{"x":29,"y":102.0663},{"x":30,"y":102.022},{"x":31,"y":101.9923},{"x":32,"y":102.0377},{"x":33,"y":102.5273},{"x":34,"y":102.7723},{"x":35,"y":102.642},{"x":36,"y":102.2675},{"x":37,"y":101.5016},{"x":38,"y":100.3767},{"x":39,"y":99.8386},{"x":40,"y":99.8115},{"x":41,"y":99.7355},{"x":42,"y":99.8677},{"x":43,"y":100.6552},{"x":44,"y":101.0978},{"x":45,"y":101.2235},{"x":46,"y":101.0145},{"x":47,"y":100.1424},{"x":48,"y":99.1919},{"x":49,"y":98.7438},{"x":50,"y":97.2201},{"x":51,"y":96.1272},{"x":52,"y":94.8739},{"x":53,"y":93.9007},{"x":54,"y":94.0279},{"x":55,"y":94.9375},{"x":56,"y":96.2987},{"x":57,"y":96.7444},{"x":58,"y":96.2991},{"x":59,"y":95.6324},{"x":60,"y":94.5576},{"x":61,"y":92.8479},{"x":62,"y":91.5215},{"x":63,"y":89.8499},{"x":64,"y":88.5296},{"x":65,"y":87.9721},{"x":66,"y":87.3046},{"x":67,"y":86.311},{"x":68,"y":85.6674},{"x":69,"y":85.8799},{"x":70,"y":86.2137},{"x":71,"y":86.1636},{"x":72,"y":85.6039},{"x":73,"y":84.7779},{"x":74,"y":84.3983},{"x":75,"y":85.2993},{"x":76,"y":85.1569},{"x":77,"y":84.6755},{"x":78,"y":83.4431},{"x":79,"y":81.6805},{"x":80,"y":79.8961},{"x":81,"y":79.2903},{"x":82,"y":80.3898},{"x":83,"y":80.8137},{"x":84,"y":80.7606},{"x":85,"y":80.3767},{"x":86,"y":80.0834},{"x":87,"y":79.1542},{"x":88,"y":77.6828},{"x":89,"y":76.7582},{"x":90,"y":75.375},{"x":91,"y":73.7344},{"x":92,"y":72.0057},{"x":93,"y":70.4787},{"x":94,"y":69.9832},{"x":95,"y":69.777},{"x":96,"y":69.4156},{"x":97,"y":68.9271},{"x":98,"y":68.4438},{"x":99,"y":65.4653},{"x":100,"y":62.7346}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area 4p","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M3 receptor in area 4p.** This profile plot shows examplary the course of the M3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area 4p"],"datasets":[{"data":[{"x":0,"y":238.8069},{"x":1,"y":280.2313},{"x":2,"y":325.6811},{"x":3,"y":349.2281},{"x":4,"y":374.0297},{"x":5,"y":393.2599},{"x":6,"y":405.054},{"x":7,"y":417.0671},{"x":8,"y":424.9056},{"x":9,"y":432.4293},{"x":10,"y":435.5911},{"x":11,"y":435.02},{"x":12,"y":433.1668},{"x":13,"y":430.5725},{"x":14,"y":429.3597},{"x":15,"y":428.5402},{"x":16,"y":426.886},{"x":17,"y":421.9685},{"x":18,"y":417.0921},{"x":19,"y":410.6056},{"x":20,"y":403.318},{"x":21,"y":398.3886},{"x":22,"y":392.5697},{"x":23,"y":387.803},{"x":24,"y":382.9819},{"x":25,"y":379.3677},{"x":26,"y":375.6492},{"x":27,"y":370.0806},{"x":28,"y":365.9916},{"x":29,"y":360.2961},{"x":30,"y":356.1784},{"x":31,"y":351.7452},{"x":32,"y":345.845},{"x":33,"y":340.7166},{"x":34,"y":335.1268},{"x":35,"y":330.1108},{"x":36,"y":325.7945},{"x":37,"y":321.3716},{"x":38,"y":317.7494},{"x":39,"y":314.3934},{"x":40,"y":311.6953},{"x":41,"y":309.8798},{"x":42,"y":307.991},{"x":43,"y":305.4804},{"x":44,"y":302.225},{"x":45,"y":299.7676},{"x":46,"y":298.6813},{"x":47,"y":297.5102},{"x":48,"y":297.8277},{"x":49,"y":298.792},{"x":50,"y":299.1612},{"x":51,"y":299.5356},{"x":52,"y":300.5433},{"x":53,"y":300.3015},{"x":54,"y":299.9078},{"x":55,"y":298.5431},{"x":56,"y":295.263},{"x":57,"y":293.6305},{"x":58,"y":291.2533},{"x":59,"y":289.213},{"x":60,"y":287.1969},{"x":61,"y":285.8204},{"x":62,"y":283.6904},{"x":63,"y":281.8311},{"x":64,"y":279.581},{"x":65,"y":277.4034},{"x":66,"y":273.7292},{"x":67,"y":271.641},{"x":68,"y":270.4709},{"x":69,"y":268.7126},{"x":70,"y":267.2965},{"x":71,"y":265.9582},{"x":72,"y":266.1968},{"x":73,"y":266.4517},{"x":74,"y":267.4044},{"x":75,"y":268.4662},{"x":76,"y":269.5347},{"x":77,"y":270.3887},{"x":78,"y":272.2776},{"x":79,"y":274.0281},{"x":80,"y":274.109},{"x":81,"y":274.518},{"x":82,"y":274.8256},{"x":83,"y":275.5447},{"x":84,"y":276.3067},{"x":85,"y":276.4332},{"x":86,"y":274.8957},{"x":87,"y":272.0392},{"x":88,"y":268.3825},{"x":89,"y":261.8862},{"x":90,"y":257.2851},{"x":91,"y":251.2371},{"x":92,"y":245.5257},{"x":93,"y":239.9286},{"x":94,"y":232.077},{"x":95,"y":225.0543},{"x":96,"y":215.0261},{"x":97,"y":203.8563},{"x":98,"y":194.9882},{"x":99,"y":179.5477},{"x":100,"y":168.421}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area 4p","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of mGluR2_3 receptor in area 4p.** This profile plot shows examplary the course of the mGluR2_3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area 4p"],"datasets":[{"data":[{"x":0,"y":1362.7526},{"x":1,"y":1623.7655},{"x":2,"y":1931.6576},{"x":3,"y":2072.2325},{"x":4,"y":2226.3597},{"x":5,"y":2293.6503},{"x":6,"y":2337.3374},{"x":7,"y":2353.4959},{"x":8,"y":2380.6},{"x":9,"y":2396.5804},{"x":10,"y":2421.1059},{"x":11,"y":2429.5757},{"x":12,"y":2445.7819},{"x":13,"y":2459.5389},{"x":14,"y":2462.9697},{"x":15,"y":2460.5987},{"x":16,"y":2447.8776},{"x":17,"y":2433.9832},{"x":18,"y":2407.3267},{"x":19,"y":2367.5993},{"x":20,"y":2332.5256},{"x":21,"y":2290.9801},{"x":22,"y":2250.6076},{"x":23,"y":2175.8714},{"x":24,"y":2108.8494},{"x":25,"y":1983.6804},{"x":26,"y":1905.2304},{"x":27,"y":1828.3765},{"x":28,"y":1769.5882},{"x":29,"y":1720.4662},{"x":30,"y":1674.4628},{"x":31,"y":1635.6467},{"x":32,"y":1594.0765},{"x":33,"y":1552.6051},{"x":34,"y":1516.6606},{"x":35,"y":1479.7696},{"x":36,"y":1430.2682},{"x":37,"y":1395.32},{"x":38,"y":1347.4058},{"x":39,"y":1318.4095},{"x":40,"y":1270.2151},{"x":41,"y":1241.4851},{"x":42,"y":1218.3314},{"x":43,"y":1211.3165},{"x":44,"y":1193.297},{"x":45,"y":1174.9505},{"x":46,"y":1140.7864},{"x":47,"y":1109.8595},{"x":48,"y":1080.7802},{"x":49,"y":1063.9305},{"x":50,"y":1042.3092},{"x":51,"y":1031.5677},{"x":52,"y":1024.8403},{"x":53,"y":1016.885},{"x":54,"y":1001.3821},{"x":55,"y":982.0933},{"x":56,"y":969.3594},{"x":57,"y":945.2689},{"x":58,"y":928.9326},{"x":59,"y":905.3721},{"x":60,"y":893.1365},{"x":61,"y":878.9716},{"x":62,"y":865.5179},{"x":63,"y":843.4146},{"x":64,"y":821.0866},{"x":65,"y":814.6251},{"x":66,"y":816.8045},{"x":67,"y":817.7019},{"x":68,"y":817.2266},{"x":69,"y":812.3679},{"x":70,"y":803.0254},{"x":71,"y":802.4512},{"x":72,"y":800.7972},{"x":73,"y":802.2448},{"x":74,"y":801.2546},{"x":75,"y":806.9519},{"x":76,"y":823.2623},{"x":77,"y":831.6546},{"x":78,"y":849.466},{"x":79,"y":857.9146},{"x":80,"y":891.4304},{"x":81,"y":906.4574},{"x":82,"y":915.4269},{"x":83,"y":921.8337},{"x":84,"y":924.4591},{"x":85,"y":928.9587},{"x":86,"y":928.5737},{"x":87,"y":913.8813},{"x":88,"y":909.1288},{"x":89,"y":910.6338},{"x":90,"y":909.2341},{"x":91,"y":893.5264},{"x":92,"y":871.2802},{"x":93,"y":841.0226},{"x":94,"y":803.2697},{"x":95,"y":745.0494},{"x":96,"y":703.5494},{"x":97,"y":636.1194},{"x":98,"y":589.1755},{"x":99,"y":521.9796},{"x":100,"y":472.3728}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₂(5-HT) in Area 4p","filename":"5-HT₂(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT2 receptor in area 4p.** This profile plot shows examplary the course of the 5-HT2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₂(5-HT) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₂(5-HT) in Area 4p"],"datasets":[{"data":[{"x":0,"y":179.9836},{"x":1,"y":200.3762},{"x":2,"y":211.451},{"x":3,"y":222.2991},{"x":4,"y":236.1383},{"x":5,"y":248.6507},{"x":6,"y":257.1125},{"x":7,"y":260.5257},{"x":8,"y":264.4934},{"x":9,"y":268.956},{"x":10,"y":273.6446},{"x":11,"y":278.7552},{"x":12,"y":283.4397},{"x":13,"y":287.3162},{"x":14,"y":290.5109},{"x":15,"y":293.9565},{"x":16,"y":297.6853},{"x":17,"y":302.0848},{"x":18,"y":305.7314},{"x":19,"y":309.3778},{"x":20,"y":311.836},{"x":21,"y":313.7182},{"x":22,"y":315.9635},{"x":23,"y":317.9053},{"x":24,"y":318.5886},{"x":25,"y":317.5704},{"x":26,"y":316.6828},{"x":27,"y":315.2617},{"x":28,"y":313.201},{"x":29,"y":309.9313},{"x":30,"y":305.9518},{"x":31,"y":301.3275},{"x":32,"y":297.3132},{"x":33,"y":294.1857},{"x":34,"y":291.9383},{"x":35,"y":291.1475},{"x":36,"y":290.8454},{"x":37,"y":289.9765},{"x":38,"y":287.7755},{"x":39,"y":283.566},{"x":40,"y":277.8046},{"x":41,"y":271.2469},{"x":42,"y":265.0297},{"x":43,"y":259.5282},{"x":44,"y":256.2872},{"x":45,"y":254.189},{"x":46,"y":252.385},{"x":47,"y":250.9218},{"x":48,"y":248.5836},{"x":49,"y":246.0226},{"x":50,"y":243.1453},{"x":51,"y":237.5159},{"x":52,"y":231.7849},{"x":53,"y":227.1036},{"x":54,"y":221.043},{"x":55,"y":216.2664},{"x":56,"y":213.7248},{"x":57,"y":211.1546},{"x":58,"y":207.5552},{"x":59,"y":205.0634},{"x":60,"y":202.3326},{"x":61,"y":199.7527},{"x":62,"y":198.0013},{"x":63,"y":195.9624},{"x":64,"y":193.3749},{"x":65,"y":191.5068},{"x":66,"y":190.5698},{"x":67,"y":188.8002},{"x":68,"y":184.6829},{"x":69,"y":180.51},{"x":70,"y":177.6765},{"x":71,"y":175.3894},{"x":72,"y":172.6601},{"x":73,"y":170.8123},{"x":74,"y":171.7776},{"x":75,"y":173.0175},{"x":76,"y":174.9289},{"x":77,"y":175.5956},{"x":78,"y":176.2603},{"x":79,"y":176.876},{"x":80,"y":176.2783},{"x":81,"y":174.1849},{"x":82,"y":171.6032},{"x":83,"y":169.6317},{"x":84,"y":166.8814},{"x":85,"y":164.6345},{"x":86,"y":162.8298},{"x":87,"y":162.009},{"x":88,"y":161.9841},{"x":89,"y":161.4138},{"x":90,"y":160.5861},{"x":91,"y":160.7514},{"x":92,"y":162.097},{"x":93,"y":163.2675},{"x":94,"y":163.5517},{"x":95,"y":163.2571},{"x":96,"y":162.1044},{"x":97,"y":158.4227},{"x":98,"y":154.081},{"x":99,"y":148.6046},{"x":100,"y":142.329}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴃ(GABA) in Area 4p","filename":"GABAᴃ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAB receptor in area 4p.** This profile plot shows examplary the course of the GABAB receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴃ(GABA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴃ(GABA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":647.8443},{"x":1,"y":764.921},{"x":2,"y":911.7294},{"x":3,"y":965.0076},{"x":4,"y":1030.6123},{"x":5,"y":1073.3067},{"x":6,"y":1101.0091},{"x":7,"y":1126.5066},{"x":8,"y":1136.7282},{"x":9,"y":1143.2325},{"x":10,"y":1143.1119},{"x":11,"y":1136.3096},{"x":12,"y":1127.7336},{"x":13,"y":1113.6974},{"x":14,"y":1103.9653},{"x":15,"y":1096.8742},{"x":16,"y":1089.088},{"x":17,"y":1078.5928},{"x":18,"y":1068.66},{"x":19,"y":1058.6944},{"x":20,"y":1043.0274},{"x":21,"y":1028.8727},{"x":22,"y":1013.0906},{"x":23,"y":997.4171},{"x":24,"y":979.6308},{"x":25,"y":968.4887},{"x":26,"y":956.8527},{"x":27,"y":943.2355},{"x":28,"y":929.8372},{"x":29,"y":913.0275},{"x":30,"y":900.7571},{"x":31,"y":885.3778},{"x":32,"y":868.7038},{"x":33,"y":853.8224},{"x":34,"y":840.2669},{"x":35,"y":831.2061},{"x":36,"y":824.5625},{"x":37,"y":817.738},{"x":38,"y":810.0107},{"x":39,"y":802.9903},{"x":40,"y":796.1557},{"x":41,"y":790.8052},{"x":42,"y":790.2412},{"x":43,"y":791.5338},{"x":44,"y":792.9265},{"x":45,"y":792.5888},{"x":46,"y":791.7291},{"x":47,"y":791.6414},{"x":48,"y":792.0469},{"x":49,"y":794.6018},{"x":50,"y":796.1359},{"x":51,"y":794.8847},{"x":52,"y":792.0887},{"x":53,"y":788.6834},{"x":54,"y":782.5741},{"x":55,"y":779.3821},{"x":56,"y":775.92},{"x":57,"y":774.225},{"x":58,"y":767.6827},{"x":59,"y":761.0554},{"x":60,"y":751.196},{"x":61,"y":737.5793},{"x":62,"y":725.6186},{"x":63,"y":720.3813},{"x":64,"y":719.8351},{"x":65,"y":720.8896},{"x":66,"y":717.9423},{"x":67,"y":712.9865},{"x":68,"y":708.1174},{"x":69,"y":706.658},{"x":70,"y":708.9637},{"x":71,"y":708.2627},{"x":72,"y":703.2908},{"x":73,"y":701.796},{"x":74,"y":703.9189},{"x":75,"y":708.9648},{"x":76,"y":716.4255},{"x":77,"y":724.1312},{"x":78,"y":732.6432},{"x":79,"y":739.5911},{"x":80,"y":744.9111},{"x":81,"y":750.717},{"x":82,"y":752.4934},{"x":83,"y":750.2768},{"x":84,"y":745.2086},{"x":85,"y":739.9001},{"x":86,"y":737.4896},{"x":87,"y":732.7},{"x":88,"y":726.2139},{"x":89,"y":720.4608},{"x":90,"y":716.4485},{"x":91,"y":714.3946},{"x":92,"y":711.1947},{"x":93,"y":706.17},{"x":94,"y":693.3673},{"x":95,"y":678.3776},{"x":96,"y":663.0551},{"x":97,"y":642.0024},{"x":98,"y":623.1513},{"x":99,"y":575.478},{"x":100,"y":543.276}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null}]],["Density measurements of different receptors for Area 3b",[{"name":"Receptor density fingerprint of Area 3b","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["327","387","933","2040","1490","1738","2493","471","253","739","55","255","730","217","394","88"]},{"label":"mean_sd","data":["162","180","147","541","352","623","601","121","63","283","20","91","291","90","97","31"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 3b (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(17,250,140,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area FG2",[{"name":"Receptor density fingerprint of Area FG2","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["427","490","1315","NA","1933","2329","2918","499","213","871","61","368","522","396","476","114"]},{"label":"mean_sd","data":["65","116","152","NA","292","237","422","72","35","172","12","57","118","74","97","20"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area FG2 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(0,209,56,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAᴀ(BZ) in Area FG2","filename":"GABAᴀ(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_BZ.jpg"},{"name":"Sample autoradiograph of α₁(NA) in Area FG2","filename":"α₁(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area FG2","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAᴀ(GABA) in Area FG2","filename":"GABAᴀ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area FG2","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area FG2","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of M₁(ACh) in Area FG2","filename":"M₁(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HT₁ᴀ(5-HT) in Area FG2","filename":"5-HT₁ᴀ(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area FG2","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_kainate.jpg"},{"name":"Sample autoradiograph of M₂(ACh) in Area FG2","filename":"M₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area FG2","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_AMPA.jpg"},{"name":"Sample autoradiograph of D₁(DA) in Area FG2","filename":"D₁(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area FG2","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_M3.jpg"},{"name":"Sample autoradiograph of 5-HT₂(5-HT) in Area FG2","filename":"5-HT₂(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAᴃ(GABA) in Area FG2","filename":"GABAᴃ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_GABAB.jpg"}]],["Density measurements of different receptors for Area hOc1",[{"name":"Receptor density fingerprint of Area hOc1","filename":"fingerprint","mimetype":"application/json","properties":{"description":"**Multireceptor fingerprint for area hOc1.** This polar plot shows the mean receptor densities in fmol/mg protein (solid shape) and standard deviation (dashed line) of 16 receptor binding sites in the area hOc1. The data is based on the left and right hemisphere of one female subject (brain id: hg0201, sample ids: ID07 and ID08, age: 77, cause of death: lung edema) and the right hemispheres of two male subjects (brain id: hg0500, sample ids: ID09, age: 72, cause of death: cardiac arrest | brain id: hg0100, sample ids: ID12, age: 77, cause of death: coronary heart disease).","publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["500","260","1348","NA ","2508","2187","3882","661","390","524","48","264","347","192","408","102"]},{"label":"mean_sd","data":["223","239","320","NA","828","274","1761","123","35","395","14","59","120","145","198","37"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area hOc1 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(250,30,250,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAᴀ(BZ) in Area hOc1","filename":"GABAᴀ(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_BZ.jpg"},{"name":"Sample autoradiograph of α₁(NA) in Area hOc1","filename":"α₁(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area hOc1","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAᴀ(GABA) in Area hOc1","filename":"GABAᴀ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area hOc1","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area hOc1","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of M₁(ACh) in Area hOc1","filename":"M₁(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HT₁ᴀ(5-HT) in Area hOc1","filename":"5-HT₁ᴀ(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area hOc1","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_kainate.jpg"},{"name":"Sample autoradiograph of M₂(ACh) in Area hOc1","filename":"M₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area hOc1","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_AMPA.jpg"},{"name":"Sample autoradiograph of D₁(DA) in Area hOc1","filename":"D₁(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area hOc1","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area hOc1","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HT₂(5-HT) in Area hOc1","filename":"5-HT₂(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAᴃ(GABA) in Area hOc1","filename":"GABAᴃ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_GABAB.jpg"},{"name":"Sample profile of GABAᴀ(BZ) in Area hOc1","filename":"GABAᴀ(BZ)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of BZ receptor in area hOc1.** This profile plot shows examplary the course of the BZ receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(BZ) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(BZ) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":2473.0437},{"x":1,"y":2709.9649},{"x":2,"y":2863.8033},{"x":3,"y":3020.3183},{"x":4,"y":3233.9841},{"x":5,"y":3468.3864},{"x":6,"y":3635.4238},{"x":7,"y":3809.6804},{"x":8,"y":3922.8191},{"x":9,"y":4019.787},{"x":10,"y":4145.7154},{"x":11,"y":4262.8654},{"x":12,"y":4359.3683},{"x":13,"y":4456.6648},{"x":14,"y":4547.5351},{"x":15,"y":4604.5476},{"x":16,"y":4656.1231},{"x":17,"y":4715.721},{"x":18,"y":4772.0907},{"x":19,"y":4824.9797},{"x":20,"y":4872.6302},{"x":21,"y":4899.9467},{"x":22,"y":4919.0758},{"x":23,"y":4943.3431},{"x":24,"y":4967.8908},{"x":25,"y":4992.6181},{"x":26,"y":5010.1393},{"x":27,"y":5022.2447},{"x":28,"y":5025.7343},{"x":29,"y":5018.2688},{"x":30,"y":4999.2744},{"x":31,"y":4980.2195},{"x":32,"y":4950.6731},{"x":33,"y":4911.5604},{"x":34,"y":4864.8777},{"x":35,"y":4814.1784},{"x":36,"y":4758.6408},{"x":37,"y":4700.4906},{"x":38,"y":4639.9174},{"x":39,"y":4574.9785},{"x":40,"y":4518.5558},{"x":41,"y":4445.2934},{"x":42,"y":4347.7528},{"x":43,"y":4266.0345},{"x":44,"y":4171.7632},{"x":45,"y":4066.8372},{"x":46,"y":3968.7016},{"x":47,"y":3893.0113},{"x":48,"y":3810.7725},{"x":49,"y":3722.9195},{"x":50,"y":3628.5303},{"x":51,"y":3522.0748},{"x":52,"y":3419.824},{"x":53,"y":3343.1842},{"x":54,"y":3284.7654},{"x":55,"y":3219.3612},{"x":56,"y":3160.9294},{"x":57,"y":3130.377},{"x":58,"y":3117.2719},{"x":59,"y":3124.664},{"x":60,"y":3149.251},{"x":61,"y":3181.78},{"x":62,"y":3245.5631},{"x":63,"y":3314.7894},{"x":64,"y":3404.5372},{"x":65,"y":3510.9699},{"x":66,"y":3600.425},{"x":67,"y":3682.2393},{"x":68,"y":3771.8579},{"x":69,"y":3851.3836},{"x":70,"y":3895.5587},{"x":71,"y":3909.6633},{"x":72,"y":3911.9156},{"x":73,"y":3885.9771},{"x":74,"y":3822.6901},{"x":75,"y":3726.9774},{"x":76,"y":3619.4826},{"x":77,"y":3509.3705},{"x":78,"y":3405.0033},{"x":79,"y":3311.1286},{"x":80,"y":3188.7399},{"x":81,"y":3074.0034},{"x":82,"y":2972.5357},{"x":83,"y":2888.1664},{"x":84,"y":2811.053},{"x":85,"y":2752.6464},{"x":86,"y":2708.332},{"x":87,"y":2647.6693},{"x":88,"y":2589.5925},{"x":89,"y":2538.7695},{"x":90,"y":2478.0323},{"x":91,"y":2402.2417},{"x":92,"y":2331.6322},{"x":93,"y":2242.612},{"x":94,"y":2123.8865},{"x":95,"y":2017.2915},{"x":96,"y":1867.9429},{"x":97,"y":1730.0878},{"x":98,"y":1630.6138},{"x":99,"y":1527.1209},{"x":100,"y":1383.8565}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of α₁(NA) in Area hOc1","filename":"α₁(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha1 receptor in area hOc1.** This profile plot shows examplary the course of the alpha1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₁(NA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₁(NA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":168.6749},{"x":1,"y":182.1696},{"x":2,"y":185.3947},{"x":3,"y":187.4005},{"x":4,"y":191.0936},{"x":5,"y":197.8342},{"x":6,"y":209.5895},{"x":7,"y":212.9179},{"x":8,"y":210.3358},{"x":9,"y":204.672},{"x":10,"y":198.3559},{"x":11,"y":192.2141},{"x":12,"y":184.6792},{"x":13,"y":176.5573},{"x":14,"y":167.6668},{"x":15,"y":155.016},{"x":16,"y":139.9113},{"x":17,"y":130.1627},{"x":18,"y":125.9382},{"x":19,"y":123.6029},{"x":20,"y":118.239},{"x":21,"y":113.5298},{"x":22,"y":110.5245},{"x":23,"y":108.3136},{"x":24,"y":102.8691},{"x":25,"y":101.3295},{"x":26,"y":102.7557},{"x":27,"y":101.7567},{"x":28,"y":99.6596},{"x":29,"y":96.9543},{"x":30,"y":93.9327},{"x":31,"y":91.7224},{"x":32,"y":88.1879},{"x":33,"y":85.0743},{"x":34,"y":83.9862},{"x":35,"y":83.5078},{"x":36,"y":83.7018},{"x":37,"y":85.1439},{"x":38,"y":85.7278},{"x":39,"y":86.1452},{"x":40,"y":84.2475},{"x":41,"y":82.1894},{"x":42,"y":78.456},{"x":43,"y":72.7331},{"x":44,"y":68.6578},{"x":45,"y":62.8413},{"x":46,"y":60.8788},{"x":47,"y":62.651},{"x":48,"y":64.8375},{"x":49,"y":64.6198},{"x":50,"y":62.7509},{"x":51,"y":61.7825},{"x":52,"y":57.3576},{"x":53,"y":56.1031},{"x":54,"y":56.3921},{"x":55,"y":58.7134},{"x":56,"y":60.9693},{"x":57,"y":62.4585},{"x":58,"y":59.0945},{"x":59,"y":53.9828},{"x":60,"y":50.213},{"x":61,"y":50.0645},{"x":62,"y":53.8254},{"x":63,"y":59.7737},{"x":64,"y":63.0181},{"x":65,"y":63.9535},{"x":66,"y":64.0462},{"x":67,"y":65.6225},{"x":68,"y":71.6348},{"x":69,"y":76.1939},{"x":70,"y":81.6869},{"x":71,"y":87.3107},{"x":72,"y":91.7488},{"x":73,"y":96.3965},{"x":74,"y":98.7351},{"x":75,"y":102.4217},{"x":76,"y":106.6856},{"x":77,"y":110.8446},{"x":78,"y":116.0606},{"x":79,"y":119.1487},{"x":80,"y":117.2004},{"x":81,"y":112.0626},{"x":82,"y":110.0738},{"x":83,"y":109.4078},{"x":84,"y":112.0437},{"x":85,"y":111.7614},{"x":86,"y":109.5021},{"x":87,"y":103.9489},{"x":88,"y":99.3451},{"x":89,"y":98.5225},{"x":90,"y":97.1939},{"x":91,"y":100.2859},{"x":92,"y":105.9594},{"x":93,"y":111.2528},{"x":94,"y":114.1552},{"x":95,"y":111.1529},{"x":96,"y":98.7504},{"x":97,"y":81.3371},{"x":98,"y":67.5288},{"x":99,"y":56.9752},{"x":100,"y":45.3638}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area hOc1","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of NMDA receptor in area hOc1.** This profile plot shows examplary the course of the NMDA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one male subject (brain id: MR3, sample id: ID06, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":572.0054},{"x":1,"y":614.2075},{"x":2,"y":649.1235},{"x":3,"y":690.7202},{"x":4,"y":711.4168},{"x":5,"y":727.3087},{"x":6,"y":738.8004},{"x":7,"y":739.6577},{"x":8,"y":740.3816},{"x":9,"y":743.605},{"x":10,"y":746.1732},{"x":11,"y":747.2647},{"x":12,"y":745.3762},{"x":13,"y":747.7438},{"x":14,"y":744.0118},{"x":15,"y":732.7667},{"x":16,"y":724.1488},{"x":17,"y":718.3944},{"x":18,"y":709.9797},{"x":19,"y":716.7964},{"x":20,"y":731.8721},{"x":21,"y":739.0177},{"x":22,"y":739.8535},{"x":23,"y":737.4356},{"x":24,"y":732.0279},{"x":25,"y":726.0898},{"x":26,"y":721.8319},{"x":27,"y":713.8019},{"x":28,"y":702.042},{"x":29,"y":685.841},{"x":30,"y":665.4271},{"x":31,"y":653.5912},{"x":32,"y":649.2724},{"x":33,"y":644.9724},{"x":34,"y":650.6951},{"x":35,"y":650.6101},{"x":36,"y":651.3148},{"x":37,"y":652.7863},{"x":38,"y":650.4579},{"x":39,"y":648.0021},{"x":40,"y":647.8156},{"x":41,"y":650.941},{"x":42,"y":650.3177},{"x":43,"y":645.8745},{"x":44,"y":641.2981},{"x":45,"y":635.7545},{"x":46,"y":624.975},{"x":47,"y":624.4013},{"x":48,"y":617.0492},{"x":49,"y":608.5372},{"x":50,"y":605.8666},{"x":51,"y":615.2715},{"x":52,"y":627.1219},{"x":53,"y":635.482},{"x":54,"y":644.3173},{"x":55,"y":649.9436},{"x":56,"y":665.8279},{"x":57,"y":672.7705},{"x":58,"y":674.4},{"x":59,"y":680.3973},{"x":60,"y":681.5213},{"x":61,"y":681.2878},{"x":62,"y":682.9132},{"x":63,"y":683.3346},{"x":64,"y":675.0873},{"x":65,"y":657.7742},{"x":66,"y":633.5167},{"x":67,"y":619.555},{"x":68,"y":600.2568},{"x":69,"y":581.369},{"x":70,"y":566.3398},{"x":71,"y":552.2866},{"x":72,"y":537.1043},{"x":73,"y":520.475},{"x":74,"y":504.502},{"x":75,"y":490.7681},{"x":76,"y":476.7009},{"x":77,"y":463.6569},{"x":78,"y":453.9446},{"x":79,"y":450.2859},{"x":80,"y":451.9531},{"x":81,"y":460.6127},{"x":82,"y":476.086},{"x":83,"y":481.1458},{"x":84,"y":475.1103},{"x":85,"y":458.0221},{"x":86,"y":439.422},{"x":87,"y":420.8552},{"x":88,"y":406.0399},{"x":89,"y":397.0358},{"x":90,"y":406.0541},{"x":91,"y":423.9473},{"x":92,"y":440.2471},{"x":93,"y":450.8751},{"x":94,"y":447.9673},{"x":95,"y":431.8788},{"x":96,"y":417.122},{"x":97,"y":403.7767},{"x":98,"y":382.1547},{"x":99,"y":364.2236},{"x":100,"y":342.4615}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴀ(GABA) in Area hOc1","filename":"GABAᴀ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAA receptor in area hOc1.** This profile plot shows examplary the course of the GABAA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(GABA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(GABA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":1052.5885},{"x":1,"y":1101.1443},{"x":2,"y":1153.1879},{"x":3,"y":1213.3273},{"x":4,"y":1273.632},{"x":5,"y":1333.742},{"x":6,"y":1385.7007},{"x":7,"y":1427.3979},{"x":8,"y":1472.1368},{"x":9,"y":1517.0938},{"x":10,"y":1553.9951},{"x":11,"y":1584.5964},{"x":12,"y":1604.8042},{"x":13,"y":1620.4829},{"x":14,"y":1636.4992},{"x":15,"y":1648.9745},{"x":16,"y":1660.725},{"x":17,"y":1670.5646},{"x":18,"y":1681.9283},{"x":19,"y":1685.7565},{"x":20,"y":1689.3959},{"x":21,"y":1687.323},{"x":22,"y":1685.2188},{"x":23,"y":1684.2764},{"x":24,"y":1692.8372},{"x":25,"y":1694.5134},{"x":26,"y":1692.2493},{"x":27,"y":1690.2391},{"x":28,"y":1690.9645},{"x":29,"y":1693.1758},{"x":30,"y":1679.6812},{"x":31,"y":1661.967},{"x":32,"y":1642.9101},{"x":33,"y":1610.6031},{"x":34,"y":1577.8663},{"x":35,"y":1536.8259},{"x":36,"y":1490.2543},{"x":37,"y":1441.318},{"x":38,"y":1401.5537},{"x":39,"y":1364.837},{"x":40,"y":1342.4044},{"x":41,"y":1318.6012},{"x":42,"y":1300.8426},{"x":43,"y":1288.5195},{"x":44,"y":1276.976},{"x":45,"y":1274.4948},{"x":46,"y":1286.5711},{"x":47,"y":1290.7743},{"x":48,"y":1289.5208},{"x":49,"y":1293.9939},{"x":50,"y":1294.2422},{"x":51,"y":1299.954},{"x":52,"y":1321.752},{"x":53,"y":1343.3275},{"x":54,"y":1372.7546},{"x":55,"y":1394.0418},{"x":56,"y":1425.4556},{"x":57,"y":1452.2623},{"x":58,"y":1475.6817},{"x":59,"y":1499.9404},{"x":60,"y":1513.4978},{"x":61,"y":1518.5183},{"x":62,"y":1529.7354},{"x":63,"y":1541.8937},{"x":64,"y":1540.2387},{"x":65,"y":1528.4263},{"x":66,"y":1506.9652},{"x":67,"y":1476.3935},{"x":68,"y":1428.1851},{"x":69,"y":1362.8467},{"x":70,"y":1298.3711},{"x":71,"y":1233.893},{"x":72,"y":1189.039},{"x":73,"y":1139.1874},{"x":74,"y":1098.413},{"x":75,"y":1047.3563},{"x":76,"y":1020.0548},{"x":77,"y":987.2062},{"x":78,"y":957.9883},{"x":79,"y":934.2743},{"x":80,"y":908.8416},{"x":81,"y":896.0374},{"x":82,"y":889.6003},{"x":83,"y":876.6913},{"x":84,"y":853.6658},{"x":85,"y":840.4487},{"x":86,"y":822.7237},{"x":87,"y":807.963},{"x":88,"y":795.9198},{"x":89,"y":775.4862},{"x":90,"y":754.5063},{"x":91,"y":741.7523},{"x":92,"y":718.9533},{"x":93,"y":701.1496},{"x":94,"y":685.4908},{"x":95,"y":660.0061},{"x":96,"y":634.1871},{"x":97,"y":602.2557},{"x":98,"y":579.7194},{"x":99,"y":558.718},{"x":100,"y":529.4428}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area hOc1","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha2 receptor in area hOc1.** This profile plot shows examplary the course of the alpha2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":565.5327},{"x":1,"y":603.732},{"x":2,"y":657.7538},{"x":3,"y":714.4727},{"x":4,"y":771.9365},{"x":5,"y":819.6543},{"x":6,"y":867.7175},{"x":7,"y":896.3946},{"x":8,"y":913.7756},{"x":9,"y":951.6106},{"x":10,"y":991.8389},{"x":11,"y":1027.8739},{"x":12,"y":1054.4826},{"x":13,"y":1080.7762},{"x":14,"y":1105.0313},{"x":15,"y":1135.6738},{"x":16,"y":1165.7187},{"x":17,"y":1196.5823},{"x":18,"y":1216.0058},{"x":19,"y":1230.7155},{"x":20,"y":1252.3499},{"x":21,"y":1281.8855},{"x":22,"y":1304.6098},{"x":23,"y":1316.7398},{"x":24,"y":1326.0868},{"x":25,"y":1335.2385},{"x":26,"y":1343.1457},{"x":27,"y":1352.9938},{"x":28,"y":1361.8641},{"x":29,"y":1373.8431},{"x":30,"y":1380.7078},{"x":31,"y":1376.2216},{"x":32,"y":1373.659},{"x":33,"y":1370.9288},{"x":34,"y":1362.927},{"x":35,"y":1350.2114},{"x":36,"y":1342.8246},{"x":37,"y":1334.9764},{"x":38,"y":1317.2357},{"x":39,"y":1294.0315},{"x":40,"y":1277.1577},{"x":41,"y":1264.6251},{"x":42,"y":1244.698},{"x":43,"y":1211.2148},{"x":44,"y":1181.7519},{"x":45,"y":1157.1657},{"x":46,"y":1125.8638},{"x":47,"y":1102.6032},{"x":48,"y":1079.2901},{"x":49,"y":1042.8401},{"x":50,"y":1012.3251},{"x":51,"y":982.8416},{"x":52,"y":952.3972},{"x":53,"y":931.584},{"x":54,"y":913.6329},{"x":55,"y":892.8916},{"x":56,"y":879.4261},{"x":57,"y":876.1527},{"x":58,"y":872.8202},{"x":59,"y":860.8477},{"x":60,"y":862.2473},{"x":61,"y":863.4877},{"x":62,"y":860.7376},{"x":63,"y":863.6045},{"x":64,"y":866.3627},{"x":65,"y":869.9129},{"x":66,"y":876.2006},{"x":67,"y":882.1477},{"x":68,"y":890.1761},{"x":69,"y":900.7452},{"x":70,"y":910.7396},{"x":71,"y":919.7907},{"x":72,"y":928.5848},{"x":73,"y":942.6796},{"x":74,"y":953.8475},{"x":75,"y":965.6336},{"x":76,"y":977.4255},{"x":77,"y":992.9898},{"x":78,"y":1006.5748},{"x":79,"y":1014.3239},{"x":80,"y":1026.2165},{"x":81,"y":1037.2182},{"x":82,"y":1044.2283},{"x":83,"y":1042.6564},{"x":84,"y":1038.3188},{"x":85,"y":1027.9061},{"x":86,"y":1013.1014},{"x":87,"y":998.2893},{"x":88,"y":981.9831},{"x":89,"y":967.5264},{"x":90,"y":940.3067},{"x":91,"y":907.9457},{"x":92,"y":876.6847},{"x":93,"y":854.2001},{"x":94,"y":826.2766},{"x":95,"y":773.7516},{"x":96,"y":716.9934},{"x":97,"y":664.677},{"x":98,"y":620.8819},{"x":99,"y":577.8488},{"x":100,"y":544.7912}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area hOc1","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha4-beta2 receptor in area hOc1.** This profile plot shows examplary the course of the alpha4-beta2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one male subject (brain id: MR3, sample id: ID06, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":76.2683},{"x":1,"y":75.0167},{"x":2,"y":72.401},{"x":3,"y":68.6732},{"x":4,"y":65.4106},{"x":5,"y":62.2464},{"x":6,"y":58.66},{"x":7,"y":56.7985},{"x":8,"y":55.4758},{"x":9,"y":54.8986},{"x":10,"y":54.7289},{"x":11,"y":52.1096},{"x":12,"y":47.7716},{"x":13,"y":45.0727},{"x":14,"y":43.8235},{"x":15,"y":42.6596},{"x":16,"y":39.3104},{"x":17,"y":38.2129},{"x":18,"y":38.1269},{"x":19,"y":37.5034},{"x":20,"y":37.7552},{"x":21,"y":35.7274},{"x":22,"y":31.441},{"x":23,"y":27.0863},{"x":24,"y":22.9707},{"x":25,"y":19.3137},{"x":26,"y":17.0069},{"x":27,"y":17.7011},{"x":28,"y":20.7183},{"x":29,"y":21.6929},{"x":30,"y":21.8768},{"x":31,"y":22.9711},{"x":32,"y":25.6515},{"x":33,"y":27.2575},{"x":34,"y":27.7914},{"x":35,"y":27.1827},{"x":36,"y":26.2036},{"x":37,"y":25.8425},{"x":38,"y":25.5295},{"x":39,"y":24.9211},{"x":40,"y":26.0603},{"x":41,"y":28.3008},{"x":42,"y":28.9225},{"x":43,"y":29.8913},{"x":44,"y":31.3723},{"x":45,"y":31.8183},{"x":46,"y":31.4389},{"x":47,"y":31.73},{"x":48,"y":31.3142},{"x":49,"y":31.2948},{"x":50,"y":32.0832},{"x":51,"y":32.2978},{"x":52,"y":33.7697},{"x":53,"y":35.3707},{"x":54,"y":37.1318},{"x":55,"y":38.5971},{"x":56,"y":38.9624},{"x":57,"y":36.7528},{"x":58,"y":35.4657},{"x":59,"y":35.6939},{"x":60,"y":34.0771},{"x":61,"y":31.699},{"x":62,"y":30.5999},{"x":63,"y":30.4193},{"x":64,"y":31.6578},{"x":65,"y":37.2199},{"x":66,"y":41.7566},{"x":67,"y":45.7892},{"x":68,"y":49.1681},{"x":69,"y":51.6315},{"x":70,"y":53.3099},{"x":71,"y":51.8012},{"x":72,"y":48.6715},{"x":73,"y":45.9925},{"x":74,"y":44.5297},{"x":75,"y":42.6407},{"x":76,"y":42.1098},{"x":77,"y":41.197},{"x":78,"y":38.6238},{"x":79,"y":36.1996},{"x":80,"y":34.8974},{"x":81,"y":34.7944},{"x":82,"y":34.4504},{"x":83,"y":33.6926},{"x":84,"y":32.3961},{"x":85,"y":32.8857},{"x":86,"y":33.3565},{"x":87,"y":34.7668},{"x":88,"y":39.2503},{"x":89,"y":43.0034},{"x":90,"y":44.4437},{"x":91,"y":45.7973},{"x":92,"y":47.0563},{"x":93,"y":48.2226},{"x":94,"y":48.0095},{"x":95,"y":45.6135},{"x":96,"y":43.2989},{"x":97,"y":42.1107},{"x":98,"y":40.2421},{"x":99,"y":38.7997},{"x":100,"y":36.9082}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of M₁(ACh) in Area hOc1","filename":"M₁(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M1 receptor in area hOc1.** This profile plot shows examplary the course of the M1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₁(ACh) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₁(ACh) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":441.085},{"x":1,"y":453.4159},{"x":2,"y":464.3631},{"x":3,"y":471.2128},{"x":4,"y":476.2852},{"x":5,"y":483.4172},{"x":6,"y":494.5519},{"x":7,"y":503.1657},{"x":8,"y":511.3589},{"x":9,"y":517.8983},{"x":10,"y":521.7943},{"x":11,"y":525.6308},{"x":12,"y":528.1456},{"x":13,"y":528.6413},{"x":14,"y":528.7076},{"x":15,"y":527.3279},{"x":16,"y":525.7541},{"x":17,"y":525.8783},{"x":18,"y":526.8102},{"x":19,"y":525.2279},{"x":20,"y":522.1177},{"x":21,"y":521.1822},{"x":22,"y":518.7488},{"x":23,"y":516.2637},{"x":24,"y":514.3933},{"x":25,"y":511.2544},{"x":26,"y":508.4808},{"x":27,"y":507.0339},{"x":28,"y":505.6586},{"x":29,"y":503.0545},{"x":30,"y":498.4712},{"x":31,"y":496.9603},{"x":32,"y":494.469},{"x":33,"y":489.0884},{"x":34,"y":483.9921},{"x":35,"y":476.7346},{"x":36,"y":469.3484},{"x":37,"y":464.8594},{"x":38,"y":459.4245},{"x":39,"y":450.1533},{"x":40,"y":437.2998},{"x":41,"y":423.1184},{"x":42,"y":410.2341},{"x":43,"y":396.3509},{"x":44,"y":381.9339},{"x":45,"y":371.2945},{"x":46,"y":365.5805},{"x":47,"y":355.5038},{"x":48,"y":341.7607},{"x":49,"y":328.7836},{"x":50,"y":315.8527},{"x":51,"y":305.7668},{"x":52,"y":296.629},{"x":53,"y":288.6043},{"x":54,"y":284.6497},{"x":55,"y":283.4328},{"x":56,"y":281.6549},{"x":57,"y":278.3931},{"x":58,"y":277.779},{"x":59,"y":279.7791},{"x":60,"y":283.8625},{"x":61,"y":288.4781},{"x":62,"y":291.6397},{"x":63,"y":293.0356},{"x":64,"y":295.34},{"x":65,"y":300.0218},{"x":66,"y":304.016},{"x":67,"y":306.3743},{"x":68,"y":309.2145},{"x":69,"y":313.4108},{"x":70,"y":316.5417},{"x":71,"y":320.9665},{"x":72,"y":323.6716},{"x":73,"y":325.5495},{"x":74,"y":327.8367},{"x":75,"y":329.5919},{"x":76,"y":332.1727},{"x":77,"y":336.1006},{"x":78,"y":341.3651},{"x":79,"y":344.5652},{"x":80,"y":345.9074},{"x":81,"y":346.5085},{"x":82,"y":346.2388},{"x":83,"y":346.2171},{"x":84,"y":344.782},{"x":85,"y":340.1649},{"x":86,"y":334.1118},{"x":87,"y":328.4941},{"x":88,"y":326.0946},{"x":89,"y":323.1798},{"x":90,"y":318.4895},{"x":91,"y":311.8383},{"x":92,"y":304.786},{"x":93,"y":296.6544},{"x":94,"y":288.1467},{"x":95,"y":278.0743},{"x":96,"y":270.0905},{"x":97,"y":264.1711},{"x":98,"y":255.5504},{"x":99,"y":240.4933},{"x":100,"y":223.9617}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₁ᴀ(5-HT) in Area hOc1","filename":"5-HT₁ᴀ(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT1A receptor in area hOc1.** This profile plot shows examplary the course of the 5-HT1A receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₁ᴀ(5-HT) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₁ᴀ(5-HT) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":277.0141},{"x":1,"y":293.8962},{"x":2,"y":311.1592},{"x":3,"y":326.4593},{"x":4,"y":346.5845},{"x":5,"y":369.2813},{"x":6,"y":382.2811},{"x":7,"y":394.0113},{"x":8,"y":400.4228},{"x":9,"y":403.8859},{"x":10,"y":410.9967},{"x":11,"y":412.9813},{"x":12,"y":412.7875},{"x":13,"y":412.2535},{"x":14,"y":412.1029},{"x":15,"y":409.3777},{"x":16,"y":402.7065},{"x":17,"y":394.2997},{"x":18,"y":382.7924},{"x":19,"y":369.8792},{"x":20,"y":354.0808},{"x":21,"y":341.8975},{"x":22,"y":331.0868},{"x":23,"y":318.3883},{"x":24,"y":301.0037},{"x":25,"y":281.3906},{"x":26,"y":259.2463},{"x":27,"y":238.5027},{"x":28,"y":223.1992},{"x":29,"y":208.9446},{"x":30,"y":196.0971},{"x":31,"y":180.5171},{"x":32,"y":166.1122},{"x":33,"y":157.3355},{"x":34,"y":151.5574},{"x":35,"y":142.8464},{"x":36,"y":134.7217},{"x":37,"y":128.6889},{"x":38,"y":124.3928},{"x":39,"y":120.3172},{"x":40,"y":116.1346},{"x":41,"y":111.29},{"x":42,"y":108.477},{"x":43,"y":107.1111},{"x":44,"y":104.8382},{"x":45,"y":101.7875},{"x":46,"y":99.0924},{"x":47,"y":97.3351},{"x":48,"y":93.1004},{"x":49,"y":91.1935},{"x":50,"y":88.2579},{"x":51,"y":85.0275},{"x":52,"y":83.6336},{"x":53,"y":82.4392},{"x":54,"y":81.4082},{"x":55,"y":80.0332},{"x":56,"y":79.994},{"x":57,"y":79.63},{"x":58,"y":80.3098},{"x":59,"y":81.5769},{"x":60,"y":81.1647},{"x":61,"y":80.9678},{"x":62,"y":82.7681},{"x":63,"y":82.2918},{"x":64,"y":80.0518},{"x":65,"y":78.6589},{"x":66,"y":79.7955},{"x":67,"y":79.4244},{"x":68,"y":79.3766},{"x":69,"y":79.737},{"x":70,"y":77.8016},{"x":71,"y":78.0166},{"x":72,"y":79.6687},{"x":73,"y":79.755},{"x":74,"y":79.1304},{"x":75,"y":79.4092},{"x":76,"y":81.7275},{"x":77,"y":85.3492},{"x":78,"y":86.9633},{"x":79,"y":89.0619},{"x":80,"y":90.2202},{"x":81,"y":90.9334},{"x":82,"y":93.4774},{"x":83,"y":96.3332},{"x":84,"y":96.625},{"x":85,"y":97.2223},{"x":86,"y":98.333},{"x":87,"y":98.3652},{"x":88,"y":98.6111},{"x":89,"y":98.1908},{"x":90,"y":98.6281},{"x":91,"y":97.1698},{"x":92,"y":95.6972},{"x":93,"y":93.6332},{"x":94,"y":90.3818},{"x":95,"y":87.8648},{"x":96,"y":82.8942},{"x":97,"y":79.1579},{"x":98,"y":77.5917},{"x":99,"y":75.3425},{"x":100,"y":71.4874}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of M₂(ACh) in Area hOc1","filename":"M₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M2 receptor in area hOc1.** This profile plot shows examplary the course of the M2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₂(ACh) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₂(ACh) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":111.7024},{"x":1,"y":120.7676},{"x":2,"y":124.713},{"x":3,"y":128.666},{"x":4,"y":133.3706},{"x":5,"y":138.896},{"x":6,"y":146.7855},{"x":7,"y":152.7374},{"x":8,"y":159.7736},{"x":9,"y":166.8849},{"x":10,"y":169.8943},{"x":11,"y":170.3749},{"x":12,"y":168.1731},{"x":13,"y":167.2757},{"x":14,"y":170.4316},{"x":15,"y":172.5422},{"x":16,"y":178.5668},{"x":17,"y":186.3632},{"x":18,"y":190.8588},{"x":19,"y":193.3013},{"x":20,"y":194.0643},{"x":21,"y":197.1141},{"x":22,"y":203.1535},{"x":23,"y":212.6348},{"x":24,"y":216.715},{"x":25,"y":214.0611},{"x":26,"y":209.2847},{"x":27,"y":202.3903},{"x":28,"y":200.1492},{"x":29,"y":206.1437},{"x":30,"y":214.2428},{"x":31,"y":221.7666},{"x":32,"y":225.5812},{"x":33,"y":222.7095},{"x":34,"y":218.3648},{"x":35,"y":210.9264},{"x":36,"y":206.6764},{"x":37,"y":205.0837},{"x":38,"y":201.9195},{"x":39,"y":197.1396},{"x":40,"y":186.0637},{"x":41,"y":176.2788},{"x":42,"y":167.1833},{"x":43,"y":162.1711},{"x":44,"y":160.3854},{"x":45,"y":160.8925},{"x":46,"y":166.0948},{"x":47,"y":169.1525},{"x":48,"y":171.3924},{"x":49,"y":175.9716},{"x":50,"y":178.3272},{"x":51,"y":178.3115},{"x":52,"y":173.934},{"x":53,"y":168.2591},{"x":54,"y":159.7846},{"x":55,"y":156.036},{"x":56,"y":155.0899},{"x":57,"y":161.3088},{"x":58,"y":170.2551},{"x":59,"y":178.6887},{"x":60,"y":185.8098},{"x":61,"y":190.9348},{"x":62,"y":195.1153},{"x":63,"y":197.8296},{"x":64,"y":199.6482},{"x":65,"y":201.0436},{"x":66,"y":198.4942},{"x":67,"y":189.6844},{"x":68,"y":179.744},{"x":69,"y":168.5765},{"x":70,"y":161.2516},{"x":71,"y":158.3052},{"x":72,"y":161.4},{"x":73,"y":170.7534},{"x":74,"y":183.4262},{"x":75,"y":191.2723},{"x":76,"y":200.1538},{"x":77,"y":206.8902},{"x":78,"y":210.5596},{"x":79,"y":211.2033},{"x":80,"y":211.3832},{"x":81,"y":210.9054},{"x":82,"y":209.4243},{"x":83,"y":205.4435},{"x":84,"y":201.1329},{"x":85,"y":197.5022},{"x":86,"y":194.4099},{"x":87,"y":189.4452},{"x":88,"y":182.6296},{"x":89,"y":177.4467},{"x":90,"y":177.2075},{"x":91,"y":179.9399},{"x":92,"y":185.1795},{"x":93,"y":189.6287},{"x":94,"y":191.4508},{"x":95,"y":188.6204},{"x":96,"y":179.9949},{"x":97,"y":168.4251},{"x":98,"y":151.9648},{"x":99,"y":136.9735},{"x":100,"y":112.6901}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area hOc1","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of AMPA receptor in area hOc1.** This profile plot shows examplary the course of the AMPA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one male subject (brain id: MR3, sample id: ID06, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":296.5185},{"x":1,"y":310.0072},{"x":2,"y":323.6652},{"x":3,"y":341.0282},{"x":4,"y":349.2329},{"x":5,"y":356.5307},{"x":6,"y":357.9476},{"x":7,"y":352.3415},{"x":8,"y":344.777},{"x":9,"y":338.6273},{"x":10,"y":334.1112},{"x":11,"y":332.0932},{"x":12,"y":331.5188},{"x":13,"y":328.8927},{"x":14,"y":328.0489},{"x":15,"y":323.2791},{"x":16,"y":316.9786},{"x":17,"y":310.6167},{"x":18,"y":303.2973},{"x":19,"y":298.0369},{"x":20,"y":295.6883},{"x":21,"y":293.3655},{"x":22,"y":289.7928},{"x":23,"y":288.8423},{"x":24,"y":285.8074},{"x":25,"y":278.3854},{"x":26,"y":275.6608},{"x":27,"y":268.4886},{"x":28,"y":260.6856},{"x":29,"y":253.0161},{"x":30,"y":249.18},{"x":31,"y":245.06},{"x":32,"y":243.1107},{"x":33,"y":241.5847},{"x":34,"y":233.3878},{"x":35,"y":225.3179},{"x":36,"y":217.5141},{"x":37,"y":205.2174},{"x":38,"y":198.9368},{"x":39,"y":195.3924},{"x":40,"y":188.3596},{"x":41,"y":182.7604},{"x":42,"y":177.7724},{"x":43,"y":167.8532},{"x":44,"y":165.2347},{"x":45,"y":161.148},{"x":46,"y":156.3672},{"x":47,"y":154.1189},{"x":48,"y":153.6221},{"x":49,"y":149.8172},{"x":50,"y":147.2099},{"x":51,"y":144.5575},{"x":52,"y":144.755},{"x":53,"y":142.919},{"x":54,"y":145.3835},{"x":55,"y":147.7908},{"x":56,"y":146.9777},{"x":57,"y":146.862},{"x":58,"y":149.7686},{"x":59,"y":153.0596},{"x":60,"y":155.5628},{"x":61,"y":160.2682},{"x":62,"y":166.7621},{"x":63,"y":175.6181},{"x":64,"y":177.1999},{"x":65,"y":177.6232},{"x":66,"y":177.3875},{"x":67,"y":181.1511},{"x":68,"y":180.7511},{"x":69,"y":178.4602},{"x":70,"y":179.1944},{"x":71,"y":181.6564},{"x":72,"y":187.3608},{"x":73,"y":192.4361},{"x":74,"y":197.441},{"x":75,"y":204.5389},{"x":76,"y":211.8954},{"x":77,"y":219.3225},{"x":78,"y":221.5775},{"x":79,"y":226.2557},{"x":80,"y":227.5431},{"x":81,"y":226.7665},{"x":82,"y":229.3286},{"x":83,"y":229.5464},{"x":84,"y":233.8443},{"x":85,"y":234.6858},{"x":86,"y":240.5448},{"x":87,"y":247.6617},{"x":88,"y":252.0637},{"x":89,"y":257.513},{"x":90,"y":261.6658},{"x":91,"y":259.2819},{"x":92,"y":254.2516},{"x":93,"y":249.9736},{"x":94,"y":243.1471},{"x":95,"y":231.5393},{"x":96,"y":225.1279},{"x":97,"y":216.5944},{"x":98,"y":209.4079},{"x":99,"y":206.6908},{"x":100,"y":201.3045}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of D₁(DA) in Area hOc1","filename":"D₁(DA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of D1 receptor in area hOc1.** This profile plot shows examplary the course of the D1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of D₁(DA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of D₁(DA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":207.7441},{"x":1,"y":215.511},{"x":2,"y":226.0892},{"x":3,"y":235.031},{"x":4,"y":238.9458},{"x":5,"y":241.4951},{"x":6,"y":245.7857},{"x":7,"y":252.3796},{"x":8,"y":254.8791},{"x":9,"y":259.0769},{"x":10,"y":264.0641},{"x":11,"y":268.4594},{"x":12,"y":273.8793},{"x":13,"y":279.9837},{"x":14,"y":282.8553},{"x":15,"y":284.6941},{"x":16,"y":289.7838},{"x":17,"y":293.2425},{"x":18,"y":293.798},{"x":19,"y":291.4762},{"x":20,"y":285.3904},{"x":21,"y":283.266},{"x":22,"y":281.3792},{"x":23,"y":278.3961},{"x":24,"y":277.8827},{"x":25,"y":276.6527},{"x":26,"y":271.455},{"x":27,"y":268.8769},{"x":28,"y":265.5565},{"x":29,"y":261.3125},{"x":30,"y":257.7901},{"x":31,"y":255.3523},{"x":32,"y":252.8395},{"x":33,"y":250.7056},{"x":34,"y":249.2335},{"x":35,"y":249.1512},{"x":36,"y":248.2857},{"x":37,"y":247.0389},{"x":38,"y":247.9175},{"x":39,"y":248.2511},{"x":40,"y":248.9341},{"x":41,"y":249.4854},{"x":42,"y":249.5802},{"x":43,"y":249.6495},{"x":44,"y":247.9311},{"x":45,"y":246.6846},{"x":46,"y":244.8176},{"x":47,"y":242.3142},{"x":48,"y":240.3888},{"x":49,"y":237.3486},{"x":50,"y":234.6358},{"x":51,"y":230.491},{"x":52,"y":226.5043},{"x":53,"y":222.2163},{"x":54,"y":219.9779},{"x":55,"y":215.9688},{"x":56,"y":214.1612},{"x":57,"y":212.1285},{"x":58,"y":211.9612},{"x":59,"y":212.3389},{"x":60,"y":211.5356},{"x":61,"y":212.6048},{"x":62,"y":216.3678},{"x":63,"y":221.0559},{"x":64,"y":223.8181},{"x":65,"y":226.5403},{"x":66,"y":227.4622},{"x":67,"y":227.9431},{"x":68,"y":230.2788},{"x":69,"y":233.2172},{"x":70,"y":237.4031},{"x":71,"y":239.3619},{"x":72,"y":241.897},{"x":73,"y":246.6127},{"x":74,"y":253.0889},{"x":75,"y":258.2004},{"x":76,"y":261.0606},{"x":77,"y":264.0636},{"x":78,"y":268.5683},{"x":79,"y":274.3705},{"x":80,"y":277.8342},{"x":81,"y":285.054},{"x":82,"y":290.7287},{"x":83,"y":292.6989},{"x":84,"y":292.3012},{"x":85,"y":290.8193},{"x":86,"y":289.8784},{"x":87,"y":292.4998},{"x":88,"y":297.0705},{"x":89,"y":298.7731},{"x":90,"y":299.3802},{"x":91,"y":299.2742},{"x":92,"y":298.5046},{"x":93,"y":300.3571},{"x":94,"y":299.3348},{"x":95,"y":295.7797},{"x":96,"y":290.9805},{"x":97,"y":282.4275},{"x":98,"y":266.5104},{"x":99,"y":253.4289},{"x":100,"y":243.1836}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area hOc1","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M3 receptor in area hOc1.** This profile plot shows examplary the course of the M3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":747.2266},{"x":1,"y":865.6087},{"x":2,"y":946.5255},{"x":3,"y":998.8131},{"x":4,"y":1041.1623},{"x":5,"y":1082.1014},{"x":6,"y":1113.3147},{"x":7,"y":1136.6045},{"x":8,"y":1152.5531},{"x":9,"y":1156.4684},{"x":10,"y":1161.711},{"x":11,"y":1164.093},{"x":12,"y":1163.7677},{"x":13,"y":1165.4596},{"x":14,"y":1167.5281},{"x":15,"y":1164.0925},{"x":16,"y":1159.3774},{"x":17,"y":1160.1835},{"x":18,"y":1164.7982},{"x":19,"y":1163.8683},{"x":20,"y":1155.6704},{"x":21,"y":1145.5185},{"x":22,"y":1140.9926},{"x":23,"y":1140.6158},{"x":24,"y":1141.4056},{"x":25,"y":1139.1365},{"x":26,"y":1134.0535},{"x":27,"y":1130.0171},{"x":28,"y":1117.8305},{"x":29,"y":1103.4632},{"x":30,"y":1078.4865},{"x":31,"y":1054.6395},{"x":32,"y":1036.7652},{"x":33,"y":1027.3206},{"x":34,"y":1013.9538},{"x":35,"y":994.1636},{"x":36,"y":973.5138},{"x":37,"y":947.6866},{"x":38,"y":904.1716},{"x":39,"y":844.7921},{"x":40,"y":773.3199},{"x":41,"y":706.9926},{"x":42,"y":652.7577},{"x":43,"y":616.1192},{"x":44,"y":588.1246},{"x":45,"y":562.5917},{"x":46,"y":543.9291},{"x":47,"y":532.2594},{"x":48,"y":527.498},{"x":49,"y":524.0085},{"x":50,"y":523.3199},{"x":51,"y":526.589},{"x":52,"y":536.6216},{"x":53,"y":551.9353},{"x":54,"y":576.6846},{"x":55,"y":607.8316},{"x":56,"y":638.6868},{"x":57,"y":661.2896},{"x":58,"y":678.8031},{"x":59,"y":689.3389},{"x":60,"y":695.9724},{"x":61,"y":693.1446},{"x":62,"y":681.0257},{"x":63,"y":663.0234},{"x":64,"y":648.1835},{"x":65,"y":636.9734},{"x":66,"y":628.1691},{"x":67,"y":632.0165},{"x":68,"y":645.8549},{"x":69,"y":683.0799},{"x":70,"y":735.4547},{"x":71,"y":784.1169},{"x":72,"y":816.0836},{"x":73,"y":831.1279},{"x":74,"y":824.7145},{"x":75,"y":813.242},{"x":76,"y":794.0377},{"x":77,"y":770.6568},{"x":78,"y":752.071},{"x":79,"y":731.3164},{"x":80,"y":709.231},{"x":81,"y":693.622},{"x":82,"y":678.3714},{"x":83,"y":670.9507},{"x":84,"y":672.3956},{"x":85,"y":674.3531},{"x":86,"y":680.4494},{"x":87,"y":681.3667},{"x":88,"y":681.4286},{"x":89,"y":673.1429},{"x":90,"y":660.9871},{"x":91,"y":649.7518},{"x":92,"y":637.4919},{"x":93,"y":629.1207},{"x":94,"y":618.5734},{"x":95,"y":589.9535},{"x":96,"y":548.6126},{"x":97,"y":511.9469},{"x":98,"y":472.9624},{"x":99,"y":433.5808},{"x":100,"y":387.2545}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area hOc1","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of mGluR2_3 receptor in area hOc1.** This profile plot shows examplary the course of the mGluR2_3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one male subject (brain id: MR1, sample id: ID02, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":1996.4791},{"x":1,"y":1991.9309},{"x":2,"y":1991.5574},{"x":3,"y":1992.9584},{"x":4,"y":1989.7499},{"x":5,"y":1979.245},{"x":6,"y":1952.4576},{"x":7,"y":1928.766},{"x":8,"y":1899.0324},{"x":9,"y":1865.01},{"x":10,"y":1828.0118},{"x":11,"y":1791.4461},{"x":12,"y":1756.2043},{"x":13,"y":1721.0255},{"x":14,"y":1691.8148},{"x":15,"y":1658.0648},{"x":16,"y":1618.3138},{"x":17,"y":1573.6074},{"x":18,"y":1532.8729},{"x":19,"y":1509.9391},{"x":20,"y":1490.2826},{"x":21,"y":1474.6163},{"x":22,"y":1465.5071},{"x":23,"y":1455.6628},{"x":24,"y":1431.5574},{"x":25,"y":1395.7647},{"x":26,"y":1369.1576},{"x":27,"y":1342.4632},{"x":28,"y":1312.4197},{"x":29,"y":1298.4521},{"x":30,"y":1291.8523},{"x":31,"y":1279.4106},{"x":32,"y":1266.165},{"x":33,"y":1250.7491},{"x":34,"y":1228.2233},{"x":35,"y":1201.9093},{"x":36,"y":1177.4919},{"x":37,"y":1153.0602},{"x":38,"y":1124.7354},{"x":39,"y":1100.6607},{"x":40,"y":1080.107},{"x":41,"y":1051.4967},{"x":42,"y":1025.2485},{"x":43,"y":1013.5788},{"x":44,"y":995.9743},{"x":45,"y":978.1474},{"x":46,"y":976.2809},{"x":47,"y":965.7277},{"x":48,"y":945.6575},{"x":49,"y":929.7303},{"x":50,"y":923.0048},{"x":51,"y":902.8096},{"x":52,"y":879.9849},{"x":53,"y":858.0834},{"x":54,"y":841.089},{"x":55,"y":837.0503},{"x":56,"y":836.3678},{"x":57,"y":845.7571},{"x":58,"y":858.0552},{"x":59,"y":858.9432},{"x":60,"y":861.4869},{"x":61,"y":862.8272},{"x":62,"y":869.6961},{"x":63,"y":873.5004},{"x":64,"y":882.8428},{"x":65,"y":901.0304},{"x":66,"y":941.8052},{"x":67,"y":975.8809},{"x":68,"y":1009.0027},{"x":69,"y":1042.7596},{"x":70,"y":1085.387},{"x":71,"y":1117.7279},{"x":72,"y":1152.289},{"x":73,"y":1191.0298},{"x":74,"y":1224.914},{"x":75,"y":1256.1998},{"x":76,"y":1288.5968},{"x":77,"y":1315.6137},{"x":78,"y":1332.3173},{"x":79,"y":1341.2356},{"x":80,"y":1336.4158},{"x":81,"y":1336.1764},{"x":82,"y":1328.0444},{"x":83,"y":1315.1316},{"x":84,"y":1293.852},{"x":85,"y":1270.8022},{"x":86,"y":1261.7084},{"x":87,"y":1253.1999},{"x":88,"y":1241.4214},{"x":89,"y":1236.8467},{"x":90,"y":1229.6931},{"x":91,"y":1216.0618},{"x":92,"y":1191.2109},{"x":93,"y":1164.7855},{"x":94,"y":1130.8177},{"x":95,"y":1089.9143},{"x":96,"y":1043.555},{"x":97,"y":992.5167},{"x":98,"y":938.9935},{"x":99,"y":890.8645},{"x":100,"y":847.4022}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₂(5-HT) in Area hOc1","filename":"5-HT₂(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT2 receptor in area hOc1.** This profile plot shows examplary the course of the 5-HT2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₂(5-HT) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₂(5-HT) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":331.8035},{"x":1,"y":341.8175},{"x":2,"y":351.839},{"x":3,"y":361.9529},{"x":4,"y":372.8824},{"x":5,"y":384.1077},{"x":6,"y":393.6793},{"x":7,"y":398.3036},{"x":8,"y":401.2285},{"x":9,"y":402.6239},{"x":10,"y":403.1382},{"x":11,"y":403.5769},{"x":12,"y":404.2446},{"x":13,"y":404.5654},{"x":14,"y":404.309},{"x":15,"y":403.9007},{"x":16,"y":403.2127},{"x":17,"y":402.5041},{"x":18,"y":402.3908},{"x":19,"y":402.158},{"x":20,"y":401.2335},{"x":21,"y":399.807},{"x":22,"y":398.6523},{"x":23,"y":398.859},{"x":24,"y":401.93},{"x":25,"y":405.4041},{"x":26,"y":408.2006},{"x":27,"y":410.4632},{"x":28,"y":413.0316},{"x":29,"y":417.2912},{"x":30,"y":422.7087},{"x":31,"y":428.1427},{"x":32,"y":432.0671},{"x":33,"y":434.7887},{"x":34,"y":437.5058},{"x":35,"y":437.952},{"x":36,"y":438.2973},{"x":37,"y":438.9784},{"x":38,"y":441.1463},{"x":39,"y":443.2481},{"x":40,"y":444.6074},{"x":41,"y":443.973},{"x":42,"y":443.295},{"x":43,"y":442.7157},{"x":44,"y":441.9489},{"x":45,"y":440.7082},{"x":46,"y":439.0657},{"x":47,"y":437.3753},{"x":48,"y":435.3961},{"x":49,"y":433.5371},{"x":50,"y":431.7816},{"x":51,"y":430.3912},{"x":52,"y":429.2515},{"x":53,"y":428.2003},{"x":54,"y":426.5748},{"x":55,"y":425.349},{"x":56,"y":424.6872},{"x":57,"y":424.8024},{"x":58,"y":425.3623},{"x":59,"y":426.5301},{"x":60,"y":428.491},{"x":61,"y":430.8133},{"x":62,"y":433.1227},{"x":63,"y":434.5956},{"x":64,"y":435.1387},{"x":65,"y":435.9223},{"x":66,"y":437.5266},{"x":67,"y":438.9172},{"x":68,"y":439.8167},{"x":69,"y":439.6906},{"x":70,"y":438.5755},{"x":71,"y":437.6683},{"x":72,"y":435.9918},{"x":73,"y":433.0423},{"x":74,"y":429.5751},{"x":75,"y":424.4398},{"x":76,"y":418.0263},{"x":77,"y":411.0302},{"x":78,"y":404.3113},{"x":79,"y":398.0299},{"x":80,"y":391.7155},{"x":81,"y":386.2348},{"x":82,"y":380.4688},{"x":83,"y":373.7935},{"x":84,"y":365.6567},{"x":85,"y":356.9932},{"x":86,"y":348.8486},{"x":87,"y":342.0671},{"x":88,"y":335.9903},{"x":89,"y":329.1074},{"x":90,"y":321.5039},{"x":91,"y":314.0194},{"x":92,"y":308.2192},{"x":93,"y":303.7542},{"x":94,"y":298.8987},{"x":95,"y":293.8996},{"x":96,"y":289.5817},{"x":97,"y":285.4463},{"x":98,"y":281.4969},{"x":99,"y":277.2663},{"x":100,"y":273.0395}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴃ(GABA) in Area hOc1","filename":"GABAᴃ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAB receptor in area hOc1.** This profile plot shows examplary the course of the GABAB receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴃ(GABA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴃ(GABA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":1950.3144},{"x":1,"y":2100.9605},{"x":2,"y":2203.5831},{"x":3,"y":2292.5689},{"x":4,"y":2374.8703},{"x":5,"y":2468.2905},{"x":6,"y":2533.873},{"x":7,"y":2562.5636},{"x":8,"y":2577.8818},{"x":9,"y":2584.4019},{"x":10,"y":2574.9019},{"x":11,"y":2548.707},{"x":12,"y":2528.7062},{"x":13,"y":2517.7172},{"x":14,"y":2514.4521},{"x":15,"y":2515.2127},{"x":16,"y":2526.5504},{"x":17,"y":2521.6832},{"x":18,"y":2514.001},{"x":19,"y":2508.318},{"x":20,"y":2503.7046},{"x":21,"y":2495.8885},{"x":22,"y":2489.0215},{"x":23,"y":2472.4367},{"x":24,"y":2453.2604},{"x":25,"y":2436.9792},{"x":26,"y":2426.0322},{"x":27,"y":2401.5488},{"x":28,"y":2367.3584},{"x":29,"y":2347.5592},{"x":30,"y":2345.3507},{"x":31,"y":2350.1742},{"x":32,"y":2364.6761},{"x":33,"y":2377.745},{"x":34,"y":2388.1031},{"x":35,"y":2392.8357},{"x":36,"y":2381.181},{"x":37,"y":2358.0164},{"x":38,"y":2338.2177},{"x":39,"y":2286.6437},{"x":40,"y":2215.0929},{"x":41,"y":2144.7276},{"x":42,"y":2055.18},{"x":43,"y":1975.3623},{"x":44,"y":1904.9242},{"x":45,"y":1863.8506},{"x":46,"y":1826.266},{"x":47,"y":1768.0006},{"x":48,"y":1703.9164},{"x":49,"y":1597.3341},{"x":50,"y":1487.9582},{"x":51,"y":1343.9926},{"x":52,"y":1223.3642},{"x":53,"y":1150.7738},{"x":54,"y":1064.9452},{"x":55,"y":1007.5237},{"x":56,"y":972.607},{"x":57,"y":964.5922},{"x":58,"y":970.2298},{"x":59,"y":974.8202},{"x":60,"y":973.0334},{"x":61,"y":970.4423},{"x":62,"y":974.261},{"x":63,"y":990.6322},{"x":64,"y":1010.2082},{"x":65,"y":1032.1683},{"x":66,"y":1057.9906},{"x":67,"y":1083.1967},{"x":68,"y":1107.8037},{"x":69,"y":1136.2589},{"x":70,"y":1170.6473},{"x":71,"y":1199.4241},{"x":72,"y":1226.9452},{"x":73,"y":1257.318},{"x":74,"y":1284.8221},{"x":75,"y":1314.6337},{"x":76,"y":1341.7336},{"x":77,"y":1373.7874},{"x":78,"y":1399.0182},{"x":79,"y":1408.6722},{"x":80,"y":1414.7962},{"x":81,"y":1422.997},{"x":82,"y":1424.5432},{"x":83,"y":1440.6695},{"x":84,"y":1482.6868},{"x":85,"y":1546.4933},{"x":86,"y":1599.4021},{"x":87,"y":1633.8173},{"x":88,"y":1645.4206},{"x":89,"y":1646.9337},{"x":90,"y":1633.9153},{"x":91,"y":1609.1376},{"x":92,"y":1575.6959},{"x":93,"y":1549.9751},{"x":94,"y":1529.5448},{"x":95,"y":1504.3475},{"x":96,"y":1465.7426},{"x":97,"y":1428.6712},{"x":98,"y":1390.4424},{"x":99,"y":1350.4479},{"x":100,"y":1318.5866}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null}]],["Density measurements of different receptors for Area PFm",[{"name":"Receptor density fingerprint of Area PFm","filename":"fingerprint","mimetype":"application/json","properties":{"description":"**Multireceptor fingerprint for area PFm.** This polar plot shows the mean receptor densities in fmol/mg protein (solid shape) and standard deviation (dashed line) of 16 receptor binding sites in the area PFm. The data is based on the left and right hemisphere of one female subject (brain id: hg0201, sample ids: ID07 and ID08, age: 77, cause of death: lung edema) and the right hemispheres of two male subjects (brain id: hg0500, sample ids: ID09, age: 72, cause of death: cardiac arrest | brain id: hg0100, sample ids: ID12, age: 77, cause of death: coronary heart disease).","publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["513","532","1244","NA","1649","1881","3407","733","187","720","33","321","159","488","368","77"]},{"label":"mean_sd","data":["134","373","311","NA","229","914","1481","73","36","139","16","106","73","194","155","36"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PFm (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(238,238,14,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAᴀ(BZ) in Area PFm","filename":"GABAᴀ(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_BZ.jpg"},{"name":"Sample autoradiograph of α₁(NA) in Area PFm","filename":"α₁(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area PFm","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAᴀ(GABA) in Area PFm","filename":"GABAᴀ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area PFm","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area PFm","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of M₁(ACh) in Area PFm","filename":"M₁(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HT₁ᴀ(5-HT) in Area PFm","filename":"5-HT₁ᴀ(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area PFm","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_kainate.jpg"},{"name":"Sample autoradiograph of M₂(ACh) in Area PFm","filename":"M₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area PFm","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_AMPA.jpg"},{"name":"Sample autoradiograph of D₁(DA) in Area PFm","filename":"D₁(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area PFm","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area PFm","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HT₂(5-HT) in Area PFm","filename":"5-HT₂(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAᴃ(GABA) in Area PFm","filename":"GABAᴃ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_GABAB.jpg"},{"name":"Sample profile of GABAᴀ(BZ) in Area PFm","filename":"GABAᴀ(BZ)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of BZ receptor in area PFm.** This profile plot shows examplary the course of the BZ receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(BZ) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(BZ) in Area PFm"],"datasets":[{"data":[{"x":0,"y":414.6775},{"x":1,"y":547.3832},{"x":2,"y":750.3479},{"x":3,"y":1025.2073},{"x":4,"y":1272.8043},{"x":5,"y":1502.9083},{"x":6,"y":1809.6361},{"x":7,"y":2074.466},{"x":8,"y":2267.3889},{"x":9,"y":2466.4042},{"x":10,"y":2716.4915},{"x":11,"y":2963.1964},{"x":12,"y":3189.5308},{"x":13,"y":3475.5923},{"x":14,"y":3766.1234},{"x":15,"y":3997.4987},{"x":16,"y":4217.4137},{"x":17,"y":4424.9596},{"x":18,"y":4602.5953},{"x":19,"y":4747.3639},{"x":20,"y":4823.4043},{"x":21,"y":4827.7793},{"x":22,"y":4828.3494},{"x":23,"y":4834.7259},{"x":24,"y":4879.864},{"x":25,"y":4911.0452},{"x":26,"y":4955.2739},{"x":27,"y":4931.1255},{"x":28,"y":4926.7226},{"x":29,"y":4949.8858},{"x":30,"y":4965.6216},{"x":31,"y":4998.7252},{"x":32,"y":4996.599},{"x":33,"y":4926.2325},{"x":34,"y":4819.9849},{"x":35,"y":4693.8485},{"x":36,"y":4573.8724},{"x":37,"y":4451.9143},{"x":38,"y":4287.3062},{"x":39,"y":4160.1753},{"x":40,"y":4022.7371},{"x":41,"y":3899.2575},{"x":42,"y":3778.4443},{"x":43,"y":3680.0035},{"x":44,"y":3599.2844},{"x":45,"y":3499.8822},{"x":46,"y":3356.4288},{"x":47,"y":3221.8133},{"x":48,"y":3126.4153},{"x":49,"y":3033.8599},{"x":50,"y":2951.4299},{"x":51,"y":2899.7882},{"x":52,"y":2879.3989},{"x":53,"y":2843.4544},{"x":54,"y":2775.5895},{"x":55,"y":2705.5753},{"x":56,"y":2662.433},{"x":57,"y":2617.2997},{"x":58,"y":2564.7134},{"x":59,"y":2508.9885},{"x":60,"y":2465.2525},{"x":61,"y":2417.3071},{"x":62,"y":2356.1458},{"x":63,"y":2275.8288},{"x":64,"y":2212.0896},{"x":65,"y":2140.7198},{"x":66,"y":2077.1758},{"x":67,"y":2040.6461},{"x":68,"y":2003.6524},{"x":69,"y":1973.7642},{"x":70,"y":1947.2585},{"x":71,"y":1924.6402},{"x":72,"y":1906.151},{"x":73,"y":1883.4075},{"x":74,"y":1849.2279},{"x":75,"y":1816.7236},{"x":76,"y":1799.4676},{"x":77,"y":1788.9956},{"x":78,"y":1783.2993},{"x":79,"y":1763.4861},{"x":80,"y":1744.703},{"x":81,"y":1714.713},{"x":82,"y":1680.9472},{"x":83,"y":1653.1001},{"x":84,"y":1622.0959},{"x":85,"y":1579.6815},{"x":86,"y":1538.2249},{"x":87,"y":1487.4049},{"x":88,"y":1434.51},{"x":89,"y":1393.3928},{"x":90,"y":1345.2221},{"x":91,"y":1280.4439},{"x":92,"y":1216.7759},{"x":93,"y":1172.3735},{"x":94,"y":1109.6377},{"x":95,"y":1053.4117},{"x":96,"y":1019.2427},{"x":97,"y":981.1075},{"x":98,"y":934.1703},{"x":99,"y":884.1061},{"x":100,"y":835.8167}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of α₁(NA) in Area PFm","filename":"α₁(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha1 receptor in area PFm.** This profile plot shows examplary the course of the alpha1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₁(NA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₁(NA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":246.0485},{"x":1,"y":302.7126},{"x":2,"y":342.1714},{"x":3,"y":443.336},{"x":4,"y":539.0976},{"x":5,"y":592.9106},{"x":6,"y":620.0483},{"x":7,"y":660.9343},{"x":8,"y":688.9723},{"x":9,"y":701.3227},{"x":10,"y":703.1962},{"x":11,"y":710.5742},{"x":12,"y":711.2233},{"x":13,"y":708.0837},{"x":14,"y":699.91},{"x":15,"y":690.0384},{"x":16,"y":668.2761},{"x":17,"y":647.4805},{"x":18,"y":638.0554},{"x":19,"y":631.7727},{"x":20,"y":626.576},{"x":21,"y":622.3763},{"x":22,"y":617.6824},{"x":23,"y":614.0316},{"x":24,"y":612.523},{"x":25,"y":611.7249},{"x":26,"y":611.7099},{"x":27,"y":609.9237},{"x":28,"y":609.752},{"x":29,"y":612.2496},{"x":30,"y":612.6466},{"x":31,"y":611.3793},{"x":32,"y":611.6471},{"x":33,"y":615.0885},{"x":34,"y":616.0165},{"x":35,"y":618.6871},{"x":36,"y":617.3478},{"x":37,"y":616.7342},{"x":38,"y":615.9005},{"x":39,"y":609.0167},{"x":40,"y":600.533},{"x":41,"y":591.1072},{"x":42,"y":579.1195},{"x":43,"y":565.3021},{"x":44,"y":553.6628},{"x":45,"y":545.7672},{"x":46,"y":541.8615},{"x":47,"y":533.4871},{"x":48,"y":529.5152},{"x":49,"y":529.1189},{"x":50,"y":526.9732},{"x":51,"y":524.5106},{"x":52,"y":526.8232},{"x":53,"y":533.3391},{"x":54,"y":540.3494},{"x":55,"y":540.4475},{"x":56,"y":542.3092},{"x":57,"y":552.1197},{"x":58,"y":553.7407},{"x":59,"y":553.2674},{"x":60,"y":559.9643},{"x":61,"y":565.719},{"x":62,"y":577.1762},{"x":63,"y":592.2511},{"x":64,"y":601.3304},{"x":65,"y":606.5184},{"x":66,"y":611.6904},{"x":67,"y":613.4652},{"x":68,"y":611.611},{"x":69,"y":613.2039},{"x":70,"y":622.8761},{"x":71,"y":634.9369},{"x":72,"y":647.4784},{"x":73,"y":651.7268},{"x":74,"y":657.8105},{"x":75,"y":669.787},{"x":76,"y":677.0422},{"x":77,"y":688.7856},{"x":78,"y":699.8495},{"x":79,"y":711.9961},{"x":80,"y":724.3741},{"x":81,"y":730.2757},{"x":82,"y":732.6087},{"x":83,"y":731.2782},{"x":84,"y":729.9956},{"x":85,"y":731.9646},{"x":86,"y":727.7137},{"x":87,"y":724.1005},{"x":88,"y":719.787},{"x":89,"y":714.7359},{"x":90,"y":712.8529},{"x":91,"y":710.3359},{"x":92,"y":710.2402},{"x":93,"y":704.9708},{"x":94,"y":697.6154},{"x":95,"y":695.004},{"x":96,"y":692.6589},{"x":97,"y":677.4381},{"x":98,"y":657.6423},{"x":99,"y":649.7101},{"x":100,"y":638.1812}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area PFm","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of NMDA receptor in area PFm.** This profile plot shows examplary the course of the NMDA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area PFm"],"datasets":[{"data":[{"x":0,"y":1288.2501},{"x":1,"y":1504.5469},{"x":2,"y":1694.8605},{"x":3,"y":1813.1118},{"x":4,"y":1877.948},{"x":5,"y":1925.6656},{"x":6,"y":1970.4734},{"x":7,"y":2001.3469},{"x":8,"y":2007.5222},{"x":9,"y":2014.9981},{"x":10,"y":2031.2646},{"x":11,"y":2029.487},{"x":12,"y":2015.0831},{"x":13,"y":2019.2004},{"x":14,"y":2020.4191},{"x":15,"y":2018.1737},{"x":16,"y":2024.3706},{"x":17,"y":2044.227},{"x":18,"y":2057.9879},{"x":19,"y":2080.7451},{"x":20,"y":2095.9656},{"x":21,"y":2088.5213},{"x":22,"y":2090.0653},{"x":23,"y":2080.5177},{"x":24,"y":2078.8738},{"x":25,"y":2069.1423},{"x":26,"y":2065.3765},{"x":27,"y":2058.6747},{"x":28,"y":2065.318},{"x":29,"y":2063.454},{"x":30,"y":2044.4191},{"x":31,"y":2022.1456},{"x":32,"y":1995.4147},{"x":33,"y":1983.3173},{"x":34,"y":1958.8393},{"x":35,"y":1939.4605},{"x":36,"y":1931.5578},{"x":37,"y":1904.5965},{"x":38,"y":1883.9031},{"x":39,"y":1881.1964},{"x":40,"y":1869.6666},{"x":41,"y":1855.4454},{"x":42,"y":1835.7264},{"x":43,"y":1829.53},{"x":44,"y":1824.8485},{"x":45,"y":1810.9402},{"x":46,"y":1809.3095},{"x":47,"y":1802.7262},{"x":48,"y":1791.8517},{"x":49,"y":1777.7284},{"x":50,"y":1777.5341},{"x":51,"y":1769.0472},{"x":52,"y":1754.3951},{"x":53,"y":1746.1479},{"x":54,"y":1755.4639},{"x":55,"y":1752.5258},{"x":56,"y":1759.8824},{"x":57,"y":1772.2099},{"x":58,"y":1779.5454},{"x":59,"y":1767.3573},{"x":60,"y":1748.4569},{"x":61,"y":1723.6787},{"x":62,"y":1717.5493},{"x":63,"y":1721.0235},{"x":64,"y":1738.6451},{"x":65,"y":1752.4983},{"x":66,"y":1748.5426},{"x":67,"y":1746.6357},{"x":68,"y":1739.6317},{"x":69,"y":1734.0655},{"x":70,"y":1720.5383},{"x":71,"y":1687.4702},{"x":72,"y":1665.4099},{"x":73,"y":1664.7602},{"x":74,"y":1659.5054},{"x":75,"y":1665.0687},{"x":76,"y":1648.4646},{"x":77,"y":1633.7099},{"x":78,"y":1617.8531},{"x":79,"y":1604.3407},{"x":80,"y":1587.7624},{"x":81,"y":1570.9626},{"x":82,"y":1564.554},{"x":83,"y":1552.3037},{"x":84,"y":1545.679},{"x":85,"y":1523.7966},{"x":86,"y":1508.3343},{"x":87,"y":1509.1098},{"x":88,"y":1492.1835},{"x":89,"y":1479.3753},{"x":90,"y":1468.1662},{"x":91,"y":1431.1263},{"x":92,"y":1389.3058},{"x":93,"y":1356.8627},{"x":94,"y":1306.1475},{"x":95,"y":1249.476},{"x":96,"y":1210.5869},{"x":97,"y":1160.2178},{"x":98,"y":1126.0999},{"x":99,"y":1093.0965},{"x":100,"y":1058.0735}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴀ(GABA) in Area PFm","filename":"GABAᴀ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAA receptor in area PFm.** This profile plot shows examplary the course of the GABAA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(GABA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(GABA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":649.0201},{"x":1,"y":848.1228},{"x":2,"y":1092.9962},{"x":3,"y":1448.094},{"x":4,"y":1829.4694},{"x":5,"y":2123.6008},{"x":6,"y":2348.2754},{"x":7,"y":2575.8223},{"x":8,"y":2761.369},{"x":9,"y":2960.1959},{"x":10,"y":3134.0293},{"x":11,"y":3289.2282},{"x":12,"y":3416.2688},{"x":13,"y":3516.8015},{"x":14,"y":3562.637},{"x":15,"y":3607.1894},{"x":16,"y":3634.3024},{"x":17,"y":3622.3828},{"x":18,"y":3620.2742},{"x":19,"y":3618.047},{"x":20,"y":3606.6227},{"x":21,"y":3604.7555},{"x":22,"y":3622.4253},{"x":23,"y":3658.9572},{"x":24,"y":3660.2006},{"x":25,"y":3680.0659},{"x":26,"y":3672.4711},{"x":27,"y":3664.3405},{"x":28,"y":3631.6388},{"x":29,"y":3594.7968},{"x":30,"y":3578.8434},{"x":31,"y":3556.649},{"x":32,"y":3507.3248},{"x":33,"y":3460.6467},{"x":34,"y":3441.4708},{"x":35,"y":3394.8057},{"x":36,"y":3361.2346},{"x":37,"y":3314.2736},{"x":38,"y":3263.0982},{"x":39,"y":3202.5102},{"x":40,"y":3122.135},{"x":41,"y":3056.6785},{"x":42,"y":3010.7237},{"x":43,"y":2955.3966},{"x":44,"y":2895.5737},{"x":45,"y":2857.2028},{"x":46,"y":2809.1634},{"x":47,"y":2764.9742},{"x":48,"y":2729.1517},{"x":49,"y":2691.3963},{"x":50,"y":2649.1878},{"x":51,"y":2570.7872},{"x":52,"y":2484.565},{"x":53,"y":2413.8159},{"x":54,"y":2348.5637},{"x":55,"y":2295.6309},{"x":56,"y":2267.3692},{"x":57,"y":2245.0127},{"x":58,"y":2216.1136},{"x":59,"y":2193.2635},{"x":60,"y":2157.833},{"x":61,"y":2116.8885},{"x":62,"y":2077.7201},{"x":63,"y":2041.1328},{"x":64,"y":2022.171},{"x":65,"y":2014.4903},{"x":66,"y":2001.3167},{"x":67,"y":2005.2367},{"x":68,"y":2004.4597},{"x":69,"y":2000.8071},{"x":70,"y":1973.1546},{"x":71,"y":1949.735},{"x":72,"y":1923.9283},{"x":73,"y":1901.3981},{"x":74,"y":1885.0433},{"x":75,"y":1870.4049},{"x":76,"y":1852.5713},{"x":77,"y":1833.3419},{"x":78,"y":1814.9503},{"x":79,"y":1816.0021},{"x":80,"y":1822.1582},{"x":81,"y":1821.6385},{"x":82,"y":1820.1773},{"x":83,"y":1804.2024},{"x":84,"y":1784.211},{"x":85,"y":1746.2127},{"x":86,"y":1710.9548},{"x":87,"y":1675.3408},{"x":88,"y":1633.8367},{"x":89,"y":1595.0674},{"x":90,"y":1577.9456},{"x":91,"y":1540.6935},{"x":92,"y":1500.2981},{"x":93,"y":1457.8082},{"x":94,"y":1415.4122},{"x":95,"y":1381.3558},{"x":96,"y":1334.2406},{"x":97,"y":1283.1642},{"x":98,"y":1241.6997},{"x":99,"y":1218.825},{"x":100,"y":1179.247}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area PFm","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha2 receptor in area PFm.** This profile plot shows examplary the course of the alpha2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":226.5518},{"x":1,"y":273.3296},{"x":2,"y":329.0038},{"x":3,"y":378.1086},{"x":4,"y":427.5563},{"x":5,"y":468.2745},{"x":6,"y":508.0673},{"x":7,"y":550.6138},{"x":8,"y":581.551},{"x":9,"y":610.2917},{"x":10,"y":642.9606},{"x":11,"y":671.5722},{"x":12,"y":704.5501},{"x":13,"y":724.0761},{"x":14,"y":744.5424},{"x":15,"y":761.424},{"x":16,"y":777.4291},{"x":17,"y":793.6276},{"x":18,"y":807.9863},{"x":19,"y":822.3666},{"x":20,"y":830.9475},{"x":21,"y":842.0264},{"x":22,"y":857.4971},{"x":23,"y":872.3554},{"x":24,"y":879.4366},{"x":25,"y":883.2561},{"x":26,"y":885.9435},{"x":27,"y":889.437},{"x":28,"y":884.922},{"x":29,"y":880.866},{"x":30,"y":877.4526},{"x":31,"y":867.4475},{"x":32,"y":854.3773},{"x":33,"y":841.2544},{"x":34,"y":828.1317},{"x":35,"y":818.6532},{"x":36,"y":813.125},{"x":37,"y":809.7644},{"x":38,"y":808.8884},{"x":39,"y":811.7371},{"x":40,"y":813.9011},{"x":41,"y":818.9772},{"x":42,"y":819.5966},{"x":43,"y":816.3986},{"x":44,"y":814.5429},{"x":45,"y":812.3569},{"x":46,"y":811.4889},{"x":47,"y":810.7485},{"x":48,"y":813.7063},{"x":49,"y":815.2679},{"x":50,"y":818.2395},{"x":51,"y":823.7207},{"x":52,"y":833.0654},{"x":53,"y":837.8499},{"x":54,"y":839.3394},{"x":55,"y":845.6004},{"x":56,"y":844.3926},{"x":57,"y":835.1113},{"x":58,"y":830.783},{"x":59,"y":829.4114},{"x":60,"y":824.4174},{"x":61,"y":821.2263},{"x":62,"y":818.2473},{"x":63,"y":814.6539},{"x":64,"y":813.7712},{"x":65,"y":817.1059},{"x":66,"y":818.4569},{"x":67,"y":819.4559},{"x":68,"y":826.8877},{"x":69,"y":830.6852},{"x":70,"y":836.927},{"x":71,"y":836.2376},{"x":72,"y":832.8156},{"x":73,"y":828.1681},{"x":74,"y":818.5491},{"x":75,"y":810.3988},{"x":76,"y":801.9501},{"x":77,"y":798.493},{"x":78,"y":798.3051},{"x":79,"y":794.3033},{"x":80,"y":788.8317},{"x":81,"y":784.921},{"x":82,"y":778.1703},{"x":83,"y":769.7684},{"x":84,"y":758.4028},{"x":85,"y":745.0126},{"x":86,"y":740.0665},{"x":87,"y":733.2654},{"x":88,"y":724.5991},{"x":89,"y":716.9815},{"x":90,"y":708.8412},{"x":91,"y":694.1066},{"x":92,"y":676.898},{"x":93,"y":659.5769},{"x":94,"y":644.7383},{"x":95,"y":630.7544},{"x":96,"y":622.2096},{"x":97,"y":610.0965},{"x":98,"y":599.3964},{"x":99,"y":584.7361},{"x":100,"y":571.6659}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area PFm","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha4-beta2 receptor in area PFm.** This profile plot shows examplary the course of the alpha4-beta2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area PFm"],"datasets":[{"data":[{"x":0,"y":10.9525},{"x":1,"y":13.7983},{"x":2,"y":16.8933},{"x":3,"y":20.661},{"x":4,"y":24.5308},{"x":5,"y":26.7085},{"x":6,"y":29.3965},{"x":7,"y":31.4594},{"x":8,"y":30.5761},{"x":9,"y":32.1735},{"x":10,"y":34.3368},{"x":11,"y":37.636},{"x":12,"y":41.7252},{"x":13,"y":43.5344},{"x":14,"y":43.3511},{"x":15,"y":42.008},{"x":16,"y":41.6332},{"x":17,"y":42.6702},{"x":18,"y":43.58},{"x":19,"y":44.4205},{"x":20,"y":43.5457},{"x":21,"y":43.2397},{"x":22,"y":44.4628},{"x":23,"y":48.649},{"x":24,"y":49.1803},{"x":25,"y":49.8894},{"x":26,"y":50.4078},{"x":27,"y":52.5366},{"x":28,"y":51.4152},{"x":29,"y":51.0567},{"x":30,"y":51.6615},{"x":31,"y":54.0162},{"x":32,"y":55.219},{"x":33,"y":54.742},{"x":34,"y":53.8983},{"x":35,"y":53.5327},{"x":36,"y":52.2835},{"x":37,"y":50.5276},{"x":38,"y":48.4643},{"x":39,"y":49.3542},{"x":40,"y":50.3873},{"x":41,"y":52.9868},{"x":42,"y":54.7023},{"x":43,"y":57.1474},{"x":44,"y":57.8795},{"x":45,"y":57.5492},{"x":46,"y":56.0614},{"x":47,"y":53.4834},{"x":48,"y":50.3447},{"x":49,"y":48.055},{"x":50,"y":45.5072},{"x":51,"y":43.2927},{"x":52,"y":44.4765},{"x":53,"y":44.5942},{"x":54,"y":43.612},{"x":55,"y":43.7712},{"x":56,"y":46.0803},{"x":57,"y":48.1456},{"x":58,"y":50.7599},{"x":59,"y":51.0952},{"x":60,"y":53.4478},{"x":61,"y":53.4372},{"x":62,"y":52.0142},{"x":63,"y":51.7924},{"x":64,"y":50.938},{"x":65,"y":49.7906},{"x":66,"y":49.0863},{"x":67,"y":52.7661},{"x":68,"y":55.3132},{"x":69,"y":58.8055},{"x":70,"y":60.4207},{"x":71,"y":64.3806},{"x":72,"y":68.2688},{"x":73,"y":69.9634},{"x":74,"y":67.564},{"x":75,"y":65.6081},{"x":76,"y":65.1647},{"x":77,"y":64.6402},{"x":78,"y":66.4672},{"x":79,"y":66.7833},{"x":80,"y":67.3829},{"x":81,"y":70.0968},{"x":82,"y":70.4616},{"x":83,"y":68.3018},{"x":84,"y":63.7082},{"x":85,"y":59.7576},{"x":86,"y":58.9443},{"x":87,"y":59.2391},{"x":88,"y":61.1348},{"x":89,"y":61.9096},{"x":90,"y":62.7221},{"x":91,"y":64.2393},{"x":92,"y":62.6537},{"x":93,"y":63.5997},{"x":94,"y":65.4311},{"x":95,"y":65.0761},{"x":96,"y":65.8512},{"x":97,"y":67.3648},{"x":98,"y":64.1934},{"x":99,"y":59.792},{"x":100,"y":55.6246}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of M₁(ACh) in Area PFm","filename":"M₁(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M1 receptor in area PFm.** This profile plot shows examplary the course of the M1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₁(ACh) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₁(ACh) in Area PFm"],"datasets":[{"data":[{"x":0,"y":222.9819},{"x":1,"y":257.3062},{"x":2,"y":301.232},{"x":3,"y":360.3595},{"x":4,"y":411.1464},{"x":5,"y":453.1503},{"x":6,"y":488.2737},{"x":7,"y":532.1241},{"x":8,"y":568.0223},{"x":9,"y":594.1367},{"x":10,"y":611.3606},{"x":11,"y":624.9792},{"x":12,"y":637.2301},{"x":13,"y":645.8093},{"x":14,"y":648.7144},{"x":15,"y":648.8767},{"x":16,"y":653.9823},{"x":17,"y":656.643},{"x":18,"y":656.122},{"x":19,"y":655.8582},{"x":20,"y":652.3616},{"x":21,"y":649.8126},{"x":22,"y":647.6234},{"x":23,"y":643.4561},{"x":24,"y":641.884},{"x":25,"y":639.0562},{"x":26,"y":632.4965},{"x":27,"y":627.2677},{"x":28,"y":622.4582},{"x":29,"y":616.5911},{"x":30,"y":610.0373},{"x":31,"y":603.4589},{"x":32,"y":596.8318},{"x":33,"y":586.7784},{"x":34,"y":577.6716},{"x":35,"y":572.4562},{"x":36,"y":566.1598},{"x":37,"y":559.5024},{"x":38,"y":555.1174},{"x":39,"y":551.4646},{"x":40,"y":552.3742},{"x":41,"y":556.6502},{"x":42,"y":558.5327},{"x":43,"y":558.3553},{"x":44,"y":557.7356},{"x":45,"y":557.6063},{"x":46,"y":558.7175},{"x":47,"y":558.6156},{"x":48,"y":558.3882},{"x":49,"y":558.33},{"x":50,"y":557.7576},{"x":51,"y":555.4275},{"x":52,"y":551.8005},{"x":53,"y":549.2268},{"x":54,"y":546.2649},{"x":55,"y":542.9368},{"x":56,"y":537.5792},{"x":57,"y":535.3208},{"x":58,"y":534.2044},{"x":59,"y":533.5621},{"x":60,"y":530.047},{"x":61,"y":526.7027},{"x":62,"y":523.2002},{"x":63,"y":519.5795},{"x":64,"y":517.4336},{"x":65,"y":518.1881},{"x":66,"y":518.6044},{"x":67,"y":520.334},{"x":68,"y":521.0821},{"x":69,"y":518.9551},{"x":70,"y":517.9046},{"x":71,"y":518.3208},{"x":72,"y":518.8176},{"x":73,"y":517.2892},{"x":74,"y":514.8359},{"x":75,"y":512.8684},{"x":76,"y":510.172},{"x":77,"y":503.7294},{"x":78,"y":496.0832},{"x":79,"y":490.9644},{"x":80,"y":485.5388},{"x":81,"y":480.219},{"x":82,"y":478.0453},{"x":83,"y":475.1307},{"x":84,"y":473.0779},{"x":85,"y":470.5059},{"x":86,"y":466.8079},{"x":87,"y":460.8546},{"x":88,"y":453.6991},{"x":89,"y":444.3507},{"x":90,"y":431.9699},{"x":91,"y":417.178},{"x":92,"y":403.9866},{"x":93,"y":388.1319},{"x":94,"y":369.655},{"x":95,"y":355.0118},{"x":96,"y":343.8632},{"x":97,"y":329.5792},{"x":98,"y":313.0801},{"x":99,"y":303.8542},{"x":100,"y":293.5083}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₁ᴀ(5-HT) in Area PFm","filename":"5-HT₁ᴀ(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT1A receptor in area PFm.** This profile plot shows examplary the course of the 5-HT1A receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₁ᴀ(5-HT) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₁ᴀ(5-HT) in Area PFm"],"datasets":[{"data":[{"x":0,"y":178.9409},{"x":1,"y":221.3682},{"x":2,"y":266.3416},{"x":3,"y":311.7817},{"x":4,"y":361.6268},{"x":5,"y":426.2078},{"x":6,"y":489.66},{"x":7,"y":548.3518},{"x":8,"y":601.5318},{"x":9,"y":645.1545},{"x":10,"y":684.4057},{"x":11,"y":714.9074},{"x":12,"y":730.3084},{"x":13,"y":743.4942},{"x":14,"y":754.8556},{"x":15,"y":760.8008},{"x":16,"y":762.8721},{"x":17,"y":767.2397},{"x":18,"y":763.0848},{"x":19,"y":753.0896},{"x":20,"y":737.7586},{"x":21,"y":718.7249},{"x":22,"y":701.1423},{"x":23,"y":676.8934},{"x":24,"y":644.1758},{"x":25,"y":609.7027},{"x":26,"y":569.6236},{"x":27,"y":525.946},{"x":28,"y":475.5022},{"x":29,"y":427.3785},{"x":30,"y":389.4978},{"x":31,"y":349.5367},{"x":32,"y":311.4599},{"x":33,"y":281.6493},{"x":34,"y":258.2406},{"x":35,"y":237.618},{"x":36,"y":222.0312},{"x":37,"y":208.6032},{"x":38,"y":195.7721},{"x":39,"y":187.0238},{"x":40,"y":175.7821},{"x":41,"y":164.8443},{"x":42,"y":153.9147},{"x":43,"y":145.9143},{"x":44,"y":141.9929},{"x":45,"y":137.4399},{"x":46,"y":134.4055},{"x":47,"y":133.3636},{"x":48,"y":131.8849},{"x":49,"y":130.0535},{"x":50,"y":130.0931},{"x":51,"y":131.0189},{"x":52,"y":133.618},{"x":53,"y":138.2265},{"x":54,"y":144.636},{"x":55,"y":149.7509},{"x":56,"y":156.749},{"x":57,"y":163.8689},{"x":58,"y":172.4409},{"x":59,"y":179.2705},{"x":60,"y":185.6774},{"x":61,"y":191.3106},{"x":62,"y":195.5594},{"x":63,"y":198.6216},{"x":64,"y":201.4065},{"x":65,"y":203.6512},{"x":66,"y":204.6507},{"x":67,"y":203.7297},{"x":68,"y":205.5465},{"x":69,"y":207.4703},{"x":70,"y":211.5302},{"x":71,"y":214.4259},{"x":72,"y":219.735},{"x":73,"y":223.0547},{"x":74,"y":229.8002},{"x":75,"y":232.2087},{"x":76,"y":233.7572},{"x":77,"y":232.442},{"x":78,"y":233.0222},{"x":79,"y":232.802},{"x":80,"y":232.3752},{"x":81,"y":230.6116},{"x":82,"y":231.2732},{"x":83,"y":233.0882},{"x":84,"y":231.3036},{"x":85,"y":228.7976},{"x":86,"y":226.3781},{"x":87,"y":221.5949},{"x":88,"y":220.6944},{"x":89,"y":220.0755},{"x":90,"y":220.5519},{"x":91,"y":220.722},{"x":92,"y":218.1681},{"x":93,"y":216.2651},{"x":94,"y":213.9825},{"x":95,"y":209.7935},{"x":96,"y":204.6744},{"x":97,"y":201.8038},{"x":98,"y":197.803},{"x":99,"y":188.8238},{"x":100,"y":179.1047}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of kainate (Glu) in Area PFm","filename":"kainate (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of kainate receptor in area PFm.** This profile plot shows examplary the course of the kainate receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of kainate (Glu) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of kainate (Glu) in Area PFm"],"datasets":[{"data":[{"x":0,"y":612.0971},{"x":1,"y":700.5788},{"x":2,"y":767.4826},{"x":3,"y":838.8742},{"x":4,"y":897.4627},{"x":5,"y":933.5483},{"x":6,"y":950.4446},{"x":7,"y":965.2636},{"x":8,"y":973.041},{"x":9,"y":976.2026},{"x":10,"y":971.9536},{"x":11,"y":962.0346},{"x":12,"y":954.711},{"x":13,"y":953.6688},{"x":14,"y":954.406},{"x":15,"y":946.2501},{"x":16,"y":941.4819},{"x":17,"y":937.8259},{"x":18,"y":931.7584},{"x":19,"y":930.3836},{"x":20,"y":923.0986},{"x":21,"y":923.6782},{"x":22,"y":938.3746},{"x":23,"y":947.7402},{"x":24,"y":948.2214},{"x":25,"y":953.8739},{"x":26,"y":962.4483},{"x":27,"y":970.1679},{"x":28,"y":978.8258},{"x":29,"y":992.4646},{"x":30,"y":1008.7311},{"x":31,"y":1017.1603},{"x":32,"y":1025.7543},{"x":33,"y":1031.6309},{"x":34,"y":1040.599},{"x":35,"y":1043.4077},{"x":36,"y":1041.2253},{"x":37,"y":1045.4147},{"x":38,"y":1053.6018},{"x":39,"y":1067.3037},{"x":40,"y":1080.9704},{"x":41,"y":1087.8732},{"x":42,"y":1099.4879},{"x":43,"y":1110.9138},{"x":44,"y":1115.5679},{"x":45,"y":1127.7745},{"x":46,"y":1137.1646},{"x":47,"y":1143.5387},{"x":48,"y":1151.5789},{"x":49,"y":1165.3944},{"x":50,"y":1177.7728},{"x":51,"y":1191.3442},{"x":52,"y":1208.9196},{"x":53,"y":1218.5714},{"x":54,"y":1225.3123},{"x":55,"y":1237.567},{"x":56,"y":1245.5211},{"x":57,"y":1250.3525},{"x":58,"y":1252.8015},{"x":59,"y":1256.9281},{"x":60,"y":1255.2233},{"x":61,"y":1256.4467},{"x":62,"y":1249.7518},{"x":63,"y":1240.9727},{"x":64,"y":1236.655},{"x":65,"y":1235.834},{"x":66,"y":1237.4067},{"x":67,"y":1238.0246},{"x":68,"y":1241.5674},{"x":69,"y":1243.809},{"x":70,"y":1241.4102},{"x":71,"y":1244.174},{"x":72,"y":1249.6207},{"x":73,"y":1252.3317},{"x":74,"y":1255.0968},{"x":75,"y":1253.6994},{"x":76,"y":1264.6417},{"x":77,"y":1281.7748},{"x":78,"y":1294.5093},{"x":79,"y":1300.1796},{"x":80,"y":1303.4348},{"x":81,"y":1302.8782},{"x":82,"y":1301.1223},{"x":83,"y":1298.1747},{"x":84,"y":1298.6703},{"x":85,"y":1285.2761},{"x":86,"y":1272.5903},{"x":87,"y":1267.3914},{"x":88,"y":1261.2636},{"x":89,"y":1253.4034},{"x":90,"y":1241.0226},{"x":91,"y":1236.1091},{"x":92,"y":1230.6918},{"x":93,"y":1219.3062},{"x":94,"y":1207.4386},{"x":95,"y":1194.7681},{"x":96,"y":1178.3724},{"x":97,"y":1147.7234},{"x":98,"y":1121.5922},{"x":99,"y":1107.9492},{"x":100,"y":1092.0591}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of M₂(ACh) in Area PFm","filename":"M₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M2 receptor in area PFm.** This profile plot shows examplary the course of the M2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₂(ACh) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₂(ACh) in Area PFm"],"datasets":[{"data":[{"x":0,"y":84.6477},{"x":1,"y":93.2695},{"x":2,"y":103.4352},{"x":3,"y":115.6859},{"x":4,"y":127.7598},{"x":5,"y":135.6121},{"x":6,"y":142.6476},{"x":7,"y":145.9338},{"x":8,"y":150.498},{"x":9,"y":155.1707},{"x":10,"y":156.9823},{"x":11,"y":157.7596},{"x":12,"y":157.8233},{"x":13,"y":157.6372},{"x":14,"y":158.8639},{"x":15,"y":158.7868},{"x":16,"y":158.7608},{"x":17,"y":157.914},{"x":18,"y":161.1105},{"x":19,"y":164.6396},{"x":20,"y":165.9435},{"x":21,"y":170.475},{"x":22,"y":176.8111},{"x":23,"y":179.0959},{"x":24,"y":178.736},{"x":25,"y":180.9806},{"x":26,"y":180.3764},{"x":27,"y":180.2802},{"x":28,"y":184.7803},{"x":29,"y":188.6613},{"x":30,"y":193.4912},{"x":31,"y":197.0957},{"x":32,"y":200.0429},{"x":33,"y":203.0107},{"x":34,"y":205.0235},{"x":35,"y":204.7353},{"x":36,"y":202.6343},{"x":37,"y":202.3725},{"x":38,"y":203.0957},{"x":39,"y":207.7596},{"x":40,"y":211.0369},{"x":41,"y":212.1601},{"x":42,"y":213.7542},{"x":43,"y":215.7543},{"x":44,"y":218.4313},{"x":45,"y":222.4281},{"x":46,"y":228.4705},{"x":47,"y":233.6961},{"x":48,"y":238.9946},{"x":49,"y":242.1399},{"x":50,"y":245.9088},{"x":51,"y":253.4642},{"x":52,"y":260.3492},{"x":53,"y":266.1818},{"x":54,"y":270.3434},{"x":55,"y":274.1293},{"x":56,"y":275.3021},{"x":57,"y":275.5601},{"x":58,"y":276.0092},{"x":59,"y":276.8751},{"x":60,"y":275.4816},{"x":61,"y":272.9742},{"x":62,"y":271.4523},{"x":63,"y":270.1365},{"x":64,"y":268.27},{"x":65,"y":266.6988},{"x":66,"y":262.7834},{"x":67,"y":259.8237},{"x":68,"y":254.7546},{"x":69,"y":249.7533},{"x":70,"y":245.4534},{"x":71,"y":241.7682},{"x":72,"y":239.8094},{"x":73,"y":238.0626},{"x":74,"y":235.8818},{"x":75,"y":230.7443},{"x":76,"y":228.0226},{"x":77,"y":226.4827},{"x":78,"y":222.9297},{"x":79,"y":220.2826},{"x":80,"y":215.0989},{"x":81,"y":210.7847},{"x":82,"y":205.7083},{"x":83,"y":196.8683},{"x":84,"y":191.1009},{"x":85,"y":187.6439},{"x":86,"y":185.2418},{"x":87,"y":182.5054},{"x":88,"y":178.8836},{"x":89,"y":175.7992},{"x":90,"y":171.9279},{"x":91,"y":166.7175},{"x":92,"y":157.6449},{"x":93,"y":147.1877},{"x":94,"y":139.3689},{"x":95,"y":134.1763},{"x":96,"y":129.1793},{"x":97,"y":126.9102},{"x":98,"y":126.3367},{"x":99,"y":122.3542},{"x":100,"y":116.9453}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area PFm","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of AMPA receptor in area PFm.** This profile plot shows examplary the course of the AMPA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area PFm"],"datasets":[{"data":[{"x":0,"y":405.5729},{"x":1,"y":451.8444},{"x":2,"y":497.2293},{"x":3,"y":525.8658},{"x":4,"y":545.0973},{"x":5,"y":557.324},{"x":6,"y":575.845},{"x":7,"y":598.0745},{"x":8,"y":616.0735},{"x":9,"y":630.0659},{"x":10,"y":641.9863},{"x":11,"y":652.885},{"x":12,"y":659.1001},{"x":13,"y":669.1597},{"x":14,"y":675.6552},{"x":15,"y":668.1356},{"x":16,"y":652.8647},{"x":17,"y":635.8774},{"x":18,"y":626.3587},{"x":19,"y":618.4538},{"x":20,"y":605.7924},{"x":21,"y":591.05},{"x":22,"y":576.7722},{"x":23,"y":568.0839},{"x":24,"y":561.7794},{"x":25,"y":553.1086},{"x":26,"y":548.8052},{"x":27,"y":532.8971},{"x":28,"y":519.8256},{"x":29,"y":516.2577},{"x":30,"y":503.6507},{"x":31,"y":496.4829},{"x":32,"y":488.3557},{"x":33,"y":466.8666},{"x":34,"y":456.7964},{"x":35,"y":460.8351},{"x":36,"y":466.4865},{"x":37,"y":464.9287},{"x":38,"y":454.4103},{"x":39,"y":449.8788},{"x":40,"y":431.8908},{"x":41,"y":417.7714},{"x":42,"y":409.133},{"x":43,"y":416.0307},{"x":44,"y":427.5151},{"x":45,"y":431.7865},{"x":46,"y":438.3853},{"x":47,"y":433.6461},{"x":48,"y":428.7599},{"x":49,"y":420.7188},{"x":50,"y":424.8132},{"x":51,"y":426.0907},{"x":52,"y":436.9364},{"x":53,"y":445.7628},{"x":54,"y":447.0122},{"x":55,"y":434.5986},{"x":56,"y":419.1719},{"x":57,"y":410.0317},{"x":58,"y":393.2125},{"x":59,"y":379.621},{"x":60,"y":374.2348},{"x":61,"y":374.2654},{"x":62,"y":379.0425},{"x":63,"y":388.3258},{"x":64,"y":392.2651},{"x":65,"y":399.2769},{"x":66,"y":399.7033},{"x":67,"y":396.3172},{"x":68,"y":394.2565},{"x":69,"y":398.9991},{"x":70,"y":396.441},{"x":71,"y":391.3304},{"x":72,"y":383.9955},{"x":73,"y":390.3641},{"x":74,"y":402.8404},{"x":75,"y":401.4029},{"x":76,"y":395.845},{"x":77,"y":392.7307},{"x":78,"y":384.5419},{"x":79,"y":382.5594},{"x":80,"y":385.6433},{"x":81,"y":392.5939},{"x":82,"y":403.0249},{"x":83,"y":405.9239},{"x":84,"y":399.9345},{"x":85,"y":391.6423},{"x":86,"y":393.2337},{"x":87,"y":396.4047},{"x":88,"y":399.3001},{"x":89,"y":399.894},{"x":90,"y":405.9114},{"x":91,"y":413.8407},{"x":92,"y":412.8103},{"x":93,"y":416.9961},{"x":94,"y":416.351},{"x":95,"y":410.828},{"x":96,"y":401.764},{"x":97,"y":397.6487},{"x":98,"y":386.7589},{"x":99,"y":366.2726},{"x":100,"y":344.3997}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of D₁(DA) in Area PFm","filename":"D₁(DA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of D1 receptor in area PFm.** This profile plot shows examplary the course of the D1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of D₁(DA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of D₁(DA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":71.7961},{"x":1,"y":96.0361},{"x":2,"y":121.9873},{"x":3,"y":148.5828},{"x":4,"y":169.607},{"x":5,"y":183.1485},{"x":6,"y":193.7369},{"x":7,"y":202.2761},{"x":8,"y":207.5636},{"x":9,"y":209.1416},{"x":10,"y":209.6546},{"x":11,"y":209.2487},{"x":12,"y":210.3938},{"x":13,"y":209.1629},{"x":14,"y":207.6902},{"x":15,"y":206.7537},{"x":16,"y":204.9011},{"x":17,"y":202.9269},{"x":18,"y":203.6056},{"x":19,"y":204.3025},{"x":20,"y":206.8464},{"x":21,"y":207.2218},{"x":22,"y":205.8387},{"x":23,"y":203.5968},{"x":24,"y":199.5774},{"x":25,"y":193.7339},{"x":26,"y":188.6019},{"x":27,"y":183.4718},{"x":28,"y":180.0857},{"x":29,"y":178.3286},{"x":30,"y":176.8736},{"x":31,"y":171.8384},{"x":32,"y":168.8552},{"x":33,"y":166.5311},{"x":34,"y":164.7591},{"x":35,"y":164.5351},{"x":36,"y":164.0599},{"x":37,"y":162.187},{"x":38,"y":161.5447},{"x":39,"y":160.8484},{"x":40,"y":159.9339},{"x":41,"y":157.7707},{"x":42,"y":159.0717},{"x":43,"y":159.6655},{"x":44,"y":159.7806},{"x":45,"y":163.0386},{"x":46,"y":166.6397},{"x":47,"y":169.43},{"x":48,"y":170.9491},{"x":49,"y":173.6838},{"x":50,"y":174.9978},{"x":51,"y":174.3716},{"x":52,"y":177.6136},{"x":53,"y":178.6717},{"x":54,"y":178.3596},{"x":55,"y":178.7765},{"x":56,"y":179.5655},{"x":57,"y":181.5343},{"x":58,"y":180.1617},{"x":59,"y":181.883},{"x":60,"y":182.7184},{"x":61,"y":181.9094},{"x":62,"y":182.0055},{"x":63,"y":181.4463},{"x":64,"y":180.1232},{"x":65,"y":181.4385},{"x":66,"y":180.6042},{"x":67,"y":181.7121},{"x":68,"y":182.9283},{"x":69,"y":182.7583},{"x":70,"y":179.6249},{"x":71,"y":177.1991},{"x":72,"y":176.6458},{"x":73,"y":176.831},{"x":74,"y":176.1423},{"x":75,"y":175.3482},{"x":76,"y":173.3404},{"x":77,"y":170.9682},{"x":78,"y":169.3456},{"x":79,"y":169.2848},{"x":80,"y":169.2037},{"x":81,"y":169.232},{"x":82,"y":165.9925},{"x":83,"y":162.5302},{"x":84,"y":162.7598},{"x":85,"y":161.8939},{"x":86,"y":160.9315},{"x":87,"y":157.2686},{"x":88,"y":152.5733},{"x":89,"y":150.7818},{"x":90,"y":149.7141},{"x":91,"y":149.2394},{"x":92,"y":148.6755},{"x":93,"y":147.1266},{"x":94,"y":147.1818},{"x":95,"y":145.8475},{"x":96,"y":143.4535},{"x":97,"y":137.7632},{"x":98,"y":133.8054},{"x":99,"y":124.6529},{"x":100,"y":117.0293}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area PFm","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M3 receptor in area PFm.** This profile plot shows examplary the course of the M3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area PFm"],"datasets":[{"data":[{"x":0,"y":1187.3566},{"x":1,"y":1323.5235},{"x":2,"y":1428.9562},{"x":3,"y":1486.5143},{"x":4,"y":1550.7895},{"x":5,"y":1603.5561},{"x":6,"y":1646.1602},{"x":7,"y":1676.798},{"x":8,"y":1695.4511},{"x":9,"y":1712.1351},{"x":10,"y":1732.3376},{"x":11,"y":1746.039},{"x":12,"y":1757.3188},{"x":13,"y":1764.7332},{"x":14,"y":1767.9907},{"x":15,"y":1771.4037},{"x":16,"y":1775.9087},{"x":17,"y":1778.1755},{"x":18,"y":1778.8636},{"x":19,"y":1789.6876},{"x":20,"y":1804.7697},{"x":21,"y":1808.8769},{"x":22,"y":1808.3629},{"x":23,"y":1805.0579},{"x":24,"y":1803.5057},{"x":25,"y":1798.2686},{"x":26,"y":1790.0578},{"x":27,"y":1783.3516},{"x":28,"y":1776.504},{"x":29,"y":1763.8394},{"x":30,"y":1748.0961},{"x":31,"y":1730.7008},{"x":32,"y":1715.2495},{"x":33,"y":1699.4509},{"x":34,"y":1691.9305},{"x":35,"y":1687.5653},{"x":36,"y":1685.895},{"x":37,"y":1683.7524},{"x":38,"y":1678.8643},{"x":39,"y":1667.4082},{"x":40,"y":1655.397},{"x":41,"y":1645.8773},{"x":42,"y":1634.125},{"x":43,"y":1627.5713},{"x":44,"y":1621.7817},{"x":45,"y":1620.5241},{"x":46,"y":1617.425},{"x":47,"y":1614.6611},{"x":48,"y":1610.3926},{"x":49,"y":1603.4878},{"x":50,"y":1598.6887},{"x":51,"y":1593.8563},{"x":52,"y":1587.7358},{"x":53,"y":1581.487},{"x":54,"y":1570.3626},{"x":55,"y":1558.6219},{"x":56,"y":1545.252},{"x":57,"y":1533.5059},{"x":58,"y":1525.0995},{"x":59,"y":1518.164},{"x":60,"y":1514.1891},{"x":61,"y":1510.3113},{"x":62,"y":1507.5093},{"x":63,"y":1508.0609},{"x":64,"y":1501.4626},{"x":65,"y":1498.8259},{"x":66,"y":1498.6077},{"x":67,"y":1497.1689},{"x":68,"y":1497.458},{"x":69,"y":1498.13},{"x":70,"y":1497.4811},{"x":71,"y":1498.9913},{"x":72,"y":1501.9641},{"x":73,"y":1504.9326},{"x":74,"y":1505.4971},{"x":75,"y":1501.024},{"x":76,"y":1495.4044},{"x":77,"y":1487.6982},{"x":78,"y":1477.4397},{"x":79,"y":1471.5396},{"x":80,"y":1467.5162},{"x":81,"y":1463.8119},{"x":82,"y":1459.0814},{"x":83,"y":1449.3861},{"x":84,"y":1435.3861},{"x":85,"y":1419.4158},{"x":86,"y":1403.7526},{"x":87,"y":1385.1055},{"x":88,"y":1359.1972},{"x":89,"y":1332.6952},{"x":90,"y":1300.6404},{"x":91,"y":1265.4414},{"x":92,"y":1229.3579},{"x":93,"y":1193.6507},{"x":94,"y":1152.3841},{"x":95,"y":1114.6689},{"x":96,"y":1073.1532},{"x":97,"y":1037.2619},{"x":98,"y":1007.3073},{"x":99,"y":968.4259},{"x":100,"y":926.7198}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area PFm","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of mGluR2_3 receptor in area PFm.** This profile plot shows examplary the course of the mGluR2_3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area PFm"],"datasets":[{"data":[{"x":0,"y":1527.3001},{"x":1,"y":1839.0984},{"x":2,"y":2189.7366},{"x":3,"y":2639.5104},{"x":4,"y":3131.3987},{"x":5,"y":3546.1502},{"x":6,"y":3968.0329},{"x":7,"y":4313.3664},{"x":8,"y":4629.8887},{"x":9,"y":4921.8474},{"x":10,"y":5182.0203},{"x":11,"y":5426.3305},{"x":12,"y":5630.5118},{"x":13,"y":5826.4645},{"x":14,"y":6018.1452},{"x":15,"y":6144.1827},{"x":16,"y":6230.8311},{"x":17,"y":6263.8153},{"x":18,"y":6295.1772},{"x":19,"y":6296.3602},{"x":20,"y":6294.3915},{"x":21,"y":6314.7012},{"x":22,"y":6362.3784},{"x":23,"y":6393.6048},{"x":24,"y":6420.5427},{"x":25,"y":6462.1369},{"x":26,"y":6503.4864},{"x":27,"y":6486.3374},{"x":28,"y":6458.1349},{"x":29,"y":6408.5281},{"x":30,"y":6308.3592},{"x":31,"y":6183.2181},{"x":32,"y":6088.2681},{"x":33,"y":5990.1512},{"x":34,"y":5911.5681},{"x":35,"y":5814.0018},{"x":36,"y":5734.8252},{"x":37,"y":5661.2506},{"x":38,"y":5574.9418},{"x":39,"y":5489.2553},{"x":40,"y":5425.5495},{"x":41,"y":5373.17},{"x":42,"y":5327.9416},{"x":43,"y":5299.4144},{"x":44,"y":5248.7505},{"x":45,"y":5200.1832},{"x":46,"y":5163.8114},{"x":47,"y":5144.2242},{"x":48,"y":5116.2263},{"x":49,"y":5087.371},{"x":50,"y":5045.9499},{"x":51,"y":4961.5553},{"x":52,"y":4864.9578},{"x":53,"y":4758.0079},{"x":54,"y":4660.895},{"x":55,"y":4598.5002},{"x":56,"y":4536.0734},{"x":57,"y":4461.2234},{"x":58,"y":4398.3649},{"x":59,"y":4355.6073},{"x":60,"y":4314.6257},{"x":61,"y":4267.4302},{"x":62,"y":4189.1331},{"x":63,"y":4131.0034},{"x":64,"y":4072.6532},{"x":65,"y":3997.7178},{"x":66,"y":3924.6518},{"x":67,"y":3860.0437},{"x":68,"y":3787.0319},{"x":69,"y":3704.1567},{"x":70,"y":3633.4575},{"x":71,"y":3567.382},{"x":72,"y":3512.4774},{"x":73,"y":3477.1785},{"x":74,"y":3454.906},{"x":75,"y":3445.1648},{"x":76,"y":3436.9216},{"x":77,"y":3436.4549},{"x":78,"y":3437.5753},{"x":79,"y":3415.6112},{"x":80,"y":3392.0835},{"x":81,"y":3375.1237},{"x":82,"y":3364.7892},{"x":83,"y":3354.9507},{"x":84,"y":3328.3289},{"x":85,"y":3303.3088},{"x":86,"y":3263.5839},{"x":87,"y":3211.2551},{"x":88,"y":3166.2806},{"x":89,"y":3117.2966},{"x":90,"y":3042.0249},{"x":91,"y":2985.2467},{"x":92,"y":2883.7574},{"x":93,"y":2773.0366},{"x":94,"y":2642.1972},{"x":95,"y":2502.4948},{"x":96,"y":2377.1516},{"x":97,"y":2268.729},{"x":98,"y":2177.3427},{"x":99,"y":2123.8062},{"x":100,"y":2083.8323}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₂(5-HT) in Area PFm","filename":"5-HT₂(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT2 receptor in area PFm.** This profile plot shows examplary the course of the 5-HT2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₂(5-HT) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₂(5-HT) in Area PFm"],"datasets":[{"data":[{"x":0,"y":350.924},{"x":1,"y":384.2545},{"x":2,"y":420.4888},{"x":3,"y":453.5182},{"x":4,"y":475.1151},{"x":5,"y":488.122},{"x":6,"y":501.9878},{"x":7,"y":527.154},{"x":8,"y":551.6976},{"x":9,"y":576.1593},{"x":10,"y":601.1472},{"x":11,"y":626.8803},{"x":12,"y":646.6886},{"x":13,"y":669.9733},{"x":14,"y":695.0681},{"x":15,"y":723.951},{"x":16,"y":751.1475},{"x":17,"y":779.3186},{"x":18,"y":811.9418},{"x":19,"y":841.6441},{"x":20,"y":870.2346},{"x":21,"y":902.4196},{"x":22,"y":933.2005},{"x":23,"y":955.4812},{"x":24,"y":973.7632},{"x":25,"y":994.3365},{"x":26,"y":1010.2058},{"x":27,"y":1032.3017},{"x":28,"y":1050.0611},{"x":29,"y":1070.9975},{"x":30,"y":1086.8784},{"x":31,"y":1092.7762},{"x":32,"y":1093.2012},{"x":33,"y":1087.0664},{"x":34,"y":1076.1617},{"x":35,"y":1061.3283},{"x":36,"y":1050.8619},{"x":37,"y":1038.326},{"x":38,"y":1026.0398},{"x":39,"y":1013.1174},{"x":40,"y":995.1291},{"x":41,"y":982.5762},{"x":42,"y":972.3553},{"x":43,"y":959.9188},{"x":44,"y":950.6932},{"x":45,"y":940.5263},{"x":46,"y":934.7189},{"x":47,"y":930.807},{"x":48,"y":929.6185},{"x":49,"y":931.1468},{"x":50,"y":932.5176},{"x":51,"y":934.2126},{"x":52,"y":931.8024},{"x":53,"y":929.4346},{"x":54,"y":928.0453},{"x":55,"y":923.7144},{"x":56,"y":915.6868},{"x":57,"y":908.9238},{"x":58,"y":899.4296},{"x":59,"y":886.0047},{"x":60,"y":873.9596},{"x":61,"y":865.4562},{"x":62,"y":856.5329},{"x":63,"y":845.7543},{"x":64,"y":834.0316},{"x":65,"y":816.9375},{"x":66,"y":798.7362},{"x":67,"y":782.2733},{"x":68,"y":768.0219},{"x":69,"y":756.9281},{"x":70,"y":749.4084},{"x":71,"y":738.0489},{"x":72,"y":726.5856},{"x":73,"y":718.8053},{"x":74,"y":710.0391},{"x":75,"y":704.2395},{"x":76,"y":697.6099},{"x":77,"y":691.1072},{"x":78,"y":683.6053},{"x":79,"y":665.6237},{"x":80,"y":650.4815},{"x":81,"y":640.1421},{"x":82,"y":633.3483},{"x":83,"y":629.3863},{"x":84,"y":630.3066},{"x":85,"y":628.2752},{"x":86,"y":620.8921},{"x":87,"y":613.1794},{"x":88,"y":604.1506},{"x":89,"y":594.4043},{"x":90,"y":581.6574},{"x":91,"y":568.0625},{"x":92,"y":556.0725},{"x":93,"y":542.6974},{"x":94,"y":527.2901},{"x":95,"y":516.9345},{"x":96,"y":508.7705},{"x":97,"y":491.4733},{"x":98,"y":470.0076},{"x":99,"y":454.3691},{"x":100,"y":443.1489}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴃ(GABA) in Area PFm","filename":"GABAᴃ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAB receptor in area PFm.** This profile plot shows examplary the course of the GABAB receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴃ(GABA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴃ(GABA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":573.1877},{"x":1,"y":804.0202},{"x":2,"y":1071.8902},{"x":3,"y":1339.0262},{"x":4,"y":1599.0561},{"x":5,"y":1891.4777},{"x":6,"y":2183.0962},{"x":7,"y":2471.9999},{"x":8,"y":2724.2566},{"x":9,"y":2973.4222},{"x":10,"y":3214.1044},{"x":11,"y":3428.8791},{"x":12,"y":3622.7196},{"x":13,"y":3802.703},{"x":14,"y":3941.5544},{"x":15,"y":4045.2755},{"x":16,"y":4122.2815},{"x":17,"y":4177.8563},{"x":18,"y":4229.1878},{"x":19,"y":4280.8852},{"x":20,"y":4311.9339},{"x":21,"y":4336.7753},{"x":22,"y":4367.9924},{"x":23,"y":4380.3107},{"x":24,"y":4376.6181},{"x":25,"y":4350.6657},{"x":26,"y":4315.2528},{"x":27,"y":4285.5},{"x":28,"y":4262.5087},{"x":29,"y":4253.2519},{"x":30,"y":4244.5886},{"x":31,"y":4197.4294},{"x":32,"y":4096.0252},{"x":33,"y":3982.8171},{"x":34,"y":3877.8225},{"x":35,"y":3790.9951},{"x":36,"y":3720.0325},{"x":37,"y":3672.8532},{"x":38,"y":3646.2768},{"x":39,"y":3623.06},{"x":40,"y":3608.05},{"x":41,"y":3579.1184},{"x":42,"y":3556.7084},{"x":43,"y":3518.7706},{"x":44,"y":3474.4283},{"x":45,"y":3421.4001},{"x":46,"y":3356.5385},{"x":47,"y":3296.1175},{"x":48,"y":3242.3036},{"x":49,"y":3203.5722},{"x":50,"y":3172.9243},{"x":51,"y":3152.7316},{"x":52,"y":3160.0208},{"x":53,"y":3182.0019},{"x":54,"y":3200.4349},{"x":55,"y":3210.4232},{"x":56,"y":3220.7546},{"x":57,"y":3231.9356},{"x":58,"y":3229.8094},{"x":59,"y":3199.2304},{"x":60,"y":3149.499},{"x":61,"y":3090.6089},{"x":62,"y":3041.8902},{"x":63,"y":3009.7549},{"x":64,"y":2986.3286},{"x":65,"y":2951.1689},{"x":66,"y":2913.7027},{"x":67,"y":2876.8481},{"x":68,"y":2851.3901},{"x":69,"y":2843.3843},{"x":70,"y":2848.4798},{"x":71,"y":2865.8639},{"x":72,"y":2890.695},{"x":73,"y":2907.7937},{"x":74,"y":2899.8862},{"x":75,"y":2881.5885},{"x":76,"y":2858.776},{"x":77,"y":2826.9979},{"x":78,"y":2796.5929},{"x":79,"y":2771.0312},{"x":80,"y":2743.2496},{"x":81,"y":2720.0674},{"x":82,"y":2700.2702},{"x":83,"y":2664.1631},{"x":84,"y":2616.6772},{"x":85,"y":2550.1042},{"x":86,"y":2489.7028},{"x":87,"y":2425.079},{"x":88,"y":2347.6158},{"x":89,"y":2275.0935},{"x":90,"y":2186.8813},{"x":91,"y":2112.803},{"x":92,"y":2051.0543},{"x":93,"y":1994.9916},{"x":94,"y":1942.902},{"x":95,"y":1875.2428},{"x":96,"y":1769.9738},{"x":97,"y":1668.7373},{"x":98,"y":1564.0407},{"x":99,"y":1444.2464},{"x":100,"y":1326.3748}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null}]],["Density measurements of different receptors for Area PGp",[{"name":"Receptor density fingerprint of Area PGp","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["428","518","1081","3416","1847","2374","2294","461","202","843","54","386","855","315","419","130"]},{"label":"mean_sd","data":["242","360","313","1572","767","790","830","180","74","432","31","165","mg/mol","169","233","58"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PGp (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(42,60,252,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area 45",[{"name":"Receptor density fingerprint of Area 45","filename":"fingerprint","mimetype":"application/json","properties":{"description":"**Multireceptor fingerprint for area 45.** This polar plot shows the mean receptor densities in fmol/mg protein (solid shape) and standard deviation (dashed line) of 16 receptor binding sites in the area 45. The data is based on the left and right hemisphere of one female subject (brain id: hg0201, sample ids: ID07 and ID08, age: 77, cause of death: lung edema) and the right hemispheres of two male subjects (brain id: hg0500, sample ids: ID09, age: 72, cause of death: cardiac arrest | brain id: hg0100, sample ids: ID12, age: 77, cause of death: coronary heart disease).","publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["472","434","1078","NA","1515","1428","2038","676","215","420","47","200","165","404","266","69"]},{"label":"mean_sd","data":["379","264","40","NA","283","1197","1372","493","162","20","49","143","136","346","192","51"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 45 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(255,255,0,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAᴀ(BZ) in Area 45","filename":"GABAᴀ(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_BZ.jpg"},{"name":"Sample autoradiograph of α₁(NA) in Area 45","filename":"α₁(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area 45","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAᴀ(GABA) in Area 45","filename":"GABAᴀ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area 45","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area 45","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of M₁(ACh) in Area 45","filename":"M₁(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HT₁ᴀ(5-HT) in Area 45","filename":"5-HT₁ᴀ(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area 45","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_kainate.jpg"},{"name":"Sample autoradiograph of M₂(ACh) in Area 45","filename":"M₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area 45","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_AMPA.jpg"},{"name":"Sample autoradiograph of D₁(DA) in Area 45","filename":"D₁(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area 45","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area 45","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HT₂(5-HT) in Area 45","filename":"5-HT₂(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAᴃ(GABA) in Area 45","filename":"GABAᴃ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_GABAB.jpg"},{"name":"Sample profile of GABAᴀ(BZ) in Area 45","filename":"GABAᴀ(BZ)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of BZ receptor in area 45.** This profile plot shows examplary the course of the BZ receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(BZ) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(BZ) in Area 45"],"datasets":[{"data":[{"x":0,"y":1460.5346},{"x":1,"y":1583.3308},{"x":2,"y":1708.1363},{"x":3,"y":1800.648},{"x":4,"y":1890.2756},{"x":5,"y":1984.8448},{"x":6,"y":2070.8684},{"x":7,"y":2152.0161},{"x":8,"y":2222.3149},{"x":9,"y":2291.0953},{"x":10,"y":2356.3471},{"x":11,"y":2423.0595},{"x":12,"y":2481.5627},{"x":13,"y":2528.1947},{"x":14,"y":2561.3445},{"x":15,"y":2579.1757},{"x":16,"y":2590.0611},{"x":17,"y":2599.5073},{"x":18,"y":2600.3773},{"x":19,"y":2596.3105},{"x":20,"y":2599.551},{"x":21,"y":2610.8303},{"x":22,"y":2630.3976},{"x":23,"y":2650.42},{"x":24,"y":2661.193},{"x":25,"y":2673.7478},{"x":26,"y":2696.2352},{"x":27,"y":2715.9422},{"x":28,"y":2722.3722},{"x":29,"y":2714.4745},{"x":30,"y":2696.9457},{"x":31,"y":2666.065},{"x":32,"y":2628.7015},{"x":33,"y":2586.6432},{"x":34,"y":2539.0687},{"x":35,"y":2492.0848},{"x":36,"y":2445.7293},{"x":37,"y":2401.4904},{"x":38,"y":2355.5708},{"x":39,"y":2307.831},{"x":40,"y":2266.8691},{"x":41,"y":2227.8105},{"x":42,"y":2189.3588},{"x":43,"y":2160.8589},{"x":44,"y":2138.9827},{"x":45,"y":2124.0153},{"x":46,"y":2112.5699},{"x":47,"y":2107.8888},{"x":48,"y":2115.4407},{"x":49,"y":2125.1132},{"x":50,"y":2134.312},{"x":51,"y":2144.0797},{"x":52,"y":2148.1026},{"x":53,"y":2140.9344},{"x":54,"y":2126.352},{"x":55,"y":2107.0662},{"x":56,"y":2080.8445},{"x":57,"y":2044.8838},{"x":58,"y":2005.5724},{"x":59,"y":1971.4869},{"x":60,"y":1945.5765},{"x":61,"y":1920.2847},{"x":62,"y":1903.216},{"x":63,"y":1896.7831},{"x":64,"y":1896.8248},{"x":65,"y":1896.7542},{"x":66,"y":1896.0333},{"x":67,"y":1898.1594},{"x":68,"y":1898.8414},{"x":69,"y":1898.7958},{"x":70,"y":1893.3436},{"x":71,"y":1883.2048},{"x":72,"y":1866.9435},{"x":73,"y":1852.3357},{"x":74,"y":1837.6232},{"x":75,"y":1820.6235},{"x":76,"y":1801.4688},{"x":77,"y":1781.3909},{"x":78,"y":1760.8147},{"x":79,"y":1739.6217},{"x":80,"y":1712.6818},{"x":81,"y":1684.8448},{"x":82,"y":1654.5207},{"x":83,"y":1621.3143},{"x":84,"y":1585.5909},{"x":85,"y":1547.395},{"x":86,"y":1511.2916},{"x":87,"y":1469.6548},{"x":88,"y":1430.0076},{"x":89,"y":1392.449},{"x":90,"y":1359.7888},{"x":91,"y":1325.4199},{"x":92,"y":1293.4337},{"x":93,"y":1259.0874},{"x":94,"y":1221.506},{"x":95,"y":1183.6323},{"x":96,"y":1148.2095},{"x":97,"y":1114.2643},{"x":98,"y":1083.8378},{"x":99,"y":1047.8342},{"x":100,"y":1012.4125}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of α₁(NA) in Area 45","filename":"α₁(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha1 receptor in area 45.** This profile plot shows examplary the course of the alpha1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₁(NA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₁(NA) in Area 45"],"datasets":[{"data":[{"x":0,"y":327.8791},{"x":1,"y":341.1026},{"x":2,"y":351.617},{"x":3,"y":359.3051},{"x":4,"y":364.3489},{"x":5,"y":368.2543},{"x":6,"y":369.8121},{"x":7,"y":370.5904},{"x":8,"y":370.2079},{"x":9,"y":368.4334},{"x":10,"y":366.0463},{"x":11,"y":363.6573},{"x":12,"y":360.9928},{"x":13,"y":358.2906},{"x":14,"y":354.5059},{"x":15,"y":351.5285},{"x":16,"y":349.3263},{"x":17,"y":347.299},{"x":18,"y":344.9121},{"x":19,"y":342.3601},{"x":20,"y":339.4348},{"x":21,"y":337.1609},{"x":22,"y":334.8319},{"x":23,"y":332.476},{"x":24,"y":329.6532},{"x":25,"y":326.627},{"x":26,"y":323.0913},{"x":27,"y":319.9109},{"x":28,"y":316.3637},{"x":29,"y":313.8329},{"x":30,"y":312.1855},{"x":31,"y":309.8868},{"x":32,"y":307.8339},{"x":33,"y":305.3263},{"x":34,"y":303.0805},{"x":35,"y":300.7978},{"x":36,"y":297.37},{"x":37,"y":294.9973},{"x":38,"y":292.9894},{"x":39,"y":290.5998},{"x":40,"y":288.3233},{"x":41,"y":285.9239},{"x":42,"y":283.3922},{"x":43,"y":280.0843},{"x":44,"y":276.3924},{"x":45,"y":272.3486},{"x":46,"y":268.0093},{"x":47,"y":263.137},{"x":48,"y":257.545},{"x":49,"y":252.9017},{"x":50,"y":248.6916},{"x":51,"y":243.4231},{"x":52,"y":238.875},{"x":53,"y":235.322},{"x":54,"y":232.3812},{"x":55,"y":229.4491},{"x":56,"y":228.4114},{"x":57,"y":228.2313},{"x":58,"y":229.1504},{"x":59,"y":230.5842},{"x":60,"y":231.8071},{"x":61,"y":234.1302},{"x":62,"y":236.2096},{"x":63,"y":237.869},{"x":64,"y":239.9943},{"x":65,"y":242.0023},{"x":66,"y":242.9794},{"x":67,"y":243.8649},{"x":68,"y":244.8978},{"x":69,"y":245.1278},{"x":70,"y":245.4387},{"x":71,"y":245.8692},{"x":72,"y":246.3646},{"x":73,"y":246.9616},{"x":74,"y":247.4434},{"x":75,"y":247.6941},{"x":76,"y":248.3069},{"x":77,"y":248.0117},{"x":78,"y":248.1423},{"x":79,"y":248.4666},{"x":80,"y":247.758},{"x":81,"y":247.3917},{"x":82,"y":247.5765},{"x":83,"y":247.33},{"x":84,"y":246.4404},{"x":85,"y":245.1479},{"x":86,"y":243.0743},{"x":87,"y":239.8171},{"x":88,"y":237.5107},{"x":89,"y":234.2044},{"x":90,"y":229.576},{"x":91,"y":224.9077},{"x":92,"y":220.0178},{"x":93,"y":214.1619},{"x":94,"y":208.4733},{"x":95,"y":201.9736},{"x":96,"y":194.6076},{"x":97,"y":187.7017},{"x":98,"y":181.5218},{"x":99,"y":173.9228},{"x":100,"y":165.131}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area 45","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of NMDA receptor in area 45.** This profile plot shows examplary the course of the NMDA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area 45"],"datasets":[{"data":[{"x":0,"y":794.48},{"x":1,"y":940.5194},{"x":2,"y":1053.7778},{"x":3,"y":1138.8911},{"x":4,"y":1203.1464},{"x":5,"y":1267.0606},{"x":6,"y":1327.3684},{"x":7,"y":1379.3621},{"x":8,"y":1419.2054},{"x":9,"y":1446.2068},{"x":10,"y":1473.0183},{"x":11,"y":1492.259},{"x":12,"y":1518.4788},{"x":13,"y":1535.2658},{"x":14,"y":1544.8996},{"x":15,"y":1552.355},{"x":16,"y":1558.8289},{"x":17,"y":1564.4463},{"x":18,"y":1562.6365},{"x":19,"y":1559.8785},{"x":20,"y":1552.9332},{"x":21,"y":1554.6604},{"x":22,"y":1554.1087},{"x":23,"y":1560.5853},{"x":24,"y":1562.5948},{"x":25,"y":1571.5308},{"x":26,"y":1572.5263},{"x":27,"y":1574.6635},{"x":28,"y":1578.3071},{"x":29,"y":1580.245},{"x":30,"y":1576.3369},{"x":31,"y":1572.3838},{"x":32,"y":1560.6553},{"x":33,"y":1540.2516},{"x":34,"y":1528.7306},{"x":35,"y":1524.9832},{"x":36,"y":1519.8077},{"x":37,"y":1511.4899},{"x":38,"y":1496.5061},{"x":39,"y":1480.3498},{"x":40,"y":1458.8332},{"x":41,"y":1443.0229},{"x":42,"y":1435.5261},{"x":43,"y":1442.0053},{"x":44,"y":1444.9074},{"x":45,"y":1441.6402},{"x":46,"y":1431.2902},{"x":47,"y":1414.4441},{"x":48,"y":1386.7586},{"x":49,"y":1366.3089},{"x":50,"y":1356.5942},{"x":51,"y":1344.4671},{"x":52,"y":1347.008},{"x":53,"y":1353.9855},{"x":54,"y":1361.1103},{"x":55,"y":1370.0409},{"x":56,"y":1372.2204},{"x":57,"y":1368.4059},{"x":58,"y":1351.1588},{"x":59,"y":1322.46},{"x":60,"y":1289.138},{"x":61,"y":1265.448},{"x":62,"y":1254.4053},{"x":63,"y":1248.441},{"x":64,"y":1243.3412},{"x":65,"y":1237.8682},{"x":66,"y":1242.824},{"x":67,"y":1246.9858},{"x":68,"y":1263.4056},{"x":69,"y":1278.3532},{"x":70,"y":1288.1314},{"x":71,"y":1290.8899},{"x":72,"y":1292.9224},{"x":73,"y":1299.5247},{"x":74,"y":1303.8868},{"x":75,"y":1301.8321},{"x":76,"y":1300.349},{"x":77,"y":1296.586},{"x":78,"y":1289.4988},{"x":79,"y":1285.662},{"x":80,"y":1267.5848},{"x":81,"y":1257.3968},{"x":82,"y":1252.3141},{"x":83,"y":1241.438},{"x":84,"y":1222.7781},{"x":85,"y":1212.0271},{"x":86,"y":1190.7008},{"x":87,"y":1171.4413},{"x":88,"y":1155.1947},{"x":89,"y":1135.3368},{"x":90,"y":1119.4464},{"x":91,"y":1105.8203},{"x":92,"y":1095.4363},{"x":93,"y":1091.4803},{"x":94,"y":1087.1864},{"x":95,"y":1078.3759},{"x":96,"y":1066.9846},{"x":97,"y":1043.7603},{"x":98,"y":1004.485},{"x":99,"y":956.7271},{"x":100,"y":913.7368}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴀ(GABA) in Area 45","filename":"GABAᴀ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAA receptor in area 45.** This profile plot shows examplary the course of the GABAA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(GABA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(GABA) in Area 45"],"datasets":[{"data":[{"x":0,"y":634.7955},{"x":1,"y":715.7687},{"x":2,"y":781.4727},{"x":3,"y":841.6638},{"x":4,"y":893.3103},{"x":5,"y":942.649},{"x":6,"y":985.8463},{"x":7,"y":1025.6416},{"x":8,"y":1062.7935},{"x":9,"y":1096.052},{"x":10,"y":1126.9579},{"x":11,"y":1153.8377},{"x":12,"y":1179.5711},{"x":13,"y":1201.6221},{"x":14,"y":1229.0763},{"x":15,"y":1253.4402},{"x":16,"y":1275.9424},{"x":17,"y":1296.356},{"x":18,"y":1314.8697},{"x":19,"y":1331.5639},{"x":20,"y":1347.287},{"x":21,"y":1360.9799},{"x":22,"y":1372.1697},{"x":23,"y":1380.9359},{"x":24,"y":1388.4395},{"x":25,"y":1392.0004},{"x":26,"y":1396.9711},{"x":27,"y":1401.0227},{"x":28,"y":1403.3993},{"x":29,"y":1404.9848},{"x":30,"y":1404.3766},{"x":31,"y":1402.9943},{"x":32,"y":1401.174},{"x":33,"y":1399.7365},{"x":34,"y":1397.613},{"x":35,"y":1394.3467},{"x":36,"y":1387.9961},{"x":37,"y":1379.3701},{"x":38,"y":1371.4225},{"x":39,"y":1358.4867},{"x":40,"y":1342.9006},{"x":41,"y":1327.155},{"x":42,"y":1315.2908},{"x":43,"y":1305.4578},{"x":44,"y":1295.1727},{"x":45,"y":1287.0624},{"x":46,"y":1278.0306},{"x":47,"y":1266.3693},{"x":48,"y":1257.2815},{"x":49,"y":1245.7491},{"x":50,"y":1235.1726},{"x":51,"y":1224.1686},{"x":52,"y":1208.1746},{"x":53,"y":1192.3328},{"x":54,"y":1177.2653},{"x":55,"y":1163.3418},{"x":56,"y":1147.4035},{"x":57,"y":1129.5419},{"x":58,"y":1114.4937},{"x":59,"y":1099.1838},{"x":60,"y":1086.0729},{"x":61,"y":1076.9446},{"x":62,"y":1070.4595},{"x":63,"y":1064.1696},{"x":64,"y":1058.0249},{"x":65,"y":1053.0802},{"x":66,"y":1044.8731},{"x":67,"y":1035.0001},{"x":68,"y":1023.007},{"x":69,"y":1006.423},{"x":70,"y":991.4522},{"x":71,"y":978.5116},{"x":72,"y":967.3209},{"x":73,"y":956.6532},{"x":74,"y":947.8532},{"x":75,"y":941.6319},{"x":76,"y":935.5573},{"x":77,"y":930.03},{"x":78,"y":926.5992},{"x":79,"y":925.0053},{"x":80,"y":920.6719},{"x":81,"y":918.1176},{"x":82,"y":915.8306},{"x":83,"y":914.1149},{"x":84,"y":913.2848},{"x":85,"y":911.3195},{"x":86,"y":910.1863},{"x":87,"y":905.2434},{"x":88,"y":899.6303},{"x":89,"y":892.9108},{"x":90,"y":884.336},{"x":91,"y":875.9214},{"x":92,"y":868.2849},{"x":93,"y":858.6831},{"x":94,"y":847.3264},{"x":95,"y":832.4932},{"x":96,"y":815.744},{"x":97,"y":799.3396},{"x":98,"y":779.2884},{"x":99,"y":760.3062},{"x":100,"y":740.1593}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area 45","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha2 receptor in area 45.** This profile plot shows examplary the course of the alpha2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area 45"],"datasets":[{"data":[{"x":0,"y":469.4491},{"x":1,"y":565.3924},{"x":2,"y":649.6494},{"x":3,"y":706.2583},{"x":4,"y":752.2487},{"x":5,"y":781.4631},{"x":6,"y":799.2048},{"x":7,"y":819.3022},{"x":8,"y":834.5061},{"x":9,"y":846.5419},{"x":10,"y":850.3304},{"x":11,"y":854.2942},{"x":12,"y":862.9013},{"x":13,"y":871.4134},{"x":14,"y":878.3993},{"x":15,"y":887.5916},{"x":16,"y":894.3492},{"x":17,"y":897.555},{"x":18,"y":897.5188},{"x":19,"y":890.8574},{"x":20,"y":873.5223},{"x":21,"y":862.6063},{"x":22,"y":855.4998},{"x":23,"y":851.1521},{"x":24,"y":848.3233},{"x":25,"y":841.817},{"x":26,"y":830.2764},{"x":27,"y":822.4912},{"x":28,"y":823.464},{"x":29,"y":820.342},{"x":30,"y":808.145},{"x":31,"y":801.8473},{"x":32,"y":799.092},{"x":33,"y":782.1962},{"x":34,"y":767.9729},{"x":35,"y":758.9476},{"x":36,"y":745.7124},{"x":37,"y":733.059},{"x":38,"y":712.6502},{"x":39,"y":703.5573},{"x":40,"y":698.6915},{"x":41,"y":692.2061},{"x":42,"y":690.6356},{"x":43,"y":685.4944},{"x":44,"y":679.0913},{"x":45,"y":675.183},{"x":46,"y":664.7518},{"x":47,"y":652.0746},{"x":48,"y":641.0708},{"x":49,"y":634.0346},{"x":50,"y":628.3031},{"x":51,"y":616.9945},{"x":52,"y":601.6129},{"x":53,"y":591.6409},{"x":54,"y":585.105},{"x":55,"y":577.5199},{"x":56,"y":566.2117},{"x":57,"y":567.1189},{"x":58,"y":577.0754},{"x":59,"y":584.2058},{"x":60,"y":582.6771},{"x":61,"y":584.2724},{"x":62,"y":585.7733},{"x":63,"y":587.1189},{"x":64,"y":581.0198},{"x":65,"y":578.8378},{"x":66,"y":579.3392},{"x":67,"y":575.0687},{"x":68,"y":562.4258},{"x":69,"y":547.4474},{"x":70,"y":534.9731},{"x":71,"y":522.2081},{"x":72,"y":516.2615},{"x":73,"y":504.3176},{"x":74,"y":493.2196},{"x":75,"y":485.6598},{"x":76,"y":480.8628},{"x":77,"y":476.1611},{"x":78,"y":469.3088},{"x":79,"y":462.6646},{"x":80,"y":457.6205},{"x":81,"y":452.4885},{"x":82,"y":450.9453},{"x":83,"y":452.5669},{"x":84,"y":445.114},{"x":85,"y":438.5897},{"x":86,"y":426.6008},{"x":87,"y":409.3276},{"x":88,"y":395.8666},{"x":89,"y":372.2243},{"x":90,"y":344.2449},{"x":91,"y":321.0722},{"x":92,"y":301.7635},{"x":93,"y":283.1574},{"x":94,"y":267.6314},{"x":95,"y":259.9897},{"x":96,"y":252.0991},{"x":97,"y":243.6278},{"x":98,"y":235.2602},{"x":99,"y":221.5029},{"x":100,"y":207.5209}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area 45","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha4-beta2 receptor in area 45.** This profile plot shows examplary the course of the alpha4-beta2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area 45"],"datasets":[{"data":[{"x":0,"y":13.2101},{"x":1,"y":15.6055},{"x":2,"y":17.279},{"x":3,"y":19.2977},{"x":4,"y":21.3187},{"x":5,"y":23.1311},{"x":6,"y":26.4183},{"x":7,"y":28.5334},{"x":8,"y":28.7524},{"x":9,"y":29.8097},{"x":10,"y":30.7849},{"x":11,"y":30.8247},{"x":12,"y":30.2471},{"x":13,"y":28.7272},{"x":14,"y":27.1162},{"x":15,"y":26.1655},{"x":16,"y":26.1373},{"x":17,"y":26.6089},{"x":18,"y":26.8998},{"x":19,"y":27.1571},{"x":20,"y":27.271},{"x":21,"y":27.3772},{"x":22,"y":27.5579},{"x":23,"y":27.463},{"x":24,"y":27.2674},{"x":25,"y":27.3969},{"x":26,"y":28.0425},{"x":27,"y":29.0192},{"x":28,"y":29.6249},{"x":29,"y":30.4451},{"x":30,"y":30.3474},{"x":31,"y":31.8173},{"x":32,"y":32.6919},{"x":33,"y":32.9726},{"x":34,"y":33.1706},{"x":35,"y":33.6537},{"x":36,"y":33.4897},{"x":37,"y":33.6151},{"x":38,"y":33.682},{"x":39,"y":33.3453},{"x":40,"y":32.3363},{"x":41,"y":31.7709},{"x":42,"y":30.8566},{"x":43,"y":30.3814},{"x":44,"y":30.7077},{"x":45,"y":30.5846},{"x":46,"y":30.4693},{"x":47,"y":29.9682},{"x":48,"y":29.9551},{"x":49,"y":29.3887},{"x":50,"y":29.3968},{"x":51,"y":30.2142},{"x":52,"y":30.3134},{"x":53,"y":30.1211},{"x":54,"y":29.7808},{"x":55,"y":29.2502},{"x":56,"y":28.5542},{"x":57,"y":28.1366},{"x":58,"y":28.7265},{"x":59,"y":29.1477},{"x":60,"y":29.6566},{"x":61,"y":29.5394},{"x":62,"y":29.0037},{"x":63,"y":28.3007},{"x":64,"y":27.6114},{"x":65,"y":28.3795},{"x":66,"y":29.7751},{"x":67,"y":29.5407},{"x":68,"y":28.8095},{"x":69,"y":28.3867},{"x":70,"y":29.0855},{"x":71,"y":28.9202},{"x":72,"y":28.5972},{"x":73,"y":27.7725},{"x":74,"y":27.6129},{"x":75,"y":27.3254},{"x":76,"y":27.9318},{"x":77,"y":28.2839},{"x":78,"y":29.1676},{"x":79,"y":30.1504},{"x":80,"y":30.9573},{"x":81,"y":31.6251},{"x":82,"y":31.6644},{"x":83,"y":31.6194},{"x":84,"y":31.734},{"x":85,"y":32.0767},{"x":86,"y":32.0147},{"x":87,"y":32.4512},{"x":88,"y":32.5375},{"x":89,"y":31.6079},{"x":90,"y":30.9472},{"x":91,"y":30.4269},{"x":92,"y":30.384},{"x":93,"y":30.8271},{"x":94,"y":30.6763},{"x":95,"y":29.2631},{"x":96,"y":27.2017},{"x":97,"y":26.1304},{"x":98,"y":24.631},{"x":99,"y":23.3251},{"x":100,"y":22.6634}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of M₁(ACh) in Area 45","filename":"M₁(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M1 receptor in area 45.** This profile plot shows examplary the course of the M1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the right hemisphere of one male subject (brain id: MR1, sample id: ID02, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₁(ACh) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₁(ACh) in Area 45"],"datasets":[{"data":[{"x":0,"y":381.9101},{"x":1,"y":436.8927},{"x":2,"y":478.9781},{"x":3,"y":506.1044},{"x":4,"y":520.4062},{"x":5,"y":533.0569},{"x":6,"y":549.4602},{"x":7,"y":566.1098},{"x":8,"y":578.5351},{"x":9,"y":585.9845},{"x":10,"y":587.9969},{"x":11,"y":588.5602},{"x":12,"y":589.9104},{"x":13,"y":587.9436},{"x":14,"y":586.9858},{"x":15,"y":584.7292},{"x":16,"y":581.5806},{"x":17,"y":580.4543},{"x":18,"y":577.1911},{"x":19,"y":572.4089},{"x":20,"y":567.5581},{"x":21,"y":567.5312},{"x":22,"y":566.414},{"x":23,"y":563.5261},{"x":24,"y":562.8925},{"x":25,"y":559.6155},{"x":26,"y":561.1417},{"x":27,"y":561.2087},{"x":28,"y":561.1357},{"x":29,"y":562.8276},{"x":30,"y":561.7152},{"x":31,"y":559.0178},{"x":32,"y":555.3889},{"x":33,"y":550.7541},{"x":34,"y":539.5945},{"x":35,"y":529.6209},{"x":36,"y":524.797},{"x":37,"y":523.7451},{"x":38,"y":520.7351},{"x":39,"y":514.339},{"x":40,"y":504.8223},{"x":41,"y":496.7218},{"x":42,"y":497.2493},{"x":43,"y":494.5142},{"x":44,"y":492.4384},{"x":45,"y":494.3176},{"x":46,"y":495.8264},{"x":47,"y":499.0646},{"x":48,"y":498.9326},{"x":49,"y":501.257},{"x":50,"y":504.9812},{"x":51,"y":506.9896},{"x":52,"y":509.9079},{"x":53,"y":509.6259},{"x":54,"y":510.1441},{"x":55,"y":512.866},{"x":56,"y":516.1428},{"x":57,"y":520.7067},{"x":58,"y":519.7416},{"x":59,"y":518.1057},{"x":60,"y":512.3378},{"x":61,"y":506.6333},{"x":62,"y":498.6401},{"x":63,"y":490.7246},{"x":64,"y":481.579},{"x":65,"y":479.2424},{"x":66,"y":483.5324},{"x":67,"y":488.5284},{"x":68,"y":493.0161},{"x":69,"y":497.8114},{"x":70,"y":496.7059},{"x":71,"y":494.195},{"x":72,"y":495.16},{"x":73,"y":500.0311},{"x":74,"y":509.392},{"x":75,"y":519.6998},{"x":76,"y":525.8513},{"x":77,"y":532.4273},{"x":78,"y":539.4819},{"x":79,"y":543.8892},{"x":80,"y":549.4755},{"x":81,"y":548.9542},{"x":82,"y":546.5351},{"x":83,"y":540.1034},{"x":84,"y":531.8678},{"x":85,"y":525.7068},{"x":86,"y":520.4424},{"x":87,"y":510.6088},{"x":88,"y":503.5733},{"x":89,"y":494.3613},{"x":90,"y":482.2789},{"x":91,"y":471.8525},{"x":92,"y":459.313},{"x":93,"y":443.7903},{"x":94,"y":430.1989},{"x":95,"y":413.6311},{"x":96,"y":405.3675},{"x":97,"y":387.6068},{"x":98,"y":373.6256},{"x":99,"y":362.4871},{"x":100,"y":350.1698}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₁ᴀ(5-HT) in Area 45","filename":"5-HT₁ᴀ(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT1A receptor in area 45.** This profile plot shows examplary the course of the 5-HT1A receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₁ᴀ(5-HT) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₁ᴀ(5-HT) in Area 45"],"datasets":[{"data":[{"x":0,"y":446.4682},{"x":1,"y":478.6471},{"x":2,"y":509.2584},{"x":3,"y":540.6435},{"x":4,"y":566.3428},{"x":5,"y":588.0512},{"x":6,"y":608.3105},{"x":7,"y":625.0107},{"x":8,"y":636.1673},{"x":9,"y":643.9884},{"x":10,"y":648.3029},{"x":11,"y":649.924},{"x":12,"y":647.4576},{"x":13,"y":642.3212},{"x":14,"y":634.378},{"x":15,"y":622.8576},{"x":16,"y":607.448},{"x":17,"y":590.2758},{"x":18,"y":571.8925},{"x":19,"y":553.8814},{"x":20,"y":535.8393},{"x":21,"y":515.5943},{"x":22,"y":497.1233},{"x":23,"y":479.3945},{"x":24,"y":459.785},{"x":25,"y":438.6457},{"x":26,"y":417.0415},{"x":27,"y":396.816},{"x":28,"y":372.5078},{"x":29,"y":349.9618},{"x":30,"y":328.4453},{"x":31,"y":306.9185},{"x":32,"y":284.8545},{"x":33,"y":263.7074},{"x":34,"y":242.3922},{"x":35,"y":222.3236},{"x":36,"y":201.4712},{"x":37,"y":183.0173},{"x":38,"y":168.4927},{"x":39,"y":157.2917},{"x":40,"y":147.5868},{"x":41,"y":138.0575},{"x":42,"y":129.3287},{"x":43,"y":122.5712},{"x":44,"y":115.2238},{"x":45,"y":108.158},{"x":46,"y":103.2221},{"x":47,"y":98.3181},{"x":48,"y":94.6898},{"x":49,"y":93.0116},{"x":50,"y":91.8996},{"x":51,"y":92.8934},{"x":52,"y":94.2564},{"x":53,"y":95.806},{"x":54,"y":97.0351},{"x":55,"y":99.1721},{"x":56,"y":101.208},{"x":57,"y":103.449},{"x":58,"y":105.6208},{"x":59,"y":109.1625},{"x":60,"y":113.0543},{"x":61,"y":116.162},{"x":62,"y":119.7928},{"x":63,"y":123.3744},{"x":64,"y":129.2577},{"x":65,"y":132.9809},{"x":66,"y":136.5838},{"x":67,"y":139.6859},{"x":68,"y":141.8055},{"x":69,"y":142.7797},{"x":70,"y":144.2386},{"x":71,"y":145.6713},{"x":72,"y":146.4523},{"x":73,"y":147.8483},{"x":74,"y":150.8827},{"x":75,"y":154.3874},{"x":76,"y":158.0307},{"x":77,"y":162.4452},{"x":78,"y":166.3661},{"x":79,"y":167.4467},{"x":80,"y":167.673},{"x":81,"y":167.0871},{"x":82,"y":165.8395},{"x":83,"y":164.3776},{"x":84,"y":164.2927},{"x":85,"y":165.2644},{"x":86,"y":166.9129},{"x":87,"y":168.346},{"x":88,"y":169.7038},{"x":89,"y":170.2005},{"x":90,"y":169.9151},{"x":91,"y":166.5571},{"x":92,"y":163.6538},{"x":93,"y":161.3259},{"x":94,"y":157.0934},{"x":95,"y":153.4914},{"x":96,"y":149.4574},{"x":97,"y":145.4651},{"x":98,"y":142.6291},{"x":99,"y":138.3102},{"x":100,"y":135.5216}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of kainate (Glu) in Area 45","filename":"kainate (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of kainate receptor in area 45.** This profile plot shows examplary the course of the kainate receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of kainate (Glu) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of kainate (Glu) in Area 45"],"datasets":[{"data":[{"x":0,"y":128.2432},{"x":1,"y":133.4718},{"x":2,"y":137.4436},{"x":3,"y":141.3498},{"x":4,"y":144.5227},{"x":5,"y":150.0921},{"x":6,"y":151.1739},{"x":7,"y":156.9486},{"x":8,"y":158.6138},{"x":9,"y":160.1789},{"x":10,"y":158.062},{"x":11,"y":157.9045},{"x":12,"y":159.4278},{"x":13,"y":157.4277},{"x":14,"y":156.3406},{"x":15,"y":155.6615},{"x":16,"y":155.8074},{"x":17,"y":154.9571},{"x":18,"y":151.5084},{"x":19,"y":148.7766},{"x":20,"y":147.8011},{"x":21,"y":149.441},{"x":22,"y":149.1402},{"x":23,"y":147.3879},{"x":24,"y":145.9776},{"x":25,"y":147.4142},{"x":26,"y":149.2054},{"x":27,"y":149.8993},{"x":28,"y":150.6654},{"x":29,"y":152.7007},{"x":30,"y":154.1278},{"x":31,"y":152.3247},{"x":32,"y":149.1021},{"x":33,"y":148.4685},{"x":34,"y":147.7671},{"x":35,"y":148.5821},{"x":36,"y":148.9318},{"x":37,"y":150.0955},{"x":38,"y":152.7142},{"x":39,"y":154.7568},{"x":40,"y":158.9343},{"x":41,"y":160.7979},{"x":42,"y":162.3624},{"x":43,"y":166.3793},{"x":44,"y":168.8671},{"x":45,"y":173.4001},{"x":46,"y":177.4207},{"x":47,"y":181.5218},{"x":48,"y":187.0071},{"x":49,"y":188.0529},{"x":50,"y":188.0249},{"x":51,"y":189.9901},{"x":52,"y":190.2867},{"x":53,"y":192.1188},{"x":54,"y":202.2524},{"x":55,"y":210.0858},{"x":56,"y":215.743},{"x":57,"y":217.8028},{"x":58,"y":223.8773},{"x":59,"y":228.4059},{"x":60,"y":229.7807},{"x":61,"y":229.2109},{"x":62,"y":230.6402},{"x":63,"y":232.917},{"x":64,"y":235.4387},{"x":65,"y":236.6682},{"x":66,"y":237.4886},{"x":67,"y":241.6481},{"x":68,"y":244.9507},{"x":69,"y":245.65},{"x":70,"y":248.3345},{"x":71,"y":250.5447},{"x":72,"y":256.2273},{"x":73,"y":259.1402},{"x":74,"y":257.6825},{"x":75,"y":257.2173},{"x":76,"y":259.8811},{"x":77,"y":260.9476},{"x":78,"y":262.6104},{"x":79,"y":264.0823},{"x":80,"y":262.1313},{"x":81,"y":260.4572},{"x":82,"y":259.0434},{"x":83,"y":258.0762},{"x":84,"y":255.4195},{"x":85,"y":252.788},{"x":86,"y":251.6301},{"x":87,"y":253.008},{"x":88,"y":254.917},{"x":89,"y":255.733},{"x":90,"y":256.2008},{"x":91,"y":253.5028},{"x":92,"y":247.748},{"x":93,"y":243.7458},{"x":94,"y":236.6708},{"x":95,"y":231.8607},{"x":96,"y":229.1243},{"x":97,"y":222.6816},{"x":98,"y":216.0715},{"x":99,"y":207.8698},{"x":100,"y":198.6453}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of M₂(ACh) in Area 45","filename":"M₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M2 receptor in area 45.** This profile plot shows examplary the course of the M2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₂(ACh) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₂(ACh) in Area 45"],"datasets":[{"data":[{"x":0,"y":148.2509},{"x":1,"y":160.4788},{"x":2,"y":172.7641},{"x":3,"y":188.286},{"x":4,"y":202.4919},{"x":5,"y":211.0979},{"x":6,"y":217.7748},{"x":7,"y":225.6758},{"x":8,"y":233.2973},{"x":9,"y":238.0511},{"x":10,"y":242.8574},{"x":11,"y":246.1199},{"x":12,"y":248.1379},{"x":13,"y":250.3073},{"x":14,"y":253.4073},{"x":15,"y":255.9217},{"x":16,"y":255.3769},{"x":17,"y":256.2855},{"x":18,"y":256.7336},{"x":19,"y":255.8608},{"x":20,"y":255.5498},{"x":21,"y":257.467},{"x":22,"y":257.1439},{"x":23,"y":256.9265},{"x":24,"y":257.0385},{"x":25,"y":257.6207},{"x":26,"y":260.1275},{"x":27,"y":260.2744},{"x":28,"y":258.071},{"x":29,"y":258.9127},{"x":30,"y":258.0414},{"x":31,"y":256.9024},{"x":32,"y":255.1509},{"x":33,"y":255.3897},{"x":34,"y":254.6337},{"x":35,"y":254.2197},{"x":36,"y":252.7252},{"x":37,"y":251.3689},{"x":38,"y":250.0491},{"x":39,"y":249.2892},{"x":40,"y":250.3386},{"x":41,"y":252.2995},{"x":42,"y":254.0825},{"x":43,"y":254.6392},{"x":44,"y":255.3837},{"x":45,"y":255.833},{"x":46,"y":257.2473},{"x":47,"y":258.6471},{"x":48,"y":259.0378},{"x":49,"y":257.0129},{"x":50,"y":257.6312},{"x":51,"y":257.436},{"x":52,"y":258.2143},{"x":53,"y":258.2644},{"x":54,"y":257.8273},{"x":55,"y":258.1356},{"x":56,"y":257.5567},{"x":57,"y":256.1952},{"x":58,"y":256.4853},{"x":59,"y":258.2186},{"x":60,"y":260.9326},{"x":61,"y":262.1186},{"x":62,"y":262.9369},{"x":63,"y":261.639},{"x":64,"y":260.6033},{"x":65,"y":260.9028},{"x":66,"y":259.535},{"x":67,"y":259.6838},{"x":68,"y":258.9229},{"x":69,"y":258.0758},{"x":70,"y":255.9138},{"x":71,"y":253.6645},{"x":72,"y":252.8365},{"x":73,"y":252.5917},{"x":74,"y":249.7885},{"x":75,"y":248.9866},{"x":76,"y":249.7967},{"x":77,"y":249.386},{"x":78,"y":246.1164},{"x":79,"y":244.1496},{"x":80,"y":244.03},{"x":81,"y":242.4811},{"x":82,"y":241.1196},{"x":83,"y":239.2815},{"x":84,"y":235.9196},{"x":85,"y":232.4495},{"x":86,"y":228.9631},{"x":87,"y":226.325},{"x":88,"y":223.5355},{"x":89,"y":220.0405},{"x":90,"y":216.8779},{"x":91,"y":214.3161},{"x":92,"y":209.9348},{"x":93,"y":203.217},{"x":94,"y":195.4991},{"x":95,"y":187.8444},{"x":96,"y":181.5077},{"x":97,"y":172.7914},{"x":98,"y":162.8512},{"x":99,"y":154.3011},{"x":100,"y":147.3262}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area 45","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of AMPA receptor in area 45.** This profile plot shows examplary the course of the AMPA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area 45"],"datasets":[{"data":[{"x":0,"y":363.1229},{"x":1,"y":387.8446},{"x":2,"y":412.6686},{"x":3,"y":435.4615},{"x":4,"y":459.3812},{"x":5,"y":478.3833},{"x":6,"y":491.5823},{"x":7,"y":501.6668},{"x":8,"y":507.1233},{"x":9,"y":507.0855},{"x":10,"y":502.6994},{"x":11,"y":496.5091},{"x":12,"y":487.0889},{"x":13,"y":479.0364},{"x":14,"y":473.6371},{"x":15,"y":465.5097},{"x":16,"y":457.15},{"x":17,"y":450.4011},{"x":18,"y":443.7644},{"x":19,"y":436.2319},{"x":20,"y":428.6994},{"x":21,"y":419.0023},{"x":22,"y":411.1127},{"x":23,"y":405.6558},{"x":24,"y":401.1618},{"x":25,"y":399.5792},{"x":26,"y":402.3016},{"x":27,"y":408.1729},{"x":28,"y":412.7131},{"x":29,"y":411.2129},{"x":30,"y":404.6575},{"x":31,"y":398.4513},{"x":32,"y":389.7323},{"x":33,"y":378.2357},{"x":34,"y":365.5536},{"x":35,"y":350.043},{"x":36,"y":337.0479},{"x":37,"y":325.1481},{"x":38,"y":309.7302},{"x":39,"y":293.6685},{"x":40,"y":278.9523},{"x":41,"y":265.2233},{"x":42,"y":255.5226},{"x":43,"y":249.5831},{"x":44,"y":247.6395},{"x":45,"y":246.6937},{"x":46,"y":242.4396},{"x":47,"y":239.6172},{"x":48,"y":238.1692},{"x":49,"y":237.5023},{"x":50,"y":238.0605},{"x":51,"y":235.9509},{"x":52,"y":234.4507},{"x":53,"y":230.1675},{"x":54,"y":229.9983},{"x":55,"y":233.2483},{"x":56,"y":234.0215},{"x":57,"y":236.4597},{"x":58,"y":237.7025},{"x":59,"y":237.5634},{"x":60,"y":238.2972},{"x":61,"y":240.7975},{"x":62,"y":241.8165},{"x":63,"y":243.0112},{"x":64,"y":241.311},{"x":65,"y":238.9827},{"x":66,"y":239.6403},{"x":67,"y":239.7592},{"x":68,"y":241.4406},{"x":69,"y":244.8075},{"x":70,"y":248.7895},{"x":71,"y":252.1568},{"x":72,"y":254.1116},{"x":73,"y":257.2797},{"x":74,"y":259.2491},{"x":75,"y":262.5645},{"x":76,"y":269.9665},{"x":77,"y":274.6952},{"x":78,"y":280.4762},{"x":79,"y":288.2045},{"x":80,"y":292.5784},{"x":81,"y":297.4214},{"x":82,"y":299.5389},{"x":83,"y":298.7706},{"x":84,"y":298.3684},{"x":85,"y":294.9061},{"x":86,"y":291.7974},{"x":87,"y":288.7943},{"x":88,"y":284.1133},{"x":89,"y":281.039},{"x":90,"y":273.96},{"x":91,"y":269.7795},{"x":92,"y":266.2041},{"x":93,"y":263.1902},{"x":94,"y":259.2016},{"x":95,"y":253.2865},{"x":96,"y":249.3632},{"x":97,"y":241.6962},{"x":98,"y":236.1636},{"x":99,"y":229.2335},{"x":100,"y":220.5767}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of D₁(DA) in Area 45","filename":"D₁(DA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of D1 receptor in area 45.** This profile plot shows examplary the course of the D1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of D₁(DA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of D₁(DA) in Area 45"],"datasets":[{"data":[{"x":0,"y":78.1084},{"x":1,"y":84.9645},{"x":2,"y":91.0532},{"x":3,"y":95.5791},{"x":4,"y":98.3777},{"x":5,"y":100.4353},{"x":6,"y":102.0098},{"x":7,"y":103.4378},{"x":8,"y":105.096},{"x":9,"y":106.5489},{"x":10,"y":107.8973},{"x":11,"y":108.5222},{"x":12,"y":108.471},{"x":13,"y":108.2248},{"x":14,"y":108.2734},{"x":15,"y":108.043},{"x":16,"y":107.8699},{"x":17,"y":107.6634},{"x":18,"y":107.6015},{"x":19,"y":107.1348},{"x":20,"y":106.8158},{"x":21,"y":106.8694},{"x":22,"y":107.5786},{"x":23,"y":108.7444},{"x":24,"y":109.4443},{"x":25,"y":109.7067},{"x":26,"y":109.8513},{"x":27,"y":109.3219},{"x":28,"y":108.7429},{"x":29,"y":108.1614},{"x":30,"y":107.9891},{"x":31,"y":106.603},{"x":32,"y":105.6344},{"x":33,"y":104.8022},{"x":34,"y":104.1244},{"x":35,"y":103.1104},{"x":36,"y":102.3964},{"x":37,"y":102.7234},{"x":38,"y":103.6768},{"x":39,"y":104.0412},{"x":40,"y":104.2372},{"x":41,"y":104.2372},{"x":42,"y":104.5237},{"x":43,"y":104.2933},{"x":44,"y":104.0511},{"x":45,"y":103.0073},{"x":46,"y":102.6726},{"x":47,"y":102.1502},{"x":48,"y":101.7177},{"x":49,"y":101.6195},{"x":50,"y":102.3458},{"x":51,"y":102.4462},{"x":52,"y":101.9925},{"x":53,"y":101.934},{"x":54,"y":101.8345},{"x":55,"y":101.7546},{"x":56,"y":101.7766},{"x":57,"y":101.8297},{"x":58,"y":101.925},{"x":59,"y":101.5507},{"x":60,"y":101.6761},{"x":61,"y":101.4481},{"x":62,"y":100.8504},{"x":63,"y":100.0694},{"x":64,"y":99.1571},{"x":65,"y":97.7408},{"x":66,"y":96.8638},{"x":67,"y":95.7591},{"x":68,"y":93.8969},{"x":69,"y":91.8417},{"x":70,"y":90.107},{"x":71,"y":89.1044},{"x":72,"y":87.4652},{"x":73,"y":85.9192},{"x":74,"y":84.9756},{"x":75,"y":83.969},{"x":76,"y":83.6151},{"x":77,"y":83.4688},{"x":78,"y":83.5502},{"x":79,"y":83.3848},{"x":80,"y":83.4078},{"x":81,"y":83.0115},{"x":82,"y":82.5122},{"x":83,"y":81.9019},{"x":84,"y":80.5658},{"x":85,"y":79.442},{"x":86,"y":78.2936},{"x":87,"y":77.4462},{"x":88,"y":76.4354},{"x":89,"y":74.5846},{"x":90,"y":72.1056},{"x":91,"y":70.1597},{"x":92,"y":68.7571},{"x":93,"y":66.9971},{"x":94,"y":65.6739},{"x":95,"y":64.3799},{"x":96,"y":63.1736},{"x":97,"y":61.0219},{"x":98,"y":58.9807},{"x":99,"y":57.1969},{"x":100,"y":54.9126}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area 45","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M3 receptor in area 45.** This profile plot shows examplary the course of the M3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area 45"],"datasets":[{"data":[{"x":0,"y":242.4714},{"x":1,"y":250.7951},{"x":2,"y":259.7815},{"x":3,"y":268.408},{"x":4,"y":275.2378},{"x":5,"y":280.239},{"x":6,"y":283.9212},{"x":7,"y":285.7811},{"x":8,"y":286.0227},{"x":9,"y":286.4763},{"x":10,"y":286.4911},{"x":11,"y":286.4111},{"x":12,"y":286.1154},{"x":13,"y":285.4677},{"x":14,"y":285.0456},{"x":15,"y":284.5767},{"x":16,"y":284.1206},{"x":17,"y":283.1973},{"x":18,"y":282.7552},{"x":19,"y":282.0832},{"x":20,"y":280.6612},{"x":21,"y":278.8055},{"x":22,"y":277.1465},{"x":23,"y":276.0516},{"x":24,"y":274.833},{"x":25,"y":274.214},{"x":26,"y":274.0571},{"x":27,"y":273.5409},{"x":28,"y":272.419},{"x":29,"y":271.9615},{"x":30,"y":271.0815},{"x":31,"y":269.8926},{"x":32,"y":267.7079},{"x":33,"y":265.4575},{"x":34,"y":263.6548},{"x":35,"y":261.6827},{"x":36,"y":259.2279},{"x":37,"y":256.5618},{"x":38,"y":253.571},{"x":39,"y":249.8624},{"x":40,"y":246.2392},{"x":41,"y":242.1144},{"x":42,"y":238.5763},{"x":43,"y":236.484},{"x":44,"y":234.5967},{"x":45,"y":232.173},{"x":46,"y":229.5571},{"x":47,"y":227.0632},{"x":48,"y":224.5747},{"x":49,"y":222.4277},{"x":50,"y":220.5809},{"x":51,"y":219.0437},{"x":52,"y":217.7184},{"x":53,"y":217.0493},{"x":54,"y":216.2636},{"x":55,"y":215.6882},{"x":56,"y":215.3476},{"x":57,"y":216.0696},{"x":58,"y":216.3634},{"x":59,"y":216.7627},{"x":60,"y":216.4955},{"x":61,"y":216.5857},{"x":62,"y":215.5667},{"x":63,"y":213.578},{"x":64,"y":212.1659},{"x":65,"y":209.9465},{"x":66,"y":208.2169},{"x":67,"y":207.2508},{"x":68,"y":206.4585},{"x":69,"y":205.6267},{"x":70,"y":205.8085},{"x":71,"y":205.7924},{"x":72,"y":205.6573},{"x":73,"y":205.6143},{"x":74,"y":205.8285},{"x":75,"y":205.8996},{"x":76,"y":205.2856},{"x":77,"y":204.803},{"x":78,"y":203.5548},{"x":79,"y":202.6549},{"x":80,"y":201.3211},{"x":81,"y":200.1485},{"x":82,"y":199.6121},{"x":83,"y":199.7426},{"x":84,"y":199.7115},{"x":85,"y":199.7334},{"x":86,"y":199.8951},{"x":87,"y":200.3864},{"x":88,"y":200.3858},{"x":89,"y":200.0216},{"x":90,"y":200.2697},{"x":91,"y":199.6195},{"x":92,"y":197.5551},{"x":93,"y":195.1741},{"x":94,"y":191.6469},{"x":95,"y":188.0536},{"x":96,"y":185.0563},{"x":97,"y":181.4895},{"x":98,"y":178.9988},{"x":99,"y":176.4345},{"x":100,"y":173.4422}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area 45","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of mGluR2_3 receptor in area 45.** This profile plot shows examplary the course of the mGluR2_3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area 45"],"datasets":[{"data":[{"x":0,"y":2329.1235},{"x":1,"y":2525.8177},{"x":2,"y":2663.7145},{"x":3,"y":2780.8164},{"x":4,"y":2872.1168},{"x":5,"y":2933.5586},{"x":6,"y":2969.7929},{"x":7,"y":3014.8606},{"x":8,"y":3041.0337},{"x":9,"y":3062.6667},{"x":10,"y":3082.1499},{"x":11,"y":3103.616},{"x":12,"y":3119.5096},{"x":13,"y":3137.6468},{"x":14,"y":3150.0613},{"x":15,"y":3166.116},{"x":16,"y":3182.8989},{"x":17,"y":3188.6492},{"x":18,"y":3188.1948},{"x":19,"y":3188.0656},{"x":20,"y":3187.0585},{"x":21,"y":3180.8013},{"x":22,"y":3173.0829},{"x":23,"y":3163.6916},{"x":24,"y":3142.0249},{"x":25,"y":3117.5816},{"x":26,"y":3091.4563},{"x":27,"y":3057.6253},{"x":28,"y":3027.5128},{"x":29,"y":3003.6084},{"x":30,"y":2995.6601},{"x":31,"y":2984.5468},{"x":32,"y":2976.7859},{"x":33,"y":2967.3817},{"x":34,"y":2956.0409},{"x":35,"y":2939.6534},{"x":36,"y":2923.1503},{"x":37,"y":2917.5128},{"x":38,"y":2910.8969},{"x":39,"y":2902.394},{"x":40,"y":2889.0886},{"x":41,"y":2881.9775},{"x":42,"y":2875.0169},{"x":43,"y":2853.1159},{"x":44,"y":2820.7971},{"x":45,"y":2791.7109},{"x":46,"y":2758.1112},{"x":47,"y":2728.1731},{"x":48,"y":2685.1843},{"x":49,"y":2642.4576},{"x":50,"y":2608.4185},{"x":51,"y":2578.6758},{"x":52,"y":2547.2736},{"x":53,"y":2508.4241},{"x":54,"y":2463.5647},{"x":55,"y":2425.1331},{"x":56,"y":2383.5863},{"x":57,"y":2338.9373},{"x":58,"y":2302.3089},{"x":59,"y":2265.7624},{"x":60,"y":2225.8775},{"x":61,"y":2177.8831},{"x":62,"y":2139.7348},{"x":63,"y":2091.8873},{"x":64,"y":2043.7491},{"x":65,"y":2001.6689},{"x":66,"y":1957.9636},{"x":67,"y":1918.2625},{"x":68,"y":1868.5604},{"x":69,"y":1828.4216},{"x":70,"y":1790.7205},{"x":71,"y":1759.1246},{"x":72,"y":1736.3443},{"x":73,"y":1708.2351},{"x":74,"y":1685.7374},{"x":75,"y":1661.7608},{"x":76,"y":1637.0638},{"x":77,"y":1618.0377},{"x":78,"y":1610.9442},{"x":79,"y":1600.5609},{"x":80,"y":1588.0873},{"x":81,"y":1577.4166},{"x":82,"y":1555.6453},{"x":83,"y":1538.047},{"x":84,"y":1517.906},{"x":85,"y":1500.8983},{"x":86,"y":1486.9246},{"x":87,"y":1469.6974},{"x":88,"y":1457.2807},{"x":89,"y":1434.636},{"x":90,"y":1400.474},{"x":91,"y":1349.5559},{"x":92,"y":1290.592},{"x":93,"y":1240.8654},{"x":94,"y":1186.2181},{"x":95,"y":1128.2174},{"x":96,"y":1072.6946},{"x":97,"y":1025.0802},{"x":98,"y":969.9934},{"x":99,"y":915.1584},{"x":100,"y":855.2369}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₂(5-HT) in Area 45","filename":"5-HT₂(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT2 receptor in area 45.** This profile plot shows examplary the course of the 5-HT2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₂(5-HT) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₂(5-HT) in Area 45"],"datasets":[{"data":[{"x":0,"y":288.9923},{"x":1,"y":309.7773},{"x":2,"y":328.8126},{"x":3,"y":345.6034},{"x":4,"y":358.1815},{"x":5,"y":366.2937},{"x":6,"y":372.7815},{"x":7,"y":376.1244},{"x":8,"y":378.2773},{"x":9,"y":380.2499},{"x":10,"y":381.7339},{"x":11,"y":382.5514},{"x":12,"y":384.1955},{"x":13,"y":385.053},{"x":14,"y":387.5857},{"x":15,"y":390.0167},{"x":16,"y":393.3792},{"x":17,"y":397.0094},{"x":18,"y":400.449},{"x":19,"y":404.9659},{"x":20,"y":409.1248},{"x":21,"y":413.3365},{"x":22,"y":415.7244},{"x":23,"y":417.682},{"x":24,"y":418.4909},{"x":25,"y":419.2575},{"x":26,"y":420.2398},{"x":27,"y":421.1289},{"x":28,"y":421.824},{"x":29,"y":423.2846},{"x":30,"y":425.636},{"x":31,"y":426.3901},{"x":32,"y":428.4124},{"x":33,"y":429.6646},{"x":34,"y":429.9736},{"x":35,"y":430.6096},{"x":36,"y":430.1823},{"x":37,"y":429.0452},{"x":38,"y":426.6607},{"x":39,"y":423.7124},{"x":40,"y":420.2925},{"x":41,"y":416.5521},{"x":42,"y":413.1852},{"x":43,"y":411.0173},{"x":44,"y":409.1146},{"x":45,"y":407.8484},{"x":46,"y":406.0724},{"x":47,"y":404.7061},{"x":48,"y":403.908},{"x":49,"y":402.6198},{"x":50,"y":400.687},{"x":51,"y":399.5797},{"x":52,"y":399.638},{"x":53,"y":399.1563},{"x":54,"y":397.7003},{"x":55,"y":396.4008},{"x":56,"y":394.9067},{"x":57,"y":391.0736},{"x":58,"y":388.5069},{"x":59,"y":384.5821},{"x":60,"y":380.3568},{"x":61,"y":377.5674},{"x":62,"y":373.4415},{"x":63,"y":369.8718},{"x":64,"y":366.714},{"x":65,"y":363.3653},{"x":66,"y":360.1197},{"x":67,"y":357.0405},{"x":68,"y":354.6639},{"x":69,"y":352.6405},{"x":70,"y":351.2026},{"x":71,"y":349.9003},{"x":72,"y":348.2182},{"x":73,"y":346.2901},{"x":74,"y":344.4846},{"x":75,"y":341.7091},{"x":76,"y":339.161},{"x":77,"y":336.1284},{"x":78,"y":333.2884},{"x":79,"y":329.922},{"x":80,"y":326.4277},{"x":81,"y":323.5492},{"x":82,"y":320.9594},{"x":83,"y":319.265},{"x":84,"y":316.1492},{"x":85,"y":313.1071},{"x":86,"y":311.1015},{"x":87,"y":308.7417},{"x":88,"y":306.4135},{"x":89,"y":304.1751},{"x":90,"y":302.0387},{"x":91,"y":298.6621},{"x":92,"y":294.9564},{"x":93,"y":290.4507},{"x":94,"y":284.9639},{"x":95,"y":278.1515},{"x":96,"y":273.482},{"x":97,"y":269.7171},{"x":98,"y":266.0367},{"x":99,"y":262.0832},{"x":100,"y":258.7819}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴃ(GABA) in Area 45","filename":"GABAᴃ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAB receptor in area 45.** This profile plot shows examplary the course of the GABAB receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴃ(GABA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴃ(GABA) in Area 45"],"datasets":[{"data":[{"x":0,"y":1005.5544},{"x":1,"y":1140.6296},{"x":2,"y":1282.2927},{"x":3,"y":1427.0001},{"x":4,"y":1537.5862},{"x":5,"y":1628.6752},{"x":6,"y":1720.0773},{"x":7,"y":1780.514},{"x":8,"y":1822.415},{"x":9,"y":1871.5799},{"x":10,"y":1922.7094},{"x":11,"y":1956.1988},{"x":12,"y":1995.0287},{"x":13,"y":2029.0892},{"x":14,"y":2051.0292},{"x":15,"y":2073.3927},{"x":16,"y":2086.5145},{"x":17,"y":2100.9911},{"x":18,"y":2114.785},{"x":19,"y":2117.8656},{"x":20,"y":2119.9499},{"x":21,"y":2122.6338},{"x":22,"y":2126.5934},{"x":23,"y":2130.3621},{"x":24,"y":2128.5693},{"x":25,"y":2119.9486},{"x":26,"y":2109.881},{"x":27,"y":2090.9789},{"x":28,"y":2061.8335},{"x":29,"y":2034.1653},{"x":30,"y":2000.8524},{"x":31,"y":1975.8356},{"x":32,"y":1954.9807},{"x":33,"y":1933.406},{"x":34,"y":1904.9711},{"x":35,"y":1877.5919},{"x":36,"y":1848.9845},{"x":37,"y":1813.6243},{"x":38,"y":1779.8701},{"x":39,"y":1750.2535},{"x":40,"y":1721.1585},{"x":41,"y":1696.3829},{"x":42,"y":1670.4723},{"x":43,"y":1648.3853},{"x":44,"y":1625.5198},{"x":45,"y":1608.239},{"x":46,"y":1599.82},{"x":47,"y":1593.3035},{"x":48,"y":1587.853},{"x":49,"y":1586.2885},{"x":50,"y":1587.6321},{"x":51,"y":1592.5324},{"x":52,"y":1599.0063},{"x":53,"y":1603.4052},{"x":54,"y":1614.2161},{"x":55,"y":1613.4045},{"x":56,"y":1608.3359},{"x":57,"y":1600.0201},{"x":58,"y":1586.2777},{"x":59,"y":1570.8167},{"x":60,"y":1556.1897},{"x":61,"y":1534.6709},{"x":62,"y":1517.2144},{"x":63,"y":1503.299},{"x":64,"y":1490.5743},{"x":65,"y":1477.577},{"x":66,"y":1464.6239},{"x":67,"y":1456.9567},{"x":68,"y":1451.543},{"x":69,"y":1456.3787},{"x":70,"y":1457.9518},{"x":71,"y":1475.7819},{"x":72,"y":1492.3323},{"x":73,"y":1520.6312},{"x":74,"y":1553.3891},{"x":75,"y":1584.1544},{"x":76,"y":1614.3661},{"x":77,"y":1635.184},{"x":78,"y":1653.5622},{"x":79,"y":1667.6292},{"x":80,"y":1678.3806},{"x":81,"y":1679.2344},{"x":82,"y":1678.8372},{"x":83,"y":1677.2387},{"x":84,"y":1679.506},{"x":85,"y":1682.4859},{"x":86,"y":1675.7679},{"x":87,"y":1660.1836},{"x":88,"y":1638.2992},{"x":89,"y":1612.9416},{"x":90,"y":1583.2615},{"x":91,"y":1554.9181},{"x":92,"y":1527.0889},{"x":93,"y":1503.3339},{"x":94,"y":1477.0244},{"x":95,"y":1446.2743},{"x":96,"y":1419.2013},{"x":97,"y":1388.1481},{"x":98,"y":1349.6414},{"x":99,"y":1313.3331},{"x":100,"y":1274.671}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null}]],["Density measurements of different receptors for Area 7A",[{"name":"Receptor density fingerprint of Area 7A","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["327","387","933","2040","1490","1738","2493","471","253","739","55","255","730","217","394","88"]},{"label":"mean_sd","data":["136","327","315","1327","549","634","1007","175","70","371","34","165","252","87","224","41"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 7A (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(175,238,238,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAᴀ(BZ) in Area 7A","filename":"GABAᴀ(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_BZ.jpg"},{"name":"Sample autoradiograph of α₁(NA) in Area 7A","filename":"α₁(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area 7A","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAᴀ(GABA) in Area 7A","filename":"GABAᴀ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area 7A","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area 7A","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of M₁(ACh) in Area 7A","filename":"M₁(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HT₁ᴀ(5-HT) in Area 7A","filename":"5-HT₁ᴀ(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area 7A","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_kainate.jpg"},{"name":"Sample autoradiograph of M₂(ACh) in Area 7A","filename":"M₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area 7A","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_AMPA.jpg"},{"name":"Sample autoradiograph of D₁(DA) in Area 7A","filename":"D₁(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area 7A","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area 7A","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HT₂(5-HT) in Area 7A","filename":"5-HT₂(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAᴃ(GABA) in Area 7A","filename":"GABAᴃ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_GABAB.jpg"},{"name":"Sample profile of GABAᴀ(BZ) in Area 7A","filename":"GABAᴀ(BZ)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(BZ) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(BZ) in Area 7A"],"datasets":[{"data":[{"x":0,"y":663.539},{"x":1,"y":752.8634},{"x":2,"y":871.9389},{"x":3,"y":1098.3071},{"x":4,"y":1300.2764},{"x":5,"y":1359.9664},{"x":6,"y":1537.4431},{"x":7,"y":1723.7547},{"x":8,"y":1876.9231},{"x":9,"y":1959.4494},{"x":10,"y":2050.1882},{"x":11,"y":2166.3914},{"x":12,"y":2276.5378},{"x":13,"y":2335.9971},{"x":14,"y":2402.0258},{"x":15,"y":2519.0376},{"x":16,"y":2607.1689},{"x":17,"y":2669.0358},{"x":18,"y":2765.7592},{"x":19,"y":2864.845},{"x":20,"y":2943.0192},{"x":21,"y":3026.1182},{"x":22,"y":3077.0223},{"x":23,"y":3140.239},{"x":24,"y":3185.3043},{"x":25,"y":3216.7453},{"x":26,"y":3242.3179},{"x":27,"y":3270.7454},{"x":28,"y":3296.7027},{"x":29,"y":3311.2376},{"x":30,"y":3325.7087},{"x":31,"y":3343.813},{"x":32,"y":3358.2682},{"x":33,"y":3363.0345},{"x":34,"y":3359.3941},{"x":35,"y":3342.1894},{"x":36,"y":3319.2095},{"x":37,"y":3295.9588},{"x":38,"y":3261.208},{"x":39,"y":3213.2799},{"x":40,"y":3158.0433},{"x":41,"y":3073.2887},{"x":42,"y":2996.6862},{"x":43,"y":2912.3453},{"x":44,"y":2817.6401},{"x":45,"y":2736.7014},{"x":46,"y":2672.117},{"x":47,"y":2624.4041},{"x":48,"y":2565.9559},{"x":49,"y":2510.5804},{"x":50,"y":2464.0681},{"x":51,"y":2408.6072},{"x":52,"y":2357.4098},{"x":53,"y":2316.1774},{"x":54,"y":2275.7995},{"x":55,"y":2239.1028},{"x":56,"y":2213.0319},{"x":57,"y":2192.9383},{"x":58,"y":2173.8939},{"x":59,"y":2152.2656},{"x":60,"y":2130.8386},{"x":61,"y":2105.0342},{"x":62,"y":2072.1947},{"x":63,"y":2051.3312},{"x":64,"y":2023.5314},{"x":65,"y":1988.2613},{"x":66,"y":1952.1707},{"x":67,"y":1927.6988},{"x":68,"y":1903.5798},{"x":69,"y":1876.4679},{"x":70,"y":1852.6695},{"x":71,"y":1834.4395},{"x":72,"y":1821.0351},{"x":73,"y":1809.7367},{"x":74,"y":1803.0215},{"x":75,"y":1795.4408},{"x":76,"y":1789.3414},{"x":77,"y":1781.8507},{"x":78,"y":1776.5435},{"x":79,"y":1770.8319},{"x":80,"y":1762.5341},{"x":81,"y":1750.7678},{"x":82,"y":1733.7874},{"x":83,"y":1711.1019},{"x":84,"y":1691.6025},{"x":85,"y":1659.384},{"x":86,"y":1608.8117},{"x":87,"y":1575.5129},{"x":88,"y":1537.8691},{"x":89,"y":1461.1373},{"x":90,"y":1370.9544},{"x":91,"y":1300.9845},{"x":92,"y":1238.4245},{"x":93,"y":1134.4825},{"x":94,"y":1024.7995},{"x":95,"y":933.0514},{"x":96,"y":904.9452},{"x":97,"y":821.7994},{"x":98,"y":723.583},{"x":99,"y":665.7601},{"x":100,"y":617.7757}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of α₁(NA) in Area 7A","filename":"α₁(NA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₁(NA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₁(NA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":151.1982},{"x":1,"y":167.9588},{"x":2,"y":180.7446},{"x":3,"y":209.3757},{"x":4,"y":234.6896},{"x":5,"y":247.0121},{"x":6,"y":259.9775},{"x":7,"y":276.313},{"x":8,"y":292.8569},{"x":9,"y":307.6324},{"x":10,"y":314.6665},{"x":11,"y":317.5765},{"x":12,"y":323.5495},{"x":13,"y":329.3788},{"x":14,"y":333.624},{"x":15,"y":337.7094},{"x":16,"y":343.0088},{"x":17,"y":345.7185},{"x":18,"y":345.7708},{"x":19,"y":345.34},{"x":20,"y":342.5929},{"x":21,"y":339.5283},{"x":22,"y":334.1857},{"x":23,"y":329.4968},{"x":24,"y":325.7451},{"x":25,"y":321.0262},{"x":26,"y":315.8866},{"x":27,"y":313.555},{"x":28,"y":309.564},{"x":29,"y":304.9244},{"x":30,"y":301.1883},{"x":31,"y":299.1027},{"x":32,"y":295.3722},{"x":33,"y":292.4578},{"x":34,"y":289.8857},{"x":35,"y":288.1151},{"x":36,"y":287.7071},{"x":37,"y":286.264},{"x":38,"y":283.7241},{"x":39,"y":281.7018},{"x":40,"y":280.0032},{"x":41,"y":276.4685},{"x":42,"y":274.8314},{"x":43,"y":272.648},{"x":44,"y":271.053},{"x":45,"y":267.845},{"x":46,"y":264.7229},{"x":47,"y":261.6784},{"x":48,"y":259.0415},{"x":49,"y":254.4292},{"x":50,"y":249.1945},{"x":51,"y":243.9464},{"x":52,"y":237.1176},{"x":53,"y":234.2906},{"x":54,"y":229.7013},{"x":55,"y":223.725},{"x":56,"y":219.4258},{"x":57,"y":218.27},{"x":58,"y":216.7424},{"x":59,"y":217.2732},{"x":60,"y":221.3406},{"x":61,"y":222.8124},{"x":62,"y":225.8965},{"x":63,"y":230.6049},{"x":64,"y":233.7853},{"x":65,"y":234.0624},{"x":66,"y":236.9654},{"x":67,"y":237.9515},{"x":68,"y":237.1583},{"x":69,"y":235.7405},{"x":70,"y":235.0882},{"x":71,"y":236.4694},{"x":72,"y":238.1819},{"x":73,"y":239.3653},{"x":74,"y":240.0334},{"x":75,"y":243.7328},{"x":76,"y":248.7648},{"x":77,"y":250.6977},{"x":78,"y":256.4478},{"x":79,"y":263.7341},{"x":80,"y":269.4329},{"x":81,"y":272.9431},{"x":82,"y":273.2535},{"x":83,"y":272.8054},{"x":84,"y":269.2076},{"x":85,"y":261.1283},{"x":86,"y":256.163},{"x":87,"y":248.0658},{"x":88,"y":240.6242},{"x":89,"y":229.6725},{"x":90,"y":225.1961},{"x":91,"y":216.5756},{"x":92,"y":205.4539},{"x":93,"y":196.2495},{"x":94,"y":187.3501},{"x":95,"y":179.1233},{"x":96,"y":176.3328},{"x":97,"y":163.8241},{"x":98,"y":149.2057},{"x":99,"y":142.1163},{"x":100,"y":132.4732}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area 7A","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area 7A"],"datasets":[{"data":[{"x":0,"y":227.9966},{"x":1,"y":260.1266},{"x":2,"y":312.0763},{"x":3,"y":414.6762},{"x":4,"y":490.9821},{"x":5,"y":513.4323},{"x":6,"y":561.5589},{"x":7,"y":600.4185},{"x":8,"y":610.9572},{"x":9,"y":640.1746},{"x":10,"y":805.0683},{"x":11,"y":831.3194},{"x":12,"y":851.5793},{"x":13,"y":860.5195},{"x":14,"y":863.3874},{"x":15,"y":877.9134},{"x":16,"y":886.6789},{"x":17,"y":891.857},{"x":18,"y":899.2275},{"x":19,"y":898.8455},{"x":20,"y":895.2042},{"x":21,"y":900.0077},{"x":22,"y":912.3623},{"x":23,"y":922.4453},{"x":24,"y":924.3774},{"x":25,"y":923.0026},{"x":26,"y":920.5417},{"x":27,"y":908.0752},{"x":28,"y":902.868},{"x":29,"y":893.4912},{"x":30,"y":895.781},{"x":31,"y":902.2439},{"x":32,"y":909.2903},{"x":33,"y":919.912},{"x":34,"y":925.0444},{"x":35,"y":920.5286},{"x":36,"y":909.8859},{"x":37,"y":904.182},{"x":38,"y":895.9315},{"x":39,"y":872.0172},{"x":40,"y":861.0069},{"x":41,"y":836.2822},{"x":42,"y":809.4185},{"x":43,"y":806.4975},{"x":44,"y":803.9193},{"x":45,"y":809.979},{"x":46,"y":819.136},{"x":47,"y":809.1287},{"x":48,"y":811.6801},{"x":49,"y":809.7502},{"x":50,"y":801.0422},{"x":51,"y":796.4513},{"x":52,"y":801.6047},{"x":53,"y":802.4903},{"x":54,"y":799.5808},{"x":55,"y":791.7419},{"x":56,"y":782.1892},{"x":57,"y":768.3173},{"x":58,"y":761.1379},{"x":59,"y":754.6662},{"x":60,"y":750.5267},{"x":61,"y":746.3632},{"x":62,"y":752.628},{"x":63,"y":754.018},{"x":64,"y":741.9876},{"x":65,"y":718.1295},{"x":66,"y":700.2568},{"x":67,"y":694.647},{"x":68,"y":692.1945},{"x":69,"y":704.0222},{"x":70,"y":720.6166},{"x":71,"y":735.6487},{"x":72,"y":734.1254},{"x":73,"y":733.8152},{"x":74,"y":733.1211},{"x":75,"y":725.1063},{"x":76,"y":725.3215},{"x":77,"y":723.1042},{"x":78,"y":710.1375},{"x":79,"y":706.906},{"x":80,"y":704.8816},{"x":81,"y":692.3977},{"x":82,"y":690.9053},{"x":83,"y":683.7458},{"x":84,"y":682.2311},{"x":85,"y":682.1647},{"x":86,"y":680.3273},{"x":87,"y":677.0761},{"x":88,"y":676.8538},{"x":89,"y":663.8228},{"x":90,"y":641.4838},{"x":91,"y":592.7274},{"x":92,"y":530.0127},{"x":93,"y":497.9832},{"x":94,"y":489.8614},{"x":95,"y":482.0792},{"x":96,"y":450.2751},{"x":97,"y":429.2006},{"x":98,"y":427.9265},{"x":99,"y":392.5824},{"x":100,"y":344.8273}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴀ(GABA) in Area 7A","filename":"GABAᴀ(GABA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(GABA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(GABA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":633.2543},{"x":1,"y":683.8895},{"x":2,"y":733.8831},{"x":3,"y":817.8773},{"x":4,"y":913.5019},{"x":5,"y":962.923},{"x":6,"y":1029.0366},{"x":7,"y":1115.5869},{"x":8,"y":1181.192},{"x":9,"y":1215.1331},{"x":10,"y":1256.9819},{"x":11,"y":1323.7506},{"x":12,"y":1391.0358},{"x":13,"y":1438.3863},{"x":14,"y":1473.8055},{"x":15,"y":1529.6385},{"x":16,"y":1593.784},{"x":17,"y":1645.9451},{"x":18,"y":1674.4854},{"x":19,"y":1713.1953},{"x":20,"y":1761.9109},{"x":21,"y":1803.5934},{"x":22,"y":1815.8655},{"x":23,"y":1844.8328},{"x":24,"y":1875.7601},{"x":25,"y":1900.514},{"x":26,"y":1913.0381},{"x":27,"y":1915.5459},{"x":28,"y":1927.6898},{"x":29,"y":1946.5079},{"x":30,"y":1949.7002},{"x":31,"y":1946.5862},{"x":32,"y":1933.0266},{"x":33,"y":1917.4317},{"x":34,"y":1911.9525},{"x":35,"y":1897.0949},{"x":36,"y":1864.5121},{"x":37,"y":1832.8557},{"x":38,"y":1818.4731},{"x":39,"y":1786.3761},{"x":40,"y":1753.9339},{"x":41,"y":1717.9174},{"x":42,"y":1701.4803},{"x":43,"y":1675.9082},{"x":44,"y":1639.8605},{"x":45,"y":1609.1988},{"x":46,"y":1585.0067},{"x":47,"y":1563.7425},{"x":48,"y":1520.0845},{"x":49,"y":1472.4049},{"x":50,"y":1445.4671},{"x":51,"y":1409.7009},{"x":52,"y":1382.6194},{"x":53,"y":1368.7174},{"x":54,"y":1367.3614},{"x":55,"y":1355.4199},{"x":56,"y":1337.8691},{"x":57,"y":1327.0411},{"x":58,"y":1319.947},{"x":59,"y":1305.888},{"x":60,"y":1279.8923},{"x":61,"y":1243.9255},{"x":62,"y":1225.4457},{"x":63,"y":1219.6575},{"x":64,"y":1194.7077},{"x":65,"y":1170.3944},{"x":66,"y":1156.6991},{"x":67,"y":1151.1224},{"x":68,"y":1135.6361},{"x":69,"y":1117.7497},{"x":70,"y":1102.9007},{"x":71,"y":1094.3394},{"x":72,"y":1087.649},{"x":73,"y":1077.8298},{"x":74,"y":1069.0679},{"x":75,"y":1057.8355},{"x":76,"y":1043.0357},{"x":77,"y":1031.6027},{"x":78,"y":1016.6468},{"x":79,"y":1014.9124},{"x":80,"y":1009.3228},{"x":81,"y":992.1571},{"x":82,"y":981.1846},{"x":83,"y":975.0292},{"x":84,"y":965.3488},{"x":85,"y":932.1156},{"x":86,"y":905.011},{"x":87,"y":895.5183},{"x":88,"y":870.3877},{"x":89,"y":830.6858},{"x":90,"y":795.4082},{"x":91,"y":771.3419},{"x":92,"y":742.4899},{"x":93,"y":695.7374},{"x":94,"y":647.5571},{"x":95,"y":604.6211},{"x":96,"y":583.8928},{"x":97,"y":535.3829},{"x":98,"y":491.9205},{"x":99,"y":467.8257},{"x":100,"y":438.1232}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area 7A","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":287.485},{"x":1,"y":323.9207},{"x":2,"y":355.1854},{"x":3,"y":406.9999},{"x":4,"y":446.3021},{"x":5,"y":484.376},{"x":6,"y":497.9161},{"x":7,"y":507.6449},{"x":8,"y":511.2654},{"x":9,"y":506.5552},{"x":10,"y":498.8589},{"x":11,"y":495.4824},{"x":12,"y":489.8124},{"x":13,"y":489.5566},{"x":14,"y":489.9393},{"x":15,"y":494.1125},{"x":16,"y":504.6869},{"x":17,"y":518.426},{"x":18,"y":524.4163},{"x":19,"y":534.2099},{"x":20,"y":546.0606},{"x":21,"y":560.1012},{"x":22,"y":574.3908},{"x":23,"y":579.876},{"x":24,"y":587.7441},{"x":25,"y":600.8418},{"x":26,"y":615.6641},{"x":27,"y":621.802},{"x":28,"y":627.6544},{"x":29,"y":629.3529},{"x":30,"y":628.0793},{"x":31,"y":630.3142},{"x":32,"y":626.9981},{"x":33,"y":624.1968},{"x":34,"y":618.3419},{"x":35,"y":612.0252},{"x":36,"y":603.0811},{"x":37,"y":591.6378},{"x":38,"y":573.8886},{"x":39,"y":563.6174},{"x":40,"y":552.9144},{"x":41,"y":537.4074},{"x":42,"y":529.4972},{"x":43,"y":521.2704},{"x":44,"y":515.5684},{"x":45,"y":501.9214},{"x":46,"y":494.5647},{"x":47,"y":491.4766},{"x":48,"y":490.4517},{"x":49,"y":491.2178},{"x":50,"y":493.6335},{"x":51,"y":494.9937},{"x":52,"y":496.1865},{"x":53,"y":497.0359},{"x":54,"y":500.1779},{"x":55,"y":501.9808},{"x":56,"y":496.7596},{"x":57,"y":491.0044},{"x":58,"y":483.6493},{"x":59,"y":473.5738},{"x":60,"y":459.3373},{"x":61,"y":452.936},{"x":62,"y":446.0854},{"x":63,"y":434.4769},{"x":64,"y":427.8319},{"x":65,"y":420.8046},{"x":66,"y":418.7184},{"x":67,"y":420.1777},{"x":68,"y":420.5275},{"x":69,"y":419.7971},{"x":70,"y":419.1136},{"x":71,"y":415.8936},{"x":72,"y":408.3836},{"x":73,"y":398.0484},{"x":74,"y":393.1448},{"x":75,"y":385.1306},{"x":76,"y":373.5769},{"x":77,"y":365.8039},{"x":78,"y":362.7305},{"x":79,"y":357.5371},{"x":80,"y":350.5533},{"x":81,"y":344.3416},{"x":82,"y":343.9415},{"x":83,"y":343.2905},{"x":84,"y":339.7408},{"x":85,"y":331.7992},{"x":86,"y":324.7165},{"x":87,"y":318.9469},{"x":88,"y":304.6224},{"x":89,"y":287.7717},{"x":90,"y":276.7229},{"x":91,"y":266.0581},{"x":92,"y":251.5404},{"x":93,"y":238.0793},{"x":94,"y":229.0837},{"x":95,"y":222.7677},{"x":96,"y":208.9835},{"x":97,"y":192.3791},{"x":98,"y":170.9256},{"x":99,"y":158.565},{"x":100,"y":142.0767}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area 7A","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area 7A"],"datasets":[{"data":[{"x":0,"y":16.2196},{"x":1,"y":18.623},{"x":2,"y":21.2825},{"x":3,"y":22.1199},{"x":4,"y":24.2586},{"x":5,"y":29.259},{"x":6,"y":31.8485},{"x":7,"y":34.6942},{"x":8,"y":37.9384},{"x":9,"y":38.0038},{"x":10,"y":36.569},{"x":11,"y":35.3809},{"x":12,"y":35.0293},{"x":13,"y":33.7838},{"x":14,"y":33.5527},{"x":15,"y":32.957},{"x":16,"y":34.0727},{"x":17,"y":34.848},{"x":18,"y":32.9535},{"x":19,"y":30.2609},{"x":20,"y":29.1827},{"x":21,"y":26.0969},{"x":22,"y":25.0696},{"x":23,"y":23.5956},{"x":24,"y":23.6397},{"x":25,"y":25.2483},{"x":26,"y":26.0559},{"x":27,"y":26.4713},{"x":28,"y":27.2641},{"x":29,"y":26.4122},{"x":30,"y":25.6611},{"x":31,"y":24.7922},{"x":32,"y":24.7539},{"x":33,"y":24.8243},{"x":34,"y":25.8481},{"x":35,"y":28.3815},{"x":36,"y":31.4486},{"x":37,"y":32.5446},{"x":38,"y":33.3392},{"x":39,"y":34.5921},{"x":40,"y":34.5468},{"x":41,"y":35.1758},{"x":42,"y":34.9421},{"x":43,"y":33.375},{"x":44,"y":32.0848},{"x":45,"y":30.3217},{"x":46,"y":29.9827},{"x":47,"y":26.7384},{"x":48,"y":20.7231},{"x":49,"y":18.3694},{"x":50,"y":18.7271},{"x":51,"y":17.8191},{"x":52,"y":17.5363},{"x":53,"y":19.2476},{"x":54,"y":19.5426},{"x":55,"y":20.2188},{"x":56,"y":23.112},{"x":57,"y":26.35},{"x":58,"y":28.4336},{"x":59,"y":29.6557},{"x":60,"y":31.1873},{"x":61,"y":32.0824},{"x":62,"y":32.0225},{"x":63,"y":31.2771},{"x":64,"y":31.2681},{"x":65,"y":30.8967},{"x":66,"y":30.0159},{"x":67,"y":29.5928},{"x":68,"y":29.8552},{"x":69,"y":29.6338},{"x":70,"y":29.3096},{"x":71,"y":29.8545},{"x":72,"y":30.439},{"x":73,"y":31.4543},{"x":74,"y":32.4313},{"x":75,"y":32.571},{"x":76,"y":31.993},{"x":77,"y":31.273},{"x":78,"y":31.3937},{"x":79,"y":31.3067},{"x":80,"y":32.3891},{"x":81,"y":33.3738},{"x":82,"y":31.73},{"x":83,"y":30.142},{"x":84,"y":28.7389},{"x":85,"y":26.1794},{"x":86,"y":25.5832},{"x":87,"y":24.709},{"x":88,"y":22.6134},{"x":89,"y":21.3432},{"x":90,"y":22.0623},{"x":91,"y":21.777},{"x":92,"y":20.1682},{"x":93,"y":22.4356},{"x":94,"y":21.2946},{"x":95,"y":16.7963},{"x":96,"y":13.4095},{"x":97,"y":10.1954},{"x":98,"y":8.3018},{"x":99,"y":7.8181},{"x":100,"y":8.4898}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of M₁(ACh) in Area 7A","filename":"M₁(ACh)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₁(ACh) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₁(ACh) in Area 7A"],"datasets":[{"data":[{"x":0,"y":382.3219},{"x":1,"y":438.3244},{"x":2,"y":525.1396},{"x":3,"y":642.9287},{"x":4,"y":723.291},{"x":5,"y":747.786},{"x":6,"y":796.3545},{"x":7,"y":836.167},{"x":8,"y":858.2237},{"x":9,"y":877.5671},{"x":10,"y":905.5817},{"x":11,"y":943.4378},{"x":12,"y":957.1879},{"x":13,"y":972.0211},{"x":14,"y":991.6481},{"x":15,"y":999.2225},{"x":16,"y":1001.7807},{"x":17,"y":996.5057},{"x":18,"y":991.1604},{"x":19,"y":990.3797},{"x":20,"y":988.3148},{"x":21,"y":984.3874},{"x":22,"y":973.9103},{"x":23,"y":965.1029},{"x":24,"y":955.8308},{"x":25,"y":947.6097},{"x":26,"y":946.8864},{"x":27,"y":949.9137},{"x":28,"y":952.3448},{"x":29,"y":951.2108},{"x":30,"y":942.2136},{"x":31,"y":930.2366},{"x":32,"y":921.215},{"x":33,"y":900.6559},{"x":34,"y":887.3783},{"x":35,"y":876.8349},{"x":36,"y":863.58},{"x":37,"y":841.8048},{"x":38,"y":820.5465},{"x":39,"y":804.5433},{"x":40,"y":777.6351},{"x":41,"y":743.3054},{"x":42,"y":719.2131},{"x":43,"y":690.1274},{"x":44,"y":669.1188},{"x":45,"y":656.207},{"x":46,"y":642.16},{"x":47,"y":633.1034},{"x":48,"y":637.0209},{"x":49,"y":642.5582},{"x":50,"y":650.6476},{"x":51,"y":658.2378},{"x":52,"y":667.8891},{"x":53,"y":673.6998},{"x":54,"y":677.3347},{"x":55,"y":677.9197},{"x":56,"y":680.334},{"x":57,"y":686.7457},{"x":58,"y":695.4823},{"x":59,"y":702.1373},{"x":60,"y":712.301},{"x":61,"y":715.7087},{"x":62,"y":708.5097},{"x":63,"y":701.6702},{"x":64,"y":691.9411},{"x":65,"y":671.646},{"x":66,"y":652.6915},{"x":67,"y":642.6635},{"x":68,"y":637.9381},{"x":69,"y":638.2236},{"x":70,"y":637.9743},{"x":71,"y":636.6224},{"x":72,"y":635.8584},{"x":73,"y":632.9066},{"x":74,"y":628.4894},{"x":75,"y":629.1575},{"x":76,"y":629.3483},{"x":77,"y":633.039},{"x":78,"y":632.1897},{"x":79,"y":628.5441},{"x":80,"y":620.6626},{"x":81,"y":610.0377},{"x":82,"y":605.1272},{"x":83,"y":607.4589},{"x":84,"y":607.969},{"x":85,"y":606.0623},{"x":86,"y":600.9026},{"x":87,"y":595.6902},{"x":88,"y":577.2762},{"x":89,"y":540.8229},{"x":90,"y":516.11},{"x":91,"y":497.9378},{"x":92,"y":450.5715},{"x":93,"y":411.9622},{"x":94,"y":392.5805},{"x":95,"y":376.4116},{"x":96,"y":349.2774},{"x":97,"y":322.4285},{"x":98,"y":305.8261},{"x":99,"y":281.4086},{"x":100,"y":254.1402}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₁ᴀ(5-HT) in Area 7A","filename":"5-HT₁ᴀ(5-HT)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₁ᴀ(5-HT) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₁ᴀ(5-HT) in Area 7A"],"datasets":[{"data":[{"x":0,"y":139.9628},{"x":1,"y":159.4456},{"x":2,"y":173.6681},{"x":3,"y":205.9561},{"x":4,"y":243.5842},{"x":5,"y":258.3094},{"x":6,"y":274.8404},{"x":7,"y":302.1868},{"x":8,"y":327.0849},{"x":9,"y":339.5041},{"x":10,"y":345.5591},{"x":11,"y":360.8777},{"x":12,"y":382.4319},{"x":13,"y":396.7576},{"x":14,"y":405.4409},{"x":15,"y":410.1708},{"x":16,"y":416.519},{"x":17,"y":417.4106},{"x":18,"y":417.3862},{"x":19,"y":413.7091},{"x":20,"y":402.3244},{"x":21,"y":389.7984},{"x":22,"y":378.7112},{"x":23,"y":370.6574},{"x":24,"y":357.4796},{"x":25,"y":339.2121},{"x":26,"y":316.3164},{"x":27,"y":303.4193},{"x":28,"y":289.1645},{"x":29,"y":264.6483},{"x":30,"y":244.9837},{"x":31,"y":235.0097},{"x":32,"y":220.8909},{"x":33,"y":199.5047},{"x":34,"y":182.9034},{"x":35,"y":172.3891},{"x":36,"y":165.8176},{"x":37,"y":155.114},{"x":38,"y":146.7524},{"x":39,"y":137.171},{"x":40,"y":133.4841},{"x":41,"y":128.4862},{"x":42,"y":122.8328},{"x":43,"y":119.2062},{"x":44,"y":123.0689},{"x":45,"y":124.4356},{"x":46,"y":124.4356},{"x":47,"y":124.7959},{"x":48,"y":122.8447},{"x":49,"y":120.9847},{"x":50,"y":117.7807},{"x":51,"y":116.545},{"x":52,"y":117.8415},{"x":53,"y":120.6954},{"x":54,"y":124.0505},{"x":55,"y":129.6019},{"x":56,"y":131.9711},{"x":57,"y":132.3113},{"x":58,"y":133.1741},{"x":59,"y":134.8043},{"x":60,"y":130.7193},{"x":61,"y":124.7211},{"x":62,"y":119.233},{"x":63,"y":113.6246},{"x":64,"y":107.1462},{"x":65,"y":99.4469},{"x":66,"y":95.3613},{"x":67,"y":94.5086},{"x":68,"y":94.3806},{"x":69,"y":90.7424},{"x":70,"y":87.5501},{"x":71,"y":85.4694},{"x":72,"y":83.4803},{"x":73,"y":80.3618},{"x":74,"y":76.4014},{"x":75,"y":75.6064},{"x":76,"y":75.1677},{"x":77,"y":70.9984},{"x":78,"y":66.679},{"x":79,"y":64.1909},{"x":80,"y":62.5636},{"x":81,"y":62.8862},{"x":82,"y":64.1567},{"x":83,"y":62.5512},{"x":84,"y":58.6145},{"x":85,"y":55.8612},{"x":86,"y":49.0966},{"x":87,"y":44.6165},{"x":88,"y":44.0364},{"x":89,"y":42.8588},{"x":90,"y":41.277},{"x":91,"y":39.5338},{"x":92,"y":37.5767},{"x":93,"y":34.2379},{"x":94,"y":31.4925},{"x":95,"y":36.1056},{"x":96,"y":37.7222},{"x":97,"y":37.3067},{"x":98,"y":35.1788},{"x":99,"y":30.4756},{"x":100,"y":26.7841}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of kainate (Glu) in Area 7A","filename":"kainate (Glu)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of kainate (Glu) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of kainate (Glu) in Area 7A"],"datasets":[{"data":[{"x":0,"y":251.0298},{"x":1,"y":276.7229},{"x":2,"y":323.8144},{"x":3,"y":377.3279},{"x":4,"y":409.3778},{"x":5,"y":427.005},{"x":6,"y":470.8358},{"x":7,"y":510.8359},{"x":8,"y":527.2009},{"x":9,"y":538.767},{"x":10,"y":555.7251},{"x":11,"y":571.3581},{"x":12,"y":586.5456},{"x":13,"y":593.2975},{"x":14,"y":599.0479},{"x":15,"y":600.0229},{"x":16,"y":597.5062},{"x":17,"y":589.7764},{"x":18,"y":574.6197},{"x":19,"y":564.1533},{"x":20,"y":561.3965},{"x":21,"y":548.2548},{"x":22,"y":531.669},{"x":23,"y":519.1976},{"x":24,"y":517.561},{"x":25,"y":513.3273},{"x":26,"y":505.345},{"x":27,"y":502.7763},{"x":28,"y":498.0292},{"x":29,"y":489.3411},{"x":30,"y":487.7708},{"x":31,"y":491.6979},{"x":32,"y":493.7672},{"x":33,"y":495.091},{"x":34,"y":500.831},{"x":35,"y":502.5232},{"x":36,"y":499.8632},{"x":37,"y":493.6959},{"x":38,"y":488.9429},{"x":39,"y":487.3495},{"x":40,"y":483.8299},{"x":41,"y":479.8632},{"x":42,"y":483.3104},{"x":43,"y":481.6235},{"x":44,"y":482.1299},{"x":45,"y":485.1353},{"x":46,"y":487.6038},{"x":47,"y":487.2922},{"x":48,"y":488.1},{"x":49,"y":490.7919},{"x":50,"y":491.9073},{"x":51,"y":491.354},{"x":52,"y":493.5581},{"x":53,"y":505.4464},{"x":54,"y":512.3731},{"x":55,"y":526.7837},{"x":56,"y":541.9906},{"x":57,"y":560.2633},{"x":58,"y":566.3225},{"x":59,"y":577.4442},{"x":60,"y":584.235},{"x":61,"y":578.5537},{"x":62,"y":570.2319},{"x":63,"y":558.1292},{"x":64,"y":545.7895},{"x":65,"y":537.263},{"x":66,"y":532.8748},{"x":67,"y":527.3047},{"x":68,"y":529.2707},{"x":69,"y":533.4476},{"x":70,"y":533.1249},{"x":71,"y":535.3997},{"x":72,"y":542.1088},{"x":73,"y":546.3172},{"x":74,"y":550.6567},{"x":75,"y":554.8595},{"x":76,"y":560.8036},{"x":77,"y":564.2271},{"x":78,"y":573.2995},{"x":79,"y":586.0712},{"x":80,"y":594.3494},{"x":81,"y":595.4835},{"x":82,"y":601.0798},{"x":83,"y":608.2318},{"x":84,"y":606.8465},{"x":85,"y":603.6826},{"x":86,"y":594.543},{"x":87,"y":581.347},{"x":88,"y":564.5142},{"x":89,"y":547.7568},{"x":90,"y":520.4909},{"x":91,"y":489.785},{"x":92,"y":468.5371},{"x":93,"y":451.9617},{"x":94,"y":425.3122},{"x":95,"y":399.4838},{"x":96,"y":388.217},{"x":97,"y":369.3565},{"x":98,"y":333.0285},{"x":99,"y":300.525},{"x":100,"y":274.4998}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of M₂(ACh) in Area 7A","filename":"M₂(ACh)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₂(ACh) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₂(ACh) in Area 7A"],"datasets":[{"data":[{"x":0,"y":114.8929},{"x":1,"y":130.3703},{"x":2,"y":144.0927},{"x":3,"y":170.4441},{"x":4,"y":195.7123},{"x":5,"y":206.5739},{"x":6,"y":222.8406},{"x":7,"y":239.9028},{"x":8,"y":247.2082},{"x":9,"y":254.2513},{"x":10,"y":264.1531},{"x":11,"y":276.0237},{"x":12,"y":283.3915},{"x":13,"y":287.4534},{"x":14,"y":294.442},{"x":15,"y":300.26},{"x":16,"y":305.8507},{"x":17,"y":310.466},{"x":18,"y":319.1073},{"x":19,"y":324.0618},{"x":20,"y":329.1759},{"x":21,"y":335.5972},{"x":22,"y":340.5558},{"x":23,"y":342.1647},{"x":24,"y":340.6717},{"x":25,"y":338.7729},{"x":26,"y":334.0883},{"x":27,"y":334.2105},{"x":28,"y":336.9638},{"x":29,"y":337.3929},{"x":30,"y":342.817},{"x":31,"y":347.1665},{"x":32,"y":352.3684},{"x":33,"y":358.0049},{"x":34,"y":361.7798},{"x":35,"y":366.2793},{"x":36,"y":369.133},{"x":37,"y":369.9137},{"x":38,"y":371.1053},{"x":39,"y":370.28},{"x":40,"y":369.7033},{"x":41,"y":366.8806},{"x":42,"y":361.1273},{"x":43,"y":352.8706},{"x":44,"y":347.936},{"x":45,"y":342.8508},{"x":46,"y":338.9172},{"x":47,"y":332.2496},{"x":48,"y":323.4147},{"x":49,"y":315.4865},{"x":50,"y":309.0126},{"x":51,"y":301.6881},{"x":52,"y":297.204},{"x":53,"y":297.1408},{"x":54,"y":294.9886},{"x":55,"y":291.938},{"x":56,"y":292.2467},{"x":57,"y":295.3064},{"x":58,"y":298.4452},{"x":59,"y":299.1345},{"x":60,"y":304.7172},{"x":61,"y":305.8713},{"x":62,"y":305.3739},{"x":63,"y":306.9435},{"x":64,"y":307.6885},{"x":65,"y":308.048},{"x":66,"y":307.9314},{"x":67,"y":306.7715},{"x":68,"y":304.9074},{"x":69,"y":304.3974},{"x":70,"y":304.8622},{"x":71,"y":306.6599},{"x":72,"y":308.4472},{"x":73,"y":310.6843},{"x":74,"y":311.2315},{"x":75,"y":311.6819},{"x":76,"y":313.1128},{"x":77,"y":312.8166},{"x":78,"y":307.4156},{"x":79,"y":301.7453},{"x":80,"y":294.3241},{"x":81,"y":281.7214},{"x":82,"y":276.4935},{"x":83,"y":272.8251},{"x":84,"y":270.7132},{"x":85,"y":268.4946},{"x":86,"y":265.4647},{"x":87,"y":262.5601},{"x":88,"y":257.4283},{"x":89,"y":248.0727},{"x":90,"y":241.656},{"x":91,"y":233.9629},{"x":92,"y":215.2836},{"x":93,"y":203.0747},{"x":94,"y":195.0354},{"x":95,"y":186.7481},{"x":96,"y":174.4074},{"x":97,"y":163.5985},{"x":98,"y":157.4363},{"x":99,"y":143.3972},{"x":100,"y":126.4762}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area 7A","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area 7A"],"datasets":[{"data":[{"x":0,"y":165.8269},{"x":1,"y":178.6777},{"x":2,"y":192.29},{"x":3,"y":222.4915},{"x":4,"y":250.8446},{"x":5,"y":261.4638},{"x":6,"y":274.4116},{"x":7,"y":294.6773},{"x":8,"y":307.9743},{"x":9,"y":313.3783},{"x":10,"y":319.7029},{"x":11,"y":331.7129},{"x":12,"y":342.8041},{"x":13,"y":348.4396},{"x":14,"y":358.5806},{"x":15,"y":367.1346},{"x":16,"y":372.7828},{"x":17,"y":377.325},{"x":18,"y":379.1914},{"x":19,"y":380.8765},{"x":20,"y":379.5686},{"x":21,"y":378.6225},{"x":22,"y":377.4324},{"x":23,"y":372.9805},{"x":24,"y":369.8772},{"x":25,"y":364.8685},{"x":26,"y":357.2026},{"x":27,"y":353.5835},{"x":28,"y":349.3376},{"x":29,"y":337.8648},{"x":30,"y":322.7376},{"x":31,"y":314.552},{"x":32,"y":307.8342},{"x":33,"y":300.6247},{"x":34,"y":295.2776},{"x":35,"y":289.2362},{"x":36,"y":286.1694},{"x":37,"y":278.6468},{"x":38,"y":270.4222},{"x":39,"y":264.9096},{"x":40,"y":259.2552},{"x":41,"y":249.823},{"x":42,"y":244.1371},{"x":43,"y":244.0012},{"x":44,"y":244.6413},{"x":45,"y":245.4113},{"x":46,"y":245.3238},{"x":47,"y":246.9841},{"x":48,"y":248.6358},{"x":49,"y":249.6081},{"x":50,"y":249.203},{"x":51,"y":252.759},{"x":52,"y":252.2215},{"x":53,"y":247.2017},{"x":54,"y":241.6193},{"x":55,"y":241.4535},{"x":56,"y":235.9386},{"x":57,"y":235.5753},{"x":58,"y":234.997},{"x":59,"y":231.3455},{"x":60,"y":229.0312},{"x":61,"y":223.6788},{"x":62,"y":218.5157},{"x":63,"y":213.5319},{"x":64,"y":210.5304},{"x":65,"y":210.3188},{"x":66,"y":209.2017},{"x":67,"y":210.7303},{"x":68,"y":214.214},{"x":69,"y":216.1423},{"x":70,"y":218.1638},{"x":71,"y":215.398},{"x":72,"y":207.1968},{"x":73,"y":204.068},{"x":74,"y":199.9659},{"x":75,"y":195.2424},{"x":76,"y":193.9523},{"x":77,"y":193.5182},{"x":78,"y":193.4707},{"x":79,"y":192.9171},{"x":80,"y":190.5196},{"x":81,"y":189.1443},{"x":82,"y":192.7447},{"x":83,"y":199.7749},{"x":84,"y":207.3913},{"x":85,"y":213.3254},{"x":86,"y":216.0479},{"x":87,"y":214.0178},{"x":88,"y":213.0261},{"x":89,"y":208.3971},{"x":90,"y":200.8762},{"x":91,"y":195.1287},{"x":92,"y":189.2882},{"x":93,"y":178.9209},{"x":94,"y":167.766},{"x":95,"y":160.129},{"x":96,"y":153.9663},{"x":97,"y":142.3762},{"x":98,"y":124.4451},{"x":99,"y":115.9433},{"x":100,"y":105.697}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of D₁(DA) in Area 7A","filename":"D₁(DA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of D₁(DA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of D₁(DA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":82.3706},{"x":1,"y":90.3893},{"x":2,"y":100.1785},{"x":3,"y":107.9235},{"x":4,"y":115.6573},{"x":5,"y":119.7377},{"x":6,"y":125.2441},{"x":7,"y":135.2463},{"x":8,"y":141.4176},{"x":9,"y":149.1826},{"x":10,"y":156.189},{"x":11,"y":161.4988},{"x":12,"y":162.4539},{"x":13,"y":162.8742},{"x":14,"y":158.7893},{"x":15,"y":152.0452},{"x":16,"y":143.7672},{"x":17,"y":139.6443},{"x":18,"y":135.1313},{"x":19,"y":131.8678},{"x":20,"y":133.0253},{"x":21,"y":132.6677},{"x":22,"y":134.1043},{"x":23,"y":138.7863},{"x":24,"y":139.8736},{"x":25,"y":140.2394},{"x":26,"y":140.3024},{"x":27,"y":139.8431},{"x":28,"y":139.3562},{"x":29,"y":137.8853},{"x":30,"y":135.2239},{"x":31,"y":135.2929},{"x":32,"y":136.2921},{"x":33,"y":136.809},{"x":34,"y":139.1511},{"x":35,"y":140.9525},{"x":36,"y":140.0342},{"x":37,"y":140.5578},{"x":38,"y":138.7285},{"x":39,"y":134.9028},{"x":40,"y":133.0436},{"x":41,"y":131.1695},{"x":42,"y":129.7595},{"x":43,"y":129.1131},{"x":44,"y":129.6366},{"x":45,"y":131.0113},{"x":46,"y":133.2678},{"x":47,"y":134.9277},{"x":48,"y":134.7854},{"x":49,"y":133.9852},{"x":50,"y":134.0755},{"x":51,"y":133.0952},{"x":52,"y":131.5614},{"x":53,"y":127.3637},{"x":54,"y":126.3117},{"x":55,"y":124.1813},{"x":56,"y":121.5154},{"x":57,"y":121.601},{"x":58,"y":122.3969},{"x":59,"y":123.8415},{"x":60,"y":125.5515},{"x":61,"y":125.2313},{"x":62,"y":124.8034},{"x":63,"y":125.6635},{"x":64,"y":125.1942},{"x":65,"y":122.8819},{"x":66,"y":120.3305},{"x":67,"y":116.2642},{"x":68,"y":112.9832},{"x":69,"y":112.2761},{"x":70,"y":112.2809},{"x":71,"y":112.5116},{"x":72,"y":111.4163},{"x":73,"y":112.6439},{"x":74,"y":114.9792},{"x":75,"y":115.0479},{"x":76,"y":116.3963},{"x":77,"y":118.2606},{"x":78,"y":118.6052},{"x":79,"y":118.6889},{"x":80,"y":117.4169},{"x":81,"y":114.8647},{"x":82,"y":111.1505},{"x":83,"y":107.7304},{"x":84,"y":103.813},{"x":85,"y":99.3413},{"x":86,"y":96.5002},{"x":87,"y":95.5544},{"x":88,"y":93.9831},{"x":89,"y":93.2571},{"x":90,"y":92.6696},{"x":91,"y":90.4918},{"x":92,"y":88.3666},{"x":93,"y":86.7248},{"x":94,"y":84.7815},{"x":95,"y":81.1593},{"x":96,"y":77.5223},{"x":97,"y":72.3289},{"x":98,"y":68.6545},{"x":99,"y":65.8115},{"x":100,"y":60.2677}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area 7A","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area 7A"],"datasets":[{"data":[{"x":0,"y":262.2453},{"x":1,"y":301.3725},{"x":2,"y":329.3785},{"x":3,"y":386.1118},{"x":4,"y":475.2152},{"x":5,"y":536.1097},{"x":6,"y":589.1526},{"x":7,"y":657.6791},{"x":8,"y":712.4421},{"x":9,"y":768.8856},{"x":10,"y":795.4745},{"x":11,"y":809.7042},{"x":12,"y":826.6472},{"x":13,"y":841.0776},{"x":14,"y":853.4719},{"x":15,"y":858.9538},{"x":16,"y":870.4296},{"x":17,"y":883.5447},{"x":18,"y":894.9556},{"x":19,"y":902.2325},{"x":20,"y":905.7851},{"x":21,"y":909.5306},{"x":22,"y":915.3387},{"x":23,"y":920.2709},{"x":24,"y":922.1055},{"x":25,"y":924.6335},{"x":26,"y":927.0689},{"x":27,"y":929.3031},{"x":28,"y":928.8533},{"x":29,"y":926.8713},{"x":30,"y":924.2145},{"x":31,"y":917.6357},{"x":32,"y":909.5613},{"x":33,"y":901.5776},{"x":34,"y":890.1075},{"x":35,"y":875.7447},{"x":36,"y":864.8834},{"x":37,"y":859.2525},{"x":38,"y":847.3905},{"x":39,"y":834.7358},{"x":40,"y":824.5601},{"x":41,"y":816.5769},{"x":42,"y":810.4789},{"x":43,"y":801.391},{"x":44,"y":788.5195},{"x":45,"y":774.7673},{"x":46,"y":766.4622},{"x":47,"y":752.2814},{"x":48,"y":738.4437},{"x":49,"y":726.1303},{"x":50,"y":714.7208},{"x":51,"y":699.2138},{"x":52,"y":686.8},{"x":53,"y":678.7894},{"x":54,"y":674.8372},{"x":55,"y":673.9734},{"x":56,"y":674.6517},{"x":57,"y":677.2477},{"x":58,"y":681.0908},{"x":59,"y":682.8671},{"x":60,"y":683.0743},{"x":61,"y":676.4656},{"x":62,"y":666.0216},{"x":63,"y":657.1697},{"x":64,"y":651.5592},{"x":65,"y":641.6641},{"x":66,"y":631.0699},{"x":67,"y":624.5821},{"x":68,"y":619.1694},{"x":69,"y":613.6037},{"x":70,"y":611.3418},{"x":71,"y":608.9645},{"x":72,"y":610.0555},{"x":73,"y":610.7931},{"x":74,"y":614.8636},{"x":75,"y":619.8534},{"x":76,"y":625.8974},{"x":77,"y":628.9361},{"x":78,"y":635.588},{"x":79,"y":637.0061},{"x":80,"y":636.0802},{"x":81,"y":631.3841},{"x":82,"y":620.7328},{"x":83,"y":604.283},{"x":84,"y":581.6371},{"x":85,"y":560.7332},{"x":86,"y":546.1187},{"x":87,"y":518.6196},{"x":88,"y":489.1823},{"x":89,"y":460.297},{"x":90,"y":443.2595},{"x":91,"y":421.1332},{"x":92,"y":386.9171},{"x":93,"y":360.6118},{"x":94,"y":330.4156},{"x":95,"y":309.4416},{"x":96,"y":284.8695},{"x":97,"y":244.7918},{"x":98,"y":217.7168},{"x":99,"y":204.6012},{"x":100,"y":187.0507}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area 7A","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area 7A"],"datasets":[{"data":[{"x":0,"y":1276.6393},{"x":1,"y":1416.6576},{"x":2,"y":1600.8501},{"x":3,"y":1799.8068},{"x":4,"y":1975.4301},{"x":5,"y":2019.5139},{"x":6,"y":2138.103},{"x":7,"y":2271.7284},{"x":8,"y":2333.6814},{"x":9,"y":2354.3451},{"x":10,"y":2421.0831},{"x":11,"y":2448.349},{"x":12,"y":2489.6455},{"x":13,"y":2518.603},{"x":14,"y":2564.8087},{"x":15,"y":2661.2743},{"x":16,"y":2785.5394},{"x":17,"y":2846.3764},{"x":18,"y":2922.1705},{"x":19,"y":3017.1913},{"x":20,"y":3065.413},{"x":21,"y":3103.0527},{"x":22,"y":3136.0391},{"x":23,"y":3136.3974},{"x":24,"y":3112.5531},{"x":25,"y":3095.9034},{"x":26,"y":3044.3648},{"x":27,"y":2978.9985},{"x":28,"y":2897.3784},{"x":29,"y":2841.3434},{"x":30,"y":2813.4762},{"x":31,"y":2781.1183},{"x":32,"y":2767.6111},{"x":33,"y":2739.491},{"x":34,"y":2725.6216},{"x":35,"y":2719.2591},{"x":36,"y":2689.2281},{"x":37,"y":2650.694},{"x":38,"y":2607.8615},{"x":39,"y":2519.3011},{"x":40,"y":2430.6736},{"x":41,"y":2398.404},{"x":42,"y":2316.0988},{"x":43,"y":2187.962},{"x":44,"y":2045.462},{"x":45,"y":1945.3265},{"x":46,"y":1852.3396},{"x":47,"y":1762.6735},{"x":48,"y":1655.1016},{"x":49,"y":1578.7541},{"x":50,"y":1543.3275},{"x":51,"y":1529.6925},{"x":52,"y":1528.9028},{"x":53,"y":1544.0347},{"x":54,"y":1535.05},{"x":55,"y":1545.5799},{"x":56,"y":1532.2462},{"x":57,"y":1528.5048},{"x":58,"y":1551.9414},{"x":59,"y":1597.5022},{"x":60,"y":1658.9033},{"x":61,"y":1700.5322},{"x":62,"y":1737.582},{"x":63,"y":1735.3384},{"x":64,"y":1689.6181},{"x":65,"y":1644.5749},{"x":66,"y":1583.8934},{"x":67,"y":1474.3109},{"x":68,"y":1399.0384},{"x":69,"y":1356.3718},{"x":70,"y":1319.0208},{"x":71,"y":1300.4523},{"x":72,"y":1304.0509},{"x":73,"y":1323.4005},{"x":74,"y":1337.4719},{"x":75,"y":1354.6358},{"x":76,"y":1366.3823},{"x":77,"y":1384.0555},{"x":78,"y":1396.1785},{"x":79,"y":1409.2968},{"x":80,"y":1403.7374},{"x":81,"y":1363.6879},{"x":82,"y":1344.6398},{"x":83,"y":1295.8706},{"x":84,"y":1278.1333},{"x":85,"y":1268.0291},{"x":86,"y":1274.1699},{"x":87,"y":1312.8478},{"x":88,"y":1361.3832},{"x":89,"y":1374.4552},{"x":90,"y":1367.7086},{"x":91,"y":1367.1454},{"x":92,"y":1366.7719},{"x":93,"y":1322.9096},{"x":94,"y":1260.4142},{"x":95,"y":1180.6975},{"x":96,"y":1058.7647},{"x":97,"y":935.7444},{"x":98,"y":880.0041},{"x":99,"y":772.0206},{"x":100,"y":630.5493}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₂(5-HT) in Area 7A","filename":"5-HT₂(5-HT)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₂(5-HT) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₂(5-HT) in Area 7A"],"datasets":[{"data":[{"x":0,"y":242.2038},{"x":1,"y":255.429},{"x":2,"y":267.7241},{"x":3,"y":279.0103},{"x":4,"y":291.6608},{"x":5,"y":295.9546},{"x":6,"y":299.9036},{"x":7,"y":301.5689},{"x":8,"y":304.2633},{"x":9,"y":309.8645},{"x":10,"y":313.8278},{"x":11,"y":319.2057},{"x":12,"y":327.8362},{"x":13,"y":331.4444},{"x":14,"y":339.0641},{"x":15,"y":350.7271},{"x":16,"y":360.2297},{"x":17,"y":369.9275},{"x":18,"y":377.3569},{"x":19,"y":382.1865},{"x":20,"y":389.8425},{"x":21,"y":399.2808},{"x":22,"y":406.8255},{"x":23,"y":412.5805},{"x":24,"y":417.9728},{"x":25,"y":420.6806},{"x":26,"y":422.6222},{"x":27,"y":424.0387},{"x":28,"y":428.5667},{"x":29,"y":432.5041},{"x":30,"y":432.0832},{"x":31,"y":433.4775},{"x":32,"y":433.7371},{"x":33,"y":432.8811},{"x":34,"y":431.4239},{"x":35,"y":430.6295},{"x":36,"y":431.0695},{"x":37,"y":431.7824},{"x":38,"y":431.5001},{"x":39,"y":430.1665},{"x":40,"y":428.4513},{"x":41,"y":428.1761},{"x":42,"y":427.3997},{"x":43,"y":426.6064},{"x":44,"y":424.3744},{"x":45,"y":420.7311},{"x":46,"y":416.8468},{"x":47,"y":414.0092},{"x":48,"y":410.5026},{"x":49,"y":407.0281},{"x":50,"y":404.5828},{"x":51,"y":400.2905},{"x":52,"y":395.4896},{"x":53,"y":394.9918},{"x":54,"y":392.9237},{"x":55,"y":388.4179},{"x":56,"y":385.1925},{"x":57,"y":383.5663},{"x":58,"y":383.421},{"x":59,"y":382.8771},{"x":60,"y":380.0523},{"x":61,"y":378.0033},{"x":62,"y":376.2923},{"x":63,"y":374.2232},{"x":64,"y":369.5993},{"x":65,"y":366.3369},{"x":66,"y":361.0353},{"x":67,"y":352.2224},{"x":68,"y":346.1572},{"x":69,"y":342.7126},{"x":70,"y":339.8492},{"x":71,"y":337.3583},{"x":72,"y":329.98},{"x":73,"y":324.276},{"x":74,"y":319.5903},{"x":75,"y":313.9487},{"x":76,"y":310.3027},{"x":77,"y":309.5322},{"x":78,"y":306.4743},{"x":79,"y":300.9548},{"x":80,"y":295.3083},{"x":81,"y":291.7602},{"x":82,"y":290.5495},{"x":83,"y":285.6468},{"x":84,"y":278.1925},{"x":85,"y":271.4423},{"x":86,"y":259.904},{"x":87,"y":251.1477},{"x":88,"y":244.9073},{"x":89,"y":233.0483},{"x":90,"y":221.3004},{"x":91,"y":214.2335},{"x":92,"y":206.5496},{"x":93,"y":201.3465},{"x":94,"y":198.1938},{"x":95,"y":191.2219},{"x":96,"y":184.4615},{"x":97,"y":176.7826},{"x":98,"y":169.376},{"x":99,"y":161.2589},{"x":100,"y":154.8098}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴃ(GABA) in Area 7A","filename":"GABAᴃ(GABA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴃ(GABA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴃ(GABA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":1156.1503},{"x":1,"y":1355.3643},{"x":2,"y":1631.4605},{"x":3,"y":2031.9433},{"x":4,"y":2398.5408},{"x":5,"y":2655.2859},{"x":6,"y":2814.1466},{"x":7,"y":3105.5639},{"x":8,"y":3275.4003},{"x":9,"y":3354.4507},{"x":10,"y":3428.7803},{"x":11,"y":3492.3326},{"x":12,"y":3557.9408},{"x":13,"y":3597.4988},{"x":14,"y":3629.379},{"x":15,"y":3685.4961},{"x":16,"y":3720.6345},{"x":17,"y":3744.9326},{"x":18,"y":3739.527},{"x":19,"y":3719.9883},{"x":20,"y":3660.7312},{"x":21,"y":3620.1131},{"x":22,"y":3613.7725},{"x":23,"y":3597.0596},{"x":24,"y":3570.9657},{"x":25,"y":3534.6392},{"x":26,"y":3501.8373},{"x":27,"y":3440.9219},{"x":28,"y":3356.2778},{"x":29,"y":3291.713},{"x":30,"y":3255.3961},{"x":31,"y":3164.543},{"x":32,"y":3064.1379},{"x":33,"y":3001.1613},{"x":34,"y":2975.026},{"x":35,"y":2933.2342},{"x":36,"y":2919.994},{"x":37,"y":2909.7543},{"x":38,"y":2899.71},{"x":39,"y":2881.0588},{"x":40,"y":2843.6094},{"x":41,"y":2791.959},{"x":42,"y":2750.5244},{"x":43,"y":2697.688},{"x":44,"y":2615.8356},{"x":45,"y":2520.23},{"x":46,"y":2456.3633},{"x":47,"y":2400.6612},{"x":48,"y":2326.8185},{"x":49,"y":2289.6689},{"x":50,"y":2283.5967},{"x":51,"y":2290.7856},{"x":52,"y":2329.2688},{"x":53,"y":2357.0118},{"x":54,"y":2362.333},{"x":55,"y":2362.336},{"x":56,"y":2361.9552},{"x":57,"y":2367.9274},{"x":58,"y":2368.522},{"x":59,"y":2374.1113},{"x":60,"y":2362.7651},{"x":61,"y":2348.8044},{"x":62,"y":2315.9224},{"x":63,"y":2275.5391},{"x":64,"y":2206.0325},{"x":65,"y":2112.2779},{"x":66,"y":2055.4444},{"x":67,"y":2044.3293},{"x":68,"y":2047.5537},{"x":69,"y":2089.2383},{"x":70,"y":2140.2902},{"x":71,"y":2158.2404},{"x":72,"y":2168.1091},{"x":73,"y":2179.0646},{"x":74,"y":2166.174},{"x":75,"y":2149.4004},{"x":76,"y":2105.4029},{"x":77,"y":2046.534},{"x":78,"y":1997.6759},{"x":79,"y":1974.2813},{"x":80,"y":1936.0846},{"x":81,"y":1887.2022},{"x":82,"y":1848.6358},{"x":83,"y":1808.6652},{"x":84,"y":1767.6402},{"x":85,"y":1711.0813},{"x":86,"y":1630.4481},{"x":87,"y":1592.159},{"x":88,"y":1526.7898},{"x":89,"y":1405.8421},{"x":90,"y":1307.0386},{"x":91,"y":1226.3495},{"x":92,"y":1156.3211},{"x":93,"y":1049.1288},{"x":94,"y":919.7275},{"x":95,"y":862.9674},{"x":96,"y":799.3356},{"x":97,"y":719.6935},{"x":98,"y":650.9807},{"x":99,"y":602.711},{"x":100,"y":565.6492}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null}]],["Density measurements of different receptors for Area PFop",[{"name":"Receptor density fingerprint of Area PFop","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["388","427","1065","3008","1524","2173","2744","550","159","968","48","374","661","414","430","92"]},{"label":"mean_sd","data":["204","187","118","1211","404","605","658","200","41","571","30","118","mg/mol","178","121","32"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PFop (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(144,238,144,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area PF",[{"name":"Receptor density fingerprint of Area PF","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["496","647","1157","3398","1595","2225","2706","501","185","957","49","409","837","298","439","113"]},{"label":"mean_sd","data":["131","260","289","1453","527","652","830","197","63","285","17","163","mg/mol","83","146","40"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PF (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(239,134,0,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area PFt",[{"name":"Receptor density fingerprint of Area PFt","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["367","503","1085","3044","1555","2140","2630","499","175","872","47","364","429","319","416","82"]},{"label":"mean_sd","data":["171","217","189","985","454","519","661","154","47","431","25","103","237","140","129","32"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PFt (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(144,238,144,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area PFcm",[{"name":"Receptor density fingerprint of Area PFcm","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["412","602","1237","3194","1598","2188","2379","536","182","866","63","398","831","300","444","113"]},{"label":"mean_sd","data":["149","303","230","1582","389","768","719","198","62","393","33","155","mg/mol","82","204","54"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PFcm (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(144,238,144,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area FG1",[{"name":"Receptor density fingerprint of Area FG1","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["419","499","1176","NA","1933","2140","2731","480","219","833","56","343","467","317","441","107"]},{"label":"mean_sd","data":["65","117","142","NA","255","216","421","67","34","163","12","45","93","60","82","20"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area FG1 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(0,100,209,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAᴀ(BZ) in Area FG1","filename":"GABAᴀ(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_BZ.jpg"},{"name":"Sample autoradiograph of α₁(NA) in Area FG1","filename":"α₁(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area FG1","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAᴀ(GABA) in Area FG1","filename":"GABAᴀ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area FG1","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area FG1","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of M₁(ACh) in Area FG1","filename":"M₁(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HT₁ᴀ(5-HT) in Area FG1","filename":"5-HT₁ᴀ(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area FG1","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_kainate.jpg"},{"name":"Sample autoradiograph of M₂(ACh) in Area FG1","filename":"M₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area FG1","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_AMPA.jpg"},{"name":"Sample autoradiograph of D₁(DA) in Area FG1","filename":"D₁(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area FG1","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_M3.jpg"},{"name":"Sample autoradiograph of 5-HT₂(5-HT) in Area FG1","filename":"5-HT₂(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAᴃ(GABA) in Area FG1","filename":"GABAᴃ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_GABAB.jpg"}]],["Density measurements of different receptors for Area PGa",[{"name":"Receptor density fingerprint of Area PGa","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["463","635","1259","3957","1998","2742","2442","479","172","827","70","361","698","303","441","136"]},{"label":"mean_sd","data":["187","405","278","1655","577","291","876","192","77","348","34","169","mg/mol","123","238","55"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PGa (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(5,198,198,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]]]
\ No newline at end of file
+[["Density measurements of different receptors for Area 44d",[{"name":"Receptor density fingerprint of Area 44d","filename":"fingerprint","mimetype":"application/json","properties":{"description":"**Multireceptor fingerprint for area 44d.** This polar plot shows the mean receptor densities in fmol/mg protein (solid shape) and standard deviation (dashed line) of 16 receptor binding sites in the area 44d. The data is based on the left and right hemisphere of one female subject (brain id: hg0201, sample ids: ID07 and ID08, age: 77, cause of death: lung edema) and the right hemispheres of two male subjects (brain id: hg0500, sample ids: ID09, age: 72, cause of death: cardiac arrest | brain id: hg0100, sample ids: ID12, age: 77, cause of death: coronary heart disease).","publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["492","498","964","NA","1302","1487","1797","631","247","432","47","126","179","284","271","62"]},{"label":"mean_sd","data":["70","84","95","NA","91","64","105","49","20","32","13","9","15","38","11","20"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 44d (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(255,10,10,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAᴀ(BZ) in Area 44d","filename":"GABAᴀ(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_BZ.jpg"},{"name":"Sample autoradiograph of α₁(NA) in Area 44d","filename":"α₁(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area 44d","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAᴀ(GABA) in Area 44d","filename":"GABAᴀ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area 44d","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area 44d","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of M₁(ACh) in Area 44d","filename":"M₁(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HT₁ᴀ(5-HT) in Area 44d","filename":"5-HT₁ᴀ(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area 44d","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_kainate.jpg"},{"name":"Sample autoradiograph of M₂(ACh) in Area 44d","filename":"M₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area 44d","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_AMPA.jpg"},{"name":"Sample autoradiograph of D₁(DA) in Area 44d","filename":"D₁(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area 44d","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area 44d","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HT₂(5-HT) in Area 44d","filename":"5-HT₂(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAᴃ(GABA) in Area 44d","filename":"GABAᴃ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_GABAB.jpg"},{"name":"Sample profile of GABAᴀ(BZ) in Area 44d","filename":"GABAᴀ(BZ)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of BZ receptor in area 44d.** This profile plot shows examplary the course of the BZ receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(BZ) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(BZ) in Area 44d"],"datasets":[{"data":[{"x":0,"y":862.4783},{"x":1,"y":904.9561},{"x":2,"y":940.0621},{"x":3,"y":978.1732},{"x":4,"y":1021.4554},{"x":5,"y":1063.5893},{"x":6,"y":1100.5906},{"x":7,"y":1148.4482},{"x":8,"y":1196.1297},{"x":9,"y":1232.1727},{"x":10,"y":1279.4679},{"x":11,"y":1327.8814},{"x":12,"y":1381.3095},{"x":13,"y":1420.287},{"x":14,"y":1445.6493},{"x":15,"y":1466.8894},{"x":16,"y":1489.8366},{"x":17,"y":1516.5528},{"x":18,"y":1537.983},{"x":19,"y":1549.82},{"x":20,"y":1560.0878},{"x":21,"y":1567.4582},{"x":22,"y":1566.6033},{"x":23,"y":1563.7507},{"x":24,"y":1563.5412},{"x":25,"y":1556.1077},{"x":26,"y":1545.7337},{"x":27,"y":1538.1084},{"x":28,"y":1530.9002},{"x":29,"y":1520.4582},{"x":30,"y":1503.7746},{"x":31,"y":1487.0829},{"x":32,"y":1471.0083},{"x":33,"y":1453.8871},{"x":34,"y":1432.2643},{"x":35,"y":1411.4065},{"x":36,"y":1387.046},{"x":37,"y":1366.0299},{"x":38,"y":1344.2281},{"x":39,"y":1329.7899},{"x":40,"y":1314.2608},{"x":41,"y":1302.004},{"x":42,"y":1296.7537},{"x":43,"y":1291.258},{"x":44,"y":1287.8412},{"x":45,"y":1281.8791},{"x":46,"y":1275.2256},{"x":47,"y":1268.6997},{"x":48,"y":1259.4717},{"x":49,"y":1255.229},{"x":50,"y":1250.4567},{"x":51,"y":1242.1166},{"x":52,"y":1233.2152},{"x":53,"y":1219.9536},{"x":54,"y":1204.539},{"x":55,"y":1191.1147},{"x":56,"y":1172.3973},{"x":57,"y":1152.7135},{"x":58,"y":1138.4501},{"x":59,"y":1127.8171},{"x":60,"y":1117.035},{"x":61,"y":1109.6632},{"x":62,"y":1104.9799},{"x":63,"y":1102.4032},{"x":64,"y":1099.7075},{"x":65,"y":1094.5447},{"x":66,"y":1092.653},{"x":67,"y":1084.0402},{"x":68,"y":1075.0572},{"x":69,"y":1062.0217},{"x":70,"y":1047.0548},{"x":71,"y":1027.9635},{"x":72,"y":1014.9857},{"x":73,"y":1007.8998},{"x":74,"y":1001.2393},{"x":75,"y":994.2144},{"x":76,"y":990.1416},{"x":77,"y":993.5673},{"x":78,"y":1004.6509},{"x":79,"y":1024.5691},{"x":80,"y":1047.7956},{"x":81,"y":1063.0773},{"x":82,"y":1078.7763},{"x":83,"y":1090.9517},{"x":84,"y":1095.9374},{"x":85,"y":1095.7341},{"x":86,"y":1090.4028},{"x":87,"y":1081.8609},{"x":88,"y":1069.6875},{"x":89,"y":1057.9219},{"x":90,"y":1045.814},{"x":91,"y":1036.204},{"x":92,"y":1026.1815},{"x":93,"y":1013.0357},{"x":94,"y":997.8474},{"x":95,"y":983.3172},{"x":96,"y":965.7575},{"x":97,"y":941.5706},{"x":98,"y":912.861},{"x":99,"y":895.6904},{"x":100,"y":871.7232}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of α₁(NA) in Area 44d","filename":"α₁(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha1 receptor in area 44d.** This profile plot shows examplary the course of the alpha1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₁(NA) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₁(NA) in Area 44d"],"datasets":[{"data":[{"x":0,"y":130.7896},{"x":1,"y":140.9879},{"x":2,"y":149.0042},{"x":3,"y":156.8055},{"x":4,"y":161.9389},{"x":5,"y":166.5248},{"x":6,"y":170.7821},{"x":7,"y":175.1421},{"x":8,"y":178.7428},{"x":9,"y":181.1797},{"x":10,"y":183.5982},{"x":11,"y":184.1112},{"x":12,"y":182.259},{"x":13,"y":179.5397},{"x":14,"y":176.7495},{"x":15,"y":174.4247},{"x":16,"y":170.6559},{"x":17,"y":167.6534},{"x":18,"y":165.7885},{"x":19,"y":163.5237},{"x":20,"y":160.065},{"x":21,"y":157.9938},{"x":22,"y":155.5715},{"x":23,"y":151.8706},{"x":24,"y":147.3292},{"x":25,"y":144.302},{"x":26,"y":141.1756},{"x":27,"y":139.0418},{"x":28,"y":138.7087},{"x":29,"y":138.8131},{"x":30,"y":138.2365},{"x":31,"y":136.8411},{"x":32,"y":135.4582},{"x":33,"y":133.5539},{"x":34,"y":132.2366},{"x":35,"y":130.2886},{"x":36,"y":129.0109},{"x":37,"y":126.0496},{"x":38,"y":123.3321},{"x":39,"y":120.5614},{"x":40,"y":115.2084},{"x":41,"y":110.1425},{"x":42,"y":106.4546},{"x":43,"y":103.1611},{"x":44,"y":99.9261},{"x":45,"y":98.6637},{"x":46,"y":98.0565},{"x":47,"y":98.1878},{"x":48,"y":98.5189},{"x":49,"y":100.3296},{"x":50,"y":102.5879},{"x":51,"y":105.4071},{"x":52,"y":108.0192},{"x":53,"y":110.4559},{"x":54,"y":112.2943},{"x":55,"y":114.54},{"x":56,"y":116.1756},{"x":57,"y":116.5185},{"x":58,"y":117.7535},{"x":59,"y":119.244},{"x":60,"y":119.971},{"x":61,"y":121.1285},{"x":62,"y":121.2101},{"x":63,"y":119.7802},{"x":64,"y":117.5138},{"x":65,"y":115.7242},{"x":66,"y":113.4026},{"x":67,"y":111.6592},{"x":68,"y":110.293},{"x":69,"y":109.692},{"x":70,"y":108.6343},{"x":71,"y":108.5367},{"x":72,"y":108.3105},{"x":73,"y":108.2214},{"x":74,"y":108.7634},{"x":75,"y":108.8954},{"x":76,"y":108.4594},{"x":77,"y":108.3565},{"x":78,"y":109.0722},{"x":79,"y":109.682},{"x":80,"y":110.8478},{"x":81,"y":112.0725},{"x":82,"y":112.4945},{"x":83,"y":113.0226},{"x":84,"y":113.7216},{"x":85,"y":114.6475},{"x":86,"y":114.9371},{"x":87,"y":113.7731},{"x":88,"y":111.8517},{"x":89,"y":108.946},{"x":90,"y":106.0041},{"x":91,"y":102.8956},{"x":92,"y":99.6637},{"x":93,"y":96.4381},{"x":94,"y":94.214},{"x":95,"y":91.7969},{"x":96,"y":89.1278},{"x":97,"y":87.4982},{"x":98,"y":85.4295},{"x":99,"y":82.8105},{"x":100,"y":80.9758}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area 44d","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of NMDA receptor in area 44d.** This profile plot shows examplary the course of the NMDA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area 44d"],"datasets":[{"data":[{"x":0,"y":635.6834},{"x":1,"y":675.208},{"x":2,"y":731.566},{"x":3,"y":801.7801},{"x":4,"y":856.3079},{"x":5,"y":897.7443},{"x":6,"y":948.6629},{"x":7,"y":993.517},{"x":8,"y":1029.8431},{"x":9,"y":1073.4983},{"x":10,"y":1107.4572},{"x":11,"y":1131.4918},{"x":12,"y":1156.1907},{"x":13,"y":1173.8513},{"x":14,"y":1182.4837},{"x":15,"y":1183.8551},{"x":16,"y":1185.7537},{"x":17,"y":1186.214},{"x":18,"y":1186.8223},{"x":19,"y":1190.7089},{"x":20,"y":1189.4357},{"x":21,"y":1188.8477},{"x":22,"y":1186.0213},{"x":23,"y":1180.0307},{"x":24,"y":1176.4207},{"x":25,"y":1167.4097},{"x":26,"y":1158.4317},{"x":27,"y":1156.7935},{"x":28,"y":1160.3882},{"x":29,"y":1166.0116},{"x":30,"y":1166.2152},{"x":31,"y":1165.6131},{"x":32,"y":1152.5813},{"x":33,"y":1136.9478},{"x":34,"y":1125.1997},{"x":35,"y":1113.9549},{"x":36,"y":1102.5153},{"x":37,"y":1092.1359},{"x":38,"y":1087.1594},{"x":39,"y":1084.7349},{"x":40,"y":1079.316},{"x":41,"y":1067.3251},{"x":42,"y":1049.1084},{"x":43,"y":1028.4688},{"x":44,"y":1016.6733},{"x":45,"y":1002.3098},{"x":46,"y":992.7893},{"x":47,"y":982.9068},{"x":48,"y":976.464},{"x":49,"y":973.9465},{"x":50,"y":972.8533},{"x":51,"y":967.9861},{"x":52,"y":962.3695},{"x":53,"y":957.2399},{"x":54,"y":956.5291},{"x":55,"y":952.3528},{"x":56,"y":951.5988},{"x":57,"y":955.7469},{"x":58,"y":951.71},{"x":59,"y":947.1888},{"x":60,"y":935.9046},{"x":61,"y":919.8848},{"x":62,"y":901.3947},{"x":63,"y":889.9072},{"x":64,"y":881.2536},{"x":65,"y":885.4057},{"x":66,"y":893.8111},{"x":67,"y":896.4547},{"x":68,"y":894.5928},{"x":69,"y":887.2078},{"x":70,"y":886.2902},{"x":71,"y":889.8892},{"x":72,"y":900.173},{"x":73,"y":906.2113},{"x":74,"y":907.9776},{"x":75,"y":912.0918},{"x":76,"y":911.2674},{"x":77,"y":906.7842},{"x":78,"y":901.9207},{"x":79,"y":890.6728},{"x":80,"y":883.168},{"x":81,"y":875.8116},{"x":82,"y":875.735},{"x":83,"y":880.3059},{"x":84,"y":882.1947},{"x":85,"y":878.5786},{"x":86,"y":871.6391},{"x":87,"y":857.0674},{"x":88,"y":841.2104},{"x":89,"y":824.9857},{"x":90,"y":810.9442},{"x":91,"y":792.5228},{"x":92,"y":782.8442},{"x":93,"y":777.4051},{"x":94,"y":769.2498},{"x":95,"y":749},{"x":96,"y":728.1304},{"x":97,"y":698.4146},{"x":98,"y":663.5727},{"x":99,"y":645.9479},{"x":100,"y":636.295}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴀ(GABA) in Area 44d","filename":"GABAᴀ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAA receptor in area 44d.** This profile plot shows examplary the course of the GABAA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(GABA) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(GABA) in Area 44d"],"datasets":[{"data":[{"x":0,"y":912.3481},{"x":1,"y":996.6432},{"x":2,"y":1079.7845},{"x":3,"y":1171.4523},{"x":4,"y":1262.3768},{"x":5,"y":1335.6448},{"x":6,"y":1396.0595},{"x":7,"y":1455.7233},{"x":8,"y":1522.3495},{"x":9,"y":1580.9966},{"x":10,"y":1637.3171},{"x":11,"y":1687.9301},{"x":12,"y":1735.6324},{"x":13,"y":1774.6996},{"x":14,"y":1808.1959},{"x":15,"y":1836.3758},{"x":16,"y":1865.2314},{"x":17,"y":1892.1688},{"x":18,"y":1911.4762},{"x":19,"y":1925.1241},{"x":20,"y":1935.6455},{"x":21,"y":1943.2833},{"x":22,"y":1946.4122},{"x":23,"y":1945.428},{"x":24,"y":1942.7371},{"x":25,"y":1938.6823},{"x":26,"y":1929.423},{"x":27,"y":1916.1787},{"x":28,"y":1902.8158},{"x":29,"y":1889.6722},{"x":30,"y":1878.5519},{"x":31,"y":1865.9414},{"x":32,"y":1850.4099},{"x":33,"y":1836.4709},{"x":34,"y":1822.2781},{"x":35,"y":1804.9761},{"x":36,"y":1779.1261},{"x":37,"y":1758.0129},{"x":38,"y":1737.5998},{"x":39,"y":1714.4166},{"x":40,"y":1690.3024},{"x":41,"y":1669.4437},{"x":42,"y":1644.9303},{"x":43,"y":1618.1184},{"x":44,"y":1594.6439},{"x":45,"y":1574.1264},{"x":46,"y":1557.4766},{"x":47,"y":1535.8774},{"x":48,"y":1508.4733},{"x":49,"y":1481.9088},{"x":50,"y":1455.3302},{"x":51,"y":1430.6069},{"x":52,"y":1410.9065},{"x":53,"y":1388.7577},{"x":54,"y":1365.7271},{"x":55,"y":1341.8161},{"x":56,"y":1313.3073},{"x":57,"y":1283.5357},{"x":58,"y":1246.5555},{"x":59,"y":1211.1568},{"x":60,"y":1186.053},{"x":61,"y":1156.1117},{"x":62,"y":1126.0098},{"x":63,"y":1101.1334},{"x":64,"y":1083.0201},{"x":65,"y":1068.5558},{"x":66,"y":1058.3183},{"x":67,"y":1048.257},{"x":68,"y":1041.41},{"x":69,"y":1038.1881},{"x":70,"y":1039.6274},{"x":71,"y":1044.254},{"x":72,"y":1050.0164},{"x":73,"y":1059.0834},{"x":74,"y":1070.4546},{"x":75,"y":1076.9672},{"x":76,"y":1076.3121},{"x":77,"y":1074.6215},{"x":78,"y":1074.6933},{"x":79,"y":1073.7146},{"x":80,"y":1070.2358},{"x":81,"y":1062.9492},{"x":82,"y":1056.7149},{"x":83,"y":1045.6092},{"x":84,"y":1032.4597},{"x":85,"y":1022.5733},{"x":86,"y":1009.3236},{"x":87,"y":986.6053},{"x":88,"y":963.0126},{"x":89,"y":935.8529},{"x":90,"y":912.2505},{"x":91,"y":883.9803},{"x":92,"y":847.4967},{"x":93,"y":804.4859},{"x":94,"y":769.2487},{"x":95,"y":732.9212},{"x":96,"y":690.3731},{"x":97,"y":643.1514},{"x":98,"y":596.0863},{"x":99,"y":553.514},{"x":100,"y":509.3552}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area 44d","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha2 receptor in area 44d.** This profile plot shows examplary the course of the alpha2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area 44d"],"datasets":[{"data":[{"x":0,"y":258.906},{"x":1,"y":323.761},{"x":2,"y":385.6594},{"x":3,"y":487.0577},{"x":4,"y":578.5347},{"x":5,"y":638.3412},{"x":6,"y":680.9127},{"x":7,"y":715.6179},{"x":8,"y":729.571},{"x":9,"y":735.6994},{"x":10,"y":739.6825},{"x":11,"y":737.0603},{"x":12,"y":730.7463},{"x":13,"y":728.7334},{"x":14,"y":725.1795},{"x":15,"y":721.2406},{"x":16,"y":711.7179},{"x":17,"y":705.9346},{"x":18,"y":702.8863},{"x":19,"y":705.6425},{"x":20,"y":709.4504},{"x":21,"y":709.7301},{"x":22,"y":707.2349},{"x":23,"y":702.9435},{"x":24,"y":689.2798},{"x":25,"y":667.4628},{"x":26,"y":649.9016},{"x":27,"y":636.0541},{"x":28,"y":623.3399},{"x":29,"y":618.5677},{"x":30,"y":614.4416},{"x":31,"y":609.7299},{"x":32,"y":598.9496},{"x":33,"y":585.4909},{"x":34,"y":571.5837},{"x":35,"y":565.209},{"x":36,"y":565.0373},{"x":37,"y":565.2943},{"x":38,"y":567.3824},{"x":39,"y":568.5015},{"x":40,"y":568.9158},{"x":41,"y":566.5511},{"x":42,"y":568.1449},{"x":43,"y":568.3208},{"x":44,"y":562.7546},{"x":45,"y":560.2755},{"x":46,"y":551.3378},{"x":47,"y":542.831},{"x":48,"y":537.2806},{"x":49,"y":535.26},{"x":50,"y":534.8153},{"x":51,"y":532.5874},{"x":52,"y":526.6135},{"x":53,"y":529.0138},{"x":54,"y":532.7288},{"x":55,"y":545.1786},{"x":56,"y":556.5306},{"x":57,"y":560.7763},{"x":58,"y":559.8273},{"x":59,"y":562.9999},{"x":60,"y":566.9763},{"x":61,"y":570.8686},{"x":62,"y":578.7531},{"x":63,"y":583.6336},{"x":64,"y":583.4727},{"x":65,"y":577.0996},{"x":66,"y":571.3407},{"x":67,"y":565.1271},{"x":68,"y":555.9465},{"x":69,"y":549.4008},{"x":70,"y":547.2537},{"x":71,"y":546.2475},{"x":72,"y":550.0539},{"x":73,"y":548.5338},{"x":74,"y":546.8921},{"x":75,"y":540.4656},{"x":76,"y":530.5863},{"x":77,"y":522.8556},{"x":78,"y":509.1711},{"x":79,"y":498.7558},{"x":80,"y":485.3802},{"x":81,"y":484.1224},{"x":82,"y":475.032},{"x":83,"y":469.7197},{"x":84,"y":469.363},{"x":85,"y":465.997},{"x":86,"y":466.2453},{"x":87,"y":470.733},{"x":88,"y":484.8594},{"x":89,"y":488.6708},{"x":90,"y":489.6416},{"x":91,"y":485.8919},{"x":92,"y":478.3548},{"x":93,"y":474.0475},{"x":94,"y":467.2134},{"x":95,"y":455.6761},{"x":96,"y":441.6636},{"x":97,"y":429.3606},{"x":98,"y":418.8048},{"x":99,"y":410.5251},{"x":100,"y":400.7364}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area 44d","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha4-beta2 receptor in area 44d.** This profile plot shows examplary the course of the alpha4-beta2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the right hemisphere of one female subject (brain id: hg0201, sample id: ID08, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area 44d"],"datasets":[{"data":[{"x":0,"y":17.5526},{"x":1,"y":18.2404},{"x":2,"y":19.5733},{"x":3,"y":20.7844},{"x":4,"y":21.6193},{"x":5,"y":22.3846},{"x":6,"y":22.8477},{"x":7,"y":23.1654},{"x":8,"y":23.5847},{"x":9,"y":23.7386},{"x":10,"y":23.6701},{"x":11,"y":23.5301},{"x":12,"y":23.2492},{"x":13,"y":23.2957},{"x":14,"y":23.5427},{"x":15,"y":23.2245},{"x":16,"y":22.832},{"x":17,"y":23.0307},{"x":18,"y":23.2984},{"x":19,"y":23.4381},{"x":20,"y":23.4944},{"x":21,"y":23.7969},{"x":22,"y":24.0208},{"x":23,"y":24.0548},{"x":24,"y":23.5701},{"x":25,"y":22.8164},{"x":26,"y":22.5366},{"x":27,"y":22.3094},{"x":28,"y":22.2348},{"x":29,"y":22.7725},{"x":30,"y":23.5598},{"x":31,"y":24.0013},{"x":32,"y":23.9982},{"x":33,"y":23.9236},{"x":34,"y":23.7299},{"x":35,"y":23.5581},{"x":36,"y":23.3843},{"x":37,"y":23.1688},{"x":38,"y":22.9755},{"x":39,"y":22.7365},{"x":40,"y":22.6232},{"x":41,"y":22.6734},{"x":42,"y":22.9171},{"x":43,"y":22.956},{"x":44,"y":23.3183},{"x":45,"y":23.7455},{"x":46,"y":23.5557},{"x":47,"y":23.005},{"x":48,"y":22.2134},{"x":49,"y":21.7504},{"x":50,"y":21.7787},{"x":51,"y":21.4508},{"x":52,"y":20.8724},{"x":53,"y":20.5354},{"x":54,"y":20.3356},{"x":55,"y":20.1915},{"x":56,"y":20.0113},{"x":57,"y":20.2368},{"x":58,"y":20.7617},{"x":59,"y":20.7408},{"x":60,"y":20.2946},{"x":61,"y":20.2009},{"x":62,"y":20.0558},{"x":63,"y":20.0194},{"x":64,"y":20.2714},{"x":65,"y":20.5244},{"x":66,"y":21.0666},{"x":67,"y":21.6686},{"x":68,"y":22.3135},{"x":69,"y":22.677},{"x":70,"y":22.5304},{"x":71,"y":22.0354},{"x":72,"y":21.3802},{"x":73,"y":21.1139},{"x":74,"y":20.9309},{"x":75,"y":20.402},{"x":76,"y":20.008},{"x":77,"y":19.9195},{"x":78,"y":19.8669},{"x":79,"y":19.9247},{"x":80,"y":20.0564},{"x":81,"y":20.1244},{"x":82,"y":20.026},{"x":83,"y":20.2388},{"x":84,"y":20.5598},{"x":85,"y":20.7589},{"x":86,"y":20.7626},{"x":87,"y":20.5186},{"x":88,"y":20.1381},{"x":89,"y":19.7113},{"x":90,"y":19.2301},{"x":91,"y":18.6025},{"x":92,"y":18.1931},{"x":93,"y":17.9235},{"x":94,"y":17.6553},{"x":95,"y":17.284},{"x":96,"y":17.0644},{"x":97,"y":17.3845},{"x":98,"y":17.9617},{"x":99,"y":18.4356},{"x":100,"y":18.5941}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of M₁(ACh) in Area 44d","filename":"M₁(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M1 receptor in area 44d.** This profile plot shows examplary the course of the M1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₁(ACh) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₁(ACh) in Area 44d"],"datasets":[{"data":[{"x":0,"y":313.546},{"x":1,"y":361.7929},{"x":2,"y":447.2941},{"x":3,"y":514.3602},{"x":4,"y":558.0369},{"x":5,"y":593.8824},{"x":6,"y":618.8681},{"x":7,"y":639.7403},{"x":8,"y":653.2936},{"x":9,"y":664.0382},{"x":10,"y":672.2016},{"x":11,"y":672.6758},{"x":12,"y":668.9245},{"x":13,"y":658.5671},{"x":14,"y":648.145},{"x":15,"y":641.9965},{"x":16,"y":636.6961},{"x":17,"y":630.5368},{"x":18,"y":628.4637},{"x":19,"y":621.4073},{"x":20,"y":614.7505},{"x":21,"y":605.0924},{"x":22,"y":594.472},{"x":23,"y":585.8544},{"x":24,"y":579.2243},{"x":25,"y":570.2165},{"x":26,"y":565.5268},{"x":27,"y":560.7574},{"x":28,"y":553.8616},{"x":29,"y":545.1053},{"x":30,"y":539.9686},{"x":31,"y":538.2401},{"x":32,"y":539.8369},{"x":33,"y":539.2209},{"x":34,"y":533.8936},{"x":35,"y":524.6271},{"x":36,"y":519.2756},{"x":37,"y":518.0102},{"x":38,"y":517.2448},{"x":39,"y":517.3816},{"x":40,"y":515.6336},{"x":41,"y":511.6281},{"x":42,"y":503.8306},{"x":43,"y":494.9269},{"x":44,"y":488.3262},{"x":45,"y":488.6405},{"x":46,"y":488.2667},{"x":47,"y":486.8587},{"x":48,"y":489.9742},{"x":49,"y":494.2543},{"x":50,"y":495.6959},{"x":51,"y":493.5618},{"x":52,"y":497.9808},{"x":53,"y":504.9782},{"x":54,"y":509.9584},{"x":55,"y":511.0333},{"x":56,"y":511.1714},{"x":57,"y":510.1776},{"x":58,"y":505.1185},{"x":59,"y":502.1561},{"x":60,"y":502.4967},{"x":61,"y":502.4418},{"x":62,"y":501.1555},{"x":63,"y":498.1769},{"x":64,"y":491.0947},{"x":65,"y":484.2246},{"x":66,"y":472.3104},{"x":67,"y":464.3543},{"x":68,"y":460.1109},{"x":69,"y":456.0898},{"x":70,"y":456.9378},{"x":71,"y":458.5709},{"x":72,"y":458.4806},{"x":73,"y":462.3733},{"x":74,"y":465.7086},{"x":75,"y":466.2267},{"x":76,"y":466.8956},{"x":77,"y":466.21},{"x":78,"y":465.885},{"x":79,"y":465.204},{"x":80,"y":460.9182},{"x":81,"y":456.0116},{"x":82,"y":455.5528},{"x":83,"y":459.9597},{"x":84,"y":464.2115},{"x":85,"y":465.2537},{"x":86,"y":463.1011},{"x":87,"y":463.6073},{"x":88,"y":460.8817},{"x":89,"y":460.0774},{"x":90,"y":456.752},{"x":91,"y":450.5186},{"x":92,"y":443.8293},{"x":93,"y":437.5721},{"x":94,"y":429.0259},{"x":95,"y":425.7858},{"x":96,"y":419.5481},{"x":97,"y":409.6851},{"x":98,"y":398.6156},{"x":99,"y":382.1942},{"x":100,"y":369.2543}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₁ᴀ(5-HT) in Area 44d","filename":"5-HT₁ᴀ(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT1A receptor in area 44d.** This profile plot shows examplary the course of the 5-HT1A receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₁ᴀ(5-HT) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₁ᴀ(5-HT) in Area 44d"],"datasets":[{"data":[{"x":0,"y":251.1687},{"x":1,"y":292.1791},{"x":2,"y":335.4423},{"x":3,"y":373.1974},{"x":4,"y":402.1425},{"x":5,"y":423.6878},{"x":6,"y":440.8275},{"x":7,"y":449.0834},{"x":8,"y":453.0224},{"x":9,"y":448.8108},{"x":10,"y":441.9429},{"x":11,"y":428.5094},{"x":12,"y":409.0018},{"x":13,"y":384.7616},{"x":14,"y":359.0341},{"x":15,"y":331.8055},{"x":16,"y":304.2962},{"x":17,"y":278.2472},{"x":18,"y":253.0892},{"x":19,"y":227.7848},{"x":20,"y":202.2447},{"x":21,"y":173.8034},{"x":22,"y":150.6384},{"x":23,"y":130.4725},{"x":24,"y":113.875},{"x":25,"y":100.5917},{"x":26,"y":87.8384},{"x":27,"y":77.2268},{"x":28,"y":69.2425},{"x":29,"y":61.2597},{"x":30,"y":54.8477},{"x":31,"y":50.0124},{"x":32,"y":45.5695},{"x":33,"y":42.0285},{"x":34,"y":40.4439},{"x":35,"y":39.8744},{"x":36,"y":40.2188},{"x":37,"y":40.3293},{"x":38,"y":41.1093},{"x":39,"y":42.2988},{"x":40,"y":45.3175},{"x":41,"y":47.7411},{"x":42,"y":49.5772},{"x":43,"y":50.8485},{"x":44,"y":51.5155},{"x":45,"y":52.0944},{"x":46,"y":52.5555},{"x":47,"y":53.0344},{"x":48,"y":53.3247},{"x":49,"y":54.1581},{"x":50,"y":54.6232},{"x":51,"y":54.6159},{"x":52,"y":53.527},{"x":53,"y":52.023},{"x":54,"y":50.158},{"x":55,"y":48.7169},{"x":56,"y":48.4705},{"x":57,"y":50.2604},{"x":58,"y":53.1866},{"x":59,"y":55.874},{"x":60,"y":56.7547},{"x":61,"y":57.8921},{"x":62,"y":59.834},{"x":63,"y":62.9697},{"x":64,"y":64.2389},{"x":65,"y":65.4007},{"x":66,"y":67.5106},{"x":67,"y":70.1354},{"x":68,"y":72.1528},{"x":69,"y":72.3329},{"x":70,"y":71.9944},{"x":71,"y":71.7902},{"x":72,"y":71.1925},{"x":73,"y":70.0294},{"x":74,"y":69.8533},{"x":75,"y":70.1553},{"x":76,"y":69.6739},{"x":77,"y":69.4489},{"x":78,"y":69.2739},{"x":79,"y":68.9588},{"x":80,"y":68.5633},{"x":81,"y":68.7765},{"x":82,"y":68.8536},{"x":83,"y":68.706},{"x":84,"y":68.4658},{"x":85,"y":67.1182},{"x":86,"y":64.856},{"x":87,"y":63.0971},{"x":88,"y":62.3344},{"x":89,"y":62.4029},{"x":90,"y":62.2243},{"x":91,"y":62.4207},{"x":92,"y":60.2785},{"x":93,"y":57.5698},{"x":94,"y":53.9428},{"x":95,"y":50.9729},{"x":96,"y":49.0661},{"x":97,"y":46.3767},{"x":98,"y":43.7904},{"x":99,"y":42.0633},{"x":100,"y":40.3077}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of kainate (Glu) in Area 44d","filename":"kainate (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of kainate receptor in area 44d.** This profile plot shows examplary the course of the kainate receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of kainate (Glu) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of kainate (Glu) in Area 44d"],"datasets":[{"data":[{"x":0,"y":200.462},{"x":1,"y":219.0966},{"x":2,"y":240.2642},{"x":3,"y":257.251},{"x":4,"y":268.9426},{"x":5,"y":273.9886},{"x":6,"y":276.9463},{"x":7,"y":277.3568},{"x":8,"y":278.1795},{"x":9,"y":279.0618},{"x":10,"y":279.7376},{"x":11,"y":276.6454},{"x":12,"y":274.9393},{"x":13,"y":269.1932},{"x":14,"y":261.135},{"x":15,"y":256.8986},{"x":16,"y":252.4615},{"x":17,"y":248.378},{"x":18,"y":243.7802},{"x":19,"y":242.3742},{"x":20,"y":242.4677},{"x":21,"y":242.5239},{"x":22,"y":243.5352},{"x":23,"y":247.7247},{"x":24,"y":252.8253},{"x":25,"y":261.1373},{"x":26,"y":268.2339},{"x":27,"y":275.328},{"x":28,"y":279.2139},{"x":29,"y":281.4273},{"x":30,"y":283.789},{"x":31,"y":287.7375},{"x":32,"y":287.595},{"x":33,"y":288.4525},{"x":34,"y":291.7259},{"x":35,"y":296.1431},{"x":36,"y":300.1256},{"x":37,"y":302.6832},{"x":38,"y":306.7004},{"x":39,"y":309.166},{"x":40,"y":311.6866},{"x":41,"y":314.5176},{"x":42,"y":318.5202},{"x":43,"y":321.2466},{"x":44,"y":328.6461},{"x":45,"y":338.2755},{"x":46,"y":347.1668},{"x":47,"y":355.3187},{"x":48,"y":358.9274},{"x":49,"y":358.8277},{"x":50,"y":360.8641},{"x":51,"y":361.5955},{"x":52,"y":362.6113},{"x":53,"y":363.6982},{"x":54,"y":364.006},{"x":55,"y":365.4474},{"x":56,"y":367.6931},{"x":57,"y":371.5471},{"x":58,"y":364.4084},{"x":59,"y":355.9306},{"x":60,"y":351.1936},{"x":61,"y":348.4529},{"x":62,"y":351.8186},{"x":63,"y":356.8513},{"x":64,"y":364.5136},{"x":65,"y":374.6698},{"x":66,"y":384.8628},{"x":67,"y":394.1341},{"x":68,"y":400.9571},{"x":69,"y":406.2036},{"x":70,"y":404.063},{"x":71,"y":399.9617},{"x":72,"y":397.3096},{"x":73,"y":394.8178},{"x":74,"y":395.9058},{"x":75,"y":401.1612},{"x":76,"y":412.6467},{"x":77,"y":424.0189},{"x":78,"y":430.9132},{"x":79,"y":436.0668},{"x":80,"y":439.8324},{"x":81,"y":441.4092},{"x":82,"y":441.8477},{"x":83,"y":444.485},{"x":84,"y":442.8231},{"x":85,"y":440.8566},{"x":86,"y":438.4664},{"x":87,"y":434.6087},{"x":88,"y":427.8757},{"x":89,"y":420.1199},{"x":90,"y":409.5986},{"x":91,"y":391.2202},{"x":92,"y":376.3157},{"x":93,"y":365.8075},{"x":94,"y":353.0862},{"x":95,"y":338.7337},{"x":96,"y":324.7985},{"x":97,"y":308.619},{"x":98,"y":292.278},{"x":99,"y":277.6494},{"x":100,"y":266.1569}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of M₂(ACh) in Area 44d","filename":"M₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M2 receptor in area 44d.** This profile plot shows examplary the course of the M2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₂(ACh) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₂(ACh) in Area 44d"],"datasets":[{"data":[{"x":0,"y":93.2184},{"x":1,"y":103.1357},{"x":2,"y":115.1558},{"x":3,"y":123.1287},{"x":4,"y":131.034},{"x":5,"y":140.4591},{"x":6,"y":151.3235},{"x":7,"y":161.2224},{"x":8,"y":169.6143},{"x":9,"y":175.8825},{"x":10,"y":180.0235},{"x":11,"y":184.3022},{"x":12,"y":188.5825},{"x":13,"y":192.049},{"x":14,"y":194.6534},{"x":15,"y":196.1512},{"x":16,"y":198.6462},{"x":17,"y":199.9249},{"x":18,"y":200.5163},{"x":19,"y":201.5036},{"x":20,"y":202.4789},{"x":21,"y":202.1745},{"x":22,"y":201.1561},{"x":23,"y":199.3915},{"x":24,"y":198.8221},{"x":25,"y":199.1613},{"x":26,"y":200.2707},{"x":27,"y":202.8377},{"x":28,"y":205.8513},{"x":29,"y":209.7773},{"x":30,"y":213.1075},{"x":31,"y":216.4215},{"x":32,"y":219.7069},{"x":33,"y":222.5147},{"x":34,"y":224.6821},{"x":35,"y":226.8198},{"x":36,"y":228.7891},{"x":37,"y":230.8875},{"x":38,"y":233.0398},{"x":39,"y":234.119},{"x":40,"y":235.1935},{"x":41,"y":235.4642},{"x":42,"y":234.6575},{"x":43,"y":233.0776},{"x":44,"y":229.6466},{"x":45,"y":225.3951},{"x":46,"y":220.0536},{"x":47,"y":214.4221},{"x":48,"y":210.509},{"x":49,"y":207.6994},{"x":50,"y":203.7463},{"x":51,"y":199.6389},{"x":52,"y":196.9513},{"x":53,"y":194.1214},{"x":54,"y":191.4016},{"x":55,"y":189.3127},{"x":56,"y":186.9284},{"x":57,"y":182.9922},{"x":58,"y":178.7413},{"x":59,"y":172.8912},{"x":60,"y":167.9207},{"x":61,"y":164.8473},{"x":62,"y":161.9009},{"x":63,"y":159.9647},{"x":64,"y":157.7585},{"x":65,"y":155.499},{"x":66,"y":153.1585},{"x":67,"y":151.2885},{"x":68,"y":148.9759},{"x":69,"y":145.7406},{"x":70,"y":141.3745},{"x":71,"y":137.0934},{"x":72,"y":132.1629},{"x":73,"y":127.965},{"x":74,"y":125.2032},{"x":75,"y":122.6182},{"x":76,"y":119.963},{"x":77,"y":117.1314},{"x":78,"y":113.9643},{"x":79,"y":110.1572},{"x":80,"y":105.3613},{"x":81,"y":100.4543},{"x":82,"y":95.4555},{"x":83,"y":90.4828},{"x":84,"y":85.3958},{"x":85,"y":80.6497},{"x":86,"y":77.4294},{"x":87,"y":74.2347},{"x":88,"y":71.0402},{"x":89,"y":68.3724},{"x":90,"y":66.644},{"x":91,"y":65.1889},{"x":92,"y":64.5341},{"x":93,"y":63.8138},{"x":94,"y":62.9068},{"x":95,"y":62.3178},{"x":96,"y":62.2611},{"x":97,"y":61.4104},{"x":98,"y":59.9989},{"x":99,"y":57.7467},{"x":100,"y":54.8007}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area 44d","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of AMPA receptor in area 44d.** This profile plot shows examplary the course of the AMPA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area 44d"],"datasets":[{"data":[{"x":0,"y":394.4893},{"x":1,"y":471.3484},{"x":2,"y":537.6635},{"x":3,"y":580.7668},{"x":4,"y":626.9292},{"x":5,"y":668.1917},{"x":6,"y":698.0975},{"x":7,"y":717.6599},{"x":8,"y":738.6288},{"x":9,"y":757.4366},{"x":10,"y":763.276},{"x":11,"y":768.1709},{"x":12,"y":767.0118},{"x":13,"y":765.8774},{"x":14,"y":760.4468},{"x":15,"y":744.8279},{"x":16,"y":727.0702},{"x":17,"y":705.4638},{"x":18,"y":690.7208},{"x":19,"y":684.4329},{"x":20,"y":671.4423},{"x":21,"y":655.0578},{"x":22,"y":639.5821},{"x":23,"y":625.8872},{"x":24,"y":615.6989},{"x":25,"y":605.1466},{"x":26,"y":588.8357},{"x":27,"y":577.4551},{"x":28,"y":575.4859},{"x":29,"y":571.1853},{"x":30,"y":559.9771},{"x":31,"y":550.3172},{"x":32,"y":542.5281},{"x":33,"y":528.7033},{"x":34,"y":510.5884},{"x":35,"y":495.527},{"x":36,"y":475.044},{"x":37,"y":461.1956},{"x":38,"y":444.2648},{"x":39,"y":430.852},{"x":40,"y":423.8031},{"x":41,"y":414.6737},{"x":42,"y":412.4612},{"x":43,"y":408.9242},{"x":44,"y":408.6765},{"x":45,"y":409.7371},{"x":46,"y":409.4022},{"x":47,"y":407.8029},{"x":48,"y":405.3546},{"x":49,"y":401.0269},{"x":50,"y":407.9722},{"x":51,"y":408.8483},{"x":52,"y":410.6582},{"x":53,"y":415.5281},{"x":54,"y":417.1553},{"x":55,"y":416.2761},{"x":56,"y":415.384},{"x":57,"y":411.2004},{"x":58,"y":413.7434},{"x":59,"y":408.9485},{"x":60,"y":404.2081},{"x":61,"y":392.6014},{"x":62,"y":380.484},{"x":63,"y":369.9535},{"x":64,"y":362.7408},{"x":65,"y":364.9497},{"x":66,"y":365.5551},{"x":67,"y":372.0932},{"x":68,"y":376.5054},{"x":69,"y":380.6667},{"x":70,"y":386.7289},{"x":71,"y":395.5113},{"x":72,"y":407.996},{"x":73,"y":416.1717},{"x":74,"y":426.1499},{"x":75,"y":438.1099},{"x":76,"y":450.444},{"x":77,"y":464.721},{"x":78,"y":468.764},{"x":79,"y":469.6122},{"x":80,"y":470.3785},{"x":81,"y":468.9733},{"x":82,"y":463.8951},{"x":83,"y":459.4332},{"x":84,"y":454.636},{"x":85,"y":452.3507},{"x":86,"y":448.2997},{"x":87,"y":436.8888},{"x":88,"y":431.6521},{"x":89,"y":427.1004},{"x":90,"y":418.4885},{"x":91,"y":409.6601},{"x":92,"y":399.4179},{"x":93,"y":397.2279},{"x":94,"y":392.7307},{"x":95,"y":387.8207},{"x":96,"y":386.4799},{"x":97,"y":375.6887},{"x":98,"y":368.8953},{"x":99,"y":356.695},{"x":100,"y":347.1782}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of D₁(DA) in Area 44d","filename":"D₁(DA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of D1 receptor in area 44d.** This profile plot shows examplary the course of the D1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of D₁(DA) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of D₁(DA) in Area 44d"],"datasets":[{"data":[{"x":0,"y":32.7319},{"x":1,"y":35.9145},{"x":2,"y":38.7367},{"x":3,"y":42.3227},{"x":4,"y":45.1992},{"x":5,"y":47.5694},{"x":6,"y":50.2197},{"x":7,"y":52.3706},{"x":8,"y":54.0297},{"x":9,"y":54.7911},{"x":10,"y":54.4683},{"x":11,"y":54.4828},{"x":12,"y":54.4581},{"x":13,"y":54.3194},{"x":14,"y":55.1041},{"x":15,"y":56.0905},{"x":16,"y":56.3338},{"x":17,"y":56.4085},{"x":18,"y":57.339},{"x":19,"y":57.9534},{"x":20,"y":59.3908},{"x":21,"y":61.1295},{"x":22,"y":61.7137},{"x":23,"y":62.1137},{"x":24,"y":62.7767},{"x":25,"y":62.7798},{"x":26,"y":62.7508},{"x":27,"y":61.6807},{"x":28,"y":60.8846},{"x":29,"y":59.1123},{"x":30,"y":57.1592},{"x":31,"y":55.2384},{"x":32,"y":52.8224},{"x":33,"y":51.174},{"x":34,"y":49.9322},{"x":35,"y":49.3391},{"x":36,"y":49.3445},{"x":37,"y":49.6293},{"x":38,"y":49.9597},{"x":39,"y":50.6534},{"x":40,"y":50.4038},{"x":41,"y":50.6273},{"x":42,"y":49.8134},{"x":43,"y":49.3184},{"x":44,"y":49.9259},{"x":45,"y":50.0113},{"x":46,"y":49.2021},{"x":47,"y":47.9126},{"x":48,"y":47.632},{"x":49,"y":46.9682},{"x":50,"y":47.2963},{"x":51,"y":47.2764},{"x":52,"y":46.6159},{"x":53,"y":45.4707},{"x":54,"y":43.1105},{"x":55,"y":40.8404},{"x":56,"y":39.3035},{"x":57,"y":37.9769},{"x":58,"y":37.951},{"x":59,"y":37.253},{"x":60,"y":37.0677},{"x":61,"y":38.0543},{"x":62,"y":39.5552},{"x":63,"y":40.7926},{"x":64,"y":41.3663},{"x":65,"y":41.1027},{"x":66,"y":40.5752},{"x":67,"y":40.097},{"x":68,"y":40.061},{"x":69,"y":39.779},{"x":70,"y":39.3922},{"x":71,"y":39.3561},{"x":72,"y":39.6772},{"x":73,"y":39.7309},{"x":74,"y":39.1817},{"x":75,"y":38.3751},{"x":76,"y":37.4357},{"x":77,"y":37.5507},{"x":78,"y":38.1718},{"x":79,"y":39.0326},{"x":80,"y":40.3452},{"x":81,"y":40.9292},{"x":82,"y":40.7408},{"x":83,"y":40.9235},{"x":84,"y":40.7911},{"x":85,"y":40.3003},{"x":86,"y":39.7719},{"x":87,"y":38.9232},{"x":88,"y":38.9567},{"x":89,"y":37.904},{"x":90,"y":37.2853},{"x":91,"y":36.5316},{"x":92,"y":35.8586},{"x":93,"y":35.3685},{"x":94,"y":35.2083},{"x":95,"y":34.9295},{"x":96,"y":34.3932},{"x":97,"y":33.2022},{"x":98,"y":32.2496},{"x":99,"y":32.3176},{"x":100,"y":32.1952}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area 44d","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M3 receptor in area 44d.** This profile plot shows examplary the course of the M3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area 44d"],"datasets":[{"data":[{"x":0,"y":181.6928},{"x":1,"y":209.3769},{"x":2,"y":238.8042},{"x":3,"y":266.3184},{"x":4,"y":290.9064},{"x":5,"y":321.2672},{"x":6,"y":345.6814},{"x":7,"y":367.6579},{"x":8,"y":386.4631},{"x":9,"y":401.9595},{"x":10,"y":419.3571},{"x":11,"y":430.0322},{"x":12,"y":442.0946},{"x":13,"y":455.5119},{"x":14,"y":464.2999},{"x":15,"y":468.9489},{"x":16,"y":473.2186},{"x":17,"y":477.8601},{"x":18,"y":479.255},{"x":19,"y":481.2788},{"x":20,"y":482.211},{"x":21,"y":482.6805},{"x":22,"y":483.2452},{"x":23,"y":482.4359},{"x":24,"y":481.3923},{"x":25,"y":479.8466},{"x":26,"y":476.2967},{"x":27,"y":471.173},{"x":28,"y":465.3557},{"x":29,"y":457.9935},{"x":30,"y":451.0613},{"x":31,"y":443.6187},{"x":32,"y":438.2385},{"x":33,"y":433.2688},{"x":34,"y":427.6463},{"x":35,"y":423.1749},{"x":36,"y":419.5321},{"x":37,"y":417.1595},{"x":38,"y":413.3019},{"x":39,"y":411.1995},{"x":40,"y":409.2883},{"x":41,"y":408.4487},{"x":42,"y":408.3474},{"x":43,"y":409.2216},{"x":44,"y":409.1365},{"x":45,"y":408.8721},{"x":46,"y":408.8611},{"x":47,"y":409.1125},{"x":48,"y":409.0853},{"x":49,"y":407.0625},{"x":50,"y":405.8662},{"x":51,"y":404.8174},{"x":52,"y":402.1933},{"x":53,"y":399.1475},{"x":54,"y":395.8763},{"x":55,"y":392.1377},{"x":56,"y":389.2213},{"x":57,"y":387.29},{"x":58,"y":385.3987},{"x":59,"y":384.0028},{"x":60,"y":382.9141},{"x":61,"y":381.5524},{"x":62,"y":382.2029},{"x":63,"y":383.9521},{"x":64,"y":385.8295},{"x":65,"y":388.4446},{"x":66,"y":389.6158},{"x":67,"y":390.3206},{"x":68,"y":389.7638},{"x":69,"y":389.4435},{"x":70,"y":391.1708},{"x":71,"y":393.4089},{"x":72,"y":394.9677},{"x":73,"y":395.5718},{"x":74,"y":395.2982},{"x":75,"y":394.149},{"x":76,"y":392.1427},{"x":77,"y":390.222},{"x":78,"y":387.3561},{"x":79,"y":383.2475},{"x":80,"y":379.4461},{"x":81,"y":375.2683},{"x":82,"y":372.0121},{"x":83,"y":367.3401},{"x":84,"y":363.5408},{"x":85,"y":359.2233},{"x":86,"y":353.7349},{"x":87,"y":347.4025},{"x":88,"y":339.2659},{"x":89,"y":332.0984},{"x":90,"y":325.5551},{"x":91,"y":315.075},{"x":92,"y":305.2236},{"x":93,"y":294.2752},{"x":94,"y":281.8591},{"x":95,"y":269.8909},{"x":96,"y":255.5991},{"x":97,"y":244.3628},{"x":98,"y":233.264},{"x":99,"y":221.1245},{"x":100,"y":210.8364}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area 44d","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of mGluR2_3 receptor in area 44d.** This profile plot shows examplary the course of the mGluR2_3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the right hemisphere of one male subject (brain id: MR1, sample id: ID02, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area 44d"],"datasets":[{"data":[{"x":0,"y":4403.4427},{"x":1,"y":4958.9049},{"x":2,"y":5357.2508},{"x":3,"y":5598.1364},{"x":4,"y":5722.5589},{"x":5,"y":5761.7748},{"x":6,"y":5778.6601},{"x":7,"y":5808.6354},{"x":8,"y":5835.6404},{"x":9,"y":5862.9675},{"x":10,"y":5875.6631},{"x":11,"y":5875.3053},{"x":12,"y":5865.107},{"x":13,"y":5850.7607},{"x":14,"y":5844.5375},{"x":15,"y":5859.6391},{"x":16,"y":5853.783},{"x":17,"y":5820.8639},{"x":18,"y":5762.0115},{"x":19,"y":5699.3007},{"x":20,"y":5666.3809},{"x":21,"y":5671.3401},{"x":22,"y":5684.4404},{"x":23,"y":5666.4862},{"x":24,"y":5654.5559},{"x":25,"y":5622.9561},{"x":26,"y":5578.0225},{"x":27,"y":5543.372},{"x":28,"y":5513.3453},{"x":29,"y":5479.742},{"x":30,"y":5456.7717},{"x":31,"y":5475.507},{"x":32,"y":5487.5298},{"x":33,"y":5503.9094},{"x":34,"y":5502.4428},{"x":35,"y":5469.6668},{"x":36,"y":5448.6554},{"x":37,"y":5409.1504},{"x":38,"y":5359.8822},{"x":39,"y":5316.8486},{"x":40,"y":5263.6399},{"x":41,"y":5197.8975},{"x":42,"y":5116.3108},{"x":43,"y":5046.9792},{"x":44,"y":4983.1791},{"x":45,"y":4961.242},{"x":46,"y":4956.5321},{"x":47,"y":4925.8746},{"x":48,"y":4876.8215},{"x":49,"y":4847.9979},{"x":50,"y":4802.6523},{"x":51,"y":4713.9049},{"x":52,"y":4642.1307},{"x":53,"y":4571.7316},{"x":54,"y":4510.3528},{"x":55,"y":4441.5053},{"x":56,"y":4387.2892},{"x":57,"y":4287.4281},{"x":58,"y":4200.6298},{"x":59,"y":4122.5647},{"x":60,"y":4055.6308},{"x":61,"y":3998.0453},{"x":62,"y":3967.3063},{"x":63,"y":3985.6947},{"x":64,"y":4013.0377},{"x":65,"y":4075.9459},{"x":66,"y":4108.4332},{"x":67,"y":4119.8832},{"x":68,"y":4159.3305},{"x":69,"y":4178.9854},{"x":70,"y":4158.6225},{"x":71,"y":4152.0297},{"x":72,"y":4142.6888},{"x":73,"y":4119.9504},{"x":74,"y":4124.674},{"x":75,"y":4107.5824},{"x":76,"y":4096.622},{"x":77,"y":4079.7335},{"x":78,"y":4059.4347},{"x":79,"y":4055.9697},{"x":80,"y":4042.1845},{"x":81,"y":3993.9711},{"x":82,"y":3944.7543},{"x":83,"y":3893.0194},{"x":84,"y":3808.2293},{"x":85,"y":3722.8443},{"x":86,"y":3673.9847},{"x":87,"y":3601.4674},{"x":88,"y":3530.9261},{"x":89,"y":3453.8714},{"x":90,"y":3379.6515},{"x":91,"y":3288.3335},{"x":92,"y":3193.5304},{"x":93,"y":3110.969},{"x":94,"y":3030.3055},{"x":95,"y":2951.1841},{"x":96,"y":2881.4371},{"x":97,"y":2794.7832},{"x":98,"y":2717.0913},{"x":99,"y":2650.9733},{"x":100,"y":2566.4734}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₂(5-HT) in Area 44d","filename":"5-HT₂(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT2 receptor in area 44d.** This profile plot shows examplary the course of the 5-HT2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the right hemisphere of one female subject (brain id: hg0201, sample id: ID08, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₂(5-HT) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₂(5-HT) in Area 44d"],"datasets":[{"data":[{"x":0,"y":97.092},{"x":1,"y":104.3408},{"x":2,"y":110.5164},{"x":3,"y":116.3236},{"x":4,"y":122.4668},{"x":5,"y":128.5473},{"x":6,"y":135.3223},{"x":7,"y":142.6933},{"x":8,"y":149.4714},{"x":9,"y":155.1314},{"x":10,"y":161.8751},{"x":11,"y":169.7881},{"x":12,"y":177.4956},{"x":13,"y":184.6693},{"x":14,"y":191.439},{"x":15,"y":196.9733},{"x":16,"y":202.4843},{"x":17,"y":207.5687},{"x":18,"y":211.8998},{"x":19,"y":215.3632},{"x":20,"y":218.635},{"x":21,"y":220.5285},{"x":22,"y":222.0008},{"x":23,"y":223.7732},{"x":24,"y":224.1718},{"x":25,"y":224.3354},{"x":26,"y":224.548},{"x":27,"y":224.4246},{"x":28,"y":223.3974},{"x":29,"y":222.4332},{"x":30,"y":221.6875},{"x":31,"y":220.4874},{"x":32,"y":218.9136},{"x":33,"y":216.2046},{"x":34,"y":213.5476},{"x":35,"y":211.5501},{"x":36,"y":210.1752},{"x":37,"y":208.9046},{"x":38,"y":207.1878},{"x":39,"y":205.0565},{"x":40,"y":203.0967},{"x":41,"y":200.9384},{"x":42,"y":198.3259},{"x":43,"y":195.66},{"x":44,"y":192.834},{"x":45,"y":190.5644},{"x":46,"y":188.6767},{"x":47,"y":186.2852},{"x":48,"y":183.7053},{"x":49,"y":181.4329},{"x":50,"y":179.5511},{"x":51,"y":177.63},{"x":52,"y":175.4918},{"x":53,"y":173.1011},{"x":54,"y":170.8088},{"x":55,"y":168.0304},{"x":56,"y":164.914},{"x":57,"y":162.3261},{"x":58,"y":158.8997},{"x":59,"y":154.8305},{"x":60,"y":150.7637},{"x":61,"y":147.4759},{"x":62,"y":144.9258},{"x":63,"y":142.3047},{"x":64,"y":139.4476},{"x":65,"y":136.7734},{"x":66,"y":134.5885},{"x":67,"y":132.7118},{"x":68,"y":131.8688},{"x":69,"y":130.8907},{"x":70,"y":129.2658},{"x":71,"y":128.0842},{"x":72,"y":126.6551},{"x":73,"y":124.2787},{"x":74,"y":121.9226},{"x":75,"y":119.7772},{"x":76,"y":118.1565},{"x":77,"y":116.4454},{"x":78,"y":114.612},{"x":79,"y":112.7643},{"x":80,"y":111.1953},{"x":81,"y":109.7456},{"x":82,"y":108.7578},{"x":83,"y":108.5931},{"x":84,"y":109.038},{"x":85,"y":109.6749},{"x":86,"y":109.9372},{"x":87,"y":109.6498},{"x":88,"y":109.0769},{"x":89,"y":107.8839},{"x":90,"y":106.5514},{"x":91,"y":105.715},{"x":92,"y":104.928},{"x":93,"y":103.0836},{"x":94,"y":100.6395},{"x":95,"y":98.422},{"x":96,"y":96.3502},{"x":97,"y":94.5795},{"x":98,"y":92.5648},{"x":99,"y":90.7519},{"x":100,"y":89.1113}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴃ(GABA) in Area 44d","filename":"GABAᴃ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAB receptor in area 44d.** This profile plot shows examplary the course of the GABAB receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴃ(GABA) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴃ(GABA) in Area 44d"],"datasets":[{"data":[{"x":0,"y":1476.2919},{"x":1,"y":1762.5631},{"x":2,"y":2034.7877},{"x":3,"y":2313.8205},{"x":4,"y":2600.5045},{"x":5,"y":2826.3772},{"x":6,"y":3009.7421},{"x":7,"y":3161.098},{"x":8,"y":3277.4132},{"x":9,"y":3339.5074},{"x":10,"y":3372.7479},{"x":11,"y":3383.8467},{"x":12,"y":3398.1041},{"x":13,"y":3419.0881},{"x":14,"y":3430.3504},{"x":15,"y":3440.8358},{"x":16,"y":3444.5447},{"x":17,"y":3440.4988},{"x":18,"y":3431.5065},{"x":19,"y":3420.8827},{"x":20,"y":3406.2077},{"x":21,"y":3405.592},{"x":22,"y":3408.1927},{"x":23,"y":3402.2505},{"x":24,"y":3389.0047},{"x":25,"y":3369.005},{"x":26,"y":3334.0964},{"x":27,"y":3297.8908},{"x":28,"y":3267.094},{"x":29,"y":3214.5224},{"x":30,"y":3163.3301},{"x":31,"y":3111.1754},{"x":32,"y":3062.2394},{"x":33,"y":3008.4039},{"x":34,"y":2950.6647},{"x":35,"y":2898.9615},{"x":36,"y":2845.1664},{"x":37,"y":2797.7995},{"x":38,"y":2750.2183},{"x":39,"y":2719.4246},{"x":40,"y":2689.8681},{"x":41,"y":2669.7715},{"x":42,"y":2653.8023},{"x":43,"y":2638.6884},{"x":44,"y":2620.0035},{"x":45,"y":2589.7398},{"x":46,"y":2551.3653},{"x":47,"y":2504.5155},{"x":48,"y":2468.7001},{"x":49,"y":2438.1229},{"x":50,"y":2412.2376},{"x":51,"y":2397.2192},{"x":52,"y":2387.1292},{"x":53,"y":2380.2226},{"x":54,"y":2376.0807},{"x":55,"y":2371.7558},{"x":56,"y":2368.3975},{"x":57,"y":2362.9948},{"x":58,"y":2360.5638},{"x":59,"y":2359.5598},{"x":60,"y":2361.8978},{"x":61,"y":2367.7813},{"x":62,"y":2368.0788},{"x":63,"y":2364.6556},{"x":64,"y":2359.5789},{"x":65,"y":2357.0598},{"x":66,"y":2349.8808},{"x":67,"y":2346.5194},{"x":68,"y":2342.2303},{"x":69,"y":2337.7906},{"x":70,"y":2340.0741},{"x":71,"y":2340.5464},{"x":72,"y":2343.1373},{"x":73,"y":2340.3749},{"x":74,"y":2326.9112},{"x":75,"y":2316.0376},{"x":76,"y":2299.2577},{"x":77,"y":2282.555},{"x":78,"y":2263.6567},{"x":79,"y":2247.6646},{"x":80,"y":2228.4797},{"x":81,"y":2208.8971},{"x":82,"y":2176.8879},{"x":83,"y":2131.3527},{"x":84,"y":2085.0548},{"x":85,"y":2031.9146},{"x":86,"y":1972.8947},{"x":87,"y":1899.0239},{"x":88,"y":1827.7844},{"x":89,"y":1749.6744},{"x":90,"y":1667.788},{"x":91,"y":1588.1607},{"x":92,"y":1513.0203},{"x":93,"y":1419.6582},{"x":94,"y":1322.0766},{"x":95,"y":1228.7828},{"x":96,"y":1139.0645},{"x":97,"y":1035.4337},{"x":98,"y":948.0768},{"x":99,"y":880.2652},{"x":100,"y":823.6772}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null}]],["Density measurements of different receptors for Area 44v",[{"name":"Receptor density fingerprint of Area 44v","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["295","490","1129","3545","1420","1965","2135","532","143","653","67","320","417","268","387","69"]},{"label":"mean_sd","data":["112","205","382","913","216","742","641","102","59","230","37","157","160","100","157","32"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 44v (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(255,10,10,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area 4p",[{"name":"Receptor density fingerprint of Area 4p","filename":"fingerprint","mimetype":"application/json","properties":{"description":"**Multireceptor fingerprint for area 4p.** This polar plot shows the mean receptor densities in fmol/mg protein (solid shape) and standard deviation (dashed line) of 16 receptor binding sites in the area 4p. The data is based on the left and right hemisphere of one female subject (brain id: hg0201, sample ids: ID07 and ID08, age: 77, cause of death: lung edema) and the right hemispheres of two male subjects (brain id: hg0500, sample ids: ID09, age: 72, cause of death: cardiac arrest | brain id: hg0100, sample ids: ID12, age: 77, cause of death: coronary heart disease).","publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["286","286","739","NA","999","1842","1337","245","141","400","69","193","111","162","234","49"]},{"label":"mean_sd","data":["40","35","1","NA","108","10","65","23","27","44","13","7","15","31","2","5"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 4p (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(139,71,137,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAᴀ(BZ) in Area 4p","filename":"GABAᴀ(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_BZ.jpg"},{"name":"Sample autoradiograph of α₁(NA) in Area 4p","filename":"α₁(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area 4p","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAᴀ(GABA) in Area 4p","filename":"GABAᴀ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area 4p","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area 4p","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of M₁(ACh) in Area 4p","filename":"M₁(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HT₁ᴀ(5-HT) in Area 4p","filename":"5-HT₁ᴀ(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area 4p","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_kainate.jpg"},{"name":"Sample autoradiograph of M₂(ACh) in Area 4p","filename":"M₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area 4p","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_AMPA.jpg"},{"name":"Sample autoradiograph of D₁(DA) in Area 4p","filename":"D₁(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area 4p","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area 4p","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HT₂(5-HT) in Area 4p","filename":"5-HT₂(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAᴃ(GABA) in Area 4p","filename":"GABAᴃ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_GABAB.jpg"},{"name":"Sample profile of GABAᴀ(BZ) in Area 4p","filename":"GABAᴀ(BZ)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of BZ receptor in area 4p.** This profile plot shows examplary the course of the BZ receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(BZ) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(BZ) in Area 4p"],"datasets":[{"data":[{"x":0,"y":2413.7942},{"x":1,"y":2579.6044},{"x":2,"y":2702.8189},{"x":3,"y":2798.8989},{"x":4,"y":2884.1463},{"x":5,"y":2974.3385},{"x":6,"y":3051.5047},{"x":7,"y":3111.7795},{"x":8,"y":3147.6055},{"x":9,"y":3166.3901},{"x":10,"y":3176.7118},{"x":11,"y":3186.6968},{"x":12,"y":3190.6774},{"x":13,"y":3175.9626},{"x":14,"y":3150.1009},{"x":15,"y":3126.9474},{"x":16,"y":3101.0072},{"x":17,"y":3067.388},{"x":18,"y":3019.0921},{"x":19,"y":2941.8543},{"x":20,"y":2848.7345},{"x":21,"y":2764.5887},{"x":22,"y":2685.3707},{"x":23,"y":2594.0466},{"x":24,"y":2495.2953},{"x":25,"y":2407.7066},{"x":26,"y":2333.9791},{"x":27,"y":2251.1285},{"x":28,"y":2180.8211},{"x":29,"y":2123.6526},{"x":30,"y":2079.9581},{"x":31,"y":2034.0584},{"x":32,"y":1997.3294},{"x":33,"y":1965.5269},{"x":34,"y":1940.2193},{"x":35,"y":1916.1916},{"x":36,"y":1883.4167},{"x":37,"y":1853.6692},{"x":38,"y":1826.0956},{"x":39,"y":1798.6402},{"x":40,"y":1775.9312},{"x":41,"y":1750.9717},{"x":42,"y":1727.9437},{"x":43,"y":1717.8377},{"x":44,"y":1704.3227},{"x":45,"y":1694.9437},{"x":46,"y":1689.5052},{"x":47,"y":1686.4007},{"x":48,"y":1677.6482},{"x":49,"y":1661.8785},{"x":50,"y":1644.2679},{"x":51,"y":1620.0272},{"x":52,"y":1587.3433},{"x":53,"y":1554.6403},{"x":54,"y":1521.1183},{"x":55,"y":1486.9183},{"x":56,"y":1456.6702},{"x":57,"y":1437.946},{"x":58,"y":1421.5769},{"x":59,"y":1408.4279},{"x":60,"y":1398.5662},{"x":61,"y":1392.2645},{"x":62,"y":1387.9689},{"x":63,"y":1381.544},{"x":64,"y":1371.8216},{"x":65,"y":1366.965},{"x":66,"y":1370.4149},{"x":67,"y":1366.3302},{"x":68,"y":1347.7732},{"x":69,"y":1331.3701},{"x":70,"y":1324.8525},{"x":71,"y":1319.6012},{"x":72,"y":1305.0713},{"x":73,"y":1286.3558},{"x":74,"y":1267.4558},{"x":75,"y":1254.2137},{"x":76,"y":1240.9391},{"x":77,"y":1223.9838},{"x":78,"y":1203.4248},{"x":79,"y":1185.6071},{"x":80,"y":1161.864},{"x":81,"y":1125.0255},{"x":82,"y":1091.9493},{"x":83,"y":1069.7976},{"x":84,"y":1045.3628},{"x":85,"y":1021.5118},{"x":86,"y":1002.7278},{"x":87,"y":990.1426},{"x":88,"y":974.0419},{"x":89,"y":950.0222},{"x":90,"y":927.9979},{"x":91,"y":915.1907},{"x":92,"y":895.0272},{"x":93,"y":863.2511},{"x":94,"y":825.0214},{"x":95,"y":784.9342},{"x":96,"y":741.202},{"x":97,"y":698.1911},{"x":98,"y":646.022},{"x":99,"y":581.6678},{"x":100,"y":528.1679}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of α₁(NA) in Area 4p","filename":"α₁(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha1 receptor in area 4p.** This profile plot shows examplary the course of the alpha1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₁(NA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₁(NA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":205.1842},{"x":1,"y":240.3517},{"x":2,"y":275.207},{"x":3,"y":299.4163},{"x":4,"y":314.1489},{"x":5,"y":321.4688},{"x":6,"y":323.7348},{"x":7,"y":322.5535},{"x":8,"y":319.1139},{"x":9,"y":313.5944},{"x":10,"y":307.5699},{"x":11,"y":300.6218},{"x":12,"y":293.9241},{"x":13,"y":287.1282},{"x":14,"y":279.3099},{"x":15,"y":271.8437},{"x":16,"y":265.1888},{"x":17,"y":259.4219},{"x":18,"y":254.1061},{"x":19,"y":247.1481},{"x":20,"y":239.451},{"x":21,"y":231.8765},{"x":22,"y":223.962},{"x":23,"y":217.4048},{"x":24,"y":211.3585},{"x":25,"y":204.6168},{"x":26,"y":199.1226},{"x":27,"y":192.9799},{"x":28,"y":187.1456},{"x":29,"y":183.5182},{"x":30,"y":180.0959},{"x":31,"y":176.4296},{"x":32,"y":173.5105},{"x":33,"y":171.3133},{"x":34,"y":168.9334},{"x":35,"y":167.0311},{"x":36,"y":165.0458},{"x":37,"y":163.317},{"x":38,"y":160.9514},{"x":39,"y":157.7277},{"x":40,"y":154.1254},{"x":41,"y":152.0029},{"x":42,"y":151.2182},{"x":43,"y":148.4541},{"x":44,"y":146.2252},{"x":45,"y":145.4551},{"x":46,"y":144.9319},{"x":47,"y":145.0735},{"x":48,"y":146.0921},{"x":49,"y":147.1874},{"x":50,"y":148.6085},{"x":51,"y":149.702},{"x":52,"y":151.0333},{"x":53,"y":153.2793},{"x":54,"y":155.3491},{"x":55,"y":157.6639},{"x":56,"y":158.7428},{"x":57,"y":160.2607},{"x":58,"y":160.9932},{"x":59,"y":160.3886},{"x":60,"y":159.3193},{"x":61,"y":158.2289},{"x":62,"y":157.1462},{"x":63,"y":157.2808},{"x":64,"y":158.3863},{"x":65,"y":158.7046},{"x":66,"y":158.4448},{"x":67,"y":157.8302},{"x":68,"y":156.3656},{"x":69,"y":154.7349},{"x":70,"y":154.0051},{"x":71,"y":153.2451},{"x":72,"y":152.9668},{"x":73,"y":153.9097},{"x":74,"y":154.6538},{"x":75,"y":155.4769},{"x":76,"y":157.1326},{"x":77,"y":157.4459},{"x":78,"y":157.7777},{"x":79,"y":159.3443},{"x":80,"y":161.0418},{"x":81,"y":162.1393},{"x":82,"y":161.385},{"x":83,"y":158.7497},{"x":84,"y":155.2385},{"x":85,"y":151.8252},{"x":86,"y":147.909},{"x":87,"y":144.1392},{"x":88,"y":140.7435},{"x":89,"y":138.6898},{"x":90,"y":135.0542},{"x":91,"y":130.393},{"x":92,"y":126.5798},{"x":93,"y":122.5006},{"x":94,"y":117.679},{"x":95,"y":113.1031},{"x":96,"y":109.215},{"x":97,"y":103.6431},{"x":98,"y":97.0317},{"x":99,"y":89.5429},{"x":100,"y":83.3149}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area 4p","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of NMDA receptor in area 4p.** This profile plot shows examplary the course of the NMDA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area 4p"],"datasets":[{"data":[{"x":0,"y":671.5327},{"x":1,"y":762.0834},{"x":2,"y":825.9149},{"x":3,"y":876.0997},{"x":4,"y":908.4196},{"x":5,"y":948.0117},{"x":6,"y":983.0097},{"x":7,"y":1006.7643},{"x":8,"y":1024.6274},{"x":9,"y":1040.8895},{"x":10,"y":1055.4347},{"x":11,"y":1065.6967},{"x":12,"y":1073.718},{"x":13,"y":1076.7193},{"x":14,"y":1076.3371},{"x":15,"y":1076.2685},{"x":16,"y":1072.7573},{"x":17,"y":1065.5468},{"x":18,"y":1060.4237},{"x":19,"y":1054.4459},{"x":20,"y":1043.0831},{"x":21,"y":1031.6371},{"x":22,"y":1019.9855},{"x":23,"y":1011.1376},{"x":24,"y":1001.1152},{"x":25,"y":990.5897},{"x":26,"y":983.1137},{"x":27,"y":973.6314},{"x":28,"y":962.1853},{"x":29,"y":949.9465},{"x":30,"y":940.0855},{"x":31,"y":927.9226},{"x":32,"y":912.8959},{"x":33,"y":895.8703},{"x":34,"y":876.6853},{"x":35,"y":860.5046},{"x":36,"y":847.7047},{"x":37,"y":833.4613},{"x":38,"y":817.7553},{"x":39,"y":805.428},{"x":40,"y":793.0707},{"x":41,"y":784.4402},{"x":42,"y":780.7564},{"x":43,"y":777.5456},{"x":44,"y":778.4201},{"x":45,"y":777.6818},{"x":46,"y":769.9891},{"x":47,"y":759.2726},{"x":48,"y":748.9673},{"x":49,"y":738.2948},{"x":50,"y":727.8748},{"x":51,"y":714.372},{"x":52,"y":702.6996},{"x":53,"y":694.3483},{"x":54,"y":691.909},{"x":55,"y":692.0614},{"x":56,"y":688.4385},{"x":57,"y":685.6036},{"x":58,"y":683.1186},{"x":59,"y":676.6456},{"x":60,"y":669.4609},{"x":61,"y":669.0202},{"x":62,"y":669.4426},{"x":63,"y":669.2955},{"x":64,"y":671.8318},{"x":65,"y":671.8088},{"x":66,"y":666.7441},{"x":67,"y":659.3642},{"x":68,"y":653.5222},{"x":69,"y":648.1735},{"x":70,"y":641.1897},{"x":71,"y":633.3543},{"x":72,"y":624.8101},{"x":73,"y":617.3287},{"x":74,"y":607.1936},{"x":75,"y":596.4136},{"x":76,"y":588.6646},{"x":77,"y":584.88},{"x":78,"y":583.2397},{"x":79,"y":578.3057},{"x":80,"y":569.7393},{"x":81,"y":565.8268},{"x":82,"y":567.3331},{"x":83,"y":561.5273},{"x":84,"y":556.82},{"x":85,"y":558.0755},{"x":86,"y":557.7605},{"x":87,"y":556.2149},{"x":88,"y":551.3922},{"x":89,"y":549.3613},{"x":90,"y":548.2166},{"x":91,"y":542.1893},{"x":92,"y":532.1291},{"x":93,"y":520.8956},{"x":94,"y":510.1724},{"x":95,"y":496.3677},{"x":96,"y":480.5641},{"x":97,"y":468.4919},{"x":98,"y":455.219},{"x":99,"y":441.33},{"x":100,"y":422.7714}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴀ(GABA) in Area 4p","filename":"GABAᴀ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAA receptor in area 4p.** This profile plot shows examplary the course of the GABAA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(GABA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(GABA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":965.5393},{"x":1,"y":1151.589},{"x":2,"y":1269.8641},{"x":3,"y":1430.0462},{"x":4,"y":1647.1004},{"x":5,"y":1845.1383},{"x":6,"y":1973.9805},{"x":7,"y":2039.1232},{"x":8,"y":2121.6727},{"x":9,"y":2198.0932},{"x":10,"y":2271.2382},{"x":11,"y":2330.7525},{"x":12,"y":2381.1104},{"x":13,"y":2422.7618},{"x":14,"y":2472.3095},{"x":15,"y":2517.238},{"x":16,"y":2551.9437},{"x":17,"y":2565.2157},{"x":18,"y":2569.4004},{"x":19,"y":2563.6702},{"x":20,"y":2552.1965},{"x":21,"y":2533.0733},{"x":22,"y":2507.8129},{"x":23,"y":2490.4359},{"x":24,"y":2466.1782},{"x":25,"y":2432.777},{"x":26,"y":2381.5361},{"x":27,"y":2312.2432},{"x":28,"y":2236.4699},{"x":29,"y":2162.9645},{"x":30,"y":2086.5463},{"x":31,"y":2014.0596},{"x":32,"y":1943.6458},{"x":33,"y":1871.2318},{"x":34,"y":1812.889},{"x":35,"y":1747.1772},{"x":36,"y":1687.3703},{"x":37,"y":1631.6518},{"x":38,"y":1572.9243},{"x":39,"y":1525.8313},{"x":40,"y":1491.4072},{"x":41,"y":1452.491},{"x":42,"y":1407.0283},{"x":43,"y":1364.8219},{"x":44,"y":1324.3999},{"x":45,"y":1285.3707},{"x":46,"y":1245.3963},{"x":47,"y":1205.4298},{"x":48,"y":1172.975},{"x":49,"y":1151.8664},{"x":50,"y":1135.9644},{"x":51,"y":1112.919},{"x":52,"y":1089.5399},{"x":53,"y":1070.048},{"x":54,"y":1051.2739},{"x":55,"y":1032.4496},{"x":56,"y":1013.6026},{"x":57,"y":993.1959},{"x":58,"y":972.977},{"x":59,"y":953.3375},{"x":60,"y":936.7445},{"x":61,"y":924.2896},{"x":62,"y":909.1979},{"x":63,"y":898.075},{"x":64,"y":888.4155},{"x":65,"y":866.639},{"x":66,"y":849.7873},{"x":67,"y":843.6005},{"x":68,"y":830.8216},{"x":69,"y":813.7414},{"x":70,"y":796.1059},{"x":71,"y":787.1312},{"x":72,"y":781.821},{"x":73,"y":776.9668},{"x":74,"y":773.711},{"x":75,"y":771.0308},{"x":76,"y":769.5572},{"x":77,"y":762.1573},{"x":78,"y":755.5919},{"x":79,"y":748.7084},{"x":80,"y":744.6876},{"x":81,"y":742.9751},{"x":82,"y":745.0323},{"x":83,"y":746.6802},{"x":84,"y":739.1477},{"x":85,"y":714.0092},{"x":86,"y":684.6236},{"x":87,"y":657.7985},{"x":88,"y":639.7674},{"x":89,"y":616.9143},{"x":90,"y":594.2077},{"x":91,"y":576.7812},{"x":92,"y":557.1305},{"x":93,"y":535.8097},{"x":94,"y":521.4719},{"x":95,"y":491.7572},{"x":96,"y":446.4722},{"x":97,"y":400.0985},{"x":98,"y":369.1684},{"x":99,"y":351.5054},{"x":100,"y":326.5083}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area 4p","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha2 receptor in area 4p.** This profile plot shows examplary the course of the alpha2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":246.2534},{"x":1,"y":259.4862},{"x":2,"y":277.4986},{"x":3,"y":285.2216},{"x":4,"y":294.0173},{"x":5,"y":300.7106},{"x":6,"y":306.3066},{"x":7,"y":312.9451},{"x":8,"y":314.0576},{"x":9,"y":314.2408},{"x":10,"y":314.8368},{"x":11,"y":317.026},{"x":12,"y":320.4883},{"x":13,"y":321.852},{"x":14,"y":326.9512},{"x":15,"y":328.7829},{"x":16,"y":328.8389},{"x":17,"y":328.4249},{"x":18,"y":328.2449},{"x":19,"y":327.5129},{"x":20,"y":325.5236},{"x":21,"y":324.4907},{"x":22,"y":322.0809},{"x":23,"y":320.5948},{"x":24,"y":318.2293},{"x":25,"y":312.8317},{"x":26,"y":307.4058},{"x":27,"y":303.2551},{"x":28,"y":297.6031},{"x":29,"y":291.8421},{"x":30,"y":287.2327},{"x":31,"y":280.3822},{"x":32,"y":272.6439},{"x":33,"y":266.0348},{"x":34,"y":260.7282},{"x":35,"y":255.295},{"x":36,"y":251.4279},{"x":37,"y":246.2224},{"x":38,"y":240.9865},{"x":39,"y":232.7538},{"x":40,"y":225.5775},{"x":41,"y":219.1856},{"x":42,"y":212.542},{"x":43,"y":206.4109},{"x":44,"y":198.4776},{"x":45,"y":191.7136},{"x":46,"y":184.8949},{"x":47,"y":177.3725},{"x":48,"y":170.9253},{"x":49,"y":163.2244},{"x":50,"y":158.5991},{"x":51,"y":155.6667},{"x":52,"y":151.1555},{"x":53,"y":149.0065},{"x":54,"y":146.8623},{"x":55,"y":143.5166},{"x":56,"y":142.1431},{"x":57,"y":139.5216},{"x":58,"y":137.763},{"x":59,"y":135.723},{"x":60,"y":134.9706},{"x":61,"y":134.3301},{"x":62,"y":132.7478},{"x":63,"y":128.6403},{"x":64,"y":128.8844},{"x":65,"y":127.1248},{"x":66,"y":124.9873},{"x":67,"y":122.3877},{"x":68,"y":120.8569},{"x":69,"y":119.7062},{"x":70,"y":117.9047},{"x":71,"y":118.1982},{"x":72,"y":117.7951},{"x":73,"y":117.6583},{"x":74,"y":118.3453},{"x":75,"y":121.5278},{"x":76,"y":122.7096},{"x":77,"y":121.637},{"x":78,"y":120.9788},{"x":79,"y":121.9424},{"x":80,"y":124.0766},{"x":81,"y":127.485},{"x":82,"y":128.8032},{"x":83,"y":131.1107},{"x":84,"y":131.5831},{"x":85,"y":131.9437},{"x":86,"y":132.7724},{"x":87,"y":131.3279},{"x":88,"y":130.4136},{"x":89,"y":129.4572},{"x":90,"y":128.3176},{"x":91,"y":127.5929},{"x":92,"y":125.9543},{"x":93,"y":121.9733},{"x":94,"y":114.7188},{"x":95,"y":110.2009},{"x":96,"y":103.4671},{"x":97,"y":97.5537},{"x":98,"y":93.8018},{"x":99,"y":85.5132},{"x":100,"y":78.944}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area 4p","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha4-beta2 receptor in area 4p.** This profile plot shows examplary the course of the alpha4-beta2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the right hemisphere of one male subject (brain id: MR1, sample id: ID02, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area 4p"],"datasets":[{"data":[{"x":0,"y":23.3964},{"x":1,"y":27.5677},{"x":2,"y":33.1487},{"x":3,"y":38.0441},{"x":4,"y":39.9948},{"x":5,"y":41.6577},{"x":6,"y":41.4725},{"x":7,"y":42.5339},{"x":8,"y":41.9263},{"x":9,"y":42.1979},{"x":10,"y":42.9298},{"x":11,"y":43.7589},{"x":12,"y":47.5871},{"x":13,"y":52.4842},{"x":14,"y":56.0057},{"x":15,"y":59.4803},{"x":16,"y":63.3273},{"x":17,"y":64.846},{"x":18,"y":65.7842},{"x":19,"y":67.2184},{"x":20,"y":65.0516},{"x":21,"y":63.3048},{"x":22,"y":63.2549},{"x":23,"y":63.0501},{"x":24,"y":61.1246},{"x":25,"y":58.7209},{"x":26,"y":58.6303},{"x":27,"y":57.2076},{"x":28,"y":56.8928},{"x":29,"y":58.8376},{"x":30,"y":60.7044},{"x":31,"y":60.8714},{"x":32,"y":60.1396},{"x":33,"y":57.9379},{"x":34,"y":54.8886},{"x":35,"y":53.3826},{"x":36,"y":54.1466},{"x":37,"y":52.2331},{"x":38,"y":50.1424},{"x":39,"y":47.0771},{"x":40,"y":44.8462},{"x":41,"y":43.2539},{"x":42,"y":41.6472},{"x":43,"y":40.3653},{"x":44,"y":38.8388},{"x":45,"y":36.4354},{"x":46,"y":34.9368},{"x":47,"y":32.7955},{"x":48,"y":30.5269},{"x":49,"y":29.4819},{"x":50,"y":28.6333},{"x":51,"y":27.4856},{"x":52,"y":30.0795},{"x":53,"y":29.6557},{"x":54,"y":27.9403},{"x":55,"y":27.1986},{"x":56,"y":27.3866},{"x":57,"y":28.5206},{"x":58,"y":29.9391},{"x":59,"y":28.32},{"x":60,"y":26.3162},{"x":61,"y":25.2729},{"x":62,"y":23.8304},{"x":63,"y":23.2192},{"x":64,"y":22.7362},{"x":65,"y":23.9736},{"x":66,"y":26.6035},{"x":67,"y":28.2756},{"x":68,"y":29.7539},{"x":69,"y":29.3688},{"x":70,"y":28.7515},{"x":71,"y":27.8298},{"x":72,"y":26.2974},{"x":73,"y":26.1557},{"x":74,"y":25.338},{"x":75,"y":26.0453},{"x":76,"y":27.9933},{"x":77,"y":26.4202},{"x":78,"y":24.6767},{"x":79,"y":27.4102},{"x":80,"y":27.7946},{"x":81,"y":29.4776},{"x":82,"y":30.8489},{"x":83,"y":30.712},{"x":84,"y":30.2648},{"x":85,"y":27.2451},{"x":86,"y":26.7469},{"x":87,"y":24.9955},{"x":88,"y":22.4077},{"x":89,"y":19.4475},{"x":90,"y":17.9922},{"x":91,"y":17.8824},{"x":92,"y":17.8844},{"x":93,"y":17.4764},{"x":94,"y":19.2903},{"x":95,"y":23.8196},{"x":96,"y":27.6593},{"x":97,"y":29.3031},{"x":98,"y":29.8073},{"x":99,"y":28.1852},{"x":100,"y":24.9341}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of M₁(ACh) in Area 4p","filename":"M₁(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M1 receptor in area 4p.** This profile plot shows examplary the course of the M1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₁(ACh) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₁(ACh) in Area 4p"],"datasets":[{"data":[{"x":0,"y":177.5613},{"x":1,"y":212.9125},{"x":2,"y":237.2639},{"x":3,"y":246.8467},{"x":4,"y":251.8385},{"x":5,"y":261.0618},{"x":6,"y":273.723},{"x":7,"y":280.7772},{"x":8,"y":285.8265},{"x":9,"y":290.192},{"x":10,"y":297.355},{"x":11,"y":301.9992},{"x":12,"y":303.6063},{"x":13,"y":303.2138},{"x":14,"y":302.084},{"x":15,"y":300.7632},{"x":16,"y":297.0427},{"x":17,"y":296.8666},{"x":18,"y":298.0317},{"x":19,"y":301.7782},{"x":20,"y":301.3352},{"x":21,"y":297.8462},{"x":22,"y":288.1062},{"x":23,"y":280.651},{"x":24,"y":280.3739},{"x":25,"y":284.5969},{"x":26,"y":292.552},{"x":27,"y":297.0228},{"x":28,"y":295.1052},{"x":29,"y":290.6341},{"x":30,"y":282.2568},{"x":31,"y":276.5483},{"x":32,"y":273.3071},{"x":33,"y":272.3669},{"x":34,"y":268.6228},{"x":35,"y":264.066},{"x":36,"y":255.4622},{"x":37,"y":247.7011},{"x":38,"y":244.7823},{"x":39,"y":242.7695},{"x":40,"y":244.436},{"x":41,"y":239.7032},{"x":42,"y":240.084},{"x":43,"y":241.3789},{"x":44,"y":239.0415},{"x":45,"y":231.2252},{"x":46,"y":225.5254},{"x":47,"y":227.1775},{"x":48,"y":229.674},{"x":49,"y":231.0203},{"x":50,"y":226.7826},{"x":51,"y":223.0323},{"x":52,"y":223.463},{"x":53,"y":225.4177},{"x":54,"y":226.4601},{"x":55,"y":223.5417},{"x":56,"y":220.1629},{"x":57,"y":211.5754},{"x":58,"y":206.0136},{"x":59,"y":202.2226},{"x":60,"y":201.2661},{"x":61,"y":203.4258},{"x":62,"y":204.7404},{"x":63,"y":205.0382},{"x":64,"y":208.381},{"x":65,"y":212.1368},{"x":66,"y":214.4771},{"x":67,"y":212.6352},{"x":68,"y":204.4166},{"x":69,"y":196.9347},{"x":70,"y":191.4556},{"x":71,"y":189.1072},{"x":72,"y":190.59},{"x":73,"y":188.3134},{"x":74,"y":184.0019},{"x":75,"y":180.1806},{"x":76,"y":175.4552},{"x":77,"y":173.0925},{"x":78,"y":170.2103},{"x":79,"y":167.2494},{"x":80,"y":164.0523},{"x":81,"y":156.5838},{"x":82,"y":149.7573},{"x":83,"y":149.6057},{"x":84,"y":159.9707},{"x":85,"y":168.7063},{"x":86,"y":168.9057},{"x":87,"y":170.7221},{"x":88,"y":171.0815},{"x":89,"y":169.9085},{"x":90,"y":168.0826},{"x":91,"y":169.9774},{"x":92,"y":175.4958},{"x":93,"y":178.4184},{"x":94,"y":174.982},{"x":95,"y":177.1927},{"x":96,"y":178.7234},{"x":97,"y":176.297},{"x":98,"y":170.38},{"x":99,"y":158.8722},{"x":100,"y":147.2249}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₁ᴀ(5-HT) in Area 4p","filename":"5-HT₁ᴀ(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT1A receptor in area 4p.** This profile plot shows examplary the course of the 5-HT1A receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₁ᴀ(5-HT) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₁ᴀ(5-HT) in Area 4p"],"datasets":[{"data":[{"x":0,"y":428.9308},{"x":1,"y":495.1403},{"x":2,"y":541.9164},{"x":3,"y":588.555},{"x":4,"y":647.0351},{"x":5,"y":692.3516},{"x":6,"y":724.4157},{"x":7,"y":736.4219},{"x":8,"y":741.1353},{"x":9,"y":742.8676},{"x":10,"y":750.2411},{"x":11,"y":748.3506},{"x":12,"y":734.6194},{"x":13,"y":714.5461},{"x":14,"y":693.3643},{"x":15,"y":676.2287},{"x":16,"y":645.0704},{"x":17,"y":602.1474},{"x":18,"y":552.7692},{"x":19,"y":514.9649},{"x":20,"y":490.3583},{"x":21,"y":439.6608},{"x":22,"y":388.6937},{"x":23,"y":345.0375},{"x":24,"y":300.4365},{"x":25,"y":263.1994},{"x":26,"y":244.5633},{"x":27,"y":225.1518},{"x":28,"y":197.3158},{"x":29,"y":173.332},{"x":30,"y":153.4922},{"x":31,"y":137.1926},{"x":32,"y":129.6507},{"x":33,"y":125.2547},{"x":34,"y":115.9493},{"x":35,"y":106.9346},{"x":36,"y":99.137},{"x":37,"y":93.7743},{"x":38,"y":91.4765},{"x":39,"y":88.9536},{"x":40,"y":85.2524},{"x":41,"y":82.2302},{"x":42,"y":80.2956},{"x":43,"y":79.4478},{"x":44,"y":80.01},{"x":45,"y":81.0778},{"x":46,"y":81.496},{"x":47,"y":82.1455},{"x":48,"y":82.2895},{"x":49,"y":82.5744},{"x":50,"y":83.0285},{"x":51,"y":83.3794},{"x":52,"y":83.746},{"x":53,"y":84.2743},{"x":54,"y":84.9396},{"x":55,"y":84.8718},{"x":56,"y":85.0799},{"x":57,"y":85.1204},{"x":58,"y":83.9936},{"x":59,"y":82.4071},{"x":60,"y":82.0888},{"x":61,"y":83.2833},{"x":62,"y":82.994},{"x":63,"y":82.5629},{"x":64,"y":82.4524},{"x":65,"y":82.6655},{"x":66,"y":83.2486},{"x":67,"y":84.6959},{"x":68,"y":85.0116},{"x":69,"y":85.4611},{"x":70,"y":87.0886},{"x":71,"y":87.4156},{"x":72,"y":86.4148},{"x":73,"y":85.9081},{"x":74,"y":86.8308},{"x":75,"y":88.2356},{"x":76,"y":88.6416},{"x":77,"y":89.0933},{"x":78,"y":90.7302},{"x":79,"y":92.9634},{"x":80,"y":95.5819},{"x":81,"y":96.8833},{"x":82,"y":100.074},{"x":83,"y":103.905},{"x":84,"y":108.4788},{"x":85,"y":111.3809},{"x":86,"y":111.5588},{"x":87,"y":112.7189},{"x":88,"y":113.3942},{"x":89,"y":113.6225},{"x":90,"y":112.8714},{"x":91,"y":111.7206},{"x":92,"y":111.6132},{"x":93,"y":110.3027},{"x":94,"y":107.5104},{"x":95,"y":103.692},{"x":96,"y":99.1192},{"x":97,"y":94.175},{"x":98,"y":90.759},{"x":99,"y":88.0743},{"x":100,"y":86.1116}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of kainate (Glu) in Area 4p","filename":"kainate (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of kainate receptor in area 4p.** This profile plot shows examplary the course of the kainate receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of kainate (Glu) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of kainate (Glu) in Area 4p"],"datasets":[{"data":[{"x":0,"y":444.9013},{"x":1,"y":478.853},{"x":2,"y":522.3044},{"x":3,"y":566.3769},{"x":4,"y":611.4381},{"x":5,"y":639.1643},{"x":6,"y":670.3777},{"x":7,"y":709.8891},{"x":8,"y":736.845},{"x":9,"y":751.4612},{"x":10,"y":759.8265},{"x":11,"y":760.0773},{"x":12,"y":755.6988},{"x":13,"y":748.2128},{"x":14,"y":737.3758},{"x":15,"y":714.9009},{"x":16,"y":698.4431},{"x":17,"y":692.0432},{"x":18,"y":693.9772},{"x":19,"y":694.4279},{"x":20,"y":689.9882},{"x":21,"y":673.9338},{"x":22,"y":662.2802},{"x":23,"y":659.3315},{"x":24,"y":647.7461},{"x":25,"y":635.2646},{"x":26,"y":624.9549},{"x":27,"y":613.6821},{"x":28,"y":601.6596},{"x":29,"y":595.9311},{"x":30,"y":585.5849},{"x":31,"y":572.7356},{"x":32,"y":564.8913},{"x":33,"y":552.4053},{"x":34,"y":546.3442},{"x":35,"y":543.6978},{"x":36,"y":537.0066},{"x":37,"y":539.8829},{"x":38,"y":543.2446},{"x":39,"y":539.9692},{"x":40,"y":538.3033},{"x":41,"y":537.9807},{"x":42,"y":535.1719},{"x":43,"y":526.5822},{"x":44,"y":513.5545},{"x":45,"y":514.0201},{"x":46,"y":509.4211},{"x":47,"y":517.0931},{"x":48,"y":529.9028},{"x":49,"y":541.1426},{"x":50,"y":548.2803},{"x":51,"y":550.3827},{"x":52,"y":558.8487},{"x":53,"y":559.927},{"x":54,"y":560.2662},{"x":55,"y":557.1831},{"x":56,"y":548.6018},{"x":57,"y":555.1562},{"x":58,"y":555.5079},{"x":59,"y":557.5307},{"x":60,"y":553.8345},{"x":61,"y":549.0618},{"x":62,"y":537.1122},{"x":63,"y":531.8627},{"x":64,"y":512.7822},{"x":65,"y":500.884},{"x":66,"y":494.9313},{"x":67,"y":503.8626},{"x":68,"y":509.7465},{"x":69,"y":507.8355},{"x":70,"y":516.0139},{"x":71,"y":515.2897},{"x":72,"y":505.1189},{"x":73,"y":499.4815},{"x":74,"y":500.4826},{"x":75,"y":509.1224},{"x":76,"y":520.0008},{"x":77,"y":537.0228},{"x":78,"y":541.7035},{"x":79,"y":540.2282},{"x":80,"y":550.8264},{"x":81,"y":558.0364},{"x":82,"y":554.3041},{"x":83,"y":557.8952},{"x":84,"y":561.7992},{"x":85,"y":560.6808},{"x":86,"y":560.0122},{"x":87,"y":549.6383},{"x":88,"y":544.6991},{"x":89,"y":530.6341},{"x":90,"y":519.7908},{"x":91,"y":503.1348},{"x":92,"y":488.2597},{"x":93,"y":472.8749},{"x":94,"y":453.6037},{"x":95,"y":443.4381},{"x":96,"y":425.9718},{"x":97,"y":392.7833},{"x":98,"y":359.1279},{"x":99,"y":327.3993},{"x":100,"y":302.0907}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of M₂(ACh) in Area 4p","filename":"M₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M2 receptor in area 4p.** This profile plot shows examplary the course of the M2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₂(ACh) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₂(ACh) in Area 4p"],"datasets":[{"data":[{"x":0,"y":108.2147},{"x":1,"y":114.7941},{"x":2,"y":120.2603},{"x":3,"y":125.0035},{"x":4,"y":128.6499},{"x":5,"y":132.0851},{"x":6,"y":134.0588},{"x":7,"y":134.9646},{"x":8,"y":135.1502},{"x":9,"y":136.6637},{"x":10,"y":139.1111},{"x":11,"y":141.3666},{"x":12,"y":143.7458},{"x":13,"y":146.0771},{"x":14,"y":148.2536},{"x":15,"y":149.713},{"x":16,"y":150.2325},{"x":17,"y":149.7311},{"x":18,"y":149.3945},{"x":19,"y":149.9737},{"x":20,"y":150.5448},{"x":21,"y":150.9979},{"x":22,"y":151.4884},{"x":23,"y":152.231},{"x":24,"y":153.3646},{"x":25,"y":153.7209},{"x":26,"y":152.6501},{"x":27,"y":150.9449},{"x":28,"y":150.306},{"x":29,"y":149.1485},{"x":30,"y":145.8366},{"x":31,"y":142.4922},{"x":32,"y":140.3508},{"x":33,"y":137.7917},{"x":34,"y":134.5651},{"x":35,"y":131.6808},{"x":36,"y":128.9564},{"x":37,"y":125.9953},{"x":38,"y":123.1399},{"x":39,"y":120.5989},{"x":40,"y":118.195},{"x":41,"y":115.7174},{"x":42,"y":113.2899},{"x":43,"y":111.0312},{"x":44,"y":109.5123},{"x":45,"y":108.6353},{"x":46,"y":107.6214},{"x":47,"y":106.4588},{"x":48,"y":106.1123},{"x":49,"y":106.3376},{"x":50,"y":106.3804},{"x":51,"y":106.4234},{"x":52,"y":107.1362},{"x":53,"y":108.5413},{"x":54,"y":110.5437},{"x":55,"y":112.1884},{"x":56,"y":112.5979},{"x":57,"y":111.7477},{"x":58,"y":110.9647},{"x":59,"y":110.829},{"x":60,"y":110.451},{"x":61,"y":110.8103},{"x":62,"y":111.6594},{"x":63,"y":111.6352},{"x":64,"y":111.4361},{"x":65,"y":111.1668},{"x":66,"y":111.0769},{"x":67,"y":111.3845},{"x":68,"y":111.3357},{"x":69,"y":110.8876},{"x":70,"y":110.7298},{"x":71,"y":110.6314},{"x":72,"y":110.1852},{"x":73,"y":110.0184},{"x":74,"y":110.7682},{"x":75,"y":111.9656},{"x":76,"y":113.3596},{"x":77,"y":114.1831},{"x":78,"y":113.6895},{"x":79,"y":112.8259},{"x":80,"y":111.3391},{"x":81,"y":108.0408},{"x":82,"y":104.7079},{"x":83,"y":102.3317},{"x":84,"y":100.0946},{"x":85,"y":97.6344},{"x":86,"y":95.0103},{"x":87,"y":92.2051},{"x":88,"y":90.4907},{"x":89,"y":90.0506},{"x":90,"y":89.2417},{"x":91,"y":87.593},{"x":92,"y":85.9571},{"x":93,"y":84.4195},{"x":94,"y":82.4064},{"x":95,"y":79.9042},{"x":96,"y":77.0442},{"x":97,"y":74.3645},{"x":98,"y":71.9937},{"x":99,"y":69.748},{"x":100,"y":67.4857}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area 4p","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of AMPA receptor in area 4p.** This profile plot shows examplary the course of the AMPA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area 4p"],"datasets":[{"data":[{"x":0,"y":405.7916},{"x":1,"y":451.3663},{"x":2,"y":486.7215},{"x":3,"y":556.2107},{"x":4,"y":609.283},{"x":5,"y":645.7985},{"x":6,"y":667.0372},{"x":7,"y":716.559},{"x":8,"y":766.1185},{"x":9,"y":798.6767},{"x":10,"y":810.0016},{"x":11,"y":817.6583},{"x":12,"y":820.0057},{"x":13,"y":809.1266},{"x":14,"y":808.9703},{"x":15,"y":794.2326},{"x":16,"y":772.7793},{"x":17,"y":748.0217},{"x":18,"y":735.2597},{"x":19,"y":723.7105},{"x":20,"y":708.2348},{"x":21,"y":692.1717},{"x":22,"y":683.6878},{"x":23,"y":672.5242},{"x":24,"y":650.3613},{"x":25,"y":634.4599},{"x":26,"y":618.5452},{"x":27,"y":606.5234},{"x":28,"y":592.2186},{"x":29,"y":574.8941},{"x":30,"y":555.0607},{"x":31,"y":540.9853},{"x":32,"y":529.1812},{"x":33,"y":518.2187},{"x":34,"y":501.6061},{"x":35,"y":485.3405},{"x":36,"y":479.7732},{"x":37,"y":468.6642},{"x":38,"y":456.7342},{"x":39,"y":440.1297},{"x":40,"y":435.0405},{"x":41,"y":431.0196},{"x":42,"y":431.2259},{"x":43,"y":433.7448},{"x":44,"y":437.309},{"x":45,"y":436.3714},{"x":46,"y":430.2076},{"x":47,"y":423.0664},{"x":48,"y":423.831},{"x":49,"y":418.9397},{"x":50,"y":409.6095},{"x":51,"y":407.9441},{"x":52,"y":410.3914},{"x":53,"y":406.0006},{"x":54,"y":410.7625},{"x":55,"y":418.8226},{"x":56,"y":424.2864},{"x":57,"y":424.1622},{"x":58,"y":421.3889},{"x":59,"y":415.1754},{"x":60,"y":415.0224},{"x":61,"y":419.8106},{"x":62,"y":421.9317},{"x":63,"y":423.2834},{"x":64,"y":416.2717},{"x":65,"y":418.4447},{"x":66,"y":413.9094},{"x":67,"y":405.157},{"x":68,"y":391.95},{"x":69,"y":386.3918},{"x":70,"y":384.7671},{"x":71,"y":386.3889},{"x":72,"y":375.4532},{"x":73,"y":371.8443},{"x":74,"y":366.1416},{"x":75,"y":357.2842},{"x":76,"y":355.9336},{"x":77,"y":355.7511},{"x":78,"y":353.0054},{"x":79,"y":355.1551},{"x":80,"y":355.1524},{"x":81,"y":355.9313},{"x":82,"y":362.7427},{"x":83,"y":367.925},{"x":84,"y":379.8562},{"x":85,"y":391.2873},{"x":86,"y":400.3471},{"x":87,"y":406.154},{"x":88,"y":414.1834},{"x":89,"y":416.4235},{"x":90,"y":408.1863},{"x":91,"y":404.4585},{"x":92,"y":403.4157},{"x":93,"y":408.1966},{"x":94,"y":418.5663},{"x":95,"y":419.7757},{"x":96,"y":418.716},{"x":97,"y":410.7785},{"x":98,"y":388.4193},{"x":99,"y":373.8454},{"x":100,"y":356.4581}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of D₁(DA) in Area 4p","filename":"D₁(DA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of D1 receptor in area 4p.** This profile plot shows examplary the course of the D1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of D₁(DA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of D₁(DA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":81.0356},{"x":1,"y":85.4032},{"x":2,"y":91.5277},{"x":3,"y":95.2649},{"x":4,"y":98.9659},{"x":5,"y":101.4835},{"x":6,"y":102.5073},{"x":7,"y":103.2116},{"x":8,"y":103.5853},{"x":9,"y":102.1317},{"x":10,"y":100.4424},{"x":11,"y":98.5238},{"x":12,"y":97.7946},{"x":13,"y":97.9194},{"x":14,"y":98.453},{"x":15,"y":98.4084},{"x":16,"y":98.6345},{"x":17,"y":98.3342},{"x":18,"y":98.0803},{"x":19,"y":98.4198},{"x":20,"y":99.6212},{"x":21,"y":100.3751},{"x":22,"y":100.9769},{"x":23,"y":102.7118},{"x":24,"y":102.9193},{"x":25,"y":103.5926},{"x":26,"y":103.0699},{"x":27,"y":103.2264},{"x":28,"y":102.756},{"x":29,"y":102.0663},{"x":30,"y":102.022},{"x":31,"y":101.9923},{"x":32,"y":102.0377},{"x":33,"y":102.5273},{"x":34,"y":102.7723},{"x":35,"y":102.642},{"x":36,"y":102.2675},{"x":37,"y":101.5016},{"x":38,"y":100.3767},{"x":39,"y":99.8386},{"x":40,"y":99.8115},{"x":41,"y":99.7355},{"x":42,"y":99.8677},{"x":43,"y":100.6552},{"x":44,"y":101.0978},{"x":45,"y":101.2235},{"x":46,"y":101.0145},{"x":47,"y":100.1424},{"x":48,"y":99.1919},{"x":49,"y":98.7438},{"x":50,"y":97.2201},{"x":51,"y":96.1272},{"x":52,"y":94.8739},{"x":53,"y":93.9007},{"x":54,"y":94.0279},{"x":55,"y":94.9375},{"x":56,"y":96.2987},{"x":57,"y":96.7444},{"x":58,"y":96.2991},{"x":59,"y":95.6324},{"x":60,"y":94.5576},{"x":61,"y":92.8479},{"x":62,"y":91.5215},{"x":63,"y":89.8499},{"x":64,"y":88.5296},{"x":65,"y":87.9721},{"x":66,"y":87.3046},{"x":67,"y":86.311},{"x":68,"y":85.6674},{"x":69,"y":85.8799},{"x":70,"y":86.2137},{"x":71,"y":86.1636},{"x":72,"y":85.6039},{"x":73,"y":84.7779},{"x":74,"y":84.3983},{"x":75,"y":85.2993},{"x":76,"y":85.1569},{"x":77,"y":84.6755},{"x":78,"y":83.4431},{"x":79,"y":81.6805},{"x":80,"y":79.8961},{"x":81,"y":79.2903},{"x":82,"y":80.3898},{"x":83,"y":80.8137},{"x":84,"y":80.7606},{"x":85,"y":80.3767},{"x":86,"y":80.0834},{"x":87,"y":79.1542},{"x":88,"y":77.6828},{"x":89,"y":76.7582},{"x":90,"y":75.375},{"x":91,"y":73.7344},{"x":92,"y":72.0057},{"x":93,"y":70.4787},{"x":94,"y":69.9832},{"x":95,"y":69.777},{"x":96,"y":69.4156},{"x":97,"y":68.9271},{"x":98,"y":68.4438},{"x":99,"y":65.4653},{"x":100,"y":62.7346}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area 4p","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M3 receptor in area 4p.** This profile plot shows examplary the course of the M3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area 4p"],"datasets":[{"data":[{"x":0,"y":238.8069},{"x":1,"y":280.2313},{"x":2,"y":325.6811},{"x":3,"y":349.2281},{"x":4,"y":374.0297},{"x":5,"y":393.2599},{"x":6,"y":405.054},{"x":7,"y":417.0671},{"x":8,"y":424.9056},{"x":9,"y":432.4293},{"x":10,"y":435.5911},{"x":11,"y":435.02},{"x":12,"y":433.1668},{"x":13,"y":430.5725},{"x":14,"y":429.3597},{"x":15,"y":428.5402},{"x":16,"y":426.886},{"x":17,"y":421.9685},{"x":18,"y":417.0921},{"x":19,"y":410.6056},{"x":20,"y":403.318},{"x":21,"y":398.3886},{"x":22,"y":392.5697},{"x":23,"y":387.803},{"x":24,"y":382.9819},{"x":25,"y":379.3677},{"x":26,"y":375.6492},{"x":27,"y":370.0806},{"x":28,"y":365.9916},{"x":29,"y":360.2961},{"x":30,"y":356.1784},{"x":31,"y":351.7452},{"x":32,"y":345.845},{"x":33,"y":340.7166},{"x":34,"y":335.1268},{"x":35,"y":330.1108},{"x":36,"y":325.7945},{"x":37,"y":321.3716},{"x":38,"y":317.7494},{"x":39,"y":314.3934},{"x":40,"y":311.6953},{"x":41,"y":309.8798},{"x":42,"y":307.991},{"x":43,"y":305.4804},{"x":44,"y":302.225},{"x":45,"y":299.7676},{"x":46,"y":298.6813},{"x":47,"y":297.5102},{"x":48,"y":297.8277},{"x":49,"y":298.792},{"x":50,"y":299.1612},{"x":51,"y":299.5356},{"x":52,"y":300.5433},{"x":53,"y":300.3015},{"x":54,"y":299.9078},{"x":55,"y":298.5431},{"x":56,"y":295.263},{"x":57,"y":293.6305},{"x":58,"y":291.2533},{"x":59,"y":289.213},{"x":60,"y":287.1969},{"x":61,"y":285.8204},{"x":62,"y":283.6904},{"x":63,"y":281.8311},{"x":64,"y":279.581},{"x":65,"y":277.4034},{"x":66,"y":273.7292},{"x":67,"y":271.641},{"x":68,"y":270.4709},{"x":69,"y":268.7126},{"x":70,"y":267.2965},{"x":71,"y":265.9582},{"x":72,"y":266.1968},{"x":73,"y":266.4517},{"x":74,"y":267.4044},{"x":75,"y":268.4662},{"x":76,"y":269.5347},{"x":77,"y":270.3887},{"x":78,"y":272.2776},{"x":79,"y":274.0281},{"x":80,"y":274.109},{"x":81,"y":274.518},{"x":82,"y":274.8256},{"x":83,"y":275.5447},{"x":84,"y":276.3067},{"x":85,"y":276.4332},{"x":86,"y":274.8957},{"x":87,"y":272.0392},{"x":88,"y":268.3825},{"x":89,"y":261.8862},{"x":90,"y":257.2851},{"x":91,"y":251.2371},{"x":92,"y":245.5257},{"x":93,"y":239.9286},{"x":94,"y":232.077},{"x":95,"y":225.0543},{"x":96,"y":215.0261},{"x":97,"y":203.8563},{"x":98,"y":194.9882},{"x":99,"y":179.5477},{"x":100,"y":168.421}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area 4p","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of mGluR2_3 receptor in area 4p.** This profile plot shows examplary the course of the mGluR2_3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area 4p"],"datasets":[{"data":[{"x":0,"y":1362.7526},{"x":1,"y":1623.7655},{"x":2,"y":1931.6576},{"x":3,"y":2072.2325},{"x":4,"y":2226.3597},{"x":5,"y":2293.6503},{"x":6,"y":2337.3374},{"x":7,"y":2353.4959},{"x":8,"y":2380.6},{"x":9,"y":2396.5804},{"x":10,"y":2421.1059},{"x":11,"y":2429.5757},{"x":12,"y":2445.7819},{"x":13,"y":2459.5389},{"x":14,"y":2462.9697},{"x":15,"y":2460.5987},{"x":16,"y":2447.8776},{"x":17,"y":2433.9832},{"x":18,"y":2407.3267},{"x":19,"y":2367.5993},{"x":20,"y":2332.5256},{"x":21,"y":2290.9801},{"x":22,"y":2250.6076},{"x":23,"y":2175.8714},{"x":24,"y":2108.8494},{"x":25,"y":1983.6804},{"x":26,"y":1905.2304},{"x":27,"y":1828.3765},{"x":28,"y":1769.5882},{"x":29,"y":1720.4662},{"x":30,"y":1674.4628},{"x":31,"y":1635.6467},{"x":32,"y":1594.0765},{"x":33,"y":1552.6051},{"x":34,"y":1516.6606},{"x":35,"y":1479.7696},{"x":36,"y":1430.2682},{"x":37,"y":1395.32},{"x":38,"y":1347.4058},{"x":39,"y":1318.4095},{"x":40,"y":1270.2151},{"x":41,"y":1241.4851},{"x":42,"y":1218.3314},{"x":43,"y":1211.3165},{"x":44,"y":1193.297},{"x":45,"y":1174.9505},{"x":46,"y":1140.7864},{"x":47,"y":1109.8595},{"x":48,"y":1080.7802},{"x":49,"y":1063.9305},{"x":50,"y":1042.3092},{"x":51,"y":1031.5677},{"x":52,"y":1024.8403},{"x":53,"y":1016.885},{"x":54,"y":1001.3821},{"x":55,"y":982.0933},{"x":56,"y":969.3594},{"x":57,"y":945.2689},{"x":58,"y":928.9326},{"x":59,"y":905.3721},{"x":60,"y":893.1365},{"x":61,"y":878.9716},{"x":62,"y":865.5179},{"x":63,"y":843.4146},{"x":64,"y":821.0866},{"x":65,"y":814.6251},{"x":66,"y":816.8045},{"x":67,"y":817.7019},{"x":68,"y":817.2266},{"x":69,"y":812.3679},{"x":70,"y":803.0254},{"x":71,"y":802.4512},{"x":72,"y":800.7972},{"x":73,"y":802.2448},{"x":74,"y":801.2546},{"x":75,"y":806.9519},{"x":76,"y":823.2623},{"x":77,"y":831.6546},{"x":78,"y":849.466},{"x":79,"y":857.9146},{"x":80,"y":891.4304},{"x":81,"y":906.4574},{"x":82,"y":915.4269},{"x":83,"y":921.8337},{"x":84,"y":924.4591},{"x":85,"y":928.9587},{"x":86,"y":928.5737},{"x":87,"y":913.8813},{"x":88,"y":909.1288},{"x":89,"y":910.6338},{"x":90,"y":909.2341},{"x":91,"y":893.5264},{"x":92,"y":871.2802},{"x":93,"y":841.0226},{"x":94,"y":803.2697},{"x":95,"y":745.0494},{"x":96,"y":703.5494},{"x":97,"y":636.1194},{"x":98,"y":589.1755},{"x":99,"y":521.9796},{"x":100,"y":472.3728}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₂(5-HT) in Area 4p","filename":"5-HT₂(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT2 receptor in area 4p.** This profile plot shows examplary the course of the 5-HT2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₂(5-HT) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₂(5-HT) in Area 4p"],"datasets":[{"data":[{"x":0,"y":179.9836},{"x":1,"y":200.3762},{"x":2,"y":211.451},{"x":3,"y":222.2991},{"x":4,"y":236.1383},{"x":5,"y":248.6507},{"x":6,"y":257.1125},{"x":7,"y":260.5257},{"x":8,"y":264.4934},{"x":9,"y":268.956},{"x":10,"y":273.6446},{"x":11,"y":278.7552},{"x":12,"y":283.4397},{"x":13,"y":287.3162},{"x":14,"y":290.5109},{"x":15,"y":293.9565},{"x":16,"y":297.6853},{"x":17,"y":302.0848},{"x":18,"y":305.7314},{"x":19,"y":309.3778},{"x":20,"y":311.836},{"x":21,"y":313.7182},{"x":22,"y":315.9635},{"x":23,"y":317.9053},{"x":24,"y":318.5886},{"x":25,"y":317.5704},{"x":26,"y":316.6828},{"x":27,"y":315.2617},{"x":28,"y":313.201},{"x":29,"y":309.9313},{"x":30,"y":305.9518},{"x":31,"y":301.3275},{"x":32,"y":297.3132},{"x":33,"y":294.1857},{"x":34,"y":291.9383},{"x":35,"y":291.1475},{"x":36,"y":290.8454},{"x":37,"y":289.9765},{"x":38,"y":287.7755},{"x":39,"y":283.566},{"x":40,"y":277.8046},{"x":41,"y":271.2469},{"x":42,"y":265.0297},{"x":43,"y":259.5282},{"x":44,"y":256.2872},{"x":45,"y":254.189},{"x":46,"y":252.385},{"x":47,"y":250.9218},{"x":48,"y":248.5836},{"x":49,"y":246.0226},{"x":50,"y":243.1453},{"x":51,"y":237.5159},{"x":52,"y":231.7849},{"x":53,"y":227.1036},{"x":54,"y":221.043},{"x":55,"y":216.2664},{"x":56,"y":213.7248},{"x":57,"y":211.1546},{"x":58,"y":207.5552},{"x":59,"y":205.0634},{"x":60,"y":202.3326},{"x":61,"y":199.7527},{"x":62,"y":198.0013},{"x":63,"y":195.9624},{"x":64,"y":193.3749},{"x":65,"y":191.5068},{"x":66,"y":190.5698},{"x":67,"y":188.8002},{"x":68,"y":184.6829},{"x":69,"y":180.51},{"x":70,"y":177.6765},{"x":71,"y":175.3894},{"x":72,"y":172.6601},{"x":73,"y":170.8123},{"x":74,"y":171.7776},{"x":75,"y":173.0175},{"x":76,"y":174.9289},{"x":77,"y":175.5956},{"x":78,"y":176.2603},{"x":79,"y":176.876},{"x":80,"y":176.2783},{"x":81,"y":174.1849},{"x":82,"y":171.6032},{"x":83,"y":169.6317},{"x":84,"y":166.8814},{"x":85,"y":164.6345},{"x":86,"y":162.8298},{"x":87,"y":162.009},{"x":88,"y":161.9841},{"x":89,"y":161.4138},{"x":90,"y":160.5861},{"x":91,"y":160.7514},{"x":92,"y":162.097},{"x":93,"y":163.2675},{"x":94,"y":163.5517},{"x":95,"y":163.2571},{"x":96,"y":162.1044},{"x":97,"y":158.4227},{"x":98,"y":154.081},{"x":99,"y":148.6046},{"x":100,"y":142.329}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴃ(GABA) in Area 4p","filename":"GABAᴃ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAB receptor in area 4p.** This profile plot shows examplary the course of the GABAB receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴃ(GABA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴃ(GABA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":647.8443},{"x":1,"y":764.921},{"x":2,"y":911.7294},{"x":3,"y":965.0076},{"x":4,"y":1030.6123},{"x":5,"y":1073.3067},{"x":6,"y":1101.0091},{"x":7,"y":1126.5066},{"x":8,"y":1136.7282},{"x":9,"y":1143.2325},{"x":10,"y":1143.1119},{"x":11,"y":1136.3096},{"x":12,"y":1127.7336},{"x":13,"y":1113.6974},{"x":14,"y":1103.9653},{"x":15,"y":1096.8742},{"x":16,"y":1089.088},{"x":17,"y":1078.5928},{"x":18,"y":1068.66},{"x":19,"y":1058.6944},{"x":20,"y":1043.0274},{"x":21,"y":1028.8727},{"x":22,"y":1013.0906},{"x":23,"y":997.4171},{"x":24,"y":979.6308},{"x":25,"y":968.4887},{"x":26,"y":956.8527},{"x":27,"y":943.2355},{"x":28,"y":929.8372},{"x":29,"y":913.0275},{"x":30,"y":900.7571},{"x":31,"y":885.3778},{"x":32,"y":868.7038},{"x":33,"y":853.8224},{"x":34,"y":840.2669},{"x":35,"y":831.2061},{"x":36,"y":824.5625},{"x":37,"y":817.738},{"x":38,"y":810.0107},{"x":39,"y":802.9903},{"x":40,"y":796.1557},{"x":41,"y":790.8052},{"x":42,"y":790.2412},{"x":43,"y":791.5338},{"x":44,"y":792.9265},{"x":45,"y":792.5888},{"x":46,"y":791.7291},{"x":47,"y":791.6414},{"x":48,"y":792.0469},{"x":49,"y":794.6018},{"x":50,"y":796.1359},{"x":51,"y":794.8847},{"x":52,"y":792.0887},{"x":53,"y":788.6834},{"x":54,"y":782.5741},{"x":55,"y":779.3821},{"x":56,"y":775.92},{"x":57,"y":774.225},{"x":58,"y":767.6827},{"x":59,"y":761.0554},{"x":60,"y":751.196},{"x":61,"y":737.5793},{"x":62,"y":725.6186},{"x":63,"y":720.3813},{"x":64,"y":719.8351},{"x":65,"y":720.8896},{"x":66,"y":717.9423},{"x":67,"y":712.9865},{"x":68,"y":708.1174},{"x":69,"y":706.658},{"x":70,"y":708.9637},{"x":71,"y":708.2627},{"x":72,"y":703.2908},{"x":73,"y":701.796},{"x":74,"y":703.9189},{"x":75,"y":708.9648},{"x":76,"y":716.4255},{"x":77,"y":724.1312},{"x":78,"y":732.6432},{"x":79,"y":739.5911},{"x":80,"y":744.9111},{"x":81,"y":750.717},{"x":82,"y":752.4934},{"x":83,"y":750.2768},{"x":84,"y":745.2086},{"x":85,"y":739.9001},{"x":86,"y":737.4896},{"x":87,"y":732.7},{"x":88,"y":726.2139},{"x":89,"y":720.4608},{"x":90,"y":716.4485},{"x":91,"y":714.3946},{"x":92,"y":711.1947},{"x":93,"y":706.17},{"x":94,"y":693.3673},{"x":95,"y":678.3776},{"x":96,"y":663.0551},{"x":97,"y":642.0024},{"x":98,"y":623.1513},{"x":99,"y":575.478},{"x":100,"y":543.276}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null}]],["Density measurements of different receptors for Area 3b",[{"name":"Receptor density fingerprint of Area 3b","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["327","387","933","2040","1490","1738","2493","471","253","739","55","255","730","217","394","88"]},{"label":"mean_sd","data":["162","180","147","541","352","623","601","121","63","283","20","91","291","90","97","31"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 3b (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(17,250,140,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area FG2",[{"name":"Receptor density fingerprint of Area FG2","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["427","490","1315","NA","1933","2329","2918","499","213","871","61","368","522","396","476","114"]},{"label":"mean_sd","data":["65","116","152","NA","292","237","422","72","35","172","12","57","118","74","97","20"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area FG2 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(0,209,56,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAᴀ(BZ) in Area FG2","filename":"GABAᴀ(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_BZ.jpg"},{"name":"Sample autoradiograph of α₁(NA) in Area FG2","filename":"α₁(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area FG2","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAᴀ(GABA) in Area FG2","filename":"GABAᴀ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area FG2","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area FG2","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of M₁(ACh) in Area FG2","filename":"M₁(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HT₁ᴀ(5-HT) in Area FG2","filename":"5-HT₁ᴀ(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area FG2","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_kainate.jpg"},{"name":"Sample autoradiograph of M₂(ACh) in Area FG2","filename":"M₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area FG2","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_AMPA.jpg"},{"name":"Sample autoradiograph of D₁(DA) in Area FG2","filename":"D₁(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area FG2","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_M3.jpg"},{"name":"Sample autoradiograph of 5-HT₂(5-HT) in Area FG2","filename":"5-HT₂(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAᴃ(GABA) in Area FG2","filename":"GABAᴃ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_GABAB.jpg"}]],["Density measurements of different receptors for Area hOc1",[{"name":"Receptor density fingerprint of Area hOc1","filename":"fingerprint","mimetype":"application/json","properties":{"description":"**Multireceptor fingerprint for area hOc1.** This polar plot shows the mean receptor densities in fmol/mg protein (solid shape) and standard deviation (dashed line) of 16 receptor binding sites in the area hOc1. The data is based on the left and right hemisphere of one female subject (brain id: hg0201, sample ids: ID07 and ID08, age: 77, cause of death: lung edema) and the right hemispheres of two male subjects (brain id: hg0500, sample ids: ID09, age: 72, cause of death: cardiac arrest | brain id: hg0100, sample ids: ID12, age: 77, cause of death: coronary heart disease).","publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["500","260","1348","NA ","2508","2187","3882","661","390","524","48","264","347","192","408","102"]},{"label":"mean_sd","data":["223","239","320","NA","828","274","1761","123","35","395","14","59","120","145","198","37"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area hOc1 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(250,30,250,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAᴀ(BZ) in Area hOc1","filename":"GABAᴀ(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_BZ.jpg"},{"name":"Sample autoradiograph of α₁(NA) in Area hOc1","filename":"α₁(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area hOc1","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAᴀ(GABA) in Area hOc1","filename":"GABAᴀ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area hOc1","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area hOc1","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of M₁(ACh) in Area hOc1","filename":"M₁(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HT₁ᴀ(5-HT) in Area hOc1","filename":"5-HT₁ᴀ(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area hOc1","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_kainate.jpg"},{"name":"Sample autoradiograph of M₂(ACh) in Area hOc1","filename":"M₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area hOc1","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_AMPA.jpg"},{"name":"Sample autoradiograph of D₁(DA) in Area hOc1","filename":"D₁(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area hOc1","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area hOc1","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HT₂(5-HT) in Area hOc1","filename":"5-HT₂(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAᴃ(GABA) in Area hOc1","filename":"GABAᴃ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_GABAB.jpg"},{"name":"Sample profile of GABAᴀ(BZ) in Area hOc1","filename":"GABAᴀ(BZ)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of BZ receptor in area hOc1.** This profile plot shows examplary the course of the BZ receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(BZ) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(BZ) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":2473.0437},{"x":1,"y":2709.9649},{"x":2,"y":2863.8033},{"x":3,"y":3020.3183},{"x":4,"y":3233.9841},{"x":5,"y":3468.3864},{"x":6,"y":3635.4238},{"x":7,"y":3809.6804},{"x":8,"y":3922.8191},{"x":9,"y":4019.787},{"x":10,"y":4145.7154},{"x":11,"y":4262.8654},{"x":12,"y":4359.3683},{"x":13,"y":4456.6648},{"x":14,"y":4547.5351},{"x":15,"y":4604.5476},{"x":16,"y":4656.1231},{"x":17,"y":4715.721},{"x":18,"y":4772.0907},{"x":19,"y":4824.9797},{"x":20,"y":4872.6302},{"x":21,"y":4899.9467},{"x":22,"y":4919.0758},{"x":23,"y":4943.3431},{"x":24,"y":4967.8908},{"x":25,"y":4992.6181},{"x":26,"y":5010.1393},{"x":27,"y":5022.2447},{"x":28,"y":5025.7343},{"x":29,"y":5018.2688},{"x":30,"y":4999.2744},{"x":31,"y":4980.2195},{"x":32,"y":4950.6731},{"x":33,"y":4911.5604},{"x":34,"y":4864.8777},{"x":35,"y":4814.1784},{"x":36,"y":4758.6408},{"x":37,"y":4700.4906},{"x":38,"y":4639.9174},{"x":39,"y":4574.9785},{"x":40,"y":4518.5558},{"x":41,"y":4445.2934},{"x":42,"y":4347.7528},{"x":43,"y":4266.0345},{"x":44,"y":4171.7632},{"x":45,"y":4066.8372},{"x":46,"y":3968.7016},{"x":47,"y":3893.0113},{"x":48,"y":3810.7725},{"x":49,"y":3722.9195},{"x":50,"y":3628.5303},{"x":51,"y":3522.0748},{"x":52,"y":3419.824},{"x":53,"y":3343.1842},{"x":54,"y":3284.7654},{"x":55,"y":3219.3612},{"x":56,"y":3160.9294},{"x":57,"y":3130.377},{"x":58,"y":3117.2719},{"x":59,"y":3124.664},{"x":60,"y":3149.251},{"x":61,"y":3181.78},{"x":62,"y":3245.5631},{"x":63,"y":3314.7894},{"x":64,"y":3404.5372},{"x":65,"y":3510.9699},{"x":66,"y":3600.425},{"x":67,"y":3682.2393},{"x":68,"y":3771.8579},{"x":69,"y":3851.3836},{"x":70,"y":3895.5587},{"x":71,"y":3909.6633},{"x":72,"y":3911.9156},{"x":73,"y":3885.9771},{"x":74,"y":3822.6901},{"x":75,"y":3726.9774},{"x":76,"y":3619.4826},{"x":77,"y":3509.3705},{"x":78,"y":3405.0033},{"x":79,"y":3311.1286},{"x":80,"y":3188.7399},{"x":81,"y":3074.0034},{"x":82,"y":2972.5357},{"x":83,"y":2888.1664},{"x":84,"y":2811.053},{"x":85,"y":2752.6464},{"x":86,"y":2708.332},{"x":87,"y":2647.6693},{"x":88,"y":2589.5925},{"x":89,"y":2538.7695},{"x":90,"y":2478.0323},{"x":91,"y":2402.2417},{"x":92,"y":2331.6322},{"x":93,"y":2242.612},{"x":94,"y":2123.8865},{"x":95,"y":2017.2915},{"x":96,"y":1867.9429},{"x":97,"y":1730.0878},{"x":98,"y":1630.6138},{"x":99,"y":1527.1209},{"x":100,"y":1383.8565}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of α₁(NA) in Area hOc1","filename":"α₁(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha1 receptor in area hOc1.** This profile plot shows examplary the course of the alpha1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₁(NA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₁(NA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":168.6749},{"x":1,"y":182.1696},{"x":2,"y":185.3947},{"x":3,"y":187.4005},{"x":4,"y":191.0936},{"x":5,"y":197.8342},{"x":6,"y":209.5895},{"x":7,"y":212.9179},{"x":8,"y":210.3358},{"x":9,"y":204.672},{"x":10,"y":198.3559},{"x":11,"y":192.2141},{"x":12,"y":184.6792},{"x":13,"y":176.5573},{"x":14,"y":167.6668},{"x":15,"y":155.016},{"x":16,"y":139.9113},{"x":17,"y":130.1627},{"x":18,"y":125.9382},{"x":19,"y":123.6029},{"x":20,"y":118.239},{"x":21,"y":113.5298},{"x":22,"y":110.5245},{"x":23,"y":108.3136},{"x":24,"y":102.8691},{"x":25,"y":101.3295},{"x":26,"y":102.7557},{"x":27,"y":101.7567},{"x":28,"y":99.6596},{"x":29,"y":96.9543},{"x":30,"y":93.9327},{"x":31,"y":91.7224},{"x":32,"y":88.1879},{"x":33,"y":85.0743},{"x":34,"y":83.9862},{"x":35,"y":83.5078},{"x":36,"y":83.7018},{"x":37,"y":85.1439},{"x":38,"y":85.7278},{"x":39,"y":86.1452},{"x":40,"y":84.2475},{"x":41,"y":82.1894},{"x":42,"y":78.456},{"x":43,"y":72.7331},{"x":44,"y":68.6578},{"x":45,"y":62.8413},{"x":46,"y":60.8788},{"x":47,"y":62.651},{"x":48,"y":64.8375},{"x":49,"y":64.6198},{"x":50,"y":62.7509},{"x":51,"y":61.7825},{"x":52,"y":57.3576},{"x":53,"y":56.1031},{"x":54,"y":56.3921},{"x":55,"y":58.7134},{"x":56,"y":60.9693},{"x":57,"y":62.4585},{"x":58,"y":59.0945},{"x":59,"y":53.9828},{"x":60,"y":50.213},{"x":61,"y":50.0645},{"x":62,"y":53.8254},{"x":63,"y":59.7737},{"x":64,"y":63.0181},{"x":65,"y":63.9535},{"x":66,"y":64.0462},{"x":67,"y":65.6225},{"x":68,"y":71.6348},{"x":69,"y":76.1939},{"x":70,"y":81.6869},{"x":71,"y":87.3107},{"x":72,"y":91.7488},{"x":73,"y":96.3965},{"x":74,"y":98.7351},{"x":75,"y":102.4217},{"x":76,"y":106.6856},{"x":77,"y":110.8446},{"x":78,"y":116.0606},{"x":79,"y":119.1487},{"x":80,"y":117.2004},{"x":81,"y":112.0626},{"x":82,"y":110.0738},{"x":83,"y":109.4078},{"x":84,"y":112.0437},{"x":85,"y":111.7614},{"x":86,"y":109.5021},{"x":87,"y":103.9489},{"x":88,"y":99.3451},{"x":89,"y":98.5225},{"x":90,"y":97.1939},{"x":91,"y":100.2859},{"x":92,"y":105.9594},{"x":93,"y":111.2528},{"x":94,"y":114.1552},{"x":95,"y":111.1529},{"x":96,"y":98.7504},{"x":97,"y":81.3371},{"x":98,"y":67.5288},{"x":99,"y":56.9752},{"x":100,"y":45.3638}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area hOc1","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of NMDA receptor in area hOc1.** This profile plot shows examplary the course of the NMDA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one male subject (brain id: MR3, sample id: ID06, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":572.0054},{"x":1,"y":614.2075},{"x":2,"y":649.1235},{"x":3,"y":690.7202},{"x":4,"y":711.4168},{"x":5,"y":727.3087},{"x":6,"y":738.8004},{"x":7,"y":739.6577},{"x":8,"y":740.3816},{"x":9,"y":743.605},{"x":10,"y":746.1732},{"x":11,"y":747.2647},{"x":12,"y":745.3762},{"x":13,"y":747.7438},{"x":14,"y":744.0118},{"x":15,"y":732.7667},{"x":16,"y":724.1488},{"x":17,"y":718.3944},{"x":18,"y":709.9797},{"x":19,"y":716.7964},{"x":20,"y":731.8721},{"x":21,"y":739.0177},{"x":22,"y":739.8535},{"x":23,"y":737.4356},{"x":24,"y":732.0279},{"x":25,"y":726.0898},{"x":26,"y":721.8319},{"x":27,"y":713.8019},{"x":28,"y":702.042},{"x":29,"y":685.841},{"x":30,"y":665.4271},{"x":31,"y":653.5912},{"x":32,"y":649.2724},{"x":33,"y":644.9724},{"x":34,"y":650.6951},{"x":35,"y":650.6101},{"x":36,"y":651.3148},{"x":37,"y":652.7863},{"x":38,"y":650.4579},{"x":39,"y":648.0021},{"x":40,"y":647.8156},{"x":41,"y":650.941},{"x":42,"y":650.3177},{"x":43,"y":645.8745},{"x":44,"y":641.2981},{"x":45,"y":635.7545},{"x":46,"y":624.975},{"x":47,"y":624.4013},{"x":48,"y":617.0492},{"x":49,"y":608.5372},{"x":50,"y":605.8666},{"x":51,"y":615.2715},{"x":52,"y":627.1219},{"x":53,"y":635.482},{"x":54,"y":644.3173},{"x":55,"y":649.9436},{"x":56,"y":665.8279},{"x":57,"y":672.7705},{"x":58,"y":674.4},{"x":59,"y":680.3973},{"x":60,"y":681.5213},{"x":61,"y":681.2878},{"x":62,"y":682.9132},{"x":63,"y":683.3346},{"x":64,"y":675.0873},{"x":65,"y":657.7742},{"x":66,"y":633.5167},{"x":67,"y":619.555},{"x":68,"y":600.2568},{"x":69,"y":581.369},{"x":70,"y":566.3398},{"x":71,"y":552.2866},{"x":72,"y":537.1043},{"x":73,"y":520.475},{"x":74,"y":504.502},{"x":75,"y":490.7681},{"x":76,"y":476.7009},{"x":77,"y":463.6569},{"x":78,"y":453.9446},{"x":79,"y":450.2859},{"x":80,"y":451.9531},{"x":81,"y":460.6127},{"x":82,"y":476.086},{"x":83,"y":481.1458},{"x":84,"y":475.1103},{"x":85,"y":458.0221},{"x":86,"y":439.422},{"x":87,"y":420.8552},{"x":88,"y":406.0399},{"x":89,"y":397.0358},{"x":90,"y":406.0541},{"x":91,"y":423.9473},{"x":92,"y":440.2471},{"x":93,"y":450.8751},{"x":94,"y":447.9673},{"x":95,"y":431.8788},{"x":96,"y":417.122},{"x":97,"y":403.7767},{"x":98,"y":382.1547},{"x":99,"y":364.2236},{"x":100,"y":342.4615}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴀ(GABA) in Area hOc1","filename":"GABAᴀ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAA receptor in area hOc1.** This profile plot shows examplary the course of the GABAA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(GABA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(GABA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":1052.5885},{"x":1,"y":1101.1443},{"x":2,"y":1153.1879},{"x":3,"y":1213.3273},{"x":4,"y":1273.632},{"x":5,"y":1333.742},{"x":6,"y":1385.7007},{"x":7,"y":1427.3979},{"x":8,"y":1472.1368},{"x":9,"y":1517.0938},{"x":10,"y":1553.9951},{"x":11,"y":1584.5964},{"x":12,"y":1604.8042},{"x":13,"y":1620.4829},{"x":14,"y":1636.4992},{"x":15,"y":1648.9745},{"x":16,"y":1660.725},{"x":17,"y":1670.5646},{"x":18,"y":1681.9283},{"x":19,"y":1685.7565},{"x":20,"y":1689.3959},{"x":21,"y":1687.323},{"x":22,"y":1685.2188},{"x":23,"y":1684.2764},{"x":24,"y":1692.8372},{"x":25,"y":1694.5134},{"x":26,"y":1692.2493},{"x":27,"y":1690.2391},{"x":28,"y":1690.9645},{"x":29,"y":1693.1758},{"x":30,"y":1679.6812},{"x":31,"y":1661.967},{"x":32,"y":1642.9101},{"x":33,"y":1610.6031},{"x":34,"y":1577.8663},{"x":35,"y":1536.8259},{"x":36,"y":1490.2543},{"x":37,"y":1441.318},{"x":38,"y":1401.5537},{"x":39,"y":1364.837},{"x":40,"y":1342.4044},{"x":41,"y":1318.6012},{"x":42,"y":1300.8426},{"x":43,"y":1288.5195},{"x":44,"y":1276.976},{"x":45,"y":1274.4948},{"x":46,"y":1286.5711},{"x":47,"y":1290.7743},{"x":48,"y":1289.5208},{"x":49,"y":1293.9939},{"x":50,"y":1294.2422},{"x":51,"y":1299.954},{"x":52,"y":1321.752},{"x":53,"y":1343.3275},{"x":54,"y":1372.7546},{"x":55,"y":1394.0418},{"x":56,"y":1425.4556},{"x":57,"y":1452.2623},{"x":58,"y":1475.6817},{"x":59,"y":1499.9404},{"x":60,"y":1513.4978},{"x":61,"y":1518.5183},{"x":62,"y":1529.7354},{"x":63,"y":1541.8937},{"x":64,"y":1540.2387},{"x":65,"y":1528.4263},{"x":66,"y":1506.9652},{"x":67,"y":1476.3935},{"x":68,"y":1428.1851},{"x":69,"y":1362.8467},{"x":70,"y":1298.3711},{"x":71,"y":1233.893},{"x":72,"y":1189.039},{"x":73,"y":1139.1874},{"x":74,"y":1098.413},{"x":75,"y":1047.3563},{"x":76,"y":1020.0548},{"x":77,"y":987.2062},{"x":78,"y":957.9883},{"x":79,"y":934.2743},{"x":80,"y":908.8416},{"x":81,"y":896.0374},{"x":82,"y":889.6003},{"x":83,"y":876.6913},{"x":84,"y":853.6658},{"x":85,"y":840.4487},{"x":86,"y":822.7237},{"x":87,"y":807.963},{"x":88,"y":795.9198},{"x":89,"y":775.4862},{"x":90,"y":754.5063},{"x":91,"y":741.7523},{"x":92,"y":718.9533},{"x":93,"y":701.1496},{"x":94,"y":685.4908},{"x":95,"y":660.0061},{"x":96,"y":634.1871},{"x":97,"y":602.2557},{"x":98,"y":579.7194},{"x":99,"y":558.718},{"x":100,"y":529.4428}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area hOc1","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha2 receptor in area hOc1.** This profile plot shows examplary the course of the alpha2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":565.5327},{"x":1,"y":603.732},{"x":2,"y":657.7538},{"x":3,"y":714.4727},{"x":4,"y":771.9365},{"x":5,"y":819.6543},{"x":6,"y":867.7175},{"x":7,"y":896.3946},{"x":8,"y":913.7756},{"x":9,"y":951.6106},{"x":10,"y":991.8389},{"x":11,"y":1027.8739},{"x":12,"y":1054.4826},{"x":13,"y":1080.7762},{"x":14,"y":1105.0313},{"x":15,"y":1135.6738},{"x":16,"y":1165.7187},{"x":17,"y":1196.5823},{"x":18,"y":1216.0058},{"x":19,"y":1230.7155},{"x":20,"y":1252.3499},{"x":21,"y":1281.8855},{"x":22,"y":1304.6098},{"x":23,"y":1316.7398},{"x":24,"y":1326.0868},{"x":25,"y":1335.2385},{"x":26,"y":1343.1457},{"x":27,"y":1352.9938},{"x":28,"y":1361.8641},{"x":29,"y":1373.8431},{"x":30,"y":1380.7078},{"x":31,"y":1376.2216},{"x":32,"y":1373.659},{"x":33,"y":1370.9288},{"x":34,"y":1362.927},{"x":35,"y":1350.2114},{"x":36,"y":1342.8246},{"x":37,"y":1334.9764},{"x":38,"y":1317.2357},{"x":39,"y":1294.0315},{"x":40,"y":1277.1577},{"x":41,"y":1264.6251},{"x":42,"y":1244.698},{"x":43,"y":1211.2148},{"x":44,"y":1181.7519},{"x":45,"y":1157.1657},{"x":46,"y":1125.8638},{"x":47,"y":1102.6032},{"x":48,"y":1079.2901},{"x":49,"y":1042.8401},{"x":50,"y":1012.3251},{"x":51,"y":982.8416},{"x":52,"y":952.3972},{"x":53,"y":931.584},{"x":54,"y":913.6329},{"x":55,"y":892.8916},{"x":56,"y":879.4261},{"x":57,"y":876.1527},{"x":58,"y":872.8202},{"x":59,"y":860.8477},{"x":60,"y":862.2473},{"x":61,"y":863.4877},{"x":62,"y":860.7376},{"x":63,"y":863.6045},{"x":64,"y":866.3627},{"x":65,"y":869.9129},{"x":66,"y":876.2006},{"x":67,"y":882.1477},{"x":68,"y":890.1761},{"x":69,"y":900.7452},{"x":70,"y":910.7396},{"x":71,"y":919.7907},{"x":72,"y":928.5848},{"x":73,"y":942.6796},{"x":74,"y":953.8475},{"x":75,"y":965.6336},{"x":76,"y":977.4255},{"x":77,"y":992.9898},{"x":78,"y":1006.5748},{"x":79,"y":1014.3239},{"x":80,"y":1026.2165},{"x":81,"y":1037.2182},{"x":82,"y":1044.2283},{"x":83,"y":1042.6564},{"x":84,"y":1038.3188},{"x":85,"y":1027.9061},{"x":86,"y":1013.1014},{"x":87,"y":998.2893},{"x":88,"y":981.9831},{"x":89,"y":967.5264},{"x":90,"y":940.3067},{"x":91,"y":907.9457},{"x":92,"y":876.6847},{"x":93,"y":854.2001},{"x":94,"y":826.2766},{"x":95,"y":773.7516},{"x":96,"y":716.9934},{"x":97,"y":664.677},{"x":98,"y":620.8819},{"x":99,"y":577.8488},{"x":100,"y":544.7912}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area hOc1","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha4-beta2 receptor in area hOc1.** This profile plot shows examplary the course of the alpha4-beta2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one male subject (brain id: MR3, sample id: ID06, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":76.2683},{"x":1,"y":75.0167},{"x":2,"y":72.401},{"x":3,"y":68.6732},{"x":4,"y":65.4106},{"x":5,"y":62.2464},{"x":6,"y":58.66},{"x":7,"y":56.7985},{"x":8,"y":55.4758},{"x":9,"y":54.8986},{"x":10,"y":54.7289},{"x":11,"y":52.1096},{"x":12,"y":47.7716},{"x":13,"y":45.0727},{"x":14,"y":43.8235},{"x":15,"y":42.6596},{"x":16,"y":39.3104},{"x":17,"y":38.2129},{"x":18,"y":38.1269},{"x":19,"y":37.5034},{"x":20,"y":37.7552},{"x":21,"y":35.7274},{"x":22,"y":31.441},{"x":23,"y":27.0863},{"x":24,"y":22.9707},{"x":25,"y":19.3137},{"x":26,"y":17.0069},{"x":27,"y":17.7011},{"x":28,"y":20.7183},{"x":29,"y":21.6929},{"x":30,"y":21.8768},{"x":31,"y":22.9711},{"x":32,"y":25.6515},{"x":33,"y":27.2575},{"x":34,"y":27.7914},{"x":35,"y":27.1827},{"x":36,"y":26.2036},{"x":37,"y":25.8425},{"x":38,"y":25.5295},{"x":39,"y":24.9211},{"x":40,"y":26.0603},{"x":41,"y":28.3008},{"x":42,"y":28.9225},{"x":43,"y":29.8913},{"x":44,"y":31.3723},{"x":45,"y":31.8183},{"x":46,"y":31.4389},{"x":47,"y":31.73},{"x":48,"y":31.3142},{"x":49,"y":31.2948},{"x":50,"y":32.0832},{"x":51,"y":32.2978},{"x":52,"y":33.7697},{"x":53,"y":35.3707},{"x":54,"y":37.1318},{"x":55,"y":38.5971},{"x":56,"y":38.9624},{"x":57,"y":36.7528},{"x":58,"y":35.4657},{"x":59,"y":35.6939},{"x":60,"y":34.0771},{"x":61,"y":31.699},{"x":62,"y":30.5999},{"x":63,"y":30.4193},{"x":64,"y":31.6578},{"x":65,"y":37.2199},{"x":66,"y":41.7566},{"x":67,"y":45.7892},{"x":68,"y":49.1681},{"x":69,"y":51.6315},{"x":70,"y":53.3099},{"x":71,"y":51.8012},{"x":72,"y":48.6715},{"x":73,"y":45.9925},{"x":74,"y":44.5297},{"x":75,"y":42.6407},{"x":76,"y":42.1098},{"x":77,"y":41.197},{"x":78,"y":38.6238},{"x":79,"y":36.1996},{"x":80,"y":34.8974},{"x":81,"y":34.7944},{"x":82,"y":34.4504},{"x":83,"y":33.6926},{"x":84,"y":32.3961},{"x":85,"y":32.8857},{"x":86,"y":33.3565},{"x":87,"y":34.7668},{"x":88,"y":39.2503},{"x":89,"y":43.0034},{"x":90,"y":44.4437},{"x":91,"y":45.7973},{"x":92,"y":47.0563},{"x":93,"y":48.2226},{"x":94,"y":48.0095},{"x":95,"y":45.6135},{"x":96,"y":43.2989},{"x":97,"y":42.1107},{"x":98,"y":40.2421},{"x":99,"y":38.7997},{"x":100,"y":36.9082}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of M₁(ACh) in Area hOc1","filename":"M₁(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M1 receptor in area hOc1.** This profile plot shows examplary the course of the M1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₁(ACh) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₁(ACh) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":441.085},{"x":1,"y":453.4159},{"x":2,"y":464.3631},{"x":3,"y":471.2128},{"x":4,"y":476.2852},{"x":5,"y":483.4172},{"x":6,"y":494.5519},{"x":7,"y":503.1657},{"x":8,"y":511.3589},{"x":9,"y":517.8983},{"x":10,"y":521.7943},{"x":11,"y":525.6308},{"x":12,"y":528.1456},{"x":13,"y":528.6413},{"x":14,"y":528.7076},{"x":15,"y":527.3279},{"x":16,"y":525.7541},{"x":17,"y":525.8783},{"x":18,"y":526.8102},{"x":19,"y":525.2279},{"x":20,"y":522.1177},{"x":21,"y":521.1822},{"x":22,"y":518.7488},{"x":23,"y":516.2637},{"x":24,"y":514.3933},{"x":25,"y":511.2544},{"x":26,"y":508.4808},{"x":27,"y":507.0339},{"x":28,"y":505.6586},{"x":29,"y":503.0545},{"x":30,"y":498.4712},{"x":31,"y":496.9603},{"x":32,"y":494.469},{"x":33,"y":489.0884},{"x":34,"y":483.9921},{"x":35,"y":476.7346},{"x":36,"y":469.3484},{"x":37,"y":464.8594},{"x":38,"y":459.4245},{"x":39,"y":450.1533},{"x":40,"y":437.2998},{"x":41,"y":423.1184},{"x":42,"y":410.2341},{"x":43,"y":396.3509},{"x":44,"y":381.9339},{"x":45,"y":371.2945},{"x":46,"y":365.5805},{"x":47,"y":355.5038},{"x":48,"y":341.7607},{"x":49,"y":328.7836},{"x":50,"y":315.8527},{"x":51,"y":305.7668},{"x":52,"y":296.629},{"x":53,"y":288.6043},{"x":54,"y":284.6497},{"x":55,"y":283.4328},{"x":56,"y":281.6549},{"x":57,"y":278.3931},{"x":58,"y":277.779},{"x":59,"y":279.7791},{"x":60,"y":283.8625},{"x":61,"y":288.4781},{"x":62,"y":291.6397},{"x":63,"y":293.0356},{"x":64,"y":295.34},{"x":65,"y":300.0218},{"x":66,"y":304.016},{"x":67,"y":306.3743},{"x":68,"y":309.2145},{"x":69,"y":313.4108},{"x":70,"y":316.5417},{"x":71,"y":320.9665},{"x":72,"y":323.6716},{"x":73,"y":325.5495},{"x":74,"y":327.8367},{"x":75,"y":329.5919},{"x":76,"y":332.1727},{"x":77,"y":336.1006},{"x":78,"y":341.3651},{"x":79,"y":344.5652},{"x":80,"y":345.9074},{"x":81,"y":346.5085},{"x":82,"y":346.2388},{"x":83,"y":346.2171},{"x":84,"y":344.782},{"x":85,"y":340.1649},{"x":86,"y":334.1118},{"x":87,"y":328.4941},{"x":88,"y":326.0946},{"x":89,"y":323.1798},{"x":90,"y":318.4895},{"x":91,"y":311.8383},{"x":92,"y":304.786},{"x":93,"y":296.6544},{"x":94,"y":288.1467},{"x":95,"y":278.0743},{"x":96,"y":270.0905},{"x":97,"y":264.1711},{"x":98,"y":255.5504},{"x":99,"y":240.4933},{"x":100,"y":223.9617}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₁ᴀ(5-HT) in Area hOc1","filename":"5-HT₁ᴀ(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT1A receptor in area hOc1.** This profile plot shows examplary the course of the 5-HT1A receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₁ᴀ(5-HT) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₁ᴀ(5-HT) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":277.0141},{"x":1,"y":293.8962},{"x":2,"y":311.1592},{"x":3,"y":326.4593},{"x":4,"y":346.5845},{"x":5,"y":369.2813},{"x":6,"y":382.2811},{"x":7,"y":394.0113},{"x":8,"y":400.4228},{"x":9,"y":403.8859},{"x":10,"y":410.9967},{"x":11,"y":412.9813},{"x":12,"y":412.7875},{"x":13,"y":412.2535},{"x":14,"y":412.1029},{"x":15,"y":409.3777},{"x":16,"y":402.7065},{"x":17,"y":394.2997},{"x":18,"y":382.7924},{"x":19,"y":369.8792},{"x":20,"y":354.0808},{"x":21,"y":341.8975},{"x":22,"y":331.0868},{"x":23,"y":318.3883},{"x":24,"y":301.0037},{"x":25,"y":281.3906},{"x":26,"y":259.2463},{"x":27,"y":238.5027},{"x":28,"y":223.1992},{"x":29,"y":208.9446},{"x":30,"y":196.0971},{"x":31,"y":180.5171},{"x":32,"y":166.1122},{"x":33,"y":157.3355},{"x":34,"y":151.5574},{"x":35,"y":142.8464},{"x":36,"y":134.7217},{"x":37,"y":128.6889},{"x":38,"y":124.3928},{"x":39,"y":120.3172},{"x":40,"y":116.1346},{"x":41,"y":111.29},{"x":42,"y":108.477},{"x":43,"y":107.1111},{"x":44,"y":104.8382},{"x":45,"y":101.7875},{"x":46,"y":99.0924},{"x":47,"y":97.3351},{"x":48,"y":93.1004},{"x":49,"y":91.1935},{"x":50,"y":88.2579},{"x":51,"y":85.0275},{"x":52,"y":83.6336},{"x":53,"y":82.4392},{"x":54,"y":81.4082},{"x":55,"y":80.0332},{"x":56,"y":79.994},{"x":57,"y":79.63},{"x":58,"y":80.3098},{"x":59,"y":81.5769},{"x":60,"y":81.1647},{"x":61,"y":80.9678},{"x":62,"y":82.7681},{"x":63,"y":82.2918},{"x":64,"y":80.0518},{"x":65,"y":78.6589},{"x":66,"y":79.7955},{"x":67,"y":79.4244},{"x":68,"y":79.3766},{"x":69,"y":79.737},{"x":70,"y":77.8016},{"x":71,"y":78.0166},{"x":72,"y":79.6687},{"x":73,"y":79.755},{"x":74,"y":79.1304},{"x":75,"y":79.4092},{"x":76,"y":81.7275},{"x":77,"y":85.3492},{"x":78,"y":86.9633},{"x":79,"y":89.0619},{"x":80,"y":90.2202},{"x":81,"y":90.9334},{"x":82,"y":93.4774},{"x":83,"y":96.3332},{"x":84,"y":96.625},{"x":85,"y":97.2223},{"x":86,"y":98.333},{"x":87,"y":98.3652},{"x":88,"y":98.6111},{"x":89,"y":98.1908},{"x":90,"y":98.6281},{"x":91,"y":97.1698},{"x":92,"y":95.6972},{"x":93,"y":93.6332},{"x":94,"y":90.3818},{"x":95,"y":87.8648},{"x":96,"y":82.8942},{"x":97,"y":79.1579},{"x":98,"y":77.5917},{"x":99,"y":75.3425},{"x":100,"y":71.4874}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of M₂(ACh) in Area hOc1","filename":"M₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M2 receptor in area hOc1.** This profile plot shows examplary the course of the M2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₂(ACh) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₂(ACh) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":111.7024},{"x":1,"y":120.7676},{"x":2,"y":124.713},{"x":3,"y":128.666},{"x":4,"y":133.3706},{"x":5,"y":138.896},{"x":6,"y":146.7855},{"x":7,"y":152.7374},{"x":8,"y":159.7736},{"x":9,"y":166.8849},{"x":10,"y":169.8943},{"x":11,"y":170.3749},{"x":12,"y":168.1731},{"x":13,"y":167.2757},{"x":14,"y":170.4316},{"x":15,"y":172.5422},{"x":16,"y":178.5668},{"x":17,"y":186.3632},{"x":18,"y":190.8588},{"x":19,"y":193.3013},{"x":20,"y":194.0643},{"x":21,"y":197.1141},{"x":22,"y":203.1535},{"x":23,"y":212.6348},{"x":24,"y":216.715},{"x":25,"y":214.0611},{"x":26,"y":209.2847},{"x":27,"y":202.3903},{"x":28,"y":200.1492},{"x":29,"y":206.1437},{"x":30,"y":214.2428},{"x":31,"y":221.7666},{"x":32,"y":225.5812},{"x":33,"y":222.7095},{"x":34,"y":218.3648},{"x":35,"y":210.9264},{"x":36,"y":206.6764},{"x":37,"y":205.0837},{"x":38,"y":201.9195},{"x":39,"y":197.1396},{"x":40,"y":186.0637},{"x":41,"y":176.2788},{"x":42,"y":167.1833},{"x":43,"y":162.1711},{"x":44,"y":160.3854},{"x":45,"y":160.8925},{"x":46,"y":166.0948},{"x":47,"y":169.1525},{"x":48,"y":171.3924},{"x":49,"y":175.9716},{"x":50,"y":178.3272},{"x":51,"y":178.3115},{"x":52,"y":173.934},{"x":53,"y":168.2591},{"x":54,"y":159.7846},{"x":55,"y":156.036},{"x":56,"y":155.0899},{"x":57,"y":161.3088},{"x":58,"y":170.2551},{"x":59,"y":178.6887},{"x":60,"y":185.8098},{"x":61,"y":190.9348},{"x":62,"y":195.1153},{"x":63,"y":197.8296},{"x":64,"y":199.6482},{"x":65,"y":201.0436},{"x":66,"y":198.4942},{"x":67,"y":189.6844},{"x":68,"y":179.744},{"x":69,"y":168.5765},{"x":70,"y":161.2516},{"x":71,"y":158.3052},{"x":72,"y":161.4},{"x":73,"y":170.7534},{"x":74,"y":183.4262},{"x":75,"y":191.2723},{"x":76,"y":200.1538},{"x":77,"y":206.8902},{"x":78,"y":210.5596},{"x":79,"y":211.2033},{"x":80,"y":211.3832},{"x":81,"y":210.9054},{"x":82,"y":209.4243},{"x":83,"y":205.4435},{"x":84,"y":201.1329},{"x":85,"y":197.5022},{"x":86,"y":194.4099},{"x":87,"y":189.4452},{"x":88,"y":182.6296},{"x":89,"y":177.4467},{"x":90,"y":177.2075},{"x":91,"y":179.9399},{"x":92,"y":185.1795},{"x":93,"y":189.6287},{"x":94,"y":191.4508},{"x":95,"y":188.6204},{"x":96,"y":179.9949},{"x":97,"y":168.4251},{"x":98,"y":151.9648},{"x":99,"y":136.9735},{"x":100,"y":112.6901}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area hOc1","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of AMPA receptor in area hOc1.** This profile plot shows examplary the course of the AMPA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one male subject (brain id: MR3, sample id: ID06, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":296.5185},{"x":1,"y":310.0072},{"x":2,"y":323.6652},{"x":3,"y":341.0282},{"x":4,"y":349.2329},{"x":5,"y":356.5307},{"x":6,"y":357.9476},{"x":7,"y":352.3415},{"x":8,"y":344.777},{"x":9,"y":338.6273},{"x":10,"y":334.1112},{"x":11,"y":332.0932},{"x":12,"y":331.5188},{"x":13,"y":328.8927},{"x":14,"y":328.0489},{"x":15,"y":323.2791},{"x":16,"y":316.9786},{"x":17,"y":310.6167},{"x":18,"y":303.2973},{"x":19,"y":298.0369},{"x":20,"y":295.6883},{"x":21,"y":293.3655},{"x":22,"y":289.7928},{"x":23,"y":288.8423},{"x":24,"y":285.8074},{"x":25,"y":278.3854},{"x":26,"y":275.6608},{"x":27,"y":268.4886},{"x":28,"y":260.6856},{"x":29,"y":253.0161},{"x":30,"y":249.18},{"x":31,"y":245.06},{"x":32,"y":243.1107},{"x":33,"y":241.5847},{"x":34,"y":233.3878},{"x":35,"y":225.3179},{"x":36,"y":217.5141},{"x":37,"y":205.2174},{"x":38,"y":198.9368},{"x":39,"y":195.3924},{"x":40,"y":188.3596},{"x":41,"y":182.7604},{"x":42,"y":177.7724},{"x":43,"y":167.8532},{"x":44,"y":165.2347},{"x":45,"y":161.148},{"x":46,"y":156.3672},{"x":47,"y":154.1189},{"x":48,"y":153.6221},{"x":49,"y":149.8172},{"x":50,"y":147.2099},{"x":51,"y":144.5575},{"x":52,"y":144.755},{"x":53,"y":142.919},{"x":54,"y":145.3835},{"x":55,"y":147.7908},{"x":56,"y":146.9777},{"x":57,"y":146.862},{"x":58,"y":149.7686},{"x":59,"y":153.0596},{"x":60,"y":155.5628},{"x":61,"y":160.2682},{"x":62,"y":166.7621},{"x":63,"y":175.6181},{"x":64,"y":177.1999},{"x":65,"y":177.6232},{"x":66,"y":177.3875},{"x":67,"y":181.1511},{"x":68,"y":180.7511},{"x":69,"y":178.4602},{"x":70,"y":179.1944},{"x":71,"y":181.6564},{"x":72,"y":187.3608},{"x":73,"y":192.4361},{"x":74,"y":197.441},{"x":75,"y":204.5389},{"x":76,"y":211.8954},{"x":77,"y":219.3225},{"x":78,"y":221.5775},{"x":79,"y":226.2557},{"x":80,"y":227.5431},{"x":81,"y":226.7665},{"x":82,"y":229.3286},{"x":83,"y":229.5464},{"x":84,"y":233.8443},{"x":85,"y":234.6858},{"x":86,"y":240.5448},{"x":87,"y":247.6617},{"x":88,"y":252.0637},{"x":89,"y":257.513},{"x":90,"y":261.6658},{"x":91,"y":259.2819},{"x":92,"y":254.2516},{"x":93,"y":249.9736},{"x":94,"y":243.1471},{"x":95,"y":231.5393},{"x":96,"y":225.1279},{"x":97,"y":216.5944},{"x":98,"y":209.4079},{"x":99,"y":206.6908},{"x":100,"y":201.3045}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of D₁(DA) in Area hOc1","filename":"D₁(DA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of D1 receptor in area hOc1.** This profile plot shows examplary the course of the D1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of D₁(DA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of D₁(DA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":207.7441},{"x":1,"y":215.511},{"x":2,"y":226.0892},{"x":3,"y":235.031},{"x":4,"y":238.9458},{"x":5,"y":241.4951},{"x":6,"y":245.7857},{"x":7,"y":252.3796},{"x":8,"y":254.8791},{"x":9,"y":259.0769},{"x":10,"y":264.0641},{"x":11,"y":268.4594},{"x":12,"y":273.8793},{"x":13,"y":279.9837},{"x":14,"y":282.8553},{"x":15,"y":284.6941},{"x":16,"y":289.7838},{"x":17,"y":293.2425},{"x":18,"y":293.798},{"x":19,"y":291.4762},{"x":20,"y":285.3904},{"x":21,"y":283.266},{"x":22,"y":281.3792},{"x":23,"y":278.3961},{"x":24,"y":277.8827},{"x":25,"y":276.6527},{"x":26,"y":271.455},{"x":27,"y":268.8769},{"x":28,"y":265.5565},{"x":29,"y":261.3125},{"x":30,"y":257.7901},{"x":31,"y":255.3523},{"x":32,"y":252.8395},{"x":33,"y":250.7056},{"x":34,"y":249.2335},{"x":35,"y":249.1512},{"x":36,"y":248.2857},{"x":37,"y":247.0389},{"x":38,"y":247.9175},{"x":39,"y":248.2511},{"x":40,"y":248.9341},{"x":41,"y":249.4854},{"x":42,"y":249.5802},{"x":43,"y":249.6495},{"x":44,"y":247.9311},{"x":45,"y":246.6846},{"x":46,"y":244.8176},{"x":47,"y":242.3142},{"x":48,"y":240.3888},{"x":49,"y":237.3486},{"x":50,"y":234.6358},{"x":51,"y":230.491},{"x":52,"y":226.5043},{"x":53,"y":222.2163},{"x":54,"y":219.9779},{"x":55,"y":215.9688},{"x":56,"y":214.1612},{"x":57,"y":212.1285},{"x":58,"y":211.9612},{"x":59,"y":212.3389},{"x":60,"y":211.5356},{"x":61,"y":212.6048},{"x":62,"y":216.3678},{"x":63,"y":221.0559},{"x":64,"y":223.8181},{"x":65,"y":226.5403},{"x":66,"y":227.4622},{"x":67,"y":227.9431},{"x":68,"y":230.2788},{"x":69,"y":233.2172},{"x":70,"y":237.4031},{"x":71,"y":239.3619},{"x":72,"y":241.897},{"x":73,"y":246.6127},{"x":74,"y":253.0889},{"x":75,"y":258.2004},{"x":76,"y":261.0606},{"x":77,"y":264.0636},{"x":78,"y":268.5683},{"x":79,"y":274.3705},{"x":80,"y":277.8342},{"x":81,"y":285.054},{"x":82,"y":290.7287},{"x":83,"y":292.6989},{"x":84,"y":292.3012},{"x":85,"y":290.8193},{"x":86,"y":289.8784},{"x":87,"y":292.4998},{"x":88,"y":297.0705},{"x":89,"y":298.7731},{"x":90,"y":299.3802},{"x":91,"y":299.2742},{"x":92,"y":298.5046},{"x":93,"y":300.3571},{"x":94,"y":299.3348},{"x":95,"y":295.7797},{"x":96,"y":290.9805},{"x":97,"y":282.4275},{"x":98,"y":266.5104},{"x":99,"y":253.4289},{"x":100,"y":243.1836}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area hOc1","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M3 receptor in area hOc1.** This profile plot shows examplary the course of the M3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":747.2266},{"x":1,"y":865.6087},{"x":2,"y":946.5255},{"x":3,"y":998.8131},{"x":4,"y":1041.1623},{"x":5,"y":1082.1014},{"x":6,"y":1113.3147},{"x":7,"y":1136.6045},{"x":8,"y":1152.5531},{"x":9,"y":1156.4684},{"x":10,"y":1161.711},{"x":11,"y":1164.093},{"x":12,"y":1163.7677},{"x":13,"y":1165.4596},{"x":14,"y":1167.5281},{"x":15,"y":1164.0925},{"x":16,"y":1159.3774},{"x":17,"y":1160.1835},{"x":18,"y":1164.7982},{"x":19,"y":1163.8683},{"x":20,"y":1155.6704},{"x":21,"y":1145.5185},{"x":22,"y":1140.9926},{"x":23,"y":1140.6158},{"x":24,"y":1141.4056},{"x":25,"y":1139.1365},{"x":26,"y":1134.0535},{"x":27,"y":1130.0171},{"x":28,"y":1117.8305},{"x":29,"y":1103.4632},{"x":30,"y":1078.4865},{"x":31,"y":1054.6395},{"x":32,"y":1036.7652},{"x":33,"y":1027.3206},{"x":34,"y":1013.9538},{"x":35,"y":994.1636},{"x":36,"y":973.5138},{"x":37,"y":947.6866},{"x":38,"y":904.1716},{"x":39,"y":844.7921},{"x":40,"y":773.3199},{"x":41,"y":706.9926},{"x":42,"y":652.7577},{"x":43,"y":616.1192},{"x":44,"y":588.1246},{"x":45,"y":562.5917},{"x":46,"y":543.9291},{"x":47,"y":532.2594},{"x":48,"y":527.498},{"x":49,"y":524.0085},{"x":50,"y":523.3199},{"x":51,"y":526.589},{"x":52,"y":536.6216},{"x":53,"y":551.9353},{"x":54,"y":576.6846},{"x":55,"y":607.8316},{"x":56,"y":638.6868},{"x":57,"y":661.2896},{"x":58,"y":678.8031},{"x":59,"y":689.3389},{"x":60,"y":695.9724},{"x":61,"y":693.1446},{"x":62,"y":681.0257},{"x":63,"y":663.0234},{"x":64,"y":648.1835},{"x":65,"y":636.9734},{"x":66,"y":628.1691},{"x":67,"y":632.0165},{"x":68,"y":645.8549},{"x":69,"y":683.0799},{"x":70,"y":735.4547},{"x":71,"y":784.1169},{"x":72,"y":816.0836},{"x":73,"y":831.1279},{"x":74,"y":824.7145},{"x":75,"y":813.242},{"x":76,"y":794.0377},{"x":77,"y":770.6568},{"x":78,"y":752.071},{"x":79,"y":731.3164},{"x":80,"y":709.231},{"x":81,"y":693.622},{"x":82,"y":678.3714},{"x":83,"y":670.9507},{"x":84,"y":672.3956},{"x":85,"y":674.3531},{"x":86,"y":680.4494},{"x":87,"y":681.3667},{"x":88,"y":681.4286},{"x":89,"y":673.1429},{"x":90,"y":660.9871},{"x":91,"y":649.7518},{"x":92,"y":637.4919},{"x":93,"y":629.1207},{"x":94,"y":618.5734},{"x":95,"y":589.9535},{"x":96,"y":548.6126},{"x":97,"y":511.9469},{"x":98,"y":472.9624},{"x":99,"y":433.5808},{"x":100,"y":387.2545}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area hOc1","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of mGluR2_3 receptor in area hOc1.** This profile plot shows examplary the course of the mGluR2_3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one male subject (brain id: MR1, sample id: ID02, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":1996.4791},{"x":1,"y":1991.9309},{"x":2,"y":1991.5574},{"x":3,"y":1992.9584},{"x":4,"y":1989.7499},{"x":5,"y":1979.245},{"x":6,"y":1952.4576},{"x":7,"y":1928.766},{"x":8,"y":1899.0324},{"x":9,"y":1865.01},{"x":10,"y":1828.0118},{"x":11,"y":1791.4461},{"x":12,"y":1756.2043},{"x":13,"y":1721.0255},{"x":14,"y":1691.8148},{"x":15,"y":1658.0648},{"x":16,"y":1618.3138},{"x":17,"y":1573.6074},{"x":18,"y":1532.8729},{"x":19,"y":1509.9391},{"x":20,"y":1490.2826},{"x":21,"y":1474.6163},{"x":22,"y":1465.5071},{"x":23,"y":1455.6628},{"x":24,"y":1431.5574},{"x":25,"y":1395.7647},{"x":26,"y":1369.1576},{"x":27,"y":1342.4632},{"x":28,"y":1312.4197},{"x":29,"y":1298.4521},{"x":30,"y":1291.8523},{"x":31,"y":1279.4106},{"x":32,"y":1266.165},{"x":33,"y":1250.7491},{"x":34,"y":1228.2233},{"x":35,"y":1201.9093},{"x":36,"y":1177.4919},{"x":37,"y":1153.0602},{"x":38,"y":1124.7354},{"x":39,"y":1100.6607},{"x":40,"y":1080.107},{"x":41,"y":1051.4967},{"x":42,"y":1025.2485},{"x":43,"y":1013.5788},{"x":44,"y":995.9743},{"x":45,"y":978.1474},{"x":46,"y":976.2809},{"x":47,"y":965.7277},{"x":48,"y":945.6575},{"x":49,"y":929.7303},{"x":50,"y":923.0048},{"x":51,"y":902.8096},{"x":52,"y":879.9849},{"x":53,"y":858.0834},{"x":54,"y":841.089},{"x":55,"y":837.0503},{"x":56,"y":836.3678},{"x":57,"y":845.7571},{"x":58,"y":858.0552},{"x":59,"y":858.9432},{"x":60,"y":861.4869},{"x":61,"y":862.8272},{"x":62,"y":869.6961},{"x":63,"y":873.5004},{"x":64,"y":882.8428},{"x":65,"y":901.0304},{"x":66,"y":941.8052},{"x":67,"y":975.8809},{"x":68,"y":1009.0027},{"x":69,"y":1042.7596},{"x":70,"y":1085.387},{"x":71,"y":1117.7279},{"x":72,"y":1152.289},{"x":73,"y":1191.0298},{"x":74,"y":1224.914},{"x":75,"y":1256.1998},{"x":76,"y":1288.5968},{"x":77,"y":1315.6137},{"x":78,"y":1332.3173},{"x":79,"y":1341.2356},{"x":80,"y":1336.4158},{"x":81,"y":1336.1764},{"x":82,"y":1328.0444},{"x":83,"y":1315.1316},{"x":84,"y":1293.852},{"x":85,"y":1270.8022},{"x":86,"y":1261.7084},{"x":87,"y":1253.1999},{"x":88,"y":1241.4214},{"x":89,"y":1236.8467},{"x":90,"y":1229.6931},{"x":91,"y":1216.0618},{"x":92,"y":1191.2109},{"x":93,"y":1164.7855},{"x":94,"y":1130.8177},{"x":95,"y":1089.9143},{"x":96,"y":1043.555},{"x":97,"y":992.5167},{"x":98,"y":938.9935},{"x":99,"y":890.8645},{"x":100,"y":847.4022}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₂(5-HT) in Area hOc1","filename":"5-HT₂(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT2 receptor in area hOc1.** This profile plot shows examplary the course of the 5-HT2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₂(5-HT) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₂(5-HT) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":331.8035},{"x":1,"y":341.8175},{"x":2,"y":351.839},{"x":3,"y":361.9529},{"x":4,"y":372.8824},{"x":5,"y":384.1077},{"x":6,"y":393.6793},{"x":7,"y":398.3036},{"x":8,"y":401.2285},{"x":9,"y":402.6239},{"x":10,"y":403.1382},{"x":11,"y":403.5769},{"x":12,"y":404.2446},{"x":13,"y":404.5654},{"x":14,"y":404.309},{"x":15,"y":403.9007},{"x":16,"y":403.2127},{"x":17,"y":402.5041},{"x":18,"y":402.3908},{"x":19,"y":402.158},{"x":20,"y":401.2335},{"x":21,"y":399.807},{"x":22,"y":398.6523},{"x":23,"y":398.859},{"x":24,"y":401.93},{"x":25,"y":405.4041},{"x":26,"y":408.2006},{"x":27,"y":410.4632},{"x":28,"y":413.0316},{"x":29,"y":417.2912},{"x":30,"y":422.7087},{"x":31,"y":428.1427},{"x":32,"y":432.0671},{"x":33,"y":434.7887},{"x":34,"y":437.5058},{"x":35,"y":437.952},{"x":36,"y":438.2973},{"x":37,"y":438.9784},{"x":38,"y":441.1463},{"x":39,"y":443.2481},{"x":40,"y":444.6074},{"x":41,"y":443.973},{"x":42,"y":443.295},{"x":43,"y":442.7157},{"x":44,"y":441.9489},{"x":45,"y":440.7082},{"x":46,"y":439.0657},{"x":47,"y":437.3753},{"x":48,"y":435.3961},{"x":49,"y":433.5371},{"x":50,"y":431.7816},{"x":51,"y":430.3912},{"x":52,"y":429.2515},{"x":53,"y":428.2003},{"x":54,"y":426.5748},{"x":55,"y":425.349},{"x":56,"y":424.6872},{"x":57,"y":424.8024},{"x":58,"y":425.3623},{"x":59,"y":426.5301},{"x":60,"y":428.491},{"x":61,"y":430.8133},{"x":62,"y":433.1227},{"x":63,"y":434.5956},{"x":64,"y":435.1387},{"x":65,"y":435.9223},{"x":66,"y":437.5266},{"x":67,"y":438.9172},{"x":68,"y":439.8167},{"x":69,"y":439.6906},{"x":70,"y":438.5755},{"x":71,"y":437.6683},{"x":72,"y":435.9918},{"x":73,"y":433.0423},{"x":74,"y":429.5751},{"x":75,"y":424.4398},{"x":76,"y":418.0263},{"x":77,"y":411.0302},{"x":78,"y":404.3113},{"x":79,"y":398.0299},{"x":80,"y":391.7155},{"x":81,"y":386.2348},{"x":82,"y":380.4688},{"x":83,"y":373.7935},{"x":84,"y":365.6567},{"x":85,"y":356.9932},{"x":86,"y":348.8486},{"x":87,"y":342.0671},{"x":88,"y":335.9903},{"x":89,"y":329.1074},{"x":90,"y":321.5039},{"x":91,"y":314.0194},{"x":92,"y":308.2192},{"x":93,"y":303.7542},{"x":94,"y":298.8987},{"x":95,"y":293.8996},{"x":96,"y":289.5817},{"x":97,"y":285.4463},{"x":98,"y":281.4969},{"x":99,"y":277.2663},{"x":100,"y":273.0395}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴃ(GABA) in Area hOc1","filename":"GABAᴃ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAB receptor in area hOc1.** This profile plot shows examplary the course of the GABAB receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴃ(GABA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴃ(GABA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":1950.3144},{"x":1,"y":2100.9605},{"x":2,"y":2203.5831},{"x":3,"y":2292.5689},{"x":4,"y":2374.8703},{"x":5,"y":2468.2905},{"x":6,"y":2533.873},{"x":7,"y":2562.5636},{"x":8,"y":2577.8818},{"x":9,"y":2584.4019},{"x":10,"y":2574.9019},{"x":11,"y":2548.707},{"x":12,"y":2528.7062},{"x":13,"y":2517.7172},{"x":14,"y":2514.4521},{"x":15,"y":2515.2127},{"x":16,"y":2526.5504},{"x":17,"y":2521.6832},{"x":18,"y":2514.001},{"x":19,"y":2508.318},{"x":20,"y":2503.7046},{"x":21,"y":2495.8885},{"x":22,"y":2489.0215},{"x":23,"y":2472.4367},{"x":24,"y":2453.2604},{"x":25,"y":2436.9792},{"x":26,"y":2426.0322},{"x":27,"y":2401.5488},{"x":28,"y":2367.3584},{"x":29,"y":2347.5592},{"x":30,"y":2345.3507},{"x":31,"y":2350.1742},{"x":32,"y":2364.6761},{"x":33,"y":2377.745},{"x":34,"y":2388.1031},{"x":35,"y":2392.8357},{"x":36,"y":2381.181},{"x":37,"y":2358.0164},{"x":38,"y":2338.2177},{"x":39,"y":2286.6437},{"x":40,"y":2215.0929},{"x":41,"y":2144.7276},{"x":42,"y":2055.18},{"x":43,"y":1975.3623},{"x":44,"y":1904.9242},{"x":45,"y":1863.8506},{"x":46,"y":1826.266},{"x":47,"y":1768.0006},{"x":48,"y":1703.9164},{"x":49,"y":1597.3341},{"x":50,"y":1487.9582},{"x":51,"y":1343.9926},{"x":52,"y":1223.3642},{"x":53,"y":1150.7738},{"x":54,"y":1064.9452},{"x":55,"y":1007.5237},{"x":56,"y":972.607},{"x":57,"y":964.5922},{"x":58,"y":970.2298},{"x":59,"y":974.8202},{"x":60,"y":973.0334},{"x":61,"y":970.4423},{"x":62,"y":974.261},{"x":63,"y":990.6322},{"x":64,"y":1010.2082},{"x":65,"y":1032.1683},{"x":66,"y":1057.9906},{"x":67,"y":1083.1967},{"x":68,"y":1107.8037},{"x":69,"y":1136.2589},{"x":70,"y":1170.6473},{"x":71,"y":1199.4241},{"x":72,"y":1226.9452},{"x":73,"y":1257.318},{"x":74,"y":1284.8221},{"x":75,"y":1314.6337},{"x":76,"y":1341.7336},{"x":77,"y":1373.7874},{"x":78,"y":1399.0182},{"x":79,"y":1408.6722},{"x":80,"y":1414.7962},{"x":81,"y":1422.997},{"x":82,"y":1424.5432},{"x":83,"y":1440.6695},{"x":84,"y":1482.6868},{"x":85,"y":1546.4933},{"x":86,"y":1599.4021},{"x":87,"y":1633.8173},{"x":88,"y":1645.4206},{"x":89,"y":1646.9337},{"x":90,"y":1633.9153},{"x":91,"y":1609.1376},{"x":92,"y":1575.6959},{"x":93,"y":1549.9751},{"x":94,"y":1529.5448},{"x":95,"y":1504.3475},{"x":96,"y":1465.7426},{"x":97,"y":1428.6712},{"x":98,"y":1390.4424},{"x":99,"y":1350.4479},{"x":100,"y":1318.5866}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null}]],["Density measurements of different receptors for Area PFm",[{"name":"Receptor density fingerprint of Area PFm","filename":"fingerprint","mimetype":"application/json","properties":{"description":"**Multireceptor fingerprint for area PFm.** This polar plot shows the mean receptor densities in fmol/mg protein (solid shape) and standard deviation (dashed line) of 16 receptor binding sites in the area PFm. The data is based on the left and right hemisphere of one female subject (brain id: hg0201, sample ids: ID07 and ID08, age: 77, cause of death: lung edema) and the right hemispheres of two male subjects (brain id: hg0500, sample ids: ID09, age: 72, cause of death: cardiac arrest | brain id: hg0100, sample ids: ID12, age: 77, cause of death: coronary heart disease).","publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["513","532","1244","NA","1649","1881","3407","733","187","720","33","321","159","488","368","77"]},{"label":"mean_sd","data":["134","373","311","NA","229","914","1481","73","36","139","16","106","73","194","155","36"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PFm (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(238,238,14,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAᴀ(BZ) in Area PFm","filename":"GABAᴀ(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_BZ.jpg"},{"name":"Sample autoradiograph of α₁(NA) in Area PFm","filename":"α₁(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area PFm","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAᴀ(GABA) in Area PFm","filename":"GABAᴀ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area PFm","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area PFm","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of M₁(ACh) in Area PFm","filename":"M₁(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HT₁ᴀ(5-HT) in Area PFm","filename":"5-HT₁ᴀ(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area PFm","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_kainate.jpg"},{"name":"Sample autoradiograph of M₂(ACh) in Area PFm","filename":"M₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area PFm","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_AMPA.jpg"},{"name":"Sample autoradiograph of D₁(DA) in Area PFm","filename":"D₁(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area PFm","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area PFm","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HT₂(5-HT) in Area PFm","filename":"5-HT₂(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAᴃ(GABA) in Area PFm","filename":"GABAᴃ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_GABAB.jpg"},{"name":"Sample profile of GABAᴀ(BZ) in Area PFm","filename":"GABAᴀ(BZ)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of BZ receptor in area PFm.** This profile plot shows examplary the course of the BZ receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(BZ) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(BZ) in Area PFm"],"datasets":[{"data":[{"x":0,"y":414.6775},{"x":1,"y":547.3832},{"x":2,"y":750.3479},{"x":3,"y":1025.2073},{"x":4,"y":1272.8043},{"x":5,"y":1502.9083},{"x":6,"y":1809.6361},{"x":7,"y":2074.466},{"x":8,"y":2267.3889},{"x":9,"y":2466.4042},{"x":10,"y":2716.4915},{"x":11,"y":2963.1964},{"x":12,"y":3189.5308},{"x":13,"y":3475.5923},{"x":14,"y":3766.1234},{"x":15,"y":3997.4987},{"x":16,"y":4217.4137},{"x":17,"y":4424.9596},{"x":18,"y":4602.5953},{"x":19,"y":4747.3639},{"x":20,"y":4823.4043},{"x":21,"y":4827.7793},{"x":22,"y":4828.3494},{"x":23,"y":4834.7259},{"x":24,"y":4879.864},{"x":25,"y":4911.0452},{"x":26,"y":4955.2739},{"x":27,"y":4931.1255},{"x":28,"y":4926.7226},{"x":29,"y":4949.8858},{"x":30,"y":4965.6216},{"x":31,"y":4998.7252},{"x":32,"y":4996.599},{"x":33,"y":4926.2325},{"x":34,"y":4819.9849},{"x":35,"y":4693.8485},{"x":36,"y":4573.8724},{"x":37,"y":4451.9143},{"x":38,"y":4287.3062},{"x":39,"y":4160.1753},{"x":40,"y":4022.7371},{"x":41,"y":3899.2575},{"x":42,"y":3778.4443},{"x":43,"y":3680.0035},{"x":44,"y":3599.2844},{"x":45,"y":3499.8822},{"x":46,"y":3356.4288},{"x":47,"y":3221.8133},{"x":48,"y":3126.4153},{"x":49,"y":3033.8599},{"x":50,"y":2951.4299},{"x":51,"y":2899.7882},{"x":52,"y":2879.3989},{"x":53,"y":2843.4544},{"x":54,"y":2775.5895},{"x":55,"y":2705.5753},{"x":56,"y":2662.433},{"x":57,"y":2617.2997},{"x":58,"y":2564.7134},{"x":59,"y":2508.9885},{"x":60,"y":2465.2525},{"x":61,"y":2417.3071},{"x":62,"y":2356.1458},{"x":63,"y":2275.8288},{"x":64,"y":2212.0896},{"x":65,"y":2140.7198},{"x":66,"y":2077.1758},{"x":67,"y":2040.6461},{"x":68,"y":2003.6524},{"x":69,"y":1973.7642},{"x":70,"y":1947.2585},{"x":71,"y":1924.6402},{"x":72,"y":1906.151},{"x":73,"y":1883.4075},{"x":74,"y":1849.2279},{"x":75,"y":1816.7236},{"x":76,"y":1799.4676},{"x":77,"y":1788.9956},{"x":78,"y":1783.2993},{"x":79,"y":1763.4861},{"x":80,"y":1744.703},{"x":81,"y":1714.713},{"x":82,"y":1680.9472},{"x":83,"y":1653.1001},{"x":84,"y":1622.0959},{"x":85,"y":1579.6815},{"x":86,"y":1538.2249},{"x":87,"y":1487.4049},{"x":88,"y":1434.51},{"x":89,"y":1393.3928},{"x":90,"y":1345.2221},{"x":91,"y":1280.4439},{"x":92,"y":1216.7759},{"x":93,"y":1172.3735},{"x":94,"y":1109.6377},{"x":95,"y":1053.4117},{"x":96,"y":1019.2427},{"x":97,"y":981.1075},{"x":98,"y":934.1703},{"x":99,"y":884.1061},{"x":100,"y":835.8167}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of α₁(NA) in Area PFm","filename":"α₁(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha1 receptor in area PFm.** This profile plot shows examplary the course of the alpha1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₁(NA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₁(NA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":246.0485},{"x":1,"y":302.7126},{"x":2,"y":342.1714},{"x":3,"y":443.336},{"x":4,"y":539.0976},{"x":5,"y":592.9106},{"x":6,"y":620.0483},{"x":7,"y":660.9343},{"x":8,"y":688.9723},{"x":9,"y":701.3227},{"x":10,"y":703.1962},{"x":11,"y":710.5742},{"x":12,"y":711.2233},{"x":13,"y":708.0837},{"x":14,"y":699.91},{"x":15,"y":690.0384},{"x":16,"y":668.2761},{"x":17,"y":647.4805},{"x":18,"y":638.0554},{"x":19,"y":631.7727},{"x":20,"y":626.576},{"x":21,"y":622.3763},{"x":22,"y":617.6824},{"x":23,"y":614.0316},{"x":24,"y":612.523},{"x":25,"y":611.7249},{"x":26,"y":611.7099},{"x":27,"y":609.9237},{"x":28,"y":609.752},{"x":29,"y":612.2496},{"x":30,"y":612.6466},{"x":31,"y":611.3793},{"x":32,"y":611.6471},{"x":33,"y":615.0885},{"x":34,"y":616.0165},{"x":35,"y":618.6871},{"x":36,"y":617.3478},{"x":37,"y":616.7342},{"x":38,"y":615.9005},{"x":39,"y":609.0167},{"x":40,"y":600.533},{"x":41,"y":591.1072},{"x":42,"y":579.1195},{"x":43,"y":565.3021},{"x":44,"y":553.6628},{"x":45,"y":545.7672},{"x":46,"y":541.8615},{"x":47,"y":533.4871},{"x":48,"y":529.5152},{"x":49,"y":529.1189},{"x":50,"y":526.9732},{"x":51,"y":524.5106},{"x":52,"y":526.8232},{"x":53,"y":533.3391},{"x":54,"y":540.3494},{"x":55,"y":540.4475},{"x":56,"y":542.3092},{"x":57,"y":552.1197},{"x":58,"y":553.7407},{"x":59,"y":553.2674},{"x":60,"y":559.9643},{"x":61,"y":565.719},{"x":62,"y":577.1762},{"x":63,"y":592.2511},{"x":64,"y":601.3304},{"x":65,"y":606.5184},{"x":66,"y":611.6904},{"x":67,"y":613.4652},{"x":68,"y":611.611},{"x":69,"y":613.2039},{"x":70,"y":622.8761},{"x":71,"y":634.9369},{"x":72,"y":647.4784},{"x":73,"y":651.7268},{"x":74,"y":657.8105},{"x":75,"y":669.787},{"x":76,"y":677.0422},{"x":77,"y":688.7856},{"x":78,"y":699.8495},{"x":79,"y":711.9961},{"x":80,"y":724.3741},{"x":81,"y":730.2757},{"x":82,"y":732.6087},{"x":83,"y":731.2782},{"x":84,"y":729.9956},{"x":85,"y":731.9646},{"x":86,"y":727.7137},{"x":87,"y":724.1005},{"x":88,"y":719.787},{"x":89,"y":714.7359},{"x":90,"y":712.8529},{"x":91,"y":710.3359},{"x":92,"y":710.2402},{"x":93,"y":704.9708},{"x":94,"y":697.6154},{"x":95,"y":695.004},{"x":96,"y":692.6589},{"x":97,"y":677.4381},{"x":98,"y":657.6423},{"x":99,"y":649.7101},{"x":100,"y":638.1812}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area PFm","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of NMDA receptor in area PFm.** This profile plot shows examplary the course of the NMDA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area PFm"],"datasets":[{"data":[{"x":0,"y":1288.2501},{"x":1,"y":1504.5469},{"x":2,"y":1694.8605},{"x":3,"y":1813.1118},{"x":4,"y":1877.948},{"x":5,"y":1925.6656},{"x":6,"y":1970.4734},{"x":7,"y":2001.3469},{"x":8,"y":2007.5222},{"x":9,"y":2014.9981},{"x":10,"y":2031.2646},{"x":11,"y":2029.487},{"x":12,"y":2015.0831},{"x":13,"y":2019.2004},{"x":14,"y":2020.4191},{"x":15,"y":2018.1737},{"x":16,"y":2024.3706},{"x":17,"y":2044.227},{"x":18,"y":2057.9879},{"x":19,"y":2080.7451},{"x":20,"y":2095.9656},{"x":21,"y":2088.5213},{"x":22,"y":2090.0653},{"x":23,"y":2080.5177},{"x":24,"y":2078.8738},{"x":25,"y":2069.1423},{"x":26,"y":2065.3765},{"x":27,"y":2058.6747},{"x":28,"y":2065.318},{"x":29,"y":2063.454},{"x":30,"y":2044.4191},{"x":31,"y":2022.1456},{"x":32,"y":1995.4147},{"x":33,"y":1983.3173},{"x":34,"y":1958.8393},{"x":35,"y":1939.4605},{"x":36,"y":1931.5578},{"x":37,"y":1904.5965},{"x":38,"y":1883.9031},{"x":39,"y":1881.1964},{"x":40,"y":1869.6666},{"x":41,"y":1855.4454},{"x":42,"y":1835.7264},{"x":43,"y":1829.53},{"x":44,"y":1824.8485},{"x":45,"y":1810.9402},{"x":46,"y":1809.3095},{"x":47,"y":1802.7262},{"x":48,"y":1791.8517},{"x":49,"y":1777.7284},{"x":50,"y":1777.5341},{"x":51,"y":1769.0472},{"x":52,"y":1754.3951},{"x":53,"y":1746.1479},{"x":54,"y":1755.4639},{"x":55,"y":1752.5258},{"x":56,"y":1759.8824},{"x":57,"y":1772.2099},{"x":58,"y":1779.5454},{"x":59,"y":1767.3573},{"x":60,"y":1748.4569},{"x":61,"y":1723.6787},{"x":62,"y":1717.5493},{"x":63,"y":1721.0235},{"x":64,"y":1738.6451},{"x":65,"y":1752.4983},{"x":66,"y":1748.5426},{"x":67,"y":1746.6357},{"x":68,"y":1739.6317},{"x":69,"y":1734.0655},{"x":70,"y":1720.5383},{"x":71,"y":1687.4702},{"x":72,"y":1665.4099},{"x":73,"y":1664.7602},{"x":74,"y":1659.5054},{"x":75,"y":1665.0687},{"x":76,"y":1648.4646},{"x":77,"y":1633.7099},{"x":78,"y":1617.8531},{"x":79,"y":1604.3407},{"x":80,"y":1587.7624},{"x":81,"y":1570.9626},{"x":82,"y":1564.554},{"x":83,"y":1552.3037},{"x":84,"y":1545.679},{"x":85,"y":1523.7966},{"x":86,"y":1508.3343},{"x":87,"y":1509.1098},{"x":88,"y":1492.1835},{"x":89,"y":1479.3753},{"x":90,"y":1468.1662},{"x":91,"y":1431.1263},{"x":92,"y":1389.3058},{"x":93,"y":1356.8627},{"x":94,"y":1306.1475},{"x":95,"y":1249.476},{"x":96,"y":1210.5869},{"x":97,"y":1160.2178},{"x":98,"y":1126.0999},{"x":99,"y":1093.0965},{"x":100,"y":1058.0735}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴀ(GABA) in Area PFm","filename":"GABAᴀ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAA receptor in area PFm.** This profile plot shows examplary the course of the GABAA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(GABA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(GABA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":649.0201},{"x":1,"y":848.1228},{"x":2,"y":1092.9962},{"x":3,"y":1448.094},{"x":4,"y":1829.4694},{"x":5,"y":2123.6008},{"x":6,"y":2348.2754},{"x":7,"y":2575.8223},{"x":8,"y":2761.369},{"x":9,"y":2960.1959},{"x":10,"y":3134.0293},{"x":11,"y":3289.2282},{"x":12,"y":3416.2688},{"x":13,"y":3516.8015},{"x":14,"y":3562.637},{"x":15,"y":3607.1894},{"x":16,"y":3634.3024},{"x":17,"y":3622.3828},{"x":18,"y":3620.2742},{"x":19,"y":3618.047},{"x":20,"y":3606.6227},{"x":21,"y":3604.7555},{"x":22,"y":3622.4253},{"x":23,"y":3658.9572},{"x":24,"y":3660.2006},{"x":25,"y":3680.0659},{"x":26,"y":3672.4711},{"x":27,"y":3664.3405},{"x":28,"y":3631.6388},{"x":29,"y":3594.7968},{"x":30,"y":3578.8434},{"x":31,"y":3556.649},{"x":32,"y":3507.3248},{"x":33,"y":3460.6467},{"x":34,"y":3441.4708},{"x":35,"y":3394.8057},{"x":36,"y":3361.2346},{"x":37,"y":3314.2736},{"x":38,"y":3263.0982},{"x":39,"y":3202.5102},{"x":40,"y":3122.135},{"x":41,"y":3056.6785},{"x":42,"y":3010.7237},{"x":43,"y":2955.3966},{"x":44,"y":2895.5737},{"x":45,"y":2857.2028},{"x":46,"y":2809.1634},{"x":47,"y":2764.9742},{"x":48,"y":2729.1517},{"x":49,"y":2691.3963},{"x":50,"y":2649.1878},{"x":51,"y":2570.7872},{"x":52,"y":2484.565},{"x":53,"y":2413.8159},{"x":54,"y":2348.5637},{"x":55,"y":2295.6309},{"x":56,"y":2267.3692},{"x":57,"y":2245.0127},{"x":58,"y":2216.1136},{"x":59,"y":2193.2635},{"x":60,"y":2157.833},{"x":61,"y":2116.8885},{"x":62,"y":2077.7201},{"x":63,"y":2041.1328},{"x":64,"y":2022.171},{"x":65,"y":2014.4903},{"x":66,"y":2001.3167},{"x":67,"y":2005.2367},{"x":68,"y":2004.4597},{"x":69,"y":2000.8071},{"x":70,"y":1973.1546},{"x":71,"y":1949.735},{"x":72,"y":1923.9283},{"x":73,"y":1901.3981},{"x":74,"y":1885.0433},{"x":75,"y":1870.4049},{"x":76,"y":1852.5713},{"x":77,"y":1833.3419},{"x":78,"y":1814.9503},{"x":79,"y":1816.0021},{"x":80,"y":1822.1582},{"x":81,"y":1821.6385},{"x":82,"y":1820.1773},{"x":83,"y":1804.2024},{"x":84,"y":1784.211},{"x":85,"y":1746.2127},{"x":86,"y":1710.9548},{"x":87,"y":1675.3408},{"x":88,"y":1633.8367},{"x":89,"y":1595.0674},{"x":90,"y":1577.9456},{"x":91,"y":1540.6935},{"x":92,"y":1500.2981},{"x":93,"y":1457.8082},{"x":94,"y":1415.4122},{"x":95,"y":1381.3558},{"x":96,"y":1334.2406},{"x":97,"y":1283.1642},{"x":98,"y":1241.6997},{"x":99,"y":1218.825},{"x":100,"y":1179.247}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area PFm","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha2 receptor in area PFm.** This profile plot shows examplary the course of the alpha2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":226.5518},{"x":1,"y":273.3296},{"x":2,"y":329.0038},{"x":3,"y":378.1086},{"x":4,"y":427.5563},{"x":5,"y":468.2745},{"x":6,"y":508.0673},{"x":7,"y":550.6138},{"x":8,"y":581.551},{"x":9,"y":610.2917},{"x":10,"y":642.9606},{"x":11,"y":671.5722},{"x":12,"y":704.5501},{"x":13,"y":724.0761},{"x":14,"y":744.5424},{"x":15,"y":761.424},{"x":16,"y":777.4291},{"x":17,"y":793.6276},{"x":18,"y":807.9863},{"x":19,"y":822.3666},{"x":20,"y":830.9475},{"x":21,"y":842.0264},{"x":22,"y":857.4971},{"x":23,"y":872.3554},{"x":24,"y":879.4366},{"x":25,"y":883.2561},{"x":26,"y":885.9435},{"x":27,"y":889.437},{"x":28,"y":884.922},{"x":29,"y":880.866},{"x":30,"y":877.4526},{"x":31,"y":867.4475},{"x":32,"y":854.3773},{"x":33,"y":841.2544},{"x":34,"y":828.1317},{"x":35,"y":818.6532},{"x":36,"y":813.125},{"x":37,"y":809.7644},{"x":38,"y":808.8884},{"x":39,"y":811.7371},{"x":40,"y":813.9011},{"x":41,"y":818.9772},{"x":42,"y":819.5966},{"x":43,"y":816.3986},{"x":44,"y":814.5429},{"x":45,"y":812.3569},{"x":46,"y":811.4889},{"x":47,"y":810.7485},{"x":48,"y":813.7063},{"x":49,"y":815.2679},{"x":50,"y":818.2395},{"x":51,"y":823.7207},{"x":52,"y":833.0654},{"x":53,"y":837.8499},{"x":54,"y":839.3394},{"x":55,"y":845.6004},{"x":56,"y":844.3926},{"x":57,"y":835.1113},{"x":58,"y":830.783},{"x":59,"y":829.4114},{"x":60,"y":824.4174},{"x":61,"y":821.2263},{"x":62,"y":818.2473},{"x":63,"y":814.6539},{"x":64,"y":813.7712},{"x":65,"y":817.1059},{"x":66,"y":818.4569},{"x":67,"y":819.4559},{"x":68,"y":826.8877},{"x":69,"y":830.6852},{"x":70,"y":836.927},{"x":71,"y":836.2376},{"x":72,"y":832.8156},{"x":73,"y":828.1681},{"x":74,"y":818.5491},{"x":75,"y":810.3988},{"x":76,"y":801.9501},{"x":77,"y":798.493},{"x":78,"y":798.3051},{"x":79,"y":794.3033},{"x":80,"y":788.8317},{"x":81,"y":784.921},{"x":82,"y":778.1703},{"x":83,"y":769.7684},{"x":84,"y":758.4028},{"x":85,"y":745.0126},{"x":86,"y":740.0665},{"x":87,"y":733.2654},{"x":88,"y":724.5991},{"x":89,"y":716.9815},{"x":90,"y":708.8412},{"x":91,"y":694.1066},{"x":92,"y":676.898},{"x":93,"y":659.5769},{"x":94,"y":644.7383},{"x":95,"y":630.7544},{"x":96,"y":622.2096},{"x":97,"y":610.0965},{"x":98,"y":599.3964},{"x":99,"y":584.7361},{"x":100,"y":571.6659}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area PFm","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha4-beta2 receptor in area PFm.** This profile plot shows examplary the course of the alpha4-beta2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area PFm"],"datasets":[{"data":[{"x":0,"y":10.9525},{"x":1,"y":13.7983},{"x":2,"y":16.8933},{"x":3,"y":20.661},{"x":4,"y":24.5308},{"x":5,"y":26.7085},{"x":6,"y":29.3965},{"x":7,"y":31.4594},{"x":8,"y":30.5761},{"x":9,"y":32.1735},{"x":10,"y":34.3368},{"x":11,"y":37.636},{"x":12,"y":41.7252},{"x":13,"y":43.5344},{"x":14,"y":43.3511},{"x":15,"y":42.008},{"x":16,"y":41.6332},{"x":17,"y":42.6702},{"x":18,"y":43.58},{"x":19,"y":44.4205},{"x":20,"y":43.5457},{"x":21,"y":43.2397},{"x":22,"y":44.4628},{"x":23,"y":48.649},{"x":24,"y":49.1803},{"x":25,"y":49.8894},{"x":26,"y":50.4078},{"x":27,"y":52.5366},{"x":28,"y":51.4152},{"x":29,"y":51.0567},{"x":30,"y":51.6615},{"x":31,"y":54.0162},{"x":32,"y":55.219},{"x":33,"y":54.742},{"x":34,"y":53.8983},{"x":35,"y":53.5327},{"x":36,"y":52.2835},{"x":37,"y":50.5276},{"x":38,"y":48.4643},{"x":39,"y":49.3542},{"x":40,"y":50.3873},{"x":41,"y":52.9868},{"x":42,"y":54.7023},{"x":43,"y":57.1474},{"x":44,"y":57.8795},{"x":45,"y":57.5492},{"x":46,"y":56.0614},{"x":47,"y":53.4834},{"x":48,"y":50.3447},{"x":49,"y":48.055},{"x":50,"y":45.5072},{"x":51,"y":43.2927},{"x":52,"y":44.4765},{"x":53,"y":44.5942},{"x":54,"y":43.612},{"x":55,"y":43.7712},{"x":56,"y":46.0803},{"x":57,"y":48.1456},{"x":58,"y":50.7599},{"x":59,"y":51.0952},{"x":60,"y":53.4478},{"x":61,"y":53.4372},{"x":62,"y":52.0142},{"x":63,"y":51.7924},{"x":64,"y":50.938},{"x":65,"y":49.7906},{"x":66,"y":49.0863},{"x":67,"y":52.7661},{"x":68,"y":55.3132},{"x":69,"y":58.8055},{"x":70,"y":60.4207},{"x":71,"y":64.3806},{"x":72,"y":68.2688},{"x":73,"y":69.9634},{"x":74,"y":67.564},{"x":75,"y":65.6081},{"x":76,"y":65.1647},{"x":77,"y":64.6402},{"x":78,"y":66.4672},{"x":79,"y":66.7833},{"x":80,"y":67.3829},{"x":81,"y":70.0968},{"x":82,"y":70.4616},{"x":83,"y":68.3018},{"x":84,"y":63.7082},{"x":85,"y":59.7576},{"x":86,"y":58.9443},{"x":87,"y":59.2391},{"x":88,"y":61.1348},{"x":89,"y":61.9096},{"x":90,"y":62.7221},{"x":91,"y":64.2393},{"x":92,"y":62.6537},{"x":93,"y":63.5997},{"x":94,"y":65.4311},{"x":95,"y":65.0761},{"x":96,"y":65.8512},{"x":97,"y":67.3648},{"x":98,"y":64.1934},{"x":99,"y":59.792},{"x":100,"y":55.6246}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of M₁(ACh) in Area PFm","filename":"M₁(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M1 receptor in area PFm.** This profile plot shows examplary the course of the M1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₁(ACh) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₁(ACh) in Area PFm"],"datasets":[{"data":[{"x":0,"y":222.9819},{"x":1,"y":257.3062},{"x":2,"y":301.232},{"x":3,"y":360.3595},{"x":4,"y":411.1464},{"x":5,"y":453.1503},{"x":6,"y":488.2737},{"x":7,"y":532.1241},{"x":8,"y":568.0223},{"x":9,"y":594.1367},{"x":10,"y":611.3606},{"x":11,"y":624.9792},{"x":12,"y":637.2301},{"x":13,"y":645.8093},{"x":14,"y":648.7144},{"x":15,"y":648.8767},{"x":16,"y":653.9823},{"x":17,"y":656.643},{"x":18,"y":656.122},{"x":19,"y":655.8582},{"x":20,"y":652.3616},{"x":21,"y":649.8126},{"x":22,"y":647.6234},{"x":23,"y":643.4561},{"x":24,"y":641.884},{"x":25,"y":639.0562},{"x":26,"y":632.4965},{"x":27,"y":627.2677},{"x":28,"y":622.4582},{"x":29,"y":616.5911},{"x":30,"y":610.0373},{"x":31,"y":603.4589},{"x":32,"y":596.8318},{"x":33,"y":586.7784},{"x":34,"y":577.6716},{"x":35,"y":572.4562},{"x":36,"y":566.1598},{"x":37,"y":559.5024},{"x":38,"y":555.1174},{"x":39,"y":551.4646},{"x":40,"y":552.3742},{"x":41,"y":556.6502},{"x":42,"y":558.5327},{"x":43,"y":558.3553},{"x":44,"y":557.7356},{"x":45,"y":557.6063},{"x":46,"y":558.7175},{"x":47,"y":558.6156},{"x":48,"y":558.3882},{"x":49,"y":558.33},{"x":50,"y":557.7576},{"x":51,"y":555.4275},{"x":52,"y":551.8005},{"x":53,"y":549.2268},{"x":54,"y":546.2649},{"x":55,"y":542.9368},{"x":56,"y":537.5792},{"x":57,"y":535.3208},{"x":58,"y":534.2044},{"x":59,"y":533.5621},{"x":60,"y":530.047},{"x":61,"y":526.7027},{"x":62,"y":523.2002},{"x":63,"y":519.5795},{"x":64,"y":517.4336},{"x":65,"y":518.1881},{"x":66,"y":518.6044},{"x":67,"y":520.334},{"x":68,"y":521.0821},{"x":69,"y":518.9551},{"x":70,"y":517.9046},{"x":71,"y":518.3208},{"x":72,"y":518.8176},{"x":73,"y":517.2892},{"x":74,"y":514.8359},{"x":75,"y":512.8684},{"x":76,"y":510.172},{"x":77,"y":503.7294},{"x":78,"y":496.0832},{"x":79,"y":490.9644},{"x":80,"y":485.5388},{"x":81,"y":480.219},{"x":82,"y":478.0453},{"x":83,"y":475.1307},{"x":84,"y":473.0779},{"x":85,"y":470.5059},{"x":86,"y":466.8079},{"x":87,"y":460.8546},{"x":88,"y":453.6991},{"x":89,"y":444.3507},{"x":90,"y":431.9699},{"x":91,"y":417.178},{"x":92,"y":403.9866},{"x":93,"y":388.1319},{"x":94,"y":369.655},{"x":95,"y":355.0118},{"x":96,"y":343.8632},{"x":97,"y":329.5792},{"x":98,"y":313.0801},{"x":99,"y":303.8542},{"x":100,"y":293.5083}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₁ᴀ(5-HT) in Area PFm","filename":"5-HT₁ᴀ(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT1A receptor in area PFm.** This profile plot shows examplary the course of the 5-HT1A receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₁ᴀ(5-HT) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₁ᴀ(5-HT) in Area PFm"],"datasets":[{"data":[{"x":0,"y":178.9409},{"x":1,"y":221.3682},{"x":2,"y":266.3416},{"x":3,"y":311.7817},{"x":4,"y":361.6268},{"x":5,"y":426.2078},{"x":6,"y":489.66},{"x":7,"y":548.3518},{"x":8,"y":601.5318},{"x":9,"y":645.1545},{"x":10,"y":684.4057},{"x":11,"y":714.9074},{"x":12,"y":730.3084},{"x":13,"y":743.4942},{"x":14,"y":754.8556},{"x":15,"y":760.8008},{"x":16,"y":762.8721},{"x":17,"y":767.2397},{"x":18,"y":763.0848},{"x":19,"y":753.0896},{"x":20,"y":737.7586},{"x":21,"y":718.7249},{"x":22,"y":701.1423},{"x":23,"y":676.8934},{"x":24,"y":644.1758},{"x":25,"y":609.7027},{"x":26,"y":569.6236},{"x":27,"y":525.946},{"x":28,"y":475.5022},{"x":29,"y":427.3785},{"x":30,"y":389.4978},{"x":31,"y":349.5367},{"x":32,"y":311.4599},{"x":33,"y":281.6493},{"x":34,"y":258.2406},{"x":35,"y":237.618},{"x":36,"y":222.0312},{"x":37,"y":208.6032},{"x":38,"y":195.7721},{"x":39,"y":187.0238},{"x":40,"y":175.7821},{"x":41,"y":164.8443},{"x":42,"y":153.9147},{"x":43,"y":145.9143},{"x":44,"y":141.9929},{"x":45,"y":137.4399},{"x":46,"y":134.4055},{"x":47,"y":133.3636},{"x":48,"y":131.8849},{"x":49,"y":130.0535},{"x":50,"y":130.0931},{"x":51,"y":131.0189},{"x":52,"y":133.618},{"x":53,"y":138.2265},{"x":54,"y":144.636},{"x":55,"y":149.7509},{"x":56,"y":156.749},{"x":57,"y":163.8689},{"x":58,"y":172.4409},{"x":59,"y":179.2705},{"x":60,"y":185.6774},{"x":61,"y":191.3106},{"x":62,"y":195.5594},{"x":63,"y":198.6216},{"x":64,"y":201.4065},{"x":65,"y":203.6512},{"x":66,"y":204.6507},{"x":67,"y":203.7297},{"x":68,"y":205.5465},{"x":69,"y":207.4703},{"x":70,"y":211.5302},{"x":71,"y":214.4259},{"x":72,"y":219.735},{"x":73,"y":223.0547},{"x":74,"y":229.8002},{"x":75,"y":232.2087},{"x":76,"y":233.7572},{"x":77,"y":232.442},{"x":78,"y":233.0222},{"x":79,"y":232.802},{"x":80,"y":232.3752},{"x":81,"y":230.6116},{"x":82,"y":231.2732},{"x":83,"y":233.0882},{"x":84,"y":231.3036},{"x":85,"y":228.7976},{"x":86,"y":226.3781},{"x":87,"y":221.5949},{"x":88,"y":220.6944},{"x":89,"y":220.0755},{"x":90,"y":220.5519},{"x":91,"y":220.722},{"x":92,"y":218.1681},{"x":93,"y":216.2651},{"x":94,"y":213.9825},{"x":95,"y":209.7935},{"x":96,"y":204.6744},{"x":97,"y":201.8038},{"x":98,"y":197.803},{"x":99,"y":188.8238},{"x":100,"y":179.1047}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of kainate (Glu) in Area PFm","filename":"kainate (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of kainate receptor in area PFm.** This profile plot shows examplary the course of the kainate receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of kainate (Glu) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of kainate (Glu) in Area PFm"],"datasets":[{"data":[{"x":0,"y":612.0971},{"x":1,"y":700.5788},{"x":2,"y":767.4826},{"x":3,"y":838.8742},{"x":4,"y":897.4627},{"x":5,"y":933.5483},{"x":6,"y":950.4446},{"x":7,"y":965.2636},{"x":8,"y":973.041},{"x":9,"y":976.2026},{"x":10,"y":971.9536},{"x":11,"y":962.0346},{"x":12,"y":954.711},{"x":13,"y":953.6688},{"x":14,"y":954.406},{"x":15,"y":946.2501},{"x":16,"y":941.4819},{"x":17,"y":937.8259},{"x":18,"y":931.7584},{"x":19,"y":930.3836},{"x":20,"y":923.0986},{"x":21,"y":923.6782},{"x":22,"y":938.3746},{"x":23,"y":947.7402},{"x":24,"y":948.2214},{"x":25,"y":953.8739},{"x":26,"y":962.4483},{"x":27,"y":970.1679},{"x":28,"y":978.8258},{"x":29,"y":992.4646},{"x":30,"y":1008.7311},{"x":31,"y":1017.1603},{"x":32,"y":1025.7543},{"x":33,"y":1031.6309},{"x":34,"y":1040.599},{"x":35,"y":1043.4077},{"x":36,"y":1041.2253},{"x":37,"y":1045.4147},{"x":38,"y":1053.6018},{"x":39,"y":1067.3037},{"x":40,"y":1080.9704},{"x":41,"y":1087.8732},{"x":42,"y":1099.4879},{"x":43,"y":1110.9138},{"x":44,"y":1115.5679},{"x":45,"y":1127.7745},{"x":46,"y":1137.1646},{"x":47,"y":1143.5387},{"x":48,"y":1151.5789},{"x":49,"y":1165.3944},{"x":50,"y":1177.7728},{"x":51,"y":1191.3442},{"x":52,"y":1208.9196},{"x":53,"y":1218.5714},{"x":54,"y":1225.3123},{"x":55,"y":1237.567},{"x":56,"y":1245.5211},{"x":57,"y":1250.3525},{"x":58,"y":1252.8015},{"x":59,"y":1256.9281},{"x":60,"y":1255.2233},{"x":61,"y":1256.4467},{"x":62,"y":1249.7518},{"x":63,"y":1240.9727},{"x":64,"y":1236.655},{"x":65,"y":1235.834},{"x":66,"y":1237.4067},{"x":67,"y":1238.0246},{"x":68,"y":1241.5674},{"x":69,"y":1243.809},{"x":70,"y":1241.4102},{"x":71,"y":1244.174},{"x":72,"y":1249.6207},{"x":73,"y":1252.3317},{"x":74,"y":1255.0968},{"x":75,"y":1253.6994},{"x":76,"y":1264.6417},{"x":77,"y":1281.7748},{"x":78,"y":1294.5093},{"x":79,"y":1300.1796},{"x":80,"y":1303.4348},{"x":81,"y":1302.8782},{"x":82,"y":1301.1223},{"x":83,"y":1298.1747},{"x":84,"y":1298.6703},{"x":85,"y":1285.2761},{"x":86,"y":1272.5903},{"x":87,"y":1267.3914},{"x":88,"y":1261.2636},{"x":89,"y":1253.4034},{"x":90,"y":1241.0226},{"x":91,"y":1236.1091},{"x":92,"y":1230.6918},{"x":93,"y":1219.3062},{"x":94,"y":1207.4386},{"x":95,"y":1194.7681},{"x":96,"y":1178.3724},{"x":97,"y":1147.7234},{"x":98,"y":1121.5922},{"x":99,"y":1107.9492},{"x":100,"y":1092.0591}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of M₂(ACh) in Area PFm","filename":"M₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M2 receptor in area PFm.** This profile plot shows examplary the course of the M2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₂(ACh) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₂(ACh) in Area PFm"],"datasets":[{"data":[{"x":0,"y":84.6477},{"x":1,"y":93.2695},{"x":2,"y":103.4352},{"x":3,"y":115.6859},{"x":4,"y":127.7598},{"x":5,"y":135.6121},{"x":6,"y":142.6476},{"x":7,"y":145.9338},{"x":8,"y":150.498},{"x":9,"y":155.1707},{"x":10,"y":156.9823},{"x":11,"y":157.7596},{"x":12,"y":157.8233},{"x":13,"y":157.6372},{"x":14,"y":158.8639},{"x":15,"y":158.7868},{"x":16,"y":158.7608},{"x":17,"y":157.914},{"x":18,"y":161.1105},{"x":19,"y":164.6396},{"x":20,"y":165.9435},{"x":21,"y":170.475},{"x":22,"y":176.8111},{"x":23,"y":179.0959},{"x":24,"y":178.736},{"x":25,"y":180.9806},{"x":26,"y":180.3764},{"x":27,"y":180.2802},{"x":28,"y":184.7803},{"x":29,"y":188.6613},{"x":30,"y":193.4912},{"x":31,"y":197.0957},{"x":32,"y":200.0429},{"x":33,"y":203.0107},{"x":34,"y":205.0235},{"x":35,"y":204.7353},{"x":36,"y":202.6343},{"x":37,"y":202.3725},{"x":38,"y":203.0957},{"x":39,"y":207.7596},{"x":40,"y":211.0369},{"x":41,"y":212.1601},{"x":42,"y":213.7542},{"x":43,"y":215.7543},{"x":44,"y":218.4313},{"x":45,"y":222.4281},{"x":46,"y":228.4705},{"x":47,"y":233.6961},{"x":48,"y":238.9946},{"x":49,"y":242.1399},{"x":50,"y":245.9088},{"x":51,"y":253.4642},{"x":52,"y":260.3492},{"x":53,"y":266.1818},{"x":54,"y":270.3434},{"x":55,"y":274.1293},{"x":56,"y":275.3021},{"x":57,"y":275.5601},{"x":58,"y":276.0092},{"x":59,"y":276.8751},{"x":60,"y":275.4816},{"x":61,"y":272.9742},{"x":62,"y":271.4523},{"x":63,"y":270.1365},{"x":64,"y":268.27},{"x":65,"y":266.6988},{"x":66,"y":262.7834},{"x":67,"y":259.8237},{"x":68,"y":254.7546},{"x":69,"y":249.7533},{"x":70,"y":245.4534},{"x":71,"y":241.7682},{"x":72,"y":239.8094},{"x":73,"y":238.0626},{"x":74,"y":235.8818},{"x":75,"y":230.7443},{"x":76,"y":228.0226},{"x":77,"y":226.4827},{"x":78,"y":222.9297},{"x":79,"y":220.2826},{"x":80,"y":215.0989},{"x":81,"y":210.7847},{"x":82,"y":205.7083},{"x":83,"y":196.8683},{"x":84,"y":191.1009},{"x":85,"y":187.6439},{"x":86,"y":185.2418},{"x":87,"y":182.5054},{"x":88,"y":178.8836},{"x":89,"y":175.7992},{"x":90,"y":171.9279},{"x":91,"y":166.7175},{"x":92,"y":157.6449},{"x":93,"y":147.1877},{"x":94,"y":139.3689},{"x":95,"y":134.1763},{"x":96,"y":129.1793},{"x":97,"y":126.9102},{"x":98,"y":126.3367},{"x":99,"y":122.3542},{"x":100,"y":116.9453}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area PFm","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of AMPA receptor in area PFm.** This profile plot shows examplary the course of the AMPA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area PFm"],"datasets":[{"data":[{"x":0,"y":405.5729},{"x":1,"y":451.8444},{"x":2,"y":497.2293},{"x":3,"y":525.8658},{"x":4,"y":545.0973},{"x":5,"y":557.324},{"x":6,"y":575.845},{"x":7,"y":598.0745},{"x":8,"y":616.0735},{"x":9,"y":630.0659},{"x":10,"y":641.9863},{"x":11,"y":652.885},{"x":12,"y":659.1001},{"x":13,"y":669.1597},{"x":14,"y":675.6552},{"x":15,"y":668.1356},{"x":16,"y":652.8647},{"x":17,"y":635.8774},{"x":18,"y":626.3587},{"x":19,"y":618.4538},{"x":20,"y":605.7924},{"x":21,"y":591.05},{"x":22,"y":576.7722},{"x":23,"y":568.0839},{"x":24,"y":561.7794},{"x":25,"y":553.1086},{"x":26,"y":548.8052},{"x":27,"y":532.8971},{"x":28,"y":519.8256},{"x":29,"y":516.2577},{"x":30,"y":503.6507},{"x":31,"y":496.4829},{"x":32,"y":488.3557},{"x":33,"y":466.8666},{"x":34,"y":456.7964},{"x":35,"y":460.8351},{"x":36,"y":466.4865},{"x":37,"y":464.9287},{"x":38,"y":454.4103},{"x":39,"y":449.8788},{"x":40,"y":431.8908},{"x":41,"y":417.7714},{"x":42,"y":409.133},{"x":43,"y":416.0307},{"x":44,"y":427.5151},{"x":45,"y":431.7865},{"x":46,"y":438.3853},{"x":47,"y":433.6461},{"x":48,"y":428.7599},{"x":49,"y":420.7188},{"x":50,"y":424.8132},{"x":51,"y":426.0907},{"x":52,"y":436.9364},{"x":53,"y":445.7628},{"x":54,"y":447.0122},{"x":55,"y":434.5986},{"x":56,"y":419.1719},{"x":57,"y":410.0317},{"x":58,"y":393.2125},{"x":59,"y":379.621},{"x":60,"y":374.2348},{"x":61,"y":374.2654},{"x":62,"y":379.0425},{"x":63,"y":388.3258},{"x":64,"y":392.2651},{"x":65,"y":399.2769},{"x":66,"y":399.7033},{"x":67,"y":396.3172},{"x":68,"y":394.2565},{"x":69,"y":398.9991},{"x":70,"y":396.441},{"x":71,"y":391.3304},{"x":72,"y":383.9955},{"x":73,"y":390.3641},{"x":74,"y":402.8404},{"x":75,"y":401.4029},{"x":76,"y":395.845},{"x":77,"y":392.7307},{"x":78,"y":384.5419},{"x":79,"y":382.5594},{"x":80,"y":385.6433},{"x":81,"y":392.5939},{"x":82,"y":403.0249},{"x":83,"y":405.9239},{"x":84,"y":399.9345},{"x":85,"y":391.6423},{"x":86,"y":393.2337},{"x":87,"y":396.4047},{"x":88,"y":399.3001},{"x":89,"y":399.894},{"x":90,"y":405.9114},{"x":91,"y":413.8407},{"x":92,"y":412.8103},{"x":93,"y":416.9961},{"x":94,"y":416.351},{"x":95,"y":410.828},{"x":96,"y":401.764},{"x":97,"y":397.6487},{"x":98,"y":386.7589},{"x":99,"y":366.2726},{"x":100,"y":344.3997}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of D₁(DA) in Area PFm","filename":"D₁(DA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of D1 receptor in area PFm.** This profile plot shows examplary the course of the D1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of D₁(DA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of D₁(DA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":71.7961},{"x":1,"y":96.0361},{"x":2,"y":121.9873},{"x":3,"y":148.5828},{"x":4,"y":169.607},{"x":5,"y":183.1485},{"x":6,"y":193.7369},{"x":7,"y":202.2761},{"x":8,"y":207.5636},{"x":9,"y":209.1416},{"x":10,"y":209.6546},{"x":11,"y":209.2487},{"x":12,"y":210.3938},{"x":13,"y":209.1629},{"x":14,"y":207.6902},{"x":15,"y":206.7537},{"x":16,"y":204.9011},{"x":17,"y":202.9269},{"x":18,"y":203.6056},{"x":19,"y":204.3025},{"x":20,"y":206.8464},{"x":21,"y":207.2218},{"x":22,"y":205.8387},{"x":23,"y":203.5968},{"x":24,"y":199.5774},{"x":25,"y":193.7339},{"x":26,"y":188.6019},{"x":27,"y":183.4718},{"x":28,"y":180.0857},{"x":29,"y":178.3286},{"x":30,"y":176.8736},{"x":31,"y":171.8384},{"x":32,"y":168.8552},{"x":33,"y":166.5311},{"x":34,"y":164.7591},{"x":35,"y":164.5351},{"x":36,"y":164.0599},{"x":37,"y":162.187},{"x":38,"y":161.5447},{"x":39,"y":160.8484},{"x":40,"y":159.9339},{"x":41,"y":157.7707},{"x":42,"y":159.0717},{"x":43,"y":159.6655},{"x":44,"y":159.7806},{"x":45,"y":163.0386},{"x":46,"y":166.6397},{"x":47,"y":169.43},{"x":48,"y":170.9491},{"x":49,"y":173.6838},{"x":50,"y":174.9978},{"x":51,"y":174.3716},{"x":52,"y":177.6136},{"x":53,"y":178.6717},{"x":54,"y":178.3596},{"x":55,"y":178.7765},{"x":56,"y":179.5655},{"x":57,"y":181.5343},{"x":58,"y":180.1617},{"x":59,"y":181.883},{"x":60,"y":182.7184},{"x":61,"y":181.9094},{"x":62,"y":182.0055},{"x":63,"y":181.4463},{"x":64,"y":180.1232},{"x":65,"y":181.4385},{"x":66,"y":180.6042},{"x":67,"y":181.7121},{"x":68,"y":182.9283},{"x":69,"y":182.7583},{"x":70,"y":179.6249},{"x":71,"y":177.1991},{"x":72,"y":176.6458},{"x":73,"y":176.831},{"x":74,"y":176.1423},{"x":75,"y":175.3482},{"x":76,"y":173.3404},{"x":77,"y":170.9682},{"x":78,"y":169.3456},{"x":79,"y":169.2848},{"x":80,"y":169.2037},{"x":81,"y":169.232},{"x":82,"y":165.9925},{"x":83,"y":162.5302},{"x":84,"y":162.7598},{"x":85,"y":161.8939},{"x":86,"y":160.9315},{"x":87,"y":157.2686},{"x":88,"y":152.5733},{"x":89,"y":150.7818},{"x":90,"y":149.7141},{"x":91,"y":149.2394},{"x":92,"y":148.6755},{"x":93,"y":147.1266},{"x":94,"y":147.1818},{"x":95,"y":145.8475},{"x":96,"y":143.4535},{"x":97,"y":137.7632},{"x":98,"y":133.8054},{"x":99,"y":124.6529},{"x":100,"y":117.0293}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area PFm","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M3 receptor in area PFm.** This profile plot shows examplary the course of the M3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area PFm"],"datasets":[{"data":[{"x":0,"y":1187.3566},{"x":1,"y":1323.5235},{"x":2,"y":1428.9562},{"x":3,"y":1486.5143},{"x":4,"y":1550.7895},{"x":5,"y":1603.5561},{"x":6,"y":1646.1602},{"x":7,"y":1676.798},{"x":8,"y":1695.4511},{"x":9,"y":1712.1351},{"x":10,"y":1732.3376},{"x":11,"y":1746.039},{"x":12,"y":1757.3188},{"x":13,"y":1764.7332},{"x":14,"y":1767.9907},{"x":15,"y":1771.4037},{"x":16,"y":1775.9087},{"x":17,"y":1778.1755},{"x":18,"y":1778.8636},{"x":19,"y":1789.6876},{"x":20,"y":1804.7697},{"x":21,"y":1808.8769},{"x":22,"y":1808.3629},{"x":23,"y":1805.0579},{"x":24,"y":1803.5057},{"x":25,"y":1798.2686},{"x":26,"y":1790.0578},{"x":27,"y":1783.3516},{"x":28,"y":1776.504},{"x":29,"y":1763.8394},{"x":30,"y":1748.0961},{"x":31,"y":1730.7008},{"x":32,"y":1715.2495},{"x":33,"y":1699.4509},{"x":34,"y":1691.9305},{"x":35,"y":1687.5653},{"x":36,"y":1685.895},{"x":37,"y":1683.7524},{"x":38,"y":1678.8643},{"x":39,"y":1667.4082},{"x":40,"y":1655.397},{"x":41,"y":1645.8773},{"x":42,"y":1634.125},{"x":43,"y":1627.5713},{"x":44,"y":1621.7817},{"x":45,"y":1620.5241},{"x":46,"y":1617.425},{"x":47,"y":1614.6611},{"x":48,"y":1610.3926},{"x":49,"y":1603.4878},{"x":50,"y":1598.6887},{"x":51,"y":1593.8563},{"x":52,"y":1587.7358},{"x":53,"y":1581.487},{"x":54,"y":1570.3626},{"x":55,"y":1558.6219},{"x":56,"y":1545.252},{"x":57,"y":1533.5059},{"x":58,"y":1525.0995},{"x":59,"y":1518.164},{"x":60,"y":1514.1891},{"x":61,"y":1510.3113},{"x":62,"y":1507.5093},{"x":63,"y":1508.0609},{"x":64,"y":1501.4626},{"x":65,"y":1498.8259},{"x":66,"y":1498.6077},{"x":67,"y":1497.1689},{"x":68,"y":1497.458},{"x":69,"y":1498.13},{"x":70,"y":1497.4811},{"x":71,"y":1498.9913},{"x":72,"y":1501.9641},{"x":73,"y":1504.9326},{"x":74,"y":1505.4971},{"x":75,"y":1501.024},{"x":76,"y":1495.4044},{"x":77,"y":1487.6982},{"x":78,"y":1477.4397},{"x":79,"y":1471.5396},{"x":80,"y":1467.5162},{"x":81,"y":1463.8119},{"x":82,"y":1459.0814},{"x":83,"y":1449.3861},{"x":84,"y":1435.3861},{"x":85,"y":1419.4158},{"x":86,"y":1403.7526},{"x":87,"y":1385.1055},{"x":88,"y":1359.1972},{"x":89,"y":1332.6952},{"x":90,"y":1300.6404},{"x":91,"y":1265.4414},{"x":92,"y":1229.3579},{"x":93,"y":1193.6507},{"x":94,"y":1152.3841},{"x":95,"y":1114.6689},{"x":96,"y":1073.1532},{"x":97,"y":1037.2619},{"x":98,"y":1007.3073},{"x":99,"y":968.4259},{"x":100,"y":926.7198}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area PFm","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of mGluR2_3 receptor in area PFm.** This profile plot shows examplary the course of the mGluR2_3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area PFm"],"datasets":[{"data":[{"x":0,"y":1527.3001},{"x":1,"y":1839.0984},{"x":2,"y":2189.7366},{"x":3,"y":2639.5104},{"x":4,"y":3131.3987},{"x":5,"y":3546.1502},{"x":6,"y":3968.0329},{"x":7,"y":4313.3664},{"x":8,"y":4629.8887},{"x":9,"y":4921.8474},{"x":10,"y":5182.0203},{"x":11,"y":5426.3305},{"x":12,"y":5630.5118},{"x":13,"y":5826.4645},{"x":14,"y":6018.1452},{"x":15,"y":6144.1827},{"x":16,"y":6230.8311},{"x":17,"y":6263.8153},{"x":18,"y":6295.1772},{"x":19,"y":6296.3602},{"x":20,"y":6294.3915},{"x":21,"y":6314.7012},{"x":22,"y":6362.3784},{"x":23,"y":6393.6048},{"x":24,"y":6420.5427},{"x":25,"y":6462.1369},{"x":26,"y":6503.4864},{"x":27,"y":6486.3374},{"x":28,"y":6458.1349},{"x":29,"y":6408.5281},{"x":30,"y":6308.3592},{"x":31,"y":6183.2181},{"x":32,"y":6088.2681},{"x":33,"y":5990.1512},{"x":34,"y":5911.5681},{"x":35,"y":5814.0018},{"x":36,"y":5734.8252},{"x":37,"y":5661.2506},{"x":38,"y":5574.9418},{"x":39,"y":5489.2553},{"x":40,"y":5425.5495},{"x":41,"y":5373.17},{"x":42,"y":5327.9416},{"x":43,"y":5299.4144},{"x":44,"y":5248.7505},{"x":45,"y":5200.1832},{"x":46,"y":5163.8114},{"x":47,"y":5144.2242},{"x":48,"y":5116.2263},{"x":49,"y":5087.371},{"x":50,"y":5045.9499},{"x":51,"y":4961.5553},{"x":52,"y":4864.9578},{"x":53,"y":4758.0079},{"x":54,"y":4660.895},{"x":55,"y":4598.5002},{"x":56,"y":4536.0734},{"x":57,"y":4461.2234},{"x":58,"y":4398.3649},{"x":59,"y":4355.6073},{"x":60,"y":4314.6257},{"x":61,"y":4267.4302},{"x":62,"y":4189.1331},{"x":63,"y":4131.0034},{"x":64,"y":4072.6532},{"x":65,"y":3997.7178},{"x":66,"y":3924.6518},{"x":67,"y":3860.0437},{"x":68,"y":3787.0319},{"x":69,"y":3704.1567},{"x":70,"y":3633.4575},{"x":71,"y":3567.382},{"x":72,"y":3512.4774},{"x":73,"y":3477.1785},{"x":74,"y":3454.906},{"x":75,"y":3445.1648},{"x":76,"y":3436.9216},{"x":77,"y":3436.4549},{"x":78,"y":3437.5753},{"x":79,"y":3415.6112},{"x":80,"y":3392.0835},{"x":81,"y":3375.1237},{"x":82,"y":3364.7892},{"x":83,"y":3354.9507},{"x":84,"y":3328.3289},{"x":85,"y":3303.3088},{"x":86,"y":3263.5839},{"x":87,"y":3211.2551},{"x":88,"y":3166.2806},{"x":89,"y":3117.2966},{"x":90,"y":3042.0249},{"x":91,"y":2985.2467},{"x":92,"y":2883.7574},{"x":93,"y":2773.0366},{"x":94,"y":2642.1972},{"x":95,"y":2502.4948},{"x":96,"y":2377.1516},{"x":97,"y":2268.729},{"x":98,"y":2177.3427},{"x":99,"y":2123.8062},{"x":100,"y":2083.8323}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₂(5-HT) in Area PFm","filename":"5-HT₂(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT2 receptor in area PFm.** This profile plot shows examplary the course of the 5-HT2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₂(5-HT) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₂(5-HT) in Area PFm"],"datasets":[{"data":[{"x":0,"y":350.924},{"x":1,"y":384.2545},{"x":2,"y":420.4888},{"x":3,"y":453.5182},{"x":4,"y":475.1151},{"x":5,"y":488.122},{"x":6,"y":501.9878},{"x":7,"y":527.154},{"x":8,"y":551.6976},{"x":9,"y":576.1593},{"x":10,"y":601.1472},{"x":11,"y":626.8803},{"x":12,"y":646.6886},{"x":13,"y":669.9733},{"x":14,"y":695.0681},{"x":15,"y":723.951},{"x":16,"y":751.1475},{"x":17,"y":779.3186},{"x":18,"y":811.9418},{"x":19,"y":841.6441},{"x":20,"y":870.2346},{"x":21,"y":902.4196},{"x":22,"y":933.2005},{"x":23,"y":955.4812},{"x":24,"y":973.7632},{"x":25,"y":994.3365},{"x":26,"y":1010.2058},{"x":27,"y":1032.3017},{"x":28,"y":1050.0611},{"x":29,"y":1070.9975},{"x":30,"y":1086.8784},{"x":31,"y":1092.7762},{"x":32,"y":1093.2012},{"x":33,"y":1087.0664},{"x":34,"y":1076.1617},{"x":35,"y":1061.3283},{"x":36,"y":1050.8619},{"x":37,"y":1038.326},{"x":38,"y":1026.0398},{"x":39,"y":1013.1174},{"x":40,"y":995.1291},{"x":41,"y":982.5762},{"x":42,"y":972.3553},{"x":43,"y":959.9188},{"x":44,"y":950.6932},{"x":45,"y":940.5263},{"x":46,"y":934.7189},{"x":47,"y":930.807},{"x":48,"y":929.6185},{"x":49,"y":931.1468},{"x":50,"y":932.5176},{"x":51,"y":934.2126},{"x":52,"y":931.8024},{"x":53,"y":929.4346},{"x":54,"y":928.0453},{"x":55,"y":923.7144},{"x":56,"y":915.6868},{"x":57,"y":908.9238},{"x":58,"y":899.4296},{"x":59,"y":886.0047},{"x":60,"y":873.9596},{"x":61,"y":865.4562},{"x":62,"y":856.5329},{"x":63,"y":845.7543},{"x":64,"y":834.0316},{"x":65,"y":816.9375},{"x":66,"y":798.7362},{"x":67,"y":782.2733},{"x":68,"y":768.0219},{"x":69,"y":756.9281},{"x":70,"y":749.4084},{"x":71,"y":738.0489},{"x":72,"y":726.5856},{"x":73,"y":718.8053},{"x":74,"y":710.0391},{"x":75,"y":704.2395},{"x":76,"y":697.6099},{"x":77,"y":691.1072},{"x":78,"y":683.6053},{"x":79,"y":665.6237},{"x":80,"y":650.4815},{"x":81,"y":640.1421},{"x":82,"y":633.3483},{"x":83,"y":629.3863},{"x":84,"y":630.3066},{"x":85,"y":628.2752},{"x":86,"y":620.8921},{"x":87,"y":613.1794},{"x":88,"y":604.1506},{"x":89,"y":594.4043},{"x":90,"y":581.6574},{"x":91,"y":568.0625},{"x":92,"y":556.0725},{"x":93,"y":542.6974},{"x":94,"y":527.2901},{"x":95,"y":516.9345},{"x":96,"y":508.7705},{"x":97,"y":491.4733},{"x":98,"y":470.0076},{"x":99,"y":454.3691},{"x":100,"y":443.1489}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴃ(GABA) in Area PFm","filename":"GABAᴃ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAB receptor in area PFm.** This profile plot shows examplary the course of the GABAB receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴃ(GABA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴃ(GABA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":573.1877},{"x":1,"y":804.0202},{"x":2,"y":1071.8902},{"x":3,"y":1339.0262},{"x":4,"y":1599.0561},{"x":5,"y":1891.4777},{"x":6,"y":2183.0962},{"x":7,"y":2471.9999},{"x":8,"y":2724.2566},{"x":9,"y":2973.4222},{"x":10,"y":3214.1044},{"x":11,"y":3428.8791},{"x":12,"y":3622.7196},{"x":13,"y":3802.703},{"x":14,"y":3941.5544},{"x":15,"y":4045.2755},{"x":16,"y":4122.2815},{"x":17,"y":4177.8563},{"x":18,"y":4229.1878},{"x":19,"y":4280.8852},{"x":20,"y":4311.9339},{"x":21,"y":4336.7753},{"x":22,"y":4367.9924},{"x":23,"y":4380.3107},{"x":24,"y":4376.6181},{"x":25,"y":4350.6657},{"x":26,"y":4315.2528},{"x":27,"y":4285.5},{"x":28,"y":4262.5087},{"x":29,"y":4253.2519},{"x":30,"y":4244.5886},{"x":31,"y":4197.4294},{"x":32,"y":4096.0252},{"x":33,"y":3982.8171},{"x":34,"y":3877.8225},{"x":35,"y":3790.9951},{"x":36,"y":3720.0325},{"x":37,"y":3672.8532},{"x":38,"y":3646.2768},{"x":39,"y":3623.06},{"x":40,"y":3608.05},{"x":41,"y":3579.1184},{"x":42,"y":3556.7084},{"x":43,"y":3518.7706},{"x":44,"y":3474.4283},{"x":45,"y":3421.4001},{"x":46,"y":3356.5385},{"x":47,"y":3296.1175},{"x":48,"y":3242.3036},{"x":49,"y":3203.5722},{"x":50,"y":3172.9243},{"x":51,"y":3152.7316},{"x":52,"y":3160.0208},{"x":53,"y":3182.0019},{"x":54,"y":3200.4349},{"x":55,"y":3210.4232},{"x":56,"y":3220.7546},{"x":57,"y":3231.9356},{"x":58,"y":3229.8094},{"x":59,"y":3199.2304},{"x":60,"y":3149.499},{"x":61,"y":3090.6089},{"x":62,"y":3041.8902},{"x":63,"y":3009.7549},{"x":64,"y":2986.3286},{"x":65,"y":2951.1689},{"x":66,"y":2913.7027},{"x":67,"y":2876.8481},{"x":68,"y":2851.3901},{"x":69,"y":2843.3843},{"x":70,"y":2848.4798},{"x":71,"y":2865.8639},{"x":72,"y":2890.695},{"x":73,"y":2907.7937},{"x":74,"y":2899.8862},{"x":75,"y":2881.5885},{"x":76,"y":2858.776},{"x":77,"y":2826.9979},{"x":78,"y":2796.5929},{"x":79,"y":2771.0312},{"x":80,"y":2743.2496},{"x":81,"y":2720.0674},{"x":82,"y":2700.2702},{"x":83,"y":2664.1631},{"x":84,"y":2616.6772},{"x":85,"y":2550.1042},{"x":86,"y":2489.7028},{"x":87,"y":2425.079},{"x":88,"y":2347.6158},{"x":89,"y":2275.0935},{"x":90,"y":2186.8813},{"x":91,"y":2112.803},{"x":92,"y":2051.0543},{"x":93,"y":1994.9916},{"x":94,"y":1942.902},{"x":95,"y":1875.2428},{"x":96,"y":1769.9738},{"x":97,"y":1668.7373},{"x":98,"y":1564.0407},{"x":99,"y":1444.2464},{"x":100,"y":1326.3748}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null}]],["Density measurements of different receptors for Area PGp",[{"name":"Receptor density fingerprint of Area PGp","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["428","518","1081","3416","1847","2374","2294","461","202","843","54","386","855","315","419","130"]},{"label":"mean_sd","data":["242","360","313","1572","767","790","830","180","74","432","31","165","mg/mol","169","233","58"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PGp (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(42,60,252,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area 45",[{"name":"Receptor density fingerprint of Area 45","filename":"fingerprint","mimetype":"application/json","properties":{"description":"**Multireceptor fingerprint for area 45.** This polar plot shows the mean receptor densities in fmol/mg protein (solid shape) and standard deviation (dashed line) of 16 receptor binding sites in the area 45. The data is based on the left and right hemisphere of one female subject (brain id: hg0201, sample ids: ID07 and ID08, age: 77, cause of death: lung edema) and the right hemispheres of two male subjects (brain id: hg0500, sample ids: ID09, age: 72, cause of death: cardiac arrest | brain id: hg0100, sample ids: ID12, age: 77, cause of death: coronary heart disease).","publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["472","434","1078","NA","1515","1428","2038","676","215","420","47","200","165","404","266","69"]},{"label":"mean_sd","data":["379","264","40","NA","283","1197","1372","493","162","20","49","143","136","346","192","51"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 45 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(255,255,0,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAᴀ(BZ) in Area 45","filename":"GABAᴀ(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_BZ.jpg"},{"name":"Sample autoradiograph of α₁(NA) in Area 45","filename":"α₁(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area 45","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAᴀ(GABA) in Area 45","filename":"GABAᴀ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area 45","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area 45","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of M₁(ACh) in Area 45","filename":"M₁(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HT₁ᴀ(5-HT) in Area 45","filename":"5-HT₁ᴀ(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area 45","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_kainate.jpg"},{"name":"Sample autoradiograph of M₂(ACh) in Area 45","filename":"M₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area 45","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_AMPA.jpg"},{"name":"Sample autoradiograph of D₁(DA) in Area 45","filename":"D₁(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area 45","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area 45","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HT₂(5-HT) in Area 45","filename":"5-HT₂(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAᴃ(GABA) in Area 45","filename":"GABAᴃ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_GABAB.jpg"},{"name":"Sample profile of GABAᴀ(BZ) in Area 45","filename":"GABAᴀ(BZ)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of BZ receptor in area 45.** This profile plot shows examplary the course of the BZ receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(BZ) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(BZ) in Area 45"],"datasets":[{"data":[{"x":0,"y":1460.5346},{"x":1,"y":1583.3308},{"x":2,"y":1708.1363},{"x":3,"y":1800.648},{"x":4,"y":1890.2756},{"x":5,"y":1984.8448},{"x":6,"y":2070.8684},{"x":7,"y":2152.0161},{"x":8,"y":2222.3149},{"x":9,"y":2291.0953},{"x":10,"y":2356.3471},{"x":11,"y":2423.0595},{"x":12,"y":2481.5627},{"x":13,"y":2528.1947},{"x":14,"y":2561.3445},{"x":15,"y":2579.1757},{"x":16,"y":2590.0611},{"x":17,"y":2599.5073},{"x":18,"y":2600.3773},{"x":19,"y":2596.3105},{"x":20,"y":2599.551},{"x":21,"y":2610.8303},{"x":22,"y":2630.3976},{"x":23,"y":2650.42},{"x":24,"y":2661.193},{"x":25,"y":2673.7478},{"x":26,"y":2696.2352},{"x":27,"y":2715.9422},{"x":28,"y":2722.3722},{"x":29,"y":2714.4745},{"x":30,"y":2696.9457},{"x":31,"y":2666.065},{"x":32,"y":2628.7015},{"x":33,"y":2586.6432},{"x":34,"y":2539.0687},{"x":35,"y":2492.0848},{"x":36,"y":2445.7293},{"x":37,"y":2401.4904},{"x":38,"y":2355.5708},{"x":39,"y":2307.831},{"x":40,"y":2266.8691},{"x":41,"y":2227.8105},{"x":42,"y":2189.3588},{"x":43,"y":2160.8589},{"x":44,"y":2138.9827},{"x":45,"y":2124.0153},{"x":46,"y":2112.5699},{"x":47,"y":2107.8888},{"x":48,"y":2115.4407},{"x":49,"y":2125.1132},{"x":50,"y":2134.312},{"x":51,"y":2144.0797},{"x":52,"y":2148.1026},{"x":53,"y":2140.9344},{"x":54,"y":2126.352},{"x":55,"y":2107.0662},{"x":56,"y":2080.8445},{"x":57,"y":2044.8838},{"x":58,"y":2005.5724},{"x":59,"y":1971.4869},{"x":60,"y":1945.5765},{"x":61,"y":1920.2847},{"x":62,"y":1903.216},{"x":63,"y":1896.7831},{"x":64,"y":1896.8248},{"x":65,"y":1896.7542},{"x":66,"y":1896.0333},{"x":67,"y":1898.1594},{"x":68,"y":1898.8414},{"x":69,"y":1898.7958},{"x":70,"y":1893.3436},{"x":71,"y":1883.2048},{"x":72,"y":1866.9435},{"x":73,"y":1852.3357},{"x":74,"y":1837.6232},{"x":75,"y":1820.6235},{"x":76,"y":1801.4688},{"x":77,"y":1781.3909},{"x":78,"y":1760.8147},{"x":79,"y":1739.6217},{"x":80,"y":1712.6818},{"x":81,"y":1684.8448},{"x":82,"y":1654.5207},{"x":83,"y":1621.3143},{"x":84,"y":1585.5909},{"x":85,"y":1547.395},{"x":86,"y":1511.2916},{"x":87,"y":1469.6548},{"x":88,"y":1430.0076},{"x":89,"y":1392.449},{"x":90,"y":1359.7888},{"x":91,"y":1325.4199},{"x":92,"y":1293.4337},{"x":93,"y":1259.0874},{"x":94,"y":1221.506},{"x":95,"y":1183.6323},{"x":96,"y":1148.2095},{"x":97,"y":1114.2643},{"x":98,"y":1083.8378},{"x":99,"y":1047.8342},{"x":100,"y":1012.4125}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of α₁(NA) in Area 45","filename":"α₁(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha1 receptor in area 45.** This profile plot shows examplary the course of the alpha1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₁(NA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₁(NA) in Area 45"],"datasets":[{"data":[{"x":0,"y":327.8791},{"x":1,"y":341.1026},{"x":2,"y":351.617},{"x":3,"y":359.3051},{"x":4,"y":364.3489},{"x":5,"y":368.2543},{"x":6,"y":369.8121},{"x":7,"y":370.5904},{"x":8,"y":370.2079},{"x":9,"y":368.4334},{"x":10,"y":366.0463},{"x":11,"y":363.6573},{"x":12,"y":360.9928},{"x":13,"y":358.2906},{"x":14,"y":354.5059},{"x":15,"y":351.5285},{"x":16,"y":349.3263},{"x":17,"y":347.299},{"x":18,"y":344.9121},{"x":19,"y":342.3601},{"x":20,"y":339.4348},{"x":21,"y":337.1609},{"x":22,"y":334.8319},{"x":23,"y":332.476},{"x":24,"y":329.6532},{"x":25,"y":326.627},{"x":26,"y":323.0913},{"x":27,"y":319.9109},{"x":28,"y":316.3637},{"x":29,"y":313.8329},{"x":30,"y":312.1855},{"x":31,"y":309.8868},{"x":32,"y":307.8339},{"x":33,"y":305.3263},{"x":34,"y":303.0805},{"x":35,"y":300.7978},{"x":36,"y":297.37},{"x":37,"y":294.9973},{"x":38,"y":292.9894},{"x":39,"y":290.5998},{"x":40,"y":288.3233},{"x":41,"y":285.9239},{"x":42,"y":283.3922},{"x":43,"y":280.0843},{"x":44,"y":276.3924},{"x":45,"y":272.3486},{"x":46,"y":268.0093},{"x":47,"y":263.137},{"x":48,"y":257.545},{"x":49,"y":252.9017},{"x":50,"y":248.6916},{"x":51,"y":243.4231},{"x":52,"y":238.875},{"x":53,"y":235.322},{"x":54,"y":232.3812},{"x":55,"y":229.4491},{"x":56,"y":228.4114},{"x":57,"y":228.2313},{"x":58,"y":229.1504},{"x":59,"y":230.5842},{"x":60,"y":231.8071},{"x":61,"y":234.1302},{"x":62,"y":236.2096},{"x":63,"y":237.869},{"x":64,"y":239.9943},{"x":65,"y":242.0023},{"x":66,"y":242.9794},{"x":67,"y":243.8649},{"x":68,"y":244.8978},{"x":69,"y":245.1278},{"x":70,"y":245.4387},{"x":71,"y":245.8692},{"x":72,"y":246.3646},{"x":73,"y":246.9616},{"x":74,"y":247.4434},{"x":75,"y":247.6941},{"x":76,"y":248.3069},{"x":77,"y":248.0117},{"x":78,"y":248.1423},{"x":79,"y":248.4666},{"x":80,"y":247.758},{"x":81,"y":247.3917},{"x":82,"y":247.5765},{"x":83,"y":247.33},{"x":84,"y":246.4404},{"x":85,"y":245.1479},{"x":86,"y":243.0743},{"x":87,"y":239.8171},{"x":88,"y":237.5107},{"x":89,"y":234.2044},{"x":90,"y":229.576},{"x":91,"y":224.9077},{"x":92,"y":220.0178},{"x":93,"y":214.1619},{"x":94,"y":208.4733},{"x":95,"y":201.9736},{"x":96,"y":194.6076},{"x":97,"y":187.7017},{"x":98,"y":181.5218},{"x":99,"y":173.9228},{"x":100,"y":165.131}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area 45","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of NMDA receptor in area 45.** This profile plot shows examplary the course of the NMDA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area 45"],"datasets":[{"data":[{"x":0,"y":794.48},{"x":1,"y":940.5194},{"x":2,"y":1053.7778},{"x":3,"y":1138.8911},{"x":4,"y":1203.1464},{"x":5,"y":1267.0606},{"x":6,"y":1327.3684},{"x":7,"y":1379.3621},{"x":8,"y":1419.2054},{"x":9,"y":1446.2068},{"x":10,"y":1473.0183},{"x":11,"y":1492.259},{"x":12,"y":1518.4788},{"x":13,"y":1535.2658},{"x":14,"y":1544.8996},{"x":15,"y":1552.355},{"x":16,"y":1558.8289},{"x":17,"y":1564.4463},{"x":18,"y":1562.6365},{"x":19,"y":1559.8785},{"x":20,"y":1552.9332},{"x":21,"y":1554.6604},{"x":22,"y":1554.1087},{"x":23,"y":1560.5853},{"x":24,"y":1562.5948},{"x":25,"y":1571.5308},{"x":26,"y":1572.5263},{"x":27,"y":1574.6635},{"x":28,"y":1578.3071},{"x":29,"y":1580.245},{"x":30,"y":1576.3369},{"x":31,"y":1572.3838},{"x":32,"y":1560.6553},{"x":33,"y":1540.2516},{"x":34,"y":1528.7306},{"x":35,"y":1524.9832},{"x":36,"y":1519.8077},{"x":37,"y":1511.4899},{"x":38,"y":1496.5061},{"x":39,"y":1480.3498},{"x":40,"y":1458.8332},{"x":41,"y":1443.0229},{"x":42,"y":1435.5261},{"x":43,"y":1442.0053},{"x":44,"y":1444.9074},{"x":45,"y":1441.6402},{"x":46,"y":1431.2902},{"x":47,"y":1414.4441},{"x":48,"y":1386.7586},{"x":49,"y":1366.3089},{"x":50,"y":1356.5942},{"x":51,"y":1344.4671},{"x":52,"y":1347.008},{"x":53,"y":1353.9855},{"x":54,"y":1361.1103},{"x":55,"y":1370.0409},{"x":56,"y":1372.2204},{"x":57,"y":1368.4059},{"x":58,"y":1351.1588},{"x":59,"y":1322.46},{"x":60,"y":1289.138},{"x":61,"y":1265.448},{"x":62,"y":1254.4053},{"x":63,"y":1248.441},{"x":64,"y":1243.3412},{"x":65,"y":1237.8682},{"x":66,"y":1242.824},{"x":67,"y":1246.9858},{"x":68,"y":1263.4056},{"x":69,"y":1278.3532},{"x":70,"y":1288.1314},{"x":71,"y":1290.8899},{"x":72,"y":1292.9224},{"x":73,"y":1299.5247},{"x":74,"y":1303.8868},{"x":75,"y":1301.8321},{"x":76,"y":1300.349},{"x":77,"y":1296.586},{"x":78,"y":1289.4988},{"x":79,"y":1285.662},{"x":80,"y":1267.5848},{"x":81,"y":1257.3968},{"x":82,"y":1252.3141},{"x":83,"y":1241.438},{"x":84,"y":1222.7781},{"x":85,"y":1212.0271},{"x":86,"y":1190.7008},{"x":87,"y":1171.4413},{"x":88,"y":1155.1947},{"x":89,"y":1135.3368},{"x":90,"y":1119.4464},{"x":91,"y":1105.8203},{"x":92,"y":1095.4363},{"x":93,"y":1091.4803},{"x":94,"y":1087.1864},{"x":95,"y":1078.3759},{"x":96,"y":1066.9846},{"x":97,"y":1043.7603},{"x":98,"y":1004.485},{"x":99,"y":956.7271},{"x":100,"y":913.7368}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴀ(GABA) in Area 45","filename":"GABAᴀ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAA receptor in area 45.** This profile plot shows examplary the course of the GABAA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(GABA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(GABA) in Area 45"],"datasets":[{"data":[{"x":0,"y":634.7955},{"x":1,"y":715.7687},{"x":2,"y":781.4727},{"x":3,"y":841.6638},{"x":4,"y":893.3103},{"x":5,"y":942.649},{"x":6,"y":985.8463},{"x":7,"y":1025.6416},{"x":8,"y":1062.7935},{"x":9,"y":1096.052},{"x":10,"y":1126.9579},{"x":11,"y":1153.8377},{"x":12,"y":1179.5711},{"x":13,"y":1201.6221},{"x":14,"y":1229.0763},{"x":15,"y":1253.4402},{"x":16,"y":1275.9424},{"x":17,"y":1296.356},{"x":18,"y":1314.8697},{"x":19,"y":1331.5639},{"x":20,"y":1347.287},{"x":21,"y":1360.9799},{"x":22,"y":1372.1697},{"x":23,"y":1380.9359},{"x":24,"y":1388.4395},{"x":25,"y":1392.0004},{"x":26,"y":1396.9711},{"x":27,"y":1401.0227},{"x":28,"y":1403.3993},{"x":29,"y":1404.9848},{"x":30,"y":1404.3766},{"x":31,"y":1402.9943},{"x":32,"y":1401.174},{"x":33,"y":1399.7365},{"x":34,"y":1397.613},{"x":35,"y":1394.3467},{"x":36,"y":1387.9961},{"x":37,"y":1379.3701},{"x":38,"y":1371.4225},{"x":39,"y":1358.4867},{"x":40,"y":1342.9006},{"x":41,"y":1327.155},{"x":42,"y":1315.2908},{"x":43,"y":1305.4578},{"x":44,"y":1295.1727},{"x":45,"y":1287.0624},{"x":46,"y":1278.0306},{"x":47,"y":1266.3693},{"x":48,"y":1257.2815},{"x":49,"y":1245.7491},{"x":50,"y":1235.1726},{"x":51,"y":1224.1686},{"x":52,"y":1208.1746},{"x":53,"y":1192.3328},{"x":54,"y":1177.2653},{"x":55,"y":1163.3418},{"x":56,"y":1147.4035},{"x":57,"y":1129.5419},{"x":58,"y":1114.4937},{"x":59,"y":1099.1838},{"x":60,"y":1086.0729},{"x":61,"y":1076.9446},{"x":62,"y":1070.4595},{"x":63,"y":1064.1696},{"x":64,"y":1058.0249},{"x":65,"y":1053.0802},{"x":66,"y":1044.8731},{"x":67,"y":1035.0001},{"x":68,"y":1023.007},{"x":69,"y":1006.423},{"x":70,"y":991.4522},{"x":71,"y":978.5116},{"x":72,"y":967.3209},{"x":73,"y":956.6532},{"x":74,"y":947.8532},{"x":75,"y":941.6319},{"x":76,"y":935.5573},{"x":77,"y":930.03},{"x":78,"y":926.5992},{"x":79,"y":925.0053},{"x":80,"y":920.6719},{"x":81,"y":918.1176},{"x":82,"y":915.8306},{"x":83,"y":914.1149},{"x":84,"y":913.2848},{"x":85,"y":911.3195},{"x":86,"y":910.1863},{"x":87,"y":905.2434},{"x":88,"y":899.6303},{"x":89,"y":892.9108},{"x":90,"y":884.336},{"x":91,"y":875.9214},{"x":92,"y":868.2849},{"x":93,"y":858.6831},{"x":94,"y":847.3264},{"x":95,"y":832.4932},{"x":96,"y":815.744},{"x":97,"y":799.3396},{"x":98,"y":779.2884},{"x":99,"y":760.3062},{"x":100,"y":740.1593}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area 45","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha2 receptor in area 45.** This profile plot shows examplary the course of the alpha2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area 45"],"datasets":[{"data":[{"x":0,"y":469.4491},{"x":1,"y":565.3924},{"x":2,"y":649.6494},{"x":3,"y":706.2583},{"x":4,"y":752.2487},{"x":5,"y":781.4631},{"x":6,"y":799.2048},{"x":7,"y":819.3022},{"x":8,"y":834.5061},{"x":9,"y":846.5419},{"x":10,"y":850.3304},{"x":11,"y":854.2942},{"x":12,"y":862.9013},{"x":13,"y":871.4134},{"x":14,"y":878.3993},{"x":15,"y":887.5916},{"x":16,"y":894.3492},{"x":17,"y":897.555},{"x":18,"y":897.5188},{"x":19,"y":890.8574},{"x":20,"y":873.5223},{"x":21,"y":862.6063},{"x":22,"y":855.4998},{"x":23,"y":851.1521},{"x":24,"y":848.3233},{"x":25,"y":841.817},{"x":26,"y":830.2764},{"x":27,"y":822.4912},{"x":28,"y":823.464},{"x":29,"y":820.342},{"x":30,"y":808.145},{"x":31,"y":801.8473},{"x":32,"y":799.092},{"x":33,"y":782.1962},{"x":34,"y":767.9729},{"x":35,"y":758.9476},{"x":36,"y":745.7124},{"x":37,"y":733.059},{"x":38,"y":712.6502},{"x":39,"y":703.5573},{"x":40,"y":698.6915},{"x":41,"y":692.2061},{"x":42,"y":690.6356},{"x":43,"y":685.4944},{"x":44,"y":679.0913},{"x":45,"y":675.183},{"x":46,"y":664.7518},{"x":47,"y":652.0746},{"x":48,"y":641.0708},{"x":49,"y":634.0346},{"x":50,"y":628.3031},{"x":51,"y":616.9945},{"x":52,"y":601.6129},{"x":53,"y":591.6409},{"x":54,"y":585.105},{"x":55,"y":577.5199},{"x":56,"y":566.2117},{"x":57,"y":567.1189},{"x":58,"y":577.0754},{"x":59,"y":584.2058},{"x":60,"y":582.6771},{"x":61,"y":584.2724},{"x":62,"y":585.7733},{"x":63,"y":587.1189},{"x":64,"y":581.0198},{"x":65,"y":578.8378},{"x":66,"y":579.3392},{"x":67,"y":575.0687},{"x":68,"y":562.4258},{"x":69,"y":547.4474},{"x":70,"y":534.9731},{"x":71,"y":522.2081},{"x":72,"y":516.2615},{"x":73,"y":504.3176},{"x":74,"y":493.2196},{"x":75,"y":485.6598},{"x":76,"y":480.8628},{"x":77,"y":476.1611},{"x":78,"y":469.3088},{"x":79,"y":462.6646},{"x":80,"y":457.6205},{"x":81,"y":452.4885},{"x":82,"y":450.9453},{"x":83,"y":452.5669},{"x":84,"y":445.114},{"x":85,"y":438.5897},{"x":86,"y":426.6008},{"x":87,"y":409.3276},{"x":88,"y":395.8666},{"x":89,"y":372.2243},{"x":90,"y":344.2449},{"x":91,"y":321.0722},{"x":92,"y":301.7635},{"x":93,"y":283.1574},{"x":94,"y":267.6314},{"x":95,"y":259.9897},{"x":96,"y":252.0991},{"x":97,"y":243.6278},{"x":98,"y":235.2602},{"x":99,"y":221.5029},{"x":100,"y":207.5209}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area 45","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha4-beta2 receptor in area 45.** This profile plot shows examplary the course of the alpha4-beta2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area 45"],"datasets":[{"data":[{"x":0,"y":13.2101},{"x":1,"y":15.6055},{"x":2,"y":17.279},{"x":3,"y":19.2977},{"x":4,"y":21.3187},{"x":5,"y":23.1311},{"x":6,"y":26.4183},{"x":7,"y":28.5334},{"x":8,"y":28.7524},{"x":9,"y":29.8097},{"x":10,"y":30.7849},{"x":11,"y":30.8247},{"x":12,"y":30.2471},{"x":13,"y":28.7272},{"x":14,"y":27.1162},{"x":15,"y":26.1655},{"x":16,"y":26.1373},{"x":17,"y":26.6089},{"x":18,"y":26.8998},{"x":19,"y":27.1571},{"x":20,"y":27.271},{"x":21,"y":27.3772},{"x":22,"y":27.5579},{"x":23,"y":27.463},{"x":24,"y":27.2674},{"x":25,"y":27.3969},{"x":26,"y":28.0425},{"x":27,"y":29.0192},{"x":28,"y":29.6249},{"x":29,"y":30.4451},{"x":30,"y":30.3474},{"x":31,"y":31.8173},{"x":32,"y":32.6919},{"x":33,"y":32.9726},{"x":34,"y":33.1706},{"x":35,"y":33.6537},{"x":36,"y":33.4897},{"x":37,"y":33.6151},{"x":38,"y":33.682},{"x":39,"y":33.3453},{"x":40,"y":32.3363},{"x":41,"y":31.7709},{"x":42,"y":30.8566},{"x":43,"y":30.3814},{"x":44,"y":30.7077},{"x":45,"y":30.5846},{"x":46,"y":30.4693},{"x":47,"y":29.9682},{"x":48,"y":29.9551},{"x":49,"y":29.3887},{"x":50,"y":29.3968},{"x":51,"y":30.2142},{"x":52,"y":30.3134},{"x":53,"y":30.1211},{"x":54,"y":29.7808},{"x":55,"y":29.2502},{"x":56,"y":28.5542},{"x":57,"y":28.1366},{"x":58,"y":28.7265},{"x":59,"y":29.1477},{"x":60,"y":29.6566},{"x":61,"y":29.5394},{"x":62,"y":29.0037},{"x":63,"y":28.3007},{"x":64,"y":27.6114},{"x":65,"y":28.3795},{"x":66,"y":29.7751},{"x":67,"y":29.5407},{"x":68,"y":28.8095},{"x":69,"y":28.3867},{"x":70,"y":29.0855},{"x":71,"y":28.9202},{"x":72,"y":28.5972},{"x":73,"y":27.7725},{"x":74,"y":27.6129},{"x":75,"y":27.3254},{"x":76,"y":27.9318},{"x":77,"y":28.2839},{"x":78,"y":29.1676},{"x":79,"y":30.1504},{"x":80,"y":30.9573},{"x":81,"y":31.6251},{"x":82,"y":31.6644},{"x":83,"y":31.6194},{"x":84,"y":31.734},{"x":85,"y":32.0767},{"x":86,"y":32.0147},{"x":87,"y":32.4512},{"x":88,"y":32.5375},{"x":89,"y":31.6079},{"x":90,"y":30.9472},{"x":91,"y":30.4269},{"x":92,"y":30.384},{"x":93,"y":30.8271},{"x":94,"y":30.6763},{"x":95,"y":29.2631},{"x":96,"y":27.2017},{"x":97,"y":26.1304},{"x":98,"y":24.631},{"x":99,"y":23.3251},{"x":100,"y":22.6634}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of M₁(ACh) in Area 45","filename":"M₁(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M1 receptor in area 45.** This profile plot shows examplary the course of the M1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the right hemisphere of one male subject (brain id: MR1, sample id: ID02, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₁(ACh) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₁(ACh) in Area 45"],"datasets":[{"data":[{"x":0,"y":381.9101},{"x":1,"y":436.8927},{"x":2,"y":478.9781},{"x":3,"y":506.1044},{"x":4,"y":520.4062},{"x":5,"y":533.0569},{"x":6,"y":549.4602},{"x":7,"y":566.1098},{"x":8,"y":578.5351},{"x":9,"y":585.9845},{"x":10,"y":587.9969},{"x":11,"y":588.5602},{"x":12,"y":589.9104},{"x":13,"y":587.9436},{"x":14,"y":586.9858},{"x":15,"y":584.7292},{"x":16,"y":581.5806},{"x":17,"y":580.4543},{"x":18,"y":577.1911},{"x":19,"y":572.4089},{"x":20,"y":567.5581},{"x":21,"y":567.5312},{"x":22,"y":566.414},{"x":23,"y":563.5261},{"x":24,"y":562.8925},{"x":25,"y":559.6155},{"x":26,"y":561.1417},{"x":27,"y":561.2087},{"x":28,"y":561.1357},{"x":29,"y":562.8276},{"x":30,"y":561.7152},{"x":31,"y":559.0178},{"x":32,"y":555.3889},{"x":33,"y":550.7541},{"x":34,"y":539.5945},{"x":35,"y":529.6209},{"x":36,"y":524.797},{"x":37,"y":523.7451},{"x":38,"y":520.7351},{"x":39,"y":514.339},{"x":40,"y":504.8223},{"x":41,"y":496.7218},{"x":42,"y":497.2493},{"x":43,"y":494.5142},{"x":44,"y":492.4384},{"x":45,"y":494.3176},{"x":46,"y":495.8264},{"x":47,"y":499.0646},{"x":48,"y":498.9326},{"x":49,"y":501.257},{"x":50,"y":504.9812},{"x":51,"y":506.9896},{"x":52,"y":509.9079},{"x":53,"y":509.6259},{"x":54,"y":510.1441},{"x":55,"y":512.866},{"x":56,"y":516.1428},{"x":57,"y":520.7067},{"x":58,"y":519.7416},{"x":59,"y":518.1057},{"x":60,"y":512.3378},{"x":61,"y":506.6333},{"x":62,"y":498.6401},{"x":63,"y":490.7246},{"x":64,"y":481.579},{"x":65,"y":479.2424},{"x":66,"y":483.5324},{"x":67,"y":488.5284},{"x":68,"y":493.0161},{"x":69,"y":497.8114},{"x":70,"y":496.7059},{"x":71,"y":494.195},{"x":72,"y":495.16},{"x":73,"y":500.0311},{"x":74,"y":509.392},{"x":75,"y":519.6998},{"x":76,"y":525.8513},{"x":77,"y":532.4273},{"x":78,"y":539.4819},{"x":79,"y":543.8892},{"x":80,"y":549.4755},{"x":81,"y":548.9542},{"x":82,"y":546.5351},{"x":83,"y":540.1034},{"x":84,"y":531.8678},{"x":85,"y":525.7068},{"x":86,"y":520.4424},{"x":87,"y":510.6088},{"x":88,"y":503.5733},{"x":89,"y":494.3613},{"x":90,"y":482.2789},{"x":91,"y":471.8525},{"x":92,"y":459.313},{"x":93,"y":443.7903},{"x":94,"y":430.1989},{"x":95,"y":413.6311},{"x":96,"y":405.3675},{"x":97,"y":387.6068},{"x":98,"y":373.6256},{"x":99,"y":362.4871},{"x":100,"y":350.1698}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₁ᴀ(5-HT) in Area 45","filename":"5-HT₁ᴀ(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT1A receptor in area 45.** This profile plot shows examplary the course of the 5-HT1A receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₁ᴀ(5-HT) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₁ᴀ(5-HT) in Area 45"],"datasets":[{"data":[{"x":0,"y":446.4682},{"x":1,"y":478.6471},{"x":2,"y":509.2584},{"x":3,"y":540.6435},{"x":4,"y":566.3428},{"x":5,"y":588.0512},{"x":6,"y":608.3105},{"x":7,"y":625.0107},{"x":8,"y":636.1673},{"x":9,"y":643.9884},{"x":10,"y":648.3029},{"x":11,"y":649.924},{"x":12,"y":647.4576},{"x":13,"y":642.3212},{"x":14,"y":634.378},{"x":15,"y":622.8576},{"x":16,"y":607.448},{"x":17,"y":590.2758},{"x":18,"y":571.8925},{"x":19,"y":553.8814},{"x":20,"y":535.8393},{"x":21,"y":515.5943},{"x":22,"y":497.1233},{"x":23,"y":479.3945},{"x":24,"y":459.785},{"x":25,"y":438.6457},{"x":26,"y":417.0415},{"x":27,"y":396.816},{"x":28,"y":372.5078},{"x":29,"y":349.9618},{"x":30,"y":328.4453},{"x":31,"y":306.9185},{"x":32,"y":284.8545},{"x":33,"y":263.7074},{"x":34,"y":242.3922},{"x":35,"y":222.3236},{"x":36,"y":201.4712},{"x":37,"y":183.0173},{"x":38,"y":168.4927},{"x":39,"y":157.2917},{"x":40,"y":147.5868},{"x":41,"y":138.0575},{"x":42,"y":129.3287},{"x":43,"y":122.5712},{"x":44,"y":115.2238},{"x":45,"y":108.158},{"x":46,"y":103.2221},{"x":47,"y":98.3181},{"x":48,"y":94.6898},{"x":49,"y":93.0116},{"x":50,"y":91.8996},{"x":51,"y":92.8934},{"x":52,"y":94.2564},{"x":53,"y":95.806},{"x":54,"y":97.0351},{"x":55,"y":99.1721},{"x":56,"y":101.208},{"x":57,"y":103.449},{"x":58,"y":105.6208},{"x":59,"y":109.1625},{"x":60,"y":113.0543},{"x":61,"y":116.162},{"x":62,"y":119.7928},{"x":63,"y":123.3744},{"x":64,"y":129.2577},{"x":65,"y":132.9809},{"x":66,"y":136.5838},{"x":67,"y":139.6859},{"x":68,"y":141.8055},{"x":69,"y":142.7797},{"x":70,"y":144.2386},{"x":71,"y":145.6713},{"x":72,"y":146.4523},{"x":73,"y":147.8483},{"x":74,"y":150.8827},{"x":75,"y":154.3874},{"x":76,"y":158.0307},{"x":77,"y":162.4452},{"x":78,"y":166.3661},{"x":79,"y":167.4467},{"x":80,"y":167.673},{"x":81,"y":167.0871},{"x":82,"y":165.8395},{"x":83,"y":164.3776},{"x":84,"y":164.2927},{"x":85,"y":165.2644},{"x":86,"y":166.9129},{"x":87,"y":168.346},{"x":88,"y":169.7038},{"x":89,"y":170.2005},{"x":90,"y":169.9151},{"x":91,"y":166.5571},{"x":92,"y":163.6538},{"x":93,"y":161.3259},{"x":94,"y":157.0934},{"x":95,"y":153.4914},{"x":96,"y":149.4574},{"x":97,"y":145.4651},{"x":98,"y":142.6291},{"x":99,"y":138.3102},{"x":100,"y":135.5216}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of kainate (Glu) in Area 45","filename":"kainate (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of kainate receptor in area 45.** This profile plot shows examplary the course of the kainate receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of kainate (Glu) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of kainate (Glu) in Area 45"],"datasets":[{"data":[{"x":0,"y":128.2432},{"x":1,"y":133.4718},{"x":2,"y":137.4436},{"x":3,"y":141.3498},{"x":4,"y":144.5227},{"x":5,"y":150.0921},{"x":6,"y":151.1739},{"x":7,"y":156.9486},{"x":8,"y":158.6138},{"x":9,"y":160.1789},{"x":10,"y":158.062},{"x":11,"y":157.9045},{"x":12,"y":159.4278},{"x":13,"y":157.4277},{"x":14,"y":156.3406},{"x":15,"y":155.6615},{"x":16,"y":155.8074},{"x":17,"y":154.9571},{"x":18,"y":151.5084},{"x":19,"y":148.7766},{"x":20,"y":147.8011},{"x":21,"y":149.441},{"x":22,"y":149.1402},{"x":23,"y":147.3879},{"x":24,"y":145.9776},{"x":25,"y":147.4142},{"x":26,"y":149.2054},{"x":27,"y":149.8993},{"x":28,"y":150.6654},{"x":29,"y":152.7007},{"x":30,"y":154.1278},{"x":31,"y":152.3247},{"x":32,"y":149.1021},{"x":33,"y":148.4685},{"x":34,"y":147.7671},{"x":35,"y":148.5821},{"x":36,"y":148.9318},{"x":37,"y":150.0955},{"x":38,"y":152.7142},{"x":39,"y":154.7568},{"x":40,"y":158.9343},{"x":41,"y":160.7979},{"x":42,"y":162.3624},{"x":43,"y":166.3793},{"x":44,"y":168.8671},{"x":45,"y":173.4001},{"x":46,"y":177.4207},{"x":47,"y":181.5218},{"x":48,"y":187.0071},{"x":49,"y":188.0529},{"x":50,"y":188.0249},{"x":51,"y":189.9901},{"x":52,"y":190.2867},{"x":53,"y":192.1188},{"x":54,"y":202.2524},{"x":55,"y":210.0858},{"x":56,"y":215.743},{"x":57,"y":217.8028},{"x":58,"y":223.8773},{"x":59,"y":228.4059},{"x":60,"y":229.7807},{"x":61,"y":229.2109},{"x":62,"y":230.6402},{"x":63,"y":232.917},{"x":64,"y":235.4387},{"x":65,"y":236.6682},{"x":66,"y":237.4886},{"x":67,"y":241.6481},{"x":68,"y":244.9507},{"x":69,"y":245.65},{"x":70,"y":248.3345},{"x":71,"y":250.5447},{"x":72,"y":256.2273},{"x":73,"y":259.1402},{"x":74,"y":257.6825},{"x":75,"y":257.2173},{"x":76,"y":259.8811},{"x":77,"y":260.9476},{"x":78,"y":262.6104},{"x":79,"y":264.0823},{"x":80,"y":262.1313},{"x":81,"y":260.4572},{"x":82,"y":259.0434},{"x":83,"y":258.0762},{"x":84,"y":255.4195},{"x":85,"y":252.788},{"x":86,"y":251.6301},{"x":87,"y":253.008},{"x":88,"y":254.917},{"x":89,"y":255.733},{"x":90,"y":256.2008},{"x":91,"y":253.5028},{"x":92,"y":247.748},{"x":93,"y":243.7458},{"x":94,"y":236.6708},{"x":95,"y":231.8607},{"x":96,"y":229.1243},{"x":97,"y":222.6816},{"x":98,"y":216.0715},{"x":99,"y":207.8698},{"x":100,"y":198.6453}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of M₂(ACh) in Area 45","filename":"M₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M2 receptor in area 45.** This profile plot shows examplary the course of the M2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₂(ACh) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₂(ACh) in Area 45"],"datasets":[{"data":[{"x":0,"y":148.2509},{"x":1,"y":160.4788},{"x":2,"y":172.7641},{"x":3,"y":188.286},{"x":4,"y":202.4919},{"x":5,"y":211.0979},{"x":6,"y":217.7748},{"x":7,"y":225.6758},{"x":8,"y":233.2973},{"x":9,"y":238.0511},{"x":10,"y":242.8574},{"x":11,"y":246.1199},{"x":12,"y":248.1379},{"x":13,"y":250.3073},{"x":14,"y":253.4073},{"x":15,"y":255.9217},{"x":16,"y":255.3769},{"x":17,"y":256.2855},{"x":18,"y":256.7336},{"x":19,"y":255.8608},{"x":20,"y":255.5498},{"x":21,"y":257.467},{"x":22,"y":257.1439},{"x":23,"y":256.9265},{"x":24,"y":257.0385},{"x":25,"y":257.6207},{"x":26,"y":260.1275},{"x":27,"y":260.2744},{"x":28,"y":258.071},{"x":29,"y":258.9127},{"x":30,"y":258.0414},{"x":31,"y":256.9024},{"x":32,"y":255.1509},{"x":33,"y":255.3897},{"x":34,"y":254.6337},{"x":35,"y":254.2197},{"x":36,"y":252.7252},{"x":37,"y":251.3689},{"x":38,"y":250.0491},{"x":39,"y":249.2892},{"x":40,"y":250.3386},{"x":41,"y":252.2995},{"x":42,"y":254.0825},{"x":43,"y":254.6392},{"x":44,"y":255.3837},{"x":45,"y":255.833},{"x":46,"y":257.2473},{"x":47,"y":258.6471},{"x":48,"y":259.0378},{"x":49,"y":257.0129},{"x":50,"y":257.6312},{"x":51,"y":257.436},{"x":52,"y":258.2143},{"x":53,"y":258.2644},{"x":54,"y":257.8273},{"x":55,"y":258.1356},{"x":56,"y":257.5567},{"x":57,"y":256.1952},{"x":58,"y":256.4853},{"x":59,"y":258.2186},{"x":60,"y":260.9326},{"x":61,"y":262.1186},{"x":62,"y":262.9369},{"x":63,"y":261.639},{"x":64,"y":260.6033},{"x":65,"y":260.9028},{"x":66,"y":259.535},{"x":67,"y":259.6838},{"x":68,"y":258.9229},{"x":69,"y":258.0758},{"x":70,"y":255.9138},{"x":71,"y":253.6645},{"x":72,"y":252.8365},{"x":73,"y":252.5917},{"x":74,"y":249.7885},{"x":75,"y":248.9866},{"x":76,"y":249.7967},{"x":77,"y":249.386},{"x":78,"y":246.1164},{"x":79,"y":244.1496},{"x":80,"y":244.03},{"x":81,"y":242.4811},{"x":82,"y":241.1196},{"x":83,"y":239.2815},{"x":84,"y":235.9196},{"x":85,"y":232.4495},{"x":86,"y":228.9631},{"x":87,"y":226.325},{"x":88,"y":223.5355},{"x":89,"y":220.0405},{"x":90,"y":216.8779},{"x":91,"y":214.3161},{"x":92,"y":209.9348},{"x":93,"y":203.217},{"x":94,"y":195.4991},{"x":95,"y":187.8444},{"x":96,"y":181.5077},{"x":97,"y":172.7914},{"x":98,"y":162.8512},{"x":99,"y":154.3011},{"x":100,"y":147.3262}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area 45","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of AMPA receptor in area 45.** This profile plot shows examplary the course of the AMPA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area 45"],"datasets":[{"data":[{"x":0,"y":363.1229},{"x":1,"y":387.8446},{"x":2,"y":412.6686},{"x":3,"y":435.4615},{"x":4,"y":459.3812},{"x":5,"y":478.3833},{"x":6,"y":491.5823},{"x":7,"y":501.6668},{"x":8,"y":507.1233},{"x":9,"y":507.0855},{"x":10,"y":502.6994},{"x":11,"y":496.5091},{"x":12,"y":487.0889},{"x":13,"y":479.0364},{"x":14,"y":473.6371},{"x":15,"y":465.5097},{"x":16,"y":457.15},{"x":17,"y":450.4011},{"x":18,"y":443.7644},{"x":19,"y":436.2319},{"x":20,"y":428.6994},{"x":21,"y":419.0023},{"x":22,"y":411.1127},{"x":23,"y":405.6558},{"x":24,"y":401.1618},{"x":25,"y":399.5792},{"x":26,"y":402.3016},{"x":27,"y":408.1729},{"x":28,"y":412.7131},{"x":29,"y":411.2129},{"x":30,"y":404.6575},{"x":31,"y":398.4513},{"x":32,"y":389.7323},{"x":33,"y":378.2357},{"x":34,"y":365.5536},{"x":35,"y":350.043},{"x":36,"y":337.0479},{"x":37,"y":325.1481},{"x":38,"y":309.7302},{"x":39,"y":293.6685},{"x":40,"y":278.9523},{"x":41,"y":265.2233},{"x":42,"y":255.5226},{"x":43,"y":249.5831},{"x":44,"y":247.6395},{"x":45,"y":246.6937},{"x":46,"y":242.4396},{"x":47,"y":239.6172},{"x":48,"y":238.1692},{"x":49,"y":237.5023},{"x":50,"y":238.0605},{"x":51,"y":235.9509},{"x":52,"y":234.4507},{"x":53,"y":230.1675},{"x":54,"y":229.9983},{"x":55,"y":233.2483},{"x":56,"y":234.0215},{"x":57,"y":236.4597},{"x":58,"y":237.7025},{"x":59,"y":237.5634},{"x":60,"y":238.2972},{"x":61,"y":240.7975},{"x":62,"y":241.8165},{"x":63,"y":243.0112},{"x":64,"y":241.311},{"x":65,"y":238.9827},{"x":66,"y":239.6403},{"x":67,"y":239.7592},{"x":68,"y":241.4406},{"x":69,"y":244.8075},{"x":70,"y":248.7895},{"x":71,"y":252.1568},{"x":72,"y":254.1116},{"x":73,"y":257.2797},{"x":74,"y":259.2491},{"x":75,"y":262.5645},{"x":76,"y":269.9665},{"x":77,"y":274.6952},{"x":78,"y":280.4762},{"x":79,"y":288.2045},{"x":80,"y":292.5784},{"x":81,"y":297.4214},{"x":82,"y":299.5389},{"x":83,"y":298.7706},{"x":84,"y":298.3684},{"x":85,"y":294.9061},{"x":86,"y":291.7974},{"x":87,"y":288.7943},{"x":88,"y":284.1133},{"x":89,"y":281.039},{"x":90,"y":273.96},{"x":91,"y":269.7795},{"x":92,"y":266.2041},{"x":93,"y":263.1902},{"x":94,"y":259.2016},{"x":95,"y":253.2865},{"x":96,"y":249.3632},{"x":97,"y":241.6962},{"x":98,"y":236.1636},{"x":99,"y":229.2335},{"x":100,"y":220.5767}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of D₁(DA) in Area 45","filename":"D₁(DA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of D1 receptor in area 45.** This profile plot shows examplary the course of the D1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of D₁(DA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of D₁(DA) in Area 45"],"datasets":[{"data":[{"x":0,"y":78.1084},{"x":1,"y":84.9645},{"x":2,"y":91.0532},{"x":3,"y":95.5791},{"x":4,"y":98.3777},{"x":5,"y":100.4353},{"x":6,"y":102.0098},{"x":7,"y":103.4378},{"x":8,"y":105.096},{"x":9,"y":106.5489},{"x":10,"y":107.8973},{"x":11,"y":108.5222},{"x":12,"y":108.471},{"x":13,"y":108.2248},{"x":14,"y":108.2734},{"x":15,"y":108.043},{"x":16,"y":107.8699},{"x":17,"y":107.6634},{"x":18,"y":107.6015},{"x":19,"y":107.1348},{"x":20,"y":106.8158},{"x":21,"y":106.8694},{"x":22,"y":107.5786},{"x":23,"y":108.7444},{"x":24,"y":109.4443},{"x":25,"y":109.7067},{"x":26,"y":109.8513},{"x":27,"y":109.3219},{"x":28,"y":108.7429},{"x":29,"y":108.1614},{"x":30,"y":107.9891},{"x":31,"y":106.603},{"x":32,"y":105.6344},{"x":33,"y":104.8022},{"x":34,"y":104.1244},{"x":35,"y":103.1104},{"x":36,"y":102.3964},{"x":37,"y":102.7234},{"x":38,"y":103.6768},{"x":39,"y":104.0412},{"x":40,"y":104.2372},{"x":41,"y":104.2372},{"x":42,"y":104.5237},{"x":43,"y":104.2933},{"x":44,"y":104.0511},{"x":45,"y":103.0073},{"x":46,"y":102.6726},{"x":47,"y":102.1502},{"x":48,"y":101.7177},{"x":49,"y":101.6195},{"x":50,"y":102.3458},{"x":51,"y":102.4462},{"x":52,"y":101.9925},{"x":53,"y":101.934},{"x":54,"y":101.8345},{"x":55,"y":101.7546},{"x":56,"y":101.7766},{"x":57,"y":101.8297},{"x":58,"y":101.925},{"x":59,"y":101.5507},{"x":60,"y":101.6761},{"x":61,"y":101.4481},{"x":62,"y":100.8504},{"x":63,"y":100.0694},{"x":64,"y":99.1571},{"x":65,"y":97.7408},{"x":66,"y":96.8638},{"x":67,"y":95.7591},{"x":68,"y":93.8969},{"x":69,"y":91.8417},{"x":70,"y":90.107},{"x":71,"y":89.1044},{"x":72,"y":87.4652},{"x":73,"y":85.9192},{"x":74,"y":84.9756},{"x":75,"y":83.969},{"x":76,"y":83.6151},{"x":77,"y":83.4688},{"x":78,"y":83.5502},{"x":79,"y":83.3848},{"x":80,"y":83.4078},{"x":81,"y":83.0115},{"x":82,"y":82.5122},{"x":83,"y":81.9019},{"x":84,"y":80.5658},{"x":85,"y":79.442},{"x":86,"y":78.2936},{"x":87,"y":77.4462},{"x":88,"y":76.4354},{"x":89,"y":74.5846},{"x":90,"y":72.1056},{"x":91,"y":70.1597},{"x":92,"y":68.7571},{"x":93,"y":66.9971},{"x":94,"y":65.6739},{"x":95,"y":64.3799},{"x":96,"y":63.1736},{"x":97,"y":61.0219},{"x":98,"y":58.9807},{"x":99,"y":57.1969},{"x":100,"y":54.9126}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area 45","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M3 receptor in area 45.** This profile plot shows examplary the course of the M3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area 45"],"datasets":[{"data":[{"x":0,"y":242.4714},{"x":1,"y":250.7951},{"x":2,"y":259.7815},{"x":3,"y":268.408},{"x":4,"y":275.2378},{"x":5,"y":280.239},{"x":6,"y":283.9212},{"x":7,"y":285.7811},{"x":8,"y":286.0227},{"x":9,"y":286.4763},{"x":10,"y":286.4911},{"x":11,"y":286.4111},{"x":12,"y":286.1154},{"x":13,"y":285.4677},{"x":14,"y":285.0456},{"x":15,"y":284.5767},{"x":16,"y":284.1206},{"x":17,"y":283.1973},{"x":18,"y":282.7552},{"x":19,"y":282.0832},{"x":20,"y":280.6612},{"x":21,"y":278.8055},{"x":22,"y":277.1465},{"x":23,"y":276.0516},{"x":24,"y":274.833},{"x":25,"y":274.214},{"x":26,"y":274.0571},{"x":27,"y":273.5409},{"x":28,"y":272.419},{"x":29,"y":271.9615},{"x":30,"y":271.0815},{"x":31,"y":269.8926},{"x":32,"y":267.7079},{"x":33,"y":265.4575},{"x":34,"y":263.6548},{"x":35,"y":261.6827},{"x":36,"y":259.2279},{"x":37,"y":256.5618},{"x":38,"y":253.571},{"x":39,"y":249.8624},{"x":40,"y":246.2392},{"x":41,"y":242.1144},{"x":42,"y":238.5763},{"x":43,"y":236.484},{"x":44,"y":234.5967},{"x":45,"y":232.173},{"x":46,"y":229.5571},{"x":47,"y":227.0632},{"x":48,"y":224.5747},{"x":49,"y":222.4277},{"x":50,"y":220.5809},{"x":51,"y":219.0437},{"x":52,"y":217.7184},{"x":53,"y":217.0493},{"x":54,"y":216.2636},{"x":55,"y":215.6882},{"x":56,"y":215.3476},{"x":57,"y":216.0696},{"x":58,"y":216.3634},{"x":59,"y":216.7627},{"x":60,"y":216.4955},{"x":61,"y":216.5857},{"x":62,"y":215.5667},{"x":63,"y":213.578},{"x":64,"y":212.1659},{"x":65,"y":209.9465},{"x":66,"y":208.2169},{"x":67,"y":207.2508},{"x":68,"y":206.4585},{"x":69,"y":205.6267},{"x":70,"y":205.8085},{"x":71,"y":205.7924},{"x":72,"y":205.6573},{"x":73,"y":205.6143},{"x":74,"y":205.8285},{"x":75,"y":205.8996},{"x":76,"y":205.2856},{"x":77,"y":204.803},{"x":78,"y":203.5548},{"x":79,"y":202.6549},{"x":80,"y":201.3211},{"x":81,"y":200.1485},{"x":82,"y":199.6121},{"x":83,"y":199.7426},{"x":84,"y":199.7115},{"x":85,"y":199.7334},{"x":86,"y":199.8951},{"x":87,"y":200.3864},{"x":88,"y":200.3858},{"x":89,"y":200.0216},{"x":90,"y":200.2697},{"x":91,"y":199.6195},{"x":92,"y":197.5551},{"x":93,"y":195.1741},{"x":94,"y":191.6469},{"x":95,"y":188.0536},{"x":96,"y":185.0563},{"x":97,"y":181.4895},{"x":98,"y":178.9988},{"x":99,"y":176.4345},{"x":100,"y":173.4422}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area 45","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of mGluR2_3 receptor in area 45.** This profile plot shows examplary the course of the mGluR2_3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area 45"],"datasets":[{"data":[{"x":0,"y":2329.1235},{"x":1,"y":2525.8177},{"x":2,"y":2663.7145},{"x":3,"y":2780.8164},{"x":4,"y":2872.1168},{"x":5,"y":2933.5586},{"x":6,"y":2969.7929},{"x":7,"y":3014.8606},{"x":8,"y":3041.0337},{"x":9,"y":3062.6667},{"x":10,"y":3082.1499},{"x":11,"y":3103.616},{"x":12,"y":3119.5096},{"x":13,"y":3137.6468},{"x":14,"y":3150.0613},{"x":15,"y":3166.116},{"x":16,"y":3182.8989},{"x":17,"y":3188.6492},{"x":18,"y":3188.1948},{"x":19,"y":3188.0656},{"x":20,"y":3187.0585},{"x":21,"y":3180.8013},{"x":22,"y":3173.0829},{"x":23,"y":3163.6916},{"x":24,"y":3142.0249},{"x":25,"y":3117.5816},{"x":26,"y":3091.4563},{"x":27,"y":3057.6253},{"x":28,"y":3027.5128},{"x":29,"y":3003.6084},{"x":30,"y":2995.6601},{"x":31,"y":2984.5468},{"x":32,"y":2976.7859},{"x":33,"y":2967.3817},{"x":34,"y":2956.0409},{"x":35,"y":2939.6534},{"x":36,"y":2923.1503},{"x":37,"y":2917.5128},{"x":38,"y":2910.8969},{"x":39,"y":2902.394},{"x":40,"y":2889.0886},{"x":41,"y":2881.9775},{"x":42,"y":2875.0169},{"x":43,"y":2853.1159},{"x":44,"y":2820.7971},{"x":45,"y":2791.7109},{"x":46,"y":2758.1112},{"x":47,"y":2728.1731},{"x":48,"y":2685.1843},{"x":49,"y":2642.4576},{"x":50,"y":2608.4185},{"x":51,"y":2578.6758},{"x":52,"y":2547.2736},{"x":53,"y":2508.4241},{"x":54,"y":2463.5647},{"x":55,"y":2425.1331},{"x":56,"y":2383.5863},{"x":57,"y":2338.9373},{"x":58,"y":2302.3089},{"x":59,"y":2265.7624},{"x":60,"y":2225.8775},{"x":61,"y":2177.8831},{"x":62,"y":2139.7348},{"x":63,"y":2091.8873},{"x":64,"y":2043.7491},{"x":65,"y":2001.6689},{"x":66,"y":1957.9636},{"x":67,"y":1918.2625},{"x":68,"y":1868.5604},{"x":69,"y":1828.4216},{"x":70,"y":1790.7205},{"x":71,"y":1759.1246},{"x":72,"y":1736.3443},{"x":73,"y":1708.2351},{"x":74,"y":1685.7374},{"x":75,"y":1661.7608},{"x":76,"y":1637.0638},{"x":77,"y":1618.0377},{"x":78,"y":1610.9442},{"x":79,"y":1600.5609},{"x":80,"y":1588.0873},{"x":81,"y":1577.4166},{"x":82,"y":1555.6453},{"x":83,"y":1538.047},{"x":84,"y":1517.906},{"x":85,"y":1500.8983},{"x":86,"y":1486.9246},{"x":87,"y":1469.6974},{"x":88,"y":1457.2807},{"x":89,"y":1434.636},{"x":90,"y":1400.474},{"x":91,"y":1349.5559},{"x":92,"y":1290.592},{"x":93,"y":1240.8654},{"x":94,"y":1186.2181},{"x":95,"y":1128.2174},{"x":96,"y":1072.6946},{"x":97,"y":1025.0802},{"x":98,"y":969.9934},{"x":99,"y":915.1584},{"x":100,"y":855.2369}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₂(5-HT) in Area 45","filename":"5-HT₂(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT2 receptor in area 45.** This profile plot shows examplary the course of the 5-HT2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₂(5-HT) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₂(5-HT) in Area 45"],"datasets":[{"data":[{"x":0,"y":288.9923},{"x":1,"y":309.7773},{"x":2,"y":328.8126},{"x":3,"y":345.6034},{"x":4,"y":358.1815},{"x":5,"y":366.2937},{"x":6,"y":372.7815},{"x":7,"y":376.1244},{"x":8,"y":378.2773},{"x":9,"y":380.2499},{"x":10,"y":381.7339},{"x":11,"y":382.5514},{"x":12,"y":384.1955},{"x":13,"y":385.053},{"x":14,"y":387.5857},{"x":15,"y":390.0167},{"x":16,"y":393.3792},{"x":17,"y":397.0094},{"x":18,"y":400.449},{"x":19,"y":404.9659},{"x":20,"y":409.1248},{"x":21,"y":413.3365},{"x":22,"y":415.7244},{"x":23,"y":417.682},{"x":24,"y":418.4909},{"x":25,"y":419.2575},{"x":26,"y":420.2398},{"x":27,"y":421.1289},{"x":28,"y":421.824},{"x":29,"y":423.2846},{"x":30,"y":425.636},{"x":31,"y":426.3901},{"x":32,"y":428.4124},{"x":33,"y":429.6646},{"x":34,"y":429.9736},{"x":35,"y":430.6096},{"x":36,"y":430.1823},{"x":37,"y":429.0452},{"x":38,"y":426.6607},{"x":39,"y":423.7124},{"x":40,"y":420.2925},{"x":41,"y":416.5521},{"x":42,"y":413.1852},{"x":43,"y":411.0173},{"x":44,"y":409.1146},{"x":45,"y":407.8484},{"x":46,"y":406.0724},{"x":47,"y":404.7061},{"x":48,"y":403.908},{"x":49,"y":402.6198},{"x":50,"y":400.687},{"x":51,"y":399.5797},{"x":52,"y":399.638},{"x":53,"y":399.1563},{"x":54,"y":397.7003},{"x":55,"y":396.4008},{"x":56,"y":394.9067},{"x":57,"y":391.0736},{"x":58,"y":388.5069},{"x":59,"y":384.5821},{"x":60,"y":380.3568},{"x":61,"y":377.5674},{"x":62,"y":373.4415},{"x":63,"y":369.8718},{"x":64,"y":366.714},{"x":65,"y":363.3653},{"x":66,"y":360.1197},{"x":67,"y":357.0405},{"x":68,"y":354.6639},{"x":69,"y":352.6405},{"x":70,"y":351.2026},{"x":71,"y":349.9003},{"x":72,"y":348.2182},{"x":73,"y":346.2901},{"x":74,"y":344.4846},{"x":75,"y":341.7091},{"x":76,"y":339.161},{"x":77,"y":336.1284},{"x":78,"y":333.2884},{"x":79,"y":329.922},{"x":80,"y":326.4277},{"x":81,"y":323.5492},{"x":82,"y":320.9594},{"x":83,"y":319.265},{"x":84,"y":316.1492},{"x":85,"y":313.1071},{"x":86,"y":311.1015},{"x":87,"y":308.7417},{"x":88,"y":306.4135},{"x":89,"y":304.1751},{"x":90,"y":302.0387},{"x":91,"y":298.6621},{"x":92,"y":294.9564},{"x":93,"y":290.4507},{"x":94,"y":284.9639},{"x":95,"y":278.1515},{"x":96,"y":273.482},{"x":97,"y":269.7171},{"x":98,"y":266.0367},{"x":99,"y":262.0832},{"x":100,"y":258.7819}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴃ(GABA) in Area 45","filename":"GABAᴃ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAB receptor in area 45.** This profile plot shows examplary the course of the GABAB receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴃ(GABA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴃ(GABA) in Area 45"],"datasets":[{"data":[{"x":0,"y":1005.5544},{"x":1,"y":1140.6296},{"x":2,"y":1282.2927},{"x":3,"y":1427.0001},{"x":4,"y":1537.5862},{"x":5,"y":1628.6752},{"x":6,"y":1720.0773},{"x":7,"y":1780.514},{"x":8,"y":1822.415},{"x":9,"y":1871.5799},{"x":10,"y":1922.7094},{"x":11,"y":1956.1988},{"x":12,"y":1995.0287},{"x":13,"y":2029.0892},{"x":14,"y":2051.0292},{"x":15,"y":2073.3927},{"x":16,"y":2086.5145},{"x":17,"y":2100.9911},{"x":18,"y":2114.785},{"x":19,"y":2117.8656},{"x":20,"y":2119.9499},{"x":21,"y":2122.6338},{"x":22,"y":2126.5934},{"x":23,"y":2130.3621},{"x":24,"y":2128.5693},{"x":25,"y":2119.9486},{"x":26,"y":2109.881},{"x":27,"y":2090.9789},{"x":28,"y":2061.8335},{"x":29,"y":2034.1653},{"x":30,"y":2000.8524},{"x":31,"y":1975.8356},{"x":32,"y":1954.9807},{"x":33,"y":1933.406},{"x":34,"y":1904.9711},{"x":35,"y":1877.5919},{"x":36,"y":1848.9845},{"x":37,"y":1813.6243},{"x":38,"y":1779.8701},{"x":39,"y":1750.2535},{"x":40,"y":1721.1585},{"x":41,"y":1696.3829},{"x":42,"y":1670.4723},{"x":43,"y":1648.3853},{"x":44,"y":1625.5198},{"x":45,"y":1608.239},{"x":46,"y":1599.82},{"x":47,"y":1593.3035},{"x":48,"y":1587.853},{"x":49,"y":1586.2885},{"x":50,"y":1587.6321},{"x":51,"y":1592.5324},{"x":52,"y":1599.0063},{"x":53,"y":1603.4052},{"x":54,"y":1614.2161},{"x":55,"y":1613.4045},{"x":56,"y":1608.3359},{"x":57,"y":1600.0201},{"x":58,"y":1586.2777},{"x":59,"y":1570.8167},{"x":60,"y":1556.1897},{"x":61,"y":1534.6709},{"x":62,"y":1517.2144},{"x":63,"y":1503.299},{"x":64,"y":1490.5743},{"x":65,"y":1477.577},{"x":66,"y":1464.6239},{"x":67,"y":1456.9567},{"x":68,"y":1451.543},{"x":69,"y":1456.3787},{"x":70,"y":1457.9518},{"x":71,"y":1475.7819},{"x":72,"y":1492.3323},{"x":73,"y":1520.6312},{"x":74,"y":1553.3891},{"x":75,"y":1584.1544},{"x":76,"y":1614.3661},{"x":77,"y":1635.184},{"x":78,"y":1653.5622},{"x":79,"y":1667.6292},{"x":80,"y":1678.3806},{"x":81,"y":1679.2344},{"x":82,"y":1678.8372},{"x":83,"y":1677.2387},{"x":84,"y":1679.506},{"x":85,"y":1682.4859},{"x":86,"y":1675.7679},{"x":87,"y":1660.1836},{"x":88,"y":1638.2992},{"x":89,"y":1612.9416},{"x":90,"y":1583.2615},{"x":91,"y":1554.9181},{"x":92,"y":1527.0889},{"x":93,"y":1503.3339},{"x":94,"y":1477.0244},{"x":95,"y":1446.2743},{"x":96,"y":1419.2013},{"x":97,"y":1388.1481},{"x":98,"y":1349.6414},{"x":99,"y":1313.3331},{"x":100,"y":1274.671}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null}]],["Density measurements of different receptors for Area 7A",[{"name":"Receptor density fingerprint of Area 7A","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["327","387","933","2040","1490","1738","2493","471","253","739","55","255","730","217","394","88"]},{"label":"mean_sd","data":["136","327","315","1327","549","634","1007","175","70","371","34","165","252","87","224","41"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 7A (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(175,238,238,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAᴀ(BZ) in Area 7A","filename":"GABAᴀ(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_BZ.jpg"},{"name":"Sample autoradiograph of α₁(NA) in Area 7A","filename":"α₁(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area 7A","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAᴀ(GABA) in Area 7A","filename":"GABAᴀ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area 7A","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area 7A","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of M₁(ACh) in Area 7A","filename":"M₁(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HT₁ᴀ(5-HT) in Area 7A","filename":"5-HT₁ᴀ(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area 7A","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_kainate.jpg"},{"name":"Sample autoradiograph of M₂(ACh) in Area 7A","filename":"M₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area 7A","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_AMPA.jpg"},{"name":"Sample autoradiograph of D₁(DA) in Area 7A","filename":"D₁(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area 7A","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area 7A","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HT₂(5-HT) in Area 7A","filename":"5-HT₂(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAᴃ(GABA) in Area 7A","filename":"GABAᴃ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_GABAB.jpg"},{"name":"Sample profile of GABAᴀ(BZ) in Area 7A","filename":"GABAᴀ(BZ)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(BZ) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(BZ) in Area 7A"],"datasets":[{"data":[{"x":0,"y":663.539},{"x":1,"y":752.8634},{"x":2,"y":871.9389},{"x":3,"y":1098.3071},{"x":4,"y":1300.2764},{"x":5,"y":1359.9664},{"x":6,"y":1537.4431},{"x":7,"y":1723.7547},{"x":8,"y":1876.9231},{"x":9,"y":1959.4494},{"x":10,"y":2050.1882},{"x":11,"y":2166.3914},{"x":12,"y":2276.5378},{"x":13,"y":2335.9971},{"x":14,"y":2402.0258},{"x":15,"y":2519.0376},{"x":16,"y":2607.1689},{"x":17,"y":2669.0358},{"x":18,"y":2765.7592},{"x":19,"y":2864.845},{"x":20,"y":2943.0192},{"x":21,"y":3026.1182},{"x":22,"y":3077.0223},{"x":23,"y":3140.239},{"x":24,"y":3185.3043},{"x":25,"y":3216.7453},{"x":26,"y":3242.3179},{"x":27,"y":3270.7454},{"x":28,"y":3296.7027},{"x":29,"y":3311.2376},{"x":30,"y":3325.7087},{"x":31,"y":3343.813},{"x":32,"y":3358.2682},{"x":33,"y":3363.0345},{"x":34,"y":3359.3941},{"x":35,"y":3342.1894},{"x":36,"y":3319.2095},{"x":37,"y":3295.9588},{"x":38,"y":3261.208},{"x":39,"y":3213.2799},{"x":40,"y":3158.0433},{"x":41,"y":3073.2887},{"x":42,"y":2996.6862},{"x":43,"y":2912.3453},{"x":44,"y":2817.6401},{"x":45,"y":2736.7014},{"x":46,"y":2672.117},{"x":47,"y":2624.4041},{"x":48,"y":2565.9559},{"x":49,"y":2510.5804},{"x":50,"y":2464.0681},{"x":51,"y":2408.6072},{"x":52,"y":2357.4098},{"x":53,"y":2316.1774},{"x":54,"y":2275.7995},{"x":55,"y":2239.1028},{"x":56,"y":2213.0319},{"x":57,"y":2192.9383},{"x":58,"y":2173.8939},{"x":59,"y":2152.2656},{"x":60,"y":2130.8386},{"x":61,"y":2105.0342},{"x":62,"y":2072.1947},{"x":63,"y":2051.3312},{"x":64,"y":2023.5314},{"x":65,"y":1988.2613},{"x":66,"y":1952.1707},{"x":67,"y":1927.6988},{"x":68,"y":1903.5798},{"x":69,"y":1876.4679},{"x":70,"y":1852.6695},{"x":71,"y":1834.4395},{"x":72,"y":1821.0351},{"x":73,"y":1809.7367},{"x":74,"y":1803.0215},{"x":75,"y":1795.4408},{"x":76,"y":1789.3414},{"x":77,"y":1781.8507},{"x":78,"y":1776.5435},{"x":79,"y":1770.8319},{"x":80,"y":1762.5341},{"x":81,"y":1750.7678},{"x":82,"y":1733.7874},{"x":83,"y":1711.1019},{"x":84,"y":1691.6025},{"x":85,"y":1659.384},{"x":86,"y":1608.8117},{"x":87,"y":1575.5129},{"x":88,"y":1537.8691},{"x":89,"y":1461.1373},{"x":90,"y":1370.9544},{"x":91,"y":1300.9845},{"x":92,"y":1238.4245},{"x":93,"y":1134.4825},{"x":94,"y":1024.7995},{"x":95,"y":933.0514},{"x":96,"y":904.9452},{"x":97,"y":821.7994},{"x":98,"y":723.583},{"x":99,"y":665.7601},{"x":100,"y":617.7757}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of α₁(NA) in Area 7A","filename":"α₁(NA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₁(NA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₁(NA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":151.1982},{"x":1,"y":167.9588},{"x":2,"y":180.7446},{"x":3,"y":209.3757},{"x":4,"y":234.6896},{"x":5,"y":247.0121},{"x":6,"y":259.9775},{"x":7,"y":276.313},{"x":8,"y":292.8569},{"x":9,"y":307.6324},{"x":10,"y":314.6665},{"x":11,"y":317.5765},{"x":12,"y":323.5495},{"x":13,"y":329.3788},{"x":14,"y":333.624},{"x":15,"y":337.7094},{"x":16,"y":343.0088},{"x":17,"y":345.7185},{"x":18,"y":345.7708},{"x":19,"y":345.34},{"x":20,"y":342.5929},{"x":21,"y":339.5283},{"x":22,"y":334.1857},{"x":23,"y":329.4968},{"x":24,"y":325.7451},{"x":25,"y":321.0262},{"x":26,"y":315.8866},{"x":27,"y":313.555},{"x":28,"y":309.564},{"x":29,"y":304.9244},{"x":30,"y":301.1883},{"x":31,"y":299.1027},{"x":32,"y":295.3722},{"x":33,"y":292.4578},{"x":34,"y":289.8857},{"x":35,"y":288.1151},{"x":36,"y":287.7071},{"x":37,"y":286.264},{"x":38,"y":283.7241},{"x":39,"y":281.7018},{"x":40,"y":280.0032},{"x":41,"y":276.4685},{"x":42,"y":274.8314},{"x":43,"y":272.648},{"x":44,"y":271.053},{"x":45,"y":267.845},{"x":46,"y":264.7229},{"x":47,"y":261.6784},{"x":48,"y":259.0415},{"x":49,"y":254.4292},{"x":50,"y":249.1945},{"x":51,"y":243.9464},{"x":52,"y":237.1176},{"x":53,"y":234.2906},{"x":54,"y":229.7013},{"x":55,"y":223.725},{"x":56,"y":219.4258},{"x":57,"y":218.27},{"x":58,"y":216.7424},{"x":59,"y":217.2732},{"x":60,"y":221.3406},{"x":61,"y":222.8124},{"x":62,"y":225.8965},{"x":63,"y":230.6049},{"x":64,"y":233.7853},{"x":65,"y":234.0624},{"x":66,"y":236.9654},{"x":67,"y":237.9515},{"x":68,"y":237.1583},{"x":69,"y":235.7405},{"x":70,"y":235.0882},{"x":71,"y":236.4694},{"x":72,"y":238.1819},{"x":73,"y":239.3653},{"x":74,"y":240.0334},{"x":75,"y":243.7328},{"x":76,"y":248.7648},{"x":77,"y":250.6977},{"x":78,"y":256.4478},{"x":79,"y":263.7341},{"x":80,"y":269.4329},{"x":81,"y":272.9431},{"x":82,"y":273.2535},{"x":83,"y":272.8054},{"x":84,"y":269.2076},{"x":85,"y":261.1283},{"x":86,"y":256.163},{"x":87,"y":248.0658},{"x":88,"y":240.6242},{"x":89,"y":229.6725},{"x":90,"y":225.1961},{"x":91,"y":216.5756},{"x":92,"y":205.4539},{"x":93,"y":196.2495},{"x":94,"y":187.3501},{"x":95,"y":179.1233},{"x":96,"y":176.3328},{"x":97,"y":163.8241},{"x":98,"y":149.2057},{"x":99,"y":142.1163},{"x":100,"y":132.4732}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area 7A","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area 7A"],"datasets":[{"data":[{"x":0,"y":227.9966},{"x":1,"y":260.1266},{"x":2,"y":312.0763},{"x":3,"y":414.6762},{"x":4,"y":490.9821},{"x":5,"y":513.4323},{"x":6,"y":561.5589},{"x":7,"y":600.4185},{"x":8,"y":610.9572},{"x":9,"y":640.1746},{"x":10,"y":805.0683},{"x":11,"y":831.3194},{"x":12,"y":851.5793},{"x":13,"y":860.5195},{"x":14,"y":863.3874},{"x":15,"y":877.9134},{"x":16,"y":886.6789},{"x":17,"y":891.857},{"x":18,"y":899.2275},{"x":19,"y":898.8455},{"x":20,"y":895.2042},{"x":21,"y":900.0077},{"x":22,"y":912.3623},{"x":23,"y":922.4453},{"x":24,"y":924.3774},{"x":25,"y":923.0026},{"x":26,"y":920.5417},{"x":27,"y":908.0752},{"x":28,"y":902.868},{"x":29,"y":893.4912},{"x":30,"y":895.781},{"x":31,"y":902.2439},{"x":32,"y":909.2903},{"x":33,"y":919.912},{"x":34,"y":925.0444},{"x":35,"y":920.5286},{"x":36,"y":909.8859},{"x":37,"y":904.182},{"x":38,"y":895.9315},{"x":39,"y":872.0172},{"x":40,"y":861.0069},{"x":41,"y":836.2822},{"x":42,"y":809.4185},{"x":43,"y":806.4975},{"x":44,"y":803.9193},{"x":45,"y":809.979},{"x":46,"y":819.136},{"x":47,"y":809.1287},{"x":48,"y":811.6801},{"x":49,"y":809.7502},{"x":50,"y":801.0422},{"x":51,"y":796.4513},{"x":52,"y":801.6047},{"x":53,"y":802.4903},{"x":54,"y":799.5808},{"x":55,"y":791.7419},{"x":56,"y":782.1892},{"x":57,"y":768.3173},{"x":58,"y":761.1379},{"x":59,"y":754.6662},{"x":60,"y":750.5267},{"x":61,"y":746.3632},{"x":62,"y":752.628},{"x":63,"y":754.018},{"x":64,"y":741.9876},{"x":65,"y":718.1295},{"x":66,"y":700.2568},{"x":67,"y":694.647},{"x":68,"y":692.1945},{"x":69,"y":704.0222},{"x":70,"y":720.6166},{"x":71,"y":735.6487},{"x":72,"y":734.1254},{"x":73,"y":733.8152},{"x":74,"y":733.1211},{"x":75,"y":725.1063},{"x":76,"y":725.3215},{"x":77,"y":723.1042},{"x":78,"y":710.1375},{"x":79,"y":706.906},{"x":80,"y":704.8816},{"x":81,"y":692.3977},{"x":82,"y":690.9053},{"x":83,"y":683.7458},{"x":84,"y":682.2311},{"x":85,"y":682.1647},{"x":86,"y":680.3273},{"x":87,"y":677.0761},{"x":88,"y":676.8538},{"x":89,"y":663.8228},{"x":90,"y":641.4838},{"x":91,"y":592.7274},{"x":92,"y":530.0127},{"x":93,"y":497.9832},{"x":94,"y":489.8614},{"x":95,"y":482.0792},{"x":96,"y":450.2751},{"x":97,"y":429.2006},{"x":98,"y":427.9265},{"x":99,"y":392.5824},{"x":100,"y":344.8273}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴀ(GABA) in Area 7A","filename":"GABAᴀ(GABA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(GABA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(GABA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":633.2543},{"x":1,"y":683.8895},{"x":2,"y":733.8831},{"x":3,"y":817.8773},{"x":4,"y":913.5019},{"x":5,"y":962.923},{"x":6,"y":1029.0366},{"x":7,"y":1115.5869},{"x":8,"y":1181.192},{"x":9,"y":1215.1331},{"x":10,"y":1256.9819},{"x":11,"y":1323.7506},{"x":12,"y":1391.0358},{"x":13,"y":1438.3863},{"x":14,"y":1473.8055},{"x":15,"y":1529.6385},{"x":16,"y":1593.784},{"x":17,"y":1645.9451},{"x":18,"y":1674.4854},{"x":19,"y":1713.1953},{"x":20,"y":1761.9109},{"x":21,"y":1803.5934},{"x":22,"y":1815.8655},{"x":23,"y":1844.8328},{"x":24,"y":1875.7601},{"x":25,"y":1900.514},{"x":26,"y":1913.0381},{"x":27,"y":1915.5459},{"x":28,"y":1927.6898},{"x":29,"y":1946.5079},{"x":30,"y":1949.7002},{"x":31,"y":1946.5862},{"x":32,"y":1933.0266},{"x":33,"y":1917.4317},{"x":34,"y":1911.9525},{"x":35,"y":1897.0949},{"x":36,"y":1864.5121},{"x":37,"y":1832.8557},{"x":38,"y":1818.4731},{"x":39,"y":1786.3761},{"x":40,"y":1753.9339},{"x":41,"y":1717.9174},{"x":42,"y":1701.4803},{"x":43,"y":1675.9082},{"x":44,"y":1639.8605},{"x":45,"y":1609.1988},{"x":46,"y":1585.0067},{"x":47,"y":1563.7425},{"x":48,"y":1520.0845},{"x":49,"y":1472.4049},{"x":50,"y":1445.4671},{"x":51,"y":1409.7009},{"x":52,"y":1382.6194},{"x":53,"y":1368.7174},{"x":54,"y":1367.3614},{"x":55,"y":1355.4199},{"x":56,"y":1337.8691},{"x":57,"y":1327.0411},{"x":58,"y":1319.947},{"x":59,"y":1305.888},{"x":60,"y":1279.8923},{"x":61,"y":1243.9255},{"x":62,"y":1225.4457},{"x":63,"y":1219.6575},{"x":64,"y":1194.7077},{"x":65,"y":1170.3944},{"x":66,"y":1156.6991},{"x":67,"y":1151.1224},{"x":68,"y":1135.6361},{"x":69,"y":1117.7497},{"x":70,"y":1102.9007},{"x":71,"y":1094.3394},{"x":72,"y":1087.649},{"x":73,"y":1077.8298},{"x":74,"y":1069.0679},{"x":75,"y":1057.8355},{"x":76,"y":1043.0357},{"x":77,"y":1031.6027},{"x":78,"y":1016.6468},{"x":79,"y":1014.9124},{"x":80,"y":1009.3228},{"x":81,"y":992.1571},{"x":82,"y":981.1846},{"x":83,"y":975.0292},{"x":84,"y":965.3488},{"x":85,"y":932.1156},{"x":86,"y":905.011},{"x":87,"y":895.5183},{"x":88,"y":870.3877},{"x":89,"y":830.6858},{"x":90,"y":795.4082},{"x":91,"y":771.3419},{"x":92,"y":742.4899},{"x":93,"y":695.7374},{"x":94,"y":647.5571},{"x":95,"y":604.6211},{"x":96,"y":583.8928},{"x":97,"y":535.3829},{"x":98,"y":491.9205},{"x":99,"y":467.8257},{"x":100,"y":438.1232}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area 7A","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":287.485},{"x":1,"y":323.9207},{"x":2,"y":355.1854},{"x":3,"y":406.9999},{"x":4,"y":446.3021},{"x":5,"y":484.376},{"x":6,"y":497.9161},{"x":7,"y":507.6449},{"x":8,"y":511.2654},{"x":9,"y":506.5552},{"x":10,"y":498.8589},{"x":11,"y":495.4824},{"x":12,"y":489.8124},{"x":13,"y":489.5566},{"x":14,"y":489.9393},{"x":15,"y":494.1125},{"x":16,"y":504.6869},{"x":17,"y":518.426},{"x":18,"y":524.4163},{"x":19,"y":534.2099},{"x":20,"y":546.0606},{"x":21,"y":560.1012},{"x":22,"y":574.3908},{"x":23,"y":579.876},{"x":24,"y":587.7441},{"x":25,"y":600.8418},{"x":26,"y":615.6641},{"x":27,"y":621.802},{"x":28,"y":627.6544},{"x":29,"y":629.3529},{"x":30,"y":628.0793},{"x":31,"y":630.3142},{"x":32,"y":626.9981},{"x":33,"y":624.1968},{"x":34,"y":618.3419},{"x":35,"y":612.0252},{"x":36,"y":603.0811},{"x":37,"y":591.6378},{"x":38,"y":573.8886},{"x":39,"y":563.6174},{"x":40,"y":552.9144},{"x":41,"y":537.4074},{"x":42,"y":529.4972},{"x":43,"y":521.2704},{"x":44,"y":515.5684},{"x":45,"y":501.9214},{"x":46,"y":494.5647},{"x":47,"y":491.4766},{"x":48,"y":490.4517},{"x":49,"y":491.2178},{"x":50,"y":493.6335},{"x":51,"y":494.9937},{"x":52,"y":496.1865},{"x":53,"y":497.0359},{"x":54,"y":500.1779},{"x":55,"y":501.9808},{"x":56,"y":496.7596},{"x":57,"y":491.0044},{"x":58,"y":483.6493},{"x":59,"y":473.5738},{"x":60,"y":459.3373},{"x":61,"y":452.936},{"x":62,"y":446.0854},{"x":63,"y":434.4769},{"x":64,"y":427.8319},{"x":65,"y":420.8046},{"x":66,"y":418.7184},{"x":67,"y":420.1777},{"x":68,"y":420.5275},{"x":69,"y":419.7971},{"x":70,"y":419.1136},{"x":71,"y":415.8936},{"x":72,"y":408.3836},{"x":73,"y":398.0484},{"x":74,"y":393.1448},{"x":75,"y":385.1306},{"x":76,"y":373.5769},{"x":77,"y":365.8039},{"x":78,"y":362.7305},{"x":79,"y":357.5371},{"x":80,"y":350.5533},{"x":81,"y":344.3416},{"x":82,"y":343.9415},{"x":83,"y":343.2905},{"x":84,"y":339.7408},{"x":85,"y":331.7992},{"x":86,"y":324.7165},{"x":87,"y":318.9469},{"x":88,"y":304.6224},{"x":89,"y":287.7717},{"x":90,"y":276.7229},{"x":91,"y":266.0581},{"x":92,"y":251.5404},{"x":93,"y":238.0793},{"x":94,"y":229.0837},{"x":95,"y":222.7677},{"x":96,"y":208.9835},{"x":97,"y":192.3791},{"x":98,"y":170.9256},{"x":99,"y":158.565},{"x":100,"y":142.0767}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area 7A","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area 7A"],"datasets":[{"data":[{"x":0,"y":16.2196},{"x":1,"y":18.623},{"x":2,"y":21.2825},{"x":3,"y":22.1199},{"x":4,"y":24.2586},{"x":5,"y":29.259},{"x":6,"y":31.8485},{"x":7,"y":34.6942},{"x":8,"y":37.9384},{"x":9,"y":38.0038},{"x":10,"y":36.569},{"x":11,"y":35.3809},{"x":12,"y":35.0293},{"x":13,"y":33.7838},{"x":14,"y":33.5527},{"x":15,"y":32.957},{"x":16,"y":34.0727},{"x":17,"y":34.848},{"x":18,"y":32.9535},{"x":19,"y":30.2609},{"x":20,"y":29.1827},{"x":21,"y":26.0969},{"x":22,"y":25.0696},{"x":23,"y":23.5956},{"x":24,"y":23.6397},{"x":25,"y":25.2483},{"x":26,"y":26.0559},{"x":27,"y":26.4713},{"x":28,"y":27.2641},{"x":29,"y":26.4122},{"x":30,"y":25.6611},{"x":31,"y":24.7922},{"x":32,"y":24.7539},{"x":33,"y":24.8243},{"x":34,"y":25.8481},{"x":35,"y":28.3815},{"x":36,"y":31.4486},{"x":37,"y":32.5446},{"x":38,"y":33.3392},{"x":39,"y":34.5921},{"x":40,"y":34.5468},{"x":41,"y":35.1758},{"x":42,"y":34.9421},{"x":43,"y":33.375},{"x":44,"y":32.0848},{"x":45,"y":30.3217},{"x":46,"y":29.9827},{"x":47,"y":26.7384},{"x":48,"y":20.7231},{"x":49,"y":18.3694},{"x":50,"y":18.7271},{"x":51,"y":17.8191},{"x":52,"y":17.5363},{"x":53,"y":19.2476},{"x":54,"y":19.5426},{"x":55,"y":20.2188},{"x":56,"y":23.112},{"x":57,"y":26.35},{"x":58,"y":28.4336},{"x":59,"y":29.6557},{"x":60,"y":31.1873},{"x":61,"y":32.0824},{"x":62,"y":32.0225},{"x":63,"y":31.2771},{"x":64,"y":31.2681},{"x":65,"y":30.8967},{"x":66,"y":30.0159},{"x":67,"y":29.5928},{"x":68,"y":29.8552},{"x":69,"y":29.6338},{"x":70,"y":29.3096},{"x":71,"y":29.8545},{"x":72,"y":30.439},{"x":73,"y":31.4543},{"x":74,"y":32.4313},{"x":75,"y":32.571},{"x":76,"y":31.993},{"x":77,"y":31.273},{"x":78,"y":31.3937},{"x":79,"y":31.3067},{"x":80,"y":32.3891},{"x":81,"y":33.3738},{"x":82,"y":31.73},{"x":83,"y":30.142},{"x":84,"y":28.7389},{"x":85,"y":26.1794},{"x":86,"y":25.5832},{"x":87,"y":24.709},{"x":88,"y":22.6134},{"x":89,"y":21.3432},{"x":90,"y":22.0623},{"x":91,"y":21.777},{"x":92,"y":20.1682},{"x":93,"y":22.4356},{"x":94,"y":21.2946},{"x":95,"y":16.7963},{"x":96,"y":13.4095},{"x":97,"y":10.1954},{"x":98,"y":8.3018},{"x":99,"y":7.8181},{"x":100,"y":8.4898}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of M₁(ACh) in Area 7A","filename":"M₁(ACh)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₁(ACh) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₁(ACh) in Area 7A"],"datasets":[{"data":[{"x":0,"y":382.3219},{"x":1,"y":438.3244},{"x":2,"y":525.1396},{"x":3,"y":642.9287},{"x":4,"y":723.291},{"x":5,"y":747.786},{"x":6,"y":796.3545},{"x":7,"y":836.167},{"x":8,"y":858.2237},{"x":9,"y":877.5671},{"x":10,"y":905.5817},{"x":11,"y":943.4378},{"x":12,"y":957.1879},{"x":13,"y":972.0211},{"x":14,"y":991.6481},{"x":15,"y":999.2225},{"x":16,"y":1001.7807},{"x":17,"y":996.5057},{"x":18,"y":991.1604},{"x":19,"y":990.3797},{"x":20,"y":988.3148},{"x":21,"y":984.3874},{"x":22,"y":973.9103},{"x":23,"y":965.1029},{"x":24,"y":955.8308},{"x":25,"y":947.6097},{"x":26,"y":946.8864},{"x":27,"y":949.9137},{"x":28,"y":952.3448},{"x":29,"y":951.2108},{"x":30,"y":942.2136},{"x":31,"y":930.2366},{"x":32,"y":921.215},{"x":33,"y":900.6559},{"x":34,"y":887.3783},{"x":35,"y":876.8349},{"x":36,"y":863.58},{"x":37,"y":841.8048},{"x":38,"y":820.5465},{"x":39,"y":804.5433},{"x":40,"y":777.6351},{"x":41,"y":743.3054},{"x":42,"y":719.2131},{"x":43,"y":690.1274},{"x":44,"y":669.1188},{"x":45,"y":656.207},{"x":46,"y":642.16},{"x":47,"y":633.1034},{"x":48,"y":637.0209},{"x":49,"y":642.5582},{"x":50,"y":650.6476},{"x":51,"y":658.2378},{"x":52,"y":667.8891},{"x":53,"y":673.6998},{"x":54,"y":677.3347},{"x":55,"y":677.9197},{"x":56,"y":680.334},{"x":57,"y":686.7457},{"x":58,"y":695.4823},{"x":59,"y":702.1373},{"x":60,"y":712.301},{"x":61,"y":715.7087},{"x":62,"y":708.5097},{"x":63,"y":701.6702},{"x":64,"y":691.9411},{"x":65,"y":671.646},{"x":66,"y":652.6915},{"x":67,"y":642.6635},{"x":68,"y":637.9381},{"x":69,"y":638.2236},{"x":70,"y":637.9743},{"x":71,"y":636.6224},{"x":72,"y":635.8584},{"x":73,"y":632.9066},{"x":74,"y":628.4894},{"x":75,"y":629.1575},{"x":76,"y":629.3483},{"x":77,"y":633.039},{"x":78,"y":632.1897},{"x":79,"y":628.5441},{"x":80,"y":620.6626},{"x":81,"y":610.0377},{"x":82,"y":605.1272},{"x":83,"y":607.4589},{"x":84,"y":607.969},{"x":85,"y":606.0623},{"x":86,"y":600.9026},{"x":87,"y":595.6902},{"x":88,"y":577.2762},{"x":89,"y":540.8229},{"x":90,"y":516.11},{"x":91,"y":497.9378},{"x":92,"y":450.5715},{"x":93,"y":411.9622},{"x":94,"y":392.5805},{"x":95,"y":376.4116},{"x":96,"y":349.2774},{"x":97,"y":322.4285},{"x":98,"y":305.8261},{"x":99,"y":281.4086},{"x":100,"y":254.1402}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₁ᴀ(5-HT) in Area 7A","filename":"5-HT₁ᴀ(5-HT)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₁ᴀ(5-HT) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₁ᴀ(5-HT) in Area 7A"],"datasets":[{"data":[{"x":0,"y":139.9628},{"x":1,"y":159.4456},{"x":2,"y":173.6681},{"x":3,"y":205.9561},{"x":4,"y":243.5842},{"x":5,"y":258.3094},{"x":6,"y":274.8404},{"x":7,"y":302.1868},{"x":8,"y":327.0849},{"x":9,"y":339.5041},{"x":10,"y":345.5591},{"x":11,"y":360.8777},{"x":12,"y":382.4319},{"x":13,"y":396.7576},{"x":14,"y":405.4409},{"x":15,"y":410.1708},{"x":16,"y":416.519},{"x":17,"y":417.4106},{"x":18,"y":417.3862},{"x":19,"y":413.7091},{"x":20,"y":402.3244},{"x":21,"y":389.7984},{"x":22,"y":378.7112},{"x":23,"y":370.6574},{"x":24,"y":357.4796},{"x":25,"y":339.2121},{"x":26,"y":316.3164},{"x":27,"y":303.4193},{"x":28,"y":289.1645},{"x":29,"y":264.6483},{"x":30,"y":244.9837},{"x":31,"y":235.0097},{"x":32,"y":220.8909},{"x":33,"y":199.5047},{"x":34,"y":182.9034},{"x":35,"y":172.3891},{"x":36,"y":165.8176},{"x":37,"y":155.114},{"x":38,"y":146.7524},{"x":39,"y":137.171},{"x":40,"y":133.4841},{"x":41,"y":128.4862},{"x":42,"y":122.8328},{"x":43,"y":119.2062},{"x":44,"y":123.0689},{"x":45,"y":124.4356},{"x":46,"y":124.4356},{"x":47,"y":124.7959},{"x":48,"y":122.8447},{"x":49,"y":120.9847},{"x":50,"y":117.7807},{"x":51,"y":116.545},{"x":52,"y":117.8415},{"x":53,"y":120.6954},{"x":54,"y":124.0505},{"x":55,"y":129.6019},{"x":56,"y":131.9711},{"x":57,"y":132.3113},{"x":58,"y":133.1741},{"x":59,"y":134.8043},{"x":60,"y":130.7193},{"x":61,"y":124.7211},{"x":62,"y":119.233},{"x":63,"y":113.6246},{"x":64,"y":107.1462},{"x":65,"y":99.4469},{"x":66,"y":95.3613},{"x":67,"y":94.5086},{"x":68,"y":94.3806},{"x":69,"y":90.7424},{"x":70,"y":87.5501},{"x":71,"y":85.4694},{"x":72,"y":83.4803},{"x":73,"y":80.3618},{"x":74,"y":76.4014},{"x":75,"y":75.6064},{"x":76,"y":75.1677},{"x":77,"y":70.9984},{"x":78,"y":66.679},{"x":79,"y":64.1909},{"x":80,"y":62.5636},{"x":81,"y":62.8862},{"x":82,"y":64.1567},{"x":83,"y":62.5512},{"x":84,"y":58.6145},{"x":85,"y":55.8612},{"x":86,"y":49.0966},{"x":87,"y":44.6165},{"x":88,"y":44.0364},{"x":89,"y":42.8588},{"x":90,"y":41.277},{"x":91,"y":39.5338},{"x":92,"y":37.5767},{"x":93,"y":34.2379},{"x":94,"y":31.4925},{"x":95,"y":36.1056},{"x":96,"y":37.7222},{"x":97,"y":37.3067},{"x":98,"y":35.1788},{"x":99,"y":30.4756},{"x":100,"y":26.7841}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of kainate (Glu) in Area 7A","filename":"kainate (Glu)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of kainate (Glu) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of kainate (Glu) in Area 7A"],"datasets":[{"data":[{"x":0,"y":251.0298},{"x":1,"y":276.7229},{"x":2,"y":323.8144},{"x":3,"y":377.3279},{"x":4,"y":409.3778},{"x":5,"y":427.005},{"x":6,"y":470.8358},{"x":7,"y":510.8359},{"x":8,"y":527.2009},{"x":9,"y":538.767},{"x":10,"y":555.7251},{"x":11,"y":571.3581},{"x":12,"y":586.5456},{"x":13,"y":593.2975},{"x":14,"y":599.0479},{"x":15,"y":600.0229},{"x":16,"y":597.5062},{"x":17,"y":589.7764},{"x":18,"y":574.6197},{"x":19,"y":564.1533},{"x":20,"y":561.3965},{"x":21,"y":548.2548},{"x":22,"y":531.669},{"x":23,"y":519.1976},{"x":24,"y":517.561},{"x":25,"y":513.3273},{"x":26,"y":505.345},{"x":27,"y":502.7763},{"x":28,"y":498.0292},{"x":29,"y":489.3411},{"x":30,"y":487.7708},{"x":31,"y":491.6979},{"x":32,"y":493.7672},{"x":33,"y":495.091},{"x":34,"y":500.831},{"x":35,"y":502.5232},{"x":36,"y":499.8632},{"x":37,"y":493.6959},{"x":38,"y":488.9429},{"x":39,"y":487.3495},{"x":40,"y":483.8299},{"x":41,"y":479.8632},{"x":42,"y":483.3104},{"x":43,"y":481.6235},{"x":44,"y":482.1299},{"x":45,"y":485.1353},{"x":46,"y":487.6038},{"x":47,"y":487.2922},{"x":48,"y":488.1},{"x":49,"y":490.7919},{"x":50,"y":491.9073},{"x":51,"y":491.354},{"x":52,"y":493.5581},{"x":53,"y":505.4464},{"x":54,"y":512.3731},{"x":55,"y":526.7837},{"x":56,"y":541.9906},{"x":57,"y":560.2633},{"x":58,"y":566.3225},{"x":59,"y":577.4442},{"x":60,"y":584.235},{"x":61,"y":578.5537},{"x":62,"y":570.2319},{"x":63,"y":558.1292},{"x":64,"y":545.7895},{"x":65,"y":537.263},{"x":66,"y":532.8748},{"x":67,"y":527.3047},{"x":68,"y":529.2707},{"x":69,"y":533.4476},{"x":70,"y":533.1249},{"x":71,"y":535.3997},{"x":72,"y":542.1088},{"x":73,"y":546.3172},{"x":74,"y":550.6567},{"x":75,"y":554.8595},{"x":76,"y":560.8036},{"x":77,"y":564.2271},{"x":78,"y":573.2995},{"x":79,"y":586.0712},{"x":80,"y":594.3494},{"x":81,"y":595.4835},{"x":82,"y":601.0798},{"x":83,"y":608.2318},{"x":84,"y":606.8465},{"x":85,"y":603.6826},{"x":86,"y":594.543},{"x":87,"y":581.347},{"x":88,"y":564.5142},{"x":89,"y":547.7568},{"x":90,"y":520.4909},{"x":91,"y":489.785},{"x":92,"y":468.5371},{"x":93,"y":451.9617},{"x":94,"y":425.3122},{"x":95,"y":399.4838},{"x":96,"y":388.217},{"x":97,"y":369.3565},{"x":98,"y":333.0285},{"x":99,"y":300.525},{"x":100,"y":274.4998}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of M₂(ACh) in Area 7A","filename":"M₂(ACh)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₂(ACh) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₂(ACh) in Area 7A"],"datasets":[{"data":[{"x":0,"y":114.8929},{"x":1,"y":130.3703},{"x":2,"y":144.0927},{"x":3,"y":170.4441},{"x":4,"y":195.7123},{"x":5,"y":206.5739},{"x":6,"y":222.8406},{"x":7,"y":239.9028},{"x":8,"y":247.2082},{"x":9,"y":254.2513},{"x":10,"y":264.1531},{"x":11,"y":276.0237},{"x":12,"y":283.3915},{"x":13,"y":287.4534},{"x":14,"y":294.442},{"x":15,"y":300.26},{"x":16,"y":305.8507},{"x":17,"y":310.466},{"x":18,"y":319.1073},{"x":19,"y":324.0618},{"x":20,"y":329.1759},{"x":21,"y":335.5972},{"x":22,"y":340.5558},{"x":23,"y":342.1647},{"x":24,"y":340.6717},{"x":25,"y":338.7729},{"x":26,"y":334.0883},{"x":27,"y":334.2105},{"x":28,"y":336.9638},{"x":29,"y":337.3929},{"x":30,"y":342.817},{"x":31,"y":347.1665},{"x":32,"y":352.3684},{"x":33,"y":358.0049},{"x":34,"y":361.7798},{"x":35,"y":366.2793},{"x":36,"y":369.133},{"x":37,"y":369.9137},{"x":38,"y":371.1053},{"x":39,"y":370.28},{"x":40,"y":369.7033},{"x":41,"y":366.8806},{"x":42,"y":361.1273},{"x":43,"y":352.8706},{"x":44,"y":347.936},{"x":45,"y":342.8508},{"x":46,"y":338.9172},{"x":47,"y":332.2496},{"x":48,"y":323.4147},{"x":49,"y":315.4865},{"x":50,"y":309.0126},{"x":51,"y":301.6881},{"x":52,"y":297.204},{"x":53,"y":297.1408},{"x":54,"y":294.9886},{"x":55,"y":291.938},{"x":56,"y":292.2467},{"x":57,"y":295.3064},{"x":58,"y":298.4452},{"x":59,"y":299.1345},{"x":60,"y":304.7172},{"x":61,"y":305.8713},{"x":62,"y":305.3739},{"x":63,"y":306.9435},{"x":64,"y":307.6885},{"x":65,"y":308.048},{"x":66,"y":307.9314},{"x":67,"y":306.7715},{"x":68,"y":304.9074},{"x":69,"y":304.3974},{"x":70,"y":304.8622},{"x":71,"y":306.6599},{"x":72,"y":308.4472},{"x":73,"y":310.6843},{"x":74,"y":311.2315},{"x":75,"y":311.6819},{"x":76,"y":313.1128},{"x":77,"y":312.8166},{"x":78,"y":307.4156},{"x":79,"y":301.7453},{"x":80,"y":294.3241},{"x":81,"y":281.7214},{"x":82,"y":276.4935},{"x":83,"y":272.8251},{"x":84,"y":270.7132},{"x":85,"y":268.4946},{"x":86,"y":265.4647},{"x":87,"y":262.5601},{"x":88,"y":257.4283},{"x":89,"y":248.0727},{"x":90,"y":241.656},{"x":91,"y":233.9629},{"x":92,"y":215.2836},{"x":93,"y":203.0747},{"x":94,"y":195.0354},{"x":95,"y":186.7481},{"x":96,"y":174.4074},{"x":97,"y":163.5985},{"x":98,"y":157.4363},{"x":99,"y":143.3972},{"x":100,"y":126.4762}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area 7A","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area 7A"],"datasets":[{"data":[{"x":0,"y":165.8269},{"x":1,"y":178.6777},{"x":2,"y":192.29},{"x":3,"y":222.4915},{"x":4,"y":250.8446},{"x":5,"y":261.4638},{"x":6,"y":274.4116},{"x":7,"y":294.6773},{"x":8,"y":307.9743},{"x":9,"y":313.3783},{"x":10,"y":319.7029},{"x":11,"y":331.7129},{"x":12,"y":342.8041},{"x":13,"y":348.4396},{"x":14,"y":358.5806},{"x":15,"y":367.1346},{"x":16,"y":372.7828},{"x":17,"y":377.325},{"x":18,"y":379.1914},{"x":19,"y":380.8765},{"x":20,"y":379.5686},{"x":21,"y":378.6225},{"x":22,"y":377.4324},{"x":23,"y":372.9805},{"x":24,"y":369.8772},{"x":25,"y":364.8685},{"x":26,"y":357.2026},{"x":27,"y":353.5835},{"x":28,"y":349.3376},{"x":29,"y":337.8648},{"x":30,"y":322.7376},{"x":31,"y":314.552},{"x":32,"y":307.8342},{"x":33,"y":300.6247},{"x":34,"y":295.2776},{"x":35,"y":289.2362},{"x":36,"y":286.1694},{"x":37,"y":278.6468},{"x":38,"y":270.4222},{"x":39,"y":264.9096},{"x":40,"y":259.2552},{"x":41,"y":249.823},{"x":42,"y":244.1371},{"x":43,"y":244.0012},{"x":44,"y":244.6413},{"x":45,"y":245.4113},{"x":46,"y":245.3238},{"x":47,"y":246.9841},{"x":48,"y":248.6358},{"x":49,"y":249.6081},{"x":50,"y":249.203},{"x":51,"y":252.759},{"x":52,"y":252.2215},{"x":53,"y":247.2017},{"x":54,"y":241.6193},{"x":55,"y":241.4535},{"x":56,"y":235.9386},{"x":57,"y":235.5753},{"x":58,"y":234.997},{"x":59,"y":231.3455},{"x":60,"y":229.0312},{"x":61,"y":223.6788},{"x":62,"y":218.5157},{"x":63,"y":213.5319},{"x":64,"y":210.5304},{"x":65,"y":210.3188},{"x":66,"y":209.2017},{"x":67,"y":210.7303},{"x":68,"y":214.214},{"x":69,"y":216.1423},{"x":70,"y":218.1638},{"x":71,"y":215.398},{"x":72,"y":207.1968},{"x":73,"y":204.068},{"x":74,"y":199.9659},{"x":75,"y":195.2424},{"x":76,"y":193.9523},{"x":77,"y":193.5182},{"x":78,"y":193.4707},{"x":79,"y":192.9171},{"x":80,"y":190.5196},{"x":81,"y":189.1443},{"x":82,"y":192.7447},{"x":83,"y":199.7749},{"x":84,"y":207.3913},{"x":85,"y":213.3254},{"x":86,"y":216.0479},{"x":87,"y":214.0178},{"x":88,"y":213.0261},{"x":89,"y":208.3971},{"x":90,"y":200.8762},{"x":91,"y":195.1287},{"x":92,"y":189.2882},{"x":93,"y":178.9209},{"x":94,"y":167.766},{"x":95,"y":160.129},{"x":96,"y":153.9663},{"x":97,"y":142.3762},{"x":98,"y":124.4451},{"x":99,"y":115.9433},{"x":100,"y":105.697}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of D₁(DA) in Area 7A","filename":"D₁(DA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of D₁(DA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of D₁(DA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":82.3706},{"x":1,"y":90.3893},{"x":2,"y":100.1785},{"x":3,"y":107.9235},{"x":4,"y":115.6573},{"x":5,"y":119.7377},{"x":6,"y":125.2441},{"x":7,"y":135.2463},{"x":8,"y":141.4176},{"x":9,"y":149.1826},{"x":10,"y":156.189},{"x":11,"y":161.4988},{"x":12,"y":162.4539},{"x":13,"y":162.8742},{"x":14,"y":158.7893},{"x":15,"y":152.0452},{"x":16,"y":143.7672},{"x":17,"y":139.6443},{"x":18,"y":135.1313},{"x":19,"y":131.8678},{"x":20,"y":133.0253},{"x":21,"y":132.6677},{"x":22,"y":134.1043},{"x":23,"y":138.7863},{"x":24,"y":139.8736},{"x":25,"y":140.2394},{"x":26,"y":140.3024},{"x":27,"y":139.8431},{"x":28,"y":139.3562},{"x":29,"y":137.8853},{"x":30,"y":135.2239},{"x":31,"y":135.2929},{"x":32,"y":136.2921},{"x":33,"y":136.809},{"x":34,"y":139.1511},{"x":35,"y":140.9525},{"x":36,"y":140.0342},{"x":37,"y":140.5578},{"x":38,"y":138.7285},{"x":39,"y":134.9028},{"x":40,"y":133.0436},{"x":41,"y":131.1695},{"x":42,"y":129.7595},{"x":43,"y":129.1131},{"x":44,"y":129.6366},{"x":45,"y":131.0113},{"x":46,"y":133.2678},{"x":47,"y":134.9277},{"x":48,"y":134.7854},{"x":49,"y":133.9852},{"x":50,"y":134.0755},{"x":51,"y":133.0952},{"x":52,"y":131.5614},{"x":53,"y":127.3637},{"x":54,"y":126.3117},{"x":55,"y":124.1813},{"x":56,"y":121.5154},{"x":57,"y":121.601},{"x":58,"y":122.3969},{"x":59,"y":123.8415},{"x":60,"y":125.5515},{"x":61,"y":125.2313},{"x":62,"y":124.8034},{"x":63,"y":125.6635},{"x":64,"y":125.1942},{"x":65,"y":122.8819},{"x":66,"y":120.3305},{"x":67,"y":116.2642},{"x":68,"y":112.9832},{"x":69,"y":112.2761},{"x":70,"y":112.2809},{"x":71,"y":112.5116},{"x":72,"y":111.4163},{"x":73,"y":112.6439},{"x":74,"y":114.9792},{"x":75,"y":115.0479},{"x":76,"y":116.3963},{"x":77,"y":118.2606},{"x":78,"y":118.6052},{"x":79,"y":118.6889},{"x":80,"y":117.4169},{"x":81,"y":114.8647},{"x":82,"y":111.1505},{"x":83,"y":107.7304},{"x":84,"y":103.813},{"x":85,"y":99.3413},{"x":86,"y":96.5002},{"x":87,"y":95.5544},{"x":88,"y":93.9831},{"x":89,"y":93.2571},{"x":90,"y":92.6696},{"x":91,"y":90.4918},{"x":92,"y":88.3666},{"x":93,"y":86.7248},{"x":94,"y":84.7815},{"x":95,"y":81.1593},{"x":96,"y":77.5223},{"x":97,"y":72.3289},{"x":98,"y":68.6545},{"x":99,"y":65.8115},{"x":100,"y":60.2677}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area 7A","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area 7A"],"datasets":[{"data":[{"x":0,"y":262.2453},{"x":1,"y":301.3725},{"x":2,"y":329.3785},{"x":3,"y":386.1118},{"x":4,"y":475.2152},{"x":5,"y":536.1097},{"x":6,"y":589.1526},{"x":7,"y":657.6791},{"x":8,"y":712.4421},{"x":9,"y":768.8856},{"x":10,"y":795.4745},{"x":11,"y":809.7042},{"x":12,"y":826.6472},{"x":13,"y":841.0776},{"x":14,"y":853.4719},{"x":15,"y":858.9538},{"x":16,"y":870.4296},{"x":17,"y":883.5447},{"x":18,"y":894.9556},{"x":19,"y":902.2325},{"x":20,"y":905.7851},{"x":21,"y":909.5306},{"x":22,"y":915.3387},{"x":23,"y":920.2709},{"x":24,"y":922.1055},{"x":25,"y":924.6335},{"x":26,"y":927.0689},{"x":27,"y":929.3031},{"x":28,"y":928.8533},{"x":29,"y":926.8713},{"x":30,"y":924.2145},{"x":31,"y":917.6357},{"x":32,"y":909.5613},{"x":33,"y":901.5776},{"x":34,"y":890.1075},{"x":35,"y":875.7447},{"x":36,"y":864.8834},{"x":37,"y":859.2525},{"x":38,"y":847.3905},{"x":39,"y":834.7358},{"x":40,"y":824.5601},{"x":41,"y":816.5769},{"x":42,"y":810.4789},{"x":43,"y":801.391},{"x":44,"y":788.5195},{"x":45,"y":774.7673},{"x":46,"y":766.4622},{"x":47,"y":752.2814},{"x":48,"y":738.4437},{"x":49,"y":726.1303},{"x":50,"y":714.7208},{"x":51,"y":699.2138},{"x":52,"y":686.8},{"x":53,"y":678.7894},{"x":54,"y":674.8372},{"x":55,"y":673.9734},{"x":56,"y":674.6517},{"x":57,"y":677.2477},{"x":58,"y":681.0908},{"x":59,"y":682.8671},{"x":60,"y":683.0743},{"x":61,"y":676.4656},{"x":62,"y":666.0216},{"x":63,"y":657.1697},{"x":64,"y":651.5592},{"x":65,"y":641.6641},{"x":66,"y":631.0699},{"x":67,"y":624.5821},{"x":68,"y":619.1694},{"x":69,"y":613.6037},{"x":70,"y":611.3418},{"x":71,"y":608.9645},{"x":72,"y":610.0555},{"x":73,"y":610.7931},{"x":74,"y":614.8636},{"x":75,"y":619.8534},{"x":76,"y":625.8974},{"x":77,"y":628.9361},{"x":78,"y":635.588},{"x":79,"y":637.0061},{"x":80,"y":636.0802},{"x":81,"y":631.3841},{"x":82,"y":620.7328},{"x":83,"y":604.283},{"x":84,"y":581.6371},{"x":85,"y":560.7332},{"x":86,"y":546.1187},{"x":87,"y":518.6196},{"x":88,"y":489.1823},{"x":89,"y":460.297},{"x":90,"y":443.2595},{"x":91,"y":421.1332},{"x":92,"y":386.9171},{"x":93,"y":360.6118},{"x":94,"y":330.4156},{"x":95,"y":309.4416},{"x":96,"y":284.8695},{"x":97,"y":244.7918},{"x":98,"y":217.7168},{"x":99,"y":204.6012},{"x":100,"y":187.0507}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area 7A","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area 7A"],"datasets":[{"data":[{"x":0,"y":1276.6393},{"x":1,"y":1416.6576},{"x":2,"y":1600.8501},{"x":3,"y":1799.8068},{"x":4,"y":1975.4301},{"x":5,"y":2019.5139},{"x":6,"y":2138.103},{"x":7,"y":2271.7284},{"x":8,"y":2333.6814},{"x":9,"y":2354.3451},{"x":10,"y":2421.0831},{"x":11,"y":2448.349},{"x":12,"y":2489.6455},{"x":13,"y":2518.603},{"x":14,"y":2564.8087},{"x":15,"y":2661.2743},{"x":16,"y":2785.5394},{"x":17,"y":2846.3764},{"x":18,"y":2922.1705},{"x":19,"y":3017.1913},{"x":20,"y":3065.413},{"x":21,"y":3103.0527},{"x":22,"y":3136.0391},{"x":23,"y":3136.3974},{"x":24,"y":3112.5531},{"x":25,"y":3095.9034},{"x":26,"y":3044.3648},{"x":27,"y":2978.9985},{"x":28,"y":2897.3784},{"x":29,"y":2841.3434},{"x":30,"y":2813.4762},{"x":31,"y":2781.1183},{"x":32,"y":2767.6111},{"x":33,"y":2739.491},{"x":34,"y":2725.6216},{"x":35,"y":2719.2591},{"x":36,"y":2689.2281},{"x":37,"y":2650.694},{"x":38,"y":2607.8615},{"x":39,"y":2519.3011},{"x":40,"y":2430.6736},{"x":41,"y":2398.404},{"x":42,"y":2316.0988},{"x":43,"y":2187.962},{"x":44,"y":2045.462},{"x":45,"y":1945.3265},{"x":46,"y":1852.3396},{"x":47,"y":1762.6735},{"x":48,"y":1655.1016},{"x":49,"y":1578.7541},{"x":50,"y":1543.3275},{"x":51,"y":1529.6925},{"x":52,"y":1528.9028},{"x":53,"y":1544.0347},{"x":54,"y":1535.05},{"x":55,"y":1545.5799},{"x":56,"y":1532.2462},{"x":57,"y":1528.5048},{"x":58,"y":1551.9414},{"x":59,"y":1597.5022},{"x":60,"y":1658.9033},{"x":61,"y":1700.5322},{"x":62,"y":1737.582},{"x":63,"y":1735.3384},{"x":64,"y":1689.6181},{"x":65,"y":1644.5749},{"x":66,"y":1583.8934},{"x":67,"y":1474.3109},{"x":68,"y":1399.0384},{"x":69,"y":1356.3718},{"x":70,"y":1319.0208},{"x":71,"y":1300.4523},{"x":72,"y":1304.0509},{"x":73,"y":1323.4005},{"x":74,"y":1337.4719},{"x":75,"y":1354.6358},{"x":76,"y":1366.3823},{"x":77,"y":1384.0555},{"x":78,"y":1396.1785},{"x":79,"y":1409.2968},{"x":80,"y":1403.7374},{"x":81,"y":1363.6879},{"x":82,"y":1344.6398},{"x":83,"y":1295.8706},{"x":84,"y":1278.1333},{"x":85,"y":1268.0291},{"x":86,"y":1274.1699},{"x":87,"y":1312.8478},{"x":88,"y":1361.3832},{"x":89,"y":1374.4552},{"x":90,"y":1367.7086},{"x":91,"y":1367.1454},{"x":92,"y":1366.7719},{"x":93,"y":1322.9096},{"x":94,"y":1260.4142},{"x":95,"y":1180.6975},{"x":96,"y":1058.7647},{"x":97,"y":935.7444},{"x":98,"y":880.0041},{"x":99,"y":772.0206},{"x":100,"y":630.5493}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₂(5-HT) in Area 7A","filename":"5-HT₂(5-HT)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₂(5-HT) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₂(5-HT) in Area 7A"],"datasets":[{"data":[{"x":0,"y":242.2038},{"x":1,"y":255.429},{"x":2,"y":267.7241},{"x":3,"y":279.0103},{"x":4,"y":291.6608},{"x":5,"y":295.9546},{"x":6,"y":299.9036},{"x":7,"y":301.5689},{"x":8,"y":304.2633},{"x":9,"y":309.8645},{"x":10,"y":313.8278},{"x":11,"y":319.2057},{"x":12,"y":327.8362},{"x":13,"y":331.4444},{"x":14,"y":339.0641},{"x":15,"y":350.7271},{"x":16,"y":360.2297},{"x":17,"y":369.9275},{"x":18,"y":377.3569},{"x":19,"y":382.1865},{"x":20,"y":389.8425},{"x":21,"y":399.2808},{"x":22,"y":406.8255},{"x":23,"y":412.5805},{"x":24,"y":417.9728},{"x":25,"y":420.6806},{"x":26,"y":422.6222},{"x":27,"y":424.0387},{"x":28,"y":428.5667},{"x":29,"y":432.5041},{"x":30,"y":432.0832},{"x":31,"y":433.4775},{"x":32,"y":433.7371},{"x":33,"y":432.8811},{"x":34,"y":431.4239},{"x":35,"y":430.6295},{"x":36,"y":431.0695},{"x":37,"y":431.7824},{"x":38,"y":431.5001},{"x":39,"y":430.1665},{"x":40,"y":428.4513},{"x":41,"y":428.1761},{"x":42,"y":427.3997},{"x":43,"y":426.6064},{"x":44,"y":424.3744},{"x":45,"y":420.7311},{"x":46,"y":416.8468},{"x":47,"y":414.0092},{"x":48,"y":410.5026},{"x":49,"y":407.0281},{"x":50,"y":404.5828},{"x":51,"y":400.2905},{"x":52,"y":395.4896},{"x":53,"y":394.9918},{"x":54,"y":392.9237},{"x":55,"y":388.4179},{"x":56,"y":385.1925},{"x":57,"y":383.5663},{"x":58,"y":383.421},{"x":59,"y":382.8771},{"x":60,"y":380.0523},{"x":61,"y":378.0033},{"x":62,"y":376.2923},{"x":63,"y":374.2232},{"x":64,"y":369.5993},{"x":65,"y":366.3369},{"x":66,"y":361.0353},{"x":67,"y":352.2224},{"x":68,"y":346.1572},{"x":69,"y":342.7126},{"x":70,"y":339.8492},{"x":71,"y":337.3583},{"x":72,"y":329.98},{"x":73,"y":324.276},{"x":74,"y":319.5903},{"x":75,"y":313.9487},{"x":76,"y":310.3027},{"x":77,"y":309.5322},{"x":78,"y":306.4743},{"x":79,"y":300.9548},{"x":80,"y":295.3083},{"x":81,"y":291.7602},{"x":82,"y":290.5495},{"x":83,"y":285.6468},{"x":84,"y":278.1925},{"x":85,"y":271.4423},{"x":86,"y":259.904},{"x":87,"y":251.1477},{"x":88,"y":244.9073},{"x":89,"y":233.0483},{"x":90,"y":221.3004},{"x":91,"y":214.2335},{"x":92,"y":206.5496},{"x":93,"y":201.3465},{"x":94,"y":198.1938},{"x":95,"y":191.2219},{"x":96,"y":184.4615},{"x":97,"y":176.7826},{"x":98,"y":169.376},{"x":99,"y":161.2589},{"x":100,"y":154.8098}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴃ(GABA) in Area 7A","filename":"GABAᴃ(GABA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴃ(GABA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴃ(GABA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":1156.1503},{"x":1,"y":1355.3643},{"x":2,"y":1631.4605},{"x":3,"y":2031.9433},{"x":4,"y":2398.5408},{"x":5,"y":2655.2859},{"x":6,"y":2814.1466},{"x":7,"y":3105.5639},{"x":8,"y":3275.4003},{"x":9,"y":3354.4507},{"x":10,"y":3428.7803},{"x":11,"y":3492.3326},{"x":12,"y":3557.9408},{"x":13,"y":3597.4988},{"x":14,"y":3629.379},{"x":15,"y":3685.4961},{"x":16,"y":3720.6345},{"x":17,"y":3744.9326},{"x":18,"y":3739.527},{"x":19,"y":3719.9883},{"x":20,"y":3660.7312},{"x":21,"y":3620.1131},{"x":22,"y":3613.7725},{"x":23,"y":3597.0596},{"x":24,"y":3570.9657},{"x":25,"y":3534.6392},{"x":26,"y":3501.8373},{"x":27,"y":3440.9219},{"x":28,"y":3356.2778},{"x":29,"y":3291.713},{"x":30,"y":3255.3961},{"x":31,"y":3164.543},{"x":32,"y":3064.1379},{"x":33,"y":3001.1613},{"x":34,"y":2975.026},{"x":35,"y":2933.2342},{"x":36,"y":2919.994},{"x":37,"y":2909.7543},{"x":38,"y":2899.71},{"x":39,"y":2881.0588},{"x":40,"y":2843.6094},{"x":41,"y":2791.959},{"x":42,"y":2750.5244},{"x":43,"y":2697.688},{"x":44,"y":2615.8356},{"x":45,"y":2520.23},{"x":46,"y":2456.3633},{"x":47,"y":2400.6612},{"x":48,"y":2326.8185},{"x":49,"y":2289.6689},{"x":50,"y":2283.5967},{"x":51,"y":2290.7856},{"x":52,"y":2329.2688},{"x":53,"y":2357.0118},{"x":54,"y":2362.333},{"x":55,"y":2362.336},{"x":56,"y":2361.9552},{"x":57,"y":2367.9274},{"x":58,"y":2368.522},{"x":59,"y":2374.1113},{"x":60,"y":2362.7651},{"x":61,"y":2348.8044},{"x":62,"y":2315.9224},{"x":63,"y":2275.5391},{"x":64,"y":2206.0325},{"x":65,"y":2112.2779},{"x":66,"y":2055.4444},{"x":67,"y":2044.3293},{"x":68,"y":2047.5537},{"x":69,"y":2089.2383},{"x":70,"y":2140.2902},{"x":71,"y":2158.2404},{"x":72,"y":2168.1091},{"x":73,"y":2179.0646},{"x":74,"y":2166.174},{"x":75,"y":2149.4004},{"x":76,"y":2105.4029},{"x":77,"y":2046.534},{"x":78,"y":1997.6759},{"x":79,"y":1974.2813},{"x":80,"y":1936.0846},{"x":81,"y":1887.2022},{"x":82,"y":1848.6358},{"x":83,"y":1808.6652},{"x":84,"y":1767.6402},{"x":85,"y":1711.0813},{"x":86,"y":1630.4481},{"x":87,"y":1592.159},{"x":88,"y":1526.7898},{"x":89,"y":1405.8421},{"x":90,"y":1307.0386},{"x":91,"y":1226.3495},{"x":92,"y":1156.3211},{"x":93,"y":1049.1288},{"x":94,"y":919.7275},{"x":95,"y":862.9674},{"x":96,"y":799.3356},{"x":97,"y":719.6935},{"x":98,"y":650.9807},{"x":99,"y":602.711},{"x":100,"y":565.6492}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null}]],["Density measurements of different receptors for Area PFop",[{"name":"Receptor density fingerprint of Area PFop","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["388","427","1065","3008","1524","2173","2744","550","159","968","48","374","661","414","430","92"]},{"label":"mean_sd","data":["204","187","118","1211","404","605","658","200","41","571","30","118","mg/mol","178","121","32"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PFop (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(144,238,144,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area PF",[{"name":"Receptor density fingerprint of Area PF","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["496","647","1157","3398","1595","2225","2706","501","185","957","49","409","837","298","439","113"]},{"label":"mean_sd","data":["131","260","289","1453","527","652","830","197","63","285","17","163","mg/mol","83","146","40"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PF (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(239,134,0,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area PFt",[{"name":"Receptor density fingerprint of Area PFt","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["367","503","1085","3044","1555","2140","2630","499","175","872","47","364","429","319","416","82"]},{"label":"mean_sd","data":["171","217","189","985","454","519","661","154","47","431","25","103","237","140","129","32"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PFt (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(144,238,144,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area PFcm",[{"name":"Receptor density fingerprint of Area PFcm","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["412","602","1237","3194","1598","2188","2379","536","182","866","63","398","831","300","444","113"]},{"label":"mean_sd","data":["149","303","230","1582","389","768","719","198","62","393","33","155","mg/mol","82","204","54"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PFcm (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(144,238,144,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area FG1",[{"name":"Receptor density fingerprint of Area FG1","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["419","499","1176","NA","1933","2140","2731","480","219","833","56","343","467","317","441","107"]},{"label":"mean_sd","data":["65","117","142","NA","255","216","421","67","34","163","12","45","93","60","82","20"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area FG1 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(0,100,209,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAᴀ(BZ) in Area FG1","filename":"GABAᴀ(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_BZ.jpg"},{"name":"Sample autoradiograph of α₁(NA) in Area FG1","filename":"α₁(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area FG1","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAᴀ(GABA) in Area FG1","filename":"GABAᴀ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area FG1","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area FG1","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of M₁(ACh) in Area FG1","filename":"M₁(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HT₁ᴀ(5-HT) in Area FG1","filename":"5-HT₁ᴀ(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area FG1","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_kainate.jpg"},{"name":"Sample autoradiograph of M₂(ACh) in Area FG1","filename":"M₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area FG1","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_AMPA.jpg"},{"name":"Sample autoradiograph of D₁(DA) in Area FG1","filename":"D₁(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area FG1","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_M3.jpg"},{"name":"Sample autoradiograph of 5-HT₂(5-HT) in Area FG1","filename":"5-HT₂(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAᴃ(GABA) in Area FG1","filename":"GABAᴃ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_GABAB.jpg"}]],["Density measurements of different receptors for Area PGa",[{"name":"Receptor density fingerprint of Area PGa","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["463","635","1259","3957","1998","2742","2442","479","172","827","70","361","698","303","441","136"]},{"label":"mean_sd","data":["187","405","278","1655","577","291","876","192","77","348","34","169","mg/mol","123","238","55"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PGa (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(5,198,198,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]]]
diff --git a/deploy/datasets/supplements/parcellation.js b/deploy/datasets/supplements/parcellation.js
deleted file mode 100644
index 20527e571c065ddcf70d9a6a7ba9162e95af79b2..0000000000000000000000000000000000000000
--- a/deploy/datasets/supplements/parcellation.js
+++ /dev/null
@@ -1,27 +0,0 @@
-const fs = require('fs')
-const path = require('path')
-let waxholm = new Map(),
-  allen = new Map()
-
-fs.readFile(path.join(__dirname, 'data', 'allen.json'), 'utf-8', (err, data) => {
-  if (err)
-    throw err
-  const json = JSON.parse(data)
-  allen = new Map(json.map(item => [item['Dataset name'], item["Semantic link(s)"]]))
-})
-
-
-fs.readFile(path.join(__dirname, 'data', 'waxholm.json'), 'utf-8', (err, data) => {
-  if (err)
-    throw err
-  const json = JSON.parse(data)
-  waxholm = new Map(json.map(item => [item['Dataset name'], item["Semantic link(s)"]]))
-})
-
-module.exports = ({ parcellationName, dataset }) => {
-  return parcellationName === 'Allen adult mouse brain reference atlas V3 Brain Atlas'
-    ? allen.get(dataset.name)
-    : parcellationName === 'Whole Brain (v2.0)'
-      ? waxholm.get(dataset.name)
-      : false
-}
\ No newline at end of file
diff --git a/deploy/datasets/supplements/previewFile.js b/deploy/datasets/supplements/previewFile.js
index ea178530c1ed118387393dd8754f325b2ff521a2..2600b01bb9615dab3c7ee4aa18878405bfb18070 100644
--- a/deploy/datasets/supplements/previewFile.js
+++ b/deploy/datasets/supplements/previewFile.js
@@ -13,7 +13,7 @@ let previewMap = new Map(),
 const readFile = (filename) => new Promise((resolve) => {
   fs.readFile(path.join(__dirname, 'data', filename), 'utf-8', (err, data) => {
     if (err){
-      console.log('read file error', err)
+      console.warn('read file error', err)
       return resolve([])
     }
     resolve(JSON.parse(data))
@@ -35,23 +35,26 @@ Promise.all([
     console.error('preview file error', e)
   })
 
-exports.getPreviewFile = ({ datasetName, templateSelected }) => Promise.resolve(
-  previewMap.get(datasetName)
-    .filter(({ templateSpace }) => {
-      if (!templateSpace) return true
-      if (!templateSelected) return true
-      return templateSpace === templateSelected
-    })
-    .map(file => {
-      return {
-        ...file,
-        ...(file.url && !/^http/.test(file.url)
-          ? {
-            url: `${HOSTNAME}/${file.url}`
+exports.getPreviewFile = ({ datasetName, templateSelected }) => previewMap.get(datasetName)
+  ? Promise.resolve(
+      previewMap.get(datasetName)
+        .filter(({ templateSpace }) => {
+          if (!templateSpace) return true
+          if (!templateSelected) return true
+          return templateSpace === templateSelected
+        })
+        .map(file => {
+          return {
+            ...file,
+            ...(file.url && !/^http/.test(file.url)
+              ? {
+                url: `${HOSTNAME}/${file.url}`
+              }
+              : {})
           }
-          : {})
-      }
-    })
-)
+        })
+    )
+  : Promise.reject(`Preview file cannot be found!`)
+
 exports.getAllPreviewDSNames = () => Array.from(previewMap.keys())
 exports.hasPreview = ({ datasetName }) => previewMapKeySet.has(datasetName)
\ No newline at end of file
diff --git a/deploy/datasets/supplements/util/mapDwm.js b/deploy/datasets/supplements/util/mapDwm.js
deleted file mode 100644
index b9cda2f1143970a66397c5572c7fbf991ddb96bd..0000000000000000000000000000000000000000
--- a/deploy/datasets/supplements/util/mapDwm.js
+++ /dev/null
@@ -1,69 +0,0 @@
-exports.manualFilter = (dataset) => dataset 
-  && dataset.project
-  && dataset.project instanceof Array
-  && dataset.project.some(p => p === 'Atlas of deep white matter fibre bundles, version 2018')
-
-const dict = [ [ 'Probabilistic map of the anterior segment of the left arcuate fasciculus (atlas of deep white matter fibre bundles, version 2018)',
-'Fibre Bundle Atlas - Long Bundle/Arcuate_Anterior - Left' ],
-[ 'Probabilistic map of the direct segment of the left arcuate fasciculus (atlas of deep white matter fibre bundles, version 2018)',
-'Fibre Bundle Atlas - Long Bundle/Arcuate - Left' ],
-[ 'Probabilistic map of the posterior segment of the left arcuate fasciculus (atlas of deep white matter fibre bundles, version 2018)',
-'Fibre Bundle Atlas - Long Bundle/Arcuate_Posterior - Left' ],
-[ 'Probabilistic map of the left long cingulate fibres (atlas of deep white matter fibre bundles, version 2018)',
-'Fibre Bundle Atlas - Long Bundle/Cingulum_Long - Left' ],
-[ 'Probabilistic map of the left short cingulate fibres (atlas of deep white matter fibre bundles, version 2018)',
-'Fibre Bundle Atlas - Long Bundle/Cingulum_Short - Left' ],
-[ 'Probabilistic map of the left temporal cingulate fibres (atlas of deep white matter fibre bundles, version 2018)',
-'Fibre Bundle Atlas - Long Bundle/Cingulum_Temporal - Left' ],
-[ 'Probabilistic map of the left corticospinal tract (atlas of deep white matter fibre bundles, version 2018)',
-'Fibre Bundle Atlas - Long Bundle/CorticoSpinalTract - Left' ],
-[ 'Probabilistic map of the left fornix (atlas of deep white matter fibre bundles, version 2018)',
-'Fibre Bundle Atlas - Long Bundle/Fornix - Left' ],
-[ 'Probabilistic map of the left inferior fronto-occipital fasciculus (atlas of deep white matter fibre bundles, version 2018)',
-'Fibre Bundle Atlas - Long Bundle/InferiorFrontoOccipital - Left' ],
-[ 'Probabilistic map of the left inferior longitudinal fasciculus (atlas of deep white matter fibre bundles, version 2018)',
-'Fibre Bundle Atlas - Long Bundle/InferiorLongitudinal - Left' ],
-[ 'Probabilistic map of the left uncinate fasciculus (atlas of deep white matter fibre bundles, version 2018)',
-'Fibre Bundle Atlas - Long Bundle/Uncinate - Left' ],
-[ 'Probabilistic map of the anterior segment of the right arcuate fasciculus (atlas of deep white matter fibre bundles, version 2018)',
-'Fibre Bundle Atlas - Long Bundle/Arcuate_Anterior - Right' ],
-[ 'Probabilistic map of the posterior segment of the right arcuate fasciculus (atlas of deep white matter fibre bundles, version 2018)',
-'Fibre Bundle Atlas - Long Bundle/Arcuate_Posterior - Right' ],
-[ 'Probabilistic map of the posterior segment of the right arcuate fasciculus (atlas of deep white matter fibre bundles, version 2018)',
-'Fibre Bundle Atlas - Long Bundle/Arcuate - Right' ],
-[ 'Probabilistic map of the right long cingulate fibres (atlas of deep white matter fibre bundles, version 2018)',
-'Fibre Bundle Atlas - Long Bundle/Cingulum_Long - Right' ],
-[ 'Probabilistic map of the right short cingulate fibres (atlas of deep white matter fibre bundles, version 2018)',
-'Fibre Bundle Atlas - Long Bundle/Cingulum_Short - Right' ],
-[ 'Probabilistic map of the right temporal cingulate fibres (atlas of deep white matter fibre bundles, version 2018)',
-'Fibre Bundle Atlas - Long Bundle/Cingulum_Temporal - Right' ],
-[ 'Probabilistic map of the right corticospinal tract (atlas of deep white matter fibre bundles, version 2018)',
-'Fibre Bundle Atlas - Long Bundle/CorticoSpinalTract - Right' ],
-[ 'Probabilistic map of the right fornix (atlas of deep white matter fibre bundles, version 2018)',
-'Fibre Bundle Atlas - Long Bundle/Fornix - Right' ],
-[ 'Probabilistic map of the right inferior fronto-occipital fasciculus (atlas of deep white matter fibre bundles, version 2018)',
-'Fibre Bundle Atlas - Long Bundle/InferiorFrontoOccipital - Right' ],
-[ 'Probabilistic map of the right inferior longitudinal fasciculus (atlas of deep white matter fibre bundles, version 2018)',
-'Fibre Bundle Atlas - Long Bundle/InferiorLongitudinal - Right' ],
-[ 'Probabilistic map of the right uncinate fasciculus (atlas of deep white matter fibre bundles, version 2018)',
-'Fibre Bundle Atlas - Long Bundle/Uncinate - Right' ] ]
-
-const dsNameToIdMap = new Map(dict)
-const getIdFromDataset = (dataset) => {
-  const id = dsNameToIdMap.get(dataset.name)
-  if (id) return id
-  return null
-}
-
-exports.manualMap = (dataset) => {
-  return {
-    preview: !process.env.DISABLE_DWM_PMAP,
-    ...dataset,
-    parcellationRegion: dataset.parcellationRegion.map(r => {
-      return {
-        ...r,
-        id: getIdFromDataset(dataset)
-      }
-    })
-  }
-}
\ No newline at end of file
diff --git a/deploy/datasets/util.js b/deploy/datasets/util.js
new file mode 100644
index 0000000000000000000000000000000000000000..f8378038f74495fe3e0f4f01d69191a85932cbcf
--- /dev/null
+++ b/deploy/datasets/util.js
@@ -0,0 +1,54 @@
+const kgQueryUtil = require('./../auth/util')
+
+let getPublicAccessToken, publicAccessToken
+
+const getUserKGRequestParam = async ({ user }) => {
+  /**
+   * n.b. ACCESS_TOKEN env var is usually only set during dev
+   */
+  const accessToken = (user && user.tokenset && user.tokenset.access_token) || process.env.ACCESS_TOKEN
+  const releasedOnly = !accessToken
+  if (!accessToken && !publicAccessToken && getPublicAccessToken) {
+    publicAccessToken = await getPublicAccessToken()
+  }
+  const option = accessToken || publicAccessToken
+    ? {
+        auth: { bearer: accessToken || publicAccessToken }
+      }
+    : {}
+
+  return {
+    option,
+    releasedOnly,
+    token: accessToken || publicAccessToken
+  }
+}
+
+const init = async () => {
+  if (process.env.ACCESS_TOKEN) {
+    if (process.env.NODE_ENV === 'production') console.error(`ACCESS_TOKEN set in production!`)
+    else console.warn(`ACCESS_TOKEN environmental variable is set! All queries will be made made with ACCESS_TOKEN!`)
+  }
+  if (getPublicAccessToken) return
+  const { getPublicAccessToken: getPublic } = await kgQueryUtil()
+  getPublicAccessToken = getPublic
+}
+
+const retry = (fn) => {
+  let retryId
+  retryId = setInterval(() => {
+    fn()
+      .then(() => {
+        console.log(`retry succeeded, clearing retryId`)
+        clearTimeout(retryId)
+      }).catch(e => {
+        console.warn(`retry failed, retrying in 5sec`)
+      })
+  }, 5000)
+}
+
+module.exports = {
+  init,
+  getUserKGRequestParam,
+  retry
+}
\ No newline at end of file
diff --git a/deploy/datasets/util.spec.js b/deploy/datasets/util.spec.js
new file mode 100644
index 0000000000000000000000000000000000000000..a4dbd0090c97fa77d8da167369133e9d6b5ea877
--- /dev/null
+++ b/deploy/datasets/util.spec.js
@@ -0,0 +1,10 @@
+const { retry } = require('./util')
+
+let val = 0
+
+const prFn = () => {
+  val++
+  return val >=3 ? Promise.resolve() : Promise.reject()
+} 
+
+retry(() => prFn())
\ No newline at end of file
diff --git a/deploy/devBanner/index.js b/deploy/devBanner/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..8f9ee7fef018b40c90d917e687dc65ca0145497b
--- /dev/null
+++ b/deploy/devBanner/index.js
@@ -0,0 +1,26 @@
+const express = require('express')
+const router = express.Router()
+
+/**
+ * build flag
+ */
+const BUILD_TEXT = process.env.BUILD_TEXT || ''
+const versionCss = ` /* overwritten */
+body::after
+{
+  content: '${BUILD_TEXT}';
+}
+`
+const buildTextIsDefined = typeof process.env.BUILD_TEXT !== 'undefined'
+
+/**
+ * bypass if env var not defined
+ * i.e. in order to show nothing, must EXPLICITLY set envvar BUILD_TEXT as empty string
+ */
+router.get('/version.css', (req, res, next) => {
+  if (!buildTextIsDefined) return next()
+  res.setHeader('Content-Type', 'text/css; charset=UTF-8')
+  res.status(200).send(versionCss)
+})
+
+module.exports = router
\ No newline at end of file
diff --git a/deploy/logging/index.js b/deploy/logging/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..173ec49afb0c3d45332e0c04fbae38283541a3e6
--- /dev/null
+++ b/deploy/logging/index.js
@@ -0,0 +1,43 @@
+const request = require('request')
+const qs = require('querystring')
+
+class Logger {
+  constructor(name, { protocol = 'http', host = 'localhost', port = '24224', username = '', password = '' } = {}){
+    this.name = qs.escape(name)
+    this.protocol = protocol
+    this.host = host
+    this.port = port
+    this.username = username
+    this.password = password
+  }
+
+  emit(logLevel, message, callback){
+    const {
+      name,
+      protocol,
+      host,
+      port,
+      username,
+      password
+    } = this
+    
+    const auth = username !== '' ? `${username}:${password}@` : ''
+    const url = `${protocol}://${auth}${host}:${port}/${name}.${qs.escape(logLevel)}`
+    const formData = {
+      json: JSON.stringify(message)
+    }
+    if (callback) {
+      request.post({
+        url,
+        formData
+      }, callback)
+    } else {
+      return request.post({
+        url,
+        formData
+      })
+    }
+  }
+}
+
+module.exports = Logger
\ No newline at end of file
diff --git a/deploy/nehubaConfig/index.js b/deploy/nehubaConfig/index.js
index a5072c82865d230eb8d5320c028d5f9505ec1e38..fab68127aba5adaff93189f7e1199f3196438e33 100644
--- a/deploy/nehubaConfig/index.js
+++ b/deploy/nehubaConfig/index.js
@@ -1,19 +1,18 @@
 const express = require('express')
-const path = require('path')
-const fs = require('fs')
 const { getTemplateNehubaConfig } = require('./query')
+const { detEncoding } = require('nomiseco')
 
 const nehubaConfigRouter = express.Router()
 
 nehubaConfigRouter.get('/:configId', (req, res, next) => {
+
+  const header = req.get('Accept-Encoding')
+  const acceptedEncoding = detEncoding(header)
+
   const { configId } = req.params
-  getTemplateNehubaConfig(configId)
-    .then(data => res.status(200).send(data))
-    .catch(error => next({
-      code: 500,
-      error,
-      trace: 'nehubaConfigRouter#getTemplateNehubaConfig'
-    }))
+  if (acceptedEncoding) res.set('Content-Encoding', acceptedEncoding)
+
+  getTemplateNehubaConfig({ configId, acceptedEncoding, returnAsStream:true}).pipe(res)
 })
 
 module.exports = nehubaConfigRouter
\ No newline at end of file
diff --git a/deploy/nehubaConfig/query.js b/deploy/nehubaConfig/query.js
index 972c3d59633cd3748d3678a636f8bcecdf7ed0d9..a6340ecc7ee376f4032a11e928db632576ce7b9f 100644
--- a/deploy/nehubaConfig/query.js
+++ b/deploy/nehubaConfig/query.js
@@ -1,15 +1,31 @@
 const fs = require('fs')
 const path = require('path')
+const { BROTLI, GZIP } = require('nomiseco')
 
-exports.getTemplateNehubaConfig = (configId) => new Promise((resolve, reject) => {
-  let filepath
+const getFileAsPromise = filepath => new Promise((resolve, reject) => {
+  fs.readFile(filepath, 'utf-8', (err, data) => {
+    if (err) return reject(err)
+    resolve(data)
+  })
+})
+
+exports.getTemplateNehubaConfig = ({configId, acceptedEncoding, returnAsStream}) => {
   if (process.env.NODE_ENV === 'production') {
     filepath = path.join(__dirname, '..', 'res', `${configId}.json`)
   } else {
     filepath = path.join(__dirname, '..', '..', 'src', 'res', 'ext', `${configId}.json`)
   }
-  fs.readFile(filepath, 'utf-8', (err, data) => {
-    if (err) return reject(err)
-    resolve(data)
-  })
-})
\ No newline at end of file
+
+  if (acceptedEncoding === BROTLI) {
+    if (returnAsStream) return fs.createReadStream(`${filepath}.br`)
+    else return getFileAsPromise(`${filepath}.br`)
+  }
+
+  if (acceptedEncoding === GZIP) {
+    if (returnAsStream) return fs.createReadStream(`${filepath}.gz`)
+    else return getFileAsPromise(`${filepath}.gz`)
+  }
+
+  if (returnAsStream) return fs.createReadStream(filepath)
+  else return getFileAsPromise(filepath)
+} 
\ No newline at end of file
diff --git a/deploy/package.json b/deploy/package.json
index 72d3c417e28cb9541e4f1c1b0d947875dcda953b..e32f647bd347e15819c875ca95ae437275b9cfc5 100644
--- a/deploy/package.json
+++ b/deploy/package.json
@@ -13,12 +13,14 @@
   "author": "",
   "license": "ISC",
   "dependencies": {
+    "archiver": "^3.0.0",
     "body-parser": "^1.19.0",
     "express": "^4.16.4",
     "express-session": "^1.15.6",
-    "jszip": "^3.2.1",
+    "helmet-csp": "^2.8.0",
     "jwt-decode": "^2.2.0",
     "memorystore": "^1.6.1",
+    "nomiseco": "0.0.2",
     "openid-client": "^2.4.5",
     "passport": "^0.4.0",
     "request": "^2.88.0"
diff --git a/deploy/server.js b/deploy/server.js
index 85596178cccb7433a77195c447e3efa665cd2583..9045664cf8a90542b482513e2026eacf291ea016 100644
--- a/deploy/server.js
+++ b/deploy/server.js
@@ -5,6 +5,57 @@ if (process.env.NODE_ENV !== 'production') {
   })
 }
 
+if (process.env.FLUENT_HOST) {
+  const Logger = require('./logging')
+
+  const name = process.env.IAV_NAME || 'IAV'
+  const stage = process.env.IAV_STAGE || 'unnamed-stage'
+
+  const protocol = process.env.FLUENT_PROTOCOL || 'http'
+  const host = process.env.FLUENT_HOST || 'localhost'
+  const port = process.env.FLUENT_PORT || 24224
+  
+  const prefix = `${name}.${stage}`
+
+  const log = new Logger(prefix, {
+    protocol,
+    host,
+    port
+  })
+
+  const handleRequestCallback = (err, resp, body) => {
+    if (err) {
+      process.stderr.write(`fluentD logging failed\n`)
+      process.stderr.write(err.toString())
+      process.stderr.write('\n')
+    }
+
+    if (resp && resp.statusCode >= 400) {
+      process.stderr.write(`fluentD logging responded error\n`)
+      process.stderr.write(resp.toString())
+      process.stderr.write('\n')
+    }
+  }
+
+  const emitInfo = message => log.emit('info', { message }, handleRequestCallback)
+
+  const emitWarn = message => log.emit('warn', { message }, handleRequestCallback)
+
+  const emitError = message => log.emit('error', { message }, handleRequestCallback)
+
+  console.log('starting fluentd logging')
+
+  console.log = function () {
+    emitInfo([...arguments])
+  }
+  console.warn = function () {
+    emitWarn([...arguments])
+  }
+  console.error = function () {
+    emitError([...arguments])
+  }
+}
+
 const app = require('./app')
 const PORT = process.env.PORT || 3000
 
diff --git a/deploy/templates/index.js b/deploy/templates/index.js
index 1ed84e544f0754e84ee8f48855d7b30975361de4..7fe831604d47d6c856849ba24dd8e1c8c4b5b75f 100644
--- a/deploy/templates/index.js
+++ b/deploy/templates/index.js
@@ -1,6 +1,8 @@
 const router = require('express').Router()
 const query = require('./query')
 const path = require('path')
+const { detEncoding } = require('nomiseco')
+
 /**
  * root path fetches all templates
  */
@@ -20,6 +22,10 @@ router.get('/', (req, res, next) => {
 
 router.get('/:template', (req, res, next) => {
   const { template } = req.params
+
+  const header = req.get('Accept-Encoding')
+  const acceptedEncoding = detEncoding(header)
+
   query.getAllTemplates()
     .then(templates => {
       if (templates.indexOf(template) < 0) 
@@ -27,11 +33,9 @@ router.get('/:template', (req, res, next) => {
           code : 404,
           error: 'template not in the list supported'
         })
-      return query.getTemplate(template)
-    })
-    .then(data => {
-      if (data)
-        res.status(200).send(data)
+
+      if (acceptedEncoding) res.set('Content-Encoding', acceptedEncoding)
+      query.getTemplate({ template, acceptedEncoding, returnAsStream:true }).pipe(res)
     })
     .catch(error => next({
       code: 500,
diff --git a/deploy/templates/query.js b/deploy/templates/query.js
index 1ecebe476dce91c21819342ad6031f46643b1db8..b7f6f4589e91338cc95af93cd190fa414a9bda2e 100644
--- a/deploy/templates/query.js
+++ b/deploy/templates/query.js
@@ -1,5 +1,6 @@
 const fs = require('fs')
 const path = require('path')
+const { BROTLI, GZIP } = require('nomiseco')
 
 exports.getAllTemplates = () => new Promise((resolve, reject) => {
   
@@ -17,15 +18,32 @@ exports.getAllTemplates = () => new Promise((resolve, reject) => {
   resolve(templates)
 })
 
-exports.getTemplate = (template) => new Promise((resolve, reject) => {
+const getFileAsPromise = filepath => new Promise((resolve, reject) => {
+  fs.readFile(filepath, 'utf-8', (err, data) => {
+    if (err) return reject(err)
+    resolve(data)
+  })
+})
+
+exports.getTemplate = ({ template, acceptedEncoding, returnAsStream }) => {
+
   let filepath
   if (process.env.NODE_ENV === 'production') {
     filepath = path.join(__dirname, '..', 'res', `${template}.json`)
   } else {
     filepath = path.join(__dirname, '..', '..', 'src', 'res', 'ext', `${template}.json`)
   }
-  fs.readFile(filepath, 'utf-8', (err, data) => {
-    if (err) reject(err)
-    resolve(data)
-  })
-})
\ No newline at end of file
+
+  if (acceptedEncoding === BROTLI) {
+    if (returnAsStream) return fs.createReadStream(`${filepath}.br`)
+    else return getFileAsPromise(`${filepath}.br`)
+  }
+
+  if (acceptedEncoding === GZIP) {
+    if (returnAsStream) return fs.createReadStream(`${filepath}.gz`)
+    else return getFileAsPromise(`${filepath}.gz`)
+  }
+
+  if (returnAsStream) return fs.createReadStream(filepath)
+  else return getFileAsPromise(filepath)
+} 
\ No newline at end of file
diff --git a/deploy/test/mocha.test.js b/deploy/test/mocha.test.js
index 8f55b54de1f2566b8d2348adef651303b0ef1fca..366f5af4a874c10e907272ba0ece2b686248078a 100644
--- a/deploy/test/mocha.test.js
+++ b/deploy/test/mocha.test.js
@@ -1 +1,2 @@
-require('../auth/util.spec')
\ No newline at end of file
+require('../auth/util.spec')
+require('../compression/index.spec')
\ No newline at end of file
diff --git a/deploy/well-known/robot.txt b/deploy/well-known/robot.txt
new file mode 100644
index 0000000000000000000000000000000000000000..4f9540ba358a64607438da92eebe85889fdad50a
--- /dev/null
+++ b/deploy/well-known/robot.txt
@@ -0,0 +1 @@
+User-agent: *
\ No newline at end of file
diff --git a/deploy/well-known/security.txt b/deploy/well-known/security.txt
new file mode 100644
index 0000000000000000000000000000000000000000..42a2d3940dfcc87456b84a6165c9e741068c6b31
--- /dev/null
+++ b/deploy/well-known/security.txt
@@ -0,0 +1,2 @@
+# If you would like to report a security issue, please contact us via:
+Contact: inm1-bda@fz-juelich.de
\ No newline at end of file
diff --git a/package.json b/package.json
index 2acb48676fed72ee9fa9639abe26b48488e7a0f4..9d13f653c2e66d9d14b16a8855e815dbad992277 100644
--- a/package.json
+++ b/package.json
@@ -1,21 +1,20 @@
 {
   "name": "interactiveviewer",
-  "version": "1.0.0",
+  "version": "0.0.2",
   "description": "",
   "scripts": {
     "dev-server-export": "webpack-dev-server --config webpack.export.js",
     "build-export": "webpack --config webpack.export.js",
     "build-export-min": "webpack --config webpack.export.min.js",
     "build-export-aot": "webpack --config webpack.export.aot.js",
-    "build-aot": "PRODUCTION=true GIT_HASH=`git log --pretty=format:'%h' --invert-grep --grep=^.ignore -1` webpack --config webpack.aot.js",
+    "build-aot": "PRODUCTION=true GIT_HASH=`git rev-parse --short HEAD` webpack --config webpack.aot.js",
     "build-min": "webpack --config webpack.prod.js",
     "build": "webpack --config webpack.dev.js",
-    "dev-plugin": "PLUGINDEV=http://localhost:10080/allPluginmanifests npm run dev-server & npm run plugin-server",
     "plugin-server": "node ./src/plugin_examples/server.js",
     "dev-server": "webpack-dev-server --config webpack.dev.js --mode development",
+    "dev": "npm run dev-server & (cd deploy; node server.js)",
     "dev-server-aot": "PRODUCTION=true GIT_HASH=`git log --pretty=format:'%h' --invert-grep --grep=^.ignore -1` webpack-dev-server --config webpack.aot.js",
     "dev-server-all-interfaces": "webpack-dev-server --config webpack.dev.js --mode development --hot --host 0.0.0.0",
-    "serve-plugins": "node src/plugin_examples/server.js",
     "test": "karma start spec/karma.conf.js",
     "e2e": "protractor e2e/protractor.conf"
   },
@@ -24,6 +23,8 @@
   "license": "ISC",
   "devDependencies": {
     "@angular/animations": "^7.2.15",
+    "@angular/cdk": "^7.3.7",
+    "@angular/cdk-experimental": "^7.3.7",
     "@angular/common": "^7.2.15",
     "@angular/compiler": "^7.2.15",
     "@angular/compiler-cli": "^7.2.15",
@@ -32,21 +33,24 @@
     "@angular/forms": "^7.2.15",
     "@angular/http": "^7.2.15",
     "@angular/language-service": "^7.2.15",
+    "@angular/material": "^7.3.7",
     "@angular/platform-browser": "^7.2.15",
     "@angular/platform-browser-dynamic": "^7.2.15",
+    "@angular/router": "^7.2.15",
     "@ngrx/effects": "^7.4.0",
     "@ngrx/store": "^6.0.1",
     "@ngtools/webpack": "^6.0.5",
     "@types/chart.js": "^2.7.20",
     "@types/jasmine": "^3.3.12",
-    "@types/jasminewd2": "^2.0.6",
     "@types/node": "^12.0.0",
     "@types/webpack-env": "^1.13.6",
     "angular2-template-loader": "^0.6.2",
     "chart.js": "^2.7.2",
     "codelyzer": "^5.0.1",
     "core-js": "^3.0.1",
+    "css-loader": "^3.2.0",
     "file-loader": "^1.1.11",
+    "hammerjs": "^2.0.8",
     "html-webpack-plugin": "^3.2.0",
     "jasmine": "^3.1.0",
     "jasmine-core": "^3.4.0",
@@ -58,12 +62,15 @@
     "karma-typescript": "^3.0.13",
     "karma-webpack": "^3.0.0",
     "lodash.merge": "^4.6.1",
+    "mini-css-extract-plugin": "^0.8.0",
     "ng2-charts": "^1.6.0",
     "ngx-bootstrap": "3.0.1",
+    "node-sass": "^4.12.0",
     "protractor": "^5.4.2",
     "raw-loader": "^0.5.1",
     "reflect-metadata": "^0.1.12",
     "rxjs": "6.5.1",
+    "sass-loader": "^7.2.0",
     "showdown": "^1.8.6",
     "ts-loader": "^4.3.0",
     "ts-node": "^8.1.0",
@@ -74,12 +81,8 @@
     "webpack-cli": "^3.3.2",
     "webpack-closure-compiler": "^2.1.6",
     "webpack-dev-server": "^3.1.4",
-    "webpack-merge": "^4.1.2"
-  },
-  "dependencies": {
-    "@angular/cdk": "^7.3.7",
-    "@angular/material": "^7.3.7",
-    "@angular/router": "^7.2.15",
+    "webpack-merge": "^4.1.2",
     "zone.js": "^0.9.1"
-  }
+  },
+  "dependencies": {}
 }
diff --git a/src/atlasViewer/atlasViewer.apiService.service.ts b/src/atlasViewer/atlasViewer.apiService.service.ts
index bdaf63c10763e0cf58075995cb2f570262a40552..7333685745cdbbee9fc04d9e10b227b05992df1b 100644
--- a/src/atlasViewer/atlasViewer.apiService.service.ts
+++ b/src/atlasViewer/atlasViewer.apiService.service.ts
@@ -1,13 +1,12 @@
 import { Injectable } from "@angular/core";
 import { Store, select } from "@ngrx/store";
-import { ViewerStateInterface, safeFilter, getLabelIndexMap, isDefined } from "src/services/stateStore.service";
+import { ViewerStateInterface, safeFilter, getLabelIndexMap, isDefined, getMultiNgIdsRegionsLabelIndexMap } from "src/services/stateStore.service";
 import { Observable } from "rxjs";
 import { map, distinctUntilChanged, filter } from "rxjs/operators";
-import { BsModalService } from "ngx-bootstrap/modal";
-import { ModalUnit } from "./modalUnit/modalUnit.component";
 import { ModalHandler } from "../util/pluginHandlerClasses/modalHandler";
 import { ToastHandler } from "../util/pluginHandlerClasses/toastHandler";
 import { PluginManifest } from "./atlasViewer.pluginService.service";
+import { DialogService } from "src/services/dialogService.service";
 
 declare var window
 
@@ -19,15 +18,13 @@ export class AtlasViewerAPIServices{
 
   private loadedTemplates$ : Observable<any>
   private selectParcellation$ : Observable<any>
-  private selectTemplate$ : Observable<any>
-  private darktheme : boolean
   public interactiveViewer : InteractiveViewerInterface
 
   public loadedLibraries : Map<string,{counter:number,src:HTMLElement|null}> = new Map()
 
   constructor(
     private store : Store<ViewerStateInterface>,
-    private modalService: BsModalService
+    private dialogService: DialogService,
   ){
 
     this.loadedTemplates$ = this.store.pipe(
@@ -36,13 +33,6 @@ export class AtlasViewerAPIServices{
       map(state=>state.fetchedTemplates)
     )
 
-    this.selectTemplate$ = this.store.pipe(
-      select('viewerState'),
-      filter(state => isDefined(state) && isDefined(state.templateSelected)),
-      map(state => state.templateSelected),
-      distinctUntilChanged((t1, t2) => t1.name === t2.name)
-    )
-
     this.selectParcellation$ = this.store.pipe(
       select('viewerState'),
       safeFilter('parcellationSelected'),
@@ -70,8 +60,11 @@ export class AtlasViewerAPIServices{
 
         loadedTemplates : [],
 
+        // TODO deprecate
         regionsLabelIndexMap : new Map(),
 
+        layersRegionLabelIndexMap: new Map(), 
+
         datasetsBSubject : this.store.pipe(
           select('dataStore'),
           safeFilter('fetchedDataEntries'),
@@ -83,18 +76,22 @@ export class AtlasViewerAPIServices{
           const handler = new ModalHandler()
           let modalRef
           handler.show = () => {
-            modalRef = this.modalService.show(ModalUnit, {
-              initialState : {
-                title : handler.title,
-                body : handler.body
-                  ? handler.body
-                  : 'handler.body has yet been defined ...',
-                footer : handler.footer
-              },
-              class : this.darktheme ? 'darktheme' : 'not-darktheme',
-              backdrop : handler.dismissable ? true : 'static',
-              keyboard : handler.dismissable
-            })
+            /**
+             * TODO enable
+             * temporarily disabled
+             */
+            // modalRef = this.modalService.show(ModalUnit, {
+            //   initialState : {
+            //     title : handler.title,
+            //     body : handler.body
+            //       ? handler.body
+            //       : 'handler.body has yet been defined ...',
+            //     footer : handler.footer
+            //   },
+            //   class : this.darktheme ? 'darktheme' : 'not-darktheme',
+            //   backdrop : handler.dismissable ? true : 'static',
+            //   keyboard : handler.dismissable
+            // })
           }
           handler.hide = () => {
             if(modalRef){
@@ -115,7 +112,10 @@ export class AtlasViewerAPIServices{
          */
         launchNewWidget: (manifest) => {
           return Promise.reject('Needs to be overwritted')
-        }
+        },
+
+        getUserInput: config => this.dialogService.getUserInput(config),
+        getUserConfirmation: config => this.dialogService.getUserConfirm(config)
       },
       pluginControl : {
         loadExternalLibraries : ()=>Promise.reject('load External Library method not over written')
@@ -136,8 +136,10 @@ export class AtlasViewerAPIServices{
 
   private init(){
     this.loadedTemplates$.subscribe(templates=>this.interactiveViewer.metadata.loadedTemplates = templates)
-    this.selectParcellation$.subscribe(parcellation => this.interactiveViewer.metadata.regionsLabelIndexMap = getLabelIndexMap(parcellation.regions))
-    this.selectTemplate$.subscribe(template => this.darktheme = template.useTheme === 'dark')
+    this.selectParcellation$.subscribe(parcellation => {
+      this.interactiveViewer.metadata.regionsLabelIndexMap = getLabelIndexMap(parcellation.regions)
+      this.interactiveViewer.metadata.layersRegionLabelIndexMap = getMultiNgIdsRegionsLabelIndexMap(parcellation)
+    })
   }
 }
 
@@ -149,6 +151,7 @@ export interface InteractiveViewerInterface{
     selectedRegionsBSubject : Observable<any[]|null>
     loadedTemplates : any[]
     regionsLabelIndexMap : Map<number,any> | null
+    layersRegionLabelIndexMap: Map<string, Map<number, any>>
     datasetsBSubject : Observable<any[]>
   },
 
@@ -161,8 +164,17 @@ export interface InteractiveViewerInterface{
     hideSegment : (labelIndex : number)=>void
     showAllSegments : ()=>void
     hideAllSegments : ()=>void
+
+    // TODO deprecate
     segmentColourMap : Map<number,{red:number,green:number,blue:number}>
+
+    getLayersSegmentColourMap: () => Map<string, Map<number, {red:number, green:number, blue: number}>>
+
+    // TODO deprecate
     applyColourMap : (newColourMap : Map<number,{red:number,green:number,blue:number}>)=>void
+
+    applyLayersColourMap: (newLayerColourMap: Map<string, Map<number, {red:number, green: number, blue: number}>>) => void
+
     loadLayer : (layerobj:NGLayerObj)=>NGLayerObj
     removeLayer : (condition:{name : string | RegExp})=>string[]
     setLayerVisibility : (condition:{name : string|RegExp},visible:boolean)=>void
@@ -172,6 +184,10 @@ export interface InteractiveViewerInterface{
 
     mouseEvent : Observable<{eventName:string,event:MouseEvent}>
     mouseOverNehuba : Observable<{labelIndex : number, foundRegion : any | null}>
+    /**
+     * TODO add to documentation
+     */
+    mouseOverNehubaLayers: Observable<{layer:{name:string}, segment: any | number }[]>
 
     getNgHash : () => string
   }
@@ -180,6 +196,8 @@ export interface InteractiveViewerInterface{
     getModalHandler: () => ModalHandler
     getToastHandler: () => ToastHandler
     launchNewWidget: (manifest:PluginManifest) => Promise<any>
+    getUserInput: (config:GetUserInputConfig) => Promise<string>
+    getUserConfirmation: (config: GetUserConfirmation) => Promise<any>
   }
 
   pluginControl : {
@@ -189,6 +207,16 @@ export interface InteractiveViewerInterface{
   }
 }
 
+interface GetUserConfirmation{
+  title?: string
+  message?: string
+}
+
+interface GetUserInputConfig extends GetUserConfirmation{
+  placeholder?: string
+  defaultValue?: string
+}
+
 export interface UserLandmark{
   name : string
   position : [number, number, number]
@@ -198,4 +226,4 @@ export interface UserLandmark{
 
 export interface NGLayerObj{
 
-}
\ No newline at end of file
+}
diff --git a/src/atlasViewer/atlasViewer.component.ts b/src/atlasViewer/atlasViewer.component.ts
index 076bae1eb49f57fed3e111c5bfb9cdc4ae3ba927..13248f4a0d39349ba8f58b45cbc309246b1c9788 100644
--- a/src/atlasViewer/atlasViewer.component.ts
+++ b/src/atlasViewer/atlasViewer.component.ts
@@ -1,26 +1,22 @@
-import { Component, HostBinding, ViewChild, ViewContainerRef, OnDestroy, OnInit, TemplateRef, AfterViewInit, ElementRef } from "@angular/core";
+import { Component, HostBinding, ViewChild, ViewContainerRef, OnDestroy, OnInit, TemplateRef, AfterViewInit, Renderer2 } from "@angular/core";
 import { Store, select, ActionsSubject } from "@ngrx/store";
-import { ViewerStateInterface, isDefined, FETCHED_SPATIAL_DATA, UPDATE_SPATIAL_DATA, TOGGLE_SIDE_PANEL, safeFilter, UIStateInterface, OPEN_SIDE_PANEL, CLOSE_SIDE_PANEL } from "../services/stateStore.service";
-import { Observable, Subscription, combineLatest, interval, merge, of, fromEvent } from "rxjs";
-import { map, filter, distinctUntilChanged, delay, concatMap, debounceTime, withLatestFrom, switchMap, takeUntil, scan, takeLast } from "rxjs/operators";
+import { ViewerStateInterface, isDefined, FETCHED_SPATIAL_DATA, UPDATE_SPATIAL_DATA, safeFilter } from "../services/stateStore.service";
+import { Observable, Subscription, combineLatest, interval, merge, of } from "rxjs";
+import { map, filter, distinctUntilChanged, delay, concatMap, withLatestFrom } from "rxjs/operators";
 import { AtlasViewerDataService } from "./atlasViewer.dataService.service";
 import { WidgetServices } from "./widgetUnit/widgetService.service";
 import { LayoutMainSide } from "../layouts/mainside/mainside.component";
 import { AtlasViewerConstantsServices, UNSUPPORTED_PREVIEW, UNSUPPORTED_INTERVAL } from "./atlasViewer.constantService.service";
-import { BsModalService } from "ngx-bootstrap/modal";
-import { ModalUnit } from "./modalUnit/modalUnit.component";
 import { AtlasViewerURLService } from "./atlasViewer.urlService.service";
 import { AtlasViewerAPIServices } from "./atlasViewer.apiService.service";
 
-import '../res/css/extra_styles.css'
 import { NehubaContainer } from "../ui/nehubaContainer/nehubaContainer.component";
 import { colorAnimation } from "./atlasViewer.animation"
 import { FixedMouseContextualContainerDirective } from "src/util/directives/FixedMouseContextualContainerDirective.directive";
-import { DatabrowserService } from "src/ui/databrowserModule/databrowser.service";
-import { AGREE_COOKIE, AGREE_KG_TOS, SHOW_KG_TOS } from "src/services/state/uiState.store";
+import { AGREE_COOKIE, AGREE_KG_TOS, SHOW_KG_TOS, SHOW_BOTTOM_SHEET } from "src/services/state/uiState.store";
 import { TabsetComponent } from "ngx-bootstrap/tabs";
-import { ToastService } from "src/services/toastService.service";
-import { ZipFileDownloadService } from "src/services/zipFileDownload.service";
+import { LocalFileService } from "src/services/localFile.service";
+import { MatDialog, MatDialogRef, MatSnackBar, MatSnackBarRef, MatBottomSheet, MatBottomSheetRef } from "@angular/material";
 
 /**
  * TODO
@@ -40,10 +36,7 @@ const filterFn = (segment) => typeof segment.segment !== 'string'
 })
 
 export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
-
-  @ViewChild('floatingMouseContextualContainer', { read: ViewContainerRef }) floatingMouseContextualContainer: ViewContainerRef
-  @ViewChild('helpComponent', {read: TemplateRef}) helpComponent : TemplateRef<any>
-  @ViewChild('signinModalComponent', {read: TemplateRef}) signinModalComponent : TemplateRef<any>
+  
   @ViewChild('cookieAgreementComponent', {read: TemplateRef}) cookieAgreementComponent : TemplateRef<any>
   @ViewChild('kgToS', {read: TemplateRef}) kgTosComponent: TemplateRef<any>
   @ViewChild(LayoutMainSide) layoutMainSide: LayoutMainSide
@@ -53,8 +46,6 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
   @ViewChild(FixedMouseContextualContainerDirective) rClContextualMenu: FixedMouseContextualContainerDirective
 
   @ViewChild('mobileMenuTabs') mobileMenuTabs: TabsetComponent
-  @ViewChild('publications') publications: TemplateRef<any>
-  @ViewChild('sidenav', { read: ElementRef} ) mobileSideNav: ElementRef
 
   /**
    * required for styling of all child components
@@ -63,9 +54,7 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
   darktheme: boolean = false
 
   @HostBinding('attr.ismobile')
-  get isMobile(){
-    return this.constantsService.mobile
-  }
+  public ismobile: boolean = false
 
   meetsRequirement: boolean = true
 
@@ -74,17 +63,23 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
 
   public selectedRegions$: Observable<any[]>
   public selectedPOI$ : Observable<any[]>
-  private showHelp$: Observable<any>
+  
+  private snackbarRef: MatSnackBarRef<any>
+  public snackbarMessage$: Observable<string>
+  private bottomSheetRef: MatBottomSheetRef
+  private bottomSheet$: Observable<TemplateRef<any>>
 
   public dedicatedView$: Observable<string | null>
   public onhoverSegments$: Observable<string[]>
   public onhoverSegmentsForFixed$: Observable<string[]>
-  public onhoverLandmark$ : Observable<string | null>
+  
+  public onhoverLandmark$ : Observable<{landmarkName: string, datasets: any} | null>
   private subscriptions: Subscription[] = []
 
   /* handlers for nglayer */
   /**
    * TODO make untangle nglayernames and its dependency on ng
+   * TODO deprecated
    */
   public ngLayerNames$ : Observable<any>
   public ngLayers : NgLayerInterface[]
@@ -95,13 +90,7 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
 
   public sidePanelOpen$: Observable<boolean>
 
-  handleToast
-  tPublication
-  pPublication
-
-  get toggleMessage(){
-    return this.constantsService.toggleMessage
-  }
+  public toggleMessage = this.constantsService.toggleMessage
 
   constructor(
     private store: Store<ViewerStateInterface>,
@@ -110,12 +99,28 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
     private constantsService: AtlasViewerConstantsServices,
     public urlService: AtlasViewerURLService,
     public apiService: AtlasViewerAPIServices,
-    private modalService: BsModalService,
-    private databrowserService: DatabrowserService,
+    private matDialog: MatDialog,
     private dispatcher$: ActionsSubject,
-    private toastService: ToastService,
-    private zipFileDownloadService: ZipFileDownloadService,
+    private rd: Renderer2,
+    public localFileService: LocalFileService,
+    private snackbar: MatSnackBar,
+    private bottomSheet: MatBottomSheet
   ) {
+
+    this.snackbarMessage$ = this.store.pipe(
+      select('uiState'),
+      select("snackbarMessage")
+    )
+
+    this.bottomSheet$ = this.store.pipe(
+      select('uiState'),
+      select('bottomSheetTemplate'),
+      distinctUntilChanged()
+    )
+
+    /**
+     * TODO deprecated
+     */
     this.ngLayerNames$ = this.store.pipe(
       select('viewerState'),
       filter(state => isDefined(state) && isDefined(state.templateSelected)),
@@ -136,10 +141,6 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
       map(state => state.sidePanelOpen)
     )
 
-    this.showHelp$ = this.constantsService.showHelpSubject$.pipe(
-      debounceTime(170)
-    )
-
     this.selectedRegions$ = this.store.pipe(
       select('viewerState'),
       filter(state=>isDefined(state)&&isDefined(state.regionsSelected)),
@@ -188,9 +189,16 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
         if(landmark === null)
           return landmark
         const idx = Number(landmark.replace('label=',''))
-        if(isNaN(idx))
-          return `Landmark index could not be parsed as a number: ${landmark}`
-        return spatialDatas[idx].name
+        if(isNaN(idx)) {
+          console.warn(`Landmark index could not be parsed as a number: ${landmark}`)
+          return {
+            landmarkName: idx
+          }
+        } else {
+          return  {
+            landmarkName: spatialDatas[idx].name
+          }
+        }
       })
     )
 
@@ -208,8 +216,7 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
     ).pipe(
       map(([segments, onhoverLandmark]) => onhoverLandmark ? null : segments ),
       map(segments => {
-        if (!segments)
-          return null
+        if (!segments) return null
         const filteredSeg = segments.filter(filterFn)
         return filteredSeg.length > 0
           ? segments.map(s => s.segment) 
@@ -224,75 +231,37 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
       distinctUntilChanged(),
     )
 
-
-    this.subscriptions.push(
-      this.newViewer$.subscribe(template => this.selectedTemplate = template)
-    )
-
     this.subscriptions.push(
       this.selectedParcellation$.subscribe(parcellation => {
         this.selectedParcellation = parcellation
+      })
+    )
 
-        if (this.selectedTemplate && this.selectedParcellation) {
-          if (this.selectedTemplate['properties'] && this.selectedTemplate['properties']['publications']) {
-            this.tPublication = this.selectedTemplate['properties']['publications']
-          } else {
-            this.tPublication = null
-          }
-          if (this.selectedParcellation['properties'] && this.selectedParcellation['properties']['publications']) {
-            this.pPublication = this.selectedParcellation['properties']['publications']
-          } else {
-            this.pPublication = null
-          }
+    this.subscriptions.push(
+      this.bottomSheet$.subscribe(templateRef => {
+        if (!templateRef) {
+          this.bottomSheetRef && this.bottomSheetRef.dismiss()
         } else {
-          this.tPublication = null
-          this.pPublication = null
-        }
-        
-        if (this.tPublication || this.pPublication) {
-
-          if (this.handleToast) {
-            this.handleToast()
-            this.handleToast = null
-          }
-          this.handleToast = this.toastService.showToast(this.publications, {
-              timeout: 7000
+          this.bottomSheetRef = this.bottomSheet.open(templateRef)
+          this.bottomSheetRef.afterDismissed().subscribe(() => {
+            this.store.dispatch({
+              type: SHOW_BOTTOM_SHEET,
+              bottomSheetTemplate: null
+            })
+            this.bottomSheetRef = null
           })
-          
         }
       })
     )
-
-
-  }
-
-  downloadPublications() {
-    const fileName = this.selectedTemplate.name + ' - ' + this.selectedParcellation.name
-    let publicationsText = ''
-
-    if (this.tPublication) {
-      publicationsText += this.selectedTemplate.name + ' Publications:\r\n'
-      this.tPublication.forEach((tp, i) => {
-        publicationsText += '\t' + (i+1) + '. ' + tp['citation'] + ' - ' + tp['doi'] + '\r\n'
-      });
-    }
-
-    if (this.pPublication) {
-      if (this.tPublication) publicationsText += '\r\n\r\n'
-      publicationsText += this.selectedParcellation.name + ' Publications:\r\n'
-      this.pPublication.forEach((pp, i) => {
-        publicationsText += '\t' + (i+1) + '. ' + pp['citation'] + ' - ' + pp['doi'] + '\r\n'
-      });
-    }
-    
-    this.zipFileDownloadService.downloadZip(publicationsText, fileName)
-    publicationsText = ''
   }
 
 
   private selectedParcellation$: Observable<any>
   private selectedParcellation: any
 
+  private cookieDialogRef: MatDialogRef<any>
+  private kgTosDialogRef: MatDialogRef<any>
+
   ngOnInit() {
     this.meetsRequirement = this.meetsRequirements()
 
@@ -314,29 +283,31 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
     }
 
     this.subscriptions.push(
-      this.showHelp$.subscribe(() => 
-        this.modalService.show(ModalUnit, {
-          initialState: {
-            title: this.constantsService.showHelpTitle,
-            template: this.helpComponent
-          }
-        })
-      )
+      this.constantsService.useMobileUI$.subscribe(bool => this.ismobile = bool)
     )
 
     this.subscriptions.push(
-      this.constantsService.showSigninSubject$.pipe(
-        debounceTime(160)
-      ).subscribe(user => {
-        this.modalService.show(ModalUnit, {
-          initialState: {
-            title: user ? 'Logout' : `Login`,
-            template: this.signinModalComponent
-          }
+      this.snackbarMessage$.pipe(
+        // angular material issue
+        // see https://github.com/angular/angular/issues/15634
+        // and https://github.com/angular/components/issues/11357
+        delay(0),
+      ).subscribe(messageSymbol => {
+        this.snackbarRef && this.snackbarRef.dismiss()
+
+        if (!messageSymbol) return
+
+        // https://stackoverflow.com/a/48191056/6059235
+        const message = messageSymbol.toString().slice(7, -1)
+        this.snackbarRef = this.snackbar.open(message, 'Dismiss', {
+          duration: 5000
         })
       })
     )
 
+    /**
+     * TODO deprecated
+     */
     this.subscriptions.push(
       this.ngLayerNames$.pipe(
         concatMap(data => this.constantsService.loadExportNehubaPromise.then(data))
@@ -374,10 +345,29 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
         filter(() => typeof this.layoutMainSide !== 'undefined')
       ).subscribe(v => this.layoutMainSide.showSide =  isDefined(v))
     )
+
+    this.subscriptions.push(
+      this.constantsService.darktheme$.subscribe(flag => {
+        this.rd.setAttribute(document.body,'darktheme', flag.toString())
+      })
+    )
   }
 
   ngAfterViewInit() {
     
+    /**
+     * preload the main bundle after atlas viewer has been loaded. 
+     * This should speed up where user first navigate to the home page,
+     * and the main.bundle should be downloading after atlasviewer has been rendered
+     */
+    if (this.meetsRequirement) {
+      const prefecthMainBundle = this.rd.createElement('link')
+      prefecthMainBundle.rel = 'preload'
+      prefecthMainBundle.as = 'script'
+      prefecthMainBundle.href = 'main.bundle.js'
+      this.rd.appendChild(document.head, prefecthMainBundle)
+    }
+
     /**
      * Show Cookie disclaimer if not yet agreed
      */
@@ -390,12 +380,7 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
       filter(agreed => !agreed),
       delay(0)
     ).subscribe(() => {
-      this.modalService.show(ModalUnit, {
-        initialState: {
-          title: 'Cookie Disclaimer',
-          template: this.cookieAgreementComponent
-        }
-      }) 
+      this.cookieDialogRef = this.matDialog.open(this.cookieAgreementComponent)
     })
 
     this.dispatcher$.pipe(
@@ -408,20 +393,13 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
       filter(flag => !flag),
       delay(0)
     ).subscribe(val => {
-      this.modalService.show(ModalUnit, {
-        initialState: {
-          title: 'Knowldge Graph ToS',
-          template: this.kgTosComponent
-        }
-      })
+      this.kgTosDialogRef = this.matDialog.open(this.kgTosComponent)
     })
 
     this.onhoverSegmentsForFixed$ = this.rClContextualMenu.onShow.pipe(
       withLatestFrom(this.onhoverSegments$),
       map(([_flag, onhoverSegments]) => onhoverSegments || [])
     )
-
-    this.closeMenuWithSwipe(this.mobileSideNav)
   }
 
   /**
@@ -434,7 +412,7 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
   /**
    * perhaps move this to constructor?
    */
-  meetsRequirements() {
+  meetsRequirements():boolean {
 
     const canvas = document.createElement('canvas')
     const gl = canvas.getContext('webgl2') as WebGLRenderingContext
@@ -449,17 +427,12 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
       return false
     }
 
-    if(this.constantsService.mobile){
-      this.modalService.show(ModalUnit,{
-        initialState: {
-          title: this.constantsService.mobileWarningHeader,
-          body: this.constantsService.mobileWarning
-        }
-      })
-    }
     return true
   }
 
+  /**
+   * TODO deprecated
+   */
   ngLayersChangeHandler(){
     this.ngLayers = (window['viewer'].layerManager.managedLayers as any[])
       // .filter(obj => obj.sourceUrl && /precomputed|nifti/.test(obj.sourceUrl))
@@ -472,25 +445,19 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
   }
 
   kgTosClickedOk(){
-    this.modalService.hide(1)
+    this.kgTosDialogRef && this.kgTosDialogRef.close()
     this.store.dispatch({
       type: AGREE_KG_TOS
     })
   }
 
   cookieClickedOk(){
-    this.modalService.hide(1)
+    this.cookieDialogRef && this.cookieDialogRef.close()
     this.store.dispatch({
       type: AGREE_COOKIE
     })
   }
 
-  panelAnimationEnd(){
-
-    if( this.nehubaContainer && this.nehubaContainer.nehubaViewer && this.nehubaContainer.nehubaViewer.nehubaViewer )
-      this.nehubaContainer.nehubaViewer.nehubaViewer.redraw()
-  }
-
   nehubaClickHandler(event:MouseEvent){
     if (!this.rClContextualMenu) return
     this.rClContextualMenu.mousePos = [
@@ -500,64 +467,13 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
     this.rClContextualMenu.show()
   }
 
-  toggleSidePanel(panelName:string){
-    this.store.dispatch({
-      type : TOGGLE_SIDE_PANEL,
-      focusedSidePanel :panelName
-    })
-  }
-
-  private selectedTemplate: any
-  searchRegion(regions:any[]){
+  openLandmarkUrl(dataset) {
     this.rClContextualMenu.hide()
-    this.databrowserService.queryData({ regions, parcellation: this.selectedParcellation, template: this.selectedTemplate })
-    if (this.isMobile) {
-      this.store.dispatch({
-        type : OPEN_SIDE_PANEL
-      })
-      this.mobileMenuTabs.tabs[1].active = true
-    }
+    window.open(dataset.externalLink, "_blank")
   }
 
   @HostBinding('attr.version')
   public _version : string = VERSION
-
-  changeMenuState({open, close}:{open?:boolean, close?:boolean} = {}) {
-    if (open) {
-      return this.store.dispatch({
-        type: OPEN_SIDE_PANEL
-      })
-    }
-    if (close) {
-      return this.store.dispatch({
-        type: CLOSE_SIDE_PANEL
-      })
-    }
-    this.store.dispatch({
-      type: TOGGLE_SIDE_PANEL
-    })
-  }
-
-
-  closeMenuWithSwipe(documentToSwipe: ElementRef) {
-    const swipeDistance = 150; // swipe distance
-    const swipeLeft$ = fromEvent(documentToSwipe.nativeElement, "touchstart")
-        .pipe(
-          switchMap(startEvent =>
-            fromEvent(documentToSwipe.nativeElement, "touchmove")
-                .pipe(
-                  takeUntil(fromEvent(documentToSwipe.nativeElement, "touchend"))
-                  ,map(event => event['touches'][0].pageX)
-                  ,scan((acc, pageX) => Math.round(startEvent['touches'][0].pageX - pageX), 0)
-                  ,takeLast(1)
-                  ,filter(difference => difference >= swipeDistance)
-                )))
-    // Subscription
-    swipeLeft$.subscribe(val => {
-      this.changeMenuState({close: true})
-    })
-  }
-
 }
 
 export interface NgLayerInterface{
diff --git a/src/atlasViewer/atlasViewer.constantService.service.spec.ts b/src/atlasViewer/atlasViewer.constantService.service.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..72f7f4c3f146f2fef352a2a3e0c6daa3c91ea224
--- /dev/null
+++ b/src/atlasViewer/atlasViewer.constantService.service.spec.ts
@@ -0,0 +1,132 @@
+import { encodeNumber, decodeToNumber } from './atlasViewer.constantService.service'
+import {} from 'jasmine'
+
+const FLOAT_PRECISION = 6
+
+describe('encodeNumber/decodeToNumber', () => {
+
+
+  const getCompareOriginal = (original: number[]) => (element:string, index: number) => 
+    original[index].toString().length >= element.length
+  
+
+  const lengthShortened = (original: number[], encodedString: string[]) =>
+    encodedString.every(getCompareOriginal(original))
+
+  it('should encode/decode positive integer as expected', () => {
+
+    const positiveInt = [
+      0,
+      1,
+      99999999999,
+      12347
+    ]
+
+    const encodedString = positiveInt.map(n => encodeNumber(n))
+    const decodedString = encodedString.map(s => decodeToNumber(s))
+    expect(decodedString).toEqual(positiveInt)
+    
+    expect(lengthShortened(positiveInt, encodedString)).toBe(true)
+  })
+
+  it('should encode/decode ANY positive integer as expected', () => {
+    const posInt = Array(1000).fill(null).map(() => {
+      const numDig = Math.ceil(Math.random() * 7)
+      return Math.floor(Math.random() * Math.pow(10, numDig))
+    })
+    const encodedString = posInt.map(n => encodeNumber(n))
+    const decodedNumber = encodedString.map(s => decodeToNumber(s))
+    expect(decodedNumber).toEqual(posInt)
+
+    expect(lengthShortened(posInt, encodedString)).toBe(true)
+  })
+
+
+  it('should encode/decode signed integer as expected', () => {
+
+    const signedInt = [
+      0,
+      -0,
+      -1,
+      1,
+      128,
+      -54
+    ]
+  
+    const encodedString = signedInt.map(n => encodeNumber(n))
+    const decodedNumber = encodedString.map(s => decodeToNumber(s))
+
+    /**
+     * -0 will be converted to 0 by the encode/decode process, but does not deep equal, according to jasmine
+     */
+    expect(decodedNumber).toEqual(signedInt.map(v => v === 0 ? 0 : v))
+
+    expect(lengthShortened(signedInt, encodedString)).toBe(true)
+  })
+
+  it('should encode/decode ANY signed integer as expected', () => {
+
+    const signedInt = Array(1000).fill(null).map(() => {
+      const numDig = Math.ceil(Math.random() * 7)
+      return Math.floor(Math.random() * Math.pow(10, numDig)) * (Math.random() > 0.5 ? 1 : -1)
+    })
+    const encodedString = signedInt.map(n => encodeNumber(n))
+    const decodedNumber = encodedString.map(s => decodeToNumber(s))
+
+    /**
+     * -0 will be converted to 0 by the encode/decode process, but does not deep equal, according to jasmine
+     */
+    expect(decodedNumber).toEqual(signedInt.map(v => v === 0 ? 0 : v))
+
+    expect(lengthShortened(signedInt, encodedString)).toBe(true)
+  })
+
+
+  it('should encode/decode float as expected', () => {
+    const floatNum = [
+      0.111,
+      12.23,
+      1723.0
+    ]
+
+    const encodedString = floatNum.map(f => encodeNumber(f, { float: true }))
+    const decodedNumber = encodedString.map(s => decodeToNumber(s, { float: true }))
+    expect(decodedNumber.map(n => n.toFixed(FLOAT_PRECISION))).toEqual(floatNum.map(n => n.toFixed(FLOAT_PRECISION)))
+  })
+
+  it('should encode/decode ANY float as expected', () => {
+    const floatNums = Array(1000).fill(null).map(() => {
+      const numDig = Math.ceil(Math.random() * 7)
+      return (Math.random() > 0.5 ? 1 : -1) * Math.floor(
+        Math.random() * Math.pow(10, numDig)
+      )
+    })
+
+    const encodedString = floatNums.map(f => encodeNumber(f, { float: true }))
+    const decodedNumber = encodedString.map(s => decodeToNumber(s, { float: true }))
+
+    expect(floatNums.map(v => v.toFixed(FLOAT_PRECISION))).toEqual(decodedNumber.map(n => n.toFixed(FLOAT_PRECISION)))
+  })
+
+  it('poisoned hash should throw', () => {
+    const illegialCharacters = './\\?#!@#^%&*()+={}[]\'"\n\t;:'
+    for (let char of illegialCharacters.split('')) {
+      expect(function (){
+        decodeToNumber(char)
+      }).toThrow()
+    }
+  })
+
+  it('poisoned hash can be caught', () => {
+
+    const testArray = ['abc', './\\', 'Cde']
+    const decodedNum = testArray.map(v => {
+      try {
+        return decodeToNumber(v)
+      } catch (e) {
+        return null
+      }
+    }).filter(v => !!v)
+    expect(decodedNum.length).toEqual(2)
+  })
+})
\ No newline at end of file
diff --git a/src/atlasViewer/atlasViewer.constantService.service.ts b/src/atlasViewer/atlasViewer.constantService.service.ts
index cdcdbd71ed6b74084e717678edf0d7bd01a61b98..41899d81dcdb348882b4ff3d995cf786c5900f91 100644
--- a/src/atlasViewer/atlasViewer.constantService.service.ts
+++ b/src/atlasViewer/atlasViewer.constantService.service.ts
@@ -1,8 +1,9 @@
-import { Injectable } from "@angular/core";
-import { Store } from "@ngrx/store";
-import { ViewerStateInterface, Property, FETCHED_METADATA } from "../services/stateStore.service";
-import { Subject } from "rxjs";
-import { ACTION_TYPES, ViewerConfiguration } from 'src/services/state/viewerConfig.store'
+import { Injectable, OnDestroy } from "@angular/core";
+import { Store, select } from "@ngrx/store";
+import { ViewerStateInterface } from "../services/stateStore.service";
+import { Subject, Observable, Subscription } from "rxjs";
+import { map, shareReplay, filter, tap } from "rxjs/operators";
+import { SNACKBAR_MESSAGE } from "src/services/state/uiState.store";
 
 export const CM_THRESHOLD = `0.05`
 export const CM_MATLAB_JET = `float r;if( x < 0.7 ){r = 4.0 * x - 1.5;} else {r = -4.0 * x + 4.5;}float g;if (x < 0.5) {g = 4.0 * x - 0.5;} else {g = -4.0 * x + 3.5;}float b;if (x < 0.3) {b = 4.0 * x + 0.5;} else {b = -4.0 * x + 2.5;}float a = 1.0;`
@@ -11,10 +12,12 @@ export const CM_MATLAB_JET = `float r;if( x < 0.7 ){r = 4.0 * x - 1.5;} else {r
   providedIn : 'root'
 })
 
-export class AtlasViewerConstantsServices{
+export class AtlasViewerConstantsServices implements OnDestroy {
 
   public darktheme: boolean = false
-  public mobile: boolean
+  public darktheme$: Observable<boolean>
+
+  public useMobileUI$: Observable<boolean>
   public loadExportNehubaPromise : Promise<boolean>
 
   public getActiveColorMapFragmentMain = ():string=>`void main(){float x = toNormalized(getDataValue());${CM_MATLAB_JET}if(x>${CM_THRESHOLD}){emitRGB(vec3(r,g,b));}else{emitTransparent();}}`
@@ -70,16 +73,6 @@ export class AtlasViewerConstantsServices{
 
   public templateUrls = Array(100)
 
-  private _templateUrls = [
-    // 'res/json/infant.json',
-    'res/json/bigbrain.json',
-    'res/json/colin.json',
-    'res/json/MNI152.json',
-    'res/json/waxholmRatV2_0.json',
-    'res/json/allenMouse.json',
-    // 'res/json/test.json'
-  ]
-
   /* to be provided by KG in future */
   private _mapArray : [string,string[]][] = [
     [ 'JuBrain Cytoarchitectonic Atlas' ,  
@@ -95,7 +88,7 @@ export class AtlasViewerConstantsServices{
       ]
     ],
     [
-      'Allen adult mouse brain reference atlas V3 Brain Atlas',
+      'Allen Mouse Common Coordinate Framework v3 2015',
       [
         'res/json/allenAggregated.json'
       ]
@@ -181,20 +174,10 @@ Interactive atlas viewer requires **webgl2.0**, and the \`EXT_color_buffer_float
    */
   public toggleMessage: string = 'double click to toggle select, right click to search'
 
-  /**
-   * observable for showing login modal
-   */
-  public showSigninSubject$: Subject<any> = new Subject()
-
   /**
    * Observable for showing config modal
    */
   public showConfigTitle: String = 'Settings'
-  /**
-   * Observable for showing help modal
-   */
-  public showHelpSubject$: Subject<null> = new Subject()
-  public showHelpTitle: String = 'About'
 
   private showHelpGeneralMobile = [
     ['hold 🌏 + ↕', 'change oblique slice mode'],
@@ -205,12 +188,9 @@ Interactive atlas viewer requires **webgl2.0**, and the \`EXT_color_buffer_float
     ['h', 'show help'],
     ['?', 'show help'],
     ['o', 'toggle perspective/orthographic']
-  ] 
-  get showHelpGeneralMap() {
-    return this.mobile
-      ? this.showHelpGeneralMobile
-      : this.showHelpGeneralDesktop
-  }
+  ]
+
+  public showHelpGeneralMap = this.showHelpGeneralDesktop
 
   private showHelpSliceViewMobile = [
     ['drag', 'pan']
@@ -219,11 +199,8 @@ Interactive atlas viewer requires **webgl2.0**, and the \`EXT_color_buffer_float
     ['drag', 'pan'],
     ['shift + drag', 'oblique slice']
   ]
-  get showHelpSliceViewMap() {
-    return this.mobile
-      ? this.showHelpSliceViewMobile
-      : this.showHelpSliceViewDesktop
-  }
+
+  public showHelpSliceViewMap = this.showHelpSliceViewDesktop
 
   private showHelpPerspectiveMobile = [
     ['drag', 'change perspective view']
@@ -232,17 +209,17 @@ Interactive atlas viewer requires **webgl2.0**, and the \`EXT_color_buffer_float
   private showHelpPerspectiveDesktop = [
     ['drag', 'change perspective view']
   ]
-  get showHelpPerspectiveViewMap() {
-    return this.mobile
-      ? this.showHelpPerspectiveMobile
-      : this.showHelpPerspectiveDesktop
-  }
+  public showHelpPerspectiveViewMap = this.showHelpPerspectiveDesktop
+
+  /**
+   * raise/track issues at github repo: <a target = "_blank" href = "${this.repoUrl}">${this.repoUrl}</a>
+   */
+
+  private supportEmailAddress = `inm1-bda@fz-juelich.de`
+
+  public showHelpSupportText:string = `Did you encounter an issue? 
+Send us an email: <a target = "_blank" href = "mailto:${this.supportEmailAddress}">${this.supportEmailAddress}</a>`
 
-  get showHelpSupportText() {
-    return `Did you encounter an issue? 
-      Send us an email: <a target = "_blank" href = "mailto:${this.supportEmailAddress}">${this.supportEmailAddress}</a>, 
-      raise/track issues at github repo: <a target = "_blank" href = "${this.repoUrl}">${this.repoUrl}</a>`
-  }
 
   incorrectParcellationNameSearchParam(title) {
     return `The selected parcellation - ${title} - is not available. The the first parcellation of the template is selected instead.`
@@ -252,55 +229,63 @@ Interactive atlas viewer requires **webgl2.0**, and the \`EXT_color_buffer_float
     return `The selected template - ${title} - is not available.`
   }
 
-  private supportEmailAddress = `x.gui@fz-juelich.de`
   private repoUrl = `https://github.com/HumanBrainProject/interactive-viewer`
 
-  constructor(private store : Store<ViewerStateInterface>){
-
-    const ua = window && window.navigator && window.navigator.userAgent
-      ? window.navigator.userAgent
-      : ''
-
-    /* https://stackoverflow.com/a/25394023/6059235 */
-    this.mobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini|Mobile|mobile|CriOS/i.test(ua)
-
-    /**
-     * set gpu limit if user is on mobile
-     */
-    if (this.mobile) {
-      this.store.dispatch({
-        type: ACTION_TYPES.UPDATE_CONFIG,
-        config: {
-          gpuLimit: 2e8
-        } as Partial<ViewerConfiguration>
-      })  
+  constructor(
+    private store$ : Store<ViewerStateInterface>
+  ){
+
+    this.darktheme$ = this.store$.pipe(
+      select('viewerState'),
+      select('templateSelected'),
+      filter(v => !!v),
+      map(({useTheme}) => useTheme === 'dark'),
+      shareReplay(1)
+    )
+
+    this.useMobileUI$ = this.store$.pipe(
+      select('viewerConfigState'),
+      select('useMobileUI'),
+      shareReplay(1)
+    )
+
+    this.subscriptions.push(
+      this.useMobileUI$.subscribe(bool => {
+        if (bool) {
+          this.showHelpSliceViewMap = this.showHelpSliceViewMobile
+          this.showHelpGeneralMap = this.showHelpGeneralMobile
+          this.showHelpPerspectiveViewMap = this.showHelpPerspectiveMobile
+          this.dissmissUserLayerSnackbarMessage = this.dissmissUserLayerSnackbarMessageMobile
+        } else {
+          this.showHelpSliceViewMap = this.showHelpSliceViewDesktop
+          this.showHelpGeneralMap = this.showHelpGeneralDesktop
+          this.showHelpPerspectiveViewMap = this.showHelpPerspectiveDesktop
+          this.dissmissUserLayerSnackbarMessage = this.dissmissUserLayerSnackbarMessageDesktop
+        }
+      })
+    )
+  }
+
+  private subscriptions: Subscription[] = []
+
+  ngOnDestroy(){
+    while(this.subscriptions.length > 0) {
+      this.subscriptions.pop().unsubscribe()
     }
+  }
 
-    /**
-     * TODO deprecate
-     */
-    const meta = 'res/json/allAggregatedData.json'
-  
-    fetch(meta, this.getFetchOption())
-      .then(res=>res.json())
-      .then(metadata=>{
-        const data = metadata.reduce((acc:[string,Map<string,{properties:Property}>][],curr:any)=>{
-          const idx = acc.findIndex((it)=>it[0]===curr[0].targetParcellation)
-          return idx >= 0 ? 
-            acc.map((it,i)=> i === idx ? [it[0], it[1].set(curr[0].datasetName,curr[1])] : it ) :
-            acc.concat([[ curr[0].targetParcellation , new Map([[curr[0].datasetName , curr[1]]]) ]])
-              
-              /* [[ curr[0].targetParcellation , [ curr[0].datasetName , curr[1]] ]] */
-        },[] as [string,Map<string,{properties:Property}>][])
-        
-        this.store.dispatch({
-          type : FETCHED_METADATA,
-          fetchedMetadataMap : new Map(data)
-        })
-        
-      })
-      .catch(console.error)
+  catchError(e: Error | string){
+    this.store$.dispatch({
+      type: SNACKBAR_MESSAGE,
+      snackbarMessage: e.toString()
+    })
   }
+
+  public cyclePanelMessage: string = `[spacebar] to cycle through views`
+
+  private dissmissUserLayerSnackbarMessageDesktop = `You can dismiss extra layers with [ESC]` 
+  private dissmissUserLayerSnackbarMessageMobile = `You can dismiss extra layers in the 🌏 menu`
+  public dissmissUserLayerSnackbarMessage: string = this.dissmissUserLayerSnackbarMessageDesktop
 }
 
 const parseURLToElement = (url:string):HTMLElement=>{
@@ -324,12 +309,107 @@ export const UNSUPPORTED_PREVIEW = [{
 export const UNSUPPORTED_INTERVAL = 7000
 
 export const SUPPORT_LIBRARY_MAP : Map<string,HTMLElement> = new Map([
-  ['jquery@3',parseURLToElement('http://code.jquery.com/jquery-3.3.1.min.js')],
-  ['jquery@2',parseURLToElement('http://code.jquery.com/jquery-2.2.4.min.js')],
+  ['jquery@3',parseURLToElement('https://code.jquery.com/jquery-3.3.1.min.js')],
+  ['jquery@2',parseURLToElement('https://code.jquery.com/jquery-2.2.4.min.js')],
   ['webcomponentsLite@1.1.0',parseURLToElement('https://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/1.1.0/webcomponents-lite.js')],
   ['react@16',parseURLToElement('https://unpkg.com/react@16/umd/react.development.js')],
   ['reactdom@16',parseURLToElement('https://unpkg.com/react-dom@16/umd/react-dom.development.js')],
   ['vue@2.5.16',parseURLToElement('https://cdn.jsdelivr.net/npm/vue@2.5.16/dist/vue.js')],
   ['preact@8.4.2',parseURLToElement('https://cdn.jsdelivr.net/npm/preact@8.4.2/dist/preact.min.js')],
   ['d3@5.7.0',parseURLToElement('https://cdnjs.cloudflare.com/ajax/libs/d3/5.7.0/d3.min.js')]
-])
\ No newline at end of file
+])
+
+/**
+ * First attempt at encoding int (e.g. selected region, navigation location) from number (loc info density) to b64 (higher info density)
+ * The constraint is that the cipher needs to be commpatible with URI encoding
+ * and a URI compatible separator is required. 
+ * 
+ * The implementation below came from 
+ * https://stackoverflow.com/a/6573119/6059235
+ * 
+ * While a faster solution exist in the same post, this operation is expected to be done:
+ * - once per 1 sec frequency
+ * - on < 1000 numbers
+ * 
+ * So performance is not really that important (Also, need to learn bitwise operation)
+ */
+
+const cipher = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_-'
+export const separator = "."
+const negString = '~'
+
+const encodeInt = (number: number) => {
+  if (number % 1 !== 0) throw 'cannot encodeInt on a float. Ensure float flag is set'
+  if (isNaN(Number(number)) || number === null || number === Number.POSITIVE_INFINITY) throw 'The input is not valid'
+
+  let rixit // like 'digit', only in some non-decimal radix 
+  let residual
+  let result = ''
+
+  if (number < 0) {
+    result += negString
+    residual = Math.floor(number * -1)
+  } else {
+    residual = Math.floor(number)
+  }
+
+  while (true) {
+    rixit = residual % 64
+    // console.log("rixit : " + rixit)
+    // console.log("result before : " + result)
+    result = cipher.charAt(rixit) + result
+    // console.log("result after : " + result)
+    // console.log("residual before : " + residual)
+    residual = Math.floor(residual / 64)
+    // console.log("residual after : " + residual)
+
+    if (residual == 0)
+      break;
+    }
+  return result
+}
+
+interface B64EncodingOption {
+  float: boolean
+}
+
+const defaultB64EncodingOption = {
+  float: false
+}
+
+export const encodeNumber: (number:number, option?: B64EncodingOption) => string = (number: number, { float = false }: B64EncodingOption = defaultB64EncodingOption) => {
+  if (!float) return encodeInt(number)
+  else {
+    const floatArray = new Float32Array(1)
+    floatArray[0] = number
+    const intArray = new Uint32Array(floatArray.buffer)
+    const castedInt = intArray[0]
+    return encodeInt(castedInt)
+  }
+}
+
+const decodetoInt = (encodedString: string) => {
+  let _encodedString, negFlag = false
+  if (encodedString.slice(-1) === negString) {
+    negFlag = true
+    _encodedString = encodedString.slice(0, -1)
+  } else {
+    _encodedString = encodedString
+  }
+  return (negFlag ? -1 : 1) * [..._encodedString].reduce((acc,curr) => {
+    const index = cipher.indexOf(curr)
+    if (index < 0) throw new Error(`Poisoned b64 encoding ${encodedString}`)
+    return acc * 64 + index
+  }, 0)
+}
+
+export const decodeToNumber: (encodedString:string, option?: B64EncodingOption) => number = (encodedString: string, {float = false} = defaultB64EncodingOption) => {
+  if (!float) return decodetoInt(encodedString)
+  else {
+    const _int = decodetoInt(encodedString)
+    const intArray = new Uint32Array(1)
+    intArray[0] = _int
+    const castedFloat = new Float32Array(intArray.buffer)
+    return castedFloat[0]
+  }
+}
diff --git a/src/atlasViewer/atlasViewer.dataService.service.ts b/src/atlasViewer/atlasViewer.dataService.service.ts
index e19a8c363580c18d47209bb8b79c7e98a619326a..a1abc3bf9003989b315011fc07171a96fea813ae 100644
--- a/src/atlasViewer/atlasViewer.dataService.service.ts
+++ b/src/atlasViewer/atlasViewer.dataService.service.ts
@@ -82,7 +82,7 @@ export class AtlasViewerDataService implements OnDestroy{
     /* TODO future for template space? */
     const filterTemplateSpace = templateSpace == 'MNI Colin 27' ? 
       'datapath:metadata/sEEG-sample.json' :
-        templateSpace == 'Waxholm Space rat brain atlas v.2.0' ?
+        templateSpace == 'Waxholm Space rat brain MRI/DTI' ?
         'datapath:metadata/OSLO_sp_data_rev.json' :
           null
     
@@ -128,7 +128,7 @@ export class AtlasViewerDataService implements OnDestroy{
           })
         })
         .catch(console.error)
-    }else if (templateSpace === 'Waxholm Space rat brain atlas v.2.0'){
+    }else if (templateSpace === 'Waxholm Space rat brain MRI/DTI'){
       return Promise.all([
         // fetch('res/json/waxholmPlaneAggregatedData.json').then(res => res.json()),
         fetch('res/json/camillaWaxholmPointsAggregatedData.json').then(res => res.json())
diff --git a/src/atlasViewer/atlasViewer.pluginService.service.spec.ts b/src/atlasViewer/atlasViewer.pluginService.service.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..a040e3f2360184ecb8df8e08eef7111667012a3c
--- /dev/null
+++ b/src/atlasViewer/atlasViewer.pluginService.service.spec.ts
@@ -0,0 +1,108 @@
+import { PluginServices } from "./atlasViewer.pluginService.service";
+import { TestBed, inject } from "@angular/core/testing";
+import { MainModule } from "src/main.module";
+import { HttpTestingController, HttpClientTestingModule } from '@angular/common/http/testing'
+
+const MOCK_PLUGIN_MANIFEST = {
+  name: 'fzj.xg.MOCK_PLUGIN_MANIFEST',
+  templateURL: 'http://localhost:10001/template.html',
+  scriptURL: 'http://localhost:10001/script.js'
+}
+
+describe('PluginServices', () => {
+  let pluginService: PluginServices
+
+  beforeEach(async () => {
+    await TestBed.configureTestingModule({
+      imports: [
+        HttpClientTestingModule,
+        MainModule
+      ]
+    }).compileComponents()
+
+    pluginService = TestBed.get(PluginServices)
+  })
+
+  it(
+    'is instantiated in test suite OK',
+    () => expect(TestBed.get(PluginServices)).toBeTruthy()
+  )
+
+  it(
+    'expectOne is working as expected',
+    inject([HttpTestingController], (httpMock: HttpTestingController) => {
+      expect(httpMock.match('test').length).toBe(0)
+      pluginService.fetch('test')
+      expect(httpMock.match('test').length).toBe(1)
+      pluginService.fetch('test')
+      pluginService.fetch('test')
+      expect(httpMock.match('test').length).toBe(2)
+    })
+  )
+
+  describe('#launchPlugin', () => {
+
+    describe('basic fetching functionality', () => {
+      it(
+        'fetches templateURL and scriptURL properly',
+        inject([HttpTestingController], (httpMock: HttpTestingController) => {
+  
+          pluginService.launchPlugin(MOCK_PLUGIN_MANIFEST)
+    
+          const mockTemplate = httpMock.expectOne(MOCK_PLUGIN_MANIFEST.templateURL)
+          const mockScript = httpMock.expectOne(MOCK_PLUGIN_MANIFEST.scriptURL)
+    
+          expect(mockTemplate).toBeTruthy()
+          expect(mockScript).toBeTruthy()
+        })
+      )
+  
+      it(
+        'template overrides templateURL',
+        inject([HttpTestingController], (httpMock: HttpTestingController) => {
+          pluginService.launchPlugin({
+            ...MOCK_PLUGIN_MANIFEST,
+            template: ''
+          })
+          
+          httpMock.expectNone(MOCK_PLUGIN_MANIFEST.templateURL)
+          const mockScript = httpMock.expectOne(MOCK_PLUGIN_MANIFEST.scriptURL)
+    
+          expect(mockScript).toBeTruthy()
+        })
+      )
+  
+      it(
+        'script overrides scriptURL',
+  
+        inject([HttpTestingController], (httpMock: HttpTestingController) => {
+          pluginService.launchPlugin({
+            ...MOCK_PLUGIN_MANIFEST,
+            script: ''
+          })
+          
+          const mockTemplate = httpMock.expectOne(MOCK_PLUGIN_MANIFEST.templateURL)
+          httpMock.expectNone(MOCK_PLUGIN_MANIFEST.scriptURL)
+    
+          expect(mockTemplate).toBeTruthy()
+        })
+      )
+    })
+
+    describe('racing slow cconnection when launching plugin', () => {
+      it(
+        'when template/script has yet been fetched, repeated launchPlugin should not result in repeated fetching',
+        inject([HttpTestingController], (httpMock:HttpTestingController) => {
+
+          expect(pluginService.pluginIsLaunching(MOCK_PLUGIN_MANIFEST.name)).toBeFalsy()
+          pluginService.launchPlugin(MOCK_PLUGIN_MANIFEST)
+          pluginService.launchPlugin(MOCK_PLUGIN_MANIFEST)
+          expect(httpMock.match(MOCK_PLUGIN_MANIFEST.scriptURL).length).toBe(1)
+          expect(httpMock.match(MOCK_PLUGIN_MANIFEST.templateURL).length).toBe(1)
+
+          expect(pluginService.pluginIsLaunching(MOCK_PLUGIN_MANIFEST.name)).toBeTruthy()
+        })
+      )
+    })
+  })
+})
\ No newline at end of file
diff --git a/src/atlasViewer/atlasViewer.pluginService.service.ts b/src/atlasViewer/atlasViewer.pluginService.service.ts
index f7e2c5ef7414599ffe7029c97303d3eb1fba1655..de7e16025e503ca0f985171532d86ae665a9e82b 100644
--- a/src/atlasViewer/atlasViewer.pluginService.service.ts
+++ b/src/atlasViewer/atlasViewer.pluginService.service.ts
@@ -1,13 +1,14 @@
 import { Injectable, ViewContainerRef, ComponentFactoryResolver, ComponentFactory } from "@angular/core";
-import { PluginInitManifestInterface, ACTION_TYPES } from "src/services/state/pluginState.store";
+import { PluginInitManifestInterface, PLUGIN_STATE_ACTION_TYPES } from "src/services/state/pluginState.store";
+import { HttpClient } from '@angular/common/http'
 import { isDefined } from 'src/services/stateStore.service'
 import { AtlasViewerAPIServices } from "./atlasViewer.apiService.service";
 import { PluginUnit } from "./pluginUnit/pluginUnit.component";
 import { WidgetServices } from "./widgetUnit/widgetService.service";
 
 import '../res/css/plugin_styles.css'
-import { interval } from "rxjs";
-import { take, takeUntil } from "rxjs/operators";
+import { BehaviorSubject, Observable, merge, of } from "rxjs";
+import { map, shareReplay } from "rxjs/operators";
 import { Store } from "@ngrx/store";
 import { WidgetUnit } from "./widgetUnit/widgetUnit.component";
 import { AtlasViewerConstantsServices } from "./atlasViewer.constantService.service";
@@ -23,13 +24,20 @@ export class PluginServices{
   public appendSrc : (script:HTMLElement)=>void
   public removeSrc: (script:HTMLElement) => void
   private pluginUnitFactory : ComponentFactory<PluginUnit>
+  public minimisedPlugins$ : Observable<Set<string>>
+
+  /**
+   * TODO remove polyfil and convert all calls to this.fetch to http client
+   */
+  public fetch: (url:string, httpOption?: any) => Promise<any> = (url, httpOption = {}) => this.http.get(url, httpOption).toPromise()
 
   constructor(
     private apiService : AtlasViewerAPIServices,
     private constantService : AtlasViewerConstantsServices,
     private widgetService : WidgetServices,
     private cfr : ComponentFactoryResolver,
-    private store : Store<PluginInitManifestInterface>
+    private store : Store<PluginInitManifestInterface>,
+    private http: HttpClient
   ){
 
     this.pluginUnitFactory = this.cfr.resolveComponentFactory( PluginUnit )
@@ -40,9 +48,7 @@ export class PluginServices{
      */
     const promiseFetchedPluginManifests : Promise<PluginManifest[]> = new Promise((resolve, reject) => {
       Promise.all([
-        /**
-         * PLUGINDEV should return an array of 
-         */
+        // TODO convert to use this.fetch
         PLUGINDEV
           ? fetch(PLUGINDEV, this.constantService.getFetchOption()).then(res => res.json())
           : Promise.resolve([]),
@@ -61,6 +67,7 @@ export class PluginServices{
               manifests.filter(m => !!m)
             ))
             .catch(e => {
+              this.constantService.catchError(e)
               resolve([])
             })
         }),
@@ -79,6 +86,24 @@ export class PluginServices{
       .then(arr=>
         this.fetchedPluginManifests = arr)
       .catch(console.error)
+
+    this.minimisedPlugins$ = merge(
+      of(new Set()),
+      this.widgetService.minimisedWindow$
+    ).pipe(
+      map(set => {
+        const returnSet = new Set<string>()
+        for (let [pluginName, wu] of this.mapPluginNameToWidgetUnit) {
+          if (set.has(wu)) {
+            returnSet.add(pluginName)
+          }
+        }
+        return returnSet
+      }),
+      shareReplay(1)
+    )
+
+    this.launchedPlugins$ = new BehaviorSubject(new Set())
   }
 
   launchNewWidget = (manifest) => this.launchPlugin(manifest)
@@ -108,23 +133,62 @@ export class PluginServices{
       ])
   }
 
-  public launchedPlugins: Set<string> = new Set()
+  private launchedPlugins: Set<string> = new Set()
+  public launchedPlugins$: BehaviorSubject<Set<string>>
+  pluginHasLaunched(pluginName:string) {
+    return this.launchedPlugins.has(pluginName)
+  }
+  addPluginToLaunchedSet(pluginName:string){
+    this.launchedPlugins.add(pluginName)
+    this.launchedPlugins$.next(this.launchedPlugins)
+  }
+  removePluginFromLaunchedSet(pluginName:string){
+    this.launchedPlugins.delete(pluginName)
+    this.launchedPlugins$.next(this.launchedPlugins)
+  }
+
+  
+  pluginIsLaunching(pluginName:string){
+    return this.launchingPlugins.has(pluginName)
+  }
+  addPluginToIsLaunchingSet(pluginName:string) {
+    this.launchingPlugins.add(pluginName)
+  }
+  removePluginFromIsLaunchingSet(pluginName:string){
+    this.launchingPlugins.delete(pluginName)
+  }
+
   private mapPluginNameToWidgetUnit: Map<string, WidgetUnit> = new Map()
 
-  pluginMinimised(pluginManifest:PluginManifest){
-    return this.widgetService.minimisedWindow.has( this.mapPluginNameToWidgetUnit.get(pluginManifest.name) )
+  pluginIsMinimised(pluginName:string) {
+    return this.widgetService.isMinimised( this.mapPluginNameToWidgetUnit.get(pluginName) )
   }
 
+  private launchingPlugins: Set<string> = new Set()
   public orphanPlugins: Set<PluginManifest> = new Set()
   launchPlugin(plugin:PluginManifest){
-    if(this.apiService.interactiveViewer.pluginControl[plugin.name])
-    {
-      console.warn('plugin already launched. blinking for 10s.')
-      this.apiService.interactiveViewer.pluginControl[plugin.name].blink(10)
+    if (this.pluginIsLaunching(plugin.name)) {
+      // plugin launching please be patient
+      // TODO add visual feedback
+      return
+    }
+    if ( this.pluginHasLaunched(plugin.name)) {
+      // plugin launched
+      // TODO add visual feedback
+
+      // if widget window is minimized, maximize it
+      
       const wu = this.mapPluginNameToWidgetUnit.get(plugin.name)
-      this.widgetService.minimisedWindow.delete(wu)
-      return Promise.reject('plugin already launched')
+      if (this.widgetService.isMinimised(wu)) {
+        this.widgetService.unminimise(wu)
+      } else {
+        this.widgetService.minimise(wu)
+      }
+      return
     }
+
+    this.addPluginToIsLaunchingSet(plugin.name)
+    
     return this.readyPlugin(plugin)
       .then(()=>{
         const pluginUnit = this.pluginViewContainerRef.createComponent( this.pluginUnitFactory )
@@ -154,7 +218,7 @@ export class PluginServices{
           : null
 
         handler.setInitManifestUrl = (url) => this.store.dispatch({
-          type : ACTION_TYPES.SET_INIT_PLUGIN,
+          type : PLUGIN_STATE_ACTION_TYPES.SET_INIT_PLUGIN,
           manifest : {
             name : plugin.name,
             initManifestUrl : url
@@ -163,7 +227,7 @@ export class PluginServices{
 
         const shutdownCB = [
           () => {
-            this.launchedPlugins.delete(plugin.name)
+            this.removePluginFromLaunchedSet(plugin.name)
           }
         ]
 
@@ -191,28 +255,18 @@ export class PluginServices{
           title : plugin.displayName || plugin.name
         })
 
-        this.launchedPlugins.add(plugin.name)
+        this.addPluginToLaunchedSet(plugin.name)
+        this.removePluginFromIsLaunchingSet(plugin.name)
+
         this.mapPluginNameToWidgetUnit.set(plugin.name, widgetCompRef.instance)
 
         const unsubscribeOnPluginDestroy = []
 
         handler.blink = (sec?:number)=>{
-          if(typeof sec !== 'number')
-            console.warn(`sec is not a number, default blink interval used`)
-          widgetCompRef.instance.containerClass = ''
-          interval(typeof sec === 'number' ? sec * 1000 : 500).pipe(
-            take(11),
-            takeUntil(widgetCompRef.instance.clickedEmitter)
-          ).subscribe(()=>
-            widgetCompRef.instance.containerClass = widgetCompRef.instance.containerClass === 'panel-success' ? 
-              '' : 
-              'panel-success')
+          widgetCompRef.instance.blinkOn = true
         }
 
-        unsubscribeOnPluginDestroy.push(
-          widgetCompRef.instance.clickedEmitter.subscribe(()=>
-            widgetCompRef.instance.containerClass = '')
-          )
+        handler.setProgressIndicator = (val) => widgetCompRef.instance.progressIndicator = val
 
         handler.shutdown = ()=>{
           widgetCompRef.instance.exit()
@@ -244,6 +298,8 @@ export class PluginHandler{
   initStateUrl? : string
 
   setInitManifestUrl : (url:string|null)=>void
+
+  setProgressIndicator: (progress:number) => void
 }
 
 export interface PluginManifest{
diff --git a/src/atlasViewer/atlasViewer.style.css b/src/atlasViewer/atlasViewer.style.css
index 283df246c121ad228e514660757f1cbff1c8a20b..aca0ca06ef6f9579c7a615829f43f407a62e598d 100644
--- a/src/atlasViewer/atlasViewer.style.css
+++ b/src/atlasViewer/atlasViewer.style.css
@@ -1,6 +1,4 @@
-/* @import '~@angular/material/prebuilt-themes/indigo-pink.css'; */
-
-:host, :host > .atlas-container
+:host
 {
   display:block;
   width:100%;
@@ -21,20 +19,6 @@ ui-nehuba-container
   height:100%;
 }
 
-/* zindex of banner wrapper needs to be lower than zindex of floating layer */
-div[bannerWrapper]
-{
-  z-index:12;
-  position:absolute;
-
-  width:100%;
-  display:flex;
-  height:0px;
-
-  justify-content: space-between;
-}
-
-
 layout-floating-container
 {
   width:100%;
@@ -42,88 +26,19 @@ layout-floating-container
   overflow:hidden;
 }
 
-[iconWrapper]
-{
-  margin-left: 1em;
-}
-
 [signinWrapper]
 {
   margin: 0.8em 0.4em;
 }
 
-[toastContainer]
+[contextualBlock]
 {
-  pointer-events: none;
-  position : absolute;
-  bottom: 1.7em;
-  width : 100%;
-
-  display: flex;
-  flex-direction: column;
-}
-
-[toastContainer] > *
-{
-  flex : 0 0 auto;
-}
-
-div[floatingMouseContextualContainer]
-{
-  position : absolute;
-  left: 0;
-  top : 0;
-  width : 0px;
-  height: 0px;
-}
-
-div[contextualBlock]
-{
-  margin-top: 1px;
-  white-space: nowrap;
-  display:inline-block;
-  width:auto;
-  padding: 0.3em 0.5em;
   background-color:rgba(200,200,200,0.8);
 }
 
-:host-context([darktheme="true"]) div[contextualBlock]
+:host-context([darktheme="true"]) [contextualBlock]
 {
   background-color : rgba(30,30,30,0.8);
-  color : rgba(250,250,250,0.8);
-}
-
-
-[dockedContainer]
-{
-  margin-top:0.2em;
-}
-
-[mobileMenu]
-{
-  min-height:50em;
-  margin-top: 1em;
-}
-
-[mobileMenu] > *
-{
-  position: relative;
-}
-
-[mobileMenu] > atlas-banner
-{
-  z-index: 9999;
-}
-
-[mobileMenu] > template-parcellation-citation-container
-{
-  z-index: 9;
-}
-
-[mobileTemplateCitation]
-{
-  padding: 1.5em;
-  display:block;
 }
 
 [fixedMouseContextualContainerDirective]
@@ -136,12 +51,6 @@ div[contextualBlock]
   overflow: hidden;
 }
 
-div[minReq]
-{
-  width: 100%;
-  height: 100%;
-}
-
 div[imageContainer]
 {
   flex-grow: 1;
@@ -153,44 +62,10 @@ div.displayCard
   opacity: 0.8;
 }
 
-.mobileNavigationPanel { 
-  background-color: white;
-  width: 80%;
-}
-
-.menuButtonMobile {
-  position: absolute;
-  top: 0px;
-  right: 0px;
-  z-index: 9;
-}
-
-.logoContainerMobile {
-  width: 100%; 
-  display:flex; 
-  justify-content: center;
-}
-
 mat-sidenav {
   box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
 }
 
-.mpobileMenuTabs {
+.mobileMenuTabs {
   margin: 40px 0 0 5px;
-}
-
-.timerToast {
-  max-width: 700px;
-  display: flex;
-  flex-direction: column;
-  justify-content: center;
-}
-
-.downloadPublications {
-  align-self: flex-end;
-  outline: none;
-}
-
-.textPartInPublications {
-  text-align: left;
 }
\ No newline at end of file
diff --git a/src/atlasViewer/atlasViewer.template.html b/src/atlasViewer/atlasViewer.template.html
index 19859252951ce5d06dafaf5e9ffd84e4a8893691..3dc71fc6024f009fb76916bbe70e0bb5753962cd 100644
--- a/src/atlasViewer/atlasViewer.template.html
+++ b/src/atlasViewer/atlasViewer.template.html
@@ -1,146 +1,106 @@
 <ng-container *ngIf="meetsRequirement; else doesNotMeetReqTemplate">
 
-<!-- if not mobile -->
-  <ng-template [ngIf]="!isMobile" [ngIfElse]="mobileTemplate">
-    <ng-container *ngTemplateOutlet="viewerBody">
-    </ng-container>
-  </ng-template>
-  
-  <!-- if mobile -->
-  <ng-template #mobileTemplate>
-    <mat-sidenav-container
-      (backdropClick)="changeMenuState({close: true})"
-      class="w-100 h-100">
-      <mat-sidenav
-        #sidenav
-        [fixedInViewport]="true"
-        [disableClose]="true"
-        [opened]="sidePanelOpen$ | async" 
-        class="mobileNavigationPanel p-2"
-        [ngStyle]="{'background-color': darktheme? '#404040' : '#F2F2F2'}" >
-  
-        <!-- 'absorbs' the auto-focus behavior -->
-        <button mat-button style="height: 0; position: absolute;"></button>
-        <logo-container class="logoContainerMobile"></logo-container>
-  
-        <tabset #mobileMenuTabs [justified]="true" class="mpobileMenuTabs" >
-          <tab heading="Template">
-            <signin-banner [darktheme] = "darktheme" signinWrapper></signin-banner>
-            <layout-floating-container *ngIf="this.nehubaContainer && this.nehubaContainer.nehubaViewer">
-              <ui-status-card 
-                  [selectedTemplate]="selectedTemplate" 
-                  [isMobile]="isMobile"
-                  [onHoverSegmentName]="this.nehubaContainer.onHoverSegmentName$ | async"
-                  [nehubaViewer]="this.nehubaContainer.nehubaViewer">
-              </ui-status-card>
-            </layout-floating-container>
-          </tab>
-          <tab heading="Containers">
-            <menu-icons iconWrapper hidden #MenuIcons>
-            </menu-icons>
-            <panel-component>
-              <div class="m-2" heading>
-                Layer Browser
-              </div>
-              <div class="m-2" body>
-                <layer-browser></layer-browser>
-              </div>
-            </panel-component>
-            <div dockedContainerDirective>
-            </div>
-          </tab>
-        </tabset>
-  
-      </mat-sidenav>
-      
-      <mat-sidenav-content>
-        <ng-container *ngTemplateOutlet="viewerBody">
-  
-        </ng-container>
-      </mat-sidenav-content>
-  
-    </mat-sidenav-container>
-  
-    <div class="btnWrapper btnWrapper-lg menuButtonMobile m-2" (click)="changeMenuState()">
-      <div
-        class="shadow btn btn-sm btn-secondary rounded-circle">
-        <i class="fas fa-bars"></i>
-      </div>
-    </div>
-  </ng-template>
+  <ng-container *ngTemplateOutlet="viewerBody">
+  </ng-container>
 </ng-container>
 
-
-<ng-template #helpComponent>
-  <tabset>
-    <tab heading="Help">
-      <help-component>
-      </help-component>
-    </tab>
-    <tab heading="Settings">
-      <div class="mt-2">
-        <config-component>
-        </config-component>
-      </div>
-    </tab>
-    <tab heading="Privacy Policy">
-      <div class="mt-2">
-        <cookie-agreement>
-        </cookie-agreement>
-      </div>
-    </tab>
-    <tab heading="Terms of Use">
-      <div class="mt-2">
-        <kgtos-component>
-        </kgtos-component>
-      </div>
-    </tab>
-  </tabset>
-</ng-template>
-<ng-template #signinModalComponent>
-  <signin-modal>
-    
-  </signin-modal>
-</ng-template>
-
+<!-- kg tos -->
 <ng-template #kgToS>
+  <h2 mat-dialog-title>Knowldge Graph ToS</h2>
+  <mat-dialog-content class="w-50vw">
     <kgtos-component>
     </kgtos-component>
-    <div class="modal-footer">
-      <button type="button" class="btn btn-primary" (click)="kgTosClickedOk()">Ok</button>
-    </div>
-  </ng-template>
+  </mat-dialog-content>
+
+  <mat-dialog-actions class="justify-content-end">
+    <button color="primary" mat-raised-button (click)="kgTosClickedOk()" cdkFocusInitial>
+      Ok
+    </button>
+  </mat-dialog-actions>
+</ng-template>
 
+<!-- cookie -->
 <ng-template #cookieAgreementComponent>
-  <cookie-agreement>
-  </cookie-agreement>
+  <h2 mat-dialog-title>Cookie Disclaimer</h2>
+  <mat-dialog-content class="w-50vw">
+    <cookie-agreement>
+    </cookie-agreement>
+  </mat-dialog-content>
 
-  <div class="modal-footer">
-    <button type="button" class="btn btn-primary" (click)="cookieClickedOk()">Ok</button>
-  </div>
+  <mat-dialog-actions class="justify-content-end">
+    <button color="primary" mat-raised-button (click)="cookieClickedOk()" cdkFocusInitial>
+      Ok
+    </button>
+  </mat-dialog-actions>
 </ng-template>
 
 <!-- atlas template -->
 <ng-template #viewerBody>
-  <div class="atlas-container" helpdirective>
+  <div class="atlas-container" (drag-drop)="localFileService.handleFileDrop($event)">
 
-    <ui-nehuba-container (contextmenu)="nehubaClickHandler($event)">
+    <ui-nehuba-container iav-mouse-hover #iavMouseHoverEl="iavMouseHover"
+      [currentOnHoverObs$]="iavMouseHoverEl.currentOnHoverObs$"
+      [currentOnHover]="iavMouseHoverEl.currentOnHoverObs$ | async"
+      (contextmenu)="$event.stopPropagation(); $event.preventDefault();">
     </ui-nehuba-container>
-  
-    <div *ngIf="!isMobile" bannerWrapper>
-      <menu-icons iconWrapper>
-      </menu-icons>
+
+    <div class="z-index-10 position-absolute pe-none w-100 h-100">
+
+      <!-- dataset search side nav -->
+      <mat-drawer-container *ngIf="newViewer$ | async" [hasBackdrop]="false"
+        class="w-100 h-100 bg-none mat-drawer-content-overflow-visible">
+        <mat-drawer mode="push"
+          class="col-10 col-sm-10 col-md-4 col-lg-3 col-xl-2 p-2 bg-none box-shadow-none overflow-visible"
+          [disableClose]="true" [autoFocus]="false" [opened]="true" #sideNavDrawer>
+          <search-side-nav (dismiss)="sideNavDrawer.close()" (open)="sideNavDrawer.open()"
+            class="h-100 d-block overflow-visible" #searchSideNav>
+          </search-side-nav>
+
+        </mat-drawer>
+
+        <!-- tag for opening and closing side nav -->
+        <div class="d-flex h-100 align-items-start bg-none pe-none">
+
+          <button mat-flat-button matBadgePosition="above after" matBadgeColor="accent"
+            [matBadge]="!sideNavDrawer.opened && (selectedRegions$ | async)?.length ? (selectedRegions$ | async)?.length : null"
+            [matTooltip]="!sideNavDrawer.opened ? (selectedRegions$ | async)?.length ?  ('Explore ' + (selectedRegions$ | async)?.length + ' selected regions.') : 'Explore current view' : null"
+            [ngClass]="{'translate-x-6-n': !sideNavDrawer.opened, 'translate-x-7-n': sideNavDrawer.opened}"
+            class="pe-all mt-5" (click)="sideNavDrawer.toggle()">
+            <i [ngClass]="{'fa-chevron-left': sideNavDrawer.opened, 'fa-chevron-right': !sideNavDrawer.opened}"
+              class="fas translate-x-3"></i>
+
+          </button>
+
+          <mat-card *ngIf="!sideNavDrawer.opened" (click)="sideNavDrawer.open()" mat-ripple
+            class="pe-all mt-4 muted translate-x-4-n">
+            <mat-card-content>
+              <viewer-state-mini>
+              </viewer-state-mini>
+            </mat-card-content>
+            <mat-card-footer></mat-card-footer>
+          </mat-card>
+
+          <!-- TODO clean up menu icon -->
+        </div>
+      </mat-drawer-container>
+    </div>
+
+    <div class="d-flex flex-row justify-content-end z-index-10 position-absolute pe-none w-100 h-100">
       <signin-banner signinWrapper>
       </signin-banner>
     </div>
-  
-    <layout-floating-container
-      zIndex="13"
-      #floatingOverlayContainer>
+
+    <layout-floating-container zIndex="13" #floatingOverlayContainer>
       <div floatingContainerDirective>
-  
+
       </div>
-      
+
+      <div class="fixed-bottom pe-none d-flex justify-content-end m-4">
+        <ng-container *ngTemplateOutlet="logoTmpl">
+        </ng-container>
+      </div>
+
+      <!-- TODO document fixedMouseContextualContainerDirective , then deprecate this -->
       <!-- TODO move to nehuba overlay container -->
       <panel-component class="shadow" fixedMouseContextualContainerDirective #rClContextMenu>
         <div heading>
@@ -150,24 +110,19 @@
         </div>
         <div body>
 
-          <div
-            *ngIf="(onhoverSegmentsForFixed$ | async)?.length > 0 || (selectedRegions$ | async)?.length > 0"
+          <div *ngIf="(onhoverSegmentsForFixed$ | async)?.length > 0 || (selectedRegions$ | async)?.length > 0"
             class="p-2">
             Search for data relating to:
           </div>
-          
-          <div
-            *ngFor="let onhoverSegmentFixed of (onhoverSegmentsForFixed$ | async)"
+
+          <div *ngFor="let onhoverSegmentFixed of (onhoverSegmentsForFixed$ | async)"
             (click)="searchRegion([onhoverSegmentFixed])"
-            class="ws-no-wrap text-left pe-all btn btn-sm btn-secondary btn-block mt-0"
-            data-toggle="tooltip" 
-            data-placement="top" 
-            [title]="onhoverSegmentFixed.name">
+            class="ws-no-wrap text-left pe-all btn btn-sm btn-secondary btn-block mt-0" data-toggle="tooltip"
+            data-placement="top" [title]="onhoverSegmentFixed.name">
             <small class="text-semi-transparent">(hovering)</small> {{ onhoverSegmentFixed.name }}
           </div>
-  
-          <div
-            *ngIf="(selectedRegions$ | async)?.length > 0 && (selectedRegions$ | async); let selectedRegions"
+
+          <div *ngIf="(selectedRegions$ | async)?.length > 0 && (selectedRegions$ | async); let selectedRegions"
             (click)="searchRegion(selectedRegions)"
             class="ws-no-wrap text-left pe-all mt-0 btn btn-sm btn-secondary btn-block">
             <ng-container *ngIf="selectedRegions.length > 1">
@@ -177,48 +132,49 @@
               <small class="text-semi-transparent">(selected)</small> {{ selectedRegions[0].name }}
             </ng-container>
           </div>
-          
-          <div
-            class="p-2 text-muted"
-            *ngIf="(onhoverSegmentsForFixed$ | async)?.length === 0 && (selectedRegions$ | async)?.length === 0">
+
+          <div class="p-2 text-muted"
+            *ngIf="(onhoverSegmentsForFixed$ | async)?.length === 0 && (selectedRegions$ | async)?.length === 0 && (onhoverLandmarksForFixed$ | async)?.length === 0">
             Right click on a parcellation region or select parcellation regions to search KG for associated datasets.
           </div>
-  
+
           <ng-template #noRegionSelected>
-            <div
-              (click)="searchRegion()"
-              class="ws-no-wrap text-left pe-all mt-0 btn btn-sm btn-secondary btn-block">
+            <div (click)="searchRegion()" class="ws-no-wrap text-left pe-all mt-0 btn btn-sm btn-secondary btn-block">
               No region selected. Search KG for all datasets in this template space.
             </div>
           </ng-template>
-  
+
         </div>
       </panel-component>
-      
-      <div floatingMouseContextualContainer floatingMouseContextualContainerDirective>
-        <div 
-          *ngIf="onhoverLandmark$ | async" 
-          contextualBlock>
-          {{ onhoverLandmark$ | async }} <i><small class = "mute-text">{{ toggleMessage }}</small></i>
-        </div>
-        <div 
-          *ngIf="onhoverSegments$ | async; let onhoverSegments"
-          contextualBlock>
-          <div
-            *ngFor="let segment of onhoverSegments"
-            [innerHtml]="segment | transformOnhoverSegment">
-          </div>
-          <i><small class = "mute-text">{{ toggleMessage }}</small></i>
+
+      <div floatingMouseContextualContainerDirective>
+
+        <div class="d-inline-block" iav-mouse-hover #iavMouseHoverConetxtualBlock="iavMouseHover" contextualBlock>
+
+          <ng-container
+            *ngFor="let labelText of iavMouseHoverConetxtualBlock.currentOnHoverObs$ | async | mouseOverTextPipe : selectedParcellation">
+
+            <mat-list dense>
+
+              <mat-list-item class="h-auto">
+
+                <mat-icon [fontSet]="(labelText.label | mouseOverIconPipe).fontSet"
+                  [fontIcon]="(labelText.label | mouseOverIconPipe).fontIcon" mat-list-icon>
+
+                </mat-icon>
+
+                <div matLine *ngFor="let text of labelText.text" [innerHTML]="text">
+                </div>
+              </mat-list-item>
+            </mat-list>
+          </ng-container>
         </div>
         <!-- TODO Potentially implementing plugin contextual info -->
       </div>
-  
-      <div toastContainer>
-        <div toastDirective>
-        </div>
-      </div>
+
     </layout-floating-container>
-  
+
+    <!-- required for manufacturing plugin templates -->
     <div pluginFactoryDirective>
     </div>
   </div>
@@ -226,29 +182,31 @@
 
 <!-- does not meet req template -->
 <ng-template #doesNotMeetReqTemplate>
-  <div class="d-flex flex-column" minReq *ngIf="!meetsRequirement">
+  <div class="d-flex flex-column w-100 h-100" *ngIf="!meetsRequirement">
     <div class="jumbotron bg-light text-center mb-0">
       <div>
         <h1 class="mb-3">
           <i class="fas fa-exclamation-triangle"></i> Unsupported browser detected
         </h1>
         <p>
-          We recommend using the latest version of <a target="_blank" href="https://www.google.com/chrome/">Google Chrome</a>
-          or <a target="_blank" href="https://www.mozilla.org/firefox/">Mozilla Firefox)</a> for viewing the interactive viewer.
+          We recommend using the latest version of <a target="_blank" href="https://www.google.com/chrome/">Google
+            Chrome</a>
+          or <a target="_blank" href="https://www.mozilla.org/firefox/">Mozilla Firefox)</a> for viewing the interactive
+          viewer.
         </p>
         <div class="col-6 d-inline-block text-left">
-          <readmore-component
-            [collapsedHeight]="0">
+          <readmore-component [collapsedHeight]="0">
             <markdown-dom [markdown]="constantsService.minReqExplaner">
-  
+
             </markdown-dom>
           </readmore-component>
         </div>
-        
+
       </div>
     </div>
     <ng-container *ngFor="let preview of unsupportedPreviews; let idx = index">
-      <div [hidden]="idx !== unsupportedPreviewIdx" class="text-center mb-3" imageContainer [style.backgroundImage]="'url(' + preview.previewSrc + ')'" >
+      <div [hidden]="idx !== unsupportedPreviewIdx" class="text-center mb-3" imageContainer
+        [style.backgroundImage]="'url(' + preview.previewSrc + ')'">
         <div class="mt-2 card d-inline-block displayCard">
           <div class="card-body">
             {{ preview.text }}
@@ -259,22 +217,7 @@
   </div>
 </ng-template>
 
-<ng-template #publications >
-  <div *ngIf="tPublication || pPublication" class="timerToast">
-    <button mat-mini-fab color="primary" class="downloadPublications" (click)="downloadPublications()">↓</button>
-
-    <div *ngIf="tPublication">
-      <p>{{selectedTemplate['name']}} Publication(s)</p>
-      <div *ngFor="let tp of tPublication" class="textPartInPublications">
-        <a [href]="tp['doi']" target="_blank">{{tp['citation']}}</a>
-      </div>
-      <hr *ngIf="pPublication">
-    </div>
-    <div *ngIf="pPublication">
-      <p>{{selectedParcellation['name']}} Publication(s)</p>
-      <div *ngFor="let pp of pPublication" class="textPartInPublications">
-        <a [href]="pp['doi']" target="_blank">{{pp['citation']}}</a>
-      </div>  
-    </div>
-  </div>
+<!-- logo tmpl -->
+<ng-template #logoTmpl>
+  <logo-container></logo-container>
 </ng-template>
\ No newline at end of file
diff --git a/src/atlasViewer/atlasViewer.urlService.service.ts b/src/atlasViewer/atlasViewer.urlService.service.ts
index ceeaa9fba07cdcc41a0700f30d74b6ada195f20b..a7c1f220e0220e28ee166f142ed2540f04403f0d 100644
--- a/src/atlasViewer/atlasViewer.urlService.service.ts
+++ b/src/atlasViewer/atlasViewer.urlService.service.ts
@@ -1,13 +1,13 @@
 import { Injectable } from "@angular/core";
 import { Store, select } from "@ngrx/store";
-import { ViewerStateInterface, isDefined, NEWVIEWER, CHANGE_NAVIGATION, ADD_NG_LAYER, generateLabelIndexId } from "../services/stateStore.service";
+import { ViewerStateInterface, isDefined, NEWVIEWER, CHANGE_NAVIGATION, ADD_NG_LAYER } from "../services/stateStore.service";
 import { PluginInitManifestInterface } from 'src/services/state/pluginState.store'
 import { Observable,combineLatest } from "rxjs";
 import { filter, map, scan, distinctUntilChanged, skipWhile, take } from "rxjs/operators";
 import { PluginServices } from "./atlasViewer.pluginService.service";
-import { AtlasViewerConstantsServices } from "./atlasViewer.constantService.service";
-import { ToastService } from "src/services/toastService.service";
+import { AtlasViewerConstantsServices, encodeNumber, separator, decodeToNumber } from "./atlasViewer.constantService.service";
 import { SELECT_REGIONS_WITH_ID } from "src/services/state/viewerState.store";
+import { UIService } from "src/services/uiService.service";
 
 declare var window
 
@@ -24,7 +24,7 @@ export class AtlasViewerURLService{
     private store : Store<ViewerStateInterface>,
     private pluginService : PluginServices,
     private constantService:AtlasViewerConstantsServices,
-    private toastService: ToastService
+    private uiService:UIService
   ){
 
     this.pluginState$ = this.store.pipe(
@@ -57,8 +57,12 @@ export class AtlasViewerURLService{
      */
     this.additionalNgLayers$ = combineLatest(
       this.changeQueryObservable$.pipe(
-        map(state => state.templateSelected)
+        select('templateSelected'),
+        filter(v => !!v)
       ),
+      /**
+       * TODO duplicated with viewerState.loadedNgLayers ?
+       */
       this.store.pipe(
         select('ngViewerState'),
         select('layers')
@@ -125,11 +129,10 @@ export class AtlasViewerURLService{
       
       const templateToLoad = fetchedTemplates.find(template=>template.name === searchedTemplatename)
       if (!templateToLoad) {
-        this.toastService.showToast(
+        this.uiService.showMessage(
           this.constantService.incorrectTemplateNameSearchParam(searchedTemplatename),
-          {
-            timeout: 5000
-          }
+          null,
+          { duration: 5000 }
         )
         const urlString = window.location.href
         /**
@@ -145,11 +148,10 @@ export class AtlasViewerURLService{
       const parcellationToLoad = templateToLoad.parcellations.find(parcellation=>parcellation.name === searchedParcellationName)
 
       if (!parcellationToLoad) {
-        this.toastService.showToast(
+        this.uiService.showMessage(
           this.constantService.incorrectParcellationNameSearchParam(searchedParcellationName),
-          {
-            timeout: 5000
-          }
+          null,
+          { duration: 5000 }
         )
       }
       
@@ -164,6 +166,9 @@ export class AtlasViewerURLService{
         /**
          * either or both parcellationToLoad and .regions maybe empty
          */
+        /**
+         * backwards compatibility
+         */
         const selectedRegionsParam = searchparams.get('regionsSelected')
         if(selectedRegionsParam){
           const ids = selectedRegionsParam.split('_')
@@ -173,6 +178,43 @@ export class AtlasViewerURLService{
             selectRegionIds: ids
           })
         }
+
+        const cRegionsSelectedParam = searchparams.get('cRegionsSelected')
+        if (cRegionsSelectedParam) {
+          try {
+            const json = JSON.parse(cRegionsSelectedParam)
+  
+            const selectRegionIds = []
+  
+            for (let ngId in json) {
+              const val = json[ngId]
+              const labelIndicies = val.split(separator).map(n =>{
+                try{
+                  return decodeToNumber(n)
+                } catch (e) {
+                  /**
+                   * TODO poisonsed encoded char, send error message
+                   */
+                  return null
+                }
+              }).filter(v => !!v)
+              for (let labelIndex of labelIndicies) {
+                selectRegionIds.push(`${ngId}#${labelIndex}`)
+              }
+            }
+  
+            this.store.dispatch({
+              type: SELECT_REGIONS_WITH_ID,
+              selectRegionIds
+            })
+  
+          } catch (e) {
+            /**
+             * parsing cRegionSelected error
+             */
+            console.log('parsing cRegionSelected error', e)
+          }
+        }
       }
       
       /* now that the parcellation is loaded, load the navigation state */
@@ -191,10 +233,37 @@ export class AtlasViewerURLService{
         })
       }
 
+      const cViewerState = searchparams.get('cNavigation')
+      if (cViewerState) {
+        try {
+          const [ cO, cPO, cPZ, cP, cZ ] = cViewerState.split(`${separator}${separator}`)
+          const o = cO.split(separator).map(s => decodeToNumber(s, {float: true}))
+          const po = cPO.split(separator).map(s => decodeToNumber(s, {float: true}))
+          const pz = decodeToNumber(cPZ)
+          const p = cP.split(separator).map(s => decodeToNumber(s))
+          const z = decodeToNumber(cZ)
+          this.store.dispatch({
+            type : CHANGE_NAVIGATION,
+            navigation : {
+              orientation: o,
+              perspectiveOrientation: po,
+              perspectiveZoom: pz,
+              position: p,
+              zoom: z
+            }
+          })
+        } catch (e) {
+          /**
+           * TODO Poisoned encoded char
+           * send error message
+           */
+        }
+      }
+
       const niftiLayers = searchparams.get('niftiLayers')
       if(niftiLayers){
         const layers = niftiLayers.split('__')
-        /*  */
+
         layers.forEach(layer => this.store.dispatch({
           type : ADD_NG_LAYER, 
           layer : {
@@ -235,18 +304,56 @@ export class AtlasViewerURLService{
                     isDefined(state[key].position) &&
                     isDefined(state[key].zoom)
                   ){
-                    _[key] = [
-                      state[key].orientation.join('_'),
-                      state[key].perspectiveOrientation.join('_'),
-                      state[key].perspectiveZoom,
-                      state[key].position.join('_'),
-                      state[key].zoom 
-                    ].join('__')
+                    const {
+                      orientation, 
+                      perspectiveOrientation, 
+                      perspectiveZoom, 
+                      position, 
+                      zoom
+                    } = state[key]
+
+                    _['cNavigation'] = [
+                      orientation.map(n => encodeNumber(n, {float: true})).join(separator),
+                      perspectiveOrientation.map(n => encodeNumber(n, {float: true})).join(separator),
+                      encodeNumber(Math.floor(perspectiveZoom)),
+                      Array.from(position).map((v:number) => Math.floor(v)).map(n => encodeNumber(n)).join(separator),
+                      encodeNumber(Math.floor(zoom)) 
+                    ].join(`${separator}${separator}`)
+                    
+                    _[key] = null
                   }
                   break;
-                case 'regionsSelected':
-                  _[key] = state[key].map(({ ngId = parcellationSelected && parcellationSelected.ngId, labelIndex })=> generateLabelIndexId({ ngId,labelIndex })).join('_')
+                case 'regionsSelected': {
+                  // _[key] = state[key].map(({ ngId, labelIndex })=> generateLabelIndexId({ ngId,labelIndex })).join('_')
+                  const ngIdLabelIndexMap : Map<string, number[]> = state[key].reduce((acc, curr) => {
+                    const returnMap = new Map(acc)
+                    const { ngId, labelIndex } = curr
+                    const existingArr = (returnMap as Map<string, number[]>).get(ngId)
+                    if (existingArr) {
+                      existingArr.push(labelIndex)
+                    } else {
+                      returnMap.set(ngId, [labelIndex])
+                    }
+                    return returnMap
+                  }, new Map())
+
+                  if (ngIdLabelIndexMap.size === 0) {
+                    _['cRegionsSelected'] = null
+                    _[key] = null
+                    break;
+                  }
+                  
+                  const returnObj = {}
+
+                  for (let entry of ngIdLabelIndexMap) {
+                    const [ ngId, labelIndicies ] = entry
+                    returnObj[ngId] = labelIndicies.map(n => encodeNumber(n)).join(separator)
+                  }
+                  
+                  _['cRegionsSelected'] = JSON.stringify(returnObj)
+                  _[key] = null
                   break;
+                }
                 case 'templateSelected':
                 case 'parcellationSelected':
                   _[key] = state[key].name
@@ -259,7 +366,11 @@ export class AtlasViewerURLService{
           return _
         })
       ),
-      this.additionalNgLayers$,
+      this.additionalNgLayers$.pipe(
+        map(layers => layers
+          .map(layer => layer.name)
+          .filter(layername => !/^blob\:/.test(layername)))
+      ),
       this.pluginState$
     ).pipe(
       /* TODO fix encoding of nifti path. if path has double underscore, this encoding will fail */
@@ -270,7 +381,7 @@ export class AtlasViewerURLService{
             ? Array.from(pluginState.initManifests.values()).filter(v => v !== null).join('__') 
             : null,
           niftiLayers : niftiLayers.length > 0
-            ? niftiLayers.map(layer => layer.name).join('__')
+            ? niftiLayers.join('__')
             : null
         }
       })
diff --git a/src/atlasViewer/atlasViewer.workerService.service.ts b/src/atlasViewer/atlasViewer.workerService.service.ts
index aefcfa162bae82f253c2325cfaf198712bcf39f7..6f6d352867cc2f1e3a14fc2a5e01976b37745d75 100644
--- a/src/atlasViewer/atlasViewer.workerService.service.ts
+++ b/src/atlasViewer/atlasViewer.workerService.service.ts
@@ -1,5 +1,8 @@
 import { Injectable } from "@angular/core";
 
+/* telling webpack to pack the worker file */
+import '../util/worker.js'
+
 /**
  * export the worker, so that services that does not require dependency injection can import the worker
  */
@@ -11,8 +14,4 @@ export const worker = new Worker('worker.js')
 
 export class AtlasWorkerService{
   public worker = worker
-  public safeMeshSet : Map<string, Set<number>> = new Map()
 }
-
-/* telling webpack to pack the worker file */
-require('../util/worker.js')
\ No newline at end of file
diff --git a/src/atlasViewer/onhoverSegment.pipe.ts b/src/atlasViewer/onhoverSegment.pipe.ts
index baff7b9d5d1de04b0d6c5327aabf2a41a532ff4f..640772c63ddc32876f38e8ac708bcf3130d5f73b 100644
--- a/src/atlasViewer/onhoverSegment.pipe.ts
+++ b/src/atlasViewer/onhoverSegment.pipe.ts
@@ -1,5 +1,5 @@
 import { PipeTransform, Pipe, SecurityContext } from "@angular/core";
-import { DomSanitizer } from "@angular/platform-browser";
+import { DomSanitizer, SafeHtml } from "@angular/platform-browser";
 
 @Pipe({
   name: 'transformOnhoverSegment'
@@ -10,13 +10,17 @@ export class TransformOnhoverSegmentPipe implements PipeTransform{
 
   }
 
+  private sanitizeHtml(inc:string):SafeHtml{
+    return this.sanitizer.sanitize(SecurityContext.HTML, inc)
+  }
+
   private getStatus(text:string) {
-    return ` <span class="text-muted">(${this.sanitizer.sanitize(SecurityContext.HTML, text)})</span>`
+    return ` <span class="text-muted">(${this.sanitizeHtml(text)})</span>`
   }
 
-  public transform(segment: any | number){
+  public transform(segment: any | number): SafeHtml{
     return this.sanitizer.bypassSecurityTrustHtml((
-      (segment.name || segment) +
+      ( this.sanitizeHtml(segment.name) || segment) +
       (segment.status
         ? this.getStatus(segment.status)
         : '')
diff --git a/src/atlasViewer/widgetUnit/widgetService.service.ts b/src/atlasViewer/widgetUnit/widgetService.service.ts
index 521d69ac8356087702807ec34ebeec44204f7888..a976376cb96c424d48f1cfb5dbe630f3a71dbde5 100644
--- a/src/atlasViewer/widgetUnit/widgetService.service.ts
+++ b/src/atlasViewer/widgetUnit/widgetService.service.ts
@@ -1,15 +1,13 @@
-import { ComponentRef, ComponentFactory, Injectable, ViewContainerRef, ComponentFactoryResolver, Injector } from "@angular/core";
-
+import { ComponentRef, ComponentFactory, Injectable, ViewContainerRef, ComponentFactoryResolver, Injector, OnDestroy } from "@angular/core";
 import { WidgetUnit } from "./widgetUnit.component";
 import { AtlasViewerConstantsServices } from "../atlasViewer.constantService.service";
-import { Subscription } from "rxjs";
-
+import { Subscription, BehaviorSubject } from "rxjs";
 
 @Injectable({
   providedIn : 'root'
 })
 
-export class WidgetServices{
+export class WidgetServices implements OnDestroy{
 
   public floatingContainer : ViewContainerRef
   public dockedContainer : ViewContainerRef
@@ -20,7 +18,8 @@ export class WidgetServices{
 
   private clickedListener : Subscription[] = []
 
-  public minimisedWindow: Set<WidgetUnit> = new Set()
+  public minimisedWindow$: BehaviorSubject<Set<WidgetUnit>>
+  private minimisedWindow: Set<WidgetUnit> = new Set() 
 
   constructor(
     private cfr:ComponentFactoryResolver,
@@ -28,6 +27,21 @@ export class WidgetServices{
     private injector : Injector
     ){
     this.widgetUnitFactory = this.cfr.resolveComponentFactory(WidgetUnit)
+    this.minimisedWindow$ = new BehaviorSubject(this.minimisedWindow)
+
+    this.subscriptions.push(
+      this.constantServce.useMobileUI$.subscribe(bool => this.useMobileUI = bool)
+    )
+  }
+
+  private subscriptions: Subscription[] = []
+
+  public useMobileUI: boolean = false
+
+  ngOnDestroy(){
+    while(this.subscriptions.length > 0) {
+      this.subscriptions.pop().unsubscribe()
+    }
   }
 
   clearAllWidgets(){
@@ -38,15 +52,33 @@ export class WidgetServices{
     this.clickedListener.forEach(s=>s.unsubscribe())
   }
 
+  rename(wu:WidgetUnit, {title, titleHTML}: {title: string, titleHTML: string}){
+    /**
+     * WARNING: always sanitize before pass to rename fn!
+     */
+    wu.title = title
+    wu.titleHTML = titleHTML
+  }
+
   minimise(wu:WidgetUnit){
     this.minimisedWindow.add(wu)
+    this.minimisedWindow$.next(new Set(this.minimisedWindow))
+  }
+  
+  isMinimised(wu:WidgetUnit){
+    return this.minimisedWindow.has(wu)
+  }
+
+  unminimise(wu:WidgetUnit){
+    this.minimisedWindow.delete(wu)
+    this.minimisedWindow$.next(new Set(this.minimisedWindow))
   }
 
   addNewWidget(guestComponentRef:ComponentRef<any>,options?:Partial<WidgetOptionsInterface>):ComponentRef<WidgetUnit>{
     const component = this.widgetUnitFactory.create(this.injector)
     const _option = getOption(options)
 
-    if(this.constantServce.mobile){
+    if(this.useMobileUI){
       _option.state = 'docked'
     }
 
@@ -93,9 +125,12 @@ export class WidgetServices{
 
       this.clickedListener.push(
         _component.instance.clickedEmitter.subscribe((widgetUnit:WidgetUnit)=>{
+          /**
+           * TODO this operation 
+           */
           if(widgetUnit.state !== 'floating')
             return
-          const widget = [...this.widgetComponentRefs].find(widget=>widget.instance===widgetUnit)
+          const widget = [...this.widgetComponentRefs].find(widget=>widget.instance === widgetUnit)
           if(!widget)
             return
           const idx = this.floatingContainer.indexOf(widget.hostView)
@@ -103,7 +138,6 @@ export class WidgetServices{
             return
           this.floatingContainer.detach(idx)
           this.floatingContainer.insert(widget.hostView)
-          
         })
       )
 
diff --git a/src/atlasViewer/widgetUnit/widgetUnit.component.ts b/src/atlasViewer/widgetUnit/widgetUnit.component.ts
index fc32210cd0774a8b1b75126c25f9e10b2de9195a..5eb6e8d63f1e930930c6f716912f0e5a5f938a6d 100644
--- a/src/atlasViewer/widgetUnit/widgetUnit.component.ts
+++ b/src/atlasViewer/widgetUnit/widgetUnit.component.ts
@@ -1,6 +1,9 @@
-import { Component, ViewChild, ViewContainerRef,ComponentRef, HostBinding, HostListener, Output, EventEmitter, Input, ElementRef, OnInit } from "@angular/core";
+import { Component, ViewChild, ViewContainerRef,ComponentRef, HostBinding, HostListener, Output, EventEmitter, Input, OnInit, OnDestroy } from "@angular/core";
+
 import { WidgetServices } from "./widgetService.service";
 import { AtlasViewerConstantsServices } from "../atlasViewer.constantService.service";
+import { Subscription, Observable } from "rxjs";
+import { map } from "rxjs/operators";
 
 
 @Component({
@@ -10,9 +13,8 @@ import { AtlasViewerConstantsServices } from "../atlasViewer.constantService.ser
   ]
 })
 
-export class WidgetUnit implements OnInit{
+export class WidgetUnit implements OnInit, OnDestroy{
   @ViewChild('container',{read:ViewContainerRef}) container : ViewContainerRef
-  @ViewChild('emptyspan',{read:ElementRef}) emtpy : ElementRef
 
   @HostBinding('attr.state')
   public state : 'docked' | 'floating' = 'docked'
@@ -24,29 +26,67 @@ export class WidgetUnit implements OnInit{
   height : string = this.state === 'docked' ? null : '0px'
 
   @HostBinding('style.display')
-  get isMinimised(){
-    return this.widgetServices.minimisedWindow.has(this) ? 'none' : null
+  isMinimised: string
+
+  isMinimised$: Observable<boolean>
+
+  public useMobileUI$: Observable<boolean>
+
+  public hoverableConfig = {
+    translateY: -1
+  }
+
+  /**
+   * Timed alternates of blinkOn property should result in attention grabbing blink behaviour
+   */
+  private _blinkOn: boolean = false
+  get blinkOn(){
+    return this._blinkOn
+  }
+
+  set blinkOn(val: boolean) {
+    this._blinkOn = !!val
   }
+
+  get showProgress(){
+    return this.progressIndicator !== null
+  }
+
   /**
-   * TODO
-   * upgrade to angular>=7, and use cdk to handle draggable components
+   * Some plugins may like to show progress indicator for long running processes
+   * If null, no progress is running
+   * This value should be between 0 and 1
    */
-  get transform(){
-    return this.state === 'floating' ?
-      `translate(${this.position[0]}px, ${this.position[1]}px)` :
-      `translate(0 , 0)`
+  private _progressIndicator: number = null
+  get progressIndicator(){
+    return this._progressIndicator
+  }
+
+  set progressIndicator(val:number) {
+    if (isNaN(val)) {
+      this._progressIndicator = null
+      return
+    }
+    if (val < 0) {
+      this._progressIndicator = 0
+      return
+    }
+    if (val > 1) {
+      this._progressIndicator = 1
+      return
+    }
+    this._progressIndicator = val
   }
 
   public canBeDocked: boolean = false
   @HostListener('mousedown')
   clicked(){
     this.clickedEmitter.emit(this)
+    this.blinkOn = false
   }
 
   @Input() title : string = 'Untitled'
 
-  @Input() containerClass : string = ''
-
   @Output()
   clickedEmitter : EventEmitter<WidgetUnit> = new EventEmitter()
 
@@ -59,16 +99,30 @@ export class WidgetUnit implements OnInit{
   public guestComponentRef : ComponentRef<any>
   public widgetServices:WidgetServices
   public cf : ComponentRef<WidgetUnit>
+  private subscriptions: Subscription[] = []
 
   public id: string 
-  constructor(
-    private constantsService: AtlasViewerConstantsServices
-    ){
+  constructor(private constantsService: AtlasViewerConstantsServices){
     this.id = Date.now().toString()
+
+    this.useMobileUI$ = this.constantsService.useMobileUI$
   }
 
   ngOnInit(){
     this.canBeDocked = typeof this.widgetServices.dockedContainer !== 'undefined'
+
+    this.isMinimised$ = this.widgetServices.minimisedWindow$.pipe(
+      map(set => set.has(this))
+    )
+    this.subscriptions.push(
+      this.isMinimised$.subscribe(flag => this.isMinimised = flag ? 'none' : null)
+    )
+  }
+
+  ngOnDestroy(){
+    while(this.subscriptions.length > 0){
+      this.subscriptions.pop().unsubscribe()
+    }
   }
 
   /**
@@ -123,9 +177,10 @@ export class WidgetUnit implements OnInit{
 
   /* floating widget specific functionalities */
 
-  position : [number,number] = [400,100]
-
-  get isMobile(){
-    return this.constantsService.mobile
+  @HostBinding('style.transform')
+  get styleTransform() {
+    return this.state === 'floating' ? `translate(${this.position.map(v => v + 'px').join(',')})` : null
   }
+
+  position : [number,number] = [400,100]
 }
\ No newline at end of file
diff --git a/src/atlasViewer/widgetUnit/widgetUnit.style.css b/src/atlasViewer/widgetUnit/widgetUnit.style.css
index 10289f924763603c034766cd15e23a819cb0e857..9ed85f20e0fc549bc2c9ab0ac31f8ae156dc48e8 100644
--- a/src/atlasViewer/widgetUnit/widgetUnit.style.css
+++ b/src/atlasViewer/widgetUnit/widgetUnit.style.css
@@ -41,7 +41,62 @@ panel-component[widgetUnitPanel]
   cursor : move;
 }
 
-[emptyspan]
+:host > panel-component
 {
-  opacity:0.01;
+  max-width: 100%;
+  width: 300px;
+  border-width: 1px !important;
+  border: solid;
+  border-color: rgba(0, 0, 0, 0);
+  box-sizing: border-box;
 }
+
+@keyframes blinkDark
+{
+  0% {
+    border-color: rgba(128, 128, 200, 0.0);
+  }
+
+  100% {
+    border-color: rgba(128, 128, 200, 1.0);
+  }
+}
+
+@keyframes blink
+{
+  0% {
+    border-color: rgba(128, 128, 255, 0.0);
+  }
+
+  100% {
+    border-color: rgba(128, 128, 255, 1.0);
+  }
+}
+
+:host-context([darktheme="true"]) .blinkOn
+{
+  animation: 0.5s blinkDark ease-in-out 9 alternate; 
+  border: 1px solid rgba(128, 128, 200, 1.0) !important;
+}
+
+:host-context([darktheme="false"]) .blinkOn
+{
+  animation: 0.5s blink ease-in-out 9 alternate; 
+  border: 1px solid rgba(128, 128, 255, 1.0) !important;
+}
+
+[heading]
+{
+  position:relative;
+}
+
+[heading] > [progressBar]
+{
+  position: absolute;
+  width: 100%;
+  height: 100%;
+  left: 0;
+  top: 0;
+  opacity: 0.4;
+  pointer-events: none;
+}
\ No newline at end of file
diff --git a/src/atlasViewer/widgetUnit/widgetUnit.template.html b/src/atlasViewer/widgetUnit/widgetUnit.template.html
index a7cfd51ef1f2b839190f4cb060b3c4038ee58270..de35f7f2a2ee8c0c57dcb50db74ce0521dfdce62 100644
--- a/src/atlasViewer/widgetUnit/widgetUnit.template.html
+++ b/src/atlasViewer/widgetUnit/widgetUnit.template.html
@@ -1,17 +1,13 @@
 <panel-component
-  [style.transform] = "transform"
-  [containerClass] = "containerClass"
   widgetUnitPanel
+  [ngClass]="{'blinkOn': blinkOn}"
   [bodyCollapsable] = "state === 'docked'"
   [cdkDragDisabled]="state === 'docked'"
-  cdkDrag
-  [ngStyle]="{'max-width': isMobile? '100%' : '300px',
-              'margin-bottom': isMobile? '5px': '0'}">
+  cdkDrag>
   <div 
     widgetUnitHeading
     heading
     cdkDragHandle>
-    <div #emptyspan emptyspan>.</div>
     <div title>
       <div *ngIf="!titleHTML">
         {{ title }}
@@ -22,25 +18,32 @@
     </div>
     <div icons>
       <i
-        *ngIf="!isMobile"
+        *ngIf="useMobileUI$ | async"
         (click)="widgetServices.minimise(this)"
         class="fas fa-window-minimize"
-        hoverable>
+        [hoverable] ="hoverableConfig">
 
       </i>
-      <i *ngIf = "canBeDocked && state === 'floating' && !isMobile"
-        (click) = "dock($event)" 
-        class = "fas fa-window-minimize" 
-        hoverable></i>
-      <i *ngIf = "state === 'docked' && !isMobile"
-        (click) = "undock($event)" 
-        class = "fas fa-window-restore" 
-        hoverable></i>
-      <i *ngIf = "exitable"
-        (click) = "exit($event)" 
-        class = "fas fa-times" 
-        hoverable></i>
+
+      <ng-container *ngIf="!(useMobileUI$ | async)">
+        <i *ngIf="canBeDocked && state === 'floating'"
+          (click)="dock($event)" 
+          class="fas fa-window-minimize" 
+          [hoverable]="hoverableConfig"></i>
+        <i *ngIf="state === 'docked'"
+          (click)="undock($event)" 
+          class="fas fa-window-restore"
+          [hoverable]="hoverableConfig"></i>
+      </ng-container>
+
+      <i *ngIf="exitable"
+        (click)="exit($event)" 
+        class="fas fa-times" 
+        [hoverable] ="hoverableConfig"></i>
     </div>
+    <progress-bar [progress]="progressIndicator" *ngIf="showProgress" progressBar>
+
+    </progress-bar>
   </div>
   <div widgetUnitBody body>
     <ng-template #container>
diff --git a/src/components/components.module.ts b/src/components/components.module.ts
index e435687fd0541445a7989f8f87f1bb3eb392bae9..49785f32d110204bbd4dbe19f4386508956aa94f 100644
--- a/src/components/components.module.ts
+++ b/src/components/components.module.ts
@@ -20,7 +20,6 @@ import { FlatTreeComponent } from './flatTree/flatTree.component';
 import { FlattenTreePipe } from './flatTree/flattener.pipe';
 import { RenderPipe } from './flatTree/render.pipe';
 import { HighlightPipe } from './flatTree/highlight.pipe';
-import { FitlerRowsByVisibilityPipe } from './flatTree/filterRowsByVisibility.pipe';
 import { AppendSiblingFlagPipe } from './flatTree/appendSiblingFlag.pipe';
 import { ClusteringPipe } from './flatTree/clustering.pipe';
 import { TimerComponent } from './timer/timer.component';
@@ -29,6 +28,11 @@ import { CommonModule } from '@angular/common';
 import { RadioList } from './radiolist/radiolist.component';
 import { AngularMaterialModule } from 'src/ui/sharedModules/angularMaterial.module';
 import { FilterCollapsePipe } from './flatTree/filterCollapse.pipe';
+import { ProgressBar } from './progress/progress.component';
+import { SleightOfHand } from './sleightOfHand/soh.component';
+import { DialogComponent } from './dialog/dialog.component';
+import { ConfirmDialogComponent } from './confirmDialog/confirmDialog.component';
+import { UtilModule } from 'src/util/util.module';
 
 
 @NgModule({
@@ -37,7 +41,8 @@ import { FilterCollapsePipe } from './flatTree/filterCollapse.pipe';
     ScrollingModule,
     FormsModule,
     BrowserAnimationsModule,
-    AngularMaterialModule
+    AngularMaterialModule,
+    UtilModule
   ],
   declarations : [
     /* components */
@@ -52,6 +57,10 @@ import { FilterCollapsePipe } from './flatTree/filterCollapse.pipe';
     TimerComponent,
     PillComponent,
     RadioList,
+    ProgressBar,
+    SleightOfHand,
+    DialogComponent,
+    ConfirmDialogComponent,
 
     /* directive */
     HoverableBlockDirective,
@@ -64,7 +73,6 @@ import { FilterCollapsePipe } from './flatTree/filterCollapse.pipe';
     FlattenTreePipe,
     RenderPipe,
     HighlightPipe,
-    FitlerRowsByVisibilityPipe,
     AppendSiblingFlagPipe,
     ClusteringPipe,
     FilterCollapsePipe
@@ -83,6 +91,10 @@ import { FilterCollapsePipe } from './flatTree/filterCollapse.pipe';
     TimerComponent,
     PillComponent,
     RadioList,
+    ProgressBar,
+    SleightOfHand,
+    DialogComponent,
+    ConfirmDialogComponent,
 
     SearchResultPaginationPipe,
     TreeSearchPipe,
diff --git a/src/components/confirmDialog/confirmDialog.component.ts b/src/components/confirmDialog/confirmDialog.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..6c16434ac9910839c345d0a5fe9a132411627ba4
--- /dev/null
+++ b/src/components/confirmDialog/confirmDialog.component.ts
@@ -0,0 +1,24 @@
+import { Component, Inject, Input } from "@angular/core";
+import { MAT_DIALOG_DATA, MatDialogRef } from "@angular/material";
+
+@Component({
+  selector: 'confirm-dialog-component',
+  templateUrl: './confirmDialog.template.html',
+  styleUrls: [
+    './confirmDialog.style.css'
+  ]
+})
+export class ConfirmDialogComponent{
+
+  @Input()
+  public title: string = 'Confirm'
+
+  @Input()
+  public message: string = 'Would you like to proceed?'
+
+  constructor(@Inject(MAT_DIALOG_DATA) data: any){
+    const { title = null, message  = null} = data || {}
+    if (title) this.title = title
+    if (message) this.message = message
+  }
+}
\ No newline at end of file
diff --git a/src/plugin_examples/samplePlugin/template.html b/src/components/confirmDialog/confirmDialog.style.css
similarity index 100%
rename from src/plugin_examples/samplePlugin/template.html
rename to src/components/confirmDialog/confirmDialog.style.css
diff --git a/src/components/confirmDialog/confirmDialog.template.html b/src/components/confirmDialog/confirmDialog.template.html
new file mode 100644
index 0000000000000000000000000000000000000000..eb0c76fffdca11eda3487eb259b2be3cbbaa032e
--- /dev/null
+++ b/src/components/confirmDialog/confirmDialog.template.html
@@ -0,0 +1,16 @@
+<h1 mat-dialog-title>
+  {{ title }}
+</h1>
+
+<mat-dialog-content>
+  <p>
+    {{ message }}
+  </p>
+</mat-dialog-content>
+
+<mat-divider></mat-divider>
+
+<mat-dialog-actions class="justify-content-start flex-row-reverse">
+    <button [mat-dialog-close]="true" mat-raised-button color="primary">OK</button>
+  <button [mat-dialog-close]="false" mat-button>Cancel</button>
+</mat-dialog-actions>
\ No newline at end of file
diff --git a/src/components/dialog/dialog.component.ts b/src/components/dialog/dialog.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..1e5b2ce32b91e6ed901b5eeffc35a2bd3a28a947
--- /dev/null
+++ b/src/components/dialog/dialog.component.ts
@@ -0,0 +1,73 @@
+import { Component, Input, ChangeDetectionStrategy, ViewChild, ElementRef, OnInit, OnDestroy, Inject } from "@angular/core";
+import { MatDialogRef, MAT_DIALOG_DATA } from "@angular/material";
+import { Subscription, Observable, fromEvent } from "rxjs";
+import { filter, share } from "rxjs/operators";
+
+@Component({
+  selector: 'dialog-component',
+  templateUrl: './dialog.template.html',
+  styleUrls: [
+    './dialog.style.css'
+  ],
+  changeDetection: ChangeDetectionStrategy.OnPush
+})
+
+export class DialogComponent implements OnInit, OnDestroy {
+
+  private subscrptions: Subscription[] = []
+
+  @Input() iconClass: string = `fas fa-save`
+  
+  @Input() title: string = 'Message'
+  @Input() placeholder: string = "Type your response here"
+  @Input() defaultValue: string = ''
+  @Input() message: string = ''
+  @ViewChild('inputField', {read: ElementRef}) private inputField: ElementRef
+
+  public value: string = ''
+  private keyListener$: Observable<any>
+
+  constructor(
+    @Inject(MAT_DIALOG_DATA) public data:any,
+    private dialogRef: MatDialogRef<DialogComponent>
+  ){
+    const { title, placeholder, defaultValue, message, iconClass = null } = this.data
+    if (title) this.title = title
+    if (placeholder) this.placeholder = placeholder
+    if (defaultValue) this.value = defaultValue
+    if (message) this.message = message
+    if (typeof iconClass !== 'undefined') this.iconClass = iconClass
+  }
+
+  ngOnInit(){
+
+    this.keyListener$ = fromEvent(this.inputField.nativeElement, 'keyup').pipe(
+      filter((ev: KeyboardEvent) => ev.key === 'Enter' || ev.key === 'Esc' || ev.key === 'Escape'),
+      share()
+    )
+    this.subscrptions.push(
+      this.keyListener$.subscribe(ev => {
+        if (ev.key === 'Enter') {
+          this.dialogRef.close(this.value)
+        }
+        if (ev.key === 'Esc' || ev.key === 'Escape') {
+          this.dialogRef.close(null)
+        }
+      })
+    )
+  }
+
+  confirm(){
+    this.dialogRef.close(this.value)
+  }
+
+  cancel(){
+    this.dialogRef.close(null)
+  }
+
+  ngOnDestroy(){
+    while(this.subscrptions.length > 0) {
+      this.subscrptions.pop().unsubscribe()
+    }
+  }
+}
\ No newline at end of file
diff --git a/src/components/dialog/dialog.style.css b/src/components/dialog/dialog.style.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/src/components/dialog/dialog.template.html b/src/components/dialog/dialog.template.html
new file mode 100644
index 0000000000000000000000000000000000000000..067ecb0ff65f13a449c18419aa2d45000e8dcb75
--- /dev/null
+++ b/src/components/dialog/dialog.template.html
@@ -0,0 +1,38 @@
+<h1 mat-dialog-title>
+  {{ title }}
+</h1>
+
+<div>
+  {{ message }}
+</div>
+
+<div mat-dialog-content>
+  <mat-form-field>
+    <input
+      tabindex="0"
+      [(ngModel)]="value"
+      matInput
+      [placeholder]="placeholder"
+      #inputField>
+  </mat-form-field>
+</div>
+
+<mat-divider></mat-divider>
+
+<div class="mt-2 d-flex flex-row justify-content-end">
+  <button 
+    (click)="cancel()"
+    color="primary"
+    mat-button>
+    Cancel
+  </button>
+  
+  <button
+    (click)="confirm()"
+    class="ml-1"
+    mat-raised-button
+    color="primary">
+    <i *ngIf="iconClass" [ngClass]="iconClass" class="mr-1"></i>
+    Confirm
+  </button>
+</div>
\ No newline at end of file
diff --git a/src/components/dropdown/dropdown.component.spec.ts b/src/components/dropdown/dropdown.component.spec.ts
index 56d28005437cbf2574502a6b35a38c022ea0b944..16ad858c862d0039de4b5ec57e6b7cfd3a4f3822 100644
--- a/src/components/dropdown/dropdown.component.spec.ts
+++ b/src/components/dropdown/dropdown.component.spec.ts
@@ -1,6 +1,9 @@
 import {} from 'jasmine'
 import { TestBed, async } from '@angular/core/testing'
 import { DropdownComponent } from './dropdown.component';
+import { HoverableBlockDirective } from '../hoverableBlock.directive'
+import { RadioList } from '../radiolist/radiolist.component'
+import { AngularMaterialModule } from '../../ui/sharedModules/angularMaterial.module'
 
 describe('dropdown component', () => {
   it('jasmine works', () => {
@@ -8,7 +11,14 @@ describe('dropdown component', () => {
   })
   beforeEach(async(() => {
     TestBed.configureTestingModule({
-      declarations : [ DropdownComponent ]
+      imports: [
+        AngularMaterialModule
+      ],
+      declarations : [ 
+        DropdownComponent,
+        HoverableBlockDirective,
+        RadioList
+      ]
     }).compileComponents()
   }))
   it('should create component', async(()=>{
diff --git a/src/components/dropdown/dropdown.component.ts b/src/components/dropdown/dropdown.component.ts
index 139e1add801255f3fb651ceaffb2bbd2bad312d2..b591d22df432612f72e7ccba9ae0d8d0ffd5c4e8 100644
--- a/src/components/dropdown/dropdown.component.ts
+++ b/src/components/dropdown/dropdown.component.ts
@@ -1,5 +1,6 @@
 import { Component, Input, Output, EventEmitter, ChangeDetectionStrategy, HostListener, ViewChild, ElementRef } from "@angular/core";
 import { dropdownAnimation } from "./dropdown.animation";
+import { HasExtraButtons, ExraBtnClickEvent, ExtraButton } from '../radiolist/radiolist.component'
 
 @Component({
   selector : 'dropdown-component',
@@ -15,17 +16,18 @@ import { dropdownAnimation } from "./dropdown.animation";
 
 export class DropdownComponent{
 
-  @Input() inputArray : any[] = []
+  @Input() activeDisplayBtns: ExtraButton[] = []
+  @Output() activeDisplayBtnClicked: EventEmitter<{extraBtn: ExtraButton, event: MouseEvent}> = new EventEmitter()
+
+  @Input() inputArray : HasExtraButtons[] = []
   @Input() selectedItem : any | null = null
   @Input() checkSelected: (selectedItem:any, item:any) => boolean = (si,i) => si === i
 
   @Input() listDisplay : (obj:any)=>string = (obj)=>obj.name
   @Input() activeDisplay : (obj:any|null)=>string = (obj)=>obj ? obj.name : `Please select an item.`
 
-  @Input() isMobile: boolean
-  @Input() darktheme: boolean
-
   @Output() itemSelected : EventEmitter<any> = new EventEmitter()
+  @Output() extraBtnClicked: EventEmitter<ExraBtnClickEvent> = new EventEmitter()
 
   @ViewChild('dropdownToggle',{read:ElementRef}) dropdownToggle : ElementRef
 
@@ -39,4 +41,11 @@ export class DropdownComponent{
     else
       this.openState = false;
   }
+
+  handleActiveDisplayBtnClick(btn: ExtraButton, event: MouseEvent){
+    this.activeDisplayBtnClicked.emit({
+      extraBtn: btn,
+      event
+    })
+  }
 }
\ No newline at end of file
diff --git a/src/components/dropdown/dropdown.style.css b/src/components/dropdown/dropdown.style.css
index e13bd32eb58f18b15d6de37040e1547df1360f30..99359c8ababa48549e10cad178d963e83a9695df 100644
--- a/src/components/dropdown/dropdown.style.css
+++ b/src/components/dropdown/dropdown.style.css
@@ -56,3 +56,21 @@ radio-list
   overflow-x:hidden;
   display:block;
 }
+
+
+:host-context([isMobile="true"]) .dropdownTitle {
+  border: 1px solid !important;
+}
+
+:host-context([isMobile="true"]) .dropdownTitleOpen {
+  border: solid !important;
+  border-width: 1px 1px 0 1px !important;
+}
+
+:host-context([darktheme="true"][isMobile="true"]) .dropdownTitle {
+  border-color: white !important;
+}
+
+:host-context([darktheme="false"][isMobile="true"]) .dropdownTitle {
+  border-color: black !important;
+}
\ No newline at end of file
diff --git a/src/components/dropdown/dropdown.template.html b/src/components/dropdown/dropdown.template.html
index b31ed3fc131507c35127bbb1c5da3e5c52328439..1ab4afbdaa75c513a92f359885308b5e441b77c4 100644
--- a/src/components/dropdown/dropdown.template.html
+++ b/src/components/dropdown/dropdown.template.html
@@ -1,14 +1,28 @@
 <!-- TODO remove dependency on ismobile -->
-<span
-  class="btn btn-default"
-  [innerHTML]="activeDisplay(selectedItem)"
-  [hoverable]="{translateY:-2}"
-  #dropdownToggle
-  dropdownToggle
-              
-  [ngStyle]="{'border': isMobile? 'none' : 'none', 'border-color': darktheme? 'white' : 'black', 'border-width': openState? '1px 1px 0 1px' : ''}">
+<div class="d-flex flex-column">
+  <div class="d-flex">
 
-</span>
+    <span
+      class="btn btn-default dropdownTitle flex-grow-1 m-auto"
+      [innerHTML]="activeDisplay(selectedItem)"
+      [hoverable]="{translateY:-2}"
+      #dropdownToggle
+      dropdownToggle
+      [ngClass]="openState ? 'dropdownTitleOpen' : 'dropdownTitle'">
+    </span>
+    
+    <span
+      *ngFor="let btn of activeDisplayBtns"
+      class="btn btn-default"
+      (click)="handleActiveDisplayBtnClick(btn, $event)"
+      [hoverable]="{translateY:-1}"
+      dropdownToggle>
+      <div class="d-flex align-items-center">
+        <small [ngClass]="btn.faIcon"></small>
+      </div>
+    </span>
+  </div>
+</div>
 
 <!-- needed to ensure dropdown width matches  -->
 <ul class="m-0 h-0 overflow-hidden">
@@ -24,7 +38,5 @@
   [selectedItem]="selectedItem"
   [inputArray]="inputArray"
   [@showState]="openState ? 'show' : 'hide'"
-  [isMobile]="isMobile"
-  [darktheme]="darktheme">
-
+  (extraBtnClicked)="extraBtnClicked.emit($event)">
 </radio-list>
diff --git a/src/components/flatTree/filterRowsByVisibility.pipe.ts b/src/components/flatTree/filterRowsByVisibility.pipe.ts
index 612e206126a74e363eb450cbe93ed237fd290200..044e894fca976adfbbcc0419a28a3fdb601abfba 100644
--- a/src/components/flatTree/filterRowsByVisibility.pipe.ts
+++ b/src/components/flatTree/filterRowsByVisibility.pipe.ts
@@ -1,16 +1,18 @@
 import { Pipe, PipeTransform } from "@angular/core";
 
+// TODO fix typo
+
 @Pipe({
   name : 'filterRowsByVisbilityPipe'
 })
 
-export class FitlerRowsByVisibilityPipe implements PipeTransform{
+export class FilterRowsByVisbilityPipe implements PipeTransform{
   public transform(rows:any[], getChildren : (item:any)=>any[], filterFn : (item:any)=>boolean){
     
     return rows.filter(row => this.recursive(row, getChildren, filterFn) )
   }
 
   private recursive(single : any, getChildren : (item:any) => any[], filterFn:(item:any) => boolean):boolean{
-    return filterFn(single) || getChildren(single).some(c => this.recursive(c, getChildren, filterFn))
+    return filterFn(single) || (getChildren && getChildren(single).some(c => this.recursive(c, getChildren, filterFn)))
   }
 }
\ No newline at end of file
diff --git a/src/components/flatTree/flatTree.component.ts b/src/components/flatTree/flatTree.component.ts
index d6002b13089f56e10b96b5b49463b4b3e7694b68..60e0ba44fd00d214d3fb0e9a5997b78d813ffa69 100644
--- a/src/components/flatTree/flatTree.component.ts
+++ b/src/components/flatTree/flatTree.component.ts
@@ -1,5 +1,6 @@
-import { EventEmitter, Component, Input, Output, ChangeDetectionStrategy } from "@angular/core";
+import {EventEmitter, Component, Input, Output, ChangeDetectionStrategy, ViewChild, AfterViewChecked} from "@angular/core";
 import { FlattenedTreeInterface } from "./flattener.pipe";
+import {CdkVirtualScrollViewport} from "@angular/cdk/scrolling";
 
 /**
  * TODO to be replaced by virtual scrolling when ivy is in stable
@@ -14,7 +15,7 @@ import { FlattenedTreeInterface } from "./flattener.pipe";
   changeDetection:ChangeDetectionStrategy.OnPush
 })
 
-export class FlatTreeComponent{
+export class FlatTreeComponent implements AfterViewChecked {
   @Input() inputItem : any = {
     name : 'Untitled',
     children : []
@@ -33,6 +34,10 @@ export class FlatTreeComponent{
   @Input() findChildren : (item:any)=>any[] = (item)=>item.children ? item.children : [] 
   @Input() searchFilter : (item:any)=>boolean | null = ()=>true
 
+  @ViewChild('flatTreeVirtualScrollViewPort') virtualScrollViewPort: CdkVirtualScrollViewport
+  @Output() totalRenderedListChanged = new EventEmitter<{ previous: number, current: number }>()
+  private totalDataLength: number = null
+
   public flattenedItems : any[] = []
 
   getClass(level:number){
@@ -42,6 +47,23 @@ export class FlatTreeComponent{
   collapsedLevels: Set<string> = new Set()
   uncollapsedLevels : Set<string> = new Set()
 
+  ngAfterViewChecked(){
+    /**
+     * if useDefaultList is true, virtualscrollViewPort will be undefined
+     */
+    if (!this.virtualScrollViewPort) {
+      return
+    }
+    const currentTotalDataLength = this.virtualScrollViewPort.getDataLength()
+    const previousDataLength = this.totalDataLength
+
+    this.totalRenderedListChanged.emit({
+      current: currentTotalDataLength,
+      previous: previousDataLength
+    })
+    this.totalDataLength = currentTotalDataLength
+  }
+
   toggleCollapse(flattenedItem:FlattenedTreeInterface){
     if (this.isCollapsed(flattenedItem)) {
       this.collapsedLevels.delete(flattenedItem.lvlId)
@@ -76,4 +98,10 @@ export class FlatTreeComponent{
       .some(id => this.isCollapsedById(id))
   }
 
+  handleTreeNodeClick(event:MouseEvent, inputItem: any){
+    this.treeNodeClick.emit({
+      event,
+      inputItem
+    })
+  }
 }
\ No newline at end of file
diff --git a/src/components/flatTree/flatTree.style.css b/src/components/flatTree/flatTree.style.css
index 9ee266f33ce80735ba9ebae0689f01c031aaaeaf..2141fb09a515b4b00818afd5f45306edcbeed0c5 100644
--- a/src/components/flatTree/flatTree.style.css
+++ b/src/components/flatTree/flatTree.style.css
@@ -71,7 +71,7 @@ span[renderText]
   content: ' ';
   height:1.5em;
   width: 1.5em;
-  bottom: 0.75em;
+  bottom: 0.25em;
   left: -0.5em;
   position: absolute;
   border-left: rgba(128,128,128,0.6) 1px dashed;
diff --git a/src/components/flatTree/flatTree.template.html b/src/components/flatTree/flatTree.template.html
index 3dc5601046cb636f23482dbe2025df86a6c7c4c1..893c539a9ff029933606880e3e37776e3d7fa0c1 100644
--- a/src/components/flatTree/flatTree.template.html
+++ b/src/components/flatTree/flatTree.template.html
@@ -1,10 +1,11 @@
 <cdk-virtual-scroll-viewport
   *ngIf="!useDefaultList"
   (wheel)="$event.stopPropagation()"
-  itemSize="15">
+  itemSize="15"
+  #flatTreeVirtualScrollViewPort>
 
   <div
-    *cdkVirtualFor="let flattenedItem of (inputItem | flattenTreePipe : findChildren | filterRowsByVisbilityPipe : findChildren : searchFilter | appendSiblingFlagPipe | filterCollapsePipe : collapsedLevels : uncollapsedLevels : childrenExpanded )" 
+    *cdkVirtualFor="let flattenedItem of (inputItem | flattenTreePipe : findChildren | filterRowsByVisbilityPipe : findChildren : searchFilter | appendSiblingFlagPipe | filterCollapsePipe : collapsedLevels : uncollapsedLevels : childrenExpanded )"
     [ngClass]="getClass(flattenedItem.flattenedTreeLevel)"
     class="text-nowrap"
     [attr.flattenedtreelevel]="flattenedItem.flattenedTreeLevel" 
@@ -26,7 +27,7 @@
       <i [ngClass]="isCollapsed(flattenedItem) ? 'r-270' : ''" class="fas fa-chevron-down"></i>
     </span>
     <span
-      (click)="treeNodeClick.emit({event:$event,inputItem:flattenedItem})"
+      (click)="handleTreeNodeClick($event, flattenedItem)"
       class="render-node-text"
       [innerHtml]="flattenedItem | renderPipe : renderNode ">
     </span>
@@ -62,7 +63,7 @@
         <i [ngClass]="isCollapsed(flattenedItem) ? 'r-270' : ''" class="fas fa-chevron-down"></i>
       </span>
       <span
-        (click)="treeNodeClick.emit({event:$event,inputItem:flattenedItem})"
+        (click)="handleTreeNodeClick($event, flattenedItem)"
         class="render-node-text"
         [innerHtml]="flattenedItem | renderPipe : renderNode ">
       </span>
diff --git a/src/components/pagination/pagination.component.ts b/src/components/pagination/pagination.component.ts
index 0e5ff89eefc188bd56b05c768ababcdd89310bb8..1723d4540cef7683c09f8ca7f5e81986c6003f80 100644
--- a/src/components/pagination/pagination.component.ts
+++ b/src/components/pagination/pagination.component.ts
@@ -4,8 +4,7 @@ import { Component, Input, Output, EventEmitter } from '@angular/core'
   selector : 'pagination-component',
   templateUrl : './pagination.template.html',
   styleUrls : [
-    './pagination.style.css',
-    '../../css/darkBtns.css'
+    './pagination.style.css'
   ]
 })
 
diff --git a/src/components/panel/panel.component.ts b/src/components/panel/panel.component.ts
index 6b2c5095c1f04c39d1a85123e0f793163290d845..ccfc382fb8297e7b2671bec08bfffb7b694d1a11 100644
--- a/src/components/panel/panel.component.ts
+++ b/src/components/panel/panel.component.ts
@@ -1,5 +1,4 @@
-import { Component, Input, ViewChild, ElementRef, AfterContentChecked, ChangeDetectionStrategy, ChangeDetectorRef, OnChanges, SimpleChanges, HostBinding, ApplicationRef } from "@angular/core";
-import { panelAnimations } from "./panel.animation";
+import { Component, Input, ViewChild, ElementRef, ChangeDetectionStrategy } from "@angular/core";
 import { ParseAttributeDirective } from "../parseAttribute.directive";
 
 @Component({
@@ -8,9 +7,6 @@ import { ParseAttributeDirective } from "../parseAttribute.directive";
   styleUrls : [
     `./panel.style.css`
   ],
-  host: {
-    '[class]': 'getClassNames'
-  },
   changeDetection:ChangeDetectionStrategy.OnPush
 })
 
@@ -23,8 +19,6 @@ export class PanelComponent extends ParseAttributeDirective {
   @Input() collapseBody : boolean = false
   @Input() bodyCollapsable : boolean = false
 
-  @Input() containerClass : string = ''
-
   @ViewChild('panelBody',{ read : ElementRef }) efPanelBody : ElementRef
   @ViewChild('panelFooter',{ read : ElementRef }) efPanelFooter : ElementRef
 
@@ -32,10 +26,6 @@ export class PanelComponent extends ParseAttributeDirective {
     super()
   }
 
-  get getClassNames(){
-    return `panel ${this.containerClass === '' ? 'panel-default' : this.containerClass}`
-  }
-
   toggleCollapseBody(_event:Event){
     if(this.bodyCollapsable){
       this.collapseBody = !this.collapseBody
diff --git a/src/components/panel/panel.template.html b/src/components/panel/panel.template.html
index d2c55e22b6daed1c0b223e86492e6429e34a143d..84ca6a9f7a786cc51b3ba4a32e9ff8e1b3ff416d 100644
--- a/src/components/panel/panel.template.html
+++ b/src/components/panel/panel.template.html
@@ -1,10 +1,3 @@
-<div
-  *ngIf = "showHeading"
-  class = "panel-heading"
-  hoverable>
-
-</div>
-
 <div class="l-card">
   <div class="l-card-body">
     <div
diff --git a/src/components/progress/progress.component.ts b/src/components/progress/progress.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..03e34f9f304f5c6a0b86016c5a73760392434053
--- /dev/null
+++ b/src/components/progress/progress.component.ts
@@ -0,0 +1,44 @@
+import { Component, Input, ChangeDetectionStrategy } from "@angular/core";
+
+
+@Component({
+  selector: 'progress-bar',
+  templateUrl: './progress.template.html',
+  styleUrls: [
+    './progress.style.css'
+  ],
+  changeDetection: ChangeDetectionStrategy.OnPush
+})
+
+export class ProgressBar{
+  @Input() progressStyle: any
+
+  private _progress: number = 0
+  /**
+   * between 0 and 1
+   */
+  @Input() 
+  set progress(val: number) {
+    if (isNaN(val)) {
+      this._progress = 0
+      return
+    }
+    if (val < 0 || val === null) {
+      this._progress = 0
+      return
+    }
+    if (val > 1) {
+      this._progress = 1
+      return
+    }
+    this._progress = val
+  }
+
+  get progress(){
+    return this._progress
+  }
+
+  get progressPercent(){
+    return `${this.progress * 100}%`
+  }
+}
\ No newline at end of file
diff --git a/src/components/progress/progress.style.css b/src/components/progress/progress.style.css
new file mode 100644
index 0000000000000000000000000000000000000000..36858a282cdd6c793041f515aa8c4cd7e0cab97a
--- /dev/null
+++ b/src/components/progress/progress.style.css
@@ -0,0 +1,41 @@
+.progress
+{
+  height: 100%;
+  width: 100%;
+  position:relative;
+  overflow:hidden;
+  background-color:rgba(255,255,255,0.5);
+}
+
+:host-context([darktheme="true"]) .progress
+{
+  background-color:rgba(0,0,0,0.5);
+}
+
+@keyframes moveRight
+{
+  from {
+    transform: translateX(-105%);
+  }
+  to {
+    transform: translateX(205%);
+  }
+}
+
+.progress::after
+{
+  content: '';
+  width: 100%;
+  height: 100%;
+  position:absolute;
+  border-left-width: 10em;
+  border-right-width:0;
+  border-style: solid;
+  border-image: linear-gradient(
+    to right,
+    rgba(128, 200, 128, 0.0),
+    rgba(128, 200, 128, 0.5),
+    rgba(128, 200, 128, 0.0)
+  ) 0 100%;
+  animation: moveRight 2000ms linear infinite;
+}
\ No newline at end of file
diff --git a/src/components/progress/progress.template.html b/src/components/progress/progress.template.html
new file mode 100644
index 0000000000000000000000000000000000000000..7df81f0819667454c5aa5127a780a94a557d1ae6
--- /dev/null
+++ b/src/components/progress/progress.template.html
@@ -0,0 +1,3 @@
+<div class="progress rounded-0">
+  <div [style.width]="progressPercent" class="progress-bar bg-success rounded-0" role="progressbar"></div>
+</div>
\ No newline at end of file
diff --git a/src/components/radiolist/radiolist.component.ts b/src/components/radiolist/radiolist.component.ts
index bd5fd328cf7cb19dadead6c973cbf7d297cc8ffa..e8e25b8daa1176d62a17a055d082a0b5a24139d0 100644
--- a/src/components/radiolist/radiolist.component.ts
+++ b/src/components/radiolist/radiolist.component.ts
@@ -1,6 +1,4 @@
 import { Component, ChangeDetectionStrategy, Input, Output, EventEmitter, OnInit, ViewChild, TemplateRef } from "@angular/core";
-import { ToastService } from "src/services/toastService.service";
-import { ZipFileDownloadService } from "src/services/zipFileDownload.service";
 
 @Component({
   selector: 'radio-list',
@@ -8,22 +6,6 @@ import { ZipFileDownloadService } from "src/services/zipFileDownload.service";
   styleUrls: [
     './radiolist.style.css'
   ],
-  styles: [
-    `
-    ul > li.selected > .textSpan:before
-    {
-      content: '\u2022';
-      width : 1em;
-      display:inline-block;
-    }
-    ul > li:not(.selected) > .textSpan:before
-    {
-      content: ' ';
-      width : 1em;
-      display:inline-block;
-    }  
-    `
-  ],
   changeDetection: ChangeDetectionStrategy.OnPush
 })
 
@@ -38,42 +20,40 @@ export class RadioList{
   selectedItem: any | null = null
 
   @Input()
-  inputArray: any[] = []
+  inputArray: HasExtraButtons[] = []
 
   @Input()
   ulClass: string = ''
   
   @Input() checkSelected: (selectedItem:any, item:any) => boolean = (si,i) => si === i
 
-  @Input() isMobile: boolean
-  @Input() darktheme: boolean
-
-  @ViewChild('publicationTemplate') publicationTemplate: TemplateRef<any>
-
-  handleToast
+  @Output() extraBtnClicked = new EventEmitter<ExraBtnClickEvent>()
 
-  constructor(private toastService: ToastService,
-              private zipFileDownloadService: ZipFileDownloadService) {}
-
-  showToast(item) {
-    if (this.handleToast) {
-      this.handleToast()
-      this.handleToast = null
-    }
-    this.handleToast = this.toastService.showToast(this.publicationTemplate, {
-        timeout: 7000
+  handleExtraBtnClick(extraBtn:ExtraButton, inputItem:any, event:MouseEvent){
+    this.extraBtnClicked.emit({
+      extraBtn,
+      inputItem,
+      event
     })
-
   }
 
-
-  downloadPublications(item) {
-    const filename = item['name']
-    let publicationsText = item['name'] + ' Publications:\r\n'
-      item['properties']['publications'].forEach((p, i) => {
-        publicationsText += '\t' + (i+1) + '. ' + p['citation'] + ' - ' + p['doi'] + '\r\n'
-      });
-    this.zipFileDownloadService.downloadZip(publicationsText, filename)
-    publicationsText = ''
+  overflowText(event) {
+    return (event.offsetWidth < event.scrollWidth)
   }
+}
+
+export interface ExtraButton{
+  name: string,
+  faIcon: string
+  class?: string
+}
+
+export interface HasExtraButtons{
+  extraButtons?: ExtraButton[]
+}
+
+export interface ExraBtnClickEvent{
+  extraBtn:ExtraButton
+  inputItem:any
+  event:MouseEvent
 }
\ No newline at end of file
diff --git a/src/components/radiolist/radiolist.style.css b/src/components/radiolist/radiolist.style.css
index c3fcf157b57217734cf562400ddcc17697a67ba2..2d8352e629901669d33dd8df685d0d4eaf0549be 100644
--- a/src/components/radiolist/radiolist.style.css
+++ b/src/components/radiolist/radiolist.style.css
@@ -1,3 +1,4 @@
+/*@import "~@angular/material/prebuilt-themes/indigo-pink.css";*/
 
 :host-context([darktheme="true"]) ul
 {
@@ -54,31 +55,21 @@ ul,span.dropdown-item-1
   border-radius:0px;
   white-space: nowrap;
   border:none;
+  overflow: hidden;
+  text-overflow: ellipsis
 }
 
-.infoIcon {
-  margin-right: 5px;
-  display: inline-block;
-  border: 1px solid gray;
-  border-radius: 15px;
-  width: 24px;
-  height: 24px;
-  cursor: pointer;
-  text-align: center;
+:host-context([darktheme="true"]) .radioListMenu {
+  border-color: white;
 }
-
-.timerToast {
-  max-width: 700px;
-  display: flex;
-  flex-direction: column;
-  justify-content: center;
+:host-context([darktheme="false"]) .radioListMenu {
+  border-color: black;
 }
-
-.downloadPublications {
-  align-self: flex-end;
-  outline: none;
+:host-context([isMobile="true"]) .radioListMenu {
+  opacity: 1;
+  border-style: solid;
+  border-width: 0px 1px 1px 1px;
 }
-
-.textPartInPublications {
-  text-align: left;
+:host-context([isMobile="false"]) .radioListMenu {
+  opacity: 0.8;
 }
\ No newline at end of file
diff --git a/src/components/radiolist/radiolist.template.html b/src/components/radiolist/radiolist.template.html
index ffa5c4fc1d7ed5c044bbbbc2926d2acc706796b5..d60939d5579e10c99a9518a7cf12c8db16e26f38 100644
--- a/src/components/radiolist/radiolist.template.html
+++ b/src/components/radiolist/radiolist.template.html
@@ -1,35 +1,28 @@
 <ul
   [ngClass]="ulClass"
-  [ngStyle]="{'opacity': isMobile? '1' : '0.8', 'border-color': darktheme? 'white' : 'black'}"
+  class="radioListMenu"
   role="menu">
-  <li 
-    *ngFor="let input of inputArray" 
+
+  <li
+    *ngFor="let input of inputArray; let i = index"
+    class="d-flex justify-content-between"
     [ngClass]="checkSelected(selectedItem, input) ? 'selected' : 'notselected'"
     role="menuitem"
-    (click)="itemSelected.emit({previous: selectedItem, current: input})">
+    (click)="itemSelected.emit({previous: selectedItem, current: input})"
+    [matTooltip]="input.tooltipText">
     
-    <span *ngIf="input['properties'] && input['properties']['publications']" class="infoIcon" (click)="showToast(input);$event.stopPropagation()">
-      i
-    </span>
-
-    <span class="dropdown-item-1 textSpan" 
-      [innerHTML] = "listDisplay(input)">
+    <span class="dropdown-item-1 textSpan"
+      #DropDownText
+      [innerHTML]="listDisplay(input)"
+      [ngClass]="checkSelected(selectedItem, input) ? 'font-weight-bold' : ''">
     </span>
 
-
-
-    
-<ng-template #publicationTemplate>
-    <div *ngIf="input['properties'] && input['properties']['publications']" class="timerToast">
-        <button mat-mini-fab color="primary" class="downloadPublications" (click)="downloadPublications(input)">↓</button>
-          <p>{{input['name']}} Publication(s)</p>
-          <div *ngFor="let p of input['properties']['publications']" class="textPartInPublications">
-            <a [href]="p['doi']" target="_blank">{{p['citation']}}</a>
-          </div>
-      </div>
-</ng-template>
-
-
-
+    <ng-container *ngIf="input.extraButtons as extraButtons">
+      <span *ngFor="let extraBtn of extraButtons"
+        [ngClass]="extraBtn.class"
+        (click)="handleExtraBtnClick(extraBtn, input, $event)">
+        <i [ngClass]="extraBtn.faIcon"></i>
+      </span>
+    </ng-container>
   </li>
 </ul>
\ No newline at end of file
diff --git a/src/components/sleightOfHand/soh.component.ts b/src/components/sleightOfHand/soh.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..4b6fbe5fdb989088e847e10716703dfb4c044c5a
--- /dev/null
+++ b/src/components/sleightOfHand/soh.component.ts
@@ -0,0 +1,33 @@
+import { Component, Input, HostBinding, ChangeDetectionStrategy, HostListener } from "@angular/core";
+
+@Component({
+  selector: 'sleight-of-hand',
+  templateUrl: './soh.template.html',
+  styleUrls: [
+    './soh.style.css'
+  ],
+  changeDetection: ChangeDetectionStrategy.OnPush
+})
+
+export class SleightOfHand{
+
+  @HostBinding('class.do-not-close')
+  get doNotCloseClass(){
+    return this.doNotClose || this.focusInStatus
+  }
+
+  @HostListener('focusin')
+  focusInHandler(){
+    this.focusInStatus = true
+  }
+
+  @HostListener('focusout')
+  focusOutHandler(){
+    this.focusInStatus = false
+  }
+
+  private focusInStatus: boolean = false
+
+  @Input()
+  doNotClose: boolean = false
+}
\ No newline at end of file
diff --git a/src/components/sleightOfHand/soh.style.css b/src/components/sleightOfHand/soh.style.css
new file mode 100644
index 0000000000000000000000000000000000000000..701612d06f07969b4c9d76b2bc5dbd279b359a84
--- /dev/null
+++ b/src/components/sleightOfHand/soh.style.css
@@ -0,0 +1,28 @@
+:host:not(.do-not-close):not(:hover) > .sleight-of-hand-back,
+:host:not(.do-not-close):hover > .sleight-of-hand-front,
+:host(.do-not-close) > .sleight-of-hand-front
+{
+  opacity: 0;
+  pointer-events: none;
+}
+
+:host *
+{
+  transition: opacity 300ms ease-in-out;
+}
+
+:host
+{
+  position: relative;
+}
+
+:host > .sleight-of-hand-front
+{
+  position: relative;
+}
+
+:host > .sleight-of-hand-back
+{
+  position:  absolute;
+  z-index: 1;
+}
\ No newline at end of file
diff --git a/src/components/sleightOfHand/soh.template.html b/src/components/sleightOfHand/soh.template.html
new file mode 100644
index 0000000000000000000000000000000000000000..fca028aa043b8a5c77fdb98261a0e6d5a57dd19c
--- /dev/null
+++ b/src/components/sleightOfHand/soh.template.html
@@ -0,0 +1,9 @@
+<div class="sleight-of-hand-back">
+  <ng-content select="[sleight-of-hand-back]">
+  </ng-content>
+</div>
+
+<div class="sleight-of-hand-front">
+  <ng-content select="[sleight-of-hand-front]">
+  </ng-content>
+</div>
\ No newline at end of file
diff --git a/src/components/toast/toast.style.css b/src/components/toast/toast.style.css
index 50624d5c59826c29247dcbfa9f6286229993120a..e39cb38ee456c759dfd5dbe029d11a8c29a37407 100644
--- a/src/components/toast/toast.style.css
+++ b/src/components/toast/toast.style.css
@@ -12,6 +12,7 @@ div[container]
   align-items: center;
   padding : 0.3em 1em 0em 1em;
   pointer-events: all;
+  max-width:80%;
 }
 
 :host-context([darktheme="false"]) div[container]
@@ -36,8 +37,10 @@ div[close]
 {
   display:inline-block;
 }
+
 timer-component
 {
+  flex: 0 0 0.5em;
   margin: 0 -1em;
   height:0.5em;
   width: calc(100% + 2em);
diff --git a/src/components/toast/toast.template.html b/src/components/toast/toast.template.html
index 95032c74b9fbc154f0bd1e7aa9542f3453bf4fa0..7d1eb664845b73687c1be2bf1cdc110b789138ea 100644
--- a/src/components/toast/toast.template.html
+++ b/src/components/toast/toast.template.html
@@ -1,29 +1,45 @@
-<div (mouseenter) = "hover = true" (mouseleave)="hover = false" container>
-  <div message>
-    <ng-template #messageContainer>
+<div
+  class="d-flex flex-column m-auto"
+  (mouseenter)="hover = true"
+  (mouseleave)="hover = false"
+  container>
 
-    </ng-template>
-  </div>
-  <div message
-    [innerHTML]="htmlMessage"
-    *ngIf = "htmlMessage">
-  </div>
-  <div
-    message
-    *ngIf="message && !htmlMessage">
-    {{ message }}
-  </div>
-  <div
-    (click)="dismiss($event)"
-    class="ml-2"
-    *ngIf="dismissable" close>
-    <i class="fas fa-times"></i>
+  <!-- body -->
+  <div class="d-flex flex-row justify-content-between align-items-start">
+
+    <!-- contents -->
+    <div message>
+      <ng-template #messageContainer>
+  
+      </ng-template>
+    </div>
+    <div message
+      [innerHTML]="htmlMessage"
+      *ngIf = "htmlMessage">
+    </div>
+    <div
+      message
+      *ngIf="message && !htmlMessage">
+      {{ message }}
+    </div>
+
+    <!-- dismiss btn -->
+    <div
+      (click)="dismiss($event)"
+      class="m-2"
+      *ngIf="dismissable" close>
+      <i class="fas fa-times"></i>
+    </div>
   </div>
+
+  <!-- timer -->
   <timer-component
+    class="flex-"
     *ngIf="timeout > 0"
     (timerEnd)="dismissed.emit(false)"
     [pause]="hover"
     [timeout]="timeout"
     timer>
   </timer-component>
+
 </div>
\ No newline at end of file
diff --git a/src/css/darkBtns.css b/src/css/darkBtns.css
deleted file mode 100644
index 35e4e24ea3ba616e1b5227c7a874758d6d957f21..0000000000000000000000000000000000000000
--- a/src/css/darkBtns.css
+++ /dev/null
@@ -1,12 +0,0 @@
-
-:host-context([darktheme="true"]) .btn.btn-default
-{
-  background-color:rgba(128,128,128,0.5);
-  color:rgba(240,240,240,0.9);
-  border: none;
-}
-
-:host-context([darktheme="true"]) .btn.btn-default > *
-{
-  font-size: 100%;
-}
\ No newline at end of file
diff --git a/src/index.html b/src/index.html
index 3a45da9bca5a8f7038f93470f1089bdfe3d696b6..f805b632d4972715268dace025282d807365fffe 100644
--- a/src/index.html
+++ b/src/index.html
@@ -6,47 +6,23 @@
   <meta http-equiv="X-UA-Compatible" content="ie=edge">
   <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
-  <link rel = "stylesheet" href = "extra_styles.css">
-  <link rel = "stylesheet" href = "plugin_styles.css">
+  <link rel="stylesheet" href="extra_styles.css">
+  <link rel="stylesheet" href="plugin_styles.css">
+  <link rel="stylesheet" href="theme.css">
+  <link rel="stylesheet" href="version.css">
+
   <title>Interactive Atlas Viewer</title>
 </head>
 <body>
   <atlas-viewer>
-    <h1 style = "text-align:center;">
-      <span class = "homeAnimationDots loadingAnimationDots">&bull;</span>
-      <span class = "homeAnimationDots loadingAnimationDots">&bull;</span>
-      <span class = "homeAnimationDots loadingAnimationDots">&bull;</span>
+    <h1 class="text-center">
+      <span class="homeAnimationDots loadingAnimationDots">&bull;</span>
+      <span class="homeAnimationDots loadingAnimationDots">&bull;</span>
+      <span class="homeAnimationDots loadingAnimationDots">&bull;</span>
     </h1>
   </atlas-viewer>
-  <script>
-    /**
-     * Catching Safari 10 bug:
-     * 
-     * https://bugs.webkit.org/show_bug.cgi?id=171041
-     * 
-     */
-    try{
-      eval('(()=>{\
-              let e = e => {\
-                console.log(e);\
-                for(let e of [1,2,3]){\
-                  console.log(e);\
-                }\
-              }\
-          })()')
-    }catch(e){
-      console.log(e)
-      const warning = 'Your browser cannot display the interactive viewer. Please use either Chrome >= 56 and/or Firefox >= 51'
-      console.log(warning)
-      const warningEl = document.createElement('h4')
-      warningEl.innerHTML = warning
-      const el = document.getElementsByTagName('atlas-viewer')
-      if(el.length > 0){
-        document.body.removeChild(el[0])
-      }
-      document.body.appendChild(warningEl)
-    }
 
+  <script src="testSafari.js">
   </script>
 </body>
 </html>
diff --git a/src/main-aot.ts b/src/main-aot.ts
index 171bd6ce7beb8ae5a35e9d43553fdc134235d0e1..10bfb6cac304ba1bece7e906b4645d09bf093505 100644
--- a/src/main-aot.ts
+++ b/src/main-aot.ts
@@ -1,5 +1,7 @@
 import 'zone.js'
 
+import 'third_party/testSafari.js'
+
 import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'
 import { MainModule } from './main.module';
 import { enableProdMode } from '@angular/core';
@@ -12,7 +14,6 @@ requireAll(require.context(`./plugin_examples`, true))
 /* aot === production mode */
 enableProdMode()
 
-if(PRODUCTION)
-  console.log(`Interactive Atlas Viewer: ${VERSION}`)
+if(PRODUCTION) console.log(`Interactive Atlas Viewer: ${VERSION}`)
 
 platformBrowserDynamic().bootstrapModule(MainModule)
\ No newline at end of file
diff --git a/src/main.module.ts b/src/main.module.ts
index daf52879997c91f152b4e8d66cf0b921dd82ad24..6dd663fae585edfc1048ea2c5c8d5dc5beece6f9 100644
--- a/src/main.module.ts
+++ b/src/main.module.ts
@@ -4,12 +4,13 @@ import { DragDropModule } from '@angular/cdk/drag-drop'
 import { UIModule } from "./ui/ui.module";
 import { LayoutModule } from "./layouts/layout.module";
 import { AtlasViewer } from "./atlasViewer/atlasViewer.component";
-import { StoreModule, Store, select } from "@ngrx/store";
-import { viewerState, dataStore,spatialSearchState,uiState, ngViewerState, pluginState, viewerConfigState } from "./services/stateStore.service";
+import { StoreModule } from "@ngrx/store";
+import { viewerState, dataStore,spatialSearchState,uiState, ngViewerState, pluginState, viewerConfigState, userConfigState, UserConfigStateUseEffect } from "./services/stateStore.service";
 import { GetNamesPipe } from "./util/pipes/getNames.pipe";
 import { CommonModule } from "@angular/common";
 import { GetNamePipe } from "./util/pipes/getName.pipe";
 import { FormsModule } from "@angular/forms";
+import { AngularMaterialModule } from 'src/ui/sharedModules/angularMaterial.module'
 
 import { AtlasViewerDataService } from "./atlasViewer/atlasViewer.dataService.service";
 import { WidgetUnit } from "./atlasViewer/widgetUnit/widgetUnit.component";
@@ -17,31 +18,42 @@ import { WidgetServices } from './atlasViewer/widgetUnit/widgetService.service'
 import { fasTooltipScreenshotDirective,fasTooltipInfoSignDirective,fasTooltipLogInDirective,fasTooltipNewWindowDirective,fasTooltipQuestionSignDirective,fasTooltipRemoveDirective,fasTooltipRemoveSignDirective } from "./util/directives/glyphiconTooltip.directive";
 import { TooltipModule } from "ngx-bootstrap/tooltip";
 import { TabsModule } from 'ngx-bootstrap/tabs'
-import { ModalModule } from 'ngx-bootstrap/modal'
 import { ModalUnit } from "./atlasViewer/modalUnit/modalUnit.component";
 import { AtlasViewerURLService } from "./atlasViewer/atlasViewer.urlService.service";
 import { ToastComponent } from "./components/toast/toast.component";
-import { GetFilenameFromPathnamePipe } from "./util/pipes/getFileNameFromPathName.pipe";
 import { AtlasViewerAPIServices } from "./atlasViewer/atlasViewer.apiService.service";
 import { PluginUnit } from "./atlasViewer/pluginUnit/pluginUnit.component";
 import { NewViewerDisctinctViewToLayer } from "./util/pipes/newViewerDistinctViewToLayer.pipe";
-import { ToastService } from "./services/toastService.service";
 import { AtlasWorkerService } from "./atlasViewer/atlasViewer.workerService.service";
-import { HelpDirective } from "./util/directives/help.directive";
-import { ToastContainerDirective } from "./util/directives/toastContainer.directive";
 import { DockedContainerDirective } from "./util/directives/dockedContainer.directive";
 import { FloatingContainerDirective } from "./util/directives/floatingContainer.directive";
 import { PluginFactoryDirective } from "./util/directives/pluginFactory.directive";
 import { FloatingMouseContextualContainerDirective } from "./util/directives/floatingMouseContextualContainer.directive";
 import { AuthService } from "./services/auth.service";
-import { ViewerConfiguration } from "./services/state/viewerConfig.store";
 import { FixedMouseContextualContainerDirective } from "./util/directives/FixedMouseContextualContainerDirective.directive";
 import { DatabrowserService } from "./ui/databrowserModule/databrowser.service";
 import { TransformOnhoverSegmentPipe } from "./atlasViewer/onhoverSegment.pipe";
-import { ZipFileDownloadService } from "./services/zipFileDownload.service";
 import {HttpClientModule} from "@angular/common/http";
 import { EffectsModule } from "@ngrx/effects";
 import { UseEffects } from "./services/effect/effect";
+import { DragDropDirective } from "./util/directives/dragDrop.directive";
+import { LocalFileService } from "./services/localFile.service";
+import { DataBrowserUseEffect } from "./ui/databrowserModule/databrowser.useEffect";
+import { DialogService } from "./services/dialogService.service";
+import { DialogComponent } from "./components/dialog/dialog.component";
+import { ViewerStateControllerUseEffect } from "./ui/viewerStateController/viewerState.useEffect";
+import { ConfirmDialogComponent } from "./components/confirmDialog/confirmDialog.component";
+import { ViewerStateUseEffect } from "./services/state/viewerState.store";
+import { NgViewerUseEffect } from "./services/state/ngViewerState.store";
+import { DatabrowserModule } from "./ui/databrowserModule/databrowser.module";
+import { UIService } from "./services/uiService.service";
+import { UtilModule } from "./util/util.module";
+
+import 'hammerjs'
+
+import 'src/res/css/version.css'
+import 'src/theme.scss'
+import 'src/res/css/extra_styles.css'
 
 @NgModule({
   imports : [
@@ -51,12 +63,19 @@ import { UseEffects } from "./services/effect/effect";
     ComponentsModule,
     DragDropModule,
     UIModule,
+    DatabrowserModule,
+    AngularMaterialModule,
+    UtilModule,
     
-    ModalModule.forRoot(),
     TooltipModule.forRoot(),
     TabsModule.forRoot(),
     EffectsModule.forRoot([
-      UseEffects
+      DataBrowserUseEffect,
+      UseEffects,
+      UserConfigStateUseEffect,
+      ViewerStateControllerUseEffect,
+      ViewerStateUseEffect,
+      NgViewerUseEffect
     ]),
     StoreModule.forRoot({
       pluginState,
@@ -66,6 +85,7 @@ import { UseEffects } from "./services/effect/effect";
       dataStore,
       spatialSearchState,
       uiState,
+      userConfigState
     }),
     HttpClientModule
   ],
@@ -83,19 +103,17 @@ import { UseEffects } from "./services/effect/effect";
     fasTooltipQuestionSignDirective,
     fasTooltipRemoveDirective,
     fasTooltipRemoveSignDirective,
-    HelpDirective,
-    ToastContainerDirective,
     DockedContainerDirective,
     FloatingContainerDirective,
     PluginFactoryDirective,
     FloatingMouseContextualContainerDirective,
     FixedMouseContextualContainerDirective,
+    DragDropDirective,
 
     /* pipes */
     GetNamesPipe,
     GetNamePipe,
     TransformOnhoverSegmentPipe,
-    GetFilenameFromPathnamePipe,
     NewViewerDisctinctViewToLayer
   ],
   entryComponents : [
@@ -103,16 +121,19 @@ import { UseEffects } from "./services/effect/effect";
     ModalUnit,
     ToastComponent,
     PluginUnit,
+    DialogComponent,
+    ConfirmDialogComponent,
   ],
   providers : [
     AtlasViewerDataService,
     WidgetServices,
     AtlasViewerURLService,
     AtlasViewerAPIServices,
-    ToastService,
     AtlasWorkerService,
     AuthService,
-    ZipFileDownloadService,
+    LocalFileService,
+    DialogService,
+    UIService,
     
     /**
      * TODO
@@ -129,7 +150,6 @@ export class MainModule{
   
   constructor(
     authServce: AuthService,
-    store: Store<ViewerConfiguration>,
 
     /**
      * instantiate singleton
@@ -139,11 +159,5 @@ export class MainModule{
     dbSerivce: DatabrowserService
   ){
     authServce.authReloadState()
-    store.pipe(
-      select('viewerConfigState')
-    ).subscribe(({ gpuLimit }) => {
-      if (gpuLimit)
-        window.localStorage.setItem('iv-gpulimit', gpuLimit.toString())
-    })
   }
-}
\ No newline at end of file
+}
diff --git a/src/main.ts b/src/main.ts
index 5eec78190f22de8b0a62e4d71eb812efc3a842ab..479dbb34491927cd7ed00952948534c70cdc698f 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -1,5 +1,8 @@
 import 'zone.js'
 import 'reflect-metadata'
+
+import 'third_party/testSafari.js'
+
 import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'
 import { MainModule } from './main.module';
 
diff --git a/src/plugin_examples/README.md b/src/plugin_examples/README.md
index 1549c0963fcea559271259fa0fd121187394e066..2b1b126b3a0166eb2a416a5493705d5be63acd5e 100644
--- a/src/plugin_examples/README.md
+++ b/src/plugin_examples/README.md
@@ -1,5 +1,5 @@
-Plugin README
-======
+# Plugin README
+
 A plugin needs to contain three files. 
 - Manifest JSON
 - template HTML
@@ -9,8 +9,9 @@ A plugin needs to contain three files.
 These files need to be served by GET requests over HTTP with appropriate CORS header. If your application requires a backend, it is strongly recommended to host these three files with your backend. 
 
 ---
-Manifest JSON
-------
+
+## Manifest JSON
+
 The manifest JSON file describes the metadata associated with the plugin. 
 
 ```json
@@ -34,8 +35,9 @@ The manifest JSON file describes the metadata associated with the plugin.
 - the `initState` object and `initStateUrl` will be available prior to the evaluation of `script.js`, and will populate the objects `interactiveViewer.pluginControl[MANIFEST.name].initState` and `interactiveViewer.pluginControl[MANIFEST.name].initStateUrl` respectively. 
 
 ---
-Template HTML
-------
+
+## Template HTML
+
 The template HTML file describes the HTML view that will be rendered in the widget.
 
 
@@ -74,14 +76,17 @@ The template HTML file describes the HTML view that will be rendered in the widg
   </div>
 </form>
 ```
+
 *NB*
 - *bootstrap 3.3.6* css is already included for templating.
 - keep in mind of the widget width restriction (400px) when crafting the template
 - whilst there are no vertical limits on the widget, contents can be rendered outside the viewport. Consider setting the *max-height* attribute.
 - your template and script will interact with each other likely via *element id*. As a result, it is highly recommended that unique id's are used. Please adhere to the convention: **AFFILIATION.AUTHOR.PACKAGENAME.ELEMENTID** 
+
 ---
-Script JS
-------
+
+## Script JS
+
 The script will always be appended **after** the rendering of the template. 
 
 ```javascript
diff --git a/src/plugin_examples/plugin_api.md b/src/plugin_examples/plugin_api.md
index 131e564e47fc8852553f0815d14ce8c23baca2aa..9ae6069b39e7aa6040fe3f65d83eeeb4a49b1048 100644
--- a/src/plugin_examples/plugin_api.md
+++ b/src/plugin_examples/plugin_api.md
@@ -15,7 +15,9 @@ window.interactiveViewer
 
   - *loadedTemplates* : Array of TemplateDescriptor objects. Loaded asynchronously onInit.
 
-  - *regionsLabelIndexMap* Map of labelIndex (used by neuroglancer and nehuba) to the corresponding RegionDescriptor object.
+  - **Deprecated** ~~*regionsLabelIndexMap* Map of labelIndex (used by neuroglancer and nehuba) to the corresponding RegionDescriptor object.~~
+
+  - *layersRegionLabelIndexMap* Map of layer name to Map of labelIndex (used by neuroglancer and nehuba) to the corresponding RegionDescriptor object.
 
 - viewerHandle
 
@@ -36,9 +38,13 @@ window.interactiveViewer
 
   - *hideAllSegments()* Function that hides all segments. Will trigger *selectRegionBSubject*
 
-  - *segmentColourMap* : Map of *labelIndex* to an object with the shape of `{red: number, green: number, blue: number}`.
+  - **Deprecated** ~~*segmentColourMap* : Map of *labelIndex* to an object with the shape of `{red: number, green: number, blue: number}`.~~
+
+  - *getLayersSegmentColourMap* : Call to get Map of layer name to Map of label index to colour map
+
+  - **Deprecated**  ~~*applyColourMap(colourMap)* Function that applies a custom colour map (Map of number to and object with the shape of `{red: number , green: number , blue: number}`)~~
 
-  - *applyColourMap(colourMap)* Function that applies a custom colour map (Map of number to and object with the shape of `{red: number , green: number , blue: number}`)
+  - *applyLayersColourMap* Function that applies a custom colour map.
 
   - *loadLayer(layerObject)* Function that loads *ManagedLayersWithSpecification* directly to neuroglancer. Returns the values of the object successfully added. **n.b.** advanced feature, will likely break other functionalities. **n.b.** if the layer name is already taken, the layer will not be added.
   
@@ -141,6 +147,24 @@ window.interactiveViewer
     - timeout : auto hide (in ms). set to 0 for not auto hide.
 
   - *launchNewWidget(manifest)* returns a Promise. expects a JSON object, with the same key value as a plugin manifest. the *name* key must be unique, or the promise will be rejected. 
+
+  - *getUserInput(config)* returns a Promise, resolves when user confirms, rejects when user cancels. expects config object object with the following structure:
+  ```javascript
+  const config = {
+    "title": "Title of the modal", // default: "Message"
+    "message":"Message to be seen by the user.", // default: ""
+    "placeholder": "Start typing here", // default: "Type your response here"
+    "defaultValue": "42" // default: ""
+    "iconClass":"fas fa-save" // default fas fa-save, set to falsy value to disable
+  }
+  ```
+  - *getUserConfirmation(config)* returns a Promise, resolves when user confirms, rejects when user cancels. expects config object object with the following structure:
+  ```javascript
+  const config = {
+    "title": "Title of the modal", // default: "Message"
+    "message":"Message to be seen by the user." // default: ""
+  }
+  ```
   
 - pluginControl
 
@@ -162,7 +186,8 @@ window.interactiveViewer
   - **[PLUGINNAME]** returns a plugin handler. This would be how to interface with the plugins.
 
     
-    - *blink(sec?:number)* : Function that causes the floating widget to blink, attempt to grab user attention (silently fails if called on startup).
+    - *blink()* : Function that causes the floating widget to blink, attempt to grab user attention (silently fails if called on startup).
+    - *setProgressIndicator(val:number|null)* : Set the progress of the plugin. Useful for giving user feedbacks on the progress of a long running process. Call the function with null to unset the progress.
     - *shutdown()* : Function that causes the widget to shutdown dynamically. (triggers onShutdown callback, silently fails if called on startup)
     - *onShutdown(callback)* : Attaches a callback function, which is called when the plugin is shutdown.
     - *initState* : passed from `manifest.json`. Useful for setting initial state of the plugin. Can be any JSON valid value (array, object, string).
diff --git a/src/plugin_examples/samplePlugin/manifest.json b/src/plugin_examples/samplePlugin/manifest.json
deleted file mode 100644
index 765339e14a65bceeb5e8fea2a4056ebfa868b894..0000000000000000000000000000000000000000
--- a/src/plugin_examples/samplePlugin/manifest.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
-  "name":"fzj.xg.samplePlugin",
-  "displayName":"Sample Plugin Display Name (Optional)",
-  "templateURL":"http://localhost:10080/samplePlugin/template.html",
-  "scriptURL":"http://localhost:10080/samplePlugin/script.js",
-  "initState":{
-    "hello": "world",
-    "foo": "bar"
-  },
-  "initStateUrl":"http://localhost:10080/samplePlugin/optionalInitStateJson.json"
-}
\ No newline at end of file
diff --git a/src/plugin_examples/samplePlugin/optionalInitStateJson.json b/src/plugin_examples/samplePlugin/optionalInitStateJson.json
deleted file mode 100644
index 8b478475478e55bd6855b11061661c5ed524b5c9..0000000000000000000000000000000000000000
--- a/src/plugin_examples/samplePlugin/optionalInitStateJson.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
-  "foo2": "bar2"
-}
\ No newline at end of file
diff --git a/src/plugin_examples/samplePlugin/script.js b/src/plugin_examples/samplePlugin/script.js
deleted file mode 100644
index 1dbd080572707585356a699dc4f76d7f944325aa..0000000000000000000000000000000000000000
--- a/src/plugin_examples/samplePlugin/script.js
+++ /dev/null
@@ -1,9 +0,0 @@
-/**
- * use IIEF to avoid scope poisoning
- */
-(() => {
-  const PLUGIN_NAME = 'fzj.xg.samplePlugin'
-  const initState = window.interactiveViewer.pluginControl[PLUGIN_NAME].initState
-  const initUrl = window.interactiveViewer.pluginControl[PLUGIN_NAME].initStateUrl
-  console.log(initState, initUrl)
-})()
\ No newline at end of file
diff --git a/src/plugin_examples/server.js b/src/plugin_examples/server.js
deleted file mode 100644
index 355a0d40287f3748f6100ef6995e8583f3c2d920..0000000000000000000000000000000000000000
--- a/src/plugin_examples/server.js
+++ /dev/null
@@ -1,44 +0,0 @@
-const express = require('express')
-const fs = require('fs')
-const path = require('path')
-
-const app = express()
-
-const cors = (req, res, next)=>{
-  res.setHeader('Access-Control-Allow-Origin','*')
-  next()
-}
-
-app.get('/allPluginManifests', cors, (req, res) => {
-  try{
-    res.status(200).send(JSON.stringify(
-      fs.readdirSync(__dirname)
-        .filter(file => fs.statSync(path.join(__dirname, file)).isDirectory())
-        .filter(dir => fs.existsSync(path.join(__dirname, dir, 'manifest.json')))
-        .map(dir => JSON.parse(fs.readFileSync(path.join(__dirname, dir, 'manifest.json'), 'utf-8')))
-    ))
-  }catch(e){
-    res.status(500).send(JSON.stringify(e))
-  }
-})
-
-app.get('/test.json', cors, (req, res) => {
-
-  console.log('test.json pinged')
-  res.status(200).send(JSON.stringify({
-    "name": "fzj.xg.mime",
-    "displayName":"Mime",
-    "type": "plugin",
-    "templateURL": "http://localhost:10080/mime/template.html",
-    "scriptURL": "http://localhost:10080/mime/script.js",
-    "initState" : {
-      "test" : "value"
-    }
-  }))
-})
-
-app.use(cors,express.static(__dirname))
-
-app.listen(10080, () => {
-  console.log(`listening on 10080, serving ${__dirname}`)
-})
\ No newline at end of file
diff --git a/src/res/css/extra_styles.css b/src/res/css/extra_styles.css
index 2269aed7e731b97f5f97020cce0911ca1df34ea0..2781c6cad4bac7c850d42f3e07cecb7d374d9f66 100644
--- a/src/res/css/extra_styles.css
+++ b/src/res/css/extra_styles.css
@@ -14,13 +14,22 @@ body
   /* required for fas tooltip directives */
   overflow:hidden;
 }
+
+.touch-bottom.touch-left > .scale-bar-container
+{
+  bottom: 0;
+  right: 0;
+  left: auto;
+}
+
 div.scale-bar-container
 {
   text-align: center;
   background-color: rgba(0,0,0,.3);
   position: absolute;
-  left: 1em;
-  bottom: 1em;
+  margin: 1em;
+  bottom: 0;
+  left: 0;
   padding: 2px;
   font-weight: 700;
   pointer-events: none;
@@ -84,9 +93,16 @@ div.scale-bar-container
   background-color:hsla(0,0%,80%,0.5);
 }
 
+.touch-top.touch-left > label.perspective-panel-show-slice-views
+{
+  bottom: 0;
+  right: 0;
+}
+
 label.perspective-panel-show-slice-views
 {
   visibility: hidden;
+  position: absolute;
 }
 
 label.perspective-panel-show-slice-views:hover
@@ -137,10 +153,14 @@ span.regionSelected
 span.regionNotSelected,
 span.regionSelected
 {
-  cursor : default;
   user-select: none;
 }
 
+.cursor-default
+{
+  cursor: default;
+}
+
 markdown-dom pre code
 {
   white-space:pre;
@@ -273,13 +293,33 @@ markdown-dom pre code
   transform: rotate(90deg)!important;
 }
 
+.r-270
+{
+  transform: rotate(270deg)!important;
+}
+
 .ws-no-wrap
 {
   white-space: nowrap!important;
 }
-.ws-initial
+
+.w-0
+{
+  width: 0!important;
+}
+
+.w-5em
+{
+  width: 5em!important;
+}
+.w-10em
+{
+  width: 10em!important;
+}
+
+.mw-400px
 {
-  white-space: initial!important;
+  max-width: 400px!important;
 }
 
 .mw-100
@@ -297,11 +337,36 @@ markdown-dom pre code
   max-width: 60%!important;
 }
 
+.mw-20em
+{
+  max-width: 20em!important;
+}
+
+.w-90
+{
+  width: 90%!important;
+}
+
+.w-20em
+{
+  width: 20em!important;
+}
+
+.w-40em
+{
+  width: 40em!important;
+}
+
 .mh-20em
 {
   max-height: 20em;
 }
 
+.max-h-10em
+{
+  max-height: 10em!important;
+}
+
 .pe-all
 {
   pointer-events: all;
@@ -322,14 +387,31 @@ markdown-dom pre code
   pointer-events: none;
 }
 
-.h-100
+.h-5em
 {
-  height:100%;
+  height: 5em!important;
+}
+
+.h-7em
+{
+  height:7em!important;
+}
+.h-10em
+{
+  height:10em!important;
+}
+.h-15em
+{
+  height:15em!important;
+}
+.h-20em
+{
+  height:20em!important;
 }
 
 .overflow-x-hidden
 {
-  overflow-x:hidden;
+  overflow-x:hidden!important;
 }
 
 .muted
@@ -337,7 +419,264 @@ markdown-dom pre code
   opacity : 0.5!important;
 }
 
-.text-semi-transparent
+.card
+{
+  background:none;
+  border:none;
+}
+
+.w-1em
+{
+  width: 1em;
+}
+
+.bs-content-box
+{
+  box-sizing: content-box;
+}
+
+/* required to hide  */
+.cdk-global-scrollblock
+{
+  overflow-y:hidden !important;
+}
+
+.overflow-y-auto
+{
+  overflow-y: auto!important;
+}
+
+.h-auto
+{
+  height: auto!important;
+}
+
+.h-90vh
+{
+  height: 90vh!important;
+}
+
+.w-50vw
+{
+  width: 50vw!important;
+}
+
+.left-0 
+{
+  left: 0!important;
+}
+
+.top-0 
+{
+  top: 0!important;
+}
+
+/* TODO fix hack */
+/* ngx boostrap default z index for modal-container is 1050, which is higher than material tooltip 1000 */
+/* when migration away from ngx bootstrap is complete, remove these classes */
+
+modal-container.modal
+{
+  z-index: 950;
+}
+
+bs-modal-backdrop.modal-backdrop
+{
+  z-index: 940;
+}
+
+
+.outline-none {
+    outline: none;
+}
+
+.cursorPointer {
+    cursor: pointer;
+}
+
+cdk-virtual-scroll-viewport:not(.cdk-virtual-scroll-orientation-horizontal) > .cdk-virtual-scroll-content-wrapper
+{
+  width: 100%;
+}
+
+.z-index-10
+{
+  z-index: 10!important;
+}
+
+.bg-none
+{
+  background:none!important;
+}
+
+.dot
+{
+  width: 0.5rem;
+  height: 0.5rem;
+  display: inline-block;
+  border-radius: 50%;
+}
+
+/* temp */
+/* https://github.com/angular/components/issues/4591#issuecomment-305046461 */
+.mat-tab-body-wrapper
+{
+  flex-grow:1;
+}
+
+.transform-origin-left-center
+{
+  transform-origin: 0% 50%;
+}
+
+.transform-origin-center
+{
+  transform-origin: 50% 50%;
+}
+
+.box-shadow-none
+{
+  box-shadow: none!important;
+}
+
+.translate-x-2
+{
+  transform: translateX(1em);
+}
+
+.translate-x-3
+{
+  transform: translateX(1.5em);
+}
+
+.translate-x-4
+{
+  transform: translateX(2em);
+}
+
+.translate-x-6
+{
+  transform: translateX(3em);
+}
+
+.translate-x-4-n
+{
+  transform: translateX(-2em);
+}
+
+.translate-x-6-n
+{
+  transform: translateX(-3em);
+}
+
+.translate-x-7-n
+{
+  transform: translateX(-3.5em);
+}
+
+.translate-x-8-n
+{
+  transform: translateX(-4em);
+}
+
+/* this is required to physically link label with side bar */
+.mat-drawer-content-overflow-visible > mat-drawer-content,
+/* this is required to show the popout info of template and parcellation */
+.mat-drawer-content-overflow-visible > mat-drawer > .mat-drawer-inner-container
+{
+  overflow: visible!important;
+}
+
+.overflow-visible
+{
+  overflow: visible!important;
+}
+
+mat-icon[fontset="fas"],
+mat-icon[fontset="far"]
+{
+  display: inline-flex;
+  justify-content: center;
+  align-items: center;
+}
+
+/* overwrite bootstrap adding underline to anchor on hover */
+.no-hover:hover
+{
+  text-decoration: none!important;
+}
+
+.no-focus:focus
+{
+  outline: none!important;
+}
+
+.no-max-width
+{
+  max-width: none!important;
+}
+
+.min-h-2
+{
+  min-height: 1rem;
+}
+
+.min-h-4
+{
+  min-height: 2rem;
+}
+
+.min-h-8
+{
+  min-height: 4rem;
+}
+
+.w-30vw
+{
+  width: 30vw!important;
+}
+
+.h-30vw
+{
+  height: 30vw!important;
+}
+
+/* overwrite bootstrap default focus styling */
+*:focus
+{
+  outline: none!important;
+}
+
+body::after
+{
+  content: '';
+  position: fixed;
+  bottom: 1rem;
+  right: 2rem;
+  font-size: 200%;
+  color: rgba(128, 128, 128, 0.5);
+  pointer-events: none;
+  z-index: 99999;
+}
+
+.flex-grow-3
+{
+  flex-grow: 3!important;
+}
+
+.flex-grow-5
+{
+  flex-grow: 5!important;
+}
+
+.layerBrowserContainer
+{
+  margin:-1em!important;
+}
+
+.layerBrowserContainer .mat-dialog-container
 {
-  opacity: 0.5;
+  padding: 0!important;
+  overflow: hidden;
+  margin-top: 0.25rem;
 }
\ No newline at end of file
diff --git a/src/res/css/plugin_styles.css b/src/res/css/plugin_styles.css
index 6293983f2091641ec1659c85ffab9049101a2679..dea00063b288c84bc44229f447abd358aaf82552 100644
--- a/src/res/css/plugin_styles.css
+++ b/src/res/css/plugin_styles.css
@@ -66,4 +66,4 @@
   color: #f2dede;
   background-color: rgba(169, 68, 66, 0.5);
   border-color: rgba(169, 68, 66,0.2)
-}
\ No newline at end of file
+}
diff --git a/src/res/css/version.css b/src/res/css/version.css
new file mode 100644
index 0000000000000000000000000000000000000000..8c34cd43715e530a36a9b163615d09d0350eee35
--- /dev/null
+++ b/src/res/css/version.css
@@ -0,0 +1,5 @@
+/* fall back */
+body::after
+{
+  content: 'dev build';
+}
\ No newline at end of file
diff --git a/src/res/ext/MNI152.json b/src/res/ext/MNI152.json
index dacb04cc740e2375cc97678b2e4f514ce7bbdd33..e4765a39c94303d0399d731f5dd3e2eeec4f900c 100644
--- a/src/res/ext/MNI152.json
+++ b/src/res/ext/MNI152.json
@@ -848,6 +848,9 @@
                           "status": "publicP",
                           "labelIndex": null,
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area 7A"
+                          ],
                           "rgb": [
                             38,
                             204,
@@ -1188,6 +1191,9 @@
                           "status": "publicP",
                           "labelIndex": null,
                           "synonyms": [],
+                          "relatedAreas": [
+                            "Area 3b"
+                          ],
                           "rgb": [
                             239,
                             246,
@@ -1335,6 +1341,9 @@
                           "status": "publicP",
                           "labelIndex": null,
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area PFm"
+                          ],
                           "rgb": [
                             53,
                             76,
@@ -1381,6 +1390,9 @@
                           "status": "publicP",
                           "labelIndex": null,
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area PFop"
+                          ],
                           "rgb": [
                             146,
                             153,
@@ -1427,6 +1439,9 @@
                           "status": "publicP",
                           "labelIndex": null,
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area PF"
+                          ],
                           "rgb": [
                             226,
                             211,
@@ -1473,6 +1488,9 @@
                           "status": "publicP",
                           "labelIndex": null,
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area PGp"
+                          ],
                           "rgb": [
                             92,
                             116,
@@ -1519,6 +1537,9 @@
                           "status": "publicP",
                           "labelIndex": null,
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area PGa"
+                          ],
                           "rgb": [
                             42,
                             236,
@@ -1565,6 +1586,9 @@
                           "status": "publicP",
                           "labelIndex": null,
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area PFt"
+                          ],
                           "rgb": [
                             120,
                             135,
@@ -1611,6 +1635,9 @@
                           "status": "publicP",
                           "labelIndex": null,
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area PFcm"
+                          ],
                           "rgb": [
                             98,
                             128,
@@ -2401,6 +2428,9 @@
                           "status": "publicP",
                           "labelIndex": null,
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area hOc1"
+                          ],
                           "rgb": [
                             190,
                             132,
@@ -2837,6 +2867,10 @@
                           "status": "publicP",
                           "labelIndex": null,
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area 44v",
+                            "Area 44d"
+                          ],
                           "rgb": [
                             54,
                             74,
@@ -2883,6 +2917,9 @@
                           "status": "publicP",
                           "labelIndex": null,
                           "synonyms": [],
+                          "relatedAreas": [
+                            "Area 45"
+                          ],
                           "rgb": [
                             167,
                             103,
@@ -3250,6 +3287,9 @@
                           "status": "publicP",
                           "labelIndex": null,
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area 4p"
+                          ],
                           "rgb": [
                             116,
                             92,
@@ -4517,6 +4557,9 @@
                           "status": "publicP",
                           "labelIndex": null,
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area Te1"
+                          ],
                           "rgb": [
                             252,
                             84,
@@ -4572,6 +4615,9 @@
                           "status": "publicP",
                           "labelIndex": null,
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area FG1"
+                          ],
                           "rgb": [
                             131,
                             183,
@@ -4710,6 +4756,9 @@
                           "status": "publicP",
                           "labelIndex": null,
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area FG2"
+                          ],
                           "rgb": [
                             67,
                             94,
@@ -5634,70 +5683,113 @@
     },
     {
       "ngId": "fibre bundle long",
+      "auxillaryMeshIndices": [ 65535 ],
       "type": "parcellation",
       "surfaceParcellation": true,
       "ngData": null,
       "name": "Fibre Bundle Atlas - Long Bundle",
+      "originDatasets":[{
+        "kgSchema": "minds/core/dataset/v1.0.0",
+        "kgId": "fcbb049b-edd5-4fb5-acbc-7bf8ee933e24"
+      }],
+      "properties": {
+      },
       "regions": [
         {
           "name": "Arcuate - Left",
           "children": [],
-          "labelIndex": "1"
+          "labelIndex": "1",
+          "relatedAreas": [
+            "Direct segment of the left arcuate fasciculus"
+          ]
         },
         {
           "name": "Arcuate - Right",
           "children": [],
-          "labelIndex": "31"
+          "labelIndex": "31",
+          "relatedAreas": [
+            "Direct segment of the right arcuate fasciculus"
+          ]
         },
         {
           "name": "Arcuate_Anterior - Left",
           "children": [],
-          "labelIndex": "2"
+          "labelIndex": "2",
+          "relatedAreas": [
+            "Anterior segment of the left arcuate fasciculus"
+          ]
         },
         {
           "name": "Arcuate_Anterior - Right",
           "children": [],
-          "labelIndex": "32"
+          "labelIndex": "32",
+          "relatedAreas": [
+            "Anterior segment of the right arcuate fasciculus"
+          ]
         },
         {
           "name": "Arcuate_Posterior - Left",
           "children": [],
-          "labelIndex": "3"
+          "labelIndex": "3",
+          "relatedAreas": [
+            "Posterior segment of the left arcuate fasciculus"
+          ]
         },
         {
           "name": "Arcuate_Posterior - Right",
           "children": [],
-          "labelIndex": "33"
+          "labelIndex": "33",
+          "relatedAreas": [
+            "Posterior segment of the right arcuate fasciculus"
+          ]
         },
         {
           "name": "Cingulum_Long - Left",
           "children": [],
-          "labelIndex": "4"
+          "labelIndex": "4",
+          "relatedAreas": [
+            "Left long cingulate fibres"
+          ]
         },
         {
           "name": "Cingulum_Long - Right",
           "children": [],
-          "labelIndex": "34"
+          "labelIndex": "34",
+          "relatedAreas": [
+            "Right long cingulate fibres"
+          ]
         },
         {
           "name": "Cingulum_Short - Left",
           "children": [],
-          "labelIndex": "5"
+          "labelIndex": "5",
+          "relatedAreas": [
+            "Left short cingulate fibres"
+          ]
         },
         {
           "name": "Cingulum_Short - Right",
           "children": [],
-          "labelIndex": "35"
+          "labelIndex": "35",
+          "relatedAreas": [
+            "Right short cingulate fibres"
+          ]
         },
         {
           "name": "Cingulum_Temporal - Left",
           "children": [],
-          "labelIndex": "6"
+          "labelIndex": "6",
+          "relatedAreas": [
+            "Left temporal cingulate fibres"
+          ]
         },
         {
           "name": "Cingulum_Temporal - Right",
           "children": [],
-          "labelIndex": "36"
+          "labelIndex": "36",
+          "relatedAreas": [
+            "Right temporal cingulate fibres"
+          ]
         },
         {
           "name": "CorpusCallosum_Body",
@@ -5722,12 +5814,18 @@
         {
           "name": "CorticoSpinalTract - Left",
           "children": [],
-          "labelIndex": "11"
+          "labelIndex": "11",
+          "relatedAreas": [
+            "Left corticospinal tract"
+          ]
         },
         {
           "name": "CorticoSpinalTract - Right",
           "children": [],
-          "labelIndex": "41"
+          "labelIndex": "41",
+          "relatedAreas": [
+            "Right corticospinal tract"
+          ]
         },
         {
           "name": "ExternalCapsule - Left",
@@ -5742,32 +5840,50 @@
         {
           "name": "Fornix - Left",
           "children": [],
-          "labelIndex": "13"
+          "labelIndex": "13",
+          "relatedAreas": [
+            "Left fornix"
+          ]
         },
         {
           "name": "Fornix - Right",
           "children": [],
-          "labelIndex": "43"
+          "labelIndex": "43",
+          "relatedAreas": [
+            "Right fornix"
+          ]
         },
         {
           "name": "InferiorFrontoOccipital - Left",
           "children": [],
-          "labelIndex": "14"
+          "labelIndex": "14",
+          "relatedAreas": [
+            "Left inferior fronto-occipital fasciculus"
+          ]
         },
         {
           "name": "InferiorFrontoOccipital - Right",
           "children": [],
-          "labelIndex": "44"
+          "labelIndex": "44",
+          "relatedAreas": [
+            "Right inferior fronto-occipital fasciculus"
+          ]
         },
         {
           "name": "InferiorLongitudinal - Left",
           "children": [],
-          "labelIndex": "15"
+          "labelIndex": "15",
+          "relatedAreas": [
+            "Left inferior longitudinal fasciculus"
+          ]
         },
         {
           "name": "InferiorLongitudinal - Right",
           "children": [],
-          "labelIndex": "45"
+          "labelIndex": "45",
+          "relatedAreas": [
+            "Right inferior longitudinal fasciculus"
+          ]
         },
         {
           "name": "InferiorLongitudinal_Lateral - Left",
@@ -5822,21 +5938,32 @@
         {
           "name": "Uncinate - Left",
           "children": [],
-          "labelIndex": "21"
+          "labelIndex": "21",
+          "relatedAreas": [
+            "Left uncinate fasciculus"
+          ]
         },
         {
           "name": "Uncinate - Right",
           "children": [],
-          "labelIndex": "51"
+          "labelIndex": "51",
+          "relatedAreas": [
+            "Right uncinate fasciculus"
+          ]
         }
       ]
     },
     {
       "ngId": "fibre bundle short",
+      "auxillaryMeshIndices": [ 65535 ],
       "type": "parcellation",
       "surfaceParcellation": true,
       "ngData": null,
       "name": "Fibre Bundle Atlas - Short Bundle",
+      "originDatasets":[{
+        "kgSchema": "minds/core/dataset/v1.0.0",
+        "kgId": "f58e4425-6614-4ad9-ac26-5e946b1296cb"
+      }],
       "regions": [
         {
           "name": "Left Hemisphere",
@@ -6867,7 +6994,7 @@
     }
   ],
   "properties": {
-    "name": "MNI 152",
-    "description": "Description of MNI152 (Probably also be more specific on which MNI152)"
+    "name": "ICBM 2009c Nonlinear Asymmetric",
+    "description": "An unbiased non-linear average of multiple subjects from the MNI152 database, which provides high-spatial resolution and signal-to-noise while not being biased towards a single brain (Fonov et al., 2011). This template space is widely used as a reference space in neuroimaging. HBP provides the JuBrain probabilistic cytoarchitectonic atlas (Amunts/Zilles, 2015) as well as a probabilistic atlas of large fibre bundles (Guevara, Mangin et al., 2017) in this space."
   }
-}
\ No newline at end of file
+}
diff --git a/src/res/ext/allenAggregated.json b/src/res/ext/allenAggregated.json
index 8e04c3304331c484a701351bdf5ecb6a2b382845..afd09a91f93a1b60fb012dff547a82d85af3eb94 100644
--- a/src/res/ext/allenAggregated.json
+++ b/src/res/ext/allenAggregated.json
@@ -1 +1 @@
-[{"kgID":"Dataset/57f6354117bbee6d961f8e36d6360c77","name":"Spontaneous inhibitory post-synaptic currents recorded from CA1 pyramidal neurons of adult wild type Tg2576 mice","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Field CA1","relationship":"equals"}],"files":[{"filename":"Spontaneous inhibitory post-synaptic currents recorded from CA1 pyramidal neurons of adult wild type Tg2576 mice","name":"Spontaneous inhibitory post-synaptic currents recorded from CA1 pyramidal neurons of adult wild type Tg2576 mice","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/4e3d82a38ec816d970dff814c9fd2689","name":"Cell density and distribution in the somatosensory cortex of the mouse brain","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Primary somatosensory area, lower limb","relationship":"equals"},{"regionName":"Primary motor area","relationship":"equals"}],"files":[{"filename":"Cell density and distribution in the somatosensory cortex of the mouse brain","name":"Cell density and distribution in the somatosensory cortex of the mouse brain","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/a3fd14501d8a5c2ffcaee445ac6f8a5e","name":"3D reconstruction of the vascular system of the mouse brain.","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Cerebral cortex","relationship":"equals"}],"files":[{"filename":"3D reconstruction of the vascular system of the mouse brain.","name":"3D reconstruction of the vascular system of the mouse brain.","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/7877f8d8dd316f5c89f8438c0a337300","name":"sIPSCs from juvenile (P21-30) C57Bl6/J male mice from CA1 pyramidal neurons receiving input from PV+ interneurons","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Field CA1","relationship":"equals"}],"files":[{"filename":"sIPSCs from juvenile (P21-30) C57Bl6\\/J male mice from CA1 pyramidal neurons receiving input from PV+ interneurons","name":"sIPSCs from juvenile (P21-30) C57Bl6/J male mice from CA1 pyramidal neurons receiving input from PV+ interneurons","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/8fb1a664ca3390bae960cc1aa11f5827","name":"Hippocampal image volume derived from Thy1-GFP-M transgenic mouse","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[],"files":[{"filename":"Hippocampal image volume derived from Thy1-GFP-M transgenic mouse","name":"Hippocampal image volume derived from Thy1-GFP-M transgenic mouse","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/63bbb845ac6d2f1839f919c2ef0455bc","name":"Brain-wide distribution of glutamate type 1 transporter protein (GLT1)","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[],"files":[{"filename":"Brain-wide distribution of glutamate type 1 transporter protein (GLT1)","name":"Brain-wide distribution of glutamate type 1 transporter protein (GLT1)","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/9c81f671e115a4057bc89be975076254","name":"Spike time dependent plasticity (STDP) data from neonate neuroligin-3 knock-out mice, positive pairing","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Hippocampal region","relationship":"equals"}],"files":[{"filename":"Spike time dependent plasticity (STDP) data from neonate neuroligin-3 knock-out mice, positive pairing","name":"Spike time dependent plasticity (STDP) data from neonate neuroligin-3 knock-out mice, positive pairing","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/e15e4048955ed04112d2652d5a8ce587","name":"Brain-wide distribution of Ca2+/calmodulin-dependent protein kinase II promoter expression in transgenic tetracycline-transactivator mouse lines","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[],"files":[{"filename":"Brain-wide distribution of Ca2+/calmodulin-dependent protein kinase II promoter expression in transgenic tetracycline-transactivator mouse lines","name":"Brain-wide distribution of Ca2+/calmodulin-dependent protein kinase II promoter expression in transgenic tetracycline-transactivator mouse lines","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/5e245cf67a42a14a56bc43913f7bf28a","name":"Recordings of cerebellar neuronal firing induced by currents steps","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Vermal regions","relationship":"equals"}],"files":[{"filename":"Recordings of cerebellar neuronal firing induced by currents steps","name":"Recordings of cerebellar neuronal firing induced by currents steps","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/40a8ed8caae4989506d69fd290b67a90","name":"Recordings of cerebellar granule cells current-voltage relations","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Vermal regions","relationship":"equals"}],"files":[{"filename":"Recordings of cerebellar granule cells current-voltage relations","name":"Recordings of cerebellar granule cells current-voltage relations","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/a1ba394b5f353a67f9cec3549891d77b","name":"Recordings of excitatory postsynaptic currents from cerebellar neurons","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Vermal regions","relationship":"equals"}],"files":[{"filename":"Recordings of excitatory postsynaptic currents from cerebellar neurons","name":"Recordings of excitatory postsynaptic currents from cerebellar neurons","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/077778de710a9192795869a8885525ac","name":"Recordings of passive cellular parameters of cerebellar neurons","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Vermal regions","relationship":"equals"}],"files":[{"filename":"Recordings of passive cellular parameters of cerebellar neurons","name":"Recordings of passive cellular parameters of cerebellar neurons","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/679c1e4beb7b5f8d7097f1835480a76f","name":"Action potential dependent sIPSCs - from juvenile (P21-30) C57Bl6/J male mice","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Field CA1","relationship":"equals"}],"files":[{"filename":"Action potential dependent sIPSCs - from juvenile (P21-30) C57Bl6\\/J male mice","name":"Action potential dependent sIPSCs - from juvenile (P21-30) C57Bl6/J male mice","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/9f11bd320876be5d037164ce696a384f","name":"Cortical recordings of the Fmr1KO mouse model of Fragile X syndrome during slow wave activity","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Prelimbic area","relationship":"equals"},{"regionName":"Primary motor area","relationship":"equals"},{"regionName":"Primary somatosensory area","relationship":"equals"},{"regionName":"Anteromedial visual area","relationship":"equals"}],"files":[{"filename":"Cortical recordings of the Fmr1KO mouse model of Fragile X syndrome during slow wave activity","name":"Cortical recordings of the Fmr1KO mouse model of Fragile X syndrome during slow wave activity","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/0715fc5d4958b0b73891cae874c37b29","name":"Brain-wide distribution of prion protein promoter expression in transgenic tetracycline-transactivator mouse lines","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[],"files":[{"filename":"Brain-wide distribution of prion protein promoter expression in transgenic tetracycline-transactivator mouse lines","name":"Brain-wide distribution of prion protein promoter expression in transgenic tetracycline-transactivator mouse lines","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/7e972a9c1c1fc2bb493d09512f6550d5","name":"Brainwide distribution and variance of amyloid-beta deposits in tg-ArcSwe mice","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[],"files":[{"filename":"Brainwide distribution and variance of amyloid-beta deposits in tg-ArcSwe mice","name":"Brainwide distribution and variance of amyloid-beta deposits in tg-ArcSwe mice","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/3348338582a8e3e112b4ae66485404b1","name":"Spike time dependent plasticity (STDP) data from adult neuroligin-3 knock-in mice, positive pairing","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Hippocampal region","relationship":"equals"}],"files":[{"filename":"Spike time dependent plasticity (STDP) data from adult neuroligin-3 knock-in mice, positive pairing","name":"Spike time dependent plasticity (STDP) data from adult neuroligin-3 knock-in mice, positive pairing","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/1a6cbd0b55a13e7b8775d3417281a83f","name":"Spike time dependent plasticity (STDP) data from neonate neuroligin-3 knock-in mice, positive pairing","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Hippocampal region","relationship":"equals"}],"files":[{"filename":"Spike time dependent plasticity (STDP) data from neonate neuroligin-3 knock-in mice, positive pairing","name":"Spike time dependent plasticity (STDP) data from neonate neuroligin-3 knock-in mice, positive pairing","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/2ea6f32e8dfd644d426b93aac0ae6eec","name":"Recordings of excitatory postsynaptic potentials from cerebellar neurons","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Vermal regions","relationship":"equals"}],"files":[{"filename":"Recordings of excitatory postsynaptic potentials from cerebellar neurons","name":"Recordings of excitatory postsynaptic potentials from cerebellar neurons","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/4197a2f5d71432349fb37ff3ad429580","name":"Recordings of spontaneous firing of cerebellar interneurons (Golgi cells)","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Vermal regions","relationship":"equals"}],"files":[{"filename":"Recordings of spontaneous firing of cerebellar interneurons (Golgi cells)","name":"Recordings of spontaneous firing of cerebellar interneurons (Golgi cells)","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/f54488f5b45bd42cb950678572bd3b15","name":"Spike time dependent plasticity (STDP) data from neonate C57BL/6 (wild-type) mice, negative pairing","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Hippocampal region","relationship":"equals"}],"files":[{"filename":"Spike time dependent plasticity (STDP) data from neonate C57BL/6 (wild-type) mice, negative pairing","name":"Spike time dependent plasticity (STDP) data from neonate C57BL/6 (wild-type) mice, negative pairing","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/632636291a6ff5cb30c55821abaa55c4","name":"3D imaging of the vascular system of the mouse brain.","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Cerebral cortex","relationship":"equals"}],"files":[{"filename":"3D imaging of the vascular system of the mouse brain.","name":"3D imaging of the vascular system of the mouse brain.","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/6a5980f16d1b3fd1422db723f9e2c6dc","name":"Arc expression in resting state","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[],"files":[{"filename":"Arc expression in resting state","name":"Arc expression in resting state","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/0d89723452a334fd8e7fbd040ba79376","name":"Purkinje cell distribution in mouse cerebellum","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[],"files":[{"filename":"Purkinje cell distribution in mouse cerebellum","name":"Purkinje cell distribution in mouse cerebellum","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/b8007a80fc0dccd56797473b45429787","name":"Spontaneous inhibitory post-synaptic currents recorded from CA1 pyramidal neurons of adult wild type B6/SJL mice","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Field CA1","relationship":"equals"}],"files":[{"filename":"Spontaneous inhibitory post-synaptic currents recorded from CA1 pyramidal neurons of adult wild type B6\\/SJL mice","name":"Spontaneous inhibitory post-synaptic currents recorded from CA1 pyramidal neurons of adult wild type B6/SJL mice","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/f740e7bb4e7a93647e3a9da50d6d965b","name":"Parvalbumin interneruron distribution in the mouse brain","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[],"files":[{"filename":"Parvalbumin interneruron distribution in the mouse brain","name":"Parvalbumin interneruron distribution in the mouse brain","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/ce6bc6d713c2a26485b0690e1f627972","name":"Spike time dependent plasticity (STDP) data from neonate C57BL/6 (wild-type) mice, positive pairing","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Hippocampal region","relationship":"equals"}],"files":[{"filename":"Spike time dependent plasticity (STDP) data from neonate C57BL/6 (wild-type) mice, positive pairing","name":"Spike time dependent plasticity (STDP) data from neonate C57BL/6 (wild-type) mice, positive pairing","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/fb1dab2cc153f8de099996172ea4d8b8","name":"sIPSCs from juvenile (P21-30) C57B16/J male mice from hippocampal CA1 pyramidal neurons receiving input from PV+ and CCK+ interneurons","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Field CA1","relationship":"equals"}],"files":[{"filename":"sIPSCs from juvenile (P21-30) C57B16\\/J male mice from hippocampal CA1 pyramidal neurons receiving input from PV+ and CCK+ interneurons","name":"sIPSCs from juvenile (P21-30) C57B16/J male mice from hippocampal CA1 pyramidal neurons receiving input from PV+ and CCK+ interneurons","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/48cffa543d49f446f0187902734dd631","name":"Brain-wide distribution of neuropsin promoter expression in transgenic tetracycline-transactivator mouse lines","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[],"files":[{"filename":"Brain-wide distribution of neuropsin promoter expression in transgenic tetracycline-transactivator mouse lines","name":"Brain-wide distribution of neuropsin promoter expression in transgenic tetracycline-transactivator mouse lines","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}},{"kgID":"Dataset/c021f1e3c97bc761711fad76abf7d468","name":"Spike time dependent plasticity (STDP) data from adult C57BL/6 (wild-type) mice, positive pairing","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Hippocampal region","relationship":"equals"}],"files":[{"filename":"Spike time dependent plasticity (STDP) data from adult C57BL/6 (wild-type) mice, positive pairing","name":"Spike time dependent plasticity (STDP) data from adult C57BL/6 (wild-type) mice, positive pairing","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","properties":{}}]
\ No newline at end of file
+[{"kgID":"Dataset/57f6354117bbee6d961f8e36d6360c77","name":"Spontaneous inhibitory post-synaptic currents recorded from CA1 pyramidal neurons of adult wild type Tg2576 mice","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Field CA1","relationship":"equals"}],"files":[{"filename":"Spontaneous inhibitory post-synaptic currents recorded from CA1 pyramidal neurons of adult wild type Tg2576 mice","name":"Spontaneous inhibitory post-synaptic currents recorded from CA1 pyramidal neurons of adult wild type Tg2576 mice","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/4e3d82a38ec816d970dff814c9fd2689","name":"Cell density and distribution in the somatosensory cortex of the mouse brain","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Primary somatosensory area, lower limb","relationship":"equals"},{"regionName":"Primary motor area","relationship":"equals"}],"files":[{"filename":"Cell density and distribution in the somatosensory cortex of the mouse brain","name":"Cell density and distribution in the somatosensory cortex of the mouse brain","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/a3fd14501d8a5c2ffcaee445ac6f8a5e","name":"3D reconstruction of the vascular system of the mouse brain.","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Cerebral cortex","relationship":"equals"}],"files":[{"filename":"3D reconstruction of the vascular system of the mouse brain.","name":"3D reconstruction of the vascular system of the mouse brain.","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/7877f8d8dd316f5c89f8438c0a337300","name":"sIPSCs from juvenile (P21-30) C57Bl6/J male mice from CA1 pyramidal neurons receiving input from PV+ interneurons","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Field CA1","relationship":"equals"}],"files":[{"filename":"sIPSCs from juvenile (P21-30) C57Bl6\\/J male mice from CA1 pyramidal neurons receiving input from PV+ interneurons","name":"sIPSCs from juvenile (P21-30) C57Bl6/J male mice from CA1 pyramidal neurons receiving input from PV+ interneurons","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/8fb1a664ca3390bae960cc1aa11f5827","name":"Hippocampal image volume derived from Thy1-GFP-M transgenic mouse","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[],"files":[{"filename":"Hippocampal image volume derived from Thy1-GFP-M transgenic mouse","name":"Hippocampal image volume derived from Thy1-GFP-M transgenic mouse","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/63bbb845ac6d2f1839f919c2ef0455bc","name":"Brain-wide distribution of glutamate type 1 transporter protein (GLT1)","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[],"files":[{"filename":"Brain-wide distribution of glutamate type 1 transporter protein (GLT1)","name":"Brain-wide distribution of glutamate type 1 transporter protein (GLT1)","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/9c81f671e115a4057bc89be975076254","name":"Spike time dependent plasticity (STDP) data from neonate neuroligin-3 knock-out mice, positive pairing","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Hippocampal region","relationship":"equals"}],"files":[{"filename":"Spike time dependent plasticity (STDP) data from neonate neuroligin-3 knock-out mice, positive pairing","name":"Spike time dependent plasticity (STDP) data from neonate neuroligin-3 knock-out mice, positive pairing","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/e15e4048955ed04112d2652d5a8ce587","name":"Brain-wide distribution of Ca2+/calmodulin-dependent protein kinase II promoter expression in transgenic tetracycline-transactivator mouse lines","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[],"files":[{"filename":"Brain-wide distribution of Ca2+/calmodulin-dependent protein kinase II promoter expression in transgenic tetracycline-transactivator mouse lines","name":"Brain-wide distribution of Ca2+/calmodulin-dependent protein kinase II promoter expression in transgenic tetracycline-transactivator mouse lines","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/5e245cf67a42a14a56bc43913f7bf28a","name":"Recordings of cerebellar neuronal firing induced by currents steps","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Vermal regions","relationship":"equals"}],"files":[{"filename":"Recordings of cerebellar neuronal firing induced by currents steps","name":"Recordings of cerebellar neuronal firing induced by currents steps","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/40a8ed8caae4989506d69fd290b67a90","name":"Recordings of cerebellar granule cells current-voltage relations","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Vermal regions","relationship":"equals"}],"files":[{"filename":"Recordings of cerebellar granule cells current-voltage relations","name":"Recordings of cerebellar granule cells current-voltage relations","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/a1ba394b5f353a67f9cec3549891d77b","name":"Recordings of excitatory postsynaptic currents from cerebellar neurons","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Vermal regions","relationship":"equals"}],"files":[{"filename":"Recordings of excitatory postsynaptic currents from cerebellar neurons","name":"Recordings of excitatory postsynaptic currents from cerebellar neurons","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/077778de710a9192795869a8885525ac","name":"Recordings of passive cellular parameters of cerebellar neurons","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Vermal regions","relationship":"equals"}],"files":[{"filename":"Recordings of passive cellular parameters of cerebellar neurons","name":"Recordings of passive cellular parameters of cerebellar neurons","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/679c1e4beb7b5f8d7097f1835480a76f","name":"Action potential dependent sIPSCs - from juvenile (P21-30) C57Bl6/J male mice","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Field CA1","relationship":"equals"}],"files":[{"filename":"Action potential dependent sIPSCs - from juvenile (P21-30) C57Bl6\\/J male mice","name":"Action potential dependent sIPSCs - from juvenile (P21-30) C57Bl6/J male mice","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/9f11bd320876be5d037164ce696a384f","name":"Cortical recordings of the Fmr1KO mouse model of Fragile X syndrome during slow wave activity","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Prelimbic area","relationship":"equals"},{"regionName":"Primary motor area","relationship":"equals"},{"regionName":"Primary somatosensory area","relationship":"equals"},{"regionName":"Anteromedial visual area","relationship":"equals"}],"files":[{"filename":"Cortical recordings of the Fmr1KO mouse model of Fragile X syndrome during slow wave activity","name":"Cortical recordings of the Fmr1KO mouse model of Fragile X syndrome during slow wave activity","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/0715fc5d4958b0b73891cae874c37b29","name":"Brain-wide distribution of prion protein promoter expression in transgenic tetracycline-transactivator mouse lines","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[],"files":[{"filename":"Brain-wide distribution of prion protein promoter expression in transgenic tetracycline-transactivator mouse lines","name":"Brain-wide distribution of prion protein promoter expression in transgenic tetracycline-transactivator mouse lines","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/7e972a9c1c1fc2bb493d09512f6550d5","name":"Brainwide distribution and variance of amyloid-beta deposits in tg-ArcSwe mice","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[],"files":[{"filename":"Brainwide distribution and variance of amyloid-beta deposits in tg-ArcSwe mice","name":"Brainwide distribution and variance of amyloid-beta deposits in tg-ArcSwe mice","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/3348338582a8e3e112b4ae66485404b1","name":"Spike time dependent plasticity (STDP) data from adult neuroligin-3 knock-in mice, positive pairing","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Hippocampal region","relationship":"equals"}],"files":[{"filename":"Spike time dependent plasticity (STDP) data from adult neuroligin-3 knock-in mice, positive pairing","name":"Spike time dependent plasticity (STDP) data from adult neuroligin-3 knock-in mice, positive pairing","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/1a6cbd0b55a13e7b8775d3417281a83f","name":"Spike time dependent plasticity (STDP) data from neonate neuroligin-3 knock-in mice, positive pairing","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Hippocampal region","relationship":"equals"}],"files":[{"filename":"Spike time dependent plasticity (STDP) data from neonate neuroligin-3 knock-in mice, positive pairing","name":"Spike time dependent plasticity (STDP) data from neonate neuroligin-3 knock-in mice, positive pairing","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/2ea6f32e8dfd644d426b93aac0ae6eec","name":"Recordings of excitatory postsynaptic potentials from cerebellar neurons","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Vermal regions","relationship":"equals"}],"files":[{"filename":"Recordings of excitatory postsynaptic potentials from cerebellar neurons","name":"Recordings of excitatory postsynaptic potentials from cerebellar neurons","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/4197a2f5d71432349fb37ff3ad429580","name":"Recordings of spontaneous firing of cerebellar interneurons (Golgi cells)","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Vermal regions","relationship":"equals"}],"files":[{"filename":"Recordings of spontaneous firing of cerebellar interneurons (Golgi cells)","name":"Recordings of spontaneous firing of cerebellar interneurons (Golgi cells)","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/f54488f5b45bd42cb950678572bd3b15","name":"Spike time dependent plasticity (STDP) data from neonate C57BL/6 (wild-type) mice, negative pairing","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Hippocampal region","relationship":"equals"}],"files":[{"filename":"Spike time dependent plasticity (STDP) data from neonate C57BL/6 (wild-type) mice, negative pairing","name":"Spike time dependent plasticity (STDP) data from neonate C57BL/6 (wild-type) mice, negative pairing","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/632636291a6ff5cb30c55821abaa55c4","name":"3D imaging of the vascular system of the mouse brain.","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Cerebral cortex","relationship":"equals"}],"files":[{"filename":"3D imaging of the vascular system of the mouse brain.","name":"3D imaging of the vascular system of the mouse brain.","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/6a5980f16d1b3fd1422db723f9e2c6dc","name":"Arc expression in resting state","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[],"files":[{"filename":"Arc expression in resting state","name":"Arc expression in resting state","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/0d89723452a334fd8e7fbd040ba79376","name":"Purkinje cell distribution in mouse cerebellum","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[],"files":[{"filename":"Purkinje cell distribution in mouse cerebellum","name":"Purkinje cell distribution in mouse cerebellum","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/b8007a80fc0dccd56797473b45429787","name":"Spontaneous inhibitory post-synaptic currents recorded from CA1 pyramidal neurons of adult wild type B6/SJL mice","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Field CA1","relationship":"equals"}],"files":[{"filename":"Spontaneous inhibitory post-synaptic currents recorded from CA1 pyramidal neurons of adult wild type B6\\/SJL mice","name":"Spontaneous inhibitory post-synaptic currents recorded from CA1 pyramidal neurons of adult wild type B6/SJL mice","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/f740e7bb4e7a93647e3a9da50d6d965b","name":"Parvalbumin interneruron distribution in the mouse brain","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[],"files":[{"filename":"Parvalbumin interneruron distribution in the mouse brain","name":"Parvalbumin interneruron distribution in the mouse brain","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/ce6bc6d713c2a26485b0690e1f627972","name":"Spike time dependent plasticity (STDP) data from neonate C57BL/6 (wild-type) mice, positive pairing","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Hippocampal region","relationship":"equals"}],"files":[{"filename":"Spike time dependent plasticity (STDP) data from neonate C57BL/6 (wild-type) mice, positive pairing","name":"Spike time dependent plasticity (STDP) data from neonate C57BL/6 (wild-type) mice, positive pairing","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/fb1dab2cc153f8de099996172ea4d8b8","name":"sIPSCs from juvenile (P21-30) C57B16/J male mice from hippocampal CA1 pyramidal neurons receiving input from PV+ and CCK+ interneurons","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Field CA1","relationship":"equals"}],"files":[{"filename":"sIPSCs from juvenile (P21-30) C57B16\\/J male mice from hippocampal CA1 pyramidal neurons receiving input from PV+ and CCK+ interneurons","name":"sIPSCs from juvenile (P21-30) C57B16/J male mice from hippocampal CA1 pyramidal neurons receiving input from PV+ and CCK+ interneurons","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/48cffa543d49f446f0187902734dd631","name":"Brain-wide distribution of neuropsin promoter expression in transgenic tetracycline-transactivator mouse lines","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[],"files":[{"filename":"Brain-wide distribution of neuropsin promoter expression in transgenic tetracycline-transactivator mouse lines","name":"Brain-wide distribution of neuropsin promoter expression in transgenic tetracycline-transactivator mouse lines","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}},{"kgID":"Dataset/c021f1e3c97bc761711fad76abf7d468","name":"Spike time dependent plasticity (STDP) data from adult C57BL/6 (wild-type) mice, positive pairing","type":"Allen adult mouse brain reference atlas V3 Dataset","regionName":[{"regionName":"Hippocampal region","relationship":"equals"}],"files":[{"filename":"Spike time dependent plasticity (STDP) data from adult C57BL/6 (wild-type) mice, positive pairing","name":"Spike time dependent plasticity (STDP) data from adult C57BL/6 (wild-type) mice, positive pairing","mimetype":"application/raw","url":"http://about:blank","properties":{}}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","properties":{}}]
\ No newline at end of file
diff --git a/src/res/ext/allenMouse.json b/src/res/ext/allenMouse.json
index a3e9d578dc5310c7ee7cd8ed316ee1b611028132..e0b9430c01d41992ffeb8367630c694251d31ed2 100644
--- a/src/res/ext/allenMouse.json
+++ b/src/res/ext/allenMouse.json
@@ -1,14 +1,19116 @@
 {
-  "name": "Allen adult mouse brain reference atlas V3",
+  "name": "Allen Mouse Common Coordinate Framework v3",
   "type": "template",
   "species": "Mouse",
-  "ngId": "",
+  "ngId": "stpt",
+  "otherNgIds": ["nissl"],
   "useTheme": "dark",
   "nehubaConfigURL": "nehubaConfig/allenMouseNehubaConfig",
   "parcellations": [
+    {
+      "ngId": "v3_2017",
+      "name": "Allen Mouse Common Coordinate Framework v3 2017",
+      "ngData": null,
+      "type": "parcellation",
+      "regions": [
+        {
+          "ngId": "v3_2017",
+          "rgb": [
+            255,
+            255,
+            255
+          ],
+          "position": [
+            -1977500,
+            -867500,
+            -27500
+          ],
+          "name": "root",
+          "labelIndex": 997,
+          "children": [
+            {
+              "ngId": "v3_2017",
+              "rgb": [
+                191,
+                218,
+                227
+              ],
+              "position": [
+                -2007500,
+                -837500,
+                -7500
+              ],
+              "name": "Basic cell groups and regions",
+              "labelIndex": 8,
+              "children": [
+                {
+                  "ngId": "v3_2017",
+                  "rgb": [
+                    176,
+                    240,
+                    255
+                  ],
+                  "position": [
+                    -2387500,
+                    792500,
+                    222500
+                  ],
+                  "name": "Cerebrum",
+                  "labelIndex": 567,
+                  "children": [
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        176,
+                        255,
+                        184
+                      ],
+                      "position": [
+                        -3017500,
+                        922500,
+                        1032500
+                      ],
+                      "name": "Cerebral cortex",
+                      "labelIndex": 688,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            112,
+                            255,
+                            112
+                          ],
+                          "position": [
+                            -2957500,
+                            942500,
+                            1082500
+                          ],
+                          "name": "Cortical plate",
+                          "labelIndex": 695,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                112,
+                                255,
+                                113
+                              ],
+                              "position": [
+                                -2547500,
+                                742500,
+                                1482500
+                              ],
+                              "name": "Isocortex",
+                              "labelIndex": 315,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    38,
+                                    143,
+                                    69
+                                  ],
+                                  "position": [
+                                    -1177500,
+                                    4292500,
+                                    1192500
+                                  ],
+                                  "name": "Frontal pole, cerebral cortex",
+                                  "labelIndex": 184,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        38,
+                                        143,
+                                        69
+                                      ],
+                                      "position": [
+                                        -1057500,
+                                        4632500,
+                                        1232500
+                                      ],
+                                      "name": "Frontal pole, layer 1",
+                                      "labelIndex": 68,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        38,
+                                        143,
+                                        69
+                                      ],
+                                      "position": [
+                                        -1207500,
+                                        4472500,
+                                        1222500
+                                      ],
+                                      "name": "Frontal pole, layer 2/3",
+                                      "labelIndex": 667,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        38,
+                                        143,
+                                        69
+                                      ],
+                                      "position": [
+                                        -1197500,
+                                        4162500,
+                                        1182500
+                                      ],
+                                      "name": "Frontal pole, layer 5",
+                                      "labelIndex": 526157192,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        38,
+                                        143,
+                                        69
+                                      ],
+                                      "position": [
+                                        -1297500,
+                                        3592500,
+                                        1032500
+                                      ],
+                                      "name": "Frontal pole, layer 6a",
+                                      "labelIndex": 526157196,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        38,
+                                        143,
+                                        69
+                                      ],
+                                      "position": [
+                                        -1357500,
+                                        3122500,
+                                        812500
+                                      ],
+                                      "name": "Frontal pole, layer 6b",
+                                      "labelIndex": 526322264,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    31,
+                                    157,
+                                    90
+                                  ],
+                                  "position": [
+                                    -1757500,
+                                    2632500,
+                                    1742500
+                                  ],
+                                  "name": "Somatomotor areas",
+                                  "labelIndex": 500,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        31,
+                                        157,
+                                        90
+                                      ],
+                                      "name": "Somatomotor areas, Layer 1",
+                                      "labelIndex": 107,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        31,
+                                        157,
+                                        90
+                                      ],
+                                      "name": "Somatomotor areas, Layer 2/3",
+                                      "labelIndex": 219,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        31,
+                                        157,
+                                        90
+                                      ],
+                                      "name": "Somatomotor areas, Layer 5",
+                                      "labelIndex": 299,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        31,
+                                        157,
+                                        90
+                                      ],
+                                      "name": "Somatomotor areas, Layer 6a",
+                                      "labelIndex": 644,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        31,
+                                        157,
+                                        90
+                                      ],
+                                      "name": "Somatomotor areas, Layer 6b",
+                                      "labelIndex": 947,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        31,
+                                        157,
+                                        90
+                                      ],
+                                      "position": [
+                                        -2207500,
+                                        2262500,
+                                        1602500
+                                      ],
+                                      "name": "Primary motor area",
+                                      "labelIndex": 985,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            31,
+                                            157,
+                                            90
+                                          ],
+                                          "position": [
+                                            -2497500,
+                                            2542500,
+                                            2152500
+                                          ],
+                                          "name": "Primary motor area, Layer 1",
+                                          "labelIndex": 320,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            31,
+                                            157,
+                                            90
+                                          ],
+                                          "position": [
+                                            -2347500,
+                                            2402500,
+                                            1802500
+                                          ],
+                                          "name": "Primary motor area, Layer 2/3",
+                                          "labelIndex": 943,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            31,
+                                            157,
+                                            90
+                                          ],
+                                          "position": [
+                                            -2177500,
+                                            2272500,
+                                            1512500
+                                          ],
+                                          "name": "Primary motor area, Layer 5",
+                                          "labelIndex": 648,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            31,
+                                            157,
+                                            90
+                                          ],
+                                          "position": [
+                                            -1987500,
+                                            2002500,
+                                            1312500
+                                          ],
+                                          "name": "Primary motor area, Layer 6a",
+                                          "labelIndex": 844,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            31,
+                                            157,
+                                            90
+                                          ],
+                                          "position": [
+                                            -1917500,
+                                            1842500,
+                                            1242500
+                                          ],
+                                          "name": "Primary motor area, Layer 6b",
+                                          "labelIndex": 882,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        31,
+                                        157,
+                                        90
+                                      ],
+                                      "position": [
+                                        -1367500,
+                                        2952500,
+                                        1852500
+                                      ],
+                                      "name": "Secondary motor area",
+                                      "labelIndex": 993,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            31,
+                                            157,
+                                            90
+                                          ],
+                                          "position": [
+                                            -1367500,
+                                            3302500,
+                                            2342500
+                                          ],
+                                          "name": "Secondary motor area, layer 1",
+                                          "labelIndex": 656,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            31,
+                                            157,
+                                            90
+                                          ],
+                                          "position": [
+                                            -1447500,
+                                            3122500,
+                                            2062500
+                                          ],
+                                          "name": "Secondary motor area, layer 2/3",
+                                          "labelIndex": 962,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            31,
+                                            157,
+                                            90
+                                          ],
+                                          "position": [
+                                            -1347500,
+                                            2942500,
+                                            1782500
+                                          ],
+                                          "name": "Secondary motor area, layer 5",
+                                          "labelIndex": 767,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            31,
+                                            157,
+                                            90
+                                          ],
+                                          "position": [
+                                            -1377500,
+                                            2492500,
+                                            1472500
+                                          ],
+                                          "name": "Secondary motor area, layer 6a",
+                                          "labelIndex": 1021,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            31,
+                                            157,
+                                            90
+                                          ],
+                                          "position": [
+                                            -1377500,
+                                            2232500,
+                                            1302500
+                                          ],
+                                          "name": "Secondary motor area, layer 6b",
+                                          "labelIndex": 1085,
+                                          "children": []
+                                        }
+                                      ]
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    24,
+                                    128,
+                                    100
+                                  ],
+                                  "position": [
+                                    -3337500,
+                                    722500,
+                                    1552500
+                                  ],
+                                  "name": "Somatosensory areas",
+                                  "labelIndex": 453,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        24,
+                                        128,
+                                        100
+                                      ],
+                                      "name": "Somatosensory areas, layer 1",
+                                      "labelIndex": 12993,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        24,
+                                        128,
+                                        100
+                                      ],
+                                      "name": "Somatosensory areas, layer 2/3",
+                                      "labelIndex": 12994,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        24,
+                                        128,
+                                        100
+                                      ],
+                                      "name": "Somatosensory areas, layer 4",
+                                      "labelIndex": 12995,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        24,
+                                        128,
+                                        100
+                                      ],
+                                      "name": "Somatosensory areas, layer 5",
+                                      "labelIndex": 12996,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        24,
+                                        128,
+                                        100
+                                      ],
+                                      "name": "Somatosensory areas, layer 6a",
+                                      "labelIndex": 12997,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        24,
+                                        128,
+                                        100
+                                      ],
+                                      "name": "Somatosensory areas, layer 6b",
+                                      "labelIndex": 12998,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        24,
+                                        128,
+                                        100
+                                      ],
+                                      "position": [
+                                        -3007500,
+                                        822500,
+                                        1902500
+                                      ],
+                                      "name": "Primary somatosensory area",
+                                      "labelIndex": 322,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            24,
+                                            128,
+                                            100
+                                          ],
+                                          "name": "Primary somatosensory area, layer 1",
+                                          "labelIndex": 793,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            24,
+                                            128,
+                                            100
+                                          ],
+                                          "name": "Primary somatosensory area, layer 2/3",
+                                          "labelIndex": 346,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            24,
+                                            128,
+                                            100
+                                          ],
+                                          "name": "Primary somatosensory area, layer 4",
+                                          "labelIndex": 865,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            24,
+                                            128,
+                                            100
+                                          ],
+                                          "name": "Primary somatosensory area, layer 5",
+                                          "labelIndex": 921,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            24,
+                                            128,
+                                            100
+                                          ],
+                                          "name": "Primary somatosensory area, layer 6a",
+                                          "labelIndex": 686,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            24,
+                                            128,
+                                            100
+                                          ],
+                                          "name": "Primary somatosensory area, layer 6b",
+                                          "labelIndex": 719,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            24,
+                                            128,
+                                            100
+                                          ],
+                                          "position": [
+                                            -3637500,
+                                            892500,
+                                            1502500
+                                          ],
+                                          "name": "Primary somatosensory area, nose",
+                                          "labelIndex": 353,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -4017500,
+                                                1072500,
+                                                1812500
+                                              ],
+                                              "name": "Primary somatosensory area, nose, layer 1",
+                                              "labelIndex": 558,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -3877500,
+                                                1012500,
+                                                1712500
+                                              ],
+                                              "name": "Primary somatosensory area, nose, layer 2/3",
+                                              "labelIndex": 838,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -3697500,
+                                                922500,
+                                                1592500
+                                              ],
+                                              "name": "Primary somatosensory area, nose, layer 4",
+                                              "labelIndex": 654,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -3537500,
+                                                842500,
+                                                1422500
+                                              ],
+                                              "name": "Primary somatosensory area, nose, layer 5",
+                                              "labelIndex": 702,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -3297500,
+                                                732500,
+                                                1212500
+                                              ],
+                                              "name": "Primary somatosensory area, nose, layer 6a",
+                                              "labelIndex": 889,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -3137500,
+                                                642500,
+                                                1062500
+                                              ],
+                                              "name": "Primary somatosensory area, nose, layer 6b",
+                                              "labelIndex": 929,
+                                              "children": []
+                                            }
+                                          ]
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            24,
+                                            128,
+                                            100
+                                          ],
+                                          "position": [
+                                            -3357500,
+                                            -177500,
+                                            2212500
+                                          ],
+                                          "name": "Primary somatosensory area, barrel field",
+                                          "labelIndex": 329,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -3637500,
+                                                -77500,
+                                                2582500
+                                              ],
+                                              "name": "Primary somatosensory area, barrel field, layer 1",
+                                              "labelIndex": 981,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -3517500,
+                                                -117500,
+                                                2442500
+                                              ],
+                                              "name": "Primary somatosensory area, barrel field, layer 2/3",
+                                              "labelIndex": 201,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -3397500,
+                                                -167500,
+                                                2252500
+                                              ],
+                                              "name": "Primary somatosensory area, barrel field, layer 4",
+                                              "labelIndex": 1047,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -3257500,
+                                                -217500,
+                                                2062500
+                                              ],
+                                              "name": "Primary somatosensory area, barrel field, layer 5",
+                                              "labelIndex": 1070,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -3097500,
+                                                -237500,
+                                                1842500
+                                              ],
+                                              "name": "Primary somatosensory area, barrel field, layer 6a",
+                                              "labelIndex": 1038,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -2987500,
+                                                -417500,
+                                                1802500
+                                              ],
+                                              "name": "Primary somatosensory area, barrel field, layer 6b",
+                                              "labelIndex": 1062,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "name": "Rostrolateral lateral visual area",
+                                              "labelIndex": 480149202,
+                                              "children": [
+                                                {
+                                                  "ngId": "v3_2017",
+                                                  "rgb": [
+                                                    24,
+                                                    128,
+                                                    100
+                                                  ],
+                                                  "name": "Rostrolateral lateral visual area, layer 1",
+                                                  "labelIndex": 480149206,
+                                                  "children": []
+                                                },
+                                                {
+                                                  "ngId": "v3_2017",
+                                                  "rgb": [
+                                                    24,
+                                                    128,
+                                                    100
+                                                  ],
+                                                  "name": "Rostrolateral lateral visual area, layer 2/3",
+                                                  "labelIndex": 480149210,
+                                                  "children": []
+                                                },
+                                                {
+                                                  "ngId": "v3_2017",
+                                                  "rgb": [
+                                                    24,
+                                                    128,
+                                                    100
+                                                  ],
+                                                  "name": "Rostrolateral lateral visual area, layer 4",
+                                                  "labelIndex": 480149214,
+                                                  "children": []
+                                                },
+                                                {
+                                                  "ngId": "v3_2017",
+                                                  "rgb": [
+                                                    24,
+                                                    128,
+                                                    100
+                                                  ],
+                                                  "name": "Rostrolateral lateral visual area,layer 5",
+                                                  "labelIndex": 480149218,
+                                                  "children": []
+                                                },
+                                                {
+                                                  "ngId": "v3_2017",
+                                                  "rgb": [
+                                                    24,
+                                                    128,
+                                                    100
+                                                  ],
+                                                  "name": "Rostrolateral lateral visual area, layer 6a",
+                                                  "labelIndex": 480149222,
+                                                  "children": []
+                                                },
+                                                {
+                                                  "ngId": "v3_2017",
+                                                  "rgb": [
+                                                    24,
+                                                    128,
+                                                    100
+                                                  ],
+                                                  "name": "Rostrolateral lateral visual area, layer 6b",
+                                                  "labelIndex": 480149226,
+                                                  "children": []
+                                                }
+                                              ]
+                                            }
+                                          ]
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            24,
+                                            128,
+                                            100
+                                          ],
+                                          "position": [
+                                            -1807500,
+                                            592500,
+                                            2732500
+                                          ],
+                                          "name": "Primary somatosensory area, lower limb",
+                                          "labelIndex": 337,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -1927500,
+                                                772500,
+                                                3222500
+                                              ],
+                                              "name": "Primary somatosensory area, lower limb, layer 1",
+                                              "labelIndex": 1030,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -1877500,
+                                                712500,
+                                                3012500
+                                              ],
+                                              "name": "Primary somatosensory area, lower limb, layer 2/3",
+                                              "labelIndex": 113,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -1857500,
+                                                642500,
+                                                2782500
+                                              ],
+                                              "name": "Primary somatosensory area, lower limb, layer 4",
+                                              "labelIndex": 1094,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -1757500,
+                                                542500,
+                                                2592500
+                                              ],
+                                              "name": "Primary somatosensory area, lower limb, layer 5",
+                                              "labelIndex": 1128,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -1677500,
+                                                422500,
+                                                2292500
+                                              ],
+                                              "name": "Primary somatosensory area, lower limb, layer 6a",
+                                              "labelIndex": 478,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -1637500,
+                                                302500,
+                                                2152500
+                                              ],
+                                              "name": "Primary somatosensory area, lower limb, layer 6b",
+                                              "labelIndex": 510,
+                                              "children": []
+                                            }
+                                          ]
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            24,
+                                            128,
+                                            100
+                                          ],
+                                          "position": [
+                                            -3437500,
+                                            1942500,
+                                            952500
+                                          ],
+                                          "name": "Primary somatosensory area, mouth",
+                                          "labelIndex": 345,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -3817500,
+                                                2172500,
+                                                1212500
+                                              ],
+                                              "name": "Primary somatosensory area, mouth, layer 1",
+                                              "labelIndex": 878,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -3657500,
+                                                2112500,
+                                                1082500
+                                              ],
+                                              "name": "Primary somatosensory area, mouth, layer 2/3",
+                                              "labelIndex": 657,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -3507500,
+                                                1972500,
+                                                1022500
+                                              ],
+                                              "name": "Primary somatosensory area, mouth, layer 4",
+                                              "labelIndex": 950,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -3357500,
+                                                1912500,
+                                                862500
+                                              ],
+                                              "name": "Primary somatosensory area, mouth, layer 5",
+                                              "labelIndex": 974,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -3117500,
+                                                1712500,
+                                                762500
+                                              ],
+                                              "name": "Primary somatosensory area, mouth, layer 6a",
+                                              "labelIndex": 1102,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -2987500,
+                                                1632500,
+                                                622500
+                                              ],
+                                              "name": "Primary somatosensory area, mouth, layer 6b",
+                                              "labelIndex": 2,
+                                              "children": []
+                                            }
+                                          ]
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            24,
+                                            128,
+                                            100
+                                          ],
+                                          "position": [
+                                            -2467500,
+                                            1112500,
+                                            2222500
+                                          ],
+                                          "name": "Primary somatosensory area, upper limb",
+                                          "labelIndex": 369,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -2707500,
+                                                1312500,
+                                                2702500
+                                              ],
+                                              "name": "Primary somatosensory area, upper limb, layer 1",
+                                              "labelIndex": 450,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -2607500,
+                                                1222500,
+                                                2522500
+                                              ],
+                                              "name": "Primary somatosensory area, upper limb, layer 2/3",
+                                              "labelIndex": 854,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -2517500,
+                                                1162500,
+                                                2282500
+                                              ],
+                                              "name": "Primary somatosensory area, upper limb, layer 4",
+                                              "labelIndex": 577,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -2407500,
+                                                1042500,
+                                                2102500
+                                              ],
+                                              "name": "Primary somatosensory area, upper limb, layer 5",
+                                              "labelIndex": 625,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -2277500,
+                                                952500,
+                                                1802500
+                                              ],
+                                              "name": "Primary somatosensory area, upper limb, layer 6a",
+                                              "labelIndex": 945,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -2177500,
+                                                772500,
+                                                1662500
+                                              ],
+                                              "name": "Primary somatosensory area, upper limb, layer 6b",
+                                              "labelIndex": 1026,
+                                              "children": []
+                                            }
+                                          ]
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            24,
+                                            128,
+                                            100
+                                          ],
+                                          "position": [
+                                            -1837500,
+                                            -117500,
+                                            3022500
+                                          ],
+                                          "name": "Primary somatosensory area, trunk",
+                                          "labelIndex": 361,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -1957500,
+                                                -17500,
+                                                3402500
+                                              ],
+                                              "name": "Primary somatosensory area, trunk, layer 1",
+                                              "labelIndex": 1006,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -1897500,
+                                                -47500,
+                                                3212500
+                                              ],
+                                              "name": "Primary somatosensory area, trunk, layer 2/3",
+                                              "labelIndex": 670,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -1957500,
+                                                -147500,
+                                                3002500
+                                              ],
+                                              "name": "Primary somatosensory area, trunk, layer 4",
+                                              "labelIndex": 1086,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -1757500,
+                                                -147500,
+                                                2862500
+                                              ],
+                                              "name": "Primary somatosensory area, trunk, layer 5",
+                                              "labelIndex": 1111,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -1717500,
+                                                -247500,
+                                                2632500
+                                              ],
+                                              "name": "Primary somatosensory area, trunk, layer 6a",
+                                              "labelIndex": 9,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -1727500,
+                                                -317500,
+                                                2532500
+                                              ],
+                                              "name": "Primary somatosensory area, trunk, layer 6b",
+                                              "labelIndex": 461,
+                                              "children": []
+                                            }
+                                          ]
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            24,
+                                            128,
+                                            100
+                                          ],
+                                          "position": [
+                                            -2827500,
+                                            702500,
+                                            2242500
+                                          ],
+                                          "name": "Primary somatosensory area, unassigned",
+                                          "labelIndex": 182305689,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -3077500,
+                                                872500,
+                                                2682500
+                                              ],
+                                              "name": "Primary somatosensory area, unassigned, layer 1",
+                                              "labelIndex": 182305693,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -2977500,
+                                                802500,
+                                                2502500
+                                              ],
+                                              "name": "Primary somatosensory area, unassigned, layer 2/3",
+                                              "labelIndex": 182305697,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -2867500,
+                                                742500,
+                                                2282500
+                                              ],
+                                              "name": "Primary somatosensory area, unassigned, layer 4",
+                                              "labelIndex": 182305701,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -2747500,
+                                                642500,
+                                                2112500
+                                              ],
+                                              "name": "Primary somatosensory area, unassigned, layer 5",
+                                              "labelIndex": 182305705,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -2607500,
+                                                552500,
+                                                1832500
+                                              ],
+                                              "name": "Primary somatosensory area, unassigned, layer 6a",
+                                              "labelIndex": 182305709,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                24,
+                                                128,
+                                                100
+                                              ],
+                                              "position": [
+                                                -2467500,
+                                                372500,
+                                                1722500
+                                              ],
+                                              "name": "Primary somatosensory area, unassigned, layer 6b",
+                                              "labelIndex": 182305713,
+                                              "children": []
+                                            }
+                                          ]
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        24,
+                                        128,
+                                        100
+                                      ],
+                                      "position": [
+                                        -4197500,
+                                        452500,
+                                        612500
+                                      ],
+                                      "name": "Supplemental somatosensory area",
+                                      "labelIndex": 378,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            24,
+                                            128,
+                                            100
+                                          ],
+                                          "position": [
+                                            -4647500,
+                                            582500,
+                                            772500
+                                          ],
+                                          "name": "Supplemental somatosensory area, layer 1",
+                                          "labelIndex": 873,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            24,
+                                            128,
+                                            100
+                                          ],
+                                          "position": [
+                                            -4447500,
+                                            502500,
+                                            732500
+                                          ],
+                                          "name": "Supplemental somatosensory area, layer 2/3",
+                                          "labelIndex": 806,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            24,
+                                            128,
+                                            100
+                                          ],
+                                          "position": [
+                                            -4297500,
+                                            462500,
+                                            672500
+                                          ],
+                                          "name": "Supplemental somatosensory area, layer 4",
+                                          "labelIndex": 1035,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            24,
+                                            128,
+                                            100
+                                          ],
+                                          "position": [
+                                            -4097500,
+                                            392500,
+                                            562500
+                                          ],
+                                          "name": "Supplemental somatosensory area, layer 5",
+                                          "labelIndex": 1090,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            24,
+                                            128,
+                                            100
+                                          ],
+                                          "position": [
+                                            -3817500,
+                                            402500,
+                                            442500
+                                          ],
+                                          "name": "Supplemental somatosensory area, layer 6a",
+                                          "labelIndex": 862,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            24,
+                                            128,
+                                            100
+                                          ],
+                                          "position": [
+                                            -3687500,
+                                            232500,
+                                            472500
+                                          ],
+                                          "name": "Supplemental somatosensory area, layer 6b",
+                                          "labelIndex": 893,
+                                          "children": []
+                                        }
+                                      ]
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    0,
+                                    156,
+                                    117
+                                  ],
+                                  "position": [
+                                    -3777500,
+                                    1902500,
+                                    -507500
+                                  ],
+                                  "name": "Gustatory areas",
+                                  "labelIndex": 1057,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        0,
+                                        156,
+                                        117
+                                      ],
+                                      "position": [
+                                        -4127500,
+                                        2102500,
+                                        -567500
+                                      ],
+                                      "name": "Gustatory areas, layer 1",
+                                      "labelIndex": 36,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        0,
+                                        156,
+                                        117
+                                      ],
+                                      "position": [
+                                        -3977500,
+                                        2082500,
+                                        -517500
+                                      ],
+                                      "name": "Gustatory areas, layer 2/3",
+                                      "labelIndex": 180,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        0,
+                                        156,
+                                        117
+                                      ],
+                                      "position": [
+                                        -3907500,
+                                        1942500,
+                                        -497500
+                                      ],
+                                      "name": "Gustatory areas, layer 4",
+                                      "labelIndex": 148,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        0,
+                                        156,
+                                        117
+                                      ],
+                                      "position": [
+                                        -3717500,
+                                        1882500,
+                                        -497500
+                                      ],
+                                      "name": "Gustatory areas, layer 5",
+                                      "labelIndex": 187,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        0,
+                                        156,
+                                        117
+                                      ],
+                                      "position": [
+                                        -3487500,
+                                        1692500,
+                                        -487500
+                                      ],
+                                      "name": "Gustatory areas, layer 6a",
+                                      "labelIndex": 638,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        0,
+                                        156,
+                                        117
+                                      ],
+                                      "position": [
+                                        -3347500,
+                                        1672500,
+                                        -447500
+                                      ],
+                                      "name": "Gustatory areas, layer 6b",
+                                      "labelIndex": 662,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    17,
+                                    173,
+                                    131
+                                  ],
+                                  "position": [
+                                    -4477500,
+                                    262500,
+                                    -487500
+                                  ],
+                                  "name": "Visceral area",
+                                  "labelIndex": 677,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        17,
+                                        173,
+                                        131
+                                      ],
+                                      "position": [
+                                        -4897500,
+                                        362500,
+                                        -537500
+                                      ],
+                                      "name": "Visceral area, layer 1",
+                                      "labelIndex": 897,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        17,
+                                        173,
+                                        131
+                                      ],
+                                      "position": [
+                                        -4727500,
+                                        322500,
+                                        -517500
+                                      ],
+                                      "name": "Visceral area, layer 2/3",
+                                      "labelIndex": 1106,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        17,
+                                        173,
+                                        131
+                                      ],
+                                      "position": [
+                                        -4577500,
+                                        392500,
+                                        -437500
+                                      ],
+                                      "name": "Visceral area, layer 4",
+                                      "labelIndex": 1010,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        17,
+                                        173,
+                                        131
+                                      ],
+                                      "position": [
+                                        -4387500,
+                                        222500,
+                                        -477500
+                                      ],
+                                      "name": "Visceral area, layer 5",
+                                      "labelIndex": 1058,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        17,
+                                        173,
+                                        131
+                                      ],
+                                      "position": [
+                                        -4077500,
+                                        162500,
+                                        -477500
+                                      ],
+                                      "name": "Visceral area, layer 6a",
+                                      "labelIndex": 857,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        17,
+                                        173,
+                                        131
+                                      ],
+                                      "position": [
+                                        -3947500,
+                                        92500,
+                                        -467500
+                                      ],
+                                      "name": "Visceral area, layer 6b",
+                                      "labelIndex": 849,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    1,
+                                    147,
+                                    153
+                                  ],
+                                  "position": [
+                                    -4507500,
+                                    -1297500,
+                                    1102500
+                                  ],
+                                  "name": "Auditory areas",
+                                  "labelIndex": 247,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        1,
+                                        147,
+                                        153
+                                      ],
+                                      "position": [
+                                        -4267500,
+                                        -977500,
+                                        1532500
+                                      ],
+                                      "name": "Dorsal auditory area",
+                                      "labelIndex": 1011,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "position": [
+                                            -4607500,
+                                            -917500,
+                                            1752500
+                                          ],
+                                          "name": "Dorsal auditory area, layer 1",
+                                          "labelIndex": 527,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "position": [
+                                            -4447500,
+                                            -947500,
+                                            1662500
+                                          ],
+                                          "name": "Dorsal auditory area, layer 2/3",
+                                          "labelIndex": 600,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "position": [
+                                            -4287500,
+                                            -977500,
+                                            1572500
+                                          ],
+                                          "name": "Dorsal auditory area, layer 4",
+                                          "labelIndex": 678,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "position": [
+                                            -4127500,
+                                            -1007500,
+                                            1442500
+                                          ],
+                                          "name": "Dorsal auditory area, layer 5",
+                                          "labelIndex": 252,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "position": [
+                                            -3907500,
+                                            -1027500,
+                                            1272500
+                                          ],
+                                          "name": "Dorsal auditory area, layer 6a",
+                                          "labelIndex": 156,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "position": [
+                                            -3807500,
+                                            -1107500,
+                                            1282500
+                                          ],
+                                          "name": "Dorsal auditory area, layer 6b",
+                                          "labelIndex": 243,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "name": "Laterolateral anterior visual area",
+                                          "labelIndex": 480149230,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                1,
+                                                147,
+                                                153
+                                              ],
+                                              "name": "Laterolateral anterior visual area, layer 1",
+                                              "labelIndex": 480149234,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                1,
+                                                147,
+                                                153
+                                              ],
+                                              "name": "Laterolateral anterior visual area, layer 2/3",
+                                              "labelIndex": 480149238,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                1,
+                                                147,
+                                                153
+                                              ],
+                                              "name": "Laterolateral anterior visual area, layer 4",
+                                              "labelIndex": 480149242,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                1,
+                                                147,
+                                                153
+                                              ],
+                                              "name": "Laterolateral anterior visual area,layer 5",
+                                              "labelIndex": 480149246,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                1,
+                                                147,
+                                                153
+                                              ],
+                                              "name": "Laterolateral anterior visual area, layer 6a",
+                                              "labelIndex": 480149250,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                1,
+                                                147,
+                                                153
+                                              ],
+                                              "name": "Laterolateral anterior visual area, layer 6b",
+                                              "labelIndex": 480149254,
+                                              "children": []
+                                            }
+                                          ]
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        1,
+                                        147,
+                                        153
+                                      ],
+                                      "position": [
+                                        -4557500,
+                                        -1367500,
+                                        1142500
+                                      ],
+                                      "name": "Primary auditory area",
+                                      "labelIndex": 1002,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "position": [
+                                            -4897500,
+                                            -1367500,
+                                            1312500
+                                          ],
+                                          "name": "Primary auditory area, layer 1",
+                                          "labelIndex": 735,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "position": [
+                                            -4757500,
+                                            -1337500,
+                                            1232500
+                                          ],
+                                          "name": "Primary auditory area, layer 2/3",
+                                          "labelIndex": 251,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "position": [
+                                            -4627500,
+                                            -1367500,
+                                            1172500
+                                          ],
+                                          "name": "Primary auditory area, layer 4",
+                                          "labelIndex": 816,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "position": [
+                                            -4417500,
+                                            -1377500,
+                                            1072500
+                                          ],
+                                          "name": "Primary auditory area, layer 5",
+                                          "labelIndex": 847,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "position": [
+                                            -4157500,
+                                            -1397500,
+                                            972500
+                                          ],
+                                          "name": "Primary auditory area, layer 6a",
+                                          "labelIndex": 954,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "position": [
+                                            -4067500,
+                                            -1457500,
+                                            942500
+                                          ],
+                                          "name": "Primary auditory area, layer 6b",
+                                          "labelIndex": 1005,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        1,
+                                        147,
+                                        153
+                                      ],
+                                      "position": [
+                                        -4277500,
+                                        -1857500,
+                                        1672500
+                                      ],
+                                      "name": "Posterior auditory area",
+                                      "labelIndex": 1027,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "position": [
+                                            -4547500,
+                                            -1887500,
+                                            1852500
+                                          ],
+                                          "name": "Posterior auditory area, layer 1",
+                                          "labelIndex": 696,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "position": [
+                                            -4417500,
+                                            -1857500,
+                                            1782500
+                                          ],
+                                          "name": "Posterior auditory area, layer 2/3",
+                                          "labelIndex": 643,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "position": [
+                                            -4327500,
+                                            -1877500,
+                                            1662500
+                                          ],
+                                          "name": "Posterior auditory area, layer 4",
+                                          "labelIndex": 759,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "position": [
+                                            -4157500,
+                                            -1837500,
+                                            1582500
+                                          ],
+                                          "name": "Posterior auditory area, layer 5",
+                                          "labelIndex": 791,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "position": [
+                                            -3977500,
+                                            -1827500,
+                                            1462500
+                                          ],
+                                          "name": "Posterior auditory area, layer 6a",
+                                          "labelIndex": 249,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "position": [
+                                            -3907500,
+                                            -1827500,
+                                            1402500
+                                          ],
+                                          "name": "Posterior auditory area, layer 6b",
+                                          "labelIndex": 456,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        1,
+                                        147,
+                                        153
+                                      ],
+                                      "position": [
+                                        -4687500,
+                                        -1237500,
+                                        562500
+                                      ],
+                                      "name": "Ventral auditory area",
+                                      "labelIndex": 1018,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "position": [
+                                            -5077500,
+                                            -1267500,
+                                            642500
+                                          ],
+                                          "name": "Ventral auditory area, layer 1",
+                                          "labelIndex": 959,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "position": [
+                                            -4917500,
+                                            -1167500,
+                                            612500
+                                          ],
+                                          "name": "Ventral auditory area, layer 2/3",
+                                          "labelIndex": 755,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "position": [
+                                            -4767500,
+                                            -1197500,
+                                            582500
+                                          ],
+                                          "name": "Ventral auditory area, layer 4",
+                                          "labelIndex": 990,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "position": [
+                                            -4557500,
+                                            -1267500,
+                                            542500
+                                          ],
+                                          "name": "Ventral auditory area, layer 5",
+                                          "labelIndex": 1023,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "position": [
+                                            -4267500,
+                                            -1207500,
+                                            472500
+                                          ],
+                                          "name": "Ventral auditory area, layer 6a",
+                                          "labelIndex": 520,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            1,
+                                            147,
+                                            153
+                                          ],
+                                          "position": [
+                                            -4187500,
+                                            -1337500,
+                                            472500
+                                          ],
+                                          "name": "Ventral auditory area, layer 6b",
+                                          "labelIndex": 598,
+                                          "children": []
+                                        }
+                                      ]
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    8,
+                                    133,
+                                    140
+                                  ],
+                                  "position": [
+                                    -2887500,
+                                    -2427500,
+                                    2502500
+                                  ],
+                                  "name": "Visual areas",
+                                  "labelIndex": 669,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        8,
+                                        133,
+                                        140
+                                      ],
+                                      "name": "Visual areas, layer 1",
+                                      "labelIndex": 801,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        8,
+                                        133,
+                                        140
+                                      ],
+                                      "name": "Visual areas, layer 2/3",
+                                      "labelIndex": 561,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        8,
+                                        133,
+                                        140
+                                      ],
+                                      "name": "Visual areas, layer 4",
+                                      "labelIndex": 913,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        8,
+                                        133,
+                                        140
+                                      ],
+                                      "name": "Visual areas, layer 5",
+                                      "labelIndex": 937,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        8,
+                                        133,
+                                        140
+                                      ],
+                                      "name": "Visual areas, layer 6a",
+                                      "labelIndex": 457,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        8,
+                                        133,
+                                        140
+                                      ],
+                                      "name": "Visual areas, layer 6b",
+                                      "labelIndex": 497,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        8,
+                                        133,
+                                        140
+                                      ],
+                                      "position": [
+                                        -3737500,
+                                        -1697500,
+                                        2282500
+                                      ],
+                                      "name": "Anterolateral visual area",
+                                      "labelIndex": 402,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -3967500,
+                                            -1717500,
+                                            2542500
+                                          ],
+                                          "name": "Anterolateral visual area, layer 1",
+                                          "labelIndex": 1074,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -3867500,
+                                            -1697500,
+                                            2422500
+                                          ],
+                                          "name": "Anterolateral visual area, layer 2/3",
+                                          "labelIndex": 905,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -3747500,
+                                            -1687500,
+                                            2322500
+                                          ],
+                                          "name": "Anterolateral visual area, layer 4",
+                                          "labelIndex": 1114,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -3647500,
+                                            -1687500,
+                                            2172500
+                                          ],
+                                          "name": "Anterolateral visual area, layer 5",
+                                          "labelIndex": 233,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -3497500,
+                                            -1677500,
+                                            2022500
+                                          ],
+                                          "name": "Anterolateral visual area, layer 6a",
+                                          "labelIndex": 601,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -3447500,
+                                            -1677500,
+                                            1942500
+                                          ],
+                                          "name": "Anterolateral visual area, layer 6b",
+                                          "labelIndex": 649,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        8,
+                                        133,
+                                        140
+                                      ],
+                                      "position": [
+                                        -1697500,
+                                        -1097500,
+                                        3242500
+                                      ],
+                                      "name": "Anteromedial visual area",
+                                      "labelIndex": 394,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -1767500,
+                                            -1087500,
+                                            3592500
+                                          ],
+                                          "name": "Anteromedial visual area, layer 1",
+                                          "labelIndex": 281,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -1747500,
+                                            -1077500,
+                                            3412500
+                                          ],
+                                          "name": "Anteromedial visual area, layer 2/3",
+                                          "labelIndex": 1066,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -1717500,
+                                            -1107500,
+                                            3272500
+                                          ],
+                                          "name": "Anteromedial visual area, layer 4",
+                                          "labelIndex": 401,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -1657500,
+                                            -1107500,
+                                            3112500
+                                          ],
+                                          "name": "Anteromedial visual area, layer 5",
+                                          "labelIndex": 433,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -1607500,
+                                            -1127500,
+                                            2892500
+                                          ],
+                                          "name": "Anteromedial visual area, layer 6a",
+                                          "labelIndex": 1046,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -1597500,
+                                            -1147500,
+                                            2792500
+                                          ],
+                                          "name": "Anteromedial visual area, layer 6b",
+                                          "labelIndex": 441,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        8,
+                                        133,
+                                        140
+                                      ],
+                                      "position": [
+                                        -3627500,
+                                        -2527500,
+                                        2122500
+                                      ],
+                                      "name": "Lateral visual area",
+                                      "labelIndex": 409,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -3837500,
+                                            -2647500,
+                                            2372500
+                                          ],
+                                          "name": "Lateral visual area, layer 1",
+                                          "labelIndex": 421,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -3747500,
+                                            -2587500,
+                                            2262500
+                                          ],
+                                          "name": "Lateral visual area, layer 2/3",
+                                          "labelIndex": 973,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -3647500,
+                                            -2537500,
+                                            2162500
+                                          ],
+                                          "name": "Lateral visual area, layer 4",
+                                          "labelIndex": 573,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -3547500,
+                                            -2477500,
+                                            2022500
+                                          ],
+                                          "name": "Lateral visual area, layer 5",
+                                          "labelIndex": 613,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -3417500,
+                                            -2447500,
+                                            1862500
+                                          ],
+                                          "name": "Lateral visual area, layer 6a",
+                                          "labelIndex": 74,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -3357500,
+                                            -2387500,
+                                            1792500
+                                          ],
+                                          "name": "Lateral visual area, layer 6b",
+                                          "labelIndex": 121,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        8,
+                                        133,
+                                        140
+                                      ],
+                                      "position": [
+                                        -2617500,
+                                        -2507500,
+                                        2762500
+                                      ],
+                                      "name": "Primary visual area",
+                                      "labelIndex": 385,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -2757500,
+                                            -2687500,
+                                            3062500
+                                          ],
+                                          "name": "Primary visual area, layer 1",
+                                          "labelIndex": 593,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -2637500,
+                                            -2567500,
+                                            2922500
+                                          ],
+                                          "name": "Primary visual area, layer 2/3",
+                                          "labelIndex": 821,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -2647500,
+                                            -2487500,
+                                            2752500
+                                          ],
+                                          "name": "Primary visual area, layer 4",
+                                          "labelIndex": 721,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -2547500,
+                                            -2427500,
+                                            2632500
+                                          ],
+                                          "name": "Primary visual area, layer 5",
+                                          "labelIndex": 778,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -2507500,
+                                            -2377500,
+                                            2432500
+                                          ],
+                                          "name": "Primary visual area, layer 6a",
+                                          "labelIndex": 33,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -2497500,
+                                            -2197500,
+                                            2362500
+                                          ],
+                                          "name": "Primary visual area, layer 6b",
+                                          "labelIndex": 305,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        8,
+                                        133,
+                                        140
+                                      ],
+                                      "position": [
+                                        -3297500,
+                                        -3437500,
+                                        1762500
+                                      ],
+                                      "name": "Posterolateral visual area",
+                                      "labelIndex": 425,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -3327500,
+                                            -3697500,
+                                            1822500
+                                          ],
+                                          "name": "Posterolateral visual area, layer 1",
+                                          "labelIndex": 750,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -3347500,
+                                            -3527500,
+                                            1792500
+                                          ],
+                                          "name": "Posterolateral visual area, layer 2/3",
+                                          "labelIndex": 269,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -3467500,
+                                            -3377500,
+                                            1832500
+                                          ],
+                                          "name": "Posterolateral visual area, layer 4",
+                                          "labelIndex": 869,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -3267500,
+                                            -3347500,
+                                            1712500
+                                          ],
+                                          "name": "Posterolateral visual area, layer 5",
+                                          "labelIndex": 902,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -3127500,
+                                            -3177500,
+                                            1692500
+                                          ],
+                                          "name": "Posterolateral visual area, layer 6a",
+                                          "labelIndex": 377,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -3277500,
+                                            -3047500,
+                                            1552500
+                                          ],
+                                          "name": "Posterolateral visual area, layer 6b",
+                                          "labelIndex": 393,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        8,
+                                        133,
+                                        140
+                                      ],
+                                      "position": [
+                                        -1737500,
+                                        -1827500,
+                                        3252500
+                                      ],
+                                      "name": "posteromedial visual area",
+                                      "labelIndex": 533,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -1777500,
+                                            -1887500,
+                                            3572500
+                                          ],
+                                          "name": "posteromedial visual area, layer 1",
+                                          "labelIndex": 805,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -1767500,
+                                            -1877500,
+                                            3412500
+                                          ],
+                                          "name": "posteromedial visual area, layer 2/3",
+                                          "labelIndex": 41,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -1757500,
+                                            -1807500,
+                                            3262500
+                                          ],
+                                          "name": "posteromedial visual area, layer 4",
+                                          "labelIndex": 501,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -1697500,
+                                            -1827500,
+                                            3122500
+                                          ],
+                                          "name": "posteromedial visual area, layer 5",
+                                          "labelIndex": 565,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -1687500,
+                                            -1737500,
+                                            2892500
+                                          ],
+                                          "name": "posteromedial visual area, layer 6a",
+                                          "labelIndex": 257,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -1667500,
+                                            -1707500,
+                                            2772500
+                                          ],
+                                          "name": "posteromedial visual area, layer 6b",
+                                          "labelIndex": 469,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        8,
+                                        133,
+                                        140
+                                      ],
+                                      "position": [
+                                        -3947500,
+                                        -2487500,
+                                        1822500
+                                      ],
+                                      "name": "Laterointermediate area",
+                                      "labelIndex": 312782574,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -4187500,
+                                            -2577500,
+                                            2042500
+                                          ],
+                                          "name": "Laterointermediate area, layer 1",
+                                          "labelIndex": 312782578,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -4087500,
+                                            -2547500,
+                                            1952500
+                                          ],
+                                          "name": "Laterointermediate area, layer 2/3",
+                                          "labelIndex": 312782582,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -3987500,
+                                            -2497500,
+                                            1872500
+                                          ],
+                                          "name": "Laterointermediate area, layer 4",
+                                          "labelIndex": 312782586,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -3867500,
+                                            -2457500,
+                                            1752500
+                                          ],
+                                          "name": "Laterointermediate area, layer 5",
+                                          "labelIndex": 312782590,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -3717500,
+                                            -2397500,
+                                            1612500
+                                          ],
+                                          "name": "Laterointermediate area, layer 6a",
+                                          "labelIndex": 312782594,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -3647500,
+                                            -2357500,
+                                            1552500
+                                          ],
+                                          "name": "Laterointermediate area, layer 6b",
+                                          "labelIndex": 312782598,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        8,
+                                        133,
+                                        140
+                                      ],
+                                      "position": [
+                                        -4177500,
+                                        -3007500,
+                                        1232500
+                                      ],
+                                      "name": "Postrhinal area",
+                                      "labelIndex": 312782628,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -4387500,
+                                            -3197500,
+                                            1322500
+                                          ],
+                                          "name": "Postrhinal area, layer 1",
+                                          "labelIndex": 312782632,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -4287500,
+                                            -3097500,
+                                            1262500
+                                          ],
+                                          "name": "Postrhinal area, layer 2/3",
+                                          "labelIndex": 312782636,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -4197500,
+                                            -2877500,
+                                            1402500
+                                          ],
+                                          "name": "Postrhinal area, layer 4",
+                                          "labelIndex": 312782640,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -4077500,
+                                            -2937500,
+                                            1192500
+                                          ],
+                                          "name": "Postrhinal area, layer 5",
+                                          "labelIndex": 312782644,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -3917500,
+                                            -2797500,
+                                            1092500
+                                          ],
+                                          "name": "Postrhinal area, layer 6a",
+                                          "labelIndex": 312782648,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            8,
+                                            133,
+                                            140
+                                          ],
+                                          "position": [
+                                            -3857500,
+                                            -2727500,
+                                            1042500
+                                          ],
+                                          "name": "Postrhinal area, layer 6b",
+                                          "labelIndex": 312782652,
+                                          "children": []
+                                        }
+                                      ]
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    64,
+                                    166,
+                                    102
+                                  ],
+                                  "position": [
+                                    -427500,
+                                    1952500,
+                                    1792500
+                                  ],
+                                  "name": "Anterior cingulate area",
+                                  "labelIndex": 31,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        64,
+                                        166,
+                                        102
+                                      ],
+                                      "name": "Anterior cingulate area, layer 1",
+                                      "labelIndex": 572,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        64,
+                                        166,
+                                        102
+                                      ],
+                                      "name": "Anterior cingulate area, layer 2/3",
+                                      "labelIndex": 1053,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        64,
+                                        166,
+                                        102
+                                      ],
+                                      "name": "Anterior cingulate area, layer 5",
+                                      "labelIndex": 739,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        64,
+                                        166,
+                                        102
+                                      ],
+                                      "name": "Anterior cingulate area, layer 6a",
+                                      "labelIndex": 179,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        64,
+                                        166,
+                                        102
+                                      ],
+                                      "name": "Anterior cingulate area, layer 6b",
+                                      "labelIndex": 227,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        64,
+                                        166,
+                                        102
+                                      ],
+                                      "position": [
+                                        -457500,
+                                        2122500,
+                                        2022500
+                                      ],
+                                      "name": "Anterior cingulate area, dorsal part",
+                                      "labelIndex": 39,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            64,
+                                            166,
+                                            102
+                                          ],
+                                          "position": [
+                                            -127500,
+                                            2202500,
+                                            2192500
+                                          ],
+                                          "name": "Anterior cingulate area, dorsal part, layer 1",
+                                          "labelIndex": 935,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            64,
+                                            166,
+                                            102
+                                          ],
+                                          "position": [
+                                            -267500,
+                                            2212500,
+                                            2142500
+                                          ],
+                                          "name": "Anterior cingulate area, dorsal part, layer 2/3",
+                                          "labelIndex": 211,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            64,
+                                            166,
+                                            102
+                                          ],
+                                          "position": [
+                                            -507500,
+                                            2182500,
+                                            2002500
+                                          ],
+                                          "name": "Anterior cingulate area, dorsal part, layer 5",
+                                          "labelIndex": 1015,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            64,
+                                            166,
+                                            102
+                                          ],
+                                          "position": [
+                                            -807500,
+                                            1902500,
+                                            1792500
+                                          ],
+                                          "name": "Anterior cingulate area, dorsal part, layer 6a",
+                                          "labelIndex": 919,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            64,
+                                            166,
+                                            102
+                                          ],
+                                          "position": [
+                                            -917500,
+                                            1562500,
+                                            1702500
+                                          ],
+                                          "name": "Anterior cingulate area, dorsal part, layer 6b",
+                                          "labelIndex": 927,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        64,
+                                        166,
+                                        102
+                                      ],
+                                      "position": [
+                                        -377500,
+                                        1712500,
+                                        1492500
+                                      ],
+                                      "name": "Anterior cingulate area, ventral part",
+                                      "labelIndex": 48,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            64,
+                                            166,
+                                            102
+                                          ],
+                                          "position": [
+                                            -117500,
+                                            1772500,
+                                            1532500
+                                          ],
+                                          "name": "Anterior cingulate area, ventral part, layer 1",
+                                          "labelIndex": 588,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            64,
+                                            166,
+                                            102
+                                          ],
+                                          "position": [
+                                            -247500,
+                                            1702500,
+                                            1522500
+                                          ],
+                                          "name": "Anterior cingulate area, ventral part, layer 2/3",
+                                          "labelIndex": 296,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            64,
+                                            166,
+                                            102
+                                          ],
+                                          "position": [
+                                            -437500,
+                                            1732500,
+                                            1462500
+                                          ],
+                                          "name": "Anterior cingulate area, ventral part, layer 5",
+                                          "labelIndex": 772,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            64,
+                                            166,
+                                            102
+                                          ],
+                                          "position": [
+                                            -667500,
+                                            1652500,
+                                            1482500
+                                          ],
+                                          "name": "Anterior cingulate area, ventral part, 6a",
+                                          "labelIndex": 810,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            64,
+                                            166,
+                                            102
+                                          ],
+                                          "position": [
+                                            -737500,
+                                            1512500,
+                                            1472500
+                                          ],
+                                          "name": "Anterior cingulate area, ventral part, 6b",
+                                          "labelIndex": 819,
+                                          "children": []
+                                        }
+                                      ]
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    47,
+                                    168,
+                                    80
+                                  ],
+                                  "position": [
+                                    -487500,
+                                    3452500,
+                                    1182500
+                                  ],
+                                  "name": "Prelimbic area",
+                                  "labelIndex": 972,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        47,
+                                        168,
+                                        80
+                                      ],
+                                      "position": [
+                                        -177500,
+                                        3692500,
+                                        1292500
+                                      ],
+                                      "name": "Prelimbic area, layer 1",
+                                      "labelIndex": 171,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        47,
+                                        168,
+                                        80
+                                      ],
+                                      "name": "Prelimbic area, layer 2",
+                                      "labelIndex": 195,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        47,
+                                        168,
+                                        80
+                                      ],
+                                      "position": [
+                                        -307500,
+                                        3602500,
+                                        1262500
+                                      ],
+                                      "name": "Prelimbic area, layer 2/3",
+                                      "labelIndex": 304,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        47,
+                                        168,
+                                        80
+                                      ],
+                                      "position": [
+                                        -527500,
+                                        3442500,
+                                        1172500
+                                      ],
+                                      "name": "Prelimbic area, layer 5",
+                                      "labelIndex": 363,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        47,
+                                        168,
+                                        80
+                                      ],
+                                      "position": [
+                                        -867500,
+                                        3102500,
+                                        1002500
+                                      ],
+                                      "name": "Prelimbic area, layer 6a",
+                                      "labelIndex": 84,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        47,
+                                        168,
+                                        80
+                                      ],
+                                      "position": [
+                                        -957500,
+                                        2762500,
+                                        812500
+                                      ],
+                                      "name": "Prelimbic area, layer 6b",
+                                      "labelIndex": 132,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    89,
+                                    179,
+                                    99
+                                  ],
+                                  "position": [
+                                    -397500,
+                                    3072500,
+                                    252500
+                                  ],
+                                  "name": "Infralimbic area",
+                                  "labelIndex": 44,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        89,
+                                        179,
+                                        99
+                                      ],
+                                      "position": [
+                                        -107500,
+                                        3122500,
+                                        212500
+                                      ],
+                                      "name": "Infralimbic area, layer 1",
+                                      "labelIndex": 707,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        89,
+                                        179,
+                                        99
+                                      ],
+                                      "name": "Infralimbic area, layer 2",
+                                      "labelIndex": 747,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        89,
+                                        179,
+                                        99
+                                      ],
+                                      "position": [
+                                        -217500,
+                                        3122500,
+                                        212500
+                                      ],
+                                      "name": "Infralimbic area, layer 2/3",
+                                      "labelIndex": 556,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        89,
+                                        179,
+                                        99
+                                      ],
+                                      "position": [
+                                        -417500,
+                                        3092500,
+                                        282500
+                                      ],
+                                      "name": "Infralimbic area, layer 5",
+                                      "labelIndex": 827,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        89,
+                                        179,
+                                        99
+                                      ],
+                                      "position": [
+                                        -697500,
+                                        2972500,
+                                        252500
+                                      ],
+                                      "name": "Infralimbic area, layer 6a",
+                                      "labelIndex": 1054,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        89,
+                                        179,
+                                        99
+                                      ],
+                                      "position": [
+                                        -857500,
+                                        2852500,
+                                        382500
+                                      ],
+                                      "name": "Infralimbic area, layer 6b",
+                                      "labelIndex": 1081,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    36,
+                                    138,
+                                    94
+                                  ],
+                                  "position": [
+                                    -1067500,
+                                    3702500,
+                                    252500
+                                  ],
+                                  "name": "Orbital area",
+                                  "labelIndex": 714,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        36,
+                                        138,
+                                        94
+                                      ],
+                                      "name": "Orbital area, layer 1",
+                                      "labelIndex": 264,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        36,
+                                        138,
+                                        94
+                                      ],
+                                      "name": "Orbital area, layer 2/3",
+                                      "labelIndex": 492,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        36,
+                                        138,
+                                        94
+                                      ],
+                                      "name": "Orbital area, layer 5",
+                                      "labelIndex": 352,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        36,
+                                        138,
+                                        94
+                                      ],
+                                      "name": "Orbital area, layer 6a",
+                                      "labelIndex": 476,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        36,
+                                        138,
+                                        94
+                                      ],
+                                      "name": "Orbital area, layer 6b",
+                                      "labelIndex": 516,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        36,
+                                        138,
+                                        94
+                                      ],
+                                      "position": [
+                                        -1567500,
+                                        3602500,
+                                        132500
+                                      ],
+                                      "name": "Orbital area, lateral part",
+                                      "labelIndex": 723,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            36,
+                                            138,
+                                            94
+                                          ],
+                                          "position": [
+                                            -1537500,
+                                            4052500,
+                                            52500
+                                          ],
+                                          "name": "Orbital area, lateral part, layer 1",
+                                          "labelIndex": 448,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            36,
+                                            138,
+                                            94
+                                          ],
+                                          "position": [
+                                            -1527500,
+                                            3782500,
+                                            32500
+                                          ],
+                                          "name": "Orbital area, lateral part, layer 2/3",
+                                          "labelIndex": 412,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            36,
+                                            138,
+                                            94
+                                          ],
+                                          "position": [
+                                            -1597500,
+                                            3522500,
+                                            122500
+                                          ],
+                                          "name": "Orbital area, lateral part, layer 5",
+                                          "labelIndex": 630,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            36,
+                                            138,
+                                            94
+                                          ],
+                                          "position": [
+                                            -1557500,
+                                            3262500,
+                                            332500
+                                          ],
+                                          "name": "Orbital area, lateral part, layer 6a",
+                                          "labelIndex": 440,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            36,
+                                            138,
+                                            94
+                                          ],
+                                          "position": [
+                                            -1477500,
+                                            2952500,
+                                            112500
+                                          ],
+                                          "name": "Orbital area, lateral part, layer 6b",
+                                          "labelIndex": 488,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        36,
+                                        138,
+                                        94
+                                      ],
+                                      "position": [
+                                        -387500,
+                                        3772500,
+                                        382500
+                                      ],
+                                      "name": "Orbital area, medial part",
+                                      "labelIndex": 731,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            36,
+                                            138,
+                                            94
+                                          ],
+                                          "position": [
+                                            -157500,
+                                            4022500,
+                                            342500
+                                          ],
+                                          "name": "Orbital area, medial part, layer 1",
+                                          "labelIndex": 484,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            36,
+                                            138,
+                                            94
+                                          ],
+                                          "name": "Orbital area, medial part, layer 2",
+                                          "labelIndex": 524,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            36,
+                                            138,
+                                            94
+                                          ],
+                                          "position": [
+                                            -277500,
+                                            3842500,
+                                            322500
+                                          ],
+                                          "name": "Orbital area, medial part, layer 2/3",
+                                          "labelIndex": 582,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            36,
+                                            138,
+                                            94
+                                          ],
+                                          "position": [
+                                            -487500,
+                                            3682500,
+                                            442500
+                                          ],
+                                          "name": "Orbital area, medial part, layer 5",
+                                          "labelIndex": 620,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            36,
+                                            138,
+                                            94
+                                          ],
+                                          "position": [
+                                            -817500,
+                                            3312500,
+                                            442500
+                                          ],
+                                          "name": "Orbital area, medial part, layer 6a",
+                                          "labelIndex": 910,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            36,
+                                            138,
+                                            94
+                                          ],
+                                          "position": [
+                                            -1017500,
+                                            3072500,
+                                            442500
+                                          ],
+                                          "name": "Orbital area, medial part, layer 6b",
+                                          "labelIndex": 527696977,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        36,
+                                        138,
+                                        94
+                                      ],
+                                      "name": "Orbital area, ventral part",
+                                      "labelIndex": 738,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        36,
+                                        138,
+                                        94
+                                      ],
+                                      "position": [
+                                        -827500,
+                                        3802500,
+                                        342500
+                                      ],
+                                      "name": "Orbital area, ventrolateral part",
+                                      "labelIndex": 746,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            36,
+                                            138,
+                                            94
+                                          ],
+                                          "position": [
+                                            -707500,
+                                            4112500,
+                                            222500
+                                          ],
+                                          "name": "Orbital area, ventrolateral part, layer 1",
+                                          "labelIndex": 969,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            36,
+                                            138,
+                                            94
+                                          ],
+                                          "position": [
+                                            -767500,
+                                            3872500,
+                                            212500
+                                          ],
+                                          "name": "Orbital area, ventrolateral part, layer 2/3",
+                                          "labelIndex": 288,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            36,
+                                            138,
+                                            94
+                                          ],
+                                          "position": [
+                                            -877500,
+                                            3722500,
+                                            452500
+                                          ],
+                                          "name": "Orbital area, ventrolateral part, layer 5",
+                                          "labelIndex": 1125,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            36,
+                                            138,
+                                            94
+                                          ],
+                                          "position": [
+                                            -1047500,
+                                            3402500,
+                                            562500
+                                          ],
+                                          "name": "Orbital area, ventrolateral part, layer 6a",
+                                          "labelIndex": 608,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            36,
+                                            138,
+                                            94
+                                          ],
+                                          "position": [
+                                            -1097500,
+                                            3112500,
+                                            342500
+                                          ],
+                                          "name": "Orbital area, ventrolateral part, layer 6b",
+                                          "labelIndex": 680,
+                                          "children": []
+                                        }
+                                      ]
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    33,
+                                    152,
+                                    102
+                                  ],
+                                  "position": [
+                                    -3207500,
+                                    2272500,
+                                    -707500
+                                  ],
+                                  "name": "Agranular insular area",
+                                  "labelIndex": 95,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        33,
+                                        152,
+                                        102
+                                      ],
+                                      "position": [
+                                        -2757500,
+                                        3092500,
+                                        -317500
+                                      ],
+                                      "name": "Agranular insular area, dorsal part",
+                                      "labelIndex": 104,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            33,
+                                            152,
+                                            102
+                                          ],
+                                          "position": [
+                                            -2887500,
+                                            3522500,
+                                            -377500
+                                          ],
+                                          "name": "Agranular insular area, dorsal part, layer 1",
+                                          "labelIndex": 996,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            33,
+                                            152,
+                                            102
+                                          ],
+                                          "position": [
+                                            -2927500,
+                                            3282500,
+                                            -397500
+                                          ],
+                                          "name": "Agranular insular area, dorsal part, layer 2/3",
+                                          "labelIndex": 328,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            33,
+                                            152,
+                                            102
+                                          ],
+                                          "position": [
+                                            -2747500,
+                                            3062500,
+                                            -327500
+                                          ],
+                                          "name": "Agranular insular area, dorsal part, layer 5",
+                                          "labelIndex": 1101,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            33,
+                                            152,
+                                            102
+                                          ],
+                                          "position": [
+                                            -2547500,
+                                            2732500,
+                                            -167500
+                                          ],
+                                          "name": "Agranular insular area, dorsal part, layer 6a",
+                                          "labelIndex": 783,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            33,
+                                            152,
+                                            102
+                                          ],
+                                          "position": [
+                                            -2517500,
+                                            2512500,
+                                            -227500
+                                          ],
+                                          "name": "Agranular insular area, dorsal part, layer 6b",
+                                          "labelIndex": 831,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        33,
+                                        152,
+                                        102
+                                      ],
+                                      "position": [
+                                        -4217500,
+                                        592500,
+                                        -1137500
+                                      ],
+                                      "name": "Agranular insular area, posterior part",
+                                      "labelIndex": 111,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            33,
+                                            152,
+                                            102
+                                          ],
+                                          "position": [
+                                            -4527500,
+                                            722500,
+                                            -1247500
+                                          ],
+                                          "name": "Agranular insular area, posterior part, layer 1",
+                                          "labelIndex": 120,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            33,
+                                            152,
+                                            102
+                                          ],
+                                          "position": [
+                                            -4337500,
+                                            672500,
+                                            -1187500
+                                          ],
+                                          "name": "Agranular insular area, posterior part, layer 2/3",
+                                          "labelIndex": 163,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            33,
+                                            152,
+                                            102
+                                          ],
+                                          "position": [
+                                            -4117500,
+                                            562500,
+                                            -1087500
+                                          ],
+                                          "name": "Agranular insular area, posterior part, layer 5",
+                                          "labelIndex": 344,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            33,
+                                            152,
+                                            102
+                                          ],
+                                          "position": [
+                                            -3897500,
+                                            422500,
+                                            -1017500
+                                          ],
+                                          "name": "Agranular insular area, posterior part, layer 6a",
+                                          "labelIndex": 314,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            33,
+                                            152,
+                                            102
+                                          ],
+                                          "position": [
+                                            -3857500,
+                                            -157500,
+                                            -917500
+                                          ],
+                                          "name": "Agranular insular area, posterior part, layer 6b",
+                                          "labelIndex": 355,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        33,
+                                        152,
+                                        102
+                                      ],
+                                      "position": [
+                                        -2757500,
+                                        2842500,
+                                        -937500
+                                      ],
+                                      "name": "Agranular insular area, ventral part",
+                                      "labelIndex": 119,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            33,
+                                            152,
+                                            102
+                                          ],
+                                          "position": [
+                                            -2957500,
+                                            3202500,
+                                            -1067500
+                                          ],
+                                          "name": "Agranular insular area, ventral part, layer 1",
+                                          "labelIndex": 704,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            33,
+                                            152,
+                                            102
+                                          ],
+                                          "position": [
+                                            -2887500,
+                                            2902500,
+                                            -1057500
+                                          ],
+                                          "name": "Agranular insular area, ventral part, layer 2/3",
+                                          "labelIndex": 694,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            33,
+                                            152,
+                                            102
+                                          ],
+                                          "position": [
+                                            -2617500,
+                                            2812500,
+                                            -827500
+                                          ],
+                                          "name": "Agranular insular area, ventral part, layer 5",
+                                          "labelIndex": 800,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            33,
+                                            152,
+                                            102
+                                          ],
+                                          "position": [
+                                            -2727500,
+                                            2452500,
+                                            -967500
+                                          ],
+                                          "name": "Agranular insular area, ventral part, layer 6a",
+                                          "labelIndex": 675,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            33,
+                                            152,
+                                            102
+                                          ],
+                                          "position": [
+                                            -2147500,
+                                            2712500,
+                                            -267500
+                                          ],
+                                          "name": "Agranular insular area, ventral part, layer 6b",
+                                          "labelIndex": 699,
+                                          "children": []
+                                        }
+                                      ]
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    26,
+                                    166,
+                                    152
+                                  ],
+                                  "position": [
+                                    -857500,
+                                    -1387500,
+                                    2972500
+                                  ],
+                                  "name": "Retrosplenial area",
+                                  "labelIndex": 254,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        26,
+                                        166,
+                                        152
+                                      ],
+                                      "position": [
+                                        -1337500,
+                                        -1567500,
+                                        3142500
+                                      ],
+                                      "name": "Retrosplenial area, lateral agranular part",
+                                      "labelIndex": 894,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            26,
+                                            166,
+                                            152
+                                          ],
+                                          "position": [
+                                            -1387500,
+                                            -1897500,
+                                            3602500
+                                          ],
+                                          "name": "Retrosplenial area, lateral agranular part, layer 1",
+                                          "labelIndex": 671,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            26,
+                                            166,
+                                            152
+                                          ],
+                                          "position": [
+                                            -1377500,
+                                            -1627500,
+                                            3392500
+                                          ],
+                                          "name": "Retrosplenial area, lateral agranular part, layer 2/3",
+                                          "labelIndex": 965,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            26,
+                                            166,
+                                            152
+                                          ],
+                                          "position": [
+                                            -1307500,
+                                            -1427500,
+                                            3112500
+                                          ],
+                                          "name": "Retrosplenial area, lateral agranular part, layer 5",
+                                          "labelIndex": 774,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            26,
+                                            166,
+                                            152
+                                          ],
+                                          "position": [
+                                            -1327500,
+                                            -1397500,
+                                            2882500
+                                          ],
+                                          "name": "Retrosplenial area, lateral agranular part, layer 6a",
+                                          "labelIndex": 906,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            26,
+                                            166,
+                                            152
+                                          ],
+                                          "position": [
+                                            -1197500,
+                                            -977500,
+                                            2822500
+                                          ],
+                                          "name": "Retrosplenial area, lateral agranular part, layer 6b",
+                                          "labelIndex": 279,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            26,
+                                            166,
+                                            152
+                                          ],
+                                          "name": "Mediomedial anterior visual area",
+                                          "labelIndex": 480149258,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                26,
+                                                166,
+                                                152
+                                              ],
+                                              "name": "Mediomedial anterior visual area, layer 1",
+                                              "labelIndex": 480149262,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                26,
+                                                166,
+                                                152
+                                              ],
+                                              "name": "Mediomedial anterior visual area, layer 2/3",
+                                              "labelIndex": 480149266,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                26,
+                                                166,
+                                                152
+                                              ],
+                                              "name": "Mediomedial anterior visual area, layer 4",
+                                              "labelIndex": 480149270,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                26,
+                                                166,
+                                                152
+                                              ],
+                                              "name": "Mediomedial anterior visual area,layer 5",
+                                              "labelIndex": 480149274,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                26,
+                                                166,
+                                                152
+                                              ],
+                                              "name": "Mediomedial anterior visual area, layer 6a",
+                                              "labelIndex": 480149278,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                26,
+                                                166,
+                                                152
+                                              ],
+                                              "name": "Mediomedial anterior visual area, layer 6b",
+                                              "labelIndex": 480149282,
+                                              "children": []
+                                            }
+                                          ]
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            26,
+                                            166,
+                                            152
+                                          ],
+                                          "name": "Mediomedial posterior visual area",
+                                          "labelIndex": 480149286,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                26,
+                                                166,
+                                                152
+                                              ],
+                                              "name": "Mediomedial posterior visual area, layer 1",
+                                              "labelIndex": 480149290,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                26,
+                                                166,
+                                                152
+                                              ],
+                                              "name": "Mediomedial posterior visual area, layer 2/3",
+                                              "labelIndex": 480149294,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                26,
+                                                166,
+                                                152
+                                              ],
+                                              "name": "Mediomedial posterior visual area, layer 4",
+                                              "labelIndex": 480149298,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                26,
+                                                166,
+                                                152
+                                              ],
+                                              "name": "Mediomedial posterior visual area,layer 5",
+                                              "labelIndex": 480149302,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                26,
+                                                166,
+                                                152
+                                              ],
+                                              "name": "Mediomedial posterior visual area, layer 6a",
+                                              "labelIndex": 480149306,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                26,
+                                                166,
+                                                152
+                                              ],
+                                              "name": "Mediomedial posterior visual area, layer 6b",
+                                              "labelIndex": 480149310,
+                                              "children": []
+                                            }
+                                          ]
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            26,
+                                            166,
+                                            152
+                                          ],
+                                          "name": "Medial visual area",
+                                          "labelIndex": 480149314,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                26,
+                                                166,
+                                                152
+                                              ],
+                                              "name": "Medial visual area, layer 1",
+                                              "labelIndex": 480149318,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                26,
+                                                166,
+                                                152
+                                              ],
+                                              "name": "Medial visual area, layer 2/3",
+                                              "labelIndex": 480149322,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                26,
+                                                166,
+                                                152
+                                              ],
+                                              "name": "Medial visual area, layer 4",
+                                              "labelIndex": 480149326,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                26,
+                                                166,
+                                                152
+                                              ],
+                                              "name": "Medial visual area,layer 5",
+                                              "labelIndex": 480149330,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                26,
+                                                166,
+                                                152
+                                              ],
+                                              "name": "Medial visual area, layer 6a",
+                                              "labelIndex": 480149334,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                26,
+                                                166,
+                                                152
+                                              ],
+                                              "name": "Medial visual area, layer 6b",
+                                              "labelIndex": 480149338,
+                                              "children": []
+                                            }
+                                          ]
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        26,
+                                        166,
+                                        152
+                                      ],
+                                      "position": [
+                                        -917500,
+                                        -1457500,
+                                        3162500
+                                      ],
+                                      "name": "Retrosplenial area, dorsal part",
+                                      "labelIndex": 879,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            26,
+                                            166,
+                                            152
+                                          ],
+                                          "position": [
+                                            -777500,
+                                            -1667500,
+                                            3682500
+                                          ],
+                                          "name": "Retrosplenial area, dorsal part, layer 1",
+                                          "labelIndex": 442,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            26,
+                                            166,
+                                            152
+                                          ],
+                                          "position": [
+                                            -817500,
+                                            -1387500,
+                                            3532500
+                                          ],
+                                          "name": "Retrosplenial area, dorsal part, layer 2/3",
+                                          "labelIndex": 434,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            26,
+                                            166,
+                                            152
+                                          ],
+                                          "position": [
+                                            -2537500,
+                                            -3457500,
+                                            1892500
+                                          ],
+                                          "name": "Retrosplenial area, dorsal part, layer 4",
+                                          "labelIndex": 545,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            26,
+                                            166,
+                                            152
+                                          ],
+                                          "position": [
+                                            -987500,
+                                            -1427500,
+                                            3262500
+                                          ],
+                                          "name": "Retrosplenial area, dorsal part, layer 5",
+                                          "labelIndex": 610,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            26,
+                                            166,
+                                            152
+                                          ],
+                                          "position": [
+                                            -1097500,
+                                            -1407500,
+                                            2982500
+                                          ],
+                                          "name": "Retrosplenial area, dorsal part, layer 6a",
+                                          "labelIndex": 274,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            26,
+                                            166,
+                                            152
+                                          ],
+                                          "position": [
+                                            -1007500,
+                                            -997500,
+                                            2902500
+                                          ],
+                                          "name": "Retrosplenial area, dorsal part, layer 6b",
+                                          "labelIndex": 330,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        26,
+                                        166,
+                                        152
+                                      ],
+                                      "position": [
+                                        -537500,
+                                        -1227500,
+                                        2702500
+                                      ],
+                                      "name": "Retrosplenial area, ventral part",
+                                      "labelIndex": 886,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            26,
+                                            166,
+                                            152
+                                          ],
+                                          "position": [
+                                            -127500,
+                                            -1247500,
+                                            2682500
+                                          ],
+                                          "name": "Retrosplenial area, ventral part, layer 1",
+                                          "labelIndex": 542,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            26,
+                                            166,
+                                            152
+                                          ],
+                                          "name": "Retrosplenial area, ventral part, layer 2",
+                                          "labelIndex": 606,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            26,
+                                            166,
+                                            152
+                                          ],
+                                          "position": [
+                                            -247500,
+                                            -1167500,
+                                            2722500
+                                          ],
+                                          "name": "Retrosplenial area, ventral part, layer 2/3",
+                                          "labelIndex": 430,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            26,
+                                            166,
+                                            152
+                                          ],
+                                          "position": [
+                                            -547500,
+                                            -1237500,
+                                            2712500
+                                          ],
+                                          "name": "Retrosplenial area, ventral part, layer 5",
+                                          "labelIndex": 687,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            26,
+                                            166,
+                                            152
+                                          ],
+                                          "position": [
+                                            -827500,
+                                            -1337500,
+                                            2702500
+                                          ],
+                                          "name": "Retrosplenial area, ventral part, layer 6a",
+                                          "labelIndex": 590,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            26,
+                                            166,
+                                            152
+                                          ],
+                                          "position": [
+                                            -647500,
+                                            -727500,
+                                            2702500
+                                          ],
+                                          "name": "Retrosplenial area, ventral part, layer 6b",
+                                          "labelIndex": 622,
+                                          "children": []
+                                        }
+                                      ]
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    0,
+                                    159,
+                                    172
+                                  ],
+                                  "position": [
+                                    -2497500,
+                                    -917500,
+                                    2942500
+                                  ],
+                                  "name": "Posterior parietal association areas",
+                                  "labelIndex": 22,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        0,
+                                        159,
+                                        172
+                                      ],
+                                      "name": "Posterior parietal association areas, layer 1",
+                                      "labelIndex": 532,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        0,
+                                        159,
+                                        172
+                                      ],
+                                      "name": "Posterior parietal association areas, layer 2/3",
+                                      "labelIndex": 241,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        0,
+                                        159,
+                                        172
+                                      ],
+                                      "name": "Posterior parietal association areas, layer 4",
+                                      "labelIndex": 635,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        0,
+                                        159,
+                                        172
+                                      ],
+                                      "name": "Posterior parietal association areas, layer 5",
+                                      "labelIndex": 683,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        0,
+                                        159,
+                                        172
+                                      ],
+                                      "name": "Posterior parietal association areas, layer 6a",
+                                      "labelIndex": 308,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        0,
+                                        159,
+                                        172
+                                      ],
+                                      "name": "Posterior parietal association areas, layer 6b",
+                                      "labelIndex": 340,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        0,
+                                        159,
+                                        172
+                                      ],
+                                      "position": [
+                                        -2067500,
+                                        -687500,
+                                        3102500
+                                      ],
+                                      "name": "Anterior area",
+                                      "labelIndex": 312782546,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            0,
+                                            159,
+                                            172
+                                          ],
+                                          "position": [
+                                            -2187500,
+                                            -647500,
+                                            3432500
+                                          ],
+                                          "name": "Anterior area, layer 1",
+                                          "labelIndex": 312782550,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            0,
+                                            159,
+                                            172
+                                          ],
+                                          "position": [
+                                            -2107500,
+                                            -647500,
+                                            3262500
+                                          ],
+                                          "name": "Anterior area, layer 2/3",
+                                          "labelIndex": 312782554,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            0,
+                                            159,
+                                            172
+                                          ],
+                                          "position": [
+                                            -2137500,
+                                            -697500,
+                                            3082500
+                                          ],
+                                          "name": "Anterior area, layer 4",
+                                          "labelIndex": 312782558,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            0,
+                                            159,
+                                            172
+                                          ],
+                                          "position": [
+                                            -1987500,
+                                            -707500,
+                                            2962500
+                                          ],
+                                          "name": "Anterior area, layer 5",
+                                          "labelIndex": 312782562,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            0,
+                                            159,
+                                            172
+                                          ],
+                                          "position": [
+                                            -1947500,
+                                            -757500,
+                                            2762500
+                                          ],
+                                          "name": "Anterior area, layer 6a",
+                                          "labelIndex": 312782566,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            0,
+                                            159,
+                                            172
+                                          ],
+                                          "position": [
+                                            -1937500,
+                                            -787500,
+                                            2672500
+                                          ],
+                                          "name": "Anterior area, layer 6b",
+                                          "labelIndex": 312782570,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        0,
+                                        159,
+                                        172
+                                      ],
+                                      "position": [
+                                        -3117500,
+                                        -1237500,
+                                        2722500
+                                      ],
+                                      "name": "Rostrolateral visual area",
+                                      "labelIndex": 417,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            0,
+                                            159,
+                                            172
+                                          ],
+                                          "position": [
+                                            -3287500,
+                                            -1207500,
+                                            3032500
+                                          ],
+                                          "name": "Rostrolateral area, layer 1",
+                                          "labelIndex": 312782604,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            0,
+                                            159,
+                                            172
+                                          ],
+                                          "position": [
+                                            -3207500,
+                                            -1217500,
+                                            2872500
+                                          ],
+                                          "name": "Rostrolateral area, layer 2/3",
+                                          "labelIndex": 312782608,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            0,
+                                            159,
+                                            172
+                                          ],
+                                          "position": [
+                                            -3137500,
+                                            -1227500,
+                                            2722500
+                                          ],
+                                          "name": "Rostrolateral area, layer 4",
+                                          "labelIndex": 312782612,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            0,
+                                            159,
+                                            172
+                                          ],
+                                          "position": [
+                                            -3037500,
+                                            -1257500,
+                                            2572500
+                                          ],
+                                          "name": "Rostrolateral area, layer 5",
+                                          "labelIndex": 312782616,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            0,
+                                            159,
+                                            172
+                                          ],
+                                          "position": [
+                                            -2927500,
+                                            -1267500,
+                                            2412500
+                                          ],
+                                          "name": "Rostrolateral area, layer 6a",
+                                          "labelIndex": 312782620,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            0,
+                                            159,
+                                            172
+                                          ],
+                                          "position": [
+                                            -2877500,
+                                            -1277500,
+                                            2332500
+                                          ],
+                                          "name": "Rostrolateral area, layer 6b",
+                                          "labelIndex": 312782624,
+                                          "children": []
+                                        }
+                                      ]
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    21,
+                                    176,
+                                    179
+                                  ],
+                                  "position": [
+                                    -4637500,
+                                    -1777500,
+                                    382500
+                                  ],
+                                  "name": "Temporal association areas",
+                                  "labelIndex": 541,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        21,
+                                        176,
+                                        179
+                                      ],
+                                      "position": [
+                                        -5067500,
+                                        -1887500,
+                                        472500
+                                      ],
+                                      "name": "Temporal association areas, layer 1",
+                                      "labelIndex": 97,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        21,
+                                        176,
+                                        179
+                                      ],
+                                      "position": [
+                                        -4927500,
+                                        -1827500,
+                                        432500
+                                      ],
+                                      "name": "Temporal association areas, layer 2/3",
+                                      "labelIndex": 1127,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        21,
+                                        176,
+                                        179
+                                      ],
+                                      "position": [
+                                        -4827500,
+                                        -1967500,
+                                        512500
+                                      ],
+                                      "name": "Temporal association areas, layer 4",
+                                      "labelIndex": 234,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        21,
+                                        176,
+                                        179
+                                      ],
+                                      "position": [
+                                        -4537500,
+                                        -1777500,
+                                        362500
+                                      ],
+                                      "name": "Temporal association areas, layer 5",
+                                      "labelIndex": 289,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        21,
+                                        176,
+                                        179
+                                      ],
+                                      "position": [
+                                        -4357500,
+                                        -1607500,
+                                        252500
+                                      ],
+                                      "name": "Temporal association areas, layer 6a",
+                                      "labelIndex": 729,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        21,
+                                        176,
+                                        179
+                                      ],
+                                      "position": [
+                                        -4357500,
+                                        -1807500,
+                                        342500
+                                      ],
+                                      "name": "Temporal association areas, layer 6b",
+                                      "labelIndex": 786,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    14,
+                                    150,
+                                    132
+                                  ],
+                                  "position": [
+                                    -4707500,
+                                    -1667500,
+                                    -537500
+                                  ],
+                                  "name": "Perirhinal area",
+                                  "labelIndex": 922,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        14,
+                                        150,
+                                        132
+                                      ],
+                                      "position": [
+                                        -4937500,
+                                        -1577500,
+                                        -597500
+                                      ],
+                                      "name": "Perirhinal area, layer 1",
+                                      "labelIndex": 540,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        14,
+                                        150,
+                                        132
+                                      ],
+                                      "position": [
+                                        -4727500,
+                                        -1607500,
+                                        -577500
+                                      ],
+                                      "name": "Perirhinal area, layer 2/3",
+                                      "labelIndex": 888,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        14,
+                                        150,
+                                        132
+                                      ],
+                                      "position": [
+                                        -4497500,
+                                        -1727500,
+                                        -497500
+                                      ],
+                                      "name": "Perirhinal area, layer 5",
+                                      "labelIndex": 692,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        14,
+                                        150,
+                                        132
+                                      ],
+                                      "position": [
+                                        -4377500,
+                                        -2107500,
+                                        -297500
+                                      ],
+                                      "name": "Perirhinal area, layer 6a",
+                                      "labelIndex": 335,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        14,
+                                        150,
+                                        132
+                                      ],
+                                      "position": [
+                                        -4347500,
+                                        -2227500,
+                                        -227500
+                                      ],
+                                      "name": "Perirhinal area, layer 6b",
+                                      "labelIndex": 368,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    13,
+                                    159,
+                                    145
+                                  ],
+                                  "position": [
+                                    -4617500,
+                                    -1467500,
+                                    -337500
+                                  ],
+                                  "name": "Ectorhinal area",
+                                  "labelIndex": 895,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        13,
+                                        159,
+                                        145
+                                      ],
+                                      "position": [
+                                        -5017500,
+                                        -1557500,
+                                        -297500
+                                      ],
+                                      "name": "Ectorhinal area/Layer 1",
+                                      "labelIndex": 836,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        13,
+                                        159,
+                                        145
+                                      ],
+                                      "position": [
+                                        -4807500,
+                                        -1507500,
+                                        -297500
+                                      ],
+                                      "name": "Ectorhinal area/Layer 2/3",
+                                      "labelIndex": 427,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        13,
+                                        159,
+                                        145
+                                      ],
+                                      "position": [
+                                        -4537500,
+                                        -1427500,
+                                        -357500
+                                      ],
+                                      "name": "Ectorhinal area/Layer 5",
+                                      "labelIndex": 988,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        13,
+                                        159,
+                                        145
+                                      ],
+                                      "position": [
+                                        -4307500,
+                                        -1397500,
+                                        -387500
+                                      ],
+                                      "name": "Ectorhinal area/Layer 6a",
+                                      "labelIndex": 977,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        13,
+                                        159,
+                                        145
+                                      ],
+                                      "position": [
+                                        -4267500,
+                                        -1567500,
+                                        -317500
+                                      ],
+                                      "name": "Ectorhinal area/Layer 6b",
+                                      "labelIndex": 1045,
+                                      "children": []
+                                    }
+                                  ]
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                154,
+                                210,
+                                189
+                              ],
+                              "position": [
+                                -1877500,
+                                3042500,
+                                -1297500
+                              ],
+                              "name": "Olfactory areas",
+                              "labelIndex": 698,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    154,
+                                    210,
+                                    189
+                                  ],
+                                  "position": [
+                                    -917500,
+                                    5192500,
+                                    -427500
+                                  ],
+                                  "name": "Main olfactory bulb",
+                                  "labelIndex": 507,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        130,
+                                        199,
+                                        174
+                                      ],
+                                      "name": "Main olfactory bulb, glomerular layer",
+                                      "labelIndex": 212,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        130,
+                                        199,
+                                        174
+                                      ],
+                                      "name": "Main olfactory bulb, granule layer",
+                                      "labelIndex": 220,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        154,
+                                        210,
+                                        189
+                                      ],
+                                      "name": "Main olfactory bulb, inner plexiform layer",
+                                      "labelIndex": 228,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        130,
+                                        199,
+                                        174
+                                      ],
+                                      "name": "Main olfactory bulb, mitral layer",
+                                      "labelIndex": 236,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        154,
+                                        210,
+                                        189
+                                      ],
+                                      "name": "Main olfactory bulb, outer plexiform layer",
+                                      "labelIndex": 244,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    157,
+                                    240,
+                                    210
+                                  ],
+                                  "position": [
+                                    -1187500,
+                                    4642500,
+                                    302500
+                                  ],
+                                  "name": "Accessory olfactory bulb",
+                                  "labelIndex": 151,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        157,
+                                        240,
+                                        210
+                                      ],
+                                      "position": [
+                                        -1167500,
+                                        4462500,
+                                        472500
+                                      ],
+                                      "name": "Accessory olfactory bulb, glomerular layer",
+                                      "labelIndex": 188,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        149,
+                                        228,
+                                        200
+                                      ],
+                                      "position": [
+                                        -1197500,
+                                        4822500,
+                                        152500
+                                      ],
+                                      "name": "Accessory olfactory bulb, granular layer",
+                                      "labelIndex": 196,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        157,
+                                        240,
+                                        210
+                                      ],
+                                      "position": [
+                                        -1177500,
+                                        4602500,
+                                        322500
+                                      ],
+                                      "name": "Accessory olfactory bulb, mitral layer",
+                                      "labelIndex": 204,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    84,
+                                    191,
+                                    148
+                                  ],
+                                  "position": [
+                                    -1107500,
+                                    3752500,
+                                    -1197500
+                                  ],
+                                  "name": "Anterior olfactory nucleus",
+                                  "labelIndex": 159,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        84,
+                                        191,
+                                        148
+                                      ],
+                                      "name": "Anterior olfactory nucleus, dorsal part",
+                                      "labelIndex": 167,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        84,
+                                        191,
+                                        148
+                                      ],
+                                      "name": "Anterior olfactory nucleus, external part",
+                                      "labelIndex": 175,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        84,
+                                        191,
+                                        148
+                                      ],
+                                      "name": "Anterior olfactory nucleus, lateral part",
+                                      "labelIndex": 183,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        84,
+                                        191,
+                                        148
+                                      ],
+                                      "name": "Anterior olfactory nucleus, medial part",
+                                      "labelIndex": 191,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        84,
+                                        191,
+                                        148
+                                      ],
+                                      "name": "Anterior olfactory nucleus, posteroventral part",
+                                      "labelIndex": 199,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        84,
+                                        191,
+                                        148
+                                      ],
+                                      "name": "Anterior olfactory nucleus, layer 1",
+                                      "labelIndex": 160,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        84,
+                                        191,
+                                        148
+                                      ],
+                                      "name": "Anterior olfactory nucleus, layer 2",
+                                      "labelIndex": 168,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    98,
+                                    208,
+                                    159
+                                  ],
+                                  "position": [
+                                    -347500,
+                                    3262500,
+                                    -1467500
+                                  ],
+                                  "name": "Taenia tecta",
+                                  "labelIndex": 589,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        98,
+                                        208,
+                                        159
+                                      ],
+                                      "position": [
+                                        -287500,
+                                        3062500,
+                                        -847500
+                                      ],
+                                      "name": "Taenia tecta, dorsal part",
+                                      "labelIndex": 597,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            98,
+                                            208,
+                                            159
+                                          ],
+                                          "name": "Taenia tecta, dorsal part, layers 1-4",
+                                          "labelIndex": 297,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            98,
+                                            208,
+                                            159
+                                          ],
+                                          "name": "Taenia tecta, dorsal part, layer 1",
+                                          "labelIndex": 1034,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            98,
+                                            208,
+                                            159
+                                          ],
+                                          "name": "Taenia tecta, dorsal part, layer 2",
+                                          "labelIndex": 1042,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            98,
+                                            208,
+                                            159
+                                          ],
+                                          "name": "Taenia tecta, dorsal part, layer 3",
+                                          "labelIndex": 1050,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            98,
+                                            208,
+                                            159
+                                          ],
+                                          "name": "Taenia tecta, dorsal part, layer 4",
+                                          "labelIndex": 1059,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        98,
+                                        208,
+                                        159
+                                      ],
+                                      "position": [
+                                        -467500,
+                                        3502500,
+                                        -2127500
+                                      ],
+                                      "name": "Taenia tecta, ventral part",
+                                      "labelIndex": 605,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            98,
+                                            208,
+                                            159
+                                          ],
+                                          "name": "Taenia tecta, ventral part, layers 1-3",
+                                          "labelIndex": 306,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            98,
+                                            208,
+                                            159
+                                          ],
+                                          "name": "Taenia tecta, ventral part, layer 1",
+                                          "labelIndex": 1067,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            98,
+                                            208,
+                                            159
+                                          ],
+                                          "name": "Taenia tecta, ventral part, layer 2",
+                                          "labelIndex": 1075,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            98,
+                                            208,
+                                            159
+                                          ],
+                                          "name": "Taenia tecta, ventral part, layer 3",
+                                          "labelIndex": 1082,
+                                          "children": []
+                                        }
+                                      ]
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    164,
+                                    218,
+                                    164
+                                  ],
+                                  "position": [
+                                    -407500,
+                                    2922500,
+                                    -327500
+                                  ],
+                                  "name": "Dorsal peduncular area",
+                                  "labelIndex": 814,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        164,
+                                        218,
+                                        164
+                                      ],
+                                      "name": "Dorsal peduncular area, layer 1",
+                                      "labelIndex": 496,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        164,
+                                        218,
+                                        164
+                                      ],
+                                      "name": "Dorsal peduncular area, layer 2",
+                                      "labelIndex": 535,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        164,
+                                        218,
+                                        164
+                                      ],
+                                      "name": "Dorsal peduncular area, layer 2/3",
+                                      "labelIndex": 360,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        164,
+                                        218,
+                                        164
+                                      ],
+                                      "name": "Dorsal peduncular area, layer 5",
+                                      "labelIndex": 646,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        164,
+                                        218,
+                                        164
+                                      ],
+                                      "name": "Dorsal peduncular area, layer 6a",
+                                      "labelIndex": 267,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    106,
+                                    203,
+                                    186
+                                  ],
+                                  "position": [
+                                    -3407500,
+                                    942500,
+                                    -2087500
+                                  ],
+                                  "name": "Piriform area",
+                                  "labelIndex": 961,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        106,
+                                        203,
+                                        186
+                                      ],
+                                      "name": "Piriform area, layers 1-3",
+                                      "labelIndex": 152,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        106,
+                                        203,
+                                        186
+                                      ],
+                                      "name": "Piriform area, molecular layer",
+                                      "labelIndex": 276,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        106,
+                                        203,
+                                        186
+                                      ],
+                                      "name": "Piriform area, pyramidal layer",
+                                      "labelIndex": 284,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        106,
+                                        203,
+                                        186
+                                      ],
+                                      "name": "Piriform area, polymorph layer",
+                                      "labelIndex": 291,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    149,
+                                    228,
+                                    200
+                                  ],
+                                  "position": [
+                                    -2137500,
+                                    502500,
+                                    -2947500
+                                  ],
+                                  "name": "Nucleus of the lateral olfactory tract",
+                                  "labelIndex": 619,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        149,
+                                        228,
+                                        200
+                                      ],
+                                      "name": "Nucleus of the lateral olfactory tract, layers 1-3",
+                                      "labelIndex": 392,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        149,
+                                        228,
+                                        200
+                                      ],
+                                      "position": [
+                                        -2077500,
+                                        512500,
+                                        -3177500
+                                      ],
+                                      "name": "Nucleus of the lateral olfactory tract, molecular layer",
+                                      "labelIndex": 260,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        149,
+                                        228,
+                                        200
+                                      ],
+                                      "position": [
+                                        -2147500,
+                                        492500,
+                                        -2897500
+                                      ],
+                                      "name": "Nucleus of the lateral olfactory tract, pyramidal layer",
+                                      "labelIndex": 268,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        149,
+                                        228,
+                                        200
+                                      ],
+                                      "position": [
+                                        -2207500,
+                                        522500,
+                                        -2687500
+                                      ],
+                                      "name": "Nucleus of the lateral olfactory tract, layer 3",
+                                      "labelIndex": 1139,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    97,
+                                    231,
+                                    183
+                                  ],
+                                  "position": [
+                                    -2847500,
+                                    -947500,
+                                    -2887500
+                                  ],
+                                  "name": "Cortical amygdalar area",
+                                  "labelIndex": 631,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        97,
+                                        231,
+                                        183
+                                      ],
+                                      "position": [
+                                        -2547500,
+                                        212500,
+                                        -3137500
+                                      ],
+                                      "name": "Cortical amygdalar area, anterior part",
+                                      "labelIndex": 639,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            97,
+                                            231,
+                                            183
+                                          ],
+                                          "name": "Cortical amygdalar area, anterior part, layer 1",
+                                          "labelIndex": 192,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            97,
+                                            231,
+                                            183
+                                          ],
+                                          "name": "Cortical amygdalar area, anterior part, layer 2",
+                                          "labelIndex": 200,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            97,
+                                            231,
+                                            183
+                                          ],
+                                          "name": "Cortical amygdalar area, anterior part, layer 3",
+                                          "labelIndex": 208,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        97,
+                                        231,
+                                        183
+                                      ],
+                                      "position": [
+                                        -2947500,
+                                        -1307500,
+                                        -2817500
+                                      ],
+                                      "name": "Cortical amygdalar area, posterior part",
+                                      "labelIndex": 647,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            97,
+                                            231,
+                                            183
+                                          ],
+                                          "position": [
+                                            -3167500,
+                                            -1187500,
+                                            -2927500
+                                          ],
+                                          "name": "Cortical amygdalar area, posterior part, lateral zone",
+                                          "labelIndex": 655,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                97,
+                                                231,
+                                                183
+                                              ],
+                                              "name": "Cortical amygdalar area, posterior part, lateral zone, layers 1-2",
+                                              "labelIndex": 584,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                97,
+                                                231,
+                                                183
+                                              ],
+                                              "name": "Cortical amygdalar area, posterior part, lateral zone, layers 1-3",
+                                              "labelIndex": 376,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                97,
+                                                231,
+                                                183
+                                              ],
+                                              "name": "Cortical amygdalar area, posterior part, lateral zone, layer 1",
+                                              "labelIndex": 216,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                97,
+                                                231,
+                                                183
+                                              ],
+                                              "name": "Cortical amygdalar area, posterior part, lateral zone, layer 2",
+                                              "labelIndex": 224,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                97,
+                                                231,
+                                                183
+                                              ],
+                                              "name": "Cortical amygdalar area, posterior part, lateral zone, layer 3",
+                                              "labelIndex": 232,
+                                              "children": []
+                                            }
+                                          ]
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            97,
+                                            231,
+                                            183
+                                          ],
+                                          "position": [
+                                            -2727500,
+                                            -1417500,
+                                            -2707500
+                                          ],
+                                          "name": "Cortical amygdalar area, posterior part, medial zone",
+                                          "labelIndex": 663,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                97,
+                                                231,
+                                                183
+                                              ],
+                                              "name": "Cortical amygdalar area, posterior part, medial zone, layers 1-2",
+                                              "labelIndex": 592,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                97,
+                                                231,
+                                                183
+                                              ],
+                                              "name": "Cortical amygdalar area, posterior part, medial zone, layers 1-3",
+                                              "labelIndex": 383,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                97,
+                                                231,
+                                                183
+                                              ],
+                                              "name": "Cortical amygdalar area, posterior part, medial zone, layer 1",
+                                              "labelIndex": 240,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                97,
+                                                231,
+                                                183
+                                              ],
+                                              "name": "Cortical amygdalar area, posterior part, medial zone, layer 2",
+                                              "labelIndex": 248,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                97,
+                                                231,
+                                                183
+                                              ],
+                                              "name": "Cortical amygdalar area, posterior part, medial zone, layer 3",
+                                              "labelIndex": 256,
+                                              "children": []
+                                            }
+                                          ]
+                                        }
+                                      ]
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    89,
+                                    218,
+                                    171
+                                  ],
+                                  "position": [
+                                    -3267500,
+                                    -207500,
+                                    -3187500
+                                  ],
+                                  "name": "Piriform-amygdalar area",
+                                  "labelIndex": 788,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        89,
+                                        218,
+                                        171
+                                      ],
+                                      "name": "Piriform-amygdalar area, layers 1-3",
+                                      "labelIndex": 400,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        89,
+                                        218,
+                                        171
+                                      ],
+                                      "name": "Piriform-amygdalar area, molecular layer",
+                                      "labelIndex": 408,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        89,
+                                        218,
+                                        171
+                                      ],
+                                      "name": "Piriform-amygdalar area, pyramidal layer",
+                                      "labelIndex": 416,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        89,
+                                        218,
+                                        171
+                                      ],
+                                      "name": "Piriform-amygdalar area, polymorph layer",
+                                      "labelIndex": 424,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    168,
+                                    236,
+                                    211
+                                  ],
+                                  "position": [
+                                    -3877500,
+                                    -1897500,
+                                    -2267500
+                                  ],
+                                  "name": "Postpiriform transition area",
+                                  "labelIndex": 566,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        168,
+                                        236,
+                                        211
+                                      ],
+                                      "name": "Postpiriform transition area, layers 1-3",
+                                      "labelIndex": 517,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        168,
+                                        236,
+                                        211
+                                      ],
+                                      "name": "Postpiriform transition area, layers 1",
+                                      "labelIndex": 1140,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        168,
+                                        236,
+                                        211
+                                      ],
+                                      "name": "Postpiriform transition area, layers 2",
+                                      "labelIndex": 1141,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        168,
+                                        236,
+                                        211
+                                      ],
+                                      "name": "Postpiriform transition area, layers 3",
+                                      "labelIndex": 1142,
+                                      "children": []
+                                    }
+                                  ]
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                126,
+                                208,
+                                75
+                              ],
+                              "position": [
+                                -2967500,
+                                -1937500,
+                                292500
+                              ],
+                              "name": "Hippocampal formation",
+                              "labelIndex": 1089,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    126,
+                                    208,
+                                    75
+                                  ],
+                                  "position": [
+                                    -2667500,
+                                    -1407500,
+                                    722500
+                                  ],
+                                  "name": "Hippocampal region",
+                                  "labelIndex": 1080,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        126,
+                                        208,
+                                        75
+                                      ],
+                                      "position": [
+                                        -2747500,
+                                        -1347500,
+                                        622500
+                                      ],
+                                      "name": "Ammon's horn",
+                                      "labelIndex": 375,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            126,
+                                            208,
+                                            75
+                                          ],
+                                          "position": [
+                                            -3087500,
+                                            -1417500,
+                                            1082500
+                                          ],
+                                          "name": "Field CA1",
+                                          "labelIndex": 382,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                126,
+                                                208,
+                                                75
+                                              ],
+                                              "name": "Field CA1, stratum lacunosum-moleculare",
+                                              "labelIndex": 391,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                126,
+                                                208,
+                                                75
+                                              ],
+                                              "name": "Field CA1, stratum oriens",
+                                              "labelIndex": 399,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                102,
+                                                168,
+                                                61
+                                              ],
+                                              "name": "Field CA1, pyramidal layer",
+                                              "labelIndex": 407,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                126,
+                                                208,
+                                                75
+                                              ],
+                                              "name": "Field CA1, stratum radiatum",
+                                              "labelIndex": 415,
+                                              "children": []
+                                            }
+                                          ]
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            126,
+                                            208,
+                                            75
+                                          ],
+                                          "position": [
+                                            -2997500,
+                                            -1267500,
+                                            1152500
+                                          ],
+                                          "name": "Field CA2",
+                                          "labelIndex": 423,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                126,
+                                                208,
+                                                75
+                                              ],
+                                              "name": "Field CA2, stratum lacunosum-moleculare",
+                                              "labelIndex": 431,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                126,
+                                                208,
+                                                75
+                                              ],
+                                              "name": "Field CA2, stratum oriens",
+                                              "labelIndex": 438,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                102,
+                                                168,
+                                                61
+                                              ],
+                                              "name": "Field CA2, pyramidal layer",
+                                              "labelIndex": 446,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                126,
+                                                208,
+                                                75
+                                              ],
+                                              "name": "Field CA2, stratum radiatum",
+                                              "labelIndex": 454,
+                                              "children": []
+                                            }
+                                          ]
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            126,
+                                            208,
+                                            75
+                                          ],
+                                          "position": [
+                                            -2907500,
+                                            -1277500,
+                                            382500
+                                          ],
+                                          "name": "Field CA3",
+                                          "labelIndex": 463,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                126,
+                                                208,
+                                                75
+                                              ],
+                                              "name": "Field CA3, stratum lacunosum-moleculare",
+                                              "labelIndex": 471,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                126,
+                                                208,
+                                                75
+                                              ],
+                                              "name": "Field CA3, stratum lucidum",
+                                              "labelIndex": 479,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                126,
+                                                208,
+                                                75
+                                              ],
+                                              "name": "Field CA3, stratum oriens",
+                                              "labelIndex": 486,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                102,
+                                                168,
+                                                61
+                                              ],
+                                              "name": "Field CA3, pyramidal layer",
+                                              "labelIndex": 495,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                126,
+                                                208,
+                                                75
+                                              ],
+                                              "name": "Field CA3, stratum radiatum",
+                                              "labelIndex": 504,
+                                              "children": []
+                                            }
+                                          ]
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        126,
+                                        208,
+                                        75
+                                      ],
+                                      "position": [
+                                        -2347500,
+                                        -1597500,
+                                        892500
+                                      ],
+                                      "name": "Dentate gyrus",
+                                      "labelIndex": 726,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            126,
+                                            208,
+                                            75
+                                          ],
+                                          "position": [
+                                            -2367500,
+                                            -1627500,
+                                            852500
+                                          ],
+                                          "name": "Dentate gyrus, molecular layer",
+                                          "labelIndex": 10703,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            126,
+                                            208,
+                                            75
+                                          ],
+                                          "position": [
+                                            -2637500,
+                                            -1817500,
+                                            852500
+                                          ],
+                                          "name": "Dentate gyrus, polymorph layer",
+                                          "labelIndex": 10704,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            102,
+                                            168,
+                                            61
+                                          ],
+                                          "position": [
+                                            -2387500,
+                                            -1487500,
+                                            1072500
+                                          ],
+                                          "name": "Dentate gyrus, granule cell layer",
+                                          "labelIndex": 632,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            126,
+                                            208,
+                                            75
+                                          ],
+                                          "name": "Dentate gyrus, subgranular zone",
+                                          "labelIndex": 10702,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            126,
+                                            208,
+                                            75
+                                          ],
+                                          "name": "Dentate gyrus crest",
+                                          "labelIndex": 734,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                126,
+                                                208,
+                                                75
+                                              ],
+                                              "name": "Dentate gyrus crest, molecular layer",
+                                              "labelIndex": 742,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                126,
+                                                208,
+                                                75
+                                              ],
+                                              "name": "Dentate gyrus crest, polymorph layer",
+                                              "labelIndex": 751,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                126,
+                                                208,
+                                                75
+                                              ],
+                                              "name": "Dentate gyrus crest, granule cell layer",
+                                              "labelIndex": 758,
+                                              "children": []
+                                            }
+                                          ]
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            126,
+                                            208,
+                                            75
+                                          ],
+                                          "name": "Dentate gyrus lateral blade",
+                                          "labelIndex": 766,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                126,
+                                                208,
+                                                75
+                                              ],
+                                              "name": "Dentate gyrus lateral blade, molecular layer",
+                                              "labelIndex": 775,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                126,
+                                                208,
+                                                75
+                                              ],
+                                              "name": "Dentate gyrus lateral blade, polymorph layer",
+                                              "labelIndex": 782,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                126,
+                                                208,
+                                                75
+                                              ],
+                                              "name": "Dentate gyrus lateral blade, granule cell layer",
+                                              "labelIndex": 790,
+                                              "children": []
+                                            }
+                                          ]
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            126,
+                                            208,
+                                            75
+                                          ],
+                                          "name": "Dentate gyrus medial blade",
+                                          "labelIndex": 799,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                126,
+                                                208,
+                                                75
+                                              ],
+                                              "name": "Dentate gyrus medial blade, molecular layer",
+                                              "labelIndex": 807,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                126,
+                                                208,
+                                                75
+                                              ],
+                                              "name": "Dentate gyrus medial blade, polymorph layer",
+                                              "labelIndex": 815,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                126,
+                                                208,
+                                                75
+                                              ],
+                                              "name": "Dentate gyrus medial blade, granule cell layer",
+                                              "labelIndex": 823,
+                                              "children": []
+                                            }
+                                          ]
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        126,
+                                        208,
+                                        75
+                                      ],
+                                      "position": [
+                                        -187500,
+                                        -577500,
+                                        1732500
+                                      ],
+                                      "name": "Fasciola cinerea",
+                                      "labelIndex": 982,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        126,
+                                        208,
+                                        75
+                                      ],
+                                      "position": [
+                                        -107500,
+                                        1742500,
+                                        1042500
+                                      ],
+                                      "name": "Induseum griseum",
+                                      "labelIndex": 19,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    50,
+                                    184,
+                                    37
+                                  ],
+                                  "position": [
+                                    -3547500,
+                                    -2677500,
+                                    -137500
+                                  ],
+                                  "name": "Retrohippocampal region",
+                                  "labelIndex": 822,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        50,
+                                        184,
+                                        37
+                                      ],
+                                      "position": [
+                                        -4047500,
+                                        -2747500,
+                                        -607500
+                                      ],
+                                      "name": "Entorhinal area",
+                                      "labelIndex": 909,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            50,
+                                            184,
+                                            37
+                                          ],
+                                          "position": [
+                                            -4397500,
+                                            -2377500,
+                                            -847500
+                                          ],
+                                          "name": "Entorhinal area, lateral part",
+                                          "labelIndex": 918,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "position": [
+                                                -4837500,
+                                                -2427500,
+                                                -997500
+                                              ],
+                                              "name": "Entorhinal area, lateral part, layer 1",
+                                              "labelIndex": 1121,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "position": [
+                                                -4647500,
+                                                -2437500,
+                                                -927500
+                                              ],
+                                              "name": "Entorhinal area, lateral part, layer 2",
+                                              "labelIndex": 20,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "name": "Entorhinal area, lateral part, layer 2/3",
+                                              "labelIndex": 999,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "name": "Entorhinal area, lateral part, layer 2a",
+                                              "labelIndex": 715,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "name": "Entorhinal area, lateral part, layer 2b",
+                                              "labelIndex": 764,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "position": [
+                                                -4497500,
+                                                -2307500,
+                                                -937500
+                                              ],
+                                              "name": "Entorhinal area, lateral part, layer 3",
+                                              "labelIndex": 52,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "name": "Entorhinal area, lateral part, layer 4",
+                                              "labelIndex": 92,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "name": "Entorhinal area, lateral part, layer 4/5",
+                                              "labelIndex": 312,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "position": [
+                                                -4287500,
+                                                -2297500,
+                                                -907500
+                                              ],
+                                              "name": "Entorhinal area, lateral part, layer 5",
+                                              "labelIndex": 139,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "name": "Entorhinal area, lateral part, layer 5/6",
+                                              "labelIndex": 387,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "position": [
+                                                -4147500,
+                                                -2577500,
+                                                -597500
+                                              ],
+                                              "name": "Entorhinal area, lateral part, layer 6a",
+                                              "labelIndex": 28,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "name": "Entorhinal area, lateral part, layer 6b",
+                                              "labelIndex": 60,
+                                              "children": []
+                                            }
+                                          ]
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            50,
+                                            184,
+                                            37
+                                          ],
+                                          "position": [
+                                            -3587500,
+                                            -3217500,
+                                            -307500
+                                          ],
+                                          "name": "Entorhinal area, medial part, dorsal zone",
+                                          "labelIndex": 926,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "position": [
+                                                -3547500,
+                                                -3467500,
+                                                -497500
+                                              ],
+                                              "name": "Entorhinal area, medial part, dorsal zone, layer 1",
+                                              "labelIndex": 526,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "position": [
+                                                -3577500,
+                                                -3387500,
+                                                -367500
+                                              ],
+                                              "name": "Entorhinal area, medial part, dorsal zone, layer 2",
+                                              "labelIndex": 543,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "name": "Entorhinal area, medial part, dorsal zone, layer 2a",
+                                              "labelIndex": 468,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "name": "Entorhinal area, medial part, dorsal zone, layer 2b",
+                                              "labelIndex": 508,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "position": [
+                                                -3547500,
+                                                -3267500,
+                                                -267500
+                                              ],
+                                              "name": "Entorhinal area, medial part, dorsal zone, layer 3",
+                                              "labelIndex": 664,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "name": "Entorhinal area, medial part, dorsal zone, layer 4",
+                                              "labelIndex": 712,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "position": [
+                                                -3507500,
+                                                -3107500,
+                                                -207500
+                                              ],
+                                              "name": "Entorhinal area, medial part, dorsal zone, layer 5",
+                                              "labelIndex": 727,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "name": "Entorhinal area, medial part, dorsal zone, layer 5/6",
+                                              "labelIndex": 550,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "position": [
+                                                -3507500,
+                                                -2997500,
+                                                -47500
+                                              ],
+                                              "name": "Entorhinal area, medial part, dorsal zone, layer 6",
+                                              "labelIndex": 743,
+                                              "children": []
+                                            }
+                                          ]
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            50,
+                                            184,
+                                            37
+                                          ],
+                                          "name": "Entorhinal area, medial part, ventral zone",
+                                          "labelIndex": 934,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "name": "Entorhinal area, medial part, ventral zone, layer 1",
+                                              "labelIndex": 259,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "name": "Entorhinal area, medial part, ventral zone, layer 2",
+                                              "labelIndex": 324,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "name": "Entorhinal area, medial part, ventral zone, layer 3",
+                                              "labelIndex": 371,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "name": "Entorhinal area, medial part, ventral zone, layer 4",
+                                              "labelIndex": 419,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                50,
+                                                184,
+                                                37
+                                              ],
+                                              "name": "Entorhinal area, medial part, ventral zone, layer 5/6",
+                                              "labelIndex": 1133,
+                                              "children": []
+                                            }
+                                          ]
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        114,
+                                        213,
+                                        105
+                                      ],
+                                      "position": [
+                                        -2927500,
+                                        -3187500,
+                                        402500
+                                      ],
+                                      "name": "Parasubiculum",
+                                      "labelIndex": 843,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            114,
+                                            213,
+                                            105
+                                          ],
+                                          "name": "Parasubiculum, layer 1",
+                                          "labelIndex": 10693,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            114,
+                                            213,
+                                            105
+                                          ],
+                                          "name": "Parasubiculum, layer 2",
+                                          "labelIndex": 10694,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            114,
+                                            213,
+                                            105
+                                          ],
+                                          "name": "Parasubiculum, layer 3",
+                                          "labelIndex": 10695,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        72,
+                                        200,
+                                        60
+                                      ],
+                                      "position": [
+                                        -2137500,
+                                        -2607500,
+                                        1782500
+                                      ],
+                                      "name": "Postsubiculum",
+                                      "labelIndex": 1037,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            72,
+                                            200,
+                                            60
+                                          ],
+                                          "name": "Postsubiculum, layer 1",
+                                          "labelIndex": 10696,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            72,
+                                            200,
+                                            60
+                                          ],
+                                          "name": "Postsubiculum, layer 2",
+                                          "labelIndex": 10697,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            72,
+                                            200,
+                                            60
+                                          ],
+                                          "name": "Postsubiculum, layer 3",
+                                          "labelIndex": 10698,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        89,
+                                        185,
+                                        71
+                                      ],
+                                      "position": [
+                                        -2797500,
+                                        -2767500,
+                                        362500
+                                      ],
+                                      "name": "Presubiculum",
+                                      "labelIndex": 1084,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            89,
+                                            185,
+                                            71
+                                          ],
+                                          "name": "Presubiculum, layer 1",
+                                          "labelIndex": 10699,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            89,
+                                            185,
+                                            71
+                                          ],
+                                          "name": "Presubiculum, layer 2",
+                                          "labelIndex": 10700,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            89,
+                                            185,
+                                            71
+                                          ],
+                                          "name": "Presubiculum, layer 3",
+                                          "labelIndex": 10701,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        79,
+                                        194,
+                                        68
+                                      ],
+                                      "position": [
+                                        -2917500,
+                                        -2537500,
+                                        912500
+                                      ],
+                                      "name": "Subiculum",
+                                      "labelIndex": 502,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            79,
+                                            194,
+                                            68
+                                          ],
+                                          "name": "Subiculum, dorsal part",
+                                          "labelIndex": 509,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                79,
+                                                194,
+                                                68
+                                              ],
+                                              "name": "Subiculum, dorsal part, molecular layer",
+                                              "labelIndex": 829,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                75,
+                                                181,
+                                                71
+                                              ],
+                                              "name": "Subiculum, dorsal part, pyramidal layer",
+                                              "labelIndex": 845,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                79,
+                                                194,
+                                                68
+                                              ],
+                                              "name": "Subiculum, dorsal part, stratum radiatum",
+                                              "labelIndex": 837,
+                                              "children": []
+                                            }
+                                          ]
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            79,
+                                            194,
+                                            68
+                                          ],
+                                          "name": "Subiculum, ventral part",
+                                          "labelIndex": 518,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                79,
+                                                194,
+                                                68
+                                              ],
+                                              "name": "Subiculum, ventral part, molecular layer",
+                                              "labelIndex": 853,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                75,
+                                                181,
+                                                71
+                                              ],
+                                              "name": "Subiculum, ventral part, pyramidal layer",
+                                              "labelIndex": 870,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                79,
+                                                194,
+                                                68
+                                              ],
+                                              "name": "Subiculum, ventral part, stratum radiatum",
+                                              "labelIndex": 861,
+                                              "children": []
+                                            }
+                                          ]
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        88,
+                                        186,
+                                        72
+                                      ],
+                                      "position": [
+                                        -3377500,
+                                        -2447500,
+                                        402500
+                                      ],
+                                      "name": "Prosubiculum",
+                                      "labelIndex": 484682470,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            88,
+                                            186,
+                                            72
+                                          ],
+                                          "name": "Prosubiculum, dorsal part",
+                                          "labelIndex": 484682475,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                88,
+                                                186,
+                                                72
+                                              ],
+                                              "name": "Prosubiculum, dorsal part, molecular layer",
+                                              "labelIndex": 484682479,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                86,
+                                                184,
+                                                75
+                                              ],
+                                              "name": "Prosubiculum, dorsal part, pyramidal layer",
+                                              "labelIndex": 484682483,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                88,
+                                                186,
+                                                72
+                                              ],
+                                              "name": "Prosubiculum, dorsal part, stratum radiatum",
+                                              "labelIndex": 484682487,
+                                              "children": []
+                                            }
+                                          ]
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            88,
+                                            186,
+                                            72
+                                          ],
+                                          "name": "Prosubiculum, ventral part",
+                                          "labelIndex": 484682492,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                88,
+                                                186,
+                                                72
+                                              ],
+                                              "name": "Prosubiculum, ventral part, molecular layer",
+                                              "labelIndex": 484682496,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                86,
+                                                184,
+                                                75
+                                              ],
+                                              "name": "Prosubiculum, ventral part, pyramidal layer",
+                                              "labelIndex": 484682500,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                88,
+                                                186,
+                                                72
+                                              ],
+                                              "name": "Prosubiculum, ventral part, stratum radiatum",
+                                              "labelIndex": 484682504,
+                                              "children": []
+                                            }
+                                          ]
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        51,
+                                        185,
+                                        50
+                                      ],
+                                      "position": [
+                                        -2687500,
+                                        -2227500,
+                                        -1917500
+                                      ],
+                                      "name": "Hippocampo-amygdalar transition area",
+                                      "labelIndex": 589508447,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        51,
+                                        185,
+                                        50
+                                      ],
+                                      "position": [
+                                        -2377500,
+                                        -3187500,
+                                        1662500
+                                      ],
+                                      "name": "Area prostriata",
+                                      "labelIndex": 484682508,
+                                      "children": []
+                                    }
+                                  ]
+                                }
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            138,
+                            218,
+                            135
+                          ],
+                          "position": [
+                            -3167500,
+                            -147500,
+                            -1867500
+                          ],
+                          "name": "Cortical subplate",
+                          "labelIndex": 703,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                138,
+                                218,
+                                135
+                              ],
+                              "name": "Layer 6b, isocortex",
+                              "labelIndex": 16,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                138,
+                                218,
+                                135
+                              ],
+                              "position": [
+                                -2987500,
+                                2012500,
+                                -807500
+                              ],
+                              "name": "Claustrum",
+                              "labelIndex": 583,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                160,
+                                238,
+                                157
+                              ],
+                              "position": [
+                                -3357500,
+                                502500,
+                                -1717500
+                              ],
+                              "name": "Endopiriform nucleus",
+                              "labelIndex": 942,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    160,
+                                    238,
+                                    157
+                                  ],
+                                  "position": [
+                                    -3387500,
+                                    932500,
+                                    -1507500
+                                  ],
+                                  "name": "Endopiriform nucleus, dorsal part",
+                                  "labelIndex": 952,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    160,
+                                    238,
+                                    157
+                                  ],
+                                  "position": [
+                                    -3517500,
+                                    -227500,
+                                    -2227500
+                                  ],
+                                  "name": "Endopiriform nucleus, ventral part",
+                                  "labelIndex": 966,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                144,
+                                235,
+                                141
+                              ],
+                              "position": [
+                                -3647500,
+                                -707500,
+                                -1267500
+                              ],
+                              "name": "Lateral amygdalar nucleus",
+                              "labelIndex": 131,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                157,
+                                231,
+                                156
+                              ],
+                              "position": [
+                                -3337500,
+                                -647500,
+                                -2067500
+                              ],
+                              "name": "Basolateral amygdalar nucleus",
+                              "labelIndex": 295,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    157,
+                                    231,
+                                    156
+                                  ],
+                                  "position": [
+                                    -3227500,
+                                    -277500,
+                                    -1867500
+                                  ],
+                                  "name": "Basolateral amygdalar nucleus, anterior part",
+                                  "labelIndex": 303,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    157,
+                                    231,
+                                    156
+                                  ],
+                                  "position": [
+                                    -3477500,
+                                    -1077500,
+                                    -1947500
+                                  ],
+                                  "name": "Basolateral amygdalar nucleus, posterior part",
+                                  "labelIndex": 311,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    157,
+                                    231,
+                                    156
+                                  ],
+                                  "position": [
+                                    -3317500,
+                                    -607500,
+                                    -2647500
+                                  ],
+                                  "name": "Basolateral amygdalar nucleus, ventral part",
+                                  "labelIndex": 451,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                132,
+                                234,
+                                129
+                              ],
+                              "position": [
+                                -2877500,
+                                -437500,
+                                -2417500
+                              ],
+                              "name": "Basomedial amygdalar nucleus",
+                              "labelIndex": 319,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    132,
+                                    234,
+                                    129
+                                  ],
+                                  "position": [
+                                    -2707500,
+                                    62500,
+                                    -2617500
+                                  ],
+                                  "name": "Basomedial amygdalar nucleus, anterior part",
+                                  "labelIndex": 327,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    132,
+                                    234,
+                                    129
+                                  ],
+                                  "position": [
+                                    -3057500,
+                                    -977500,
+                                    -2207500
+                                  ],
+                                  "name": "Basomedial amygdalar nucleus, posterior part",
+                                  "labelIndex": 334,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                151,
+                                236,
+                                147
+                              ],
+                              "position": [
+                                -2617500,
+                                -1377500,
+                                -2257500
+                              ],
+                              "name": "Posterior amygdalar nucleus",
+                              "labelIndex": 780,
+                              "children": []
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        152,
+                        214,
+                        249
+                      ],
+                      "position": [
+                        -1907500,
+                        1292500,
+                        -1007500
+                      ],
+                      "name": "Cerebral nuclei",
+                      "labelIndex": 623,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            152,
+                            214,
+                            249
+                          ],
+                          "position": [
+                            -2007500,
+                            1332500,
+                            -877500
+                          ],
+                          "name": "Striatum",
+                          "labelIndex": 477,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                152,
+                                214,
+                                249
+                              ],
+                              "position": [
+                                -2387500,
+                                1222500,
+                                -247500
+                              ],
+                              "name": "Striatum dorsal region",
+                              "labelIndex": 485,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    152,
+                                    214,
+                                    249
+                                  ],
+                                  "position": [
+                                    -2387500,
+                                    1222500,
+                                    -247500
+                                  ],
+                                  "name": "Caudoputamen",
+                                  "labelIndex": 672,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                128,
+                                205,
+                                248
+                              ],
+                              "position": [
+                                -1467500,
+                                2202500,
+                                -2347500
+                              ],
+                              "name": "Striatum ventral region",
+                              "labelIndex": 493,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    128,
+                                    205,
+                                    248
+                                  ],
+                                  "position": [
+                                    -1247500,
+                                    2322500,
+                                    -1847500
+                                  ],
+                                  "name": "Nucleus accumbens",
+                                  "labelIndex": 56,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    128,
+                                    205,
+                                    248
+                                  ],
+                                  "position": [
+                                    -2327500,
+                                    1162500,
+                                    -2047500
+                                  ],
+                                  "name": "Fundus of striatum",
+                                  "labelIndex": 998,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    128,
+                                    205,
+                                    248
+                                  ],
+                                  "position": [
+                                    -1617500,
+                                    2182500,
+                                    -2947500
+                                  ],
+                                  "name": "Olfactory tubercle",
+                                  "labelIndex": 754,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        128,
+                                        205,
+                                        248
+                                      ],
+                                      "name": "Islands of Calleja",
+                                      "labelIndex": 481,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        128,
+                                        205,
+                                        248
+                                      ],
+                                      "name": "Major island of Calleja",
+                                      "labelIndex": 489,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        128,
+                                        205,
+                                        248
+                                      ],
+                                      "name": "Olfactory tubercle, layers 1-3",
+                                      "labelIndex": 144,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        128,
+                                        205,
+                                        248
+                                      ],
+                                      "name": "Olfactory tubercle, molecular layer",
+                                      "labelIndex": 458,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        128,
+                                        205,
+                                        248
+                                      ],
+                                      "name": "Olfactory tubercle, pyramidal layer",
+                                      "labelIndex": 465,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        128,
+                                        205,
+                                        248
+                                      ],
+                                      "name": "Olfactory tubercle, polymorph layer",
+                                      "labelIndex": 473,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    128,
+                                    205,
+                                    248
+                                  ],
+                                  "name": "Lateral strip of striatum",
+                                  "labelIndex": 549009199,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                144,
+                                203,
+                                237
+                              ],
+                              "position": [
+                                -497500,
+                                1642500,
+                                -77500
+                              ],
+                              "name": "Lateral septal complex",
+                              "labelIndex": 275,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    144,
+                                    203,
+                                    237
+                                  ],
+                                  "position": [
+                                    -517500,
+                                    1712500,
+                                    -127500
+                                  ],
+                                  "name": "Lateral septal nucleus",
+                                  "labelIndex": 242,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        144,
+                                        203,
+                                        237
+                                      ],
+                                      "position": [
+                                        -587500,
+                                        1282500,
+                                        852500
+                                      ],
+                                      "name": "Lateral septal nucleus, caudal (caudodorsal) part",
+                                      "labelIndex": 250,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        144,
+                                        203,
+                                        237
+                                      ],
+                                      "position": [
+                                        -457500,
+                                        1832500,
+                                        -217500
+                                      ],
+                                      "name": "Lateral septal nucleus, rostral (rostroventral) part",
+                                      "labelIndex": 258,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        144,
+                                        203,
+                                        237
+                                      ],
+                                      "position": [
+                                        -647500,
+                                        1732500,
+                                        -767500
+                                      ],
+                                      "name": "Lateral septal nucleus, ventral part",
+                                      "labelIndex": 266,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    144,
+                                    203,
+                                    237
+                                  ],
+                                  "position": [
+                                    -377500,
+                                    1152500,
+                                    272500
+                                  ],
+                                  "name": "Septofimbrial nucleus",
+                                  "labelIndex": 310,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    144,
+                                    203,
+                                    237
+                                  ],
+                                  "position": [
+                                    -197500,
+                                    2262500,
+                                    -47500
+                                  ],
+                                  "name": "Septohippocampal nucleus",
+                                  "labelIndex": 333,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                128,
+                                192,
+                                226
+                              ],
+                              "position": [
+                                -2347500,
+                                -47500,
+                                -2187500
+                              ],
+                              "name": "Striatum-like amygdalar nuclei",
+                              "labelIndex": 278,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    128,
+                                    192,
+                                    226
+                                  ],
+                                  "position": [
+                                    -2137500,
+                                    832500,
+                                    -2567500
+                                  ],
+                                  "name": "Anterior amygdalar area",
+                                  "labelIndex": 23,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    128,
+                                    192,
+                                    226
+                                  ],
+                                  "position": [
+                                    -1977500,
+                                    182500,
+                                    -3097500
+                                  ],
+                                  "name": "Bed nucleus of the accessory olfactory tract",
+                                  "labelIndex": 292,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    128,
+                                    192,
+                                    226
+                                  ],
+                                  "position": [
+                                    -2697500,
+                                    -37500,
+                                    -1697500
+                                  ],
+                                  "name": "Central amygdalar nucleus",
+                                  "labelIndex": 536,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        128,
+                                        192,
+                                        226
+                                      ],
+                                      "position": [
+                                        -2977500,
+                                        -37500,
+                                        -1707500
+                                      ],
+                                      "name": "Central amygdalar nucleus, capsular part",
+                                      "labelIndex": 544,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        128,
+                                        192,
+                                        226
+                                      ],
+                                      "position": [
+                                        -2867500,
+                                        -137500,
+                                        -1477500
+                                      ],
+                                      "name": "Central amygdalar nucleus, lateral part",
+                                      "labelIndex": 551,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        128,
+                                        192,
+                                        226
+                                      ],
+                                      "position": [
+                                        -2527500,
+                                        12500,
+                                        -1777500
+                                      ],
+                                      "name": "Central amygdalar nucleus, medial part",
+                                      "labelIndex": 559,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    128,
+                                    192,
+                                    226
+                                  ],
+                                  "position": [
+                                    -2857500,
+                                    -27500,
+                                    -2217500
+                                  ],
+                                  "name": "Intercalated amygdalar nucleus",
+                                  "labelIndex": 1105,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    128,
+                                    192,
+                                    226
+                                  ],
+                                  "position": [
+                                    -2137500,
+                                    -287500,
+                                    -2397500
+                                  ],
+                                  "name": "Medial amygdalar nucleus",
+                                  "labelIndex": 403,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        128,
+                                        192,
+                                        226
+                                      ],
+                                      "name": "Medial amygdalar nucleus, anterodorsal part",
+                                      "labelIndex": 411,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        128,
+                                        192,
+                                        226
+                                      ],
+                                      "name": "Medial amygdalar nucleus, anteroventral part",
+                                      "labelIndex": 418,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        128,
+                                        192,
+                                        226
+                                      ],
+                                      "name": "Medial amygdalar nucleus, posterodorsal part",
+                                      "labelIndex": 426,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            128,
+                                            192,
+                                            226
+                                          ],
+                                          "name": "Medial amygdalar nucleus, posterodorsal part, sublayer a",
+                                          "labelIndex": 472,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            128,
+                                            192,
+                                            226
+                                          ],
+                                          "name": "Medial amygdalar nucleus, posterodorsal part, sublayer b",
+                                          "labelIndex": 480,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            128,
+                                            192,
+                                            226
+                                          ],
+                                          "name": "Medial amygdalar nucleus, posterodorsal part, sublayer c",
+                                          "labelIndex": 487,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        128,
+                                        192,
+                                        226
+                                      ],
+                                      "name": "Medial amygdalar nucleus, posteroventral part",
+                                      "labelIndex": 435,
+                                      "children": []
+                                    }
+                                  ]
+                                }
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            133,
+                            153,
+                            204
+                          ],
+                          "position": [
+                            -1457500,
+                            1132500,
+                            -1637500
+                          ],
+                          "name": "Pallidum",
+                          "labelIndex": 803,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                133,
+                                153,
+                                204
+                              ],
+                              "position": [
+                                -2257500,
+                                332500,
+                                -907500
+                              ],
+                              "name": "Pallidum, dorsal region",
+                              "labelIndex": 818,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    133,
+                                    153,
+                                    204
+                                  ],
+                                  "position": [
+                                    -2307500,
+                                    432500,
+                                    -797500
+                                  ],
+                                  "name": "Globus pallidus, external segment",
+                                  "labelIndex": 1022,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    133,
+                                    153,
+                                    204
+                                  ],
+                                  "position": [
+                                    -2057500,
+                                    -17500,
+                                    -1317500
+                                  ],
+                                  "name": "Globus pallidus, internal segment",
+                                  "labelIndex": 1031,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                162,
+                                177,
+                                216
+                              ],
+                              "position": [
+                                -1577500,
+                                1522500,
+                                -2327500
+                              ],
+                              "name": "Pallidum, ventral region",
+                              "labelIndex": 835,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    162,
+                                    177,
+                                    216
+                                  ],
+                                  "position": [
+                                    -1567500,
+                                    1562500,
+                                    -2287500
+                                  ],
+                                  "name": "Substantia innominata",
+                                  "labelIndex": 342,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    162,
+                                    177,
+                                    216
+                                  ],
+                                  "position": [
+                                    -1707500,
+                                    1152500,
+                                    -2607500
+                                  ],
+                                  "name": "Magnocellular nucleus",
+                                  "labelIndex": 298,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                150,
+                                167,
+                                211
+                              ],
+                              "position": [
+                                -247500,
+                                1672500,
+                                -1447500
+                              ],
+                              "name": "Pallidum, medial region",
+                              "labelIndex": 826,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    150,
+                                    167,
+                                    211
+                                  ],
+                                  "position": [
+                                    -257500,
+                                    1892500,
+                                    -2017500
+                                  ],
+                                  "name": "Medial septal complex",
+                                  "labelIndex": 904,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        150,
+                                        167,
+                                        211
+                                      ],
+                                      "position": [
+                                        -127500,
+                                        1792500,
+                                        -1027500
+                                      ],
+                                      "name": "Medial septal nucleus",
+                                      "labelIndex": 564,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        150,
+                                        167,
+                                        211
+                                      ],
+                                      "position": [
+                                        -667500,
+                                        1742500,
+                                        -2517500
+                                      ],
+                                      "name": "Diagonal band nucleus",
+                                      "labelIndex": 596,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    150,
+                                    167,
+                                    211
+                                  ],
+                                  "position": [
+                                    -307500,
+                                    1032500,
+                                    252500
+                                  ],
+                                  "name": "Triangular nucleus of septum",
+                                  "labelIndex": 581,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                179,
+                                192,
+                                223
+                              ],
+                              "position": [
+                                -947500,
+                                1202500,
+                                -1217500
+                              ],
+                              "name": "Pallidum, caudal region",
+                              "labelIndex": 809,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    179,
+                                    192,
+                                    223
+                                  ],
+                                  "position": [
+                                    -947500,
+                                    1202500,
+                                    -1217500
+                                  ],
+                                  "name": "Bed nuclei of the stria terminalis",
+                                  "labelIndex": 351,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        179,
+                                        192,
+                                        223
+                                      ],
+                                      "name": "Bed nuclei of the stria terminalis, anterior division",
+                                      "labelIndex": 359,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            179,
+                                            192,
+                                            223
+                                          ],
+                                          "name": "Bed nuclei of the stria terminalis, anterior division, anterolateral area",
+                                          "labelIndex": 537,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            179,
+                                            192,
+                                            223
+                                          ],
+                                          "name": "Bed nuclei of the stria terminalis, anterior division, anteromedial area",
+                                          "labelIndex": 498,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            179,
+                                            192,
+                                            223
+                                          ],
+                                          "name": "Bed nuclei of the stria terminalis, anterior division, dorsomedial nucleus",
+                                          "labelIndex": 505,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            179,
+                                            192,
+                                            223
+                                          ],
+                                          "name": "Bed nuclei of the stria terminalis, anterior division, fusiform nucleus",
+                                          "labelIndex": 513,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            179,
+                                            192,
+                                            223
+                                          ],
+                                          "name": "Bed nuclei of the stria terminalis, anterior division, juxtacapsular nucleus",
+                                          "labelIndex": 546,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            179,
+                                            192,
+                                            223
+                                          ],
+                                          "name": "Bed nuclei of the stria terminalis, anterior division, magnocellular nucleus",
+                                          "labelIndex": 521,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            179,
+                                            192,
+                                            223
+                                          ],
+                                          "name": "Bed nuclei of the stria terminalis, anterior division, oval nucleus",
+                                          "labelIndex": 554,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            179,
+                                            192,
+                                            223
+                                          ],
+                                          "name": "Bed nuclei of the stria terminalis, anterior division, rhomboid nucleus",
+                                          "labelIndex": 562,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            179,
+                                            192,
+                                            223
+                                          ],
+                                          "name": "Bed nuclei of the stria terminalis, anterior division, ventral nucleus",
+                                          "labelIndex": 529,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        179,
+                                        192,
+                                        223
+                                      ],
+                                      "name": "Bed nuclei of the stria terminalis, posterior division",
+                                      "labelIndex": 367,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            179,
+                                            192,
+                                            223
+                                          ],
+                                          "name": "Bed nuclei of the stria terminalis, posterior division, dorsal nucleus",
+                                          "labelIndex": 569,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            179,
+                                            192,
+                                            223
+                                          ],
+                                          "name": "Bed nuclei of the stria terminalis, posterior division, principal nucleus",
+                                          "labelIndex": 578,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            179,
+                                            192,
+                                            223
+                                          ],
+                                          "name": "Bed nuclei of the stria terminalis, posterior division, interfascicular nucleus",
+                                          "labelIndex": 585,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            179,
+                                            192,
+                                            223
+                                          ],
+                                          "name": "Bed nuclei of the stria terminalis, posterior division, transverse nucleus",
+                                          "labelIndex": 594,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            179,
+                                            192,
+                                            223
+                                          ],
+                                          "name": "Bed nuclei of the stria terminalis, posterior division, strial extension",
+                                          "labelIndex": 602,
+                                          "children": []
+                                        }
+                                      ]
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    179,
+                                    192,
+                                    223
+                                  ],
+                                  "position": [
+                                    -587500,
+                                    1152500,
+                                    -1157500
+                                  ],
+                                  "name": "Bed nucleus of the anterior commissure",
+                                  "labelIndex": 287,
+                                  "children": []
+                                }
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "ngId": "v3_2017",
+                  "rgb": [
+                    255,
+                    112,
+                    128
+                  ],
+                  "position": [
+                    -1107500,
+                    -2677500,
+                    -797500
+                  ],
+                  "name": "Brain stem",
+                  "labelIndex": 343,
+                  "children": [
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        255,
+                        112,
+                        128
+                      ],
+                      "position": [
+                        -1097500,
+                        -287500,
+                        -907500
+                      ],
+                      "name": "Interbrain",
+                      "labelIndex": 1129,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            255,
+                            112,
+                            128
+                          ],
+                          "position": [
+                            -1307500,
+                            -447500,
+                            -57500
+                          ],
+                          "name": "Thalamus",
+                          "labelIndex": 549,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                128,
+                                132
+                              ],
+                              "position": [
+                                -1667500,
+                                -657500,
+                                -247500
+                              ],
+                              "name": "Thalamus, sensory-motor cortex related",
+                              "labelIndex": 864,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    128,
+                                    132
+                                  ],
+                                  "position": [
+                                    -1537500,
+                                    -397500,
+                                    -427500
+                                  ],
+                                  "name": "Ventral group of the dorsal thalamus",
+                                  "labelIndex": 637,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        128,
+                                        132
+                                      ],
+                                      "position": [
+                                        -1237500,
+                                        72500,
+                                        -447500
+                                      ],
+                                      "name": "Ventral anterior-lateral complex of the thalamus",
+                                      "labelIndex": 629,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        128,
+                                        132
+                                      ],
+                                      "position": [
+                                        -967500,
+                                        -267500,
+                                        -1027500
+                                      ],
+                                      "name": "Ventral medial nucleus of the thalamus",
+                                      "labelIndex": 685,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        128,
+                                        132
+                                      ],
+                                      "position": [
+                                        -1777500,
+                                        -467500,
+                                        -277500
+                                      ],
+                                      "name": "Ventral posterior complex of the thalamus",
+                                      "labelIndex": 709,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            128,
+                                            132
+                                          ],
+                                          "position": [
+                                            -2077500,
+                                            -257500,
+                                            -357500
+                                          ],
+                                          "name": "Ventral posterolateral nucleus of the thalamus",
+                                          "labelIndex": 718,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            128,
+                                            132
+                                          ],
+                                          "position": [
+                                            -1357500,
+                                            -927500,
+                                            -567500
+                                          ],
+                                          "name": "Ventral posterolateral nucleus of the thalamus, parvicellular part",
+                                          "labelIndex": 725,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            128,
+                                            132
+                                          ],
+                                          "position": [
+                                            -1827500,
+                                            -507500,
+                                            -187500
+                                          ],
+                                          "name": "Ventral posteromedial nucleus of the thalamus",
+                                          "labelIndex": 733,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            128,
+                                            132
+                                          ],
+                                          "position": [
+                                            -697500,
+                                            -807500,
+                                            -687500
+                                          ],
+                                          "name": "Ventral posteromedial nucleus of the thalamus, parvicellular part",
+                                          "labelIndex": 741,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        128,
+                                        132
+                                      ],
+                                      "position": [
+                                        -1767500,
+                                        -1497500,
+                                        2500
+                                      ],
+                                      "name": "Posterior triangular thalamic nucleus",
+                                      "labelIndex": 563807435,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    128,
+                                    132
+                                  ],
+                                  "position": [
+                                    -1017500,
+                                    -1227500,
+                                    -557500
+                                  ],
+                                  "name": "Subparafascicular nucleus",
+                                  "labelIndex": 406,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        128,
+                                        132
+                                      ],
+                                      "position": [
+                                        -347500,
+                                        -947500,
+                                        -827500
+                                      ],
+                                      "name": "Subparafascicular nucleus, magnocellular part",
+                                      "labelIndex": 414,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        128,
+                                        132
+                                      ],
+                                      "position": [
+                                        -1357500,
+                                        -1367500,
+                                        -417500
+                                      ],
+                                      "name": "Subparafascicular nucleus, parvicellular part",
+                                      "labelIndex": 422,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    128,
+                                    132
+                                  ],
+                                  "position": [
+                                    -167500,
+                                    -957500,
+                                    -257500
+                                  ],
+                                  "name": "Subparafascicular area",
+                                  "labelIndex": 609,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    128,
+                                    132
+                                  ],
+                                  "position": [
+                                    -2317500,
+                                    -1907500,
+                                    -387500
+                                  ],
+                                  "name": "Peripeduncular nucleus",
+                                  "labelIndex": 1044,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    128,
+                                    132
+                                  ],
+                                  "position": [
+                                    -2317500,
+                                    -1377500,
+                                    442500
+                                  ],
+                                  "name": "Geniculate group, dorsal thalamus",
+                                  "labelIndex": 1008,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        128,
+                                        132
+                                      ],
+                                      "position": [
+                                        -2277500,
+                                        -1767500,
+                                        132500
+                                      ],
+                                      "name": "Medial geniculate complex",
+                                      "labelIndex": 475,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            128,
+                                            132
+                                          ],
+                                          "position": [
+                                            -2407500,
+                                            -1927500,
+                                            422500
+                                          ],
+                                          "name": "Medial geniculate complex, dorsal part",
+                                          "labelIndex": 1072,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            128,
+                                            132
+                                          ],
+                                          "position": [
+                                            -2377500,
+                                            -1817500,
+                                            92500
+                                          ],
+                                          "name": "Medial geniculate complex, ventral part",
+                                          "labelIndex": 1079,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            128,
+                                            132
+                                          ],
+                                          "position": [
+                                            -2067500,
+                                            -1607500,
+                                            -17500
+                                          ],
+                                          "name": "Medial geniculate complex, medial part",
+                                          "labelIndex": 1088,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        128,
+                                        132
+                                      ],
+                                      "position": [
+                                        -2357500,
+                                        -1007500,
+                                        732500
+                                      ],
+                                      "name": "Dorsal part of the lateral geniculate complex",
+                                      "labelIndex": 170,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            128,
+                                            132
+                                          ],
+                                          "position": [
+                                            -2457500,
+                                            -1207500,
+                                            762500
+                                          ],
+                                          "name": "Dorsal part of the lateral geniculate complex, shell",
+                                          "labelIndex": 496345664,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            128,
+                                            132
+                                          ],
+                                          "position": [
+                                            -2337500,
+                                            -897500,
+                                            702500
+                                          ],
+                                          "name": "Dorsal part of the lateral geniculate complex, core",
+                                          "labelIndex": 496345668,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            128,
+                                            132
+                                          ],
+                                          "position": [
+                                            -2227500,
+                                            -1037500,
+                                            842500
+                                          ],
+                                          "name": "Dorsal part of the lateral geniculate complex, ipsilateral zone",
+                                          "labelIndex": 496345672,
+                                          "children": []
+                                        }
+                                      ]
+                                    }
+                                  ]
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                144,
+                                159
+                              ],
+                              "position": [
+                                -1117500,
+                                -317500,
+                                62500
+                              ],
+                              "name": "Thalamus, polymodal association cortex related",
+                              "labelIndex": 856,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    159
+                                  ],
+                                  "position": [
+                                    -1547500,
+                                    -907500,
+                                    462500
+                                  ],
+                                  "name": "Lateral group of the dorsal thalamus",
+                                  "labelIndex": 138,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -1587500,
+                                        -917500,
+                                        852500
+                                      ],
+                                      "name": "Lateral posterior nucleus of the thalamus",
+                                      "labelIndex": 218,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -1427500,
+                                        -627500,
+                                        112500
+                                      ],
+                                      "name": "Posterior complex of the thalamus",
+                                      "labelIndex": 1020,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -1767500,
+                                        -1667500,
+                                        422500
+                                      ],
+                                      "name": "Posterior limiting nucleus of the thalamus",
+                                      "labelIndex": 1029,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -2107500,
+                                        -1817500,
+                                        532500
+                                      ],
+                                      "name": "Suprageniculate nucleus",
+                                      "labelIndex": 325,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -1337500,
+                                        -1017500,
+                                        332500
+                                      ],
+                                      "name": "Ethmoid nucleus of the thalamus",
+                                      "labelIndex": 560581551,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "name": "Retroethmoid nucleus",
+                                      "labelIndex": 560581555,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    159
+                                  ],
+                                  "position": [
+                                    -1137500,
+                                    232500,
+                                    282500
+                                  ],
+                                  "name": "Anterior group of the dorsal thalamus",
+                                  "labelIndex": 239,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -1097500,
+                                        522500,
+                                        92500
+                                      ],
+                                      "name": "Anteroventral nucleus of thalamus",
+                                      "labelIndex": 255,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -747500,
+                                        472500,
+                                        -527500
+                                      ],
+                                      "name": "Anteromedial nucleus",
+                                      "labelIndex": 127,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            144,
+                                            159
+                                          ],
+                                          "position": [
+                                            -667500,
+                                            472500,
+                                            -467500
+                                          ],
+                                          "name": "Anteromedial nucleus, dorsal part",
+                                          "labelIndex": 1096,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            144,
+                                            159
+                                          ],
+                                          "position": [
+                                            -867500,
+                                            472500,
+                                            -627500
+                                          ],
+                                          "name": "Anteromedial nucleus, ventral part",
+                                          "labelIndex": 1104,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -837500,
+                                        472500,
+                                        482500
+                                      ],
+                                      "name": "Anterodorsal nucleus",
+                                      "labelIndex": 64,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -207500,
+                                        282500,
+                                        -587500
+                                      ],
+                                      "name": "Interanteromedial nucleus of the thalamus",
+                                      "labelIndex": 1120,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -567500,
+                                        402500,
+                                        -257500
+                                      ],
+                                      "name": "Interanterodorsal nucleus of the thalamus",
+                                      "labelIndex": 1113,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -1467500,
+                                        -47500,
+                                        742500
+                                      ],
+                                      "name": "Lateral dorsal nucleus of thalamus",
+                                      "labelIndex": 155,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    159
+                                  ],
+                                  "position": [
+                                    -457500,
+                                    -187500,
+                                    -217500
+                                  ],
+                                  "name": "Medial group of the dorsal thalamus",
+                                  "labelIndex": 444,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -117500,
+                                        -397500,
+                                        -107500
+                                      ],
+                                      "name": "Intermediodorsal nucleus of the thalamus",
+                                      "labelIndex": 59,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -497500,
+                                        -197500,
+                                        42500
+                                      ],
+                                      "name": "Mediodorsal nucleus of thalamus",
+                                      "labelIndex": 362,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            144,
+                                            159
+                                          ],
+                                          "name": "Mediodorsal nucleus of the thalamus, central part",
+                                          "labelIndex": 617,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            144,
+                                            159
+                                          ],
+                                          "name": "Mediodorsal nucleus of the thalamus, lateral part",
+                                          "labelIndex": 626,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            144,
+                                            159
+                                          ],
+                                          "name": "Mediodorsal nucleus of the thalamus, medial part",
+                                          "labelIndex": 636,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -457500,
+                                        -137500,
+                                        -957500
+                                      ],
+                                      "name": "Submedial nucleus of the thalamus",
+                                      "labelIndex": 366,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -487500,
+                                        12500,
+                                        -1317500
+                                      ],
+                                      "name": "Perireunensis nucleus",
+                                      "labelIndex": 1077,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    159
+                                  ],
+                                  "position": [
+                                    -247500,
+                                    442500,
+                                    -497500
+                                  ],
+                                  "name": "Midline group of the dorsal thalamus",
+                                  "labelIndex": 571,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -117500,
+                                        232500,
+                                        122500
+                                      ],
+                                      "name": "Paraventricular nucleus of the thalamus",
+                                      "labelIndex": 149,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -367500,
+                                        722500,
+                                        -527500
+                                      ],
+                                      "name": "Parataenial nucleus",
+                                      "labelIndex": 15,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -247500,
+                                        252500,
+                                        -1157500
+                                      ],
+                                      "name": "Nucleus of reuniens",
+                                      "labelIndex": 181,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -87500,
+                                        82500,
+                                        -1277500
+                                      ],
+                                      "name": "Xiphoid thalamic nucleus",
+                                      "labelIndex": 560581559,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    159
+                                  ],
+                                  "position": [
+                                    -837500,
+                                    -627500,
+                                    -117500
+                                  ],
+                                  "name": "Intralaminar nuclei of the dorsal thalamus",
+                                  "labelIndex": 51,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -157500,
+                                        -47500,
+                                        -757500
+                                      ],
+                                      "name": "Rhomboid nucleus",
+                                      "labelIndex": 189,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -197500,
+                                        -107500,
+                                        -497500
+                                      ],
+                                      "name": "Central medial nucleus of the thalamus",
+                                      "labelIndex": 599,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -727500,
+                                        -267500,
+                                        -397500
+                                      ],
+                                      "name": "Paracentral nucleus",
+                                      "labelIndex": 907,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -907500,
+                                        -317500,
+                                        362500
+                                      ],
+                                      "name": "Central lateral nucleus of the thalamus",
+                                      "labelIndex": 575,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -767500,
+                                        -947500,
+                                        32500
+                                      ],
+                                      "name": "Parafascicular nucleus",
+                                      "labelIndex": 930,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -2147500,
+                                        -1927500,
+                                        -237500
+                                      ],
+                                      "name": "Posterior intralaminar thalamic nucleus",
+                                      "labelIndex": 560581563,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    159
+                                  ],
+                                  "position": [
+                                    -2007500,
+                                    222500,
+                                    -377500
+                                  ],
+                                  "name": "Reticular nucleus of the thalamus",
+                                  "labelIndex": 262,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    159
+                                  ],
+                                  "position": [
+                                    -2667500,
+                                    -1107500,
+                                    22500
+                                  ],
+                                  "name": "Geniculate group, ventral thalamus",
+                                  "labelIndex": 1014,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -2607500,
+                                        -1167500,
+                                        252500
+                                      ],
+                                      "name": "Intergeniculate leaflet of the lateral geniculate complex",
+                                      "labelIndex": 27,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -2397500,
+                                        -1387500,
+                                        -97500
+                                      ],
+                                      "name": "Intermediate geniculate nucleus",
+                                      "labelIndex": 563807439,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -2707500,
+                                        -1087500,
+                                        32500
+                                      ],
+                                      "name": "Ventral part of the lateral geniculate complex",
+                                      "labelIndex": 178,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            144,
+                                            159
+                                          ],
+                                          "name": "Ventral part of the lateral geniculate complex, lateral zone",
+                                          "labelIndex": 300,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            144,
+                                            159
+                                          ],
+                                          "name": "Ventral part of the lateral geniculate complex, medial zone",
+                                          "labelIndex": 316,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -2597500,
+                                        -1087500,
+                                        -567500
+                                      ],
+                                      "name": "Subgeniculate nucleus",
+                                      "labelIndex": 321,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    159
+                                  ],
+                                  "position": [
+                                    -397500,
+                                    -367500,
+                                    832500
+                                  ],
+                                  "name": "Epithalamus",
+                                  "labelIndex": 958,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -277500,
+                                        -307500,
+                                        932500
+                                      ],
+                                      "name": "Medial habenula",
+                                      "labelIndex": 483,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "position": [
+                                        -497500,
+                                        -417500,
+                                        732500
+                                      ],
+                                      "name": "Lateral habenula",
+                                      "labelIndex": 186,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        159
+                                      ],
+                                      "name": "Pineal body",
+                                      "labelIndex": 953,
+                                      "children": []
+                                    }
+                                  ]
+                                }
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            230,
+                            68,
+                            56
+                          ],
+                          "position": [
+                            -807500,
+                            -77500,
+                            -2047500
+                          ],
+                          "name": "Hypothalamus",
+                          "labelIndex": 1097,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                93,
+                                80
+                              ],
+                              "position": [
+                                -137500,
+                                -17500,
+                                -2487500
+                              ],
+                              "name": "Periventricular zone",
+                              "labelIndex": 157,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    93,
+                                    80
+                                  ],
+                                  "position": [
+                                    -1227500,
+                                    682500,
+                                    -2777500
+                                  ],
+                                  "name": "Supraoptic nucleus",
+                                  "labelIndex": 390,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    93,
+                                    80
+                                  ],
+                                  "position": [
+                                    -447500,
+                                    362500,
+                                    -2247500
+                                  ],
+                                  "name": "Accessory supraoptic group",
+                                  "labelIndex": 332,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        93,
+                                        80
+                                      ],
+                                      "name": "Nucleus circularis",
+                                      "labelIndex": 432,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    93,
+                                    80
+                                  ],
+                                  "position": [
+                                    -207500,
+                                    492500,
+                                    -1697500
+                                  ],
+                                  "name": "Paraventricular hypothalamic nucleus",
+                                  "labelIndex": 38,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        93,
+                                        80
+                                      ],
+                                      "name": "Paraventricular hypothalamic nucleus, magnocellular division",
+                                      "labelIndex": 71,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            93,
+                                            80
+                                          ],
+                                          "name": "Paraventricular hypothalamic nucleus, magnocellular division, anterior magnocellular part",
+                                          "labelIndex": 47,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            93,
+                                            80
+                                          ],
+                                          "name": "Paraventricular hypothalamic nucleus, magnocellular division, medial magnocellular part",
+                                          "labelIndex": 79,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            93,
+                                            80
+                                          ],
+                                          "name": "Paraventricular hypothalamic nucleus, magnocellular division, posterior magnocellular part",
+                                          "labelIndex": 103,
+                                          "children": [
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                255,
+                                                93,
+                                                80
+                                              ],
+                                              "name": "Paraventricular hypothalamic nucleus, magnocellular division, posterior magnocellular part, lateral zone",
+                                              "labelIndex": 652,
+                                              "children": []
+                                            },
+                                            {
+                                              "ngId": "v3_2017",
+                                              "rgb": [
+                                                255,
+                                                93,
+                                                80
+                                              ],
+                                              "name": "Paraventricular hypothalamic nucleus, magnocellular division, posterior magnocellular part, medial zone",
+                                              "labelIndex": 660,
+                                              "children": []
+                                            }
+                                          ]
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        93,
+                                        80
+                                      ],
+                                      "name": "Paraventricular hypothalamic nucleus, parvicellular division",
+                                      "labelIndex": 94,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            93,
+                                            80
+                                          ],
+                                          "name": "Paraventricular hypothalamic nucleus, parvicellular division, anterior parvicellular part",
+                                          "labelIndex": 55,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            93,
+                                            80
+                                          ],
+                                          "name": "Paraventricular hypothalamic nucleus, parvicellular division, medial parvicellular part, dorsal zone",
+                                          "labelIndex": 87,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            93,
+                                            80
+                                          ],
+                                          "name": "Paraventricular hypothalamic nucleus, parvicellular division, periventricular part",
+                                          "labelIndex": 110,
+                                          "children": []
+                                        }
+                                      ]
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    93,
+                                    80
+                                  ],
+                                  "position": [
+                                    -97500,
+                                    552500,
+                                    -2447500
+                                  ],
+                                  "name": "Periventricular hypothalamic nucleus, anterior part",
+                                  "labelIndex": 30,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    93,
+                                    80
+                                  ],
+                                  "position": [
+                                    -107500,
+                                    -247500,
+                                    -2337500
+                                  ],
+                                  "name": "Periventricular hypothalamic nucleus, intermediate part",
+                                  "labelIndex": 118,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    93,
+                                    80
+                                  ],
+                                  "position": [
+                                    -247500,
+                                    -407500,
+                                    -3097500
+                                  ],
+                                  "name": "Arcuate hypothalamic nucleus",
+                                  "labelIndex": 223,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                85,
+                                71
+                              ],
+                              "position": [
+                                -277500,
+                                732500,
+                                -2317500
+                              ],
+                              "name": "Periventricular region",
+                              "labelIndex": 141,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    85,
+                                    71
+                                  ],
+                                  "position": [
+                                    -337500,
+                                    1512500,
+                                    -1607500
+                                  ],
+                                  "name": "Anterodorsal preoptic nucleus",
+                                  "labelIndex": 72,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    85,
+                                    71
+                                  ],
+                                  "name": "Anterior hypothalamic area",
+                                  "labelIndex": 80,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    85,
+                                    71
+                                  ],
+                                  "position": [
+                                    -557500,
+                                    1522500,
+                                    -2437500
+                                  ],
+                                  "name": "Anteroventral preoptic nucleus",
+                                  "labelIndex": 263,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    85,
+                                    71
+                                  ],
+                                  "position": [
+                                    -217500,
+                                    1622500,
+                                    -2537500
+                                  ],
+                                  "name": "Anteroventral periventricular nucleus",
+                                  "labelIndex": 272,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    85,
+                                    71
+                                  ],
+                                  "position": [
+                                    -387500,
+                                    -487500,
+                                    -2227500
+                                  ],
+                                  "name": "Dorsomedial nucleus of the hypothalamus",
+                                  "labelIndex": 830,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        85,
+                                        71
+                                      ],
+                                      "name": "Dorsomedial nucleus of the hypothalamus, anterior part",
+                                      "labelIndex": 668,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        85,
+                                        71
+                                      ],
+                                      "name": "Dorsomedial nucleus of the hypothalamus, posterior part",
+                                      "labelIndex": 676,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        85,
+                                        71
+                                      ],
+                                      "name": "Dorsomedial nucleus of the hypothalamus, ventral part",
+                                      "labelIndex": 684,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    85,
+                                    71
+                                  ],
+                                  "position": [
+                                    -77500,
+                                    1422500,
+                                    -1477500
+                                  ],
+                                  "name": "Median preoptic nucleus",
+                                  "labelIndex": 452,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    85,
+                                    71
+                                  ],
+                                  "position": [
+                                    -597500,
+                                    1302500,
+                                    -2227500
+                                  ],
+                                  "name": "Medial preoptic area",
+                                  "labelIndex": 523,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    85,
+                                    71
+                                  ],
+                                  "position": [
+                                    -67500,
+                                    1642500,
+                                    -2537500
+                                  ],
+                                  "name": "Vascular organ of the lamina terminalis",
+                                  "labelIndex": 763,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    85,
+                                    71
+                                  ],
+                                  "position": [
+                                    -547500,
+                                    1072500,
+                                    -1767500
+                                  ],
+                                  "name": "Posterodorsal preoptic nucleus",
+                                  "labelIndex": 914,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    85,
+                                    71
+                                  ],
+                                  "position": [
+                                    -697500,
+                                    1492500,
+                                    -1847500
+                                  ],
+                                  "name": "Parastrial nucleus",
+                                  "labelIndex": 1109,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    85,
+                                    71
+                                  ],
+                                  "name": "Suprachiasmatic preoptic nucleus",
+                                  "labelIndex": 1124,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    85,
+                                    71
+                                  ],
+                                  "position": [
+                                    -247500,
+                                    -1077500,
+                                    -2867500
+                                  ],
+                                  "name": "Periventricular hypothalamic nucleus, posterior part",
+                                  "labelIndex": 126,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    85,
+                                    71
+                                  ],
+                                  "position": [
+                                    -107500,
+                                    1062500,
+                                    -2317500
+                                  ],
+                                  "name": "Periventricular hypothalamic nucleus, preoptic part",
+                                  "labelIndex": 133,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    85,
+                                    71
+                                  ],
+                                  "position": [
+                                    -217500,
+                                    572500,
+                                    -2417500
+                                  ],
+                                  "name": "Subparaventricular zone",
+                                  "labelIndex": 347,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    85,
+                                    71
+                                  ],
+                                  "position": [
+                                    -207500,
+                                    662500,
+                                    -2887500
+                                  ],
+                                  "name": "Suprachiasmatic nucleus",
+                                  "labelIndex": 286,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    85,
+                                    71
+                                  ],
+                                  "position": [
+                                    -127500,
+                                    692500,
+                                    552500
+                                  ],
+                                  "name": "Subfornical organ",
+                                  "labelIndex": 338,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    85,
+                                    71
+                                  ],
+                                  "position": [
+                                    -437500,
+                                    1152500,
+                                    -2847500
+                                  ],
+                                  "name": "Ventromedial preoptic nucleus",
+                                  "labelIndex": 576073699,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    85,
+                                    71
+                                  ],
+                                  "position": [
+                                    -797500,
+                                    1272500,
+                                    -2897500
+                                  ],
+                                  "name": "Ventrolateral preoptic nucleus",
+                                  "labelIndex": 689,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                76,
+                                62
+                              ],
+                              "position": [
+                                -487500,
+                                -627500,
+                                -2117500
+                              ],
+                              "name": "Hypothalamic medial zone",
+                              "labelIndex": 467,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    76,
+                                    62
+                                  ],
+                                  "position": [
+                                    -577500,
+                                    482500,
+                                    -2347500
+                                  ],
+                                  "name": "Anterior hypothalamic nucleus",
+                                  "labelIndex": 88,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        76,
+                                        62
+                                      ],
+                                      "name": "Anterior hypothalamic nucleus, anterior part",
+                                      "labelIndex": 700,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        76,
+                                        62
+                                      ],
+                                      "name": "Anterior hypothalamic nucleus, central part",
+                                      "labelIndex": 708,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        76,
+                                        62
+                                      ],
+                                      "name": "Anterior hypothalamic nucleus, dorsal part",
+                                      "labelIndex": 716,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        76,
+                                        62
+                                      ],
+                                      "name": "Anterior hypothalamic nucleus, posterior part",
+                                      "labelIndex": 724,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    76,
+                                    62
+                                  ],
+                                  "position": [
+                                    -497500,
+                                    -1377500,
+                                    -2147500
+                                  ],
+                                  "name": "Mammillary body",
+                                  "labelIndex": 331,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        76,
+                                        62
+                                      ],
+                                      "position": [
+                                        -987500,
+                                        -1347500,
+                                        -2247500
+                                      ],
+                                      "name": "Lateral mammillary nucleus",
+                                      "labelIndex": 210,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        76,
+                                        62
+                                      ],
+                                      "position": [
+                                        -377500,
+                                        -1487500,
+                                        -2157500
+                                      ],
+                                      "name": "Medial mammillary nucleus",
+                                      "labelIndex": 491,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            76,
+                                            62
+                                          ],
+                                          "position": [
+                                            -127500,
+                                            -1357500,
+                                            -2197500
+                                          ],
+                                          "name": "Medial mammillary nucleus, median part",
+                                          "labelIndex": 732,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            76,
+                                            62
+                                          ],
+                                          "position": [
+                                            -587500,
+                                            -1477500,
+                                            -2167500
+                                          ],
+                                          "name": "Medial mammillary nucleus, lateral part",
+                                          "labelIndex": 606826647,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            76,
+                                            62
+                                          ],
+                                          "position": [
+                                            -347500,
+                                            -1407500,
+                                            -2227500
+                                          ],
+                                          "name": "Medial mammillary nucleus, medial part",
+                                          "labelIndex": 606826651,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            76,
+                                            62
+                                          ],
+                                          "position": [
+                                            -147500,
+                                            -1737500,
+                                            -2247500
+                                          ],
+                                          "name": "Medial mammillary nucleus, posterior part",
+                                          "labelIndex": 606826655,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            76,
+                                            62
+                                          ],
+                                          "position": [
+                                            -207500,
+                                            -1627500,
+                                            -1917500
+                                          ],
+                                          "name": "Medial mammillary nucleus, dorsal part",
+                                          "labelIndex": 606826659,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        76,
+                                        62
+                                      ],
+                                      "position": [
+                                        -407500,
+                                        -1367500,
+                                        -1807500
+                                      ],
+                                      "name": "Supramammillary nucleus",
+                                      "labelIndex": 525,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            76,
+                                            62
+                                          ],
+                                          "name": "Supramammillary nucleus, lateral part",
+                                          "labelIndex": 1110,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            76,
+                                            62
+                                          ],
+                                          "name": "Supramammillary nucleus, medial part",
+                                          "labelIndex": 1118,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        76,
+                                        62
+                                      ],
+                                      "position": [
+                                        -857500,
+                                        -977500,
+                                        -2707500
+                                      ],
+                                      "name": "Tuberomammillary nucleus",
+                                      "labelIndex": 557,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            76,
+                                            62
+                                          ],
+                                          "position": [
+                                            -197500,
+                                            -1047500,
+                                            -2517500
+                                          ],
+                                          "name": "Tuberomammillary nucleus, dorsal part",
+                                          "labelIndex": 1126,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            76,
+                                            62
+                                          ],
+                                          "position": [
+                                            -1027500,
+                                            -937500,
+                                            -2717500
+                                          ],
+                                          "name": "Tuberomammillary nucleus, ventral part",
+                                          "labelIndex": 1,
+                                          "children": []
+                                        }
+                                      ]
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    76,
+                                    62
+                                  ],
+                                  "position": [
+                                    -367500,
+                                    1042500,
+                                    -2207500
+                                  ],
+                                  "name": "Medial preoptic nucleus",
+                                  "labelIndex": 515,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        76,
+                                        62
+                                      ],
+                                      "name": "Medial preoptic nucleus, central part",
+                                      "labelIndex": 740,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        76,
+                                        62
+                                      ],
+                                      "name": "Medial preoptic nucleus, lateral part",
+                                      "labelIndex": 748,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        76,
+                                        62
+                                      ],
+                                      "name": "Medial preoptic nucleus, medial part",
+                                      "labelIndex": 756,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    76,
+                                    62
+                                  ],
+                                  "position": [
+                                    -457500,
+                                    -1097500,
+                                    -2257500
+                                  ],
+                                  "name": "Dorsal premammillary nucleus",
+                                  "labelIndex": 980,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    76,
+                                    62
+                                  ],
+                                  "position": [
+                                    -607500,
+                                    -997500,
+                                    -2647500
+                                  ],
+                                  "name": "Ventral premammillary nucleus",
+                                  "labelIndex": 1004,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    76,
+                                    62
+                                  ],
+                                  "position": [
+                                    -507500,
+                                    52500,
+                                    -1717500
+                                  ],
+                                  "name": "Paraventricular hypothalamic nucleus, descending division",
+                                  "labelIndex": 63,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        76,
+                                        62
+                                      ],
+                                      "name": "Paraventricular hypothalamic nucleus, descending division, dorsal parvicellular part",
+                                      "labelIndex": 439,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        76,
+                                        62
+                                      ],
+                                      "name": "Paraventricular hypothalamic nucleus, descending division, forniceal part",
+                                      "labelIndex": 447,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        76,
+                                        62
+                                      ],
+                                      "name": "Paraventricular hypothalamic nucleus, descending division, lateral parvicellular part",
+                                      "labelIndex": 455,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        76,
+                                        62
+                                      ],
+                                      "name": "Paraventricular hypothalamic nucleus, descending division, medial parvicellular part, ventral zone",
+                                      "labelIndex": 464,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    76,
+                                    62
+                                  ],
+                                  "position": [
+                                    -487500,
+                                    -247500,
+                                    -2747500
+                                  ],
+                                  "name": "Ventromedial hypothalamic nucleus",
+                                  "labelIndex": 693,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        76,
+                                        62
+                                      ],
+                                      "name": "Ventromedial hypothalamic nucleus, anterior part",
+                                      "labelIndex": 761,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        76,
+                                        62
+                                      ],
+                                      "name": "Ventromedial hypothalamic nucleus, central part",
+                                      "labelIndex": 769,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        76,
+                                        62
+                                      ],
+                                      "name": "Ventromedial hypothalamic nucleus, dorsomedial part",
+                                      "labelIndex": 777,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        76,
+                                        62
+                                      ],
+                                      "name": "Ventromedial hypothalamic nucleus, ventrolateral part",
+                                      "labelIndex": 785,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    76,
+                                    62
+                                  ],
+                                  "position": [
+                                    -347500,
+                                    -887500,
+                                    -1617500
+                                  ],
+                                  "name": "Posterior hypothalamic nucleus",
+                                  "labelIndex": 946,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                242,
+                                72,
+                                59
+                              ],
+                              "position": [
+                                -1307500,
+                                -247500,
+                                -1787500
+                              ],
+                              "name": "Hypothalamic lateral zone",
+                              "labelIndex": 290,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    242,
+                                    72,
+                                    59
+                                  ],
+                                  "position": [
+                                    -1257500,
+                                    -117500,
+                                    -2017500
+                                  ],
+                                  "name": "Lateral hypothalamic area",
+                                  "labelIndex": 194,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    242,
+                                    72,
+                                    59
+                                  ],
+                                  "position": [
+                                    -1097500,
+                                    1152500,
+                                    -2247500
+                                  ],
+                                  "name": "Lateral preoptic area",
+                                  "labelIndex": 226,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    242,
+                                    72,
+                                    59
+                                  ],
+                                  "position": [
+                                    -1387500,
+                                    -487500,
+                                    -1757500
+                                  ],
+                                  "name": "Preparasubthalamic nucleus",
+                                  "labelIndex": 356,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    242,
+                                    72,
+                                    59
+                                  ],
+                                  "position": [
+                                    -1237500,
+                                    -897500,
+                                    -1717500
+                                  ],
+                                  "name": "Parasubthalamic nucleus",
+                                  "labelIndex": 364,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    242,
+                                    72,
+                                    59
+                                  ],
+                                  "position": [
+                                    -917500,
+                                    132500,
+                                    -2107500
+                                  ],
+                                  "name": "Perifornical nucleus",
+                                  "labelIndex": 576073704,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    242,
+                                    72,
+                                    59
+                                  ],
+                                  "position": [
+                                    -587500,
+                                    382500,
+                                    -2987500
+                                  ],
+                                  "name": "Retrochiasmatic area",
+                                  "labelIndex": 173,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    242,
+                                    72,
+                                    59
+                                  ],
+                                  "position": [
+                                    -1727500,
+                                    -747500,
+                                    -1417500
+                                  ],
+                                  "name": "Subthalamic nucleus",
+                                  "labelIndex": 470,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    242,
+                                    72,
+                                    59
+                                  ],
+                                  "position": [
+                                    -977500,
+                                    -317500,
+                                    -2887500
+                                  ],
+                                  "name": "Tuberal nucleus",
+                                  "labelIndex": 614,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    242,
+                                    72,
+                                    59
+                                  ],
+                                  "position": [
+                                    -1607500,
+                                    -797500,
+                                    -977500
+                                  ],
+                                  "name": "Zona incerta",
+                                  "labelIndex": 797,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        242,
+                                        72,
+                                        59
+                                      ],
+                                      "name": "Dopaminergic A13 group",
+                                      "labelIndex": 796,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        242,
+                                        72,
+                                        59
+                                      ],
+                                      "position": [
+                                        -1277500,
+                                        -1207500,
+                                        -907500
+                                      ],
+                                      "name": "Fields of Forel",
+                                      "labelIndex": 804,
+                                      "children": []
+                                    }
+                                  ]
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                242,
+                                72,
+                                59
+                              ],
+                              "position": [
+                                -157500,
+                                -617500,
+                                -3327500
+                              ],
+                              "name": "Median eminence",
+                              "labelIndex": 10671,
+                              "children": []
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        255,
+                        100,
+                        255
+                      ],
+                      "position": [
+                        -1007500,
+                        -2597500,
+                        692500
+                      ],
+                      "name": "Midbrain",
+                      "labelIndex": 313,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            255,
+                            122,
+                            255
+                          ],
+                          "position": [
+                            -1197500,
+                            -3477500,
+                            1952500
+                          ],
+                          "name": "Midbrain, sensory related",
+                          "labelIndex": 339,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                122,
+                                255
+                              ],
+                              "position": [
+                                -737500,
+                                -2637500,
+                                2402500
+                              ],
+                              "name": "Superior colliculus, sensory related",
+                              "labelIndex": 302,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    122,
+                                    255
+                                  ],
+                                  "position": [
+                                    -747500,
+                                    -2517500,
+                                    2302500
+                                  ],
+                                  "name": "Superior colliculus, optic layer",
+                                  "labelIndex": 851,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    122,
+                                    255
+                                  ],
+                                  "position": [
+                                    -767500,
+                                    -2657500,
+                                    2492500
+                                  ],
+                                  "name": "Superior colliculus, superficial gray layer",
+                                  "labelIndex": 842,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    122,
+                                    255
+                                  ],
+                                  "position": [
+                                    -777500,
+                                    -2537500,
+                                    2722500
+                                  ],
+                                  "name": "Superior colliculus, zonal layer",
+                                  "labelIndex": 834,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                122,
+                                255
+                              ],
+                              "position": [
+                                -1317500,
+                                -3817500,
+                                1822500
+                              ],
+                              "name": "Inferior colliculus",
+                              "labelIndex": 4,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    122,
+                                    255
+                                  ],
+                                  "position": [
+                                    -1317500,
+                                    -3847500,
+                                    1632500
+                                  ],
+                                  "name": "Inferior colliculus, central nucleus",
+                                  "labelIndex": 811,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    122,
+                                    255
+                                  ],
+                                  "position": [
+                                    -827500,
+                                    -3867500,
+                                    2102500
+                                  ],
+                                  "name": "Inferior colliculus, dorsal nucleus",
+                                  "labelIndex": 820,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    122,
+                                    255
+                                  ],
+                                  "position": [
+                                    -1707500,
+                                    -3777500,
+                                    1792500
+                                  ],
+                                  "name": "Inferior colliculus, external nucleus",
+                                  "labelIndex": 828,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                122,
+                                255
+                              ],
+                              "position": [
+                                -2147500,
+                                -2487500,
+                                652500
+                              ],
+                              "name": "Nucleus of the brachium of the inferior colliculus",
+                              "labelIndex": 580,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                122,
+                                255
+                              ],
+                              "position": [
+                                -1947500,
+                                -2907500,
+                                212500
+                              ],
+                              "name": "Nucleus sagulum",
+                              "labelIndex": 271,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                122,
+                                255
+                              ],
+                              "position": [
+                                -2187500,
+                                -2837500,
+                                112500
+                              ],
+                              "name": "Parabigeminal nucleus",
+                              "labelIndex": 874,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                122,
+                                255
+                              ],
+                              "position": [
+                                -927500,
+                                -3927500,
+                                -47500
+                              ],
+                              "name": "Midbrain trigeminal nucleus",
+                              "labelIndex": 460,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                122,
+                                255
+                              ],
+                              "position": [
+                                -97500,
+                                -1257500,
+                                882500
+                              ],
+                              "name": "Subcommissural organ",
+                              "labelIndex": 599626923,
+                              "children": []
+                            }
+                          ]
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            255,
+                            144,
+                            255
+                          ],
+                          "position": [
+                            -937500,
+                            -2407500,
+                            592500
+                          ],
+                          "name": "Midbrain, motor related",
+                          "labelIndex": 323,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                144,
+                                255
+                              ],
+                              "position": [
+                                -1707500,
+                                -1877500,
+                                -1207500
+                              ],
+                              "name": "Substantia nigra, reticular part",
+                              "labelIndex": 381,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                144,
+                                255
+                              ],
+                              "position": [
+                                -787500,
+                                -1747500,
+                                -1187500
+                              ],
+                              "name": "Ventral tegmental area",
+                              "labelIndex": 749,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                144,
+                                255
+                              ],
+                              "position": [
+                                -357500,
+                                -2007500,
+                                -1267500
+                              ],
+                              "name": "Paranigral nucleus",
+                              "labelIndex": 607344830,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                144,
+                                255
+                              ],
+                              "position": [
+                                -1197500,
+                                -2447500,
+                                -607500
+                              ],
+                              "name": "Midbrain reticular nucleus, retrorubral area",
+                              "labelIndex": 246,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                144,
+                                255
+                              ],
+                              "position": [
+                                -1067500,
+                                -2387500,
+                                42500
+                              ],
+                              "name": "Midbrain reticular nucleus",
+                              "labelIndex": 128,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    255
+                                  ],
+                                  "name": "Midbrain reticular nucleus, magnocellular part",
+                                  "labelIndex": 539,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    255
+                                  ],
+                                  "name": "Midbrain reticular nucleus, magnocellular part, general",
+                                  "labelIndex": 548,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    255
+                                  ],
+                                  "name": "Midbrain reticular nucleus, parvicellular part",
+                                  "labelIndex": 555,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                144,
+                                255
+                              ],
+                              "position": [
+                                -967500,
+                                -2587500,
+                                1632500
+                              ],
+                              "name": "Superior colliculus, motor related",
+                              "labelIndex": 294,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    255
+                                  ],
+                                  "position": [
+                                    -807500,
+                                    -2777500,
+                                    1522500
+                                  ],
+                                  "name": "Superior colliculus, motor related, deep gray layer",
+                                  "labelIndex": 26,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    255
+                                  ],
+                                  "position": [
+                                    -657500,
+                                    -2767500,
+                                    1532500
+                                  ],
+                                  "name": "Superior colliculus, motor related, deep white layer",
+                                  "labelIndex": 42,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    255
+                                  ],
+                                  "position": [
+                                    -1017500,
+                                    -2577500,
+                                    1572500
+                                  ],
+                                  "name": "Superior colliculus, motor related, intermediate white layer",
+                                  "labelIndex": 17,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    255
+                                  ],
+                                  "position": [
+                                    -1097500,
+                                    -2427500,
+                                    1792500
+                                  ],
+                                  "name": "Superior colliculus, motor related, intermediate gray layer",
+                                  "labelIndex": 10,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        255
+                                      ],
+                                      "name": "Superior colliculus, motor related, intermediate gray layer, sublayer a",
+                                      "labelIndex": 494,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        255
+                                      ],
+                                      "name": "Superior colliculus, motor related, intermediate gray layer, sublayer b",
+                                      "labelIndex": 503,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        144,
+                                        255
+                                      ],
+                                      "name": "Superior colliculus, motor related, intermediate gray layer, sublayer c",
+                                      "labelIndex": 511,
+                                      "children": []
+                                    }
+                                  ]
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                144,
+                                255
+                              ],
+                              "position": [
+                                -437500,
+                                -2757500,
+                                832500
+                              ],
+                              "name": "Periaqueductal gray",
+                              "labelIndex": 795,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    255
+                                  ],
+                                  "position": [
+                                    -277500,
+                                    -1067500,
+                                    662500
+                                  ],
+                                  "name": "Precommissural nucleus",
+                                  "labelIndex": 50,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    255
+                                  ],
+                                  "position": [
+                                    -387500,
+                                    -1867500,
+                                    12500
+                                  ],
+                                  "name": "Interstitial nucleus of Cajal",
+                                  "labelIndex": 67,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    255
+                                  ],
+                                  "position": [
+                                    -217500,
+                                    -1867500,
+                                    102500
+                                  ],
+                                  "name": "Nucleus of Darkschewitsch",
+                                  "labelIndex": 587,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    255
+                                  ],
+                                  "position": [
+                                    -327500,
+                                    -2707500,
+                                    462500
+                                  ],
+                                  "name": "Supraoculomotor periaqueductal gray",
+                                  "labelIndex": 614454277,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                144,
+                                255
+                              ],
+                              "position": [
+                                -1087500,
+                                -1507500,
+                                872500
+                              ],
+                              "name": "Pretectal region",
+                              "labelIndex": 1100,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    255
+                                  ],
+                                  "position": [
+                                    -1317500,
+                                    -1507500,
+                                    682500
+                                  ],
+                                  "name": "Anterior pretectal nucleus",
+                                  "labelIndex": 215,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    255
+                                  ],
+                                  "position": [
+                                    -427500,
+                                    -1507500,
+                                    1562500
+                                  ],
+                                  "name": "Medial pretectal area",
+                                  "labelIndex": 531,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    255
+                                  ],
+                                  "position": [
+                                    -1127500,
+                                    -1567500,
+                                    1552500
+                                  ],
+                                  "name": "Nucleus of the optic tract",
+                                  "labelIndex": 628,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    255
+                                  ],
+                                  "position": [
+                                    -397500,
+                                    -1447500,
+                                    922500
+                                  ],
+                                  "name": "Nucleus of the posterior commissure",
+                                  "labelIndex": 634,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    255
+                                  ],
+                                  "position": [
+                                    -757500,
+                                    -1347500,
+                                    1362500
+                                  ],
+                                  "name": "Olivary pretectal nucleus",
+                                  "labelIndex": 706,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    255
+                                  ],
+                                  "position": [
+                                    -927500,
+                                    -1607500,
+                                    1392500
+                                  ],
+                                  "name": "Posterior pretectal nucleus",
+                                  "labelIndex": 1061,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    144,
+                                    255
+                                  ],
+                                  "position": [
+                                    -607500,
+                                    -1377500,
+                                    302500
+                                  ],
+                                  "name": "Retroparafascicular nucleus",
+                                  "labelIndex": 549009203,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                144,
+                                255
+                              ],
+                              "name": "Intercollicular nucleus",
+                              "labelIndex": 549009207,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                144,
+                                255
+                              ],
+                              "position": [
+                                -1397500,
+                                -3547500,
+                                542500
+                              ],
+                              "name": "Cuneiform nucleus",
+                              "labelIndex": 616,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                144,
+                                255
+                              ],
+                              "position": [
+                                -817500,
+                                -2117500,
+                                -387500
+                              ],
+                              "name": "Red nucleus",
+                              "labelIndex": 214,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                144,
+                                255
+                              ],
+                              "position": [
+                                -217500,
+                                -2537500,
+                                162500
+                              ],
+                              "name": "Oculomotor nucleus",
+                              "labelIndex": 35,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                144,
+                                255
+                              ],
+                              "position": [
+                                -147500,
+                                -1817500,
+                                -287500
+                              ],
+                              "name": "Medial accesory oculomotor nucleus",
+                              "labelIndex": 549009211,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                144,
+                                255
+                              ],
+                              "position": [
+                                -67500,
+                                -2057500,
+                                -77500
+                              ],
+                              "name": "Edinger-Westphal nucleus",
+                              "labelIndex": 975,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                144,
+                                255
+                              ],
+                              "position": [
+                                -297500,
+                                -3027500,
+                                182500
+                              ],
+                              "name": "Trochlear nucleus",
+                              "labelIndex": 115,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                144,
+                                255
+                              ],
+                              "position": [
+                                -407500,
+                                -3027500,
+                                42500
+                              ],
+                              "name": "Paratrochlear nucleus",
+                              "labelIndex": 606826663,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                144,
+                                255
+                              ],
+                              "position": [
+                                -357500,
+                                -3357500,
+                                -487500
+                              ],
+                              "name": "Ventral tegmental nucleus",
+                              "labelIndex": 757,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                144,
+                                255
+                              ],
+                              "position": [
+                                -297500,
+                                -2997500,
+                                -687500
+                              ],
+                              "name": "Anterior tegmental nucleus",
+                              "labelIndex": 231,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                144,
+                                255
+                              ],
+                              "position": [
+                                -2427500,
+                                -1697500,
+                                -477500
+                              ],
+                              "name": "Lateral terminal nucleus of the accessory optic tract",
+                              "labelIndex": 66,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                144,
+                                255
+                              ],
+                              "position": [
+                                -2037500,
+                                -2117500,
+                                832500
+                              ],
+                              "name": "Dorsal terminal nucleus of the accessory optic tract",
+                              "labelIndex": 75,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                144,
+                                255
+                              ],
+                              "position": [
+                                -1077500,
+                                -1757500,
+                                -1347500
+                              ],
+                              "name": "Medial terminal nucleus of the accessory optic tract",
+                              "labelIndex": 58,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                144,
+                                255
+                              ],
+                              "name": "Substantia nigra, lateral part",
+                              "labelIndex": 615,
+                              "children": []
+                            }
+                          ]
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            255,
+                            144,
+                            255
+                          ],
+                          "position": [
+                            -947500,
+                            -2857500,
+                            -527500
+                          ],
+                          "name": "Midbrain, behavioral state related",
+                          "labelIndex": 348,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                166,
+                                255
+                              ],
+                              "position": [
+                                -1417500,
+                                -1727500,
+                                -1187500
+                              ],
+                              "name": "Substantia nigra, compact part",
+                              "labelIndex": 374,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                166,
+                                255
+                              ],
+                              "position": [
+                                -1327500,
+                                -3117500,
+                                -307500
+                              ],
+                              "name": "Pedunculopontine nucleus",
+                              "labelIndex": 1052,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                166,
+                                255
+                              ],
+                              "position": [
+                                -167500,
+                                -2387500,
+                                -897500
+                              ],
+                              "name": "Midbrain raphe nuclei",
+                              "labelIndex": 165,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    166,
+                                    255
+                                  ],
+                                  "position": [
+                                    -147500,
+                                    -2057500,
+                                    -1017500
+                                  ],
+                                  "name": "Interfascicular nucleus raphe",
+                                  "labelIndex": 12,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    166,
+                                    255
+                                  ],
+                                  "position": [
+                                    -217500,
+                                    -2097500,
+                                    -1477500
+                                  ],
+                                  "name": "Interpeduncular nucleus",
+                                  "labelIndex": 100,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        166,
+                                        255
+                                      ],
+                                      "position": [
+                                        -137500,
+                                        -1897500,
+                                        -1397500
+                                      ],
+                                      "name": "Interpeduncular nucleus, rostral",
+                                      "labelIndex": 607344834,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        166,
+                                        255
+                                      ],
+                                      "position": [
+                                        -117500,
+                                        -2177500,
+                                        -1657500
+                                      ],
+                                      "name": "Interpeduncular nucleus, caudal",
+                                      "labelIndex": 607344838,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        166,
+                                        255
+                                      ],
+                                      "position": [
+                                        -107500,
+                                        -2337500,
+                                        -1247500
+                                      ],
+                                      "name": "Interpeduncular nucleus, apical",
+                                      "labelIndex": 607344842,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        166,
+                                        255
+                                      ],
+                                      "position": [
+                                        -377500,
+                                        -2127500,
+                                        -1617500
+                                      ],
+                                      "name": "Interpeduncular nucleus, lateral",
+                                      "labelIndex": 607344846,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        166,
+                                        255
+                                      ],
+                                      "position": [
+                                        -257500,
+                                        -2127500,
+                                        -1627500
+                                      ],
+                                      "name": "Interpeduncular nucleus, intermediate",
+                                      "labelIndex": 607344850,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        166,
+                                        255
+                                      ],
+                                      "position": [
+                                        -167500,
+                                        -2257500,
+                                        -1157500
+                                      ],
+                                      "name": "Interpeduncular nucleus, dorsomedial",
+                                      "labelIndex": 607344854,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        166,
+                                        255
+                                      ],
+                                      "position": [
+                                        -287500,
+                                        -2137500,
+                                        -1387500
+                                      ],
+                                      "name": "Interpeduncular nucleus, dorsolateral",
+                                      "labelIndex": 607344858,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        166,
+                                        255
+                                      ],
+                                      "position": [
+                                        -287500,
+                                        -1787500,
+                                        -1317500
+                                      ],
+                                      "name": "Interpeduncular nucleus, rostrolateral",
+                                      "labelIndex": 607344862,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    166,
+                                    255
+                                  ],
+                                  "position": [
+                                    -87500,
+                                    -2047500,
+                                    -467500
+                                  ],
+                                  "name": "Rostral linear nucleus raphe",
+                                  "labelIndex": 197,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    166,
+                                    255
+                                  ],
+                                  "position": [
+                                    -137500,
+                                    -2527500,
+                                    -487500
+                                  ],
+                                  "name": "Central linear nucleus raphe",
+                                  "labelIndex": 591,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    166,
+                                    255
+                                  ],
+                                  "position": [
+                                    -97500,
+                                    -3267500,
+                                    142500
+                                  ],
+                                  "name": "Dorsal nucleus raphe",
+                                  "labelIndex": 872,
+                                  "children": []
+                                }
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        255,
+                        155,
+                        136
+                      ],
+                      "position": [
+                        -1187500,
+                        -4517500,
+                        -1847500
+                      ],
+                      "name": "Hindbrain",
+                      "labelIndex": 1065,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            255,
+                            155,
+                            136
+                          ],
+                          "position": [
+                            -1097500,
+                            -3307500,
+                            -1577500
+                          ],
+                          "name": "Pons",
+                          "labelIndex": 771,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                174,
+                                111
+                              ],
+                              "position": [
+                                -1967500,
+                                -3487500,
+                                -1497500
+                              ],
+                              "name": "Pons, sensory related",
+                              "labelIndex": 1132,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    174,
+                                    111
+                                  ],
+                                  "position": [
+                                    -1847500,
+                                    -2907500,
+                                    -1217500
+                                  ],
+                                  "name": "Nucleus of the lateral lemniscus",
+                                  "labelIndex": 612,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        174,
+                                        111
+                                      ],
+                                      "name": "Nucleus of the lateral lemniscus, dorsal part",
+                                      "labelIndex": 82,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        174,
+                                        111
+                                      ],
+                                      "name": "Nucleus of the lateral lemniscus, horizontal part",
+                                      "labelIndex": 90,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        174,
+                                        111
+                                      ],
+                                      "name": "Nucleus of the lateral lemniscus, ventral part",
+                                      "labelIndex": 99,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    174,
+                                    111
+                                  ],
+                                  "position": [
+                                    -2107500,
+                                    -3617500,
+                                    -1687500
+                                  ],
+                                  "name": "Principal sensory nucleus of the trigeminal",
+                                  "labelIndex": 7,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    174,
+                                    111
+                                  ],
+                                  "position": [
+                                    -1597500,
+                                    -3777500,
+                                    -277500
+                                  ],
+                                  "name": "Parabrachial nucleus",
+                                  "labelIndex": 867,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        174,
+                                        111
+                                      ],
+                                      "position": [
+                                        -2067500,
+                                        -3807500,
+                                        -767500
+                                      ],
+                                      "name": "Koelliker-Fuse subnucleus",
+                                      "labelIndex": 123,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        174,
+                                        111
+                                      ],
+                                      "name": "Parabrachial nucleus, lateral division",
+                                      "labelIndex": 881,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            174,
+                                            111
+                                          ],
+                                          "name": "Parabrachial nucleus, lateral division, central lateral part",
+                                          "labelIndex": 860,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            174,
+                                            111
+                                          ],
+                                          "name": "Parabrachial nucleus, lateral division, dorsal lateral part",
+                                          "labelIndex": 868,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            174,
+                                            111
+                                          ],
+                                          "name": "Parabrachial nucleus, lateral division, external lateral part",
+                                          "labelIndex": 875,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            174,
+                                            111
+                                          ],
+                                          "name": "Parabrachial nucleus, lateral division, superior lateral part",
+                                          "labelIndex": 883,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            174,
+                                            111
+                                          ],
+                                          "name": "Parabrachial nucleus, lateral division, ventral lateral part",
+                                          "labelIndex": 891,
+                                          "children": []
+                                        }
+                                      ]
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        174,
+                                        111
+                                      ],
+                                      "name": "Parabrachial nucleus, medial division",
+                                      "labelIndex": 890,
+                                      "children": [
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            174,
+                                            111
+                                          ],
+                                          "name": "Parabrachial nucleus, medial division, external medial part",
+                                          "labelIndex": 899,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            174,
+                                            111
+                                          ],
+                                          "name": "Parabrachial nucleus, medial division, medial medial part",
+                                          "labelIndex": 915,
+                                          "children": []
+                                        },
+                                        {
+                                          "ngId": "v3_2017",
+                                          "rgb": [
+                                            255,
+                                            174,
+                                            111
+                                          ],
+                                          "name": "Parabrachial nucleus, medial division, ventral medial part",
+                                          "labelIndex": 923,
+                                          "children": []
+                                        }
+                                      ]
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    174,
+                                    111
+                                  ],
+                                  "position": [
+                                    -1297500,
+                                    -3357500,
+                                    -2787500
+                                  ],
+                                  "name": "Superior olivary complex",
+                                  "labelIndex": 398,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        174,
+                                        111
+                                      ],
+                                      "position": [
+                                        -1237500,
+                                        -3197500,
+                                        -2887500
+                                      ],
+                                      "name": "Superior olivary complex, periolivary region",
+                                      "labelIndex": 122,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        174,
+                                        111
+                                      ],
+                                      "position": [
+                                        -1077500,
+                                        -3417500,
+                                        -2777500
+                                      ],
+                                      "name": "Superior olivary complex, medial part",
+                                      "labelIndex": 105,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        174,
+                                        111
+                                      ],
+                                      "position": [
+                                        -1487500,
+                                        -3487500,
+                                        -2687500
+                                      ],
+                                      "name": "Superior olivary complex, lateral part",
+                                      "labelIndex": 114,
+                                      "children": []
+                                    }
+                                  ]
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                186,
+                                134
+                              ],
+                              "position": [
+                                -817500,
+                                -3357500,
+                                -1717500
+                              ],
+                              "name": "Pons, motor related",
+                              "labelIndex": 987,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    186,
+                                    134
+                                  ],
+                                  "position": [
+                                    -847500,
+                                    -4097500,
+                                    -417500
+                                  ],
+                                  "name": "Barrington's nucleus",
+                                  "labelIndex": 280,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    186,
+                                    134
+                                  ],
+                                  "position": [
+                                    -247500,
+                                    -3857500,
+                                    -197500
+                                  ],
+                                  "name": "Dorsal tegmental nucleus",
+                                  "labelIndex": 880,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    186,
+                                    134
+                                  ],
+                                  "name": "Lateral tegmental nucleus",
+                                  "labelIndex": 283,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    186,
+                                    134
+                                  ],
+                                  "position": [
+                                    -297500,
+                                    -4137500,
+                                    -647500
+                                  ],
+                                  "name": "Posterodorsal tegmental nucleus",
+                                  "labelIndex": 599626927,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    186,
+                                    134
+                                  ],
+                                  "position": [
+                                    -447500,
+                                    -4047500,
+                                    -427500
+                                  ],
+                                  "name": "Pontine central gray",
+                                  "labelIndex": 898,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    186,
+                                    134
+                                  ],
+                                  "position": [
+                                    -677500,
+                                    -2397500,
+                                    -2437500
+                                  ],
+                                  "name": "Pontine gray",
+                                  "labelIndex": 931,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    186,
+                                    134
+                                  ],
+                                  "position": [
+                                    -727500,
+                                    -3637500,
+                                    -1917500
+                                  ],
+                                  "name": "Pontine reticular nucleus, caudal part",
+                                  "labelIndex": 1093,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    186,
+                                    134
+                                  ],
+                                  "name": "Pontine reticular nucleus, ventral part",
+                                  "labelIndex": 552,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    186,
+                                    134
+                                  ],
+                                  "position": [
+                                    -317500,
+                                    -4287500,
+                                    -967500
+                                  ],
+                                  "name": "Supragenual nucleus",
+                                  "labelIndex": 318,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    186,
+                                    134
+                                  ],
+                                  "name": "Superior salivatory nucleus",
+                                  "labelIndex": 462,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    186,
+                                    134
+                                  ],
+                                  "position": [
+                                    -1597500,
+                                    -3507500,
+                                    -897500
+                                  ],
+                                  "name": "Supratrigeminal nucleus",
+                                  "labelIndex": 534,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    186,
+                                    134
+                                  ],
+                                  "position": [
+                                    -557500,
+                                    -2777500,
+                                    -2117500
+                                  ],
+                                  "name": "Tegmental reticular nucleus",
+                                  "labelIndex": 574,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    186,
+                                    134
+                                  ],
+                                  "position": [
+                                    -1647500,
+                                    -3637500,
+                                    -1327500
+                                  ],
+                                  "name": "Motor nucleus of trigeminal",
+                                  "labelIndex": 621,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    186,
+                                    134
+                                  ],
+                                  "position": [
+                                    -1387500,
+                                    -3497500,
+                                    -1367500
+                                  ],
+                                  "name": "Peritrigeminal zone",
+                                  "labelIndex": 549009215,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    186,
+                                    134
+                                  ],
+                                  "position": [
+                                    -1287500,
+                                    -3637500,
+                                    -1607500
+                                  ],
+                                  "name": "Accessory trigeminal nucleus",
+                                  "labelIndex": 549009219,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    186,
+                                    134
+                                  ],
+                                  "position": [
+                                    -1737500,
+                                    -3397500,
+                                    -1907500
+                                  ],
+                                  "name": "Parvicellular motor 5 nucleus",
+                                  "labelIndex": 549009223,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    186,
+                                    134
+                                  ],
+                                  "position": [
+                                    -1887500,
+                                    -3777500,
+                                    -1297500
+                                  ],
+                                  "name": "Intertrigeminal nucleus",
+                                  "labelIndex": 549009227,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                195,
+                                149
+                              ],
+                              "position": [
+                                -757500,
+                                -3077500,
+                                -1217500
+                              ],
+                              "name": "Pons, behavioral state related",
+                              "labelIndex": 1117,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    195,
+                                    149
+                                  ],
+                                  "position": [
+                                    -227500,
+                                    -2987500,
+                                    -1217500
+                                  ],
+                                  "name": "Superior central nucleus raphe",
+                                  "labelIndex": 679,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        195,
+                                        149
+                                      ],
+                                      "name": "Superior central nucleus raphe, lateral part",
+                                      "labelIndex": 137,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        195,
+                                        149
+                                      ],
+                                      "name": "Superior central nucleus raphe, medial part",
+                                      "labelIndex": 130,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    195,
+                                    149
+                                  ],
+                                  "position": [
+                                    -1007500,
+                                    -4157500,
+                                    -317500
+                                  ],
+                                  "name": "Locus ceruleus",
+                                  "labelIndex": 147,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    195,
+                                    149
+                                  ],
+                                  "position": [
+                                    -607500,
+                                    -3757500,
+                                    -17500
+                                  ],
+                                  "name": "Laterodorsal tegmental nucleus",
+                                  "labelIndex": 162,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    195,
+                                    149
+                                  ],
+                                  "position": [
+                                    -247500,
+                                    -3987500,
+                                    -857500
+                                  ],
+                                  "name": "Nucleus incertus",
+                                  "labelIndex": 604,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    195,
+                                    149
+                                  ],
+                                  "position": [
+                                    -947500,
+                                    -2947500,
+                                    -1357500
+                                  ],
+                                  "name": "Pontine reticular nucleus",
+                                  "labelIndex": 146,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    195,
+                                    149
+                                  ],
+                                  "position": [
+                                    -117500,
+                                    -3627500,
+                                    -1077500
+                                  ],
+                                  "name": "Nucleus raphe pontis",
+                                  "labelIndex": 238,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    195,
+                                    149
+                                  ],
+                                  "position": [
+                                    -997500,
+                                    -4057500,
+                                    -737500
+                                  ],
+                                  "name": "Subceruleus nucleus",
+                                  "labelIndex": 350,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    195,
+                                    149
+                                  ],
+                                  "position": [
+                                    -777500,
+                                    -4077500,
+                                    -767500
+                                  ],
+                                  "name": "Sublaterodorsal nucleus",
+                                  "labelIndex": 358,
+                                  "children": []
+                                }
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            255,
+                            155,
+                            205
+                          ],
+                          "position": [
+                            -1237500,
+                            -5167500,
+                            -1997500
+                          ],
+                          "name": "Medulla",
+                          "labelIndex": 354,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                165,
+                                210
+                              ],
+                              "position": [
+                                -1827500,
+                                -5347500,
+                                -1707500
+                              ],
+                              "name": "Medulla, sensory related",
+                              "labelIndex": 386,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    165,
+                                    210
+                                  ],
+                                  "position": [
+                                    -137500,
+                                    -6097500,
+                                    -1047500
+                                  ],
+                                  "name": "Area postrema",
+                                  "labelIndex": 207,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    165,
+                                    210
+                                  ],
+                                  "position": [
+                                    -2637500,
+                                    -4317500,
+                                    -1487500
+                                  ],
+                                  "name": "Cochlear nuclei",
+                                  "labelIndex": 607,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        165,
+                                        210
+                                      ],
+                                      "name": "Granular lamina of the cochlear nuclei",
+                                      "labelIndex": 112,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        165,
+                                        210
+                                      ],
+                                      "name": "Cochlear nucleus, subpedunclular granular region",
+                                      "labelIndex": 560,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        165,
+                                        210
+                                      ],
+                                      "position": [
+                                        -2507500,
+                                        -4707500,
+                                        -1037500
+                                      ],
+                                      "name": "Dorsal cochlear nucleus",
+                                      "labelIndex": 96,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        165,
+                                        210
+                                      ],
+                                      "position": [
+                                        -2707500,
+                                        -4077500,
+                                        -1767500
+                                      ],
+                                      "name": "Ventral cochlear nucleus",
+                                      "labelIndex": 101,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    165,
+                                    210
+                                  ],
+                                  "position": [
+                                    -767500,
+                                    -6257500,
+                                    -1187500
+                                  ],
+                                  "name": "Dorsal column nuclei",
+                                  "labelIndex": 720,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        165,
+                                        210
+                                      ],
+                                      "position": [
+                                        -867500,
+                                        -6217500,
+                                        -1187500
+                                      ],
+                                      "name": "Cuneate nucleus",
+                                      "labelIndex": 711,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        165,
+                                        210
+                                      ],
+                                      "position": [
+                                        -367500,
+                                        -6417500,
+                                        -1187500
+                                      ],
+                                      "name": "Gracile nucleus",
+                                      "labelIndex": 1039,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    165,
+                                    210
+                                  ],
+                                  "position": [
+                                    -1397500,
+                                    -5907500,
+                                    -877500
+                                  ],
+                                  "name": "External cuneate nucleus",
+                                  "labelIndex": 903,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    165,
+                                    210
+                                  ],
+                                  "position": [
+                                    -697500,
+                                    -3337500,
+                                    -2797500
+                                  ],
+                                  "name": "Nucleus of the trapezoid body",
+                                  "labelIndex": 642,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    165,
+                                    210
+                                  ],
+                                  "position": [
+                                    -817500,
+                                    -5637500,
+                                    -1307500
+                                  ],
+                                  "name": "Nucleus of the solitary tract",
+                                  "labelIndex": 651,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        165,
+                                        210
+                                      ],
+                                      "name": "Nucleus of the solitary tract, central part",
+                                      "labelIndex": 659,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        165,
+                                        210
+                                      ],
+                                      "name": "Nucleus of the solitary tract, commissural part",
+                                      "labelIndex": 666,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        165,
+                                        210
+                                      ],
+                                      "name": "Nucleus of the solitary tract, gelatinous part",
+                                      "labelIndex": 674,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        165,
+                                        210
+                                      ],
+                                      "name": "Nucleus of the solitary tract, lateral part",
+                                      "labelIndex": 682,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        165,
+                                        210
+                                      ],
+                                      "name": "Nucleus of the solitary tract, medial part",
+                                      "labelIndex": 691,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    165,
+                                    210
+                                  ],
+                                  "position": [
+                                    -1757500,
+                                    -6277500,
+                                    -1937500
+                                  ],
+                                  "name": "Spinal nucleus of the trigeminal, caudal part",
+                                  "labelIndex": 429,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    165,
+                                    210
+                                  ],
+                                  "position": [
+                                    -1987500,
+                                    -5547500,
+                                    -1917500
+                                  ],
+                                  "name": "Spinal nucleus of the trigeminal, interpolar part",
+                                  "labelIndex": 437,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    165,
+                                    210
+                                  ],
+                                  "position": [
+                                    -1947500,
+                                    -4577500,
+                                    -1957500
+                                  ],
+                                  "name": "Spinal nucleus of the trigeminal, oral part",
+                                  "labelIndex": 445,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        165,
+                                        210
+                                      ],
+                                      "name": "Spinal nucleus of the trigeminal, oral part, caudal dorsomedial part",
+                                      "labelIndex": 77,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        165,
+                                        210
+                                      ],
+                                      "name": "Spinal nucleus of the trigeminal, oral part, middle dorsomedial part, dorsal zone",
+                                      "labelIndex": 53,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        165,
+                                        210
+                                      ],
+                                      "name": "Spinal nucleus of the trigeminal, oral part, middle dorsomedial part, ventral zone",
+                                      "labelIndex": 61,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        165,
+                                        210
+                                      ],
+                                      "name": "Spinal nucleus of the trigeminal, oral part, rostral dorsomedial part",
+                                      "labelIndex": 45,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        165,
+                                        210
+                                      ],
+                                      "name": "Spinal nucleus of the trigeminal, oral part, ventrolateral part",
+                                      "labelIndex": 69,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    165,
+                                    210
+                                  ],
+                                  "position": [
+                                    -2007500,
+                                    -5907500,
+                                    -1207500
+                                  ],
+                                  "name": "Paratrigeminal nucleus",
+                                  "labelIndex": 589508451,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    165,
+                                    210
+                                  ],
+                                  "name": "Nucleus z",
+                                  "labelIndex": 789,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                179,
+                                217
+                              ],
+                              "position": [
+                                -987500,
+                                -5077500,
+                                -2007500
+                              ],
+                              "name": "Medulla, motor related",
+                              "labelIndex": 370,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "position": [
+                                    -447500,
+                                    -4207500,
+                                    -1257500
+                                  ],
+                                  "name": "Abducens nucleus",
+                                  "labelIndex": 653,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "name": "Accessory abducens nucleus",
+                                  "labelIndex": 568,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "position": [
+                                    -1397500,
+                                    -4287500,
+                                    -2817500
+                                  ],
+                                  "name": "Facial motor nucleus",
+                                  "labelIndex": 661,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "position": [
+                                    -1157500,
+                                    -3987500,
+                                    -2367500
+                                  ],
+                                  "name": "Accessory facial motor nucleus",
+                                  "labelIndex": 576,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "name": "Efferent vestibular nucleus",
+                                  "labelIndex": 640,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "position": [
+                                    -1407500,
+                                    -5327500,
+                                    -2657500
+                                  ],
+                                  "name": "Nucleus ambiguus",
+                                  "labelIndex": 135,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        179,
+                                        217
+                                      ],
+                                      "position": [
+                                        -1457500,
+                                        -5057500,
+                                        -2587500
+                                      ],
+                                      "name": "Nucleus ambiguus, dorsal division",
+                                      "labelIndex": 939,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        179,
+                                        217
+                                      ],
+                                      "position": [
+                                        -1367500,
+                                        -5577500,
+                                        -2727500
+                                      ],
+                                      "name": "Nucleus ambiguus, ventral division",
+                                      "labelIndex": 143,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "position": [
+                                    -397500,
+                                    -5957500,
+                                    -1397500
+                                  ],
+                                  "name": "Dorsal motor nucleus of the vagus nerve",
+                                  "labelIndex": 839,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "name": "Efferent cochlear group",
+                                  "labelIndex": 887,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "position": [
+                                    -457500,
+                                    -4787500,
+                                    -2187500
+                                  ],
+                                  "name": "Gigantocellular reticular nucleus",
+                                  "labelIndex": 1048,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "position": [
+                                    -1397500,
+                                    -4907500,
+                                    32500
+                                  ],
+                                  "name": "Infracerebellar nucleus",
+                                  "labelIndex": 372,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "position": [
+                                    -427500,
+                                    -5477500,
+                                    -3117500
+                                  ],
+                                  "name": "Inferior olivary complex",
+                                  "labelIndex": 83,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "position": [
+                                    -1007500,
+                                    -5107500,
+                                    -2127500
+                                  ],
+                                  "name": "Intermediate reticular nucleus",
+                                  "labelIndex": 136,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "position": [
+                                    -1487500,
+                                    -4657500,
+                                    -1537500
+                                  ],
+                                  "name": "Inferior salivatory nucleus",
+                                  "labelIndex": 106,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "position": [
+                                    -1397500,
+                                    -5347500,
+                                    -2287500
+                                  ],
+                                  "name": "Linear nucleus of the medulla",
+                                  "labelIndex": 203,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "position": [
+                                    -1337500,
+                                    -5787500,
+                                    -3027500
+                                  ],
+                                  "name": "Lateral reticular nucleus",
+                                  "labelIndex": 235,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        179,
+                                        217
+                                      ],
+                                      "position": [
+                                        -1287500,
+                                        -5837500,
+                                        -3027500
+                                      ],
+                                      "name": "Lateral reticular nucleus, magnocellular part",
+                                      "labelIndex": 955,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        179,
+                                        217
+                                      ],
+                                      "position": [
+                                        -1817500,
+                                        -5347500,
+                                        -3047500
+                                      ],
+                                      "name": "Lateral reticular nucleus, parvicellular part",
+                                      "labelIndex": 963,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "position": [
+                                    -417500,
+                                    -4627500,
+                                    -2797500
+                                  ],
+                                  "name": "Magnocellular reticular nucleus",
+                                  "labelIndex": 307,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "position": [
+                                    -907500,
+                                    -6177500,
+                                    -2377500
+                                  ],
+                                  "name": "Medullary reticular nucleus",
+                                  "labelIndex": 395,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        179,
+                                        217
+                                      ],
+                                      "position": [
+                                        -1247500,
+                                        -6207500,
+                                        -2147500
+                                      ],
+                                      "name": "Medullary reticular nucleus, dorsal part",
+                                      "labelIndex": 1098,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        179,
+                                        217
+                                      ],
+                                      "position": [
+                                        -667500,
+                                        -6197500,
+                                        -2517500
+                                      ],
+                                      "name": "Medullary reticular nucleus, ventral part",
+                                      "labelIndex": 1107,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "position": [
+                                    -1507500,
+                                    -4887500,
+                                    -2017500
+                                  ],
+                                  "name": "Parvicellular reticular nucleus",
+                                  "labelIndex": 852,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "position": [
+                                    -907500,
+                                    -5867500,
+                                    -1107500
+                                  ],
+                                  "name": "Parasolitary nucleus",
+                                  "labelIndex": 859,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "position": [
+                                    -987500,
+                                    -5017500,
+                                    -2647500
+                                  ],
+                                  "name": "Paragigantocellular reticular nucleus",
+                                  "labelIndex": 938,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        179,
+                                        217
+                                      ],
+                                      "position": [
+                                        -367500,
+                                        -4827500,
+                                        -1407500
+                                      ],
+                                      "name": "Paragigantocellular reticular nucleus, dorsal part",
+                                      "labelIndex": 970,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        179,
+                                        217
+                                      ],
+                                      "position": [
+                                        -1197500,
+                                        -5047500,
+                                        -2907500
+                                      ],
+                                      "name": "Paragigantocellular reticular nucleus, lateral part",
+                                      "labelIndex": 978,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "position": [
+                                    -287500,
+                                    -5057500,
+                                    -1197500
+                                  ],
+                                  "name": "Perihypoglossal nuclei",
+                                  "labelIndex": 154,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        179,
+                                        217
+                                      ],
+                                      "name": "Nucleus intercalatus",
+                                      "labelIndex": 161,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        179,
+                                        217
+                                      ],
+                                      "position": [
+                                        -367500,
+                                        -5817500,
+                                        -1847500
+                                      ],
+                                      "name": "Nucleus of Roller",
+                                      "labelIndex": 177,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        179,
+                                        217
+                                      ],
+                                      "position": [
+                                        -277500,
+                                        -4967500,
+                                        -1117500
+                                      ],
+                                      "name": "Nucleus prepositus",
+                                      "labelIndex": 169,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "name": "Paramedian reticular nucleus",
+                                  "labelIndex": 995,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "position": [
+                                    -807500,
+                                    -4317500,
+                                    -3087500
+                                  ],
+                                  "name": "Parapyramidal nucleus",
+                                  "labelIndex": 1069,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        179,
+                                        217
+                                      ],
+                                      "name": "Parapyramidal nucleus, deep part",
+                                      "labelIndex": 185,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        179,
+                                        217
+                                      ],
+                                      "name": "Parapyramidal nucleus, superficial part",
+                                      "labelIndex": 193,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "position": [
+                                    -1197500,
+                                    -4767500,
+                                    -827500
+                                  ],
+                                  "name": "Vestibular nuclei",
+                                  "labelIndex": 701,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        179,
+                                        217
+                                      ],
+                                      "position": [
+                                        -1737500,
+                                        -4527500,
+                                        -867500
+                                      ],
+                                      "name": "Lateral vestibular nucleus",
+                                      "labelIndex": 209,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        179,
+                                        217
+                                      ],
+                                      "position": [
+                                        -957500,
+                                        -4697500,
+                                        -867500
+                                      ],
+                                      "name": "Medial vestibular nucleus",
+                                      "labelIndex": 202,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        179,
+                                        217
+                                      ],
+                                      "position": [
+                                        -1387500,
+                                        -5117500,
+                                        -917500
+                                      ],
+                                      "name": "Spinal vestibular nucleus",
+                                      "labelIndex": 225,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        179,
+                                        217
+                                      ],
+                                      "position": [
+                                        -1617500,
+                                        -4577500,
+                                        -417500
+                                      ],
+                                      "name": "Superior vestibular nucleus",
+                                      "labelIndex": 217,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "position": [
+                                    -1777500,
+                                    -5107500,
+                                    -1097500
+                                  ],
+                                  "name": "Nucleus x",
+                                  "labelIndex": 765,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "position": [
+                                    -267500,
+                                    -5977500,
+                                    -1717500
+                                  ],
+                                  "name": "Hypoglossal nucleus",
+                                  "labelIndex": 773,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "position": [
+                                    -2007500,
+                                    -4707500,
+                                    -527500
+                                  ],
+                                  "name": "Nucleus y",
+                                  "labelIndex": 781,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    179,
+                                    217
+                                  ],
+                                  "name": "Interstitial nucleus of the vestibular nerve",
+                                  "labelIndex": 76,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                198,
+                                226
+                              ],
+                              "position": [
+                                -67500,
+                                -4567500,
+                                -2737500
+                              ],
+                              "name": "Medulla, behavioral state related",
+                              "labelIndex": 379,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    198,
+                                    226
+                                  ],
+                                  "position": [
+                                    -67500,
+                                    -3977500,
+                                    -2567500
+                                  ],
+                                  "name": "Nucleus raphe magnus",
+                                  "labelIndex": 206,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    198,
+                                    226
+                                  ],
+                                  "position": [
+                                    -67500,
+                                    -5097500,
+                                    -3137500
+                                  ],
+                                  "name": "Nucleus raphe pallidus",
+                                  "labelIndex": 230,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    198,
+                                    226
+                                  ],
+                                  "position": [
+                                    -57500,
+                                    -5397500,
+                                    -2577500
+                                  ],
+                                  "name": "Nucleus raphe obscurus",
+                                  "labelIndex": 222,
+                                  "children": []
+                                }
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "ngId": "v3_2017",
+                  "rgb": [
+                    240,
+                    240,
+                    128
+                  ],
+                  "position": [
+                    -1997500,
+                    -5017500,
+                    702500
+                  ],
+                  "name": "Cerebellum",
+                  "labelIndex": 512,
+                  "children": [
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        240,
+                        240,
+                        128
+                      ],
+                      "position": [
+                        -1987500,
+                        -5037500,
+                        712500
+                      ],
+                      "name": "Cerebellar cortex",
+                      "labelIndex": 528,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            255,
+                            252,
+                            145
+                          ],
+                          "name": "Cerebellar cortex, molecular layer",
+                          "labelIndex": 1144,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            255,
+                            252,
+                            145
+                          ],
+                          "name": "Cerebellar cortex, Purkinje layer",
+                          "labelIndex": 1145,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            236,
+                            231,
+                            84
+                          ],
+                          "name": "Cerebellar cortex, granular layer",
+                          "labelIndex": 1143,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            255,
+                            252,
+                            145
+                          ],
+                          "position": [
+                            -827500,
+                            -5197500,
+                            1072500
+                          ],
+                          "name": "Vermal regions",
+                          "labelIndex": 645,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                252,
+                                145
+                              ],
+                              "position": [
+                                -247500,
+                                -4707500,
+                                -97500
+                              ],
+                              "name": "Lingula (I)",
+                              "labelIndex": 912,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "name": "Lingula (I), molecular layer",
+                                  "labelIndex": 10707,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "name": "Lingula (I), Purkinje layer",
+                                  "labelIndex": 10706,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    236,
+                                    231,
+                                    84
+                                  ],
+                                  "name": "Lingula (I), granular layer",
+                                  "labelIndex": 10705,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                252,
+                                145
+                              ],
+                              "position": [
+                                -677500,
+                                -4407500,
+                                962500
+                              ],
+                              "name": "Central lobule",
+                              "labelIndex": 920,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "position": [
+                                    -507500,
+                                    -4187500,
+                                    542500
+                                  ],
+                                  "name": "Lobule II",
+                                  "labelIndex": 976,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        252,
+                                        145
+                                      ],
+                                      "name": "Lobule II, molecular layer",
+                                      "labelIndex": 10710,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        252,
+                                        145
+                                      ],
+                                      "name": "Lobule II, Purkinje layer",
+                                      "labelIndex": 10709,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        236,
+                                        231,
+                                        84
+                                      ],
+                                      "name": "Lobule II, granular layer",
+                                      "labelIndex": 10708,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "position": [
+                                    -757500,
+                                    -4507500,
+                                    1162500
+                                  ],
+                                  "name": "Lobule III",
+                                  "labelIndex": 984,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        252,
+                                        145
+                                      ],
+                                      "name": "Lobule III, molecular layer",
+                                      "labelIndex": 10713,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        252,
+                                        145
+                                      ],
+                                      "name": "Lobule III, Purkinje layer",
+                                      "labelIndex": 10712,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        236,
+                                        231,
+                                        84
+                                      ],
+                                      "name": "Lobule III, granular layer",
+                                      "labelIndex": 10711,
+                                      "children": []
+                                    }
+                                  ]
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                252,
+                                145
+                              ],
+                              "position": [
+                                -1137500,
+                                -4767500,
+                                1582500
+                              ],
+                              "name": "Culmen",
+                              "labelIndex": 928,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "name": "Lobule IV",
+                                  "labelIndex": 992,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        252,
+                                        145
+                                      ],
+                                      "name": "Lobule IV, molecular layer",
+                                      "labelIndex": 10716,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        252,
+                                        145
+                                      ],
+                                      "name": "Lobule IV, Purkinje layer",
+                                      "labelIndex": 10715,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        236,
+                                        231,
+                                        84
+                                      ],
+                                      "name": "Lobule IV, granular layer",
+                                      "labelIndex": 10714,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "name": "Lobule V",
+                                  "labelIndex": 1001,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        252,
+                                        145
+                                      ],
+                                      "name": "Lobule V, molecular layer",
+                                      "labelIndex": 10719,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        252,
+                                        145
+                                      ],
+                                      "name": "Lobule V, Purkinje layer",
+                                      "labelIndex": 10718,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        236,
+                                        231,
+                                        84
+                                      ],
+                                      "name": "Lobule V, granular layer",
+                                      "labelIndex": 10717,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "position": [
+                                    -1137500,
+                                    -4767500,
+                                    1582500
+                                  ],
+                                  "name": "Lobules IV-V",
+                                  "labelIndex": 1091,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        252,
+                                        145
+                                      ],
+                                      "name": "Lobules IV-V, molecular layer",
+                                      "labelIndex": 10722,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        252,
+                                        145
+                                      ],
+                                      "name": "Lobules IV-V, Purkinje layer",
+                                      "labelIndex": 10721,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        236,
+                                        231,
+                                        84
+                                      ],
+                                      "name": "Lobules IV-V, granular layer",
+                                      "labelIndex": 10720,
+                                      "children": []
+                                    }
+                                  ]
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                252,
+                                145
+                              ],
+                              "position": [
+                                -737500,
+                                -5747500,
+                                1912500
+                              ],
+                              "name": "Declive (VI)",
+                              "labelIndex": 936,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "name": "Declive (VI), molecular layer",
+                                  "labelIndex": 10725,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "name": "Declive (VI), Purkinje layer",
+                                  "labelIndex": 10724,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    236,
+                                    231,
+                                    84
+                                  ],
+                                  "name": "Declive (VI), granular layer",
+                                  "labelIndex": 10723,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                252,
+                                145
+                              ],
+                              "position": [
+                                -727500,
+                                -6287500,
+                                1202500
+                              ],
+                              "name": "Folium-tuber vermis (VII)",
+                              "labelIndex": 944,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "name": "Folium-tuber vermis (VII), molecular layer",
+                                  "labelIndex": 10728,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "name": "Folium-tuber vermis (VII), Purkinje layer",
+                                  "labelIndex": 10727,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    236,
+                                    231,
+                                    84
+                                  ],
+                                  "name": "Folium-tuber vermis (VII), granular layer",
+                                  "labelIndex": 10726,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                252,
+                                145
+                              ],
+                              "position": [
+                                -607500,
+                                -6247500,
+                                492500
+                              ],
+                              "name": "Pyramus (VIII)",
+                              "labelIndex": 951,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "name": "Pyramus (VIII), molecular layer",
+                                  "labelIndex": 10731,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "name": "Pyramus (VIII), Purkinje layer",
+                                  "labelIndex": 10730,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    236,
+                                    231,
+                                    84
+                                  ],
+                                  "name": "Pyramus (VIII), granular layer",
+                                  "labelIndex": 10729,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                252,
+                                145
+                              ],
+                              "position": [
+                                -637500,
+                                -6097500,
+                                -327500
+                              ],
+                              "name": "Uvula (IX)",
+                              "labelIndex": 957,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "name": "Uvula (IX), molecular layer",
+                                  "labelIndex": 10734,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "name": "Uvula (IX), Purkinje layer",
+                                  "labelIndex": 10733,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    236,
+                                    231,
+                                    84
+                                  ],
+                                  "name": "Uvula (IX), granular layer",
+                                  "labelIndex": 10732,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                252,
+                                145
+                              ],
+                              "position": [
+                                -717500,
+                                -5377500,
+                                -327500
+                              ],
+                              "name": "Nodulus (X)",
+                              "labelIndex": 968,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "name": "Nodulus (X), molecular layer",
+                                  "labelIndex": 10737,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "name": "Nodulus (X), Purkinje layer",
+                                  "labelIndex": 10736,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    236,
+                                    231,
+                                    84
+                                  ],
+                                  "name": "Nodulus (X), granular layer",
+                                  "labelIndex": 10735,
+                                  "children": []
+                                }
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            255,
+                            252,
+                            145
+                          ],
+                          "position": [
+                            -2887500,
+                            -5077500,
+                            302500
+                          ],
+                          "name": "Hemispheric regions",
+                          "labelIndex": 1073,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                252,
+                                145
+                              ],
+                              "position": [
+                                -2367500,
+                                -4507500,
+                                1502500
+                              ],
+                              "name": "Simple lobule",
+                              "labelIndex": 1007,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "name": "Simple lobule, molecular layer",
+                                  "labelIndex": 10674,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "name": "Simple lobule, Purkinje layer",
+                                  "labelIndex": 10673,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    236,
+                                    231,
+                                    84
+                                  ],
+                                  "name": "Simple lobule, granular layer",
+                                  "labelIndex": 10672,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                252,
+                                145
+                              ],
+                              "position": [
+                                -3007500,
+                                -5257500,
+                                1022500
+                              ],
+                              "name": "Ansiform lobule",
+                              "labelIndex": 1017,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "position": [
+                                    -3007500,
+                                    -4917500,
+                                    1202500
+                                  ],
+                                  "name": "Crus 1",
+                                  "labelIndex": 1056,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        252,
+                                        145
+                                      ],
+                                      "name": "Crus 1, molecular layer",
+                                      "labelIndex": 10677,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        252,
+                                        145
+                                      ],
+                                      "name": "Crus 1, Purkinje layer",
+                                      "labelIndex": 10676,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        236,
+                                        231,
+                                        84
+                                      ],
+                                      "name": "Crus 1, granular layer",
+                                      "labelIndex": 10675,
+                                      "children": []
+                                    }
+                                  ]
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "position": [
+                                    -2997500,
+                                    -5647500,
+                                    822500
+                                  ],
+                                  "name": "Crus 2",
+                                  "labelIndex": 1064,
+                                  "children": [
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        252,
+                                        145
+                                      ],
+                                      "name": "Crus 2, molecular layer",
+                                      "labelIndex": 10680,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        255,
+                                        252,
+                                        145
+                                      ],
+                                      "name": "Crus 2, Purkinje layer",
+                                      "labelIndex": 10679,
+                                      "children": []
+                                    },
+                                    {
+                                      "ngId": "v3_2017",
+                                      "rgb": [
+                                        236,
+                                        231,
+                                        84
+                                      ],
+                                      "name": "Crus 2, granular layer",
+                                      "labelIndex": 10678,
+                                      "children": []
+                                    }
+                                  ]
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                252,
+                                145
+                              ],
+                              "position": [
+                                -2597500,
+                                -5847500,
+                                -37500
+                              ],
+                              "name": "Paramedian lobule",
+                              "labelIndex": 1025,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "name": "Paramedian lobule, molecular layer",
+                                  "labelIndex": 10683,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "name": "Paramedian lobule, Purkinje layer",
+                                  "labelIndex": 10682,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    236,
+                                    231,
+                                    84
+                                  ],
+                                  "name": "Paramedian lobule, granular layer",
+                                  "labelIndex": 10681,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                252,
+                                145
+                              ],
+                              "position": [
+                                -1967500,
+                                -5817500,
+                                -227500
+                              ],
+                              "name": "Copula pyramidis",
+                              "labelIndex": 1033,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "name": "Copula pyramidis, molecular layer",
+                                  "labelIndex": 10686,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "name": "Copula pyramidis, Purkinje layer",
+                                  "labelIndex": 10685,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    236,
+                                    231,
+                                    84
+                                  ],
+                                  "name": "Copula pyramidis, granular layer",
+                                  "labelIndex": 10684,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                252,
+                                145
+                              ],
+                              "position": [
+                                -3737500,
+                                -4577500,
+                                -1367500
+                              ],
+                              "name": "Paraflocculus",
+                              "labelIndex": 1041,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "name": "Paraflocculus, molecular layer",
+                                  "labelIndex": 10689,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "name": "Paraflocculus, Purkinje layer",
+                                  "labelIndex": 10688,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    236,
+                                    231,
+                                    84
+                                  ],
+                                  "name": "Paraflocculus, granular layer",
+                                  "labelIndex": 10687,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                255,
+                                252,
+                                145
+                              ],
+                              "position": [
+                                -3187500,
+                                -3977500,
+                                -1257500
+                              ],
+                              "name": "Flocculus",
+                              "labelIndex": 1049,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "name": "Flocculus, molecular layer",
+                                  "labelIndex": 10692,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    255,
+                                    252,
+                                    145
+                                  ],
+                                  "name": "Flocculus, Purkinje layer",
+                                  "labelIndex": 10691,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    236,
+                                    231,
+                                    84
+                                  ],
+                                  "name": "Flocculus, granular layer",
+                                  "labelIndex": 10690,
+                                  "children": []
+                                }
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        240,
+                        240,
+                        128
+                      ],
+                      "position": [
+                        -1727500,
+                        -4947500,
+                        32500
+                      ],
+                      "name": "Cerebellar nuclei",
+                      "labelIndex": 519,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            255,
+                            253,
+                            188
+                          ],
+                          "position": [
+                            -987500,
+                            -5157500,
+                            272500
+                          ],
+                          "name": "Fastigial nucleus",
+                          "labelIndex": 989,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            255,
+                            253,
+                            188
+                          ],
+                          "position": [
+                            -1887500,
+                            -4967500,
+                            32500
+                          ],
+                          "name": "Interposed nucleus",
+                          "labelIndex": 91,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            255,
+                            253,
+                            188
+                          ],
+                          "position": [
+                            -2557500,
+                            -4617500,
+                            -297500
+                          ],
+                          "name": "Dentate nucleus",
+                          "labelIndex": 846,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            255,
+                            253,
+                            188
+                          ],
+                          "position": [
+                            -1207500,
+                            -4757500,
+                            -157500
+                          ],
+                          "name": "Vestibulocerebellar nucleus",
+                          "labelIndex": 589508455,
+                          "children": []
+                        }
+                      ]
+                    }
+                  ]
+                }
+              ]
+            },
+            {
+              "ngId": "v3_2017",
+              "rgb": [
+                204,
+                204,
+                204
+              ],
+              "position": [
+                -1837500,
+                -1067500,
+                -427500
+              ],
+              "name": "fiber tracts",
+              "labelIndex": 1009,
+              "children": [
+                {
+                  "ngId": "v3_2017",
+                  "rgb": [
+                    204,
+                    204,
+                    204
+                  ],
+                  "position": [
+                    -957500,
+                    1462500,
+                    -1457500
+                  ],
+                  "name": "cranial nerves",
+                  "labelIndex": 967,
+                  "children": [
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "name": "terminal nerve",
+                      "labelIndex": 885,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "position": [
+                        -247500,
+                        4532500,
+                        312500
+                      ],
+                      "name": "vomeronasal nerve",
+                      "labelIndex": 949,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "position": [
+                        -1047500,
+                        4772500,
+                        -1227500
+                      ],
+                      "name": "olfactory nerve",
+                      "labelIndex": 840,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -297500,
+                            5602500,
+                            -1327500
+                          ],
+                          "name": "olfactory nerve layer of main olfactory bulb",
+                          "labelIndex": 1016,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -2037500,
+                            3462500,
+                            -1627500
+                          ],
+                          "name": "lateral olfactory tract, general",
+                          "labelIndex": 21,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -2147500,
+                                3202500,
+                                -1927500
+                              ],
+                              "name": "lateral olfactory tract, body",
+                              "labelIndex": 665,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -1297500,
+                                4722500,
+                                202500
+                              ],
+                              "name": "dorsal limb",
+                              "labelIndex": 538,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "accessory olfactory tract",
+                              "labelIndex": 459,
+                              "children": []
+                            }
+                          ]
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -1207500,
+                            3052500,
+                            -1297500
+                          ],
+                          "name": "anterior commissure, olfactory limb",
+                          "labelIndex": 900,
+                          "children": []
+                        }
+                      ]
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "position": [
+                        -1797500,
+                        -97500,
+                        -2077500
+                      ],
+                      "name": "optic nerve",
+                      "labelIndex": 848,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "accessory optic tract",
+                          "labelIndex": 876,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -1957500,
+                            -1657500,
+                            1142500
+                          ],
+                          "name": "brachium of the superior colliculus",
+                          "labelIndex": 916,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -187500,
+                            -1867500,
+                            1302500
+                          ],
+                          "name": "superior colliculus commissure",
+                          "labelIndex": 336,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -377500,
+                            1122500,
+                            -3077500
+                          ],
+                          "name": "optic chiasm",
+                          "labelIndex": 117,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -1837500,
+                            -167500,
+                            -2107500
+                          ],
+                          "name": "optic tract",
+                          "labelIndex": 125,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "tectothalamic pathway",
+                          "labelIndex": 357,
+                          "children": []
+                        }
+                      ]
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "position": [
+                        -187500,
+                        -3467500,
+                        -527500
+                      ],
+                      "name": "oculomotor nerve",
+                      "labelIndex": 832,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -207500,
+                            -4117500,
+                            -1187500
+                          ],
+                          "name": "medial longitudinal fascicle",
+                          "labelIndex": 62,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -217500,
+                            -1477500,
+                            822500
+                          ],
+                          "name": "posterior commissure",
+                          "labelIndex": 158,
+                          "children": []
+                        }
+                      ]
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "position": [
+                        -957500,
+                        -3577500,
+                        382500
+                      ],
+                      "name": "trochlear nerve",
+                      "labelIndex": 911,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "trochlear nerve decussation",
+                          "labelIndex": 384,
+                          "children": []
+                        }
+                      ]
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "name": "abducens nerve",
+                      "labelIndex": 710,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "position": [
+                        -2297500,
+                        -4217500,
+                        -2097500
+                      ],
+                      "name": "trigeminal nerve",
+                      "labelIndex": 901,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -1907500,
+                            -2647500,
+                            -2037500
+                          ],
+                          "name": "motor root of the trigeminal nerve",
+                          "labelIndex": 93,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -2297500,
+                            -4257500,
+                            -2097500
+                          ],
+                          "name": "sensory root of the trigeminal nerve",
+                          "labelIndex": 229,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "midbrain tract of the trigeminal nerve",
+                              "labelIndex": 705,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -2267500,
+                                -4837500,
+                                -2047500
+                              ],
+                              "name": "spinal tract of the trigeminal nerve",
+                              "labelIndex": 794,
+                              "children": []
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "position": [
+                        -1037500,
+                        -4127500,
+                        -1517500
+                      ],
+                      "name": "facial nerve",
+                      "labelIndex": 798,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "intermediate nerve",
+                          "labelIndex": 1131,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -637500,
+                            -4277500,
+                            -1157500
+                          ],
+                          "name": "genu of the facial nerve",
+                          "labelIndex": 1116,
+                          "children": []
+                        }
+                      ]
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "position": [
+                        -1817500,
+                        -3097500,
+                        -927500
+                      ],
+                      "name": "vestibulocochlear nerve",
+                      "labelIndex": 933,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "efferent cochleovestibular bundle",
+                          "labelIndex": 1076,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -2397500,
+                            -4047500,
+                            -1687500
+                          ],
+                          "name": "vestibular nerve",
+                          "labelIndex": 413,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -1737500,
+                            -3077500,
+                            -837500
+                          ],
+                          "name": "cochlear nerve",
+                          "labelIndex": 948,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -497500,
+                                -3477500,
+                                -2977500
+                              ],
+                              "name": "trapezoid body",
+                              "labelIndex": 841,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "intermediate acoustic stria",
+                              "labelIndex": 641,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -1527500,
+                                -4777500,
+                                -627500
+                              ],
+                              "name": "dorsal acoustic stria",
+                              "labelIndex": 506,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -1847500,
+                                -3107500,
+                                -817500
+                              ],
+                              "name": "lateral lemniscus",
+                              "labelIndex": 658,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -307500,
+                                -3637500,
+                                1962500
+                              ],
+                              "name": "inferior colliculus commissure",
+                              "labelIndex": 633,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -2197500,
+                                -3067500,
+                                1162500
+                              ],
+                              "name": "brachium of the inferior colliculus",
+                              "labelIndex": 482,
+                              "children": []
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "name": "glossopharyngeal nerve",
+                      "labelIndex": 808,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "position": [
+                        -597500,
+                        -6127500,
+                        -1297500
+                      ],
+                      "name": "vagus nerve",
+                      "labelIndex": 917,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -597500,
+                            -6127500,
+                            -1297500
+                          ],
+                          "name": "solitary tract",
+                          "labelIndex": 237,
+                          "children": []
+                        }
+                      ]
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "name": "accessory spinal nerve",
+                      "labelIndex": 717,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "name": "hypoglossal nerve",
+                      "labelIndex": 813,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "name": "ventral roots",
+                      "labelIndex": 925,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "position": [
+                        -737500,
+                        -2407500,
+                        -1647500
+                      ],
+                      "name": "dorsal roots",
+                      "labelIndex": 792,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -737500,
+                            -2407500,
+                            -1647500
+                          ],
+                          "name": "cervicothalamic tract",
+                          "labelIndex": 932,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "dorsolateral fascicle",
+                              "labelIndex": 570,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "dorsal commissure of the spinal cord",
+                              "labelIndex": 522,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "ventral commissure of the spinal cord",
+                              "labelIndex": 858,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "fasciculus proprius",
+                              "labelIndex": 586,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -937500,
+                                -6517500,
+                                -1187500
+                              ],
+                              "name": "dorsal column",
+                              "labelIndex": 514,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    204,
+                                    204,
+                                    204
+                                  ],
+                                  "position": [
+                                    -937500,
+                                    -6517500,
+                                    -1187500
+                                  ],
+                                  "name": "cuneate fascicle",
+                                  "labelIndex": 380,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    204,
+                                    204,
+                                    204
+                                  ],
+                                  "name": "gracile fascicle",
+                                  "labelIndex": 388,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    204,
+                                    204,
+                                    204
+                                  ],
+                                  "name": "internal arcuate fibers",
+                                  "labelIndex": 396,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -717500,
+                                -2357500,
+                                -1617500
+                              ],
+                              "name": "medial lemniscus",
+                              "labelIndex": 697,
+                              "children": []
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "name": "spinothalamic tract",
+                      "labelIndex": 871,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "lateral spinothalamic tract",
+                          "labelIndex": 29,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "ventral spinothalamic tract",
+                          "labelIndex": 389,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "spinocervical tract",
+                          "labelIndex": 245,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "spino-olivary pathway",
+                          "labelIndex": 261,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "spinoreticular pathway",
+                          "labelIndex": 270,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "spinovestibular pathway",
+                          "labelIndex": 293,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "spinotectal pathway",
+                          "labelIndex": 277,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "spinohypothalamic pathway",
+                          "labelIndex": 253,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "spinotelenchephalic pathway",
+                          "labelIndex": 285,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "hypothalamohypophysial tract",
+                              "labelIndex": 627,
+                              "children": []
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "ngId": "v3_2017",
+                  "rgb": [
+                    204,
+                    204,
+                    204
+                  ],
+                  "position": [
+                    -1827500,
+                    -4677500,
+                    -127500
+                  ],
+                  "name": "cerebellum related fiber tracts",
+                  "labelIndex": 960,
+                  "children": [
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "position": [
+                        -327500,
+                        -4897500,
+                        272500
+                      ],
+                      "name": "cerebellar commissure",
+                      "labelIndex": 744,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "position": [
+                        -2347500,
+                        -4287500,
+                        -1157500
+                      ],
+                      "name": "cerebellar peduncles",
+                      "labelIndex": 752,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -1647500,
+                            -3917500,
+                            -507500
+                          ],
+                          "name": "superior cerebelar peduncles",
+                          "labelIndex": 326,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -117500,
+                                -2847500,
+                                -537500
+                              ],
+                              "name": "superior cerebellar peduncle decussation",
+                              "labelIndex": 812,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    204,
+                                    204,
+                                    204
+                                  ],
+                                  "name": "spinocerebellar tract",
+                                  "labelIndex": 85,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -1447500,
+                                -4297500,
+                                -37500
+                              ],
+                              "name": "uncinate fascicle",
+                              "labelIndex": 850,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -1967500,
+                                -4137500,
+                                -2907500
+                              ],
+                              "name": "ventral spinocerebellar tract",
+                              "labelIndex": 866,
+                              "children": []
+                            }
+                          ]
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -2117500,
+                            -2967500,
+                            -1587500
+                          ],
+                          "name": "middle cerebellar peduncle",
+                          "labelIndex": 78,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -2347500,
+                            -4917500,
+                            -1647500
+                          ],
+                          "name": "inferior cerebellar peduncle",
+                          "labelIndex": 1123,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -2037500,
+                                -5557500,
+                                -2997500
+                              ],
+                              "name": "dorsal spinocerebellar tract",
+                              "labelIndex": 553,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "cuneocerebellar tract",
+                              "labelIndex": 499,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "juxtarestiform body",
+                              "labelIndex": 650,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "bulbocerebellar tract",
+                              "labelIndex": 490,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    204,
+                                    204,
+                                    204
+                                  ],
+                                  "name": "olivocerebellar tract",
+                                  "labelIndex": 404,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    204,
+                                    204,
+                                    204
+                                  ],
+                                  "name": "reticulocerebellar tract",
+                                  "labelIndex": 410,
+                                  "children": []
+                                }
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "trigeminocerebellar tract",
+                          "labelIndex": 373,
+                          "children": []
+                        }
+                      ]
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "position": [
+                        -1817500,
+                        -5007500,
+                        402500
+                      ],
+                      "name": "arbor vitae",
+                      "labelIndex": 728,
+                      "children": []
+                    }
+                  ]
+                },
+                {
+                  "ngId": "v3_2017",
+                  "rgb": [
+                    204,
+                    204,
+                    204
+                  ],
+                  "position": [
+                    -2537500,
+                    702500,
+                    1432500
+                  ],
+                  "name": "supra-callosal cerebral white matter",
+                  "labelIndex": 484682512,
+                  "children": []
+                },
+                {
+                  "ngId": "v3_2017",
+                  "rgb": [
+                    204,
+                    204,
+                    204
+                  ],
+                  "position": [
+                    -2137500,
+                    -327500,
+                    472500
+                  ],
+                  "name": "lateral forebrain bundle system",
+                  "labelIndex": 983,
+                  "children": [
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "position": [
+                        -2097500,
+                        532500,
+                        1432500
+                      ],
+                      "name": "corpus callosum",
+                      "labelIndex": 776,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -3347500,
+                            1562500,
+                            -187500
+                          ],
+                          "name": "corpus callosum, anterior forceps",
+                          "labelIndex": 956,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -3937500,
+                                -567500,
+                                -567500
+                              ],
+                              "name": "external capsule",
+                              "labelIndex": 579,
+                              "children": []
+                            }
+                          ]
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -4047500,
+                            -357500,
+                            -1417500
+                          ],
+                          "name": "corpus callosum, extreme capsule",
+                          "labelIndex": 964,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -1087500,
+                            2202500,
+                            762500
+                          ],
+                          "name": "genu of corpus callosum",
+                          "labelIndex": 1108,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -2537500,
+                            -1797500,
+                            2272500
+                          ],
+                          "name": "corpus callosum, posterior forceps",
+                          "labelIndex": 971,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "corpus callosum, rostrum",
+                          "labelIndex": 979,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -1747500,
+                            862500,
+                            1442500
+                          ],
+                          "name": "corpus callosum, body",
+                          "labelIndex": 484682516,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -1737500,
+                            -657500,
+                            2542500
+                          ],
+                          "name": "corpus callosum, splenium",
+                          "labelIndex": 986,
+                          "children": []
+                        }
+                      ]
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "position": [
+                        -1897500,
+                        -1217500,
+                        -1507500
+                      ],
+                      "name": "corticospinal tract",
+                      "labelIndex": 784,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -2217500,
+                            -77500,
+                            -727500
+                          ],
+                          "name": "internal capsule",
+                          "labelIndex": 6,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -1777500,
+                            -1797500,
+                            -1607500
+                          ],
+                          "name": "cerebal peduncle",
+                          "labelIndex": 924,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "corticotectal tract",
+                          "labelIndex": 1036,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "corticorubral tract",
+                          "labelIndex": 1012,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "corticopontine tract",
+                          "labelIndex": 1003,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "corticobulbar tract",
+                          "labelIndex": 994,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -407500,
+                            -4507500,
+                            -3237500
+                          ],
+                          "name": "pyramid",
+                          "labelIndex": 190,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -147500,
+                            -6387500,
+                            -3097500
+                          ],
+                          "name": "pyramidal decussation",
+                          "labelIndex": 198,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "corticospinal tract, crossed",
+                          "labelIndex": 1019,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "corticospinal tract, uncrossed",
+                          "labelIndex": 1028,
+                          "children": []
+                        }
+                      ]
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "position": [
+                        -3507500,
+                        -777500,
+                        972500
+                      ],
+                      "name": "thalamus related",
+                      "labelIndex": 896,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -2217500,
+                            12500,
+                            -297500
+                          ],
+                          "name": "external medullary lamina of the thalamus",
+                          "labelIndex": 1092,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "internal medullary lamina of the thalamus",
+                          "labelIndex": 14,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "middle thalamic commissure",
+                          "labelIndex": 86,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "thalamic peduncles",
+                          "labelIndex": 365,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -3577500,
+                            -1007500,
+                            1342500
+                          ],
+                          "name": "optic radiation",
+                          "labelIndex": 484682520,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -3367500,
+                            -557500,
+                            42500
+                          ],
+                          "name": "auditory radiation",
+                          "labelIndex": 484682524,
+                          "children": []
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "ngId": "v3_2017",
+                  "rgb": [
+                    204,
+                    204,
+                    204
+                  ],
+                  "position": [
+                    -387500,
+                    -3617500,
+                    -1667500
+                  ],
+                  "name": "extrapyramidal fiber systems",
+                  "labelIndex": 1000,
+                  "children": [
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "position": [
+                        -1537500,
+                        -417500,
+                        -1427500
+                      ],
+                      "name": "cerebral nuclei related",
+                      "labelIndex": 760,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "pallidothalamic pathway",
+                          "labelIndex": 142,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -1537500,
+                            -417500,
+                            -1427500
+                          ],
+                          "name": "nigrostriatal tract",
+                          "labelIndex": 102,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "nigrothalamic fibers",
+                          "labelIndex": 109,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "pallidotegmental fascicle",
+                          "labelIndex": 134,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "striatonigral pathway",
+                          "labelIndex": 309,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "subthalamic fascicle",
+                          "labelIndex": 317,
+                          "children": []
+                        }
+                      ]
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "position": [
+                        -287500,
+                        -4027500,
+                        -1647500
+                      ],
+                      "name": "tectospinal pathway",
+                      "labelIndex": 877,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -177500,
+                            -2417500,
+                            -177500
+                          ],
+                          "name": "direct tectospinal pathway",
+                          "labelIndex": 1051,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -127500,
+                            -2327500,
+                            -317500
+                          ],
+                          "name": "doral tegmental decussation",
+                          "labelIndex": 1060,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -287500,
+                            -4057500,
+                            -1667500
+                          ],
+                          "name": "crossed tectospinal pathway",
+                          "labelIndex": 1043,
+                          "children": []
+                        }
+                      ]
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "position": [
+                        -1607500,
+                        -3537500,
+                        -2317500
+                      ],
+                      "name": "rubrospinal tract",
+                      "labelIndex": 863,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -137500,
+                            -2037500,
+                            -777500
+                          ],
+                          "name": "ventral tegmental decussation",
+                          "labelIndex": 397,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "rubroreticular tract",
+                          "labelIndex": 221,
+                          "children": []
+                        }
+                      ]
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "name": "central tegmental bundle",
+                      "labelIndex": 736,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "name": "retriculospinal tract",
+                      "labelIndex": 855,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "retriculospinal tract, lateral part",
+                          "labelIndex": 205,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "retriculospinal tract, medial part",
+                          "labelIndex": 213,
+                          "children": []
+                        }
+                      ]
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "name": "vestibulospinal pathway",
+                      "labelIndex": 941,
+                      "children": []
+                    }
+                  ]
+                },
+                {
+                  "ngId": "v3_2017",
+                  "rgb": [
+                    204,
+                    204,
+                    204
+                  ],
+                  "position": [
+                    -1677500,
+                    -397500,
+                    1202500
+                  ],
+                  "name": "medial forebrain bundle system",
+                  "labelIndex": 991,
+                  "children": [
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "position": [
+                        -1817500,
+                        -387500,
+                        1192500
+                      ],
+                      "name": "cerebrum related",
+                      "labelIndex": 768,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -3767500,
+                            -437500,
+                            -1407500
+                          ],
+                          "name": "amygdalar capsule",
+                          "labelIndex": 884,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "ansa peduncularis",
+                          "labelIndex": 892,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -1527500,
+                            1222500,
+                            -1547500
+                          ],
+                          "name": "anterior commissure, temporal limb",
+                          "labelIndex": 908,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -1047500,
+                            272500,
+                            2222500
+                          ],
+                          "name": "cingulum bundle",
+                          "labelIndex": 940,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -1967500,
+                            -657500,
+                            1192500
+                          ],
+                          "name": "fornix system",
+                          "labelIndex": 1099,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -2707500,
+                                -1177500,
+                                712500
+                              ],
+                              "name": "alveus",
+                              "labelIndex": 466,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -207500,
+                                652500,
+                                1482500
+                              ],
+                              "name": "dorsal fornix",
+                              "labelIndex": 530,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -1867500,
+                                182500,
+                                762500
+                              ],
+                              "name": "fimbria",
+                              "labelIndex": 603,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "precommissural fornix, general",
+                              "labelIndex": 745,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    204,
+                                    204,
+                                    204
+                                  ],
+                                  "name": "precommissural fornix diagonal band",
+                                  "labelIndex": 420,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -607500,
+                                642500,
+                                -1397500
+                              ],
+                              "name": "postcommissural fornix",
+                              "labelIndex": 737,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    204,
+                                    204,
+                                    204
+                                  ],
+                                  "position": [
+                                    -287500,
+                                    1032500,
+                                    -887500
+                                  ],
+                                  "name": "medial corticohypothalamic tract",
+                                  "labelIndex": 428,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    204,
+                                    204,
+                                    204
+                                  ],
+                                  "position": [
+                                    -617500,
+                                    632500,
+                                    -1407500
+                                  ],
+                                  "name": "columns of the fornix",
+                                  "labelIndex": 436,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -1457500,
+                                -1697500,
+                                2192500
+                              ],
+                              "name": "hippocampal commissures",
+                              "labelIndex": 618,
+                              "children": [
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    204,
+                                    204,
+                                    204
+                                  ],
+                                  "position": [
+                                    -1597500,
+                                    -1807500,
+                                    2192500
+                                  ],
+                                  "name": "dorsal hippocampal commissure",
+                                  "labelIndex": 443,
+                                  "children": []
+                                },
+                                {
+                                  "ngId": "v3_2017",
+                                  "rgb": [
+                                    204,
+                                    204,
+                                    204
+                                  ],
+                                  "position": [
+                                    -277500,
+                                    692500,
+                                    862500
+                                  ],
+                                  "name": "ventral hippocampal commissure",
+                                  "labelIndex": 449,
+                                  "children": []
+                                }
+                              ]
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "perforant path",
+                              "labelIndex": 713,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "angular path",
+                              "labelIndex": 474,
+                              "children": []
+                            }
+                          ]
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "longitudinal association bundle",
+                          "labelIndex": 37,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -2837500,
+                            -387500,
+                            -997500
+                          ],
+                          "name": "stria terminalis",
+                          "labelIndex": 301,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -2447500,
+                                42500,
+                                -2027500
+                              ],
+                              "name": "commissural branch of stria terminalis",
+                              "labelIndex": 484682528,
+                              "children": []
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        204,
+                        204,
+                        204
+                      ],
+                      "position": [
+                        -407500,
+                        -987500,
+                        -257500
+                      ],
+                      "name": "hypothalamus related",
+                      "labelIndex": 824,
+                      "children": [
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -697500,
+                            -1277500,
+                            -1627500
+                          ],
+                          "name": "medial forebrain bundle",
+                          "labelIndex": 54,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "ventrolateral hypothalamic tract",
+                          "labelIndex": 405,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "preoptic commissure",
+                          "labelIndex": 174,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -1387500,
+                            -87500,
+                            -2587500
+                          ],
+                          "name": "supraoptic commissures",
+                          "labelIndex": 349,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "supraoptic commissures, anterior",
+                              "labelIndex": 817,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "supraoptic commissures, dorsal",
+                              "labelIndex": 825,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "supraoptic commissures, ventral",
+                              "labelIndex": 833,
+                              "children": []
+                            }
+                          ]
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "premammillary commissure",
+                          "labelIndex": 166,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "supramammillary decussation",
+                          "labelIndex": 341,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "propriohypothalamic pathways",
+                          "labelIndex": 182,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "propriohypothalamic pathways, dorsal",
+                              "labelIndex": 762,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "propriohypothalamic pathways, lateral",
+                              "labelIndex": 770,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "propriohypothalamic pathways, medial",
+                              "labelIndex": 779,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "propriohypothalamic pathways, ventral",
+                              "labelIndex": 787,
+                              "children": []
+                            }
+                          ]
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "periventricular bundle of the hypothalamus",
+                          "labelIndex": 150,
+                          "children": []
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -457500,
+                            -1147500,
+                            -1227500
+                          ],
+                          "name": "mammillary related",
+                          "labelIndex": 46,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -467500,
+                                -1147500,
+                                -1727500
+                              ],
+                              "name": "principal mammillary tract",
+                              "labelIndex": 753,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -597500,
+                                -387500,
+                                -1277500
+                              ],
+                              "name": "mammillothalamic tract",
+                              "labelIndex": 690,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -237500,
+                                -2187500,
+                                -557500
+                              ],
+                              "name": "mammillotegmental tract",
+                              "labelIndex": 681,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -647500,
+                                -1807500,
+                                -1577500
+                              ],
+                              "name": "mammillary peduncle",
+                              "labelIndex": 673,
+                              "children": []
+                            }
+                          ]
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "dorsal thalamus related",
+                          "labelIndex": 1068,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "periventricular bundle of the thalamus",
+                              "labelIndex": 722,
+                              "children": []
+                            }
+                          ]
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "position": [
+                            -587500,
+                            -287500,
+                            482500
+                          ],
+                          "name": "epithalamus related",
+                          "labelIndex": 1083,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -637500,
+                                622500,
+                                32500
+                              ],
+                              "name": "stria medullaris",
+                              "labelIndex": 802,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -437500,
+                                -977500,
+                                -77500
+                              ],
+                              "name": "fasciculus retroflexus",
+                              "labelIndex": 595,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "position": [
+                                -297500,
+                                -827500,
+                                1252500
+                              ],
+                              "name": "habenular commissure",
+                              "labelIndex": 611,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "pineal stalk",
+                              "labelIndex": 730,
+                              "children": []
+                            }
+                          ]
+                        },
+                        {
+                          "ngId": "v3_2017",
+                          "rgb": [
+                            204,
+                            204,
+                            204
+                          ],
+                          "name": "midbrain related",
+                          "labelIndex": 70,
+                          "children": [
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "dorsal longitudinal fascicle",
+                              "labelIndex": 547,
+                              "children": []
+                            },
+                            {
+                              "ngId": "v3_2017",
+                              "rgb": [
+                                204,
+                                204,
+                                204
+                              ],
+                              "name": "dorsal tegmental tract",
+                              "labelIndex": 563,
+                              "children": []
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                }
+              ]
+            },
+            {
+              "ngId": "v3_2017",
+              "rgb": [
+                170,
+                170,
+                170
+              ],
+              "position": [
+                -57500,
+                -1227500,
+                222500
+              ],
+              "name": "ventricular systems",
+              "labelIndex": 73,
+              "children": [
+                {
+                  "ngId": "v3_2017",
+                  "rgb": [
+                    170,
+                    170,
+                    170
+                  ],
+                  "position": [
+                    -2257500,
+                    152500,
+                    792500
+                  ],
+                  "name": "lateral ventricle",
+                  "labelIndex": 81,
+                  "children": [
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        170,
+                        170,
+                        170
+                      ],
+                      "name": "rhinocele",
+                      "labelIndex": 89,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        170,
+                        170,
+                        170
+                      ],
+                      "position": [
+                        -1077500,
+                        1722500,
+                        1042500
+                      ],
+                      "name": "subependymal zone",
+                      "labelIndex": 98,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        170,
+                        170,
+                        170
+                      ],
+                      "position": [
+                        -2997500,
+                        -1017500,
+                        -907500
+                      ],
+                      "name": "choroid plexus",
+                      "labelIndex": 108,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        170,
+                        170,
+                        170
+                      ],
+                      "name": "choroid fissure",
+                      "labelIndex": 116,
+                      "children": []
+                    }
+                  ]
+                },
+                {
+                  "ngId": "v3_2017",
+                  "rgb": [
+                    170,
+                    170,
+                    170
+                  ],
+                  "name": "interventricular foramen",
+                  "labelIndex": 124,
+                  "children": []
+                },
+                {
+                  "ngId": "v3_2017",
+                  "rgb": [
+                    170,
+                    170,
+                    170
+                  ],
+                  "position": [
+                    -187500,
+                    582500,
+                    282500
+                  ],
+                  "name": "third ventricle",
+                  "labelIndex": 129,
+                  "children": []
+                },
+                {
+                  "ngId": "v3_2017",
+                  "rgb": [
+                    170,
+                    170,
+                    170
+                  ],
+                  "position": [
+                    -197500,
+                    -3577500,
+                    992500
+                  ],
+                  "name": "cerebral aqueduct",
+                  "labelIndex": 140,
+                  "children": []
+                },
+                {
+                  "ngId": "v3_2017",
+                  "rgb": [
+                    170,
+                    170,
+                    170
+                  ],
+                  "position": [
+                    -1337500,
+                    -5057500,
+                    -507500
+                  ],
+                  "name": "fourth ventricle",
+                  "labelIndex": 145,
+                  "children": [
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        170,
+                        170,
+                        170
+                      ],
+                      "position": [
+                        -2327500,
+                        -5177500,
+                        -1107500
+                      ],
+                      "name": "lateral recess",
+                      "labelIndex": 153,
+                      "children": []
+                    }
+                  ]
+                },
+                {
+                  "ngId": "v3_2017",
+                  "rgb": [
+                    170,
+                    170,
+                    170
+                  ],
+                  "position": [
+                    -47500,
+                    -6157500,
+                    -1607500
+                  ],
+                  "name": "central canal, spinal cord/medulla",
+                  "labelIndex": 164,
+                  "children": []
+                }
+              ]
+            },
+            {
+              "ngId": "v3_2017",
+              "rgb": [
+                170,
+                170,
+                170
+              ],
+              "name": "grooves",
+              "labelIndex": 1024,
+              "children": [
+                {
+                  "ngId": "v3_2017",
+                  "rgb": [
+                    170,
+                    170,
+                    170
+                  ],
+                  "name": "grooves of the cerebral cortex",
+                  "labelIndex": 1032,
+                  "children": [
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        170,
+                        170,
+                        170
+                      ],
+                      "name": "endorhinal groove",
+                      "labelIndex": 1055,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        170,
+                        170,
+                        170
+                      ],
+                      "name": "hippocampal fissure",
+                      "labelIndex": 1063,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        170,
+                        170,
+                        170
+                      ],
+                      "name": "rhinal fissure",
+                      "labelIndex": 1071,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        170,
+                        170,
+                        170
+                      ],
+                      "name": "rhinal incisure",
+                      "labelIndex": 1078,
+                      "children": []
+                    }
+                  ]
+                },
+                {
+                  "ngId": "v3_2017",
+                  "rgb": [
+                    170,
+                    170,
+                    170
+                  ],
+                  "name": "grooves of the cerebellar cortex",
+                  "labelIndex": 1040,
+                  "children": [
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        170,
+                        170,
+                        170
+                      ],
+                      "name": "precentral fissure",
+                      "labelIndex": 1087,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        170,
+                        170,
+                        170
+                      ],
+                      "name": "preculminate fissure",
+                      "labelIndex": 1095,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        170,
+                        170,
+                        170
+                      ],
+                      "name": "primary fissure",
+                      "labelIndex": 1103,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        170,
+                        170,
+                        170
+                      ],
+                      "name": "posterior superior fissure",
+                      "labelIndex": 1112,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        170,
+                        170,
+                        170
+                      ],
+                      "name": "prepyramidal fissure",
+                      "labelIndex": 1119,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        170,
+                        170,
+                        170
+                      ],
+                      "name": "secondary fissure",
+                      "labelIndex": 3,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        170,
+                        170,
+                        170
+                      ],
+                      "name": "posterolateral fissure",
+                      "labelIndex": 11,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        170,
+                        170,
+                        170
+                      ],
+                      "name": "nodular fissure",
+                      "labelIndex": 18,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        170,
+                        170,
+                        170
+                      ],
+                      "name": "simple fissure",
+                      "labelIndex": 25,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        170,
+                        170,
+                        170
+                      ],
+                      "name": "intercrural fissure",
+                      "labelIndex": 34,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        170,
+                        170,
+                        170
+                      ],
+                      "name": "ansoparamedian fissure",
+                      "labelIndex": 43,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        170,
+                        170,
+                        170
+                      ],
+                      "name": "intraparafloccular fissure",
+                      "labelIndex": 49,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        170,
+                        170,
+                        170
+                      ],
+                      "name": "paramedian sulcus",
+                      "labelIndex": 57,
+                      "children": []
+                    },
+                    {
+                      "ngId": "v3_2017",
+                      "rgb": [
+                        170,
+                        170,
+                        170
+                      ],
+                      "name": "parafloccular sulcus",
+                      "labelIndex": 65,
+                      "children": []
+                    }
+                  ]
+                },
+                {
+                  "ngId": "v3_2017",
+                  "rgb": [
+                    170,
+                    170,
+                    170
+                  ],
+                  "name": "Interpeduncular fossa",
+                  "labelIndex": 624,
+                  "children": []
+                }
+              ]
+            },
+            {
+              "ngId": "v3_2017",
+              "rgb": [
+                127,
+                46,
+                126
+              ],
+              "name": "retina",
+              "labelIndex": 304325711,
+              "children": []
+            }
+          ]
+        }
+      ],
+      "properties": {
+        "name": "Allen Mouse Common Coordinate Framework v3 2017",
+        "description": "Allen Mouse Common Coordinate Framework v3, downloaded on 19/09/2019, 2017 (662 newly drawn structures, 1522 structures total)",
+        "publications": [{
+          "cite": "Allen Mouse Brain Connectivity Atlas [Internet]. Seattle (WA): Allen Institute for Brain Science. ©2011. Available from: http://connectivity.brain-map.org/."
+        }]
+      }
+    },
     {
       "ngId": "atlas",
-      "name": "Allen adult mouse brain reference atlas V3 Brain Atlas",
+      "name": "Allen Mouse Common Coordinate Framework v3 2015",
       "ngData": null,
       "type": "parcellation",
       "regions": [
@@ -48827,17 +67929,28 @@
         }
       ],
       "properties": {
-        "publications": [
-          {
-            "doi": "https://doi:10.1038/nature05453",
-            "citation": "Lein, E.S. et al. (2007) Genome-wide atlas of gene expression in the adult mouse brain, Nature 445: 168-176. "
-          }
-        ]
+        "name":"Allen Mouse Common Coordinate Framework v3 2015",
+        "description":"Allen Mouse Common Coordinate Framework v3, downloaded on 01/07/2017  2015 (178 newly drawn structures, 1045 structures total)",
+        "publications": [{
+          "cite": "Allen Mouse Brain Connectivity Atlas [Internet]. Seattle (WA): Allen Institute for Brain Science. ©2011. Available from: http://connectivity.brain-map.org/."
+        },{
+          "doi": "10.1038/nature13186",
+          "citation": "Oh, S.W. et al. (2014) A mesoscale connectome of the mouse brain, Nature 508: 207-214. "
+        }]
       }
     }
   ],
   "properties": {
-    "name": "Allen adult mouse brain reference atlas V3 Brain Atlas",
-    "description": "The Allen adult mouse brain reference atlas V3 Brain Atlas includes a full-color, high-resolution anatomical reference atlas accompanied by a systematic, hierarchically organized taxonomy of mouse brain structures. Anatomical annotations in classical histological atlas plates were extracted to create a comprehensive volumetric reference atlas of the mouse brain."
+    "name": "Allen Mouse Common Coordinate Framework v3 2015",
+    "description": "The Allen Mouse Common Coordinate Framework v3 2015 includes a full-color, high-resolution anatomical reference atlas accompanied by a systematic, hierarchically organized taxonomy of mouse brain structures. Anatomical annotations in classical histological atlas plates were extracted to create a comprehensive volumetric reference atlas of the mouse brain.",
+    "publications":[{
+      "cite": "Allen Mouse Brain Connectivity Atlas [Internet]. Seattle (WA): Allen Institute for Brain Science. ©2011. Available from: http://connectivity.brain-map.org/."
+    },{
+      "cite":"Oh, S.W. et al. (2014) A mesoscale connectome of the mouse brain, Nature 508: 207-214.",
+      "doi": "10.1038/nature13186"
+    }, {
+      "cite": "http://download.alleninstitute.org/informatics-archive/current-release/mouse_ccf/",
+      "doi": "http://download.alleninstitute.org/informatics-archive/current-release/mouse_ccf/"
+    }]
   }
 }
\ No newline at end of file
diff --git a/src/res/ext/allenMouseNehubaConfig.json b/src/res/ext/allenMouseNehubaConfig.json
index 186836a024d7f173d89ee755c54ebbe9edbbb298..ee86f8d398edc3dfda2d5c3dd4622447b7f77c9b 100644
--- a/src/res/ext/allenMouseNehubaConfig.json
+++ b/src/res/ext/allenMouseNehubaConfig.json
@@ -1 +1,209 @@
-{"globals":{"hideNullImageValues":true,"useNehubaLayout":true,"useNehubaMeshLayer":true,"useCustomSegmentColors":true},"zoomWithoutCtrl":true,"hideNeuroglancerUI":true,"rightClickWithCtrl":true,"rotateAtViewCentre":true,"enableMeshLoadingControl":true,"zoomAtViewCentre":true,"restrictUserNavigation":true,"dataset":{"imageBackground":[0,0,0,0],"initialNgState":{"showDefaultAnnotations":false,"layers":{"stpt":{"type":"image","source":"precomputed://https://neuroglancer.humanbrainproject.org/precomputed/AMBA/templates/v3/stpt","transform":[[1,0,0,-5737500],[0,1,0,-6637500],[0,0,1,-4037500],[0,0,0,1]]},"nissl":{"type":"image","source":"precomputed://https://neuroglancer.humanbrainproject.org/precomputed/AMBA/templates/v3/nissl","transform":[[1,0,0,-5737500],[0,1,0,-6637500],[0,0,1,-4037500],[0,0,0,1]],"visible":false},"atlas":{"type":"segmentation","source":"precomputed://https://neuroglancer.humanbrainproject.org/precomputed/AMBA/parcellations/v3_reduced","transform":[[1,0,0,-5737500],[0,1,0,-6637500],[0,0,1,-4037500],[0,0,0,1]]}},"navigation":{"pose":{"position":{"voxelSize":[25000,25000,25000],"voxelCoordinates":[5.0738067626953,-3.9425048828125,-2.8185577392578]}},"zoomFactor":38990.5839902911},"perspectiveOrientation":[0.2650355100631714,0.7529539465904236,-0.5376962423324585,-0.27147674560546875],"perspectiveZoom":159399.12281678425}},"layout":{"useNehubaPerspective":{"fixedZoomPerspectiveSlices":{"sliceViewportWidth":400,"sliceViewportHeight":400,"sliceZoom":41075.159536383755,"sliceViewportSizeMultiplier":2},"removePerspectiveSlicesBackground":{"color":[0.01,0.01,0.01,0.01],"mode":"<="},"centerToOrigin":true,"mesh":{"removeBasedOnNavigation":true,"flipRemovedOctant":true},"drawSubstrates":{"color":[0,0,0.5,0.2]},"restrictZoomLevel":{"maxZoom":364235.1741652613,"minZoom":89881.68746896513}}}}
\ No newline at end of file
+{
+  "globals": {
+    "hideNullImageValues": true,
+    "useNehubaLayout": true,
+    "useNehubaMeshLayer": true,
+    "useCustomSegmentColors": true
+  },
+  "zoomWithoutCtrl": true,
+  "hideNeuroglancerUI": true,
+  "rightClickWithCtrl": true,
+  "rotateAtViewCentre": true,
+  "enableMeshLoadingControl": true,
+  "zoomAtViewCentre": true,
+  "restrictUserNavigation": true,
+  "dataset": {
+    "imageBackground": [
+      0,
+      0,
+      0,
+      0
+    ],
+    "initialNgState": {
+      "showDefaultAnnotations": false,
+      "layers": {
+        "stpt": {
+          "type": "image",
+          "source": "precomputed://https://neuroglancer.humanbrainproject.org/precomputed/AMBA/templates/v3/stpt",
+          "transform": [
+            [
+              1,
+              0,
+              0,
+              -5737500
+            ],
+            [
+              0,
+              1,
+              0,
+              -6637500
+            ],
+            [
+              0,
+              0,
+              1,
+              -4037500
+            ],
+            [
+              0,
+              0,
+              0,
+              1
+            ]
+          ]
+        },
+        "nissl": {
+          "type": "image",
+          "source": "precomputed://https://neuroglancer.humanbrainproject.org/precomputed/AMBA/templates/v3/nissl",
+          "transform": [
+            [
+              1,
+              0,
+              0,
+              -5737500
+            ],
+            [
+              0,
+              1,
+              0,
+              -6637500
+            ],
+            [
+              0,
+              0,
+              1,
+              -4037500
+            ],
+            [
+              0,
+              0,
+              0,
+              1
+            ]
+          ],
+          "visible": false
+        },
+        "atlas": {
+          "type": "segmentation",
+          "source": "precomputed://https://neuroglancer.humanbrainproject.org/precomputed/AMBA/parcellations/v3_reduced",
+          "transform": [
+            [
+              1,
+              0,
+              0,
+              -5737500
+            ],
+            [
+              0,
+              1,
+              0,
+              -6637500
+            ],
+            [
+              0,
+              0,
+              1,
+              -4037500
+            ],
+            [
+              0,
+              0,
+              0,
+              1
+            ]
+          ]
+        },
+        "v3_2017": {
+          "type": "segmentation",
+          "source": "precomputed://https://neuroglancer-dev.humanbrainproject.eu/precomputed/AMBA/parcellations/v3_2017",
+          "transform": [
+            [
+              0,
+              0,
+              -1,
+              5670000
+            ],
+            [
+              -1,
+              0,
+              0,
+              6570000
+            ],
+            [
+              0,
+              -1,
+              0,
+              3970000
+            ],
+            [
+              0,
+              0,
+              0,
+              1
+            ]
+          ]
+        }
+      },
+      "navigation": {
+        "pose": {
+          "position": {
+            "voxelSize": [
+              25000,
+              25000,
+              25000
+            ],
+            "voxelCoordinates": [
+              5.0738067626953,
+              -3.9425048828125,
+              -2.8185577392578
+            ]
+          }
+        },
+        "zoomFactor": 38990.5839902911
+      },
+      "perspectiveOrientation": [
+        0.2650355100631714,
+        0.7529539465904236,
+        -0.5376962423324585,
+        -0.27147674560546875
+      ],
+      "perspectiveZoom": 159399.12281678425
+    }
+  },
+  "layout": {
+    "useNehubaPerspective": {
+      "fixedZoomPerspectiveSlices": {
+        "sliceViewportWidth": 400,
+        "sliceViewportHeight": 400,
+        "sliceZoom": 41075.159536383755,
+        "sliceViewportSizeMultiplier": 2
+      },
+      "removePerspectiveSlicesBackground": {
+        "color": [
+          0.01,
+          0.01,
+          0.01,
+          0.01
+        ],
+        "mode": "<="
+      },
+      "centerToOrigin": true,
+      "mesh": {
+        "removeBasedOnNavigation": true,
+        "flipRemovedOctant": true
+      },
+      "drawSubstrates": {
+        "color": [
+          0,
+          0,
+          0.5,
+          0.2
+        ]
+      },
+      "restrictZoomLevel": {
+        "maxZoom": 364235.1741652613,
+        "minZoom": 89881.68746896513
+      }
+    }
+  }
+}
\ No newline at end of file
diff --git a/src/res/ext/allenTestAggregated.json b/src/res/ext/allenTestAggregated.json
index c963b8ccc3f7d0e82040adbe3db112333141a013..6918fbddade82f05d6a1894922f8ddd60dba670d 100644
--- a/src/res/ext/allenTestAggregated.json
+++ b/src/res/ext/allenTestAggregated.json
@@ -1 +1 @@
-[{"type":"Allen Dataset","name":"hbp-00005","regionName":[{"regionName":"Hippocampal region","relationship":"equals"}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","files":[{"filename":"hbp-00005","name":"hbp-00005","mimetype":"raw"}],"kgID":"Project/e4da3b7fbbce2345d7772b0674a318d5"},{"type":"Allen Dataset","name":"hbp-00011_Tg2576","regionName":[{"regionName":"Field CA1","relationship":"equals"}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","files":[{"filename":"hbp-00011_Tg2576","name":"hbp-00011_Tg2576","mimetype":"raw"}],"kgID":"Project/6512bd43d9caa6e02c990b0a82652dca"},{"type":"Allen Dataset","name":"hbp-00012_APD12","regionName":[{"regionName":"Field CA1","relationship":"equals"}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","files":[{"filename":"hbp-00012_APD12","name":"hbp-00012_APD12","mimetype":"raw"}],"kgID":"Project/c20ad4d76fe97759aa27a0c99bff6710"},{"type":"Allen Dataset","name":"hbp-00013_APD13","regionName":[{"regionName":"Field CA1","relationship":"equals"}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","files":[{"filename":"hbp-00013_APD13","name":"hbp-00013_APD13","mimetype":"raw"}],"kgID":"Project/c51ce410c124a10e0db5e4b97fc2af39"},{"type":"Allen Dataset","name":"hbp-00014_APD14","regionName":[{"regionName":"Field CA1","relationship":"equals"}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","files":[{"filename":"hbp-00014_APD14","name":"hbp-00014_APD14","mimetype":"raw"}],"kgID":"Project/aab3238922bcc25a6f606eb525ffdc56"},{"type":"Allen Dataset","name":"hbp-00015_sIPSCs","regionName":[{"regionName":"Field CA1","relationship":"equals"}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","files":[{"filename":"hbp-00015_sIPSCs","name":"hbp-00015_sIPSCs","mimetype":"raw"}],"kgID":"Project/9bf31c7ff062936a96d3c8bd1f8f2ff3"},{"type":"Allen Dataset","name":"hbp-00023_GAD67","regionName":[],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","files":[{"filename":"hbp-00023_GAD67","name":"hbp-00023_GAD67","mimetype":"raw"}]},{"type":"Allen Dataset","name":"hbp-00028","regionName":[],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","files":[{"filename":"hbp-00028","name":"hbp-00028","mimetype":"raw"}]},{"type":"Allen Dataset","name":"hbp-00552_GCaMP6.json","regionName":[],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","files":[{"filename":"hbp-00552_GCaMP6.json","name":"hbp-00552_GCaMP6.json","mimetype":"raw"}],"kgID":null},{"type":"Allen Dataset","name":"hbp-00648_AFmr1_140213","regionName":[{"regionName":"Prelimbic area","relationship":"equals"},{"regionName":"Primary motor area","relationship":"equals"},{"regionName":"Primary somatosensory area","relationship":"equals"},{"regionName":"Anteromedial visual area","relationship":"equals"}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","files":[{"filename":"hbp-00648_AFmr1_140213","name":"hbp-00648_AFmr1_140213","mimetype":"raw"}],"kgID":"Subject/9703f44d9e8e3e89b04fe32df38d3a50"},{"type":"Allen Dataset","name":"hbp-00648_AFmr1_140220","regionName":[{"regionName":"Prelimbic area","relationship":"equals"},{"regionName":"Primary motor area","relationship":"equals"},{"regionName":"Primary somatosensory area","relationship":"equals"},{"regionName":"Anteromedial visual area","relationship":"equals"}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","files":[{"filename":"hbp-00648_AFmr1_140220","name":"hbp-00648_AFmr1_140220","mimetype":"raw"}],"kgID":"Subject/62a12ea44022cc61bc50622c25d9ba90"},{"type":"Allen Dataset","name":"hbp-00648_AFmr1_140304","regionName":[{"regionName":"Prelimbic area","relationship":"equals"},{"regionName":"Primary motor area","relationship":"equals"},{"regionName":"Primary somatosensory area","relationship":"equals"},{"regionName":"Anteromedial visual area","relationship":"equals"}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","files":[{"filename":"hbp-00648_AFmr1_140304","name":"hbp-00648_AFmr1_140304","mimetype":"raw"}],"kgID":"Subject/b7a9bfa817b00f0b8602eef0961dd9c1"},{"type":"Allen Dataset","name":"hbp-00648_AFmr1_140514","regionName":[{"regionName":"Prelimbic area","relationship":"equals"},{"regionName":"Primary motor area","relationship":"equals"},{"regionName":"Primary somatosensory area","relationship":"equals"},{"regionName":"Anteromedial visual area","relationship":"equals"}],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","files":[{"filename":"hbp-00648_AFmr1_140514","name":"hbp-00648_AFmr1_140514","mimetype":"raw"}],"kgID":"Subject/6d212b1a18a6f09098123aeff7ee540e"},{"type":"Allen Dataset","name":"hbp-00648_AFmr1_150505","regionName":[],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","files":[{"filename":"hbp-00648_AFmr1_150505","name":"hbp-00648_AFmr1_150505","mimetype":"raw"}]},{"type":"Allen Dataset","name":"hbp-00648_AFmr1_150519","regionName":[],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","files":[{"filename":"hbp-00648_AFmr1_150519","name":"hbp-00648_AFmr1_150519","mimetype":"raw"}]},{"type":"Allen Dataset","name":"hbp-00810_VC-ramp","regionName":[],"targetParcellation":"Allen adult mouse brain reference atlas V3 Brain Atlas","files":[{"filename":"hbp-00810_VC-ramp","name":"hbp-00810_VC-ramp","mimetype":"raw"}]}]
\ No newline at end of file
+[{"type":"Allen Dataset","name":"hbp-00005","regionName":[{"regionName":"Hippocampal region","relationship":"equals"}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","files":[{"filename":"hbp-00005","name":"hbp-00005","mimetype":"raw"}],"kgID":"Project/e4da3b7fbbce2345d7772b0674a318d5"},{"type":"Allen Dataset","name":"hbp-00011_Tg2576","regionName":[{"regionName":"Field CA1","relationship":"equals"}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","files":[{"filename":"hbp-00011_Tg2576","name":"hbp-00011_Tg2576","mimetype":"raw"}],"kgID":"Project/6512bd43d9caa6e02c990b0a82652dca"},{"type":"Allen Dataset","name":"hbp-00012_APD12","regionName":[{"regionName":"Field CA1","relationship":"equals"}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","files":[{"filename":"hbp-00012_APD12","name":"hbp-00012_APD12","mimetype":"raw"}],"kgID":"Project/c20ad4d76fe97759aa27a0c99bff6710"},{"type":"Allen Dataset","name":"hbp-00013_APD13","regionName":[{"regionName":"Field CA1","relationship":"equals"}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","files":[{"filename":"hbp-00013_APD13","name":"hbp-00013_APD13","mimetype":"raw"}],"kgID":"Project/c51ce410c124a10e0db5e4b97fc2af39"},{"type":"Allen Dataset","name":"hbp-00014_APD14","regionName":[{"regionName":"Field CA1","relationship":"equals"}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","files":[{"filename":"hbp-00014_APD14","name":"hbp-00014_APD14","mimetype":"raw"}],"kgID":"Project/aab3238922bcc25a6f606eb525ffdc56"},{"type":"Allen Dataset","name":"hbp-00015_sIPSCs","regionName":[{"regionName":"Field CA1","relationship":"equals"}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","files":[{"filename":"hbp-00015_sIPSCs","name":"hbp-00015_sIPSCs","mimetype":"raw"}],"kgID":"Project/9bf31c7ff062936a96d3c8bd1f8f2ff3"},{"type":"Allen Dataset","name":"hbp-00023_GAD67","regionName":[],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","files":[{"filename":"hbp-00023_GAD67","name":"hbp-00023_GAD67","mimetype":"raw"}]},{"type":"Allen Dataset","name":"hbp-00028","regionName":[],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","files":[{"filename":"hbp-00028","name":"hbp-00028","mimetype":"raw"}]},{"type":"Allen Dataset","name":"hbp-00552_GCaMP6.json","regionName":[],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","files":[{"filename":"hbp-00552_GCaMP6.json","name":"hbp-00552_GCaMP6.json","mimetype":"raw"}],"kgID":null},{"type":"Allen Dataset","name":"hbp-00648_AFmr1_140213","regionName":[{"regionName":"Prelimbic area","relationship":"equals"},{"regionName":"Primary motor area","relationship":"equals"},{"regionName":"Primary somatosensory area","relationship":"equals"},{"regionName":"Anteromedial visual area","relationship":"equals"}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","files":[{"filename":"hbp-00648_AFmr1_140213","name":"hbp-00648_AFmr1_140213","mimetype":"raw"}],"kgID":"Subject/9703f44d9e8e3e89b04fe32df38d3a50"},{"type":"Allen Dataset","name":"hbp-00648_AFmr1_140220","regionName":[{"regionName":"Prelimbic area","relationship":"equals"},{"regionName":"Primary motor area","relationship":"equals"},{"regionName":"Primary somatosensory area","relationship":"equals"},{"regionName":"Anteromedial visual area","relationship":"equals"}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","files":[{"filename":"hbp-00648_AFmr1_140220","name":"hbp-00648_AFmr1_140220","mimetype":"raw"}],"kgID":"Subject/62a12ea44022cc61bc50622c25d9ba90"},{"type":"Allen Dataset","name":"hbp-00648_AFmr1_140304","regionName":[{"regionName":"Prelimbic area","relationship":"equals"},{"regionName":"Primary motor area","relationship":"equals"},{"regionName":"Primary somatosensory area","relationship":"equals"},{"regionName":"Anteromedial visual area","relationship":"equals"}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","files":[{"filename":"hbp-00648_AFmr1_140304","name":"hbp-00648_AFmr1_140304","mimetype":"raw"}],"kgID":"Subject/b7a9bfa817b00f0b8602eef0961dd9c1"},{"type":"Allen Dataset","name":"hbp-00648_AFmr1_140514","regionName":[{"regionName":"Prelimbic area","relationship":"equals"},{"regionName":"Primary motor area","relationship":"equals"},{"regionName":"Primary somatosensory area","relationship":"equals"},{"regionName":"Anteromedial visual area","relationship":"equals"}],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","files":[{"filename":"hbp-00648_AFmr1_140514","name":"hbp-00648_AFmr1_140514","mimetype":"raw"}],"kgID":"Subject/6d212b1a18a6f09098123aeff7ee540e"},{"type":"Allen Dataset","name":"hbp-00648_AFmr1_150505","regionName":[],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","files":[{"filename":"hbp-00648_AFmr1_150505","name":"hbp-00648_AFmr1_150505","mimetype":"raw"}]},{"type":"Allen Dataset","name":"hbp-00648_AFmr1_150519","regionName":[],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","files":[{"filename":"hbp-00648_AFmr1_150519","name":"hbp-00648_AFmr1_150519","mimetype":"raw"}]},{"type":"Allen Dataset","name":"hbp-00810_VC-ramp","regionName":[],"targetParcellation":"Allen Mouse Common Coordinate Framework v3 2015","files":[{"filename":"hbp-00810_VC-ramp","name":"hbp-00810_VC-ramp","mimetype":"raw"}]}]
\ No newline at end of file
diff --git a/src/res/ext/bigbrain.json b/src/res/ext/bigbrain.json
index ee281176d8238f65782385574149b92ee38d6405..2440a1ee9b1c54631a4fa82215c7b58123c1b5f5 100644
--- a/src/res/ext/bigbrain.json
+++ b/src/res/ext/bigbrain.json
@@ -1 +1,591 @@
-{"name":"Big Brain (Histology)","type":"template","species":"Human","useTheme":"light","nehubaId":" grey value: ","nehubaConfigURL":"nehubaConfig/bigbrainNehubaConfig","parcellations":[{"name":"Grey/White matter","type":"parcellation","ngData":null,"ngId":" tissue type: ","regions":[{"name":"Grey matter","labelIndex":100,"rgb":[200,200,200],"children":[]},{"name":"White matter","labelIndex":200,"rgb":[255,255,255],"children":[]}]},{"name":"Cytoarchitectonic Maps","properties":{"description":"This dataset contains cytoarchitectonic maps of brain regions in the BigBrain space [Amunts et al. 2013]. The mappings were created using the semi-automatic method presented in Schleicher et al. 1999, based on coronal histological sections on 1 micron resolution. Mappings are available on approximately every 100th section for each region. They were then transformed to the sections of the 3D reconstructed BigBrain space using the transformations used in Amunts et al. 2013, which were provided by Claude Lepage (McGill). Only a few cytoarchitectonic maps in the Big Brain are currently **fully mapped**, based on a workflow that automatically fills in missing sections based on expert annotations. Other 3D maps are available in a preliminary version, in which the expert annotations in the Big Brain space were simply **interpolated**."},"regions":[{"name":"telencephalon","children":[{"name":"cerebral cortex","children":[{"name":"temporal lobe","children":[{"name":"Heschl's gyrus","children":[{"name":"Area TE 1.0 (HESCHL)","ngId":"interpolated","status":"interpolated","labelIndex":4,"rgb":[0,146,63],"children":[],"position":[4363384,836825,4887117]},{"name":"Area TE 1.1 (HESCHL)","ngId":"interpolated","status":"interpolated","labelIndex":5,"rgb":[132,194,37],"children":[],"position":[-11860944,-3841071,6062770]},{"name":"Area TE 1.2 (HESCHL)","ngId":"interpolated","status":"interpolated","labelIndex":6,"rgb":[117,197,240],"children":[],"position":[19474750,7932494,3511322]}]},{"name":"superior temporal gyrus","children":[{"name":"Area TE 3 (STG)","ngId":"interpolated","status":"interpolated","labelIndex":7,"rgb":[231,120,23],"children":[],"position":[3479937,2702958,3819372]}]},{"name":"superior temporal sulcus","children":[{"name":"Area STS1 (STS)","ngId":"interpolated","status":"interpolated","labelIndex":24,"children":[],"position":[-3185950,3919067,-8346900]},{"name":"Area STS2 (STS)","ngId":"interpolated","status":"interpolated","labelIndex":25,"children":[],"position":[8584703,6170348,-11790982]}]}]},{"name":"frontal lobe","children":[{"name":"precentral gyrus","children":[{"name":"Area 6d1 (PreCG)","ngId":"interpolated","status":"interpolated","labelIndex":1,"children":[],"position":[-10496194,13643679,42286812]},{"name":"Area 6d2 (PreCG)","ngId":"interpolated","status":"interpolated","labelIndex":2,"children":[],"position":[-9255504,27432072,43445689]},{"name":"Area 6ma (preSMA, mesial SFG)","ngId":"interpolated","status":"interpolated","labelIndex":22,"children":[],"position":[-9349145,27783957,38734627]},{"name":"Area 6mp (SMA, mesial SFG)","ngId":"interpolated","status":"interpolated","labelIndex":23,"children":[],"position":[-11566856,15797100,42172031]}]},{"name":"superior frontal sulcus","children":[{"name":"Area 6d3 (SFS)","ngId":"interpolated","status":"interpolated","labelIndex":3,"children":[],"position":[-8973604,28973429,35691250]}]},{"name":"inferior frontal sulcus","children":[{"name":"Area ifj1 (IFS/PreCS)","ngId":"interpolated","status":"interpolated","labelIndex":9,"children":[],"position":[-7394436,33562602,19086364]},{"name":"Area ifj2 (IFS/PreCS)","ngId":"interpolated","status":"interpolated","labelIndex":10,"children":[],"position":[-26787581,30975651,16855869]},{"name":"Area ifs1 (IFS)","ngId":"interpolated","status":"interpolated","labelIndex":11,"children":[],"position":[-4044465,40212624,17596493]},{"name":"Area ifs2 (IFS)","ngId":"interpolated","status":"interpolated","labelIndex":12,"children":[],"position":[6807265,40114241,18114896]},{"name":"Area ifs3 (IFS)","ngId":"interpolated","status":"interpolated","labelIndex":13,"children":[],"position":[-2260366,37593844,19960703]},{"name":"Area ifs4 (IFS)","ngId":"interpolated","status":"interpolated","labelIndex":14,"children":[],"position":[-3440565,37895181,17378851]}]}]},{"name":"limbic lobe","children":[{"name":"hippocampal formation","children":[{"name":"Entorhinal Cortex","ngId":"interpolated","status":"interpolated","labelIndex":8,"rgb":[153,153,255],"children":[],"position":[4800238,8859989,-24872710]}]}]},{"name":"parietal lobe","children":[{"name":"intraparietal sulcus","children":[{"name":"Area hIP4 (IPS)","ngId":"interpolated","status":"interpolated","labelIndex":15,"children":[],"position":[-5671181,-44793673,21692004]},{"name":"Area hIP5 (IPS)","ngId":"interpolated","status":"interpolated","labelIndex":16,"children":[],"position":[-13546343,-38230309,26252296]},{"name":"Area hIP6 (IPS)","ngId":"interpolated","status":"interpolated","labelIndex":17,"children":[],"position":[-3723403,-33064127,32569712]},{"name":"Area hIP7 (IPS)","ngId":"interpolated","status":"interpolated","labelIndex":18,"children":[],"position":[-5344588,-43655931,24702722]}]},{"name":"parieto-occipital sulcus","children":[{"name":"Area hPO1 (POS)","ngId":"interpolated","status":"interpolated","labelIndex":21,"children":[],"position":[-4455614,-44097379,28855803]}]}]},{"name":"occipital lobe","children":[{"name":"occipital cortex","children":[{"name":"Area hOc1 (V1, 17, CalcS)","ngId":"v1","status":"fully mapped","labelIndex":1,"position":[3187941,-50436479,3430986],"rgb":[250,30,250],"children":[]},{"name":"Area hOc2 (V2, 18)","ngId":"v2","status":"fully mapped","labelIndex":1,"position":[311768,-54882875,4142912],"rgb":[155,100,250],"children":[]},{"name":"dorsal occipital cortex","children":[{"name":"Area hOc6 (POS)","ngId":"interpolated","status":"interpolated","labelIndex":20,"children":[],"position":[-4399437,-36706104,15113374]}]}]}]}]}]}]},{"name":"BigBrain Cortical Layers Segmentation","ngId":"cortical layers","properties":{"description":"The cerebral isocortex has six cytoarchitectonic layers that vary depending on cortical area and local morphology. This datasets provides a 3D segmentation of all cortical and laminar surfaces in the BigBrain, a high-resolution, 3D histological model of the human brain. The segmentation has been computed automatically based on histological intensities along 3D cortical profiles which were sampled between the pial and white matter throughout the dataset. These cortical profiles were segmented into layers using a convolutional neural network. Training profiles were generated from examples of manually segmented layers on cortical regions from 2D histological sections of the BigBrain. From the segmented intensity profiles, surface meshes and voxel masks of all six cortical layers in the space of the Big Brain have been computed.","publications":[{"doi":"https://doi.org/10.1101/580597","citation":"Konrad Wagstyl, Stéphanie Larocque, Guillem Cucurull, Claude Lepage, Joseph Paul Cohen, Sebastian Bludau, Nicola Palomero-Gallagher, Thomas Funck, Hannah Spitzer, Timo Dicksheid, Paul C Fletcher, Adriana Romero, Karl Zilles, Katrin Amunts, Yoshua Bengio, Alan C. Evans (2019) Automated segmentation of cortical layers in BigBrain reveals divergent cortical and laminar thickness gradients in sensory and motor cortices. bioRxiv 580597; doi: https://doi.org/10.1101/580597"}]},"regions":[{"name":"telencephalon","children":[{"name":"cortical layer 1","labelIndex":1,"rgb":[128,128,0],"children":[]},{"name":"cortical layer 2","labelIndex":2,"rgb":[250,190,190],"children":[]},{"name":"cortical layer 3","labelIndex":3,"rgb":[255,215,180],"children":[]},{"name":"cortical layer 4","labelIndex":4,"rgb":[255,250,200],"children":[]},{"name":"cortical layer 5","labelIndex":5,"rgb":[0,128,128],"children":[]},{"name":"cortical layer 6","labelIndex":6,"rgb":[230,190,255],"children":[]},{"name":"non-cortical structures","labelIndex":7,"rgb":[255,255,255],"children":[]}]}]}],"properties":{"name":"Big Brain (Histology)","description":"An ultrahigh resolution 3D model of a complete human brain (20 micron isotropic resolution), developed in a collaborative effort between the teams of Dr. Katrin Amunts and Dr. Karl Zilles (Forschungszentrum Jülich) and Dr. Alan Evans (Montreal Neurological Institute). Based on 7404 digitized histological brain sections, this so far unique reconstruction provides unprecedented neuroanatomical insight. The dataset contains a complete gray and white matter classification with corresponding surface reconstructions","publications":[{"doi":"https://doi.org/10.1126/science.1235381","citation":"K. Amunts, A. Evans et al.: BigBrain: An Ultrahigh-Resolution 3D Human Brain Model. Science 2013"},{"doi":"http://bigbrain.loris.ca","citation":"http://bigbrain.loris.ca"}]}}
\ No newline at end of file
+{
+  "name": "Big Brain (Histology)",
+  "type": "template",
+  "species": "Human",
+  "useTheme": "light",
+  "ngId": " grey value: ",
+  "originDatasets":[{
+    "kgSchema": "minds/core/dataset/v1.0.0",
+    "kgId": "e32f9053-38c9-4911-b868-845c56828f4d"
+  }],
+  "nehubaConfigURL": "nehubaConfig/bigbrainNehubaConfig",
+  "parcellations": [
+    {
+      "name": "Cytoarchitectonic Maps",
+      "properties": {
+        "description": "This dataset contains cytoarchitectonic maps of brain regions in the BigBrain space [Amunts et al. 2013]. The mappings were created using the semi-automatic method presented in Schleicher et al. 1999, based on coronal histological sections on 1 micron resolution. Mappings are available on approximately every 100th section for each region. They were then transformed to the sections of the 3D reconstructed BigBrain space using the transformations used in Amunts et al. 2013, which were provided by Claude Lepage (McGill). Only a few cytoarchitectonic maps in the Big Brain are currently **fully mapped**, based on a workflow that automatically fills in missing sections based on expert annotations. Other 3D maps are available in a preliminary version, in which the expert annotations in the Big Brain space were simply **interpolated**."
+      },
+      "regions": [
+        {
+          "name": "telencephalon",
+          "children": [
+            {
+              "name": "cerebral cortex",
+              "children": [
+                {
+                  "name": "temporal lobe",
+                  "children": [
+                    {
+                      "name": "Heschl's gyrus",
+                      "children": [
+                        {
+                          "name": "Area TE 1.0 (HESCHL)",
+                          "ngId": "interpolated",
+                          "status": "interpolated",
+                          "labelIndex": 4,
+                          "rgb": [
+                            0,
+                            146,
+                            63
+                          ],
+                          "children": [],
+                          "position": [
+                            4363384,
+                            836825,
+                            4887117
+                          ]
+                        },
+                        {
+                          "name": "Area TE 1.1 (HESCHL)",
+                          "ngId": "interpolated",
+                          "status": "interpolated",
+                          "labelIndex": 5,
+                          "rgb": [
+                            132,
+                            194,
+                            37
+                          ],
+                          "children": [],
+                          "position": [
+                            -11860944,
+                            -3841071,
+                            6062770
+                          ]
+                        },
+                        {
+                          "name": "Area TE 1.2 (HESCHL)",
+                          "ngId": "interpolated",
+                          "status": "interpolated",
+                          "labelIndex": 6,
+                          "rgb": [
+                            117,
+                            197,
+                            240
+                          ],
+                          "children": [],
+                          "position": [
+                            19474750,
+                            7932494,
+                            3511322
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "superior temporal gyrus",
+                      "children": [
+                        {
+                          "name": "Area TE 3 (STG)",
+                          "ngId": "interpolated",
+                          "status": "interpolated",
+                          "labelIndex": 7,
+                          "rgb": [
+                            231,
+                            120,
+                            23
+                          ],
+                          "children": [],
+                          "position": [
+                            3479937,
+                            2702958,
+                            3819372
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "superior temporal sulcus",
+                      "children": [
+                        {
+                          "name": "Area STS1 (STS)",
+                          "ngId": "interpolated",
+                          "status": "interpolated",
+                          "labelIndex": 24,
+                          "children": [],
+                          "position": [
+                            -3185950,
+                            3919067,
+                            -8346900
+                          ]
+                        },
+                        {
+                          "name": "Area STS2 (STS)",
+                          "ngId": "interpolated",
+                          "status": "interpolated",
+                          "labelIndex": 25,
+                          "children": [],
+                          "position": [
+                            8584703,
+                            6170348,
+                            -11790982
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "frontal lobe",
+                  "children": [
+                    {
+                      "name": "precentral gyrus",
+                      "children": [
+                        {
+                          "name": "Area 6d1 (PreCG)",
+                          "ngId": "interpolated",
+                          "status": "interpolated",
+                          "labelIndex": 1,
+                          "children": [],
+                          "position": [
+                            -10496194,
+                            13643679,
+                            42286812
+                          ]
+                        },
+                        {
+                          "name": "Area 6d2 (PreCG)",
+                          "ngId": "interpolated",
+                          "status": "interpolated",
+                          "labelIndex": 2,
+                          "children": [],
+                          "position": [
+                            -9255504,
+                            27432072,
+                            43445689
+                          ]
+                        },
+                        {
+                          "name": "Area 6ma (preSMA, mesial SFG)",
+                          "ngId": "interpolated",
+                          "status": "interpolated",
+                          "labelIndex": 22,
+                          "children": [],
+                          "position": [
+                            -9349145,
+                            27783957,
+                            38734627
+                          ]
+                        },
+                        {
+                          "name": "Area 6mp (SMA, mesial SFG)",
+                          "ngId": "interpolated",
+                          "status": "interpolated",
+                          "labelIndex": 23,
+                          "children": [],
+                          "position": [
+                            -11566856,
+                            15797100,
+                            42172031
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "superior frontal sulcus",
+                      "children": [
+                        {
+                          "name": "Area 6d3 (SFS)",
+                          "ngId": "interpolated",
+                          "status": "interpolated",
+                          "labelIndex": 3,
+                          "children": [],
+                          "position": [
+                            -8973604,
+                            28973429,
+                            35691250
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "inferior frontal sulcus",
+                      "children": [
+                        {
+                          "name": "Area ifj1 (IFS/PreCS)",
+                          "ngId": "interpolated",
+                          "status": "interpolated",
+                          "labelIndex": 9,
+                          "children": [],
+                          "position": [
+                            -7394436,
+                            33562602,
+                            19086364
+                          ]
+                        },
+                        {
+                          "name": "Area ifj2 (IFS/PreCS)",
+                          "ngId": "interpolated",
+                          "status": "interpolated",
+                          "labelIndex": 10,
+                          "children": [],
+                          "position": [
+                            -26787581,
+                            30975651,
+                            16855869
+                          ]
+                        },
+                        {
+                          "name": "Area ifs1 (IFS)",
+                          "ngId": "interpolated",
+                          "status": "interpolated",
+                          "labelIndex": 11,
+                          "children": [],
+                          "position": [
+                            -4044465,
+                            40212624,
+                            17596493
+                          ]
+                        },
+                        {
+                          "name": "Area ifs2 (IFS)",
+                          "ngId": "interpolated",
+                          "status": "interpolated",
+                          "labelIndex": 12,
+                          "children": [],
+                          "position": [
+                            6807265,
+                            40114241,
+                            18114896
+                          ]
+                        },
+                        {
+                          "name": "Area ifs3 (IFS)",
+                          "ngId": "interpolated",
+                          "status": "interpolated",
+                          "labelIndex": 13,
+                          "children": [],
+                          "position": [
+                            -2260366,
+                            37593844,
+                            19960703
+                          ]
+                        },
+                        {
+                          "name": "Area ifs4 (IFS)",
+                          "ngId": "interpolated",
+                          "status": "interpolated",
+                          "labelIndex": 14,
+                          "children": [],
+                          "position": [
+                            -3440565,
+                            37895181,
+                            17378851
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "limbic lobe",
+                  "children": [
+                    {
+                      "name": "hippocampal formation",
+                      "children": [
+                        {
+                          "name": "Entorhinal Cortex",
+                          "ngId": "interpolated",
+                          "status": "interpolated",
+                          "labelIndex": 8,
+                          "rgb": [
+                            153,
+                            153,
+                            255
+                          ],
+                          "children": [],
+                          "position": [
+                            4800238,
+                            8859989,
+                            -24872710
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "parietal lobe",
+                  "children": [
+                    {
+                      "name": "intraparietal sulcus",
+                      "children": [
+                        {
+                          "name": "Area hIP4 (IPS)",
+                          "ngId": "interpolated",
+                          "status": "interpolated",
+                          "labelIndex": 15,
+                          "children": [],
+                          "position": [
+                            -5671181,
+                            -44793673,
+                            21692004
+                          ]
+                        },
+                        {
+                          "name": "Area hIP5 (IPS)",
+                          "ngId": "interpolated",
+                          "status": "interpolated",
+                          "labelIndex": 16,
+                          "children": [],
+                          "position": [
+                            -13546343,
+                            -38230309,
+                            26252296
+                          ]
+                        },
+                        {
+                          "name": "Area hIP6 (IPS)",
+                          "ngId": "interpolated",
+                          "status": "interpolated",
+                          "labelIndex": 17,
+                          "children": [],
+                          "position": [
+                            -3723403,
+                            -33064127,
+                            32569712
+                          ]
+                        },
+                        {
+                          "name": "Area hIP7 (IPS)",
+                          "ngId": "interpolated",
+                          "status": "interpolated",
+                          "labelIndex": 18,
+                          "children": [],
+                          "position": [
+                            -5344588,
+                            -43655931,
+                            24702722
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "parieto-occipital sulcus",
+                      "children": [
+                        {
+                          "name": "Area hPO1 (POS)",
+                          "ngId": "interpolated",
+                          "status": "interpolated",
+                          "labelIndex": 21,
+                          "children": [],
+                          "position": [
+                            -4455614,
+                            -44097379,
+                            28855803
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "occipital lobe",
+                  "children": [
+                    {
+                      "name": "occipital cortex",
+                      "children": [
+                        {
+                          "name": "Area hOc1 (V1, 17, CalcS)",
+                          "ngId": "v1",
+                          "status": "fully mapped",
+                          "labelIndex": 1,
+                          "position": [
+                            3187941,
+                            -50436479,
+                            3430986
+                          ],
+                          "rgb": [
+                            250,
+                            30,
+                            250
+                          ],
+                          "children": []
+                        },
+                        {
+                          "name": "Area hOc2 (V2, 18)",
+                          "ngId": "v2",
+                          "status": "fully mapped",
+                          "labelIndex": 1,
+                          "position": [
+                            311768,
+                            -54882875,
+                            4142912
+                          ],
+                          "rgb": [
+                            155,
+                            100,
+                            250
+                          ],
+                          "children": []
+                        },
+                        {
+                          "name": "dorsal occipital cortex",
+                          "children": [
+                            {
+                              "name": "Area hOc6 (POS)",
+                              "ngId": "interpolated",
+                              "status": "interpolated",
+                              "labelIndex": 20,
+                              "children": [],
+                              "position": [
+                                -4399437,
+                                -36706104,
+                                15113374
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                }
+              ]
+            }
+          ]
+        }
+      ]
+    },
+    {
+      "name": "BigBrain Cortical Layers Segmentation",
+      "ngId": "cortical layers",
+      "properties": {
+        "description": "The cerebral isocortex has six cytoarchitectonic layers that vary depending on cortical area and local morphology. This datasets provides a 3D segmentation of all cortical and laminar surfaces in the BigBrain, a high-resolution, 3D histological model of the human brain. The segmentation has been computed automatically based on histological intensities along 3D cortical profiles which were sampled between the pial and white matter throughout the dataset. These cortical profiles were segmented into layers using a convolutional neural network. Training profiles were generated from examples of manually segmented layers on cortical regions from 2D histological sections of the BigBrain. From the segmented intensity profiles, surface meshes and voxel masks of all six cortical layers in the space of the Big Brain have been computed.",
+        "publications": [
+          {
+            "doi": "https://doi.org/10.1101/580597",
+            "cite": "Konrad Wagstyl, Stéphanie Larocque, Guillem Cucurull, Claude Lepage, Joseph Paul Cohen, Sebastian Bludau, Nicola Palomero-Gallagher, Thomas Funck, Hannah Spitzer, Timo Dicksheid, Paul C Fletcher, Adriana Romero, Karl Zilles, Katrin Amunts, Yoshua Bengio, Alan C. Evans (2019) Automated segmentation of cortical layers in BigBrain reveals divergent cortical and laminar thickness gradients in sensory and motor cortices. bioRxiv 580597; doi: https://doi.org/10.1101/580597"
+          }
+        ]
+      },
+      "regions": [
+        {
+          "name": "telencephalon",
+          "children": [
+            {
+              "name": "cortical layer 1",
+              "labelIndex": 1,
+              "rgb": [
+                128,
+                128,
+                0
+              ],
+              "children": []
+            },
+            {
+              "name": "cortical layer 2",
+              "labelIndex": 2,
+              "rgb": [
+                250,
+                190,
+                190
+              ],
+              "children": []
+            },
+            {
+              "name": "cortical layer 3",
+              "labelIndex": 3,
+              "rgb": [
+                255,
+                215,
+                180
+              ],
+              "children": []
+            },
+            {
+              "name": "cortical layer 4",
+              "labelIndex": 4,
+              "rgb": [
+                255,
+                250,
+                200
+              ],
+              "children": []
+            },
+            {
+              "name": "cortical layer 5",
+              "labelIndex": 5,
+              "rgb": [
+                0,
+                128,
+                128
+              ],
+              "children": []
+            },
+            {
+              "name": "cortical layer 6",
+              "labelIndex": 6,
+              "rgb": [
+                230,
+                190,
+                255
+              ],
+              "children": []
+            },
+            {
+              "name": "non-cortical structures",
+              "labelIndex": 7,
+              "rgb": [
+                255,
+                255,
+                255
+              ],
+              "children": []
+            }
+          ]
+        }
+      ]
+    },
+    {
+      "name": "Grey/White matter",
+      "type": "parcellation",
+      "ngData": null,
+      "ngId": " tissue type: ",
+      "regions": [
+        {
+          "name": "Grey matter",
+          "labelIndex": 100,
+          "rgb": [
+            200,
+            200,
+            200
+          ],
+          "children": []
+        },
+        {
+          "name": "White matter",
+          "labelIndex": 200,
+          "rgb": [
+            255,
+            255,
+            255
+          ],
+          "children": []
+        }
+      ]
+    }
+  ],
+  "properties": {
+    "name": "Big Brain (Histology)",
+    "description": "A microscopic resolution 3D model of a complete human brain, based on a 3D reconstruction from 7404 digitized histological brain sections (Amunts, Evans et al., Science 2013). The BigBrain model provides a highly detailed anatomical reference space which resolves individual cortical layers and large cell bodies. Maps of cytoarchitectonic areas (Amunts et al.) and cortical layers (Wagstyl et al.) are available.",
+    "publications": [
+      {
+        "doi": "10.1126/science.1235381",
+        "cite": "K. Amunts, A. Evans et al.: BigBrain: An Ultrahigh-Resolution 3D Human Brain Model. Science 2013"
+      },
+      {
+        "doi": "http://bigbrain.loris.ca",
+        "cite": "http://bigbrain.loris.ca"
+      }
+    ]
+  }
+}
\ No newline at end of file
diff --git a/src/res/ext/cachedKgDS.20190225.json b/src/res/ext/cachedKgDS.20190225.json
index dbb4b5b9ec588de8031adafc9d2fb739e972ab59..2298e297a1ed13440f3abc0b8fe61015446225de 100644
--- a/src/res/ext/cachedKgDS.20190225.json
+++ b/src/res/ext/cachedKgDS.20190225.json
@@ -2572,7 +2572,7 @@
       ],
       "referenceSpaces": [
         {
-          "name": "Waxholm Space rat brain atlas v.2.0"
+          "name": "Waxholm Space rat brain MRI/DTI"
         }
       ],
       "custodians": [
@@ -8550,7 +8550,7 @@
       "formats": [],
       "referenceSpaces": [
         {
-          "name": "Waxholm Space rat brain atlas v.2.0"
+          "name": "Waxholm Space rat brain MRI/DTI"
         }
       ],
       "custodians": [
@@ -11157,7 +11157,7 @@
       "formats": [],
       "referenceSpaces": [
         {
-          "name": "Waxholm Space rat brain atlas v.2.0"
+          "name": "Waxholm Space rat brain MRI/DTI"
         }
       ],
       "custodians": [
@@ -11458,7 +11458,7 @@
       ],
       "referenceSpaces": [
         {
-          "name": "Waxholm Space rat brain atlas v.2.0"
+          "name": "Waxholm Space rat brain MRI/DTI"
         }
       ],
       "custodians": [
@@ -19610,7 +19610,7 @@
       "formats": [],
       "referenceSpaces": [
         {
-          "name": "Waxholm Space rat brain atlas v.2.0"
+          "name": "Waxholm Space rat brain MRI/DTI"
         }
       ],
       "custodians": [
diff --git a/src/res/ext/camillaWaxholmPointsAggregatedData.json b/src/res/ext/camillaWaxholmPointsAggregatedData.json
index 46f83655c43787c882055e600b699a5d767baa5c..d0b742d4833cfcc8e2ac246e3cc23623d337b1bc 100644
--- a/src/res/ext/camillaWaxholmPointsAggregatedData.json
+++ b/src/res/ext/camillaWaxholmPointsAggregatedData.json
@@ -1 +1 @@
-[{"name":"hbp-00937_EEG-rest.json - Channel 1","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[-1.7382810000000006,5.371094500000002,5.566406499999999],"properties":{"description":"Description of Channel 1","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 2","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[-1.8164060000000006,2.4804695000000017,6.191406499999999],"properties":{"description":"Description of Channel 2","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 3","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[1.8164064999999994,5.410157000000002,5.566406499999999],"properties":{"description":"Description of Channel 3","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 4","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[1.5429689999999994,2.5585945000000017,6.347656499999999],"properties":{"description":"Description of Channel 4","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 5","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[-4.746093500000001,-0.33203049999999834,6.113281499999999],"properties":{"description":"Description of Channel 5","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 6","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[-1.8554685000000006,-0.25390549999999834,6.855468999999999],"properties":{"description":"Description of Channel 6","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 7","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[1.4257814999999994,-0.17578049999999834,7.011718999999999],"properties":{"description":"Description of Channel 7","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 8","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[4.433593999999999,-0.17578049999999834,6.269531499999999],"properties":{"description":"Description of Channel 8","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 9","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[-4.941406000000001,-3.1054679999999983,6.621093999999999],"properties":{"description":"Description of Channel 9","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 10","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[-2.0507810000000006,-2.9882804999999983,7.128906499999999],"properties":{"description":"Description of Channel 10","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 11","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[1.5039064999999994,-2.9492179999999983,7.324218999999999],"properties":{"description":"Description of Channel 11","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 12","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[4.355468999999999,-2.9101554999999983,6.894531499999999],"properties":{"description":"Description of Channel 12","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 13","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[-5.058593500000001,-6.152342999999998,6.464843999999999],"properties":{"description":"Description of Channel 13","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 14","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[-1.9335935000000006,-5.996092999999998,7.441406499999999],"properties":{"description":"Description of Channel 14","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 15","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[1.3867189999999994,-5.957030499999998,7.480468999999999],"properties":{"description":"Description of Channel 15","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 16","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[4.550781499999999,-5.957030499999998,6.894531499999999],"properties":{"description":"Description of Channel 16","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Ground","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[-0.05859350000000063,-9.550780499999998,7.089843999999999],"properties":{"description":"Description of Ground","publications":[]}}},{"name":"hbp-00941_ERP.json - hbp-00941_ERP_j10_hippo-histo","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[2.0976564999999994,-2.5273429999999983,3.5234377499999994],"properties":{"description":"Description of hbp-00941_ERP_j10_hippo-histo","publications":[]}}},{"name":"hbp-00941_ERP.json - hbp-00941_ERP_j10_histo-M2_nr1","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[-1.0781247500000006,4.984375750000002,4.996093999999999],"properties":{"description":"Description of hbp-00941_ERP_j10_histo-M2_nr1","publications":[]}}},{"name":"hbp-00941_ERP.json - hbp-00941_ERP_j10_histo-M2_nr2","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[-1.4804685000000006,4.957032000000002,5.007812749999999],"properties":{"description":"Description of hbp-00941_ERP_j10_histo-M2_nr2","publications":[]}}},{"name":"hbp-00941_ERP.json - hbp-00941_ERP_j11_hippo-histo","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[2.9921877499999994,-2.9257804999999983,4.039062749999999],"properties":{"description":"Description of hbp-00941_ERP_j11_hippo-histo","publications":[]}}},{"name":"hbp-00941_ERP.json - hbp-00941_ERP_j11_histo-M2_nr1","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[-1.3242185000000006,4.507813250000002,5.148437749999999],"properties":{"description":"Description of hbp-00941_ERP_j11_histo-M2_nr1","publications":[]}}},{"name":"hbp-00941_ERP.json - hbp-00941_ERP_j11_histo-M2_nr2","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[-1.6445310000000006,4.523438250000002,5.187500249999999],"properties":{"description":"Description of hbp-00941_ERP_j11_histo-M2_nr2","publications":[]}}},{"name":"hbp-01681.json - S1BFsurface","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[-5.378906000000001,-2.3906242499999983,6.375000249999999],"properties":{"description":"Description of S1BFsurface","publications":[]}}},{"name":"hbp-01681.json - dorsal HPC CA1 surface","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[-2.5898435000000006,-2.5820304999999983,7.027343999999999],"properties":{"description":"Description of dorsal HPC CA1 surface","publications":[]}}},{"name":"hbp-01681.json - V1Msurface","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[-3.4843747500000006,-5.167967999999998,7.160156499999999],"properties":{"description":"Description of V1Msurface","publications":[]}}},{"name":"hbp-01681.json - PHR surface","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[-5.480468500000001,-4.261717999999998,6.480468999999999],"properties":{"description":"Description of PHR surface","publications":[]}}},{"name":"hbp-01681.json - PHRborder","templateSpace":"Waxholm Space rat brain atlas v.2.0","geometry":{"type":"point","space":"real","position":[-6.980468500000001,-5.613280499999998,1.6289064999999994],"properties":{"description":"Description of PHRborder","publications":[]}}}]
\ No newline at end of file
+[{"name":"hbp-00937_EEG-rest.json - Channel 1","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[-1.7382810000000006,5.371094500000002,5.566406499999999],"properties":{"description":"Description of Channel 1","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 2","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[-1.8164060000000006,2.4804695000000017,6.191406499999999],"properties":{"description":"Description of Channel 2","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 3","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[1.8164064999999994,5.410157000000002,5.566406499999999],"properties":{"description":"Description of Channel 3","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 4","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[1.5429689999999994,2.5585945000000017,6.347656499999999],"properties":{"description":"Description of Channel 4","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 5","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[-4.746093500000001,-0.33203049999999834,6.113281499999999],"properties":{"description":"Description of Channel 5","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 6","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[-1.8554685000000006,-0.25390549999999834,6.855468999999999],"properties":{"description":"Description of Channel 6","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 7","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[1.4257814999999994,-0.17578049999999834,7.011718999999999],"properties":{"description":"Description of Channel 7","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 8","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[4.433593999999999,-0.17578049999999834,6.269531499999999],"properties":{"description":"Description of Channel 8","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 9","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[-4.941406000000001,-3.1054679999999983,6.621093999999999],"properties":{"description":"Description of Channel 9","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 10","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[-2.0507810000000006,-2.9882804999999983,7.128906499999999],"properties":{"description":"Description of Channel 10","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 11","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[1.5039064999999994,-2.9492179999999983,7.324218999999999],"properties":{"description":"Description of Channel 11","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 12","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[4.355468999999999,-2.9101554999999983,6.894531499999999],"properties":{"description":"Description of Channel 12","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 13","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[-5.058593500000001,-6.152342999999998,6.464843999999999],"properties":{"description":"Description of Channel 13","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 14","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[-1.9335935000000006,-5.996092999999998,7.441406499999999],"properties":{"description":"Description of Channel 14","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 15","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[1.3867189999999994,-5.957030499999998,7.480468999999999],"properties":{"description":"Description of Channel 15","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Channel 16","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[4.550781499999999,-5.957030499999998,6.894531499999999],"properties":{"description":"Description of Channel 16","publications":[]}}},{"name":"hbp-00937_EEG-rest.json - Ground","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[-0.05859350000000063,-9.550780499999998,7.089843999999999],"properties":{"description":"Description of Ground","publications":[]}}},{"name":"hbp-00941_ERP.json - hbp-00941_ERP_j10_hippo-histo","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[2.0976564999999994,-2.5273429999999983,3.5234377499999994],"properties":{"description":"Description of hbp-00941_ERP_j10_hippo-histo","publications":[]}}},{"name":"hbp-00941_ERP.json - hbp-00941_ERP_j10_histo-M2_nr1","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[-1.0781247500000006,4.984375750000002,4.996093999999999],"properties":{"description":"Description of hbp-00941_ERP_j10_histo-M2_nr1","publications":[]}}},{"name":"hbp-00941_ERP.json - hbp-00941_ERP_j10_histo-M2_nr2","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[-1.4804685000000006,4.957032000000002,5.007812749999999],"properties":{"description":"Description of hbp-00941_ERP_j10_histo-M2_nr2","publications":[]}}},{"name":"hbp-00941_ERP.json - hbp-00941_ERP_j11_hippo-histo","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[2.9921877499999994,-2.9257804999999983,4.039062749999999],"properties":{"description":"Description of hbp-00941_ERP_j11_hippo-histo","publications":[]}}},{"name":"hbp-00941_ERP.json - hbp-00941_ERP_j11_histo-M2_nr1","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[-1.3242185000000006,4.507813250000002,5.148437749999999],"properties":{"description":"Description of hbp-00941_ERP_j11_histo-M2_nr1","publications":[]}}},{"name":"hbp-00941_ERP.json - hbp-00941_ERP_j11_histo-M2_nr2","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[-1.6445310000000006,4.523438250000002,5.187500249999999],"properties":{"description":"Description of hbp-00941_ERP_j11_histo-M2_nr2","publications":[]}}},{"name":"hbp-01681.json - S1BFsurface","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[-5.378906000000001,-2.3906242499999983,6.375000249999999],"properties":{"description":"Description of S1BFsurface","publications":[]}}},{"name":"hbp-01681.json - dorsal HPC CA1 surface","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[-2.5898435000000006,-2.5820304999999983,7.027343999999999],"properties":{"description":"Description of dorsal HPC CA1 surface","publications":[]}}},{"name":"hbp-01681.json - V1Msurface","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[-3.4843747500000006,-5.167967999999998,7.160156499999999],"properties":{"description":"Description of V1Msurface","publications":[]}}},{"name":"hbp-01681.json - PHR surface","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[-5.480468500000001,-4.261717999999998,6.480468999999999],"properties":{"description":"Description of PHR surface","publications":[]}}},{"name":"hbp-01681.json - PHRborder","templateSpace":"Waxholm Space rat brain MRI/DTI","geometry":{"type":"point","space":"real","position":[-6.980468500000001,-5.613280499999998,1.6289064999999994],"properties":{"description":"Description of PHRborder","publications":[]}}}]
\ No newline at end of file
diff --git a/src/res/ext/colin.json b/src/res/ext/colin.json
index db888e71366fd0c8ce5a8a8ffba7a9d5b8544a02..fbb7a040b6b7a2a8b56d2af50b4bdfcf87447061 100644
--- a/src/res/ext/colin.json
+++ b/src/res/ext/colin.json
@@ -991,6 +991,9 @@
                           "labelIndex": null,
                           "doi": "https://doi.org/10.25493/C3HS-8R7",
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area 7A"
+                          ],
                           "rgb": [
                             52,
                             20,
@@ -1352,6 +1355,9 @@
                           "labelIndex": null,
                           "doi": "https://doi.org/10.25493/2JK3-QXR",
                           "synonyms": [],
+                          "relatedAreas": [
+                            "Area 3b"
+                          ],
                           "rgb": [
                             239,
                             246,
@@ -1499,6 +1505,9 @@
                           "labelIndex": null,
                           "doi": "https://doi.org/10.25493/C5QQ-EFB",
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area PFm"
+                          ],
                           "rgb": [
                             187,
                             133,
@@ -1557,6 +1566,9 @@
                           "labelIndex": null,
                           "doi": "https://doi.org/10.25493/F1TJ-54W",
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area PFop"
+                          ],
                           "rgb": [
                             226,
                             211,
@@ -1606,6 +1618,9 @@
                           "labelIndex": null,
                           "doi": "https://doi.org/10.25493/8DP8-8HE",
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area PGp"
+                          ],
                           "rgb": [
                             98,
                             128,
@@ -1655,6 +1670,9 @@
                           "labelIndex": null,
                           "doi": "https://doi.org/10.25493/V5HY-XTS",
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area PGa"
+                          ],
                           "rgb": [
                             42,
                             236,
@@ -1704,6 +1722,9 @@
                           "labelIndex": null,
                           "doi": "https://doi.org/10.25493/JGM9-ZET",
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area PFt"
+                          ],
                           "rgb": [
                             120,
                             135,
@@ -1753,6 +1774,9 @@
                           "labelIndex": null,
                           "doi": "https://doi.org/10.25493/TB94-HRK",
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area PFcm"
+                          ],
                           "rgb": [
                             53,
                             76,
@@ -2912,6 +2936,10 @@
                           "labelIndex": null,
                           "doi": "https://doi.org/10.25493/F9P8-ZVW",
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area 44v",
+                            "Area 44d"
+                          ],
                           "rgb": [
                             54,
                             74,
@@ -2961,6 +2989,9 @@
                           "labelIndex": null,
                           "doi": "https://doi.org/10.25493/MR1V-BJ3",
                           "synonyms": [],
+                          "relatedAreas": [
+                            "Area 45"
+                          ],
                           "rgb": [
                             167,
                             103,
@@ -3349,6 +3380,9 @@
                           "labelIndex": null,
                           "doi": "https://doi.org/10.25493/5HSF-81J",
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area 4p"
+                          ],
                           "rgb": [
                             116,
                             92,
@@ -4838,6 +4872,9 @@
                           "labelIndex": null,
                           "doi": "https://doi.org/10.25493/MV3G-RET",
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area Te1"
+                          ],
                           "rgb": [
                             252,
                             84,
@@ -4896,6 +4933,9 @@
                           "labelIndex": null,
                           "doi": "https://doi.org/10.25493/F2JH-KVV",
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area FG1"
+                          ],
                           "rgb": [
                             67,
                             94,
@@ -5043,6 +5083,9 @@
                           "labelIndex": null,
                           "doi": "https://doi.org/10.25493/13RG-FYV",
                           "synonyms": [],
+                          "relatedAreas":[
+                            "Area FG2"
+                          ],
                           "rgb": [
                             170,
                             220,
@@ -6021,6 +6064,6 @@
   ],
   "properties": {
     "name": "MNI Colin 27",
-    "description": "This is a stereotaxic average of 27 T1-weighted MRI scans of the same individual. In 1998, a new atlas with much higher definition than MNI305s was created at the MNI. One individual (CJH) was scanned 27 times and the images linearly registered to create an average with high SNR and structure definition (Holmes et al., 1998). This average was linearly registered to the average 305. Ironically, this dataset was not originally intended for use as a stereotaxic template but as the sub- strate for an ROI parcellation scheme to be used with ANIMAL non-linear spatial normalization (Collins et al., 1995), i.e. it was intended for the purpose of segmentation, NOT stereotaxy. As a single brain atlas, it did not capture anatomical variability and was, to some degree, a reversion to the Talairach approach. However, the high definition proved too attractive to the community and, after non-linear mapping to fit the MNI305 space, it has been adopted by many groups as a stereotaxic template (e.g., AFNI, Cox,; Brainstorm, Tadel et al., 2011; SPM, Litvak et al., 2011; Fieldtrip, Oostenveld et al., 2011)."
+    "description": "A stereotaxic average of 27 T1-weighted MRI scans of the same individual. (Holmes et al., 1998), mapped to fit the MNI305 space.  Although not capturing brain variability, it is well established in neuroscience due to its high definition. HBP provides the JuBrain probabilistic cytoarchitectonic atlas (Amunts et al.) in this space."
   }
-}
\ No newline at end of file
+}
diff --git a/src/res/ext/colinNehubaConfig.json b/src/res/ext/colinNehubaConfig.json
index 790bbd62a37c28cbc99bab63e5ab247dd7c1dbab..a8b1d29df406129bb0f5623ad1acb3f4324fb2de 100644
--- a/src/res/ext/colinNehubaConfig.json
+++ b/src/res/ext/colinNehubaConfig.json
@@ -87,36 +87,6 @@
             ]
           ]
         },
-        "jubrain v2_2c": {
-          "type": "segmentation",
-          "source": "precomputed://https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/MPM",
-          "transform": [
-            [
-              1,
-              0,
-              0,
-              -75500000
-            ],
-            [
-              0,
-              1,
-              0,
-              -111500000
-            ],
-            [
-              0,
-              0,
-              1,
-              -67500000
-            ],
-            [
-              0,
-              0,
-              0,
-              1
-            ]
-          ]
-        },
         "jubrain colin v18 left": {
           "type": "segmentation",
           "visible": true,
diff --git a/src/res/ext/waxholmRatV2_0.json b/src/res/ext/waxholmRatV2_0.json
index df036fb15d79cd07639803e9520a10372131b849..e83c481d1b290d578113a6db9923520c194da9f2 100644
--- a/src/res/ext/waxholmRatV2_0.json
+++ b/src/res/ext/waxholmRatV2_0.json
@@ -1,17 +1,1552 @@
 {
-  "name": "Waxholm Space rat brain atlas v.2.0",
+  "name": "Waxholm Space rat brain MRI/DTI",
   "type": "template",
   "species": "Rat",
   "useTheme": "dark",
+  "ngId": "template",
+  "otherNgIds":[
+    "templateUnMasked"
+  ],
   "nehubaConfigURL": "nehubaConfig/waxholmRatV2_0NehubaConfig",
   "parcellations": [
     {
-      "ngId": "whole",
+      "ngId": "v3",
+      "type": "parcellation",
+      "name": "Waxholm Space rat brain atlas v3",
+      "regions": [{
+        "ngId": "v3",
+        "name": "Whole brain",
+        "labelIndex": null,
+        "rgb": null,
+        "children":[
+          {
+            "ngId": "v3",
+            "labelIndex": null,
+            "name": "White matter",
+            "children": [
+              {
+                "ngId": "v3",
+                "labelIndex": 67,
+                "name": "corpus callosum and associated subcortical white matter",
+                "rgb": [
+                  255,
+                  110,
+                  0
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": null,
+                "name": "Anterior commissure",
+                "children": [
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 36,
+                    "name": "anterior commissure, anterior part",
+                    "rgb": [
+                      124,
+                      252,
+                      0
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 37,
+                    "name": "anterior commissure, posterior part",
+                    "rgb": [
+                      255,
+                      186,
+                      0
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 73,
+                    "name": "anterior commissure",
+                    "rgb": [
+                      255,
+                      79,
+                      206
+                    ],
+                    "children": []
+                  }
+                ]
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": null,
+                "name": "Hippocampal white matter",
+                "children": [
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 6,
+                    "name": "alveus of the hippocampus",
+                    "rgb": [
+                      255,
+                      0,
+                      255
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 38,
+                    "name": "ventral hippocampal commissure",
+                    "rgb": [
+                      174,
+                      0,
+                      232
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 52,
+                    "name": "fornix",
+                    "rgb": [
+                      21,
+                      192,
+                      255
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 59,
+                    "name": "fimbria of the hippocampus",
+                    "rgb": [
+                      0,
+                      255,
+                      29
+                    ],
+                    "children": []
+                  }
+                ]
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": null,
+                "name": "Corticofugal pathways",
+                "children": [
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 1,
+                    "name": "descending corticofugal pathways",
+                    "rgb": [
+                      255,
+                      52,
+                      39
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 85,
+                    "name": "pyramidal decussation",
+                    "rgb": [
+                      114,
+                      9,
+                      212
+                    ],
+                    "children": []
+                  }
+                ]
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": null,
+                "name": "Medial lemniscus",
+                "children": [
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 34,
+                    "name": "medial lemniscus",
+                    "rgb": [
+                      212,
+                      255,
+                      0
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 84,
+                    "name": "medial lemniscus decussation",
+                    "rgb": [
+                      65,
+                      150,
+                      255
+                    ],
+                    "children": []
+                  }
+                ]
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": null,
+                "name": "Thalamic tracts",
+                "children": [
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 53,
+                    "name": "mammillothalamic tract",
+                    "rgb": [
+                      238,
+                      186,
+                      0
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 54,
+                    "name": "commissural stria terminalis",
+                    "rgb": [
+                      173,
+                      255,
+                      47
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 60,
+                    "name": "fasciculus retroflexus",
+                    "rgb": [
+                      244,
+                      67,
+                      69
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 61,
+                    "name": "stria medullaris of the thalamus",
+                    "rgb": [
+                      0,
+                      255,
+                      0
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 62,
+                    "name": "stria terminalis",
+                    "rgb": [
+                      238,
+                      117,
+                      51
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 80,
+                    "name": "habenular commissure",
+                    "rgb": [
+                      69,
+                      235,
+                      202
+                    ],
+                    "children": []
+                  }
+                ]
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 63,
+                "name": "posterior commissure",
+                "rgb": [
+                  255,
+                  0,
+                  218
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": null,
+                "name": "Facial nerve",
+                "children": [
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 35,
+                    "name": "facial nerve",
+                    "rgb": [
+                      255,
+                      25,
+                      240
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 72,
+                    "name": "ascending fibers of the facial nerve",
+                    "rgb": [
+                      179,
+                      28,
+                      53
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 57,
+                    "name": "genu of the facial nerve",
+                    "rgb": [
+                      250,
+                      244,
+                      247
+                    ],
+                    "children": []
+                  }
+                ]
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": null,
+                "name": "Optic fiber system and supraoptic decussation",
+                "children": [
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 41,
+                    "name": "optic nerve",
+                    "rgb": [
+                      48,
+                      218,
+                      0
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 42,
+                    "name": "optic tract and optic chiasm",
+                    "rgb": [
+                      38,
+                      126,
+                      255
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 83,
+                    "name": "supraoptic decussation",
+                    "rgb": [
+                      250,
+                      170,
+                      64
+                    ],
+                    "children": []
+                  }
+                ]
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 76,
+                "name": "spinal trigeminal tract",
+                "rgb": [
+                  250,
+                  128,
+                  114
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": null,
+                "name": "White matter of the tectum",
+                "children": [
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 46,
+                    "name": "commissure of the superior colliculus",
+                    "rgb": [
+                      33,
+                      230,
+                      255
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 68,
+                    "name": "brachium of the superior colliculus",
+                    "rgb": [
+                      188,
+                      32,
+                      173
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 69,
+                    "name": "inferior colliculus, commissure",
+                    "rgb": [
+                      255,
+                      42,
+                      39
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 146,
+                    "name": "inferior colliculus, brachium",
+                    "rgb": [
+                      176,
+                      58,
+                      72
+                    ],
+                    "children": []
+                  }
+                ]
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": null,
+                "name": "Cerebellar and precerebellar white matter",
+                "children": [
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 7,
+                    "name": "inferior cerebellar peduncle",
+                    "rgb": [
+                      52,
+                      255,
+                      13
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 78,
+                    "name": "middle cerebellar peduncle",
+                    "rgb": [
+                      134,
+                      204,
+                      76
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 79,
+                    "name": "transverse fibers of the pons",
+                    "rgb": [
+                      128,
+                      170,
+                      255
+                    ],
+                    "children": []
+                  }
+                ]
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": null,
+                "name": "White matter of the brainstem",
+                "children": [
+                  {
+                    "ngId": "v3",
+                    "labelIndex": null,
+                    "name": "Lateral lemniscus",
+                    "children": [
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 140,
+                        "name": "lateral lemniscus, commissure",
+                        "rgb": [
+                          255,
+                          29,
+                          0
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 141,
+                        "name": "lateral lemniscus",
+                        "rgb": [
+                          255,
+                          166,
+                          0
+                        ],
+                        "children": []
+                      }
+                    ]
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 129,
+                    "name": "acoustic striae",
+                    "rgb": [
+                      255,
+                      217,
+                      0
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 130,
+                    "name": "trapezoid body",
+                    "rgb": [
+                      213,
+                      255,
+                      0
+                    ],
+                    "children": []
+                  }
+                ]
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 157,
+                "name": "auditory radiation",
+                "rgb": [
+                  244,
+                  156,
+                  255
+                ],
+                "children": []
+              }
+            ]
+          },
+          {
+            "ngId": "v3",
+            "labelIndex": null,
+            "name": "Gray matter",
+            "children": [
+              {
+                "ngId": "v3",
+                "labelIndex": null,
+                "name": "Olfactory system",
+                "children": [
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 64,
+                    "name": "glomerular layer of the accessory olfactory bulb",
+                    "rgb": [
+                      15,
+                      109,
+                      230
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 65,
+                    "name": "glomerular layer of the olfactory bulb",
+                    "rgb": [
+                      255,
+                      227,
+                      0
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 66,
+                    "name": "olfactory bulb",
+                    "rgb": [
+                      255,
+                      135,
+                      0
+                    ],
+                    "children": []
+                  }
+                ]
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": null,
+                "name": "Cerebral cortex including the neocortex and the hippocampus",
+                "children": [
+                  {
+                    "ngId": "v3",
+                    "labelIndex": null,
+                    "name": "Neocortex",
+                    "children": [
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 77,
+                        "name": "frontal association cortex",
+                        "rgb": [
+                          206,
+                          211,
+                          7
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 92,
+                        "name": "neocortex",
+                        "rgb": [
+                          3,
+                          193,
+                          45
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 10,
+                        "name": "cingulate cortex, area 2",
+                        "rgb": [
+                          29,
+                          104,
+                          235
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 108,
+                        "name": "postrhinal cortex",
+                        "rgb": [
+                          40,
+                          112,
+                          130
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 109,
+                        "name": "presubiculum",
+                        "rgb": [
+                          80,
+                          123,
+                          175
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 110,
+                        "name": "parasubiculum",
+                        "rgb": [
+                          23,
+                          54,
+                          96
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 112,
+                        "name": "perirhinal area 35",
+                        "rgb": [
+                          205,
+                          51,
+                          255
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 113,
+                        "name": "perirhinal area 36",
+                        "rgb": [
+                          112,
+                          48,
+                          160
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 114,
+                        "name": "entorhinal cortex",
+                        "rgb": [
+                          122,
+                          187,
+                          51
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 115,
+                        "name": "lateral entorhinal cortex",
+                        "rgb": [
+                          90,
+                          111,
+                          47
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": null,
+                        "name": "Auditory cortex",
+                        "children": [
+                          {
+                            "ngId": "v3",
+                            "labelIndex": 151,
+                            "name": "primary auditory cortex",
+                            "rgb": [
+                              255,
+                              215,
+                              0
+                            ],
+                            "children": []
+                          },
+                          {
+                            "ngId": "v3",
+                            "labelIndex": 152,
+                            "name": "secondary auditory cortex, dorsal area",
+                            "rgb": [
+                              240,
+                              255,
+                              255
+                            ],
+                            "children": []
+                          },
+                          {
+                            "ngId": "v3",
+                            "labelIndex": 153,
+                            "name": "secondary auditory cortex, ventral area",
+                            "rgb": [
+                              216,
+                              191,
+                              216
+                            ],
+                            "children": []
+                          }
+                        ]
+                      }
+                    ]
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": null,
+                    "name": "Allocortex",
+                    "children": [
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 95,
+                        "name": "cornu ammonis 3",
+                        "rgb": [
+                          165,
+                          131,
+                          107
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 96,
+                        "name": "dentate gyrus",
+                        "rgb": [
+                          91,
+                          45,
+                          10
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 97,
+                        "name": "cornu ammonis 2",
+                        "rgb": [
+                          255,
+                          255,
+                          0
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 98,
+                        "name": "cornu ammonis 1",
+                        "rgb": [
+                          217,
+                          104,
+                          13
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 99,
+                        "name": "fasciola cinereum",
+                        "rgb": [
+                          255,
+                          0,
+                          0
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 100,
+                        "name": "subiculum",
+                        "rgb": [
+                          255,
+                          192,
+                          0
+                        ],
+                        "children": []
+                      }
+                    ]
+                  }
+                ]
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 30,
+                "name": "striatum",
+                "rgb": [
+                  129,
+                  79,
+                  255
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 31,
+                "name": "globus pallidus",
+                "rgb": [
+                  255,
+                  145,
+                  186
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 32,
+                "name": "entopeduncular nucleus",
+                "rgb": [
+                  26,
+                  231,
+                  255
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 3,
+                "name": "subthalamic nucleus",
+                "rgb": [
+                  0,
+                  0,
+                  255
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 82,
+                "name": "basal forebrain region",
+                "rgb": [
+                  225,
+                  240,
+                  13
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 40,
+                "name": "septal region",
+                "rgb": [
+                  255,
+                  8,
+                  0
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": null,
+                "name": "Thalamus",
+                "children": [
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 39,
+                    "name": "thalamus",
+                    "rgb": [
+                      0,
+                      100,
+                      0
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 147,
+                    "name": "medial geniculate body, medial division",
+                    "rgb": [
+                      10,
+                      244,
+                      217
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 148,
+                    "name": "medial geniculate body, dorsal division",
+                    "rgb": [
+                      239,
+                      163,
+                      0
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 149,
+                    "name": "medial geniculate body, ventral division",
+                    "rgb": [
+                      131,
+                      58,
+                      31
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 150,
+                    "name": "medial geniculate body, marginal zone",
+                    "rgb": [
+                      255,
+                      47,
+                      242
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 164,
+                    "name": "reticular thalamic nucleus, auditory segment",
+                    "rgb": [
+                      110,
+                      0,
+                      255
+                    ],
+                    "children": []
+                  }
+                ]
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 93,
+                "name": "bed nucleus of the stria terminalis",
+                "rgb": [
+                  0,
+                  8,
+                  182
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 81,
+                "name": "nucleus of the stria medullaris",
+                "rgb": [
+                  222,
+                  7,
+                  237
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 48,
+                "name": "hypothalamic region",
+                "rgb": [
+                  226,
+                  120,
+                  161
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 43,
+                "name": "pineal gland",
+                "rgb": [
+                  218,
+                  170,
+                  62
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": null,
+                "name": "Tectum",
+                "children": [
+                  {
+                    "ngId": "v3",
+                    "labelIndex": null,
+                    "name": "Inferior colliculus",
+                    "children": [
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 142,
+                        "name": "inferior colliculus, dorsal cortex",
+                        "rgb": [
+                          206,
+                          255,
+                          142
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 143,
+                        "name": "inferior colliculus, central nucleus",
+                        "rgb": [
+                          0,
+                          238,
+                          255
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 145,
+                        "name": "inferior colliculus, external cortex",
+                        "rgb": [
+                          48,
+                          136,
+                          203
+                        ],
+                        "children": []
+                      }
+                    ]
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 94,
+                    "name": "pretectal region",
+                    "rgb": [
+                      255,
+                      87,
+                      30
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 50,
+                    "name": "superficial gray layer of the superior colliculus",
+                    "rgb": [
+                      86,
+                      0,
+                      221
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 55,
+                    "name": "deeper layers of the superior colliculus",
+                    "rgb": [
+                      225,
+                      151,
+                      15
+                    ],
+                    "children": []
+                  }
+                ]
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 2,
+                "name": "substantia nigra",
+                "rgb": [
+                  255,
+                  186,
+                  0
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 71,
+                "name": "interpeduncular nucleus",
+                "rgb": [
+                  63,
+                  192,
+                  255
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 51,
+                "name": "periaqueductal gray",
+                "rgb": [
+                  7,
+                  255,
+                  89
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 58,
+                "name": "pontine nuclei",
+                "rgb": [
+                  0,
+                  215,
+                  11
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": null,
+                "name": "Cerebellum",
+                "children": [
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 4,
+                    "name": "molecular layer of the cerebellum",
+                    "rgb": [
+                      255,
+                      255,
+                      0
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 5,
+                    "name": "granule cell level of the cerebellum",
+                    "rgb": [
+                      0,
+                      255,
+                      255
+                    ],
+                    "children": []
+                  }
+                ]
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 74,
+                "name": "inferior olive",
+                "rgb": [
+                  0,
+                  246,
+                  14
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 75,
+                "name": "spinal trigeminal nucleus",
+                "rgb": [
+                  91,
+                  241,
+                  255
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 56,
+                "name": "periventricular gray",
+                "rgb": [
+                  235,
+                  87,
+                  255
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": null,
+                "name": "Brainstem",
+                "children": [
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 47,
+                    "name": "brainstem",
+                    "rgb": [
+                      153,
+                      83,
+                      255
+                    ],
+                    "children": []
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": null,
+                    "name": "Cochlear nucleus, ventral part",
+                    "children": [
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 158,
+                        "name": "ventral cochlear nucleus, anterior part",
+                        "rgb": [
+                          34,
+                          152,
+                          255
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 159,
+                        "name": "ventral cochlear nucleus, posterior part",
+                        "rgb": [
+                          0,
+                          230,
+                          207
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 160,
+                        "name": "ventral cochlear nucleus, cap area",
+                        "rgb": [
+                          0,
+                          255,
+                          106
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 123,
+                        "name": "ventral cochlear nucleus, granule cell layer",
+                        "rgb": [
+                          0,
+                          12,
+                          255
+                        ],
+                        "children": []
+                      }
+                    ]
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": null,
+                    "name": "Cochlear nucleus, dorsal part",
+                    "children": [
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 126,
+                        "name": "dorsal cochlear nucleus, molecular layer",
+                        "rgb": [
+                          92,
+                          156,
+                          211
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 127,
+                        "name": "dorsal cochlear nucleus, fusiform and granule layer",
+                        "rgb": [
+                          0,
+                          80,
+                          156
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 128,
+                        "name": "dorsal cochlear nucleus, deep core",
+                        "rgb": [
+                          197,
+                          238,
+                          255
+                        ],
+                        "children": []
+                      }
+                    ]
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": null,
+                    "name": "Superior olivary complex",
+                    "children": [
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 131,
+                        "name": "nucleus of the trapezoid body",
+                        "rgb": [
+                          0,
+                          255,
+                          81
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 132,
+                        "name": "superior paraolivary nucleus",
+                        "rgb": [
+                          0,
+                          238,
+                          255
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 133,
+                        "name": "medial superior olive",
+                        "rgb": [
+                          219,
+                          239,
+                          61
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 134,
+                        "name": "lateral superior olive",
+                        "rgb": [
+                          35,
+                          76,
+                          190
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 135,
+                        "name": "superior periolivary region",
+                        "rgb": [
+                          1,
+                          153,
+                          21
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 136,
+                        "name": "ventral periolivary nuclei",
+                        "rgb": [
+                          0,
+                          174,
+                          255
+                        ],
+                        "children": []
+                      }
+                    ]
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": null,
+                    "name": "Nuclei of the lateral lemniscus",
+                    "children": [
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 137,
+                        "name": "lateral lemniscus, ventral nucleus",
+                        "rgb": [
+                          255,
+                          0,
+                          115
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 138,
+                        "name": "lateral lemniscus, intermediate nucleus",
+                        "rgb": [
+                          171,
+                          16,
+                          91
+                        ],
+                        "children": []
+                      },
+                      {
+                        "ngId": "v3",
+                        "labelIndex": 139,
+                        "name": "lateral lemniscus, dorsal nucleus",
+                        "rgb": [
+                          108,
+                          18,
+                          91
+                        ],
+                        "children": []
+                      }
+                    ]
+                  },
+                  {
+                    "ngId": "v3",
+                    "labelIndex": 163,
+                    "name": "nucleus sagulum",
+                    "rgb": [
+                      99,
+                      205,
+                      0
+                    ],
+                    "children": []
+                  }
+                ]
+              }
+            ]
+          },
+          {
+            "ngId": "v3",
+            "labelIndex": null,
+            "name": "Ventricular system",
+            "children": [
+              {
+                "ngId": "v3",
+                "labelIndex": 33,
+                "name": "ventricular system",
+                "rgb": [
+                  2,
+                  44,
+                  255
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 125,
+                "name": "4th ventricle",
+                "rgb": [
+                  52,
+                  29,
+                  144
+                ],
+                "children": []
+              }
+            ]
+          },
+          {
+            "ngId": "v3",
+            "labelIndex": null,
+            "name": "Spinal cord",
+            "children": [
+              {
+                "ngId": "v3",
+                "labelIndex": 45,
+                "name": "spinal cord",
+                "rgb": [
+                  134,
+                  255,
+                  90
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 70,
+                "name": "central canal",
+                "rgb": [
+                  39,
+                  244,
+                  253
+                ],
+                "children": []
+              }
+            ]
+          },
+          {
+            "ngId": "v3",
+            "labelIndex": null,
+            "name": "Inner ear",
+            "children": [
+              {
+                "ngId": "v3",
+                "labelIndex": 119,
+                "name": "vestibular apparatus",
+                "rgb": [
+                  0,
+                  144,
+                  55
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 120,
+                "name": "cochlea",
+                "rgb": [
+                  0,
+                  255,
+                  29
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 121,
+                "name": "cochlear nerve",
+                "rgb": [
+                  253,
+                  148,
+                  0
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 122,
+                "name": "vestibular nerve",
+                "rgb": [
+                  253,
+                  50,
+                  0
+                ],
+                "children": []
+              },
+              {
+                "ngId": "v3",
+                "labelIndex": 162,
+                "name": "spiral ganglion",
+                "rgb": [
+                  185,
+                  255,
+                  233
+                ],
+                "children": []
+              }
+            ]
+          }]
+      }],
+      "properties": {
+        "name": "Waxholm Space rat brain atlas v3",
+        "description": "Waxholm Space atlas of the rat brain, with detailed delineations of the ascending auditory system. (40 new structures added, 10 structures revised, in total 118 structures delineated)",
+        "publications": [{
+          "cite": "https://www.nitrc.org/frs/?group_id=1081",
+          "doi": "https://www.nitrc.org/frs/?group_id=1081"
+        },{
+          "doi": "10.1016/j.neuroimage.2019.05.016",
+          "cite": "Osen KK, Imad J, Wennberg AE, Papp EA, Leergaard TB (2019) Waxholm Space atlas of the rat brain auditory system: Three-dimensional delineations based on structural and diffusion tensor magnetic resonance imaging. NeuroImage 199, 38-56"
+        }]
+      }
+    },
+    {
+      "ngId": "v2",
       "type": "parcellation",
-      "name": "Waxholm Space rat brain atlas v.2.0",
+      "name": "Waxholm Space rat brain atlas v2",
       "regions": [
         {
-          "name": "Whole Brain (V2.0)",
+          "name": "Whole brain",
           "labelIndex": null,
           "rgb": null,
           "children": [
@@ -1641,11 +3176,1730 @@
             }
           ]
         }
-      ]
+      ],
+      "properties": {
+        "name": "Waxholm Space rat brain atlas v2",
+        "description": "Waxholm Space atlas of the rat brain, expanded with detailed delineations of 13 hippocampal and parahippocampal region (79 structures total).",
+        "publications": [{
+          "cite": "https://www.nitrc.org/frs/?group_id=1081",
+          "doi": "https://www.nitrc.org/frs/?group_id=1081"
+        },{
+          "cite": "Kjonigsen LJ, Lillehaug S, Bjaalie JG, Witter MP, Leergaard TB (2015) Waxholm Space atlas of the rat brain hippocampal region: Three-dimensional delineations based on magnetic resonance and diffusion tensor imaging. NeuroImage 108, 441-449",
+          "doi": "10.1016/j.neuroimage.2014.12.080"
+        }]
+      }
+    },
+    {
+      "ngId": "v1_01",
+      "type": "parcellation",
+      "name": "Waxholm Space rat brain atlas v1",
+      "regions": [
+        {
+          "ngId": "v1_01",
+          "name": "Whole brain",
+          "labelIndex": null,
+          "rgb": null,
+          "children":[
+
+            {
+              "name": "White matter",
+              "labelIndex": null,
+              "rgb": [
+                255,
+                255,
+                255
+              ],
+              "ngId": "v1_01",
+              "_": {
+                "abbreviation": "White matter",
+                "color": "#ffffff",
+                "id": "100",
+                "name": "White matter",
+                "description": "3.4"
+              },
+              "children": [
+                {
+                  "name": "corpus callosum and associated subcortical white matter",
+                  "labelIndex": 67,
+                  "rgb": [
+                    255,
+                    110,
+                    0
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "corpus callosum and associated subcortical white matter",
+                    "color": "#ff6e00",
+                    "id": "67",
+                    "name": "corpus callosum and associated subcortical white matter",
+                    "description": "3.4.1"
+                  },
+                  "children": []
+                },
+                {
+                  "name": "Anterior commissure",
+                  "labelIndex": null,
+                  "rgb": [
+                    255,
+                    255,
+                    255
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "Anterior commissure",
+                    "color": "#ffffff",
+                    "id": "101",
+                    "name": "Anterior commissure",
+                    "description": "3.4.2"
+                  },
+                  "children": [
+                    {
+                      "name": "anterior commissure, anterior part",
+                      "labelIndex": 36,
+                      "rgb": [
+                        124,
+                        252,
+                        0
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "anterior commissure, anterior part",
+                        "color": "#7cfc00",
+                        "id": "36",
+                        "name": "anterior commissure, anterior part",
+                        "description": "3.4.2"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "anterior commissure, posterior part",
+                      "labelIndex": 37,
+                      "rgb": [
+                        255,
+                        186,
+                        0
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "anterior commissure, posterior part",
+                        "color": "#ffba00",
+                        "id": "37",
+                        "name": "anterior commissure, posterior part",
+                        "description": "3.4.2"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "anterior commissure, intrabulbar part",
+                      "labelIndex": 73,
+                      "rgb": [
+                        255,
+                        79,
+                        206
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "anterior commissure, intrabulbar part",
+                        "color": "#ff4fce",
+                        "id": "73",
+                        "name": "anterior commissure, intrabulbar part",
+                        "description": "3.4.2"
+                      },
+                      "children": []
+                    }
+                  ]
+                },
+                {
+                  "name": "Hippocampal white matter",
+                  "labelIndex": null,
+                  "rgb": [
+                    255,
+                    255,
+                    255
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "Hippocampal white matter",
+                    "color": "#ffffff",
+                    "id": "102",
+                    "name": "Hippocampal white matter",
+                    "description": "3.4.3"
+                  },
+                  "children": [
+                    {
+                      "name": "alveus of the hippocampus",
+                      "labelIndex": 6,
+                      "rgb": [
+                        255,
+                        0,
+                        255
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "alveus of the hippocampus",
+                        "color": "#ff00ff",
+                        "id": "6",
+                        "name": "alveus of the hippocampus",
+                        "description": "3.4.3"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "ventral hippocampal commissure",
+                      "labelIndex": 38,
+                      "rgb": [
+                        174,
+                        0,
+                        232
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "ventral hippocampal commissure",
+                        "color": "#ae00e8",
+                        "id": "38",
+                        "name": "ventral hippocampal commissure",
+                        "description": "3.4.3"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "fornix",
+                      "labelIndex": 52,
+                      "rgb": [
+                        21,
+                        192,
+                        255
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "fornix",
+                        "color": "#15c0ff",
+                        "id": "52",
+                        "name": "fornix",
+                        "description": "3.4.3"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "fimbria of the hippocampus",
+                      "labelIndex": 59,
+                      "rgb": [
+                        0,
+                        255,
+                        29
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "fimbria of the hippocampus",
+                        "color": "#00ff1d",
+                        "id": "59",
+                        "name": "fimbria of the hippocampus",
+                        "description": "3.4.3"
+                      },
+                      "children": []
+                    }
+                  ]
+                },
+                {
+                  "name": "Corticofugal pathways",
+                  "labelIndex": null,
+                  "rgb": [
+                    255,
+                    255,
+                    255
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "Corticofugal pathways",
+                    "color": "#ffffff",
+                    "id": "103",
+                    "name": "Corticofugal pathways",
+                    "description": "3.4.4"
+                  },
+                  "children": [
+                    {
+                      "name": "corticofugal pathways",
+                      "labelIndex": 1,
+                      "rgb": [
+                        255,
+                        52,
+                        39
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "corticofugal pathways",
+                        "color": "#ff3427",
+                        "id": "1",
+                        "name": "corticofugal pathways",
+                        "description": "3.4.4"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "pyramidal decussation",
+                      "labelIndex": 85,
+                      "rgb": [
+                        114,
+                        9,
+                        212
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "pyramidal decussation",
+                        "color": "#7209d4",
+                        "id": "85",
+                        "name": "pyramidal decussation",
+                        "description": "3.4.4"
+                      },
+                      "children": []
+                    }
+                  ]
+                },
+                {
+                  "name": "Medial lemniscus",
+                  "labelIndex": null,
+                  "rgb": [
+                    255,
+                    255,
+                    255
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "Medial lemniscus",
+                    "color": "#ffffff",
+                    "id": "104",
+                    "name": "Medial lemniscus",
+                    "description": "3.4.5"
+                  },
+                  "children": [
+                    {
+                      "name": "medial lemniscus",
+                      "labelIndex": 34,
+                      "rgb": [
+                        212,
+                        255,
+                        0
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "medial lemniscus",
+                        "color": "#d4ff00",
+                        "id": "34",
+                        "name": "medial lemniscus",
+                        "description": "3.4.5"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "medial lemniscus decussation",
+                      "labelIndex": 84,
+                      "rgb": [
+                        65,
+                        150,
+                        255
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "medial lemniscus decussation",
+                        "color": "#4196ff",
+                        "id": "84",
+                        "name": "medial lemniscus decussation",
+                        "description": "3.4.5"
+                      },
+                      "children": []
+                    }
+                  ]
+                },
+                {
+                  "name": "Thalamic tracts",
+                  "labelIndex": null,
+                  "rgb": [
+                    255,
+                    255,
+                    255
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "Thalamic tracts",
+                    "color": "#ffffff",
+                    "id": "105",
+                    "name": "Thalamic tracts",
+                    "description": "3.4.6"
+                  },
+                  "children": [
+                    {
+                      "name": "mammillothalamic tract",
+                      "labelIndex": 53,
+                      "rgb": [
+                        238,
+                        186,
+                        0
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "mammillothalamic tract",
+                        "color": "#eeba00",
+                        "id": "53",
+                        "name": "mammillothalamic tract",
+                        "description": "3.4.6"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "commissural stria terminalis",
+                      "labelIndex": 54,
+                      "rgb": [
+                        173,
+                        255,
+                        47
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "commissural stria terminalis",
+                        "color": "#adff2f",
+                        "id": "54",
+                        "name": "commissural stria terminalis",
+                        "description": "3.4.6"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "fasciculus retroflexus",
+                      "labelIndex": 60,
+                      "rgb": [
+                        244,
+                        67,
+                        69
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "fasciculus retroflexus",
+                        "color": "#f44345",
+                        "id": "60",
+                        "name": "fasciculus retroflexus",
+                        "description": "3.4.6"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "stria medullaris of the thalamus",
+                      "labelIndex": 61,
+                      "rgb": [
+                        255,
+                        252,
+                        0
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "stria medullaris of the thalamus",
+                        "color": "#fffc00",
+                        "id": "61",
+                        "name": "stria medullaris of the thalamus",
+                        "description": "3.4.6"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "stria terminalis",
+                      "labelIndex": 62,
+                      "rgb": [
+                        238,
+                        117,
+                        51
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "stria terminalis",
+                        "color": "#ee7533",
+                        "id": "62",
+                        "name": "stria terminalis",
+                        "description": "3.4.6"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "habenular commissure",
+                      "labelIndex": 80,
+                      "rgb": [
+                        69,
+                        235,
+                        202
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "habenular commissure",
+                        "color": "#45ebca",
+                        "id": "80",
+                        "name": "habenular commissure",
+                        "description": "3.4.6"
+                      },
+                      "children": []
+                    }
+                  ]
+                },
+                {
+                  "name": "posterior commissure",
+                  "labelIndex": 63,
+                  "rgb": [
+                    255,
+                    0,
+                    218
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "posterior commissure",
+                    "color": "#ff00da",
+                    "id": "63",
+                    "name": "posterior commissure",
+                    "description": "3.4.7"
+                  },
+                  "children": []
+                },
+                {
+                  "name": "Facial nerve",
+                  "labelIndex": null,
+                  "rgb": [
+                    255,
+                    255,
+                    255
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "Facial nerve",
+                    "color": "#ffffff",
+                    "id": "106",
+                    "name": "Facial nerve",
+                    "description": "3.4.8"
+                  },
+                  "children": [
+                    {
+                      "name": "facial nerve",
+                      "labelIndex": 35,
+                      "rgb": [
+                        0,
+                        176,
+                        63
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "facial nerve",
+                        "color": "#00b03f",
+                        "id": "35",
+                        "name": "facial nerve",
+                        "description": "3.4.8"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "ascending fibers of the facial nerve",
+                      "labelIndex": 72,
+                      "rgb": [
+                        179,
+                        28,
+                        53
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "ascending fibers of the facial nerve",
+                        "color": "#b31c35",
+                        "id": "72",
+                        "name": "ascending fibers of the facial nerve",
+                        "description": "3.4.8"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "genu of the facial nerve",
+                      "labelIndex": 57,
+                      "rgb": [
+                        250,
+                        244,
+                        247
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "genu of the facial nerve",
+                        "color": "#faf4f7",
+                        "id": "57",
+                        "name": "genu of the facial nerve",
+                        "description": "3.4.8"
+                      },
+                      "children": []
+                    }
+                  ]
+                },
+                {
+                  "name": "Optic fiber system and supraoptic decussation",
+                  "labelIndex": null,
+                  "rgb": [
+                    255,
+                    255,
+                    255
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "Optic fiber system and supraoptic decussation",
+                    "color": "#ffffff",
+                    "id": "107",
+                    "name": "Optic fiber system and supraoptic decussation",
+                    "description": "3.4.9"
+                  },
+                  "children": [
+                    {
+                      "name": "optic nerve",
+                      "labelIndex": 41,
+                      "rgb": [
+                        48,
+                        218,
+                        0
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "optic nerve",
+                        "color": "#30da00",
+                        "id": "41",
+                        "name": "optic nerve",
+                        "description": "3.4.9"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "optic tract and optic chiasm",
+                      "labelIndex": 42,
+                      "rgb": [
+                        38,
+                        126,
+                        255
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "optic tract and optic chiasm",
+                        "color": "#267eff",
+                        "id": "42",
+                        "name": "optic tract and optic chiasm",
+                        "description": "3.4.9"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "supraoptic decussation",
+                      "labelIndex": 83,
+                      "rgb": [
+                        250,
+                        170,
+                        64
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "supraoptic decussation",
+                        "color": "#faaa40",
+                        "id": "83",
+                        "name": "supraoptic decussation",
+                        "description": "3.4.9"
+                      },
+                      "children": []
+                    }
+                  ]
+                },
+                {
+                  "name": "spinal trigeminal tract",
+                  "labelIndex": 76,
+                  "rgb": [
+                    250,
+                    128,
+                    114
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "spinal trigeminal tract",
+                    "color": "#fa8072",
+                    "id": "76",
+                    "name": "spinal trigeminal tract",
+                    "description": "3.4.10"
+                  },
+                  "children": []
+                },
+                {
+                  "name": "White matter of the tectum",
+                  "labelIndex": null,
+                  "rgb": [
+                    255,
+                    255,
+                    255
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "White matter of the tectum",
+                    "color": "#ffffff",
+                    "id": "108",
+                    "name": "White matter of the tectum",
+                    "description": "3.4.11"
+                  },
+                  "children": [
+                    {
+                      "name": "commissure of the superior colliculus",
+                      "labelIndex": 46,
+                      "rgb": [
+                        33,
+                        230,
+                        255
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "commissure of the superior colliculus",
+                        "color": "#21e6ff",
+                        "id": "46",
+                        "name": "commissure of the superior colliculus",
+                        "description": "3.4.11"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "brachium of the superior colliculus",
+                      "labelIndex": 68,
+                      "rgb": [
+                        188,
+                        32,
+                        173
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "brachium of the superior colliculus",
+                        "color": "#bc20ad",
+                        "id": "68",
+                        "name": "brachium of the superior colliculus",
+                        "description": "3.4.11"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "commissure of the inferior colliculus",
+                      "labelIndex": 69,
+                      "rgb": [
+                        147,
+                        255,
+                        39
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "commissure of the inferior colliculus",
+                        "color": "#93ff27",
+                        "id": "69",
+                        "name": "commissure of the inferior colliculus",
+                        "description": "3.4.11"
+                      },
+                      "children": []
+                    }
+                  ]
+                },
+                {
+                  "name": "Cerebellar and precerebellar white matter",
+                  "labelIndex": null,
+                  "rgb": [
+                    255,
+                    255,
+                    255
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "Cerebellar and precerebellar white matter",
+                    "color": "#ffffff",
+                    "id": "109",
+                    "name": "Cerebellar and precerebellar white matter",
+                    "description": "3.4.12"
+                  },
+                  "children": [
+                    {
+                      "name": "inferior cerebellar peduncle",
+                      "labelIndex": 7,
+                      "rgb": [
+                        52,
+                        255,
+                        13
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "inferior cerebellar peduncle",
+                        "color": "#34ff0d",
+                        "id": "7",
+                        "name": "inferior cerebellar peduncle",
+                        "description": "3.4.12"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "middle cerebellar peduncle",
+                      "labelIndex": 78,
+                      "rgb": [
+                        134,
+                        204,
+                        76
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "middle cerebellar peduncle",
+                        "color": "#86cc4c",
+                        "id": "78",
+                        "name": "middle cerebellar peduncle",
+                        "description": "3.4.12"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "transverse fibers of the pons",
+                      "labelIndex": 79,
+                      "rgb": [
+                        128,
+                        170,
+                        255
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "transverse fibers of the pons",
+                        "color": "#80aaff",
+                        "id": "79",
+                        "name": "transverse fibers of the pons",
+                        "description": "3.4.12"
+                      },
+                      "children": []
+                    }
+                  ]
+                }
+              ]
+            },
+            {
+              "name": "Gray matter",
+              "labelIndex": 2,
+              "rgb": [
+                128,
+                128,
+                128
+              ],
+              "ngId": "v1_01",
+              "_": {
+                "abbreviation": "Gray matter",
+                "color": "#808080",
+                "id": "2",
+                "name": "Gray matter",
+                "description": "3.5"
+              },
+              "children": [
+                {
+                  "name": "Olfactory system",
+                  "labelIndex": null,
+                  "rgb": [
+                    128,
+                    128,
+                    128
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "Olfactory system",
+                    "color": "#808080",
+                    "id": "111",
+                    "name": "Olfactory system",
+                    "description": "3.5.1"
+                  },
+                  "children": [
+                    {
+                      "name": "glomerular layer of the accessory olfactory bulb",
+                      "labelIndex": 64,
+                      "rgb": [
+                        15,
+                        109,
+                        230
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "glomerular layer of the accessory olfactory bulb",
+                        "color": "#0f6de6",
+                        "id": "64",
+                        "name": "glomerular layer of the accessory olfactory bulb",
+                        "description": "3.5.1"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "glomerular layer of the olfactory bulb",
+                      "labelIndex": 65,
+                      "rgb": [
+                        255,
+                        227,
+                        0
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "glomerular layer of the olfactory bulb",
+                        "color": "#ffe300",
+                        "id": "65",
+                        "name": "glomerular layer of the olfactory bulb",
+                        "description": "3.5.1"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "olfactory bulb",
+                      "labelIndex": 66,
+                      "rgb": [
+                        255,
+                        135,
+                        0
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "olfactory bulb",
+                        "color": "#ff8700",
+                        "id": "66",
+                        "name": "olfactory bulb",
+                        "description": "3.5.1"
+                      },
+                      "children": []
+                    }
+                  ]
+                },
+                {
+                  "name": "Cerebral cortex including the neocortex and the hippocampus",
+                  "labelIndex": null,
+                  "rgb": [
+                    128,
+                    128,
+                    128
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "Cerebral cortex including the neocortex and the hippocampus",
+                    "color": "#808080",
+                    "id": "112",
+                    "name": "Cerebral cortex including the neocortex and the hippocampus",
+                    "description": "3.5.2"
+                  },
+                  "children": [
+                    {
+                      "name": "frontal association cortex",
+                      "labelIndex": 77,
+                      "rgb": [
+                        206,
+                        211,
+                        7
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "frontal association cortex",
+                        "color": "#ced307",
+                        "id": "77",
+                        "name": "frontal association cortex",
+                        "description": "3.5.2"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "hippocampal formation",
+                      "labelIndex": 86,
+                      "rgb": [
+                        14,
+                        71,
+                        226
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "hippocampal formation",
+                        "color": "#0e47e2",
+                        "id": "86",
+                        "name": "hippocampal formation",
+                        "description": "3.5.2"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "subiculum",
+                      "labelIndex": 87,
+                      "rgb": [
+                        221,
+                        217,
+                        81
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "subiculum",
+                        "color": "#ddd951",
+                        "id": "87",
+                        "name": "subiculum",
+                        "description": "3.5.2"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "postrhinal cortex",
+                      "labelIndex": 88,
+                      "rgb": [
+                        137,
+                        211,
+                        85
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "postrhinal cortex",
+                        "color": "#89d355",
+                        "id": "88",
+                        "name": "postrhinal cortex",
+                        "description": "3.5.2"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "ventral-intermediate entorhinal area",
+                      "labelIndex": 89,
+                      "rgb": [
+                        139,
+                        0,
+                        139
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "ventral-intermediate entorhinal area",
+                        "color": "#8b008b",
+                        "id": "89",
+                        "name": "ventral-intermediate entorhinal area",
+                        "description": "3.5.2"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "medial entorhinal field",
+                      "labelIndex": 90,
+                      "rgb": [
+                        65,
+                        255,
+                        39
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "medial entorhinal field",
+                        "color": "#41ff27",
+                        "id": "90",
+                        "name": "medial entorhinal field",
+                        "description": "3.5.2"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "caudal entorhinal field",
+                      "labelIndex": 91,
+                      "rgb": [
+                        255,
+                        187,
+                        13
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "caudal entorhinal field",
+                        "color": "#ffbb0d",
+                        "id": "91",
+                        "name": "caudal entorhinal field",
+                        "description": "3.5.2"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "neocortex",
+                      "labelIndex": 92,
+                      "rgb": [
+                        3,
+                        193,
+                        45
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "neocortex",
+                        "color": "#03c12d",
+                        "id": "92",
+                        "name": "neocortex",
+                        "description": "3.5.2"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "cingulate cortex, area 2",
+                      "labelIndex": 10,
+                      "rgb": [
+                        29,
+                        104,
+                        235
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "cingulate cortex, area 2",
+                        "color": "#1d68eb",
+                        "id": "10",
+                        "name": "cingulate cortex, area 2",
+                        "description": "3.5.2"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "dorsal-lateral entorhinal area",
+                      "labelIndex": 14,
+                      "rgb": [
+                        46,
+                        139,
+                        87
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "dorsal-lateral entorhinal area",
+                        "color": "#2e8b57",
+                        "id": "14",
+                        "name": "dorsal-lateral entorhinal area",
+                        "description": "3.5.2"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "dorsal-intermediate entorhinal area",
+                      "labelIndex": 15,
+                      "rgb": [
+                        127,
+                        129,
+                        255
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "dorsal-intermediate entorhinal area",
+                        "color": "#7f81ff",
+                        "id": "15",
+                        "name": "dorsal-intermediate entorhinal area",
+                        "description": "3.5.2"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "perirhinal cortex",
+                      "labelIndex": 17,
+                      "rgb": [
+                        221,
+                        100,
+                        121
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "perirhinal cortex",
+                        "color": "#dd6479",
+                        "id": "17",
+                        "name": "perirhinal cortex",
+                        "description": "3.5.2"
+                      },
+                      "children": []
+                    }
+                  ]
+                },
+                {
+                  "name": "striatum",
+                  "labelIndex": 30,
+                  "rgb": [
+                    129,
+                    79,
+                    255
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "striatum",
+                    "color": "#814fff",
+                    "id": "30",
+                    "name": "striatum",
+                    "description": "3.5.3"
+                  },
+                  "children": []
+                },
+                {
+                  "name": "globus pallidus",
+                  "labelIndex": 31,
+                  "rgb": [
+                    255,
+                    145,
+                    186
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "globus pallidus",
+                    "color": "#ff91ba",
+                    "id": "31",
+                    "name": "globus pallidus",
+                    "description": "3.5.4"
+                  },
+                  "children": []
+                },
+                {
+                  "name": "entopeduncular nucleus",
+                  "labelIndex": 32,
+                  "rgb": [
+                    26,
+                    231,
+                    255
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "entopeduncular nucleus",
+                    "color": "#1ae7ff",
+                    "id": "32",
+                    "name": "entopeduncular nucleus",
+                    "description": "3.5.5"
+                  },
+                  "children": []
+                },
+                {
+                  "name": "subthalamic nucleus",
+                  "labelIndex": 3,
+                  "rgb": [
+                    0,
+                    0,
+                    255
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "subthalamic nucleus",
+                    "color": "#0000ff",
+                    "id": "3",
+                    "name": "subthalamic nucleus",
+                    "description": "3.5.6"
+                  },
+                  "children": []
+                },
+                {
+                  "name": "basal forebrain region",
+                  "labelIndex": 82,
+                  "rgb": [
+                    225,
+                    240,
+                    13
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "basal forebrain region",
+                    "color": "#e1f00d",
+                    "id": "82",
+                    "name": "basal forebrain region",
+                    "description": "3.5.7"
+                  },
+                  "children": []
+                },
+                {
+                  "name": "septal region",
+                  "labelIndex": 40,
+                  "rgb": [
+                    255,
+                    8,
+                    0
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "septal region",
+                    "color": "#ff0800",
+                    "id": "40",
+                    "name": "septal region",
+                    "description": "3.5.8"
+                  },
+                  "children": []
+                },
+                {
+                  "name": "thalamus",
+                  "labelIndex": 39,
+                  "rgb": [
+                    0,
+                    100,
+                    0
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "thalamus",
+                    "color": "#006400",
+                    "id": "39",
+                    "name": "thalamus",
+                    "description": "3.5.9"
+                  },
+                  "children": []
+                },
+                {
+                  "name": "bed nucleus of the stria terminalis",
+                  "labelIndex": 93,
+                  "rgb": [
+                    0,
+                    8,
+                    182
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "bed nucleus of the stria terminalis",
+                    "color": "#0008b6",
+                    "id": "93",
+                    "name": "bed nucleus of the stria terminalis",
+                    "description": "3.5.10"
+                  },
+                  "children": []
+                },
+                {
+                  "name": "nucleus of the stria medullaris",
+                  "labelIndex": 81,
+                  "rgb": [
+                    222,
+                    7,
+                    237
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "nucleus of the stria medullaris",
+                    "color": "#de07ed",
+                    "id": "81",
+                    "name": "nucleus of the stria medullaris",
+                    "description": "3.5.11"
+                  },
+                  "children": []
+                },
+                {
+                  "name": "hypothalamic region",
+                  "labelIndex": 48,
+                  "rgb": [
+                    226,
+                    120,
+                    161
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "hypothalamic region",
+                    "color": "#e278a1",
+                    "id": "48",
+                    "name": "hypothalamic region",
+                    "description": "3.5.12"
+                  },
+                  "children": []
+                },
+                {
+                  "name": "pineal gland",
+                  "labelIndex": 43,
+                  "rgb": [
+                    218,
+                    170,
+                    62
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "pineal gland",
+                    "color": "#daaa3e",
+                    "id": "43",
+                    "name": "pineal gland",
+                    "description": "3.5.13"
+                  },
+                  "children": []
+                },
+                {
+                  "name": "Tectum",
+                  "labelIndex": null,
+                  "rgb": [
+                    128,
+                    128,
+                    128
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "Tectum",
+                    "color": "#808080",
+                    "id": "113",
+                    "name": "Tectum",
+                    "description": "3.5.14"
+                  },
+                  "children": [
+                    {
+                      "name": "inferior colliculus",
+                      "labelIndex": 49,
+                      "rgb": [
+                        238,
+                        47,
+                        44
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "inferior colliculus",
+                        "color": "#ee2f2c",
+                        "id": "49",
+                        "name": "inferior colliculus",
+                        "description": "3.5.14"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "pretectal region",
+                      "labelIndex": 94,
+                      "rgb": [
+                        255,
+                        87,
+                        30
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "pretectal region",
+                        "color": "#ff571e",
+                        "id": "94",
+                        "name": "pretectal region",
+                        "description": "3.5.14"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "superficial gray layer of the superior colliculus",
+                      "labelIndex": 50,
+                      "rgb": [
+                        86,
+                        0,
+                        221
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "superficial gray layer of the superior colliculus",
+                        "color": "#5600dd",
+                        "id": "50",
+                        "name": "superficial gray layer of the superior colliculus",
+                        "description": "3.5.14"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "deeper layers of the superior colliculus",
+                      "labelIndex": 55,
+                      "rgb": [
+                        225,
+                        151,
+                        15
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "deeper layers of the superior colliculus",
+                        "color": "#e1970f",
+                        "id": "55",
+                        "name": "deeper layers of the superior colliculus",
+                        "description": "3.5.14"
+                      },
+                      "children": []
+                    }
+                  ]
+                },
+                {
+                  "name": "substantia nigra",
+                  "labelIndex": 2,
+                  "rgb": [
+                    255,
+                    186,
+                    0
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "substantia nigra",
+                    "color": "#ffba00",
+                    "id": "2",
+                    "name": "substantia nigra",
+                    "description": "3.5.15"
+                  },
+                  "children": []
+                },
+                {
+                  "name": "interpeduncular nucleus",
+                  "labelIndex": 71,
+                  "rgb": [
+                    63,
+                    192,
+                    255
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "interpeduncular nucleus",
+                    "color": "#3fc0ff",
+                    "id": "71",
+                    "name": "interpeduncular nucleus",
+                    "description": "3.5.16"
+                  },
+                  "children": []
+                },
+                {
+                  "name": "periaqueductal gray",
+                  "labelIndex": 51,
+                  "rgb": [
+                    7,
+                    255,
+                    89
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "periaqueductal gray",
+                    "color": "#07ff59",
+                    "id": "51",
+                    "name": "periaqueductal gray",
+                    "description": "3.5.17"
+                  },
+                  "children": []
+                },
+                {
+                  "name": "pontine nuclei",
+                  "labelIndex": 58,
+                  "rgb": [
+                    0,
+                    215,
+                    11
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "pontine nuclei",
+                    "color": "#00d70b",
+                    "id": "58",
+                    "name": "pontine nuclei",
+                    "description": "3.5.18"
+                  },
+                  "children": []
+                },
+                {
+                  "name": "Cerebellum",
+                  "labelIndex": null,
+                  "rgb": [
+                    128,
+                    128,
+                    128
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "Cerebellum",
+                    "color": "#808080",
+                    "id": "114",
+                    "name": "Cerebellum",
+                    "description": "3.5.2"
+                  },
+                  "children": [
+                    {
+                      "name": "molecular cell layer of the cerebellum",
+                      "labelIndex": 4,
+                      "rgb": [
+                        255,
+                        255,
+                        0
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "molecular cell layer of the cerebellum",
+                        "color": "#ffff00",
+                        "id": "4",
+                        "name": "molecular cell layer of the cerebellum",
+                        "description": "3.5.19"
+                      },
+                      "children": []
+                    },
+                    {
+                      "name": "deeper cerebellum",
+                      "labelIndex": 5,
+                      "rgb": [
+                        0,
+                        255,
+                        255
+                      ],
+                      "ngId": "v1_01",
+                      "_": {
+                        "abbreviation": "deeper cerebellum",
+                        "color": "#00ffff",
+                        "id": "5",
+                        "name": "deeper cerebellum",
+                        "description": "3.5.19"
+                      },
+                      "children": []
+                    }
+                  ]
+                },
+                {
+                  "name": "inferior olive",
+                  "labelIndex": 74,
+                  "rgb": [
+                    0,
+                    246,
+                    14
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "inferior olive",
+                    "color": "#00f60e",
+                    "id": "74",
+                    "name": "inferior olive",
+                    "description": "3.5.20"
+                  },
+                  "children": []
+                },
+                {
+                  "name": "spinal trigeminal nucleus",
+                  "labelIndex": 75,
+                  "rgb": [
+                    91,
+                    241,
+                    255
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "spinal trigeminal nucleus",
+                    "color": "#5bf1ff",
+                    "id": "75",
+                    "name": "spinal trigeminal nucleus",
+                    "description": "3.5.21"
+                  },
+                  "children": []
+                },
+                {
+                  "name": "periventricular gray",
+                  "labelIndex": 56,
+                  "rgb": [
+                    235,
+                    87,
+                    255
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "periventricular gray",
+                    "color": "#eb57ff",
+                    "id": "56",
+                    "name": "periventricular gray",
+                    "description": "3.5.22"
+                  },
+                  "children": []
+                },
+                {
+                  "name": "brain stem",
+                  "labelIndex": 47,
+                  "rgb": [
+                    153,
+                    83,
+                    255
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "brain stem",
+                    "color": "#9953ff",
+                    "id": "47",
+                    "name": "brain stem",
+                    "description": "3.5.23"
+                  },
+                  "children": []
+                }
+              ]
+            },
+            {
+              "name": "ventricular system",
+              "labelIndex": 33,
+              "rgb": [
+                2,
+                44,
+                255
+              ],
+              "ngId": "v1_01",
+              "_": {
+                "abbreviation": "ventricular system",
+                "color": "#022cff",
+                "id": "33",
+                "name": "ventricular system",
+                "description": "3.6"
+              },
+              "children": []
+            },
+            {
+              "name": "Spinal cord",
+              "labelIndex": null,
+              "rgb": [
+                134,
+                255,
+                90
+              ],
+              "ngId": "v1_01",
+              "_": {
+                "abbreviation": "Spinal cord",
+                "color": "#86ff5a",
+                "id": "115",
+                "name": "Spinal cord",
+                "description": "3.7"
+              },
+              "children": [
+                {
+                  "name": "spinal cord",
+                  "labelIndex": 45,
+                  "rgb": [
+                    134,
+                    255,
+                    90
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "spinal cord",
+                    "color": "#86ff5a",
+                    "id": "45",
+                    "name": "spinal cord",
+                    "description": "3.7"
+                  },
+                  "children": []
+                },
+                {
+                  "name": "central canal",
+                  "labelIndex": 70,
+                  "rgb": [
+                    39,
+                    244,
+                    253
+                  ],
+                  "ngId": "v1_01",
+                  "_": {
+                    "abbreviation": "central canal",
+                    "color": "#27f4fd",
+                    "id": "70",
+                    "name": "central canal",
+                    "description": "3.7"
+                  },
+                  "children": []
+                }
+              ]
+            },
+            {
+              "name": "inner ear",
+              "labelIndex": 44,
+              "rgb": [
+                0,
+                165,
+                21
+              ],
+              "ngId": "v1_01",
+              "_": {
+                "abbreviation": "inner ear",
+                "color": "#00a515",
+                "id": "44",
+                "name": "inner ear",
+                "description": ""
+              },
+              "children": []
+            }
+          ]
+        }
+      ],
+      "properties": {
+        "name": "Waxholm Space rat brain atlas v1",
+        "description": "Waxholm Space atlas of the Sprague Dawley rat brain, first iteration with major brain regions delineated (76 structures).",
+        "publications": [{
+          "cite": "https://www.nitrc.org/frs/?group_id=1081",
+          "doi": "https://www.nitrc.org/frs/?group_id=1081"
+        },{
+          "doi": "10.1016/j.neuroimage.2014.04.001",
+          "cite": "Papp EA, Leergaard TB, Calabrese E, Johnson GA, Bjaalie JG (2014) Waxholm Space atlas of the Sprague Dawley rat brain. NeuroImage 97, 374-386"
+        }]
+      }
     }
   ],
   "properties": {
-    "name": "Waxholm Space rat brain atlas v.2.0",
-    "description": "Open access volumetric atlas offering comprehensive anatomical delineations of the rat brain based on structural contrast in isotropic magnetic resonance (39 μm) and diffusion tensor (78 μm) images acquired ex vivo from an 80 day old male Sprague Dawley rat at the Duke Center for In Vivo Microscopy. Spatial reference is provided by the Waxholm Space coordinate system."
+    "name": "Waxholm Space rat brain MRI/DTI",
+    "description": "MRI/DTI template of adult male Sprague Dawley rat brain.",
+    "publications": [{
+      "doi": "10.1016/j.neuroimage.2014.04.001",
+      "cite": "Papp EA, Leergaard TB, Calabrese E, Johnson GA, Bjaalie JG (2014) Waxholm Space atlas of the Sprague Dawley rat brain. NeuroImage 97, 374-386"
+    },{
+      "cite": "RRID: SCR_017124"
+    },{
+      "doi": "https://www.nitrc.org/projects/whs-sd-atlas",
+      "cite": "https://www.nitrc.org/projects/whs-sd-atlas"
+    }]
   }
 }
\ No newline at end of file
diff --git a/src/res/ext/waxholmRatV2_0NehubaConfig.json b/src/res/ext/waxholmRatV2_0NehubaConfig.json
index b7252093b559f9b76892dc82693b75b114abdc6b..0b76891b3b1ce20fdc08788c35c7ba506edc8984 100644
--- a/src/res/ext/waxholmRatV2_0NehubaConfig.json
+++ b/src/res/ext/waxholmRatV2_0NehubaConfig.json
@@ -112,7 +112,38 @@
             ]
           ]
         },
-        "whole": {
+        "v1_01": {
+          "type": "segmentation",
+          "source": "precomputed://https://neuroglancer-dev.humanbrainproject.org/precomputed/WHS_SD_rat/parcellations/WHS_SD_rat_atlas_v1_01",
+          "selectedAlpha": 0.35,
+          "transform": [
+            [
+              1,
+              0,
+              0,
+              -9550781
+            ],
+            [
+              0,
+              1,
+              0,
+              -24355468
+            ],
+            [
+              0,
+              0,
+              1,
+              -9707031
+            ],
+            [
+              0,
+              0,
+              0,
+              1
+            ]
+          ]
+        },
+        "v2": {
           "type": "segmentation",
           "source": "precomputed://https://neuroglancer.humanbrainproject.org/precomputed/WHS_SD_rat/parcellations/v2",
           "selectedAlpha": 0.35,
@@ -142,6 +173,37 @@
               1
             ]
           ]
+        },
+        "v3": {
+          "type": "segmentation",
+          "source": "precomputed://https://neuroglancer-dev.humanbrainproject.org/precomputed/WHS_SD_rat/parcellations/WHS_SD_rat_atlas_v3",
+          "selectedAlpha": 0.35,
+          "transform": [
+            [
+              1,
+              0,
+              0,
+              -9550781
+            ],
+            [
+              0,
+              1,
+              0,
+              -24355468
+            ],
+            [
+              0,
+              0,
+              1,
+              -9707031
+            ],
+            [
+              0,
+              0,
+              0,
+              1
+            ]
+          ]
         }
       },
       "navigation": {
diff --git a/src/res/images/1-100.png b/src/res/images/1-100.png
new file mode 100644
index 0000000000000000000000000000000000000000..66f27f2321c73cb215e28a03ca48efd4fa8f813d
Binary files /dev/null and b/src/res/images/1-100.png differ
diff --git a/src/res/images/1-200.png b/src/res/images/1-200.png
new file mode 100644
index 0000000000000000000000000000000000000000..75435265e1f04a145d264f4b69010e03cc0f75d4
Binary files /dev/null and b/src/res/images/1-200.png differ
diff --git a/src/res/images/1-300.png b/src/res/images/1-300.png
new file mode 100644
index 0000000000000000000000000000000000000000..a990036ac12431e51d442bcaa76614df273e32cd
Binary files /dev/null and b/src/res/images/1-300.png differ
diff --git a/src/res/images/1-400.png b/src/res/images/1-400.png
new file mode 100644
index 0000000000000000000000000000000000000000..fb8880161ac1364984184e796a0d896b08549a45
Binary files /dev/null and b/src/res/images/1-400.png differ
diff --git a/src/res/images/2-100.png b/src/res/images/2-100.png
new file mode 100644
index 0000000000000000000000000000000000000000..62817e68db8cd9bf570e3923f3fc92b294df2afa
Binary files /dev/null and b/src/res/images/2-100.png differ
diff --git a/src/res/images/2-200.png b/src/res/images/2-200.png
new file mode 100644
index 0000000000000000000000000000000000000000..1036281b27359d0021be9e843758fa8c5db3270c
Binary files /dev/null and b/src/res/images/2-200.png differ
diff --git a/src/res/images/2-300.png b/src/res/images/2-300.png
new file mode 100644
index 0000000000000000000000000000000000000000..e1718b621a1ea092afea438e1bfc5fbcfa68eeaf
Binary files /dev/null and b/src/res/images/2-300.png differ
diff --git a/src/res/images/2-400.png b/src/res/images/2-400.png
new file mode 100644
index 0000000000000000000000000000000000000000..fb349bd8a361bed5ce75cf2daea616cf20306ed6
Binary files /dev/null and b/src/res/images/2-400.png differ
diff --git a/src/res/images/3-100.png b/src/res/images/3-100.png
new file mode 100644
index 0000000000000000000000000000000000000000..aec2e7b0297a557dee3843504b41cf3775f9341b
Binary files /dev/null and b/src/res/images/3-100.png differ
diff --git a/src/res/images/3-200.png b/src/res/images/3-200.png
new file mode 100644
index 0000000000000000000000000000000000000000..72665ecaa83a501b02e96e0f77701dae192147d7
Binary files /dev/null and b/src/res/images/3-200.png differ
diff --git a/src/res/images/3-300.png b/src/res/images/3-300.png
new file mode 100644
index 0000000000000000000000000000000000000000..f2d5f9795d69557b267039774e072b98dfc53845
Binary files /dev/null and b/src/res/images/3-300.png differ
diff --git a/src/res/images/3-400.png b/src/res/images/3-400.png
new file mode 100644
index 0000000000000000000000000000000000000000..f41ecd0ec5dc922177a95e7713f541cb55e17d8f
Binary files /dev/null and b/src/res/images/3-400.png differ
diff --git a/src/res/images/AllenMouseCommonCoordinateFrameworkv32015-100.png b/src/res/images/AllenMouseCommonCoordinateFrameworkv32015-100.png
new file mode 100644
index 0000000000000000000000000000000000000000..f9a9fb0e291661a457f9492df96a50462999969d
Binary files /dev/null and b/src/res/images/AllenMouseCommonCoordinateFrameworkv32015-100.png differ
diff --git a/src/res/images/AllenMouseCommonCoordinateFrameworkv32015-200.png b/src/res/images/AllenMouseCommonCoordinateFrameworkv32015-200.png
new file mode 100644
index 0000000000000000000000000000000000000000..36c143ae11e00675c45d16c5a95457a0b5880b43
Binary files /dev/null and b/src/res/images/AllenMouseCommonCoordinateFrameworkv32015-200.png differ
diff --git a/src/res/images/AllenMouseCommonCoordinateFrameworkv32015-300.png b/src/res/images/AllenMouseCommonCoordinateFrameworkv32015-300.png
new file mode 100644
index 0000000000000000000000000000000000000000..52f57e5412d618286dfd716fce13b13cef10741d
Binary files /dev/null and b/src/res/images/AllenMouseCommonCoordinateFrameworkv32015-300.png differ
diff --git a/src/res/images/AllenMouseCommonCoordinateFrameworkv32015-400.png b/src/res/images/AllenMouseCommonCoordinateFrameworkv32015-400.png
new file mode 100644
index 0000000000000000000000000000000000000000..df6e4acd8be3ae0cccca705dc824932e70eefd05
Binary files /dev/null and b/src/res/images/AllenMouseCommonCoordinateFrameworkv32015-400.png differ
diff --git a/src/res/images/AllenMouseCommonCoordinateFrameworkv32015.png b/src/res/images/AllenMouseCommonCoordinateFrameworkv32015.png
new file mode 100644
index 0000000000000000000000000000000000000000..897168863448a2efce76cd5496cd4154cc48545e
Binary files /dev/null and b/src/res/images/AllenMouseCommonCoordinateFrameworkv32015.png differ
diff --git a/src/res/images/BigBrainHistology-100.png b/src/res/images/BigBrainHistology-100.png
new file mode 100644
index 0000000000000000000000000000000000000000..50559bfb8359d5a71eb2a82dc276f72f80951f7a
Binary files /dev/null and b/src/res/images/BigBrainHistology-100.png differ
diff --git a/src/res/images/BigBrainHistology-200.png b/src/res/images/BigBrainHistology-200.png
new file mode 100644
index 0000000000000000000000000000000000000000..a17a7f83393e0a57dfe80afad199150b16e605d4
Binary files /dev/null and b/src/res/images/BigBrainHistology-200.png differ
diff --git a/src/res/images/BigBrainHistology-300.png b/src/res/images/BigBrainHistology-300.png
new file mode 100644
index 0000000000000000000000000000000000000000..f7cd0b28ec4cbbc78488799057878e1e8225215f
Binary files /dev/null and b/src/res/images/BigBrainHistology-300.png differ
diff --git a/src/res/images/BigBrainHistology-400.png b/src/res/images/BigBrainHistology-400.png
new file mode 100644
index 0000000000000000000000000000000000000000..7d8fea17c6d8dd5b3075df22c1f3ce9054275abb
Binary files /dev/null and b/src/res/images/BigBrainHistology-400.png differ
diff --git a/src/res/images/BigBrainHistology.png b/src/res/images/BigBrainHistology.png
new file mode 100644
index 0000000000000000000000000000000000000000..94cc67bd8cae7c3701d9c3c6c15f2dc9be8400b6
Binary files /dev/null and b/src/res/images/BigBrainHistology.png differ
diff --git a/src/res/images/ICBM2009cNonlinearAsymmetric-100.png b/src/res/images/ICBM2009cNonlinearAsymmetric-100.png
new file mode 100644
index 0000000000000000000000000000000000000000..c8912fe70f594f0a0d60ad7596802ad690166c56
Binary files /dev/null and b/src/res/images/ICBM2009cNonlinearAsymmetric-100.png differ
diff --git a/src/res/images/ICBM2009cNonlinearAsymmetric-200.png b/src/res/images/ICBM2009cNonlinearAsymmetric-200.png
new file mode 100644
index 0000000000000000000000000000000000000000..7f38858407d751d4e5b1a200ed310d2c81cb6e07
Binary files /dev/null and b/src/res/images/ICBM2009cNonlinearAsymmetric-200.png differ
diff --git a/src/res/images/ICBM2009cNonlinearAsymmetric-300.png b/src/res/images/ICBM2009cNonlinearAsymmetric-300.png
new file mode 100644
index 0000000000000000000000000000000000000000..481339124d296586ec68455fd0298aed2b392e2b
Binary files /dev/null and b/src/res/images/ICBM2009cNonlinearAsymmetric-300.png differ
diff --git a/src/res/images/ICBM2009cNonlinearAsymmetric-400.png b/src/res/images/ICBM2009cNonlinearAsymmetric-400.png
new file mode 100644
index 0000000000000000000000000000000000000000..0ce95ddc0988de4f48ce8cdcda9c6b0d98b66a79
Binary files /dev/null and b/src/res/images/ICBM2009cNonlinearAsymmetric-400.png differ
diff --git a/src/res/images/ICBM2009cNonlinearAsymmetric.png b/src/res/images/ICBM2009cNonlinearAsymmetric.png
new file mode 100644
index 0000000000000000000000000000000000000000..a5d2276eff480aefe8ab7116c500d82b1201fbfa
Binary files /dev/null and b/src/res/images/ICBM2009cNonlinearAsymmetric.png differ
diff --git a/src/res/images/MNI152ICBM2009cNonlinearAsymmetric-100.png b/src/res/images/MNI152ICBM2009cNonlinearAsymmetric-100.png
new file mode 100644
index 0000000000000000000000000000000000000000..859167bec29489f7e787d3820081e8d21d69564d
Binary files /dev/null and b/src/res/images/MNI152ICBM2009cNonlinearAsymmetric-100.png differ
diff --git a/src/res/images/MNI152ICBM2009cNonlinearAsymmetric-200.png b/src/res/images/MNI152ICBM2009cNonlinearAsymmetric-200.png
new file mode 100644
index 0000000000000000000000000000000000000000..5c9e3d78e789eefef7e608d5807713f7d3a59769
Binary files /dev/null and b/src/res/images/MNI152ICBM2009cNonlinearAsymmetric-200.png differ
diff --git a/src/res/images/MNI152ICBM2009cNonlinearAsymmetric-300.png b/src/res/images/MNI152ICBM2009cNonlinearAsymmetric-300.png
new file mode 100644
index 0000000000000000000000000000000000000000..29c1ea8f17d80fc7c850fcca49964791dc96ea15
Binary files /dev/null and b/src/res/images/MNI152ICBM2009cNonlinearAsymmetric-300.png differ
diff --git a/src/res/images/MNI152ICBM2009cNonlinearAsymmetric-400.png b/src/res/images/MNI152ICBM2009cNonlinearAsymmetric-400.png
new file mode 100644
index 0000000000000000000000000000000000000000..07b8475e00616e3235955d65cbc3598f0bd82e82
Binary files /dev/null and b/src/res/images/MNI152ICBM2009cNonlinearAsymmetric-400.png differ
diff --git a/src/res/images/MNI152ICBM2009cNonlinearAsymmetric.png b/src/res/images/MNI152ICBM2009cNonlinearAsymmetric.png
new file mode 100644
index 0000000000000000000000000000000000000000..a5d2276eff480aefe8ab7116c500d82b1201fbfa
Binary files /dev/null and b/src/res/images/MNI152ICBM2009cNonlinearAsymmetric.png differ
diff --git a/src/res/images/MNIColin27-100.png b/src/res/images/MNIColin27-100.png
new file mode 100644
index 0000000000000000000000000000000000000000..d4748838a9e7d341efe95a9823fa7edca0b6126a
Binary files /dev/null and b/src/res/images/MNIColin27-100.png differ
diff --git a/src/res/images/MNIColin27-200.png b/src/res/images/MNIColin27-200.png
new file mode 100644
index 0000000000000000000000000000000000000000..683341c65daaa5170e77197e614acbcaa3e48f5b
Binary files /dev/null and b/src/res/images/MNIColin27-200.png differ
diff --git a/src/res/images/MNIColin27-300.png b/src/res/images/MNIColin27-300.png
new file mode 100644
index 0000000000000000000000000000000000000000..d55090287e9925d795fbf6772024e6cb81100563
Binary files /dev/null and b/src/res/images/MNIColin27-300.png differ
diff --git a/src/res/images/MNIColin27-400.png b/src/res/images/MNIColin27-400.png
new file mode 100644
index 0000000000000000000000000000000000000000..6bd9fd61b6ab6bde92c61cd035bb0999ecf1ed3b
Binary files /dev/null and b/src/res/images/MNIColin27-400.png differ
diff --git a/src/res/images/MNIColin27.png b/src/res/images/MNIColin27.png
new file mode 100644
index 0000000000000000000000000000000000000000..6993e50d6ef7484530a7df17b8ca5bee7bdac249
Binary files /dev/null and b/src/res/images/MNIColin27.png differ
diff --git a/src/res/images/WaxholmSpaceratbrainMRIDTI-100.png b/src/res/images/WaxholmSpaceratbrainMRIDTI-100.png
new file mode 100644
index 0000000000000000000000000000000000000000..e1eddc7bfbc2e46b4c4bcf1146558a27d277c57b
Binary files /dev/null and b/src/res/images/WaxholmSpaceratbrainMRIDTI-100.png differ
diff --git a/src/res/images/WaxholmSpaceratbrainMRIDTI-200.png b/src/res/images/WaxholmSpaceratbrainMRIDTI-200.png
new file mode 100644
index 0000000000000000000000000000000000000000..938d3c00746f6c4a1eefa6468715a8af0e205cf0
Binary files /dev/null and b/src/res/images/WaxholmSpaceratbrainMRIDTI-200.png differ
diff --git a/src/res/images/WaxholmSpaceratbrainMRIDTI-300.png b/src/res/images/WaxholmSpaceratbrainMRIDTI-300.png
new file mode 100644
index 0000000000000000000000000000000000000000..37e7635b5b55e317455e12d727654b89d872067a
Binary files /dev/null and b/src/res/images/WaxholmSpaceratbrainMRIDTI-300.png differ
diff --git a/src/res/images/WaxholmSpaceratbrainMRIDTI-400.png b/src/res/images/WaxholmSpaceratbrainMRIDTI-400.png
new file mode 100644
index 0000000000000000000000000000000000000000..57840e545f0f1804104c93cd09fb65bb16813e4b
Binary files /dev/null and b/src/res/images/WaxholmSpaceratbrainMRIDTI-400.png differ
diff --git a/src/res/images/WaxholmSpaceratbrainMRIDTI.png b/src/res/images/WaxholmSpaceratbrainMRIDTI.png
new file mode 100644
index 0000000000000000000000000000000000000000..0a2b6cef1d493cad67ab3850d0bdd1969e7a6e21
Binary files /dev/null and b/src/res/images/WaxholmSpaceratbrainMRIDTI.png differ
diff --git a/src/services/auth.service.ts b/src/services/auth.service.ts
index b3019e8bba440ad2c44dcc4d5cb518b02a43c693..a74df4bd375db71a5f62e15d3c67dc3ab0f5e7a3 100644
--- a/src/services/auth.service.ts
+++ b/src/services/auth.service.ts
@@ -1,5 +1,7 @@
-import { Injectable } from "@angular/core";
-import { AtlasViewerConstantsServices } from "src/atlasViewer/atlasViewer.constantService.service";
+import { Injectable, OnDestroy } from "@angular/core";
+import { Observable, of, Subscription } from "rxjs";
+import { HttpClient } from "@angular/common/http";
+import { catchError, shareReplay } from "rxjs/operators";
 
 const IV_REDIRECT_TOKEN = `IV_REDIRECT_TOKEN`
 
@@ -7,9 +9,9 @@ const IV_REDIRECT_TOKEN = `IV_REDIRECT_TOKEN`
   providedIn: 'root'
 })
 
-export class AuthService{
+export class AuthService implements OnDestroy{
   public user: User | null
-
+  public user$: Observable<any>
   public logoutHref: String = 'logout'
 
   /**
@@ -20,14 +22,23 @@ export class AuthService{
     href: 'hbp-oidc/auth'
   }]
 
-  constructor(constantService: AtlasViewerConstantsServices) {
-    fetch('user', constantService.getFetchOption())
-      .then(res => res.json())
-      .then(user => this.user = user)
-      .catch(e => {
-        if (!PRODUCTION)
-          console.log(`auth failed`, e)
-      })
+  constructor(private httpClient: HttpClient) {
+    this.user$ = this.httpClient.get('user').pipe(
+      catchError(err => {
+        return of(null)
+      }),
+      shareReplay(1)
+    )
+
+    this.subscription.push(
+      this.user$.subscribe(user => this.user = user)
+    )
+  }
+
+  private subscription: Subscription[] = []
+
+  ngOnDestroy(){
+    while (this.subscription.length > 0) this.subscription.pop().unsubscribe()
   }
 
   authSaveState() {
diff --git a/src/services/dialogService.service.ts b/src/services/dialogService.service.ts
new file mode 100644
index 0000000000000000000000000000000000000000..02fd6b387748c4790465aa64163e82040726ae07
--- /dev/null
+++ b/src/services/dialogService.service.ts
@@ -0,0 +1,70 @@
+import { Injectable } from "@angular/core";
+import { MatDialog, MatDialogRef } from "@angular/material";
+import { DialogComponent } from "src/components/dialog/dialog.component";
+import { ConfirmDialogComponent } from "src/components/confirmDialog/confirmDialog.component";
+
+
+@Injectable({
+  providedIn: 'root'
+})
+
+export class DialogService{
+
+  private dialogRef: MatDialogRef<DialogComponent>
+  private confirmDialogRef: MatDialogRef<ConfirmDialogComponent>
+
+  constructor(private dialog:MatDialog){
+
+  }
+
+  public getUserConfirm(config: Partial<DialogConfig> = {}): Promise<string>{
+    this.confirmDialogRef = this.dialog.open(ConfirmDialogComponent, {
+      data: config
+    })
+    return new Promise((resolve, reject) => this.confirmDialogRef.afterClosed()
+      .subscribe(val => {
+        if (val) resolve()
+        else reject('User cancelled')
+      },
+      reject,
+      () => this.confirmDialogRef = null))
+  }
+
+  public getUserInput(config: Partial<DialogConfig> = {}):Promise<string>{
+    const {
+      defaultValue = '',
+      placeholder = 'Type your response here',
+      title = 'Message',
+      message = '',
+      iconClass
+    } = config
+    this.dialogRef = this.dialog.open(DialogComponent, {
+      data: {
+        title,
+        placeholder,
+        defaultValue,
+        message,
+        iconClass
+      }
+    })
+    return new Promise((resolve, reject) => {
+      /**
+       * nb: one one value is ever emitted, then the subscription ends
+       * Should not result in leak
+       */
+      this.dialogRef.afterClosed().subscribe(value => {
+        if (value) resolve(value)
+        else reject('User cancelled input')
+        this.dialogRef = null
+      })
+    })
+  }
+}
+
+export interface DialogConfig{
+  title: string
+  placeholder: string
+  defaultValue: string
+  message: string
+  iconClass: string
+}
\ No newline at end of file
diff --git a/src/services/effect/effect.ts b/src/services/effect/effect.ts
index 399bcae7652b8bb8b1ec3becba2188d341dfaf2c..0784fdb11edad7e9687d06448fc0e04ff0e75de7 100644
--- a/src/services/effect/effect.ts
+++ b/src/services/effect/effect.ts
@@ -1,9 +1,9 @@
 import { Injectable, OnDestroy } from "@angular/core";
 import { Effect, Actions, ofType } from "@ngrx/effects";
-import { Subscription, merge, fromEvent, combineLatest } from "rxjs";
-import { withLatestFrom, map, filter } from "rxjs/operators";
+import { Subscription, merge, fromEvent, combineLatest, Observable } from "rxjs";
+import { withLatestFrom, map, filter, shareReplay, tap, switchMap, take } from "rxjs/operators";
 import { Store, select } from "@ngrx/store";
-import { SELECT_PARCELLATION, SELECT_REGIONS, NEWVIEWER, UPDATE_PARCELLATION, SELECT_REGIONS_WITH_ID } from "../state/viewerState.store";
+import { SELECT_PARCELLATION, SELECT_REGIONS, NEWVIEWER, UPDATE_PARCELLATION, SELECT_REGIONS_WITH_ID, DESELECT_REGIONS, ADD_TO_REGIONS_SELECTION_WITH_IDS } from "../state/viewerState.store";
 import { worker } from 'src/atlasViewer/atlasViewer.workerService.service'
 import { getNgIdLabelIndexFromId, generateLabelIndexId, recursiveFindRegionWithLabelIndexId } from '../stateStore.service';
 
@@ -24,8 +24,68 @@ export class UseEffects implements OnDestroy{
         })
       })
     )
+
+    this.regionsSelected$ = this.store$.pipe(
+      select('viewerState'),
+      select('regionsSelected'),
+      shareReplay(1)
+    )
+
+    this.onDeselectRegions = this.actions$.pipe(
+      ofType(DESELECT_REGIONS),
+      withLatestFrom(this.regionsSelected$),
+      map(([action, regionsSelected]) => {
+        const { deselectRegions } = action
+        const selectRegions = regionsSelected.filter(r => {
+          return !(deselectRegions as any[]).find(dr => compareRegions(dr, r))
+        })
+        return {
+          type: SELECT_REGIONS,
+          selectRegions
+        }
+      })
+    )
+
+    this.onDeselectRegionsWithId$ = this.actions$.pipe(
+      ofType(ACTION_TYPES.DESELECT_REGIONS_WITH_ID),
+      map(action => {
+        const { deselecRegionIds } = action as any
+        return deselecRegionIds
+      }),
+      withLatestFrom(this.regionsSelected$),
+      map(([ deselecRegionIds, alreadySelectedRegions ]) => {
+        const deselectSet = new Set(deselecRegionIds)
+        return {
+          type: SELECT_REGIONS,
+          selectRegions: alreadySelectedRegions.filter(({ ngId, labelIndex }) => !deselectSet.has(generateLabelIndexId({ ngId, labelIndex })))
+        }
+      })
+    )
+
+    this.addToSelectedRegions$ = this.actions$.pipe(
+      ofType(ADD_TO_REGIONS_SELECTION_WITH_IDS),
+      map(action => {
+        const { selectRegionIds } = action
+        return selectRegionIds
+      }),
+      switchMap(selectRegionIds => this.updatedParcellation$.pipe(
+        filter(p => !!p),
+        take(1),
+        map(p => [selectRegionIds, p])
+      )),
+      map(this.convertRegionIdsToRegion),
+      withLatestFrom(this.regionsSelected$),
+      map(([ selectedRegions, alreadySelectedRegions ]) => {
+        return {
+          type: SELECT_REGIONS,
+          selectRegions: this.removeDuplicatedRegions(selectedRegions, alreadySelectedRegions)
+        }
+      })
+    )
   }
 
+  private regionsSelected$: Observable<any[]>
+
   ngOnDestroy(){
     while(this.subscriptions.length > 0) {
       this.subscriptions.pop().unsubscribe()
@@ -53,45 +113,79 @@ export class UseEffects implements OnDestroy{
   private updatedParcellation$ = this.store$.pipe(
     select('viewerState'),
     select('parcellationSelected'),
-    filter(p => !!p && !!p.regions)
+    map(p => p.updated ? p : null),
+    shareReplay(1)
   )
 
+  @Effect()
+  onDeselectRegions: Observable<any> 
+
+  @Effect()
+  onDeselectRegionsWithId$: Observable<any>
+
+  private convertRegionIdsToRegion = ([selectRegionIds, parcellation]) => {
+    const { ngId: defaultNgId } = parcellation
+    return (<any[]>selectRegionIds)
+      .map(labelIndexId => getNgIdLabelIndexFromId({ labelIndexId }))
+      .map(({ ngId, labelIndex }) => {
+        return {
+          labelIndexId: generateLabelIndexId({
+            ngId: ngId || defaultNgId,
+            labelIndex 
+          })
+        }
+      })
+      .map(({ labelIndexId }) => {
+        return recursiveFindRegionWithLabelIndexId({ 
+          regions: parcellation.regions,
+          labelIndexId,
+          inheritedNgId: defaultNgId
+        })
+      })
+      .filter(v => {
+        if (!v) {
+          console.log(`SELECT_REGIONS_WITH_ID, some ids cannot be parsed intto label index`)
+        }
+        return !!v
+      })
+  }
+
+  private removeDuplicatedRegions = (...args) => {
+    const set = new Set()
+    const returnArr = []
+    for (const regions of args){
+      for (const region of regions){
+        if (!set.has(region.name)) {
+          returnArr.push(region)
+          set.add(region.name)
+        }
+      }
+    }
+    return returnArr
+  }
+
+  @Effect()
+  addToSelectedRegions$: Observable<any>
+  
+
   /**
    * for backwards compatibility.
    * older versions of atlas viewer may only have labelIndex as region identifier
    */
   @Effect()
-  onSelectRegionWithId = combineLatest(
-    this.actions$.pipe(
-      ofType(SELECT_REGIONS_WITH_ID)
-    ),
-    this.updatedParcellation$
-  ).pipe(
-    map(([action, parcellation]) => {
+  onSelectRegionWithId = this.actions$.pipe(
+    ofType(SELECT_REGIONS_WITH_ID),
+    map(action => {
       const { selectRegionIds } = action
-      const { ngId: defaultNgId } = parcellation
-
-      const selectRegions = (<any[]>selectRegionIds)
-        .map(labelIndexId => getNgIdLabelIndexFromId({ labelIndexId }))
-        .map(({ ngId, labelIndex }) => {
-          return {
-            labelIndexId: generateLabelIndexId({
-              ngId: ngId || defaultNgId,
-              labelIndex 
-            })
-          }
-        })
-        .map(({ labelIndexId }) => {
-          return recursiveFindRegionWithLabelIndexId({ 
-            regions: parcellation.regions,
-            labelIndexId,
-            inheritedNgId: defaultNgId
-          })
-        })
-        .filter(v => {
-          if (!v) console.log(`SELECT_REGIONS_WITH_ID, some ids cannot be parsed intto label index`)
-          return !!v
-        })
+      return selectRegionIds
+    }),
+    switchMap(selectRegionIds => this.updatedParcellation$.pipe(
+      filter(p => !!p),
+      take(1),
+      map(parcellation => [selectRegionIds, parcellation])
+    )),
+    map(this.convertRegionIdsToRegion),
+    map(selectRegions => {
       return {
         type: SELECT_REGIONS,
         selectRegions
@@ -118,11 +212,32 @@ export class UseEffects implements OnDestroy{
     filter((message: MessageEvent) => message && message.data && message.data.type === 'UPDATE_PARCELLATION_REGIONS'),
     map(({data}) => data.parcellation),
     withLatestFrom(this.newParcellationSelected$),
-    filter(([ propagatedP, selectedP ] : [any, any]) => propagatedP.name === selectedP.name),
+    filter(([ propagatedP, selectedP ] : [any, any]) => {
+      /**
+       * TODO 
+       * use id
+       * but jubrain may have same id for different template spaces
+       */
+      return propagatedP.name === selectedP.name
+    }),
     map(([ propagatedP, _ ]) => propagatedP),
     map(parcellation => ({
       type: UPDATE_PARCELLATION,
       updatedParcellation: parcellation
     }))
   )
-}
\ No newline at end of file
+}
+
+export const compareRegions: (r1: any,r2: any) => boolean = (r1, r2) => {
+  if (!r1) return !r2
+  if (!r2) return !r1
+  return r1.ngId === r2.ngId
+    && r1.labelIndex === r2.labelIndex
+    && r1.name === r2.name
+}
+
+const ACTION_TYPES = {
+  DESELECT_REGIONS_WITH_ID: 'DESELECT_REGIONS_WITH_ID'
+}
+
+export const VIEWER_STATE_ACTION_TYPES = ACTION_TYPES
\ No newline at end of file
diff --git a/src/services/localFile.service.ts b/src/services/localFile.service.ts
new file mode 100644
index 0000000000000000000000000000000000000000..10ece9c15e3775c82ba3310421c37e71323cd600
--- /dev/null
+++ b/src/services/localFile.service.ts
@@ -0,0 +1,94 @@
+import { Injectable } from "@angular/core";
+import { DatabrowserService } from "src/ui/databrowserModule/databrowser.service";
+import { Store } from "@ngrx/store";
+import { SNACKBAR_MESSAGE } from "./state/uiState.store";
+import { KgSingleDatasetService } from "src/ui/databrowserModule/kgSingleDatasetService.service";
+
+/**
+ * experimental service handling local user files such as nifti and gifti
+ */
+
+@Injectable({
+  providedIn: 'root'
+})
+
+export class LocalFileService {
+  public SUPPORTED_EXT = SUPPORTED_EXT
+  private supportedExtSet = new Set(SUPPORTED_EXT)
+
+  constructor(
+    private store: Store<any>,
+    private singleDsService: KgSingleDatasetService
+  ){
+
+  }
+
+  private niiUrl
+
+  public handleFileDrop(files: File[]){
+    try {
+      this.validateDrop(files)
+      for (const file of files) {
+        const ext = this.getExtension(file.name)
+        switch (ext) {
+          case NII: {
+            this.handleNiiFile(file)
+            break;
+          }
+          default:
+            throw new Error(`File ${file.name} does not have a file handler`)
+        }
+      }
+    } catch (e) {
+      this.store.dispatch({
+        type: SNACKBAR_MESSAGE,
+        snackbarMessage: `Opening local NIFTI error: ${e.toString()}`
+      })
+    }
+  }
+
+  private getExtension(filename:string) {
+    const match = /(\.\w*?)$/i.exec(filename)
+    return (match && match[1]) || ''
+  }
+
+  private validateDrop(files: File[]){
+    if (files.length !== 1) {
+      throw new Error('Interactive atlas viewer currently only supports drag and drop of one file at a time')
+    }
+    for (const file of files) {
+      const ext = this.getExtension(file.name)
+      if (!this.supportedExtSet.has(ext)) {
+        throw new Error(`File ${file.name}${ext === '' ? ' ' : (' with extension ' + ext)} cannot be loaded. The supported extensions are: ${this.SUPPORTED_EXT.join(', ')}`)
+      }
+    }
+  }
+
+  private handleNiiFile(file: File){
+
+    if (this.niiUrl) {
+      URL.revokeObjectURL(this.niiUrl)
+    }
+    this.niiUrl = URL.createObjectURL(file)
+    this.singleDsService.showNewNgLayer({
+      url: this.niiUrl
+    })
+
+    this.showLocalWarning()
+  }
+
+  private showLocalWarning() {
+    this.store.dispatch({
+      type: SNACKBAR_MESSAGE,
+      snackbarMessage: `Warning: sharing URL will not share the loaded local file`
+    })
+  }
+}
+
+const NII = `.nii`
+const GII = '.gii'
+
+const SUPPORTED_EXT = [
+  NII,
+  GII
+]
\ No newline at end of file
diff --git a/src/services/state/dataStore.store.ts b/src/services/state/dataStore.store.ts
index d5064be7807bc280dd3f9c879d57b37a62503f28..8caf8630f5df9097cde086db1e1d9fba8b5753b9 100644
--- a/src/services/state/dataStore.store.ts
+++ b/src/services/state/dataStore.store.ts
@@ -1,35 +1,53 @@
 import { Action } from '@ngrx/store'
 
-export function dataStore(state:any,action:DatasetAction){
+/**
+ * TODO merge with databrowser.usereffect.ts
+ */
+
+interface DataEntryState{
+  fetchedDataEntries: DataEntry[]
+  favDataEntries: DataEntry[]
+  fetchedSpatialData: DataEntry[]
+}
+
+const defaultState = {
+  fetchedDataEntries: [],
+  favDataEntries: [],
+  fetchedSpatialData: []
+}
+
+export function dataStore(state:DataEntryState = defaultState, action:Partial<DatasetAction>){
   switch (action.type){
     case FETCHED_DATAENTRIES: {
-      return Object.assign({},state,{
+      return {
+        ...state,
         fetchedDataEntries : action.fetchedDataEntries
-      })
+      }
     }
     case FETCHED_SPATIAL_DATA :{
-      return Object.assign({},state,{
+      return {
+        ...state,
         fetchedSpatialData : action.fetchedDataEntries
-      })
+      }
     }
-    case FETCHED_METADATA : {
-      return Object.assign({},state,{
-        fetchedMetadataMap : action.fetchedMetadataMap
-      })
+    case ACTION_TYPES.UPDATE_FAV_DATASETS: {
+      const { favDataEntries = [] } = action
+      return {
+        ...state,
+        favDataEntries
+      }
     }
-    default:
-      return state
+    default: return state
   }
 }
 
 export interface DatasetAction extends Action{
+  favDataEntries: DataEntry[]
   fetchedDataEntries : DataEntry[]
   fetchedSpatialData : DataEntry[]
-  fetchedMetadataMap : Map<string,Map<string,{properties:Property}>>
 }
 
 export const FETCHED_DATAENTRIES = 'FETCHED_DATAENTRIES'
-export const FETCHED_METADATA = 'FETCHED_METADATA'
 export const FETCHED_SPATIAL_DATA = `FETCHED_SPATIAL_DATA`
 
 export interface Activity{
@@ -62,6 +80,9 @@ export interface DataEntry{
    * TODO typo, should be kgReferences
    */
   kgReference: string[]
+
+  id: string
+  fullId: string
 }
 
 export interface ParcellationRegion {
@@ -134,8 +155,18 @@ export interface ViewerPreviewFile{
   mimetype: string
   url?: string
   data?: any
+  position?: any
 }
 
 export interface FileSupplementData{
   data: any
-}
\ No newline at end of file
+}
+
+const ACTION_TYPES = {
+  FAV_DATASET: `FAV_DATASET`,
+  UPDATE_FAV_DATASETS: `UPDATE_FAV_DATASETS`,
+  UNFAV_DATASET: 'UNFAV_DATASET',
+  TOGGLE_FAV_DATASET: 'TOGGLE_FAV_DATASET'
+}
+
+export const DATASETS_ACTIONS_TYPES = ACTION_TYPES
\ No newline at end of file
diff --git a/src/services/state/ngViewerState.store.ts b/src/services/state/ngViewerState.store.ts
index d1dd8b27a79daa1b2a73ad56df959cac71f87636..935a36e3387535f401fd8a0b09da48a9d46b556c 100644
--- a/src/services/state/ngViewerState.store.ts
+++ b/src/services/state/ngViewerState.store.ts
@@ -1,32 +1,73 @@
-import { Action } from '@ngrx/store'
+import { Action, Store, select } from '@ngrx/store'
+import { Injectable, OnDestroy } from '@angular/core';
+import { Observable, combineLatest, fromEvent, Subscription } from 'rxjs';
+import { Effect, Actions, ofType } from '@ngrx/effects';
+import { withLatestFrom, map, distinctUntilChanged, scan, shareReplay, filter, mapTo, tap, delay, switchMapTo, take } from 'rxjs/operators';
+import { AtlasViewerConstantsServices } from 'src/atlasViewer/atlasViewer.constantService.service';
+import { SNACKBAR_MESSAGE } from './uiState.store';
+import { getNgIds } from '../stateStore.service';
+
+export const FOUR_PANEL = 'FOUR_PANEL'
+export const V_ONE_THREE = 'V_ONE_THREE'
+export const H_ONE_THREE = 'H_ONE_THREE'
+export const SINGLE_PANEL = 'SINGLE_PANEL'
 
 export interface NgViewerStateInterface{
   layers : NgLayerInterface[]
   forceShowSegment : boolean | null
   nehubaReady: boolean
+  panelMode: string
+  panelOrder: string
+
+  showSubstrate: boolean
+  showZoomlevel: boolean
 }
 
 export interface NgViewerAction extends Action{
   layer : NgLayerInterface
+  layers : NgLayerInterface[]
   forceShowSegment : boolean
   nehubaReady: boolean
+  payload: any
 }
 
-const defaultState:NgViewerStateInterface = {layers:[], forceShowSegment:null, nehubaReady: false}
+const defaultState:NgViewerStateInterface = {
+  layers:[],
+  forceShowSegment:null,
+  nehubaReady: false,
+  panelMode: FOUR_PANEL,
+  panelOrder: `0123`,
+
+  showSubstrate: null,
+  showZoomlevel: null
+}
 
 export function ngViewerState(prevState:NgViewerStateInterface = defaultState, action:NgViewerAction):NgViewerStateInterface{
   switch(action.type){
+    case ACTION_TYPES.SET_PANEL_ORDER: {
+      const { payload } = action
+      const { panelOrder } = payload
+
+      return {
+        ...prevState,
+        panelOrder
+      }
+    }
+    case ACTION_TYPES.SWITCH_PANEL_MODE: {
+      const { payload } = action
+      const { panelMode } = payload
+      if (SUPPORTED_PANEL_MODES.indexOf(panelMode) < 0) return prevState
+      return {
+        ...prevState,
+        panelMode
+      }
+    }
     case ADD_NG_LAYER:
-      return Object.assign({}, prevState, {
+      return {
+        ...prevState,
+
         /* this configration hides the layer if a non mixable layer already present */
-        layers : action.layer.constructor === Array 
-          ? prevState.layers.concat(action.layer)
-          : prevState.layers.concat(
-              Object.assign({}, action.layer, 
-                action.layer.mixability === 'nonmixable' && prevState.layers.findIndex(l => l.mixability === 'nonmixable') >= 0
-                  ? {visible: false}
-                  : {}))
-        
+
         /* this configuration does not the addition of multiple non mixable layers */
         // layers : action.layer.mixability === 'nonmixable' && prevState.layers.findIndex(l => l.mixability === 'nonmixable') >= 0
         //   ? prevState.layers
@@ -34,44 +75,295 @@ export function ngViewerState(prevState:NgViewerStateInterface = defaultState, a
 
         /* this configuration allows the addition of multiple non mixables */
         // layers : prevState.layers.map(l => mapLayer(l, action.layer)).concat(action.layer)
-      })
+        layers : action.layer.constructor === Array 
+          ? prevState.layers.concat(action.layer)
+          : prevState.layers.concat({
+            ...action.layer,
+            ...( action.layer.mixability === 'nonmixable' && prevState.layers.findIndex(l => l.mixability === 'nonmixable') >= 0
+                  ? {visible: false}
+                  : {})
+          })
+      } 
+    case REMOVE_NG_LAYERS:
+      const { layers } = action
+      const layerNameSet = new Set(layers.map(l => l.name))
+      return {
+        ...prevState,
+        layers: prevState.layers.filter(l => !layerNameSet.has(l.name))
+      }
     case REMOVE_NG_LAYER:
-      return Object.assign({}, prevState, {
+      return {
+        ...prevState,
         layers : prevState.layers.filter(l => l.name !== action.layer.name)
-      } as NgViewerStateInterface)
+      }
     case SHOW_NG_LAYER:
-      return Object.assign({}, prevState, {
+      return {
+        ...prevState,
         layers : prevState.layers.map(l => l.name === action.layer.name
-          ? Object.assign({}, l, {
-              visible : true
-            } as NgLayerInterface)
+          ? { ...l, visible: true }
           : l)
-      })
+      }
     case HIDE_NG_LAYER:
-      return Object.assign({}, prevState, {
+      return {
+        ...prevState,
+
         layers : prevState.layers.map(l => l.name === action.layer.name
-          ? Object.assign({}, l, {
-              visible : false
-            } as NgLayerInterface)
+          ? { ...l, visible: false }
           : l)
-        })
+      }
     case FORCE_SHOW_SEGMENT:
-      return Object.assign({}, prevState, {
+      return {
+        ...prevState,
         forceShowSegment : action.forceShowSegment
-      }) as NgViewerStateInterface
+      }
     case NEHUBA_READY: 
       const { nehubaReady } = action
       return {
         ...prevState,
         nehubaReady
       }
-    default:
-      return prevState
+    default: return prevState
+  }
+}
+
+@Injectable({
+  providedIn: 'root'
+})
+
+export class NgViewerUseEffect implements OnDestroy{
+  @Effect()
+  public toggleMaximiseMode$: Observable<any>
+
+  @Effect()
+  public unmaximiseOrder$: Observable<any>
+
+  @Effect()
+  public maximiseOrder$: Observable<any>
+
+  @Effect()
+  public toggleMaximiseCycleMessage$: Observable<any>
+
+  @Effect()
+  public cycleViews$: Observable<any>
+
+  @Effect()
+  public spacebarListener$: Observable<any>
+
+  @Effect()
+  public removeAllNonBaseLayers$: Observable<any>
+
+  private panelOrder$: Observable<string>
+  private panelMode$: Observable<string>
+
+  private subscriptions: Subscription[] = []
+
+  constructor(
+    private actions: Actions,
+    private store$: Store<any>,
+    private constantService: AtlasViewerConstantsServices
+  ){
+    const toggleMaxmimise$ = this.actions.pipe(
+      ofType(ACTION_TYPES.TOGGLE_MAXIMISE),
+      shareReplay(1)
+    )
+
+    this.panelOrder$ = this.store$.pipe(
+      select('ngViewerState'),
+      select('panelOrder'),
+      distinctUntilChanged(),
+    )
+
+    this.panelMode$ = this.store$.pipe(
+      select('ngViewerState'),
+      select('panelMode'),
+      distinctUntilChanged(),
+    )
+
+    this.cycleViews$ = this.actions.pipe(
+      ofType(ACTION_TYPES.CYCLE_VIEWS),
+      withLatestFrom(this.panelOrder$),
+      map(([_, panelOrder]) => {
+        return {
+          type: ACTION_TYPES.SET_PANEL_ORDER,
+          payload: {
+            panelOrder: [...panelOrder.slice(1), ...panelOrder.slice(0,1)].join('')
+          }
+        }
+      })
+    )
+
+    this.maximiseOrder$ = toggleMaxmimise$.pipe(
+      withLatestFrom(
+        combineLatest(
+          this.panelOrder$,
+          this.panelMode$
+        )
+      ),
+      filter(([_action, [_panelOrder, panelMode]]) => panelMode !== SINGLE_PANEL),
+      map(([ action, [ oldPanelOrder ] ]) => {
+        const { payload } = action as NgViewerAction
+        const { index = 0 } = payload
+
+        const panelOrder = [...oldPanelOrder.slice(index), ...oldPanelOrder.slice(0, index)].join('')
+        return {
+          type: ACTION_TYPES.SET_PANEL_ORDER,
+          payload: {
+            panelOrder
+          }
+        }
+      })
+    )
+
+    this.unmaximiseOrder$ = toggleMaxmimise$.pipe(
+      withLatestFrom(
+        combineLatest(
+          this.panelOrder$,
+          this.panelMode$
+        )
+      ),
+      scan((acc, curr) => {
+        const [action, [panelOrders, panelMode]] = curr
+        return [{
+          action, 
+          panelOrders,
+          panelMode
+        }, ...acc.slice(0, 1)]
+      }, [] as any[]),
+      filter(([ { panelMode } ]) => panelMode === SINGLE_PANEL),
+      map(arr => {
+        const {
+          action,
+          panelOrders
+        } = arr[0]
+
+        const {
+          panelOrders: panelOrdersPrev = null,
+        } = arr[1] || {}
+
+        const { payload } = action as NgViewerAction
+        const { index = 0 } = payload
+
+        const panelOrder = !!panelOrdersPrev
+          ? panelOrdersPrev
+          : [...panelOrders.slice(index), ...panelOrders.slice(0, index)].join('')
+
+        return {
+          type: ACTION_TYPES.SET_PANEL_ORDER,
+          payload: {
+            panelOrder
+          }
+        }
+      })
+    )
+
+    const scanFn = (acc: string[], curr: string):string[] => [curr, ...acc.slice(0,1)]
+
+    this.toggleMaximiseMode$ = toggleMaxmimise$.pipe(
+      withLatestFrom(this.panelMode$.pipe(
+        scan(scanFn, [])
+      )),
+      map(([ _, panelModes ]) => {
+        return {
+          type: ACTION_TYPES.SWITCH_PANEL_MODE,
+          payload: {
+            panelMode: panelModes[0] === SINGLE_PANEL
+              ? (panelModes[1] || FOUR_PANEL)
+              : SINGLE_PANEL
+          }
+        }
+      })
+    )
+
+    this.toggleMaximiseCycleMessage$ = combineLatest(
+      this.toggleMaximiseMode$,
+      this.constantService.useMobileUI$
+    ).pipe(
+      filter(([_, useMobileUI]) => !useMobileUI),
+      map(([toggleMaximiseMode, _]) => toggleMaximiseMode),
+      filter(({ payload }) => payload.panelMode && payload.panelMode === SINGLE_PANEL),
+      mapTo({
+        type: SNACKBAR_MESSAGE,
+        snackbarMessage: this.constantService.cyclePanelMessage
+      })
+    )
+
+    this.spacebarListener$ = fromEvent(document.body, 'keydown', { capture: true }).pipe(
+      filter((ev: KeyboardEvent) => ev.key === ' '),
+      withLatestFrom(this.panelMode$),
+      filter(([_ , panelMode]) => panelMode === SINGLE_PANEL),
+      mapTo({
+        type: ACTION_TYPES.CYCLE_VIEWS
+      })
+    )
+
+    /**
+     * simplify with layer browser
+     */
+    const baseNgLayerName$ = this.store$.pipe(
+      select('viewerState'),
+      select('templateSelected'),
+      map(templateSelected => {
+        if (!templateSelected) return []
+
+        const { ngId , otherNgIds = []} = templateSelected
+
+        return [
+          ngId,
+          ...otherNgIds,
+          ...templateSelected.parcellations.reduce((acc, curr) => {
+            return acc.concat([
+              curr.ngId,
+              ...getNgIds(curr.regions)
+            ])
+          }, [])
+        ]
+      }),
+      /**
+       * get unique array
+       */
+      map(nonUniqueArray => Array.from(new Set(nonUniqueArray))),
+      /**
+       * remove falsy values
+       */
+      map(arr => arr.filter(v => !!v))
+    )
+
+    const allLoadedNgLayers$ = this.store$.pipe(
+      select('viewerState'),
+      select('loadedNgLayers')
+    )
+
+    this.removeAllNonBaseLayers$ = this.actions.pipe(
+      ofType(ACTION_TYPES.REMOVE_ALL_NONBASE_LAYERS),
+      withLatestFrom(
+        combineLatest(
+          baseNgLayerName$,
+          allLoadedNgLayers$
+        )
+      ),
+      map(([_, [baseNgLayerNames, loadedNgLayers] ]) => {
+        const baseNameSet = new Set(baseNgLayerNames)
+        return loadedNgLayers.filter(l => !baseNameSet.has(l.name))
+      }),
+      map(layers => {
+        return {
+          type: REMOVE_NG_LAYERS,
+          layers
+        }
+      })
+    )
+  }
+
+  ngOnDestroy(){
+    while(this.subscriptions.length > 0) {
+      this.subscriptions.pop().unsubscribe()
+    }
   }
 }
 
 export const ADD_NG_LAYER = 'ADD_NG_LAYER'
 export const REMOVE_NG_LAYER = 'REMOVE_NG_LAYER'
+export const REMOVE_NG_LAYERS = 'REMOVE_NG_LAYERS'
 export const SHOW_NG_LAYER = 'SHOW_NG_LAYER'
 export const HIDE_NG_LAYER = 'HIDE_NG_LAYER'
 export const FORCE_SHOW_SEGMENT = `FORCE_SHOW_SEGMENT`
@@ -84,4 +376,24 @@ interface NgLayerInterface{
   visible : boolean
   shader? : string
   transform? : any
-}
\ No newline at end of file
+}
+
+const ACTION_TYPES = {
+  SWITCH_PANEL_MODE: 'SWITCH_PANEL_MODE',
+  SET_PANEL_ORDER: 'SET_PANEL_ORDER',
+
+  TOGGLE_MAXIMISE: 'TOGGLE_MAXIMISE',
+  CYCLE_VIEWS: 'CYCLE_VIEWS',
+
+  REMOVE_ALL_NONBASE_LAYERS: `REMOVE_ALL_NONBASE_LAYERS`
+}
+
+export const SUPPORTED_PANEL_MODES = [
+  FOUR_PANEL,
+  H_ONE_THREE,
+  V_ONE_THREE,
+  SINGLE_PANEL,
+]
+
+
+export const NG_VIEWER_ACTION_TYPES = ACTION_TYPES
\ No newline at end of file
diff --git a/src/services/state/pluginState.store.ts b/src/services/state/pluginState.store.ts
index 93d6b1e9678128b624fbe146c26afb08f494306b..e9a80cc8d3b180b847ec8e6b86294093e8a7f903 100644
--- a/src/services/state/pluginState.store.ts
+++ b/src/services/state/pluginState.store.ts
@@ -12,10 +12,12 @@ export interface PluginInitManifestActionInterface extends Action{
   }
 }
 
-export const ACTION_TYPES = {
+const ACTION_TYPES = {
   SET_INIT_PLUGIN: `SET_INIT_PLUGIN`
 }
 
+export const PLUGIN_STATE_ACTION_TYPES = ACTION_TYPES
+
 export function pluginState(prevState:PluginInitManifestInterface = {initManifests : new Map()}, action:PluginInitManifestActionInterface):PluginInitManifestInterface{
   switch(action.type){
     case ACTION_TYPES.SET_INIT_PLUGIN:
diff --git a/src/services/state/uiState.store.ts b/src/services/state/uiState.store.ts
index fadd5b87fcc506e504ff011a429675648d85c303..396ebfe8ea69d2ccce217f87f6ace0de7536421a 100644
--- a/src/services/state/uiState.store.ts
+++ b/src/services/state/uiState.store.ts
@@ -1,20 +1,27 @@
 import { Action } from '@ngrx/store'
+import { TemplateRef } from '@angular/core';
 
-const agreedCookieKey = 'agreed-cokies'
-const aggredKgTosKey = 'agreed-kg-tos'
+import { LOCAL_STORAGE_CONST, COOKIE_VERSION, KG_TOS_VERSION } from 'src/util/constants'
 
 const defaultState : UIStateInterface = {
   mouseOverSegments: [],
   mouseOverSegment: null,
+  
   mouseOverLandmark: null,
+  mouseOverUserLandmark: null,
+
   focusedSidePanel: null,
   sidePanelOpen: false,
 
+  snackbarMessage: null,
+
+  bottomSheetTemplate: null,
+
   /**
    * replace with server side logic (?)
    */
-  agreedCookies: localStorage.getItem(agreedCookieKey) === 'agreed',
-  agreedKgTos: localStorage.getItem(aggredKgTosKey) === 'agreed'
+  agreedCookies: localStorage.getItem(LOCAL_STORAGE_CONST.AGREE_COOKIE) === COOKIE_VERSION,
+  agreedKgTos: localStorage.getItem(LOCAL_STORAGE_CONST.AGREE_KG_TOS) === KG_TOS_VERSION
 }
 
 export function uiState(state:UIStateInterface = defaultState,action:UIAction){
@@ -30,11 +37,27 @@ export function uiState(state:UIStateInterface = defaultState,action:UIAction){
         ...state,
         mouseOverSegment : action.segment
       }
+    case MOUSEOVER_USER_LANDMARK:
+      const { payload = {} } = action
+      const { userLandmark: mouseOverUserLandmark = null } = payload
+      return {
+        ...state,
+        mouseOverUserLandmark
+      }
     case MOUSE_OVER_LANDMARK:
       return {
         ...state,
         mouseOverLandmark : action.landmark
       }
+    case SNACKBAR_MESSAGE:
+      const { snackbarMessage } = action
+      /**
+       * Need to use symbol here, or repeated snackbarMessage will not trigger new event
+       */
+      return {
+        ...state,
+        snackbarMessage: Symbol(snackbarMessage)
+      }
     /**
      * TODO deprecated
      * remove ASAP
@@ -58,7 +81,7 @@ export function uiState(state:UIStateInterface = defaultState,action:UIAction){
       /**
        * TODO replace with server side logic
        */
-      localStorage.setItem(agreedCookieKey, 'agreed')
+      localStorage.setItem(LOCAL_STORAGE_CONST.AGREE_COOKIE, COOKIE_VERSION)
       return {
         ...state,
         agreedCookies: true
@@ -67,11 +90,17 @@ export function uiState(state:UIStateInterface = defaultState,action:UIAction){
       /**
        * TODO replace with server side logic
        */
-      localStorage.setItem(aggredKgTosKey, 'agreed')
+      localStorage.setItem(LOCAL_STORAGE_CONST.AGREE_KG_TOS, KG_TOS_VERSION)
       return {
         ...state,
         agreedKgTos: true
       }
+    case SHOW_BOTTOM_SHEET:
+        const { bottomSheetTemplate } = action
+        return {
+          ...state,
+          bottomSheetTemplate
+        }
     default:
       return state
   }
@@ -84,30 +113,43 @@ export interface UIStateInterface{
     }
     segment: any | null
   }[]
-  sidePanelOpen : boolean
-  mouseOverSegment : any | number
-  mouseOverLandmark : any 
-  focusedSidePanel : string | null
+  sidePanelOpen: boolean
+  mouseOverSegment: any | number
+
+  mouseOverLandmark: any
+  mouseOverUserLandmark: any
+
+  focusedSidePanel: string | null
+
+  snackbarMessage: Symbol
 
   agreedCookies: boolean
   agreedKgTos: boolean
+
+  bottomSheetTemplate: TemplateRef<any>
 }
 
 export interface UIAction extends Action{
   segment: any | number
   landmark: any
-  focusedSidePanel? : string
+  focusedSidePanel?: string
   segments?:{
     layer: {
       name: string
     }
     segment: any | null
-  }[]
+  }[],
+  snackbarMessage: string
+
+  bottomSheetTemplate: TemplateRef<any>
+
+  payload: any
 }
 
 export const MOUSE_OVER_SEGMENT = `MOUSE_OVER_SEGMENT`
 export const MOUSE_OVER_SEGMENTS = `MOUSE_OVER_SEGMENTS`
 export const MOUSE_OVER_LANDMARK = `MOUSE_OVER_LANDMARK`
+export const MOUSEOVER_USER_LANDMARK = `MOUSEOVER_USER_LANDMARK`
 
 export const TOGGLE_SIDE_PANEL = 'TOGGLE_SIDE_PANEL'
 export const CLOSE_SIDE_PANEL = `CLOSE_SIDE_PANEL`
@@ -115,4 +157,7 @@ export const OPEN_SIDE_PANEL = `OPEN_SIDE_PANEL`
 
 export const AGREE_COOKIE = `AGREE_COOKIE`
 export const AGREE_KG_TOS = `AGREE_KG_TOS`
-export const SHOW_KG_TOS = `SHOW_KG_TOS`
\ No newline at end of file
+export const SHOW_KG_TOS = `SHOW_KG_TOS`
+
+export const SNACKBAR_MESSAGE = `SNACKBAR_MESSAGE`
+export const SHOW_BOTTOM_SHEET = `SHOW_BOTTOM_SHEET`
\ No newline at end of file
diff --git a/src/services/state/userConfigState.store.ts b/src/services/state/userConfigState.store.ts
new file mode 100644
index 0000000000000000000000000000000000000000..ffbb5b214132bfccc972aee8cf9d3a4a2e85ea78
--- /dev/null
+++ b/src/services/state/userConfigState.store.ts
@@ -0,0 +1,367 @@
+import { Action, Store, select } from "@ngrx/store";
+import { Injectable, OnDestroy } from "@angular/core";
+import { Actions, Effect, ofType } from "@ngrx/effects";
+import { Observable, combineLatest, Subscription, from, of } from "rxjs";
+import { shareReplay, withLatestFrom, map, distinctUntilChanged, filter, take, tap, switchMap, catchError, share } from "rxjs/operators";
+import { generateLabelIndexId, recursiveFindRegionWithLabelIndexId } from "../stateStore.service";
+import { SELECT_REGIONS, NEWVIEWER, SELECT_PARCELLATION } from "./viewerState.store";
+import { DialogService } from "../dialogService.service";
+import { VIEWER_CONFIG_ACTION_TYPES } from "./viewerConfig.store";
+import { LOCAL_STORAGE_CONST } from "src/util//constants";
+
+interface UserConfigState{
+  savedRegionsSelection: RegionSelection[]
+}
+
+export interface RegionSelection{
+  templateSelected: any
+  parcellationSelected: any
+  regionsSelected: any[]
+  name: string
+  id: string
+}
+
+/**
+ * for serialisation into local storage/database
+ */
+interface SimpleRegionSelection{
+  id: string,
+  name: string,
+  tName: string,
+  pName: string,
+  rSelected: string[]
+}
+
+interface UserConfigAction extends Action{
+  config?: Partial<UserConfigState>
+  payload?: any
+}
+
+const defaultUserConfigState: UserConfigState = {
+  savedRegionsSelection: []
+}
+
+const ACTION_TYPES = {
+  UPDATE_REGIONS_SELECTIONS: `UPDATE_REGIONS_SELECTIONS`,
+  UPDATE_REGIONS_SELECTION:'UPDATE_REGIONS_SELECTION',
+  SAVE_REGIONS_SELECTION: `SAVE_REGIONS_SELECTIONN`,
+  DELETE_REGIONS_SELECTION: 'DELETE_REGIONS_SELECTION',
+
+  LOAD_REGIONS_SELECTION: 'LOAD_REGIONS_SELECTION'
+}
+
+export const USER_CONFIG_ACTION_TYPES = ACTION_TYPES
+
+export function userConfigState(prevState: UserConfigState = defaultUserConfigState, action: UserConfigAction) {
+  switch(action.type) {
+    case ACTION_TYPES.UPDATE_REGIONS_SELECTIONS:
+      const { config = {} } = action
+      const { savedRegionsSelection } = config
+      return {
+        ...prevState,
+        savedRegionsSelection
+      }
+    default:
+      return {
+        ...prevState
+      }
+  }
+}
+
+@Injectable({
+  providedIn: 'root'
+})
+export class UserConfigStateUseEffect implements OnDestroy{
+
+  private subscriptions: Subscription[] = []
+
+  constructor(
+    private actions$: Actions,
+    private store$: Store<any>,
+    private dialogService: DialogService
+  ){
+    const viewerState$ = this.store$.pipe(
+      select('viewerState'),
+      shareReplay(1)
+    )
+
+    this.parcellationSelected$ = viewerState$.pipe(
+      select('parcellationSelected'),
+      distinctUntilChanged(),
+      share()
+    )
+
+    this.tprSelected$ = combineLatest(
+      viewerState$.pipe(
+        select('templateSelected'),
+        distinctUntilChanged()
+      ),
+      this.parcellationSelected$,
+      viewerState$.pipe(
+        select('regionsSelected'),
+        /**
+         * TODO
+         * distinct selectedRegions
+         */
+      )
+    ).pipe(
+      map(([ templateSelected, parcellationSelected, regionsSelected ]) => {
+        return {
+          templateSelected, parcellationSelected, regionsSelected
+        }
+      }),
+      shareReplay(1)
+    )
+
+    this.savedRegionsSelections$ = this.store$.pipe(
+      select('userConfigState'),
+      select('savedRegionsSelection'),
+      shareReplay(1)
+    )
+
+    this.onSaveRegionsSelection$ = this.actions$.pipe(
+      ofType(ACTION_TYPES.SAVE_REGIONS_SELECTION),
+      withLatestFrom(this.tprSelected$),
+      withLatestFrom(this.savedRegionsSelections$),
+      
+      map(([[action, tprSelected], savedRegionsSelection]) => {
+        const { payload = {} } = action as UserConfigAction
+        const { name = 'Untitled' } = payload
+
+        const { templateSelected, parcellationSelected, regionsSelected } = tprSelected
+        const newSavedRegionSelection: RegionSelection = {
+          id: Date.now().toString(),
+          name,
+          templateSelected,
+          parcellationSelected,
+          regionsSelected
+        }
+        return {
+          type: ACTION_TYPES.UPDATE_REGIONS_SELECTIONS,
+          config: {
+            savedRegionsSelection: savedRegionsSelection.concat([newSavedRegionSelection])
+          }
+        } as UserConfigAction
+      })
+    )
+
+    this.onDeleteRegionsSelection$ = this.actions$.pipe(
+      ofType(ACTION_TYPES.DELETE_REGIONS_SELECTION),
+      withLatestFrom(this.savedRegionsSelections$),
+      map(([ action, savedRegionsSelection ]) => {
+        const { payload = {} } = action as UserConfigAction
+        const { id } = payload
+        return {
+          type: ACTION_TYPES.UPDATE_REGIONS_SELECTIONS,
+          config: {
+            savedRegionsSelection: savedRegionsSelection.filter(srs => srs.id !== id)
+          }
+        }
+      })
+    )
+
+    this.onUpdateRegionsSelection$ = this.actions$.pipe(
+      ofType(ACTION_TYPES.UPDATE_REGIONS_SELECTION),
+      withLatestFrom(this.savedRegionsSelections$),
+      map(([ action, savedRegionsSelection]) => {
+        const { payload = {} } = action as UserConfigAction
+        const { id, ...rest } = payload
+        return {
+          type: ACTION_TYPES.UPDATE_REGIONS_SELECTIONS,
+          config: {
+            savedRegionsSelection: savedRegionsSelection
+              .map(srs => srs.id === id
+                ? { ...srs, ...rest }
+                : { ...srs })
+          }
+        }
+      })
+    )
+
+    this.subscriptions.push(
+      this.actions$.pipe(
+        ofType(ACTION_TYPES.LOAD_REGIONS_SELECTION),
+        map(action => {
+          const { payload = {}} = action as UserConfigAction
+          const { savedRegionsSelection } : {savedRegionsSelection : RegionSelection} = payload
+          return savedRegionsSelection
+        }),
+        filter(val => !!val),
+        withLatestFrom(this.tprSelected$),
+        switchMap(([savedRegionsSelection, { parcellationSelected, templateSelected, regionsSelected }]) => 
+          from(this.dialogService.getUserConfirm({
+            title: `Load region selection: ${savedRegionsSelection.name}`,
+            message: `This action would cause the viewer to navigate away from the current view. Proceed?`
+          })).pipe(
+            catchError((e, obs) => of(null)),
+            map(() => {
+              return {
+                savedRegionsSelection,
+                parcellationSelected,
+                templateSelected,
+                regionsSelected
+              }
+            }),
+            filter(val => !!val)
+          )
+        ),
+        switchMap(({ savedRegionsSelection, parcellationSelected, templateSelected, regionsSelected }) => {
+          if (templateSelected.name !== savedRegionsSelection.templateSelected.name ) {
+            /**
+             * template different, dispatch NEWVIEWER
+             */
+            this.store$.dispatch({
+              type: NEWVIEWER,
+              selectParcellation: savedRegionsSelection.parcellationSelected,
+              selectTemplate: savedRegionsSelection.templateSelected
+            })
+            return this.parcellationSelected$.pipe(
+              filter(p => p.updated),
+              take(1),
+              map(() => {
+                return {
+                  regionsSelected: savedRegionsSelection.regionsSelected
+                }
+              })
+            )
+          }
+  
+          if (parcellationSelected.name !== savedRegionsSelection.parcellationSelected.name) {
+            /**
+             * parcellation different, dispatch SELECT_PARCELLATION
+             */
+  
+             this.store$.dispatch({
+               type: SELECT_PARCELLATION,
+               selectParcellation: savedRegionsSelection.parcellationSelected
+             })
+            return this.parcellationSelected$.pipe(
+              filter(p => p.updated),
+              take(1),
+              map(() => {
+                return {
+                  regionsSelected: savedRegionsSelection.regionsSelected
+                }
+              })
+            )
+          }
+
+          return of({ 
+            regionsSelected: savedRegionsSelection.regionsSelected
+          })
+        })
+      ).subscribe(({ regionsSelected }) => {
+        this.store$.dispatch({
+          type: SELECT_REGIONS,
+          selectRegions: regionsSelected
+        })
+      })
+    )
+
+    this.subscriptions.push(
+      this.store$.pipe(
+        select('viewerConfigState')
+      ).subscribe(({ gpuLimit, animation }) => {
+
+        if (gpuLimit) {
+          window.localStorage.setItem(LOCAL_STORAGE_CONST.GPU_LIMIT, gpuLimit.toString())
+        }
+        if (typeof animation !== 'undefined' && animation !== null) {
+          window.localStorage.setItem(LOCAL_STORAGE_CONST.ANIMATION, animation.toString())
+        }
+      })
+    )
+
+    this.subscriptions.push(
+      this.actions$.pipe(
+
+        ofType(VIEWER_CONFIG_ACTION_TYPES.SET_MOBILE_UI),
+        map((action: any) => {
+          const { payload } = action
+          const { useMobileUI } = payload
+          return useMobileUI
+        }),
+        filter(bool => bool !== null)
+      ).subscribe((bool: boolean) => {
+        window.localStorage.setItem(LOCAL_STORAGE_CONST.MOBILE_UI, JSON.stringify(bool))
+      })
+    )
+
+    this.subscriptions.push(
+      this.actions$.pipe(
+        ofType(ACTION_TYPES.UPDATE_REGIONS_SELECTIONS)
+      ).subscribe(action => {
+        const { config = {} } = action as UserConfigAction
+        const { savedRegionsSelection } = config
+        const simpleSRSs = savedRegionsSelection.map(({ id, name, templateSelected, parcellationSelected, regionsSelected }) => {
+          return {
+            id,
+            name,
+            tName: templateSelected.name,
+            pName: parcellationSelected.name,
+            rSelected: regionsSelected.map(({ ngId, labelIndex }) => generateLabelIndexId({ ngId, labelIndex }))
+          } as SimpleRegionSelection
+        })
+
+        /**
+         * TODO save server side on per user basis
+         */
+        window.localStorage.setItem(LOCAL_STORAGE_CONST.SAVED_REGION_SELECTIONS, JSON.stringify(simpleSRSs))
+      })
+    )
+
+    const savedSRSsString = window.localStorage.getItem(LOCAL_STORAGE_CONST.SAVED_REGION_SELECTIONS)
+    const savedSRSs:SimpleRegionSelection[] = savedSRSsString && JSON.parse(savedSRSsString)
+
+    this.restoreSRSsFromStorage$ = viewerState$.pipe(
+      filter(() => !!savedSRSs),
+      select('fetchedTemplates'),
+      distinctUntilChanged(),
+      map(fetchedTemplates => savedSRSs.map(({ id, name, tName, pName, rSelected }) => {
+        const templateSelected = fetchedTemplates.find(t => t.name === tName)
+        const parcellationSelected = templateSelected && templateSelected.parcellations.find(p => p.name === pName)
+        const regionsSelected = parcellationSelected && rSelected.map(labelIndexId => recursiveFindRegionWithLabelIndexId({ regions: parcellationSelected.regions, labelIndexId, inheritedNgId: parcellationSelected.ngId }))
+        return {
+          templateSelected,
+          parcellationSelected,
+          id,
+          name,
+          regionsSelected
+        } as RegionSelection
+      })),
+      filter(RSs => RSs.every(rs => rs.regionsSelected && rs.regionsSelected.every(r => !!r))),
+      take(1),
+      map(savedRegionsSelection => {
+        return {
+          type: ACTION_TYPES.UPDATE_REGIONS_SELECTIONS,
+          config: { savedRegionsSelection }
+        }
+      })
+    )
+  }
+
+  ngOnDestroy(){
+    while(this.subscriptions.length > 0) {
+      this.subscriptions.pop().unsubscribe()
+    }
+  }
+
+  /**
+   * Temmplate Parcellation Regions selected
+   */
+  private tprSelected$: Observable<{templateSelected:any, parcellationSelected: any, regionsSelected: any[]}>
+  private savedRegionsSelections$: Observable<any[]>
+  private parcellationSelected$: Observable<any>
+
+  @Effect()
+  public onSaveRegionsSelection$: Observable<any>
+
+  @Effect()
+  public onDeleteRegionsSelection$: Observable<any>
+
+  @Effect()
+  public onUpdateRegionsSelection$: Observable<any>
+
+  @Effect()
+  public restoreSRSsFromStorage$: Observable<any>
+}
diff --git a/src/services/state/viewerConfig.store.ts b/src/services/state/viewerConfig.store.ts
index eb634fee9dbeda27a7e5915258048bd43b93c885..6f5579c39822824bef4f0f79d3f5238ad16afc09 100644
--- a/src/services/state/viewerConfig.store.ts
+++ b/src/services/state/viewerConfig.store.ts
@@ -1,8 +1,10 @@
 import { Action } from "@ngrx/store";
+import { LOCAL_STORAGE_CONST } from "src/util/constants";
 
 export interface ViewerConfiguration{
   gpuLimit: number
   animation: boolean
+  useMobileUI: boolean
 }
 
 interface ViewerConfigurationAction extends Action{
@@ -20,18 +22,54 @@ export const CONFIG_CONSTANTS = {
   defaultAnimation: true
 }
 
-export const ACTION_TYPES = {
+const ACTION_TYPES = {
+  SET_ANIMATION: `SET_ANIMATION`,
   UPDATE_CONFIG: `UPDATE_CONFIG`,
-  CHANGE_GPU_LIMIT: `CHANGE_GPU_LIMIT`
+  CHANGE_GPU_LIMIT: `CHANGE_GPU_LIMIT`,
+  SET_MOBILE_UI: 'SET_MOBILE_UI'
 }
 
-const lsGpuLimit = localStorage.getItem('iv-gpulimit')
+// get gpu limit
+const lsGpuLimit = localStorage.getItem(LOCAL_STORAGE_CONST.GPU_LIMIT)
+const lsAnimationFlag = localStorage.getItem(LOCAL_STORAGE_CONST.ANIMATION)
 const gpuLimit = lsGpuLimit && !isNaN(Number(lsGpuLimit))
   ? Number(lsGpuLimit)
   : CONFIG_CONSTANTS.defaultGpuLimit
 
-export function viewerConfigState(prevState:ViewerConfiguration = {animation: CONFIG_CONSTANTS.defaultAnimation, gpuLimit}, action:ViewerConfigurationAction) {
+// get animation flag
+const animation = lsAnimationFlag && lsAnimationFlag === 'true'
+  ? true
+  : lsAnimationFlag === 'false'
+    ? false
+    : CONFIG_CONSTANTS.defaultAnimation
+
+// get mobile ui setting
+// UA sniff only if not useMobileUI not explicitly set
+const getIsMobile = () => {
+  const ua = window && window.navigator && window.navigator.userAgent
+    ? window.navigator.userAgent
+    : ''
+
+  /* https://stackoverflow.com/a/25394023/6059235 */
+  return /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini|Mobile|mobile|CriOS/i.test(ua)
+}
+const useMobileUIStroageValue = window.localStorage.getItem(LOCAL_STORAGE_CONST.MOBILE_UI) 
+
+const onLoadViewerconfig: ViewerConfiguration = {
+  animation,
+  gpuLimit,
+  useMobileUI: (useMobileUIStroageValue && useMobileUIStroageValue === 'true') || getIsMobile()
+}
+
+export function viewerConfigState(prevState:ViewerConfiguration = onLoadViewerconfig, action:ViewerConfigurationAction) {
   switch (action.type) {
+    case ACTION_TYPES.SET_MOBILE_UI:
+      const { payload } = action
+      const { useMobileUI } = payload
+      return {
+        ...prevState,
+        useMobileUI
+      }
     case ACTION_TYPES.UPDATE_CONFIG:
       return {
         ...prevState,
@@ -48,7 +86,8 @@ export function viewerConfigState(prevState:ViewerConfiguration = {animation: CO
         ...prevState,
         gpuLimit: newGpuLimit
       }
-    default:
-      return prevState
+    default: return prevState
   }
-}
\ No newline at end of file
+}
+
+export const VIEWER_CONFIG_ACTION_TYPES = ACTION_TYPES
\ No newline at end of file
diff --git a/src/services/state/viewerState.store.ts b/src/services/state/viewerState.store.ts
index 57ea4802e57cb243e34ac70bd50cd6eefa3ab97c..5bf19bbae79fdf73b7a0fdc30aa66c6a6fbd873c 100644
--- a/src/services/state/viewerState.store.ts
+++ b/src/services/state/viewerState.store.ts
@@ -1,5 +1,12 @@
-import { Action } from '@ngrx/store'
+import { Action, Store, select } from '@ngrx/store'
 import { UserLandmark } from 'src/atlasViewer/atlasViewer.apiService.service';
+import { NgLayerInterface } from 'src/atlasViewer/atlasViewer.component';
+import { Injectable } from '@angular/core';
+import { Actions, Effect, ofType } from '@ngrx/effects';
+import { withLatestFrom, map, shareReplay, startWith, filter, distinctUntilChanged } from 'rxjs/operators';
+import { Observable } from 'rxjs';
+import { MOUSEOVER_USER_LANDMARK } from './uiState.store';
+import { generateLabelIndexId } from '../stateStore.service';
 
 export interface ViewerStateInterface{
   fetchedTemplates : any[]
@@ -13,6 +20,8 @@ export interface ViewerStateInterface{
 
   navigation : any | null
   dedicatedView : string[]
+
+  loadedNgLayers: NgLayerInterface[]
 }
 
 export interface AtlasAction extends Action{
@@ -31,12 +40,17 @@ export interface AtlasAction extends Action{
   deselectLandmarks : UserLandmark[]
 
   navigation? : any
+
+  payload: any
 }
 
 export function viewerState(
   state:Partial<ViewerStateInterface> = {
     landmarksSelected : [],
-    fetchedTemplates : []
+    fetchedTemplates : [],
+    loadedNgLayers: [],
+    regionsSelected: [],
+    userLandmarks: []
   },
   action:AtlasAction
 ){
@@ -102,7 +116,10 @@ export function viewerState(
       const { updatedParcellation } = action
       return {
         ...state,
-        parcellationSelected: updatedParcellation
+        parcellationSelected: {
+          ...updatedParcellation,
+          updated: true
+        }
       }
     }
     case SELECT_REGIONS:
@@ -129,6 +146,28 @@ export function viewerState(
         userLandmarks: action.landmarks
       } 
     }
+    /**
+     * TODO
+     * duplicated with ngViewerState.layers ?
+     */
+    case NEHUBA_LAYER_CHANGED: {
+      if (!window['viewer']) {
+        return {
+          ...state,
+          loadedNgLayers: []
+        }
+      } else {
+        return {
+          ...state,
+          loadedNgLayers: (window['viewer'].layerManager.managedLayers as any[]).map(obj => ({
+            name : obj.name,
+            type : obj.initialSpecification.type,
+            source : obj.sourceUrl,
+            visible : obj.visible
+          }) as NgLayerInterface)
+        }
+      }
+    }
     default :
       return state
   }
@@ -145,8 +184,200 @@ export const CHANGE_NAVIGATION = 'CHANGE_NAVIGATION'
 export const SELECT_PARCELLATION = `SELECT_PARCELLATION`
 export const UPDATE_PARCELLATION = `UPDATE_PARCELLATION`
 
+export const DESELECT_REGIONS = `DESELECT_REGIONS`
 export const SELECT_REGIONS = `SELECT_REGIONS`
 export const SELECT_REGIONS_WITH_ID = `SELECT_REGIONS_WITH_ID`
 export const SELECT_LANDMARKS = `SELECT_LANDMARKS`
 export const DESELECT_LANDMARKS = `DESELECT_LANDMARKS`
 export const USER_LANDMARKS = `USER_LANDMARKS`
+
+export const ADD_TO_REGIONS_SELECTION_WITH_IDS = `ADD_TO_REGIONS_SELECTION_WITH_IDS`
+
+export const NEHUBA_LAYER_CHANGED = `NEHUBA_LAYER_CHANGED`
+
+@Injectable({
+  providedIn: 'root'
+})
+
+export class ViewerStateUseEffect{
+  constructor(
+    private actions$: Actions,
+    private store$: Store<any>
+  ){
+    this.currentLandmarks$ = this.store$.pipe(
+      select('viewerState'),
+      select('userLandmarks'),
+      shareReplay(1),
+    )
+
+    this.removeUserLandmarks = this.actions$.pipe(
+      ofType(ACTION_TYPES.REMOVE_USER_LANDMARKS),
+      withLatestFrom(this.currentLandmarks$),
+      map(([action, currentLandmarks]) => {
+        const { landmarkIds } = (action as AtlasAction).payload
+        for ( const rmId of landmarkIds ){
+          const idx = currentLandmarks.findIndex(({ id }) => id === rmId)
+          if (idx < 0) console.warn(`remove userlandmark with id ${rmId} does not exist`)
+        }
+        const removeSet = new Set(landmarkIds)
+        return {
+          type: USER_LANDMARKS,
+          landmarks: currentLandmarks.filter(({ id }) => !removeSet.has(id))
+        }
+      })
+    )
+
+    this.addUserLandmarks$ = this.actions$.pipe(
+      ofType(ACTION_TYPES.ADD_USERLANDMARKS),
+      withLatestFrom(this.currentLandmarks$),
+      map(([action, currentLandmarks]) => {
+        const { landmarks } = action as AtlasAction
+        const landmarkMap = new Map()
+        for (const landmark of currentLandmarks) {
+          const { id } = landmark
+          landmarkMap.set(id, landmark)
+        }
+        for (const landmark of landmarks) {
+          const { id } = landmark
+          if (landmarkMap.has(id)) {
+            console.warn(`Attempting to add a landmark that already exists, id: ${id}`)
+          } else {
+            landmarkMap.set(id, landmark)
+          }
+        }
+        const userLandmarks = Array.from(landmarkMap).map(([id, landmark]) => landmark)
+        return {
+          type: USER_LANDMARKS,
+          landmarks: userLandmarks
+        }
+      })
+    )
+
+    this.mouseoverUserLandmarks = this.actions$.pipe(
+      ofType(ACTION_TYPES.MOUSEOVER_USER_LANDMARK_LABEL),
+      withLatestFrom(this.currentLandmarks$),
+      map(([ action, currentLandmarks ]) => {
+        const { payload } = action as any
+        const { label } = payload
+        if (!label) return {
+          type: MOUSEOVER_USER_LANDMARK,
+          payload: {
+            userLandmark: null
+          }
+        }
+
+        const idx = Number(label.replace('label=', ''))
+        if (isNaN(idx)) {
+          console.warn(`Landmark index could not be parsed as a number: ${idx}`)
+          return {
+            type: MOUSEOVER_USER_LANDMARK,
+            payload: {
+              userLandmark: null
+            }
+          }
+        }
+
+        return {
+          type: MOUSEOVER_USER_LANDMARK,
+          payload: {
+            userLandmark: currentLandmarks[idx]
+          }
+        }
+      })
+
+    )
+
+    const doubleClickOnViewer$ = this.actions$.pipe(
+      ofType(ACTION_TYPES.DOUBLE_CLICK_ON_VIEWER),
+      map(action => {
+        const { payload } = action as any
+        const { segments, landmark, userLandmark } = payload
+        return { segments, landmark, userLandmark }
+      }),
+      shareReplay(1)
+    )
+
+    this.doubleClickOnViewerToggleRegions$ = doubleClickOnViewer$.pipe(
+      filter(({ segments }) => segments && segments.length > 0),
+      withLatestFrom(this.store$.pipe(
+        select('viewerState'),
+        select('regionsSelected'),
+        distinctUntilChanged(),
+        startWith([])
+      )),
+      map(([{ segments }, regionsSelected]) => {
+        const selectedSet = new Set(regionsSelected.map(generateLabelIndexId))
+        const toggleArr = segments.map(({ segment, layer }) => generateLabelIndexId({ ngId: layer.name, ...segment }))
+
+        const deleteFlag = toggleArr.some(id => selectedSet.has(id))
+
+        for (const id of toggleArr){
+          if (deleteFlag) selectedSet.delete(id)
+          else selectedSet.add(id)
+        }
+        
+        return {
+          type: SELECT_REGIONS_WITH_ID,
+          selectRegionIds: [...selectedSet]
+        }
+      })
+    )
+
+    this.doubleClickOnViewerToggleLandmark$ = doubleClickOnViewer$.pipe(
+      filter(({ landmark }) => !!landmark),
+      withLatestFrom(this.store$.pipe(
+        select('viewerState'),
+        select('landmarksSelected'),
+        startWith([])
+      )),
+      map(([{ landmark }, selectedSpatialDatas]) => {
+
+        const selectedIdx = selectedSpatialDatas.findIndex(data => data.name === landmark.name)
+
+        const newSelectedSpatialDatas = selectedIdx >= 0
+          ? selectedSpatialDatas.filter((_, idx) => idx !== selectedIdx)
+          : selectedSpatialDatas.concat(landmark)
+
+        return {
+          type: SELECT_LANDMARKS,
+          landmarks: newSelectedSpatialDatas
+        }
+      })
+    )
+
+    this.doubleClickOnViewerToogleUserLandmark$ = doubleClickOnViewer$.pipe(
+      filter(({ userLandmark }) => userLandmark)
+    )
+  }
+
+  private currentLandmarks$: Observable<any[]>
+
+  @Effect()
+  mouseoverUserLandmarks: Observable<any>
+
+  @Effect()
+  removeUserLandmarks: Observable<any>
+
+  @Effect()
+  addUserLandmarks$: Observable<any>
+
+  @Effect()
+  doubleClickOnViewerToggleRegions$: Observable<any>
+
+  @Effect()
+  doubleClickOnViewerToggleLandmark$: Observable<any>
+
+  // @Effect()
+  doubleClickOnViewerToogleUserLandmark$: Observable<any>
+}
+
+const ACTION_TYPES = {
+  ADD_USERLANDMARKS: `ADD_USERLANDMARKS`,
+  REMOVE_USER_LANDMARKS: 'REMOVE_USER_LANDMARKS',
+  MOUSEOVER_USER_LANDMARK_LABEL: 'MOUSEOVER_USER_LANDMARK_LABEL',
+
+  SINGLE_CLICK_ON_VIEWER: 'SINGLE_CLICK_ON_VIEWER',
+  DOUBLE_CLICK_ON_VIEWER: 'DOUBLE_CLICK_ON_VIEWER'
+}
+
+export const VIEWERSTATE_ACTION_TYPES = ACTION_TYPES
\ No newline at end of file
diff --git a/src/services/stateStore.service.ts b/src/services/stateStore.service.ts
index e6639b7e1b6ab1c255887ca51ddffa9f10fed3e4..842499c18bcb4d3083a9494fab4f71ca85ca96ad 100644
--- a/src/services/stateStore.service.ts
+++ b/src/services/stateStore.service.ts
@@ -4,9 +4,14 @@ export { viewerConfigState } from './state/viewerConfig.store'
 export { pluginState } from './state/pluginState.store'
 export { NgViewerAction, NgViewerStateInterface, ngViewerState, ADD_NG_LAYER, FORCE_SHOW_SEGMENT, HIDE_NG_LAYER, REMOVE_NG_LAYER, SHOW_NG_LAYER } from './state/ngViewerState.store'
 export { CHANGE_NAVIGATION, AtlasAction, DESELECT_LANDMARKS, FETCHED_TEMPLATE, NEWVIEWER, SELECT_LANDMARKS, SELECT_PARCELLATION, SELECT_REGIONS, USER_LANDMARKS, ViewerStateInterface, viewerState } from './state/viewerState.store'
-export { DataEntry, ParcellationRegion, DataStateInterface, DatasetAction, FETCHED_DATAENTRIES, FETCHED_METADATA, FETCHED_SPATIAL_DATA, Landmark, OtherLandmarkGeometry, PlaneLandmarkGeometry, PointLandmarkGeometry, Property, Publication, ReferenceSpace, dataStore, File, FileSupplementData } from './state/dataStore.store'
+export { DataEntry, ParcellationRegion, DataStateInterface, DatasetAction, FETCHED_DATAENTRIES, FETCHED_SPATIAL_DATA, Landmark, OtherLandmarkGeometry, PlaneLandmarkGeometry, PointLandmarkGeometry, Property, Publication, ReferenceSpace, dataStore, File, FileSupplementData } from './state/dataStore.store'
 export { CLOSE_SIDE_PANEL, MOUSE_OVER_LANDMARK, MOUSE_OVER_SEGMENT, OPEN_SIDE_PANEL, TOGGLE_SIDE_PANEL, UIAction, UIStateInterface, uiState } from './state/uiState.store'
 export { SPATIAL_GOTO_PAGE, SpatialDataEntries, SpatialDataStateInterface, UPDATE_SPATIAL_DATA, spatialSearchState } from './state/spatialSearchState.store'
+export { userConfigState, UserConfigStateUseEffect, USER_CONFIG_ACTION_TYPES } from './state/userConfigState.store'
+
+export const GENERAL_ACTION_TYPES = {
+  ERROR: 'ERROR'
+}
 
 export function safeFilter(key:string){
   return filter((state:any)=>
diff --git a/src/services/toastService.service.ts b/src/services/toastService.service.ts
deleted file mode 100644
index 6c755753f0165ba18eca5b3e4e73f40298592e1f..0000000000000000000000000000000000000000
--- a/src/services/toastService.service.ts
+++ /dev/null
@@ -1,18 +0,0 @@
-import { Injectable, TemplateRef } from "@angular/core";
-
-@Injectable({
-  providedIn : 'root'
-})
-export class ToastService{
-  showToast: (message: string | TemplateRef<any>, config?: Partial<ToastConfig>)=>()=>void
-}
-
-export interface ToastConfig{
-  dismissable: boolean
-  timeout: number
-}
-
-export const defaultToastConfig : ToastConfig = {
-  dismissable: true,
-  timeout : 2000
-}
\ No newline at end of file
diff --git a/src/services/uiService.service.ts b/src/services/uiService.service.ts
new file mode 100644
index 0000000000000000000000000000000000000000..92280bfdf9aa5a3885498d1a8fd5f56d06f00831
--- /dev/null
+++ b/src/services/uiService.service.ts
@@ -0,0 +1,37 @@
+import { Injectable } from "@angular/core";
+import { MatSnackBar, MatSnackBarConfig } from "@angular/material";
+import { AtlasViewerAPIServices } from "src/atlasViewer/atlasViewer.apiService.service";
+import { ToastHandler } from "src/util/pluginHandlerClasses/toastHandler";
+
+@Injectable({
+  providedIn: 'root'
+})
+
+export class UIService{
+  constructor(
+    private snackbar: MatSnackBar,
+    private apiService: AtlasViewerAPIServices
+  ){
+    this.apiService.interactiveViewer.uiHandle.getToastHandler = () => {
+      const toasthandler = new ToastHandler()
+      let handle
+      toasthandler.show = () => {
+        handle = this.showMessage(toasthandler.message, null, {
+          duration: toasthandler.timeout,
+        })
+        
+      }
+
+      toasthandler.hide = () => {
+        handle && handle.dismiss()
+        handle = null
+      }
+      
+      return toasthandler
+    } 
+  }
+
+  showMessage(message: string, actionBtnTxt: string = 'Dismiss', config?: Partial<MatSnackBarConfig>){
+    return this.snackbar.open(message, actionBtnTxt, config)
+  }
+}
\ No newline at end of file
diff --git a/src/services/zipFileDownload.service.ts b/src/services/zipFileDownload.service.ts
deleted file mode 100644
index 434a11338646477647249970c75463c7b17fd2c2..0000000000000000000000000000000000000000
--- a/src/services/zipFileDownload.service.ts
+++ /dev/null
@@ -1,58 +0,0 @@
-import { Injectable } from "@angular/core";
-import {HttpClient} from "@angular/common/http";
-import {AtlasViewerConstantsServices} from "src/atlasViewer/atlasViewer.constantService.service";
-
-@Injectable({ providedIn: 'root' })
-export class ZipFileDownloadService {
-
-    constructor(private httpClient: HttpClient, private constantService: AtlasViewerConstantsServices) {}
-
-    downloadZip(publicationsText, fileName) {
-        const correctedName = fileName.replace(/[|&;$%@"<>()+,/]/g, "")
-        this.httpClient.post(this.constantService.backendUrl + 'datasets/downloadParcellationThemself', {
-                fileName: correctedName,
-                publicationsText: publicationsText,
-            },{responseType: "text"}
-        ).subscribe(data => {
-            this.downloadFile(data, correctedName)
-        })
-    }
-
-    downloadFile(data, fileName) {
-
-        const contentType = 'application/zip';
-        const b64Data = data
-
-
-        const b64toBlob = (b64Data, contentType='', sliceSize=512) => {
-            const byteCharacters = atob(b64Data);
-            const byteArrays = [];
-
-            for (let offset = 0; offset < byteCharacters.length; offset += sliceSize) {
-                const slice = byteCharacters.slice(offset, offset + sliceSize);
-
-                const byteNumbers = new Array(slice.length);
-                for (let i = 0; i < slice.length; i++) {
-                    byteNumbers[i] = slice.charCodeAt(i);
-                }
-
-                const byteArray = new Uint8Array(byteNumbers);
-                byteArrays.push(byteArray);
-            }
-
-            const blob = new Blob(byteArrays, {type: contentType});
-            return blob;
-        }
-
-
-        const blob = b64toBlob(b64Data, contentType);
-        // const blob = new Blob([data], { type: 'text/csv' });
-        const url= window.URL.createObjectURL(blob);
-        const anchor = document.createElement("a");
-        anchor.download = fileName + '.zip';
-        anchor.href = url;
-        anchor.click();
-    }
-
-
-}
\ No newline at end of file
diff --git a/src/theme.scss b/src/theme.scss
new file mode 100644
index 0000000000000000000000000000000000000000..e85cfdce26366235f96280ccae6f742f46218b35
--- /dev/null
+++ b/src/theme.scss
@@ -0,0 +1,21 @@
+@import '~@angular/material/theming';
+
+@include  mat-core();
+
+$iv-theme-primary: mat-palette($mat-indigo);
+$iv-theme-accent: mat-palette($mat-amber);
+$iv-theme-warn: mat-palette($mat-red);
+
+$iv-theme: mat-light-theme($iv-theme-primary, $iv-theme-accent, $iv-theme-warn);
+
+@include angular-material-theme($iv-theme);
+
+$iv-dark-theme-primary: mat-palette($mat-blue);
+$iv-dark-theme-accent:  mat-palette($mat-amber, A200, A100, A400);
+$iv-dark-theme-warn:    mat-palette($mat-red);
+$iv-dark-theme:   mat-dark-theme($iv-dark-theme-primary, $iv-dark-theme-accent, $iv-dark-theme-warn);
+
+[darktheme=true]
+{
+  @include angular-material-theme($iv-dark-theme);
+}
diff --git a/src/ui/config/config.component.ts b/src/ui/config/config.component.ts
index e0104405a1b4bc8efda4e8d5b8e18af4598b7b06..d5378ffde60b05881cb6d35b811892619ae24a1b 100644
--- a/src/ui/config/config.component.ts
+++ b/src/ui/config/config.component.ts
@@ -1,8 +1,18 @@
 import { Component, OnInit, OnDestroy } from '@angular/core'
 import { Store, select } from '@ngrx/store';
-import { ViewerConfiguration, ACTION_TYPES } from 'src/services/state/viewerConfig.store'
-import { Observable, Subject, Subscription } from 'rxjs';
-import { map, distinctUntilChanged, debounce, debounceTime } from 'rxjs/operators';
+import { ViewerConfiguration, VIEWER_CONFIG_ACTION_TYPES } from 'src/services/state/viewerConfig.store'
+import { Observable, Subscription, combineLatest } from 'rxjs';
+import { map, distinctUntilChanged, startWith, debounceTime, tap } from 'rxjs/operators';
+import { MatSlideToggleChange, MatSliderChange } from '@angular/material';
+import { NG_VIEWER_ACTION_TYPES, SUPPORTED_PANEL_MODES } from 'src/services/state/ngViewerState.store';
+import { isIdentityQuat } from '../nehubaContainer/util';
+import { AtlasViewerConstantsServices } from 'src/atlasViewer/atlasViewer.constantService.service';
+
+const GPU_TOOLTIP = `Higher GPU usage can cause crashes on lower end machines`
+const ANIMATION_TOOLTIP = `Animation can cause slowdowns in lower end machines`
+const MOBILE_UI_TOOLTIP = `Mobile UI enables touch controls`
+const ROOT_TEXT_ORDER : [string, string, string, string] = ['Coronal', 'Sagittal', 'Axial', '3D']
+const OBLIQUE_ROOT_TEXT_ORDER : [string, string, string, string] = ['Slice View 1', 'Slice View 2', 'Slice View 3', '3D']
 
 @Component({
   selector: 'config-component',
@@ -14,41 +24,85 @@ import { map, distinctUntilChanged, debounce, debounceTime } from 'rxjs/operator
 
 export class ConfigComponent implements OnInit, OnDestroy{
 
+  public GPU_TOOLTIP = GPU_TOOLTIP
+  public ANIMATION_TOOLTIP = ANIMATION_TOOLTIP
+  public MOBILE_UI_TOOLTIP = MOBILE_UI_TOOLTIP
+  public supportedPanelModes = SUPPORTED_PANEL_MODES
+
   /**
    * in MB
    */
   public gpuLimit$: Observable<number>
-  public keydown$: Subject<Event> = new Subject()
+
+  public useMobileUI$: Observable<boolean>
+  public animationFlag$: Observable<boolean>
   private subscriptions: Subscription[] = []
 
   public gpuMin : number = 100
   public gpuMax : number = 1000
+
+  public panelMode$: Observable<string>
   
-  constructor(private store: Store<ViewerConfiguration>) {
+  private panelOrder: string
+  private panelOrder$: Observable<string>
+  public panelTexts$: Observable<[string, string, string, string]>
+
+  private viewerObliqueRotated$: Observable<boolean>
+
+  constructor(
+    private store: Store<ViewerConfiguration>,
+    private constantService: AtlasViewerConstantsServices  
+  ) {
+
+    this.useMobileUI$ = this.constantService.useMobileUI$
+
     this.gpuLimit$ = this.store.pipe(
       select('viewerConfigState'),
       map((config:ViewerConfiguration) => config.gpuLimit),
       distinctUntilChanged(),
       map(v => v / 1e6)
     )
+
+    this.animationFlag$ = this.store.pipe(
+      select('viewerConfigState'),
+      map((config:ViewerConfiguration) => config.animation),
+    )
+
+    this.panelMode$ = this.store.pipe(
+      select('ngViewerState'),
+      select('panelMode'),
+      startWith(SUPPORTED_PANEL_MODES[0])
+    )
+
+    this.panelOrder$ = this.store.pipe(
+      select('ngViewerState'),
+      select('panelOrder')
+    )
+    
+    this.viewerObliqueRotated$ = this.store.pipe(
+      select('viewerState'),
+      select('navigation'),
+      map(navigation => (navigation && navigation.orientation) || [0, 0, 0, 1]),
+      debounceTime(100),
+      map(isIdentityQuat),
+      map(flag => !flag),
+      distinctUntilChanged(),
+    )
+
+    this.panelTexts$ = combineLatest(
+      this.panelOrder$.pipe(
+        map(string => string.split('').map(s => Number(s))),
+      ),
+      this.viewerObliqueRotated$
+    ).pipe(
+      map(([arr, isObliqueRotated]) => arr.map(idx => (isObliqueRotated ? OBLIQUE_ROOT_TEXT_ORDER : ROOT_TEXT_ORDER)[idx]) as [string, string, string, string]),
+      startWith(ROOT_TEXT_ORDER)
+    )
   }
 
   ngOnInit(){
     this.subscriptions.push(
-      this.keydown$.pipe(
-        debounceTime(250)
-      ).subscribe(ev => {
-        /**
-         * maybe greak in FF. ev.srcElement is IE non standard property
-         */
-        const val = (<HTMLInputElement>ev.srcElement).value
-        const numVal = val && Number(val)
-        if (isNaN(numVal) || numVal < this.gpuMin || numVal > this.gpuMax )
-          return
-        this.setGpuPreset({
-          value: numVal
-        })
-      })
+      this.panelOrder$.subscribe(panelOrder => this.panelOrder = panelOrder)
     )
   }
 
@@ -56,20 +110,74 @@ export class ConfigComponent implements OnInit, OnDestroy{
     this.subscriptions.forEach(s => s.unsubscribe())
   }
 
-  public wheelEvent(ev:WheelEvent) {
-    const delta = ev.deltaY * -1e5
+  public toggleMobileUI(ev: MatSlideToggleChange){
+    const { checked } = ev
     this.store.dispatch({
-      type: ACTION_TYPES.CHANGE_GPU_LIMIT,
-      payload: { delta }
+      type: VIEWER_CONFIG_ACTION_TYPES.SET_MOBILE_UI,
+      payload: {
+        useMobileUI: checked
+      }
     })
   }
 
-  public setGpuPreset({value}: {value: number}) {
+  public toggleAnimationFlag(ev: MatSlideToggleChange ){
+    const { checked } = ev
     this.store.dispatch({
-      type: ACTION_TYPES.UPDATE_CONFIG,
+      type: VIEWER_CONFIG_ACTION_TYPES.UPDATE_CONFIG,
       config: {
-        gpuLimit: value * 1e6
+        animation: checked
       }
     })
   }
+
+  public handleMatSliderChange(ev:MatSliderChange){
+    this.store.dispatch({
+      type: VIEWER_CONFIG_ACTION_TYPES.UPDATE_CONFIG,
+      config: {
+        gpuLimit: ev.value * 1e6
+      }
+    })
+  }
+  usePanelMode(panelMode: string){
+    this.store.dispatch({
+      type: NG_VIEWER_ACTION_TYPES.SWITCH_PANEL_MODE,
+      payload: { panelMode }
+    })
+  }
+
+  handleDrop(event:DragEvent){
+    event.preventDefault()
+    const droppedAttri = (event.target as HTMLElement).getAttribute('panel-order')
+    const draggedAttri = event.dataTransfer.getData('text/plain')
+    if (droppedAttri === draggedAttri) return
+    const idx1 = Number(droppedAttri)
+    const idx2 = Number(draggedAttri)
+    const arr = this.panelOrder.split('');
+
+    [arr[idx1], arr[idx2]] = [arr[idx2], arr[idx1]]
+    this.store.dispatch({
+      type: NG_VIEWER_ACTION_TYPES.SET_PANEL_ORDER,
+      payload: { panelOrder: arr.join('') }
+    })
+  }
+  handleDragOver(event:DragEvent){
+    event.preventDefault()
+    const target = (event.target as HTMLElement)
+    target.classList.add('onDragOver')
+  }
+  handleDragLeave(event:DragEvent){
+    (event.target as HTMLElement).classList.remove('onDragOver')
+  }
+  handleDragStart(event:DragEvent){
+    const target = (event.target as HTMLElement)
+    const attri = target.getAttribute('panel-order')
+    event.dataTransfer.setData('text/plain', attri)
+    
+  }
+  handleDragend(event:DragEvent){
+    const target = (event.target as HTMLElement)
+    target.classList.remove('onDragOver')
+  }
+
+  public stepSize: number = 10
 }
\ No newline at end of file
diff --git a/src/ui/config/config.style.css b/src/ui/config/config.style.css
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..907391412ce3868cca03f2b38599f2f551238085 100644
--- a/src/ui/config/config.style.css
+++ b/src/ui/config/config.style.css
@@ -0,0 +1,14 @@
+.config-transition
+{
+  transition: background-color ease-in-out 200ms;
+}
+
+.config-transition:hover
+{
+  background-color: rgba(128,128,128,0.1);
+}
+
+.onDragOver
+{
+  background-color: rgba(128,128,128,0.2);
+}
\ No newline at end of file
diff --git a/src/ui/config/config.template.html b/src/ui/config/config.template.html
index 18f84d0b297f9ef71422960695f032c567faafb1..adfe40f939b86f9a8ccf7884b49ec0f426a524aa 100644
--- a/src/ui/config/config.template.html
+++ b/src/ui/config/config.template.html
@@ -1,32 +1,205 @@
-<div class="input-group">
-  <span class="input-group-prepend">
-    <span class="input-group-text">
-      GPU Limit
-    </span>
-  </span>
-  <input
-    (wheel)="wheelEvent($event)"
-    type="number"
-    [min]="100"
-    [max]="1000"
-    [step]="0.1"
-    class="form-control"
-    (input)="keydown$.next($event)"
-    [value]="gpuLimit$ | async ">
-
-  <div class="input-group-append">
-
-    <div (click)="setGpuPreset({ value: 100 })" class="btn btn-outline-secondary">
-        100
+<mat-tab-group>
+  <!-- viewer preference -->
+  <mat-tab *ngIf="false" label="Viewer Preference">
+    
+    <div class="m-2">
+      <div class="mat-h2">
+        Rearrange Viewports
       </div>
-      <div (click)="setGpuPreset({ value: 500 })" class="btn btn-outline-secondary">
-        500
+      <div class="mat-h4 text-muted">
+        Click and drag to rearrange viewport positions
       </div>
-      <div (click)="setGpuPreset({ value: 1000 })" class="btn btn-outline-secondary">
-        1000
+      <current-layout class="d-flex w-20em h-15em p-2">
+        <div
+          matRipple
+          (dragstart)="handleDragStart($event)"
+          (dragover)="handleDragOver($event)"
+          (dragleave)="handleDragLeave($event)"
+          (dragend)="handleDragend($event)"
+          (drop)="handleDrop($event)"
+          class="w-100 h-100 config-transition"
+          cell-i>
+          <div
+            [attr.panel-order]="0"
+            class="config-transition w-100 h-100 d-flex align-items-center justify-content-center border"
+            draggable="true">
+            {{ (panelTexts$ | async)[0] }}
+          </div>
+        </div>
+        <div
+          matRipple
+          (dragstart)="handleDragStart($event)"
+          (dragover)="handleDragOver($event)"
+          (dragleave)="handleDragLeave($event)"
+          (dragend)="handleDragend($event)"
+          (drop)="handleDrop($event)"
+          class="w-100 h-100 config-transition"
+          cell-ii>
+          <div
+            [attr.panel-order]="1"
+            class="config-transition w-100 h-100 d-flex align-items-center justify-content-center border"
+            draggable="true">
+            {{ (panelTexts$ | async)[1] }}
+          </div>
+        </div>
+        <div
+          matRipple
+          (dragstart)="handleDragStart($event)"
+          (dragover)="handleDragOver($event)"
+          (dragleave)="handleDragLeave($event)"
+          (dragend)="handleDragend($event)"
+          (drop)="handleDrop($event)"
+          class="w-100 h-100 config-transition"
+          cell-iii>
+          <div
+            [attr.panel-order]="2"
+            class="config-transition w-100 h-100 d-flex align-items-center justify-content-center border"
+            draggable="true">
+            {{ (panelTexts$ | async)[2] }}
+          </div>
+        </div>
+        <div
+          matRipple
+          (dragstart)="handleDragStart($event)"
+          (dragover)="handleDragOver($event)"
+          (dragleave)="handleDragLeave($event)"
+          (dragend)="handleDragend($event)"
+          (drop)="handleDrop($event)"
+          class="w-100 h-100 config-transition"
+          cell-iv>
+          <div
+            [attr.panel-order]="3"
+            class="config-transition w-100 h-100 d-flex align-items-center justify-content-center border"
+            draggable="true">
+            {{ (panelTexts$ | async)[3] }}
+          </div>
+        </div>
+      </current-layout>
+
+      <div class="mat-body text-muted font-italic">
+        Plane designation refers to default orientation (without oblique rotation).
+      </div>
+    </div>
+
+    <!-- scroll window -->
+
+    <div class="m-2">
+      <div class="mat-h2">
+        Select a viewports configuration
+      </div>
+    </div>
+
+    <div class="d-flex flex-row flex-nowrap p-2">
+
+      <!-- Four Panel Card -->
+      <button
+        class="m-2 p-2"
+        mat-flat-button
+        (click)="usePanelMode(supportedPanelModes[0])"
+        [color]="(panelMode$ | async) === supportedPanelModes[0] ? 'primary' : null">
+        <layout-four-panel class="d-block w-10em h-7em">
+          <div class="border w-100 h-100" cell-i></div>
+          <div class="border w-100 h-100" cell-ii></div>
+          <div class="border w-100 h-100" cell-iii></div>
+          <div class="border w-100 h-100" cell-iv></div>
+        </layout-four-panel>
+      </button>
+
+      <!-- temporarily disabling 1-3 layout -->
+
+      <!-- horizontal 1 3 card -->
+      <!-- <button
+        class="m-2 p-2"
+        mat-flat-button
+        (click)="usePanelMode(supportedPanelModes[1])"
+        [color]="(panelMode$ | async) === supportedPanelModes[1] ? 'primary' : null">
+        <layout-horizontal-one-three class="d-block w-10em h-7em">
+          <div class="border w-100 h-100" cell-i></div>
+          <div class="border w-100 h-100" cell-ii></div>
+          <div class="border w-100 h-100" cell-iii></div>
+          <div class="border w-100 h-100" cell-iv></div>
+        </layout-horizontal-one-three>
+      </button> -->
+  
+      <!-- vertical 1 3 card -->
+      <!-- <button
+        class="m-2 p-2"
+        mat-flat-button
+        (click)="usePanelMode(supportedPanelModes[2])"
+        [color]="(panelMode$ | async) === supportedPanelModes[2] ? 'primary' : null">
+        <layout-vertical-one-three class="d-block w-10em h-7em">
+          <div class="border w-100 h-100" cell-i></div>
+          <div class="border w-100 h-100" cell-ii></div>
+          <div class="border w-100 h-100" cell-iii></div>
+          <div class="border w-100 h-100" cell-iv></div>
+        </layout-vertical-one-three>
+      </button> -->
+
+      <!-- single -->
+      <button
+        class="m-2 p-2"
+        mat-flat-button
+        (click)="usePanelMode(supportedPanelModes[3])"
+        [color]="(panelMode$ | async) === supportedPanelModes[3] ? 'primary' : null">
+        <layout-single-panel class="d-block w-10em h-7em">
+          <div class="border w-100 h-100" cell-i></div>
+          <div class="border w-100 h-100" cell-ii></div>
+          <div class="border w-100 h-100" cell-iii></div>
+          <div class="border w-100 h-100" cell-iv></div>
+        </layout-single-panel>
+      </button>
+    </div>
+  </mat-tab>
+
+  <!-- hard ware -->
+  <mat-tab label="Hardware">
+    <!-- wrapper + margin control -->
+    <div class="m-4">
+
+      <!-- use mobile UI -->
+      <div class="d-flex mb-2 align-items-center">
+        <mat-slide-toggle
+          [checked]="useMobileUI$ | async"
+          (change)="toggleMobileUI($event)">
+          Enable Mobile UI
+        </mat-slide-toggle>
+        <small iav-stop="click mousedown mouseup" [matTooltip]="MOBILE_UI_TOOLTIP" class="ml-2 fas fa-question"></small>
+      </div>
+
+      <!-- animation toggle -->
+      <div class="d-flex mb-2 align-items-center">
+        <mat-slide-toggle
+          [checked]="animationFlag$ | async"
+          (change)="toggleAnimationFlag($event)">
+          Enable Animation
+        </mat-slide-toggle>
+        <small iav-stop="click mousedown mouseup" [matTooltip]="ANIMATION_TOOLTIP" class="ml-2 fas fa-question"></small>
+      </div>
+
+      <!-- GPU limit -->
+      <div class="d-flex flex-row align-items-center justify-content start">
+        <label
+          class="m-0 d-inline-block flex-grow-0 flex-shrink-0"
+          for="gpuLimitSlider">
+          GPU Limit
+          <small iav-stop="click mousedown mouseup" [matTooltip]="GPU_TOOLTIP" class="ml-2 fas fa-question"></small>
+        </label>
+        <mat-slider
+          class="flex-grow-1 flex-shrink-1 ml-2 mr-2"
+          id="gpuLimitSlider"
+          name="gpuLimitSlider"
+          thumbLabel="true"
+          min="100"
+          max="1000"
+          [step]="stepSize"
+          (change)="handleMatSliderChange($event)"
+          [value]="gpuLimit$ | async">
+        </mat-slider>
+        <span class="d-inline-block flex-grow-0 flex-shrink-0 w-10em">
+          {{ gpuLimit$ | async }} MB
+        </span>
       </div>
-      <span class="input-group-text">
-        MB
-      </span>
     </div>
-  </div>
\ No newline at end of file
+  </mat-tab>
+</mat-tab-group>
+
diff --git a/src/ui/config/currentLayout/currentLayout.component.ts b/src/ui/config/currentLayout/currentLayout.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..df40022f719efb0d9cce84fa1a8bcdfbe6512b06
--- /dev/null
+++ b/src/ui/config/currentLayout/currentLayout.component.ts
@@ -0,0 +1,27 @@
+import { Component } from "@angular/core";
+import { Store, select } from "@ngrx/store";
+import { Observable } from "rxjs";
+import { SUPPORTED_PANEL_MODES } from "src/services/state/ngViewerState.store";
+import { startWith } from "rxjs/operators";
+
+@Component({
+  selector: 'current-layout',
+  templateUrl: './currentLayout.template.html',
+  styleUrls: [
+    './currentLayout.style.css'
+  ]
+})
+
+export class CurrentLayout{
+
+  public supportedPanelModes = SUPPORTED_PANEL_MODES
+  public panelMode$: Observable<string>
+
+  constructor(private store$: Store<any>){
+    this.panelMode$ = this.store$.pipe(
+      select('ngViewerState'),
+      select('panelMode'),
+      startWith(SUPPORTED_PANEL_MODES[0])
+    )
+  }
+}
\ No newline at end of file
diff --git a/src/ui/config/currentLayout/currentLayout.style.css b/src/ui/config/currentLayout/currentLayout.style.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/src/ui/config/currentLayout/currentLayout.template.html b/src/ui/config/currentLayout/currentLayout.template.html
new file mode 100644
index 0000000000000000000000000000000000000000..f3d04c104239b9e81f3ff0552c892e86c444ba0d
--- /dev/null
+++ b/src/ui/config/currentLayout/currentLayout.template.html
@@ -0,0 +1,82 @@
+<div [ngSwitch]="panelMode$ | async" class="w-100 h-100 d-flex flex-row">
+  <layout-four-panel
+    *ngSwitchCase="supportedPanelModes[0]"
+    class="d-block w-100 h-100">
+    <div class="w-100 h-100" cell-i>
+      <ng-content *ngTemplateOutlet="celli"></ng-content>
+    </div>
+    <div class="w-100 h-100" cell-ii>
+      <ng-content *ngTemplateOutlet="cellii"></ng-content>
+    </div>
+    <div class="w-100 h-100" cell-iii>
+      <ng-content *ngTemplateOutlet="celliii"></ng-content>
+    </div>
+    <div class="w-100 h-100" cell-iv>
+      <ng-content *ngTemplateOutlet="celliv"></ng-content>
+    </div>
+  </layout-four-panel>
+  <layout-horizontal-one-three
+    *ngSwitchCase="supportedPanelModes[1]"
+    class="d-block w-100 h-100">
+    <div class="w-100 h-100" cell-i>
+      <ng-content *ngTemplateOutlet="celli"></ng-content>
+    </div>
+    <div class="w-100 h-100" cell-ii>
+      <ng-content *ngTemplateOutlet="cellii"></ng-content>
+    </div>
+    <div class="w-100 h-100" cell-iii>
+      <ng-content *ngTemplateOutlet="celliii"></ng-content>
+    </div>
+    <div class="w-100 h-100" cell-iv>
+      <ng-content *ngTemplateOutlet="celliv"></ng-content>
+    </div>
+  </layout-horizontal-one-three>
+  <layout-vertical-one-three
+    *ngSwitchCase="supportedPanelModes[2]"
+    class="d-block w-100 h-100">
+    <div class="w-100 h-100" cell-i>
+      <ng-content *ngTemplateOutlet="celli"></ng-content>
+    </div>
+    <div class="w-100 h-100" cell-ii>
+      <ng-content *ngTemplateOutlet="cellii"></ng-content>
+    </div>
+    <div class="w-100 h-100" cell-iii>
+      <ng-content *ngTemplateOutlet="celliii"></ng-content>
+    </div>
+    <div class="w-100 h-100" cell-iv>
+      <ng-content *ngTemplateOutlet="celliv"></ng-content>
+    </div>
+  </layout-vertical-one-three>
+  <layout-single-panel
+    *ngSwitchCase="supportedPanelModes[3]"
+    class="d-block w-100 h-100">
+    <div class="w-100 h-100" cell-i>
+      <ng-content *ngTemplateOutlet="celli"></ng-content>
+    </div>
+    <div class="w-100 h-100" cell-ii>
+      <ng-content *ngTemplateOutlet="cellii"></ng-content>
+    </div>
+    <div class="w-100 h-100" cell-iii>
+      <ng-content *ngTemplateOutlet="celliii"></ng-content>
+    </div>
+    <div class="w-100 h-100" cell-iv>
+      <ng-content *ngTemplateOutlet="celliv"></ng-content>
+    </div>
+  </layout-single-panel>
+  <div *ngSwitchDefault>
+    A panel mode which I have never seen before ...
+  </div>
+</div>
+
+<ng-template #celli>
+  <ng-content select="[cell-i]"></ng-content>
+</ng-template>
+<ng-template #cellii>
+  <ng-content select="[cell-ii]"></ng-content>
+</ng-template>
+<ng-template #celliii>
+  <ng-content select="[cell-iii]"></ng-content>
+</ng-template>
+<ng-template #celliv>
+  <ng-content select="[cell-iv]"></ng-content>
+</ng-template>
\ No newline at end of file
diff --git a/src/ui/config/layouts/fourPanel/fourPanel.component.ts b/src/ui/config/layouts/fourPanel/fourPanel.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..c7a22a241e08a3862385b7e7704bf20f0adfded7
--- /dev/null
+++ b/src/ui/config/layouts/fourPanel/fourPanel.component.ts
@@ -0,0 +1,13 @@
+import { Component } from "@angular/core";
+
+@Component({
+  selector: 'layout-four-panel',
+  templateUrl: './fourPanel.template.html',
+  styleUrls: [
+    './fourPanel.style.css'
+  ]
+})
+
+export class FourPanelLayout{
+  
+}
\ No newline at end of file
diff --git a/src/ui/config/layouts/fourPanel/fourPanel.style.css b/src/ui/config/layouts/fourPanel/fourPanel.style.css
new file mode 100644
index 0000000000000000000000000000000000000000..03169dfb4b9564f62c86ca9250303c5337927861
--- /dev/null
+++ b/src/ui/config/layouts/fourPanel/fourPanel.style.css
@@ -0,0 +1,4 @@
+.four-panel-cell
+{
+  flex: 0 0 50%;
+}
\ No newline at end of file
diff --git a/src/ui/config/layouts/fourPanel/fourPanel.template.html b/src/ui/config/layouts/fourPanel/fourPanel.template.html
new file mode 100644
index 0000000000000000000000000000000000000000..ddb10f1f6a34adda68f578625dd843baf536dfa0
--- /dev/null
+++ b/src/ui/config/layouts/fourPanel/fourPanel.template.html
@@ -0,0 +1,18 @@
+<div class="w-100 h-100 d-flex flex-column justify-content-center align-items-stretch">
+  <div class="d-flex flex-row flex-grow-1 flex-shrink-1">
+    <div class="d-flex flex-row four-panel-cell align-items-center justify-content-center">
+      <ng-content select="[cell-i]"></ng-content>
+    </div>
+    <div class="d-flex flex-row four-panel-cell align-items-center justify-content-center">
+      <ng-content select="[cell-ii]"></ng-content>
+    </div>
+  </div>
+  <div class="d-flex flex-row flex-grow-1 flex-shrink-1">
+    <div class="d-flex flex-row four-panel-cell align-items-center justify-content-center">
+      <ng-content select="[cell-iii]"></ng-content>
+    </div>
+    <div class="d-flex flex-row four-panel-cell align-items-center justify-content-center">
+      <ng-content select="[cell-iv]"></ng-content>
+    </div>
+  </div>
+</div>
diff --git a/src/ui/config/layouts/h13/h13.component.ts b/src/ui/config/layouts/h13/h13.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..eccf98f96c6e49993db2a2ac609bfbc05e9a6bc7
--- /dev/null
+++ b/src/ui/config/layouts/h13/h13.component.ts
@@ -0,0 +1,13 @@
+import { Component } from "@angular/core";
+
+@Component({
+  selector: 'layout-horizontal-one-three',
+  templateUrl: './h13.template.html',
+  styleUrls: [
+    './h13.style.css'
+  ]
+})
+
+export class HorizontalOneThree{
+  
+}
\ No newline at end of file
diff --git a/src/ui/config/layouts/h13/h13.style.css b/src/ui/config/layouts/h13/h13.style.css
new file mode 100644
index 0000000000000000000000000000000000000000..be83c538297487ff9c330ba551ac85e2badfd309
--- /dev/null
+++ b/src/ui/config/layouts/h13/h13.style.css
@@ -0,0 +1,12 @@
+.major-column
+{
+  flex: 0 0 67%;
+}
+.minor-column
+{
+  flex: 0 0 33%;
+}
+.layout-31-cell
+{
+  flex: 0 0 33.33%;
+}
\ No newline at end of file
diff --git a/src/ui/config/layouts/h13/h13.template.html b/src/ui/config/layouts/h13/h13.template.html
new file mode 100644
index 0000000000000000000000000000000000000000..d389ce304f6671f2610920c5c6c3d7780b63ac1d
--- /dev/null
+++ b/src/ui/config/layouts/h13/h13.template.html
@@ -0,0 +1,18 @@
+<div class="w-100 h-100 d-flex flex-row justify-content-center align-items-stretch">
+  <div class="d-flex flex-column major-column">
+    <div class="overflow-hidden flex-grow-1 d-flex align-items-center justify-content-center">
+      <ng-content select="[cell-i]"></ng-content>
+    </div>
+  </div>
+  <div class="d-flex flex-column minor-column">
+    <div class="overflow-hidden layout-31-cell d-flex align-items-center justify-content-center">
+        <ng-content select="[cell-ii]"></ng-content>
+      </div>
+      <div class="overflow-hidden layout-31-cell d-flex align-items-center justify-content-center">
+        <ng-content select="[cell-iii]"></ng-content>
+      </div>
+      <div class="overflow-hidden layout-31-cell d-flex align-items-center justify-content-center">
+        <ng-content select="[cell-iv]"></ng-content>
+      </div>
+  </div>
+</div>
\ No newline at end of file
diff --git a/src/ui/config/layouts/single/single.component.ts b/src/ui/config/layouts/single/single.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..25101d27a9462b37e4072a912bd281126fdb7500
--- /dev/null
+++ b/src/ui/config/layouts/single/single.component.ts
@@ -0,0 +1,13 @@
+import { Component } from "@angular/core";
+
+@Component({
+  selector: 'layout-single-panel',
+  templateUrl: './single.template.html',
+  styleUrls: [
+    './single.style.css'
+  ]
+})
+
+export class SinglePanel{
+
+}
\ No newline at end of file
diff --git a/src/ui/config/layouts/single/single.style.css b/src/ui/config/layouts/single/single.style.css
new file mode 100644
index 0000000000000000000000000000000000000000..19615b37060256eef0194131b901b11e89b01b49
--- /dev/null
+++ b/src/ui/config/layouts/single/single.style.css
@@ -0,0 +1,12 @@
+.major-column
+{
+  flex: 0 0 100%;
+}
+.minor-column
+{
+  flex: 0 0 0%;
+}
+.layout-31-cell
+{
+  flex: 0 0 33%;
+}
\ No newline at end of file
diff --git a/src/ui/config/layouts/single/single.template.html b/src/ui/config/layouts/single/single.template.html
new file mode 100644
index 0000000000000000000000000000000000000000..561a6363b701518ec5d27b1f0d78507e02afe30a
--- /dev/null
+++ b/src/ui/config/layouts/single/single.template.html
@@ -0,0 +1,18 @@
+<div class="w-100 h-100 d-flex flex-row justify-content-center align-items-stretch">
+    <div class="d-flex flex-column major-column">
+      <div class="overflow-hidden flex-grow-1 d-flex align-items-center justify-content-center">
+        <ng-content select="[cell-i]"></ng-content>
+      </div>
+    </div>
+    <div class="d-flex flex-column minor-column">
+      <div class="overflow-hidden layout-31-cell d-flex align-items-center justify-content-center">
+          <ng-content select="[cell-ii]"></ng-content>
+        </div>
+        <div class="overflow-hidden layout-31-cell d-flex align-items-center justify-content-center">
+          <ng-content select="[cell-iii]"></ng-content>
+        </div>
+        <div class="overflow-hidden layout-31-cell d-flex align-items-center justify-content-center">
+          <ng-content select="[cell-iv]"></ng-content>
+        </div>
+    </div>
+  </div>
\ No newline at end of file
diff --git a/src/ui/config/layouts/v13/v13.component.ts b/src/ui/config/layouts/v13/v13.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..c650ac701de3fff14118a9487403410ae89e72ad
--- /dev/null
+++ b/src/ui/config/layouts/v13/v13.component.ts
@@ -0,0 +1,13 @@
+import { Component } from "@angular/core";
+
+@Component({
+  selector: 'layout-vertical-one-three',
+  templateUrl: './v13.template.html',
+  styleUrls: [
+    './v13.style.css'
+  ]
+})
+
+export class VerticalOneThree{
+  
+}
\ No newline at end of file
diff --git a/src/ui/config/layouts/v13/v13.style.css b/src/ui/config/layouts/v13/v13.style.css
new file mode 100644
index 0000000000000000000000000000000000000000..be83c538297487ff9c330ba551ac85e2badfd309
--- /dev/null
+++ b/src/ui/config/layouts/v13/v13.style.css
@@ -0,0 +1,12 @@
+.major-column
+{
+  flex: 0 0 67%;
+}
+.minor-column
+{
+  flex: 0 0 33%;
+}
+.layout-31-cell
+{
+  flex: 0 0 33.33%;
+}
\ No newline at end of file
diff --git a/src/ui/config/layouts/v13/v13.template.html b/src/ui/config/layouts/v13/v13.template.html
new file mode 100644
index 0000000000000000000000000000000000000000..148f70cb596d2df0183f25d012bb9d948b610f60
--- /dev/null
+++ b/src/ui/config/layouts/v13/v13.template.html
@@ -0,0 +1,18 @@
+<div class="w-100 h-100 d-flex flex-column justify-content-center align-items-stretch">
+  <div class="d-flex flex-column major-column">
+    <div class="flex-grow-1 d-flex align-items-center justify-content-center">
+      <ng-content select="[cell-i]"></ng-content>
+    </div>
+  </div>
+  <div class="d-flex flex-row minor-column">
+    <div class="layout-31-cell d-flex align-items-center justify-content-center">
+        <ng-content select="[cell-ii]"></ng-content>
+      </div>
+      <div class="layout-31-cell d-flex align-items-center justify-content-center">
+        <ng-content select="[cell-iii]"></ng-content>
+      </div>
+      <div class="layout-31-cell d-flex align-items-center justify-content-center">
+        <ng-content select="[cell-iv]"></ng-content>
+      </div>
+  </div>
+</div>
\ No newline at end of file
diff --git a/src/ui/cookieAgreement/cookieAgreement.template.html b/src/ui/cookieAgreement/cookieAgreement.template.html
index 316ca3d43c8ea1a97f94e10bfb87e02b0a98560f..b92a7d8f8c7d592823ad9b7fcd4ff198685f1c1e 100644
--- a/src/ui/cookieAgreement/cookieAgreement.template.html
+++ b/src/ui/cookieAgreement/cookieAgreement.template.html
@@ -1,9 +1,9 @@
 <div>
-  <p>Interactive Viewer uses ‘cookies’ (text files placed on your computer) to verify login details,
+  <p>The HBP Atlas Viewer uses ‘cookies’ (text files placed on your computer) to verify login details,
     remember user choices and preferences, and in some instances determine site permissions. Cookies also provide,
     in anonymous form, the number of visitors accessing the HBP Public Website, features users access during website
     visits, and the general location of the user based on IP address.</p>
-  <p>Interactive Viewer uses at least the following cookies:</p>
+  <p>HBP Atlas Viewer uses at least the following cookies:</p>
   <p><strong>connect.sid</strong> : verify login details</p>
   <p>To find out more about cookies, including how to determine the cookies that have been set on
     your computer and how to manage
@@ -11,11 +11,17 @@
   <p>To opt-out of being tracked by Google Analytics across all websites, visit
     <a href="http://tools.google.com/dlpage/gaoptout">http://tools.google.com/dlpage/gaoptout</a> .</p>
 
-  <button
-    class="btn btn-outline-info btn-block mb-2"
-    (click)="showMore = !showMore">
-    Show {{showMore? "less" : "more"}}
-  </button>
+  <div class="d-flex">
+
+    <button
+      mat-stroked-button
+      color="primary"
+      class="d-flex justify-content-center flex-grow-1"
+      (click)="showMore = !showMore">
+      Show {{showMore? "less" : "more"}}
+    </button>
+  
+  </div>
 
   <div *ngIf="showMore">
     <small>
@@ -23,7 +29,7 @@
       <div>
         <strong>Data controller(s):</strong>
         <span>
-          Interactive Viewer is the data controller for your login information.
+          HBP Atlas Viewer is the data controller for your login information.
         </span>
       </div>
 
diff --git a/src/ui/databrowserModule/databrowser.module.ts b/src/ui/databrowserModule/databrowser.module.ts
index 1238aa758a99074e33dfdfaccd0daf488e82cbc7..aa37e7e3e6f16a07d1ac358e9ecf9ad882d45a0f 100644
--- a/src/ui/databrowserModule/databrowser.module.ts
+++ b/src/ui/databrowserModule/databrowser.module.ts
@@ -1,7 +1,6 @@
 import { NgModule } from "@angular/core";
 import { CommonModule } from "@angular/common";
 import { DataBrowser } from "./databrowser/databrowser.component";
-import { DatasetViewerComponent } from "./datasetViewer/datasetViewer.component";
 import { ComponentsModule } from "src/components/components.module";
 import { ModalityPicker } from "./modalityPicker/modalityPicker.component";
 import { FormsModule } from "@angular/forms";
@@ -12,35 +11,52 @@ import { FilterDataEntriesByRegion } from "./util/filterDataEntriesByRegion.pipe
 import { TooltipModule } from "ngx-bootstrap/tooltip";
 import { PreviewComponent } from "./preview/preview.component";
 import { FileViewer } from "./fileviewer/fileviewer.component";
-import { RadarChart } from "./fileviewer/radar/radar.chart.component";
+import { RadarChart } from "./fileviewer/chart/radar/radar.chart.component";
 import { ChartsModule } from "ng2-charts";
-import { LineChart } from "./fileviewer/line/line.chart.component";
+import { LineChart } from "./fileviewer/chart/line/line.chart.component";
 import { DedicatedViewer } from "./fileviewer/dedicated/dedicated.component";
 import { Chart } from 'chart.js'
 import { AtlasViewerConstantsServices } from "src/atlasViewer/atlasViewer.constantService.service";
 import { PopoverModule } from "ngx-bootstrap/popover";
 import { UtilModule } from "src/util/util.module";
 import { AggregateArrayIntoRootPipe } from "./util/aggregateArrayIntoRoot.pipe";
+import { KgSingleDatasetService } from "./kgSingleDatasetService.service"
+import { SingleDatasetView } from './singleDataset/detailedView/singleDataset.component'
+import { AngularMaterialModule } from 'src/ui/sharedModules/angularMaterial.module'
+import { DoiParserPipe } from "src/util/pipes/doiPipe.pipe";
+import { DatasetIsFavedPipe } from "./util/datasetIsFaved.pipe";
+import { RegionBackgroundToRgbPipe } from "./util/regionBackgroundToRgb.pipe";
+
+import { ScrollingModule } from "@angular/cdk/scrolling";
+import { GetKgSchemaIdFromFullIdPipe } from "./util/getKgSchemaIdFromFullId.pipe";
+import { PreviewFileIconPipe } from "./preview/previewFileIcon.pipe";
+import { PreviewFileTypePipe } from "./preview/previewFileType.pipe";
+import { SingleDatasetListView } from "./singleDataset/listView/singleDatasetListView.component";
+import { AppendFilerModalityPipe } from "./util/appendFilterModality.pipe";
+import { ResetCounterModalityPipe } from "./util/resetCounterModality.pipe";
 
 @NgModule({
   imports:[
     ChartsModule,
     CommonModule,
     ComponentsModule,
+    ScrollingModule,
     FormsModule,
     UtilModule,
+    AngularMaterialModule,
     TooltipModule.forRoot(),
     PopoverModule.forRoot()
   ],
   declarations: [
     DataBrowser,
-    DatasetViewerComponent,
     ModalityPicker,
     PreviewComponent,
     FileViewer,
     RadarChart,
     LineChart,
     DedicatedViewer,
+    SingleDatasetView,
+    SingleDatasetListView,
 
     /**
      * pipes
@@ -49,13 +65,33 @@ import { AggregateArrayIntoRootPipe } from "./util/aggregateArrayIntoRoot.pipe";
     CopyPropertyPipe,
     FilterDataEntriesbyMethods,
     FilterDataEntriesByRegion,
-    AggregateArrayIntoRootPipe
+    AggregateArrayIntoRootPipe,
+    DoiParserPipe,
+    DatasetIsFavedPipe,
+    RegionBackgroundToRgbPipe,
+    GetKgSchemaIdFromFullIdPipe,
+    PreviewFileIconPipe,
+    PreviewFileTypePipe,
+    AppendFilerModalityPipe,
+    ResetCounterModalityPipe
   ],
   exports:[
-    DataBrowser
+    DataBrowser,
+    SingleDatasetView,
+    SingleDatasetListView,
+    PreviewComponent,
+    ModalityPicker,
+    FilterDataEntriesbyMethods,
+    FileViewer,
+    GetKgSchemaIdFromFullIdPipe
   ],
   entryComponents:[
-    DataBrowser
+    DataBrowser,
+    FileViewer,
+    SingleDatasetView
+  ],
+  providers: [
+    KgSingleDatasetService
   ]
   /**
    * shouldn't need bootstrap, so no need for browser module
@@ -128,4 +164,4 @@ export class DatabrowserModule{
       }
     })
   }
-}
\ No newline at end of file
+}
diff --git a/src/ui/databrowserModule/databrowser.service.ts b/src/ui/databrowserModule/databrowser.service.ts
index c01ece7f3b148384e4d700bec54ab00dfd904635..0393d0b927147fd52c9f7977a92789a144d71810 100644
--- a/src/ui/databrowserModule/databrowser.service.ts
+++ b/src/ui/databrowserModule/databrowser.service.ts
@@ -3,8 +3,8 @@ import { Subscription, Observable, combineLatest, BehaviorSubject, fromEvent, fr
 import { ViewerConfiguration } from "src/services/state/viewerConfig.store";
 import { select, Store } from "@ngrx/store";
 import { AtlasViewerConstantsServices } from "src/atlasViewer/atlasViewer.constantService.service";
-import { ADD_NG_LAYER, REMOVE_NG_LAYER, DataEntry, safeFilter, FETCHED_DATAENTRIES, FETCHED_SPATIAL_DATA, UPDATE_SPATIAL_DATA } from "src/services/stateStore.service";
-import { map, distinctUntilChanged, debounceTime, filter, tap, switchMap, catchError } from "rxjs/operators";
+import { DataEntry, safeFilter, FETCHED_DATAENTRIES, FETCHED_SPATIAL_DATA, UPDATE_SPATIAL_DATA } from "src/services/stateStore.service";
+import { map, distinctUntilChanged, debounceTime, filter, tap, switchMap, catchError, shareReplay, withLatestFrom } from "rxjs/operators";
 import { AtlasWorkerService } from "src/atlasViewer/atlasViewer.workerService.service";
 import { FilterDataEntriesByRegion } from "./util/filterDataEntriesByRegion.pipe";
 import { NO_METHODS } from "./util/filterDataEntriesByMethods.pipe";
@@ -13,6 +13,8 @@ import { DataBrowser } from "./databrowser/databrowser.component";
 import { WidgetUnit } from "src/atlasViewer/widgetUnit/widgetUnit.component";
 import { SHOW_KG_TOS } from "src/services/state/uiState.store";
 import { regionFlattener } from "src/util/regionFlattener";
+import { DATASETS_ACTIONS_TYPES } from "src/services/state/dataStore.store";
+import { HttpClient } from "@angular/common/http";
 
 const noMethodDisplayName = 'No methods described'
 
@@ -45,6 +47,8 @@ function generateToken() {
 })
 export class DatabrowserService implements OnDestroy{
 
+  public kgTos$: Observable<any>
+  public favedDataentries$: Observable<DataEntry[]>
   public darktheme: boolean = false
 
   public instantiatedWidgetUnits: WidgetUnit[] = []
@@ -65,26 +69,35 @@ export class DatabrowserService implements OnDestroy{
 
   private filterDEByRegion: FilterDataEntriesByRegion = new FilterDataEntriesByRegion()
   private dataentries: DataEntry[] = []
-  private fetchDataStatus$: Observable<any>
 
   private subscriptions: Subscription[] = []
   public fetchDataObservable$: Observable<any>
   public manualFetchDataset$: BehaviorSubject<null> = new BehaviorSubject(null)
 
-  private fetchSpatialData$: Observable<any>
   public spatialDatasets$: Observable<any>
+  public viewportBoundingBox$: Observable<[Point, Point]>
 
   constructor(
     private workerService: AtlasWorkerService,
     private constantService: AtlasViewerConstantsServices,
-    private store: Store<ViewerConfiguration>
+    private store: Store<ViewerConfiguration>,
+    private http: HttpClient
   ){
 
-    this.subscriptions.push(
-      this.store.pipe(
-        select('ngViewerState')
-      ).subscribe(layersInterface => 
-        this.ngLayers = new Set(layersInterface.layers.map(l => l.source.replace(/^nifti\:\/\//, ''))))
+    this.kgTos$ = this.http.get(`${this.constantService.backendUrl}datasets/tos`, {
+      responseType: 'text'
+    }).pipe(
+      catchError((err,obs) => {
+        console.warn(`fetching kgTos error`, err)
+        return of(null)
+      }),
+      shareReplay(1)
+    )
+
+    this.favedDataentries$ = this.store.pipe(
+      select('dataStore'),
+      select('favDataEntries'),
+      shareReplay(1)
     )
 
     this.subscriptions.push(
@@ -97,43 +110,46 @@ export class DatabrowserService implements OnDestroy{
       })
     )
 
-  this.fetchSpatialData$ = combineLatest(
-    this.store.pipe(
-      select('viewerState'),
-      select('navigation')
-    ),
-    this.store.pipe(
+    this.viewportBoundingBox$ = this.store.pipe(
       select('viewerState'),
-      select('templateSelected')
+      select('navigation'),
+      distinctUntilChanged(),
+      debounceTime(SPATIAL_SEARCH_DEBOUNCE),
+      filter(v => !!v && !!v.position && !!v.zoom),
+      map(({ position, zoom }) => {
+
+        // in mm
+        const center = position.map(n=>n/1e6)
+        const searchWidth = this.constantService.spatialWidth / 4 * zoom / 1e6
+        const pt1 = center.map(v => (v - searchWidth)) as [number, number, number]
+        const pt2 = center.map(v => (v + searchWidth)) as [number, number, number]
+
+        return [pt1, pt2] as [Point, Point]
+      })
     )
-  ).pipe(
-    debounceTime(SPATIAL_SEARCH_DEBOUNCE)
-  )
 
-  this.spatialDatasets$ = this.fetchSpatialData$.pipe(
-    filter(([navigation, templateSelected]) => !!navigation && !!navigation.position && !!templateSelected && !!templateSelected.name),
-    switchMap(([navigation, templateSelected]) => {
+    this.spatialDatasets$ = this.viewportBoundingBox$.pipe(
+      withLatestFrom(this.store.pipe(
+        select('viewerState'),
+        select('templateSelected'),
+        distinctUntilChanged(),
+        filter(v => !!v)
+      )),
+      switchMap(([ bbox, templateSelected ]) => {
 
+        const _bbox = bbox.map(pt => pt.map(v => v.toFixed(SPATIAL_SEARCH_PRECISION)))
         /**
-       * templateSelected and templateSelected.name must be defined for spatial search
-       */
-      if (!templateSelected || !templateSelected.name)
-        return from(Promise.reject('templateSelected must not be empty'))
-      const encodedTemplateName = encodeURI(templateSelected.name)
-
-      // in mm
-      const center = navigation.position.map(n=>n/1e6)
-      const searchWidth = this.constantService.spatialWidth / 4 * navigation.zoom / 1e6
-      const pt1 = center.map(v => (v - searchWidth).toFixed(SPATIAL_SEARCH_PRECISION))
-      const pt2 = center.map(v => (v + searchWidth).toFixed(SPATIAL_SEARCH_PRECISION))
-      
-      return from(fetch(`${this.constantService.backendUrl}datasets/spatialSearch/templateName/${encodedTemplateName}/bbox/${pt1.join('_')}__${pt2.join("_")}`, this.constantService.getFetchOption())
-        .then(res => res.json()))
-    }),
-    catchError((err) => (console.log(err), of([])))
-  )
-
-  this.fetchDataObservable$ = combineLatest(
+         * templateSelected and templateSelected.name must be defined for spatial search
+         */
+        if (!templateSelected || !templateSelected.name) return from(Promise.reject('templateSelected must not be empty'))
+        const encodedTemplateName = encodeURIComponent(templateSelected.name)
+        return this.http.get(`${this.constantService.backendUrl}datasets/spatialSearch/templateName/${encodedTemplateName}/bbox/${_bbox[0].join('_')}__${_bbox[1].join("_")}`).pipe(
+          catchError((err) => (console.log(err), of([]))) 
+        )
+      }),
+    )
+
+    this.fetchDataObservable$ = combineLatest(
       this.store.pipe(
         select('viewerState'),
         safeFilter('templateSelected'),
@@ -150,10 +166,6 @@ export class DatabrowserService implements OnDestroy{
       this.manualFetchDataset$
     )
 
-    this.fetchDataStatus$ = combineLatest(
-      this.fetchDataObservable$
-    )
-
     this.subscriptions.push(
       this.spatialDatasets$.subscribe(arr => {
         this.store.dispatch({
@@ -194,8 +206,29 @@ export class DatabrowserService implements OnDestroy{
     this.subscriptions.forEach(s => s.unsubscribe())
   }
 
+  public toggleFav(dataentry: DataEntry){
+    this.store.dispatch({
+      type: DATASETS_ACTIONS_TYPES.TOGGLE_FAV_DATASET,
+      payload: dataentry
+    })
+  }
+
+  public saveToFav(dataentry: DataEntry){
+    this.store.dispatch({
+      type: DATASETS_ACTIONS_TYPES.FAV_DATASET,
+      payload: dataentry
+    })
+  }
+
+  public removeFromFav(dataentry: DataEntry){
+    this.store.dispatch({
+      type: DATASETS_ACTIONS_TYPES.UNFAV_DATASET,
+      payload: dataentry
+    })
+  }
+
   public fetchPreviewData(datasetName: string){
-    const encodedDatasetName = encodeURI(datasetName)
+    const encodedDatasetName = encodeURIComponent(datasetName)
     return new Promise((resolve, reject) => {
       fetch(`${this.constantService.backendUrl}datasets/preview/${encodedDatasetName}`, this.constantService.getFetchOption())
         .then(res => res.json())
@@ -204,21 +237,6 @@ export class DatabrowserService implements OnDestroy{
     })
   }
 
-  public ngLayers : Set<string> = new Set()
-  public showNewNgLayer({ url }):void{
-
-    const layer = {
-      name : url,
-      source : `nifti://${url}`,
-      mixability : 'nonmixable',
-      shader : this.constantService.getActiveColorMapFragmentMain()
-    }
-    this.store.dispatch({
-      type: ADD_NG_LAYER,
-      layer
-    })
-  }
-
   private dispatchData(arr:DataEntry[]){
     this.store.dispatch({
       type : FETCHED_DATAENTRIES,
@@ -232,8 +250,8 @@ export class DatabrowserService implements OnDestroy{
   private mostRecentFetchToken: any
 
   private lowLevelQuery(templateName: string, parcellationName: string){
-    const encodedTemplateName = encodeURI(templateName)
-    const encodedParcellationName = encodeURI(parcellationName)
+    const encodedTemplateName = encodeURIComponent(templateName)
+    const encodedParcellationName = encodeURIComponent(parcellationName)
     return Promise.all([
       fetch(`${this.constantService.backendUrl}datasets/templateName/${encodedTemplateName}`, this.constantService.getFetchOption())
         .then(res => res.json()),
@@ -282,15 +300,6 @@ export class DatabrowserService implements OnDestroy{
       })
   }
 
-  removeNgLayer({ url }) {
-    this.store.dispatch({
-      type : REMOVE_NG_LAYER,
-      layer : {
-        name : url
-      }
-    })
-  }
-
   rebuildRegionTree(selectedRegions, regions){
     this.workerService.worker.postMessage({
       type: 'BUILD_REGION_SELECTION_TREE',
@@ -306,12 +315,6 @@ export class DatabrowserService implements OnDestroy{
   }
 
   public getModalityFromDE = getModalityFromDE
-
-  public getBackgroundColorStyleFromRegion(region:any = null){
-    return region && region.rgb
-      ? `rgb(${region.rgb.join(',')})`
-      : `white`
-  }
 }
 
 
@@ -346,9 +349,17 @@ export function getModalityFromDE(dataentries:DataEntry[]):CountedDataModality[]
   return dataentries.reduce((acc, de) => reduceDataentry(acc, de), [])
 }
 
+export function getIdFromDataEntry(dataentry: DataEntry){
+  const { id, fullId } = dataentry
+  const regex = /\/([a-zA-Z0-9\-]*?)$/.exec(fullId)
+  return (regex && regex[1]) || id
+}
+
 
 export interface CountedDataModality{
   name: string
   occurance: number
   visible: boolean
-}
\ No newline at end of file
+}
+
+type Point = [number, number, number]
\ No newline at end of file
diff --git a/src/ui/databrowserModule/databrowser.useEffect.ts b/src/ui/databrowserModule/databrowser.useEffect.ts
new file mode 100644
index 0000000000000000000000000000000000000000..49b494918e5013d0b3a146e468b7791161f1ea0d
--- /dev/null
+++ b/src/ui/databrowserModule/databrowser.useEffect.ts
@@ -0,0 +1,178 @@
+import { Injectable, OnDestroy } from "@angular/core";
+import { Store, select } from "@ngrx/store";
+import { Actions, ofType, Effect } from "@ngrx/effects";
+import { DATASETS_ACTIONS_TYPES, DataEntry } from "src/services/state/dataStore.store";
+import { Observable, of, from, merge, Subscription } from "rxjs";
+import { withLatestFrom, map, catchError, filter, switchMap, scan } from "rxjs/operators";
+import { KgSingleDatasetService } from "./kgSingleDatasetService.service";
+import { getIdFromDataEntry } from "./databrowser.service";
+import { LOCAL_STORAGE_CONST } from "src/util/constants";
+
+const savedFav$ = of(window.localStorage.getItem(LOCAL_STORAGE_CONST.FAV_DATASET)).pipe(
+  map(string => JSON.parse(string)),
+  map(arr => {
+    if (arr.every(item => item.id )) return arr
+    throw new Error('Not every item has id and/or name defined')
+  }),
+  catchError(err => {
+    /**
+     * TODO emit proper error
+     * possibly wipe corrupted local stoage here?
+     */
+    return of(null)
+  })
+)
+
+@Injectable({
+  providedIn: 'root'
+})
+
+export class DataBrowserUseEffect implements OnDestroy{
+
+  private subscriptions: Subscription[] = []
+
+  constructor(
+    private store$: Store<any>,
+    private actions$: Actions<any>,
+    private kgSingleDatasetService: KgSingleDatasetService
+    
+  ){
+    this.favDataEntries$ = this.store$.pipe(
+      select('dataStore'),
+      select('favDataEntries')
+    )
+
+    this.toggleDataset$ = this.actions$.pipe(
+      ofType(DATASETS_ACTIONS_TYPES.TOGGLE_FAV_DATASET),
+      withLatestFrom(this.favDataEntries$),
+      map(([action, prevFavDataEntries]) => {
+        const { payload = {} } = action as any
+        const { id } = payload
+
+        const wasFav = prevFavDataEntries.findIndex(ds => ds.id === id) >= 0
+        return {
+          type: DATASETS_ACTIONS_TYPES.UPDATE_FAV_DATASETS,
+          favDataEntries: wasFav 
+            ? prevFavDataEntries.filter(ds => ds.id !== id)
+            : prevFavDataEntries.concat(payload)
+        }
+      })
+    )
+
+    this.unfavDataset$ = this.actions$.pipe(
+      ofType(DATASETS_ACTIONS_TYPES.UNFAV_DATASET),
+      withLatestFrom(this.favDataEntries$),
+      map(([action, prevFavDataEntries]) => {
+
+        const { payload = {} } = action as any
+        const { id } = payload
+        return {
+          type: DATASETS_ACTIONS_TYPES.UPDATE_FAV_DATASETS,
+          favDataEntries: prevFavDataEntries.filter(ds => ds.id !== id)
+        }
+      })
+    )
+
+    this.favDataset$ = this.actions$.pipe(
+      ofType(DATASETS_ACTIONS_TYPES.FAV_DATASET),
+      withLatestFrom(this.favDataEntries$),
+      map(([ action, prevFavDataEntries ]) => {
+        const { payload } = action as any
+    
+        /**
+         * check duplicate
+         */
+        const favDataEntries = prevFavDataEntries.find(favDEs => favDEs.id === payload.id)
+          ? prevFavDataEntries
+          : prevFavDataEntries.concat(payload)
+    
+        return {
+          type: DATASETS_ACTIONS_TYPES.UPDATE_FAV_DATASETS,
+          favDataEntries
+        }
+      })
+    )
+
+
+    this.subscriptions.push(
+      this.favDataEntries$.pipe(
+        filter(v => !!v)
+      ).subscribe(favDataEntries => {
+        /**
+         * only store the minimal data in localstorage/db, hydrate when needed
+         * for now, only save id 
+         * 
+         * do not save anything else on localstorage. This could potentially be leaking sensitive information
+         */
+        const serialisedFavDataentries = favDataEntries.map(dataentry => {
+          const id = getIdFromDataEntry(dataentry)
+          return { id }
+        })
+        window.localStorage.setItem(LOCAL_STORAGE_CONST.FAV_DATASET, JSON.stringify(serialisedFavDataentries))
+      })
+    )
+
+    this.savedFav$ = savedFav$
+
+    this.onInitGetFav$ = this.savedFav$.pipe(
+      filter(v => !!v),
+      switchMap(arr => 
+        merge(
+          ...arr.map(({ id: kgId }) => 
+            from( this.kgSingleDatasetService.getInfoFromKg({ kgId })).pipe(
+              catchError(err => {
+                console.log(`fetchInfoFromKg error`, err)
+                return of(null)
+              }),
+              switchMap(dataset => 
+                this.kgSingleDatasetService.datasetHasPreview(dataset).pipe(
+                  catchError(err => {
+                    console.log(`fetching hasPreview error`, err)
+                    return of({})
+                  }),
+                  map(resp => {
+                    return {
+                      ...dataset,
+                      ...resp
+                    }
+                  })
+                )
+              )
+            )
+          )
+        ).pipe(
+          filter(v => !!v),
+          scan((acc, curr) => acc.concat(curr), [])
+        )
+      ),
+      map(favDataEntries => {
+        return {
+          type: DATASETS_ACTIONS_TYPES.UPDATE_FAV_DATASETS,
+          favDataEntries
+        }
+      })
+    )
+  }
+
+  ngOnDestroy(){
+    while(this.subscriptions.length > 0) {
+      this.subscriptions.pop().unsubscribe()
+    }
+  }
+
+  private savedFav$: Observable<{id: string, name: string}[] | null>
+
+  @Effect()
+  public onInitGetFav$: Observable<any>
+
+  private favDataEntries$: Observable<DataEntry[]>
+
+  @Effect()
+  public favDataset$: Observable<any>
+
+  @Effect()
+  public unfavDataset$: Observable<any>
+
+  @Effect()
+  public toggleDataset$: Observable<any>
+}
diff --git a/src/ui/databrowserModule/databrowser/databrowser.component.ts b/src/ui/databrowserModule/databrowser/databrowser.component.ts
index e9ca1b1e011606c13cf5c31b1dea9c5e9e0af942..f7fcc13e7c0ba71b1f0b636b09d0436e2e282ba5 100644
--- a/src/ui/databrowserModule/databrowser/databrowser.component.ts
+++ b/src/ui/databrowserModule/databrowser/databrowser.component.ts
@@ -1,18 +1,25 @@
-import { Component, OnDestroy, OnInit, ViewChild, Input } from "@angular/core";
+import { Component, OnDestroy, OnInit, ViewChild, Input, ChangeDetectionStrategy, ChangeDetectorRef, OnChanges, Output,EventEmitter, TemplateRef } from "@angular/core";
 import { DataEntry } from "src/services/stateStore.service";
-import { Subscription, merge } from "rxjs";
+import { Subscription, merge, Observable } from "rxjs";
 import { DatabrowserService, CountedDataModality } from "../databrowser.service";
 import { ModalityPicker } from "../modalityPicker/modalityPicker.component";
+import { KgSingleDatasetService } from "../kgSingleDatasetService.service";
+import { scan, shareReplay } from "rxjs/operators";
+import { ViewerPreviewFile } from "src/services/state/dataStore.store";
+
+const scanFn: (acc: any[], curr: any) => any[] = (acc, curr) => [curr, ...acc]
 
 @Component({
   selector : 'data-browser',
   templateUrl : './databrowser.template.html',
   styleUrls : [
     `./databrowser.style.css`
-  ]
+  ],
+  exportAs: 'dataBrowser',
+  changeDetection: ChangeDetectionStrategy.OnPush
 })
 
-export class DataBrowser implements OnDestroy,OnInit{
+export class DataBrowser implements OnChanges, OnDestroy,OnInit{
 
   @Input()
   public regions: any[] = []
@@ -23,10 +30,10 @@ export class DataBrowser implements OnDestroy,OnInit{
   @Input()
   public parcellation: any
 
-  public dataentries: DataEntry[] = []
+  @Output()
+  dataentriesUpdated: EventEmitter<DataEntry[]> = new EventEmitter()
 
-  public currentPage: number = 0
-  public hitsPerPage: number = 5
+  public dataentries: DataEntry[] = []
 
   public fetchingFlag: boolean = false
   public fetchError: boolean = false
@@ -37,12 +44,12 @@ export class DataBrowser implements OnDestroy,OnInit{
   public countedDataM: CountedDataModality[] = []
   public visibleCountedDataM: CountedDataModality[] = []
 
+  public history$: Observable<{file:ViewerPreviewFile, dataset: DataEntry}[]>
+
   @ViewChild(ModalityPicker)
   modalityPicker: ModalityPicker
 
-  get darktheme(){
-    return this.dbService.darktheme
-  }
+  public favDataentries$: Observable<DataEntry[]>
 
   /**
    * TODO
@@ -53,13 +60,19 @@ export class DataBrowser implements OnDestroy,OnInit{
   public gemoetryFilter: any
 
   constructor(
-    private dbService: DatabrowserService
+    private dbService: DatabrowserService,
+    private cdr:ChangeDetectorRef,
+    private singleDatasetSservice: KgSingleDatasetService
   ){
-
+    this.favDataentries$ = this.dbService.favedDataentries$
+    this.history$ = this.singleDatasetSservice.previewingFile$.pipe(
+      scan(scanFn, []),
+      shareReplay(1)
+    )
   }
 
-  ngOnInit(){
-    this.dbService.dbComponentInit(this)
+  ngOnChanges(){
+
     this.regions = this.regions.map(r => {
       /**
        * TODO to be replaced with properly region UUIDs from KG
@@ -71,10 +84,20 @@ export class DataBrowser implements OnDestroy,OnInit{
     })
     const { regions, parcellation, template } = this
     this.fetchingFlag = true
+
+    // input may be undefined/null
+    if (!parcellation) return
+
+    /**
+     * reconstructing parcellation region is async (done on worker thread)
+     * if parcellation region is not yet defined, return. 
+     * parccellation will eventually be updated with the correct region
+     */
+    if (!parcellation.regions) return
+    
     this.dbService.getDataByRegion({ regions, parcellation, template })
       .then(de => {
         this.dataentries = de
-        this.fetchingFlag = false
         return de
       })
       .then(this.dbService.getModalityFromDE)
@@ -83,16 +106,26 @@ export class DataBrowser implements OnDestroy,OnInit{
       })
       .catch(e => {
         console.error(e)
-        this.fetchingFlag = false
         this.fetchError = true
       })
+      .finally(() => {
+        this.fetchingFlag = false
+        this.dataentriesUpdated.emit(this.dataentries)
+        this.cdr.markForCheck()
+      })
+
+  }
 
+  ngOnInit(){
+    /**
+     * TODO gets init'ed everytime when appends to ngtemplateoutlet 
+     */
+    this.dbService.dbComponentInit(this)
     this.subscriptions.push(
       merge(
         // this.dbService.selectedRegions$,
         this.dbService.fetchDataObservable$
       ).subscribe(() => {
-        this.resetCurrentPage()
         /**
          * Only reset modality picker
          * resetting all creates infinite loop
@@ -121,13 +154,12 @@ export class DataBrowser implements OnDestroy,OnInit{
       }
     })
     this.visibleCountedDataM = []
-    this.resetCurrentPage()
   }
 
   handleModalityFilterEvent(modalityFilter:CountedDataModality[]){
     this.countedDataM = modalityFilter
     this.visibleCountedDataM = modalityFilter.filter(dm => dm.visible)
-    this.resetCurrentPage()
+    this.cdr.markForCheck()
   }
 
   retryFetchData(event: MouseEvent){
@@ -135,6 +167,18 @@ export class DataBrowser implements OnDestroy,OnInit{
     this.dbService.manualFetchDataset$.next(null)
   }
 
+  toggleFavourite(dataset: DataEntry){
+    this.dbService.toggleFav(dataset)
+  }
+
+  saveToFavourite(dataset: DataEntry){
+    this.dbService.saveToFav(dataset)
+  }
+
+  removeFromFavourite(dataset: DataEntry){
+    this.dbService.removeFromFav(dataset)
+  }
+
   public showParcellationList: boolean = false
   
   public filePreviewName: string
@@ -143,20 +187,12 @@ export class DataBrowser implements OnDestroy,OnInit{
     this.filePreviewName = datasetName
   }
 
-  /**
-   * when filter changes, it is necessary to set current page to 0,
-   * or one may overflow and see no dataset
-   */
-  resetCurrentPage(){
-    this.currentPage = 0
-  }
-
   resetFilters(event?:MouseEvent){
     this.clearAll()
   }
 
-  getBackgroundColorStyleFromRegion(region:any) {
-    return this.dbService.getBackgroundColorStyleFromRegion(region)
+  trackByFn(index:number, dataset:DataEntry){
+    return dataset.id
   }
 }
 
diff --git a/src/ui/databrowserModule/databrowser/databrowser.style.css b/src/ui/databrowserModule/databrowser/databrowser.style.css
index cbed0d7d4ce53d523971d02ff5bf1f3d6323de87..0a854b80f0892e5c1f9fd387efb5d16652d140f7 100644
--- a/src/ui/databrowserModule/databrowser/databrowser.style.css
+++ b/src/ui/databrowserModule/databrowser/databrowser.style.css
@@ -1,230 +1,17 @@
-div[heading]
-{
-  padding : 0.5em 1em;
-  white-space: nowrap;
-  overflow: hidden;
-}
-
-div[heading][displayflex]
-{
-  display:flex;
-  flex-direction: row;
-}
-
-  div[heading][displayflex] > [maintext]
-  {
-    flex : 1 1 0px;
-    white-space: nowrap;
-    overflow: hidden;
-  }
-
-  div[heading][displayflex] > [propertyicons]
-  {
-    flex : 0 0 auto;
-  }
-
-  div[heading][displayflex] > [propertyicons] > *
-  {
-    margin-left:0.5em;
-  }
-
-[dataentry]
-{
-  width:100%;
-}
-
-[dataentry] div[heading]
-{
-  padding : 0.4em 1.6em;
-  background-color:rgba(0,0,0,0.2);
-}
-
-[dataentry] div[body]
-{
-  padding : 0.4em 2.0em;
-  background-color:rgba(0,0,0,0.3);
-} 
-
-div[databrowserheader]
-{
-  padding : 0.5em 1.0em;
-  background-color:rgba(128,128,128,0.05);
-}
-
-div[databrowserheader] > *
-{
-  padding : 0;
-  margin : 0 ;
-  border : 0 ;
-}
-
-div[databrowserheader]
-{
-  white-space: nowrap;
-}
-
-div[filterBlock] > *
-{
-  white-space: nowrap;
-  overflow: hidden;
-}
-
-.clickable:hover
-{
-  color:#dbb556;
-  cursor:default;
-}
-
-div.unclickable
-{
-  color:rgba(128,128,128,0.8);
-}
-
-div.unclickable:hover
-{
-  cursor:default;
-}
-
-div.noResultClass
-{
-  color:rgba(128,128,128,0.8);
-  text-decoration: line-through;
-}
-
-div[spatialSearchCell]
-{
-  padding: 0.3em 1em;
-  overflow:hidden;
-  white-space: nowrap;
-}
-
-div[noSelectedRegion]
-{
-  padding: 1em 1em;
-  font-size:2em;
-  color: rgba(128,128,128,0.5);
-  max-height: 6em;
-}
-
-:host-context([darktheme="true"]) div[noSelectedRegion]
-{
-  background-color: rgba(0,0,0,0.2);
-}
-
-dataset-viewer
-{
-  display: block;
-}
-
-div[regionsContainer]
-{
-  background-color:rgba(0, 0, 0, 0.3);
-  padding:0.5em 0.7em;
-}
-
-div[regionContainer]
-{
-  margin-top:0.5em;
-}
-
 modality-picker
 {
   font-size: 90%;
   display:inline-block;
 }
 
-.filterWrapper
-{
-  white-space:normal;
-  max-height: 15em;
-  overflow-y:auto;
-  overflow-x:hidden;
-}
-
-.spinnerAnimationCircleContainer
-{
-  display: flex;
-  flex-direction: column;
-  align-items: center;
-}
-
-.spinnerAnimationCircleContainer > .spinnerAnimationCircle
-{
-  font-size: 300%;
-}
-
-.parcellationSelectionWrapper
-{
-  width: 100%;
-  display:flex;
-  flex-direction: row;
-  align-items: flex-start;
-}
-.parcellationSelectionWrapper > *:first-child
-{
-  flex: 1 0 0;
-}
-.parcellationSelectionWrapper > *:last-child
-{
-  flex: 0 0 0;
-}
-
-.toggleParcellationBtn
-{
-  margin-left: -2.5em;
-  z-index: 1;
-}
-
 radio-list
 {
   display: block;
 }
 
-/* datawrapper */
-:host .dataEntryWrapper
-{
-  white-space: nowrap;
-  overflow: hidden;
-  width:200%;
-  padding: 0;
-  transition: transform 190ms ease;
-}
 
-.dataEntryWrapper > *
+/* grow 3x shrink 1x basis 2.5 x 50px (2.5 rows) */
+.dataset-container
 {
-  vertical-align: top;
-  white-space: initial;
-  width: 50%;
-  display:inline-block;
-  padding: 0.5em 1em;
+  flex: 3 1 125px;
 }
-
-.filePreviewContainer
-{
-  max-height: 100%;
-  overflow:auto;
-}
-
-.overflow-container
-{
-  overflow:hidden;
-  width: 100%;
-  height: 100%;
-  margin: 0;
-  padding: 0;
-}
-
-.dot
-{
-  width: 0.5rem;
-  height: 0.5rem;
-  display: inline-block;
-  border-radius: 50%;
-  background-color:white;
-}
-
-div[regionTagsContainer]
-{
-  max-height: 4em;
-  overflow:hidden;
-}
\ No newline at end of file
diff --git a/src/ui/databrowserModule/databrowser/databrowser.template.html b/src/ui/databrowserModule/databrowser/databrowser.template.html
index 515a94d8331c6235c7ef253d927c7d159ba597ea..3005273d5cbbed7939009d9600f1272fc54455a8 100644
--- a/src/ui/databrowserModule/databrowser/databrowser.template.html
+++ b/src/ui/databrowserModule/databrowser/databrowser.template.html
@@ -1,146 +1,165 @@
-<div class="overflow-container">
-
-  <div
-    [ngStyle]="filePreviewName ? {'transform': 'translateX(-50%)'} : {}"
-    class="dataEntryWrapper">
-
-    <!-- main window -->
-    <div
-      class="t-a-ease-500"
-      [style.height]="filePreviewName ? '0px' : 'auto'">
-
-      <!-- description -->
-      <readmore-component>
-        <div class="p-2 mh-20em overflow-auto">
-          Datasets relevant to
-          <span
-            *ngFor="let region of regions"
-            class="badge badge-secondary mr-1 mw-100">
-            <span [ngStyle]="{backgroundColor:getBackgroundColorStyleFromRegion(region)}" class="dot">
-              
-            </span>
-            <span class="d-inline-block mw-100 overflow-hidden text-truncate">
-              {{ region.name }}
-            </span>
-          </span>
-        </div>
-      </readmore-component>
-      
-      <!-- modality picker -->
-      <div>
-        <span
-          placement="right"
-          container="body"
-          [popover]="countedDataM.length > 0 ? modalityPicker : null"
-          [outsideClick]="true"
-          [containerClass]="darktheme ? 'darktheme' : ''"
-          class="clickable btn-sm btn btn-secondary btn-block">
-          Filter by Modality <small *ngIf="visibleCountedDataM.length as visibleDMLength">({{ visibleDMLength }})</small>
-        </span>
-      </div>
+<mat-card
+  [ngClass]="{'h-100': (!fetchingFlag && !fetchError)}"
+  class="w-100 overflow-hidden d-block flex-grow-1 flex-shrink-1 d-flex flex-column">
+
+  <!-- transclusion header -->
+  <ng-content select="[card-header]">
+  </ng-content>
+  
+  <!-- transclusion content prepend -->
+  <ng-content select="[card-content='prepend']">
+  </ng-content>
+
+  <!-- modality filter -->
+  <div class="mb-1" >
+    <ng-container *ngTemplateOutlet="modalitySelector">
+    </ng-container>
+  </div>
+
+  <!-- if still loading, show spinner -->
+  <ng-template [ngIf]="fetchingFlag">
+    <ng-container *ngTemplateOutlet="loadingSpinner">
+    </ng-container>
+  </ng-template>
+
+  <!-- else, show fetched -->
+  <ng-template [ngIf]="!fetchingFlag">
+
+    <!-- if error, show error only -->
+    <ng-template [ngIf]="fetchError">
+      <ng-container *ngTemplateOutlet="errorTemplate">
+      </ng-container>
+    </ng-template>
+
+    <!-- if not error, show dataset template -->
     
-      <!-- datasets container -->
-      <div
-        *ngIf="fetchingFlag; else fetched"
-        class="spinnerAnimationCircleContainer">
-        <div class="spinnerAnimationCircle"></div>
-        <div>Fetching datasets...</div>
-      </div>
+    <ng-template [ngIf]="!fetchError">
+      <ng-container *ngTemplateOutlet="datasetTemplate">
+      </ng-container>
+    </ng-template>
+  </ng-template>
 
-    </div>
+  <!-- footer, populated by content transclusion -->
+  <mat-card-footer>
+    <ng-content select="[card-footer]">
+    </ng-content>
+  </mat-card-footer>
+</mat-card>
 
-    <!-- file previewer -->
-    <div
-      class="filePreview">
-      <div class="filePreviewContainer">
-        <div (click)="filePreviewName=null" class="rounded-circle btn btn-sm btn-outline-secondary">
-          <i class="fas fa-arrow-left"></i>
-        </div>
-        <preview-component
-          *ngIf="filePreviewName"
-          [datasetName]="filePreviewName">
+<ng-template #loadingSpinner>
+  <mat-card-content>
+    <div class="m-2 d-flex flex-row align-items-center justify-content star">
+      <div class="d-inline-block mr-2 spinnerAnimationCircle"></div>
+      <span>Fetching datasets...</span>
+    </div>
+  </mat-card-content>
+</ng-template>
 
-        </preview-component>
-          
-      </div>
+<ng-template #errorTemplate>
+  <mat-card-content>
+    <div class="ml-2 mr-2 alert alert-danger">
+      <i class="fas fa-exclamation-triangle"></i> Error fetching data. <a href="#" (click)="retryFetchData($event)" class="btn btn-link text-info">retry</a>    
     </div>
-  </div>
-</div>
+  </mat-card-content>
+</ng-template>
 
-<ng-template #modalityPicker>
-  <div class="filterWrapper">
-    <modality-picker
-      (click)="$event.stopPropagation();"
-      class="mw-100"
-      [countedDataM]="countedDataM"
-      (modalityFilterEmitter)="handleModalityFilterEvent($event)">
+<ng-template #datasetTemplate>
+  <!-- datawrapper -->
 
-    </modality-picker>
-  </div>
+  <ng-container *ngIf="dataentries | filterDataEntriesByMethods : visibleCountedDataM as filteredDataEntry">
+    <mat-card-content class="dataset-container w-100 overflow-hidden">
+      <cdk-virtual-scroll-viewport
+        class="h-100"
+        minBufferPx="200"
+        maxBufferPx="400"
+        itemSize="50">
+        <div class="virtual-scroll-element overflow-hidden" *cdkVirtualFor="let dataset of filteredDataEntry; trackBy: trackByFn; templateCacheSize: 0; let index = index">
+
+          <!-- divider, show if not first -->
+          <mat-divider *ngIf="index !== 0"></mat-divider>
+
+          <single-dataset-list-view
+            class="d-block pt-1 pb-1 h-100"
+            [kgSchema]="(dataset.fullId | getKgSchemaIdFromFullIdPipe)[0]"
+            [kgId]="(dataset.fullId | getKgSchemaIdFromFullIdPipe)[1]"
+            [dataset]="dataset"
+            [ripple]="true">
+    
+          </single-dataset-list-view>
+          
+
+        </div>
+      </cdk-virtual-scroll-viewport>
+    </mat-card-content>
+  </ng-container>
 </ng-template>
 
-<ng-template #fetched>
-  <div class="ml-2 mr-2 alert alert-danger" *ngIf="fetchError; else showData">
-    <i class="fas fa-exclamation-triangle"></i> Error fetching data. <a href="#" (click)="retryFetchData($event)" class="btn btn-link text-info">retry</a>
-  </div>
+<ng-template #filePreviewTemplate>
+  <preview-component
+    *ngIf="filePreviewName"
+    [datasetName]="filePreviewName">
+
+  </preview-component>
 </ng-template>
 
-<ng-template #showData>
-  <!-- datawrapper -->
-  <div *ngIf="dataentries | filterDataEntriesByMethods : visibleCountedDataM as filteredDataEntry"
->
-
-    <!-- dataentries -->
-    <div class="dataEntry">
-      <div>
-        <i *ngIf="dataentries.length > 0">
-          {{ dataentries.length }} total results. 
-          <span
-            *ngIf="visibleCountedDataM.length > 0 "> 
-            {{ filteredDataEntry.length }} 
-            filtered results.
-            <a
-              href="#"
-              class="btn btn-sm btn-link"
-              (click)="resetFilters($event)">reset filters
-            </a>
-          </span>
-        </i>
-        <i *ngIf="dataentries.length === 0">
-          No results to show.
-        </i>
-      </div>
-      <div *ngIf="dataentries.length > 0">
-        <dataset-viewer
-          class="mt-1"
-          *ngFor="let dataset of filteredDataEntry | searchResultPagination : currentPage : hitsPerPage"
-          (showPreviewDataset)="onShowPreviewDataset($event)"
-          [dataset]="dataset">
-          <div regionTagsContainer>
-
-            <!-- TODO may want to separate the region badge into a separate component -->
-            <span
-              *ngFor="let region of dataset.parcellationRegion"
-              class="badge badge-secondary mr-1 mw-100">
-              <span [ngStyle]="{backgroundColor:getBackgroundColorStyleFromRegion(region)}" class="dot">
-                
-              </span>
-              <span class="d-inline-block mw-100 overflow-hidden text-truncate">
-                {{ region.name }}
-              </span>
+<!-- modality picker / filter -->
+<ng-template #modalitySelector>
+  <mat-accordion class="flex-grow-0 flex-shrink-0">
+
+    <!-- Filters -->
+    <mat-expansion-panel hideToggle>
+
+      <mat-expansion-panel-header class="align-items-center">
+        <mat-panel-title class="d-inline-flex align-items-center">
+          <div class="flex-grow-1 flex-shrink-1 d-flex flex-column">
+            <span>
+                Related datasets
             </span>
+            <small *ngIf="dataentries.length > 0" class="text-muted">
+              <ng-template [ngIf]="modalityPickerCmp && modalityPickerCmp.checkedModality.length > 0"
+                [ngIfElse]="noFilterTmpl">
+                {{ (dataentries | filterDataEntriesByMethods : visibleCountedDataM).length }} / {{ dataentries.length }}
+              </ng-template>
+              
+              <ng-template #noFilterTmpl>
+                {{ dataentries.length }} datasets
+              </ng-template>
+            </small>
           </div>
-        </dataset-viewer>
-      </div>
+
+          <button mat-icon-button
+            [matTooltip]="visibleCountedDataM.length > 0 ? 'Reset filters' : null"
+            iav-delay-event="click"
+            (delayedEmit)="visibleCountedDataM.length > 0 ? clearAll() : null"
+            [iav-stop]="visibleCountedDataM.length > 0 ? 'click' : null"
+            [color]="visibleCountedDataM.length > 0 ? 'primary' : 'basic'">
+            <i class="fas fa-filter"></i>
+          </button>
+        </mat-panel-title>
+
+      </mat-expansion-panel-header>
+
+      <div class="max-h-10em overflow-y-auto overflow-x-hidden">
+        <modality-picker
+          iav-stop="click"
+          class="w-100"
+          [countedDataM]="visibleCountedDataM | resetcounterModalityPipe | appendFilterModalityPipe : [countedDataM]"
+          (modalityFilterEmitter)="handleModalityFilterEvent($event)"
+          #modalityPickerCmp>
       
-      <pagination-component
-        (paginationChange)="currentPage = $event"
-        [hitsPerPage]="hitsPerPage"
-        [total]="filteredDataEntry.length"
-        [currentPage]="currentPage">
-      </pagination-component>
-    </div>
+        </modality-picker>
+      </div>
+
+    </mat-expansion-panel>
+  </mat-accordion>
 
-  </div>
 </ng-template>
 
+<!-- currently unused -->
+<ng-template #history>
+  <mat-list>
+    <mat-list-item *ngFor="let item of (history$ | async)">
+      Viewed {{ item.file.name }}
+    </mat-list-item>
+  </mat-list>
+</ng-template>
\ No newline at end of file
diff --git a/src/ui/databrowserModule/datasetViewer/datasetViewer.component.ts b/src/ui/databrowserModule/datasetViewer/datasetViewer.component.ts
deleted file mode 100644
index 7be8d563234f7e854b1bda067e07a1a758471718..0000000000000000000000000000000000000000
--- a/src/ui/databrowserModule/datasetViewer/datasetViewer.component.ts
+++ /dev/null
@@ -1,42 +0,0 @@
-import { Component, Input, Output, EventEmitter, ViewChild, ElementRef } from "@angular/core";
-import { DataEntry } from "src/services/stateStore.service";
-
-@Component({
-  selector : 'dataset-viewer',
-  templateUrl : './datasetViewer.template.html',
-  styleUrls : ['./datasetViewer.style.css']
-})
-
-export class DatasetViewerComponent{
-  @Input() dataset : DataEntry
-  
-  @Output() showPreviewDataset: EventEmitter<{datasetName:string, event:MouseEvent}> = new EventEmitter()
-  @ViewChild('kgrRef', {read:ElementRef}) kgrRef: ElementRef
-
-  previewDataset(event:MouseEvent){
-    if (!this.dataset.preview) return
-    this.showPreviewDataset.emit({
-      event,
-      datasetName: this.dataset.name
-    })
-    event.stopPropagation()
-  }
-
-  clickMainCard(event:MouseEvent) {
-    if (this.kgrRef) this.kgrRef.nativeElement.click()
-  }
-
-  get methods(): string[]{
-    return this.dataset.activity.reduce((acc, act) => {
-      return acc.concat(act.methods)
-    }, [])
-  }
-
-  get hasKgRef(): boolean{
-    return this.kgReference.length > 0
-  }
-
-  get kgReference(): string[] {
-    return this.dataset.kgReference.map(ref => `https://doi.org/${ref}`)
-  }
-}
\ No newline at end of file
diff --git a/src/ui/databrowserModule/datasetViewer/datasetViewer.style.css b/src/ui/databrowserModule/datasetViewer/datasetViewer.style.css
deleted file mode 100644
index 17836b855bb96876f0781e7a30e4974aca789d72..0000000000000000000000000000000000000000
--- a/src/ui/databrowserModule/datasetViewer/datasetViewer.style.css
+++ /dev/null
@@ -1,26 +0,0 @@
-flat-tree-component
-{
-  overflow: hidden;
-  white-space: nowrap;
-}
-
-:host-context([darktheme="true"]) hr
-{
-  border-color: rgba(0, 0, 0, 0.5);
-}
-
-.dataset-pill
-{
-  font-size:80%;
-}
-
-.ds-container
-{
-
-  background-color: rgba(128, 128, 128, 0.2);
-}
-
-.preview-container
-{
-  flex: 0 0 2em;
-}
\ No newline at end of file
diff --git a/src/ui/databrowserModule/datasetViewer/datasetViewer.template.html b/src/ui/databrowserModule/datasetViewer/datasetViewer.template.html
deleted file mode 100644
index c1248259e4ac13b17b3395b63ef41d1d3396b277..0000000000000000000000000000000000000000
--- a/src/ui/databrowserModule/datasetViewer/datasetViewer.template.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<div class="d-flex">
-  <div
-    *ngIf="dataset; else defaultDisplay"
-    (click)="clickMainCard($event)"
-    [ngClass]="{'muted': !hasKgRef}"
-    class="p-2 ds-container main-container"
-    [hoverable]="{translateY:-2,disable:!hasKgRef}">
-    <ng-content select="[regionTagsContainer]">
-
-    </ng-content>
-    <div title>
-      {{ dataset.name }}
-    </div>
-
-    <a
-      *ngFor="let kgr of kgReference"
-      class="btn btn-sm btn-link"
-      target="_blank"
-      [href]="kgr"
-      hidden
-      #kgrRef>
-      Show more info on this dataset <i class="fas fa-external-link-alt"></i>
-    </a>
-  </div>
-
-  <div
-    *ngIf="dataset.preview"
-    (click)="previewDataset($event)"
-    class="ds-container ml-1 p-2 preview-container text-muted d-flex align-items-center"
-    [hoverable]="{translateY:-3}">
-    <i class="fas fa-eye"></i>
-  </div>
-</div>
-
-<ng-template #defaultDisplay>
-  Nothing to display ...
-</ng-template>
diff --git a/src/ui/databrowserModule/fileviewer/chart/chart.base.ts b/src/ui/databrowserModule/fileviewer/chart/chart.base.ts
new file mode 100644
index 0000000000000000000000000000000000000000..98d736d35e6b03a940428e5e1496a409a72427eb
--- /dev/null
+++ b/src/ui/databrowserModule/fileviewer/chart/chart.base.ts
@@ -0,0 +1,80 @@
+import { ViewChild, ElementRef } from "@angular/core";
+import { SafeUrl, DomSanitizer } from "@angular/platform-browser";
+import { Subject, Subscription, Observable, from, interval } from "rxjs";
+import { mapTo, map, shareReplay, switchMapTo, take, switchMap, filter } from "rxjs/operators";
+
+export class ChartBase{
+  @ViewChild('canvas') canvas: ElementRef
+
+  private _csvData: string
+
+  public csvDataUrl: SafeUrl
+  public csvTitle: string
+  public imageTitle: string
+
+  private _subscriptions: Subscription[] = []
+  private _newChart$: Subject<any> = new Subject()
+
+  private _csvUrl: string
+  private _pngUrl: string
+
+  public csvUrl$: Observable<SafeUrl>
+  public pngUrl$: Observable<SafeUrl>
+
+  constructor(private sanitizer: DomSanitizer){
+    this.csvUrl$ = this._newChart$.pipe(
+      mapTo(this._csvData),
+      map(data => {
+        const blob = new Blob([data], { type: 'data:text/csv;charset=utf-8' })
+        if (this._csvUrl) window.URL.revokeObjectURL(this._csvUrl)
+        this._csvUrl = window.URL.createObjectURL(blob)
+        return this.sanitizer.bypassSecurityTrustUrl(this._csvUrl)
+      }),
+      shareReplay(1)
+    )
+
+    this.pngUrl$ = this._newChart$.pipe(
+      switchMapTo(
+        interval(500).pipe(
+          map(() => this.canvas && this.canvas.nativeElement),
+          filter(v => !!v),
+          switchMap(el => 
+            from(
+              new Promise(rs => el.toBlob(blob => rs(blob), 'image/png'))
+            ) as Observable<Blob>
+          ),
+          filter(v => !!v),
+          take(1)
+        )
+      ),
+      map(blob => {
+        if (this._pngUrl) window.URL.revokeObjectURL(this._pngUrl)
+        this._pngUrl = window.URL.createObjectURL(blob)
+        return this.sanitizer.bypassSecurityTrustUrl(this._pngUrl)
+      }),
+      shareReplay(1)
+    )
+
+    // necessary 
+    this._subscriptions.push(
+      this.pngUrl$.subscribe()
+    )
+
+    this._subscriptions.push(
+      this.csvUrl$.subscribe()
+    )
+  }
+
+  superOnDestroy(){
+    if (this._csvUrl) window.URL.revokeObjectURL(this._csvUrl)
+    if (this._pngUrl) window.URL.revokeObjectURL(this._pngUrl)
+    while(this._subscriptions.length > 0) this._subscriptions.pop().unsubscribe()
+  }
+
+  generateNewCsv(csvData: string){
+    this._csvData = csvData
+    this.csvDataUrl = this.sanitizer.bypassSecurityTrustUrl(`data:text/csv;charset=utf-8,${csvData}`)
+    this._newChart$.next(null)
+  }
+
+}
\ No newline at end of file
diff --git a/src/ui/databrowserModule/fileviewer/chart.interface.ts b/src/ui/databrowserModule/fileviewer/chart/chart.interface.ts
similarity index 87%
rename from src/ui/databrowserModule/fileviewer/chart.interface.ts
rename to src/ui/databrowserModule/fileviewer/chart/chart.interface.ts
index 4a1371704fa6515fb8f0226ff5d2b0f51debd94b..300eca5c2859e6fd4a47ff1ce8f35f3584c36f0f 100644
--- a/src/ui/databrowserModule/fileviewer/chart.interface.ts
+++ b/src/ui/databrowserModule/fileviewer/chart/chart.interface.ts
@@ -1,6 +1,8 @@
 import { ChartOptions } from "chart.js";
 
 import merge from 'lodash.merge'
+import { SafeUrl } from "@angular/platform-browser";
+import { ElementRef } from "@angular/core";
 
 export interface ScaleOptionInterface{
   type? : string
@@ -69,6 +71,14 @@ export interface ScaleLabelInterface{
   display? : boolean
 }
 
+export interface CommonChartInterface{
+  csvDataUrl: SafeUrl
+  csvTitle: string
+  imageTitle: string
+
+  canvas: ElementRef
+}
+
 export const applyOption = (defaultOption:ChartOptions,option?:Partial<ChartOptions>)=>{
   merge(defaultOption,option)
 }
\ No newline at end of file
diff --git a/src/ui/databrowserModule/fileviewer/chart/line/line.chart.component.ts b/src/ui/databrowserModule/fileviewer/chart/line/line.chart.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..15b387dd893b28d9a80adb4c0db0d57195556c82
--- /dev/null
+++ b/src/ui/databrowserModule/fileviewer/chart/line/line.chart.component.ts
@@ -0,0 +1,183 @@
+import { Component, Input, OnChanges } from '@angular/core'
+import { DatasetInterface, ChartColor, ScaleOptionInterface, LegendInterface, TitleInterfacce, applyOption, CommonChartInterface } from '../chart.interface'
+
+import { ChartOptions, LinearTickOptions,ChartDataSets } from 'chart.js';
+import { Color } from 'ng2-charts';
+import { DomSanitizer, SafeUrl } from '@angular/platform-browser';
+import { ChartBase } from '../chart.base';
+
+@Component({
+  selector : `line-chart`,
+  templateUrl : './line.chart.template.html',
+  styleUrls : [ 
+    `./line.chart.style.css`
+   ],
+   exportAs: 'iavLineChart'
+})
+export class LineChart extends ChartBase implements OnChanges, CommonChartInterface{
+
+
+  /**
+   * labels of each of the columns, spider web edges
+   */
+  @Input() labels: string[]
+
+  /**
+   * shown on the legend, different lines
+   */
+  @Input() lineDatasets: LineDatasetInputInterface[] = []
+
+  /**
+   * colors of the datasetes
+  */
+  @Input() colors: ChartColor[] = []
+
+  @Input() options: any
+
+  mousescroll(_ev:MouseWheelEvent){
+
+    /**
+     * temporarily disabled
+    */
+
+  }
+
+  maxY: number
+
+  xAxesTicks: LinearTickOptions = {
+    stepSize: 20,
+    fontColor: 'white'
+  }
+  chartOption: Partial<LineChartOption> = {
+    responsive: true,
+    scales: {
+      xAxes: [{
+        type: 'linear',
+        gridLines: {
+          color: 'rgba(128,128,128,0.5)'
+        },
+        ticks: this.xAxesTicks,
+        scaleLabel: {
+          display: true,
+          labelString: 'X Axes label',
+          fontColor: 'rgba(200,200,200,1.0)'
+        }
+      }],
+      yAxes: [{
+        gridLines: {
+          color: 'rgba(128,128,128,0.5)'
+        },
+        ticks: {
+          fontColor: 'white',
+        },
+        scaleLabel: {
+          display: true,
+          labelString: 'Y Axes label',
+          fontColor: 'rgba(200,200,200,1.0)'
+        }
+      }],
+    },
+    legend: {
+      display: true
+    },
+    title: {
+      display: true,
+      text: 'Title',
+      fontColor: 'rgba(255,255,255,1.0)'
+    },
+    color: [{
+      backgroundColor: `rgba(255,255,255,0.2)`
+    }],
+    animation :undefined,
+    elements: 
+    {
+      point: {
+        radius: 0,
+        hoverRadius: 8,
+        hitRadius: 4
+      }
+    }
+    
+  }
+
+  chartDataset: DatasetInterface = {
+    labels: [],
+    datasets: []
+  }
+
+  shapedLineChartDatasets: ChartDataSets[]
+  
+  constructor(sanitizer:DomSanitizer){
+    super(sanitizer)
+  }
+
+  ngOnChanges(){
+    this.shapedLineChartDatasets = this.lineDatasets.map(lineDataset=>({
+      data: lineDataset.data.map((v,idx)=>({
+        x: idx,
+        y: v
+      })),
+      fill: 'origin'
+    }))
+
+    this.maxY = this.chartDataset.datasets.reduce((max,dataset)=>{
+      return Math.max(
+        max,
+        dataset.data.reduce((max,number)=>{
+          return Math.max(number,max)
+        },0))
+    },0)
+
+    applyOption(this.chartOption,this.options)
+
+    this.generateDataUrl()
+  }
+
+  getDataPointString(input:any):string{
+    return typeof input === 'number' || typeof input === 'string'
+      ? input.toString()
+      : this.getDataPointString(input.y)
+  }
+
+  private generateDataUrl(){
+    const row0 = [this.chartOption.scales.xAxes[0].scaleLabel.labelString].concat(this.chartOption.scales.yAxes[0].scaleLabel.labelString).join(',')
+    const maxRows = this.lineDatasets.reduce((acc, lds) => Math.max(acc, lds.data.length), 0)
+    const rows = Array.from(Array(maxRows)).map((_,idx) => [idx.toString()].concat(this.shapedLineChartDatasets.map(v => v.data[idx] ? this.getDataPointString(v.data[idx]) : '').join(','))).join('\n')
+    const csvData = `${row0}\n${rows}`
+
+    this.generateNewCsv(csvData)
+
+    this.csvTitle = `${this.getGraphTitleAsString().replace(/\s/g, '_')}.csv`
+    this.imageTitle = `${this.getGraphTitleAsString().replace(/\s/g, '_')}.png`
+  }
+
+  private getGraphTitleAsString():string{
+    try{
+      return this.chartOption.title.text.constructor === Array
+        ? (this.chartOption.title.text as string[]).join(' ')
+        : this.chartOption.title.text as string
+    }catch(e){
+      return `Untitled`
+    }
+  }
+}
+
+
+export interface LineDatasetInputInterface{
+  label?: string
+  data: number[]
+}
+
+export interface LinearChartOptionInterface{
+  scales?: {
+    xAxes?: ScaleOptionInterface[]
+    yAxes?: ScaleOptionInterface[]
+  }
+  legend?: LegendInterface
+  title?: TitleInterfacce
+  color?: Color[]
+}
+
+interface LineChartOption extends ChartOptions{
+  color?: Color[]
+}
diff --git a/src/ui/databrowserModule/fileviewer/chart/line/line.chart.style.css b/src/ui/databrowserModule/fileviewer/chart/line/line.chart.style.css
new file mode 100644
index 0000000000000000000000000000000000000000..7575b8e3247550c8d145a91ba034199fddc2feb9
--- /dev/null
+++ b/src/ui/databrowserModule/fileviewer/chart/line/line.chart.style.css
@@ -0,0 +1,4 @@
+:host
+{
+  display: block;
+}
diff --git a/src/ui/databrowserModule/fileviewer/chart/line/line.chart.template.html b/src/ui/databrowserModule/fileviewer/chart/line/line.chart.template.html
new file mode 100644
index 0000000000000000000000000000000000000000..fb69619ff98aebbddc81b1535ee3b0eb20b5662e
--- /dev/null
+++ b/src/ui/databrowserModule/fileviewer/chart/line/line.chart.template.html
@@ -0,0 +1,14 @@
+<div *ngIf="shapedLineChartDatasets"
+  class="position-relative col-12">
+  <canvas baseChart
+    (mousewheel)="mousescroll($event)"
+    height="500"
+    width="500"
+    chartType="line"
+    [options]="chartOption"
+    [colors]="colors"
+    [datasets]="shapedLineChartDatasets"
+    [labels]="chartDataset.labels"
+    #canvas>
+  </canvas>
+</div>
\ No newline at end of file
diff --git a/src/ui/databrowserModule/fileviewer/radar/radar.chart.component.ts b/src/ui/databrowserModule/fileviewer/chart/radar/radar.chart.component.ts
similarity index 67%
rename from src/ui/databrowserModule/fileviewer/radar/radar.chart.component.ts
rename to src/ui/databrowserModule/fileviewer/chart/radar/radar.chart.component.ts
index 591a0cc9739812b24e605bb045b47b50dc3bd2cb..df4c7edfd04f802c33894a44201f8a122e1c0ea6 100644
--- a/src/ui/databrowserModule/fileviewer/radar/radar.chart.component.ts
+++ b/src/ui/databrowserModule/fileviewer/chart/radar/radar.chart.component.ts
@@ -1,17 +1,20 @@
-import { Component, Input, OnChanges, ViewChild, ElementRef, AfterViewInit, AfterViewChecked } from '@angular/core'
+import { Component, Input, OnChanges, ViewChild, ElementRef, OnInit, OnDestroy } from '@angular/core'
 
-import { DatasetInterface, ChartColor, ScaleOptionInterface, TitleInterfacce, LegendInterface, applyOption } from '../chart.interface';
+import { DatasetInterface, ChartColor, ScaleOptionInterface, TitleInterfacce, LegendInterface, applyOption, CommonChartInterface } from '../chart.interface';
 import { Color } from 'ng2-charts';
+import { DomSanitizer } from '@angular/platform-browser';
+import { RadialChartOptions } from 'chart.js'
+import { ChartBase } from '../chart.base';
 @Component({
   selector : `radar-chart`,
   templateUrl : './radar.chart.template.html',
   styleUrls : [ 
     `./radar.chart.style.css`
    ],
+   exportAs: 'iavRadarChart'
 })
-export class RadarChart implements OnChanges{
+export class RadarChart extends ChartBase implements OnDestroy, OnChanges, CommonChartInterface {
 
-  @ViewChild('canvas') canvas : ElementRef
   /**
    * labels of each of the columns, spider web edges
    */
@@ -54,7 +57,8 @@ export class RadarChart implements OnChanges{
 
   maxY : number
 
-  chartOption : RadarChartOptionInterface = {
+  chartOption : Partial<RadialChartOptions> = {
+    responsive: true,
     scale : {
       gridLines : {
         color : 'rgba(128,128,128,0.5)'
@@ -81,10 +85,7 @@ export class RadarChart implements OnChanges{
       display : true,
       fontColor : 'rgba(255,255,255,1.0)'
     },
-    color : [{
-      backgroundColor : `rgba(255,255,255,0.2)`
-    }],
-    animation : false
+    animation: null
   }
 
   chartDataset : DatasetInterface = {
@@ -92,6 +93,13 @@ export class RadarChart implements OnChanges{
     datasets : []
   }
 
+  constructor(sanitizer: DomSanitizer){
+    super(sanitizer)
+  }
+
+  ngOnDestroy(){
+    this.superOnDestroy()
+  }
   
   ngOnChanges(){
     this.chartDataset = {
@@ -109,6 +117,28 @@ export class RadarChart implements OnChanges{
     },0)
 
     applyOption(this.chartOption,this.options)
+
+    this.generateDataUrl()
+  }
+
+  private generateDataUrl(){
+    const row0 = ['Receptors', ...this.chartDataset.datasets.map(ds => ds.label || 'no label')].join(',')
+    const otherRows = (this.chartDataset.labels as string[])
+      .map((label, index) => [ label, ...this.chartDataset.datasets.map(ds => ds.data[index]) ].join(',')).join('\n')
+    const csvData = `${row0}\n${otherRows}`
+
+    this.generateNewCsv(csvData)
+
+    this.csvTitle = `${this.getGraphTitleAsString().replace(/\s/g, '_')}.csv`
+    this.imageTitle = `${this.getGraphTitleAsString().replace(/\s/g, '_')}.png`    
+  }
+
+  private getGraphTitleAsString():string{
+    try{
+      return this.chartOption.title.text as string
+    }catch(e){
+      return `Untitled`
+    }
   }
 }
 
diff --git a/src/ui/databrowserModule/fileviewer/chart/radar/radar.chart.style.css b/src/ui/databrowserModule/fileviewer/chart/radar/radar.chart.style.css
new file mode 100644
index 0000000000000000000000000000000000000000..7575b8e3247550c8d145a91ba034199fddc2feb9
--- /dev/null
+++ b/src/ui/databrowserModule/fileviewer/chart/radar/radar.chart.style.css
@@ -0,0 +1,4 @@
+:host
+{
+  display: block;
+}
diff --git a/src/ui/databrowserModule/fileviewer/chart/radar/radar.chart.template.html b/src/ui/databrowserModule/fileviewer/chart/radar/radar.chart.template.html
new file mode 100644
index 0000000000000000000000000000000000000000..17defea39a2b3af6ca2e561295d7f759a2f4a493
--- /dev/null
+++ b/src/ui/databrowserModule/fileviewer/chart/radar/radar.chart.template.html
@@ -0,0 +1,21 @@
+<div *ngIf="chartDataset.datasets.length > 0 && chartDataset.labels.length > 0"
+  class="position-relative col-12">
+
+  <!-- baseChart directive is needed by ng2-chart -->
+  <canvas baseChart
+    (mousewheel)="mousescroll($event)"
+    class="h-100 w-100"
+    height="500"
+    width="500"
+    chartType="radar"
+    [options]="chartOption"
+    [colors]="colors"
+    [datasets]="chartDataset.datasets"
+    [labels]="chartDataset.labels"
+    #canvas>
+  </canvas>
+</div>
+
+<span *ngIf="chartDataset.datasets.length === 0 || chartDataset.labels.length === 0">
+  datasets and labels are required to display radar
+</span>
\ No newline at end of file
diff --git a/src/ui/databrowserModule/fileviewer/dedicated/dedicated.component.ts b/src/ui/databrowserModule/fileviewer/dedicated/dedicated.component.ts
index f7ddd748850aef15f3f9a6bc50845cafe3ee4db3..ce27a423d9f547aa9323fce09d8a1bd3b88f9b49 100644
--- a/src/ui/databrowserModule/fileviewer/dedicated/dedicated.component.ts
+++ b/src/ui/databrowserModule/fileviewer/dedicated/dedicated.component.ts
@@ -1,6 +1,7 @@
 import { Component, Input } from "@angular/core";
 import { ViewerPreviewFile } from "src/services/state/dataStore.store";
 import { DatabrowserService } from "../../databrowser.service";
+import { KgSingleDatasetService } from "../../kgSingleDatasetService.service";
 
 @Component({
   selector : 'dedicated-viewer',
@@ -14,21 +15,21 @@ export class DedicatedViewer{
   @Input() previewFile : ViewerPreviewFile
 
   constructor(
-    private dbService:DatabrowserService,
+    private singleKgDsService:KgSingleDatasetService,
   ){
 
   }
 
   get isShowing(){
-    return this.dbService.ngLayers.has(this.previewFile.url)
+    return this.singleKgDsService.ngLayers.has(this.previewFile.url)
   }
 
   showDedicatedView(){
-    this.dbService.showNewNgLayer({ url: this.previewFile.url })
+    this.singleKgDsService.showNewNgLayer({ url: this.previewFile.url })
   }
 
   removeDedicatedView(){
-    this.dbService.removeNgLayer({ url: this.previewFile.url })
+    this.singleKgDsService.removeNgLayer({ url: this.previewFile.url })
   }
   
   click(event:MouseEvent){
@@ -37,10 +38,4 @@ export class DedicatedViewer{
       ? this.removeDedicatedView()
       : this.showDedicatedView()
   }
-
-  get tooltipText(){
-    return this.isShowing
-      ? 'Remove this file in the viewer'
-      : 'View this file in the viewer'
-  }
-}
\ No newline at end of file
+}
diff --git a/src/ui/databrowserModule/fileviewer/dedicated/dedicated.style.css b/src/ui/databrowserModule/fileviewer/dedicated/dedicated.style.css
index c1ee41eefe5349674cd7d350e80275c86bea4843..c281f74383e41b752f15be648e2d05cebda0e41a 100644
--- a/src/ui/databrowserModule/fileviewer/dedicated/dedicated.style.css
+++ b/src/ui/databrowserModule/fileviewer/dedicated/dedicated.style.css
@@ -2,4 +2,4 @@ a
 {
   margin: 0 1em;
   transition: all 200ms ease;
-}
\ No newline at end of file
+}
diff --git a/src/ui/databrowserModule/fileviewer/dedicated/dedicated.template.html b/src/ui/databrowserModule/fileviewer/dedicated/dedicated.template.html
index 3517468edf64042507f0768dead716797805adfe..75343992eaf8ecab64286c466a4ae70d0e856e10 100644
--- a/src/ui/databrowserModule/fileviewer/dedicated/dedicated.template.html
+++ b/src/ui/databrowserModule/fileviewer/dedicated/dedicated.template.html
@@ -2,12 +2,21 @@
   You can directly preview this nifti file overlaying the atlas viewer.
 </div>
 
-<a 
-  href="#"
-  [tooltip]="tooltipText"
-  container="body"
-  class="btn btn-sm rounded-circle"
-  [ngClass]="isShowing ? 'btn-primary' : 'btn-outline-secondary'"
-  (click)="click($event)">
-  <i class="far fa-eye"></i>
-</a>
\ No newline at end of file
+
+<div class="w-100 d-flex align-items-center flex-column">
+
+<div *ngIf="isShowing" class="d-flex flex-column align-items-center">
+  <i class="far fa-eye h3" [ngStyle]="isShowing && {'color' : '#04D924'}"></i>
+  <span>File is added</span>
+</div>
+
+  <button *ngIf="!isShowing" mat-button class="p-3 outline-none mat-raised-button" [disabled]="isShowing" color="primary" (click)="!isShowing && showDedicatedView()">
+    <span class="ml-2">Click to add file in Atlas Viewer</span>
+  </button>
+
+  <button mat-button *ngIf="isShowing" class="mat-raised-button p-3 outline-none" color="primary" (click)="removeDedicatedView()">
+    <i class="fas fa-eye-slash" style="color: #D93D04"></i>
+    Remove file from <b>Atlas Viewer</b>
+  </button>
+
+</div>
diff --git a/src/ui/databrowserModule/fileviewer/fileviewer.component.ts b/src/ui/databrowserModule/fileviewer/fileviewer.component.ts
index 1048721014ffc5d81ff849ec2ccb635c2611e6ee..6425465324e6dcb313b2823f06cb5715e4386857 100644
--- a/src/ui/databrowserModule/fileviewer/fileviewer.component.ts
+++ b/src/ui/databrowserModule/fileviewer/fileviewer.component.ts
@@ -1,9 +1,9 @@
-import { Component, Input, OnChanges, OnDestroy, ViewChild, ElementRef, OnInit, Output, EventEmitter } from '@angular/core'
+import { Component, Input, Inject, Optional, OnChanges, ViewChild, ChangeDetectorRef } from '@angular/core'
 
-import { DomSanitizer } from '@angular/platform-browser';
-import { interval,from } from 'rxjs';
-import { switchMap,take,retry } from 'rxjs/operators'
 import { ViewerPreviewFile } from 'src/services/state/dataStore.store';
+import { MAT_DIALOG_DATA } from '@angular/material';
+import { ChartBase } from './chart/chart.base';
+
 
 @Component({
   selector : 'file-viewer',
@@ -13,90 +13,33 @@ import { ViewerPreviewFile } from 'src/services/state/dataStore.store';
    ] 
 })
 
-export class FileViewer implements OnChanges,OnDestroy,OnInit{
+export class FileViewer implements OnChanges{
+
+  childChart: ChartBase
+
+  @ViewChild('childChart') 
+  set setChildChart(childChart:ChartBase){
+    this.childChart = childChart
+    this.cdr.detectChanges()
+  } 
+
   /**
    * fetched directly from KG
    */
   @Input() previewFile : ViewerPreviewFile
-  
-  @ViewChild('childChart') childChart : ChartComponentInterface
 
   constructor(
-    private sanitizer:DomSanitizer
+    private cdr: ChangeDetectorRef,
+    @Optional() @Inject(MAT_DIALOG_DATA) data
   ){
-  }
-
-  private _downloadUrl : string
-  private _pngDownloadUrl : string
-
-  ngOnDestroy(){
-    this.revokeUrls()
-  }
-
-  ngOnInit(){
-    this.createUrls()
-  }
-  ngOnChanges(){
-    this.revokeUrls()
-    this.createUrls()
-  }
-
-  get downloadUrl(){
-    return this.previewFile.url
-  }
-
-  /* TODO require better way to check if a chart exists */
-  private createUrls(){
-
-    const timer$ = interval(50)
-    const timerSet$ = timer$.pipe(
-      switchMap(()=>from(new Promise((rs,rj)=>{
-        if(!this.childChart)
-          return rj('chart not defined after 500ms')
-        this.childChart.canvas.nativeElement.toBlob((blob)=>{
-          blob ? rs(blob) : rj('blob is undefined')
-          
-        },'image/png')
-        }))),
-      retry(10),
-      take(1)
-    )
-
-    timerSet$.subscribe((blob)=>{
-      this._pngDownloadUrl = URL.createObjectURL(blob)
-    },(err)=>console.warn('warning',err))
-
-
-    if(!this.previewFile.url && this.previewFile.data){
-      const stringJson = JSON.stringify(this.previewFile.data)
-      const newBlob = new Blob([stringJson],{type:'application/octet-stream'})
-      this._downloadUrl = URL.createObjectURL(newBlob)
-    }
-  }
-
-  private revokeUrls(){
-    if(this._downloadUrl){
-      URL.revokeObjectURL(this._downloadUrl)
-      this._downloadUrl = null
+    if (data) {
+      this.previewFile = data.previewFile
+      this.downloadUrl = this.previewFile.url
     }
-    if(this._pngDownloadUrl){
-      URL.revokeObjectURL(this._pngDownloadUrl)
-      this._pngDownloadUrl = null
-    }
-  }
-
-  get downloadName(){
-    return this.previewFile.name
   }
 
-  get downloadPng(){
-    return this._pngDownloadUrl ?
-      this.sanitizer.bypassSecurityTrustResourceUrl(this._pngDownloadUrl) :
-      null
+  public downloadUrl: string
+  ngOnChanges(){
+    this.downloadUrl = this.previewFile.url
   }
 }
-
-interface ChartComponentInterface{
-  canvas : ElementRef
-}
-
diff --git a/src/ui/databrowserModule/fileviewer/fileviewer.style.css b/src/ui/databrowserModule/fileviewer/fileviewer.style.css
index fb19d5e76b665d4aff9f7d89ce902a387d1a8040..e850661e5c5879af558758be2476da087685349a 100644
--- a/src/ui/databrowserModule/fileviewer/fileviewer.style.css
+++ b/src/ui/databrowserModule/fileviewer/fileviewer.style.css
@@ -28,12 +28,7 @@ kg-entry-viewer
   display: block;
 }
 
-div[anchorContainer]
-{
-  padding:0.2em 1em;
-}
-
 div[mimetypeTextContainer]
 {
   margin:1em;
-}
\ No newline at end of file
+}
diff --git a/src/ui/databrowserModule/fileviewer/fileviewer.template.html b/src/ui/databrowserModule/fileviewer/fileviewer.template.html
index 033ed3a4521d45d2ef0a8803a1023bb2c6416667..cee788c3974a892baf17bb5839a9b50eba728f19 100644
--- a/src/ui/databrowserModule/fileviewer/fileviewer.template.html
+++ b/src/ui/databrowserModule/fileviewer/fileviewer.template.html
@@ -1,19 +1,10 @@
+<div class="w-100 d-flex justify-content-center mt-2 font-weight-bold">
+  {{previewFile.name}}
+</div>
+
 <div *ngIf = "!previewFile">
   previewFile as an input is required for this component to work...
 </div>
-
-<!-- KG Entry Viewer -->
-<!-- <kg-entry-viewer *ngIf = "previewFile.kgID && false" [dataset] = "previewFile">
-</kg-entry-viewer> -->
-
-<!-- citation -->
-<!-- <citations-component 
-  citationContainer
-  *ngIf = "previewFile && !previewFile.kgID"
-  [properties] = "previewFile.datasetProperties">
-</citations-component> -->
-
-<!-- file viewer -->
 <div 
   *ngIf = "previewFile"
   [ngSwitch]="previewFile.mimetype">
@@ -25,88 +16,98 @@
   <!-- image  -->
   <div *ngSwitchCase="'image/jpeg'" >
     <!-- TODO figure out a more elegant way of dealing with draggable img -->
-    <img draggable = "false" [src] = "previewFile.url" />
+    <img draggable="false" [src]="previewFile.url" />
   </div>
 
   <!-- data container -->
-  <div [ngSwitch]="previewFile.data.chartType" *ngSwitchCase="'application/json'">
-    <radar-chart
-      #childChart
-      [colors] = "previewFile.data.colors"
-      [options] = "previewFile.data.chartOptions"
-      [labels]="previewFile.data.labels"
-      [radarDatasets]="previewFile.data.datasets"
-      *ngSwitchCase="'radar'">
-
-    </radar-chart>
-    <line-chart
-      #childChart
-      [colors] = "previewFile.data.colors"
-      [options] = "previewFile.data.chartOptions"
-      [lineDatasets] = "previewFile.data.datasets"
-      *ngSwitchCase = "'line'">
-
-    </line-chart>
+  <div [ngSwitch]="previewFile.data.chartType"
+    *ngSwitchCase="'application/json'">
+
+    <ng-container *ngSwitchCase="'radar'">
+      <radar-chart
+        #childChart="iavRadarChart"
+        [colors]="previewFile.data.colors"
+        [options]="previewFile.data.chartOptions"
+        [labels]="previewFile.data.labels"
+        [radarDatasets]="previewFile.data.datasets">
+  
+      </radar-chart>
+
+    </ng-container>
+
+    <ng-container *ngSwitchCase="'line'">
+      <line-chart
+        #childChart="iavLineChart"
+        [colors]="previewFile.data.colors"
+        [options]="previewFile.data.chartOptions"
+        [lineDatasets]="previewFile.data.datasets">
+  
+      </line-chart>
+    </ng-container>
     <div *ngSwitchDefault>
       The json file is not a chart. I mean, we could dump the json, but would it really help?
     </div>
   </div>
-  <div *ngSwitchCase = "'application/hibop'">
+
+  <div *ngSwitchCase="'application/hibop'">
     <div mimetypeTextContainer>
         You will need to install the HiBoP software on your computer, click the 'Download File' button and open the .hibop file.
     </div>
   </div>
-  <div *ngSwitchCase = "'application/nifti'">
+
+  <div *ngSwitchCase="'application/nifti'">
     <dedicated-viewer
-      [previewFile] = "previewFile">
+      [previewFile]="previewFile">
     </dedicated-viewer>
   </div>
-  <div *ngSwitchCase = "'application/nehuba-layer'">
-    APPLICATION NEHUBA LAYER - NOT YET IMPLEMENTED
-    <!-- <dedicated-view-controller
-      [dedicatedViewString]="'nehuba-layer://'+previewFile.url"
-      [dedicatedViewNehubaLayerObject]="previewFile.data">
 
-    </dedicated-view-controller> -->
+  <div *ngSwitchCase="'application/nehuba-layer'">
+    APPLICATION NEHUBA LAYER - NOT YET IMPLEMENTED
   </div>
+
   <div *ngSwitchDefault>
     <div mimetypeTextContainer>
       The selected file with the mimetype {{ previewFile.mimetype }} could not be displayed.
     </div>
   </div>
+
 </div>
 
-<!-- caption -->
-<!-- <readmore-component *ngIf = "previewFile.properties && previewFile.properties.description">
-  <small id = "captions">
-    {{ previewFile.properties.description }}
-  </small>
-</readmore-component> -->
-
-<div
-  anchorContainer
-  *ngIf="downloadUrl">
-  <a
-    class="btn btn-sm btn-outline-secondary rounded-circle"
-    tooltip="Download file"
-    container="body"
+<div class="mt-1 w-100 d-flex justify-content-end pl-1 pr-1 pt-2 pb-2">
+
+  <a mat-icon-button
+    matTooltip="Download line graph as csv"
+    [hidden]="!(childChart && childChart.csvDataUrl)"
+
+    target="_blank"
+    [download]="childChart && childChart.csvTitle"
+    [href]="childChart && childChart.csvDataUrl">
+  
+    <i class="fas fa-file-csv"></i>
+  </a>
+
+  <!-- nb -->
+  <!-- cross origin download attribute will be ignored -->
+  <!-- this effective means that when dev on localhost:8080, resource request to localhost:3000 will always open in a new window -->
+  <!-- link: https://developers.google.com/web/updates/2018/02/chrome-65-deprecations#block_cross-origin_wzxhzdk5a_download -->
+  <a mat-icon-button
+    *ngIf="downloadUrl"
     [href]="downloadUrl"
     target="_blank"
-    download>
-    <i class="far fa-arrow-alt-circle-down"></i>
+    download
+    matTooltip="Download File">
+    <i class="fas fa-download"></i>
   </a>
-</div>
 
-<div
-  anchorContainer
-  *ngIf="downloadPng">
-  <a
-    class="btn btn-sm btn-outline-secondary rounded-circle"
-    tooltip="Download chart as an image"
-    container="body"
-    [href]="downloadPng"
+
+  <a mat-icon-button
+    *ngIf="childChart"
     target="_blank"
-    download>
-    <i class="far fa-image"></i>
+    [href]="childChart.pngUrl$ | async"
+    [download]="childChart && childChart.imageTitle"
+
+    matTooltip="Download chart as an image">
+    <i class="fas fa-download "></i>
   </a>
+
 </div>
diff --git a/src/ui/databrowserModule/fileviewer/line/line.chart.component.ts b/src/ui/databrowserModule/fileviewer/line/line.chart.component.ts
deleted file mode 100644
index c84129c07064e1e1a5a5b648426c2619fc613b43..0000000000000000000000000000000000000000
--- a/src/ui/databrowserModule/fileviewer/line/line.chart.component.ts
+++ /dev/null
@@ -1,181 +0,0 @@
-import { Component, Input, OnChanges, ElementRef, ViewChild } from '@angular/core'
-import {  DatasetInterface, ChartColor, ScaleOptionInterface, LegendInterface, TitleInterfacce, applyOption } from '../chart.interface'
-
-import { ChartOptions, LinearTickOptions,ChartDataSets, ChartPoint } from 'chart.js';
-import { Color } from 'ng2-charts';
-import { DomSanitizer, SafeUrl } from '@angular/platform-browser';
-@Component({
-  selector : `line-chart`,
-  templateUrl : './line.chart.template.html',
-  styleUrls : [ 
-    `./line.chart.style.css`
-   ],
-})
-export class LineChart implements OnChanges{
-
-  @ViewChild('canvas') canvas : ElementRef
-
-  /**
-   * labels of each of the columns, spider web edges
-   */
-  @Input() labels : string[]
-
-  /**
-   * shown on the legend, different lines
-   */
-  @Input() lineDatasets : LineDatasetInputInterface[] = []
-
-  /**
-   * colors of the datasetes
-  */
-  @Input() colors : ChartColor[] = []
-
-  @Input() options : any
-
-  mousescroll(_ev:MouseWheelEvent){
-
-    /**
-     * temporarily disabled
-    */
-
-  }
-
-  maxY : number
-
-  xAxesTicks : LinearTickOptions = {
-    stepSize : 20,
-    fontColor : 'white'
-  }
-  chartOption : LineChartOption = {
-    scales : {
-      xAxes : [{
-        type : 'linear',
-        gridLines : {
-          color : 'rgba(128,128,128,0.5)'
-        },
-        ticks : this.xAxesTicks,
-        scaleLabel : {
-          display : true,
-          labelString : 'X Axes label',
-          fontColor : 'rgba(200,200,200,1.0)'
-        }
-      }],
-      yAxes : [{
-        gridLines : {
-          color : 'rgba(128,128,128,0.5)'
-        },
-        ticks : {
-          fontColor : 'white',
-        },
-        scaleLabel : {
-          display : true,
-          labelString : 'Y Axes label',
-          fontColor : 'rgba(200,200,200,1.0)'
-        }
-      }],
-    },
-    legend : {
-      display : true
-    },
-    title : {
-      display : true,
-      text : 'Title',
-      fontColor : 'rgba(255,255,255,1.0)'
-    },
-    color : [{
-      backgroundColor : `rgba(255,255,255,0.2)`
-    }],
-    animation :undefined,
-    elements : 
-    {
-      point : {
-        radius : 0,
-        hoverRadius : 8,
-        hitRadius : 4
-      }
-    }
-    
-  }
-
-  chartDataset : DatasetInterface = {
-    labels : [],
-    datasets : []
-  }
-
-  shapedLineChartDatasets : ChartDataSets[]
-  
-  constructor(private sanitizer:DomSanitizer){
-    
-  }
-
-  ngOnChanges(){
-    this.shapedLineChartDatasets = this.lineDatasets.map(lineDataset=>({
-      data : lineDataset.data.map((v,idx)=>({
-        x : idx,
-        y : v
-      })),
-      fill : 'origin'
-    }))
-    
-    this.maxY = this.chartDataset.datasets.reduce((max,dataset)=>{
-      return Math.max(
-        max,
-        dataset.data.reduce((max,number)=>{
-          return Math.max(number,max)
-        },0))
-    },0)
-
-    applyOption(this.chartOption,this.options)
-  }
-
-  getDataPointString(input:any):string{
-    return typeof input === 'number' || typeof input === 'string'
-      ? input.toString()
-      : this.getDataPointString(input.y)
-  }
-
-  get cvsData():string{
-    const row0 = [this.chartOption.scales.xAxes[0].scaleLabel.labelString].concat(this.chartOption.scales.yAxes[0].scaleLabel.labelString).join(',')
-    const maxRows = this.lineDatasets.reduce((acc, lds) => Math.max(acc, lds.data.length), 0)
-    const rows = Array.from(Array(maxRows)).map((_,idx) => [idx.toString()].concat(this.shapedLineChartDatasets.map(v => v.data[idx] ? this.getDataPointString(v.data[idx]) : '').join(','))).join('\n')
-    return `${row0}\n${rows}`
-  }
-
-  get csvDataUrl():SafeUrl{
-    return this.sanitizer.bypassSecurityTrustUrl(`data:text/csv;charset=utf-8,${this.cvsData}`)
-  }
-
-  get csvTitle(){
-    return `${this.graphTitleAsString.replace(/\s/g, '')}.csv`
-  }
-
-  get graphTitleAsString():string{
-    try{
-      return this.chartOption.title.text.constructor === Array
-        ? (this.chartOption.title.text as string[]).join(' ')
-        : this.chartOption.title.text as string
-    }catch(e){
-      return `Untitled`
-    }
-  }
-}
-
-
-export interface LineDatasetInputInterface{
-  label? : string
-  data : number[]
-}
-
-export interface LinearChartOptionInterface{
-  scales? : {
-    xAxes? : ScaleOptionInterface[]
-    yAxes? : ScaleOptionInterface[]
-  }
-  legend? : LegendInterface
-  title? : TitleInterfacce
-  color? : Color[]
-}
-
-interface LineChartOption extends ChartOptions{
-  color? : Color[]
-}
\ No newline at end of file
diff --git a/src/ui/databrowserModule/fileviewer/line/line.chart.style.css b/src/ui/databrowserModule/fileviewer/line/line.chart.style.css
deleted file mode 100644
index 4a9f715af400a2241db547d7977b39339775c4bd..0000000000000000000000000000000000000000
--- a/src/ui/databrowserModule/fileviewer/line/line.chart.style.css
+++ /dev/null
@@ -1,5 +0,0 @@
-:host
-{
-  display:block;
-  margin:1em;
-}
\ No newline at end of file
diff --git a/src/ui/databrowserModule/fileviewer/line/line.chart.template.html b/src/ui/databrowserModule/fileviewer/line/line.chart.template.html
deleted file mode 100644
index b3882ceae471095800bf33ff36a652f1090d5fa6..0000000000000000000000000000000000000000
--- a/src/ui/databrowserModule/fileviewer/line/line.chart.template.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<canvas 
-  *ngIf="shapedLineChartDatasets"
-  (mousewheel)="mousescroll($event)"
-  width='100%'
-  height='100%'
-  baseChart 
-  chartType="line"
-  [options]="chartOption"
-  [colors]="colors"
-  [datasets]="shapedLineChartDatasets"
-  [labels]="chartDataset.labels"
-  #canvas>
-</canvas>
-<a
-  [download]="csvTitle"
-  [href]="csvDataUrl"
-  tooltip="Download line graph as csv"
-  container="body"
-  class="btn btn-sm btn-outline-secondary rounded-circle"
-  *ngIf="shapedLineChartDatasets">
-  <i class="fas fa-file-csv"></i>
-</a>
-<span
-  *ngIf="!shapedLineChartDatasets">
-  datasets are required to display linear graph
-</span>
\ No newline at end of file
diff --git a/src/ui/databrowserModule/fileviewer/radar/radar.chart.style.css b/src/ui/databrowserModule/fileviewer/radar/radar.chart.style.css
deleted file mode 100644
index 4a9f715af400a2241db547d7977b39339775c4bd..0000000000000000000000000000000000000000
--- a/src/ui/databrowserModule/fileviewer/radar/radar.chart.style.css
+++ /dev/null
@@ -1,5 +0,0 @@
-:host
-{
-  display:block;
-  margin:1em;
-}
\ No newline at end of file
diff --git a/src/ui/databrowserModule/fileviewer/radar/radar.chart.template.html b/src/ui/databrowserModule/fileviewer/radar/radar.chart.template.html
deleted file mode 100644
index b45ae24429a8121d3ec8444921d6ea1bff60a38c..0000000000000000000000000000000000000000
--- a/src/ui/databrowserModule/fileviewer/radar/radar.chart.template.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<canvas 
-  #canvas
-  (mousewheel)="mousescroll($event)"
-  width = '100%'
-  height = '100%'
-  *ngIf = "chartDataset.datasets.length > 0 && chartDataset.labels.length > 0"
-  baseChart 
-  chartType="radar"
-  [options]="chartOption"
-  [colors]="colors"
-  [datasets]="chartDataset.datasets"
-  [labels]="chartDataset.labels">
-</canvas>
-<span
-  *ngIf = "chartDataset.datasets.length == 0 || chartDataset.labels.length == 0">
-  datasets and labels are required to display radar
-</span>
\ No newline at end of file
diff --git a/src/ui/databrowserModule/kgSingleDatasetService.service.ts b/src/ui/databrowserModule/kgSingleDatasetService.service.ts
new file mode 100644
index 0000000000000000000000000000000000000000..eb2d69f94efdc30e29fe94f26bf7c24a30f39000
--- /dev/null
+++ b/src/ui/databrowserModule/kgSingleDatasetService.service.ts
@@ -0,0 +1,176 @@
+import { Injectable, TemplateRef, OnDestroy } from "@angular/core";
+import { AtlasViewerConstantsServices } from "src/atlasViewer/atlasViewer.constantService.service"
+import { Store, select } from "@ngrx/store";
+import { SHOW_BOTTOM_SHEET } from "src/services/state/uiState.store";
+import { ViewerPreviewFile, DataEntry } from "src/services/state/dataStore.store";
+import { determinePreviewFileType, PREVIEW_FILE_TYPES } from "./preview/previewFileIcon.pipe";
+import { MatDialog, MatSnackBar } from "@angular/material";
+import { FileViewer } from "./fileviewer/fileviewer.component";
+import { ADD_NG_LAYER, REMOVE_NG_LAYER, CHANGE_NAVIGATION } from "src/services/stateStore.service";
+import { Subscription, Subject } from "rxjs";
+import { HttpClient } from "@angular/common/http";
+import { GetKgSchemaIdFromFullIdPipe } from "./util/getKgSchemaIdFromFullId.pipe";
+
+@Injectable({ providedIn: 'root' })
+export class KgSingleDatasetService implements OnDestroy{
+
+  public previewingFile$: Subject<{file:ViewerPreviewFile, dataset: DataEntry}> = new Subject()
+
+  private subscriptions: Subscription[] = []
+  public ngLayers : Set<string> = new Set()
+
+  private getKgSchemaIdFromFullIdPipe: GetKgSchemaIdFromFullIdPipe = new GetKgSchemaIdFromFullIdPipe()
+
+  constructor(
+    private constantService: AtlasViewerConstantsServices,
+    private store$: Store<any>,
+    private dialog: MatDialog,
+    private http: HttpClient,
+    private snackBar: MatSnackBar
+  ) {
+
+    this.subscriptions.push(
+      this.store$.pipe(
+        select('ngViewerState')
+      ).subscribe(layersInterface => {
+        this.ngLayers = new Set(layersInterface.layers.map(l => l.source.replace(/^nifti\:\/\//, '')))
+      })
+    )
+  }
+
+  ngOnDestroy(){
+    while (this.subscriptions.length > 0) {
+      this.subscriptions.pop().unsubscribe()
+    }
+  }
+
+  public datasetHasPreview({ name } : { name: string } = { name: null }){
+    if (!name) throw new Error('kgSingleDatasetService#datasetHashPreview name must be defined')
+    const _url = new URL(`${this.constantService.backendUrl}datasets/hasPreview`)
+    const searchParam = _url.searchParams
+    searchParam.set('datasetName', name)
+    return this.http.get(_url.toString())
+  }
+
+  public getInfoFromKg({ kgId, kgSchema = 'minds/core/dataset/v1.0.0' }: Partial<KgQueryInterface>) {
+    const _url = new URL(`${this.constantService.backendUrl}datasets/kgInfo`)
+    const searchParam = _url.searchParams
+    searchParam.set('kgSchema', kgSchema)
+    searchParam.set('kgId', kgId)
+    return fetch(_url.toString())
+      .then(res => {
+        if (res.status >= 400) throw new Error(res.status.toString())
+        return res.json()
+      })
+  }
+
+  public downloadZipFromKg({ kgSchema = 'minds/core/dataset/v1.0.0', kgId } : Partial<KgQueryInterface>, filename = 'download'){
+    const _url = new URL(`${this.constantService.backendUrl}datasets/downloadKgFiles`)
+    const searchParam = _url.searchParams
+    searchParam.set('kgSchema', kgSchema)
+    searchParam.set('kgId', kgId)
+    return fetch(_url.toString())
+      .then(res => {
+        if (res.status >= 400) throw new Error(res.status.toString())
+        return res.blob()
+      })
+      .then(data => this.simpleDownload(data, filename))
+  }
+
+  public simpleDownload(data, filename) {
+    const blob = new Blob([data], { type: 'application/zip'})
+    const url= window.URL.createObjectURL(blob);
+    const anchor = document.createElement("a");
+    anchor.download = filename + '.zip';
+    anchor.href = url;
+    anchor.click();
+  }
+
+  public showPreviewList(template: TemplateRef<any>){
+    this.store$.dispatch({
+      type: SHOW_BOTTOM_SHEET,
+      bottomSheetTemplate: template
+    })
+  }
+
+  public previewFile(file:ViewerPreviewFile, dataset: DataEntry) {
+    this.previewingFile$.next({
+      file,
+      dataset
+    })
+
+    const { position, name } = file
+    if (position) {
+      this.snackBar.open(`Postion of interest found.`, 'Go there', {
+        duration: 5000
+      })
+        .afterDismissed()
+        .subscribe(({ dismissedByAction }) => {
+          if (dismissedByAction) {
+            this.store$.dispatch({
+              type: CHANGE_NAVIGATION,
+              navigation: {
+                position,
+                animation: {}
+              }
+            })
+          }
+        })
+    }
+
+    const type = determinePreviewFileType(file)
+    if (type === PREVIEW_FILE_TYPES.NIFTI) {
+      this.store$.dispatch({
+        type: SHOW_BOTTOM_SHEET,
+        bottomSheetTemplate: null
+      })
+      const { url } = file
+      this.showNewNgLayer({ url })
+      return
+    }
+
+
+    this.dialog.open(FileViewer, {
+      data: {
+        previewFile: file
+      },
+      autoFocus: false
+    })
+  }
+
+  public showNewNgLayer({ url }):void{
+
+    const layer = {
+      name : url,
+      source : `nifti://${url}`,
+      mixability : 'nonmixable',
+      shader : this.constantService.getActiveColorMapFragmentMain()
+    }
+    this.store$.dispatch({
+      type: ADD_NG_LAYER,
+      layer
+    })
+  }
+
+  removeNgLayer({ url }) {
+    this.store$.dispatch({
+      type : REMOVE_NG_LAYER,
+      layer : {
+        name : url
+      }
+    })
+  }
+
+  getKgSchemaKgIdFromFullId(fullId: string){
+    const match = this.getKgSchemaIdFromFullIdPipe.transform(fullId)
+    return match && {
+      kgSchema: match[0],
+      kgId: match[1]
+    }
+  }
+}
+
+interface KgQueryInterface{
+  kgSchema: string
+  kgId: string
+}
diff --git a/src/ui/databrowserModule/modalityPicker/modalityPicker.style.css b/src/ui/databrowserModule/modalityPicker/modalityPicker.style.css
index 3b98629ee72bc7cad5fe813ef8aaa846e2b03e50..df41aab07fc807183ce87f68846d37ea65578ec1 100644
--- a/src/ui/databrowserModule/modalityPicker/modalityPicker.style.css
+++ b/src/ui/databrowserModule/modalityPicker/modalityPicker.style.css
@@ -2,9 +2,3 @@ div
 {
   white-space: nowrap;
 }
-
-.clickable:hover
-{
-  color:#dbb556;
-  cursor:default;
-}
diff --git a/src/ui/databrowserModule/modalityPicker/modalityPicker.template.html b/src/ui/databrowserModule/modalityPicker/modalityPicker.template.html
index f980ef04c3a2689d8258523bf383ff4d4b29beb6..0a84ce45d7ab03555da2fac132545f2f7747ad59 100644
--- a/src/ui/databrowserModule/modalityPicker/modalityPicker.template.html
+++ b/src/ui/databrowserModule/modalityPicker/modalityPicker.template.html
@@ -1,27 +1,7 @@
-<div class="ws-initial">
-  <div
-    *ngIf="checkedModality.length > 0"
-    (click)="clearAll()"
-    class="btn btn-sm btn-link ">
-    clear all
-  </div>
-  <pill-component
-    class="mw-60"
-    [containerStyle]="{backgroundColor:'rgba(128,128,128,0.5)'}"
-    [closeBtnStyle]="{backgroundColor:'rgba(128,128,128,0.8)'}"
-    (closeClicked)="uncheckModality(dataM.name)"
-    [title]="dataM.name"
-    *ngFor="let dataM of checkedModality">
-  
-  </pill-component>
-</div>
-
-<div
-  *ngFor="let datamodality of countedDataM"
-  (click)="toggleModality(datamodality)"
-  class="clickable">
-  <i [ngClass]="datamodality.visible ? 'far fa-check-square' : 'text-muted far fa-square'">
-
-  </i>
+<mat-checkbox
+  [checked]="datamodality.visible"
+  (change)="toggleModality(datamodality)"
+  [ngClass]="{'muted': datamodality.occurance === 0}"
+  *ngFor="let datamodality of countedDataM">
   {{ datamodality.name }} <span class="text-muted">({{ datamodality.occurance }})</span>
-</div>
\ No newline at end of file
+</mat-checkbox>
\ No newline at end of file
diff --git a/src/ui/databrowserModule/preview/preview.component.ts b/src/ui/databrowserModule/preview/preview.component.ts
index 19921de6402afa653c9e2b6ec68352df13e7dfdd..bb2e06485eee70e053130a03922f4ad82a2690f6 100644
--- a/src/ui/databrowserModule/preview/preview.component.ts
+++ b/src/ui/databrowserModule/preview/preview.component.ts
@@ -1,4 +1,4 @@
-import { Component, Input, OnInit } from "@angular/core";
+import { Component, Input, OnInit, Output, EventEmitter, ChangeDetectorRef, ChangeDetectionStrategy } from "@angular/core";
 import { DatabrowserService } from "../databrowser.service";
 import { ViewerPreviewFile } from "src/services/state/dataStore.store";
 
@@ -10,21 +10,26 @@ const getRenderNodeFn = ({name : activeFileName = ''} = {}) => ({name = '', path
 
 @Component({
   selector: 'preview-component',
-  templateUrl: './preview.template.html',
+  templateUrl: './previewList.template.html',
   styleUrls: [
     './preview.style.css'
-  ]
+  ],
+  changeDetection: ChangeDetectionStrategy.OnPush
 })
 
 export class PreviewComponent implements OnInit{
   @Input() datasetName: string
+  @Output() previewFile: EventEmitter<ViewerPreviewFile> = new EventEmitter()
+
+  public fetchCompleteFlag: boolean = false
 
   public previewFiles: ViewerPreviewFile[] = []
   public activeFile: ViewerPreviewFile
   private error: string
 
   constructor(
-    private dbrService:DatabrowserService
+    private dbrService:DatabrowserService,
+    private cdr: ChangeDetectorRef
   ){
     this.renderNode = getRenderNodeFn()
   }
@@ -40,6 +45,8 @@ export class PreviewComponent implements OnInit{
       this.activeFile = ev.inputItem
       this.renderNode = getRenderNodeFn(this.activeFile)
     }
+
+    this.cdr.markForCheck()
   }
 
   public renderNode: (obj:any) => string
@@ -49,13 +56,18 @@ export class PreviewComponent implements OnInit{
       this.dbrService.fetchPreviewData(this.datasetName)
         .then(json => {
           this.previewFiles = json as ViewerPreviewFile[]
-          if (this.previewFiles.length > 0)
+          if (this.previewFiles.length > 0) {
             this.activeFile = this.previewFiles[0]
             this.renderNode = getRenderNodeFn(this.activeFile)
+          }
         })
         .catch(e => {
           this.error = JSON.stringify(e)
         })
+        .finally(() => {
+          this.fetchCompleteFlag = true
+          this.cdr.markForCheck()
+        })
     }
   }
-}
\ No newline at end of file
+}
diff --git a/src/ui/databrowserModule/preview/preview.style.css b/src/ui/databrowserModule/preview/preview.style.css
index 23018c4cb9c1562bb329a8416a148bb819a503ed..627947e7c8a27910c5dc1007cdb650ca895791ea 100644
--- a/src/ui/databrowserModule/preview/preview.style.css
+++ b/src/ui/databrowserModule/preview/preview.style.css
@@ -1,9 +1,3 @@
-:host
-{
-  display: block;
-  width: 100%;
-}
-
 .readmore-wrapper
 {
   font-size: 80%;
diff --git a/src/ui/databrowserModule/preview/previewFileIcon.pipe.ts b/src/ui/databrowserModule/preview/previewFileIcon.pipe.ts
new file mode 100644
index 0000000000000000000000000000000000000000..717147da325568c890f55b0b9240cd40ab12fa30
--- /dev/null
+++ b/src/ui/databrowserModule/preview/previewFileIcon.pipe.ts
@@ -0,0 +1,47 @@
+import { Pipe, PipeTransform } from "@angular/core";
+import { ViewerPreviewFile } from "src/services/state/dataStore.store";
+
+@Pipe({
+  name: 'previewFileIconPipe'
+})
+
+export class PreviewFileIconPipe implements PipeTransform{
+  public transform(previewFile: ViewerPreviewFile):{fontSet: string, fontIcon:string}{
+    const type = determinePreviewFileType(previewFile)
+    if (type === PREVIEW_FILE_TYPES.NIFTI) return {
+      fontSet: 'fas',
+      fontIcon: 'fa-brain'
+    }
+
+    if (type === PREVIEW_FILE_TYPES.IMAGE) return {
+      fontSet: 'fas',
+      fontIcon: 'fa-image'
+    }
+
+    if (type === PREVIEW_FILE_TYPES.CHART) return {
+      fontSet: 'far',
+      fontIcon: 'fa-chart-bar'
+    }
+
+    return {
+      fontSet: 'fas',
+      fontIcon: 'fa-file'
+    }
+  }
+}
+
+export const determinePreviewFileType = (previewFile: ViewerPreviewFile) => {
+  const { mimetype, data } = previewFile
+  const { chartType = null } = data || {}
+  if ( mimetype === 'application/nifti' ) return PREVIEW_FILE_TYPES.NIFTI
+  if ( /^image/.test(mimetype)) return PREVIEW_FILE_TYPES.IMAGE
+  if ( /application\/json/.test(mimetype) && (chartType === 'line' || chartType === 'radar')) return PREVIEW_FILE_TYPES.CHART
+  return PREVIEW_FILE_TYPES.OTHER
+}
+
+export const PREVIEW_FILE_TYPES = {
+  NIFTI: 'NIFTI',
+  IMAGE: 'IMAGE',
+  CHART: 'CHART',
+  OTHER: 'OTHER'
+}
diff --git a/src/ui/databrowserModule/preview/previewFileType.pipe.ts b/src/ui/databrowserModule/preview/previewFileType.pipe.ts
new file mode 100644
index 0000000000000000000000000000000000000000..6bba2c39f45564cfe3f4ac1f8f00529c143297f3
--- /dev/null
+++ b/src/ui/databrowserModule/preview/previewFileType.pipe.ts
@@ -0,0 +1,13 @@
+import { Pipe, PipeTransform } from "@angular/core";
+import { ViewerPreviewFile } from "src/services/state/dataStore.store";
+import { determinePreviewFileType } from "./previewFileIcon.pipe";
+
+@Pipe({
+  name: 'previewFileTypePipe'
+})
+
+export class PreviewFileTypePipe implements PipeTransform{
+  public transform(file: ViewerPreviewFile): string{
+    return determinePreviewFileType(file)
+  }
+}
\ No newline at end of file
diff --git a/src/ui/databrowserModule/preview/previewList.template.html b/src/ui/databrowserModule/preview/previewList.template.html
new file mode 100644
index 0000000000000000000000000000000000000000..de6a34f6e020dcd1bda060abab0af5afd41eac7a
--- /dev/null
+++ b/src/ui/databrowserModule/preview/previewList.template.html
@@ -0,0 +1,24 @@
+<mat-nav-list *ngIf="fetchCompleteFlag; else loadingPlaceholder">
+  <h3 mat-subheader>Available Preview Files</h3>
+  <mat-list-item
+    *ngFor="let file of previewFiles"
+    (click)="previewFile.emit(file)">
+    <mat-icon
+      [fontSet]="(file | previewFileIconPipe).fontSet"
+      [fontIcon]="(file | previewFileIconPipe).fontIcon"
+      matListIcon>
+    </mat-icon>
+    <h4 mat-line>{{ file.name }}</h4>
+    <p mat-line>mimetype: {{ file.mimetype }}</p>
+  </mat-list-item>
+
+  <small *ngIf="previewFiles.length === 0"
+    class="text-muted">
+    There are no preview files in this parcellation/template space.
+  </small>
+  
+</mat-nav-list>
+
+<ng-template #loadingPlaceholder>
+  <div class="d-inline-block spinnerAnimationCircle"></div> loading previews ...
+</ng-template>
\ No newline at end of file
diff --git a/src/ui/databrowserModule/singleDataset/detailedView/singleDataset.component.ts b/src/ui/databrowserModule/singleDataset/detailedView/singleDataset.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..f13e912815bbf039e07802e6471827e330631933
--- /dev/null
+++ b/src/ui/databrowserModule/singleDataset/detailedView/singleDataset.component.ts
@@ -0,0 +1,31 @@
+import { Component, ChangeDetectionStrategy, ChangeDetectorRef, Optional, Inject} from "@angular/core";
+import { 
+  SingleDatasetBase,
+  DatabrowserService,
+  KgSingleDatasetService,
+  AtlasViewerConstantsServices
+} from "../singleDataset.base";
+import { MAT_DIALOG_DATA } from "@angular/material";
+
+@Component({
+  selector: 'single-dataset-view',
+  templateUrl: './singleDataset.template.html',
+  styleUrls: [
+    `./singleDataset.style.css`
+  ],
+  changeDetection: ChangeDetectionStrategy.OnPush
+})
+
+export class SingleDatasetView extends SingleDatasetBase{
+
+  constructor(
+    dbService: DatabrowserService,
+    singleDatasetService: KgSingleDatasetService,
+    cdr: ChangeDetectorRef,
+    constantService: AtlasViewerConstantsServices,
+
+    @Optional() @Inject(MAT_DIALOG_DATA) data: any
+  ){
+    super(dbService, singleDatasetService, cdr, constantService, data)
+  }
+}
diff --git a/src/ui/databrowserModule/singleDataset/detailedView/singleDataset.style.css b/src/ui/databrowserModule/singleDataset/detailedView/singleDataset.style.css
new file mode 100644
index 0000000000000000000000000000000000000000..9c4f33e35402143057541d30e4c76fe566cba76d
--- /dev/null
+++ b/src/ui/databrowserModule/singleDataset/detailedView/singleDataset.style.css
@@ -0,0 +1,4 @@
+:host
+{
+  text-align: left
+}
\ No newline at end of file
diff --git a/src/ui/databrowserModule/singleDataset/detailedView/singleDataset.template.html b/src/ui/databrowserModule/singleDataset/detailedView/singleDataset.template.html
new file mode 100644
index 0000000000000000000000000000000000000000..7712519f9f92f68f5fad0509b22c98ba826b8053
--- /dev/null
+++ b/src/ui/databrowserModule/singleDataset/detailedView/singleDataset.template.html
@@ -0,0 +1,146 @@
+
+<!-- title -->
+<mat-card-subtitle *ngIf="!simpleMode">
+  {{ name }}
+</mat-card-subtitle>
+
+<mat-card-content *ngIf="simpleMode">
+  <small>
+    {{ name }}
+  </small>
+  <mat-grid-list [cols]="kgReference.length + (preview ? 1 : 0) + (downloadEnabled ? 2 : 0)" rowHeight="4em">
+
+    <!-- explore -->
+    <mat-grid-tile *ngFor="let kgRef of kgReference">
+      <a [href]="kgRef | doiParserPipe"
+        matTooltip="Explore"
+        iav-stop="click mousedown"
+        mat-icon-button
+        target="_blank">
+        <i class="fas fa-external-link-alt"></i>
+      </a>
+    </mat-grid-tile>
+
+    <!-- pin -->
+    <mat-grid-tile *ngIf="downloadEnabled">
+
+      <button
+        iav-stop="click mousedown"
+        (click)="toggleFav()"
+        matTooltip="Pin"
+        mat-icon-button
+        [color]="(favedDataentries$ | async | datasetIsFaved : dataset) ? 'primary' : 'basic'">
+        <i class="fas fa-thumbtack"></i>
+      </button>
+    </mat-grid-tile>
+
+    <!-- preview -->
+    <mat-grid-tile *ngIf="preview">
+      <button
+        iav-stop="click mousedown"
+        (click)="showPreviewList(previewFilesListTemplate)"
+        matTooltip="Preview"
+        mat-icon-button>
+        <i class="far fa-eye"></i>
+      </button>
+    </mat-grid-tile>
+
+    <!-- download -->
+    <mat-grid-tile *ngIf="downloadEnabled">
+      <button
+        matTooltip="Download"
+        iav-stop="click mousedown"
+        (click)="downloadZipFromKg()"
+        [disabled]="downloadInProgress"
+        mat-icon-button>
+        <i class="ml-1 fas" [ngClass]="!downloadInProgress? 'fa-download' :'fa-spinner fa-pulse'"></i>
+      </button>
+    </mat-grid-tile>
+  </mat-grid-list>
+</mat-card-content>
+
+<!-- description -->
+<mat-card-content *ngIf="!simpleMode">
+  <small>{{ description }}</small>
+</mat-card-content>
+
+<!-- publications -->
+<mat-card-content *ngIf="!simpleMode">
+  <small class="d-block mb-2"
+    *ngFor="let publication of publications">
+    <a *ngIf="publication.doi; else plainText"
+      iav-stop="click mousedown"
+      [href]="publication.doi | doiParserPipe"
+      target="_blank">
+      {{ publication.cite }}
+    </a>
+    <ng-template #plainText>
+      {{ publication.cite }}
+    </ng-template>
+  </small>
+</mat-card-content>
+
+
+<!-- footer -->
+<mat-card-actions *ngIf="!simpleMode">
+
+  <!-- explore -->
+  <a *ngFor="let kgRef of kgReference"
+    class="m-2"
+    [href]="kgRef | doiParserPipe"
+    target="_blank">
+    <button 
+      mat-raised-button
+      color="primary">
+      Explore
+      <i class="fas fa-external-link-alt"></i>
+    </button>
+  </a>
+
+  <!-- pin data -->
+  <button mat-button
+    *ngIf="downloadEnabled"
+    iav-stop="click mousedown"
+    (click)="toggleFav()"
+    color="primary"
+    [color]="(favedDataentries$ | async | datasetIsFaved : dataset) ? 'primary' : 'basic'">
+    {{ (favedDataentries$ | async | datasetIsFaved : dataset) ? 'Unpin' : 'Pin' }} this dataset
+    <i class="fas fa-thumbtack"></i>
+  </button>
+
+
+  <!-- download -->
+  <button
+    (click)="downloadZipFromKg()"
+    [disabled]="downloadInProgress"
+    [matTooltip]="tooltipText"
+    class="m-2"
+    *ngIf="files.length > 0"
+    mat-button
+    color="basic">
+    <span>
+      Download as Zip
+    </span>
+    <i class="ml-1 fas" [ngClass]="!downloadInProgress? 'fa-download' :'fa-spinner fa-pulse'"></i>
+  </button>
+
+  <button mat-button
+    mat-dialog-close
+    *ngIf="preview"
+    (click)="showPreviewList(previewFilesListTemplate)"
+    color="basic">
+    <span>
+      Preview
+    </span>
+    <i class="ml-1 far fa-eye"></i>
+  </button>
+</mat-card-actions>
+
+<mat-card-footer></mat-card-footer>
+
+<ng-template #previewFilesListTemplate>
+  <preview-component
+    (previewFile)="handlePreviewFile($event)"
+    [datasetName]="name">
+  </preview-component>
+</ng-template>
\ No newline at end of file
diff --git a/src/ui/databrowserModule/singleDataset/listView/singleDatasetListView.component.ts b/src/ui/databrowserModule/singleDataset/listView/singleDatasetListView.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..44ee85ca5cc0a8e115b641c22bab450a5b64b884
--- /dev/null
+++ b/src/ui/databrowserModule/singleDataset/listView/singleDatasetListView.component.ts
@@ -0,0 +1,63 @@
+import { Component,ChangeDetectionStrategy, ChangeDetectorRef } from "@angular/core";import { 
+  SingleDatasetBase,
+  DatabrowserService,
+  KgSingleDatasetService,
+  AtlasViewerConstantsServices
+} from "../singleDataset.base";
+import { MatDialog, MatSnackBar } from "@angular/material";
+import { SingleDatasetView } from "../detailedView/singleDataset.component";
+
+@Component({
+  selector: 'single-dataset-list-view',
+  templateUrl: './singleDatasetListView.template.html',
+  styleUrls: [
+    './singleDatasetListView.style.css'
+  ],
+  changeDetection: ChangeDetectionStrategy.OnPush
+})
+
+export class SingleDatasetListView extends SingleDatasetBase {
+
+  constructor(
+    private _dbService: DatabrowserService,
+    singleDatasetService: KgSingleDatasetService,
+    cdr: ChangeDetectorRef,
+    constantService: AtlasViewerConstantsServices,
+    private dialog:MatDialog,
+    private snackBar: MatSnackBar
+  ){
+    super(_dbService, singleDatasetService, cdr, constantService)
+  }
+
+  showDetailInfo(){
+    this.dialog.open(SingleDatasetView, {
+      data: this.dataset
+    })
+  }
+
+  undoableRemoveFav(){
+    this.snackBar.open(`Unpinned dataset: ${this.dataset.name}`, 'Undo', {
+      duration: 5000
+    })
+      .afterDismissed()
+      .subscribe(({ dismissedByAction }) => {
+        if (dismissedByAction) {
+          this._dbService.saveToFav(this.dataset)
+        }
+      })
+    this._dbService.removeFromFav(this.dataset)
+  }
+
+  undoableAddFav(){
+    this.snackBar.open(`Pin dataset: ${this.dataset.name}`, 'Undo', {
+      duration: 5000
+    })
+      .afterDismissed()
+      .subscribe(({ dismissedByAction }) => {
+        if (dismissedByAction) {
+          this._dbService.removeFromFav(this.dataset)
+        }
+      })
+    this._dbService.saveToFav(this.dataset)
+  }
+}
\ No newline at end of file
diff --git a/src/ui/databrowserModule/singleDataset/listView/singleDatasetListView.style.css b/src/ui/databrowserModule/singleDataset/listView/singleDatasetListView.style.css
new file mode 100644
index 0000000000000000000000000000000000000000..87ae3bab563e38b101c9a2d19adbd8e3a4738e48
--- /dev/null
+++ b/src/ui/databrowserModule/singleDataset/listView/singleDatasetListView.style.css
@@ -0,0 +1,4 @@
+.name-container
+{
+  max-height: 100%;
+}
diff --git a/src/ui/databrowserModule/singleDataset/listView/singleDatasetListView.template.html b/src/ui/databrowserModule/singleDataset/listView/singleDatasetListView.template.html
new file mode 100644
index 0000000000000000000000000000000000000000..b96dfd4ea577601da0d32014d4b6ccc211af0417
--- /dev/null
+++ b/src/ui/databrowserModule/singleDataset/listView/singleDatasetListView.template.html
@@ -0,0 +1,137 @@
+<div mat-ripple
+  (click)="ripple ? showDetailInfo() : null"
+  [iav-stop]="ripple ? 'click' : null"
+  [matRippleDisabled]="!ripple"
+  class="d-flex flex-row flex-nowrap align-items-center h-100">
+
+  <!-- title -->
+  <div class="flex-grow-1 name-container d-flex align-items-start">
+    <small class="flex-grow-1 flex-shrink-1">
+      {{ name }}
+    </small>
+  </div>
+
+
+  <ng-container *ngIf="downloadEnabled">
+
+    <div iav-stop="mousedown click">
+
+      <!-- unpin -->
+      <button mat-icon-button
+        *ngIf="favedDataentries$ | async | datasetIsFaved : dataset; else pinTmpl"
+        (click)="undoableRemoveFav()"
+        class="no-focus flex-grow-0 flex-shrink-0"
+        color="primary">
+        <mat-icon fontSet="fas" fontIcon="fa-thumbtack"></mat-icon>
+      </button>
+
+      <!-- pin -->
+      <ng-template #pinTmpl>
+        <button mat-icon-button
+          (click)="undoableAddFav()"
+          class="no-focus flex-grow-0 flex-shrink-0"
+          color="basic">
+          <mat-icon fontSet="fas" fontIcon="fa-thumbtack"></mat-icon>
+        </button>
+      </ng-template>
+
+    </div>
+  </ng-container>
+
+  <!-- more menu -->
+  <!-- hidden for now -->
+  <button mat-icon-button
+    *ngIf="false"
+    iav-stop="mousedown click"
+    [matMenuTriggerFor]="singleDatasetMenu"
+    class="flex-grow-0 flex-shrink-0 no-focus">
+    <i class="fas fa-ellipsis-v"></i>
+  </button>
+</div>
+
+<mat-menu
+  xPosition="before"
+  #singleDatasetMenu>
+
+  <!-- lazy rendering mat menu -->
+  <ng-template matMenuContent>
+
+    <!-- need to conditional render all mat-menu-item, or keyboard navigation becomes borked -->
+    <!-- see https://github.com/angular/components/issues/11652 -->
+    <button mat-menu-item
+      *ngIf="true"
+      class="no-focus"
+      (click)="showDetailInfo()">
+      <mat-icon fontSet="fas" fontIcon="fa-info"></mat-icon>
+      Detail
+    </button>
+  
+    <!-- Explore -->
+    <a *ngFor="let kgRef of kgReference"
+      class="no-hover"
+      [href]="kgRef | doiParserPipe"
+      target="_blank"
+      mat-menu-item>
+      <mat-icon fontSet="fas" fontIcon="fa-globe-europe"></mat-icon>
+      Explore
+      <i class="fas fa-external-link-alt"></i>
+    </a>
+  
+    <!-- preview -->
+    <button mat-menu-item
+      *ngIf="preview"
+      class="no-focus"
+      (click)="showPreviewList(previewFilesListTemplate)">
+      <mat-icon fontSet="far" fontIcon="fa-eye"></mat-icon>
+      Preview
+    </button>
+    
+    <!-- download -->
+    <button mat-menu-item
+      *ngIf="downloadEnabled"
+      class="no-focus"
+      iav-stop="mousedown click"
+      (click)="downloadZipFromKg()"
+      [disabled]="downloadInProgress">
+      <mat-icon [ngClass]="{'fa-spinner': downloadInProgress}" fontSet="fas" [fontIcon]="!downloadInProgress? 'fa-download' :'fa-pulse'"></mat-icon>
+      Download
+    </button>
+  </ng-template>
+</mat-menu>
+
+<ng-template #previewFilesListTemplate>
+  <preview-component
+    (previewFile)="handlePreviewFile($event)"
+    [datasetName]="name">
+  </preview-component>
+</ng-template>
+
+<ng-template #fullIcons>
+
+  <!-- references -->
+  <a *ngFor="let kgRef of kgReference"
+    [href]="kgRef | doiParserPipe"
+    target="_blank"
+    iav-stop="click mousedown"
+    mat-icon-button>
+    <mat-icon fontSet="fas" fontIcon="fa-external-link-alt"></mat-icon>
+  </a>
+
+  <!-- pin dataset -->
+  <button mat-icon-button
+    *ngIf="downloadEnabled"
+    iav-stop="click mousedown"
+    (click)="toggleFav()"
+    [color]="(favedDataentries$ | async | datasetIsFaved : dataset) ? 'primary' : 'basic'">
+    <i class="fas fa-thumbtack"></i>
+  </button>
+
+  <!-- download dataset -->
+  <button mat-icon-button
+    *ngIf="downloadEnabled"
+    iav-stop="click mousedown"
+    (click)="downloadZipFromKg()"
+    [disabled]="downloadInProgress">
+    <i class="fas" [ngClass]="!downloadInProgress? 'fa-download' :'fa-spinner fa-pulse'"></i>
+  </button>
+</ng-template>
\ No newline at end of file
diff --git a/src/ui/databrowserModule/singleDataset/singleDataset.base.ts b/src/ui/databrowserModule/singleDataset/singleDataset.base.ts
new file mode 100644
index 0000000000000000000000000000000000000000..b7ad552e6e84e0cb7a4f34fdfd8919290b50ce10
--- /dev/null
+++ b/src/ui/databrowserModule/singleDataset/singleDataset.base.ts
@@ -0,0 +1,174 @@
+import { Input, OnInit, ChangeDetectorRef, TemplateRef, Output, EventEmitter } from "@angular/core";
+import { KgSingleDatasetService } from "../kgSingleDatasetService.service";
+import { Publication, File, DataEntry, ViewerPreviewFile } from 'src/services/state/dataStore.store'
+import { AtlasViewerConstantsServices } from "src/atlasViewer/atlasViewer.constantService.service";
+import { HumanReadableFileSizePipe } from "src/util/pipes/humanReadableFileSize.pipe";
+import { DatabrowserService } from "../databrowser.service";
+import { Observable } from "rxjs";
+
+export {
+  DatabrowserService,
+  KgSingleDatasetService,
+  ChangeDetectorRef,
+  AtlasViewerConstantsServices
+}
+
+export class SingleDatasetBase implements OnInit {
+
+  @Input() ripple: boolean = false
+
+  /**
+   * the name/desc/publications are placeholder/fallback entries
+   * while the actual data is being loaded from KG with kgSchema and kgId
+   */
+  @Input() name?: string
+  @Input() description?: string
+  @Input() publications?: Publication[]
+
+  @Input() kgSchema?: string
+  @Input() kgId?: string
+
+  @Input() dataset: any = null
+  @Input() simpleMode: boolean = false
+
+  @Output() previewingFile: EventEmitter<ViewerPreviewFile> = new EventEmitter()
+
+  public preview: boolean = false
+  private humanReadableFileSizePipe: HumanReadableFileSizePipe = new HumanReadableFileSizePipe()
+
+  /**
+   * sic!
+   */
+  private kgReference: string[] = []
+  public files: File[] = []
+  private methods: string[] = []
+  /**
+   * sic!
+   */
+  private parcellationRegion: { name: string }[]
+
+  private error: string = null
+
+  public fetchingSingleInfoInProgress = false
+  public downloadInProgress = false
+
+  public favedDataentries$: Observable<DataEntry[]>
+  constructor(
+    private dbService: DatabrowserService,
+    private singleDatasetService: KgSingleDatasetService,
+    private cdr: ChangeDetectorRef,
+    private constantService: AtlasViewerConstantsServices,
+
+    dataset?: any
+  ){
+    this.favedDataentries$ = this.dbService.favedDataentries$
+    if (dataset) {
+      this.dataset = dataset
+      const { fullId } = dataset
+      const obj = this.singleDatasetService.getKgSchemaKgIdFromFullId(fullId)
+      if (obj) {
+        const { kgSchema, kgId } = obj
+        this.kgSchema = kgSchema
+        this.kgId = kgId
+      }
+    }
+  }
+
+  ngOnInit() {
+    const { kgId, kgSchema, dataset } = this
+    if ( dataset ) {
+      const { name, description, kgReference, publications, files, preview, ...rest } = dataset
+      this.name = name
+      this.description = description
+      this.kgReference = kgReference
+      this.publications = publications
+      this.files = files
+      this.preview = preview
+      
+      return
+    }
+    if (!kgSchema || !kgId) return
+    this.fetchingSingleInfoInProgress = true
+    this.singleDatasetService.getInfoFromKg({
+      kgId,
+      kgSchema
+    })
+      .then(json => {
+        /**
+         * TODO dataset specific
+         */
+        const { files, publications, name, description, kgReference} = json
+        this.name = name
+        this.description = description
+        this.kgReference = kgReference
+        this.publications = publications
+        this.files = files
+
+        this.dataset = json
+
+        this.cdr.markForCheck()
+      })
+      .catch(e => {
+        this.error = e
+      })
+      .finally(() => {
+        this.fetchingSingleInfoInProgress = false
+        this.cdr.markForCheck()
+      })
+  }
+
+  get downloadEnabled() {
+    return this.kgSchema && this.kgId
+  }
+
+  get numOfFiles(){
+    return this.files
+      ? this.files.length
+      : null
+  }
+
+  get totalFileByteSize(){
+    return this.files
+      ? this.files.reduce((acc, curr) => acc + curr.byteSize, 0)
+      : null
+  }
+
+  get tooltipText(){
+    return `${this.numOfFiles} files ~ ${this.humanReadableFileSizePipe.transform(this.totalFileByteSize)}`
+  }
+
+  get showFooter(){
+    return (this.kgReference && this.kgReference.length > 0)
+      || (this.publications && this.publications.length > 0)
+      || (this.files && this.files.length > 0)
+  }
+
+  toggleFav() {
+    this.dbService.toggleFav(this.dataset)
+  }
+
+  showPreviewList(templateRef: TemplateRef<any>){
+    this.singleDatasetService.showPreviewList(templateRef)
+  }
+
+  handlePreviewFile(file: ViewerPreviewFile){
+    this.previewingFile.emit(file)
+    this.singleDatasetService.previewFile(file, this.dataset)
+  }
+  
+  downloadZipFromKg() {
+    this.downloadInProgress = true
+    this.cdr.markForCheck()
+
+    const { kgId, kgSchema }  = this
+    this.singleDatasetService.downloadZipFromKg({
+      kgId,
+      kgSchema
+    }, this.name)
+      .catch(err => this.constantService.catchError(err))
+      .finally(() => {
+        this.downloadInProgress = false
+        this.cdr.markForCheck()
+      })
+  }
+}
diff --git a/src/ui/databrowserModule/util/appendFilterModality.pipe.ts b/src/ui/databrowserModule/util/appendFilterModality.pipe.ts
new file mode 100644
index 0000000000000000000000000000000000000000..ef7e740c2ebd398729d6fe9797deb7e4e11b9e99
--- /dev/null
+++ b/src/ui/databrowserModule/util/appendFilterModality.pipe.ts
@@ -0,0 +1,24 @@
+import { Pipe, PipeTransform } from "@angular/core";
+import { CountedDataModality } from "../databrowser.service";
+
+@Pipe({
+  name: 'appendFilterModalityPipe'
+})
+
+export class AppendFilerModalityPipe implements PipeTransform{
+  public transform(root: CountedDataModality[], appending: CountedDataModality[][]): CountedDataModality[]{
+    let returnArr:CountedDataModality[] = [...root]
+    for (const mods of appending){
+      for (const mod of mods){
+        // preserve the visibility
+        const { visible } = returnArr.find(({ name }) => name === mod.name) || mod
+        returnArr = returnArr.filter(({ name }) => name !== mod.name)
+        returnArr = returnArr.concat({
+          ...mod,
+          visible
+        })
+      }
+    }
+    return returnArr
+  }
+}
\ No newline at end of file
diff --git a/src/ui/databrowserModule/util/datasetIsFaved.pipe.ts b/src/ui/databrowserModule/util/datasetIsFaved.pipe.ts
new file mode 100644
index 0000000000000000000000000000000000000000..35ec1bea374c1e7e46a894a854fca01b5f291873
--- /dev/null
+++ b/src/ui/databrowserModule/util/datasetIsFaved.pipe.ts
@@ -0,0 +1,12 @@
+import { PipeTransform, Pipe } from "@angular/core";
+import { DataEntry } from "src/services/stateStore.service";
+
+@Pipe({
+  name: 'datasetIsFaved'
+})
+export class DatasetIsFavedPipe implements PipeTransform{
+  public transform(favedDataEntry: DataEntry[], dataentry: DataEntry):boolean{
+    if (!dataentry) return false
+    return favedDataEntry.findIndex(ds => ds.id === dataentry.id) >= 0
+  }
+}
\ No newline at end of file
diff --git a/src/ui/databrowserModule/util/filterDataEntriesByRegion.pipe.ts b/src/ui/databrowserModule/util/filterDataEntriesByRegion.pipe.ts
index 3f45fa9d105f4a34e47dd2d1e1f428670467aa13..4efe62a4c80a893f1020279d9ce080467ed9f1dd 100644
--- a/src/ui/databrowserModule/util/filterDataEntriesByRegion.pipe.ts
+++ b/src/ui/databrowserModule/util/filterDataEntriesByRegion.pipe.ts
@@ -24,21 +24,13 @@ export class FilterDataEntriesByRegion implements PipeTransform{
              */
             const newParcellationRegion = de.parcellationRegion.map(({name, id, ...rest}) => {
 
-              /**
-               * TODO: temporary hack, some dataset region name is not exactly the same as region
-               */
-              /* https://stackoverflow.com/a/9310752/6059235 */
-              const regex = new RegExp(name.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&'), 'i')
-
               const found = flattenedAllRegions.find(r => {
                 /**
                  * TODO replace pseudo id with real uuid
                  */
-                return (r.id && id && r.id === id) || regex.test(r.name)
-                /**
-                 * more correct, but probably should use UUID in the future
-                 */
-                return r.name === name
+                return (r.id && id && r.id === id)
+                  || r.name === name
+                  || r.relatedAreas && r.relatedAreas.length && r.relatedAreas.some(syn => syn === name) 
               })
               return found
                 ? { name, id, ...rest, ...found }
diff --git a/src/ui/databrowserModule/util/getKgSchemaIdFromFullId.pipe.ts b/src/ui/databrowserModule/util/getKgSchemaIdFromFullId.pipe.ts
new file mode 100644
index 0000000000000000000000000000000000000000..446a22789f3d2a05b7c0602de10fd47ef4a3be3f
--- /dev/null
+++ b/src/ui/databrowserModule/util/getKgSchemaIdFromFullId.pipe.ts
@@ -0,0 +1,14 @@
+import { Pipe, PipeTransform } from "@angular/core";
+
+@Pipe({
+  name: 'getKgSchemaIdFromFullIdPipe'
+})
+
+export class GetKgSchemaIdFromFullIdPipe implements PipeTransform{
+  public transform(fullId: string):[string, string]{
+    if (!fullId) return [null, null]
+    const match = /([\w\-\.]*\/[\w\-\.]*\/[\w\-\.]*\/[\w\-\.]*)\/([\w\-\.]*)$/.exec(fullId)
+    if (!match) return [null, null]
+    return [match[1], match[2]]
+  }
+}
\ No newline at end of file
diff --git a/src/ui/databrowserModule/util/regionBackgroundToRgb.pipe.ts b/src/ui/databrowserModule/util/regionBackgroundToRgb.pipe.ts
new file mode 100644
index 0000000000000000000000000000000000000000..4a03cd9dc7230bfbab69b5a4f19866e249914c80
--- /dev/null
+++ b/src/ui/databrowserModule/util/regionBackgroundToRgb.pipe.ts
@@ -0,0 +1,13 @@
+import { Pipe, PipeTransform } from "@angular/core";
+
+@Pipe({
+  name: 'regionBackgroundToRgbPipe'
+})
+
+export class RegionBackgroundToRgbPipe implements PipeTransform{
+  public transform(region = null): string{
+    return region && region.rgb
+      ? `rgb(${region.rgb.join(',')})`
+      : 'white'
+  }
+}
\ No newline at end of file
diff --git a/src/ui/databrowserModule/util/resetCounterModality.pipe.ts b/src/ui/databrowserModule/util/resetCounterModality.pipe.ts
new file mode 100644
index 0000000000000000000000000000000000000000..8f65af67ebc15bf25a02ef0fa05342d5a6ec068b
--- /dev/null
+++ b/src/ui/databrowserModule/util/resetCounterModality.pipe.ts
@@ -0,0 +1,17 @@
+import { Pipe, PipeTransform } from "@angular/core";
+import { CountedDataModality } from "../databrowser.service";
+
+@Pipe({
+  name: 'resetcounterModalityPipe'
+})
+
+export class ResetCounterModalityPipe implements PipeTransform{
+  public transform(inc: CountedDataModality[]):CountedDataModality[]{
+    return inc.map(({ occurance, ...rest }) => {
+      return {
+        occurance: 0,
+        ...rest
+      }
+    })
+  }
+}
\ No newline at end of file
diff --git a/src/ui/kgtos/kgtos.component.ts b/src/ui/kgtos/kgtos.component.ts
index d191860a02a4e316abc662944cc02be068c948ff..53edea2a8ec08f93674f856bebe07b4c23c48c0c 100644
--- a/src/ui/kgtos/kgtos.component.ts
+++ b/src/ui/kgtos/kgtos.component.ts
@@ -1,4 +1,6 @@
 import { Component } from "@angular/core";
+import { DatabrowserService } from "../databrowserModule/databrowser.service";
+import { Observable } from "rxjs";
 
 @Component({
   selector: 'kgtos-component',
@@ -10,4 +12,11 @@ import { Component } from "@angular/core";
 
 export class KGToS{
 
+  public kgTos$: Observable<string>
+
+  constructor(
+    private dbService: DatabrowserService
+  ){
+    this.kgTos$ = this.dbService.kgTos$
+  }
 }
\ No newline at end of file
diff --git a/src/ui/kgtos/kgtos.template.html b/src/ui/kgtos/kgtos.template.html
index 5f8fe4eb6240d7227cec618be5efa43e478cceaf..f0eee2bb6cba0905078ea3331eeb3f3faac9ff83 100644
--- a/src/ui/kgtos/kgtos.template.html
+++ b/src/ui/kgtos/kgtos.template.html
@@ -1,20 +1,27 @@
-<div>
-  <p>
-    The interactive viewer queries HBP Knowledge Graph Data Platform ("KG") for published datasets.
-  </p>
-  <p>
-    Access to the data and metadata provided through KG requires that you cite and acknowledge said data and metadata according to the Terms and Conditions of the Platform.
-  </p>
-  <p>
-    Citation requirements are outlined <a target="_blank" href="https://www.humanbrainproject.eu/en/explore-the-brain/search-terms-of-use#citations">here</a>.
-  </p>
-  <p>
-    Acknowledgement requirements are outlined <a target="_blank" href="https://www.humanbrainproject.eu/en/explore-the-brain/search-terms-of-use#acknowledgements">here</a>.
-  </p>
-  <p>
-    These outlines are based on the authoritative Terms and Conditions are found <a target="_blank" href="https://www.humanbrainproject.eu/en/explore-the-brain/search-terms-of-use">here</a>.
-  </p>
-  <p>
-    If you do not accept the Terms & Conditions you are not permitted to access or use the KG to search for, to submit, to post, or to download any materials found there-in.
-  </p>
-</div>
\ No newline at end of file
+<ng-container *ngIf="kgTos$ | async as kgTos; else backup">
+  <markdown-dom [markdown]="kgTos">
+  </markdown-dom>
+</ng-container>
+
+<ng-template #backup>
+  <div>
+    <p>
+      The interactive viewer queries HBP Knowledge Graph Data Platform ("KG") for published datasets.
+    </p>
+    <p>
+      Access to the data and metadata provided through KG requires that you cite and acknowledge said data and metadata according to the Terms and Conditions of the Platform.
+    </p>
+    <p>
+      Citation requirements are outlined <a target="_blank" href="https://www.humanbrainproject.eu/en/explore-the-brain/search-terms-of-use#citations">here</a>.
+    </p>
+    <p>
+      Acknowledgement requirements are outlined <a target="_blank" href="https://www.humanbrainproject.eu/en/explore-the-brain/search-terms-of-use#acknowledgements">here</a>.
+    </p>
+    <p>
+      These outlines are based on the authoritative Terms and Conditions are found <a target="_blank" href="https://www.humanbrainproject.eu/en/explore-the-brain/search-terms-of-use">here</a>.
+    </p>
+    <p>
+      If you do not accept the Terms & Conditions you are not permitted to access or use the KG to search for, to submit, to post, or to download any materials found there-in.
+    </p>
+  </div>
+</ng-template>
\ No newline at end of file
diff --git a/src/ui/layerbrowser/layerbrowser.component.ts b/src/ui/layerbrowser/layerbrowser.component.ts
index 2dd2a8aa0bcca320f72a2eeff7c1ac7b2c3ed72f..12cba26e28f78c39905f3af3be3d2efd619397be 100644
--- a/src/ui/layerbrowser/layerbrowser.component.ts
+++ b/src/ui/layerbrowser/layerbrowser.component.ts
@@ -1,10 +1,11 @@
-import { Component,  OnDestroy } from "@angular/core";
+import { Component,  OnDestroy, Input, Pipe, PipeTransform, Output, EventEmitter, OnInit } from "@angular/core";
 import { NgLayerInterface } from "../../atlasViewer/atlasViewer.component";
 import { Store, select } from "@ngrx/store";
-import { ViewerStateInterface, isDefined, REMOVE_NG_LAYER, FORCE_SHOW_SEGMENT, safeFilter } from "../../services/stateStore.service";
-import { Subscription, Observable } from "rxjs";
-import { filter, distinctUntilChanged, map, delay, buffer } from "rxjs/operators";
+import { ViewerStateInterface, isDefined, REMOVE_NG_LAYER, FORCE_SHOW_SEGMENT, safeFilter, getNgIds } from "../../services/stateStore.service";
+import { Subscription, Observable, combineLatest } from "rxjs";
+import { filter, map, shareReplay, distinctUntilChanged, throttleTime, debounceTime } from "rxjs/operators";
 import { AtlasViewerConstantsServices } from "src/atlasViewer/atlasViewer.constantService.service";
+import { NG_VIEWER_ACTION_TYPES } from "src/services/state/ngViewerState.store";
 
 @Component({
   selector : 'layer-browser',
@@ -15,18 +16,22 @@ import { AtlasViewerConstantsServices } from "src/atlasViewer/atlasViewer.consta
   ]
 })
 
-export class LayerBrowser implements OnDestroy{
+export class LayerBrowser implements OnInit, OnDestroy{
+
+  @Output() nonBaseLayersChanged: EventEmitter<NgLayerInterface[]> = new EventEmitter() 
 
   /**
    * TODO make untangle nglayernames and its dependency on ng
    */
-  ngLayers : NgLayerInterface[] = []
-  lockedLayers : string[] = []
+  public loadedNgLayers$: Observable<NgLayerInterface[]>
+  public lockedLayers : string[] = []
+
+  public nonBaseNgLayers$: Observable<NgLayerInterface[]>
 
   public forceShowSegmentCurrentState : boolean | null = null
   public forceShowSegment$ : Observable<boolean|null>
   
-  public ngLayers$: Observable<any>
+  public ngLayers$: Observable<string[]>
   public advancedMode: boolean = false
 
   private subscriptions : Subscription[] = []
@@ -35,6 +40,11 @@ export class LayerBrowser implements OnDestroy{
   /* TODO temporary measure. when datasetID can be used, will use  */
   public fetchedDataEntries$ : Observable<any>
 
+  @Input()
+  showPlaceholder: boolean = true
+
+  darktheme$: Observable<boolean>
+
   constructor(
     private store : Store<ViewerStateInterface>,
     private constantsService: AtlasViewerConstantsServices){
@@ -42,10 +52,47 @@ export class LayerBrowser implements OnDestroy{
     this.ngLayers$ = store.pipe(
       select('viewerState'),
       select('templateSelected'),
-      map(templateSelected => (templateSelected && !this.advancedMode && [
-        templateSelected.ngId,
-        ...templateSelected.parcellations.map(p => p.ngId)
-      ]) || [])
+      map(templateSelected => {
+        if (!templateSelected) return []
+        if (this.advancedMode) return []
+
+        const { ngId , otherNgIds = []} = templateSelected
+
+        return [
+          ngId,
+          ...otherNgIds,
+          ...templateSelected.parcellations.reduce((acc, curr) => {
+            return acc.concat([
+              curr.ngId,
+              ...getNgIds(curr.regions)
+            ])
+          }, [])
+        ]
+      }),
+      /**
+       * get unique array
+       */
+      map(nonUniqueArray => Array.from(new Set(nonUniqueArray))),
+      /**
+       * remove falsy values
+       */
+      map(arr => arr.filter(v => !!v))
+    )
+
+    this.loadedNgLayers$ = this.store.pipe(
+      select('viewerState'),
+      select('loadedNgLayers')
+    )
+
+    this.nonBaseNgLayers$ = combineLatest(
+      this.ngLayers$,
+      this.loadedNgLayers$
+    ).pipe(
+      map(([baseNgLayerNames, loadedNgLayers]) => {
+        const baseNameSet = new Set(baseNgLayerNames)
+        return loadedNgLayers.filter(l => !baseNameSet.has(l.name))
+      }),
+      distinctUntilChanged()
     )
 
     /**
@@ -65,37 +112,20 @@ export class LayerBrowser implements OnDestroy{
     )
 
 
-    /**
-     * TODO leakage? after change of template still hanging the reference?
-     */
-    this.subscriptions.push(
-      this.store.pipe(
-        select('viewerState'),
-        select('templateSelected'),
-        distinctUntilChanged((o,n) => o.templateSelected.name === n.templateSelected.name),
-        filter(templateSelected => !!templateSelected),
-        map(templateSelected => Object.keys(templateSelected.nehubaConfig.dataset.initialNgState.layers)),
-        buffer(this.store.pipe(
-          select('ngViewerState'),
-          select('nehubaReady'),
-          filter(flag => flag)
-        )),
-        delay(0),
-        map(arr => arr[arr.length - 1])
-      ).subscribe((lockedLayerNames:string[]) => {
-        /**
-         * TODO
-         * if layerbrowser is init before nehuba
-         * window['viewer'] will return undefined
-         */
-        this.lockedLayers = lockedLayerNames
-
-        this.ngLayersChangeHandler()
-        this.disposeHandler = window['viewer'].layerManager.layersChanged.add(() => this.ngLayersChangeHandler())
-        window['viewer'].registerDisposer(this.disposeHandler)
-      })
+    this.darktheme$ = this.constantsService.darktheme$.pipe(
+      shareReplay(1)
     )
 
+  }
+
+  ngOnInit(){
+    this.subscriptions.push(
+      this.nonBaseNgLayers$.pipe(
+        // on switching template, non base layer will fire 
+        // debounce to ensure that the non base layer is indeed an extra layer
+        debounceTime(160)
+      ).subscribe(layers => this.nonBaseLayersChanged.emit(layers))
+    )
     this.subscriptions.push(
       this.forceShowSegment$.subscribe(state => this.forceShowSegmentCurrentState = state)
     )
@@ -105,15 +135,6 @@ export class LayerBrowser implements OnDestroy{
     this.subscriptions.forEach(s => s.unsubscribe())
   }
 
-  ngLayersChangeHandler(){
-    this.ngLayers = (window['viewer'].layerManager.managedLayers as any[]).map(obj => ({
-      name : obj.name,
-      type : obj.initialSpecification.type,
-      source : obj.sourceUrl,
-      visible : obj.visible
-    }) as NgLayerInterface)
-  }
-
   public classVisible(layer:any):boolean{
     return typeof layer.visible === 'undefined'
       ? true
@@ -124,8 +145,9 @@ export class LayerBrowser implements OnDestroy{
     if(!this.lockedLayers){
       /* locked layer undefined. always return false */
       return false
-    }else
+    }else{
       return this.lockedLayers.findIndex(l => l === ngLayer.name) >= 0
+    }
   }
 
   toggleVisibility(layer:any){
@@ -147,6 +169,9 @@ export class LayerBrowser implements OnDestroy{
       return
     }
 
+    /**
+     * TODO perhaps useEffects ?
+     */
     this.store.dispatch({
       type : FORCE_SHOW_SEGMENT,
       forceShowSegment : this.forceShowSegmentCurrentState === null
@@ -157,6 +182,12 @@ export class LayerBrowser implements OnDestroy{
     })
   }
 
+  removeAllNonBasicLayer(){
+    this.store.dispatch({
+      type: NG_VIEWER_ACTION_TYPES.REMOVE_ALL_NONBASE_LAYERS
+    })
+  }
+
   removeLayer(layer:any){
     if(this.checkLocked(layer)){
       console.warn('this layer is locked and cannot be removed')
@@ -170,6 +201,9 @@ export class LayerBrowser implements OnDestroy{
     })
   }
 
+  /**
+   * TODO use observable and pipe to make this more perf
+   */
   segmentationTooltip(){
     return `toggle segments visibility: 
     ${this.forceShowSegmentCurrentState === true ? 'always show' : this.forceShowSegmentCurrentState === false ? 'always hide' : 'auto'}`
@@ -185,7 +219,15 @@ export class LayerBrowser implements OnDestroy{
           : 'red' 
   }
 
-  get isMobile(){
-    return this.constantsService.mobile
-  }
+  public matTooltipPosition: string = 'below'
 }
+
+@Pipe({
+  name: 'lockedLayerBtnClsPipe'
+})
+
+export class LockedLayerBtnClsPipe implements PipeTransform{
+  public transform(ngLayer:NgLayerInterface, lockedLayers?: string[]): boolean{
+    return (lockedLayers && new Set(lockedLayers).has(ngLayer.name)) || false
+  }
+}
\ No newline at end of file
diff --git a/src/ui/layerbrowser/layerbrowser.style.css b/src/ui/layerbrowser/layerbrowser.style.css
index 83bf14bb66993088b1d86f607e24784f07926bd4..b38ff0ea019b33d7e8797092569c7cc865408ea2 100644
--- a/src/ui/layerbrowser/layerbrowser.style.css
+++ b/src/ui/layerbrowser/layerbrowser.style.css
@@ -5,40 +5,7 @@
   flex-direction: column-reverse;
 }
 
-div[heading]
-{
-  padding: 0.2em 1em;
-  /* white-space: nowrap; */
-}
-div[body]
-{
-  padding: 0.1em 1em;
-  background-color:rgba(0, 0, 0, 0.1);
-}
-
-.muted-text
-{
-  text-decoration: line-through;
-}
-
-.layerContainer
-{
-  display: flex;
-  flex-direction: row;
-  align-items: center;
-}
-
-.fas.blue
-{
-  color: #337ab7;
-}
-
-.fas.red
-{
-  color: red;
-}
-
 .noLayerPlaceHolder
 {
   padding: 0.5em 1em;
-}
\ No newline at end of file
+}
diff --git a/src/ui/layerbrowser/layerbrowser.template.html b/src/ui/layerbrowser/layerbrowser.template.html
index e307ecb73020de8802c64c4ad33ca591d33501e6..197c7b6533ee8f3cc01d5b20dbce37c012488ea9 100644
--- a/src/ui/layerbrowser/layerbrowser.template.html
+++ b/src/ui/layerbrowser/layerbrowser.template.html
@@ -1,71 +1,64 @@
-<ng-container *ngIf="ngLayers$ | async | filterNgLayer : ngLayers as filteredNgLayers; else noLayerPlaceHolder">
-  <ng-container *ngIf="filteredNgLayers.length > 0; else noLayerPlaceHolder">
-    <div
-      class="layerContainer overflow-hidden"
-      *ngFor = "let ngLayer of filteredNgLayers">
-    
+<!-- n.b. using mousedown for event trigger -->
+<!-- Chrome & FF exhibit different behaviours when using click/mouseup as a event handler -->
+<!-- in Chrome, it will complain that expression changed after change detection -->
+<!-- in FF, the element changes, and focusout event is never fired properly -->
+
+<ng-container *ngIf="nonBaseNgLayers$ | async as nonBaseNgLayers; else noLayerPlaceHolder">
+  <mat-list *ngIf="nonBaseNgLayers.length > 0; else noLayerPlaceHolder">
+    <mat-list-item *ngFor="let ngLayer of nonBaseNgLayers" class="matListItem">
+
       <!-- toggle visibility -->
-      <div class="btnWrapper">
-        <div
-          container = "body"
-          placement = "bottom"
-          [tooltip] = "checkLocked(ngLayer) ? 'base layer cannot be hidden' : 'toggle visibility'"
-          (click) = "checkLocked(ngLayer) ? null : toggleVisibility(ngLayer)"
-          class="btn btn-sm btn-outline-secondary rounded-circle">
-          <i [ngClass] = "checkLocked(ngLayer) ? 'fas fa-lock muted' :ngLayer.visible ? 'far fa-eye' : 'far fa-eye-slash'">
-          </i>
-        </div>
-      </div>
+
+      <button
+        [matTooltipPosition]="matTooltipPosition"
+        [matTooltip]="(ngLayer | lockedLayerBtnClsPipe : lockedLayers) ? 'base layer cannot be hidden' : 'toggle visibility'"
+        (mousedown)="toggleVisibility(ngLayer)"
+        mat-icon-button
+        [disabled]="ngLayer | lockedLayerBtnClsPipe : lockedLayers"
+        [color]="ngLayer.visible ? 'primary' : null">
+        <i [ngClass]="(ngLayer | lockedLayerBtnClsPipe : lockedLayers) ? 'fas fa-lock muted' : ngLayer.visible ? 'far fa-eye' : 'far fa-eye-slash'">
+        </i>
+      </button>
 
       <!-- advanced mode only: toggle force show segmentation -->
-      <div class="btnWrapper">
-        <div
-          *ngIf="advancedMode"
-          container="body"
-          placement="bottom"
-          [tooltip]="ngLayer.type === 'segmentation' ? segmentationTooltip() : 'only segmentation layer can hide/show segments'"
-          #forceSegment="bs-tooltip"
-          (click)="forceSegment.hide();toggleForceShowSegment(ngLayer)"
-          class="btn btn-sm btn-outline-secondary rounded-circle">
-          <i 
-            class="fas" 
-            [ngClass]="ngLayer.type === 'segmentation' ? ('fa-th-large ' + segmentationAdditionalClass) : 'fa-lock muted' ">
-      
-          </i>
-        </div>
-      </div>
+      <button
+        *ngIf="advancedMode"
+        [matTooltipPosition]="matTooltipPosition"
+        [matTooltip]="ngLayer.type === 'segmentation' ? segmentationTooltip() : 'only segmentation layer can hide/show segments'"
+        (mousedown)="toggleForceShowSegment(ngLayer)"
+        mat-icon-button>
+        <i
+          class="fas"
+          [ngClass]="ngLayer.type === 'segmentation' ? ('fa-th-large ' + segmentationAdditionalClass) : 'fa-lock muted' ">
+
+        </i>
+      </button>
 
       <!-- remove layer -->
-      <div class="btnWrapper">
-        <div
-          container="body"
-          placement="bottom"
-          [tooltip]="checkLocked(ngLayer) ? 'base layers cannot be removed' : 'remove layer'"
-          (click)="removeLayer(ngLayer)"
-          class="btn btn-sm btn-outline-secondary rounded-circle">
-          <i [ngClass]="checkLocked(ngLayer) ? 'fas fa-lock muted' : 'far fa-times-circle'">
-          </i>
-        </div>
-      </div>
+      <button
+        color="warn"
+        mat-icon-button
+        (mousedown)="removeLayer(ngLayer)"
+        [disabled]="ngLayer | lockedLayerBtnClsPipe : lockedLayers"
+        [matTooltip]="(ngLayer | lockedLayerBtnClsPipe : lockedLayers) ? 'base layers cannot be removed' : 'remove layer'">
+        <i [class]="(ngLayer | lockedLayerBtnClsPipe : lockedLayers) ? 'fas fa-lock muted' : 'fas fa-trash'">
+        </i>
+      </button>
 
       <!-- layer description -->
-      <panel-component [ngClass]="{'muted-text muted' : !classVisible(ngLayer)}">
-    
-        <div heading>
-          {{ ngLayer.name | getLayerNameFromDatasets : (fetchedDataEntries$ | async) }}
-        </div>
-    
-        <div bodyy>
-          {{ ngLayer.source }}
-        </div>
-      </panel-component>
-    </div>
-  </ng-container>
+      <div
+        [matTooltipPosition]="matTooltipPosition"
+        [matTooltip]="ngLayer.name | getFilenamePipe "
+        [class]="((darktheme$ | async) ? 'text-light' : 'text-dark') + ' text-truncate'">
+        {{ ngLayer.name | getFilenamePipe }}
+      </div>
+    </mat-list-item>
+  </mat-list>
 </ng-container>
 
 <!-- fall back when no layers are showing -->
 <ng-template #noLayerPlaceHolder>
-  <h5 class="noLayerPlaceHolder text-muted">
+  <small *ngIf="showPlaceholder" class="noLayerPlaceHolder text-muted">
     No additional layers added.
-  </h5>
-</ng-template>
\ No newline at end of file
+  </small>
+</ng-template>
diff --git a/src/ui/menuicons/menuicons.component.ts b/src/ui/menuicons/menuicons.component.ts
deleted file mode 100644
index 57250e2b4963c7a15b1685e7b1a5dc32a50b7199..0000000000000000000000000000000000000000
--- a/src/ui/menuicons/menuicons.component.ts
+++ /dev/null
@@ -1,162 +0,0 @@
-import { Component, ComponentRef, Injector, ComponentFactory, ComponentFactoryResolver, AfterViewInit } from "@angular/core";
-
-import { WidgetServices } from "src/atlasViewer/widgetUnit/widgetService.service";
-import { WidgetUnit } from "src/atlasViewer/widgetUnit/widgetUnit.component";
-import { LayerBrowser } from "src/ui/layerbrowser/layerbrowser.component";
-import { DataBrowser } from "src/ui/databrowserModule/databrowser/databrowser.component";
-import { PluginBannerUI } from "../pluginBanner/pluginBanner.component";
-import { AtlasViewerConstantsServices } from "src/atlasViewer/atlasViewer.constantService.service";
-import { DatabrowserService } from "../databrowserModule/databrowser.service";
-import { PluginServices } from "src/atlasViewer/atlasViewer.pluginService.service";
-
-@Component({
-  selector: 'menu-icons',
-  templateUrl: './menuicons.template.html',
-  styleUrls: [
-    './menuicons.style.css',
-    '../btnShadow.style.css'
-  ]
-})
-
-export class MenuIconsBar{
-
-  /**
-   * databrowser
-   */
-  dbcf: ComponentFactory<DataBrowser>
-  dataBrowser: ComponentRef<DataBrowser> = null
-  dbWidget: ComponentRef<WidgetUnit> = null
-
-  /**
-   * layerBrowser
-   */
-  lbcf: ComponentFactory<LayerBrowser>
-  layerBrowser: ComponentRef<LayerBrowser> = null
-  lbWidget: ComponentRef<WidgetUnit> = null
-
-  /**
-   * pluginBrowser
-   */
-  pbcf: ComponentFactory<PluginBannerUI>
-  pluginBanner: ComponentRef<PluginBannerUI> = null
-  pbWidget: ComponentRef<WidgetUnit> = null
-
-  get isMobile(){
-    return this.constantService.mobile
-  }
-
-  constructor(
-    private widgetServices:WidgetServices,
-    private injector:Injector,
-    private constantService:AtlasViewerConstantsServices,
-    public dbService: DatabrowserService,
-    cfr: ComponentFactoryResolver,
-    public pluginServices:PluginServices
-  ){
-
-    this.dbService.createDatabrowser = this.clickSearch.bind(this)
-
-    this.dbcf = cfr.resolveComponentFactory(DataBrowser)
-    this.lbcf = cfr.resolveComponentFactory(LayerBrowser)
-    this.pbcf = cfr.resolveComponentFactory(PluginBannerUI)
-  }
-
-  /**
-   * TODO
-   * temporary measure
-   * migrate to  nehubaOverlay
-   */
-  public clickSearch({ regions, template, parcellation }){
-    const dataBrowser = this.dbcf.create(this.injector)
-    dataBrowser.instance.regions = regions
-    dataBrowser.instance.template = template
-    dataBrowser.instance.parcellation = parcellation
-    const title = regions.length > 1
-      ? `Search: ${regions.length} regions`
-      : `Search: ${regions[0].name}`
-    const widgetUnit = this.widgetServices.addNewWidget(dataBrowser, {
-      exitable: true,
-      persistency: true,
-      state: 'floating',
-      title,
-      titleHTML: `<i class="fas fa-search"></i> ${title}`
-    })
-    return {
-      dataBrowser,
-      widgetUnit
-    }
-  }
-
-  public catchError(e) {
-    
-  }
-
-  public clickLayer(event: MouseEvent){
-
-    if (this.lbWidget) {
-      this.lbWidget.destroy()
-      this.lbWidget = null
-      return
-    }
-    this.layerBrowser = this.lbcf.create(this.injector)
-    this.lbWidget = this.widgetServices.addNewWidget(this.layerBrowser, {
-      exitable: true,
-      persistency: true,
-      state: 'floating',
-      title: 'Layer Browser',
-      titleHTML: '<i class="fas fa-layer-group"></i> Layer Browser'
-    })
-
-    this.lbWidget.onDestroy(() => {
-      this.layerBrowser = null
-      this.lbWidget = null
-    })
-
-    const el = event.currentTarget as HTMLElement
-    const top = el.offsetTop
-    const left = el.offsetLeft + 50
-    this.lbWidget.instance.position = [left, top]
-  }
-
-  public clickPlugins(event: MouseEvent){
-    if(this.pbWidget) {
-      this.pbWidget.destroy()
-      this.pbWidget = null
-      return
-    }
-    this.pluginBanner = this.pbcf.create(this.injector)
-    this.pbWidget = this.widgetServices.addNewWidget(this.pluginBanner, {
-      exitable: true,
-      persistency: true,
-      state: 'floating',
-      title: 'Plugin Browser',
-      titleHTML: '<i class="fas fa-tools"></i> Plugin Browser'
-    })
-
-    this.pbWidget.onDestroy(() => {
-      this.pbWidget = null
-      this.pluginBanner = null
-    })
-
-    const el = event.currentTarget as HTMLElement
-    const top = el.offsetTop
-    const left = el.offsetLeft + 50
-    this.pbWidget.instance.position = [left, top]
-  }
-
-  get databrowserIsShowing() {
-    return this.dataBrowser !== null
-  }
-
-  get layerbrowserIsShowing() {
-    return this.layerBrowser !== null
-  }
-
-  get pluginbrowserIsShowing() {
-    return this.pluginBanner !== null
-  }
-
-  get dataBrowserTitle() {
-    return `Browse`
-  }
-}
\ No newline at end of file
diff --git a/src/ui/menuicons/menuicons.style.css b/src/ui/menuicons/menuicons.style.css
deleted file mode 100644
index 8a1663369fecdd67c4c7c70ee73774316f49e430..0000000000000000000000000000000000000000
--- a/src/ui/menuicons/menuicons.style.css
+++ /dev/null
@@ -1,23 +0,0 @@
-:host
-{
-  display: flex;
-  flex-direction: column;
-  align-items: flex-start;
-}
-
-:host > *
-{
-  margin-top: 1em;
-  display:inline-block;
-}
-
-:host >>> .tooltip-inner
-{
-  background-color: rgba(128, 128, 128, 0.5);
-}
-
-:host >>> .tooltip.right .tooltip-arrow::before,
-:host >>> .tooltip.right .tooltip-arrow
-{
-  border-right-color: rgba(128, 128, 128, 0.5);
-}
\ No newline at end of file
diff --git a/src/ui/menuicons/menuicons.template.html b/src/ui/menuicons/menuicons.template.html
deleted file mode 100644
index 4ea766718ce041ddf963a9d880fa55462020d4e8..0000000000000000000000000000000000000000
--- a/src/ui/menuicons/menuicons.template.html
+++ /dev/null
@@ -1,93 +0,0 @@
-<logo-container *ngIf="!isMobile">
-</logo-container>
-
-<div
-  *ngIf="false"
-  [ngClass]="isMobile ? 'btnWrapper-lg' : ''"
-  class="btnWrapper">
-  <div
-    [tooltip]="dataBrowserTitle"
-    placement="right"
-    (click)="clickSearch($event)"
-    [ngClass]="databrowserIsShowing ? 'btn-primary' : 'btn-secondary'"
-    class="shadow btn btn-sm rounded-circle">
-    <i class="fas fa-search">
-      
-    </i>
-  </div>
-</div>
-
-<div
-  [ngClass]="isMobile ? 'btnWrapper-lg' : ''"
-  class="btnWrapper">
-  <div
-    tooltip="Layer"
-    placement="right"
-    (click)="clickLayer($event)"
-    [ngClass]="layerbrowserIsShowing ? 'btn-primary' : 'btn-secondary'"
-    class="shadow btn btn-sm rounded-circle">
-    <i class="fas fa-layer-group">
-      
-    </i>
-  </div>
-</div>
-
-<div
-  *ngIf="false"
-  [ngClass]="isMobile ? 'btnWrapper-lg' : ''"
-  class="btnWrapper">
-  <div
-    tooltip="Plugins"
-    (click)="clickPlugins($event)"
-    placement="right"
-    [ngClass]="pluginbrowserIsShowing ? 'btn-primary' : 'btn-secondary'"
-    class="shadow btn btn-sm rounded-circle">
-    <i class="fas fa-tools">
-      
-    </i>
-  </div>
-</div>
-
-<div
-  *ngFor="let manifest of pluginServices.fetchedPluginManifests"
-  [tooltip]="manifest.displayName || manifest.name"
-  placement="right"
-  [ngClass]="isMobile ? 'btnWrapper-lg' : ''"
-  class="btnWrapper">
-
-  <div
-    (click)="pluginServices.launchPlugin(manifest).catch(catchError)"
-    [ngClass]="!pluginServices.launchedPlugins.has(manifest.name) ? 'btn-outline-secondary' : pluginServices.pluginMinimised(manifest) ? 'btn-outline-info' : 'btn-info'"
-    class="shadow btn btn-sm rounded-circle">
-    {{ (manifest.displayName || manifest.name).slice(0, 1) }}
-  </div>
-</div>
-
-<div
-  *ngFor="let manifest of pluginServices.orphanPlugins"
-  [tooltip]="manifest.displayName || manifest.name"
-  placement="right"
-  [ngClass]="isMobile ? 'btnWrapper-lg' : ''"
-  class="btnWrapper">
-
-  <div
-    (click)="pluginServices.launchPlugin(manifest).catch(catchError)"
-    [ngClass]="pluginServices.pluginMinimised(manifest) ? 'btn-outline-info' : 'btn-info'"
-    class="shadow btn btn-sm rounded-circle">
-    {{ (manifest.displayName || manifest.name).slice(0, 1) }}
-  </div>
-</div>
-
-<div
-  *ngFor="let wu of dbService.instantiatedWidgetUnits"
-  [ngClass]="isMobile ? 'btnWrapper-lg' : ''"
-  placement="right"
-  [tooltip]="wu.title"
-  class="btnWrapper">
-  <div
-    (click)="widgetServices.minimisedWindow.delete(wu)"
-    [ngClass]="widgetServices.minimisedWindow.has(wu) ? 'btn-outline-info' : 'btn-info'"
-    class="shadow btn btn-sm rounded-circle">
-    <i class="fas fa-search"></i>
-  </div>
-</div>
\ No newline at end of file
diff --git a/src/ui/nehubaContainer/maximisePanelButton/maximisePanelButton.component.ts b/src/ui/nehubaContainer/maximisePanelButton/maximisePanelButton.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..f8cef8eca8656d0d31fa3c1c2dba418c133cd77e
--- /dev/null
+++ b/src/ui/nehubaContainer/maximisePanelButton/maximisePanelButton.component.ts
@@ -0,0 +1,43 @@
+import { Component, Input } from "@angular/core";
+import { Store, select } from "@ngrx/store";
+import { Observable } from "rxjs";
+import { distinctUntilChanged, map } from "rxjs/operators";
+import { SINGLE_PANEL } from "src/services/state/ngViewerState.store";
+
+@Component({
+  selector: 'maximise-panel-button',
+  templateUrl: './maximisePanelButton.template.html',
+  styleUrls: [
+    './maximisePanelButton.style.css'
+  ]
+})
+
+export class MaximmisePanelButton{
+  
+  @Input() panelIndex: number
+
+  private panelMode$: Observable<string>
+  private panelOrder$: Observable<string>
+
+  public isMaximised$: Observable<boolean>
+
+  constructor(
+    private store$: Store<any>
+  ){
+    this.panelMode$ = this.store$.pipe(
+      select('ngViewerState'),
+      select('panelMode'),
+      distinctUntilChanged()
+    )
+
+    this.panelOrder$ = this.store$.pipe(
+      select('ngViewerState'),
+      select('panelOrder'),
+      distinctUntilChanged()
+    )
+
+    this.isMaximised$ = this.panelMode$.pipe(
+      map(panelMode => panelMode === SINGLE_PANEL)
+    )
+  }
+}
\ No newline at end of file
diff --git a/src/ui/nehubaContainer/maximisePanelButton/maximisePanelButton.style.css b/src/ui/nehubaContainer/maximisePanelButton/maximisePanelButton.style.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/src/ui/nehubaContainer/maximisePanelButton/maximisePanelButton.template.html b/src/ui/nehubaContainer/maximisePanelButton/maximisePanelButton.template.html
new file mode 100644
index 0000000000000000000000000000000000000000..62e7289790c7ab96f694036a9ec94706fa0dff50
--- /dev/null
+++ b/src/ui/nehubaContainer/maximisePanelButton/maximisePanelButton.template.html
@@ -0,0 +1,10 @@
+<button
+  [matTooltip]="(isMaximised$ | async) ? 'Restore four panel view' : 'Maximise this panel'"
+  mat-icon-button
+  color="primary">
+  <i *ngIf="isMaximised$ | async; else expandIconTemplate" class="fas fa-compress"></i>
+</button>
+
+<ng-template #expandIconTemplate>
+  <i class="fas fa-expand"></i>
+</ng-template>
\ No newline at end of file
diff --git a/src/ui/nehubaContainer/mobileOverlay/mobileOverlay.component.ts b/src/ui/nehubaContainer/mobileOverlay/mobileOverlay.component.ts
index 9be2dc7823401a0eeb0344ce0c6caaa2bc8b1a60..9971a1b4bb7d3b6515cba9d503028b939f6cbaa3 100644
--- a/src/ui/nehubaContainer/mobileOverlay/mobileOverlay.component.ts
+++ b/src/ui/nehubaContainer/mobileOverlay/mobileOverlay.component.ts
@@ -62,14 +62,18 @@ export class MobileOverlay implements OnInit, OnDestroy{
   }
 
   ngOnInit(){
+
+    const itemCount = this.tunableProperties.length
+
     const config = {
       root: this.intersector.nativeElement,
-      threshold: [...Array(10)].map((_, k) => k / 10)
+      threshold: [...[...Array(itemCount)].map((_, k) => k / itemCount), 1]
     }
 
     this.intersectionObserver = new IntersectionObserver((arg) => {
       if (arg[0].isIntersecting) {
-        this.focusItemIndex = 2- Math.floor(arg[0].intersectionRatio * this.tunableProperties.length)
+        const ratio = arg[0].intersectionRatio - (1 / this.tunableProperties.length / 2)
+        this.focusItemIndex = this.tunableProperties.length - Math.round(ratio * this.tunableProperties.length) - 1
       }
     }, config)
 
diff --git a/src/ui/nehubaContainer/mobileOverlay/mobileOverlay.style.css b/src/ui/nehubaContainer/mobileOverlay/mobileOverlay.style.css
index df352ebd76c28846b95958ebb0e4ed143da236d2..a37da10afb7571d0f5a2010aff618cb2b4f223bf 100644
--- a/src/ui/nehubaContainer/mobileOverlay/mobileOverlay.style.css
+++ b/src/ui/nehubaContainer/mobileOverlay/mobileOverlay.style.css
@@ -5,7 +5,7 @@
   top: 0;
   left: 0;
   position: absolute;
-  z-index: 999;
+  z-index: 9;
 
   pointer-events: none;
 }
diff --git a/src/ui/nehubaContainer/nehubaContainer.component.ts b/src/ui/nehubaContainer/nehubaContainer.component.ts
index cd15e7e6f43858e9df505928641e41ab98cb32fc..90174a621c3419f467dd174f7905107f345a626c 100644
--- a/src/ui/nehubaContainer/nehubaContainer.component.ts
+++ b/src/ui/nehubaContainer/nehubaContainer.component.ts
@@ -1,17 +1,18 @@
-import { Component, ViewChild, ViewContainerRef, ComponentFactoryResolver, ComponentFactory, ComponentRef, OnInit, OnDestroy, ElementRef } from "@angular/core";
-import { NehubaViewerUnit } from "./nehubaViewer/nehubaViewer.component";
+import { Component, ViewChild, ViewContainerRef, ComponentFactoryResolver, ComponentFactory, ComponentRef, OnInit, OnDestroy, ElementRef, Input, OnChanges } from "@angular/core";
+import { NehubaViewerUnit, computeDistance } from "./nehubaViewer/nehubaViewer.component";
 import { Store, select } from "@ngrx/store";
-import { ViewerStateInterface, safeFilter, CHANGE_NAVIGATION, isDefined, USER_LANDMARKS, ADD_NG_LAYER, REMOVE_NG_LAYER, NgViewerStateInterface, MOUSE_OVER_LANDMARK, SELECT_LANDMARKS, Landmark, PointLandmarkGeometry, PlaneLandmarkGeometry, OtherLandmarkGeometry, getNgIds, getMultiNgIdsRegionsLabelIndexMap, generateLabelIndexId } from "../../services/stateStore.service";
-import { Observable, Subscription, fromEvent, combineLatest, merge } from "rxjs";
-import { filter,map, take, scan, debounceTime, distinctUntilChanged, switchMap, skip, withLatestFrom, buffer, tap, throttleTime, bufferTime } from "rxjs/operators";
+import { ViewerStateInterface, safeFilter, CHANGE_NAVIGATION, isDefined, ADD_NG_LAYER, REMOVE_NG_LAYER, NgViewerStateInterface, MOUSE_OVER_LANDMARK, Landmark, PointLandmarkGeometry, PlaneLandmarkGeometry, OtherLandmarkGeometry, getNgIds, getMultiNgIdsRegionsLabelIndexMap, generateLabelIndexId, DataEntry } from "src/services/stateStore.service";
+import { Observable, Subscription, fromEvent, combineLatest, merge, of } from "rxjs";
+import { filter,map, take, scan, debounceTime, distinctUntilChanged, switchMap, skip, buffer, tap, switchMapTo, shareReplay, mapTo, takeUntil, throttleTime } from "rxjs/operators";
 import { AtlasViewerAPIServices, UserLandmark } from "../../atlasViewer/atlasViewer.apiService.service";
 import { timedValues } from "../../util/generator";
 import { AtlasViewerConstantsServices } from "../../atlasViewer/atlasViewer.constantService.service";
 import { ViewerConfiguration } from "src/services/state/viewerConfig.store";
 import { pipeFromArray } from "rxjs/internal/util/pipe";
-import { NEHUBA_READY } from "src/services/state/ngViewerState.store";
+import { NEHUBA_READY, H_ONE_THREE, V_ONE_THREE, FOUR_PANEL, SINGLE_PANEL, NG_VIEWER_ACTION_TYPES } from "src/services/state/ngViewerState.store";
 import { MOUSE_OVER_SEGMENTS } from "src/services/state/uiState.store";
-import { SELECT_REGIONS_WITH_ID } from "src/services/state/viewerState.store";
+import { getHorizontalOneThree, getVerticalOneThree, getFourPanel, getSinglePanel } from "./util";
+import { SELECT_REGIONS_WITH_ID, NEHUBA_LAYER_CHANGED, VIEWERSTATE_ACTION_TYPES } from "src/services/state/viewerState.store";
 
 const getProxyUrl = (ngUrl) => `nifti://${BACKEND_URL}preview/file?fileUrl=${encodeURIComponent(ngUrl.replace(/^nifti:\/\//,''))}`
 const getProxyOther = ({source}) => /AUTH_227176556f3c4bb38df9feea4b91200c/.test(source)
@@ -82,13 +83,9 @@ const scanFn : (acc:[boolean, boolean, boolean], curr: CustomEvent) => [boolean,
   ]
 })
 
-export class NehubaContainer implements OnInit, OnDestroy{
+export class NehubaContainer implements OnInit, OnChanges, OnDestroy{
 
   @ViewChild('container',{read:ViewContainerRef}) container : ViewContainerRef
-  @ViewChild('[pos00]',{read:ElementRef}) topleft : ElementRef
-  @ViewChild('[pos01]',{read:ElementRef}) topright : ElementRef
-  @ViewChild('[pos10]',{read:ElementRef}) bottomleft : ElementRef
-  @ViewChild('[pos11]',{read:ElementRef}) bottomright : ElementRef
 
   private nehubaViewerFactory : ComponentFactory<NehubaViewerUnit>
 
@@ -111,9 +108,16 @@ export class NehubaContainer implements OnInit, OnDestroy{
 
   private fetchedSpatialDatasets$ : Observable<Landmark[]>
   private userLandmarks$ : Observable<UserLandmark[]>
-  public onHoverSegmentName$ : Observable<string>
+  
   public onHoverSegment$ : Observable<any>
-  private onHoverLandmark$ : Observable<any|null>
+
+  @Input()
+  private currentOnHover: {segments:any, landmark:any, userLandmark: any}
+
+  @Input()
+  private currentOnHoverObs$: Observable<{segments:any, landmark:any, userLandmark: any}>
+
+  public onHoverSegments$: Observable<any[]>
 
   private navigationChanges$ : Observable<any>
   public spatialResultsVisible$ : Observable<boolean>
@@ -134,14 +138,23 @@ export class NehubaContainer implements OnInit, OnDestroy{
   private landmarksLabelIndexMap : Map<number, any> = new Map()
   private landmarksNameMap : Map<string,number> = new Map()
   
-  private userLandmarks : UserLandmark[] = []
-  
   private subscriptions : Subscription[] = []
   private nehubaViewerSubscriptions : Subscription[] = []
 
   public nanometersToOffsetPixelsFn : Function[] = []
   private viewerConfig : Partial<ViewerConfiguration> = {}
 
+  private viewPanels: [HTMLElement, HTMLElement, HTMLElement, HTMLElement] = [null, null, null, null]
+  public panelMode$: Observable<string>
+
+  private panelOrder: string
+  public panelOrder$: Observable<string>
+  private redrawLayout$: Observable<[string, string]>
+
+  public hoveredPanelIndices$: Observable<number>
+
+  private ngPanelTouchMove$: Observable<any>
+
   constructor(
     private constantService : AtlasViewerConstantsServices,
     private apiService :AtlasViewerAPIServices,
@@ -149,6 +162,9 @@ export class NehubaContainer implements OnInit, OnDestroy{
     private store : Store<ViewerStateInterface>,
     private elementRef : ElementRef
   ){
+
+    this.useMobileUI$ = this.constantService.useMobileUI$
+
     this.viewerPerformanceConfig$ = this.store.pipe(
       select('viewerConfigState'),
       /**
@@ -161,6 +177,32 @@ export class NehubaContainer implements OnInit, OnDestroy{
       filter(() => isDefined(this.nehubaViewer) && isDefined(this.nehubaViewer.nehubaViewer))
     )
 
+    this.panelMode$ = this.store.pipe(
+      select('ngViewerState'),
+      select('panelMode'),
+      distinctUntilChanged(),
+      shareReplay(1)
+    )
+
+    this.panelOrder$ = this.store.pipe(
+      select('ngViewerState'),
+      select('panelOrder'),
+      distinctUntilChanged(),
+      shareReplay(1),
+      tap(panelOrder => this.panelOrder = panelOrder)
+    )
+    
+    this.redrawLayout$ = this.store.pipe(
+      select('ngViewerState'),
+      select('nehubaReady'),
+      distinctUntilChanged(),
+      filter(v => !!v),
+      switchMapTo(combineLatest(
+        this.panelMode$,
+        this.panelOrder$
+      ))
+    )
+
     this.nehubaViewerFactory = this.csf.resolveComponentFactory(NehubaViewerUnit)
 
     this.newViewer$ = this.store.pipe(
@@ -219,76 +261,14 @@ export class NehubaContainer implements OnInit, OnDestroy{
     )
 
     this.userLandmarks$ = this.store.pipe(
-      /* TODO: distinct until changed */
       select('viewerState'),
-      // filter(state => isDefined(state) && isDefined(state.userLandmarks)),
-      map(state => isDefined(state) && isDefined(state.userLandmarks)
-        ? state.userLandmarks
-        : []),
-      distinctUntilChanged(userLmUnchanged)
-    )
-
-    const segmentsUnchangedChanged = (s1,s2)=>
-      !(typeof s1 === typeof s2 ?
-        typeof s2 === 'undefined' ?
-          false :
-          typeof s2 === 'number' ?
-            s2 !== s1 :
-            s1 === s2 ?
-              false :
-              s1 === null || s2 === null ?
-                true :
-                s2.name !== s1.name :
-        true)
-    
-
-    this.onHoverSegment$ = this.store.pipe(
-      select('uiState'),
-      filter(state=>isDefined(state)),
-      map(state=>state.mouseOverSegment),
-      distinctUntilChanged(segmentsUnchangedChanged)
-    )
-
-    this.onHoverLandmark$ = this.store.pipe(
-      select('uiState'),
-      filter(state => isDefined(state)),
-      map(state => state.mouseOverLandmark)
-    )
-
-    // TODO hack, even though octant is hidden, it seems with VTK, one can highlight
-    this.onHoverSegmentName$ = combineLatest(
-      this.store.pipe(
-        select('uiState'),
-        filter(state=>isDefined(state)),
-        map(state=>state.mouseOverSegment ?
-          state.mouseOverSegment.constructor === Number ? 
-            state.mouseOverSegment.toString() : 
-            state.mouseOverSegment.name :
-          '' ),
-        distinctUntilChanged()
-      ),
-      this.onHoverLandmark$
-    ).pipe(
-      map(results => results[1] === null ? results[0] : '')
+      select('userLandmarks'),
+      distinctUntilChanged()
     )
-    
-    /* each time a new viewer is initialised, take the first event to get the translation function */
-    this.newViewer$.pipe(
-      // switchMap(() => fromEvent(this.elementRef.nativeElement, 'sliceRenderEvent')
-      //   .pipe(
-      //     ...takeOnePipe
-      //   )
-      // )
-
-      switchMap(() => pipeFromArray([...takeOnePipe])(fromEvent(this.elementRef.nativeElement, 'sliceRenderEvent')))
-
-
-    ).subscribe((events)=>{
-      [0,1,2].forEach(idx=>this.nanometersToOffsetPixelsFn[idx] = (events[idx] as any).detail.nanometersToOffsetPixels)
-    })
 
     this.sliceViewLoadingMain$ = fromEvent(this.elementRef.nativeElement, 'sliceRenderEvent').pipe(
       scan(scanFn, [null, null, null]),
+      shareReplay(1)
     )
 
     this.sliceViewLoading0$ = this.sliceViewLoadingMain$
@@ -339,14 +319,201 @@ export class NehubaContainer implements OnInit, OnDestroy{
         ? state.layers.findIndex(l => l.mixability === 'nonmixable') >= 0
         : false)
     )
+
+    this.ngPanelTouchMove$ = fromEvent(this.elementRef.nativeElement, 'touchstart').pipe(
+      switchMap((touchStartEv:TouchEvent) => fromEvent(this.elementRef.nativeElement, 'touchmove').pipe(
+        tap((ev: TouchEvent) => ev.preventDefault()),
+        scan((acc, curr: TouchEvent) => [curr, ...acc.slice(0,1)], []),
+        map((touchMoveEvs:TouchEvent[]) => {
+          return {
+            touchStartEv,
+            touchMoveEvs
+          }
+        }),
+        takeUntil(fromEvent(this.elementRef.nativeElement, 'touchend').pipe(
+          filter((ev: TouchEvent) => ev.touches.length === 0))
+        )
+      ))
+    )
   }
 
-  get isMobile(){
-    return this.constantService.mobile
+  public useMobileUI$: Observable<boolean>
+
+  private removeExistingPanels() {
+    const element = this.nehubaViewer.nehubaViewer.ngviewer.layout.container.componentValue.element as HTMLElement
+    while (element.childElementCount > 0) {
+      element.removeChild(element.firstElementChild)
+    }
+    return element
   }
 
+  private findPanelIndex = (panel: HTMLElement) => this.viewPanels.findIndex(p => p === panel)
+
   ngOnInit(){
 
+    // translation on mobile
+    this.subscriptions.push(
+      this.ngPanelTouchMove$.pipe(
+        filter(({ touchMoveEvs }) => touchMoveEvs.length > 1 && (touchMoveEvs as TouchEvent[]).every(ev => ev.touches.length === 1)),
+      ).subscribe(({ touchMoveEvs, touchStartEv }) => {
+
+        // get deltaX and deltaY of touchmove
+        const deltaX = touchMoveEvs[1].touches[0].screenX - touchMoveEvs[0].touches[0].screenX
+        const deltaY = touchMoveEvs[1].touches[0].screenY - touchMoveEvs[0].touches[0].screenY
+
+        // figure out the target of touch start
+        const panelIdx = this.findPanelIndex(touchStartEv.target as HTMLElement) 
+
+        // translate if panelIdx < 3
+        if (panelIdx >=0 && panelIdx < 3) {
+          const { position } = this.nehubaViewer.nehubaViewer.ngviewer.navigationState
+          const pos = position.spatialCoordinates
+          window['export_nehuba'].vec3.set(pos, deltaX, deltaY, 0)
+          window['export_nehuba'].vec3.transformMat4(pos, pos, this.nehubaViewer.viewportToDatas[panelIdx])
+          position.changed.dispatch()
+        } 
+
+        // rotate 3D if panelIdx === 3
+
+        else if (panelIdx === 3) {
+          const {perspectiveNavigationState} = this.nehubaViewer.nehubaViewer.ngviewer
+          const { vec3 } = window['export_nehuba']
+          perspectiveNavigationState.pose.rotateRelative(vec3.fromValues(0, 1, 0), -deltaX / 4.0 * Math.PI / 180.0)
+          perspectiveNavigationState.pose.rotateRelative(vec3.fromValues(1, 0, 0), deltaY / 4.0 * Math.PI / 180.0)
+          this.nehubaViewer.nehubaViewer.ngviewer.perspectiveNavigationState.changed.dispatch()
+        }
+
+        // this shoudn't happen?
+        else {
+          console.warn(`panelIdx not found`)
+        }
+      })
+    )
+
+    // perspective reorientation on mobile
+    this.subscriptions.push(
+      this.ngPanelTouchMove$.pipe(
+        filter(({ touchMoveEvs }) => touchMoveEvs.length > 1 && (touchMoveEvs as TouchEvent[]).every(ev => ev.touches.length === 2)),
+      ).subscribe(({ touchMoveEvs, touchStartEv }) => {
+
+        const d1 = computeDistance(
+          [touchMoveEvs[1].touches[0].screenX, touchMoveEvs[1].touches[0].screenY],
+          [touchMoveEvs[1].touches[1].screenX, touchMoveEvs[1].touches[1].screenY]
+        )
+        const d2 = computeDistance(
+          [touchMoveEvs[0].touches[0].screenX, touchMoveEvs[0].touches[0].screenY],
+          [touchMoveEvs[0].touches[1].screenX, touchMoveEvs[0].touches[1].screenY]
+        )
+        const factor = d1/d2
+
+        // figure out the target of touch start
+        const panelIdx = this.findPanelIndex(touchStartEv.target as HTMLElement) 
+
+        // zoom slice view if slice
+        if (panelIdx >=0 && panelIdx < 3) {
+          this.nehubaViewer.nehubaViewer.ngviewer.navigationState.zoomBy(factor)
+        }
+
+        // zoom perspective view if on perspective
+        else if (panelIdx === 3) {
+          const { minZoom = null, maxZoom = null } = (this.selectedTemplate.nehubaConfig
+            && this.selectedTemplate.nehubaConfig.layout
+            && this.selectedTemplate.nehubaConfig.layout.useNehubaPerspective
+            && this.selectedTemplate.nehubaConfig.layout.useNehubaPerspective.restrictZoomLevel)
+            || {}
+          
+          const { zoomFactor } = this.nehubaViewer.nehubaViewer.ngviewer.perspectiveNavigationState
+          if (!!minZoom && zoomFactor.value * factor < minZoom) return
+          if (!!maxZoom && zoomFactor.value * factor > maxZoom) return
+          zoomFactor.zoomBy(factor)
+        }
+      })
+    )
+
+    this.hoveredPanelIndices$ = fromEvent(this.elementRef.nativeElement, 'mouseover').pipe(
+      switchMap((ev:MouseEvent) => merge(
+        of(this.findPanelIndex(ev.target as HTMLElement)),
+        fromEvent(this.elementRef.nativeElement, 'mouseout').pipe(
+          mapTo(null)
+        )
+      )),
+      debounceTime(20),
+      shareReplay(1)
+    )
+
+    // TODO deprecate
+    /* each time a new viewer is initialised, take the first event to get the translation function */
+    this.subscriptions.push(
+      this.newViewer$.pipe(
+        switchMap(() => pipeFromArray([...takeOnePipe])(fromEvent(this.elementRef.nativeElement, 'sliceRenderEvent')))
+      ).subscribe((events)=>{
+        for (const idx in [0,1,2]) {
+          const ev = events[idx] as CustomEvent
+          this.viewPanels[idx] = ev.target as HTMLElement
+          this.nanometersToOffsetPixelsFn[idx] = ev.detail.nanometersToOffsetPixels
+        }
+      })
+    )
+
+    this.subscriptions.push(
+      this.newViewer$.pipe(
+        switchMapTo(fromEvent(this.elementRef.nativeElement, 'perpspectiveRenderEvent').pipe(
+          take(1)
+        )),
+      ).subscribe(ev => this.viewPanels[3] = ((ev as CustomEvent).target) as HTMLElement)
+    )
+
+    this.subscriptions.push(
+      this.redrawLayout$.subscribe(([mode, panelOrder]) => {
+        const viewPanels = panelOrder.split('').map(v => Number(v)).map(idx => this.viewPanels[idx]) as [HTMLElement, HTMLElement, HTMLElement, HTMLElement]
+        /**
+         * TODO be smarter with event stream
+         */
+        if (!this.nehubaViewer) return
+
+        /**
+         * TODO smarter with event stream
+         */
+        if (!viewPanels.every(v => !!v)) return
+
+        switch (mode) {
+          case H_ONE_THREE:{
+            const element = this.removeExistingPanels()
+            const newEl = getHorizontalOneThree(viewPanels)
+            element.appendChild(newEl)
+            break;
+          }
+          case V_ONE_THREE:{
+            const element = this.removeExistingPanels()
+            const newEl = getVerticalOneThree(viewPanels)
+            element.appendChild(newEl)
+            break;
+          }
+          case FOUR_PANEL: {
+            const element = this.removeExistingPanels()
+            const newEl = getFourPanel(viewPanels)
+            element.appendChild(newEl)
+            break;
+          }
+          case SINGLE_PANEL: {
+            const element = this.removeExistingPanels()
+            const newEl = getSinglePanel(viewPanels)
+            element.appendChild(newEl)
+            break;
+          }
+          default: 
+        }
+        for (const panel of viewPanels){
+          (panel as HTMLElement).classList.add('neuroglancer-panel')
+        }
+
+        // TODO needed to redraw?
+        // see https://trello.com/c/oJOnlc6v/60-enlarge-panel-allow-user-rearrange-panel-position
+        // further investigaation required
+        this.nehubaViewer.redraw()
+      })
+    )
+
     this.subscriptions.push(
       this.viewerPerformanceConfig$.subscribe(config => {
         this.nehubaViewer.applyPerformanceConfig(config)
@@ -385,17 +552,15 @@ export class NehubaContainer implements OnInit, OnDestroy{
                     : null)
             )
         }else{
-          if (this.nehubaViewer && this.nehubaViewer.removeSpatialSearch3DLandmarks instanceof Function)
+          if (this.nehubaViewer && this.nehubaViewer.removeSpatialSearch3DLandmarks instanceof Function) {
             this.nehubaViewer.removeSpatialSearch3DLandmarks()
+          }
         }
       })
     )
 
     this.subscriptions.push(
-      this.userLandmarks$.pipe(
-        // distinctUntilChanged((old,new) => )
-      ).subscribe(landmarks => {
-        this.userLandmarks = landmarks
+      this.userLandmarks$.subscribe(landmarks => {
         if(this.nehubaViewer){
           this.nehubaViewer.updateUserLandmarks(landmarks)
         }
@@ -560,14 +725,12 @@ export class NehubaContainer implements OnInit, OnDestroy{
     combineLatest(
       this.navigationChanges$,
       this.selectedRegions$,
-      this.selectedParcellation$
-    ).subscribe(([navigation,regions, selectedParcellation])=>{
-      this.nehubaViewer.initNav = 
-        Object.assign({},navigation,{
-          positionReal : true
-        })
-      const { ngId : defaultNgId } = selectedParcellation
-      this.nehubaViewer.initRegions = regions.map(({ ngId = defaultNgId, labelIndex }) =>generateLabelIndexId({ ngId, labelIndex }))
+    ).subscribe(([navigation,regions])=>{
+      this.nehubaViewer.initNav = {
+        ...navigation,
+        positionReal: true
+      }
+      this.nehubaViewer.initRegions = regions.map(({ ngId, labelIndex }) => generateLabelIndexId({ ngId, labelIndex }))
     })
 
     this.subscriptions.push(
@@ -575,18 +738,7 @@ export class NehubaContainer implements OnInit, OnDestroy{
     )
 
     /* handler to open/select landmark */
-    const clickObs$ = fromEvent(this.elementRef.nativeElement, 'click').pipe(
-        withLatestFrom(this.onHoverLandmark$),
-        filter(results => results[1] !== null),
-        map(results => results[1]),
-        withLatestFrom(
-          this.store.pipe(
-            select('dataStore'),
-            safeFilter('fetchedSpatialData'),
-            map(state => state.fetchedSpatialData)
-          )
-        )
-      )
+    const clickObs$ = fromEvent(this.elementRef.nativeElement, 'click')
 
     this.subscriptions.push(
       clickObs$.pipe(
@@ -595,49 +747,26 @@ export class NehubaContainer implements OnInit, OnDestroy{
             debounceTime(200)
           )
         ),
-        filter(arr => arr.length >= 2),
-        map(arr => [...arr].reverse()[0]),
-        withLatestFrom(this.selectedLandmarks$)
+        filter(arr => arr.length >= 2)
       )
-        .subscribe(([clickObs, selectedSpatialDatas]) => {
-          const [landmark, spatialDatas] = clickObs
-          const idx = Number(landmark.replace('label=',''))
-          if(isNaN(idx)){
-            console.warn(`Landmark index could not be parsed as a number: ${landmark}`)
-            return
-          }
-
-          const newSelectedSpatialDatas = selectedSpatialDatas.findIndex(data => data.name === spatialDatas[idx].name) >= 0
-            ? selectedSpatialDatas.filter(v => v.name !== spatialDatas[idx].name)
-            : selectedSpatialDatas.concat(Object.assign({}, spatialDatas[idx], {_label: landmark}) )
-          
+        .subscribe(() => {
+          const { currentOnHover } = this
           this.store.dispatch({
-            type : SELECT_LANDMARKS,
-            landmarks : newSelectedSpatialDatas
+            type : VIEWERSTATE_ACTION_TYPES.DOUBLE_CLICK_ON_VIEWER,
+            payload: { ...currentOnHover }
           })
-          // if(this.datasetViewerRegistry.has(spatialDatas[idx].name)){
-          //   return
-          // }
-          // this.datasetViewerRegistry.add(spatialDatas[idx].name)
-          // const comp = this.datasetViewerFactory.create(this.injector)
-          // comp.instance.dataset = spatialDatas[idx]
-          // comp.onDestroy(() => this.datasetViewerRegistry.delete(spatialDatas[idx].name))
-          // this.widgetServices.addNewWidget(comp, {
-          //   exitable : true,
-          //   persistency : false,
-          //   state : 'floating',
-          //   title : `Spatial Dataset - ${spatialDatas[idx].name}`
-          // })
         })
     )
 
     this.subscriptions.push(
       this.selectedLandmarks$.pipe(
-        map(lms => lms.map(lm => this.landmarksNameMap.get(lm.name)))
+        map(lms => lms.map(lm => this.landmarksNameMap.get(lm.name))),
+        debounceTime(16)
       ).subscribe(indices => {
         const filteredIndices = indices.filter(v => typeof v !== 'undefined' && v !== null)
-        if(this.nehubaViewer)
+        if(this.nehubaViewer) {
           this.nehubaViewer.spatialLandmarkSelectionChanged(filteredIndices)
+        }
       })
     )
   }
@@ -647,28 +776,119 @@ export class NehubaContainer implements OnInit, OnDestroy{
   public showObliqueSelection$ : Observable<boolean>
   public showObliqueRotate$ : Observable<boolean>
 
-  ngAfterViewInit(){
+  ngOnChanges(){
+    if (this.currentOnHoverObs$) {
+      this.onHoverSegments$ = this.currentOnHoverObs$.pipe(
+        map(({ segments }) => segments)
+      )
+
+      const sortByFreshness: (acc: any[], curr: any[]) => any[] = (acc, curr) => {
+
+        const getLayerName = ({layer} = {layer:{}}) => {
+          const { name } = <any>layer
+          return name
+        }
+  
+        const newEntries = curr.filter(entry => {
+          const name = getLayerName(entry)
+          return acc.map(getLayerName).indexOf(name) < 0
+        })
+  
+        const entryChanged: (itemPrevState, newArr) => boolean = (itemPrevState, newArr) => {
+          const layerName = getLayerName(itemPrevState)
+          const { segment } = itemPrevState
+          const foundItem = newArr.find((_item) =>
+            getLayerName(_item) === layerName)
+  
+          if (foundItem) {
+            const { segment:foundSegment } = foundItem
+            return segment !== foundSegment 
+          } else {
+            /**
+             * if item was not found in the new array, meaning hovering nothing
+             */
+            return segment !== null
+          }
+        }
+  
+        const getItemFromLayerName = (item, arr) => {
+          const foundItem = arr.find(i => getLayerName(i) === getLayerName(item))
+          return foundItem
+            ? foundItem
+            : {
+              layer: item.layer,
+              segment: null
+            }
+        }
+  
+        const getReduceExistingLayers = (newArr) => ([changed, unchanged], _curr) => {
+          const changedFlag = entryChanged(_curr, newArr)
+          return changedFlag
+            ? [ changed.concat( getItemFromLayerName(_curr, newArr) ), unchanged ]
+            : [ changed, unchanged.concat(_curr) ]
+        }
+  
+        /**
+         * now, for all the previous layers, separate into changed and unchanged layers
+         */
+        const [changed, unchanged] = acc.reduce(getReduceExistingLayers(curr), [[], []])
+        return [...newEntries, ...changed, ...unchanged]
+      } 
+
+      // TODO to be deprected soon
+
+      this.onHoverSegment$ = this.onHoverSegments$.pipe(
+        scan(sortByFreshness, []),
+        /**
+         * take the first element after sort by freshness
+         */
+        map(arr => arr[0]),
+        /**
+         * map to the older interface
+         */
+        filter(v => !!v),
+        map(({ segment }) => {
+          return {
+            labelIndex: (isNaN(segment) && Number(segment.labelIndex)) || null,
+            foundRegion: (isNaN(segment) && segment) || null
+          }
+        })
+      )
+    }
   }
 
   ngOnDestroy(){
     this.subscriptions.forEach(s=>s.unsubscribe())
   }
 
-  public tunableMobileProperties = ['Oblique Rotate X', 'Oblique Rotate Y', 'Oblique Rotate Z']
+  toggleMaximiseMinimise(index: number){
+    this.store.dispatch({
+      type: NG_VIEWER_ACTION_TYPES.TOGGLE_MAXIMISE,
+      payload: {
+        index
+      }
+    })
+  }
+
+  public tunableMobileProperties = ['Oblique Rotate X', 'Oblique Rotate Y', 'Oblique Rotate Z', 'Remove extra layers']
   public selectedProp = null
 
+  handleMobileOverlayTouchEnd(focusItemIndex){
+    if (this.tunableMobileProperties[focusItemIndex] === 'Remove extra layers') {
+      this.store.dispatch({
+        type: NG_VIEWER_ACTION_TYPES.REMOVE_ALL_NONBASE_LAYERS
+      })
+    }
+  }
+
   handleMobileOverlayEvent(obj:any){
     const {delta, selectedProp} = obj
     this.selectedProp = selectedProp
 
     const idx = this.tunableMobileProperties.findIndex(p => p === selectedProp)
-    idx === 0
-      ? this.nehubaViewer.obliqueRotateX(delta)
-      : idx === 1
-        ? this.nehubaViewer.obliqueRotateY(delta)
-        : idx === 2
-          ? this.nehubaViewer.obliqueRotateZ(delta)
-          : console.warn('could not oblique rotate')
+    if (idx === 0) this.nehubaViewer.obliqueRotateX(delta)
+    if (idx === 1) this.nehubaViewer.obliqueRotateY(delta)
+    if (idx === 2) this.nehubaViewer.obliqueRotateZ(delta)
   }
 
   returnTruePos(quadrant:number,data:any){
@@ -690,6 +910,7 @@ export class NehubaContainer implements OnInit, OnDestroy{
     return this.returnTruePos(quadrant,data)[2]
   }
 
+  // handles mouse enter/leave landmarks in 2D
   handleMouseEnterLandmark(spatialData:any){
     spatialData.highlight = true
     this.store.dispatch({
@@ -722,6 +943,7 @@ export class NehubaContainer implements OnInit, OnDestroy{
     this.multiNgIdsRegionsLabelIndexMap = getMultiNgIdsRegionsLabelIndexMap(parcellation)
 
     this.nehubaViewer.multiNgIdsLabelIndexMap = this.multiNgIdsRegionsLabelIndexMap
+    this.nehubaViewer.auxilaryMeshIndices = parcellation.auxillaryMeshIndices || [] 
 
     /* TODO replace with proper KG id */
     /**
@@ -770,6 +992,14 @@ export class NehubaContainer implements OnInit, OnDestroy{
       this.nehubaViewer.debouncedViewerPositionChange.subscribe(this.handleEmittedNavigationChange.bind(this))
     )
 
+    this.nehubaViewerSubscriptions.push(
+      this.nehubaViewer.layersChanged.subscribe(() => {
+        this.store.dispatch({
+          type: NEHUBA_LAYER_CHANGED
+        })
+      })
+    )
+
     this.nehubaViewerSubscriptions.push(
       /**
        * TODO when user selects new template, window.viewer 
@@ -822,7 +1052,9 @@ export class NehubaContainer implements OnInit, OnDestroy{
     )
 
     this.nehubaViewerSubscriptions.push(
-      this.nehubaViewer.mouseoverLandmarkEmitter.subscribe(label => {
+      this.nehubaViewer.mouseoverLandmarkEmitter.pipe(
+        throttleTime(100)
+      ).subscribe(label => {
         this.store.dispatch({
           type : MOUSE_OVER_LANDMARK,
           landmark : label
@@ -830,40 +1062,15 @@ export class NehubaContainer implements OnInit, OnDestroy{
       })
     )
 
-    const onhoverSegments$ = this.store.pipe(
-      select('uiState'),
-      select('mouseOverSegments'),
-      filter(v => !!v),
-      distinctUntilChanged((o, n) => o.length === n.length && n.every(segment => o.find(oSegment => oSegment.layer.name === segment.layer.name && oSegment.segment === segment.segment) ) )
-    )
-
-    // TODO hack, even though octant is hidden, it seems with vtk one can mouse on hover
     this.nehubaViewerSubscriptions.push(
-      this.nehubaViewer.regionSelectionEmitter.pipe(
-        withLatestFrom(this.onHoverLandmark$),
-        filter(results => results[1] === null),
-        withLatestFrom(onhoverSegments$),
-        map(results => results[1]),
-        filter(arr => arr.length > 0),
-        map(arr => {
-          return arr.map(({ layer, segment }) => {
-            const ngId = segment.ngId || layer.name
-            const labelIndex = segment.labelIndex
-            return generateLabelIndexId({ ngId, labelIndex })
-          })
-        })
-      ).subscribe((ids:string[]) => {
-        const deselectFlag = ids.some(id => this.selectedRegionIndexSet.has(id))
-
-        const set = new Set(this.selectedRegionIndexSet)
-        if (deselectFlag) {
-          ids.forEach(id => set.delete(id))
-        } else {
-          ids.forEach(id => set.add(id))
-        }
+      this.nehubaViewer.mouseoverUserlandmarkEmitter.pipe(
+        throttleTime(160)
+      ).subscribe(label => {
         this.store.dispatch({
-          type: SELECT_REGIONS_WITH_ID,
-          selectRegionIds: [...set]
+          type: VIEWERSTATE_ACTION_TYPES.MOUSEOVER_USER_LANDMARK_LABEL,
+          payload: {
+            label
+          }
         })
       })
     )
@@ -910,14 +1117,16 @@ export class NehubaContainer implements OnInit, OnDestroy{
         if(!landmarks.every(l => l.position.constructor === Array) || !landmarks.every(l => l.position.every(v => !isNaN(v))) || !landmarks.every(l => l.position.length == 3))
           throw new Error('position needs to be a length 3 tuple of numbers ')
         this.store.dispatch({
-          type: USER_LANDMARKS,
+          type: VIEWERSTATE_ACTION_TYPES.ADD_USERLANDMARKS,
           landmarks : landmarks
         })
       },
-      remove3DLandmarks : ids => {
+      remove3DLandmarks : landmarkIds => {
         this.store.dispatch({
-          type : USER_LANDMARKS,
-          landmarks : this.userLandmarks.filter(l => ids.findIndex(id => id === l.id) < 0)
+          type: VIEWERSTATE_ACTION_TYPES.REMOVE_USER_LANDMARKS,
+          payload: {
+            landmarkIds
+          }
         })
       },
       hideSegment : (labelIndex) => {
@@ -952,8 +1161,12 @@ export class NehubaContainer implements OnInit, OnDestroy{
         })
       },
       segmentColourMap : new Map(),
+      getLayersSegmentColourMap: () => this.nehubaViewer.multiNgIdColorMap,
       applyColourMap : (map)=>{
-        /* TODO to be implemented */
+        throw new Error(`apply color map has been deprecated. use applyLayersColourMap instead`)
+      },
+      applyLayersColourMap: (map) => {
+        this.nehubaViewer.setColorMap(map)
       },
       loadLayer : (layerObj)=>this.nehubaViewer.loadLayer(layerObj),
       removeLayer : (condition)=>this.nehubaViewer.removeLayer(condition),
@@ -975,11 +1188,15 @@ export class NehubaContainer implements OnInit, OnDestroy{
           map((ev:MouseEvent)=>({eventName :'mouseup',event:ev}))
         ),
       ) ,
-      mouseOverNehuba : this.onHoverSegment$,
+      mouseOverNehuba : this.onHoverSegment$.pipe(
+        tap(() => console.warn('mouseOverNehuba observable is becoming deprecated. use mouseOverNehubaLayers instead.'))
+      ),
+      mouseOverNehubaLayers: this.onHoverSegments$,
       getNgHash : this.nehubaViewer.getNgHash
     }
   }
 
+  // TODO deprecate
   handleNavigationPositionAndNavigationZoomChange(navigation){
     if(!navigation.position){
       return
@@ -1037,7 +1254,8 @@ export class NehubaContainer implements OnInit, OnDestroy{
      */
     Object.keys(_navigation).forEach(key => (!_navigation[key]) && delete _navigation[key])
     
-    if( animation ){
+    const { animation: globalAnimationFlag } = this.viewerConfig
+    if( globalAnimationFlag && animation ){
       /* animated */
 
       const gen = timedValues()
@@ -1091,7 +1309,6 @@ export class NehubaContainer implements OnInit, OnDestroy{
       }))
     }
   }
-
 }
 
 export const identifySrcElement = (element:HTMLElement) => {
@@ -1119,7 +1336,6 @@ export const takeOnePipe = [
      * 4 ???
      */
     const key = identifySrcElement(target)
-
     const _ = {}
     _[key] = event
     return Object.assign({},acc,_)
diff --git a/src/ui/nehubaContainer/nehubaContainer.style.css b/src/ui/nehubaContainer/nehubaContainer.style.css
index 301c664de0d831b6e848e7f5af27422c27326749..5023c2001888243b2a8e68e9838fb926d59adc2d 100644
--- a/src/ui/nehubaContainer/nehubaContainer.style.css
+++ b/src/ui/nehubaContainer/nehubaContainer.style.css
@@ -15,6 +15,11 @@ input[navigateInput]
   box-shadow: inset 0px 2px 2px 2px rgba(0,0,0,0.05);
 }
 
+current-layout
+{
+  top: 0;
+  left: 0;
+}
 
 div[landmarkMasterContainer]
 {
@@ -66,7 +71,7 @@ hr
 }
 
 
-div[landmarkMasterContainer] > div > [landmarkContainer] > div.loadingIndicator
+div.loadingIndicator
 {
   left: auto;
   top: auto;
@@ -75,6 +80,7 @@ div[landmarkMasterContainer] > div > [landmarkContainer] > div.loadingIndicator
   margin-right: 0.2em;
   margin-bottom: 0.2em;
   width: 100%;
+  position:absolute;
   height:2em;
   display: flex;
   flex-direction: row-reverse;
@@ -166,3 +172,33 @@ div#scratch-pad
   pointer-events: none;
 }
 
+.load-fav-dataentries-fab
+{
+  right: 0;
+  bottom: 0;
+}
+
+maximise-panel-button
+{
+  transition: opacity 170ms ease-in-out,
+    transform 250ms ease-in-out;
+
+  position: absolute;
+  bottom: 0;
+  right: 0;
+}
+
+/* if not mobile, then show on hover */
+maximise-panel-button
+{
+  opacity: 0.0;
+  pointer-events: none;
+}
+
+maximise-panel-button.onHover,
+maximise-panel-button:hover,
+:host-context([ismobile="true"]) maximise-panel-button
+{
+  opacity: 1.0 !important;
+  pointer-events: all !important;
+}
diff --git a/src/ui/nehubaContainer/nehubaContainer.template.html b/src/ui/nehubaContainer/nehubaContainer.template.html
index c453d302cb382720296e778641c7ef05465fab9f..3e827ac7dd6143fd7506c7decea0b2c7092d9292 100644
--- a/src/ui/nehubaContainer/nehubaContainer.template.html
+++ b/src/ui/nehubaContainer/nehubaContainer.template.html
@@ -1,94 +1,57 @@
 <ng-template #container>
 </ng-template>
 
-<ui-splashscreen (contextmenu)="$event.stopPropagation();" *ngIf="!viewerLoaded">
+<ui-splashscreen iav-stop="mousedown mouseup touchstart touchmove touchend" (contextmenu)="$event.stopPropagation();" *ngIf="!viewerLoaded">
 </ui-splashscreen>
 
-<div landmarkMasterContainer>
+<!-- spatial landmarks overlay -->
+<!-- loading indicator -->
 
-  <div>
-    <layout-floating-container pos00 landmarkContainer>
-      <nehuba-2dlandmark-unit *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(0,spatialData)" [positionY]="getPositionY(0,spatialData)"
-        [positionZ]="getPositionZ(0,spatialData)">
-      </nehuba-2dlandmark-unit>
-
-      <div *ngIf="sliceViewLoading0$ | async" class="loadingIndicator">
-        <div class="spinnerAnimationCircle">
-
-        </div>
-      </div>
-    </layout-floating-container>
+<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="overlayi"></ng-content>
   </div>
-  <div>
-    <layout-floating-container pos01 landmarkContainer>
-      <nehuba-2dlandmark-unit *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(1,spatialData)" [positionY]="getPositionY(1,spatialData)"
-        [positionZ]="getPositionZ(1,spatialData)">
-      </nehuba-2dlandmark-unit>
-
-      <div *ngIf="sliceViewLoading1$ | async" class="loadingIndicator">
-        <div class="spinnerAnimationCircle">
-
-        </div>
-      </div>
-    </layout-floating-container>
+  <div class="w-100 h-100 position-relative" cell-ii>
+    <ng-content *ngTemplateOutlet="overlayii"></ng-content>
   </div>
-  <div>
-    <layout-floating-container pos10 landmarkContainer>
-      <nehuba-2dlandmark-unit *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(2,spatialData)" [positionY]="getPositionY(2,spatialData)"
-        [positionZ]="getPositionZ(2,spatialData)">
-      </nehuba-2dlandmark-unit>
-
-      <div *ngIf="sliceViewLoading2$ | async" class="loadingIndicator">
-        <div class="spinnerAnimationCircle">
-
-        </div>
-      </div>
-    </layout-floating-container>
+  <div class="w-100 h-100 position-relative" cell-iii>
+    <ng-content *ngTemplateOutlet="overlayiii"></ng-content>
   </div>
-  <div>
-    <layout-floating-container pos11 landmarkContainer>
-      <div *ngIf="perspectiveViewLoading$ | async" class="loadingIndicator">
-        <div class="spinnerAnimationCircle"></div>
-        <div perspectiveLoadingText>
-          {{ perspectiveViewLoading$ | async }}
-        </div>
-      </div>
-    </layout-floating-container>
+  <div class="w-100 h-100 position-relative" cell-iv>
+    <ng-content *ngTemplateOutlet="overlayiv"></ng-content>
   </div>
-</div>
+</current-layout>
+
+<layout-floating-container *ngIf="viewerLoaded">
 
-<layout-floating-container *ngIf="viewerLoaded && !isMobile">
   <!-- StatusCard container-->
-  <ui-status-card [selectedTemplate]="selectedTemplate" [isMobile]="isMobile"
-    [onHoverSegmentName]="onHoverSegmentName$ | async" [nehubaViewer]="nehubaViewer">
+  <ui-status-card
+    *ngIf="!(useMobileUI$ | async)"
+    [selectedTemplate]="selectedTemplate"
+    [isMobile]="useMobileUI$ | async"
+    [nehubaViewer]="nehubaViewer">
   </ui-status-card>
 </layout-floating-container>
 
 <div id="scratch-pad">
-
 </div>
 
-<mobile-overlay *ngIf="isMobile && viewerLoaded" [tunableProperties]="tunableMobileProperties"
-  (deltaValue)="handleMobileOverlayEvent($event)">
+<!-- mobile nub, allowing for ooblique slicing in mobile -->
+<mobile-overlay
+  *ngIf="(useMobileUI$ | async) && viewerLoaded"
+  (touchend)="handleMobileOverlayTouchEnd(mobileOverlayEl.focusItemIndex)"
+  [tunableProperties]="tunableMobileProperties"
+  (deltaValue)="handleMobileOverlayEvent($event)"
+  #mobileOverlayEl>
   <div class="base" delta>
     <div mobileObliqueGuide class="p-2 mb-4 shadow">
       {{ selectedProp }}
     </div>
   </div>
   <div class="base" guide>
-    <div mobileObliqueGuide class="p-2 mb-4 shadow">
+    <div
+      mobileObliqueGuide
+      class="p-2 mb-4 shadow">
       <div>
         <i class="fas fa-arrows-alt-v"></i> oblique mode
       </div>
@@ -97,7 +60,111 @@
       </div>
     </div>
   </div>
-  <div (contextmenu)="$event.stopPropagation(); $event.preventDefaul();" mobileObliqueCtrl initiator>
-    <i class="fas fa-globe"></i>
+  <div
+    (contextmenu)="$event.stopPropagation(); $event.preventDefault();"
+    [ngStyle]="panelMode$ | async | mobileControlNubStylePipe"
+    *ngIf="(panelMode$ | async) !== 'SINGLE_PANEL'"
+    mobileObliqueCtrl
+    initiator>
+    <button mat-mini-fab color="primary">
+      <i class="fas fa-globe"></i>
+    </button>
   </div>
-</mobile-overlay>
\ No newline at end of file
+</mobile-overlay>
+
+<!-- overlay templates -->
+<!-- inserted using ngTemplateOutlet -->
+<ng-template #overlayi>
+  <layout-floating-container pos00 landmarkContainer>
+    <nehuba-2dlandmark-unit *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(0,spatialData)" [positionY]="getPositionY(0,spatialData)"
+      [positionZ]="getPositionZ(0,spatialData)">
+    </nehuba-2dlandmark-unit>
+
+    <!-- maximise/minimise button -->
+    <maximise-panel-button
+      (click)="toggleMaximiseMinimise(0)"
+      [ngClass]="{ onHover: (panelOrder$ | async | reorderPanelIndexPipe : ( hoveredPanelIndices$ | async  )) === 0 }"
+      [touch-side-class]="0 " class="pe-all">
+    </maximise-panel-button>
+    
+    <div *ngIf="sliceViewLoading0$ | async" class="loadingIndicator">
+      <div class="spinnerAnimationCircle">
+
+      </div>
+    </div>
+  </layout-floating-container>
+</ng-template>
+
+<ng-template #overlayii>
+  <layout-floating-container pos01 landmarkContainer>
+      <nehuba-2dlandmark-unit *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(1,spatialData)" [positionY]="getPositionY(1,spatialData)"
+        [positionZ]="getPositionZ(1,spatialData)">
+      </nehuba-2dlandmark-unit>
+
+      <!-- maximise/minimise button -->
+      <maximise-panel-button
+        (click)="toggleMaximiseMinimise(1)"
+        [ngClass]="{ onHover: (panelOrder$ | async | reorderPanelIndexPipe : ( hoveredPanelIndices$ | async  )) === 1 }"
+        [touch-side-class]="1 " class="pe-all">
+      </maximise-panel-button>
+
+      <div *ngIf="sliceViewLoading1$ | async" class="loadingIndicator">
+        <div class="spinnerAnimationCircle">
+
+        </div>
+      </div>
+    </layout-floating-container>
+</ng-template>
+
+<ng-template #overlayiii>
+  <layout-floating-container pos10 landmarkContainer>
+    <nehuba-2dlandmark-unit *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(2,spatialData)" [positionY]="getPositionY(2,spatialData)"
+      [positionZ]="getPositionZ(2,spatialData)">
+    </nehuba-2dlandmark-unit>
+
+    <!-- maximise/minimise button -->
+    <maximise-panel-button
+      (click)="toggleMaximiseMinimise(2)"
+      [ngClass]="{ onHover: (panelOrder$ | async | reorderPanelIndexPipe : ( hoveredPanelIndices$ | async  )) === 2 }"
+      [touch-side-class]="2 " class="pe-all">
+    </maximise-panel-button>
+
+    <div *ngIf="sliceViewLoading2$ | async" class="loadingIndicator">
+      <div class="spinnerAnimationCircle">
+
+      </div>
+    </div>
+  </layout-floating-container>
+</ng-template>
+
+<ng-template #overlayiv>
+  <layout-floating-container pos11 landmarkContainer>
+
+    <!-- maximise/minimise button -->
+    <maximise-panel-button
+      (click)="toggleMaximiseMinimise(3)"
+      [ngClass]="{ onHover: (panelOrder$ | async | reorderPanelIndexPipe : ( hoveredPanelIndices$ | async  )) === 3 }"
+      [touch-side-class]="3 " class="pe-all">
+    </maximise-panel-button>
+    
+    <div *ngIf="perspectiveViewLoading$ | async" class="loadingIndicator">
+      <div class="spinnerAnimationCircle"></div>
+
+      <div perspectiveLoadingText>
+        {{ perspectiveViewLoading$ | async }}
+      </div>
+    </div>
+  </layout-floating-container>
+</ng-template>
diff --git a/src/ui/nehubaContainer/nehubaViewer/nehubaViewer.component.ts b/src/ui/nehubaContainer/nehubaViewer/nehubaViewer.component.ts
index b0dbdd4c142815150892d2c7117fedc39287eded..5a5ec2d04f0e9102a1782dd01236762c81df35fc 100644
--- a/src/ui/nehubaContainer/nehubaViewer/nehubaViewer.component.ts
+++ b/src/ui/nehubaContainer/nehubaViewer/nehubaViewer.component.ts
@@ -1,15 +1,37 @@
-import { Component, OnDestroy, Output, EventEmitter, ElementRef, NgZone, Renderer2 } from "@angular/core";
-import 'third_party/export_nehuba/main.bundle.js'
-import 'third_party/export_nehuba/chunk_worker.bundle.js'
-import { fromEvent, interval, Observable } from 'rxjs'
-import { AtlasWorkerService } from "../../../atlasViewer/atlasViewer.workerService.service";
-import { buffer, map, filter, debounceTime, take, takeUntil, scan, switchMap, takeWhile } from "rxjs/operators";
-import { AtlasViewerConstantsServices } from "../../../atlasViewer/atlasViewer.constantService.service";
-import { takeOnePipe, identifySrcElement } from "../nehubaContainer.component";
+import { Component, OnDestroy, Output, EventEmitter, ElementRef, NgZone, Renderer2, OnInit } from "@angular/core";
+import { fromEvent, Subscription, Subject } from 'rxjs'
+import { AtlasWorkerService } from "src/atlasViewer/atlasViewer.workerService.service";
+import { map, filter, debounceTime, scan } from "rxjs/operators";
+import { AtlasViewerConstantsServices } from "src/atlasViewer/atlasViewer.constantService.service";
+import { takeOnePipe } from "../nehubaContainer.component";
 import { ViewerConfiguration } from "src/services/state/viewerConfig.store";
 import { pipeFromArray } from "rxjs/internal/util/pipe";
 import { getNgIdLabelIndexFromId } from "src/services/stateStore.service";
 
+import 'third_party/export_nehuba/main.bundle.js'
+import 'third_party/export_nehuba/chunk_worker.bundle.js'
+
+interface LayerLabelIndex {
+  layer: { 
+    name: string
+  }
+
+  labelIndicies: number[]
+}
+
+const scanFn : (acc: LayerLabelIndex[], curr: LayerLabelIndex) => LayerLabelIndex[] = (acc: LayerLabelIndex[], curr: LayerLabelIndex) => {
+  const { layer } = curr
+  const { name } = layer
+  const foundIndex = acc.findIndex(({ layer }) => layer.name === name)
+  if (foundIndex < 0) return acc.concat(curr)
+  else return acc.map((item, idx) => idx === foundIndex
+    ? {
+        ...item,
+        labelIndicies: [...new Set([...item.labelIndicies, ...curr.labelIndicies])]
+      }
+    : item)
+}
+
 /**
  * no selector is needed, as currently, nehubaviewer is created dynamically
  */
@@ -20,9 +42,13 @@ import { getNgIdLabelIndexFromId } from "src/services/stateStore.service";
   ]
 })
 
-export class NehubaViewerUnit implements OnDestroy{
+export class NehubaViewerUnit implements OnInit, OnDestroy{
+
+  private subscriptions: Subscription[] = []
   
   @Output() nehubaReady: EventEmitter<null> = new EventEmitter()
+  @Output() layersChanged: EventEmitter<null> = new EventEmitter()
+  private layersChangedHandler: any
   @Output() debouncedViewerPositionChange : EventEmitter<any> = new EventEmitter()
   @Output() mouseoverSegmentEmitter: 
     EventEmitter<{
@@ -34,9 +60,12 @@ export class NehubaViewerUnit implements OnDestroy{
       }
     }> = new EventEmitter()
   @Output() mouseoverLandmarkEmitter : EventEmitter<number | null> = new EventEmitter()
+  @Output() mouseoverUserlandmarkEmitter: EventEmitter<number | null> = new EventEmitter()
   @Output() regionSelectionEmitter : EventEmitter<{segment:number, layer:{name?: string, url?: string}}> = new EventEmitter()
   @Output() errorEmitter : EventEmitter<any> = new EventEmitter()
 
+  public auxilaryMeshIndices: number[] = []
+
   /* only used to set initial navigation state */
   initNav : any
   initRegions : any[]
@@ -73,9 +102,7 @@ export class NehubaViewerUnit implements OnDestroy{
     this._s9$
   ]
 
-  ondestroySubscriptions: any[] = []
-
-  touchStart$ : Observable<any>
+  ondestroySubscriptions: Subscription[] = []
 
   constructor(
     private rd: Renderer2,
@@ -105,6 +132,9 @@ export class NehubaViewerUnit implements OnDestroy{
         }
         this.patchNG()
         this.loadNehuba()
+
+        this.layersChangedHandler = this.nehubaViewer.ngviewer.layerManager.layersChanged.add(() => this.layersChanged.emit(null))
+        this.nehubaViewer.ngviewer.registerDisposer(this.layersChangedHandler)
       })
       .catch(e => this.errorEmitter.emit(e))
 
@@ -189,78 +219,12 @@ export class NehubaViewerUnit implements OnDestroy{
         this.loadLayer(_)
       })
     )
-
-    this.ondestroySubscriptions.push(
-
-      fromEvent(this.workerService.worker,'message').pipe(
-        filter((message:any) => {
-  
-          if(!message){
-            // console.error('worker response message is undefined', message)
-            return false
-          }
-          if(!message.data){
-            // console.error('worker response message.data is undefined', message.data)
-            return false
-          }
-          if(message.data.type !== 'CHECKED_MESH'){
-            /* worker responded with not checked mesh, no need to act */
-            return false
-          }
-          return true
-        }),
-        map(e => e.data),
-        buffer(interval(1000)),
-        map(arr => arr.reduce((acc:Map<string,Set<number>>,curr)=> {
-          
-          const newMap = new Map(acc)
-          const set = newMap.get(curr.baseUrl)
-          if(set){
-            set.add(curr.checkedIndex)
-          }else{
-            newMap.set(curr.baseUrl,new Set([curr.checkedIndex]))
-          }
-          return newMap
-        }, new Map()))
-      ).subscribe(map => {
-        
-        Array.from(map).forEach(item => {
-          const baseUrl : string = item[0]
-          const set : Set<number> = item[1]
-  
-          /* validation passed, add to safeMeshSet */
-          const oldset = this.workerService.safeMeshSet.get(baseUrl)
-          if(oldset){
-            this.workerService.safeMeshSet.set(baseUrl, new Set([...oldset, ...set]))
-          }else{
-            this.workerService.safeMeshSet.set(baseUrl, new Set([...set]))
-          }
-  
-          /* if the active parcellation is the current parcellation, load the said mesh */
-          const baseUrlIsInLoadedBaseUrlList = new Set([...this._baseUrls]).has(baseUrl)
-          const baseUrlParcellationId = this._baseUrlToParcellationIdMap.get(baseUrl)
-          if( baseUrlIsInLoadedBaseUrlList && baseUrlParcellationId){
-            this.nehubaViewer.setMeshesToLoad([...this.workerService.safeMeshSet.get(baseUrl)], {
-              name : baseUrlParcellationId
-            })
-          }
-        })
-      })
-    )
   }
 
   private _baseUrlToParcellationIdMap:Map<string, string> = new Map()
   private _baseUrls: string[] = []
 
-  get numMeshesToBeLoaded():number{
-    if(!this._baseUrls || this._baseUrls.length === 0)
-      return 0
-
-    return this._baseUrls.reduce((acc, curr) => {
-      const mappedSet = this.workerService.safeMeshSet.get(curr)
-      return acc + ((mappedSet && mappedSet.size) || 0)
-    } ,0)
-  }
+  public numMeshesToBeLoaded: number = 0
 
   public applyPerformanceConfig ({ gpuLimit }: Partial<ViewerConfiguration>) {
     if (gpuLimit && this.nehubaViewer) {
@@ -308,14 +272,12 @@ export class NehubaViewerUnit implements OnDestroy{
     const getCondition = (label:number) => `if(label > ${label - 0.1} && label < ${label + 0.1} ){${FRAGMENT_EMIT_RED}}`
     const newShader = `void main(){ ${labels.map(getCondition).join('else ')}else {${FRAGMENT_EMIT_WHITE}} }`
     if(!this.nehubaViewer){
-      if(!PRODUCTION || window['__debug__'])
-        console.warn('setting special landmark selection changed failed ... nehubaViewer is not yet defined')
+      if(!PRODUCTION || window['__debug__']) console.warn('setting special landmark selection changed failed ... nehubaViewer is not yet defined')
       return
     }
     const landmarkLayer = this.nehubaViewer.ngviewer.layerManager.getLayerByName(this.constantService.ngLandmarkLayerName)
     if(!landmarkLayer){
-      if(!PRODUCTION || window['__debug__'])
-        console.warn('landmark layer could not be found ... will not update colour map')
+      if(!PRODUCTION || window['__debug__']) console.warn('landmark layer could not be found ... will not update colour map')
       return
     }
     if(labels.length === 0){
@@ -335,16 +297,36 @@ export class NehubaViewerUnit implements OnDestroy{
 
   viewerState : ViewerState
 
-  private multiNgIdColorMap: Map<string, Map<number, {red: number, green:number, blue: number}>>
+  private _multiNgIdColorMap: Map<string, Map<number, {red: number, green:number, blue: number}>>
+  get multiNgIdColorMap(){
+    return this._multiNgIdColorMap
+  }
+
+  set multiNgIdColorMap(val) {
+    this._multiNgIdColorMap = val
+  }
+
+  private loadMeshes$: Subject<{labelIndicies: number[], layer: { name: string }}> = new Subject()
+  private loadMeshes(labelIndicies: number[], { name }){
+    this.loadMeshes$.next({
+      labelIndicies,
+      layer: { name }
+    })
+  }
+
   public mouseOverSegment: number | null
   public mouseOverLayer: {name:string,url:string}| null
 
-  private viewportToDatas : [any, any, any] = [null, null, null]
+  public viewportToDatas : [any, any, any] = [null, null, null]
 
   public getNgHash : () => string = () => window['export_nehuba']
     ? window['export_nehuba'].getNgHash()
     : null
 
+  redraw(){
+    this.nehubaViewer.redraw()
+  }
+
   loadNehuba(){
     this.nehubaViewer = window['export_nehuba'].createNehubaViewer(this.config, (err)=>{
       /* print in debug mode */
@@ -362,7 +344,7 @@ export class NehubaViewerUnit implements OnDestroy{
       if (layer) layer.setVisible(true)
       else console.log('layer unavailable', ngId)
     })
-    this.nehubaViewer.redraw()
+    this.redraw()
 
     /* creation of the layout is done on next frame, hence the settimeout */
     setTimeout(() => {
@@ -377,6 +359,11 @@ export class NehubaViewerUnit implements OnDestroy{
 
     this.onDestroyCb.push(() => window['nehubaViewer'] = null)
 
+    /**
+     * TODO
+     * move this to nehubaContainer
+     * do NOT use position logic to determine idx
+     */
     this.ondestroySubscriptions.push(
       // fromEvent(this.elementRef.nativeElement, 'viewportToData').pipe(
       //   ...takeOnePipe
@@ -384,96 +371,34 @@ export class NehubaViewerUnit implements OnDestroy{
       //   [0,1,2].forEach(idx => this.viewportToDatas[idx] = events[idx].detail.viewportToData)
       // })
       pipeFromArray([...takeOnePipe])(fromEvent(this.elementRef.nativeElement, 'viewportToData'))
-      .subscribe((events:CustomEvent[]) => {
-        [0,1,2].forEach(idx => this.viewportToDatas[idx] = events[idx].detail.viewportToData)
-      })
-    )
-
-    this.touchStart$ = fromEvent(this.elementRef.nativeElement, 'touchstart').pipe(
-      map((ev:TouchEvent) => {
-        const srcElement : HTMLElement = ev.srcElement || (ev as any).originalTarget
-        return {
-          startPos: [ev.touches[0].screenX, ev.touches[0].screenY],
-          elementId: identifySrcElement(srcElement),
-          srcElement,
-          event: ev
-        }
-      })
+        .subscribe((events:CustomEvent[]) => {
+          [0,1,2].forEach(idx => this.viewportToDatas[idx] = events[idx].detail.viewportToData)
+        })
     )
+  }
 
-    this.ondestroySubscriptions.push(
-
-      this.touchStart$.pipe(
-        switchMap(({startPos, elementId, srcElement}) => fromEvent(this.elementRef.nativeElement,'touchmove').pipe(
-          map((ev: TouchEvent) => (ev.stopPropagation(), ev.preventDefault(), ev)),
-          filter((ev:TouchEvent) => ev.touches.length === 1),
-          map((event:TouchEvent) => ({
-            startPos,
-            event,
-            elementId,
-            srcElement
-          })),
-          scan((acc,ev:any) => {
-            return acc.length < 2
-              ? acc.concat(ev)
-              : acc.slice(1).concat(ev)
-          },[]),
-          map(double => ({
-            elementId: double[0].elementId,
-            deltaX: double.length === 1
-              ? null // startPos[0] - (double[0].event as TouchEvent).touches[0].screenX
-              : double.length === 2
-                ? (double[0].event as TouchEvent).touches[0].screenX - (double[1].event as TouchEvent).touches[0].screenX 
-                : null,
-            deltaY: double.length === 1
-              ? null // startPos[0] - (double[0].event as TouchEvent).touches[0].screenY
-              : double.length === 2
-                ? (double[0].event as TouchEvent).touches[0].screenY - (double[1].event as TouchEvent).touches[0].screenY 
-                : null
-          })),
-          takeUntil(fromEvent(this.elementRef.nativeElement, 'touchend').pipe(filter((ev: TouchEvent) => ev.touches.length === 0)))
-        ))
-      ).subscribe(({ elementId, deltaX, deltaY }) => {
-        if(deltaX === null || deltaY === null){
-          console.warn('deltax/y is null')
-          return
-        }
-        if(elementId === 0 || elementId === 1 || elementId === 2){
-          const {position} = this.nehubaViewer.ngviewer.navigationState 
-          const pos = position.spatialCoordinates
-          window['export_nehuba'].vec3.set(pos, deltaX, deltaY, 0)
-          window['export_nehuba'].vec3.transformMat4(pos, pos, this.viewportToDatas[elementId])
-          position.changed.dispatch()
-        }else if(elementId === 3){
-          const {perspectiveNavigationState} = this.nehubaViewer.ngviewer
-          perspectiveNavigationState.pose.rotateRelative(this.vec3([0, 1, 0]), -deltaX / 4.0 * Math.PI / 180.0)
-          perspectiveNavigationState.pose.rotateRelative(this.vec3([1, 0, 0]), deltaY / 4.0 * Math.PI / 180.0)
-          this.nehubaViewer.ngviewer.perspectiveNavigationState.changed.dispatch()
+  ngOnInit(){
+    this.subscriptions.push(
+      this.loadMeshes$.pipe(
+        scan(scanFn, [])
+      ).subscribe(layersLabelIndex => {
+        let totalMeshes = 0
+        for (const layerLayerIndex of layersLabelIndex){
+          const { layer, labelIndicies } = layerLayerIndex
+          totalMeshes += labelIndicies.length
+          this.nehubaViewer.setMeshesToLoad(labelIndicies, layer)
         }
+        // TODO implement total mesh to be loaded and mesh loading UI
+        // this.numMeshesToBeLoaded = totalMeshes
       })
     )
-
-    this.ondestroySubscriptions.push(
-      this.touchStart$.pipe(
-        switchMap(() => 
-          fromEvent(this.elementRef.nativeElement, 'touchmove').pipe(
-            takeWhile((ev:TouchEvent) => ev.touches.length === 2),
-            map((ev:TouchEvent) => computeDistance(
-                [ev.touches[0].screenX, ev.touches[0].screenY],
-                [ev.touches[1].screenX, ev.touches[1].screenY]
-              )),
-            scan((acc, curr:number) => acc.length < 2
-              ? acc.concat(curr)
-              : acc.slice(1).concat(curr), []),
-            filter(dist => dist.length > 1),
-            map(dist => dist[0] / dist[1])
-          ))
-      ).subscribe(factor => 
-        this.nehubaViewer.ngviewer.navigationState.zoomBy(factor))
-    )
   }
 
   ngOnDestroy(){
+    while(this.subscriptions.length > 0) {
+      this.subscriptions.pop().unsubscribe()
+    }
+
     this._s$.forEach(_s$=>{
       if(_s$) _s$.unsubscribe()
     })
@@ -681,6 +606,10 @@ export class NehubaViewerUnit implements OnDestroy{
      * TODO
      * ugh, ugly code. cleanify
      */
+    /**
+     * TODO 
+     * sometimes, ngId still happends to be undefined
+     */
     newMap.forEach((segs, ngId) => {
       this.nehubaViewer.hideSegment(0, {
         name: ngId
@@ -784,21 +713,13 @@ export class NehubaViewerUnit implements OnDestroy{
     this._s8$ = this.nehubaViewer.mouseOver.segment.subscribe(({segment: segmentId, layer, ...rest})=>{
       
       const {name = 'unnamed'} = layer
-      if( segmentId && segmentId < 65500 ) {
-        const map = this.multiNgIdsLabelIndexMap.get(name)
-        const region = map && map.get(segmentId)
-        this.mouseoverSegmentEmitter.emit({
-          layer,
-          segment: region,
-          segmentId
-        })
-      }else{
-        this.mouseoverSegmentEmitter.emit({
-          layer,
-          segment: null,
-          segmentId
-        })
-      }
+      const map = this.multiNgIdsLabelIndexMap.get(name)
+      const region = map && map.get(segmentId)
+      this.mouseoverSegmentEmitter.emit({
+        layer,
+        segment: region,
+        segmentId
+      })
     })
 
     // nehubaViewer.navigationState.all emits every time a new layer is added or removed from the viewer
@@ -852,6 +773,12 @@ export class NehubaViewerUnit implements OnDestroy{
         .subscribe(obj => this.mouseoverLandmarkEmitter.emit(obj.value))
     )
 
+    this.ondestroySubscriptions.push(
+      this.nehubaViewer.mouseOver.layer
+        .filter(obj => obj.layer.name === this.constantService.ngUserLandmarkLayerName)
+        .subscribe(obj => this.mouseoverUserlandmarkEmitter.emit(obj.value))
+    )
+
     this._s4$ = this.nehubaViewer.navigationState.position.inRealSpace
       .filter(v=>typeof v !== 'undefined' && v !== null)
       .subscribe(v=>this.navPosReal=v)
@@ -891,28 +818,12 @@ export class NehubaViewerUnit implements OnDestroy{
       this._baseUrls.push(baseUrl)
       this._baseUrlToParcellationIdMap.set(baseUrl, id)
 
-      /* load meshes */
-      /* TODO could be a bug where user loads new parcellation, but before the worker could completely populate the list */
-      const set = this.workerService.safeMeshSet.get(baseUrl)
-      if(set){
-        this.nehubaViewer.setMeshesToLoad([...set],{
-          name : id
-        })
-      }else{
-        if(newlayer){
-          this.zone.runOutsideAngular(() => 
-            this.workerService.worker.postMessage({
-              type : 'CHECK_MESHES',
-              parcellationId : id,
-              baseUrl,
-              indices : [
-                ...Array.from(this.multiNgIdsLabelIndexMap.get(id).keys()),
-                ...getAuxilliaryLabelIndices()
-              ]
-            })
-          )
-        }
-      }
+      const indicies = [
+        ...Array.from(this.multiNgIdsLabelIndexMap.get(id).keys()),
+        ...this.auxilaryMeshIndices
+      ]
+
+      this.loadMeshes(indicies, { name: id })
     })
 
     const obj = Array.from(this.multiNgIdsLabelIndexMap.keys()).map(ngId => {
@@ -921,24 +832,19 @@ export class NehubaViewerUnit implements OnDestroy{
         new Map(Array.from(
           [
             ...this.multiNgIdsLabelIndexMap.get(ngId).entries(),
-            ...getAuxilliaryLabelIndices().map(i => {
-              return [i, {}]
+            ...this.auxilaryMeshIndices.map(val => {
+              return [val, {}]
             })
           ]
         ).map((val:[number,any])=>([val[0],this.getRgb(val[0],val[1].rgb)])) as any)
       ]
     }) as [string, Map<number, {red:number, green: number, blue: number}>][]
 
-    this.multiNgIdColorMap = new Map(obj)
+    const multiNgIdColorMap = new Map(obj)
 
     /* load colour maps */
-
-    Array.from(this.multiNgIdColorMap.entries()).forEach(([ngId, map]) => {
-
-      this.nehubaViewer.batchAddAndUpdateSegmentColors(
-        map,
-        { name : ngId })
-    })
+    
+    this.setColorMap(multiNgIdColorMap)
 
     this._s$.forEach(_s$=>{
       if(_s$) _s$.unsubscribe()
@@ -962,6 +868,17 @@ export class NehubaViewerUnit implements OnDestroy{
     }
   }
 
+  public setColorMap(map: Map<string, Map<number,{red:number, green:number, blue:number}>>){
+    this.multiNgIdColorMap = map
+    
+    Array.from(map.entries()).forEach(([ngId, map]) => {
+
+      this.nehubaViewer.batchAddAndUpdateSegmentColors(
+        map,
+        { name : ngId })
+    })
+  }
+
   private getRgb(labelIndex:number,rgb?:number[]):{red:number,green:number,blue:number}{
     if(typeof rgb === 'undefined' || rgb === null){
       const arr = intToColour(Number(labelIndex))
@@ -1027,11 +944,6 @@ export interface ViewerState{
   zoom : number
 }
 
-export function getAuxilliaryLabelIndices(){
-  return [65535]
-  // return Array.from(Array(36)).map((_,i)=>65500+i)
-}
-
 export const ICOSAHEDRON = `# vtk DataFile Version 2.0
 Converted using https://github.com/HumanBrainProject/neuroglancer-scripts
 ASCII
diff --git a/src/ui/nehubaContainer/pipes/mobileControlNubStyle.pipe.ts b/src/ui/nehubaContainer/pipes/mobileControlNubStyle.pipe.ts
new file mode 100644
index 0000000000000000000000000000000000000000..4566c470506588e39edc79f005843a24be80c748
--- /dev/null
+++ b/src/ui/nehubaContainer/pipes/mobileControlNubStyle.pipe.ts
@@ -0,0 +1,30 @@
+import { PipeTransform, Pipe } from "@angular/core";
+import { FOUR_PANEL, H_ONE_THREE, V_ONE_THREE, SINGLE_PANEL } from "src/services/state/ngViewerState.store";
+
+@Pipe({
+  name: 'mobileControlNubStylePipe'
+})
+
+export class MobileControlNubStylePipe implements PipeTransform{
+  public transform(panelMode: string): any{
+    switch (panelMode) {
+      case SINGLE_PANEL:
+        return {
+          top: '80%',
+          left: '95%'
+        }
+      case V_ONE_THREE:
+      case H_ONE_THREE:
+        return {
+          top: '66.66%',
+          left: '66.66%'
+        }
+      case FOUR_PANEL: 
+      default:
+        return {
+          top: '50%',
+          left: '50%'
+        }
+    }
+  }
+}
\ No newline at end of file
diff --git a/src/ui/nehubaContainer/reorderPanelIndex.pipe.ts b/src/ui/nehubaContainer/reorderPanelIndex.pipe.ts
new file mode 100644
index 0000000000000000000000000000000000000000..3077fb30211614615da0e98120c22576aa07b209
--- /dev/null
+++ b/src/ui/nehubaContainer/reorderPanelIndex.pipe.ts
@@ -0,0 +1,14 @@
+import { Pipe, PipeTransform } from "@angular/core";
+
+
+@Pipe({
+  name: 'reorderPanelIndexPipe'
+})
+
+export class ReorderPanelIndexPipe implements PipeTransform{
+  public transform(panelOrder: string, uncorrectedIndex: number){
+    return uncorrectedIndex === null
+      ? null
+      : panelOrder.indexOf(uncorrectedIndex.toString())
+  }
+}
\ No newline at end of file
diff --git a/src/ui/nehubaContainer/splashScreen/splashScreen.component.ts b/src/ui/nehubaContainer/splashScreen/splashScreen.component.ts
index f1178af037d26f65036bc8c02d54d6218f00a567..9f7e287a841bae5eeb7822d2ab632b38008d114f 100644
--- a/src/ui/nehubaContainer/splashScreen/splashScreen.component.ts
+++ b/src/ui/nehubaContainer/splashScreen/splashScreen.component.ts
@@ -1,10 +1,11 @@
-import { Component } from "@angular/core";
-import { Observable } from "rxjs";
+import { Component, Pipe, PipeTransform, ElementRef, ViewChild, AfterViewInit } from "@angular/core";
+import { Observable, fromEvent, Subscription, Subject } from "rxjs";
 import { Store, select } from "@ngrx/store";
-import { filter,map } from 'rxjs/operators'
+import { switchMap, bufferTime, take, filter, withLatestFrom, map, tap } from 'rxjs/operators'
 import { ViewerStateInterface, NEWVIEWER } from "../../../services/stateStore.service";
 import { AtlasViewerConstantsServices } from "../../../atlasViewer/atlasViewer.constantService.service";
 
+
 @Component({
   selector : 'ui-splashscreen',
   templateUrl : './splashScreen.template.html',
@@ -13,16 +14,52 @@ import { AtlasViewerConstantsServices } from "../../../atlasViewer/atlasViewer.c
   ]
 })
 
-export class SplashScreen{
-  loadedTemplate$ : Observable<any[]>
+export class SplashScreen implements AfterViewInit{
+
+  public loadedTemplate$ : Observable<any[]>
+  @ViewChild('parentContainer', {read:ElementRef}) 
+  private parentContainer: ElementRef
+  private activatedTemplate$: Subject<any> = new Subject()
+
+  private subscriptions: Subscription[] = []
+
   constructor(
     private store:Store<ViewerStateInterface>,
-    private constanceService: AtlasViewerConstantsServices  
+    private constanceService: AtlasViewerConstantsServices,
+    private constantsService: AtlasViewerConstantsServices,
   ){
     this.loadedTemplate$ = this.store.pipe(
       select('viewerState'),
-      filter((state:ViewerStateInterface)=> typeof state !== 'undefined' && typeof state.fetchedTemplates !== 'undefined' && state.fetchedTemplates !== null),
-      map(state=>state.fetchedTemplates))
+      select('fetchedTemplates')
+    )
+  }
+
+  ngAfterViewInit(){
+
+    /**
+     * instead of blindly listening to click event, this event stream waits to see if user mouseup within 200ms
+     * if yes, it is interpreted as a click
+     * if no, user may want to select a text
+     */
+    this.subscriptions.push(
+      fromEvent(this.parentContainer.nativeElement, 'mousedown').pipe(
+        switchMap(() => fromEvent(this.parentContainer.nativeElement, 'mouseup').pipe(
+          bufferTime(200),
+          take(1)
+        )),
+        filter(arr => arr.length > 0),
+        withLatestFrom(this.activatedTemplate$),
+        map(([_, template]) => template)
+      ).subscribe(template => this.selectTemplate(template))
+    )
+  }
+
+  selectTemplateParcellation(template, parcellation){
+    this.store.dispatch({
+      type : NEWVIEWER,
+      selectTemplate : template,
+      selectParcellation : parcellation
+    })
   }
 
   selectTemplate(template:any){
@@ -36,4 +73,28 @@ export class SplashScreen{
   get totalTemplates(){
     return this.constanceService.templateUrls.length
   }
-}
\ No newline at end of file
+}
+
+@Pipe({
+  name: 'getTemplateImageSrcPipe'
+})
+
+export class GetTemplateImageSrcPipe implements PipeTransform{
+  public transform(name:string):string{
+    return `./res/image/${name.replace(/[|&;$%@()+,\s./]/g, '')}.png`
+  }
+}
+
+@Pipe({
+  name: 'imgSrcSetPipe'
+})
+
+export class ImgSrcSetPipe implements PipeTransform{
+  public transform(src:string):string{
+    const regex = /^(.*?)(\.\w*?)$/.exec(src)
+    if (!regex) throw new Error(`cannot find filename, ext ${src}`)
+    const filename = regex[1]
+    const ext = regex[2]
+    return [100, 200, 300, 400].map(val => `${filename}-${val}${ext} ${val}w`).join(',')
+  }
+} 
\ No newline at end of file
diff --git a/src/ui/nehubaContainer/splashScreen/splashScreen.style.css b/src/ui/nehubaContainer/splashScreen/splashScreen.style.css
index d08929f3d9aaa5df9529eaf14714e71c60d7ca2a..49774d56632717713c75fc404f681049c0e06e5c 100644
--- a/src/ui/nehubaContainer/splashScreen/splashScreen.style.css
+++ b/src/ui/nehubaContainer/splashScreen/splashScreen.style.css
@@ -1,36 +1,11 @@
-div[splashScreenContainer]
+:host
 {
-  height:100%;
+  display: block;
+  overflow: auto;
+  height: 100%;
 }
 
-div[templateCardContainer]
+.font-stretch
 {
-  height:100%;
-  display:flex;
-  flex-direction: row;
-  flex-wrap:nowrap;
-  align-items: center;
-
-  overflow-x:auto;
-}
-
-div[templateCard]
-{
-
-  position:relative;
-  flex: 0 1 25em;
-  min-width: 20em;
-  width: 20em;
-  max-width: 20em;
-  padding: 0em 1em;
-  margin : 0em 1em;
-  box-sizing: border-box;
-
-  background-color:rgb(242,242,242);
-  box-shadow: 0 4px 6px 0 rgba(0,0,0,0.12);
-}
-
-div[templateCard]:hover
-{
-  background-color:rgba(242,242,242,0.8);
+  font-stretch: extra-condensed;
 }
\ No newline at end of file
diff --git a/src/ui/nehubaContainer/splashScreen/splashScreen.template.html b/src/ui/nehubaContainer/splashScreen/splashScreen.template.html
index 5ccf9fcc70d27efb6d52b2f8da7dc415691fa8b2..a63adbeb71157ff8282a9abda4d5e30e58d79924 100644
--- a/src/ui/nehubaContainer/splashScreen/splashScreen.template.html
+++ b/src/ui/nehubaContainer/splashScreen/splashScreen.template.html
@@ -1,28 +1,43 @@
-<div class = "container-fluid" splashScreenContainer>
-  <div 
-    class = "row" 
-    templateCardContainer>
-    
-    <div
-      *ngFor = "let template of loadedTemplate$ | async | filterNull" 
-      (click) = "selectTemplate(template)"
-      templateCard
-      hoverable>
-      
-      <h2>{{ template.properties.name }}</h2>
-      <readmore-component>
-        <small>{{ template.properties.description }}</small>
-      </readmore-component>
-    </div>
-    <div *ngIf = "(loadedTemplate$ | async).length < totalTemplates">
-      <h1 style = "text-align:center;">
-        <small>
-          Loading Templates
-        </small>
-        <span class = "homeAnimationDots loadingAnimationDots">&bull;</span>
-        <span class = "homeAnimationDots loadingAnimationDots">&bull;</span>
-        <span class = "homeAnimationDots loadingAnimationDots">&bull;</span>
-      </h1>
-    </div>
-  </div>
+<div
+  #parentContainer
+  class="m-5 d-flex flex-row flex-wrap justify-content-center align-items-stretch pe-none">
+  <mat-card
+    (mousedown)="activatedTemplate$.next(template)"
+    matRipple
+    *ngFor="let template of loadedTemplate$ | async | filterNull"
+    class="m-3 col-md-12 col-lg-6 pe-all mw-400px">
+    <mat-card-header>
+      <mat-card-title class="text-nowrap font-stretch">
+        {{ template.properties.name }}
+      </mat-card-title>
+    </mat-card-header>
+    <img
+      [src]="template.properties.name | getTemplateImageSrcPipe"
+      [srcset]="template.properties.name | getTemplateImageSrcPipe | imgSrcSetPipe"
+      sizes="(max-width:576px) 90vw;(max-width: 768px) 50vw; 400px"
+      [alt]="'Screenshot of ' + template.properties.name"
+      mat-card-image />
+    <mat-card-content>
+      {{ template.properties.description }}
+    </mat-card-content>
+
+    <mat-card-content>
+      <mat-card-subtitle class="text-nowrap">
+        Parcellations available
+      </mat-card-subtitle>
+      <button
+        (mousedown)="$event.stopPropagation()"
+        (click)="$event.stopPropagation(); selectTemplateParcellation(template, parcellation)"
+        *ngFor="let parcellation of template.parcellations"
+        mat-button
+        color="primary">
+        {{ parcellation.name }}
+      </button>
+    </mat-card-content>
+
+    <!-- required... or on ripple, angular adds 16px margin to the bottom -->
+    <!-- see https://github.com/angular/components/issues/10898 -->
+    <mat-card-footer>
+    </mat-card-footer>
+  </mat-card>
 </div>
\ No newline at end of file
diff --git a/src/ui/nehubaContainer/statusCard/statusCard.template.html b/src/ui/nehubaContainer/statusCard/statusCard.template.html
index c5e3f8541750cf7cd9dad508ef3843faf9155120..9ccb604a3909ac6c06e0a73a12b79f1fa9106277 100644
--- a/src/ui/nehubaContainer/statusCard/statusCard.template.html
+++ b/src/ui/nehubaContainer/statusCard/statusCard.template.html
@@ -1,57 +1,56 @@
 <div statusCard>
+  <div linksContainer>
+    <span>
+      reset: 
+    </span>
+    <a
+      href="#"
+      (click)="$event.preventDefault();resetNavigation({position:true})">
+      position
+    </a>
 
-    <div linksContainer>
-      <span>
-        reset: 
-      </span>
-      <a
-        href="#"
-        (click)="$event.preventDefault();resetNavigation({position:true})">
-        position
-      </a>
+    <a
+      href="#"
+      (click)="$event.preventDefault();resetNavigation({rotation:true})">
+      rotation
+    </a>
 
-      <a
-        href="#"
-        (click)="$event.preventDefault();resetNavigation({rotation:true})">
-        rotation
-      </a>
+    <a
+      href="#"
+      (click)="$event.preventDefault();resetNavigation({zoom:true})">
+      zoom
+    </a>
 
-      <a
-        href="#"
-        (click)="$event.preventDefault();resetNavigation({zoom:true})">
-        zoom
-      </a>
+    <br />
+    <span>
+      space:
+    </span>
+    
+    <a href="#" (click)="$event.preventDefault();statusPanelRealSpace=!statusPanelRealSpace">
+      {{statusPanelRealSpace ? 'physical' : 'voxel'}}
+    </a>
 
-      <br />
-      <span>
-        space:
-      </span>
-      
-      <a href="#" (click)="$event.preventDefault();statusPanelRealSpace=!statusPanelRealSpace">
-        {{statusPanelRealSpace ? 'physical' : 'voxel'}}
-      </a>
-  
-    </div>
+  </div>
+
+  <br />
+  <div textContainer>
+    <small>Navigation: </small>
+      <input 
+        (keydown.enter)="textNavigateTo(navigateInput.value)"
+        (keydown.tab)="textNavigateTo(navigateInput.value)"
+        [ngModel]="navigationValue()" 
+        spellcheck="false"
+        #navigateInput
+        navigateInput/>
   
     <br />
-    <div textContainer>
-      <small>Navigation: </small>
-        <input 
-          (keydown.enter)="textNavigateTo(navigateInput.value)"
-          (keydown.tab)="textNavigateTo(navigateInput.value)"
-          [ngModel]="navigationValue()" 
-          spellcheck="false"
-          #navigateInput
-          navigateInput/>
-    
-      <br />
-      <small *ngIf="!isMobile">Mouse: </small>
-      <small *ngIf="!isMobile">
-        {{ mouseCoord }}
-      </small> 
-      <br *ngIf="!isMobile" />
-      <small onHoverSegment>
-        {{ onHoverSegmentName }}
-      </small>
-    </div>
-  </div>
\ No newline at end of file
+    <small *ngIf="!isMobile">Mouse: </small>
+    <small *ngIf="!isMobile">
+      {{ mouseCoord }}
+    </small> 
+    <br *ngIf="!isMobile" />
+    <small onHoverSegment>
+      {{ onHoverSegmentName }}
+    </small>
+  </div>
+</div>
diff --git a/src/ui/nehubaContainer/touchSideClass.directive.ts b/src/ui/nehubaContainer/touchSideClass.directive.ts
new file mode 100644
index 0000000000000000000000000000000000000000..8d19fd677f226ba580c442633380feba694e91fb
--- /dev/null
+++ b/src/ui/nehubaContainer/touchSideClass.directive.ts
@@ -0,0 +1,49 @@
+import { Directive, Input, ElementRef, OnDestroy, OnInit } from "@angular/core";
+import { Store, select } from "@ngrx/store";
+import { Observable, Subscription } from "rxjs";
+import { distinctUntilChanged, tap } from "rxjs/operators";
+import { removeTouchSideClasses, addTouchSideClasses } from "./util";
+
+@Directive({
+  selector: '[touch-side-class]',
+  exportAs: 'touchSideClass'
+})
+
+export class TouchSideClass implements OnDestroy, OnInit{
+  @Input('touch-side-class')
+  public panelNativeIndex: number
+
+  public panelMode: string
+  private panelMode$: Observable<string>
+
+  private subscriptions: Subscription[] = []
+
+  constructor(
+    private store$: Store<any>,
+    private el: ElementRef
+  ){
+
+    this.panelMode$ = this.store$.pipe(
+      select('ngViewerState'),
+      select('panelMode'),
+      distinctUntilChanged(),
+      tap(mode => this.panelMode = mode)
+    )
+  }
+
+  ngOnInit(){
+    this.subscriptions.push(
+
+      this.panelMode$.subscribe(panelMode => {
+        removeTouchSideClasses(this.el.nativeElement)
+        addTouchSideClasses(this.el.nativeElement, this.panelNativeIndex, panelMode)
+      })
+    )
+  }
+
+  ngOnDestroy(){
+    while(this.subscriptions.length > 0) {
+      this.subscriptions.pop().unsubscribe()
+    }
+  }
+}
\ No newline at end of file
diff --git a/src/ui/nehubaContainer/util.ts b/src/ui/nehubaContainer/util.ts
new file mode 100644
index 0000000000000000000000000000000000000000..d3d1f78e8b7e1761a51f611b3a77b635e19343f9
--- /dev/null
+++ b/src/ui/nehubaContainer/util.ts
@@ -0,0 +1,161 @@
+import { FOUR_PANEL, SINGLE_PANEL, H_ONE_THREE, V_ONE_THREE } from "src/services/state/ngViewerState.store";
+
+const flexContCmnCls = ['w-100', 'h-100', 'd-flex', 'justify-content-center', 'align-items-stretch']
+
+const makeRow = (...els:HTMLElement[]) => {
+  const container = document.createElement('div')
+  container.classList.add(...flexContCmnCls, 'flex-row')
+  for (const el of els){
+    container.appendChild(el)
+  }
+  return container
+}
+
+const makeCol = (...els:HTMLElement[]) => {
+  const container = document.createElement('div')
+  container.classList.add(...flexContCmnCls, 'flex-column')
+  for (const el of els){
+    container.appendChild(el)
+  }
+  return container
+}
+
+const washPanels = (panels: [HTMLElement, HTMLElement, HTMLElement, HTMLElement]) => {
+  for (const panel of panels) {
+    if (panel) panel.className = `position-relative`
+  }
+  return panels
+}
+
+const top = true
+const left = true
+const right = true
+const bottom = true
+
+const mapModeIdxClass = new Map()
+
+mapModeIdxClass.set(FOUR_PANEL, new Map([
+  [0, { top, left }],
+  [1, { top, right }],
+  [2, { bottom, left }],
+  [3, { right, bottom }]
+]))
+
+mapModeIdxClass.set(SINGLE_PANEL, new Map([
+  [0, { top, left, right, bottom }],
+  [1, {}],
+  [2, {}],
+  [3, {}]
+]))
+
+mapModeIdxClass.set(H_ONE_THREE, new Map([
+  [0, { top, left, bottom }],
+  [1, { top, right }],
+  [2, { right }],
+  [3, { bottom, right }]
+]))
+
+mapModeIdxClass.set(V_ONE_THREE, new Map([
+  [0, { top, left, right }],
+  [1, { bottom, left }],
+  [2, { bottom }],
+  [3, { bottom, right }]
+]))
+
+export const removeTouchSideClasses = (panel: HTMLElement) => {
+  panel.classList.remove(
+    `touch-top`,
+    `touch-left`,
+    `touch-right`,
+    `touch-bottom`)
+  return panel
+}
+
+/**
+ * gives a clue of the approximate location of the panel, allowing position of checkboxes/scale bar to be placed in unobtrustive places
+ */
+export const panelTouchSide = (panel: HTMLElement, { top, left, right, bottom }: any) => {
+  if (top) panel.classList.add(`touch-top`)
+  if (left) panel.classList.add(`touch-left`)
+  if (right) panel.classList.add(`touch-right`)
+  if (bottom) panel.classList.add(`touch-bottom`)
+  return panel
+}
+
+export const addTouchSideClasses = (panel: HTMLElement, actualOrderIndex: number, panelMode: string) => {
+  
+  if (actualOrderIndex < 0) return panel
+
+  const mapIdxClass = mapModeIdxClass.get(panelMode)
+  if (!mapIdxClass) return panel
+
+  const classArg = mapIdxClass.get(actualOrderIndex)
+  if (!classArg) return panel
+
+  return panelTouchSide(panel, classArg)
+}
+
+export const getHorizontalOneThree = (panels:[HTMLElement, HTMLElement, HTMLElement, HTMLElement]) => {
+  washPanels(panels)
+
+  panels.forEach((panel, idx) => addTouchSideClasses(panel, idx, H_ONE_THREE))
+  
+  const majorContainer = makeCol(panels[0])
+  const minorContainer = makeCol(panels[1], panels[2], panels[3])
+
+  majorContainer.style.flexBasis = '67%'
+  minorContainer.style.flexBasis = '33%'
+  
+  return makeRow(majorContainer, minorContainer)
+}
+
+export const getVerticalOneThree = (panels:[HTMLElement, HTMLElement, HTMLElement, HTMLElement]) => {
+  washPanels(panels)
+  
+  panels.forEach((panel, idx) => addTouchSideClasses(panel, idx, V_ONE_THREE))
+
+  const majorContainer = makeRow(panels[0])
+  const minorContainer = makeRow(panels[1], panels[2], panels[3])
+
+  majorContainer.style.flexBasis = '67%'
+  minorContainer.style.flexBasis = '33%'
+  
+  return makeCol(majorContainer, minorContainer)
+}
+
+
+export const getFourPanel = (panels:[HTMLElement, HTMLElement, HTMLElement, HTMLElement]) => {
+  washPanels(panels)
+  
+  panels.forEach((panel, idx) => addTouchSideClasses(panel, idx, FOUR_PANEL))
+
+  const majorContainer = makeRow(panels[0], panels[1])
+  const minorContainer = makeRow(panels[2], panels[3])
+
+  majorContainer.style.flexBasis = '50%'
+  minorContainer.style.flexBasis = '50%'
+  
+  return makeCol(majorContainer, minorContainer)
+}
+
+export const getSinglePanel = (panels:[HTMLElement, HTMLElement, HTMLElement, HTMLElement]) => {
+  washPanels(panels)
+  
+  panels.forEach((panel, idx) => addTouchSideClasses(panel, idx, SINGLE_PANEL))
+
+  const majorContainer = makeRow(panels[0])
+  const minorContainer = makeRow(panels[1], panels[2], panels[3])
+
+  majorContainer.style.flexBasis = '100%'
+  minorContainer.style.flexBasis = '0%'
+
+  minorContainer.className = ''
+  minorContainer.style.height = '0px'
+  return makeRow(majorContainer, minorContainer)
+}
+
+export const isIdentityQuat = ori => Math.abs(ori[0]) < 1e-6
+  && Math.abs(ori[1]) < 1e-6
+  && Math.abs(ori[2]) < 1e-6
+  && Math.abs(ori[3] - 1) < 1e-6
+  
\ No newline at end of file
diff --git a/src/ui/pluginBanner/pluginBanner.component.ts b/src/ui/pluginBanner/pluginBanner.component.ts
index 0b4fe404a110a3d82cfdade361e894e0a2aeb92e..299f345f00f196f170ad8b1bf985be20ee5da206 100644
--- a/src/ui/pluginBanner/pluginBanner.component.ts
+++ b/src/ui/pluginBanner/pluginBanner.component.ts
@@ -6,8 +6,7 @@ import { PluginServices, PluginManifest } from "src/atlasViewer/atlasViewer.plug
   selector : 'plugin-banner',
   templateUrl : './pluginBanner.template.html',
   styleUrls : [
-    `./pluginBanner.style.css`,
-    '../../css/darkBtns.css'
+    `./pluginBanner.style.css`
   ]
 })
 
@@ -17,15 +16,6 @@ export class PluginBannerUI{
   }
 
   clickPlugin(plugin:PluginManifest){
-    if(this.pluginEnabledFlag)
-      this.pluginServices.launchPlugin(plugin)
-    else
-      return
-  }
-
-  get pluginEnabledFlag(){
-    return true || PLUGINDEV || BUNDLEDPLUGINS.length > 0
-      ? true
-      : false
+    this.pluginServices.launchPlugin(plugin)
   }
 }
\ No newline at end of file
diff --git a/src/ui/pluginBanner/pluginBanner.style.css b/src/ui/pluginBanner/pluginBanner.style.css
index 2bb0a1504f1dc55fb60862cb95908e844d4c7993..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644
--- a/src/ui/pluginBanner/pluginBanner.style.css
+++ b/src/ui/pluginBanner/pluginBanner.style.css
@@ -1,33 +0,0 @@
-:host
-{
-  display:block;
-  margin:0.5em 1em;
-}
-
-.btn
-{
-  border-radius: 0px;
-  border:none;
-}
-
-.btn
-{
-  opacity : 0.9;
-  transition: opacity 0.3s ease, transform 0.3s ease;
-  box-shadow : rgba(5, 5, 5, 0.1) 0px 4px 6px 0px;
-}
-
-.btn-default
-{
-  background-color:rgba(255,255,255,0.8);
-}
-
-.btn:hover
-{
-  cursor: default;
-}
-
-.btn.btn-disabled.btn.btn-disabled.btn.btn-disabled.btn.btn-disabled
-{
-  opacity:0.5;
-}
\ No newline at end of file
diff --git a/src/ui/pluginBanner/pluginBanner.template.html b/src/ui/pluginBanner/pluginBanner.template.html
index d88e991af9c9dfbe02335b789c60c398ba98d392..d349c6f7cc8d4b3b46ac7a8d6517fa119faebc19 100644
--- a/src/ui/pluginBanner/pluginBanner.template.html
+++ b/src/ui/pluginBanner/pluginBanner.template.html
@@ -1,9 +1,8 @@
-<div 
-  placement = "bottom"
-  [tooltip] = "pluginEnabledFlag ? null : 'coming soon'"
-  *ngFor = "let plugin of pluginServices.fetchedPluginManifests"
-  (click) = "clickPlugin(plugin)"
-  [ngClass] = "{'btn-disabled' : !pluginEnabledFlag}"
-  class = "btn btn-default">
-  {{ plugin.displayName ? plugin.displayName : plugin.name }}
-</div>
\ No newline at end of file
+<mat-action-list>
+  <button mat-list-item
+    *ngFor="let plugin of pluginServices.fetchedPluginManifests"
+    (click)="clickPlugin(plugin)">
+
+    {{ plugin.displayName ? plugin.displayName : plugin.name }}
+  </button>
+</mat-action-list>
diff --git a/src/ui/regionHierachy/regionHierarchy.style.css b/src/ui/regionHierachy/regionHierarchy.style.css
deleted file mode 100644
index a4aa507f4db1a32886dc1309934dc8481d49a425..0000000000000000000000000000000000000000
--- a/src/ui/regionHierachy/regionHierarchy.style.css
+++ /dev/null
@@ -1,65 +0,0 @@
-
-div[treeContainer]
-{
-  padding:1em;
-  z-index: 3;
-
-  height:20em;
-  width: calc(100% + 4em);
-  overflow-y:auto;
-  overflow-x:hidden;
-
-  /* color:white;
-  background-color:rgba(12,12,12,0.8); */
-}
-
-:host-context([darktheme="false"]) div[treeContainer]
-{
-  background-color:rgba(240,240,240,0.8);
-}
-
-:host-context([darktheme="true"]) div[treeContainer]
-{
-  background-color:rgba(30,30,30,0.8);
-  color:rgba(255,255,255,1.0);
-}
-
-div[hideScrollbarcontainer]
-{
-  width: 20em;
-  overflow:hidden;
-  margin-top:2px;
-}
-
-input[type="text"]
-{
-  border:none;
-}
-
-:host-context([darktheme="false"]) input[type="text"]
-{
-  background-color:rgba(245,245,245,0.85);
-  box-shadow: inset 0 4px 6px 0 rgba(5,5,5,0.1);
-}
-
-:host-context([darktheme="true"]) input[type="text"]
-{
-  background-color:rgba(30,30,30,0.85);
-  box-shadow: inset 0 4px 6px 0 rgba(0,0,0,0.2);
-  color:rgba(255,255,255,0.8);
-}
-
-.regionSearch
-{
-  width:20em;
-}
-
-.tree-header
-{
-  flex: 0 0 auto;
-}
-
-.tree-body
-{
-  flex: 1 1 auto;
-}
\ No newline at end of file
diff --git a/src/ui/regionHierachy/regionHierarchy.template.html b/src/ui/regionHierachy/regionHierarchy.template.html
deleted file mode 100644
index 36ab15e5278d6327517df36f71e137fc96c18f33..0000000000000000000000000000000000000000
--- a/src/ui/regionHierachy/regionHierarchy.template.html
+++ /dev/null
@@ -1,47 +0,0 @@
-<div class="input-group regionSearch">
-  <input 
-    #searchTermInput
-    tabindex="0"
-    (keydown.esc)="escape($event)"
-    (focus)="showRegionTree = true && !isMobile"
-    [value]="searchTerm"
-    class="form-control form-control-sm"
-    type="text" 
-    autocomplete="off"
-    [placeholder]="getInputPlaceholder(selectedParcellation)"/>
-
-</div>
-  
-<div
-  *ngIf="showRegionTree" 
-  hideScrollbarContainer>
-
-  <div
-    class="d-flex flex-column"
-    treeContainer
-    #treeContainer>
-    <div class="tree-header d-inline-flex align-items-center">
-      <div>
-        {{ selectedRegions.length }} {{ selectedRegions.length > 1 ? 'regions' : 'region' }} selected
-      </div>
-      <div
-        (click)="clearRegions($event)"
-        [ngClass]="{ 'invisible': selectedRegions.length === 0 }"
-        class="btn btn-link">
-        clear all
-      </div>
-    </div>
-    
-    <div
-      *ngIf="selectedParcellation && selectedParcellation.regions as regions"
-      class="tree-body">
-      <flat-tree-component
-        (treeNodeClick)="handleClickRegion($event)"
-        [inputItem]="aggregatedRegionTree"
-        [renderNode]="displayTreeNode"
-        [searchFilter]="filterTreeBySearch">
-        
-      </flat-tree-component>
-    </div> 
-  </div>
-</div>
\ No newline at end of file
diff --git a/src/ui/searchSideNav/searchSideNav.component.ts b/src/ui/searchSideNav/searchSideNav.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..4d12f4cc8665955fadc4e23026cd14048ffc8a62
--- /dev/null
+++ b/src/ui/searchSideNav/searchSideNav.component.ts
@@ -0,0 +1,104 @@
+import { Component, Output, EventEmitter, OnInit, OnDestroy, ViewChild, TemplateRef } from "@angular/core";
+import { MatDialogRef, MatDialog, MatSnackBar } from "@angular/material";
+import { NgLayerInterface } from "src/atlasViewer/atlasViewer.component";
+import { LayerBrowser } from "../layerbrowser/layerbrowser.component";
+import { Observable, Subscription } from "rxjs";
+import { Store, select } from "@ngrx/store";
+import { map, startWith, scan, filter, mapTo } from "rxjs/operators";
+import { VIEWERSTATE_CONTROLLER_ACTION_TYPES } from "../viewerStateController/viewerState.base";
+import { trackRegionBy } from '../viewerStateController/regionHierachy/regionHierarchy.component'
+import { AtlasViewerConstantsServices } from "src/atlasViewer/atlasViewer.constantService.service";
+
+@Component({
+  selector: 'search-side-nav',
+  templateUrl: './searchSideNav.template.html',
+  styleUrls:[
+    './searchSideNav.style.css'
+  ]
+})
+
+export class SearchSideNav implements OnInit, OnDestroy {
+  public showDataset: boolean = false
+  public availableDatasets: number = 0
+
+  private subscriptions: Subscription[] = []
+  private layerBrowserDialogRef: MatDialogRef<any>
+
+  @Output() dismiss: EventEmitter<any> = new EventEmitter()
+  @Output() open: EventEmitter<any> = new EventEmitter()
+
+  @ViewChild('layerBrowserTmpl', {read: TemplateRef}) layerBrowserTmpl: TemplateRef<any>
+
+  public autoOpenSideNav$: Observable<any>
+
+  constructor(
+    public dialog: MatDialog,
+    private store$: Store<any>,
+    private snackBar: MatSnackBar,
+    private constantService: AtlasViewerConstantsServices
+  ){
+    this.autoOpenSideNav$ = this.store$.pipe(
+      select('viewerState'),
+      select('regionsSelected'),
+      map(arr => arr.length),
+      startWith(0),
+      scan((acc, curr) => [curr, ...acc], []),
+      filter(([curr, prev]) => prev === 0 && curr > 0),
+      mapTo(true)
+    )
+  }
+
+  ngOnInit(){
+    this.subscriptions.push(
+      this.autoOpenSideNav$.subscribe(() => {
+        this.open.emit(true)
+        this.showDataset = true
+      })
+    )
+  }
+
+  ngOnDestroy(){
+    while(this.subscriptions.length > 0) {
+      this.subscriptions.pop().unsubscribe()
+    }
+  }
+
+  handleNonbaseLayerEvent(layers: NgLayerInterface[]){
+    if (layers.length  === 0) {
+      this.layerBrowserDialogRef && this.layerBrowserDialogRef.close()
+      this.layerBrowserDialogRef = null
+      return  
+    }
+    if (this.layerBrowserDialogRef) return
+    
+    this.dismiss.emit(true)
+    
+    const dialogToOpen = this.layerBrowserTmpl || LayerBrowser
+    this.layerBrowserDialogRef = this.dialog.open(dialogToOpen, {
+      hasBackdrop: false,
+      autoFocus: false,
+      panelClass: [
+        'layerBrowserContainer'
+      ],
+      position: {
+        top: '0'
+      },
+      disableClose: true
+    })
+
+    this.layerBrowserDialogRef.afterClosed().subscribe(val => {
+      if (val === 'user action') this.snackBar.open(this.constantService.dissmissUserLayerSnackbarMessage, 'Dismiss', {
+        duration: 5000
+      })
+    })
+  }
+
+  removeRegion(region: any){
+    this.store$.dispatch({
+      type: VIEWERSTATE_CONTROLLER_ACTION_TYPES.SINGLE_CLICK_ON_REGIONHIERARCHY,
+      payload: { region }
+    })
+  }
+
+  trackByFn = trackRegionBy
+}
\ No newline at end of file
diff --git a/src/ui/searchSideNav/searchSideNav.style.css b/src/ui/searchSideNav/searchSideNav.style.css
new file mode 100644
index 0000000000000000000000000000000000000000..373ba5c0daa9043482912ff058a7e05df980a96d
--- /dev/null
+++ b/src/ui/searchSideNav/searchSideNav.style.css
@@ -0,0 +1,19 @@
+.region-wrapper
+{
+  height: 55px;
+}
+
+/* exactly 1.5 line height */
+
+.h-117px
+{
+  min-height:117px!important;
+  flex-basis: 117px!important;
+}
+
+.mat-divider-full-width
+{
+  margin-right:-1.5rem;
+  margin-left:-1.5rem;
+  width: calc(100% + 3rem);
+}
diff --git a/src/ui/searchSideNav/searchSideNav.template.html b/src/ui/searchSideNav/searchSideNav.template.html
new file mode 100644
index 0000000000000000000000000000000000000000..1230a72321a950f562ca9a3ea778a930b0316ae7
--- /dev/null
+++ b/src/ui/searchSideNav/searchSideNav.template.html
@@ -0,0 +1,147 @@
+<div class="d-flex flex-column h-100">
+  <viewer-state-controller class="pe-all flex-grow-0 flex-shrink-0 mb-1" #viewerStateController>
+
+    <!-- content append -->
+    <ng-container card-content="append">
+      <region-text-search-autocomplete
+        [showBadge]="true"
+        class="d-block w-100">
+      </region-text-search-autocomplete>
+    </ng-container>
+
+    <!-- footer content -->
+    <div class="d-flex flex-row justify-content-center" card-footer>
+      <button mat-stroked-button
+        *ngIf="!showDataset"
+        (click)="showDataset = true"
+        class="m-1 flex-grow-1 overflow-hidden" >
+        <i class="fas fa-chevron-down"></i>
+        <ng-container *ngIf="viewerStateController.regionsSelected$ | async as regionsSelected">
+          {{ regionsSelected.length === 0 ? 'Explore the current view' : regionsSelected.length === 1 ? ('Explore ' + regionsSelected[0].name) : ('Explore selected regions (' + regionsSelected.length + ' selected)') }}
+        </ng-container>
+      </button>
+    </div>
+  </viewer-state-controller>
+
+  <ng-container *ngIf="showDataset">
+
+    <data-browser
+      class="pe-all flex-grow-5 flex-shrink-1"
+      [template]="viewerStateController.templateSelected$ | async"
+      [parcellation]="viewerStateController.parcellationSelected$ | async"
+      [regions]="viewerStateController.regionsSelected$ | async"
+      (dataentriesUpdated)="availableDatasets = $event.length">
+
+      <ng-container card-content='prepend'>
+        <ng-container *ngTemplateOutlet="selectedRegionsTmpl">
+
+        </ng-container>
+
+        <mat-divider class="position-relative mt-2 mb-2 mat-divider-full-width"></mat-divider>
+      </ng-container>
+  
+      <!-- footer content -->
+      <div class="d-flex flex-row justify-content-center" card-footer>
+        <button mat-stroked-button
+          class="m-1"
+          (click)="showDataset = false" >
+          <i class="fas fa-chevron-up"></i>
+        </button>
+      </div>
+    </data-browser>
+  </ng-container>
+
+</div>
+
+<div [hidden]>
+  <layer-browser
+    (nonBaseLayersChanged)="handleNonbaseLayerEvent($event)"
+    #layerBrowser>
+  </layer-browser>
+</div>
+
+<ng-template #layerBrowserTmpl>
+  <mat-dialog-content>
+    <layer-browser></layer-browser>
+  </mat-dialog-content>
+</ng-template>
+
+<!-- selected regions container -->
+<ng-template #selectedRegionsTmpl>
+  <ng-container *ngIf="viewerStateController.regionsSelected$ | async as regionsSelected">
+    <div [ngClass]="{'h-117px flex-grow-1': regionsSelected.length > 1, 'flex-grow-0': regionsSelected.length < 2}"
+      class="flex-shrink-0 mb-1 pe-all d-flex flex-column">
+
+      <!-- show when no region is selected -->
+      <div *ngIf="regionsSelected.length === 0"
+        class="pt-2 pb-2 d-flex flex-row align-items-center flex-nowrap">
+        <i *ngIf="false" class="fas fa-brain mr-2"></i>
+
+        <small>
+          In this parcellation atlas
+        </small>
+      </div>
+
+      <!-- show when regions are selected -->
+      <div *ngIf="regionsSelected.length > 0" class="h-100">
+
+        <!-- single region -->
+        <ng-template [ngIf]="regionsSelected.length === 1" [ngIfElse]="multiRegionTemplate">
+          
+          <small class="text-muted">
+            Region selected
+          </small>
+
+          <!-- selected brain region -->
+          <div class="pt-2 pb-2 d-flex flex-row align-items-center flex-nowrap">
+            <i class="fas fa-brain mr-2"></i>
+
+            <small>
+              {{ regionsSelected[0].name }}
+            </small>
+
+            <button (click)="removeRegion(regionsSelected[0])" mat-icon-button>
+              <i class="fas fa-trash"></i>
+            </button>
+          </div>
+        </ng-template>
+
+        <!-- multi region -->
+        <ng-template #multiRegionTemplate>
+          <div class="h-100 d-flex flex-column">
+            <small class="d-block text-muted flex-shrink-0 flex-grow-0">
+              {{ regionsSelected.length }} regions selected
+            </small>
+            <cdk-virtual-scroll-viewport
+              class="flex-grow-1 flex-shrink-1"
+              itemSize="55"
+              maxBufferPx="600"
+              minBufferPx="300">
+              <div *cdkVirtualFor="let region of regionsSelected; trackBy: trackByFn ; let index = index"
+                class="region-wrapper d-flex flex-column" >
+                <!-- divider if index !== 0 -->
+                <mat-divider class="flex-grow-0 flex-shrink-0" *ngIf="index !== 0"></mat-divider>
+  
+                <!-- selected brain region -->
+                <div class="flex-grow-1 flex-shrink-1 pt-2 pb-2 d-flex flex-row align-items-center flex-nowrap">
+                  <i class="flex-grow-0 flex-shrink-0 fas fa-brain mr-2"></i>
+      
+                  <small class="flex-grow-1 flex-shrink-1 ">
+                    {{ region.name }}
+                  </small>
+      
+                  <button mat-icon-button
+                    class="flex-grow-0 flex-shrink-0"
+                    (click)="removeRegion(region)" >
+                    <i class="fas fa-trash"></i>
+                  </button>
+                </div>
+              </div>
+            </cdk-virtual-scroll-viewport>
+          </div>
+        </ng-template>
+
+      </div>
+    </div>
+  </ng-container>
+</ng-template>
\ No newline at end of file
diff --git a/src/ui/sharedModules/angularMaterial.module.ts b/src/ui/sharedModules/angularMaterial.module.ts
index f5b4938579625c01795ae85e04c85adac4f6529e..3d2399feb928cbb29784c61219766f66e0fe4d89 100644
--- a/src/ui/sharedModules/angularMaterial.module.ts
+++ b/src/ui/sharedModules/angularMaterial.module.ts
@@ -1,8 +1,88 @@
-import {MatButtonModule, MatCheckboxModule, MatSidenavModule, MatCardModule, MatTabsModule} from '@angular/material';
+import {
+  MatButtonModule,
+  MatCheckboxModule,
+  MatSidenavModule,
+  MatCardModule,
+  MatTabsModule,
+  MatTooltipModule,
+  MatSnackBarModule,
+  MatBadgeModule,
+  MatDividerModule,
+  MatSelectModule,
+  MatChipsModule,
+  MatAutocompleteModule,
+  MatDialogModule,
+  MatInputModule,
+  MatBottomSheetModule,
+  MatListModule,
+  MatSlideToggleModule,
+  MatRippleModule,
+  MatSliderModule,
+  MatExpansionModule,
+  MatGridListModule,
+  MatIconModule,
+  MatMenuModule
+
+} from '@angular/material';
+import { ScrollingModule as ExperimentalScrollingModule } from '@angular/cdk-experimental/scrolling'
+
 import { NgModule } from '@angular/core';
+import {DragDropModule} from "@angular/cdk/drag-drop";
 
 @NgModule({
-  imports: [MatButtonModule, MatCheckboxModule, MatSidenavModule, MatCardModule, MatTabsModule],
-  exports: [MatButtonModule, MatCheckboxModule, MatSidenavModule, MatCardModule, MatTabsModule],
+  imports: [
+    MatButtonModule,
+    MatSnackBarModule,
+    MatCheckboxModule,
+    MatSidenavModule,
+    MatCardModule,
+    MatTabsModule,
+    MatTooltipModule,
+    MatBadgeModule,
+    MatDividerModule,
+    MatSelectModule,
+    MatChipsModule,
+    MatAutocompleteModule,
+    MatDialogModule,
+    MatInputModule,
+    MatBottomSheetModule,
+    MatListModule,
+    MatSlideToggleModule,
+    MatRippleModule,
+    MatSliderModule,
+    DragDropModule,
+    MatExpansionModule,
+    MatGridListModule,
+    MatIconModule,
+    MatMenuModule,
+    ExperimentalScrollingModule
+  ],
+  exports: [
+    MatButtonModule,
+    MatCheckboxModule,
+    MatSnackBarModule,
+    MatSidenavModule,
+    MatCardModule,
+    MatTabsModule,
+    MatTooltipModule,
+    MatBadgeModule,
+    MatDividerModule,
+    MatSelectModule,
+    MatChipsModule,
+    MatAutocompleteModule,
+    MatDialogModule,
+    MatInputModule,
+    MatBottomSheetModule,
+    MatListModule,
+    MatSlideToggleModule,
+    MatRippleModule,
+    MatSliderModule,
+    DragDropModule,
+    MatExpansionModule,
+    MatGridListModule,
+    MatIconModule,
+    MatMenuModule,
+    ExperimentalScrollingModule
+  ],
 })
-export class AngularMaterialModule { }
\ No newline at end of file
+export class AngularMaterialModule { }
diff --git a/src/ui/signinBanner/signinBanner.components.ts b/src/ui/signinBanner/signinBanner.components.ts
index 713f0082877e9ce8a28c8902badbe1ae19461d05..45743948ec5e763251ccf8246c5b3d8823fe9d4e 100644
--- a/src/ui/signinBanner/signinBanner.components.ts
+++ b/src/ui/signinBanner/signinBanner.components.ts
@@ -1,15 +1,11 @@
-import { Component, ChangeDetectionStrategy, OnDestroy, OnInit, Input } from "@angular/core";
-import { AtlasViewerConstantsServices } from "src/atlasViewer/atlasViewer.constantService.service";
+import {Component, ChangeDetectionStrategy, Input, TemplateRef } from "@angular/core";
 import { AuthService, User } from "src/services/auth.service";
+import { MatDialog, MatDialogRef, MatBottomSheet } from "@angular/material";
+import { Observable } from "rxjs";
+import { map } from "rxjs/operators";
+import { DataEntry } from "src/services/stateStore.service";
 import { Store, select } from "@ngrx/store";
-import { ViewerConfiguration } from "src/services/state/viewerConfig.store";
-import { Subscription, Observable } from "rxjs";
-import { safeFilter, isDefined, NEWVIEWER, SELECT_REGIONS, SELECT_PARCELLATION, CHANGE_NAVIGATION } from "src/services/stateStore.service";
-import { map, filter, distinctUntilChanged } from "rxjs/operators";
-import { regionFlattener } from "src/util/regionFlattener";
-import { ToastService } from "src/services/toastService.service";
 
-const compareParcellation = (o, n) => o.name === n.name
 
 @Component({
   selector: 'signin-banner',
@@ -21,163 +17,60 @@ const compareParcellation = (o, n) => o.name === n.name
   changeDetection: ChangeDetectionStrategy.OnPush
 })
 
-export class SigninBanner implements OnInit, OnDestroy{
+export class SigninBanner{
 
-  public compareParcellation = compareParcellation
-
-  private subscriptions: Subscription[] = []
-  public loadedTemplates$: Observable<any[]>
-  public selectedTemplate$: Observable<any>
-  public selectedParcellation$: Observable<any>
-  public selectedRegions$: Observable<any[]>
-  private selectedRegions: any[] = []
   @Input() darktheme: boolean
 
+  public user$: Observable<User>
+  public userBtnTooltip$: Observable<string>
+  public favDataEntries$: Observable<DataEntry[]>
+
   constructor(
-    private constantService: AtlasViewerConstantsServices,
+    private store$: Store<any>,
     private authService: AuthService,
-    private store: Store<ViewerConfiguration>,
-    private toastService: ToastService
+    private dialog: MatDialog,
+    public bottomSheet: MatBottomSheet
   ){
-    this.loadedTemplates$ = this.store.pipe(
-      select('viewerState'),
-      safeFilter('fetchedTemplates'),
-      map(state => state.fetchedTemplates)
-    )
-
-    this.selectedTemplate$ = this.store.pipe(
-      select('viewerState'),
-      filter(state => isDefined(state) && isDefined(state.templateSelected)),
-      distinctUntilChanged((o, n) => o.templateSelected.name === n.templateSelected.name),
-      map(state => state.templateSelected)
-    )
+    this.user$ = this.authService.user$
 
-    this.selectedParcellation$ = this.store.pipe(
-      select('viewerState'),
-      select('parcellationSelected'),
+    this.userBtnTooltip$ = this.user$.pipe(
+      map(user => user
+        ? `Logged in as ${(user && user.name) ? user.name : 'Unknown name'}`
+        : `Not logged in`)
     )
 
-    this.selectedRegions$ = this.store.pipe(
-      select('viewerState'),
-      safeFilter('regionsSelected'),
-      map(state => state.regionsSelected),
-      distinctUntilChanged((arr1, arr2) => arr1.length === arr2.length && (arr1 as any[]).every((item, index) => item.name === arr2[index].name))
+    this.favDataEntries$ = this.store$.pipe(
+      select('dataStore'),
+      select('favDataEntries')
     )
   }
 
-  ngOnInit(){
+  private dialogRef: MatDialogRef<any>
 
-    this.subscriptions.push(
-      this.selectedRegions$.subscribe(regions => {
-        this.selectedRegions = regions
-      })
-    )
-  }
+  openTmplWithDialog(tmpl: TemplateRef<any>){
+    this.dialogRef && this.dialogRef.close()
 
-  ngOnDestroy(){
-    this.subscriptions.forEach(s => s.unsubscribe())
-  }
-
-  changeTemplate({ current, previous }){
-    if (previous && current && current.name === previous.name)
-      return
-    this.store.dispatch({
-      type: NEWVIEWER,
-      selectTemplate: current,
-      selectParcellation: current.parcellations[0]
-    })
-  }
-
-  changeParcellation({ current, previous }){
-    const { ngId: prevNgId} = previous
-    const { ngId: currNgId} = current
-    if (prevNgId === currNgId)
-      return
-    this.store.dispatch({
-      type: SELECT_PARCELLATION,
-      selectParcellation: current
+    if (tmpl) this.dialogRef = this.dialog.open(tmpl, {
+      autoFocus: false,
+      panelClass: ['col-12','col-sm-12','col-md-8','col-lg-6','col-xl-4']
     })
   }
 
-  // TODO handle mobile
-  handleRegionClick({ mode = 'single', region }){
-    if (!region)
-      return
-    
-    /**
-     * single click on region hierarchy => toggle selection
-     */
-    if (mode === 'single') {
-      const flattenedRegion = regionFlattener(region).filter(r => isDefined(r.labelIndex))
-      const flattenedRegionNames = new Set(flattenedRegion.map(r => r.name))
-      const selectedRegionNames = new Set(this.selectedRegions.map(r => r.name))
-      const selectAll = flattenedRegion.every(r => !selectedRegionNames.has(r.name))
-      this.store.dispatch({
-        type: SELECT_REGIONS,
-        selectRegions: selectAll
-          ? this.selectedRegions.concat(flattenedRegion)
-          : this.selectedRegions.filter(r => !flattenedRegionNames.has(r.name))
-      })
-    }
-
-    /**
-     * double click on region hierarchy => navigate to region area if it exists
-     */
-    if (mode === 'double') {
-
-      /**
-       * if position is defined, go to position (in nm)
-       * if not, show error messagea s toast
-       * 
-       * nb: currently, only supports a single triplet
-       */
-      if (region.position) {
-        this.store.dispatch({
-          type: CHANGE_NAVIGATION,
-          navigation: {
-            position: region.position
-          }
-        })
-      } else {
-        this.toastService.showToast(`${region.name} does not have a position defined`, {
-          timeout: 5000,
-          dismissable: true
-        })
-      }
-    }
-  }
-
-  displayActiveParcellation(parcellation:any){
-    return `<div class="d-flex"><small>Parcellation</small> <small class = "flex-grow-1 mute-text">${parcellation ? '(' + parcellation.name + ')' : ''}</small> <span class = "fas fa-caret-down"></span></div>`
-  }
-
-  displayActiveTemplate(template: any) {
-    return `<div class="d-flex"><small>Template</small> <small class = "flex-grow-1 mute-text">${template ? '(' + template.name + ')' : ''}</small> <span class = "fas fa-caret-down"></span></div>`
-  }
-
-  showHelp() {
-    this.constantService.showHelpSubject$.next()
-  }
-
-  showSignin() {
-    this.constantService.showSigninSubject$.next(this.user)
-  }
-
-  clearAllRegions(){
-    this.store.dispatch({
-      type: SELECT_REGIONS,
-      selectRegions: []
-    })
-  }
-
-  get isMobile(){
-    return this.constantService.mobile
-  }
-
-  get user() : User | null {
-    return this.authService.user
+  private keyListenerConfigBase = {
+    type: 'keydown',
+    stop: true,
+    prevent: true,
+    target: 'document'
   }
 
-  public flexItemIsMobileClass = 'mt-2'
-  public flexItemIsDesktopClass = 'mr-2'
+  public keyListenerConfig = [{
+    key: 'h',
+    ...this.keyListenerConfigBase
+  },{
+    key: 'H',
+    ...this.keyListenerConfigBase
+  },{
+    key: '?',
+    ...this.keyListenerConfigBase
+  }]
 }
\ No newline at end of file
diff --git a/src/ui/signinBanner/signinBanner.style.css b/src/ui/signinBanner/signinBanner.style.css
index 126c598d6d8544ae5e1727d105ac6e20dd089c26..74e36a8f2c0145155af957eee3340bdcbcdf1736 100644
--- a/src/ui/signinBanner/signinBanner.style.css
+++ b/src/ui/signinBanner/signinBanner.style.css
@@ -5,54 +5,7 @@
   display:inline-block;
 }
 
-.loginPopover
-{
-  width: 0;
-  overflow: visible;
-  display:flex;
-  flex-direction: column;
-
-  align-items: flex-end;
-}
-
-:host > dropdown-component
-{
-  min-width: 10em;
-  flex: 1 0 auto;
-}
-
-region-hierarchy,
-dropdown-component
+:host > *
 {
-  font-size:80%;
-
-}
-
-.whenMobile {
-  display: flex;
-  flex-direction: column;
-  align-items: center;
-  min-width: 100%;
-}
-
-.whenNotMobile {
-  display: flex;
-}
-
-.login-icon {
-  height: 28px;
-  margin: 0 3px;
-}
-
-.login-button-panel-mobile {
-  order: -1;
-  align-self: flex-start; 
-  width: 100%;
-  display: flex;
-  justify-content: space-between;
-}
-
-.login-button-mobile > button {
-  outline: none;
-  background-color: transparent;
+  pointer-events: all;
 }
diff --git a/src/ui/signinBanner/signinBanner.template.html b/src/ui/signinBanner/signinBanner.template.html
index 51ae875d91ab9e9858a88eb801986edf6b9b7294..45b57df89f55b5a7f6c5dbf7a1a321b66f2833ce 100644
--- a/src/ui/signinBanner/signinBanner.template.html
+++ b/src/ui/signinBanner/signinBanner.template.html
@@ -1,78 +1,147 @@
-<div
-  class="d-flex"  
-  [ngClass]="{ 'flex-column w-100 align-items-stretch' : isMobile}" >
-
-  <dropdown-component
-    (itemSelected)="changeTemplate($event)"
-    [activeDisplay]="displayActiveTemplate"
-    [selectedItem]="selectedTemplate$ | async"
-    [inputArray]="loadedTemplates$ | async | filterNull"
-    [isMobile] = "isMobile"
-    [ngClass]="isMobile ? flexItemIsMobileClass : flexItemIsDesktopClass"
-    [darktheme] ="darktheme">
-  </dropdown-component>
-
-  <ng-container *ngIf="selectedTemplate$ | async as selectedTemplate">
-    <dropdown-component
-      *ngIf="selectedParcellation$ | async as selectedParcellation"
-      (itemSelected)="changeParcellation($event)"
-      [checkSelected]="compareParcellation"
-      [activeDisplay]="displayActiveParcellation"
-      [selectedItem]="selectedParcellation"
-      [inputArray]="selectedTemplate.parcellations"
-      [isMobile] = "isMobile"
-      [ngClass]="isMobile ? flexItemIsMobileClass : flexItemIsDesktopClass"
-      [darktheme] ="darktheme">
-
-    </dropdown-component>
-    <region-hierarchy
-      [selectedRegions]="selectedRegions$ | async | filterNull"
-      (singleClickRegion)="handleRegionClick({ mode: 'single', region: $event })"
-      (doubleClickRegion)="handleRegionClick({ mode: 'double', region: $event })"
-      (clearAllRegions)="clearAllRegions()"
-      [isMobile] = "isMobile"
-      *ngIf="selectedParcellation$ | async as selectedParcellation"
-      class="h-0"
-      [selectedParcellation]="selectedParcellation"
-      [ngClass]="isMobile ? flexItemIsMobileClass : flexItemIsDesktopClass">
-
-    </region-hierarchy>
-  </ng-container>
-
-  <!-- help btn -->
+<div class="d-flex"
+  [iav-key-listener]="keyListenerConfig"
+  (iav-key-event)="openTmplWithDialog(helpComponent)">
+
+  <!-- pinned datasets -->
+
   <div class="btnWrapper">
-    <div
-      *ngIf="!isMobile" 
-      (click)="showHelp()" 
-      class="btn btn-outline-secondary btn-sm rounded-circle login-icon">
-      <i class="fas fa-question-circle"></i>
-    </div>
+    <button mat-icon-button
+      (click)="bottomSheet.open(savedDatasets)"
+      [matBadge]="(favDataEntries$ | async)?.length > 0 ? (favDataEntries$ | async)?.length : null "
+      matBadgeColor="accent"
+      matBadgePosition="above after"
+      matTooltip="Pinned datasets"
+      color="primary">
+
+      <i class="fas fa-thumbtack"></i>
+    </button>
   </div>
 
   <!-- signin -->
-
   <div class="btnWrapper">
-
-    <div 
-      *ngIf="!isMobile" 
-      (click)="showSignin()"
-      class="btn btn-outline-secondary btn-sm rounded-circle login-icon">
-      <i
-        [ngClass]="user ? 'fa-user' : 'fa-sign-in-alt'"
-        class="fas"></i>
-    </div>
+    <button
+      [matTooltip]="userBtnTooltip$ | async"
+      matTooltipPosition="below"
+      mat-icon-button
+      [matMenuTriggerFor]="dropdownMenu"
+      color="primary">
+      <ng-template [ngIf]="user$ | async" [ngIfElse]="notLoggedInTmpl" let-user="ngIf">
+        {{ (user && user.name || 'Unnamed User').slice(0,1) }}
+      </ng-template>
+      
+      <ng-template #notLoggedInTmpl>
+        <i class="fas fa-user"></i>
+      </ng-template>
+    </button>
   </div>
+</div>
 
-  <div *ngIf="isMobile" class="login-button-panel-mobile">
-    <div
-      (click)="showSignin()"
-      class="login-button-mobile">
-      <button mat-button [ngStyle]="{'color': darktheme? '#D7D7D7' : 'black'}">Log In</button>
-    </div>
+<!-- drop downmenu -->
+<mat-menu #dropdownMenu>
+  <mat-card>
+    <mat-card-content>
+      <signin-modal>
+      </signin-modal>
+    </mat-card-content>
+  </mat-card>
 
-    <div (click)="showHelp()" class="login-button-mobile">
-      <button mat-button [ngStyle]="{'color': darktheme? '#D7D7D7' : 'black'}">Help</button>
-    </div>
+  <mat-divider></mat-divider>
 
-  </div>
-</div>
\ No newline at end of file
+  <button (click)="openTmplWithDialog(pluginTmpl)" mat-menu-item>
+    <mat-icon fontSet="fas" fontIcon="fa-cube"></mat-icon>
+    Plugins
+  </button>
+
+  <button mat-menu-item
+    (click)="openTmplWithDialog(settingTemplate)">
+    <mat-icon fontSet="fas" fontIcon="fa-cog"></mat-icon>
+    Settings
+  </button>
+
+  <button mat-menu-item
+    (click)="openTmplWithDialog(helpComponent)">
+    <mat-icon fontSet="fas" fontIcon="fa-info"></mat-icon>
+    About
+  </button>
+</mat-menu>
+
+<ng-template #pluginTmpl>
+  <h2 mat-dialog-title>Plugins</h2>
+  <mat-dialog-content>
+    <plugin-banner (click)="openTmplWithDialog(null)"></plugin-banner>
+  </mat-dialog-content>
+</ng-template>
+
+<ng-template #helpComponent>
+  <h2 mat-dialog-title>About Interactive Viewer</h2>
+  <mat-dialog-content>
+    <mat-tab-group>
+      <mat-tab label="Help">
+        <help-component>
+        </help-component>
+      </mat-tab>
+      <mat-tab label="Privacy Policy">
+        <!-- TODO make tab container scrollable -->
+        <cookie-agreement>
+        </cookie-agreement>
+      </mat-tab>
+      <mat-tab label="Terms of Use">
+        <kgtos-component>
+        </kgtos-component>
+      </mat-tab>
+    </mat-tab-group>
+  </mat-dialog-content>
+
+  <mat-dialog-actions class="justify-content-center">
+    <button
+      mat-flat-button
+      [mat-dialog-close]
+      cdkFocusInitial>
+      close
+    </button>
+  </mat-dialog-actions>
+</ng-template>
+
+<ng-template #settingTemplate>	
+  <h2 mat-dialog-title>Settings</h2>	
+  <mat-dialog-content>	
+    <!-- required to avoid showing an ugly vertical scroll bar -->	
+    <!-- TODO investigate why, then remove the friller class -->	
+    <config-component class="mb-4 d-block">	
+    </config-component>	
+  </mat-dialog-content>	
+</ng-template> 
+
+<!-- saved dataset tmpl -->
+
+<ng-template #savedDatasets>
+  <mat-list rol="list">
+    <h3 mat-subheader>Pinned Datasets</h3>
+
+    <!-- place holder when no fav data is available -->
+    <mat-card *ngIf="(!(favDataEntries$ | async)) || (favDataEntries$ | async).length === 0">
+      <mat-card-content class="muted">
+        No pinned datasets.
+      </mat-card-content>
+    </mat-card>
+
+    <!-- render all fav dataset as mat list -->
+    <!-- TODO maybe use virtual scroll here? -->
+
+    <mat-list-item
+      class="align-items-center"
+      *ngFor="let ds of (favDataEntries$ | async)"
+      role="listitem">
+
+      <single-dataset-list-view
+        class="d-block pt-1 pb-1 w-100"
+        [kgSchema]="(ds.fullId | getKgSchemaIdFromFullIdPipe)[0]"
+        [kgId]="(ds.fullId | getKgSchemaIdFromFullIdPipe)[1]"
+        [dataset]="ds"
+        [ripple]="true">
+
+      </single-dataset-list-view>
+    
+    </mat-list-item>
+  </mat-list>
+</ng-template>
diff --git a/src/ui/signinModal/signinModal.template.html b/src/ui/signinModal/signinModal.template.html
index 7d2ce3b21d85ca8840b4bf3592f4067d88507f1c..e2ab8fe9f88393075d7597edaec26356b2d1b309 100644
--- a/src/ui/signinModal/signinModal.template.html
+++ b/src/ui/signinModal/signinModal.template.html
@@ -1,24 +1,27 @@
 <div *ngIf="user; else notLoggedIn">
-  Hi {{ user.name }}.
+  Logged in as {{ user && user.name || 'Unnamed User' }}.
   <a
     (click)="loginBtnOnclick()"
-    [href]="logoutHref"
-    class="btn btn-sm btn-outline-secondary">
-    <i class="fas fa-sign-out-alt"></i> Logout
+    [href]="logoutHref">
+    <button
+      mat-button
+      color="warn">
+      <i class="fas fa-sign-out-alt"></i> Logout
+    </button>
   </a>
 </div>
 
 <ng-template #notLoggedIn>
-  <div>
-    Not logged in. Login via:
-    <div class="btn-group-vertical">
-      <a
-        *ngFor="let m of loginMethods"
-        (click)="loginBtnOnclick()"
-        [href]="m.href"
-        class="btn btn-sm btn-outline-secondary">
-        <i class="fas fa-sign-in-alt"></i> {{ m.name }}
-      </a>
-    </div>
-  </div>
+  <span>
+    Login via
+  </span>
+  <a *ngFor="let m of loginMethods"
+    [href]="m.href">
+    <button 
+      (click)="loginBtnOnclick()"
+      mat-raised-button
+      color="primary">
+      <i class="fas fa-sign-in-alt"></i> {{ m.name }}
+    </button> 
+  </a>
 </ng-template>
\ No newline at end of file
diff --git a/src/ui/ui.module.ts b/src/ui/ui.module.ts
index 33649a5175c811658c903161efd006fe62004525..8aab1e839546bd7203a3543f1947f4b8b03f05e6 100644
--- a/src/ui/ui.module.ts
+++ b/src/ui/ui.module.ts
@@ -1,15 +1,14 @@
 import { NgModule } from "@angular/core";
-import { ComponentsModule } from "../components/components.module";
+import { ComponentsModule } from "src/components/components.module";
 
 import { NehubaViewerUnit } from "./nehubaContainer/nehubaViewer/nehubaViewer.component";
 import { NehubaContainer } from "./nehubaContainer/nehubaContainer.component";
-import { SplashScreen } from "./nehubaContainer/splashScreen/splashScreen.component";
-import { LayoutModule } from "../layouts/layout.module";
-import { FormsModule } from "@angular/forms";
+import { SplashScreen, GetTemplateImageSrcPipe, ImgSrcSetPipe } from "./nehubaContainer/splashScreen/splashScreen.component";
+import { LayoutModule } from "src/layouts/layout.module";
+import { FormsModule, ReactiveFormsModule } from "@angular/forms";
 
-import { GroupDatasetByRegion } from "../util/pipes/groupDataEntriesByRegion.pipe";
-import { filterRegionDataEntries } from "../util/pipes/filterRegionDataEntries.pipe";
-import { MenuIconsBar } from './menuicons/menuicons.component'
+import { GroupDatasetByRegion } from "src/util/pipes/groupDataEntriesByRegion.pipe";
+import { filterRegionDataEntries } from "src/util/pipes/filterRegionDataEntries.pipe";
 
 import { GetUniquePipe } from "src/util/pipes/getUnique.pipe";
 
@@ -17,8 +16,7 @@ import { LandmarkUnit } from "./nehubaContainer/landmarkUnit/landmarkUnit.compon
 import { SafeStylePipe } from "../util/pipes/safeStyle.pipe";
 import { PluginBannerUI } from "./pluginBanner/pluginBanner.component";
 import { CitationsContainer } from "./citation/citations.component";
-import { LayerBrowser } from "./layerbrowser/layerbrowser.component";
-import { TooltipModule } from "ngx-bootstrap/tooltip";
+import { LayerBrowser, LockedLayerBtnClsPipe } from "./layerbrowser/layerbrowser.component";
 import { KgEntryViewer } from "./kgEntryViewer/kgentry.component";
 import { SubjectViewer } from "./kgEntryViewer/subjectViewer/subjectViewer.component";
 import { GetLayerNameFromDatasets } from "../util/pipes/getLayerNamePipe.pipe";
@@ -29,36 +27,62 @@ import { DownloadDirective } from "../util/directives/download.directive";
 import { LogoContainer } from "./logoContainer/logoContainer.component";
 import { TemplateParcellationCitationsContainer } from "./templateParcellationCitations/templateParcellationCitations.component";
 import { MobileOverlay } from "./nehubaContainer/mobileOverlay/mobileOverlay.component";
-import { FilterNullPipe } from "../util/pipes/filterNull.pipe";
-import { ShowToastDirective } from "../util/directives/showToast.directive";
 import { HelpComponent } from "./help/help.component";
 import { ConfigComponent } from './config/config.component'
 import { FlatmapArrayPipe } from "src/util/pipes/flatMapArray.pipe";
-import { PopoverModule } from 'ngx-bootstrap/popover'
 import { DatabrowserModule } from "./databrowserModule/databrowser.module";
 import { SigninBanner } from "./signinBanner/signinBanner.components";
 import { SigninModal } from "./signinModal/signinModal.component";
-import { FilterNgLayer } from "src/util/pipes/filterNgLayer.pipe";
 import { UtilModule } from "src/util/util.module";
-import { RegionHierarchy } from "./regionHierachy/regionHierarchy.component";
-import { FilterNameBySearch } from "./regionHierachy/filterNameBySearch.pipe";
+import { FilterNameBySearch } from "./viewerStateController/regionHierachy/filterNameBySearch.pipe";
 import { StatusCardComponent } from "./nehubaContainer/statusCard/statusCard.component";
 import { CookieAgreement } from "./cookieAgreement/cookieAgreement.component";
 import { KGToS } from "./kgtos/kgtos.component";
-import { AngularMaterialModule } from "./sharedModules/angularMaterial.module";
+import { AngularMaterialModule } from 'src/ui/sharedModules/angularMaterial.module'
+import { AppendtooltipTextPipe } from "src/util/pipes/appendTooltipText.pipe";
+import { FourPanelLayout } from "./config/layouts/fourPanel/fourPanel.component";
+import { HorizontalOneThree } from "./config/layouts/h13/h13.component";
+import { VerticalOneThree } from "./config/layouts/v13/v13.component";
+import { SinglePanel } from "./config/layouts/single/single.component";
+import { CurrentLayout } from "./config/currentLayout/currentLayout.component";
+import { MobileControlNubStylePipe } from "./nehubaContainer/pipes/mobileControlNubStyle.pipe";
+import { ScrollingModule } from "@angular/cdk/scrolling"
+import { HttpClientModule } from "@angular/common/http";
+import { GetFilenamePipe } from "src/util/pipes/getFilename.pipe";
+import { GetFileExtension } from "src/util/pipes/getFileExt.pipe";
 
+import { ViewerStateController } from 'src/ui/viewerStateController/viewerStateCFull/viewerState.component'
+import { ViewerStateMini } from 'src/ui/viewerStateController/viewerStateCMini/viewerStateMini.component'
+
+import { BinSavedRegionsSelectionPipe, SavedRegionsSelectionBtnDisabledPipe } from "./viewerStateController/viewerState.pipes";
+import { PluginBtnFabColorPipe } from "src/util/pipes/pluginBtnFabColor.pipe";
+import { KgSearchBtnColorPipe } from "src/util/pipes/kgSearchBtnColor.pipe";
+import { TemplateParcellationHasMoreInfo } from "src/util/pipes/templateParcellationHasMoreInfo.pipe";
+import { HumanReadableFileSizePipe } from "src/util/pipes/humanReadableFileSize.pipe";
+import { MaximmisePanelButton } from "./nehubaContainer/maximisePanelButton/maximisePanelButton.component";
+import { TouchSideClass } from "./nehubaContainer/touchSideClass.directive";
+import { ReorderPanelIndexPipe } from "./nehubaContainer/reorderPanelIndex.pipe";
+
+import {ElementOutClickDirective} from "src/util/directives/elementOutClick.directive";
+import {FilterWithStringPipe} from "src/util/pipes/filterWithString.pipe";
+import { SearchSideNav } from "./searchSideNav/searchSideNav.component";
+
+import { RegionHierarchy } from './viewerStateController/regionHierachy/regionHierarchy.component'
+import { CurrentlySelectedRegions } from './viewerStateController/regionsListView/currentlySelectedRegions/currentlySelectedRegions.component'
+import { RegionTextSearchAutocomplete } from "./viewerStateController/regionSearch/regionSearch.component";
+import { RegionsListView } from "./viewerStateController/regionsListView/simpleRegionsListView/regionListView.component";
 
 @NgModule({
   imports : [
+    HttpClientModule,
     FormsModule,
+    ReactiveFormsModule,
     LayoutModule,
     ComponentsModule,
     DatabrowserModule,
     UtilModule,
+    ScrollingModule,
     AngularMaterialModule,
-
-    PopoverModule.forRoot(),
-    TooltipModule.forRoot()
   ],
   declarations : [
     NehubaContainer,
@@ -75,13 +99,24 @@ import { AngularMaterialModule } from "./sharedModules/angularMaterial.module";
     MobileOverlay,
     HelpComponent,
     ConfigComponent,
-    MenuIconsBar,
     SigninBanner,
     SigninModal,
-    RegionHierarchy,
     StatusCardComponent,
     CookieAgreement,
     KGToS,
+    FourPanelLayout,
+    HorizontalOneThree,
+    VerticalOneThree,
+    SinglePanel,
+    CurrentLayout,
+    ViewerStateController,
+    ViewerStateMini,
+    RegionHierarchy,
+    CurrentlySelectedRegions,
+    MaximmisePanelButton,
+    SearchSideNav,
+    RegionTextSearchAutocomplete,
+    RegionsListView,
 
     /* pipes */
     GroupDatasetByRegion,
@@ -92,20 +127,34 @@ import { AngularMaterialModule } from "./sharedModules/angularMaterial.module";
     GetLayerNameFromDatasets,
     SortDataEntriesToRegion,
     SpatialLandmarksToDataBrowserItemPipe,
-    FilterNullPipe,
-    FilterNgLayer,
     FilterNameBySearch,
+    AppendtooltipTextPipe,
+    MobileControlNubStylePipe,
+    GetTemplateImageSrcPipe,
+    ImgSrcSetPipe,
+    PluginBtnFabColorPipe,
+    KgSearchBtnColorPipe,
+    LockedLayerBtnClsPipe,
+    GetFilenamePipe,
+    GetFileExtension,
+    BinSavedRegionsSelectionPipe,
+    SavedRegionsSelectionBtnDisabledPipe,
+    FilterWithStringPipe,
+    TemplateParcellationHasMoreInfo,
+    HumanReadableFileSizePipe,
+    ReorderPanelIndexPipe,
 
     /* directive */
     DownloadDirective,
-    ShowToastDirective
+    TouchSideClass,
+    ElementOutClickDirective,
   ],
   entryComponents : [
 
     /* dynamically created components needs to be declared here */
     NehubaViewerUnit,
     LayerBrowser,
-    PluginBannerUI
+    PluginBannerUI,
   ],
   exports : [
     SubjectViewer,
@@ -120,15 +169,16 @@ import { AngularMaterialModule } from "./sharedModules/angularMaterial.module";
     MobileOverlay,
     HelpComponent,
     ConfigComponent,
-    MenuIconsBar,
     SigninBanner,
     SigninModal,
     CookieAgreement,
     KGToS,
-    AngularMaterialModule,
-    StatusCardComponent
+    StatusCardComponent,
+    ElementOutClickDirective,
+    SearchSideNav,
+    ViewerStateMini,
   ]
 })
 
 export class UIModule{
-}
\ No newline at end of file
+}
diff --git a/src/ui/regionHierachy/filterNameBySearch.pipe.ts b/src/ui/viewerStateController/regionHierachy/filterNameBySearch.pipe.ts
similarity index 100%
rename from src/ui/regionHierachy/filterNameBySearch.pipe.ts
rename to src/ui/viewerStateController/regionHierachy/filterNameBySearch.pipe.ts
diff --git a/src/ui/regionHierachy/regionHierarchy.component.ts b/src/ui/viewerStateController/regionHierachy/regionHierarchy.component.ts
similarity index 67%
rename from src/ui/regionHierachy/regionHierarchy.component.ts
rename to src/ui/viewerStateController/regionHierachy/regionHierarchy.component.ts
index bb0be7c3dffe5b4be964d500f97402346638781c..6a059daa3e7790bd06e5b6796545813187b7cd3a 100644
--- a/src/ui/regionHierachy/regionHierarchy.component.ts
+++ b/src/ui/viewerStateController/regionHierachy/regionHierarchy.component.ts
@@ -1,6 +1,6 @@
 import { EventEmitter, Component, ElementRef, ViewChild, HostListener, OnInit, ChangeDetectionStrategy, ChangeDetectorRef, Input, Output, AfterViewInit } from "@angular/core";
 import {  Subscription, Subject, fromEvent } from "rxjs";
-import { buffer, debounceTime } from "rxjs/operators";
+import { buffer, debounceTime, tap } from "rxjs/operators";
 import { FilterNameBySearch } from "./filterNameBySearch.pipe";
 import { generateLabelIndexId } from "src/services/stateStore.service";
 
@@ -11,14 +11,14 @@ const insertHighlight :(name:string, searchTerm:string) => string = (name:string
     name.replace(regex, (s) => `<span class = "highlight">${s}</span>`)
 }
 
-const getDisplayTreeNode : (searchTerm:string, selectedRegions:any[], defaultNgId: string) => (item:any) => string = (searchTerm:string = '', selectedRegions:any[] = [], defaultNgId) => ({ ngId = defaultNgId, name, status, labelIndex }) =>  {
+const getDisplayTreeNode : (searchTerm:string, selectedRegions:any[]) => (item:any) => string = (searchTerm:string = '', selectedRegions:any[] = []) => ({ ngId, name, status, labelIndex }) =>  {
   return !!labelIndex
     && !!ngId
     && selectedRegions.findIndex(re =>
-      generateLabelIndexId({ labelIndex: re.labelIndex, ngId: re.ngId || defaultNgId }) === generateLabelIndexId({ ngId, labelIndex })
+      generateLabelIndexId({ labelIndex: re.labelIndex, ngId: re.ngId }) === generateLabelIndexId({ ngId, labelIndex })
     ) >= 0
-      ? `<span class="regionSelected">${insertHighlight(name, searchTerm)}</span>` + (status ? ` <span class="text-muted">(${insertHighlight(status, searchTerm)})</span>` : ``)
-      : `<span class="regionNotSelected">${insertHighlight(name, searchTerm)}</span>` + (status ? ` <span class="text-muted">(${insertHighlight(status, searchTerm)})</span>` : ``)
+      ? `<span class="cursor-default regionSelected">${insertHighlight(name, searchTerm)}</span>` + (status ? ` <span class="text-muted">(${insertHighlight(status, searchTerm)})</span>` : ``)
+      : `<span class="cursor-default regionNotSelected">${insertHighlight(name, searchTerm)}</span>` + (status ? ` <span class="text-muted">(${insertHighlight(status, searchTerm)})</span>` : ``)
 }
 
 const getFilterTreeBySearch = (pipe:FilterNameBySearch, searchTerm:string) => (node:any) => pipe.transform([node.name, node.status], searchTerm)
@@ -35,12 +35,13 @@ const getFilterTreeBySearch = (pipe:FilterNameBySearch, searchTerm:string) => (n
 export class RegionHierarchy implements OnInit, AfterViewInit{
 
   @Input()
-  public selectedRegions: any[] = []
+  public useMobileUI: boolean = false
 
   @Input()
-  public selectedParcellation: any
+  public selectedRegions: any[] = []
 
-  @Input() isMobile: boolean;
+  @Input()
+  public parcellationSelected: any
 
   private _showRegionTree: boolean = false
 
@@ -54,7 +55,7 @@ export class RegionHierarchy implements OnInit, AfterViewInit{
   private doubleClickRegion: EventEmitter<any> = new EventEmitter()
 
   @Output()
-  private clearAllRegions: EventEmitter<null> = new EventEmitter()
+  private clearAllRegions: EventEmitter<MouseEvent> = new EventEmitter()
 
   public searchTerm: string = ''
   private subscriptions: Subscription[] = []
@@ -62,12 +63,27 @@ export class RegionHierarchy implements OnInit, AfterViewInit{
   @ViewChild('searchTermInput', {read: ElementRef})
   private searchTermInput: ElementRef
 
+  public placeHolderText: string = `Start by selecting a template and a parcellation.`
+
+  /**
+   * set the height to max, bound by max-height
+   */
+  numTotalRenderedRegions: number = 999
+  windowHeight: number
+
   @HostListener('document:click', ['$event'])
   closeRegion(event: MouseEvent) {
     const contains = this.el.nativeElement.contains(event.target)
     this.showRegionTree = contains
-    if (!this.showRegionTree)
+    if (!this.showRegionTree){
       this.searchTerm = ''
+      this.numTotalRenderedRegions = 999
+    }
+  }
+
+  @HostListener('window:resize', ['$event'])
+  onResize(event) {
+    this.windowHeight = event.target.innerHeight;
   }
 
   get regionsLabelIndexMap() {
@@ -78,21 +94,23 @@ export class RegionHierarchy implements OnInit, AfterViewInit{
     private cdr:ChangeDetectorRef,
     private el:ElementRef
   ){
-
+    this.windowHeight = window.innerHeight;
   }
 
   ngOnChanges(){
-    this.aggregatedRegionTree = {
-      name: this.selectedParcellation.name,
-      children: this.selectedParcellation.regions
+    if (this.parcellationSelected) {
+      this.placeHolderText = `Search region in ${this.parcellationSelected.name}`
+      this.aggregatedRegionTree = {
+        name: this.parcellationSelected.name,
+        children: this.parcellationSelected.regions
+      }
     }
-    this.displayTreeNode = getDisplayTreeNode(this.searchTerm, this.selectedRegions, this.selectedParcellation.ngId)
+    this.displayTreeNode = getDisplayTreeNode(this.searchTerm, this.selectedRegions)
     this.filterTreeBySearch = getFilterTreeBySearch(this.filterNameBySearchPipe, this.searchTerm)
   }
 
   clearRegions(event:MouseEvent){
-    event.stopPropagation()
-    this.clearAllRegions.emit()
+    this.clearAllRegions.emit(event)
   }
 
   get showRegionTree(){
@@ -105,7 +123,7 @@ export class RegionHierarchy implements OnInit, AfterViewInit{
   }
 
   ngOnInit(){
-    this.displayTreeNode = getDisplayTreeNode(this.searchTerm, this.selectedRegions, this.selectedParcellation.ngId)
+    this.displayTreeNode = getDisplayTreeNode(this.searchTerm, this.selectedRegions)
     this.filterTreeBySearch = getFilterTreeBySearch(this.filterNameBySearchPipe, this.searchTerm)
 
     this.subscriptions.push(
@@ -120,20 +138,6 @@ export class RegionHierarchy implements OnInit, AfterViewInit{
   }
 
   ngAfterViewInit(){
-    /**
-     * TODO
-     * bandaid fix on
-     * when region search loses focus, the searchTerm is cleared,
-     * but hierarchy filter does not reset
-     */
-    this.subscriptions.push(
-      fromEvent(this.searchTermInput.nativeElement, 'focus').pipe(
-        
-      ).subscribe(() => {
-        this.displayTreeNode = getDisplayTreeNode(this.searchTerm, this.selectedRegions, this.selectedParcellation.ngId)
-        this.filterTreeBySearch = getFilterTreeBySearch(this.filterNameBySearchPipe, this.searchTerm)
-      })
-    )
     this.subscriptions.push(
       fromEvent(this.searchTermInput.nativeElement, 'input').pipe(
         debounceTime(200)
@@ -143,13 +147,6 @@ export class RegionHierarchy implements OnInit, AfterViewInit{
     )
   }
 
-  getInputPlaceholder(parcellation:any) {
-    if (parcellation)
-      return `Search region in ${parcellation.name}`
-    else
-      return `Start by selecting a template and a parcellation.`
-  }
-
   escape(event:KeyboardEvent){
     this.showRegionTree = false
     this.searchTerm = '';
@@ -157,27 +154,24 @@ export class RegionHierarchy implements OnInit, AfterViewInit{
 
   }
 
-  focusInput(event?:MouseEvent){
-    if (event) {
-      /**
-       * need to stop propagation, or @closeRegion will be triggered
-       */
-      event.stopPropagation()
-    }
-    this.searchTermInput.nativeElement.focus()
-    this.showRegionTree = true
+  handleTotalRenderedListChanged(changeEvent: {previous: number, current: number}){
+    const { current } = changeEvent
+    this.numTotalRenderedRegions = current
+  }
+
+  regionHierarchyHeight(){
+    return({
+      'height' : (this.numTotalRenderedRegions * 15 + 60).toString() + 'px',
+      'max-height': (this.windowHeight - 100) + 'px'
+    })
   }
 
   /* NB need to bind two way data binding like this. Or else, on searchInput blur, the flat tree will be rebuilt,
     resulting in first click to be ignored */
 
   changeSearchTerm(event: any) {
-    if (event.target.value === this.searchTerm)
-      return
+    if (event.target.value === this.searchTerm) return
     this.searchTerm = event.target.value
-    /**
-     * TODO maybe introduce debounce
-     */
     this.ngOnChanges()
     this.cdr.markForCheck()
   }
@@ -189,18 +183,17 @@ export class RegionHierarchy implements OnInit, AfterViewInit{
     /**
      * TODO figure out why @closeRegion gets triggered, but also, contains returns false
      */
-    if (event)
+    if (event) {
       event.stopPropagation()
+    }
     this.handleRegionTreeClickSubject.next(obj)
   }
 
   /* single click selects/deselects region(s) */
   private singleClick(obj: any) {
-    if (!obj)
-      return
+    if (!obj) return
     const { inputItem : region } = obj
-    if (!region)
-      return
+    if (!region) return
     this.singleClickRegion.emit(region)
   }
 
@@ -221,4 +214,15 @@ export class RegionHierarchy implements OnInit, AfterViewInit{
 
   public aggregatedRegionTree: any
 
+  public gotoRegion(region: any) {
+    this.doubleClickRegion.emit(region)
+  }
+
+  public deselectRegion(region: any) {
+    this.singleClickRegion.emit(region)
+  }
+}
+
+export function trackRegionBy(index: number, region: any){
+  return region.labelIndex || region.id
 }
\ No newline at end of file
diff --git a/src/ui/viewerStateController/regionHierachy/regionHierarchy.style.css b/src/ui/viewerStateController/regionHierachy/regionHierarchy.style.css
new file mode 100644
index 0000000000000000000000000000000000000000..121dea1c590f60f7f835b717aadebcc8cfed38a2
--- /dev/null
+++ b/src/ui/viewerStateController/regionHierachy/regionHierarchy.style.css
@@ -0,0 +1,55 @@
+
+div[treeContainer]
+{
+  padding:1em;
+  z-index: 3;
+
+  height:20em;
+  overflow-y:auto;
+  overflow-x:hidden;
+
+  /* color:white;
+  background-color:rgba(12,12,12,0.8); */
+}
+
+.flex-basis-20-pc
+{
+  flex-basis: 20%;
+}
+
+.flex-basis-auto
+{
+  flex-basis: auto;
+}
+
+[hideScrollbarcontainer]
+{
+  overflow:hidden;
+}
+
+input[type="text"]
+{
+  border:none;
+}
+
+
+.regionSearch
+{
+  width:20em;
+}
+
+.tree-body
+{
+  flex: 1 1 auto;
+}
+
+:host
+{
+  display: flex;
+  flex-direction: column;
+}
+
+:host > mat-form-field
+{
+  flex: 0 0 auto;
+}
diff --git a/src/ui/viewerStateController/regionHierachy/regionHierarchy.template.html b/src/ui/viewerStateController/regionHierachy/regionHierarchy.template.html
new file mode 100644
index 0000000000000000000000000000000000000000..0202c9ffe5a5a9d270d97a705c548f178199d20a
--- /dev/null
+++ b/src/ui/viewerStateController/regionHierachy/regionHierarchy.template.html
@@ -0,0 +1,86 @@
+<mat-form-field class="w-100">
+  <input 
+    #searchTermInput
+    matInput
+    (keydown.esc)="escape($event)"
+    (focus)="showRegionTree = true"
+    [value]="searchTerm"
+    type="text" 
+    autocomplete="off"
+    [placeholder]="placeHolderText"/>
+</mat-form-field>
+
+<ng-template #noRegionSelected>
+  No region selected
+</ng-template>
+
+<ng-template #regionSelectedText>
+  <span class="text-muted">
+    <ng-template [ngIf]="selectedRegions.length > 0" [ngIfElse]="noRegionSelected">
+      {{ (selectedRegions | filterRowsByVisbilityPipe : null : filterTreeBySearch).length }} / {{ selectedRegions.length }} 
+    </ng-template>
+  </span>
+</ng-template>
+
+<div
+  [ngClass]="{'flex-column': useMobileUI, 'flex-row': !useMobileUI}"
+  class="d-flex flex-grow-1 flex-shrink-1">
+
+  <!-- selected regions -->
+  <div
+    [ngClass]="{'flex-basis-20-pc': !useMobileUI, 'flex-basis-auto': useMobileUI}"
+    class="d-flex flex-column flex-grow-0 flex-shrink-0">
+
+    <div class="flex-grow-0 flex-shrink-0 d-flex flex-row align-items-center">
+
+      <button mat-button
+        *ngIf="selectedRegions.length > 0"
+        (click)="clearRegions($event)">
+        clear all
+      </button>
+
+      <span class="m-1">
+        <ng-container *ngTemplateOutlet="regionSelectedText">
+        </ng-container>
+      </span>
+    </div>
+
+    <mat-divider></mat-divider>
+
+    <div *ngIf="(selectedRegions | filterRowsByVisbilityPipe : null : filterTreeBySearch).length > 0"
+      class="mt-2 min-h-8 flex-grow-1 flex-shrink-1"
+      hideScrollbarcontainer>
+      <regions-list-view class="d-block h-100"
+        (gotoRegion)="gotoRegion($event)"
+        (deselectRegion)="deselectRegion($event)"
+        [horizontal]="useMobileUI"
+        [regionsSelected]="selectedRegions | filterRowsByVisbilityPipe : null : filterTreeBySearch">
+
+      </regions-list-view>
+    </div>
+  </div>
+
+  <!-- region tree -->
+  <div class="flex-grow-1 flex-shrink-1" hideScrollbarContainer>
+    <div
+      class="d-flex flex-column h-100"
+      treeContainer
+      hideScrollbarInnerContainer
+      #treeContainer>
+      
+      <div
+        *ngIf="parcellationSelected && parcellationSelected.regions as regions"
+        class="tree-body">
+        <flat-tree-component
+          (treeNodeClick)="handleClickRegion($event)"
+          (totalRenderedListChanged)="handleTotalRenderedListChanged($event)"
+          [inputItem]="aggregatedRegionTree"
+          [renderNode]="displayTreeNode"
+          [searchFilter]="filterTreeBySearch">
+          
+        </flat-tree-component>
+      </div> 
+    </div>
+  </div>
+</div>
+  
\ No newline at end of file
diff --git a/src/ui/viewerStateController/regionSearch/regionSearch.component.ts b/src/ui/viewerStateController/regionSearch/regionSearch.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..fb0e259472c064cb64e322fa436f584d60a3acf7
--- /dev/null
+++ b/src/ui/viewerStateController/regionSearch/regionSearch.component.ts
@@ -0,0 +1,194 @@
+import { Component, EventEmitter, Output, ViewChild, ElementRef, TemplateRef, Input, ChangeDetectionStrategy } from "@angular/core";
+import { Store, select } from "@ngrx/store";
+import { Observable } from "rxjs";
+import { map, distinctUntilChanged, startWith, withLatestFrom, debounceTime, shareReplay, take, tap } from "rxjs/operators";
+import { getMultiNgIdsRegionsLabelIndexMap, generateLabelIndexId } from "src/services/stateStore.service";
+import { FormControl } from "@angular/forms";
+import { MatAutocompleteSelectedEvent, MatDialog, AUTOCOMPLETE_OPTION_HEIGHT, AUTOCOMPLETE_PANEL_HEIGHT } from "@angular/material";
+import { ADD_TO_REGIONS_SELECTION_WITH_IDS, SELECT_REGIONS, CHANGE_NAVIGATION } from "src/services/state/viewerState.store";
+import { VIEWERSTATE_CONTROLLER_ACTION_TYPES } from "../viewerState.base";
+import { AtlasViewerConstantsServices } from "src/atlasViewer/atlasViewer.constantService.service";
+import { VIEWER_STATE_ACTION_TYPES } from "src/services/effect/effect";
+
+const filterRegionBasedOnText = searchTerm => region => region.name.toLowerCase().includes(searchTerm.toLowerCase())
+
+@Component({
+  selector: 'region-text-search-autocomplete',
+  templateUrl: './regionSearch.template.html',
+  styleUrls: [
+    './regionSearch.style.css'
+  ],
+  changeDetection: ChangeDetectionStrategy.OnPush
+})
+
+export class RegionTextSearchAutocomplete{
+
+  @Input() public showBadge: boolean = false
+  @Input() public showAutoComplete: boolean = true
+
+  @ViewChild('autoTrigger', {read: ElementRef}) autoTrigger: ElementRef 
+  @ViewChild('regionHierarchyDialog', {read:TemplateRef}) regionHierarchyDialogTemplate: TemplateRef<any>
+
+  public useMobileUI$: Observable<boolean>
+
+  public selectedRegionLabelIndexSet: Set<string> = new Set()
+
+  constructor(
+    private store$: Store<any>,
+    private dialog: MatDialog,
+    private constantService: AtlasViewerConstantsServices
+  ){
+
+    this.useMobileUI$ = this.constantService.useMobileUI$
+
+    const viewerState$ = this.store$.pipe(
+      select('viewerState'),
+      shareReplay(1)
+    )
+
+    this.regionsWithLabelIndex$ = viewerState$.pipe(
+      select('parcellationSelected'),
+      distinctUntilChanged(),
+      map(parcellationSelected => {
+        const returnArray = []
+        const ngIdMap = getMultiNgIdsRegionsLabelIndexMap(parcellationSelected)
+        for (const [ngId, labelIndexMap] of ngIdMap) {
+          for (const [labelIndex, region] of labelIndexMap){
+            returnArray.push({
+              ...region,
+              ngId,
+              labelIndex,
+              labelIndexId: generateLabelIndexId({ ngId, labelIndex })
+            })
+          }
+        }
+        return returnArray
+      }),
+      shareReplay(1)
+    )
+
+    this.autocompleteList$ = this.formControl.valueChanges.pipe(
+      startWith(''),
+      distinctUntilChanged(),
+      debounceTime(200),
+      withLatestFrom(this.regionsWithLabelIndex$.pipe(
+        startWith([])
+      )),
+      map(([searchTerm, regionsWithLabelIndex]) => regionsWithLabelIndex.filter(filterRegionBasedOnText(searchTerm))),
+      map(arr => arr.slice(0, 5))
+    )
+
+    this.regionsSelected$ = viewerState$.pipe(
+      select('regionsSelected'),
+      distinctUntilChanged(),
+      tap(regions => {
+        const arrLabelIndexId = regions.map(({ ngId, labelIndex }) => generateLabelIndexId({ ngId, labelIndex }))
+        this.selectedRegionLabelIndexSet = new Set(arrLabelIndexId)
+      }),
+      shareReplay(1)
+    )
+
+    this.parcellationSelected$ = viewerState$.pipe(
+      select('parcellationSelected'),
+      distinctUntilChanged(),
+      shareReplay(1)
+    )
+  }
+
+  public toggleRegionWithId(id: string, removeFlag=false){
+    if (removeFlag) {
+      this.store$.dispatch({
+        type: VIEWER_STATE_ACTION_TYPES.DESELECT_REGIONS_WITH_ID,
+        deselecRegionIds: [id]
+      })
+    } else {
+      this.store$.dispatch({
+        type: ADD_TO_REGIONS_SELECTION_WITH_IDS,
+        selectRegionIds : [id]
+      })
+    }
+  }
+
+  public navigateTo(position){
+    this.store$.dispatch({
+      type: CHANGE_NAVIGATION,
+      navigation: {
+        position,
+        animation: {}
+      }
+    })
+  }
+
+  public optionSelected(ev: MatAutocompleteSelectedEvent){
+    const id = ev.option.value
+    this.autoTrigger.nativeElement.value = ''
+  }
+
+  private regionsWithLabelIndex$: Observable<any[]>
+  public autocompleteList$: Observable<any[]>
+  public formControl = new FormControl()
+
+  public regionsSelected$: Observable<any>
+  public parcellationSelected$: Observable<any>
+
+
+  @Output()
+  public focusedStateChanged: EventEmitter<boolean> = new EventEmitter()
+
+  private _focused: boolean = false
+  set focused(val: boolean){
+    this._focused = val
+    this.focusedStateChanged.emit(val)
+  }
+  get focused(){
+    return this._focused
+  }
+
+  public deselectAllRegions(event: MouseEvent){
+    this.store$.dispatch({
+      type: SELECT_REGIONS,
+      selectRegions: []
+    })
+  }
+
+  // TODO handle mobile
+  handleRegionClick({ mode = null, region = null } = {}){
+    const type = mode === 'single'
+      ? VIEWERSTATE_CONTROLLER_ACTION_TYPES.SINGLE_CLICK_ON_REGIONHIERARCHY
+      : mode === 'double'
+        ? VIEWERSTATE_CONTROLLER_ACTION_TYPES.DOUBLE_CLICK_ON_REGIONHIERARCHY
+        : ''
+    this.store$.dispatch({
+      type,
+      payload: { region }
+    })
+  }
+
+  showHierarchy(event:MouseEvent){
+    // mat-card-content has a max height of 65vh
+    const dialog = this.dialog.open(this.regionHierarchyDialogTemplate, {
+      height: '65vh',
+      panelClass: [
+        'col-10',
+        'col-sm-10',
+        'col-md-8',
+        'col-lg-8',
+        'col-xl-6'
+      ]
+    })
+
+    /**
+     * keep sleight of hand shown while modal is shown
+     * 
+     */
+    this.focused = true
+    
+    /**
+     * take 1 to avoid memory leak
+     */
+    dialog.afterClosed().pipe(
+      take(1)
+    ).subscribe(() => this.focused = false)
+  }
+
+}
\ No newline at end of file
diff --git a/src/ui/viewerStateController/regionSearch/regionSearch.style.css b/src/ui/viewerStateController/regionSearch/regionSearch.style.css
new file mode 100644
index 0000000000000000000000000000000000000000..697cf662c0ed5ca19e9ccce62972112a79905000
--- /dev/null
+++ b/src/ui/viewerStateController/regionSearch/regionSearch.style.css
@@ -0,0 +1,9 @@
+region-hierarchy
+{
+  height: 100%;
+}
+
+.regionAutocompleteOption
+{
+  height:38px;
+}
diff --git a/src/ui/viewerStateController/regionSearch/regionSearch.template.html b/src/ui/viewerStateController/regionSearch/regionSearch.template.html
new file mode 100644
index 0000000000000000000000000000000000000000..59e9a2060832fbb49b661fd14827580bd0da1044
--- /dev/null
+++ b/src/ui/viewerStateController/regionSearch/regionSearch.template.html
@@ -0,0 +1,94 @@
+<div class="w-100 d-inline-flex flex-row align-items-center">
+
+  <form *ngIf="showAutoComplete" class="d-flex flex-row flex-nowrap flex-grow-1 flex-shrink-1">
+    <mat-form-field class="w-0 flex-grow-1 flex-shrink-1">
+      <input
+        placeholder="Search for regions"
+        #autoTrigger
+        #trigger="matAutocompleteTrigger"
+        type="text"
+        matInput
+        [formControl]="formControl"
+        [matAutocomplete]="auto">
+    </mat-form-field>
+    <mat-autocomplete
+      (opened)="focused = true"
+      (closed)="focused = false"
+      panelWidth="auto"
+      (optionSelected)="optionSelected($event)"
+      autoActiveFirstOption
+      #auto="matAutocomplete">
+      <mat-option
+        class="regionAutocompleteOption"
+        *ngFor="let region of autocompleteList$ | async"
+        [value]="region.labelIndexId">
+
+        <div class="d-flex flex-row">
+
+          <small class="text-truncate flex-shrink-1 flex-grow-1">
+            {{ region.name }}
+          </small>
+  
+          <div class="flex-grow-0 flex-shrink-0 d-flex flex-row">
+
+            <!-- if has position defined -->
+            <button *ngIf="region.position"
+              iav-stop="click"
+              (click)="navigateTo(region.position)"
+              mat-icon-button>
+              <i class="fas fa-map-marked-alt"></i>
+            </button>
+
+            <!-- region selected  -->
+            <button mat-icon-button
+              iav-stop="click"
+              (click)="toggleRegionWithId(region.labelIndexId, selectedRegionLabelIndexSet.has(region.labelIndexId))"
+              [color]="selectedRegionLabelIndexSet.has(region.labelIndexId) ? 'primary' : 'basic'">
+              <i class="far"
+                [ngClass]="{'fa-check-square': selectedRegionLabelIndexSet.has(region.labelIndexId), 'fa-square': !selectedRegionLabelIndexSet.has(region.labelIndexId)}">
+              </i>
+            </button>
+          </div>
+      
+        </div>
+      </mat-option>
+    </mat-autocomplete>
+  </form>
+    
+  <button
+    matBadgeColor="accent"
+    [matBadge]="showBadge && (regionsSelected$ | async).length ? (regionsSelected$ | async).length : null"
+    class="flex-grow-0 flex-shrink-0"
+    (click)="showHierarchy($event)"
+    mat-icon-button
+    color="primary">
+    <i class="fas fa-sitemap"></i>
+  </button>
+</div>
+
+<ng-template #regionHierarchyDialog>
+  <div class="h-100 d-flex flex-column">
+    <mat-dialog-content class="flex-grow-1 flex-shrink-1">
+      <ng-container *ngTemplateOutlet="regionHierarchy">
+      </ng-container>
+    </mat-dialog-content>
+  
+    <mat-dialog-actions class="justify-content-center">
+      <button mat-dialog-close mat-flat-button>
+        close
+      </button>
+    </mat-dialog-actions>
+  </div>
+</ng-template>
+
+<ng-template #regionHierarchy>
+  <region-hierarchy
+    [useMobileUI]="useMobileUI$ | async"
+    [selectedRegions]="regionsSelected$ | async | filterNull"
+    (singleClickRegion)="handleRegionClick({ mode: 'single', region: $event })"
+    (doubleClickRegion)="handleRegionClick({ mode: 'double', region: $event })"
+    (clearAllRegions)="deselectAllRegions($event)"
+    [parcellationSelected]="parcellationSelected$ | async">
+  
+  </region-hierarchy>
+</ng-template>
diff --git a/src/ui/viewerStateController/regionsListView/currentlySelectedRegions/currentlySelectedRegions.component.ts b/src/ui/viewerStateController/regionsListView/currentlySelectedRegions/currentlySelectedRegions.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..15dd459928e4e730535da6831a0dc06bc173818d
--- /dev/null
+++ b/src/ui/viewerStateController/regionsListView/currentlySelectedRegions/currentlySelectedRegions.component.ts
@@ -0,0 +1,46 @@
+import { Component } from "@angular/core";
+import { Store, select } from "@ngrx/store";
+import { Observable } from "rxjs";
+import { distinctUntilChanged, startWith } from "rxjs/operators";
+import { DESELECT_REGIONS } from "src/services/state/viewerState.store";
+import { VIEWERSTATE_CONTROLLER_ACTION_TYPES } from "src/ui/viewerStateController/viewerState.base";
+
+@Component({
+  selector: 'currently-selected-regions',
+  templateUrl: './currentlySelectedRegions.template.html',
+  styleUrls: [
+    './currentlySelectedRegions.style.css'
+  ]
+})
+
+export class CurrentlySelectedRegions {
+
+  
+  public regionSelected$: Observable<any[]>
+  
+  constructor(
+    private store$: Store<any>
+  ){
+
+    this.regionSelected$ = this.store$.pipe(
+      select('viewerState'),
+      select('regionsSelected'),
+      startWith([]),
+      distinctUntilChanged()
+    )
+  }
+
+  public deselectRegion(event: MouseEvent, region: any){
+    this.store$.dispatch({
+      type: DESELECT_REGIONS,
+      deselectRegions: [region]
+    })
+  }
+
+  public gotoRegion(event: MouseEvent, region:any){
+    this.store$.dispatch({
+      type: VIEWERSTATE_CONTROLLER_ACTION_TYPES.DOUBLE_CLICK_ON_REGIONHIERARCHY,
+      payload: { region }
+    })
+  }
+}
\ No newline at end of file
diff --git a/src/ui/viewerStateController/regionsListView/currentlySelectedRegions/currentlySelectedRegions.style.css b/src/ui/viewerStateController/regionsListView/currentlySelectedRegions/currentlySelectedRegions.style.css
new file mode 100644
index 0000000000000000000000000000000000000000..c8d6803350d048c3d3214d787612704d3487a520
--- /dev/null
+++ b/src/ui/viewerStateController/regionsListView/currentlySelectedRegions/currentlySelectedRegions.style.css
@@ -0,0 +1,9 @@
+mat-chip-list >>> .mat-chip-list-wrapper
+{
+  height: 100%;
+}
+
+mat-chip-list
+{
+  padding: 0.5rem;
+}
diff --git a/src/ui/viewerStateController/regionsListView/currentlySelectedRegions/currentlySelectedRegions.template.html b/src/ui/viewerStateController/regionsListView/currentlySelectedRegions/currentlySelectedRegions.template.html
new file mode 100644
index 0000000000000000000000000000000000000000..0a3e1fa75dfbb6698122c160e4c27c7b5358ede3
--- /dev/null
+++ b/src/ui/viewerStateController/regionsListView/currentlySelectedRegions/currentlySelectedRegions.template.html
@@ -0,0 +1,24 @@
+<mat-chip-list class="d-block h-100">
+  <cdk-virtual-scroll-viewport
+    class="w-100 h-100 overflow-x-hidden"
+    [itemSize]="32">
+    <mat-chip
+      *cdkVirtualFor="let region of (regionSelected$ | async)"
+      class="w-90">
+      <span class="flex-grow-1 flex-shrink-1 text-truncate">
+        {{ region.name }}
+      </span>
+      <button
+        *ngIf="region.position"
+        (click)="gotoRegion($event, region)"
+        mat-icon-button>
+        <i class="fas fa-map-marked-alt"></i>
+      </button>
+      <button
+        (click)="deselectRegion($event, region)"
+        mat-icon-button>
+        <i class="fas fa-trash"></i>
+      </button>
+    </mat-chip>
+  </cdk-virtual-scroll-viewport>
+</mat-chip-list>
diff --git a/src/ui/viewerStateController/regionsListView/simpleRegionsListView/regionListView.component.ts b/src/ui/viewerStateController/regionsListView/simpleRegionsListView/regionListView.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..8a964af89956e988fff8fc2b7230c784e002ab3a
--- /dev/null
+++ b/src/ui/viewerStateController/regionsListView/simpleRegionsListView/regionListView.component.ts
@@ -0,0 +1,18 @@
+import { Component, ChangeDetectionStrategy, Input, Output, EventEmitter } from "@angular/core";
+
+@Component({
+  selector: 'regions-list-view',
+  templateUrl: './regionListView.template.html',
+  styleUrls: [
+    './regionListView.style.css'
+  ],
+  changeDetection: ChangeDetectionStrategy.OnPush
+})
+
+export class RegionsListView{
+  @Input() horizontal: boolean = false
+
+  @Input() regionsSelected: any[] = []
+  @Output() deselectRegion: EventEmitter<any> = new EventEmitter()
+  @Output() gotoRegion: EventEmitter<any> = new EventEmitter()
+}
\ No newline at end of file
diff --git a/src/ui/viewerStateController/regionsListView/simpleRegionsListView/regionListView.style.css b/src/ui/viewerStateController/regionsListView/simpleRegionsListView/regionListView.style.css
new file mode 100644
index 0000000000000000000000000000000000000000..fda82d0bacf99f1f7d596212fe2d15051e9d5354
--- /dev/null
+++ b/src/ui/viewerStateController/regionsListView/simpleRegionsListView/regionListView.style.css
@@ -0,0 +1,20 @@
+mat-chip-list >>> .mat-chip-list-wrapper
+{
+  height: 100%;
+}
+cdk-virtual-scroll-viewport.cdk-virtual-scroll-orientation-horizontal
+{
+  overflow-y: hidden;
+}
+cdk-virtual-scroll-viewport.cdk-virtual-scroll-orientation-horizontal >>> .cdk-virtual-scroll-content-wrapper
+{
+  display: flex;
+  flex-direction: row;
+  flex-wrap: nowrap;
+}
+
+
+cdk-virtual-scroll-viewport.cdk-virtual-scroll-orientation-horizontal mat-chip
+{
+  flex: 0 0 200px;
+}
\ No newline at end of file
diff --git a/src/ui/viewerStateController/regionsListView/simpleRegionsListView/regionListView.template.html b/src/ui/viewerStateController/regionsListView/simpleRegionsListView/regionListView.template.html
new file mode 100644
index 0000000000000000000000000000000000000000..82f37f44b76aae6af087a2714eef32d241186f01
--- /dev/null
+++ b/src/ui/viewerStateController/regionsListView/simpleRegionsListView/regionListView.template.html
@@ -0,0 +1,64 @@
+<mat-chip-list class="p-1 d-block h-100 w-100">
+  <ng-container *ngTemplateOutlet="horizontal ? horizontalTmpl : verticalTmpl">
+  </ng-container>
+</mat-chip-list>
+
+<!-- whilst it would be quite clever to dynamically change the few properties
+virtual scroll needs to be re init'ed for it to work well
+TODO check if this can be achieved with detach/attach -->
+<ng-template #verticalTmpl>
+
+  <cdk-virtual-scroll-viewport
+    orientation="vertical"
+    class="w-100 h-100 overflow-hidden"
+    itemSize="32">
+
+    <mat-chip *cdkVirtualFor="let region of regionsSelected"
+      [matTooltip]="region.name"
+      class="w-100" >
+      <span class="flex-grow-1 flex-shrink-1 text-truncate">
+        {{ region.name }}
+      </span>
+      <button
+        *ngIf="region.position"
+        iav-stop="mousedown click"
+        (click)="gotoRegion.emit(region)"
+        mat-icon-button>
+        <i class="fas fa-map-marked-alt"></i>
+      </button>
+      <button
+        iav-stop="mousedown click"
+        (click)="deselectRegion.emit(region)"
+        mat-icon-button>
+        <i class="fas fa-trash"></i>
+      </button>
+    </mat-chip>
+  </cdk-virtual-scroll-viewport>
+</ng-template>
+
+<ng-template #horizontalTmpl>
+  <cdk-virtual-scroll-viewport
+    orientation="horizontal"
+    class="w-100 h-100"
+    itemSize="200">
+
+    <mat-chip *cdkVirtualFor="let region of regionsSelected">
+      <span class="flex-grow-1 flex-shrink-1 text-truncate">
+        {{ region.name }}
+      </span>
+      <button
+        *ngIf="region.position"
+        iav-stop="mousedown click"
+        (click)="gotoRegion.emit(region)"
+        mat-icon-button>
+        <i class="fas fa-map-marked-alt"></i>
+      </button>
+      <button
+        iav-stop="mousedown click"
+        (click)="deselectRegion.emit(region)"
+        mat-icon-button>
+        <i class="fas fa-trash"></i>
+      </button>
+    </mat-chip>
+  </cdk-virtual-scroll-viewport>
+</ng-template>
\ No newline at end of file
diff --git a/src/ui/viewerStateController/viewerState.base.ts b/src/ui/viewerStateController/viewerState.base.ts
new file mode 100644
index 0000000000000000000000000000000000000000..957be297a44f2f030fa0c0e84d7a697043239b2f
--- /dev/null
+++ b/src/ui/viewerStateController/viewerState.base.ts
@@ -0,0 +1,215 @@
+import { ViewChild, TemplateRef, OnInit } from "@angular/core";
+import { Store, select } from "@ngrx/store";
+import { Observable, Subscription } from "rxjs";
+import { distinctUntilChanged, shareReplay, filter } from "rxjs/operators";
+import { SELECT_REGIONS, USER_CONFIG_ACTION_TYPES } from "src/services/stateStore.service";
+import { MatSelectChange, MatBottomSheet, MatBottomSheetRef } from "@angular/material";
+import { DialogService } from "src/services/dialogService.service";
+import { RegionSelection } from "src/services/state/userConfigState.store";
+
+
+const compareWith = (o, n) => !o || !n
+? false
+: o.name === n.name
+
+export class ViewerStateBase implements OnInit{
+
+  @ViewChild('savedRegionBottomSheetTemplate', {read:TemplateRef}) savedRegionBottomSheetTemplate: TemplateRef<any>
+
+  public focused: boolean = false
+
+  private subscriptions: Subscription[] = []
+
+  public availableTemplates$: Observable<any[]>
+  public availableParcellations$: Observable<any[]>
+
+  public templateSelected$: Observable<any>
+  public parcellationSelected$: Observable<any>
+  public regionsSelected$: Observable<any>
+
+  public savedRegionsSelections$: Observable<any[]>
+
+  private dismissToastHandler: () => void
+
+  public compareWith = compareWith
+
+  private savedRegionBottomSheetRef: MatBottomSheetRef
+
+  constructor(
+    private store$: Store<any>,
+    private dialogService: DialogService,
+    private bottomSheet: MatBottomSheet
+  ){
+    const viewerState$ = this.store$.pipe(
+      select('viewerState'),
+      shareReplay(1)
+    )
+
+    this.savedRegionsSelections$ = this.store$.pipe(
+      select('userConfigState'),
+      select('savedRegionsSelection'),
+      shareReplay(1)
+    )
+
+    this.templateSelected$ = viewerState$.pipe(
+      select('templateSelected'),
+      distinctUntilChanged()
+    )
+
+    this.parcellationSelected$ = viewerState$.pipe(
+      select('parcellationSelected'),
+      distinctUntilChanged(),
+      shareReplay(1)
+    )
+
+    this.regionsSelected$ = viewerState$.pipe(
+      select('regionsSelected'),
+      distinctUntilChanged(),
+      shareReplay(1)
+    )
+
+    this.availableTemplates$ = viewerState$.pipe(
+      select('fetchedTemplates'),
+      distinctUntilChanged()
+    )
+
+    this.availableParcellations$ = this.templateSelected$.pipe(
+      select('parcellations')
+    )
+    
+  }
+
+  ngOnInit(){
+    this.subscriptions.push(
+      this.savedRegionsSelections$.pipe(
+        filter(srs => srs.length === 0)
+      ).subscribe(() => this.savedRegionBottomSheetRef && this.savedRegionBottomSheetRef.dismiss())
+    )
+  }
+
+  handleTemplateChange(event:MatSelectChange){
+    
+    this.store$.dispatch({
+      type: ACTION_TYPES.SELECT_TEMPLATE_WITH_NAME,
+      payload: {
+        name: event.value
+      }
+    })
+  }
+
+  handleParcellationChange(event:MatSelectChange){
+    if (!event.value) return
+    this.store$.dispatch({
+      type: ACTION_TYPES.SELECT_PARCELLATION_WITH_NAME,
+      payload: {
+        name: event.value
+      }
+    })
+  }
+
+  loadSavedRegion(event:MouseEvent, savedRegionsSelection:RegionSelection){
+    this.store$.dispatch({
+      type: USER_CONFIG_ACTION_TYPES.LOAD_REGIONS_SELECTION,
+      payload: {
+        savedRegionsSelection
+      }
+    })
+  }
+
+  public editSavedRegion(event: MouseEvent, savedRegionsSelection: RegionSelection){
+    event.preventDefault()
+    event.stopPropagation()
+    this.dialogService.getUserInput({
+      defaultValue: savedRegionsSelection.name,
+      placeholder: `Enter new name`,
+      title: 'Edit name',
+      iconClass: null
+    }).then(name => {
+      if (!name) throw new Error('user cancelled')
+      this.store$.dispatch({
+        type: USER_CONFIG_ACTION_TYPES.UPDATE_REGIONS_SELECTION,
+        payload: {
+          ...savedRegionsSelection,
+          name
+        }
+      })
+    }).catch(e => {
+      // TODO catch user cancel
+    })
+  }
+  public removeSavedRegion(event: MouseEvent, savedRegionsSelection: RegionSelection){
+    event.preventDefault()
+    event.stopPropagation()
+    this.store$.dispatch({
+      type: USER_CONFIG_ACTION_TYPES.DELETE_REGIONS_SELECTION,
+      payload: {
+        ...savedRegionsSelection
+      }
+    })
+  }
+
+
+  displayActiveParcellation(parcellation:any){
+    return `<div class="d-flex"><small>Parcellation</small> <small class = "flex-grow-1 mute-text">${parcellation ? '(' + parcellation.name + ')' : ''}</small> <span class = "fas fa-caret-down"></span></div>`
+  }
+
+  displayActiveTemplate(template: any) {
+    return `<div class="d-flex"><small>Template</small> <small class = "flex-grow-1 mute-text">${template ? '(' + template.name + ')' : ''}</small> <span class = "fas fa-caret-down"></span></div>`
+  }
+
+  public loadSelection(event: MouseEvent){
+    this.focused = true
+    
+    this.savedRegionBottomSheetRef = this.bottomSheet.open(this.savedRegionBottomSheetTemplate)
+    this.savedRegionBottomSheetRef.afterDismissed()
+      .subscribe(val => {
+        
+      }, error => {
+
+      }, () => {
+        this.focused = false
+        this.savedRegionBottomSheetRef = null
+      })
+  }
+
+  public saveSelection(event: MouseEvent){
+    this.focused = true
+    this.dialogService.getUserInput({
+      defaultValue: `Saved Region`,
+      placeholder: `Name the selection`,
+      title: 'Save region selection',
+      iconClass: 'far fa-bookmark'
+    })
+      .then(name => {
+        if (!name) throw new Error('User cancelled')
+        this.store$.dispatch({
+          type: USER_CONFIG_ACTION_TYPES.SAVE_REGIONS_SELECTION,
+          payload: { name }
+        })
+      })
+      .catch(e => {
+        /**
+         * USER CANCELLED, HANDLE
+         */
+      })
+      .finally(() => this.focused = false)
+  }
+
+  public deselectAllRegions(event: MouseEvent){
+    this.store$.dispatch({
+      type: SELECT_REGIONS,
+      selectRegions: []
+    })
+  }
+
+}
+
+const ACTION_TYPES = {
+  SINGLE_CLICK_ON_REGIONHIERARCHY: 'SINGLE_CLICK_ON_REGIONHIERARCHY',
+  DOUBLE_CLICK_ON_REGIONHIERARCHY: 'DOUBLE_CLICK_ON_REGIONHIERARCHY',
+  SELECT_TEMPLATE_WITH_NAME: 'SELECT_TEMPLATE_WITH_NAME',
+  SELECT_PARCELLATION_WITH_NAME: 'SELECT_PARCELLATION_WITH_NAME',
+
+}
+
+export const VIEWERSTATE_CONTROLLER_ACTION_TYPES = ACTION_TYPES
diff --git a/src/ui/viewerStateController/viewerState.pipes.ts b/src/ui/viewerStateController/viewerState.pipes.ts
new file mode 100644
index 0000000000000000000000000000000000000000..659d35778f3378966cb58f82d47f789e9ca95d89
--- /dev/null
+++ b/src/ui/viewerStateController/viewerState.pipes.ts
@@ -0,0 +1,38 @@
+import { Pipe, PipeTransform } from "@angular/core";
+import { RegionSelection } from "src/services/state/userConfigState.store";
+
+@Pipe({
+  name: 'binSavedRegionsSelectionPipe'
+})
+
+export class BinSavedRegionsSelectionPipe implements PipeTransform{
+  public transform(regionSelections:RegionSelection[]):{parcellationSelected:any, templateSelected:any, regionSelections: RegionSelection[]}[]{
+    const returnMap = new Map()
+    for (let regionSelection of regionSelections){
+      const key = `${regionSelection.templateSelected.name}\n${regionSelection.parcellationSelected.name}`
+      const existing = returnMap.get(key)
+      if (existing) existing.push(regionSelection)
+      else returnMap.set(key, [regionSelection])
+    }
+    return Array.from(returnMap)
+      .map(([_, regionSelections]) => {
+        const {parcellationSelected = null, templateSelected = null} = regionSelections[0] || {}
+        return {
+          regionSelections,
+          parcellationSelected,
+          templateSelected
+        }
+      })
+  }
+}
+
+@Pipe({
+  name: 'savedRegionsSelectionBtnDisabledPipe'
+})
+
+export class SavedRegionsSelectionBtnDisabledPipe implements PipeTransform{
+  public transform(regionSelection: RegionSelection, templateSelected: any, parcellationSelected: any): boolean{
+    return regionSelection.parcellationSelected.name !== parcellationSelected.name
+      || regionSelection.templateSelected.name !== templateSelected.name
+  }
+}
\ No newline at end of file
diff --git a/src/ui/viewerStateController/viewerState.useEffect.ts b/src/ui/viewerStateController/viewerState.useEffect.ts
new file mode 100644
index 0000000000000000000000000000000000000000..4dc0831faf978faf05d2ea2a3152a9714c2541bf
--- /dev/null
+++ b/src/ui/viewerStateController/viewerState.useEffect.ts
@@ -0,0 +1,208 @@
+import { Subscription, Observable } from "rxjs";
+import { Injectable, OnInit, OnDestroy } from "@angular/core";
+import { Actions, ofType, Effect } from "@ngrx/effects";
+import { Store, select, Action } from "@ngrx/store";
+import { shareReplay, distinctUntilChanged, map, withLatestFrom, filter } from "rxjs/operators";
+import { VIEWERSTATE_CONTROLLER_ACTION_TYPES } from "./viewerState.base";
+import { CHANGE_NAVIGATION, SELECT_REGIONS, NEWVIEWER, GENERAL_ACTION_TYPES, SELECT_PARCELLATION, isDefined } from "src/services/stateStore.service";
+import { regionFlattener } from "src/util/regionFlattener";
+import { UIService } from "src/services/uiService.service";
+
+@Injectable({
+  providedIn: 'root'
+})
+
+export class ViewerStateControllerUseEffect implements OnInit, OnDestroy{
+
+  private subscriptions: Subscription[] = []
+
+  private selectedRegions$: Observable<any[]>
+
+  @Effect()
+  singleClickOnHierarchy$: Observable<any>
+
+  @Effect()
+  selectTemplateWithName$: Observable<any>
+  
+  @Effect()
+  selectParcellationWithName$: Observable<any>
+
+  @Effect()
+  doubleClickOnHierarchy$: Observable<any>
+
+  constructor(
+    private actions$: Actions,
+    private store$: Store<any>,
+    private uiService: UIService
+  ){
+    const viewerState$ = this.store$.pipe(
+      select('viewerState'),
+      shareReplay(1)
+    )
+
+    this.selectedRegions$ = viewerState$.pipe(
+      select('regionsSelected'),
+      distinctUntilChanged()
+    )
+
+    this.selectParcellationWithName$ = this.actions$.pipe(
+      ofType(VIEWERSTATE_CONTROLLER_ACTION_TYPES.SELECT_PARCELLATION_WITH_NAME),
+      map(action => {
+        const { payload = {} } = action as ViewerStateAction
+        const { name } = payload
+        return name
+      }),
+      filter(name => !!name),
+      withLatestFrom(viewerState$.pipe(
+        select('parcellationSelected')
+      )),
+      filter(([name,  parcellationSelected]) => {
+        if (parcellationSelected && parcellationSelected.name === name) return false
+        return true
+      }),
+      map(([name,  _]) => name),
+      withLatestFrom(viewerState$.pipe(
+        select('templateSelected')
+      )),
+      map(([name, templateSelected]) => {
+
+        const { parcellations: availableParcellations } = templateSelected
+        const newParcellation = availableParcellations.find(t => t.name === name)
+        if (!newParcellation) {
+          return {
+            type: GENERAL_ACTION_TYPES.ERROR,
+            payload: {
+              message: 'Selected parcellation not found.'
+            }
+          }
+        }
+        return {
+          type: SELECT_PARCELLATION,
+          selectParcellation: newParcellation
+        }
+      })
+    )
+    
+    this.selectTemplateWithName$ = this.actions$.pipe(
+      ofType(VIEWERSTATE_CONTROLLER_ACTION_TYPES.SELECT_TEMPLATE_WITH_NAME),
+      map(action => {
+        const { payload = {} } = action as ViewerStateAction
+        const { name } = payload
+        return name
+      }),
+      filter(name => !!name),
+      withLatestFrom(viewerState$.pipe(
+        select('templateSelected')
+      )),
+      filter(([name,  templateSelected]) => {
+        if (templateSelected && templateSelected.name === name) return false
+        return true
+      }),
+      map(([name,  templateSelected]) => name),
+      withLatestFrom(viewerState$.pipe(
+        select('fetchedTemplates')
+      )),
+      map(([name, availableTemplates]) => {
+        const newTemplateTobeSelected = availableTemplates.find(t => t.name === name)
+        if (!newTemplateTobeSelected) {
+          return {
+            type: GENERAL_ACTION_TYPES.ERROR,
+            payload: {
+              message: 'Selected template not found.'
+            }
+          }
+        }
+        return {
+          type: NEWVIEWER,
+          selectTemplate: newTemplateTobeSelected,
+          selectParcellation: newTemplateTobeSelected.parcellations[0]
+        }
+      })
+    )
+
+    this.doubleClickOnHierarchy$ = this.actions$.pipe(
+      ofType(VIEWERSTATE_CONTROLLER_ACTION_TYPES.DOUBLE_CLICK_ON_REGIONHIERARCHY),
+      map(action => {
+        const { payload = {} } = action as ViewerStateAction
+        const { region } = payload
+        if (!region) {
+          return {
+            type: GENERAL_ACTION_TYPES.ERROR,
+            payload: {
+              message: `Go to region: region not defined`
+            }
+          }
+        }
+
+        const { position } = region
+        if (!position) {
+          return {
+            type: GENERAL_ACTION_TYPES.ERROR,
+            payload: {
+              message: `${region.name} - does not have a position defined`
+            }
+          }
+        }
+
+        return {
+          type: CHANGE_NAVIGATION,
+          navigation: {
+            position,
+            animation: {}
+          }
+        }
+      })
+    )
+
+    this.singleClickOnHierarchy$ = this.actions$.pipe(
+      ofType(VIEWERSTATE_CONTROLLER_ACTION_TYPES.SINGLE_CLICK_ON_REGIONHIERARCHY),
+      withLatestFrom(this.selectedRegions$),
+      map(([action, regionsSelected]) => {
+
+        const {payload = {}} = action as ViewerStateAction
+        const { region } = payload
+
+        const flattenedRegion = regionFlattener(region).filter(r => isDefined(r.labelIndex))
+        const flattenedRegionNames = new Set(flattenedRegion.map(r => r.name))
+        const selectedRegionNames = new Set(regionsSelected.map(r => r.name))
+        const selectAll = flattenedRegion.every(r => !selectedRegionNames.has(r.name))
+        return {
+          type: SELECT_REGIONS,
+          selectRegions: selectAll
+            ? regionsSelected.concat(flattenedRegion)
+            : regionsSelected.filter(r => !flattenedRegionNames.has(r.name))
+        }
+      })
+    )
+  }
+
+  ngOnInit(){
+    this.subscriptions.push(
+      this.doubleClickOnHierarchy$.subscribe(({ region } = {}) => {
+        const { position } = region
+        if (position) {
+          this.store$.dispatch({
+            type: CHANGE_NAVIGATION,
+            navigation: {
+              position,
+              animation: {}
+            }
+          })
+        } else {
+          this.uiService.showMessage(`${region.name} does not have a position defined`)
+        }
+      })
+    )
+  }
+
+  ngOnDestroy(){
+    while(this.subscriptions.length > 0) {
+      this.subscriptions.pop().unsubscribe()
+    }
+  }
+}
+
+interface ViewerStateAction extends Action{
+  payload: any
+  config: any
+}
\ No newline at end of file
diff --git a/src/ui/viewerStateController/viewerStateCFull/viewerState.component.ts b/src/ui/viewerStateController/viewerStateCFull/viewerState.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..3513dfae1b67fdeab6cc1eeae5da1a0bdb5f9b46
--- /dev/null
+++ b/src/ui/viewerStateController/viewerStateCFull/viewerState.component.ts
@@ -0,0 +1,30 @@
+import { Component } from "@angular/core";
+import { Store } from "@ngrx/store";
+import { MatBottomSheet } from "@angular/material";
+import { DialogService } from "src/services/dialogService.service";
+
+import { ViewerStateBase } from '../viewerState.base'
+
+const compareWith = (o, n) => !o || !n
+  ? false
+  : o.name === n.name
+
+@Component({
+  selector: 'viewer-state-controller',
+  templateUrl: './viewerState.template.html',
+  styleUrls: [
+    './viewerState.style.css'
+  ]
+})
+
+export class ViewerStateController extends ViewerStateBase{
+
+  constructor(
+    store$: Store<any>,
+    dialogService: DialogService,
+    bottomSheet: MatBottomSheet
+  ){
+    super(store$,dialogService,bottomSheet)
+  }
+
+}
diff --git a/src/ui/viewerStateController/viewerStateCFull/viewerState.style.css b/src/ui/viewerStateController/viewerStateCFull/viewerState.style.css
new file mode 100644
index 0000000000000000000000000000000000000000..747387b8748ab888403820669adf8aad5bfc1a0b
--- /dev/null
+++ b/src/ui/viewerStateController/viewerStateCFull/viewerState.style.css
@@ -0,0 +1,27 @@
+.virtual-scroll-viewport-container
+{
+  height: 20em;
+  width: 20em;
+  overflow: hidden;
+}
+
+.virtual-scroll-row
+{
+  width: 20em;
+}
+
+/* required to match virtual scroll itemSize property */
+.virtual-scroll-unit
+{
+  height: 26px
+}
+
+.selected-region-container
+{
+  flex: 1 1 auto;
+}
+
+.selected-region-actionbtn
+{
+  flex: 0 0 auto;
+}
diff --git a/src/ui/viewerStateController/viewerStateCFull/viewerState.template.html b/src/ui/viewerStateController/viewerStateCFull/viewerState.template.html
new file mode 100644
index 0000000000000000000000000000000000000000..5f72c5990590ccc7a949b14f8937a737b9b9fb3e
--- /dev/null
+++ b/src/ui/viewerStateController/viewerStateCFull/viewerState.template.html
@@ -0,0 +1,192 @@
+<mat-card>
+
+  <!-- template selection -->
+  <mat-card-content class="d-inline-flex flex-column flex-nowrap w-100">
+
+    <div class="flex-grow-0 flex-shrink-0 d-flex flex-row flex-nowrap">
+      <mat-form-field class="flex-grow-1 flex-shrink-1 w-0">
+        <mat-label>
+          Template
+        </mat-label>
+        <mat-select
+          panelClass="no-max-width"
+          [value]="(templateSelected$ | async)?.name"
+          (selectionChange)="handleTemplateChange($event)"
+          (openedChange)="focused = $event">
+          <mat-option
+            *ngFor="let template of (availableTemplates$ | async)"
+            [value]="template.name">
+            {{ template.name }}
+          </mat-option>
+        </mat-select>
+      </mat-form-field>
+    
+      <ng-container *ngIf="templateSelected$ | async as templateSelected">
+        <!-- show on hover component -->
+        <sleight-of-hand
+          class="d-inline-block flex-grow-0 flex-shrink-0"
+          *ngIf="templateSelected | templateParcellationHasMoreInfoPipe as moreInfo">
+    
+          <!-- shown when off -->
+          <div sleight-of-hand-front>
+            <button
+              mat-icon-button>
+              <i class="fas fa-info"></i>
+            </button>
+          </div>
+    
+          <!-- shown on hover -->
+          <div class="d-flex flex-row align-items-start" sleight-of-hand-back>
+            <button class="flex-grow-0 flex-shrink-0" mat-icon-button>
+              <i class="fas fa-info"></i>
+            </button>
+    
+            <div class="position-relative">
+              <button class="position-relative invisible pe-none" mat-icon-button>
+                <i class="fas fa-info"></i>
+              </button>
+    
+              <mat-card *ngFor="let originDataset of moreInfo.originDatasets"
+                class="position-absolute left-0 top-0 w-40em">
+                <single-dataset-view
+                  [name]="moreInfo.name"
+                  [description]="moreInfo.description"
+                  [publications]="moreInfo.publications"
+                  [kgSchema]="originDataset && originDataset.kgSchema"
+                  [kgId]="originDataset && originDataset.kgId">
+                </single-dataset-view>
+              </mat-card>
+            </div>
+            
+          </div>
+        </sleight-of-hand>
+    
+      </ng-container>
+    </div>
+
+    <!-- parcellation selection -->
+    <div class="flex-grow-0 flex-shrink-0 d-flex flex-row flex-nowrap">
+      <mat-form-field
+        *ngIf="templateSelected$ | async as templateSelected"
+        class="flex-grow-1 flex-shrink-1 w-0">
+        <mat-label>
+          Parcellation
+        </mat-label>
+        <mat-select
+          panelClass="no-max-width"
+          (selectionChange)="handleParcellationChange($event)"
+          [value]="(parcellationSelected$ | async)?.name"
+          (openedChange)="focused = $event">
+          <mat-option
+            *ngFor="let parcellation of (templateSelected.parcellations | appendTooltipTextPipe)"
+            [value]="parcellation.name">
+            {{ parcellation.name }}
+          </mat-option>
+        </mat-select>
+      </mat-form-field>
+    
+      <ng-container *ngIf="parcellationSelected$ | async as parcellationSelected">
+        <!-- show on hover component -->
+        <sleight-of-hand
+          class="d-inline-block flex-grow-0 flex-shrink-0"
+          *ngIf="parcellationSelected | templateParcellationHasMoreInfoPipe as moreInfo">
+    
+          <!-- shown when off -->
+          <div sleight-of-hand-front>
+            <button
+              mat-icon-button>
+              <i class="fas fa-info"></i>
+            </button>
+          </div>
+    
+          <!-- shown on hover -->
+          <div class="d-flex flex-row align-items-start" sleight-of-hand-back>
+            <button class="flex-grow-0 flex-shrink-0" mat-icon-button>
+              <i class="fas fa-info"></i>
+            </button>
+    
+            <div class="position-relative">
+              <button class="position-relative invisible pe-none" mat-icon-button>
+                <i class="fas fa-info"></i>
+              </button>
+    
+              <mat-card *ngFor="let originDataset of moreInfo.originDatasets"
+                class="position-absolute left-0 top-0 w-40em">
+
+                <single-dataset-view
+                  [name]="moreInfo.name"
+                  [description]="moreInfo.description"
+                  [publications]="moreInfo.publications"
+                  [kgSchema]="originDataset && originDataset.kgSchema"
+                  [kgId]="originDataset && originDataset.kgId">
+                </single-dataset-view>
+              </mat-card>
+            </div>
+          </div>
+        </sleight-of-hand>
+      </ng-container>
+    </div>
+
+    <div class="flex-grow-1 flex-shrink-0">
+      <ng-content select="[card-content='append']">
+      </ng-content>
+    </div>
+  </mat-card-content>
+
+
+  <mat-card-footer>
+    <ng-content select="[card-footer]">
+    </ng-content>
+  </mat-card-footer>
+</mat-card>
+
+<!-- bottom sheet for saved regions  -->
+<ng-template #savedRegionBottomSheetTemplate>
+  <mat-action-list>
+
+    <!-- separated (binned) by template/parcellation -->
+    <ng-container *ngFor="let binnedRS of (savedRegionsSelections$ | async | binSavedRegionsSelectionPipe); let index = index">
+
+      <!-- only render divider if it is not the leading element -->
+      <mat-divider *ngIf="index !== 0"></mat-divider>
+
+      <!-- header -->
+      <h3 mat-subheader>
+        {{ binnedRS.templateSelected.name }} / {{ binnedRS.parcellationSelected.name }}
+      </h3>
+
+      <!-- ng for all saved regions -->
+      <button
+        *ngFor="let savedRegionsSelection of binnedRS.regionSelections"
+        (click)="loadSavedRegion($event, savedRegionsSelection)"
+        mat-list-item>
+        <!-- [class]="savedRegionsSelection | savedRegionsSelectionBtnDisabledPipe : (templateSelected$ | async) : (parcellationSelected$ | async) ? 'text-muted' : ''" -->
+        <!-- [disabled]="savedRegionsSelection | savedRegionsSelectionBtnDisabledPipe : (templateSelected$ | async) : (parcellationSelected$ | async)" -->
+        <!-- main content -->
+        <span class="flex-grow-0 flex-shrink-1">
+          {{ savedRegionsSelection.name }}
+        </span>
+        <small class="ml-1 mr-1 text-muted flex-grow-1 flex-shrink-0">
+          ({{ savedRegionsSelection.regionsSelected.length }} selected regions)
+        </small>
+
+        <!-- edit btn -->
+        <button
+          (mousedown)="$event.stopPropagation()"
+          (click)="editSavedRegion($event, savedRegionsSelection)"
+          mat-icon-button>
+          <i class="fas fa-edit"></i>
+        </button>
+
+        <!-- trash btn -->
+        <button
+          (mousedown)="$event.stopPropagation()"
+          (click)="removeSavedRegion($event, savedRegionsSelection)"
+          mat-icon-button
+          color="warn">
+          <i class="fas fa-trash"></i>
+        </button>
+      </button>
+    </ng-container>
+  </mat-action-list>
+</ng-template>
\ No newline at end of file
diff --git a/src/ui/viewerStateController/viewerStateCMini/viewerStateMini.component.ts b/src/ui/viewerStateController/viewerStateCMini/viewerStateMini.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..6652e980061961cc1d754acc1adac71da74c4a5d
--- /dev/null
+++ b/src/ui/viewerStateController/viewerStateCMini/viewerStateMini.component.ts
@@ -0,0 +1,25 @@
+import { Component } from "@angular/core";
+import { Store } from "@ngrx/store";
+import { MatBottomSheet } from "@angular/material";
+import { DialogService } from "src/services/dialogService.service";
+
+import { ViewerStateBase } from '../viewerState.base'
+
+@Component({
+  selector: 'viewer-state-mini',
+  templateUrl: './viewerStateMini.template.html',
+  styleUrls: [
+    './viewerStateMini.style.css'
+  ]
+})
+
+export class ViewerStateMini extends ViewerStateBase{
+
+  constructor(
+    store$: Store<any>,
+    dialogService: DialogService,
+    bottomSheet: MatBottomSheet
+  ){
+    super(store$,dialogService,bottomSheet)
+  }
+}
diff --git a/src/ui/viewerStateController/viewerStateCMini/viewerStateMini.style.css b/src/ui/viewerStateController/viewerStateCMini/viewerStateMini.style.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/src/ui/viewerStateController/viewerStateCMini/viewerStateMini.template.html b/src/ui/viewerStateController/viewerStateCMini/viewerStateMini.template.html
new file mode 100644
index 0000000000000000000000000000000000000000..420457e17890c693e79ebfc9a14f1fdc7b3dc5ee
--- /dev/null
+++ b/src/ui/viewerStateController/viewerStateCMini/viewerStateMini.template.html
@@ -0,0 +1,17 @@
+<span *ngIf="templateSelected$ | async as templateSelected">
+  {{ templateSelected.name }}
+</span>
+<br>
+<span *ngIf="parcellationSelected$ | async as parcellationSelected">
+  {{ parcellationSelected.name }}
+</span>
+
+<ng-container *ngIf="regionsSelected$ | async as regionsSelected">
+  <ng-container *ngIf="regionsSelected.length > 0">
+
+      <br>
+      <span>
+        {{ regionsSelected.length }} region{{ regionsSelected.length > 1 ? 's' : '' }} selected
+      </span>
+  </ng-container>
+</ng-container>
\ No newline at end of file
diff --git a/src/util/constants.ts b/src/util/constants.ts
new file mode 100644
index 0000000000000000000000000000000000000000..f1612bcb4b9294ee210508e448e5859952ed789a
--- /dev/null
+++ b/src/util/constants.ts
@@ -0,0 +1,13 @@
+export const LOCAL_STORAGE_CONST = {
+  GPU_LIMIT: 'fzj.xg.iv.GPU_LIMIT',
+  ANIMATION: 'fzj.xg.iv.ANIMATION_FLAG',
+  SAVED_REGION_SELECTIONS: 'fzj.xg.iv.SAVED_REGION_SELECTIONS',
+  MOBILE_UI: 'fzj.xg.iv.MOBILE_UI',
+  AGREE_COOKIE: 'fzj.xg.iv.AGREE_COOKIE',
+  AGREE_KG_TOS: 'fzj.xg.iv.AGREE_KG_TOS',
+
+  FAV_DATASET: 'fzj.xg.iv.FAV_DATASET'
+}
+
+export const COOKIE_VERSION = '0.3.0'
+export const KG_TOS_VERSION = '0.3.0'
diff --git a/src/util/directives/FixedMouseContextualContainerDirective.directive.ts b/src/util/directives/FixedMouseContextualContainerDirective.directive.ts
index 89409b75a48ac9cb797d4064e0e73887c6f21587..bf53ed23584df960562ea335dc983a961e102aa0 100644
--- a/src/util/directives/FixedMouseContextualContainerDirective.directive.ts
+++ b/src/util/directives/FixedMouseContextualContainerDirective.directive.ts
@@ -57,5 +57,4 @@ export class FixedMouseContextualContainerDirective {
       this.hide()
     }
   }
-
 }
\ No newline at end of file
diff --git a/src/util/directives/delayEvent.directive.ts b/src/util/directives/delayEvent.directive.ts
new file mode 100644
index 0000000000000000000000000000000000000000..0194e0dab10d9594a4e8ecefe279afc9ac73b063
--- /dev/null
+++ b/src/util/directives/delayEvent.directive.ts
@@ -0,0 +1,51 @@
+import { Directive, Input, OnChanges, OnDestroy, ElementRef, Output, EventEmitter } from "@angular/core";
+
+const VALID_EVENTNAMES = new Set([
+  'mousedown',
+  'mouseup',
+  'click',
+  'mouseenter',
+  'mouseleave',
+  'touchstart',
+  'touchmove',
+  'touchend'
+])
+
+@Directive({
+  selector: '[iav-delay-event]'
+})
+
+export class DelayEventDirective implements OnChanges, OnDestroy {
+
+  private evListener = (ev:Event) => setTimeout(() => this.delayedEmit.emit(ev))
+
+  @Input('iav-delay-event')
+  delayEvent: string = ''
+
+  @Output()
+  delayedEmit: EventEmitter<any> = new EventEmitter()
+
+  constructor(private el: ElementRef){
+
+  }
+
+  private destroyCb: (() => void)[] = []
+  ngOnChanges(){
+    this.ngOnDestroy()
+
+    if (!this.delayEvent || this.delayEvent === '') return
+    const el = this.el.nativeElement as HTMLElement
+    for (const evName of this.delayEvent.split(' ')){
+      if (VALID_EVENTNAMES.has(evName)) {
+        el.addEventListener(evName, this.evListener)
+        this.destroyCb.push(() => el.removeEventListener(evName, this.evListener))
+      } else {
+        console.warn(`${evName} is not a valid event name in the supported set`, VALID_EVENTNAMES)
+      }
+    }
+  }
+
+  ngOnDestroy(){
+    while(this.destroyCb.length > 0) this.destroyCb.pop()()
+  }
+}
\ No newline at end of file
diff --git a/src/util/directives/dragDrop.directive.ts b/src/util/directives/dragDrop.directive.ts
new file mode 100644
index 0000000000000000000000000000000000000000..83895d5f0c4b81e472eb3e6c714697037986e109
--- /dev/null
+++ b/src/util/directives/dragDrop.directive.ts
@@ -0,0 +1,89 @@
+import { Directive, Input, Output, EventEmitter, HostListener, ElementRef, OnInit, OnDestroy, HostBinding } from "@angular/core";
+import { MatSnackBar, MatSnackBarRef, SimpleSnackBar } from "@angular/material";
+import { Observable, fromEvent, merge, Subscription, of, from } from "rxjs";
+import { map, scan, distinctUntilChanged, debounceTime, tap, switchMap, takeUntil } from "rxjs/operators";
+
+@Directive({
+  selector: '[drag-drop]'
+})
+
+export class DragDropDirective implements OnInit, OnDestroy{
+
+  @Input()
+  snackText: string
+
+  @Output('drag-drop')
+  dragDropOnDrop: EventEmitter<File[]> = new EventEmitter()
+
+  @HostBinding('style.transition')
+  transition = `opacity 300ms ease-in`
+
+  @HostBinding('style.opacity')
+  opacity = null
+
+  public snackbarRef: MatSnackBarRef<SimpleSnackBar>
+
+  private dragover$: Observable<boolean>
+
+  @HostListener('dragover', ['$event'])
+  ondragover(ev:DragEvent){
+    ev.preventDefault()
+  }
+
+  @HostListener('drop', ['$event'])
+  ondrop(ev:DragEvent) {
+    ev.preventDefault()
+    this.reset()
+
+    this.dragDropOnDrop.emit(Array.from(ev.dataTransfer.files))
+  }
+
+  reset(){
+    if (this.snackbarRef) {
+      this.snackbarRef.dismiss()
+    }
+    this.opacity = null
+  }
+
+  private subscriptions: Subscription[] = []
+
+  ngOnInit(){
+    this.subscriptions.push(
+      this.dragover$.pipe(
+        debounceTime(16)
+      ).subscribe(flag => {
+        if (flag) {
+          this.snackbarRef = this.snackBar.open(this.snackText || `Drop file(s) here.`)
+          this.opacity = 0.2
+        } else {
+          this.reset()
+        }
+      })
+    )
+  }
+
+  ngOnDestroy(){
+    while(this.subscriptions.length > 0) {
+      this.subscriptions.pop().unsubscribe()
+    }
+  }
+
+  constructor(private snackBar: MatSnackBar, private el:ElementRef){
+    this.dragover$ = merge(
+      of(null),
+      fromEvent(this.el.nativeElement, 'drop')
+    ).pipe(
+      switchMap(() => merge(
+        fromEvent(this.el.nativeElement, 'dragenter').pipe(
+          map(() => 1)
+        ),
+        fromEvent(this.el.nativeElement, 'dragleave').pipe(
+          map(() => -1)
+        )
+      ).pipe(
+        scan((acc, curr) => acc + curr, 0),
+        map(val => val > 0)
+      ))
+    )
+  }
+}
\ No newline at end of file
diff --git a/src/util/directives/elementOutClick.directive.ts b/src/util/directives/elementOutClick.directive.ts
new file mode 100644
index 0000000000000000000000000000000000000000..b46f2fa97e4e71c103ac75dfdffc79ebd1db4843
--- /dev/null
+++ b/src/util/directives/elementOutClick.directive.ts
@@ -0,0 +1,19 @@
+import {Directive, ElementRef, EventEmitter, HostListener, Output} from "@angular/core";
+
+@Directive({
+    selector: '[elementOutClick]'
+})
+export class ElementOutClickDirective {
+    constructor(private elRef: ElementRef) { }
+
+    @Output() outsideClick = new EventEmitter()
+
+    @HostListener('document:click', ['$event', '$event.target'])
+    public onclick(event:MouseEvent, targetElement: HTMLElement): void{
+        if (!targetElement) {
+            return
+        }
+
+        this.outsideClick.emit(!this.elRef.nativeElement.contains(targetElement))
+    }
+}
diff --git a/src/util/directives/floatingMouseContextualContainer.directive.ts b/src/util/directives/floatingMouseContextualContainer.directive.ts
index 2f62b11aac7311055c9023ba1c32e83077807bbb..556052c751cc5953c797ed7bdbf3883dcdd744ae 100644
--- a/src/util/directives/floatingMouseContextualContainer.directive.ts
+++ b/src/util/directives/floatingMouseContextualContainer.directive.ts
@@ -1,4 +1,5 @@
 import { Directive, HostListener, HostBinding } from "@angular/core";
+import { DomSanitizer, SafeUrl } from "@angular/platform-browser";
 
 @Directive({
   selector: '[floatingMouseContextualContainerDirective]'
@@ -8,13 +9,21 @@ export class FloatingMouseContextualContainerDirective{
   
   private mousePos: [number, number] = [0, 0]
 
+  constructor(private sanitizer: DomSanitizer){
+
+  }
+
   @HostListener('document:mousemove', ['$event'])
   mousemove(event:MouseEvent){
     this.mousePos = [event.clientX, event.clientY]
+
+    this.transform = `translate(${this.mousePos[0]}px,${this.mousePos[1]}px)`
   }
 
+  @HostBinding('style')
+  style: SafeUrl = this.sanitizer.bypassSecurityTrustStyle('position: absolute; width: 0; height: 0; top: 0; left: 0;')
+
+
   @HostBinding('style.transform')
-  get transform(){
-    return `translate(${this.mousePos[0]}px,${this.mousePos[1]}px)`
-  }
+  transform: string = `translate(${this.mousePos[0]}px,${this.mousePos[1]}px)`
 }
\ No newline at end of file
diff --git a/src/util/directives/help.directive.ts b/src/util/directives/help.directive.ts
deleted file mode 100644
index 31257ba52dd6b781cc6313020937647f335816d9..0000000000000000000000000000000000000000
--- a/src/util/directives/help.directive.ts
+++ /dev/null
@@ -1,41 +0,0 @@
-import { Directive, ElementRef, Renderer2 } from '@angular/core'
-import { AtlasViewerConstantsServices } from '../../atlasViewer/atlasViewer.constantService.service';
-
-@Directive({
-  selector : 'div[helpdirective]'
-})
-export class HelpDirective{
-  constructor(
-    // rd2:Renderer2,
-    private elementRef:ElementRef,
-    private constantService:AtlasViewerConstantsServices
-  ){
-    /**
-     * TODO angular does not currently (7.1.2019) support capture events. when it does, use rd should be more efficient
-     */
-    // rd2.listen(elementRef.nativeElement, 'keydown', this.keydownHandler.bind(this))
-    
-  }
-
-  keydownHandler(ev:KeyboardEvent){
-    
-    const target = <HTMLElement> ev.target
-    const tagName = target.tagName
-
-    if (tagName === 'SELECT' || tagName === 'INPUT' || tagName === 'TEXTAREA')
-      return
-    
-    if (ev.key === 'h' || ev.key === 'H' || ev.key === '?') {
-      ev.stopPropagation()
-      ev.preventDefault()
-      /**
-       * call help modal
-       */
-      this.constantService.showHelpSubject$.next()
-    }
-  }
-
-  ngAfterViewInit(){
-    this.elementRef.nativeElement.addEventListener('keydown', this.keydownHandler.bind(this), true)
-  }
-}
\ No newline at end of file
diff --git a/src/util/directives/keyDownListener.directive.ts b/src/util/directives/keyDownListener.directive.ts
new file mode 100644
index 0000000000000000000000000000000000000000..b6423f210c9e4a754b3827e11e255482c294a802
--- /dev/null
+++ b/src/util/directives/keyDownListener.directive.ts
@@ -0,0 +1,96 @@
+import { Directive, Input, HostListener, Output, EventEmitter } from "@angular/core";
+
+const getFilterFn = (ev: KeyboardEvent, isDocument: boolean) => ({ type, key, target }: KeyListenerConfig): boolean => type === ev.type && ev.key === key && (target === 'document') === isDocument
+
+@Directive({
+  selector: '[iav-key-listener]'
+})
+
+export class KeyListner{
+
+  @Input('iav-key-listener')
+  keydownConfig: KeyListenerConfig[] = []
+
+  private isTextField(ev: KeyboardEvent):boolean{
+
+    const target = <HTMLElement> ev.target
+    const tagName = target.tagName
+
+    return (tagName === 'SELECT' || tagName === 'INPUT' || tagName === 'TEXTAREA') 
+  }
+
+  @HostListener('keydown', ['$event'])
+  keydown(ev: KeyboardEvent){
+    this.handleSelfListener(ev)
+  }
+
+  @HostListener('document:keydown', ['$event'])
+  documentKeydown(ev: KeyboardEvent){
+    this.handleDocumentListener(ev)
+  }
+
+  @HostListener('keyup', ['$event'])
+  keyup(ev: KeyboardEvent){
+    this.handleSelfListener(ev)
+  }
+
+  @HostListener('document:keyup', ['$event'])
+  documentKeyup(ev: KeyboardEvent){
+    this.handleDocumentListener(ev)
+  }
+
+  private handleSelfListener(ev: KeyboardEvent) {
+    if (!this.keydownConfig) return
+    if (this.isTextField(ev)) return
+
+    const filteredConfig = this.keydownConfig
+      .filter(getFilterFn(ev, false))
+      .map(config => {
+        return {
+          config,
+          ev
+        }
+      })
+    this.emitEv(filteredConfig)
+  }
+
+  private handleDocumentListener(ev:KeyboardEvent) {
+    if (!this.keydownConfig) return
+    if (this.isTextField(ev)) return
+
+    const filteredConfig = this.keydownConfig
+      .filter(getFilterFn(ev, true))
+      .map(config => {
+        return {
+          config,
+          ev
+        }
+      })
+    this.emitEv(filteredConfig)
+  }
+
+  private emitEv(items: {config:KeyListenerConfig, ev: KeyboardEvent}[]){
+    for (const item of items){
+      const { config, ev } = item as {config:KeyListenerConfig, ev: KeyboardEvent}
+
+      const { stop, prevent } = config
+      if (stop) ev.stopPropagation()
+      if (prevent) ev.preventDefault()
+
+      this.keyEvent.emit({
+        config, ev
+      })
+    }
+  }
+
+  @Output('iav-key-event') keyEvent = new EventEmitter<{ config: KeyListenerConfig, ev: KeyboardEvent }>()
+
+}
+
+export interface KeyListenerConfig{
+  type: 'keydown' | 'keyup'
+  key: string
+  target?: 'document'
+  stop: boolean
+  prevent: boolean
+}
diff --git a/src/util/directives/mouseOver.directive.spec.ts b/src/util/directives/mouseOver.directive.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..656931eecdb8e8a0dc05c3df70b752f21da79db9
--- /dev/null
+++ b/src/util/directives/mouseOver.directive.spec.ts
@@ -0,0 +1,50 @@
+import { temporalPositveScanFn } from './mouseOver.directive'
+import { Subject } from 'rxjs';
+import {} from 'jasmine'
+import { scan, take, skip } from 'rxjs/operators';
+
+const segmentsPositive = { segments: [{ hello: 'world' }] } as {segments:any}
+const segmentsNegative = { segments: null }
+
+const userLandmarkPostive = { userLandmark: true }
+const userLandmarkNegative = { userLandmark: null }
+
+describe('temporalPositveScanFn', () => {
+  const subscriptions = []
+  afterAll(() => {
+    while(subscriptions.length > 0) subscriptions.pop().unsubscribe()
+  })
+
+  it('should scan obs as expected', (done) => {
+
+    const source = new Subject()
+
+    const testFirstEv = source.pipe(
+      scan(temporalPositveScanFn, []),
+      take(1)
+    )
+
+    const testSecondEv = source.pipe(
+      scan(temporalPositveScanFn, []),
+      skip(1),
+      take(1)
+    )
+
+    const testThirdEv = source.pipe(
+      scan(temporalPositveScanFn, []),
+      skip(2),
+      take(1)
+    )
+    subscriptions.push(
+      testFirstEv.subscribe(
+        arr => expect(arr).toBe([ segmentsPositive ]),
+        null,
+        () => done()
+      )
+    )
+
+    source.next(segmentsPositive)
+    source.next(userLandmarkPostive)
+    source.next(segmentsNegative)
+  })
+})
diff --git a/src/util/directives/mouseOver.directive.ts b/src/util/directives/mouseOver.directive.ts
new file mode 100644
index 0000000000000000000000000000000000000000..4fa1fd26aa9d319be3f32a133427ca8f30ae236d
--- /dev/null
+++ b/src/util/directives/mouseOver.directive.ts
@@ -0,0 +1,223 @@
+import { Directive, Pipe, PipeTransform, SecurityContext } from "@angular/core";
+import { Store, select } from "@ngrx/store";
+import { filter, distinctUntilChanged, map, shareReplay, scan, startWith, withLatestFrom, tap } from "rxjs/operators";
+import { merge, Observable, combineLatest } from "rxjs";
+import { TransformOnhoverSegmentPipe } from "src/atlasViewer/onhoverSegment.pipe";
+import { SafeHtml, DomSanitizer } from "@angular/platform-browser";
+import { getNgIdLabelIndexFromId } from "src/services/stateStore.service";
+
+
+/**
+ * Scan function which prepends newest positive (i.e. defined) value
+ * 
+ * e.g. const source = new Subject()
+ * source.pipe(
+ *  scan(temporalPositveScanFn, [])
+ * ).subscribe(console.log) // outputs
+ * 
+ * 
+ * 
+ */
+export const temporalPositveScanFn = (acc: {segments:any, landmark:any, userLandmark: any}[], curr: {segments:any, landmark:any, userLandmark: any}) => {
+
+  const keys = Object.keys(curr)
+  const isPositive = keys.some(key => !!curr[key])
+    
+  return isPositive
+    ? [curr, ...(acc.filter(item => !keys.some(key => !!item[key])))] as {segments?:any, landmark?:any, userLandmark?: any}[]
+    : acc.filter(item => !keys.some(key => !!item[key]))
+}
+
+@Directive({
+  selector: '[iav-mouse-hover]',
+  exportAs: 'iavMouseHover'
+})
+
+export class MouseHoverDirective{
+
+  public onHoverObs$: Observable<{segments:any, landmark:any, userLandmark: any}>
+  public currentOnHoverObs$: Observable<{segments:any, landmark:any, userLandmark: any}>
+
+  constructor(private store$: Store<any>){
+
+    const onHoverUserLandmark$ = this.store$.pipe(
+      select('uiState'),
+      map(state => state.mouseOverUserLandmark)
+    )
+
+    const onHoverLandmark$ = combineLatest(
+      this.store$.pipe(
+        select('uiState'),
+        map(state => state.mouseOverLandmark)
+      ),
+      this.store$.pipe(
+        select('dataStore'),
+        select('fetchedSpatialData'),
+        startWith([])
+      )
+    ).pipe(
+      map(([landmark, spatialDatas]) => {
+        if(landmark === null) return landmark
+        const idx = Number(landmark.replace('label=',''))
+        if(isNaN(idx)) {
+          console.warn(`Landmark index could not be parsed as a number: ${landmark}`)
+          return {
+            landmarkName: idx
+          }
+        } else {
+          return {
+            ...spatialDatas[idx],
+            landmarkName: spatialDatas[idx].name
+          }
+        }
+      })
+    )
+
+    const onHoverSegments$ = this.store$.pipe(
+      select('uiState'),
+      select('mouseOverSegments'),
+      filter(v => !!v),
+      withLatestFrom(
+        this.store$.pipe(
+          select('viewerState'),
+          select('parcellationSelected'),
+          startWith(null)
+        )
+      ),
+      map(([ arr, parcellationSelected ]) => parcellationSelected && parcellationSelected.auxillaryMeshIndices
+        ? arr.filter(({ segment }) => {
+            // if segment is not a string (i.e., not labelIndexId) return true
+            if (typeof segment !== 'string') return true
+            const { labelIndex } = getNgIdLabelIndexFromId({ labelIndexId: segment })
+            return parcellationSelected.auxillaryMeshIndices.indexOf(labelIndex) < 0
+          })
+        : arr),
+      distinctUntilChanged((o, n) => o.length === n.length
+        && n.every(segment =>
+          o.find(oSegment => oSegment.layer.name === segment.layer.name
+            && oSegment.segment === segment.segment)))
+    )
+
+    const mergeObs = merge(
+      onHoverSegments$.pipe(
+        distinctUntilChanged(),
+        map(segments => {
+          return { segments }
+        })
+      ),
+      onHoverLandmark$.pipe(
+        distinctUntilChanged(),
+        map(landmark => {
+          return { landmark }
+        })
+      ),
+      onHoverUserLandmark$.pipe(
+        distinctUntilChanged(),
+        map(userLandmark => {
+          return { userLandmark }
+        })
+      )
+    ).pipe(
+      shareReplay(1)
+    )
+
+    this.onHoverObs$ = mergeObs.pipe(
+      scan((acc, curr) => {
+        return {
+          ...acc,
+          ...curr
+        }
+      }, { segments: null, landmark: null, userLandmark: null }),
+      shareReplay(1)
+    )
+
+    this.currentOnHoverObs$ = mergeObs.pipe(
+      scan(temporalPositveScanFn, []),
+      map(arr => arr[0]),
+      map(val => {
+        return {
+          segments: null,
+          landmark: null,
+          userLandmark: null,
+          ...val
+        }
+      }),
+      shareReplay(1)
+    )
+  }
+}
+
+
+@Pipe({
+  name: 'mouseOverTextPipe'
+})
+
+export class MouseOverTextPipe implements PipeTransform{
+
+  private transformOnHoverSegmentPipe: TransformOnhoverSegmentPipe
+  constructor(private sanitizer: DomSanitizer){
+    this.transformOnHoverSegmentPipe = new TransformOnhoverSegmentPipe(this.sanitizer)
+  }
+
+  private renderText = ({ label, obj }): SafeHtml[] => {
+    switch(label) {
+      case 'landmark':
+        return [this.sanitizer.sanitize(SecurityContext.HTML, obj.landmarkName)]
+      case 'segments':
+        return obj.map(({ segment }) => this.transformOnHoverSegmentPipe.transform(segment))
+      case 'userLandmark':
+        return [this.sanitizer.sanitize(SecurityContext.HTML, obj.id)]
+      default:
+        console.log(obj)
+        return [this.sanitizer.bypassSecurityTrustHtml(`Cannot be displayed: label: ${label}`)]
+    }
+  }
+
+  public transform(inc: {segments:any, landmark:any, userLandmark: any}): {label: string, text: SafeHtml[]} [] { 
+    const keys = Object.keys(inc)
+    return keys
+      // if is segments, filter out if lengtth === 0
+      .filter(key => Array.isArray(inc[key]) ? inc[key].length > 0 : true )
+      // for other properties, check if value is defined
+      .filter(key => !!inc[key])
+      .map(key => {
+        return {
+          label: key,
+          text: this.renderText({ label: key, obj: inc[key] })
+        }
+      })
+  }
+}
+
+@Pipe({
+  name: 'mouseOverIconPipe'
+})
+
+export class MouseOverIconPipe implements PipeTransform{
+
+  public transform(type: string): {fontSet:string, fontIcon:string}{
+
+    switch(type) {
+      case 'landmark':
+        return {
+          fontSet:'fas',
+          fontIcon: 'fa-map-marker-alt'
+        }
+      case 'segments':
+        return {
+          fontSet: 'fas',
+          fontIcon: 'fa-brain'
+        }
+      case 'userLandmark':
+        return {
+          fontSet:'fas',
+          fontIcon: 'fa-map-marker-alt'
+        }
+      default:
+        return {
+          fontSet: 'fas',
+          fontIcon: 'fa-file'  
+        }
+    }
+  }
+}
diff --git a/src/util/directives/showToast.directive.ts b/src/util/directives/showToast.directive.ts
deleted file mode 100644
index a4e1756b33569325f19e252379ecf1d9b12cb69d..0000000000000000000000000000000000000000
--- a/src/util/directives/showToast.directive.ts
+++ /dev/null
@@ -1,48 +0,0 @@
-import { Directive, Input, TemplateRef, HostListener, OnDestroy } from "@angular/core";
-import { ToastService } from "../../services/toastService.service";
-
-@Directive({
-  selector: '[showToast]'
-})
-
-export class ShowToastDirective implements OnDestroy{
-  @Input()
-  showToast : string | TemplateRef<any> = null
-
-  private _toastLength: number = 1000
-
-  @Input()
-  set toastLength(input:any){
-    if(typeof input === 'number'){
-      this._toastLength = input
-      return
-    }
-      
-    const parsedNumber = Number(input)
-    if(!Number.isNaN(parsedNumber)){
-      this._toastLength = parsedNumber
-    }
-  }
-
-  get toastLength(){
-    return this._toastLength
-  }
-
-  private dismissHandler : () => void
-
-  @HostListener('click', ['$event.target'])
-  click(ev:MouseEvent){
-    if(this.dismissHandler) this.dismissHandler()
-    this.dismissHandler = this.toastService.showToast(this.showToast, {
-      dismissable: true,
-      timeout: this.toastLength
-    })
-  }
-
-  constructor(private toastService:ToastService){
-  }
-
-  ngOnDestroy(){
-    if(this.dismissHandler) this.dismissHandler()
-  }
-}
\ No newline at end of file
diff --git a/src/util/directives/stopPropagation.directive.ts b/src/util/directives/stopPropagation.directive.ts
new file mode 100644
index 0000000000000000000000000000000000000000..6378efd89fa6360b039492af0487869ff3e8ceeb
--- /dev/null
+++ b/src/util/directives/stopPropagation.directive.ts
@@ -0,0 +1,52 @@
+import { Directive, Input, ElementRef, OnDestroy, OnChanges } from "@angular/core";
+
+const VALID_EVENTNAMES = new Set([
+  'mousedown',
+  'mouseup',
+  'click',
+  'mouseenter',
+  'mouseleave',
+  'touchstart',
+  'touchmove',
+  'touchend'
+])
+
+const stopPropagation = ev => ev.stopPropagation()
+
+@Directive({
+  selector: '[iav-stop]'
+})
+
+export class StopPropagationDirective implements OnChanges, OnDestroy{
+
+  @Input('iav-stop') stopString: string = ''
+
+  private destroyCb: (() => void)[] = []
+
+  constructor(private el: ElementRef){}
+
+  ngOnChanges(){
+    
+    this.ngOnDestroy()
+
+    if (!this.stopString || this.stopString === '') return
+
+    const element = (this.el.nativeElement as HTMLElement)
+    for (const evName of this.stopString.split(' ')){
+      if(VALID_EVENTNAMES.has(evName)){
+        element.addEventListener(evName, stopPropagation)
+        this.destroyCb.push(() => {
+          element.removeEventListener(evName, stopPropagation)
+        })
+      } else {
+        console.warn(`${evName} is not a valid event name in the supported set: `, VALID_EVENTNAMES)
+      }
+    }
+  }
+
+  ngOnDestroy(){
+    while (this.destroyCb.length > 0) {
+      this.destroyCb.pop()()
+    }
+  }
+}
\ No newline at end of file
diff --git a/src/util/directives/toastContainer.directive.ts b/src/util/directives/toastContainer.directive.ts
deleted file mode 100644
index f32c5346226341b32e88d1ecacfcb658589871a2..0000000000000000000000000000000000000000
--- a/src/util/directives/toastContainer.directive.ts
+++ /dev/null
@@ -1,74 +0,0 @@
-import { Directive, ViewContainerRef, ComponentFactoryResolver, TemplateRef, ComponentRef } from '@angular/core'
-import { ToastService, defaultToastConfig } from 'src/services/toastService.service';
-import { ToastComponent } from 'src/components/toast/toast.component';
-import { AtlasViewerAPIServices } from 'src/atlasViewer/atlasViewer.apiService.service';
-import { ToastHandler } from '../pluginHandlerClasses/toastHandler';
-
-@Directive({
-  selector: '[toastDirective]'
-})
-
-export class ToastContainerDirective{
-  constructor(
-    private viewContainerRef: ViewContainerRef,
-    private toastService: ToastService,
-    private cfr: ComponentFactoryResolver,
-    private apiService: AtlasViewerAPIServices
-  ){
-    const toastComponentFactory = this.cfr.resolveComponentFactory(ToastComponent)
-    
-    this.toastService.showToast = (message, config = {}) => {
-
-      const _config = {
-        ...defaultToastConfig,
-        ...config
-      } 
-      const toastComponent = this.viewContainerRef.createComponent(toastComponentFactory)
-      if(typeof message === 'string')
-        toastComponent.instance.message = message
-      if(message instanceof TemplateRef){
-        toastComponent.instance.messageContainer.createEmbeddedView(message as TemplateRef<any>)
-      }
-         
-      toastComponent.instance.dismissable = _config.dismissable
-      toastComponent.instance.timeout = _config.timeout
-
-      let subscription
-
-      const dismissToast = () => {
-        if(subscription) subscription.unsubscribe()
-        toastComponent.destroy()
-      }
-
-      subscription = toastComponent.instance.dismissed.subscribe(dismissToast)
-      return dismissToast
-    }
-
-    this.apiService.interactiveViewer.uiHandle.getToastHandler = () => {
-      const handler = new ToastHandler()
-      let toastComponent:ComponentRef<ToastComponent>
-      handler.show = () => {
-        toastComponent = this.viewContainerRef.createComponent(toastComponentFactory)
-
-        toastComponent.instance.dismissable = handler.dismissable
-        toastComponent.instance.message = handler.message
-        toastComponent.instance.htmlMessage = handler.htmlMessage
-        toastComponent.instance.timeout = handler.timeout
-
-        const _subscription = toastComponent.instance.dismissed.subscribe(userInitiated => {
-          _subscription.unsubscribe()
-          handler.hide()
-        })
-      }
-
-      handler.hide = () => {
-        if(toastComponent){
-          toastComponent.destroy()
-          toastComponent = null
-        }
-      }
-
-      return handler
-    }
-  }
-}
\ No newline at end of file
diff --git a/src/util/pipes/appendTooltipText.pipe.ts b/src/util/pipes/appendTooltipText.pipe.ts
new file mode 100644
index 0000000000000000000000000000000000000000..3295876c677f28e34bc92035ffa8824852aebee2
--- /dev/null
+++ b/src/util/pipes/appendTooltipText.pipe.ts
@@ -0,0 +1,23 @@
+import { Pipe, PipeTransform } from "@angular/core";
+
+/**
+ * TODO 
+ * merge this pipe into cpProp pipe
+ */
+
+@Pipe({
+  name: 'appendTooltipTextPipe'
+})
+
+export class AppendtooltipTextPipe implements PipeTransform{
+  public transform(array: any[]){
+    return array.map(item => {
+      const { properties = {} } = item
+      const { description: tooltipText } = properties
+      return {
+        ...item,
+        tooltipText
+      }
+    })
+  }
+}
\ No newline at end of file
diff --git a/src/util/pipes/doiPipe.pipe.spec.ts b/src/util/pipes/doiPipe.pipe.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..300f84ffc07790d02e8ea458ed3ccd03787c04fb
--- /dev/null
+++ b/src/util/pipes/doiPipe.pipe.spec.ts
@@ -0,0 +1,17 @@
+import {} from 'jasmine'
+import { DoiParserPipe } from './doiPipe.pipe'
+
+describe('doiPipe.pipe.ts', () => {
+  const pipe = new DoiParserPipe()
+  describe('DoiParsePIpe' , () => {
+    it('should parse string without prefix by appending doi prefix', () => {
+      const result = pipe.transform('123.456')
+      expect(result).toBe(`https://doi.org/123.456`)
+    })
+
+    it('should not append doi prefix if the first argument leads by http or https', () => {
+      expect(pipe.transform('http://google.com')).toBe('http://google.com')
+      expect(pipe.transform('https://google.com')).toBe('https://google.com')
+    })
+  })
+})
\ No newline at end of file
diff --git a/src/util/pipes/doiPipe.pipe.ts b/src/util/pipes/doiPipe.pipe.ts
new file mode 100644
index 0000000000000000000000000000000000000000..913401ec1a929b9936fdd10c34200439936e2e48
--- /dev/null
+++ b/src/util/pipes/doiPipe.pipe.ts
@@ -0,0 +1,12 @@
+import { Pipe, PipeTransform } from "@angular/core";
+
+@Pipe({
+  name: 'doiParserPipe'
+})
+
+export class DoiParserPipe implements PipeTransform{
+  public transform(s: string, prefix: string = 'https://doi.org/'){
+    const hasProtocol = /^https?\:\/\//.test(s)
+    return `${hasProtocol ? '' : prefix}${s}`
+  }
+}
\ No newline at end of file
diff --git a/src/util/pipes/filterNgLayer.pipe.ts b/src/util/pipes/filterNgLayer.pipe.ts
deleted file mode 100644
index ab14b3ab8556bcd85d6153119cc2667fb7f72132..0000000000000000000000000000000000000000
--- a/src/util/pipes/filterNgLayer.pipe.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { Pipe, PipeTransform } from "@angular/core";
-import { NgLayerInterface } from "src/atlasViewer/atlasViewer.component";
-
-@Pipe({
-  name: 'filterNgLayer'
-})
-
-export class FilterNgLayer implements PipeTransform{
-  public transform(excludedLayers: string[] = [], ngLayers: NgLayerInterface[]): NgLayerInterface[] {
-    const set = new Set(excludedLayers)
-    return ngLayers.filter(l => !set.has(l.name))
-  }
-}
\ No newline at end of file
diff --git a/src/util/pipes/filterWithString.pipe.ts b/src/util/pipes/filterWithString.pipe.ts
new file mode 100644
index 0000000000000000000000000000000000000000..ad492a76bab6e441c0d86535d711805af4f77bca
--- /dev/null
+++ b/src/util/pipes/filterWithString.pipe.ts
@@ -0,0 +1,13 @@
+import {Pipe, PipeTransform} from "@angular/core";
+
+@Pipe({
+    name: 'filterWithString'
+})
+export class FilterWithStringPipe implements PipeTransform {
+    public transform(value: any, ...args): any {
+        if (args[0])
+            return value.filter(pf => pf.name.toLowerCase().includes(args[0].toLowerCase()))
+        else
+            return value
+    }
+}
diff --git a/src/util/pipes/getFileExt.pipe.ts b/src/util/pipes/getFileExt.pipe.ts
new file mode 100644
index 0000000000000000000000000000000000000000..aea77ceba51c36451836366656529eef661a852c
--- /dev/null
+++ b/src/util/pipes/getFileExt.pipe.ts
@@ -0,0 +1,36 @@
+import { PipeTransform, Pipe } from "@angular/core";
+
+const NIFTI = `NIFTI Volume`
+const VTK = `VTK Mesh`
+
+const extMap = new Map([
+  ['.nii', NIFTI],
+  ['.nii.gz', NIFTI],
+  ['.vtk', VTK]
+])
+
+@Pipe({
+  name: 'getFileExtension'
+})
+
+export class GetFileExtension implements PipeTransform{
+  private regex: RegExp = new RegExp('(\\.[\\w\\.]*?)$')
+
+  private getRegexp(ext){
+    return new RegExp(`${ext.replace(/\./g, '\\.')}$`, 'i')
+  }
+
+  private detFileExt(filename:string):string{
+    for (let [key, val] of extMap){
+      if(this.getRegexp(key).test(filename)){
+        return val
+      }
+    }
+    return filename
+  }
+
+  public transform(filename:string):string{
+    return this.detFileExt(filename)
+  }
+}
+
diff --git a/src/util/pipes/getFileNameFromPathName.pipe.ts b/src/util/pipes/getFileNameFromPathName.pipe.ts
deleted file mode 100644
index d64a96c1c9de83ef55c9efa7f3f43e0181b9fe21..0000000000000000000000000000000000000000
--- a/src/util/pipes/getFileNameFromPathName.pipe.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import { Pipe, PipeTransform } from "@angular/core";
-
-
-@Pipe({
-  name : 'getFilenameFromPathname'
-})
-
-export class GetFilenameFromPathnamePipe implements PipeTransform{
-  public transform(pathname:string):string{
-    return pathname.split('/')[pathname.split('/').length - 1]
-  }
-}
\ No newline at end of file
diff --git a/src/util/pipes/getFilename.pipe.ts b/src/util/pipes/getFilename.pipe.ts
new file mode 100644
index 0000000000000000000000000000000000000000..76afea5627e1ce05a7f527727f99084f30557291
--- /dev/null
+++ b/src/util/pipes/getFilename.pipe.ts
@@ -0,0 +1,14 @@
+import { PipeTransform, Pipe } from "@angular/core";
+
+@Pipe({
+  name: 'getFilenamePipe'
+})
+
+export class GetFilenamePipe implements PipeTransform{
+  private regex: RegExp = new RegExp('[\\/\\\\]([\\w\\.]*?)$')
+  public transform(fullname: string): string{
+    return this.regex.test(fullname)
+      ? this.regex.exec(fullname)[1]
+      : fullname
+  }
+}
\ No newline at end of file
diff --git a/src/util/pipes/humanReadableFileSize.pipe.spec.ts b/src/util/pipes/humanReadableFileSize.pipe.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..802ce27a7586de3008a5f9031a5792df2b86b167
--- /dev/null
+++ b/src/util/pipes/humanReadableFileSize.pipe.spec.ts
@@ -0,0 +1,44 @@
+import { HumanReadableFileSizePipe } from './humanReadableFileSize.pipe'
+import {} from 'jasmine'
+
+
+describe('humanReadableFileSize.pipe.ts', () => {
+  describe('HumanReadableFileSizePipe', () => {
+    it('steps properly when nubmers ets large', () => {
+      const pipe = new HumanReadableFileSizePipe()
+      const num = 12
+      
+      expect(pipe.transform(num, 0)).toBe(`12 byte(s)`)
+      expect(pipe.transform(num * 1e3, 0)).toBe(`12 KB`)
+      expect(pipe.transform(num * 1e6, 0)).toBe(`12 MB`)
+      expect(pipe.transform(num * 1e9, 0)).toBe(`12 GB`)
+      expect(pipe.transform(num * 1e12, 0)).toBe(`12 TB`)
+
+      expect(pipe.transform(num * 1e15, 0)).toBe(`12000 TB`)
+    })
+
+    it('pads the correct zeros', () => {
+      const pipe = new HumanReadableFileSizePipe()
+      const num = 3.14159
+
+      expect(pipe.transform(num, 0)).toBe(`3 byte(s)`)
+      expect(pipe.transform(num, 1)).toBe(`3.1 byte(s)`)
+      expect(pipe.transform(num, 2)).toBe(`3.14 byte(s)`)
+      expect(pipe.transform(num, 3)).toBe(`3.142 byte(s)`)
+      expect(pipe.transform(num, 4)).toBe(`3.1416 byte(s)`)
+      expect(pipe.transform(num, 5)).toBe(`3.14159 byte(s)`)
+      expect(pipe.transform(num, 6)).toBe(`3.141590 byte(s)`)
+      expect(pipe.transform(num, 7)).toBe(`3.1415900 byte(s)`)
+    })
+
+    it('parses string as well as number', () => {
+      // TODO finish tests
+    })
+
+    it('throws when a non number is passed to either argument', () => {
+      // TODO finish tests
+    })
+
+
+  })
+})
\ No newline at end of file
diff --git a/src/util/pipes/humanReadableFileSize.pipe.ts b/src/util/pipes/humanReadableFileSize.pipe.ts
new file mode 100644
index 0000000000000000000000000000000000000000..77b3579b44ff0cfbce9b781e076fa1bef6b8587f
--- /dev/null
+++ b/src/util/pipes/humanReadableFileSize.pipe.ts
@@ -0,0 +1,28 @@
+import { PipeTransform, Pipe } from "@angular/core";
+
+export const steps = [
+  'byte(s)',
+  'KB',
+  'MB',
+  'GB',
+  'TB'
+]
+
+@Pipe({
+  name: 'humanReadableFileSizePipe'
+})
+
+export class HumanReadableFileSizePipe implements PipeTransform{
+  public transform(input: string | Number, precision: number = 2) {
+    let _input = Number(input)
+    if (!_input) throw new Error(`HumanReadableFileSizePipe needs a string or a number that can be parsed to number`)
+    let _precision = Number(precision)
+    if (_precision === NaN) throw new Error(`precision must be a number`)
+    let counter = 0
+    while (_input > 1000 && counter < 4) {
+      _input = _input / 1000
+      counter += 1
+    }
+    return `${_input.toFixed(precision)} ${steps[counter]}`
+  }
+}
\ No newline at end of file
diff --git a/src/util/pipes/kgSearchBtnColor.pipe.ts b/src/util/pipes/kgSearchBtnColor.pipe.ts
new file mode 100644
index 0000000000000000000000000000000000000000..c9bbb25bf655bbe4d5e90ef08768f058fae915f2
--- /dev/null
+++ b/src/util/pipes/kgSearchBtnColor.pipe.ts
@@ -0,0 +1,14 @@
+import { Pipe, PipeTransform } from "@angular/core";
+import { WidgetUnit } from "src/atlasViewer/widgetUnit/widgetUnit.component";
+
+@Pipe({
+  name: 'kgSearchBtnColorPipe'
+})
+
+export class KgSearchBtnColorPipe implements PipeTransform{
+  public transform([minimisedWidgetUnit, themedBtnCls]: [Set<WidgetUnit>, string], wu: WidgetUnit ){
+    return minimisedWidgetUnit.has(wu)
+      ? 'primary'
+      : 'accent'
+  }
+}
\ No newline at end of file
diff --git a/src/util/pipes/pluginBtnFabColor.pipe.ts b/src/util/pipes/pluginBtnFabColor.pipe.ts
new file mode 100644
index 0000000000000000000000000000000000000000..bfb11d4ae59e41107e8fa258be73a122c1b1de7c
--- /dev/null
+++ b/src/util/pipes/pluginBtnFabColor.pipe.ts
@@ -0,0 +1,15 @@
+import { Pipe, PipeTransform } from "@angular/core";
+
+@Pipe({
+  name: 'pluginBtnFabColorPipe'
+})
+
+export class PluginBtnFabColorPipe implements PipeTransform{
+  public transform([launchedSet, minimisedSet, themedBtnCls], pluginName){
+    return minimisedSet.has(pluginName)
+      ? 'primary'
+      : launchedSet.has(pluginName)
+        ? 'accent'
+        : 'basic'
+  }
+}
\ No newline at end of file
diff --git a/src/util/pipes/templateParcellationHasMoreInfo.pipe.ts b/src/util/pipes/templateParcellationHasMoreInfo.pipe.ts
new file mode 100644
index 0000000000000000000000000000000000000000..aab97596acd5dd8fa6d335e45486756134a001c8
--- /dev/null
+++ b/src/util/pipes/templateParcellationHasMoreInfo.pipe.ts
@@ -0,0 +1,47 @@
+import { Pipe, PipeTransform } from "@angular/core";
+import { Publication } from "src/services/stateStore.service";
+
+interface KgSchemaId {
+  kgSchema: string
+  kgId: string
+}
+
+interface MoreInfo {
+  name: string
+  description: string
+  publications: Publication[]
+  originDatasets: KgSchemaId[]
+  mindsId: KgSchemaId
+}
+
+const notNullNotEmptyString = (string) => !!string && string !== ''
+const notEmptyArray = (arr) => !!arr && arr instanceof Array && arr.length > 0
+
+@Pipe({
+  name: 'templateParcellationHasMoreInfoPipe'
+})
+
+export class TemplateParcellationHasMoreInfo implements PipeTransform{
+  public transform(obj: any):MoreInfo{
+
+    const { description, properties = {}, publications, name, originDatasets, mindsId } = obj
+    const { description:pDescriptions, publications: pPublications, name: pName, mindsId: pMindsId } = properties
+
+    const hasMoreInfo = notNullNotEmptyString(description)
+      || notNullNotEmptyString(pDescriptions)
+      || notEmptyArray(publications)
+      || notEmptyArray(pPublications)
+
+    return hasMoreInfo
+      ? {
+          name: pName || name,
+          description: pDescriptions || description,
+          publications: pPublications || publications,
+          originDatasets: notEmptyArray(originDatasets)
+            ? originDatasets
+            : [{ kgSchema: null, kgId: null }],
+          mindsId: pMindsId || mindsId
+        }
+      : null
+  }
+}
\ No newline at end of file
diff --git a/src/util/pluginHandlerClasses/toastHandler.ts b/src/util/pluginHandlerClasses/toastHandler.ts
index 80d696980b907641d384600bcfe3643163037fe8..5452dc78f492b9b7af2f927335910a18e2f48ec1 100644
--- a/src/util/pluginHandlerClasses/toastHandler.ts
+++ b/src/util/pluginHandlerClasses/toastHandler.ts
@@ -1,5 +1,5 @@
 export class ToastHandler{
-  message : string = 'handler.body'
+  message : string = 'Toast message'
   timeout : number = 3000
   dismissable : boolean = true
   show : () => void
diff --git a/src/util/util.module.ts b/src/util/util.module.ts
index a83857d6198306aad9e955f7247b01baf29e4a2e..229608e356073e3160be72dbbf29a12bf8592a87 100644
--- a/src/util/util.module.ts
+++ b/src/util/util.module.ts
@@ -1,9 +1,31 @@
 import { NgModule } from "@angular/core";
+import { FilterNullPipe } from "./pipes/filterNull.pipe";
+import { FilterRowsByVisbilityPipe } from "src/components/flatTree/filterRowsByVisibility.pipe";
+import { StopPropagationDirective } from "./directives/stopPropagation.directive";
+import { DelayEventDirective } from "./directives/delayEvent.directive";
+import { MouseHoverDirective, MouseOverTextPipe, MouseOverIconPipe } from "./directives/mouseOver.directive";
+import { KeyListner } from "./directives/keyDownListener.directive";
 
 @NgModule({
   declarations: [
+    FilterNullPipe,
+    FilterRowsByVisbilityPipe,
+    StopPropagationDirective,
+    DelayEventDirective,
+    MouseHoverDirective,
+    MouseOverTextPipe,
+    MouseOverIconPipe,
+    KeyListner
   ],
   exports: [
+    FilterNullPipe,
+    FilterRowsByVisbilityPipe,
+    StopPropagationDirective,
+    DelayEventDirective,
+    MouseHoverDirective,
+    MouseOverTextPipe,
+    MouseOverIconPipe,
+    KeyListner
   ]
 })
 
diff --git a/src/util/worker.js b/src/util/worker.js
index dd374c4c0d5457ac97783d3e08f671b054e36678..f5313880e961c533e72b8429bdf2e46d73e9fa27 100644
--- a/src/util/worker.js
+++ b/src/util/worker.js
@@ -1,5 +1,4 @@
 const validTypes = [
-  'CHECK_MESHES',
   'GET_LANDMARKS_VTK',
   'GET_USERLANDMARKS_VTK',
   'BUILD_REGION_SELECTION_TREE',
@@ -7,52 +6,12 @@ const validTypes = [
 ]
 
 const validOutType = [
-  'CHECKED_MESH',
   'ASSEMBLED_LANDMARKS_VTK',
   'ASSEMBLED_USERLANDMARKS_VTK',
   'RETURN_REBUILT_REGION_SELECTION_TREE',
   'UPDATE_PARCELLATION_REGIONS'
 ]
 
-const checkMeshes = (action) => {
-  
-  /* filtering now done on the angular level */
-  const baseUrl = action.baseUrl
-  fetch(`${baseUrl}/info`, {
-    referrerPolicy: 'no-referrer'
-  })
-    .then(res => res.json())
-    .then(({mesh}) => {
-      if (mesh)
-        return mesh
-      else 
-        throw new Error('mesh does not exist')
-    })
-    .then(meshPath => action.indices.forEach(index => {
-      fetch(`${baseUrl}/${meshPath}/${index}:0`, {
-        referrerPolicy: 'no-referrer'
-      })
-        .then(res => res.json())
-        .then(json => {
-          /* the perspectiveEvent only counts json that has fragments as a part of meshLoaded */
-          if(json.fragments && json.fragments.constructor === Array && json.fragments.length > 0){
-            postMessage({
-              type: 'CHECKED_MESH',
-              parcellationId: action.parcellationId,
-              checkedIndex: index,
-              baseUrl
-            })
-          }
-        })
-        .catch(error => {
-          /* no cors error is also caught here, but also printed to the console */
-        })
-    }))
-    .catch(error => {
-      // console.error('parsing info json error', error)
-    })
-}
-
 const vtkHeader = `# vtk DataFile Version 2.0
 Created by worker thread at https://github.com/HumanBrainProject/interactive-viewer
 ASCII
@@ -325,9 +284,6 @@ onmessage = (message) => {
   
   if(validTypes.findIndex(type => type === message.data.type) >= 0){
     switch(message.data.type){
-      case 'CHECK_MESHES':
-        checkMeshes(message.data)
-        return
       case 'GET_LANDMARKS_VTK':
         getLandmarksVtk(message.data)
         return
diff --git a/third_party/testSafari.js b/third_party/testSafari.js
new file mode 100644
index 0000000000000000000000000000000000000000..b56fa557b4dabeba4f993200723d8bb5bb21673e
--- /dev/null
+++ b/third_party/testSafari.js
@@ -0,0 +1,31 @@
+
+/**
+* Catching Safari 10 bug:
+* 
+* https://bugs.webkit.org/show_bug.cgi?id=171041
+* 
+*/
+
+(function(){
+  try{
+    eval('(()=>{\
+            let e = e => {\
+              console.log(e);\
+              for(let e of [1,2,3]){\
+                console.log(e);\
+              }\
+            }\
+        })()')
+  } catch (e) {
+    console.log(e)
+    const warning = 'Your browser cannot display the interactive viewer. Please use either Chrome >= 56 and/or Firefox >= 51'
+    console.log(warning)
+    const warningEl = document.createElement('h4')
+    warningEl.innerHTML = warning
+    const el = document.getElementsByTagName('atlas-viewer')
+    if(el.length > 0){
+      document.body.removeChild(el[0])
+    }
+    document.body.appendChild(warningEl)
+  }
+})()
\ No newline at end of file
diff --git a/webpack.aot.js b/webpack.aot.js
index 2387968a71f12e52d4752e116bc760f0f7c723b4..8c815798d118033bf6a7662bbf4e32980cbd74d1 100644
--- a/webpack.aot.js
+++ b/webpack.aot.js
@@ -19,7 +19,7 @@ module.exports = merge(staticAssets, {
   module: {
     rules: [
       {
-        test : /export_nehuba.*?\.js$|worker\.js/,
+        test : /third_party.*?\.js$|worker\.js/,
         use : {
           loader : 'file-loader',
           options: {
@@ -30,11 +30,11 @@ module.exports = merge(staticAssets, {
       {
         test: /(?:\.ngfactory\.js|\.ngstyle\.js|\.ts)$/,
         loader: '@ngtools/webpack',
-        exclude : /export_nehuba|plugin_example/
+        exclude : /third_party|plugin_example/
       },
       {
         test : /\.(html|css)$/,
-        exclude : /export\_nehuba|index|res\/css|plugin_example/,
+        exclude : /export\_nehuba|index|res\/css|plugin_example|material\/prebuilt-themes/,
         use : {
           loader : 'raw-loader',
         }
diff --git a/webpack.common.js b/webpack.common.js
index aafad55efaecb04b6f4684048c5fc6e91479d946..9f680d8ef445b10c2a672197ea510f1dba6033c8 100644
--- a/webpack.common.js
+++ b/webpack.common.js
@@ -10,7 +10,7 @@ module.exports = {
         exclude : /node_modules|[Ss]pec\.ts$/
       },
       {
-        test : /export_nehuba|.*?worker.*?\.js$/,
+        test : /third_party|.*?worker.*?\.js$/,
         use : {
           loader : 'file-loader',
           options: {
diff --git a/webpack.export.aot.js b/webpack.export.aot.js
index 8421c23bfbf643fbf0926c5e4d6e689d0a984200..fda5c27b38cc2f8a9208ea0db0b72110359510ab 100644
--- a/webpack.export.aot.js
+++ b/webpack.export.aot.js
@@ -18,7 +18,7 @@ module.exports = {
         test: /(?:\.ngfactory\.js|\.ngstyle\.js|\.ts)$/,
         // test : /\.ts$/,
         loader: '@ngtools/webpack',
-        exclude : /export_nehuba/
+        exclude : /third_party/
       },
       {
         test : /\.(html|css)$/,
diff --git a/webpack.ngassets.js b/webpack.ngassets.js
index 4d6909f89c0bf99160af17e73662edbeaebb1fec..de3c6bfd3608b77d072a9ea64aa06b39282f8ae0 100644
--- a/webpack.ngassets.js
+++ b/webpack.ngassets.js
@@ -3,7 +3,7 @@ module.exports = {
     rules : [
       {
         test : /(html|css)$/,
-        exclude : /export\_nehuba|index|plugin\_examples/,
+        exclude : /export\_nehuba|index|plugin\_examples|indigo-pink\.css/,
         use : {
           loader : 'file-loader',
           options : {
diff --git a/webpack.staticassets.js b/webpack.staticassets.js
index 6523e83f2a2128ce581bfaaac5f0755308807f92..05119ba58f3c746b113b673b7abb41849d63bfab 100644
--- a/webpack.staticassets.js
+++ b/webpack.staticassets.js
@@ -1,8 +1,19 @@
 const webpack = require('webpack')
+const MiniCssExtractPlugin = require('mini-css-extract-plugin')
 
 module.exports = {
   module : {
     rules : [
+      {
+        test: /\.scss$/,
+        use: [
+          {
+            loader: MiniCssExtractPlugin.loader
+          },
+          'css-loader',
+          'sass-loader'
+        ]
+      },
       {
         test : /jpg|png/,
         exclude : /export\_nehuba|index/,
@@ -36,10 +47,22 @@ module.exports = {
             context : 'src'
           }
         }]
+      },
+      {
+        test: /indigo-pink\.css/,
+        use: {
+          loader: 'file-loader',
+          options: {
+            name: '[name].[ext]'
+          }
+        }
       }
     ]
   },
   plugins : [
+    new MiniCssExtractPlugin({
+      filename: 'theme.css'
+    }),
     new webpack.DefinePlugin({
       PLUGINDEV : process.env.PLUGINDEV
         ? JSON.stringify(process.env.PLUGINDEV)
@@ -58,5 +81,10 @@ module.exports = {
       BACKEND_URL: JSON.stringify(process.env.BACKEND_URL || 'http://localhost:3000/')
     })
     // ...ignoreArr.map(dirname => new webpack.IgnorePlugin(/\.\/plugin_examples/))
-  ]
+  ],
+  resolve: {
+    extensions: [
+      '.scss'
+    ]
+  }
 }
\ No newline at end of file
diff --git a/webpack.test.js b/webpack.test.js
index 64e1192416be03d3dd5f48576b8be9eb4e3a51fe..713c1d28d4bf1a6638fbb0f1c9f61235c8fb0e8d 100644
--- a/webpack.test.js
+++ b/webpack.test.js
@@ -3,7 +3,7 @@ module.exports = {
     rules : [{
       test: /spec\.ts$|test/,
       loaders : ['ts-loader'],
-      exclude : /node_modules/
+      exclude : /node_modules|third_party/
     }]
   },
   resolve:{