{"id":2900,"date":"2022-07-04T14:22:03","date_gmt":"2022-07-04T14:22:03","guid":{"rendered":"https:\/\/otto-naegeli-preis.ch\/?page_id=2900"},"modified":"2022-07-11T08:05:42","modified_gmt":"2022-07-11T08:05:42","slug":"award-ceremony-2022","status":"publish","type":"page","link":"https:\/\/otto-naegeli-preis.ch\/de\/award-ceremony-2022\/","title":{"rendered":"Award Ceremony 2022"},"content":{"rendered":"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-1 fusion-flex-container fusion-parallax-none fullPageHeaderFixed nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-background-image:url(&quot;https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2020\/10\/backAward.jpg&quot;);--awb-background-size:cover;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1248px;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-0 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:0px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fullPageHeaderFixed\">  \n<div id=\"canvas\">\n<\/div>\n<\/div>\n<script id=\"vertexShader\" type=\"x-shader\/x-vertex\">\n  \/\/\n  \/\/ GLSL textureless classic 3D noise \"cnoise\",\n  \/\/ with an RSL-style periodic variant \"pnoise\".\n  \/\/ Author:  Stefan Gustavson (stefan.gustavson@liu.se)\n  \/\/ Version: 2011-10-11\n  \/\/\n  \/\/ Many thanks to Ian McEwan of Ashima Arts for the\n  \/\/ ideas for permutation and gradient selection.\n  \/\/\n  \/\/ Copyright (c) 2011 Stefan Gustavson. All rights reserved.\n  \/\/ Distributed under the MIT license. See LICENSE file.\n  \/\/ https:\/\/github.com\/ashima\/webgl-noise\n  \/\/\n  \n  vec3 mod289(vec3 x)\n  {\n    return x - floor(x * (1.0 \/ 289.0)) * 289.0;\n  }\n  \n  vec4 mod289(vec4 x)\n  {\n    return x - floor(x * (1.0 \/ 289.0)) * 289.0;\n  }\n  \n  vec4 permute(vec4 x)\n  {\n    return mod289(((x*34.0)+1.0)*x);\n  }\n  \n  vec4 taylorInvSqrt(vec4 r)\n  {\n    return 1.79284291400159 - 0.85373472095314 * r;\n  }\n  \n  vec3 fade(vec3 t) {\n    return t*t*t*(t*(t*6.0-15.0)+10.0);\n  }\n  \n  \/\/ Classic Perlin noise\n  float cnoise(vec3 P)\n  {\n    vec3 Pi0 = floor(P); \/\/ Integer part for indexing\n    vec3 Pi1 = Pi0 + vec3(1.0); \/\/ Integer part + 1\n    Pi0 = mod289(Pi0);\n    Pi1 = mod289(Pi1);\n    vec3 Pf0 = fract(P); \/\/ Fractional part for interpolation\n    vec3 Pf1 = Pf0 - vec3(1.0); \/\/ Fractional part - 1.0\n    vec4 ix = vec4(Pi0.x, Pi1.x, Pi0.x, Pi1.x);\n    vec4 iy = vec4(Pi0.yy, Pi1.yy);\n    vec4 iz0 = Pi0.zzzz;\n    vec4 iz1 = Pi1.zzzz;\n  \n    vec4 ixy = permute(permute(ix) + iy);\n    vec4 ixy0 = permute(ixy + iz0);\n    vec4 ixy1 = permute(ixy + iz1);\n  \n    vec4 gx0 = ixy0 * (1.0 \/ 7.0);\n    vec4 gy0 = fract(floor(gx0) * (1.0 \/ 7.0)) - 0.5;\n    gx0 = fract(gx0);\n    vec4 gz0 = vec4(0.5) - abs(gx0) - abs(gy0);\n    vec4 sz0 = step(gz0, vec4(0.0));\n    gx0 -= sz0 * (step(0.0, gx0) - 0.5);\n    gy0 -= sz0 * (step(0.0, gy0) - 0.5);\n  \n    vec4 gx1 = ixy1 * (1.0 \/ 7.0);\n    vec4 gy1 = fract(floor(gx1) * (1.0 \/ 7.0)) - 0.5;\n    gx1 = fract(gx1);\n    vec4 gz1 = vec4(0.5) - abs(gx1) - abs(gy1);\n    vec4 sz1 = step(gz1, vec4(0.0));\n    gx1 -= sz1 * (step(0.0, gx1) - 0.5);\n    gy1 -= sz1 * (step(0.0, gy1) - 0.5);\n  \n    vec3 g000 = vec3(gx0.x,gy0.x,gz0.x);\n    vec3 g100 = vec3(gx0.y,gy0.y,gz0.y);\n    vec3 g010 = vec3(gx0.z,gy0.z,gz0.z);\n    vec3 g110 = vec3(gx0.w,gy0.w,gz0.w);\n    vec3 g001 = vec3(gx1.x,gy1.x,gz1.x);\n    vec3 g101 = vec3(gx1.y,gy1.y,gz1.y);\n    vec3 g011 = vec3(gx1.z,gy1.z,gz1.z);\n    vec3 g111 = vec3(gx1.w,gy1.w,gz1.w);\n  \n    vec4 norm0 = taylorInvSqrt(vec4(dot(g000, g000), dot(g010, g010), dot(g100, g100), dot(g110, g110)));\n    g000 *= norm0.x;\n    g010 *= norm0.y;\n    g100 *= norm0.z;\n    g110 *= norm0.w;\n    vec4 norm1 = taylorInvSqrt(vec4(dot(g001, g001), dot(g011, g011), dot(g101, g101), dot(g111, g111)));\n    g001 *= norm1.x;\n    g011 *= norm1.y;\n    g101 *= norm1.z;\n    g111 *= norm1.w;\n  \n    float n000 = dot(g000, Pf0);\n    float n100 = dot(g100, vec3(Pf1.x, Pf0.yz));\n    float n010 = dot(g010, vec3(Pf0.x, Pf1.y, Pf0.z));\n    float n110 = dot(g110, vec3(Pf1.xy, Pf0.z));\n    float n001 = dot(g001, vec3(Pf0.xy, Pf1.z));\n    float n101 = dot(g101, vec3(Pf1.x, Pf0.y, Pf1.z));\n    float n011 = dot(g011, vec3(Pf0.x, Pf1.yz));\n    float n111 = dot(g111, Pf1);\n  \n    vec3 fade_xyz = fade(Pf0);\n    vec4 n_z = mix(vec4(n000, n100, n010, n110), vec4(n001, n101, n011, n111), fade_xyz.z);\n    vec2 n_yz = mix(n_z.xy, n_z.zw, fade_xyz.y);\n    float n_xyz = mix(n_yz.x, n_yz.y, fade_xyz.x);\n    return 2.2 * n_xyz;\n  }\n  \n  \/\/ Classic Perlin noise, periodic variant\n  float pnoise(vec3 P, vec3 rep)\n  {\n    vec3 Pi0 = mod(floor(P), rep); \/\/ Integer part, modulo period\n    vec3 Pi1 = mod(Pi0 + vec3(1.0), rep); \/\/ Integer part + 1, mod period\n    Pi0 = mod289(Pi0);\n    Pi1 = mod289(Pi1);\n    vec3 Pf0 = fract(P); \/\/ Fractional part for interpolation\n    vec3 Pf1 = Pf0 - vec3(1.0); \/\/ Fractional part - 1.0\n    vec4 ix = vec4(Pi0.x, Pi1.x, Pi0.x, Pi1.x);\n    vec4 iy = vec4(Pi0.yy, Pi1.yy);\n    vec4 iz0 = Pi0.zzzz;\n    vec4 iz1 = Pi1.zzzz;\n  \n    vec4 ixy = permute(permute(ix) + iy);\n    vec4 ixy0 = permute(ixy + iz0);\n    vec4 ixy1 = permute(ixy + iz1);\n  \n    vec4 gx0 = ixy0 * (1.0 \/ 7.0);\n    vec4 gy0 = fract(floor(gx0) * (1.0 \/ 7.0)) - 0.5;\n    gx0 = fract(gx0);\n    vec4 gz0 = vec4(0.5) - abs(gx0) - abs(gy0);\n    vec4 sz0 = step(gz0, vec4(0.0));\n    gx0 -= sz0 * (step(0.0, gx0) - 0.5);\n    gy0 -= sz0 * (step(0.0, gy0) - 0.5);\n  \n    vec4 gx1 = ixy1 * (1.0 \/ 7.0);\n    vec4 gy1 = fract(floor(gx1) * (1.0 \/ 7.0)) - 0.5;\n    gx1 = fract(gx1);\n    vec4 gz1 = vec4(0.5) - abs(gx1) - abs(gy1);\n    vec4 sz1 = step(gz1, vec4(0.0));\n    gx1 -= sz1 * (step(0.0, gx1) - 0.5);\n    gy1 -= sz1 * (step(0.0, gy1) - 0.5);\n  \n    vec3 g000 = vec3(gx0.x,gy0.x,gz0.x);\n    vec3 g100 = vec3(gx0.y,gy0.y,gz0.y);\n    vec3 g010 = vec3(gx0.z,gy0.z,gz0.z);\n    vec3 g110 = vec3(gx0.w,gy0.w,gz0.w);\n    vec3 g001 = vec3(gx1.x,gy1.x,gz1.x);\n    vec3 g101 = vec3(gx1.y,gy1.y,gz1.y);\n    vec3 g011 = vec3(gx1.z,gy1.z,gz1.z);\n    vec3 g111 = vec3(gx1.w,gy1.w,gz1.w);\n  \n    vec4 norm0 = taylorInvSqrt(vec4(dot(g000, g000), dot(g010, g010), dot(g100, g100), dot(g110, g110)));\n    g000 *= norm0.x;\n    g010 *= norm0.y;\n    g100 *= norm0.z;\n    g110 *= norm0.w;\n    vec4 norm1 = taylorInvSqrt(vec4(dot(g001, g001), dot(g011, g011), dot(g101, g101), dot(g111, g111)));\n    g001 *= norm1.x;\n    g011 *= norm1.y;\n    g101 *= norm1.z;\n    g111 *= norm1.w;\n  \n    float n000 = dot(g000, Pf0);\n    float n100 = dot(g100, vec3(Pf1.x, Pf0.yz));\n    float n010 = dot(g010, vec3(Pf0.x, Pf1.y, Pf0.z));\n    float n110 = dot(g110, vec3(Pf1.xy, Pf0.z));\n    float n001 = dot(g001, vec3(Pf0.xy, Pf1.z));\n    float n101 = dot(g101, vec3(Pf1.x, Pf0.y, Pf1.z));\n    float n011 = dot(g011, vec3(Pf0.x, Pf1.yz));\n    float n111 = dot(g111, Pf1);\n  \n    vec3 fade_xyz = fade(Pf0);\n    vec4 n_z = mix(vec4(n000, n100, n010, n110), vec4(n001, n101, n011, n111), fade_xyz.z);\n    vec2 n_yz = mix(n_z.xy, n_z.zw, fade_xyz.y);\n    float n_xyz = mix(n_yz.x, n_yz.y, fade_xyz.x);\n    return 1.5 * n_xyz;\n  }\n  \n  \/\/ Turbulence By Jaume Sanchez => https:\/\/codepen.io\/spite\/\n  \n  varying vec2 vUv;\n  varying float noise;\n  varying float qnoise;\n  varying float displacement;\n  \n  uniform float time;\n  uniform float pointscale;\n  uniform float decay;\n  uniform float complex;\n  uniform float waves;\n  uniform float eqcolor;\n  uniform bool fragment;\n  \n  float turbulence( vec3 p) {\n    float t = - 0.1;\n    for (float f = 1.0 ; f <= 3.0 ; f++ ){\n      float power = pow( 2.0, f );\n      t += abs( pnoise( vec3( power * p ), vec3( 10.0, 10.0, 10.0 ) ) \/ power );\n    }\n    return t;\n  }\n  \n  void main() {\n  \n    vUv = uv;\n  \n    noise = (1.0 *  - waves) * turbulence( decay * abs(normal + time));\n    qnoise = (2.0 *  - eqcolor) * turbulence( decay * abs(normal + time));\n    float b = pnoise( complex * (position) + vec3( 1.0 * time ), vec3( 100.0 ) );\n    \n    if (fragment == true) {\n      displacement = - sin(noise) + normalize(b * 0.5);\n    } else {\n      displacement = - sin(noise) + cos(b * 0.5);\n    }\n  \n    vec3 newPosition = (position) + (normal * displacement);\n    gl_Position = (projectionMatrix * modelViewMatrix) * vec4( newPosition, 1.0 );\n    gl_PointSize = (pointscale);\n    \/\/gl_ClipDistance[0];\n  \n  }\n  \n  \n<\/script>\n<script id=\"fragmentShader\" type=\"x-shader\/x-vertex\">\n  varying float qnoise;\n  \n  uniform float time;\n  uniform bool redhell;\n  \n  void main() {\n    float r, g, b;\n  \n    \n    if (!redhell == true) {\n      r = cos(qnoise + 0.5);\n      g = cos(qnoise - 0.5);\n      b = 0.0;\n    } else {\n      r = cos(qnoise + 0.5);\n      g = cos(qnoise - 0.5);\n      b = abs(qnoise);\n    }\n    gl_FragColor = vec4(r, g, b, 1.0);\n  }\n<\/script>\n<script>\n    \/\/ Three JS\n\nwindow.addEventListener(\"load\", init, false);\n\nfunction init() {\n  createWorld();\n  createPrimitive();\n  \/\/---\n  animation();\n}\n\nvar Theme = { _darkred: 0x000000 };\n\n\/\/--------------------------------------------------------------------\n\nvar scene, camera, renderer, container;\nvar start = Date.now();\nvar _width, _height;\nfunction createWorld() {\n  \/\/---\n  scene = new THREE.Scene();\n  \/\/scene.fog = new THREE.Fog(Theme._darkred, 8, 20);\n    renderer = new THREE.WebGLRenderer({ antialias: true, alpha: true });\n  renderer.setClearColor( 0x000000, 0 );\n  \n  container = document.getElementById('canvas');\n  _width = window.innerWidth;\n  _height = window.innerHeight;\n\n  renderer.setSize(_width, _height);\n  \n  container.appendChild(renderer.domElement);\n\n\n\/\/---\n  camera = new THREE.PerspectiveCamera(55, _width \/ _height, 1, 1000);\n  camera.position.z = 3;\n  \/\/---\n  \/\/---\n  window.addEventListener(\"resize\", onWindowResize, false);\n}\n\nfunction onWindowResize() {\n  _width = window.innerWidth;\n  _height = window.innerHeight;\n  renderer.setSize(_width, _height);\n  camera.aspect = _width \/ _height;\n  camera.updateProjectionMatrix();\n  console.log(\"- resize -\");\n}\n\n\/\/--------------------------------------------------------------------\n\nvar mat;\nvar primitiveElement = function () {\n  this.mesh = new THREE.Object3D();\n  mat = new THREE.ShaderMaterial({\n    wireframe: false,\n    \/\/fog: true,\n    uniforms: {\n      time: {\n        type: \"f\",\n        value: 0.0\n      },\n      pointscale: {\n        type: \"f\",\n        value: 0.0\n      },\n      decay: {\n        type: \"f\",\n        value: 0.0\n      },\n      complex: {\n        type: \"f\",\n        value: 0.0\n      },\n      waves: {\n        type: \"f\",\n        value: 0.0\n      },\n      eqcolor: {\n        type: \"f\",\n        value: 0.0\n      },\n      fragment: {\n        type: \"i\",\n        value: true\n      },\n      redhell: {\n        type: \"i\",\n        value: true\n      }\n    },\n    vertexShader: document.getElementById(\"vertexShader\").textContent,\n    fragmentShader: document.getElementById(\"fragmentShader\").textContent\n  });\n  var geo = new THREE.IcosahedronBufferGeometry(3, 7);\n  var mesh = new THREE.Points(geo, mat);\n\n  \/\/---\n  this.mesh.add(mesh);\n};\n\nvar _primitive;\nfunction createPrimitive() {\n  _primitive = new primitiveElement();\n  scene.add(_primitive.mesh);\n}\n\n\/\/--------------------------------------------------------------------\n\nvar options = {\n  perlin: {\n    vel: 0.0004,\n    speed: 0.00007,\n    perlins: 1.0,\n    decay: 0.4,\n    complex: 0.16,\n    waves: 16.0,\n    eqcolor: 3.0,\n    fragment: true,\n    redhell: true\n  },\n  spin: {\n    sinVel: 0.0,\n    ampVel: 27.0\n  }\n};\n\n\n\n\/\/--------------------------------------------------------------------\n\nfunction animation() {\n  requestAnimationFrame(animation);\n  var performance = Date.now() * 0.003;\n\n  _primitive.mesh.rotation.y += options.perlin.vel;\n  _primitive.mesh.rotation.x =\n    (Math.sin(performance * options.spin.sinVel) *\n      options.spin.ampVel *\n      Math.PI) \/\n    180;\n  \/\/---\n  mat.uniforms[\"time\"].value = options.perlin.speed * (Date.now() - start);\n  mat.uniforms[\"pointscale\"].value = options.perlin.perlins;\n  mat.uniforms[\"decay\"].value = options.perlin.decay;\n  mat.uniforms[\"complex\"].value = options.perlin.complex;\n  mat.uniforms[\"waves\"].value = options.perlin.waves;\n  mat.uniforms[\"eqcolor\"].value = options.perlin.eqcolor;\n  mat.uniforms[\"fragment\"].value = options.perlin.fragment;\n  mat.uniforms[\"redhell\"].value = options.perlin.redhell;\n  \/\/---\n  camera.lookAt(scene.position);\n  renderer.render(scene, camera);\n}\n\n<\/script>\n<\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-2 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-sizes-top:10px;--awb-border-color:#b39a60;--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-padding-top:5%;--awb-padding-right:10%;--awb-padding-left:10%;--awb-margin-top:200px;--awb-background-color:#ffffff;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1248px;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-1 fusion_builder_column_1_3 1_3 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:33.333333333333%;--awb-margin-top-large:0px;--awb-spacing-right-large:5.76%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:5.76%;--awb-width-medium:33.333333333333%;--awb-order-medium:0;--awb-spacing-right-medium:5.76%;--awb-spacing-left-medium:5.76%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-text fusion-text-1\" style=\"--awb-text-color:#b39a60;\"><h1 style=\"text-align: left;\">Award Ceremony 2022<\/h1>\n<\/div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-1 hover-type-none\" class=\"image-magnify\" class=\"image-scroll\"><img decoding=\"async\" width=\"150\" height=\"150\" title=\"awardCircle\" src=\"https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2020\/10\/awardCircle-150x150.png\" alt class=\"img-responsive wp-image-680\"\/><\/span><\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-2 fusion_builder_column_1_6 1_6 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:16.666666666667%;--awb-margin-top-large:0px;--awb-spacing-right-large:11.52%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:11.52%;--awb-width-medium:16.666666666667%;--awb-order-medium:0;--awb-spacing-right-medium:11.52%;--awb-spacing-left-medium:11.52%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-3 fusion_builder_column_1_2 1_2 fusion-flex-column\" style=\"--awb-padding-right:5%;--awb-padding-left:5%;--awb-bg-color:#ffffff;--awb-bg-color-hover:#ffffff;--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:0px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:50%;--awb-order-medium:0;--awb-spacing-right-medium:3.84%;--awb-spacing-left-medium:3.84%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-text fusion-text-2\" style=\"--awb-text-color:#b39a60;\"><h5>The Otto Naegeli Awards 2020 &amp; 2022 were conferred in Basel on June 14, 2022 to:<\/h5>\n<\/div><div class=\"fusion-text fusion-text-3\"><ul>\n<li>Dr. Nicolas H. Thom\u00e4 (2022)<\/li>\n<\/ul>\n<ul>\n<li>Prof. Dr. Med. Christian L\u00fcscher (2020)<\/li>\n<\/ul>\n<\/div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-margin-top:40px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-2 hover-type-none\" class=\"image-magnify\" class=\"image-scroll\"><img decoding=\"async\" width=\"1280\" height=\"854\" title=\"SWITZERLAND OTTO NAGELI PRIZE\" src=\"https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Kesselring-Gasser-Thoma\u0308-Ciechanover.jpg\" alt class=\"img-responsive wp-image-2906\" srcset=\"https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Kesselring-Gasser-Thoma\u0308-Ciechanover-200x133.jpg 200w, https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Kesselring-Gasser-Thoma\u0308-Ciechanover-400x267.jpg 400w, https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Kesselring-Gasser-Thoma\u0308-Ciechanover-600x400.jpg 600w, https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Kesselring-Gasser-Thoma\u0308-Ciechanover-800x534.jpg 800w, https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Kesselring-Gasser-Thoma\u0308-Ciechanover-1200x801.jpg 1200w, https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Kesselring-Gasser-Thoma\u0308-Ciechanover.jpg 1280w\" sizes=\"(max-width: 640px) 100vw, 600px\" \/><\/span><\/div><div class=\"fusion-text fusion-text-4\"><p>Dr. Felix Kesselring<br \/>\nProf. Dr. Susan Gasser<br \/>\nDr. Nicolas H. Thom\u00e4<br \/>\nProf. Aaron Ciechanover<\/p>\n<\/div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-margin-top:40px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-3 hover-type-none\" class=\"image-magnify\" class=\"image-scroll\"><img decoding=\"async\" width=\"1280\" height=\"854\" title=\"OTTO NAEGELI PREIS,\" src=\"https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Kesselring-Lu\u0308scher-Thoma\u0308.jpg\" alt class=\"img-responsive wp-image-2909\" srcset=\"https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Kesselring-Lu\u0308scher-Thoma\u0308-200x133.jpg 200w, https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Kesselring-Lu\u0308scher-Thoma\u0308-400x267.jpg 400w, https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Kesselring-Lu\u0308scher-Thoma\u0308-600x400.jpg 600w, https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Kesselring-Lu\u0308scher-Thoma\u0308-800x534.jpg 800w, https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Kesselring-Lu\u0308scher-Thoma\u0308-1200x801.jpg 1200w, https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Kesselring-Lu\u0308scher-Thoma\u0308.jpg 1280w\" sizes=\"(max-width: 640px) 100vw, 600px\" \/><\/span><\/div><div class=\"fusion-text fusion-text-5\"><p>Dr. Felix Kesselring<br \/>\nProf. Dr. Med. Christian L\u00fcscher<br \/>\nDr. Nicolas H. Thom\u00e4<\/p>\n<\/div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-margin-top:40px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-4 hover-type-none\" class=\"image-magnify\" class=\"image-scroll\"><img decoding=\"async\" width=\"2560\" height=\"1707\" title=\"220614 Thoma\u0308\" src=\"https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Thoma\u0308-scaled.jpg\" alt class=\"img-responsive wp-image-2921\" srcset=\"https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Thoma\u0308-200x133.jpg 200w, https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Thoma\u0308-400x267.jpg 400w, https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Thoma\u0308-600x400.jpg 600w, https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Thoma\u0308-800x533.jpg 800w, https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Thoma\u0308-1200x800.jpg 1200w, https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Thoma\u0308-scaled.jpg 2560w\" sizes=\"(max-width: 640px) 100vw, 600px\" \/><\/span><\/div><div class=\"fusion-text fusion-text-6\"><p>Dr. Nicolas H. Thom\u00e4<\/p>\n<\/div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-margin-top:40px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-5 hover-type-none\" class=\"image-magnify\" class=\"image-scroll\"><img decoding=\"async\" width=\"1280\" height=\"854\" title=\"OTTO NAEGELI PREIS,\" src=\"https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Lu\u0308scher-Thoma\u0308.jpg\" alt class=\"img-responsive wp-image-2915\" srcset=\"https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Lu\u0308scher-Thoma\u0308-200x133.jpg 200w, https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Lu\u0308scher-Thoma\u0308-400x267.jpg 400w, https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Lu\u0308scher-Thoma\u0308-600x400.jpg 600w, https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Lu\u0308scher-Thoma\u0308-800x534.jpg 800w, https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Lu\u0308scher-Thoma\u0308-1200x801.jpg 1200w, https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Lu\u0308scher-Thoma\u0308.jpg 1280w\" sizes=\"(max-width: 640px) 100vw, 600px\" \/><\/span><\/div><div class=\"fusion-text fusion-text-7\"><p>Prof. Dr. Med. Christian L\u00fcscher<br \/>\nDr. Nicolas H. Thom\u00e4<\/p>\n<\/div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-margin-top:40px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-6 hover-type-none\" class=\"image-magnify\" class=\"image-scroll\"><img decoding=\"async\" title=\"220614 Barbash Edelmann\" src=\"https:\/\/otto-naegeli-preis.ch\/wp-content\/uploads\/2022\/07\/220614-Barbash-Edelmann-scaled.jpg\" alt class=\"img-responsive wp-image-2912\"\/><\/span><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-3 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1248px;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><\/div><\/div><\/p>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"acf":[],"_links":{"self":[{"href":"https:\/\/otto-naegeli-preis.ch\/de\/wp-json\/wp\/v2\/pages\/2900"}],"collection":[{"href":"https:\/\/otto-naegeli-preis.ch\/de\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/otto-naegeli-preis.ch\/de\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/otto-naegeli-preis.ch\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/otto-naegeli-preis.ch\/de\/wp-json\/wp\/v2\/comments?post=2900"}],"version-history":[{"count":3,"href":"https:\/\/otto-naegeli-preis.ch\/de\/wp-json\/wp\/v2\/pages\/2900\/revisions"}],"predecessor-version":[{"id":2942,"href":"https:\/\/otto-naegeli-preis.ch\/de\/wp-json\/wp\/v2\/pages\/2900\/revisions\/2942"}],"wp:attachment":[{"href":"https:\/\/otto-naegeli-preis.ch\/de\/wp-json\/wp\/v2\/media?parent=2900"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}