UNPKG

arctic-ocean-fractal

Version:
1,276 lines 139 kB
'use strict';

Object.defineProperty(exports, '__esModule', { value: true });

function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }

var _inheritsLoose = _interopDefault(require('@babel/runtime/helpers/inheritsLoose'));
var _assertThisInitialized = _interopDefault(require('@babel/runtime/helpers/assertThisInitialized'));
var _defineProperty = _interopDefault(require('@babel/runtime/helpers/defineProperty'));
var React = require('react');
var React__default = _interopDefault(React);
var PropTypes = _interopDefault(require('prop-types'));
var posed = _interopDefault(require('react-pose'));
var _extends = _interopDefault(require('@babel/runtime/helpers/extends'));
var styled = require('styled-components');
var styled__default = _interopDefault(styled);

/*
 * Copyright (C) 2019-present Arctic Ice Studio <development@arcticicestudio.com>
 * Copyright (C) 2019-present Sven Greb <development@svengreb.de>
 *
 * Project:    Arctic Ocean Fractal
 * Repository: https://github.com/arcticicestudio/arctic-ocean-fractal
 * License:    MIT
 */

/**
 * @file Provides shared constants.
 * @author Arctic Ice Studio <development@arcticicestudio.com>
 * @author Sven Greb <development@svengreb.de>
 * @since 0.1.0
 */

/**
 * The name of the pose to trigger the hiding animation.
 *
 * @since 0.1.0
 */
var POSE_HIDE = "hide";
/**
 * The name of the pose to trigger the show animation.
 *
 * @since 0.1.0
 */

var POSE_SHOW = "show";

/*
 * Copyright (C) 2019-present Arctic Ice Studio <development@arcticicestudio.com>
 * Copyright (C) 2019-present Sven Greb <development@svengreb.de>
 *
 * Project:    Arctic Ocean Fractal
 * Repository: https://github.com/arcticicestudio/arctic-ocean-fractal
 * License:    MIT
 */
var fishSwarmCircles = [{
  cx: 506.47,
  cy: 73.944,
  r: 1.659
}, {
  cx: 497.269,
  cy: 81.748,
  r: 1.021
}, {
  cx: 507.294,
  cy: 86.211,
  r: 1.021
}, {
  cx: 511.745,
  cy: 94.431,
  r: 1.539
}];
var groundHoleCenterCircles = [{
  cx: 474.314,
  cy: 512.314,
  r: 5.168
}, {
  cx: 496.762,
  cy: 520.93,
  r: 3.445
}, {
  cx: 488.382,
  cy: 533.275,
  r: 3.733
}, {
  cx: 492.046,
  cy: 551.104,
  r: 1.446
}, {
  cx: 480.436,
  cy: 567.336,
  r: 2.212
}];
var groundHoleOverflowCircles = [{
  cx: 374.469,
  cy: 530.736,
  r: 4.526
}, {
  cx: 406.118,
  cy: 552.25,
  r: 3.52
}, {
  cx: 413.85,
  cy: 574.08,
  r: 4.723
}, {
  cx: 390.16,
  cy: 591.476,
  r: 5.993
}, {
  cx: 396.37,
  cy: 623.139,
  r: 4.172
}];
var groundHoleTopCircles = [{
  cx: 610.294,
  cy: 396.273,
  r: 4.157
}, {
  cx: 587.557,
  cy: 417.539,
  r: 5.29
}, {
  cx: 617.032,
  cy: 432.512,
  r: 1.446
}, {
  cx: 605.422,
  cy: 448.744,
  r: 2.213
}];
var waterCircles = [{
  cx: 272.146,
  cy: 169.538,
  r: 2.466
}, {
  cx: 255.331,
  cy: 189.043,
  r: 3.138
}, {
  cx: 271.018,
  cy: 211.905,
  r: 1.337
}];

/*
 * Copyright (C) 2019-present Arctic Ice Studio <development@arcticicestudio.com>
 * Copyright (C) 2019-present Sven Greb <development@svengreb.de>
 *
 * Project:    Arctic Ocean Fractal
 * Repository: https://github.com/arcticicestudio/arctic-ocean-fractal
 * License:    MIT
 */

/**
 * Provides the Nord colors based on version 0.2.0 until the official library is available.
 * @author Arctic Ice Studio <development@arcticicestudio.com>
 * @author Sven Greb <development@svengreb.de>
 * @since 0.1.0
 * @see https://github.com/arcticicestudio/nord/releases/tag/v0.2.0
 */
var nord = {
  nord0: "#2e3440",
  nord1: "#3b4252",
  nord2: "#434c5e",
  nord3: "#4c566a",
  nord4: "#d8dee9",
  nord5: "#e5e9f0",
  nord6: "#eceff4",
  nord7: "#8fbcbb",
  nord8: "#88c0d0",
  nord9: "#81a1c1",
  nord10: "#5e81ac",
  nord11: "#bf616a",
  nord12: "#d08770",
  nord13: "#ebcb8b",
  nord14: "#a3be8c",
  nord15: "#b48ead"
};

/*
 * Copyright (C) 2019-present Arctic Ice Studio <development@arcticicestudio.com>
 * Copyright (C) 2019-present Sven Greb <development@svengreb.de>
 *
 * Project:    Arctic Ocean Fractal
 * Repository: https://github.com/arcticicestudio/arctic-ocean-fractal
 * License:    MIT
 */
var animBubbleFloat = styled.keyframes(["0%{opacity:0;}20%{opacity:1;}100%{opacity:0;}"]);
var BubbleFloating = styled__default.circle.withConfig({
  displayName: "BubbleFloating",
  componentId: "sc-1fg8a95-0"
})(["animation:", " 5s linear ", "s infinite;fill:", ";opacity:0;"], animBubbleFloat, function (_ref) {
  var animDelay = _ref.animDelay;
  return animDelay;
}, nord.nord3);
var BubbleFloating$1 = React__default.memo(function (props) {
  return React__default.createElement(BubbleFloating, props);
});

var BubblesFishSwarm = React__default.memo(function (props) {
  return React__default.createElement("g", null, fishSwarmCircles.map(function (_ref, idx) {
    var cx = _ref.cx,
        cy = _ref.cy,
        r = _ref.r;
    return React__default.createElement(BubbleFloating$1, _extends({
      key: cx + "-" + cy + "-" + r,
      animDelay: idx,
      cx: cx,
      cy: cy,
      r: r
    }, props));
  }));
});

/*
 * Copyright (C) 2019-present Arctic Ice Studio <development@arcticicestudio.com>
 * Copyright (C) 2019-present Sven Greb <development@svengreb.de>
 *
 * Project:    Arctic Ocean Fractal
 * Repository: https://github.com/arcticicestudio/arctic-ocean-fractal
 * License:    MIT
 */
var animBubbleRiseUp = styled.keyframes(["0%{transform:translate3d(0.2%,0,0);opacity:0;}13%{transform:translate3d(0.4%,-1%,0);opacity:1;}20%{transform:translate3d(0.6%,-2%,0)}30%{transform:translate3d(0,-3%,0);}40%{transform:translate3d(0.4%,-4%,0);}50%{transform:translate3d(0.5%,-5%,0);}60%{transform:translate3d(0.6%,-6%,0);}70%{transform:translate3d(0.7%,-7%,0);opacity:0.4;}80%{transform:translate3d(0.4%,-7%,0);opacity:0.2;}90%,100%{transform:translate3d(0.2%,-8%,0);opacity:0;}"]);
var BubbleGroundHole = styled__default.circle.withConfig({
  displayName: "BubbleGroundHole",
  componentId: "a112wl-0"
})(["animation:", " 5s linear ", "s infinite;fill:", ";opacity:0;"], animBubbleRiseUp, function (_ref) {
  var animDelay = _ref.animDelay;
  return animDelay;
}, nord.nord4);
var BubbleGroundHole$1 = React__default.memo(function (props) {
  return React__default.createElement(BubbleGroundHole, props);
});

var BubblesGroundHoleCenter = React__default.memo(function (props) {
  return React__default.createElement("g", null, groundHoleCenterCircles.map(function (_ref, idx) {
    var cx = _ref.cx,
        cy = _ref.cy,
        r = _ref.r;
    return React__default.createElement(BubbleGroundHole$1, _extends({
      key: cx + "-" + cy + "-" + r,
      animDelay: idx,
      cx: cx,
      cy: cy,
      r: r
    }, props));
  }));
});

var BubblesGroundHoleOverflow = React__default.memo(function (props) {
  return React__default.createElement("g", null, groundHoleOverflowCircles.map(function (_ref, idx) {
    var cx = _ref.cx,
        cy = _ref.cy,
        r = _ref.r;
    return React__default.createElement(BubbleGroundHole$1, _extends({
      key: cx + "-" + cy + "-" + r,
      animDelay: idx,
      cx: cx,
      cy: cy,
      r: r
    }, props));
  }));
});

var BubblesGroundHoleTop = React__default.memo(function (props) {
  return React__default.createElement("g", null, groundHoleTopCircles.map(function (_ref, idx) {
    var cx = _ref.cx,
        cy = _ref.cy,
        r = _ref.r;
    return React__default.createElement(BubbleGroundHole$1, _extends({
      key: cx + "-" + cy + "-" + r,
      animDelay: idx,
      cx: cx,
      cy: cy,
      r: r
    }, props));
  }));
});

var BubblesWater = React__default.memo(function (props) {
  return React__default.createElement("g", null, waterCircles.map(function (_ref, idx) {
    var cx = _ref.cx,
        cy = _ref.cy,
        r = _ref.r;
    return React__default.createElement(BubbleFloating$1, _extends({
      key: cx + "-" + cy + "-" + r,
      animDelay: idx,
      cx: cx,
      cy: cy,
      r: r
    }, props));
  }));
});

/*
 * Copyright (C) 2019-present Arctic Ice Studio <development@arcticicestudio.com>
 * Copyright (C) 2019-present Sven Greb <development@svengreb.de>
 *
 * Project:    Arctic Ocean Fractal
 * Repository: https://github.com/arcticicestudio/arctic-ocean-fractal
 * License:    MIT
 */

/*
 * Copyright (C) 2019-present Arctic Ice Studio <development@arcticicestudio.com>
 * Copyright (C) 2019-present Sven Greb <development@svengreb.de>
 *
 * Project:    Arctic Ocean Fractal
 * Repository: https://github.com/arcticicestudio/arctic-ocean-fractal
 * License:    MIT
 */
var animLightRingGlow = styled.keyframes(["0%{opacity:0.6;fill:", ";}100%{opacity:0.9;fill:", ";}"], nord.nord4, nord.nord6);
var LightRing = styled__default.path.withConfig({
  displayName: "LightRing",
  componentId: "ptv4yw-0"
})(["animation:", " 3s linear infinite alternate;transform-style:preserve-3d;"], animLightRingGlow);
var LightRing$1 = React__default.memo(function (props) {
  return React__default.createElement(LightRing, props);
});

/*
 * Copyright (C) 2019-present Arctic Ice Studio <development@arcticicestudio.com>
 * Copyright (C) 2019-present Sven Greb <development@svengreb.de>
 *
 * Project:    Arctic Ocean Fractal
 * Repository: https://github.com/arcticicestudio/arctic-ocean-fractal
 * License:    MIT
 */

/**
 * @file Provides shared pose configurations.
 * @author Arctic Ice Studio <development@arcticicestudio.com>
 * @author Sven Greb <development@svengreb.de>
 * @since 0.1.0
 * @see https://popmotion.io/pose/api/react-config
 */
var transitionSpringBounceIn = {
  type: "spring",
  stiffness: 250,
  damping: 12,
  velocity: 2
};
var timingsAnglerfishEyeLens = {
  delay: function delay(_ref) {
    var anglerfishEyeLensDelay = _ref.anglerfishEyeLensDelay;
    return anglerfishEyeLensDelay;
  },
  duration: function duration(_ref2) {
    var anglerfishEyeLensDuration = _ref2.anglerfishEyeLensDuration;
    return anglerfishEyeLensDuration;
  }
};
var poseConfigJellyfish = {
  hide: {
    opacity: 0,
    scale: 0,
    transition: {
      scale: _extends({}, transitionSpringBounceIn)
    }
  },
  show: {
    opacity: 1,
    scale: 1,
    delay: function delay(_ref3) {
      var jellyFishDelay = _ref3.jellyFishDelay;
      return jellyFishDelay;
    },
    duration: function duration(_ref4) {
      var jellyFishDuration = _ref4.jellyFishDuration;
      return jellyFishDuration;
    },
    transition: {
      scale: _extends({}, transitionSpringBounceIn)
    }
  }
};
var poseConfigAnglerfish = {
  hide: {
    rotate: 15,
    scale: 1.6,
    x: -92,
    y: -45
  },
  show: {
    rotate: 0,
    scale: 1,
    x: 20,
    y: 8,
    delay: function delay(_ref5) {
      var anglerfishDelay = _ref5.anglerfishDelay;
      return anglerfishDelay;
    },
    transition: {
      type: "spring",
      stiffness: 150,
      damping: 20,
      velocity: 15,
      duration: function duration(_ref6) {
        var anglerfishDuration = _ref6.anglerfishDuration;
        return anglerfishDuration;
      }
    }
  }
};
var poseConfigAnglerfishEyeLens = {
  hide: {
    scale: 1
  },
  show: _extends({
    scale: 0.7
  }, timingsAnglerfishEyeLens)
};
var poseConfigAnglerfishForeheadSkinFold = {
  hide: {
    opacity: 1
  },
  show: _extends({
    opacity: 0
  }, timingsAnglerfishEyeLens)
};

/*
 * Copyright (C) 2019-present Arctic Ice Studio <development@arcticicestudio.com>
 * Copyright (C) 2019-present Sven Greb <development@svengreb.de>
 *
 * Project:    Arctic Ocean Fractal
 * Repository: https://github.com/arcticicestudio/arctic-ocean-fractal
 * License:    MIT
 */
var Group = posed.g(poseConfigAnglerfish);
var EyeLens = posed.path(poseConfigAnglerfishEyeLens);
var ForeheadSkinFold = posed.path(poseConfigAnglerfishForeheadSkinFold);
var Anglerfish = React__default.memo(function (props) {
  return React__default.createElement(Group, props, React__default.createElement("path", {
    d: "M510.92 373.25c3.66-.656 7.114-2.281 11.008-1.953 1.919.16 3.402.576 4.595 2.109 4.657 5.984 8.696 12.277 10.2 19.873-.471 1.441-1.643 2.094-2.936 2.611-9.708 3.871-19.372 7.854-29.035 11.836-1.344.553-2.747 1.129-4.2.217-.73-.623-1.335-1.361-1.653-2.256-2.376-6.645-1.99-12.734 1.152-19.252.353-.676.662-1.316.938-1.861 2.235-4.717 6.133-7.976 9.931-11.324z",
    fill: nord.nord8
  }), React__default.createElement(ForeheadSkinFold, {
    d: "M501.603 389.482c.52-3.16 1.694-5.855 4.088-7.92.478-.412 1.006-.855 1.615-.277.677.641.079 1.143-.329 1.561-1.869 1.902-3.133 4.1-3.431 6.789-.078.707-.002 1.693-.951 1.678-1.26-.02-.738-1.215-.992-1.831z",
    fill: nord.nord4
  }), React__default.createElement("path", {
    d: "M498.148 408.68c1.158.256 2.027-.439 2.972-.895 11.868-4.836 23.736-9.67 35.604-14.504.872 4.807.492 9.418-1.759 13.873-2.794 5.531-7.343 9.17-12.559 12.127a50.333 50.333 0 0 1-14.498 5.49c-7.725-1.516-14.265-4.842-18.313-11.977.216-.844.725-1.564 1.507-1.807 2.362-.729 4.532-2.057 7.046-2.307z",
    fill: nord.nord9
  }), React__default.createElement("path", {
    d: "M546.014 411.674c.879 3.168 1.414 6.262-1.782 8.582-1.751 2.832-4.686 2.451-7.237 2.25-2.605-.203-4.784.279-7.15 1.338-6.137 2.742-12.545 4.301-19.35 2.824-1.033-.225-4.141-1.389-4.749-2.377.341-2.148 4.389-1.188 5.846-1.676 2.515-.156 10.909-4.203 15.521-7.918 6.773-5.455 9.948-12.408 8.55-21.184-1.404-5.857-4.102-11.098-7.577-15.971-3.77-5.283-5.528-5.883-11.907-4.42-1.702.391-3.473 1.811-5.258.127 5.684-6.678 15.892-9.32 23.893-6.188 2.045 1.936 1.468 4.443 1.49 6.82.154 1.053.42 1.553 1.045 2.092.883 1.035 1.423.18 2.027-.361 1.085-.973 2.104-2.045 3.285-2.885 1.717-1.223 3.224-.875 3.996 1.154 1.169 3.068 2.986 4.859 6.583 4.443 2.146-.25 2.759 1.387 2.312 3.123-1.05 4.076.12 7.086 3.626 9.436 2.335 1.564 1.425 3.439-.169 4.984-3.013 2.924-6.784 4.467-10.775 5.463-3.384.844-5.293 5.227-3.461 8.186.435.709.828 1.439 1.241 2.158z",
    fill: nord.nord10
  }), React__default.createElement("path", {
    d: "M498.148 408.68c-2.463 2.174-5.826 2.484-8.553 4.115-1.286-5.168-.767-12.805 1.395-16.611.275 2.75-.059 5.08.566 7.307.612 2.178 1.288 4.289 3.035 6.363.58-3.18-.427-6.172 1.294-9.277.324 3.15.595 5.845 2.263 8.103zm6.053-14.225c-.041-1.908 2.105-4.217 4.016-4.061 2.245.182 3.65 1.57 3.948 3.789.255 1.9-1.938 4.139-3.873 4.191-2.124.06-4.046-1.782-4.091-3.919z",
    fill: nord.nord4
  }), React__default.createElement(EyeLens, {
    d: "M510.627 394.234c-.058 1.494-.773 2.412-2.228 2.527-1.088.088-2.628-.535-2.127-1.459.591-1.092-.728-3.514 1.952-3.344 1.48.097 2.225.899 2.403 2.276z",
    fill: nord.nord3
  }), React__default.createElement("path", {
    d: "M471.178 378.67c.369-.344.624-.615 1.003-.975 3.427-3.242 7.373-2.975 11.444-1.688 4.877 1.541 8.991 4.354 12.74 7.771 1.119 1.02 2.206 1.805 3.686 2.656.238-.467.701-1.395.938-1.861-1.076-.977-2.162-1.941-3.23-2.926-4.517-4.166-9.561-7.4-15.653-8.721-6.281-1.363-10.383.426-13.047 5.609.168-.006.333-.023.504-.023l1.615.158z",
    fill: nord.nord7
  }), React__default.createElement(LightRing$1, {
    d: "M457.267,390.807a12.295,12.295 0 1,0 24.59,0a12.295,12.295 0 1,0 -24.59,0"
  }), React__default.createElement(LightRing$1, {
    d: "M469.597 381.592c1.566.553 3.383.611 4.788 1.436 3.575 2.102 5.124 7.023 3.696 11.023-1.39 3.895-5.493 6.561-9.546 6.205-3.99-.352-7.656-3.637-8.275-7.416-.771-4.719 1.092-8.365 5.244-10.246.943-.426 1.957-.557 2.904-.977l.117.223c.113 2.508-.917 3.313-2.085 4.961-2.289 2.346-2.806 4.236-1.539 6.342 1.231 2.041 3.003 3.076 5.478 2.719 2.416-.346 3.678-1.918 4.091-4.102.45-2.377-.565-4.289-2.657-5.488-1.703-1.629-2.251-2.139-2.387-4.387l.171-.293z"
  }), React__default.createElement(LightRing$1, {
    d: "M469.597 381.592c-.167 1.734.259 2.777 2.256 3.338 2.707.762 4.496 3.969 3.993 6.666-.504 2.695-1.797 4.91-4.803 5.471-3.291.615-6.188-.785-7.537-3.576-1.296-2.684-.69-5.439 1.93-7.475 1.523-1.184 3.027-2.221 2.973-4.398l1.188-.026z"
  }), React__default.createElement("path", {
    d: "M468.611 385.336c.358 1.316.878 2.135 2.146 2.779 1.642.836 2.81 2.359 1.328 4.359-1.141 1.541-2.707 2.156-4.349.996-1.747-1.234-1.71-3.064-.583-4.699.722-1.046 1.497-1.984 1.458-3.435z",
    fill: nord.nord13
  }));
});

/*
 * Copyright (C) 2019-present Arctic Ice Studio <development@arcticicestudio.com>
 * Copyright (C) 2019-present Sven Greb <development@svengreb.de>
 *
 * Project:    Arctic Ocean Fractal
 * Repository: https://github.com/arcticicestudio/arctic-ocean-fractal
 * License:    MIT
 */

/*
 * Copyright (C) 2019-present Arctic Ice Studio <development@arcticicestudio.com>
 * Copyright (C) 2019-present Sven Greb <development@svengreb.de>
 *
 * Project:    Arctic Ocean Fractal
 * Repository: https://github.com/arcticicestudio/arctic-ocean-fractal
 * License:    MIT
 */

var IllustrationCanvas = function IllustrationCanvas(_ref) {
  var anglerfishProps = _ref.anglerfishProps;
  return React__default.createElement(React.Fragment, null, React__default.createElement("path", {
    d: "M28.494 360.697c2.563-7.385 5.502-14.488 8.818-21.223a156.362 156.362 0 0 1 2.659-5.215c6.776-12.695 17.86-23.5 31.437-33.079 27.367-19.317 64.851-33.687 97.512-48.68 63.377-29.09 4.806-80.894 80.092-119.338 34.96-17.853 83.913.489 122.541-7.208 66.965-13.344 62.56-101.197 129.581-89.063 87.453 15.834 156.148 52.027 190.788 125.641 1.481 3.155 3.035 6.416 4.646 9.795 11.613 24.381 26.102 54.583 37.53 89.816a413.777 413.777 0 0 1 3.445 11.068 88.667 88.667 0 0 0-1.498-.681c-19.479-8.587-45.244-7.794-67.029-9.267h-.008c-.625-.041-1.242-.088-1.866-.137-2.46-.176-4.854-.4-7.185-.672l-.248-.025c-.529-.056-1.058-.127-1.578-.191a433.098 433.098 0 0 0-16.892-1.842l-1.954-.169-.297-.024c-.881-.08-1.762-.151-2.643-.216-.44-.032-.889-.071-1.338-.104a403.503 403.503 0 0 0-7-.473c-1.354-.08-2.715-.16-4.068-.224-1.258-.063-2.522-.128-3.78-.177h-.064a307.212 307.212 0 0 0-3.836-.144c-3.556-.128-7.112-.2-10.66-.225a315.468 315.468 0 0 0-7.216.009c-2.212.016-4.405.056-6.593.127-1.994.049-3.979.121-5.959.209-.952.04-1.897.088-2.843.145-.856.039-1.706.088-2.555.144a374.51 374.51 0 0 0-3.084.2c-.856.057-1.706.129-2.555.2-.08 0-.152.009-.232.017-1.891.145-3.765.32-5.614.504-.209.024-.417.041-.625.072-.408.04-.809.088-1.218.137-2.05.224-4.108.512-6.183.849a150.457 150.457 0 0 0-4.549.817 49.82 49.82 0 0 0-1.547.312c-.504.097-1.017.2-1.521.321-.225.039-.449.096-.673.144a144.642 144.642 0 0 0-12.086 3.22c-.009 0-.009 0-.017.008-.793.232-1.585.488-2.371.753a151.142 151.142 0 0 0-4.036 1.386c-.04.016-.08.032-.128.049-.889.32-1.771.656-2.659.992-11.478 4.405-22.45 10.268-31.917 17.477a126.461 126.461 0 0 0-3.012 2.379 104.086 104.086 0 0 0-3.203 2.755c-.408.368-.817.736-1.218 1.113-.408.368-.801.745-1.192 1.13-.401.375-.794.76-1.179 1.152-.127.121-.256.248-.384.377-3.844 3.877-7.184 7.969-10.164 12.206a115.751 115.751 0 0 0-2.347 3.468c-.24.377-.488.761-.729 1.145a48.87 48.87 0 0 0-.776 1.25c-.232.377-.465.745-.689 1.121-.473.793-.945 1.594-1.409 2.395-.232.401-.457.802-.681 1.202-.225.408-.449.809-.674 1.209-.224.409-.448.825-.672 1.233-.529.978-1.05 1.963-1.554 2.955-.337.642-.665 1.291-.993 1.939a1.475 1.475 0 0 1-.049.104c-.48.953-.945 1.906-1.409 2.867-.473.953-.93 1.914-1.386 2.885-.457.961-.904 1.922-1.354 2.891-1.938 4.18-3.82 8.393-5.75 12.582l-.914 1.971c-.088.184-.168.369-.256.553-.368.785-.736 1.561-1.105 2.338a3.607 3.607 0 0 0-.08.178 338.386 338.386 0 0 1-2.634 5.365c-.035.068-.069.139-.104.209l-.167.32c-2.59 5.102-5.4 10.135-8.643 15.008a129.348 129.348 0 0 1-3.63 5.185c-.599.813-1.2 1.617-1.808 2.4-.016.016-.023.031-.04.047-.376.49-.762.971-1.138 1.449a107.652 107.652 0 0 1-9.281 10.197c-.039.039-.079.074-.118.113a98.557 98.557 0 0 1-3.189 2.939c-.092.082-.185.162-.276.242a99.047 99.047 0 0 1-3.189 2.68c-.103.082-.204.166-.307.246a94.106 94.106 0 0 1-12.92 8.668c-.681.377-1.361.744-2.043 1.098a54.34 54.34 0 0 1-1.674.865 1.432 1.432 0 0 0-.136.072c-.553.271-1.105.543-1.658.801-.2.104-.4.191-.601.289-.456.215-.921.424-1.386.631-.633.289-1.265.57-1.906.834-.425.184-.857.369-1.29.545-.385.16-.769.311-1.153.465-.473.184-.938.367-1.41.543-.649.25-1.29.49-1.946.723-.048.016-.096.039-.145.055-.576.199-1.153.408-1.729.6-3.749 1.283-7.561 2.363-11.438 3.293l-1.225.289c-2.043.473-4.101.904-6.175 1.297-.657.127-1.321.248-1.986.369l-1.226.215c-.28.049-.56.098-.841.145-.497.08-1.001.168-1.505.248-.737.113-1.474.232-2.219.338-1.313.199-2.643.385-3.973.561-1.273.168-2.547.318-3.829.473-.697.078-1.393.16-2.09.23-.264.033-.521.064-.785.09a257.09 257.09 0 0 1-4.341.439c-1.802.176-3.621.336-5.447.48-.368.033-.737.064-1.105.088-.657.057-1.314.113-1.979.16-1.874.145-3.748.289-5.638.416-1.258.098-2.523.186-3.789.273-3.164.217-6.351.424-9.555.648a779.85 779.85 0 0 0-15.137 1.17c-.264.023-.529.047-.793.072-5.558.496-11.157 1.098-16.788 1.873a566.997 566.997 0 0 1-9.539 1.219c-.896.111-1.786.215-2.675.32-.672.08-1.346.16-2.026.232-1.018.119-2.035.23-3.06.344-1.834.199-3.676.4-5.518.592l-2.996.313c-1.914.193-3.836.385-5.759.57-4.309.432-8.61.84-12.918 1.248-1.538.145-3.068.297-4.605.441-1.45.135-2.899.279-4.357.424-1.498.145-2.988.297-4.485.439-1.49.154-2.987.305-4.478.457a888.377 888.377 0 0 0-8.953.963c-1.378.15-2.755.303-4.133.471-.168.016-.336.041-.504.057a700.27 700.27 0 0 0-4.301.521h-.008c-3.003.367-5.999.76-8.995 1.176-1.25.178-2.499.354-3.748.537a704.39 704.39 0 0 0-5.743.873l-1.442.24c-.857.137-1.706.281-2.555.424l-2.25.385c-.841.152-1.682.297-2.523.457-.961.168-1.914.344-2.867.529-.024.008-.056.008-.08.016-.938.176-1.882.359-2.819.553-1.882.369-3.757.76-5.631 1.17-.433.096-.865.184-1.29.287-.785.168-1.57.346-2.347.529a277.205 277.205 0 0 0-7.68 1.873c-.857.225-1.714.449-2.571.682-1.01.271-2.027.553-3.028.842-.056.016-.12.031-.176.047a153.2 153.2 0 0 0-3.06.896c-1.081.314-2.154.641-3.228.986-2.843.889-5.67 1.834-8.474 2.844-.305.104-.609.215-.913.328-.072.023-.144.055-.217.08-.464.168-.929.336-1.385.512-.537.199-1.065.393-1.594.6-.224.082-.44.17-.665.258-.585.225-1.169.457-1.754.689-.585.225-1.169.465-1.747.703a183.96 183.96 0 0 0-5.478 2.332 169.99 169.99 0 0 0-7.561 3.572 166.903 166.903 0 0 0-9.627 5.189l-.914.529c-.713.408-1.417.816-2.13 1.217-.593.336-1.194.672-1.794 1.01-.809.455-1.625.912-2.451 1.369a527.555 527.555 0 0 1-7.313 3.955c-3.3 1.779-6.616 3.525-9.931 5.271l-15.546 8.354-39.518-127.114z",
    fill: nord.nord0,
    stroke: nord.nord0,
    strokeMiterlimit: "10"
  }), React__default.createElement("path", {
    clipRule: "evenodd",
    d: "M71.624 572.094l11.958-1.754 12.278-1.803 3.667-.537 4.582-.672 7.457-1.09 12.102-1.777 66.877-6.408 36.042-3.203 50.466-3.203 25.79-1.49 15.85-.912h28.433c8.097-.322 16.219-.594 24.324-.529 1.818.016 3.66.023 5.478.207.417.041.897.072 1.29.232.305.129.545.305.881.4 1.81.498 3.748.674 5.614.881 2.819.33 5.655.586 8.482.818 6.359.512 12.67.961 19.054.607l12.43-6.518 44.188-42.547 35.641-49.664 27.632-38.301 25.861-17.172 48.513-11.758 6.207-1.09 1.594-.279 1.209-.217 5.871-1.023 1.618-.289 8.842-1.555 6.312.689 1.354.152 8.706.945 1.594.176 17.084 1.865.352.041 12.255 1.338 22.866 4.813 13.07 2.756 1.771.367 7.945 1.676.4.104 1.818.488 10.059 2.699c.474-7.033 2.18-13.936 4.814-20.463 2.707-6.697 6.279-13.271 10.636-19.039-.24-4.605-.576-9.146-.993-13.639v-.018a17.517 17.517 0 0 1-.023-.248c0-.031-.008-.063-.008-.088-.017-.191-.032-.375-.057-.561l.024.145a6.225 6.225 0 0 1-.024-.191c-.008-.072-.016-.129-.016-.186-.009-.063-.017-.119-.017-.184 0-.008-.008-.016-.008-.016v-.033c-.008-.039-.008-.088-.017-.127 0-.049-.008-.08-.008-.113 0-.031-.008-.064-.008-.088s-.008-.047-.008-.072v-.023c-1.994-20.343-5.783-40.478-11.045-60.229-.104-.394-.199-.794-.32-1.186a429.402 429.402 0 0 0-2.818-9.987 88.667 88.667 0 0 0-1.498-.681l-.097-.913c.088-.568-.617-4.309-1.851-9.475-2.129-8.947-5.807-22.162-9.563-30.556-4.55-8.866-8.273-18.117-12.39-27.176-2.034-4.493-4.182-8.931-6.216-13.415-1.666-3.668-3.564-7.217-5.222-10.877-1.233-2.707-2.387-5.471-3.837-8.073-.048-.096-.176.072-.304.28-.136.24-.272.537-.289.561-.416.938-.761 1.906-1.097 2.867a98.048 98.048 0 0 0-2.419 7.914c-.265 1.024-.521 2.066-.673 3.115-.248 1.706-.096 3.484-.2 5.206a68.662 68.662 0 0 1-2.443 14.417 72.76 72.76 0 0 1-2.378 7.023c-.657 1.658-1.281 3.549-2.507 4.894a4.4 4.4 0 0 1-4.773 1.161c-1.57-.584-2.482-2.09-3.284-3.476-.505-.873-1.041-1.714-1.249-2.716-.225-1.097-.072-2.21.256-3.268.641-2.074 1.763-3.948 2.396-6.03 1.137-3.772 1.192-7.833-.121-11.565-1.354-3.844-4.061-7.185-7.36-9.547-2.699-1.938-6.352-3.076-9.322-1.025-3.452 2.395-4.502 7.28-3.805 11.197.336 1.906 1.522 3.932 1.105 5.902-.337 1.609-1.714 2.667-3.115 3.364-2.106 1.041-4.462 1.489-6.792 1.13-2.427-.369-4.71-1.523-6.889-2.596-2.154-1.065-4.285-2.203-6.543-3.043-2.139-.793-4.325-.817-6.023.912-2.69 2.748-.784 7.602.914 10.396 2.186 3.611 5.774 5.734 9.626 7.217 4.381 1.689 8.971 2.37 13.584 3.107.817.136 1.65.313 2.378.729.906.512 1.33 1.313 1.835 2.187a19.224 19.224 0 0 0 3.685 4.558c1.466 1.354 3.107 2.498 4.838 3.491 1.802 1.033 3.74 1.778 5.542 2.796 3.107 1.729 5.47 4.444 6.511 7.865.873 2.842.77 5.887.777 8.826 0 3.003.185 6.127-.24 9.105-.232 1.643-.865 3.284-2.571 3.845-1.058.36-2.234.304-3.323.168-1.146-.144-2.443.128-3.58.249h-.008c-.625-.041-1.242-.088-1.866-.137l-1.835-.145a305.47 305.47 0 0 1-5.598-.552c-6.159-.656-12.303-1.457-18.47-2.033l-1.954-.169-.297-.024-2.643-.216c-.44-.032-.889-.071-1.338-.104-2.33-.176-4.661-.336-7-.473-1.354-.08-2.715-.16-4.068-.224-1.258-.063-2.515-.12-3.78-.177h-.064a301.551 301.551 0 0 0-3.836-.144 411.025 411.025 0 0 0-7.688-.185c-.986-.016-1.979-.023-2.972-.04a353.432 353.432 0 0 0-7.208.017l-.008-.008c-1.426-1.467-1.803-3.541-1.354-5.495.521-2.282 2.139-4.061 2.883-6.247.345-1.018.529-2.098.417-3.164-.128-1.289-.753-2.242-1.329-3.355a8.897 8.897 0 0 1-.665-6.455c.641-2.347 2.187-4.285 2.715-6.664.513-2.314.225-4.701-.641-6.896-.616-1.562-1.498-3.508-2.739-4.702-1.153-1.113-3.275-1.057-4.284.289-.569.769-.272 1.762.079 2.555.481 1.065 1.09 2.051 1.515 3.147.527 1.394.841 2.899.681 4.397-.185 1.786-1.113 3.1-1.955 4.629-1.562 2.844-1.874 6.088-.736 9.139.561 1.514 1.586 2.836 1.594 4.501.017 1.827-1.217 3.044-1.738 4.694-.328 1.217-.816 2.435-1.313 3.588-.521 2.025-.481 3.572.111 5.63-.368-1.249-.657-2.538-.657-3.796 0-.881.145-1.746.497-2.571.336-.993.753-1.994 1.09-2.979.464-2.059.151-4.141-.802-6.015-1.001-1.962-2.938-3.5-3.084-5.815-.063-1.097.313-2.05.802-3.011.553-1.065.953-2.211 1.113-3.396.305-2.171-.249-4.318-1.298-6.215-.553-1.002-1.297-1.875-1.85-2.868a9.225 9.225 0 0 1-1.05-3.196c-.288-2.338.545-4.301 1.194-6.486.271-.897.455-2.003-.024-2.867-.465-.842-1.563-1.234-2.459-.897-2.011.737-3.027 3.107-3.612 4.981-1.249 3.957-.721 8.073 1.602 11.525 1.073 1.602 2.003 3.308 1.898 5.294-.111 2.163-1.602 3.845-1.906 5.959-.271 1.938.265 3.853 1.209 5.526.994 1.746 2.484 3.211 2.956 5.223.488 2.082-.696 3.82-1.169 5.773-.521 2.155-.545 4.39-.241 6.576-.952.04-1.897.088-2.843.145-.856.039-1.706.088-2.555.144a374.51 374.51 0 0 0-3.084.2c-.856.064-1.706.129-2.555.2-.08 0-.152.009-.232.017-1.273-1.979-.776-3.805.129-5.807.96-2.139 2.05-4.189 2.018-6.6-.024-2.082-.761-4.085-1.738-5.896-.776-1.449-1.891-3.259-3.812-2.907-1.858.336-2.323 1.674-1.803 3.316.633 2.002 1.995 3.788 1.851 5.967-.152 2.25-1.875 4.093-2.596 6.184-.705 2.033-.856 4.221-.288 6.318-.408.04-.809.088-1.218.137-1.417-1.682-1.498-3.725-.568-5.671 1.001-2.074 1.121-4.413.289-6.56-.408-1.073-1.09-1.994-1.61-3.012a11.409 11.409 0 0 1-1.081-3.291c-.353-2.203.128-4.222.832-6.296.537-1.602.257-3.052-1.642-3.372-1.938-.328-3.043 1.467-3.788 2.955-1.049 2.083-1.618 4.414-1.354 6.744.129 1.105.433 2.179.881 3.188.513 1.138 1.233 2.146 1.73 3.292.832 1.954 1.018 4.045.225 6.039-.449 1.104-.954 2.034-.954 3.269.009 1.257.433 2.402.857 3.563a150.457 150.457 0 0 0-4.549.817c-.514.096-1.025.199-1.547.312-.504.097-1.017.2-1.521.321-.225.039-.449.096-.673.144l-.657.145c.736-2.219 2.45-3.909 3.043-6.216.265-1.025.346-2.098.168-3.139-.223-1.266-.88-2.227-1.465-3.332-1.057-1.994-1.242-4.189-.416-6.296.424-1.104 1.12-2.042 1.658-3.083.56-1.065.96-2.219 1.152-3.404.376-2.227 0-4.493-.841-6.567-.625-1.538-1.482-3.403-2.651-4.63-1.137-1.201-3.163-1.209-4.316.041-1.058 1.129.016 2.787.593 3.876 1.112 2.099 1.922 4.517 1.474 6.911-.265 1.379-.945 2.476-1.65 3.645-.729 1.202-1.265 2.523-1.514 3.909-.465 2.643.217 5.302 1.498 7.616.625 1.121.937 2.379.656 3.652-.288 1.281-1.104 2.402-1.722 3.549-.16.496-.48 1.361-.833 2.138l-.505 1.498c.032-.505.089-.953.289-1.45l.937-2.273c.465-.882.016-2.539-.176-3.429-.353-1.683-.953-3.437-2.075-4.765-1.36-1.635-1.978-3.605-1.385-5.68.616-2.13 1.962-3.853 1.906-6.175-.048-2.354-1.763-4.053-2.788-6.047-.992-1.923-1.674-4.021-1.682-6.199-.008-1.05.145-2.099.433-3.1.16-.544.353-1.081.585-1.594.248-.577.681-1.13.696-1.771.057-1.77-1.209-3.219-3.011-2.467-2.027.857-2.996 3.196-3.701 5.126-.752 2.043-1.12 4.253-.784 6.424.16 1.049.48 2.066.944 3.019.545 1.13 1.346 2.075 1.979 3.148 1.074 1.811 1.555 3.869 1.05 5.936-.513 2.129-1.931 3.804-1.826 6.094.104 2.307 1.842 3.717 2.875 5.623.978 1.803 1.482 3.82 1.361 5.871a12.265 12.265 0 0 1-.568 2.947c-.328 1.057-.993 2.05-.841 3.195.016.152.024.313.024.473-.009 0-.009 0-.017.008-.793.24-1.585.496-2.371.753a151.142 151.142 0 0 0-4.036 1.386c-.04.016-.08.032-.128.049-.889.32-1.771.656-2.659.992-.713.272-1.426.553-2.146.842-9.884 3.939-19.383 8.986-27.944 15.273-.617.448-1.226.896-1.826 1.361a97.049 97.049 0 0 0-3.012 2.379 104.086 104.086 0 0 0-3.203 2.755c-.408.368-.817.736-1.218 1.113-.4.368-.801.745-1.192 1.13-.401.384-.786.769-1.179 1.152a96.162 96.162 0 0 0-9.346 10.917 77.077 77.077 0 0 0-1.201 1.666 115.751 115.751 0 0 0-2.347 3.468c-.136.208-.272.416-.408.633-.112.168-.217.344-.32.512a48.87 48.87 0 0 0-.776 1.25c-.232.377-.465.745-.689 1.121-.473.793-.945 1.594-1.409 2.395-.232.401-.457.802-.681 1.202-.225.408-.449.809-.674 1.209-.224.409-.448.825-.672 1.233-.529.978-1.05 1.963-1.554 2.955-.337.642-.665 1.291-.993 1.939a1.475 1.475 0 0 1-.049.104c-.48.953-.945 1.914-1.409 2.867-.465.963-.93 1.922-1.386 2.885-.457.961-.904 1.922-1.354 2.891-1.938 4.18-3.82 8.393-5.75 12.582l-.914 1.971c-.088.184-.168.369-.256.553-.368.785-.736 1.561-1.105 2.338a3.607 3.607 0 0 0-.08.178 338.386 338.386 0 0 1-2.634 5.365c-.088.176-.185.352-.272.529-.433.848-.873 1.697-1.321 2.547-3.124 5.91-6.584 11.629-10.508 17.043-.152.201-.297.4-.441.602a99.212 99.212 0 0 1-1.81 2.402c-.016.016-.023.031-.04.047-.376.49-.762.971-1.138 1.449a105.45 105.45 0 0 1-1.986 2.404 90.818 90.818 0 0 1-2.154 2.459c-.625.705-1.273 1.4-1.923 2.09a102.563 102.563 0 0 1-3.219 3.244c-.04.039-.081.072-.12.111a98.215 98.215 0 0 1-3.188 2.939c-.089.08-.185.16-.272.24a93.683 93.683 0 0 1-3.195 2.684c-.097.08-.201.168-.305.248a98.648 98.648 0 0 1-3.268 2.49c-.089.072-.185.137-.281.209v-.008c-1.514-1.922-3.732-3.771-4.284-6.248-.625-2.811 1.273-4.82 2.618-7.039.993-1.635 2.115-3.773 1.787-5.76-.313-1.85-2.027-3.002-3.557-3.836-1.178-.344-2.411.008-3.596.088-1.058.064-2.123.041-3.164-.127-1.754-.273-3.468-.938-4.83-2.1-3.099-2.619-3.676-6.936-1.521-10.33.785-1.242 1.891-2.195 2.659-3.445.481-.77 1.025-1.49 1.602-2.193.562-.689 1.266-1.49 1.298-2.428.032-1.057-.929-1.723-1.585-2.41-.85-.898-1.627-1.852-2.403-2.813-.705-.889-1.401-1.777-2.139-2.643-.488-.576-1.226-1.586-2.106-1.506-.825.072-1.25 1.113-1.522 1.754a15.97 15.97 0 0 0-1.049 3.629 17.348 17.348 0 0 0-.208 3.412c.048 1.225.345 2.441.336 3.676-.016 2.363-1.105 4.262-2.307 6.207-.617 1.01-1.37 2.154-.672 3.309.384.633.937 1.168 1.457 1.689.673.664 1.642 1.377 1.811 2.371.16.912-.601 1.648-1.258 2.162-.833.648-1.578 1.426-2.114 2.33-.905 1.521-1.097 3.34-.448 4.99a7.072 7.072 0 0 0 1.489 2.275c.737.785 1.61 1.393 2.146 2.354 1.146 2.051.145 3.98-.024 6.111-.152 1.785.24 3.588 1.29 5.061 2.739 3.822 8.313 3.469 10.925 7.434-.681.377-1.361.744-2.043 1.098a54.34 54.34 0 0 1-1.674.865 1.432 1.432 0 0 0-.136.072c-.553.271-1.105.543-1.658.801-.2.104-.4.191-.601.289-.456.215-.921.424-1.386.631-.633.289-1.265.57-1.906.834-.425.184-.857.369-1.29.545-.385.16-.769.311-1.153.465-.473.184-.938.367-1.41.543-.649.25-1.29.49-1.946.723-.048.016-.096.039-.145.055-.576.199-1.153.408-1.729.6-3.749 1.283-7.561 2.363-11.438 3.293-.408.104-.817.201-1.225.289-2.043.473-4.101.904-6.175 1.297-.665.127-1.321.256-1.986.369l-1.226.215c-.28.049-.56.098-.841.145-.497.08-1.001.168-1.505.248-.737.113-1.474.232-2.219.338-1.313.199-2.643.385-3.973.561-1.273.168-2.547.318-3.829.473-.697.078-1.393.16-2.09.23a248.97 248.97 0 0 1-5.126.529c-1.802.176-3.621.336-5.447.48l-1.121.096c.008 0 .008-.008.016-.008.329-.145.633-.145.985-.135.44.016.801-.137 1.202-.314-1.722-.447.777-3.475 1.321-3.971 1.337-1.219 3.02-2.115 4.75-2.611.777-.232 1.594-.377 2.403-.369 1.105.008 2.05.16 3.132-.232.761-.289 1.946-.697 1.938-1.682 0-.857-.825-1.906-1.698-1.986-1.082-.088-2.939 1.979-3.765.344-.296-.576-.328-1.297-.344-1.93-.008-.561.024-1.313-.513-1.658-.633-.4-1.642-.127-2.106.408-.657.738-.528 1.818-.464 2.717.048.783.417 2.193-.473 2.643-1.193.602-1.465-.721-1.618-1.547-.176-.984-.376-2.018-.176-3.02.24-1.137 1.146-1.93 1.441-3.059.345-1.338.954-4.045-.905-4.566-2.083-.576-1.851 1.475-2.083 2.813-.344 2.035-1.81.889-2.891.129-.777-.553-1.834-.578-2.451.232-.705.936.601 1.906 1.258 2.402.809.6 1.77.945 2.563 1.553.89.697.801 1.795.713 2.828a11.703 11.703 0 0 1-.761 3.082c-.328.834-.801 2.348-1.594 2.844-.649.41-1.586.129-1.754-.641-.208-.945.008-1.746.433-2.596l.096-.191c.441-1.361-.096-2.979-1.186-3.9a1.338 1.338 0 0 0-1.697-.023c-.505.408-.569 1.113-.713 1.705-.185.705-.441 1.787-1.306 1.924-1.009.15-2.299-.537-3.124-1.033-.521-.314-1.377-.545-1.554.311-.136.697.689 1.451 1.082 1.939.521.633 1.017.625 1.746.865.657.215 1.25.568 1.786 1 .985.801 1.754 1.818 2.715 2.635.977.826 2.33 1.779 1.633 3.252-1.874.145-3.748.289-5.638.416-1.258.098-2.523.186-3.789.273-3.164.217-6.351.424-9.555.648.064-.281.16-.6.289-.969 1.137-1.49 1.578-1.361 2.812-1.891.632-.168 1.345-.199 1.954-.424.657-.248 1.29-1.049 1.713-1.586 1.258-1.547 1.434-3.389.593-5.184-.817-1.729-2.507-1.744-3.94-2.707-1.466-.984-3.18-1.576-4.902-1.928-3.692-.762-7.713-.555-11.301.607-1.794.584-3.508 1.467-5.142 2.41-1.378.793-2.331 1.658-3.108 3.084-1.153 2.131-1.394 5.535.833 7.121 1.001.713 2.195.705 3.356.92.938.178 1.802.633 1.706 1.715-.264.023-.529.047-.793.072-7.513.689-14.985 1.674-22.458 2.617-1.29.162-2.579.322-3.869.475-.896.111-1.786.215-2.675.32l-1.201.143c-.272.033-.553.064-.825.09-1.018.119-2.035.23-3.06.344-1.834.209-3.676.4-5.518.592l-2.996.313c-1.922.193-3.844.385-5.759.57-4.309.432-8.61.84-12.918 1.248-1.538.145-3.068.297-4.605.441-1.45.145-2.908.279-4.357.424-1.498.145-2.988.297-4.485.439-1.49.154-2.987.305-4.478.457-1.425.152-2.859.297-4.284.449-1.562.168-3.116.336-4.669.514-1.378.15-2.755.311-4.133.471-.168.016-.336.041-.504.057a700.27 700.27 0 0 0-4.301.521 54.904 54.904 0 0 1 3.42-.873c-.769-.594-.689-1.65-.336-2.451.288-.664.737-1.506-.04-2.02-2.355-1.553-2.996 2.123-3.997 3.293-.657.76-3.909 1.689-3.732-.105.072-.801.553-1.576.801-2.33.353-1.041.296-2.211.713-3.203.705-1.689 2.764-1.723 4.317-1.611 2.17.162 4.3.834 6.055 2.156.977.736 2.019 1.385 3.06 2.033.792.498 1.922 1.139 2.723.289.721-.754-.096-1.41-.657-1.914-.553-.498-1.258-1.066-1.626-1.73-.544-.977 1.834-1.586 2.379-1.803.665-.264 1.514-.535 2.018-1.064.585-.609.192-1.537-.344-2.035-1.354-1.248-3.46-.48-4.797.346-1.354.824-2.667 2.242-4.365 2.146.264-1.113.673-2.188.865-3.316.184-1.057.04-2.051-.216-3.084-.168-.656-.44-1.377-1.105-1.674-.841-.383-1.482.033-1.826.818-.689 1.617-1.121 3.387-2.138 4.854-.601.863-2.923 3.107-3.86 1.473-.489-.857-.425-2.146-.449-3.092a15.515 15.515 0 0 1 .24-3.332c.216-1.193.657-2.402 1.69-3.123 1.193-.834 2.795-.969 4.197-1.041 2.515-.137 5.038.121 7.553.023.689-.023 1.49.057 2.123-.279.641-.33.785-1.273.248-1.779-.568-.527-1.53-.535-2.259-.641-1.458-.207-2.915-.4-4.373-.592 1.714-1.377 3.628-2.508 5.799-2.939.641-.129 1.826-.025 1.746-.977-.088-1.154-1.794-1.131-2.611-1.201-.969-.09-1.706-.105-2.587.336-.681.336-1.386.873-2.179.904-1.826.088-2.05-2.771-2.347-4.012-.144-.609-.329-1.594-.897-1.963-.849-.545-1.578.256-1.714 1.033-.201 1.105-.401 2.227-.529 3.34-.104.889.152 1.586.24 2.451.064.672-.352 1.273-1.097 1.217-.673-.057-.937-.969-1.193-1.465-.584-1.113-2.891-2.932-3.564-.865-.328 1.008-.104 2.299-.056 3.34.04 1.018.353 2.426-.12 3.379-.817 1.635-3.468-.297-4.173-1.121-1.426-1.682-1.033-3.699-.353-5.598.473-1.314 1.458-5.439-1.321-4.494-1.682 2.084-3.572 1.627-5.55.217-.505-.281-1.258-.439-1.602-.207-2.002 1.168-1.682 2.393 1.089 4.043.249.129.649.184.825.217.256 0 2.579 1.641 3.1 3.244-.232 1.018-.608 2.883-2.05 2.346-1.53-.584-2.739-2.738-4.541-2.258-.673.289-.905 1.826-.393 2.867h-.008c.994 1.441 3.316 2.803.497 4.477-2.019 1.777-1.882 2.547.625 3.484 2.827.072 4.797-1.242 6.463-3.035.961-.232 1.69-.369 2.274-.369 1.49 0 2.01.906 2.852 3.516-.985-.367-2.419-.889-3.42-.311-.913.527-.905 1.834-.825 2.746.168 1.938 1.498 2.924 2.547 4.396 1.01 1.418 1.073 3.061.457 4.654-1.305-1.346-1.994-2.988-2.515-4.75-.417-1.393-.857-3.051-2.579-3.211-1.61-.145-2.539.92-2.234 2.475.296 1.48-.633 2.33-1.546 3.34-.577.705-.184 2.09 2.979 2.402a7.26 7.26 0 0 1 2.467 2.314c.488.736 1.386 2.051.961 2.979.576-.104 1.201-.104 1.802-.104-1.25.178-2.499.354-3.748.537a704.39 704.39 0 0 0-5.743.873l-1.442.24c-.849.137-1.706.281-2.555.424l-2.25.385c-.841.152-1.682.297-2.523.457-.961.168-1.914.344-2.867.529-.024.008-.056.008-.08.016-.938.176-1.882.359-2.819.553-1.882.369-3.757.76-5.631 1.17-.433.096-.865.184-1.29.287-.785.168-1.562.346-2.347.529a277.205 277.205 0 0 0-7.68 1.873c-.857.225-1.714.449-2.571.682-1.01.271-2.019.553-3.028.842-.056.016-.12.031-.176.047-1.025.289-2.042.594-3.06.896-1.081.322-2.154.65-3.228.986a3.316 3.316 0 0 1-.424-.785c.44-2.186.369-4.461-.272-6.607-.689-2.314-2.09-4.156-3.228-6.248-1.033-1.891-1.827-4.037-1.49-6.215.376-2.467 2.21-4.373 3.58-6.352 2.499-3.604 3.949-7.873 3.164-12.27-.336-1.922-1.042-3.916-2.083-5.582-.672-1.082-2.427-2.707-3.74-1.475-.945.896.16 2.885.328 3.908.296 1.779.4 3.686.2 5.471-.2 1.787-.841 3.492-2.01 4.869-.665.77-1.474 1.291-2.219 1.955-.777.697-1.257 1.635-1.666 2.57-.921 2.146-1.61 4.285-1.57 6.648.04 2.338.681 4.613 1.57 6.76.905 2.203 2.331 4.244 2.852 6.584.456 2.018.208 4.084-.593 5.975-.016.039-.032.072-.047.111-.649 1.506-1.594 2.932-2.691 4.141l.953-.287c-.072.023-.144.055-.217.08-.464.168-.921.336-1.385.512-.537.199-1.065.393-1.594.6-.977-.775-1.466-2.186-1.986-3.275-.729-1.545-1.45-3.107-2.218-4.637-.112-.225-.216-.447-.329-.68-.481-1.01-.993-2.092-1.77-2.859-.777-.777-2.291-.986-3.003.031-.601.865-.048 2.162.208 3.053.472 1.656.945 3.322 1.538 4.949.112.32.24.633.368.953.385.953.777 1.906.993 2.898.168.729.144 1.449-.408 2.002 1.954-.809 3.933-1.506 5.943-2.178-.585.225-1.169.457-1.754.689-.585.232-1.162.465-1.747.703a186.743 186.743 0 0 0-13.023 5.935 198.407 198.407 0 0 0-10.557 5.688c-.713.408-1.417.816-2.13 1.217-.601.344-1.194.68-1.794 1.01-.817.463-1.634.92-2.451 1.369a527.555 527.555 0 0 1-7.313 3.955c-3.3 1.779-6.616 3.525-9.931 5.271-1.466.777-2.932 1.545-4.397 2.33-.288.152-.584.305-.873.457v.008c-.048.023-.096.049-.136.064-.849.457-1.69.904-2.539 1.361-.753.4-1.498.801-2.25 1.209a268.69 268.69 0 0 0-3.388 1.842h-.008c-.657.361-1.306.721-1.955 1.082-1.682.92-3.348 1.865-5.013 2.818-.008 0-.008.008-.008.008a240.802 240.802 0 0 0-4.966 2.9c-1.169.689-2.33 1.393-3.483 2.115a137.943 137.943 0 0 0-3.813 2.41 9.83 9.83 0 0 0-.608.393c-.609.383-1.202.785-1.802 1.178-.601.4-1.194.801-1.794 1.209-.248.16-.488.328-.737.504-.456.32-.921.633-1.377.961-.4.271-.809.561-1.209.857a39.09 39.09 0 0 0-1.241.889c-.441.313-.873.633-1.306.953l30.956 67.095z",
    fill: nord.nord2,
    fillRule: "evenodd",
    stroke: nord.nord2,
    strokeMiterlimit: "10"
  }), React__default.createElement(Anglerfish, anglerfishProps), React__default.createElement("path", {
    d: "M287.747 562.082c.263-9.25-8.005-16.984-10.117-23.912-2.479-8.133 4.65-11.035 9.208-18.844 4.557-7.811-.12-13.947-4.807-18.52-4.687-4.576-2.402-14.482 5.212-20.832 7.613-6.35 12.371-16.416 4.561-23.959-7.807-7.545-9.217-15.035-6.434-31.438 2.786-16.4-16.329-1.41-25.23 13.738-8.902 15.146-3.713 36.344-4.76 42.754-1.047 6.41-6.032 4.783-10.888 17.783-4.857 13 3.381 16.857 2.902 26.158-.476 9.299-8.428 11.279-8.941 23.021-.248 5.672 2.248 10.027 5.059 14.049h44.235z",
    fill: nord.nord9
  }), React__default.createElement("path", {
    clipRule: "evenodd",
    d: "M253.536 525.752c-.626-4.309-2.798-8.244-2.355-12.85.293-3.021 1.821-5.592 2.554-8.434 1.021-3.959 2.912-7.629 5.125-11.105 2.448-3.85 3.347-7.996 3.294-12.406-.11-8.941 2.254-17.252 7.409-24.813.546-.803 1.106-2.271 2.142-1.902 1.177.416.297 1.795.136 2.707-1.2 6.805-3.092 13.535-2.812 20.49.171 4.277 1.094 8.297 3.556 11.869 3.04 4.406 2.597 8.182-1.197 12.123-2.198 2.281-4.582 4.375-5.226 7.756-.542 2.824.045 5.244 1.327 7.627 1.927 3.592 3.866 7.125 4.129 11.414.28 4.531-1.725 8.219-4.022 11.889-2.489 3.979-2.365 8.016.373 11.486.324.41.57.996 1.301.6.184 2.09.167 4.182-.241 6.268-.377 1.934-1.542 2.568-3.455 2.24-8.786-1.518-13.975-12.666-9.415-20.387 2.602-4.404 3.232-9.203 3.532-14.078.079-1.297.052-2.775-1.321-3.322-1.412-.564-2.372.721-3.377 1.518-.507.408-.973.872-1.457 1.31z",
    fill: nord.nord8,
    fillRule: "evenodd",
    opacity: ".4"
  }), React__default.createElement("path", {
    d: "M172.417 545.684c-.461-2.445-.725-4.961-.251-7.404.486-2.504 1.61-4.846 2.223-7.324 1.684-6.807-.588-13.879-2.423-20.646-1.835-6.77-3.168-14.332.134-20.52.126 7.316 7.05 11.873 10.001 18.568 2.978 6.756 1.491 14.521.436 21.828-1.055 7.307-1.392 15.514 3.256 21.25 3.21 3.965 8.761 6.861 8.916 11.961.016-3.125 2.344-5.479 2.296-8.604-.092-6.051-6.931-10.531-6.665-16.576.158-3.598 2.876-6.762 2.796-10.361-.06-2.668-1.637-5.02-2.871-7.385a31.524 31.524 0 0 1-3.409-11.422c2.015 4.305 5.365 6.957 8.47 10.553 3.104 3.596 5.626 8.438 4.198 12.973-.641 2.031-2.046 3.869-2.098 6.002-.06 2.6 1.88 4.748 3.057 7.068 1.715 3.377 1.815 7.531.264 10.986-1.083 2.412-2.952 5.053-1.779 7.422 4.855-3.682 7.609-10.379 7.974-16.461.44-7.328.823-14.996-2.204-21.686-1.949-4.305-5.327-8.416-4.768-13.107.319-2.662 1.908-5.045 2.248-7.707.524-4.086-1.985-7.971-4.952-10.828-2.968-2.855-6.515-5.135-9.064-8.373-5.315-6.75-4.958-17.326.8-23.703.09 7.316-.249 14.625 5.032 19.688 2.572 2.467 5.995 3.848 8.754 6.105 4.5 3.68 6.94 9.732 6.245 15.504-.417 3.473-1.88 6.836-1.656 10.326.444 6.926 7.207 11.852 8.947 18.568 1.482 5.723-.931 11.734-4.01 16.779-1.233 2.021-2.614 4.055-2.977 6.396-.363 2.338.663 5.104 2.915 5.838 1.891.619 3.926-.352 5.533-1.521 7.722-5.615 10.787-16.811 7.003-25.574-1.544-3.574-4.128-6.979-3.896-10.865.367-6.133 7.68-11.266 5.571-17.039-1.617-4.426-7.951-5.752-9.408-10.232-.972-2.986.667-6.201 2.692-8.598 2.025-2.398 4.537-4.488 5.82-7.354 1.284-2.865-1.325-7.654-2.131-8.191 4.68 3.184 9.622 6.885 8.381 12.406-.751 3.34-3.87 6.1-3.521 9.504.472 4.611 6.587 6.209 8.995 10.17 2.554 4.199.265 9.582-2.183 13.844-.97 1.689-1.994 3.467-2.001 5.414-.008 3.223 2.683 5.703 4.277 8.504 2.937 5.166 2.058 11.846-.862 17.02s-7.591 9.111-12.347 12.672c7.104-.775 14.595-2.25 19.997-6.932 5.4-4.68 8.373-12.711 5.487-19.248-1.738-3.939-5.466-7.744-4.11-11.83.977-2.947 4.199-4.404 6.391-6.605 3.801-3.813 4.208-10.506.898-14.754 2.266 2.541 4.335 4.797 5.765 7.887 1.431 3.088 1.894 6.807.415 9.873-.729 1.508-1.879 2.779-2.607 4.289-3.754 7.77 5.29 16.682 3.294 25.076-3.541 14.883-25.374 20.664-39.738 20.689-10.275.016-13.509-.09-25.857-.324-9.885-.189-19.128-10.407-21.693-23.989z",
    fill: nord.nord14
  }), React__default.createElement("path", {
    d: "M158.388 555.979c2.464-11.045 6.008-21.701 10.707-31.996 2.485-5.443-5.758-9.807-8.25-4.344-5.035 11.031-8.921 22.508-11.563 34.344-1.307 5.855 7.799 7.857 9.106 1.996z",
    fill: nord.nord10
  }), React__default.createElement("ellipse", {
    cx: "165.323",
    cy: "520.103",
    fill: nord.nord9,
    rx: "2.701",
    ry: "1.418",
    transform: "rotate(25.824 165.328 520.111)"
  }), React__default.createElement("path", {
    d: "M147.308 554.826c5.046-12.689 7.864-25.779 8.47-39.422.265-5.982-9.047-5.461-9.312.496a106.373 106.373 0 0 1-7.409 34.582c-2.198 5.528 6.037 9.914 8.251 4.344z",
    fill: nord.nord10
  }), React__default.createElement("ellipse", {
    cx: "151.02",
    cy: "514.021",
    fill: nord.nord9,
    rx: "2.702",
    ry: "1.416",
    transform: "rotate(-15.088 150.994 513.967)"
  }), React__default.createElement("path", {
    d: "M132.069 518.104c1.819 8.063 1.674 16.152-.176 24.191-1.345 5.848 7.76 7.848 9.107 1.992 2.229-9.686 2.124-19.377-.061-29.057-1.32-5.847-10.184-2.949-8.87 2.874z",
    fill: nord.nord10
  }), React__default.createElement("ellipse", {
    cx: "135.985",
    cy: "514.816",
    fill: nord.nord9,
    rx: "2.701",
    ry: "1.418",
    transform: "rotate(-15.088 135.978 514.806)"
  }), React__default.createElement("path", {
    d: "M160.155 569.105c1.23-10.781 10.521-18.508 12.724-29.137 1.216-5.871-7.887-7.879-9.107-1.994-2.197 10.609-11.463 18.092-12.723 29.137-.673 5.903 8.426 7.959 9.106 1.994z",
    fill: nord.nord9
  }), React__default.createElement("ellipse", {
    cx: "169.185",
    cy: "536.688",
    fill: nord.nord10,
    rx: "2.701",
    ry: "1.42",
    transform: "rotate(12.357 169.198 536.74)"
  }), React__default.createElement("path", {
    d: "M151.093 565.238c2.869-7.012 7.105-12.869 12.848-17.807 4.55-3.912-2.358-10.188-6.856-6.318a51.926 51.926 0 0 0-14.241 19.781c-2.257 5.512 5.978 9.895 8.249 4.344z",
    fill: nord.nord9
  }), React__default.createElement("ellipse", {
    cx: "162.374",
    cy: "543.271",
    fill: nord.nord10,
    rx: "2.701",
    ry: "1.419",
    transform: "rotate(42.362 162.38 543.29)"
  }), React__default.createElement("path", {
    d: "M145.138 568.371a265.33 265.33 0 0 1 7.538-33.277c1.7-5.754-7.415-7.723-9.106-1.994a265.19 265.19 0 0 0-7.537 33.277c-.944 5.898 8.157 7.934 9.105 1.994z",
    fill: nord.nord9
  }), React__default.createElement("ellipse", {
    cx: "148.841",
    cy: "532.214",
    fill: nord.nord10,
    rx: "2.701",
    ry: "1.417",
    transform: "rotate(15.319 148.854 532.319)"
  }), React__default.createElement("path", {
    d: "M139.769 563.521a372.522 372.522 0 0 0-.18-30.814c-.283-5.996-9.577-5.268-9.293.732.484 10.27.545 20.539.179 30.816-.213 5.983 9.084 5.214 9.294-.734z",
    fill: nord.nord9
  }), React__default.createElement("ellipse", {
    cx: "134.873",
    cy: "531.27",
    fill: nord.nord10,
    rx: "2.702",
    ry: "1.419",
    transform: "rotate(-1.621 135.277 531.481)"
  }), React__default.createElement("path", {
    d: "M131.332 559.652c-2.076-9.301-2.806-18.701-2.338-28.215.295-5.988-9.029-5.85-9.323.135-.507 10.309.439 20.535 2.687 30.605 1.305 5.858 10.279 3.325 8.974-2.525z",
    fill: nord.nord9
  }), React__default.createElement("ellipse", {
    cx: "124.261",
    cy: "529.595",
    fill: nord.nord10,
    rx: "2.702",
    ry: "1.417",
    transform: "rotate(2.807 124.347 529.54)"
  }), React__default.createElement("path", {
    d: "M387.937 465.098a2.736 2.736 0 0 1 2.476 2.977c-.166 1.811 1.958 5.912 2.981 7.883.203.395.393.76.559 1.09 1.547 3.072 3.476 6.131 5.049 8.537.947-3.148 2.524-6.148 3.907-8.762.33-.621.648-1.225.946-1.807 1.151-2.244 2.099-4.566 3.101-7.027 1.173-2.877 2.385-5.852 3.952-8.684a2.74 2.74 0 0 1 4.793 2.651c-1.41 2.549-2.509 5.246-3.674 8.102-1.001 2.459-2.038 5.002-3.298 7.457-.308.604-.64 1.229-.98 1.873-2.066 3.9-4.408 8.32-4.093 12.104.018.213.005.422-.024.625.465.639.937 1.275 1.389 1.914 2.905 4.117 4.741 8.715 6.519 13.16l.083.209c2.318 5.791 3.935 13.377 4.832 22.525.257-1.551.504-3.189.748-4.977.564-4.117 1.282-8.348 1.979-12.439 1.559-9.172 3.17-18.656 3.189-27.701a2.74 2.74 0 0 1 2.739-2.73h.005a2.74 2.74 0 0 1 2.734 2.744c-.013 5.738-.625 11.555-1.455 17.332.332-.238.646-.467 1.008-.721.562-.396 1.038-.729 1.347-.967.979-.758 1.975-1.484 2.966-2.211 2.958-2.166 5.753-4.213 7.995-6.867a2.738 2.738 0 1 1 4.184 3.535c-2.664 3.152-5.856 5.492-8.943 7.752-.956.699-1.915 1.4-2.859 2.129-.352.271-.895.654-1.538 1.105-1.221.861-4.394 3.096-5.107 4.09-.09.326-.242.625-.437.889l-.429 2.539c-.688 4.049-1.399 8.234-1.952 12.266-.903 6.615-1.854 11.475-3.178 16.256-.607 2.191-.803 4.314-1.013 6.563-.014.164-.033.338-.048.502.204 1.01.433 2.006.71 2.967.063.209.089.416.1.625.834-1.416 1.694-2.82 2.635-4.166 2.566-3.674 4.092-7.59 5.708-11.734.397-1.02.797-2.045 1.216-3.078 1.337-3.295 3.127-6.395 4.858-9.393 2.526-4.373 4.91-8.504 5.926-13.08.326-1.477 1.794-2.418 3.265-2.08a2.738 2.738 0 0 1 2.082 3.266c-1.196 5.398-3.906 10.094-6.529 14.633-1.714 2.969-3.332 5.771-4.525 8.715-.41 1.008-.8 2.01-1.188 3.006-1.663 4.264-3.379 8.672-6.323 12.883-1.442 2.064-2.713 4.299-4.057 6.664-2.083 3.664-4.239 7.457-7.136 10.662-.54.6-1.284.904-2.032.904a2.718 2.718 0 0 1-1.835-.707 2.737 2.737 0 0 1-.197-3.867c1.244-1.377 2.342-2.904 3.384-4.533a2.735 2.735 0 0 1-2.591-2.25c-.269-1.506-.07-2.912.196-4.199-.443-1.504-.932-3.016-1.411-4.502-.691-2.143-1.408-4.359-1.991-6.549-.363-1.354-.852-2.643-1.367-4.008-.573-1.512-1.164-3.076-1.605-4.801-.267-1.049-.458-2.123-.643-3.162-.279-1.564-.542-3.043-1.023-4.295-.865-2.254-1.985-4.6-3.069-6.869-.749-1.568-1.494-3.129-2.166-4.672-.249-.566-.504-1.311-.796-2.174-.333-.98-1.014-2.98-1.42-3.584a2.737 2.737 0 0 1-.471-3.654 2.74 2.74 0 0 1 3.813-.678c1.434 1.002 2.189 2.992 3.264 6.152.238.703.448 1.334.629 1.746.648 1.488 1.368 2.99 2.09 4.502 1.13 2.365 2.299 4.811 3.242 7.268.668 1.74.99 3.549 1.301 5.297.177.986.343 1.916.559 2.768.093.361.216.711.325 1.064-.05-.66-.091-1.33-.146-1.979-.811-9.398-2.367-17.031-4.63-22.689l-.083-.209c-1.735-4.342-3.375-8.441-5.909-12.033-.714-1.014-1.456-2.018-2.198-3.027-1.236-1.68-2.514-3.414-3.684-5.197-1.689-2.578-3.851-5.98-5.602-9.451l-.531-1.035c-2.045-3.949-3.859-7.756-3.57-10.902a2.716 2.716 0 0 1 2.972-2.481z",
    fill: nord.nord12
  }), React__default.createElement("path", {
    d: "M393.739 515.475a2.738 2.738 0 0 1 2.427 3.018c-.352 3.246 1.637 7.166 3.558 10.955 1.104 2.176 2.244 4.422 2.95 6.584.53 1.631 1.155 3.23 1.814 4.922.787 2.021 1.604 4.109 2.251 6.258.277.924.748 2.063 1.247 3.268 1.099 2.656 2.234 5.4 2.299 7.949a2.737 2.737 0 0 1-2.669 2.805c-.024.002-.048.002-.071.002a2.739 2.739 0 0 1-2.735-2.67c-.039-1.531-1.019-3.9-1.884-5.99-.553-1.336-1.074-2.598-1.431-3.781-.586-1.943-1.325-3.84-2.109-5.85-.658-1.689-1.339-3.436-1.919-5.211-.574-1.762-1.572-3.727-2.627-5.807-2.177-4.295-4.645-9.16-4.118-14.025a2.745 2.745 0 0 1 3.017-2.427z",
    fill: nord.nord12
  }), React__default.createElement("path", {
    d: "M285.46 509.109s1.482 14.752 9.925 26.74c4.911 6.973 12.176 13.012 22.875 14.658 1.075 6.318.099 11.604-1.168 15.346h9.027c1.107-3.369 1.519-6.563 1.416-9.719l.004.057c9.702-2.836 10.572-11.473 10.48-15.164a14.86 14.86 0 0 0-.13-1.699c-2.911-4.248-5.339-.609-5.339-.609a15.113 15.113 0 0 1-.292 3.762c-1.19 5.648-5.421 8.027-5.421 8.027l.012.076c-.494-2.369-1.227-4.758-2.125-7.215-.749-2.059-1.609-4.16-2.547-6.352 5.907-2.121 9.941-6.459 12.69-11.543l-.048.107c18.408-.639 16.786-19.508 16.786-19.508-3.276-4.371-5.83.605-5.83.605.853 12.502-8.652 13.777-8.652 13.777l-.036.082c4.164-11.217 3.593-23.57 3.593-23.57-5.944-5.824-8.25 0-8.25 0 1.728 15.313-2.527 24.258-6.727 29.227-.017-.041-7.825-17.594 3.326-26.801 0 0-2.244-6.266-8.129-1.939 0 0-8.246 17.346 2.371 31.248-1.498 1.32-2.803 2.131-3.606 2.564a351.352 351.352 0 0 1-2.749-6.41c-8.513-20.531 3.753-34.805 3.753-34.805 0-6.512-7.759-4.506-7.759-4.506-5.211 5.98-7.735 12.443-8.294 19.219-3.651-6.018-.131-15.926-.131-15.926-3.911-4.734-7.616 0-7.616 0-1.091 19.541 7.854 23.207 7.854 23.207l.005-.02c.926 8.672 4.516 17.732 9.435 26.855.453.84.868 1.67 1.239 2.494a37.665 37.665 0 0 1 1.729 4.467c-.016-.004-4.968-1.898-10.279-6.99-5.939-5.682-12.324-15.352-12.773-30.84-.004.003-4.371-7.036-8.619 1.098m31.675 36.758a35.194 35.194 0 0 1 1.124 4.623l-1.124-4.623z",
    fill: nord.nord11
  }), React__default.createElement("path", {
    d: "M390.056 543.389c-3.365-4.34-3.718-8.521-.725-13.248 2.794-4.412 3.05-9.459.009-13.625-5.836-7.992-5.396-15.777-.749-23.916.681-1.193 1.948-2.818.022-3.768-1.611-.795-2.203 1.031-2.822 2.127-4.959 8.775-6.209 17.508.204 26.246 2.503 3.408 2.967 7.297.681 10.898-4.087 6.441-3.417 12.227 1.298 18.01 2.267 2.783 3.291 6.088 1.627 9.684.044.057.079.115.121.17h3.56c1.078-4.35-.114-8.565-3.226-12.578zm-23.038-7.895c6.179-8.717 4.189-17.396-.65-25.914-.522-.918-1.134-2.059-2.441-1.48-1.578.697-.971 1.922-.423 3.043.879 1.795 1.912 3.537 2.594 5.406 2.12 5.807 2.246 11.557-1.52 16.793-4.122 5.732-4.481 11.391-.745 17.496.111.182.212.365.311.549h3.665c-2.866-5.09-4.858-10.158-.791-15.893zm-37.866 2.955c-.634-1.17-1.396-2.686-3.002-1.691-1.668 1.031-.367 2.318.229 3.438 2.379 4.475 3.929 9.078 2.759 14.113h3.316c1.233-5.536-.537-10.754-3.302-15.86zm-34.089 9.549c-5.027-6.805-4.569-13.508-.542-20.443.659-1.135 1.543-2.57-.097-3.441-1.43-.76-2.111.725-2.665 1.713-4.07 7.26-5.7 14.621-.499 22.082 1.019 1.461 1.754 2.973 2.111 4.566h3.537c-.215-1.573-.819-3.086-1.845-4.477z",
    fill: nord.nord7
  }), React__default.createElement("path", {
    d: "M380.352 560.568l2.465-.104c-.188-4.451-3.115-6.615-5.7-8.521-2.509-1.855-4.679-3.461-4.827-6.951-.146-3.492 1.88-5.271 4.228-7.332 2.412-2.119 5.148-4.518 4.96-8.971-.188-4.449-3.115-6.611-5.699-8.518-2.511-1.855-4.679-3.455-4.826-6.945-.147-3.49 1.879-5.27 4.225-7.328 2.416-2.119 5.15-4.52 4.962-8.969-.188-4.449-3.116-6.611-5.698-8.52-2.512-1.852-4.68-3.453-4.827-6.941l-2.464.104c.187 4.449 3.114 6.611 5.698 8.516 2.512 1.855 4.68 3.455 4.828 6.945.147 3.49-1.879 5.27-4.226 7.328-2.415 2.119-5.149 4.52-4.963 8.969.188 4.449 3.116 6.611 5.701 8.52 2.51 1.854 4.679 3.453 4.826 6.943.147 3.494-1.879 5.271-4.226 7.332-2.415 2.119-5.149 4.52-4.961 8.971.186 4.453 3.113 6.615 5.699 8.521 2.509 1.858 4.678 3.459 4.825 6.951z",
    fill: nord.nord9
  }), React__default.createElement("path", {
    d: "M356.069 557.814l-2.438.369c-.665-4.406 1.794-7.088 3.968-9.453 2.11-2.301 3.933-4.287 3.413-7.744-.523-3.455-2.852-4.816-5.549-6.391-2.773-1.619-5.916-3.453-6.581-7.859-.665-4.402 1.796-7.084 3.968-9.449 2.112-2.299 3.935-4.283 3.413-7.736-.521-3.455-2.849-4.814-5.545-6.389-2.773-1.617-5.918-3.453-6.583-7.857s1.797-7.084 3.969-9.449c2.112-2.299 3.934-4.283 3.413-7.736l2.439-.367c.665 4.402-1.796 7.084-3.969 9.447-2.112 2.299-3.936 4.283-3.413 7.738.521 3.455 2.85 4.813 5.547 6.387 2.773 1.619 5.917 3.453 6.582 7.857.666 4.402-1.796 7.084-3.969 9.449-2.111 2.299-3.934 4.283-3.412 7.736.521 3.457 2.849 4.816 5.546 6.391 2.774 1.619 5.917 3.453 6.583 7.859.665 4.408-1.796 7.088-3.968 9.455-2.112 2.299-3.937 4.287-3.414 7.742zm-13.561 9.825l-2.438.369c-.667-4.406 1.795-7.088 3.967-9.453 2.111-2.301 3.935-4.289 3.412-7.744-.521-3.457-2.851-4.816-5.547-6.391-2.772-1.619-5.916-3.455-6.582-7.859-.664-4.402 1.796-7.082 3.969-9.449 2.111-2.299 3.934-4.283 3.413-7.736-.522-3.455-2.85-4.814-5.548-6.387-2.773-1.619-5.915-3.455-6.58-7.857-.667-4.406 1.796-7.084 3.968-9.451 2.112-2.297 3.934-4.283 3.413-7.736l2.438-.369c.667 4.404-1.795 7.084-3.968 9.447-2.112 2.301-3.935 4.285-3.413 7.74s2.85 4.813 5.547 6.387c2.774 1.617 5.916 3.453 6.581 7.857.665 4.402-1.794 7.084-3.968 9.449-2.111 2.299-3.934 4.283-3.413 7.738s2.85 4.814 5.547 6.389c2.773 1.619 5.917 3.453 6.582 7.859.666 4.406-1.795 7.088-3.968 9.453-2.11 2.302-3.934 4.289-3.412 7.744z",
    fill: nord.nord10
  }), React__default.createElement("path", {
    d: "M737.502 410.803a44.765 44.765 0 0 1-1.281 1.531c-4.549 5.293-9.779 10.043-15.361 14.447-5.502-2.227-12.431-3.332-19.471-3.867-10.372-.793-20.976-.354-27.544-.514-41.912-.977-78.339 6.279-113.883 28.945-13.367 8.521-27.407 17.477-37.827 29.611-8.906 10.363-12.432 22.842-18.967 34.52-6.703 11.982-17.139 20.279-27.063 29.441-9.603 8.857-17.731 19.391-28.151 27.336-6.64 5.063-13.952 9.043-21.369 12.861-9.867 5.08-19.927 9.861-28.817 16.508-2.923 2.188-5.815 4.598-8.178 7.369-13.167-8.979-23.227-18.646-37.947-25.35l27.023-14.168 33.583-17.613 12.43-6.518 44.188-42.547 35.641-49.664 27.632-38.301 25.861-17.172 48.513-11.758 6.207-1.09 1.594-.279 1.209-.217 5.871-1.023 1.618-.289 8.842-1.555 6.312.689 1.346.152h.008l8.706.945 1.594.176 17.084 1.865.352.041 12.255 1.338 22.866 4.813 13.07 2.756 1.771.367 7.945 1.676.4.104 1.818.488 10.059 2.699a60.62 60.62 0 0 0-.016 8.441c.045.747.221 1.862.077 2.806z",
    fill: nord.nord1,
    stroke: nord.nord1,
    strokeMiterlimit: "10"
  }), React__default.createElement("g", {
    clipRule: "evenodd",
    fillRule: "evenodd"
  }, React__default.createElement("path", {
    d: "M719.349 377.725c-2.024 9.811-1.725 19.654.122 29.518.408 2.182 1.442 4.627-2.142 5.053-16.812-1.49-32.142-7.248-45.965-17.045-2.586-1.832-5.271-4.205-3.893-8.152.313-2.535 2.211-3.629 4.217-4.59 4.814-2.311 10.024-2.582 15.261-2.668 8.044.771 15.554 3.512 23.625 7.189-2.046-5.01-3.43-9.514-4.211-14.152-.361-2.148-1.092-4.477 1.144-6.141 2.249 5.495 6.684 8.63 11.842 10.988zm-.827-45.366c4.036-4.189 8.073-8.376 12.109-12.566 5.999 1.139 7.518 3.205 7.986 10.869-.881 3.525-2.376 6.754-4.263 9.854-3.613 5.936-6.405 12.283-8.822 18.811-.609 1.645-.946 3.588-3.115 4.061-2.36-2.682-2.269-5.695-.855-8.559 4.016-8.138 2.568-15.524-3.04-22.47zm48.008-132.966c-4.628 1.975-6.888 6.325-9.616 10.046-7.898 10.769-13.497 22.64-15.025 36.165-.869 7.68-.544 15.285 1.991 22.799 1.875 5.56 4.829 10.846 4.98 16.894-2.447-1.825-5.232-1.957-8.086-1.745-3.285-9.375-6.592-18.717-7.884-28.641-.966-7.419-.699-14.729.174-22.063 1.956-8.657 5.492-16.586 11.163-23.369 4.661-5.574 10.505-9.656 17.627-11.589 1.596-.432 3.699-.863 4.676 1.503z",
    fill: "#A2CEDA"
  }), React__default.createElement("path", {
    d: "M723.288 412.371c-1.808.061-4.005 0-5.958-.076.999-3.764.207-7.564-.446-11.227-1.184-6.621-.508-13.109.115-19.637.152-1.6.84-2.941 2.35-3.707 6.321 2.746 8.211 8.203 8.604 14.342.314 4.889.387 9.814.158 14.697-.178 3.795 1.33 5.457 2.013 5.594l-6.836.014zm-.87-48.984c3.894-11.676 9.182-22.641 16.201-32.727.809 11.318-1.014 22.209-4.928 32.725-.902 2.424-1.832 5.197-5.263 5.041-3.213-.147-4.973-2.197-6.01-5.039zm45.922-51.49c-4.748-2.332-10.794 2.103-11.343 8.28-.434 4.875.836 9.422 2.707 13.887 1.632 3.893.671 7.471-1.708 10.58-2.164 2.828-4.492 2.471-6.117-.729-1.219-2.402-1.793-5.01-2.134-7.66-.589-4.57-1.255-9.133-1.743-13.712-.414-3.873-.667-7.42 2.616-10.762 4.189-4.265 4.188-20.212-1.758-26.484-11.633-21.616-12.102-43.221-.876-64.717 3.481-6.668 7.586-12.973 12.641-18.564 1.486-1.643 2.919-3.994 5.905-2.623.772 7.092-2.411 13.326-4.141 19.842-3.006 11.322-5.244 22.695-4.851 34.549.252 7.633 1.65 14.977 4.949 21.926 3.127 6.593 4.203 13.674 4.87 20.727.486 5.124 1.6 10.269.983 15.46z",
    fill: nord.nord8
  }), React__default.createElement("path", {
    d: "M797.491 340.57c-4.028 3.988-9.419 5.111-14.681 4.869-13.095-.6-22.114 5.303-29.122 14.617a60.484 60.484 0 0 0-2.658 3.836c-7.064 11.014-11.918 22.732-12.792 35.666a60.62 60.62 0 0 0-.016 8.441c.048.744.225 1.859.08 2.803-.08.578-.272 1.09-.688 1.426-.04.064-.256.098-.593.105-1.241.039-4.125-.209-5.767-.008a5.525 5.525 0 0 1-1.138.031c-2.506-.191-3.387-2.322-3.516-4.949-.168-3.678-.16-7.354-.24-11.037-.016-1.082-.048-2.17-.088-3.252-.225-5.6-2.026-10.451-6.969-13.729a2.967 2.967 0 0 1-.264-.111c-.36-.145-.713-.297-1.058-.457h-.008c-4.309-1.977-7.793-4.854-10.363-8.754a18.98 18.98 0 0 1-1.226-2.066 6.353 6.353 0 0 1-.28-.512c-.625-.834-1.354-1.273-2.14-1.49-1.657-.488-3.563-.016-5.236-.424a4.738 4.738 0 0 1-.706-.232c-.104-.025-.208-.057-.312-.088-5.414-1.426-10.533-3.373-14.225-7.971-.208-.344-.417-.695-.625-1.041a1.14 1.14 0 0 1-.08-.143 31.191 31.191 0 0 1-.945-1.699c-.769-1.506-1.346-3.074-1.434-4.854-.232-4.926 2.787-6.959 7.257-4.781 2.194 1.082 3.188 3.436 5.206 4.693.008.016.016.016.032.023.176.113.352.217.552.305.041.016.08.041.128.057.04.031.081.047.121.063 1.434.715 5.102 2.771 6.72 2.621h.008c.12-.008.216-.033.313-.064.008 0 .016-.008.023-.008 3.436-.273 3.124-1.369 3.957-1.322 3.251.186 3.54-4.141 2.595-8.475-.473-2.17-1.266-4.309-1.041-6.559.345-3.539 1.024-7.137 4.806-8.482 3.748-1.32 6.055 1.395 8.321 3.828.048.057.104.121.16.178.08.088.16.176.232.264 5.542 6.223 7.048 13.16 4.269 21.072-.993 2.836-3.107 5.775-1.121 8.906.176.281.385.561.633.85.032.039.064.07.096.111.521.602.89 1.314 1.466 1.875 2.747 2.674 4.854 2.434 6.504-1.059 2.322-4.916 3.628-10.203 4.413-15.586.657-4.469 1.322-8.945 1.298-13.471 0-.656-.017-1.322-.057-1.986a34.5 34.5 0 0 0-.112-1.57c-.448-4.541-1.297-8.802-6.543-10.148-.121-.031-.241-.055-.368-.088l-.465-.144c-4.565-1.458-8.811-3.563-12.567-6.583-6.391-5.135-6.094-11.045.714-15.57.112-.041.224-.072.336-.112.28-.088.553-.161.833-.224 1.89-.417 3.764-.266 5.606.695.177.073.353.145.528.225.185.072.368.16.553.257 1.402.681 2.683 1.585 3.885 2.603.304.289.625.609.953.93l.536.512c1.555 1.458 3.292 2.756 5.03 1.947 2.122-.986 1.33-3.82 1.306-6.191 0 0 .008 0 0-.008 0-.354.016-.697.056-1.018a1.736 1.736 0 0 0-.023-.528s-.008-.009 0-.009c-.137-.608-.586-1.186-.746-1.81-.344-1.104-.279-2.219-.176-3.332.008-.168.024-.337.04-.505-.008-.031-.008-.063-.016-.096-.232-1.514-.385-3.027.097-4.518 0-.008.008-.016.008-.023.088-.305.199-.585.344-.833.496-.921 1.314-1.522 2.323-1.954h.008c.448-.32.896-.641 1.346-.953.128-.129.256-.248.384-.353 2.299-1.979 4.453-1.226 6.584-.032.336.185.681.385 1.018.585.232.144.472.288.704.425 6.729 7.119 7.745 20.976 2.042 29.249-1.137 1.642-2.218 3.204-2.018 5.302.208 2.115.384 4.237.576 6.351.369 4.215.801 8.41 1.706 12.559.152.754.337 1.498.529 2.252.44 1.682.72 4.076 3.035 3.939 2.082-.129 2.403-2.346 2.939-4.084.761-2.451-.024-4.693-.857-6.936-1.489-3.998-2.37-8.074-1.946-12.335.489-5.029 3.028-8.586 7.713-10.436 2.123-.841 4.165-.85 5.15 1.858 2.475 4.3 2.13 9.187 2.852 13.799.512 3.34 1.385 6.279 4.645 7.305 3.805 1.193 7.185-.545 9.659-3.34 3.477-3.932 6.824-4.262 10.869-.584 4.412 4.006 4.837 7.826 1.129 11.494z",
    fill: nord.nord4
  })), React__default.createElement("g", {
    clipRule: "evenodd",
    fillRule: "evenodd"
  }, React__default.createElement("path", {
    d: "M718.563 299.5c-1.567-5.562.192-10.004 5.211-13.167 4.98-3.136 9.754-2.853 14.27.851-.032 1.55-.065 3.1-.1 4.649-4.854 2.114-9.096 5.186-13.27 8.364-1.979-.835-4.029-.941-6.111-.697z",
    fill: nord.nord1
  }), React__default.createElement("path", {
    d: "M724.674 300.198c2.684-5.506 6.915-8.59 13.271-8.363l.378 4.448c-.92 5.38-3.861 7.651-9.061 6.996l-4.588-3.081z",
    fill: nord.nord2
  })), React__default.createElement("g", {
    clipRule: "evenodd",
    fillRule: "evenodd"
  }, React__default.createElement("path", {
    d: "M684.496 356.684c3.635 4.172 8.872 5.404 13.598 7.574.373.439.68.914.633 1.51-.346 4.25-7.58 12.676-11.908 13.887-2.061-1.129-3.021-3.277-4.442-4.969-2.974-3.545-6.442-6.211-10.878-7.545-1.301-.684-2.912-.754-3.92-2.02.614-4.162 3.119-7.365 5.603-10.443 1.983-2.457 5.696-2.416 8.414-.461 1.028.744 1.806 1.795 2.9 2.467zm-19.834-2.358a6.577 6.577 0 0 1-.336 1.602c.129 1.049.168 2.131.12 3.236a2.939 2.939 0 0 1-1.018-.945c-.664-1.002-.664-2.299-1.033-3.453-1.233-3.875-2.426-7.824-6.271-10.098-3.588-2.123-5.614-1.547-7.288 2.178-2.195 4.877-2.915 10.084-2.924 15.434-.016 4.742-.144 9.475-2.171 13.871l-3.291 3.533c-1.986-13.809-1.458-27.576.023-41.313.496-4.58 1.434-9.074 3.692-13.158 2.611-4.726 6.8-5.727 11.181-2.419 5.967 4.501 9.099 10.517 9.579 17.99.24 3.748.1 7.432.011 11.16-.102.845-.14 1.556-.274 2.382zm-31.129 12.319c.693 1.781 1.622 4.686 2.083 6.475.796 2.666-1.484.775-2.938.754-6.821-.105-10.23 4.525-8.496 11.111.74 2.813 3.549 5.207 2.042 8.518-.717.223-1.66.199-2.491.301-.938.113-.916.199-1.794.227-2.962-3.748-5.841-7.738-8.278-11.852-1.83-3.09-2.828-6.432-3.235-9.928-.751-6.449 3.571-12.557 9.844-14.082 4.258-1.035 8.881.992 11.102 4.932.68 1.208 1.216 2.233 2.161 3.544z",
    fill: nord.nord9
  }), React__default.createElement("path", {
    d: "M664.462 365.066c-11.013.844-12.51 4.43-20.72 11.084.417-9.547-.344-19.246 2.828-28.457.872-2.539 1.473-5.701 4.886-6.07 3.805-.408 6.848 1.49 8.954 4.525 2.082 2.988 3.483 6.248 3.916 9.779.129 1.049.168 2.131.12 3.236l.016 5.903zm-26.273 12.567c1.522 2.283.718 1.936 2.736 2.723-1.48 4.572-2.631 9.311-6.107 12.918-.671.168-.941.227-1.838.012-2.307-.248-4.383 1.082-6.757.217-1.133-2.545-2.458-5.027-3.363-7.646-2.984-8.633 2.044-14.566 10.994-13.084l1.869.879 2.466 3.981z",
    fill: nord.nord10
  }), React__default.createElement("path", {
    d: "M622.096 394.025c-.5.014-1.095.021-1.596.037-5.019-6.424-10.22-13.166-13.838-20.541-2.116-4.313-3.8-8.727-3.856-13.625-.062-5.182 2.063-9.119 6.169-12.047 5.516-3.934 10.614-3.527 15.349 1.494 4.632 4.91 7.376 10.889 9.21 17.299-1.938.275-2.029-1.578-2.778-2.555-3.365-4.389-7.4-5.816-11.671-3.969-4.986 2.158-7.962 7.461-7.115 12.369 1.173 6.813 4.492 12.637 8.417 18.193.642.914 1.589 2.133 1.709 3.345zm43.344-37.271c-.176 0-.324 2.947-.381 2.799-.602-1.578-1.077-6.484-1.198-7.67-.368-3.611-.601-7.24-.744-10.877-.257-6.303-2.731-11.668-7.713-15.801-4.237-3.517-7.665-2.9-10.115 1.896-2.652 5.199-3.324 10.941-3.693 16.619-.552 8.627-1.152 17.285-.561 25.967.217 3.18 1.314 6.359.177 9.547a2.127 2.127 0 0 1-.985.945c-1.441-.705-1.521-2.098-1.746-3.412-1.682-21.344-2.819-42.68.873-63.849.576-3.291 1.563-6.503 3.107-9.483 3.283-6.351 7.962-7.593 14.169-3.804.833.513 1.674 1.009 2.515 1.514 1.474.849 1.839.834 3.172 2.451.088.145.168.271.248.391 1.121 1.836.945 1.795 3.355 5.952.225.409.425.89.617 1.418 3.14 8.89 2.1 31.252-1.097 45.397zm19.056-.07c-9.776-3.355-9.771-3.354-15.048 5.807-.482.838-1.069 1.615-1.609 2.42-.586.629-1.194.621-1.821.029 3.444-7.617 7.424-14.947 12.22-21.771 3.485-4.959 5.873-5.328 11.401-2.352 3.984 2.143 9.048 6.766 10.989 10.836 1.276 2.42-4.303-.379-5.24-.852-2.983-1.504-5.858-3.232-8.757-4.906-1.244-.719-2.504-1.441-3.863-.508-1.212.834-.901 2.217-.871 3.438.072 2.861 1.397 5.343 2.599 7.859z",
    fill: nord.nord8
  })), React__default.createElement("g", {
    fill: nord.nord12
  }, React__default.createElement("path", {
    clipRule: "evenodd",
    d: "M686.75 379.313c4.778-4.26 9.117-8.854 11.344-15.055 2.321.006 4.649.102 6.964-.016 1.891-.096 2.344.967 2.449 2.494-.142 8.141 2.662 15.592 6.491 24.104-8.986-5.199-17.645-8.037-26.685-9.648-.222-.334-.443-.668-.665-1-.467-.36-.433-.655.102-.879zm42.512-76.034c4.048-1.015 7.099-3.31 9.061-6.997 1.043 2.682.953 5.479.707 8.215-.333 3.712-2.218 4.585-5.279 2.525-1.607-1.082-3-2.485-4.489-3.743z",
    fillRule: "evenodd"
  }), React__default.createElement("path", {
    d: "M707.304 277.59c-1.474.063-3.092-.272-3.725 1.769-1.457 4.67-4.981 5.471-9.298 4.63l-.001-.002c-2.087-.391-3.022-1.909-3.661-3.721-12.574 3.868-23.09 10.795-31.475 20.879l3.42 2.842c1.121 1.836.945 1.795 3.355 5.952.225.409.328.955.52 1.483.487 3.438 1.451 6.766 1.555 10.33.281 9.835-.872 20.695-2.835 30.298a30.142 30.142 0 0 0-.601 3.012l-.232.865c-.072.77.137 1.354.137 2.268 0 .184-.017.6-.04 1.08-.048.777-.121 1.697-.177 1.994-.071 2.9-.545 4.453 1.771 4.213.704-.039.951.063 1.255-.361.554-.773.288-.355.761-1.174 3.188-5.5 6.538-12.545 10.07-17.838 4.413-6.6 7.833-6.977 13.928-1.699 1.282 1.113 2.555 2.828 3.628 4.141.785.969.985 2.604 4.357 3.869 2.194.729 6.287.168 8.018-2.875 1.77-3.084 2.138-5.063.696-8.049a9.64 9.64 0 0 1-.904-3.645c-.121-3.404-.049-7.152 3.251-8.891 3.283-1.73 5.166 1.73 7.448 3.396 3.221-.529 11.942-9.156 12.327-12.223.016-.096-.145-.224-.225-.345-3.732-2.178-7.897-3.508-11.43-6.11-6.695-4.95-6.92-9.05-.633-14.177.481-1.001.833-2.025 1.001-3.155 1.202-7.929 7.465-11.837 15.21-9.523 1.082.321 2.131.753 3.268.36.465-.896.93-1.785 1.387-2.682-10.221-4.756-20.866-7.376-32.126-6.911z"
  })), React__default.createElement("g", {
    clipRule: "evenodd",
    fillRule: "evenodd"
  }, React__default.createElement("path", {
    d: "M687.313 381.191c-7.073.506-13.585-1.102-19.206 4.033-1.01-.008-2.615 1.316-3.395 2.277-2.663 3.027-4.319 6.359-4.729 10.363-.013 2.51-1.901 2.904-3.682 2.771-3.548-.262-7.187-.254-10.481-2.029-1.859-1.674-1.59-3.773-1.203-5.857 2.316-12.459 17.644-23.301 30.279-21.803 5.727.68 8.459 5.16 12.23 8.396.416.588.684 1.187.187 1.849z",
    fill: nord.nord7,
    opacity: "0.9"
  }), React__default.createElement("path", {
    d: "M686.75 379.313c-.034.291-.066.586-.102.879-.671-.504-1.487-.891-1.989-1.527-5.906-7.48-13.2-7.314-21.13-4.42-10.762 3.93-17.998 13.102-18.241 23.803-2.482-.42-4.362-.875-6.882-1.377-2.296-1.273-3.182-1.766-4.314-3.207 1.764-4.232 3.366-9.514 6.139-13.281a.619.619 0 0 0 .218-.502c.987-1.805 1.64-3.213 2.839-4.908 8.084-7.549 17.392-11.381 28.74-9.004 7.5 1.686 11.4 7.301 14.722 13.544z",
    fill: nord.nord7
  })), React__default.createElement("g", {
    clipRule: "evenodd",
    fillRule: "evenodd"
  }, React__default.createElement("path", {
    d: "M683.302 327.814c-7.204-1.957-10.269-7.372-8.091-14.299 2.58-8.208 11.791-14.164 20.407-13.199 6.054.68 9.747 4.8 9.811 10.95-1.054 1.313-2.586 1.412-4.106 1.617-7.258.982-12.616 4.482-15.314 11.496-.544 1.412-1.058 2.887-2.707 3.435z",
    fill: nord.nord1
  }), React__default.createElement("path", {
    d: "M683.302 327.814c3.099-11.808 9.724-16.763 22.127-16.548 0 1.826-.497 3.338-.672 5.02-1.663 7.042-6.238 10.777-13.319 11.666-2.712.116-5.424.673-8.136-.138z",
    fill: nord.nord2
  })), React__default.createElement("path", {
    clipRule: "evenodd",
    d: "M667.491 307.835c-2.637-.367-4.473-3.538-3.972-5.406.2-2.216 6.044-9.073 11.263-12.669 1.522-1.049 3.467-2.751 5.271-1.218 1.989 1.688.582 3.962-.326 5.755-3.196 6.306-9.6 13.004-12.236 13.538zm19.056-17.856c-1.346-.061-2.144-.775-2.197-2.047-.046-1.11.689-1.777 1.787-1.875 1.103-.1 1.916.41 2.102 1.547.215 1.316-.484 2.064-1.692 2.375z",
    fill: nord.nord6,
    fillRule: "evenodd"
  }), React__default.createElement("path", {
    clipRule: "evenodd",
    d: "M720.855 426.785c-17.14 13.527-37.676 23.828-52.532 36.746a25.003 25.003 0 0 0-2.307-.824c-14.001-4.197-32.157 1.121-45.509 5.807-19.919 6.984-43.891 12.262-59.196 27.76-13.688 13.863-20.695 33.623-31.052 49.881-23.026 36.188-61.366 64.01-100.764 80.781-17.604-4.43-29.691-10.98-39.911-17.941 2.364-2.77 5.255-5.182 8.178-7.367 15.562-11.637 34.695-17.557 50.186-29.369 10.42-7.947 18.549-18.479 28.152-27.336 9.924-9.162 20.359-17.461 27.063-29.441 6.535-11.678 10.06-24.156 18.966-34.52 10.42-12.135 24.46-21.09 37.828-29.611 35.544-22.666 71.97-29.922 113.882-28.945 11.031.262 33.409-1.138 47.016 4.379z",
    fill: nord.nord2,
    fillRule: "evenodd",
    stroke: nord.nord2,
    strokeMiterlimit: "10"
  }), React__default.createElement("path", {
    d: "M668.323 463.531c-8.338 7.25-14.897 15.322-18.053 25.246-18.405 57.85-27.231 154.842-188.481 143.092-12.582-.912-23.178-2.635-32.293-4.934 39.397-16.771 77.737-44.594 100.764-80.781 10.356-16.258 17.364-36.018 31.052-49.881 15.306-15.498 39.277-20.775 59.196-27.76 13.352-4.686 31.508-10.004 45.509-5.807.8.241 1.561.521 2.306.825z",
    fill: nord.nord3,
    stroke: nord.nord3,
    strokeMiterlimit: "10"
  }), React__default.createElement("g", {
    clipRule: "evenodd",
    fillRule: "evenodd"
  }, React__default.createElement("path", {
    d: "M573.255 602.059c-2.154 5.953-14.09 10.822-19.605 8.035-1.169-.592-1.908-1.398-2.059-2.711-.102-1.996 1.201-3.26 2.573-4.268 4.446-3.271 9.432-4.898 14.992-4.186 1.877.241 3.705.817 4.099 3.13z",
    fill: nord.nord0
  }), React__default.createElement("path", {
    d: "M573.255 602.059c-6.571-3.68-15.831-1.402-21.664 5.326-1.401-1.445-.574-2.711.435-3.814 4.852-5.313 11.027-7.193 17.965-6.215 2.073.29 5.06 1.156 3.264 4.703z",
    fill: nord.nord2
  }), React__default.createElement("path", {
    d: "M434.001 617.787c-.896 5.971-6.02 8.553-9.814 12.191-.645.617-1.502 1.018-2.261 1.516-11.236 7.107-23.427 10.369-36.706 8.764-4.117-.498-8.03-1.852-10.562-5.578-1.812-5.236 1.519-8.352 4.934-11.133 8.876-7.229 19.182-11.441 30.421-13.197 6.208-.969 12.511-.996 18.507 1.404 2.723 1.092 5.513 2.338 5.481 6.033z",
    fill: nord.nord0
  }), React__default.createElement("path", {
    d: "M434.001 617.787c-3.147-4.715-8.104-5.893-13.188-6.184-14.957-.85-28.271 3.799-39.94 13.027-3.157 2.496-6.47 5.27-6.213 10.049-2.53-3.73-1.405-7.307.593-10.746 2.737-4.713 6.958-7.898 11.457-10.775 1.195-.766 2.729-1.092 3.446-2.521 6.671-2.064 13.045-5.141 20.087-5.955 7.332-.844 14.556-.873 21.274 2.852 2.296 3.064 5.933 5.798 2.484 10.253zm38.199-37.711c-1.271-.201-3.353.303-3.019-1.641.525-3.07 3.508-3.332 5.948-3.764 1.26-.225 3.154.17 2.722 1.961-.668 2.782-3.226 3.214-5.651 3.444zm31.57-7.701c-1.117-.256-2.119-.621-1.653-1.656.806-1.787 2.522-1.625 4.114-1.354.772.135 2.099.324 1.633 1.357-.8 1.78-2.632 1.757-4.094 1.653z",
    fill: nord.nord3
  }), React__default.createElement("path", {
    d: "M493.466 564.533c-2.577 5.08-13.773 8.121-18.396 5.027-.979-.656-1.55-1.459-1.54-2.648.127-1.795 1.431-2.779 2.767-3.529 4.33-2.436 8.962-3.342 13.852-2.096 1.65.422 3.218 1.139 3.317 3.246z",
    fill: nord.nord0
  }), React__default.createElement("path", {
    d: "M493.466 564.533c-5.466-4.008-13.987-2.99-19.936 2.381-1.094-1.443-.216-2.484.806-3.359 4.917-4.213 10.64-5.215 16.729-3.582 1.822.488 4.395 1.588 2.401 4.56z",
    fill: nord.nord3
  }), React__default.createElement("path", {
    d: "M627.746 444.344c1.121 1.523.247 2.754-.624 3.941-4.702 6.406-17.356 10.752-25.004 8.693-1.823-.488-3.277-1.098-3.228-3.305-1.274-2.379.465-3.82 1.858-5.086 6.747-6.127 14.802-7.908 23.649-6.693 1.484.204 2.808.848 3.349 2.45z",
    fill: nord.nord0
  }), React__default.createElement("path", {
    d: "M627.746 444.344c-8.886-3.285-21.835-.4-27.871 7.219-.509.643-.984 1.254-.982 2.111-1.32.691-1.598-.016-1.657-1.172-.183-3.555 2.146-5.723 4.598-7.486 6.257-4.5 13.308-6.699 21.037-5.582 2.482.359 5.696.865 4.875 4.91zm6.439 9.293c1.365.184 3.405-.096 2.9 1.801-.741 2.777-3.452 3.422-5.996 3.725-1.343.158-3.268-.313-2.981-1.791.616-3.177 3.483-3.52 6.077-3.735zm83.497-1.643c-1.64-.025-3.147-.238-2.804-1.822.597-2.736 3.041-3.021 5.346-3.113 1.12-.043 3.03-.17 2.688 1.41-.591 2.722-3.156 3.236-5.23 3.525zm-35.78.736c3.104 3.541 2.721 5.426-1.588 7.723-2.773 1.48-5.748 1.971-8.861 1.76-2.535-2.525-2.285-4.154.813-6.451 2.882-2.135 6.494-1.809 9.636-3.032z",
    fill: nord.nord3
  }), React__default.createElement("path", {
    d: "M719.315 432.557c1.025 1.5.145 2.652-.731 3.76-4.726 5.992-17.013 9.736-24.28 7.504-1.731-.529-3.108-1.162-2.986-3.279-1.144-2.324.575-3.648 1.954-4.816 6.679-5.652 14.467-7.092 22.914-5.629 1.415.245 2.664.905 3.129 2.46z",
    fill: nord.nord0
  }), React__default.createElement("path", {
    d: "M719.315 432.557c-8.416-3.449-20.936-1.115-26.981 5.992-.511.6-.987 1.172-1.015 1.994-1.289.619-1.532-.07-1.549-1.182-.058-3.414 2.249-5.416 4.661-7.027 6.153-4.107 12.991-5.982 20.369-4.648 2.372.427 5.438 1.019 4.515 4.871z",
    fill: nord.nord3
  })), React__default.createElement("path", {
    d: "M412.244 551.865l-33.583 17.613c-6.023-.971-13.199 1.018-19.63 1.217-14.328.434-28.032-2.715-42.208-3.275-11.365-.449-22.762 1.473-34.191 1.121-26.422-.826-52.332 3.059-78.803 3.717-23.075.576-47.247 1.986-70.145 4.557-16.21 1.826-33.326 2.402-49.841 4.51a131.066 131.066 0 0 1-12.222-9.227l52.043-7.633 66.877-6.408 36.041-3.203 50.466-3.205 41.64-2.402h28.433s30.035-1.201 31.236 0c1.202 1.201 24.028 2.803 28.033 2.803 1.914-.001 4.1-.089 5.854-.185z",
    fill: nord.nord3,
    stroke: nord.nord3,
    strokeMiterlimit: "10"
  }), React__default.createElement("path", {
    d: "M378.661 569.479l-27.022 14.168c-9.988-4.533-22.122-7.705-38.821-8.369-55.607-2.229-74.886 26.693-128.147 29.898-42.04 2.529-75.327-6.84-100.828-23.852 16.515-2.107 33.631-2.684 49.841-4.51 22.898-2.57 47.07-3.98 70.145-4.557 26.471-.658 52.38-4.543 78.803-3.717 11.429.352 22.826-1.57 34.191-1.121 14.176.561 27.88 3.709 42.208 3.275 6.431-.198 13.607-2.186 19.63-1.215z",
    fill: nord.nord2,
    stroke: nord.nord2,
    strokeMiterlimit: "10"
  }), React__default.createElement("path", {
    d: "M111.565 566.238c-1.41 5.6-4.678 9.066-10.468 8.25a116.946 116.946 0 0 1-4.237-.682c-4.998-.904-9.395-2.074-13.279-3.467-11.189-4.021-18.093-9.859-22.498-16.332-4.037-5.934-5.982-12.396-7.216-18.469-1.378-6.791-1.866-13.096-3.38-17.645-2.995-9.002-6.936-11.027-10.788-12.15-.008 0-.008-.008-.016-.008-5.118-1.482-10.084-1.393-12.534-13.871-2.451-12.52 8.858-27.215 2.419-38.533-2.299-4.053-7.721-7.969-13.304-12.006C8.591 435.774.622 429.993.061 423.272c-1.114-13.367 13.327-30.516 16.507-43.129 3.492-13.904-5.462-30.523-6.928-44.203-2.907-27.047 18.742-14.376 51.956-55.896 2.363-2.955 9.435-8.818 13.159-8.146 10.372 1.874 1.297 13.503-1.786 22.722a36.766 36.766 0 0 0-1.562 6.56c-1.546 10.7 1.754 20.384 2.987 31.477 1.834 16.395-10.284 8.809-18.165 27.928-6.343 15.402 3.645 21.904 7.529 34.223 2.395 7.602-1.185 13.367-4.069 19.494-1.826 3.895-3.372 7.93-2.923 12.672.56 5.967 3.348 9.754 6.976 12.75 4.87 4.029 11.253 6.607 15.746 11.086a19.056 19.056 0 0 1 2.996 3.836c3.604 6.143.697 14.199-1.778 21.93-.08.256-.168.52-.248.785-.032.086-.056.184-.088.271a78.097 78.097 0 0 0-1.201 4.156c-.584 2.252-.977 4.43-1.001 6.471-.168 15.563 8.273 21.105 19.246 29.66.224.168.44.352.657.543 9.354 8.202 16.89 34.233 13.494 47.776z",
    fill: nord.nord8
  }), React__default.createElement("path", {
    clipRule: "evenodd",
    d: "M26.94 432.615c-1.902-6.113-5.962-11.328-6.375-18.123-.271-4.453 1.358-8.537 1.769-12.836.573-5.982 2.474-11.748 4.886-17.307 2.673-6.152 3.028-12.383 1.932-18.777-2.218-12.959-.695-25.576 5.051-37.744.61-1.289 1.086-3.554 2.675-3.254 1.803.335.846 2.54.822 3.901-.18 10.158-1.381 20.369.626 30.406 1.235 6.174 3.499 11.801 7.896 16.42 5.428 5.703 5.655 11.289 1.05 17.885-2.666 3.82-5.646 7.408-5.808 12.469-.134 4.227 1.277 7.605 3.684 10.771 3.623 4.77 7.254 9.459 8.625 15.629 1.447 6.514-.615 12.332-3.106 18.191-2.701 6.352-1.593 12.184 3.182 16.596.565.521 1.058 1.314 2.025.57.748 2.994 1.206 6.035 1.095 9.16-.104 2.896-1.65 4.086-4.503 4.047-13.109-.182-23.21-15.18-18.364-27.445 2.765-6.994 2.578-14.107 1.89-21.258-.182-1.902-.562-4.041-2.681-4.52-2.18-.494-3.281 1.59-4.555 2.982-.646.708-1.212 1.489-1.816 2.237zm66.077 97.149c12.455 8.744 13.109 21.215 11.338 34.482-.288 2.154.177 4.666-1.976 6.863-8.752-9.547-17.749-18.785-20.551-31.957l2.014-9.996 9.175.608z",
    fill: "#A2CEDA",
    fillRule: "evenodd"
  }), React__default.createElement("path", {
    d: "M149.297 473.084c-7.585 2.875-13.64-.617-19.326 5.166-.769.785-5.102 8.553-5.326 9.627l-3.348 8.16c-1.978 3.324-2.603 5.182-5.583 7.641-4.901 4.045-10.171 8.227-15.065 12.264a20.33 20.33 0 0 0-2.579 2.521c-2.771 3.244-4.085 6.938-5.406 11.277-.2.656-.4 1.322-.609 2.01-2.002 6.697.433 20.305 2.555 30.732.44 2.188.873 4.236 1.249 6.055.433 2.131.793 3.934 1.001 5.27.16 1.059.232 1.818.168 2.211.729 1.674-.825 9.123-2.451 10.268-2.595 1.834-7.145-2.051-8.706-2.994-1.194-.723-3.043-1.348-4.181-2.908-4.165-2.195-14.112-5.711-14.585-5.814-8.626-1.971-12.35 4.645-21.12 6.391-4.189.834-9.763 1.482-11.485-2.266-1.441-3.115 1.41-6.713 4.598-8.314 3.299-1.666 7.665-2.756 8.674-6.215 1.009-3.451-2.155-6.488-4.87-8.834-2.715-2.338-5.462-6.008-3.604-9.123 1.217-2.051 4.053-2.754 6.391-2.258.369.08.721.184 1.073.305 1.89.648 3.54 1.857 5.142 3.043 2.435 1.803 4.862 3.604 7.297 5.406.608.457 1.226.914 1.882 1.305.89.553 1.826.994 2.859 1.178 1.794.32 3.444.746 3.725-1.033.296-1.891-1.634-3.332-3.132-4.9-3.989-4.197-7.345-8.844-10.668-13.713-.473-.697-.953-1.4-1.434-2.113-2.026-2.996-4.157-10.613-7.761-11.414-3.116-.689-6.8.023-10.131.76-2.531.57-4.854 1.146-6.584 1.146-5.326 0-7.376-5.768-3.54-9.531 1.458-1.426 3.316-2.242 5.278-2.924 1.57-.545 3.22-.992 4.75-1.602.008 0 .008-.008.016-.008.016-.008.024-.008.04-.016 2.042-.818 4.085-2.307 5.198-4.094 0-.008.008-.016.016-.023 0 0 .008-.008.008-.016.753-1.234 1.065-2.611.633-3.996-.961-3.053-5.102-4.486-5.567-7.65-.552-3.691 4.806-6.127 8.282-4.58 3.484 1.537 5.614 5.061 6.904 8.568.048.139.104.273.152.41v.008c8.545 23.082 19.702 36.121 31.027 51.668-1.137-13.912-4.861-27.48-13.263-37.627-4.998-6.031-9.419-10.637-13.335-16.844 0 0-.008 0-.008-.008a63.645 63.645 0 0 1-3.268-5.832 72.385 72.385 0 0 1-4.109-10.115 68.103 68.103 0 0 1-1.93-7.426c-1.474-7.326-7.145-13.438-10.829-19.926-2.146-3.756-3.62-7.641-3.212-11.957.216-2.363 1.955-5.207 4.237-4.541.329.096.625.256.889.463.537.408.969.979 1.377 1.531 3.036 4.123 6.071 8.256 9.106 12.381 1.898-1.545 2.379-4.309 1.971-6.719-.417-2.42-1.554-4.629-2.403-6.928-2.115-5.727-2.019-12.486.432-17.965 1.394-3.141 3.572-5.855 6.544-7.705 2.443-1.514 5.646.672 6.335 3.387a4.07 4.07 0 0 1 0 2.059c-.616 2.275-2.867 4.133-2.547 6.473.449 3.371 5.326 3.771 7.585 6.326 2.347 2.652 1.233 6.84-.568 9.883-.137.225-.273.457-.417.682-1.738 2.818-3.828 5.615-3.853 8.883 0 .801.136 1.625.561 2.307 1.57 2.441 5.327 1.322 7.881-.064 2.868 3.389 2.395 8.498.857 12.662-1.538 4.166-3.973 8.059-4.629 12.447-.657 4.342 1.209 9.578 5.414 10.771h.008c.04.018.08.033.12.041 3.556.928 6.288-1.346 8.193-4.518v-.008c.865-1.426 1.554-3.035 2.074-4.613.032-.088.057-.186.088-.271.08-.266.168-.529.248-.785 1.73-5.607 2.899-11.566 1.626-17.268-.657-2.932-1.682-5.736-2.844-8.498-1.866-4.463-4.077-8.811-5.639-13.385-2.539-7.408-3.059-16.371 1.986-22.361.897-1.064 2.075-2.059 3.46-2.115 2.811-.104 4.269 3.564 3.66 6.305-.616 2.746-2.402 5.15-2.779 7.928-.376 2.787 1.834 6.256 4.525 5.447a18.686 18.686 0 0 0 7.152-9.523c.841-2.578 1.714-5.91 4.397-6.271 2.699-.359 4.501 2.836 4.733 5.551.568 6.688-3.316 12.99-8.009 17.781-1.69 1.723-3.54 3.379-4.557 5.566-1.017 2.186-.929 5.117.929 6.654 1.306 1.082 3.148 1.25 4.565 2.188 3.332 2.193 2.763 7.168 1.802 11.045-.713 2.859-1.418 5.727-2.219 8.568-1.498 5.383-3.3 10.662-5.943 15.563-2.403 4.453-5.599 9.307-4.141 14.152 6.936 3.035 15.306-1.553 19.086-8.113 3.788-6.566 4.157-14.473 4.429-22.041.088-2.371.176-4.742.256-7.111.673-19.432 1.065-38.902-1.025-58.211-.376-3.5-.769-7.322 1.161-10.262 1.93-2.93 7.225-3.596 8.586-.352 1.169 2.771-1.313 5.943-.584 8.857.833 3.275 5.102 4.246 8.426 3.67 3.332-.57 6.671-2.051 9.955-1.258 4.774 1.145 7.161 7.76 4.229 11.693-3.075 4.125-9.482 4.164-13.111 7.816-2.387 2.402-3.139 5.936-3.796 9.26a17225.91 17225.91 0 0 1-3.572 18.229c-.32 1.609-.521 3.523.272 4.838 0 .016.008.023.016.031.176.305.417.576.721.801 1.346.994 3.348.521 4.573-.607 1.081-1.01 1.706-2.389 2.243-3.773.008-.008.008-.016.008-.023.072-.168.136-.346.2-.514.753-1.979 1.498-3.955 2.25-5.934l.745-1.971c.537-1.426 1.097-2.875 1.914-4.156.36-.563.769-1.09 1.25-1.563 1.554-1.545 4.068-2.354 5.999-1.305 2.17 1.176 2.547 3.82 2.219 6.414a17.738 17.738 0 0 1-.577 2.676c-.08.279-.168.561-.248.85-.849 3.027-1.466 6.535.769 8.617 2.451 2.291 6.335 1.033 9.675.754 3.22-.266 7.152 1.232 7.561 4.443.485 3.843-4.112 6.044-7.74 7.423z",
    fill: nord.nord4
  }), React__default.createElement("g", {
    clipRule: "evenodd",
    fillRule: "evenodd"
  }, React__default.createElement("path", {
    d: "M187.251 240.43c-2.897 7.572-7.023 14.238-14.111 18.716-2.262 1.43-4.8 1.274-7.195 1.908-1.25 11.813-3.084 23.488-7.152 34.737-6.239 17.254-16.023 32.123-29.463 44.593-3.123 2.896-5.789 3.139-7.454.617-2.01-3.045.094-4.928 2.112-6.791 13.115-12.1 22.384-26.682 27.976-43.599 2.769-8.377 4.499-16.973 5.318-25.773.279-2.996-.849-3.5-3.598-3.854a13.606 13.606 0 0 0-2.396.005c-2.443.384-2.188.662-2.576 3.45-.434 8.978-.269 18.696-2.857 27.788-1.882 6.608-4.66 12.772-9.579 17.752-6.21 6.288-13.071 7.182-20.646 2.653-6.479-3.872-10.96-9.623-14.824-15.943-.824-1.347-1.467-2.616-2.451-4.067-2.22-4.821-4.603-9.775-5.653-15.154-.179-.914-.499-1.799-.721-2.704-.658-2.69.463-4.567 3.003-5.22 2.471-.633 4.101.768 4.744 3.146 1.254 4.64 2.715 9.204 4.757 13.561.599 1.277 1.165 2.25 2.639 4.219 1.844 2.266 3.256 3.541 4.972 5.75 2.392 3.078 4.982 5.937 8.382 7.916 3.692 2.15 5.931 1.851 8.932-1.164 3.407-3.424 5.178-7.734 6.288-12.316 1.263-5.21 1.898-10.719 2.204-16.07.146-2.561.601-4.539.808-7.131 1.683-11.004.62-22.08.833-33.121.16-8.258-.076-16.523.09-24.78.058-2.884-.67-4.174-3.767-3.929-2.912.231-5.86-.021-8.789.057-1.975.054-2.781-.606-2.896-2.734-1.234-22.707 15.963-50.633 36.443-58.5 10.608-4.074 20.877-3.088 30.339 3.601 2.365 6.019 2.355 12.464 2.846 18.722 1.319 16.799 2.091 33.665-.722 50.401-.621 3.69-.778 7.632-2.841 10.997l-2.995 12.261z",
    fill: nord.nord8
  }), React__default.createElement("path", {
    d: "M189.146 228.242c1.036-5.67 2.425-11.303 3.022-17.019.8-7.65 1.044-15.354.938-23.071-.172-12.483-1.523-24.867-2.772-37.263-.11-1.09-.476-2.078.526-2.906 4.078 2.12 8.792 6.843 10.545 8.318 4.08 3.779 12.361 16.754 15.331 26.922 1.839 6.299 2.899 12.709 3.525 19.223.236 2.449-.605 3.37-3.084 3.242-3.059-.159-6.134.035-9.199-.057-2.018-.059-2.848.664-2.84 2.769.064 17.071-.295 34.151.214 51.208.244 8.174 3.21 15.909 7.946 22.763a27.38 27.38 0 0 0 3.048 3.694c6.947 7.012 12.236 6.326 17.076-2.19 2.464-4.337 3.93-9.017 4.724-13.932.46-2.851 1.517-5.464 5.074-4.724 3.199.665 3.374 3.168 2.914 5.982-1.115 6.798-3.201 13.22-7.062 18.957-7.068 10.502-17.483 11.707-26.836 3.141-8.24-7.549-12.129-17.341-14.285-28.004-.131-.652-.145-1.329-.292-1.977-.268-1.176-.476-2.414-2.166-2.319-1.84.104-1.562 1.501-1.639 2.634-.664 9.725-2.111 19.324-4.44 28.795-3.297 13.412-8.485 26.078-14.905 38.269-7.543 12.674-15.946 24.701-26.506 35.092-3.332 3.277-5.178 3.377-7.047.332-1.454-2.367-.784-4.596 1.158-6.426 9.491-8.943 16.955-19.459 23.591-30.588 4.665-7.824 8.351-16.128 11.404-24.71.822-2.828 1.315-4.33 2.007-6.646 2.979-9.981 3.874-20.523 4.778-30.915.153-1.766.6-3.783-2.012-3.866-2.595-.082-2.149 2.17-2.462 3.785l-3.967 23.145c-3.159 11.392-7.067 22.479-12.854 32.854-8.154 14.618-18.947 26.922-32.149 37.157-.311.24-.749.328-1.038.588-2.182 1.965-4.453 2.121-6.182-.32-1.724-2.438-.559-4.486 1.628-6.146 10.944-8.313 20.199-18.189 27.527-29.841 11.349-18.045 17.173-37.715 17.63-59.035.071-3.297-.882-4.809-4.168-4.163 10.131-3.606 16.063-11.247 19.881-20.851",
    fill: "#76B6C9"
  }), React__default.createElement("path", {
    d: "M159.16 155.266c-.067 1.359-.939 1.982-1.876 2.512-7.429 4.193-13.048 10.02-16.355 17.971-.601 1.443-1.536 2.707-3.339 1.782-1.704-.874-.882-2.355-.391-3.505 3.694-8.648 9.816-15.104 18.037-19.59 1.496-.815 3.035-1.135 3.924.83z",
    fill: nord.nord4
  })), React__default.createElement("path", {
    clipRule: "evenodd",
    d: "M352.049 271.842c-1.344.182-1.676 1.682-2.785.855-.794-.592-.987-1.431-.968-2.363.05-2.623.18-5.059 3.27-6.271.988-.388.894-2.154 1.01-3.38.213-2.224.505-4.413 2.254-6.092 2.1-2.015 4.63-2.667 7.38-2.118 2.659.532 2.689 3.301 3.56 5.147.531 1.129.695 2.468 1.567 3.528.351.426.904 1.088.198 1.617-.483.363-1.152.034-1.378-.43-1.2-2.449-3.619-2.943-5.835-3.779-.522-.197-.965-1.051-1.597-.367-.483.521-.238 1.23.103 1.744 1.713 2.588 1.899 5.457 1.79 8.441-.085 2.271-1.109 3.63-3.028 4.889-4.238 2.78-6.3 7.074-7.068 11.978-.124.796.359 1.72.675 2.539.252.651.848.931 1.531.676.701-.263 1.212-.772 1.305-1.548.024-.21-.149-.54-.332-.646-.156-.093-.599-.021-.664.106-.25.485-.093 1.453-1.105.9-.533-.291-.418-.932-.418-1.456 0-.749.155-1.602.951-1.717 1.259-.186 2.537.08 3.167 1.38.682 1.405-.715 5.015-2.243 5.585-1.939.725-3.688.346-4.882-1.529-1.97-3.094-1.618-6.25-.207-9.416 1.186-2.654 2.399-5.296 3.749-8.273z",
    fill: nord.nord3,
    fillRule: "evenodd"
  }), React__default.createElement("path", {
    d: "M601.863 80.815c-2.424-3.184-3.104-7.508-1.873-11.314.066-.206.139-.408.215-.61-.289-.433-.542-.887-.705-1.38-.268-.824-.239-1.795.291-2.48.424-.549 1.113-.855 1.49-1.437.302-.463.365-1.038.603-1.536.526-1.104 1.773-1.623 2.868-2.17.816-.408 1.599-.879 2.381-1.349 1.467-.884 2.959-1.776 4.614-2.214a8.992 8.992 0 0 1 1.639-.274h.001a7.65 7.65 0 0 1 .566-.024c.036-.002.074 0 .11.001.265-.354.372-.741.479-1.126-.025-.327.097-.766.131-1.057a20.467 20.467 0 0 1 2.054-6.855c.104-.205.235-.428.458-.479.197-.045.404.071.523.234.118.164.168.367.208.564.114.563.177 1.139.353 1.685.178.546.484 1.075.971 1.38.477.297 1.072.345 1.628.268.556-.076 1.087-.268 1.627-.421.301-.085.613-.159.922-.116.311.045.617.232.718.527.155.457-.217.912-.569 1.242a24.23 24.23 0 0 1-4.673 3.431 7.082 7.082 0 0 1-1.145.54c-.354.291-.551.772-.659 1.217-.206.842-.116 1.725-.076 2.59.01.243.015.485.017.729a8.47 8.47 0 0 0 .448-.07c.281-.054.56-.113.833-.186.643 1.844.771 3.962.271 5.695-.117.411-.273.822-.554 1.146-.294.339-1.184-.011-1.897-.184a21.631 21.631 0 0 1-2.726 5.863c-2.53 3.806-6.263 6.727-10.552 8.301-.075-.158-.104-.305-.181-.465l-.809.334zm-133.495 54.067c1.727-3.61 5.264-6.188 9.213-6.831.212-.034.427-.063.641-.086.254-.455.541-.889.907-1.258.61-.615 1.487-1.032 2.339-.873.682.126 1.271.602 1.959.67.549.058 1.09-.148 1.64-.164 1.223-.035 2.255.836 3.24 1.561.735.54 1.513 1.021 2.287 1.503 1.455.902 2.932 1.823 4.075 3.096a9.014 9.014 0 0 1 1.274 1.825c.018.032.033.066.049.1.437.072.83-.006 1.222-.087.277-.172.724-.264.998-.366a20.473 20.473 0 0 1 7.038-1.303c.229-.001.488.016.635.191.13.154.121.391.03.571s-.251.317-.408.443c-.449.358-.932.677-1.337 1.083-.406.405-.736.922-.784 1.492-.047.56.182 1.111.503 1.57.322.459.735.846 1.119 1.256.213.229.422.473.523.768s.075.654-.141.879c-.336.348-.911.223-1.365.061a24.04 24.04 0 0 1-5.186-2.592c-.35-.23-.7-.482-1.003-.771-.421-.183-.938-.138-1.385-.032-.844.202-1.586.685-2.341 1.114-.209.121-.423.235-.639.35a11.818 11.818 0 0 0 .814 1.021c-1.347 1.414-3.173 2.494-4.943 2.842-.421.081-.858.131-1.273.029-.436-.107-.531-1.059-.702-1.771-2.126.4-4.311.494-6.463.25-4.539-.515-8.842-2.502-12.202-5.6.108-.139.224-.232.331-.373-.22-.19-.442-.378-.665-.568zm93.507-37.11c-.578-2.211.016-4.639 1.502-6.375.081-.094.163-.184.248-.273a3.162 3.162 0 0 1-.066-.883c.039-.494.268-.999.697-1.243.345-.195.775-.206 1.103-.429.261-.178.421-.467.654-.676.521-.467 1.292-.467 1.989-.514a19.27 19.27 0 0 0 1.552-.188c.968-.142 1.95-.284 2.918-.149a5.153 5.153 0 0 1 1.23.327l.059.024c.217-.129.357-.308.5-.487.059-.178.219-.383.302-.528a11.724 11.724 0 0 1 2.591-3.161c.099-.084.218-.174.347-.15.114.02.198.125.224.238a.833.833 0 0 1-.014.344c-.064.321-.158.639-.186.965s.019.674.208.941c.186.261.488.417.798.498.311.082.633.1.951.137.178.021.358.05.512.143.152.09.273.257.262.435-.02.275-.314.433-.572.529a13.87 13.87 0 0 1-3.219.78 4.245 4.245 0 0 1-.722.033c-.251.074-.46.285-.616.495-.293.399-.439.884-.61 1.349-.048.13-.099.259-.149.387a5.795 5.795 0 0 0 .731.148c-.066 1.112-.465 2.258-1.109 3.062-.153.189-.327.373-.545.482-.229.113-.622-.267-.959-.515a12.37 12.37 0 0 1-2.728 2.489 12.38 12.38 0 0 1-7.388 2.053c-.005-.1.012-.184.007-.284l-.502-.004zm52.203-74.916c-1.701-1.527-2.544-3.879-2.262-6.146.015-.123.035-.244.056-.365a3.268 3.268 0 0 1-.542-.699c-.239-.434-.328-.981-.104-1.422.18-.354.534-.6.684-.966.119-.291.094-.621.173-.925.178-.677.821-1.102 1.377-1.525.415-.315.804-.664 1.192-1.011.729-.651 1.469-1.313 2.351-1.735.287-.137.585-.246.891-.33a7.17 7.17 0 0 1 .315-.074l.063-.011c.109-.228.13-.456.148-.684-.049-.18-.027-.438-.039-.606a11.701 11.701 0 0 1 .418-4.064c.036-.127.088-.266.207-.318.105-.046.234-.002.318.076s.133.188.177.294c.124.304.221.62.379.908.156.287.386.552.691.669.299.116.638.08.941-.023.304-.102.581-.266.868-.41.16-.08.326-.154.506-.164.178-.008.369.064.458.22.136.239-.025.534-.187.758-.65.895-1.409 1.71-2.256 2.424a4.235 4.235 0 0 1-.583.427c-.167.199-.227.491-.241.752-.024.494.12.98.234 1.462.033.136.062.271.089.405.084-.027.167-.056.243-.087.152-.06.302-.124.447-.193.559.966.856 2.141.762 3.167-.022.242-.065.49-.189.702-.128.221-.664.12-1.084.099a12.345 12.345 0 0 1-.902 3.58 12.393 12.393 0 0 1-5.031 5.787c-.059-.082-.092-.16-.15-.241-.14.087-.279.178-.418.269z",
    fill: nord.nord9
  }), React__default.createElement("path", {
    d: "M593.609 114.638c-1.697-3.114-1.713-6.993-.127-10.165.087-.171.178-.34.271-.505-.194-.419-.356-.85-.432-1.305-.125-.758.03-1.604.587-2.135.443-.423 1.09-.6 1.499-1.058.324-.365.457-.861.731-1.266.608-.896 1.771-1.186 2.803-1.518.771-.248 1.52-.556 2.267-.863 1.403-.576 2.832-1.16 4.341-1.321a7.962 7.962 0 0 1 1.973.033c.032.004.064.01.098.016.278-.275.424-.6.57-.922.021-.289.187-.656.255-.908a18.208 18.208 0 0 1 2.718-5.732c.117-.164.264-.343.466-.357.179-.013.344.117.426.275.083.16.099.344.106.523.024.508.003 1.02.084 1.523.082.501.28 1.006.667 1.338.377.324.892.445 1.389.453.497.007.989-.09 1.483-.151.274-.035.559-.059.823.022.265.079.509.284.558.557.075.422-.313.77-.665 1.012a21.374 21.374 0 0 1-4.554 2.381 6.22 6.22 0 0 1-1.074.32c-.349.207-.587.603-.74.978-.294.711-.334 1.496-.415 2.261-.022.213-.051.426-.081.639.138.003.272.004.402-.002.252-.01.505-.025.754-.051.317 1.701.145 3.575-.523 5.027-.16.344-.352.684-.641.929-.303.259-1.036-.167-1.639-.414a19.147 19.147 0 0 1-3.173 4.772 19.22 19.22 0 0 1-10.356 5.861c-.045-.148-.052-.281-.096-.431-.252.06-.504.122-.755.184zm-77.18 18.885c-.015-2.284 1.16-4.491 3.028-5.807.1-.07.203-.138.308-.204.017-.297.057-.592.152-.871.16-.469.506-.902.983-1.033.382-.105.803-.009 1.174-.143.296-.107.522-.35.802-.495.62-.323 1.366-.133 2.055-.006.513.095 1.03.147 1.549.202.973.1 1.96.204 2.865.572.294.121.576.268.843.438h.001c.091.059.181.12.268.183l.05.039c.242-.071.424-.211.605-.35.1-.156.307-.315.422-.437a11.8 11.8 0 0 1 3.29-2.425c.117-.057.255-.113.374-.061.104.048.16.172.158.287s-.049.225-.099.328c-.142.297-.311.581-.418.891-.106.311-.147.657-.03.963.116.298.371.525.65.682.28.155.589.25.888.365.166.064.335.139.46.265.127.125.203.317.147.485-.087.264-.412.342-.686.373a13.848 13.848 0 0 1-3.312-.039 4.072 4.072 0 0 1-.707-.146c-.262.012-.518.163-.719.329-.384.313-.646.746-.926 1.157-.078.113-.159.225-.24.337.077.044.154.085.229.122.146.072.294.14.443.201-.339 1.061-1.009 2.072-1.831 2.692-.196.146-.408.282-.646.333-.252.053-.536-.412-.803-.736a12.404 12.404 0 0 1-3.257 1.741 12.399 12.399 0 0 1-7.666.167c.02-.099.057-.176.077-.274-.161-.04-.321-.083-.481-.125zm-41.13-31.726c.401-2.251 1.957-4.207 4.032-5.162.112-.053.226-.1.339-.146.071-.289.163-.571.309-.829.242-.432.662-.795 1.154-.838.396-.033.79.139 1.181.072.311-.053.577-.248.878-.341.667-.206 1.368.117 2.021.366.487.186.988.333 1.488.479.938.277 1.89.559 2.715 1.086.266.17.518.365.747.582h.002c.078.074.155.149.229.229l.043.047c.25-.025.454-.13.657-.234.128-.137.359-.254.494-.354a11.655 11.655 0 0 1 3.675-1.785c.126-.037.271-.068.379.008.095.064.126.196.103.309a.792.792 0 0 1-.156.307c-.192.265-.409.515-.571.8-.16.284-.266.62-.205.94.061.316.27.585.517.788.247.204.533.354.808.521.15.094.303.197.404.344.101.146.142.348.056.506-.132.241-.468.26-.741.24a13.801 13.801 0 0 1-3.25-.639 4.091 4.091 0 0 1-.669-.271c-.26-.036-.538.066-.766.193-.436.239-.771.617-1.12.969-.098.099-.198.194-.298.289.067.058.136.111.202.162.131.098.264.19.4.277-.526.982-1.368 1.855-2.29 2.316-.218.109-.451.202-.695.21-.257.007-.454-.503-.656-.869-1.11.544-2.299.929-3.519 1.12a12.38 12.38 0 0 1-7.57-1.226c.039-.093.089-.163.126-.255l-.453-.211zm149.961-18.47c-1.117-1.992-1.158-4.491-.16-6.548a8.45 8.45 0 0 1 .17-.327 3.328 3.328 0 0 1-.289-.836c-.086-.488.008-1.035.361-1.381.283-.276.698-.395.958-.693.207-.236.289-.558.462-.82.386-.584 1.133-.777 1.795-1 .493-.166.974-.369 1.453-.574.9-.381 1.814-.77 2.786-.885.314-.037.632-.045.948-.025a6.877 6.877 0 0 1 .385.041c.179-.18.27-.39.361-.599.011-.187.116-.425.158-.587a11.715 11.715 0 0 1 1.706-3.714c.073-.108.167-.224.296-.235.116-.009.224.073.277.175a.806.806 0 0 1 .073.336c.02.327.01.658.065.98.057.323.188.647.439.857.246.206.579.28.899.282.32 0 .638-.066.953-.11.177-.024.36-.041.532.008.17.05.329.181.362.355.052.271-.195.498-.42.657a13.774 13.774 0 0 1-2.916 1.568 3.958 3.958 0 0 1-.689.215c-.223.137-.372.395-.47.637-.184.459-.202.965-.249 1.459-.013.138-.03.273-.048.412.088.001.176 0 .261-.004.161-.008.323-.02.483-.039.219 1.093.123 2.301-.298 3.243-.1.222-.22.443-.405.604-.193.169-.669-.101-1.058-.255a12.433 12.433 0 0 1-2.008 3.1 12.38 12.38 0 0 1-6.627 3.857c-.029-.097-.035-.182-.065-.277-.158.041-.319.083-.481.123zm-51.112-5.619c-.973-2.067-.835-4.563.308-6.541a8.23 8.23 0 0 1 .193-.314 3.33 3.33 0 0 1-.229-.855c-.052-.492.081-1.031.46-1.351.301-.257.724-.345 1.004-.624.223-.223.327-.535.52-.785.426-.554 1.185-.695 1.861-.868.504-.131.998-.3 1.491-.47.925-.317 1.864-.637 2.842-.684.315-.015.634 0 .947.043h.001c.106.016.213.032.319.055a.62.62 0 0 1 .062.014c.189-.168.297-.37.402-.572.024-.185.146-.414.199-.574a11.675 11.675 0 0 1 1.967-3.582c.083-.102.184-.211.314-.213.115 0 .216.089.264.193.046.107.05.226.048.342-.003.327-.036.656-.003.982.032.326.141.658.377.886.229.224.557.321.875.345.319.023.641-.02.959-.041.179-.012.361-.016.529.046.167.062.316.204.338.38.031.273-.23.484-.467.626a13.745 13.745 0 0 1-3.02 1.356 3.967 3.967 0 0 1-.705.165c-.23.12-.398.365-.513.601-.216.445-.272.949-.354 1.438-.023.137-.05.273-.076.408a4.758 4.758 0 0 0 .746.01c.139 1.106-.044 2.306-.53 3.214-.115.216-.252.427-.447.573-.205.154-.66-.147-1.037-.33a12.316 12.316 0 0 1-2.224 2.947 12.38 12.38 0 0 1-6.886 3.375c-.023-.098-.023-.184-.045-.281-.162.027-.325.056-.49.086z",
    fill: nord.nord7
  }), React__default.createElement("path", {
    d: "M543.232 140.245c-1.01-3.871.03-8.121 2.632-11.162.142-.164.285-.322.434-.479-.099-.512-.159-1.028-.118-1.546.07-.864.471-1.749 1.225-2.177.602-.342 1.356-.361 1.93-.75.454-.312.735-.818 1.146-1.186.911-.816 2.261-.814 3.482-.898.911-.061 1.814-.195 2.717-.326 1.693-.25 3.416-.5 5.111-.266a9.132 9.132 0 0 1 1.617.379 8.667 8.667 0 0 1 .636.24c.38-.227.628-.541.876-.854.102-.313.384-.67.527-.925a20.474 20.474 0 0 1 4.537-5.535c.174-.148.382-.304.607-.265.199.034.345.222.393.418.046.197.014.403-.025.602-.113.563-.276 1.118-.323 1.69-.049.572.031 1.18.363 1.646.325.457.855.73 1.397.875.543.143 1.107.172 1.665.237.31.038.627.089.896.249s.479.451.458.763c-.033.481-.552.758-1.004.926a24.045 24.045 0 0 1-5.634 1.366 7.231 7.231 0 0 1-1.265.058c-.438.132-.807.501-1.077.868-.516.699-.772 1.547-1.07 2.361-.084.228-.172.453-.264.678.151.041.299.078.441.108.28.059.56.11.84.149-.116 1.948-.815 3.953-1.943 5.359-.269.335-.571.654-.954.846-.401.198-1.088-.467-1.681-.901a21.705 21.705 0 0 1-4.774 4.36c-3.802 2.537-8.37 3.793-12.937 3.594-.008-.175.021-.322.013-.497-.29-.001-.581-.002-.874-.005zM520.93 98.552c-.637-3.489.563-7.177 3.065-9.692.134-.135.272-.266.414-.395-.054-.459-.073-.92-.003-1.373.12-.76.533-1.516 1.227-1.844.556-.264 1.224-.229 1.756-.535.423-.245.704-.674 1.092-.972.859-.661 2.053-.571 3.138-.563.809.006 1.616-.051 2.423-.109 1.515-.107 3.052-.215 4.535.105.48.103.951.252 1.404.44h.002a8.126 8.126 0 0 1 .544.253c.351-.173.592-.436.832-.696.11-.269.382-.565.526-.782a18.166 18.166 0 0 1 4.377-4.592c.163-.119.357-.243.555-.193.173.045.29.219.318.395.028.178-.015.357-.063.531-.136.489-.317.97-.398 1.472-.078.502-.049 1.044.214 1.479.257.426.707.703 1.178.866.47.161.967.226 1.454.321.273.053.55.119.777.278.225.158.393.431.354.704-.061.424-.538.634-.948.752-1.648.48-3.354.762-5.07.834a6.16 6.16 0 0 1-1.12-.033c-.397.088-.746.391-1.011.697-.501.583-.785 1.316-1.103 2.016-.088.197-.182.39-.277.583.131.046.258.089.383.124.243.07.487.135.732.188-.232 1.715-.982 3.44-2.072 4.609-.26.277-.548.541-.899.684-.369.15-.933-.484-1.426-.908a19.15 19.15 0 0 1-4.509 3.537 19.226 19.226 0 0 1-11.672 2.322c.005-.157.039-.285.044-.439l-.773-.064zm61.959-40.092c-.973-2.068-.834-4.563.309-6.543.061-.106.125-.211.192-.314a3.228 3.228 0 0 1-.228-.855c-.052-.492.08-1.031.459-1.351.302-.254.724-.344 1.004-.623.223-.223.328-.535.52-.785.427-.555 1.185-.695 1.861-.869.505-.13.998-.299 1.491-.468.924-.317 1.865-.638 2.841-.685.317-.015.635 0 .948.043a5.653 5.653 0 0 1 .383.069c.189-.167.296-.369.401-.572.025-.186.146-.414.2-.573a11.698 11.698 0 0 1 1.967-3.583c.081-.102.183-.211.313-.213.116-.001.218.089.264.195a.82.82 0 0 1 .05.339c-.004.327-.038.657-.005.983.032.326.142.658.377.886.229.224.557.321.876.345.32.024.64-.02.959-.041.179-.012.362-.016.529.046.168.062.316.202.337.38.033.274-.229.482-.465.626a13.753 13.753 0 0 1-3.021 1.356 4.172 4.172 0 0 1-.703.165c-.233.12-.4.366-.515.601-.216.445-.271.949-.354 1.438a9.45 9.45 0 0 1-.077.408c.09.006.177.013.26.014.163.004.325.004.486-.004.14 1.107-.044 2.306-.528 3.214-.116.215-.254.427-.447.573-.205.154-.661-.146-1.038-.33a12.44 12.44 0 0 1-2.224 2.949 12.393 12.393 0 0 1-6.886 3.373c-.022-.098-.022-.184-.046-.281l-.49.087zm-125.757 95.731c.821-1.759 2.525-3.022 4.438-3.353.103-.018.205-.032.308-.044.122-.222.26-.433.436-.614.294-.3.718-.506 1.132-.433.33.059.617.285.952.317.266.025.527-.078.795-.088.593-.022 1.097.396 1.577.744.359.258.737.488 1.115.718.711.431 1.43.872 1.99 1.485.182.197.344.413.486.641l.001.001c.048.077.095.157.139.237.008.016.017.031.024.048.211.033.4-.008.592-.047.134-.085.349-.13.482-.181a9.908 9.908 0 0 1 3.407-.662c.11-.002.236.004.308.089.064.075.061.188.018.278a.692.692 0 0 1-.196.215c-.216.176-.449.333-.643.531-.196.198-.354.45-.375.728-.021.271.093.538.251.76s.359.407.548.603c.104.109.206.229.257.371s.04.317-.064.428c-.161.168-.441.111-.662.035a11.73 11.73 0 0 1-2.525-1.236 3.316 3.316 0 0 1-.489-.369c-.204-.086-.456-.063-.671-.01-.409.102-.768.339-1.131.551a9.279 9.279 0 0 1-.309.17c.044.063.088.123.132.178.086.108.175.214.266.316-.646.691-1.528 1.223-2.384 1.398-.203.041-.416.067-.617.02-.213-.05-.263-.511-.349-.856a10.49 10.49 0 0 1-3.133.149 10.511 10.511 0 0 1-5.94-2.664c.052-.068.107-.113.159-.182-.109-.091-.218-.181-.325-.272zM640.917 16.698c-1.188-1.535-1.532-3.628-.952-5.48.032-.1.067-.198.104-.295a2.761 2.761 0 0 1-.348-.668c-.133-.398-.123-.869.132-1.203.204-.268.537-.42.718-.703.145-.225.173-.504.287-.746.25-.537.854-.795 1.381-1.063.396-.2.772-.433 1.149-.663.709-.434 1.43-.872 2.229-1.09.26-.07.525-.117.794-.141a5.114 5.114 0 0 1 .329-.014c.127-.174.178-.361.229-.547-.014-.159.044-.373.059-.514a9.943 9.943 0 0 1 .971-3.332c.049-.1.112-.209.221-.234.096-.021.195.033.254.112s.083.177.103.272c.058.272.09.552.179.815.088.265.239.521.476.666.231.142.521.163.79.124.269-.039.527-.135.788-.211.146-.043.296-.08.446-.061.149.021.3.111.35.254.077.221-.102.443-.271.604a11.719 11.719 0 0 1-2.254 1.682 3.422 3.422 0 0 1-.552.267c-.172.142-.266.377-.316.593-.097.41-.05.837-.027 1.257.006.117.01.235.012.353.074-.011.146-.021.217-.035.135-.027.271-.058.402-.094.319.891.39 1.918.153 2.76-.056.201-.13.4-.265.559-.141.166-.574 0-.921-.082a10.536 10.536 0 0 1-1.299 2.854 10.535 10.535 0 0 1-5.086 4.066c-.036-.078-.054-.148-.09-.225-.131.053-.262.108-.392.163z",
    fill: nord.nord8
  }), React__default.createElement("path", {
    d: "M508.478 117.834c.494-3.971 3.033-7.535 6.576-9.396.19-.101.385-.195.58-.285.097-.512.231-1.014.462-1.48.385-.775 1.084-1.449 1.942-1.568.687-.096 1.396.167 2.071.018.538-.121.985-.487 1.503-.678 1.149-.421 2.403.08 3.568.455.868.279 1.757.491 2.645.702 1.665.396 3.358.802 4.846 1.646.482.273.94.594 1.363.949h.001c.145.123.286.25.424.38.026.024.052.052.076.079.438-.07.785-.27 1.131-.469.21-.252.604-.479.832-.664a20.45 20.45 0 0 1 6.264-3.463c.216-.074.468-.141.662-.021.172.106.239.334.209.533-.028.201-.136.38-.246.549-.313.482-.668.938-.926 1.451-.256.514-.406 1.107-.27 1.664.131.547.523.997.974 1.33.451.335.965.57 1.458.838.274.148.551.314.74.563.19.247.279.596.144.877-.208.436-.793.501-1.274.49a24.205 24.205 0 0 1-5.74-.816 7.19 7.19 0 0 1-1.195-.415c-.457-.04-.936.167-1.322.409-.737.457-1.291 1.15-1.869 1.797-.161.182-.327.357-.494.533.124.092.248.182.369.263.237.158.479.31.725.45-.829 1.767-2.221 3.37-3.789 4.26-.373.21-.771.396-1.199.432-.447.035-.838-.836-1.228-1.459a21.685 21.685 0 0 1-6.049 2.283c-4.471.949-9.181.426-13.349-1.447.059-.168.138-.294.196-.459-.27-.112-.541-.221-.811-.331zm-66.885-6.164c1.059-2.025 3.129-3.424 5.396-3.712a7.47 7.47 0 0 1 .367-.036c.153-.255.326-.496.543-.699.36-.34.87-.559 1.353-.45.387.086.713.368 1.105.423.311.043.624-.063.938-.062.699.005 1.271.523 1.817.956.408.323.843.614 1.274.905.813.544 1.636 1.1 2.264 1.849.203.244.384.506.539.781a4.63 4.63 0 0 1 .176.346c.247.05.473.012.699-.025.161-.093.419-.135.577-.189a11.757 11.757 0 0 1 4.042-.599c.131.004.279.02.359.121.07.092.061.227.005.327a.804.804 0 0 1-.241.245c-.264.195-.546.367-.785.592-.24.223-.439.51-.479.836-.037.318.081.637.257.906.174.269.401.497.611.738.116.135.231.279.284.449.053.171.029.375-.1.499-.198.19-.523.11-.779.007a13.817 13.817 0 0 1-2.907-1.585 4.243 4.243 0 0 1-.558-.461c-.236-.112-.532-.098-.788-.046-.486.099-.92.358-1.358.588-.123.064-.246.126-.372.187a5.97 5.97 0 0 0 .444.599c-.797.781-1.861 1.359-2.879 1.522-.242.038-.492.056-.729-.009-.246-.07-.281-.615-.363-1.027a12.43 12.43 0 0 1-3.694.014 12.402 12.402 0 0 1-6.85-3.445c.064-.076.132-.128.196-.207-.12-.113-.242-.225-.364-.338zm133.198-5.573c-.838-2.128-.539-4.608.729-6.509.068-.104.141-.203.213-.303a3.263 3.263 0 0 1-.173-.867c-.02-.494.147-1.023.545-1.318.319-.235.746-.297 1.043-.558.236-.206.361-.513.569-.75.46-.524 1.226-.617 1.914-.747a20.321 20.321 0 0 0 1.517-.371c.943-.257 1.903-.516 2.88-.5a5.235 5.235 0 0 1 1.319.197c.201-.154.32-.352.439-.545.036-.184.172-.405.235-.561a11.663 11.663 0 0 1 2.194-3.449c.089-.095.196-.198.327-.19.115.007.21.102.251.21a.82.82 0 0 1 .027.342c-.026.328-.08.654-.068.981s.099.667.318.909c.217.237.535.356.854.4.316.043.639.021.959.021.179-.002.362.008.525.079.162.071.303.223.313.401.014.274-.262.467-.506.594-.981.509-2.025.899-3.102 1.158a4.008 4.008 0 0 1-.713.12c-.239.104-.423.339-.551.565-.246.432-.332.93-.446 1.412-.031.135-.067.27-.103.402a6.138 6.138 0 0 0 .744.058c.066 1.113-.192 2.297-.736 3.173-.129.208-.278.41-.483.543-.213.141-.647-.189-1.013-.396a12.45 12.45 0 0 1-2.41 2.799 12.382 12.382 0 0 1-7.089 2.922c-.017-.1-.01-.184-.026-.283-.165.022-.331.043-.496.061zm39.862 14.374c-.712-1.805-.458-3.913.619-5.527.057-.087.118-.172.181-.256a2.732 2.732 0 0 1-.147-.737c-.017-.42.125-.869.463-1.119.271-.198.633-.252.887-.474.2-.176.306-.436.482-.637.391-.446 1.042-.524 1.625-.635.435-.082.862-.199 1.289-.315.8-.218 1.615-.438 2.445-.424.269.005.537.034.8.088h.001c.09.019.18.039.268.063l.052.016c.17-.131.271-.297.373-.463.03-.155.146-.344.2-.475a9.97 9.97 0 0 1 1.862-2.929c.075-.081.167-.169.277-.163.098.006.179.087.213.179.033.093.03.192.022.291-.021.278-.067.554-.058.832.011.278.084.566.271.772.184.201.454.303.724.34s.542.019.814.019c.152-.001.308.005.446.067.139.061.257.189.265.341.012.233-.221.396-.429.504a11.65 11.65 0 0 1-2.633.983 3.38 3.38 0 0 1-.606.102c-.202.09-.359.289-.468.48-.208.366-.282.791-.378 1.199-.028.115-.057.229-.088.342a5.659 5.659 0 0 0 .631.05c.058.944-.163 1.95-.624 2.692-.109.176-.236.349-.411.462-.181.119-.55-.16-.86-.336a10.565 10.565 0 0 1-2.045 2.377 10.513 10.513 0 0 1-6.02 2.48c-.015-.084-.01-.155-.023-.24-.139.02-.279.034-.42.051zM581.229 29.79c-1.187-1.535-1.532-3.629-.951-5.48.032-.1.068-.197.104-.295a2.74 2.74 0 0 1-.347-.668c-.134-.398-.124-.869.131-1.203.204-.268.537-.42.718-.703.145-.225.174-.505.286-.746.251-.538.854-.795 1.383-1.063.394-.201.771-.433 1.149-.663.708-.434 1.428-.872 2.229-1.09a4.34 4.34 0 0 1 .792-.141h.002a3.617 3.617 0 0 1 .328-.014c.126-.174.177-.361.229-.548-.014-.158.044-.372.06-.513a9.907 9.907 0 0 1 .97-3.332c.049-.1.112-.209.221-.234.096-.021.195.033.255.111.058.08.081.178.103.273.057.273.09.553.178.816s.237.52.476.664c.231.143.521.164.79.125.269-.039.526-.135.787-.211.146-.043.297-.08.447-.061.149.021.3.111.35.254.077.221-.103.443-.271.604a11.671 11.671 0 0 1-2.253 1.682 3.27 3.27 0 0 1-.553.266c-.17.144-.264.377-.315.594-.098.41-.05.836-.028 1.257.007.117.01.235.012.353.076-.011.147-.021.218-.036.136-.026.271-.058.403-.093.318.891.389 1.918.152 2.76-.056.201-.13.4-.265.559-.141.166-.573 0-.921-.082a10.538 10.538 0 0 1-1.3 2.854 10.526 10.526 0 0 1-5.086 4.066c-.036-.078-.052-.148-.089-.226-.133.053-.264.109-.394.164zm48.814 32.642c-1.394-1.811-1.794-4.277-1.104-6.455a6.91 6.91 0 0 1 .121-.35 3.239 3.239 0 0 1-.406-.786c-.156-.47-.143-1.024.158-1.417.239-.314.633-.492.848-.824.17-.266.204-.594.338-.879.297-.633 1.008-.934 1.631-1.249.466-.235.911-.506 1.355-.777.836-.509 1.685-1.023 2.629-1.278a5.2 5.2 0 0 1 .934-.161h.002a5.028 5.028 0 0 1 .386-.016c.149-.203.209-.425.271-.645-.017-.187.053-.437.071-.604a11.66 11.66 0 0 1 1.152-3.922c.058-.117.133-.245.26-.274.112-.025.23.039.3.132.068.095.097.21.12.322.066.321.105.649.207.961s.279.612.559.785c.273.168.612.194.93.148.316-.046.62-.156.929-.246.17-.05.35-.093.526-.069.177.024.353.13.41.299.091.261-.12.521-.32.711a13.74 13.74 0 0 1-2.658 1.973 4.068 4.068 0 0 1-.652.313c-.201.168-.313.443-.373.697-.115.482-.061.984-.037 1.48.008.139.012.276.013.415.09-.013.176-.025.257-.042.16-.031.318-.066.475-.108.373 1.05.453 2.261.173 3.252-.066.235-.154.472-.313.655-.167.195-.678-.001-1.084-.098a12.362 12.362 0 0 1-1.54 3.355 12.376 12.376 0 0 1-6.001 4.774c-.042-.091-.062-.175-.104-.265-.154.066-.308.13-.463.193z",
    fill: nord.nord10
  }));
};

var IllustrationCanvas$1 = React__default.memo(function (props) {
  return React__default.createElement(IllustrationCanvas, props);
});

var Tentacle = styled__default(posed.path(poseConfigJellyfish)).withConfig({
  displayName: "Jellyfish__Tentacle",
  componentId: "qe95ud-0"
})(["", ";animation-play-state:", ";transform-style:preserve-3d;"], function (_ref) {
  var tentaclesAnimation = _ref.tentaclesAnimation,
      runCssAnimations = _ref.runCssAnimations;
  return runCssAnimations && tentaclesAnimation;
}, function (_ref2) {
  var runCssAnimations = _ref2.runCssAnimations;
  return runCssAnimations ? "running" : "paused";
});
var Group$1 = styled__default(posed.g(poseConfigJellyfish)).withConfig({
  displayName: "Jellyfish__Group",
  componentId: "qe95ud-1"
})(["", ";animation-play-state:", ";transform-style:preserve-3d;"], function (_ref3) {
  var bodyAnimation = _ref3.bodyAnimation,
      runCssAnimations = _ref3.runCssAnimations;
  return runCssAnimations && bodyAnimation;
}, function (_ref4) {
  var runCssAnimations = _ref4.runCssAnimations;
  return runCssAnimations ? "running" : "paused";
});

var Jellyfish = function Jellyfish(_ref5) {
  var bodyAnimation = _ref5.bodyAnimation,
      bodyPaths = _ref5.bodyPaths,
      poseTimings = _ref5.poseTimings,
      runCssAnimations = _ref5.runCssAnimations,
      tentaclesAnimation = _ref5.tentaclesAnimation,
      tentaclePaths = _ref5.tentaclePaths;
  return React__default.createElement(Group$1, _extends({
    bodyAnimation: bodyAnimation,
    runCssAnimations: runCssAnimations
  }, poseTimings), tentaclePaths.map(function (_ref6) {
    var d = _ref6.d,
        fill = _ref6.fill;
    return React__default.createElement(Tentacle, {
      key: d,
      d: d,
      fill: fill,
      runCssAnimations: runCssAnimations,
      tentaclesAnimation: tentaclesAnimation
    });
  }), bodyPaths.map(function (_ref7) {
    var d = _ref7.d,
        fill = _ref7.fill;
    return React__default.createElement("path", {
      key: d,
      d: d,
      fill: fill
    });
  }));
};

var Jellyfish$1 = React__default.memo(function (props) {
  return React__default.createElement(Jellyfish, props);
});

/*
 * Copyright (C) 2019-present Arctic Ice Studio <development@arcticicestudio.com>
 * Copyright (C) 2019-present Sven Greb <development@svengreb.de>
 *
 * Project:    Arctic Ocean Fractal
 * Repository: https://github.com/arcticicestudio/arctic-ocean-fractal
 * License:    MIT
 */
var centerPaths = [{
  d: "M444.566 291.756l-3.798-19.538-42.608 8.282h-.001l3.798 19.539a5.425 5.425 0 0 0 6.362 4.291c.005 0 .008-.002.012-.004a5.43 5.43 0 0 0 .76-.213c.053-.019.107-.037.16-.058.235-.091.463-.196.68-.318.043-.024.084-.051.126-.077.204-.121.4-.253.584-.398l.062-.046c.199-.161.381-.339.554-.525.017-.018.035-.03.051-.048l-.004-.004a5.41 5.41 0 0 0 1.306-4.671 5.429 5.429 0 0 0 6.362 4.292 5.428 5.428 0 0 0 4.291-6.362 5.426 5.426 0 1 0 10.654-2.071 5.424 5.424 0 1 0 10.649-2.071z",
  fill: "#81A1C1"
}, {
  d: "M403.705 279.423l-5.547 1.077 3.798 19.539a5.424 5.424 0 0 0 8.982 2.974 5.424 5.424 0 0 1-3.436-4.053l-.975-5.01a5.429 5.429 0 0 0 5.848 2.815 5.424 5.424 0 0 0 4.289-6.361 5.43 5.43 0 0 0 6.362 4.293 5.427 5.427 0 0 0 4.289-6.364 5.428 5.428 0 0 0 10.654-2.071 5.426 5.426 0 0 0 6.363 4.293l-3.565-18.337-37.062 7.205z",
  fill: "#5E81AC"
}, {
  d: "M412.291 239.466c-14.707 2.858-24.313 17.1-21.454 31.808l3.471 17.857a5.426 5.426 0 1 0 10.653-2.071 5.427 5.427 0 0 0 10.653-2.07 5.423 5.423 0 0 0 6.36 4.29 5.425 5.425 0 0 0 4.292-6.36 5.427 5.427 0 0 0 10.654-2.071 5.425 5.425 0 0 0 10.651-2.07l-3.472-17.857c-2.858-14.71-17.1-24.315-31.808-21.456z",
  fill: "#B4D7E1"
}, {
  d: "M400.971 269.305l3.471 17.856c.126.64.314 1.237.553 1.782a5.426 5.426 0 0 1-10.686.188l-3.471-17.856c-2.845-14.638 6.653-28.813 21.243-31.767-8.978 1.936-13.946 15.203-11.11 29.797z",
  fill: "#88C0D0"
}, {
  d: "M432.501 261.993c-1.56-8.029-10.25-16.271-18.675-14.633-8.426 1.638-13.396 12.533-11.834 20.563 1.56 8.028 9.061 10.149 17.485 8.513 8.426-1.639 14.585-6.414 13.024-14.443z",
  fill: "#88C0D0"
}];
var centerTentaclePaths = [{
  d: "M439.723 332.893a1.463 1.463 0 0 1-1.715-1.156c-.564-2.906.197-4.611.868-6.115.59-1.323 1.056-2.367.668-4.367-.39-2.001-1.212-2.794-2.256-3.799-1.186-1.143-2.53-2.439-3.095-5.346-.564-2.905.197-4.609.868-6.113.589-1.322 1.057-2.367.667-4.367-.39-1.999-1.211-2.793-2.255-3.799-.804-.775-1.716-1.654-2.386-3.096a1.461 1.461 0 0 1 2.65-1.231c.439.946 1.054 1.538 1.765 2.224 1.187 1.144 2.531 2.439 3.097 5.345.564 2.907-.197 4.612-.87 6.116-.59 1.322-1.056 2.365-.667 4.364.389 2 1.213 2.794 2.255 3.798 1.186 1.145 2.53 2.439 3.096 5.348.564 2.904-.195 4.611-.867 6.115-.591 1.322-1.058 2.367-.669 4.367a1.461 1.461 0 0 1-1.154 1.712zm-10.656 2.07a1.46 1.46 0 0 1-1.713-1.154c-.565-2.908.195-4.613.866-6.117.592-1.322 1.058-2.365.668-4.367-.388-2-1.211-2.793-2.254-3.799-1.186-1.143-2.531-2.438-3.096-5.346-.565-2.904.197-4.608.868-6.113.59-1.321 1.056-2.365.668-4.365-.39-2.001-1.213-2.795-2.256-3.801-.804-.775-1.716-1.652-2.384-3.092a1.461 1.461 0 0 1 2.648-1.232c.439.944 1.054 1.535 1.764 2.219 1.187 1.145 2.531 2.441 3.096 5.348.565 2.908-.196 4.613-.867 6.116-.59 1.321-1.057 2.365-.668 4.364.389 2 1.212 2.794 2.255 3.799 1.187 1.145 2.53 2.439 3.095 5.346.564 2.906-.195 4.613-.867 6.115-.591 1.322-1.057 2.367-.668 4.367a1.458 1.458 0 0 1-1.155 1.712zm-10.653 2.07a1.461 1.461 0 0 1-1.713-1.154c-.564-2.906.195-4.611.868-6.117.59-1.32 1.056-2.365.668-4.365-.39-2-1.212-2.794-2.256-3.8-1.186-1.143-2.531-2.438-3.096-5.345-.564-2.905.197-4.61.868-6.113.592-1.321 1.058-2.366.668-4.366s-1.212-2.795-2.256-3.801c-.804-.774-1.716-1.652-2.385-3.092a1.462 1.462 0 0 1 2.651-1.232c.438.945 1.053 1.535 1.763 2.221 1.186 1.143 2.531 2.439 3.096 5.346.564 2.907-.197 4.612-.868 6.117-.59 1.321-1.056 2.364-.668 4.363.39 2 1.212 2.794 2.256 3.799 1.186 1.144 2.529 2.439 3.096 5.346.564 2.906-.197 4.613-.868 6.117-.592 1.32-1.056 2.367-.668 4.365a1.458 1.458 0 0 1-1.156 1.711z",
  fill: "#5E81AC"
}];
var leftPaths = [{
  d: "M292.448 322.827c-17.747 0-32.133 14.386-32.133 32.132v27.481a6.428 6.428 0 0 0 6.427 6.428 6.429 6.429 0 0 0 6.427-6.428v-1.537a6.425 6.425 0 0 1 6.426-6.426 6.426 6.426 0 0 1 6.427 6.426v1.537a6.428 6.428 0 0 0 6.426 6.428 6.428 6.428 0 0 0 6.427-6.428v-1.537a6.425 6.425 0 0 1 6.427-6.426 6.425 6.425 0 0 1 6.426 6.426v1.537a6.428 6.428 0 0 0 6.427 6.428 6.429 6.429 0 0 0 6.427-6.428v-27.481c-.001-17.746-14.388-32.132-32.134-32.132z",
  fill: "#81A1C1"
}, {
  d: "M270.452 382.441a6.39 6.39 0 0 0 1.359 3.947 6.395 6.395 0 0 1-5.068 2.477 6.425 6.425 0 0 1-6.427-6.424v-27.482c0-17.746 14.388-32.131 32.133-32.131 1.725 0 3.417.135 5.068.397-15.338 2.429-27.064 15.71-27.064 31.734v27.482z",
  fill: "#5E81AC"
}, {
  d: "M309.463 346.178c0-8.197-6.2-14.844-13.847-14.844-7.648 0-13.848 6.646-13.848 14.844s6.2 9.773 13.848 9.773c7.648 0 13.847-1.576 13.847-9.773z",
  fill: "#9CB5CE"
}];
var leftTentaclePaths = [{
  d: "M327.968 402.748v11.258c0 6.748-5.488 12.236-12.237 12.236s-12.24-5.488-12.24-12.236v-61.287c0-.998.811-1.811 1.811-1.811.999 0 1.811.813 1.811 1.811v61.287c0 4.752 3.866 8.615 8.619 8.615 4.75 0 8.617-3.863 8.617-8.615v-11.258c0-.998.811-1.811 1.81-1.811s1.809.813 1.809 1.811z",
  fill: "#88C0D0"
}, {
  d: "M311.408 438.477c0 .998-.809 1.811-1.811 1.811-7.987 0-14.484-6.5-14.484-14.486v-59.678a1.811 1.811 0 0 1 3.622 0v59.678c0 5.99 4.873 10.865 10.864 10.865a1.806 1.806 0 0 1 1.809 1.81zm-21.624-72.354v59.678c0 7.986-6.5 14.486-14.486 14.486a1.81 1.81 0 1 1 0-3.622c5.99 0 10.866-4.875 10.866-10.865v-59.678c0-.998.811-1.811 1.81-1.811.999.003 1.81.814 1.81 1.812z",
  fill: "#88C0D0"
}, {
  d: "M281.404 352.719v61.287c0 6.748-5.489 12.236-12.237 12.236s-12.239-5.488-12.239-12.236v-11.258a1.812 1.812 0 0 1 3.621 0v11.258c0 4.752 3.867 8.615 8.619 8.615 4.753 0 8.617-3.863 8.617-8.615v-61.287a1.81 1.81 0 0 1 3.619 0z",
  fill: "#88C0D0"
}, {
  d: "M307.112 352.719v30.227a6.31 6.31 0 0 0-1.811-.262c-.627 0-1.236.09-1.81.262v-30.227c0-.998.811-1.811 1.81-1.811 1 0 1.811.813 1.811 1.811zm-8.378 13.404v25.859a6.397 6.397 0 0 1-1.743 3.207 6.372 6.372 0 0 1-1.878 1.305v-30.371a1.811 1.811 0 0 1 3.621 0zm-8.95 0v30.371a6.426 6.426 0 0 1-3.62-4.5v-25.871c0-.998.811-1.811 1.81-1.811.999.002 1.81.813 1.81 1.811zm-8.38-13.404v30.227a6.292 6.292 0 0 0-1.81-.262 6.31 6.31 0 0 0-1.811.262v-30.227a1.81 1.81 0 1 1 3.621 0z",
  fill: "#5E81AC"
}];
var leftSmallPaths = [{
  d: "M298.753 215.403c0 .85 1.062 1.24 1.608.59.455-.543.877-1.125 1.783-1.125 1.695 0 1.695 2.04 3.391 2.04 1.695 0 1.695-2.04 3.391-2.04 1.695 0 1.695 2.04 3.391 2.04s1.695-2.04 3.391-2.04c1.695 0 1.695 2.04 3.391 2.04 1.694 0 1.694-2.04 3.39-2.04.904 0 1.327.582 1.782 1.124.545.651 1.608.261 1.608-.589v-4.818h-27.124v4.818z",
  fill: "#81A1C1"
}, {
  d: "M298.753 211.596h27.123v1.223h-27.123z",
  fill: "#5E81AC"
}, {
  d: "M329.53 211.596c1.051 0 1.885-.902 1.779-1.947-.976-9.629-9.107-17.145-18.994-17.145s-18.018 7.516-18.994 17.145c-.106 1.045.728 1.947 1.779 1.947h34.43z",
  fill: "#72B4C7"
}, {
  d: "M295.083 209.827c.89-8.723 8.278-15.553 17.232-15.553s16.343 6.83 17.232 15.553h-34.464z",
  fill: "#88C0D0"
}, {
  d: "M301.69399999999996,204.073a2.086,2.086 0 1,0 4.172,0a2.086,2.086 0 1,0 -4.172,0",
  fill: "#5E81AC"
}, {
  d: "M318.132,205.97a2.592,2.592 0 1,0 5.184,0a2.592,2.592 0 1,0 -5.184,0",
  fill: "#5E81AC"
}, {
  d: "M311.746,199.722a1.781,1.781 0 1,0 3.562,0a1.781,1.781 0 1,0 -3.562,0",
  fill: "#5E81AC"
}, {
  d: "M309.017,204.827a1.08,1.08 0 1,0 2.16,0a1.08,1.08 0 1,0 -2.16,0",
  fill: "#5E81AC"
}, {
  d: "M319.58000000000004,200.849a1.08,1.08 0 1,0 2.16,0a1.08,1.08 0 1,0 -2.16,0",
  fill: "#5E81AC"
}];
var leftSmallTentaclePaths = [{
  d: "M326.034 229.93v4.363c0 2.301-1.872 4.172-4.173 4.172s-4.172-1.871-4.172-4.172v-26.236a1.327 1.327 0 1 1 2.655 0v26.236c0 .836.681 1.518 1.518 1.518s1.517-.682 1.517-1.518v-4.363a1.329 1.329 0 0 1 2.655 0zm-10.157-16.31v29.082a1.328 1.328 0 0 1-2.656 0V213.62a1.328 1.328 0 1 1 2.656 0zm-4.468 0v29.082a1.328 1.328 0 0 1-2.656 0V213.62a1.329 1.329 0 0 1 2.656 0zm-4.468-5.563v26.236a4.177 4.177 0 0 1-4.172 4.172 4.175 4.175 0 0 1-4.172-4.172v-4.363a1.328 1.328 0 1 1 2.655 0v4.363c0 .836.68 1.518 1.518 1.518a1.52 1.52 0 0 0 1.517-1.518v-26.236a1.328 1.328 0 1 1 2.654 0z",
  fill: "#8FBCBB"
}];
var rightPaths = [{
  d: "M538.52 203.903c3.87-8.693 4.646-18.166 2.181-26.673-2.517-8.691-8.095-15.343-15.704-18.731-7.611-3.389-16.286-3.082-24.428.863-7.971 3.86-14.492 10.774-18.363 19.469l-6.655 14.947a2.265 2.265 0 1 0 4.138 1.844l3.571-8.021.008.004a2.308 2.308 0 0 1 2.971-1.02l2.373 1.057-.003.008a2.309 2.309 0 0 1 1.097 2.768l-2.338 5.252a2.266 2.266 0 0 0 4.139 1.842l2.259-5.047a2.305 2.305 0 0 1 2.891-1.23l.003-.009.04.019 2.109.938a2.307 2.307 0 0 1 1.244 2.847l-3.59 8.063a2.264 2.264 0 1 0 4.138 1.844l3.512-7.864a2.306 2.306 0 0 1 2.891-1.229l.003-.008 2.122.945a2.304 2.304 0 0 1 1.23 2.888l.008.003-4.662 10.514a2.265 2.265 0 1 0 4.138 1.842l4.619-10.347a2.304 2.304 0 0 1 2.889-1.229l.003-.008.027.012 2.108.939a2.305 2.305 0 0 1 1.232 2.888l.008.004-1.802 4.05a2.264 2.264 0 1 0 4.138 1.842l1.822-4.094a2.304 2.304 0 0 1 2.791-1.034l.005-.008 2.402 1.069a2.303 2.303 0 0 1 1.291 2.692l-3.654 8.208a2.264 2.264 0 1 0 4.138 1.843c.003-.003 6.602-14.824 6.66-14.952z",
  fill: "#88C0D0"
}, {
  d: "M513.468 165.105c5.788-2.804 11.845-3.767 17.597-2.874a26.96 26.96 0 0 0-6.068-3.732c-7.611-3.389-16.286-3.082-24.428.863-7.971 3.86-14.492 10.774-18.363 19.469l-6.655 14.947a2.265 2.265 0 1 0 4.138 1.844l3.571-8.021.008.004a2.308 2.308 0 0 1 2.971-1.02l2.373 1.057-.003.008a2.309 2.309 0 0 1 1.097 2.768l-2.338 5.252a2.267 2.267 0 0 0 1.148 2.992l6.518-14.641c3.87-8.694 10.464-15.056 18.434-18.916z",
  fill: "#79B8CA"
}, {
  d: "M535.141 200.313c3.083-7.445 3.641-15.48 1.567-22.636-2.138-7.386-6.825-13.016-13.194-15.853-6.37-2.836-13.689-2.551-20.611.802-6.737 3.264-12.356 9.095-15.824 16.419a1.81 1.81 0 0 0 .901 2.43l44.707 19.905.003.002a1.816 1.816 0 0 0 2.451-1.069z",
  fill: "#A2C7C7"
}, {
  d: "M502.902 162.626c-6.737 3.264-12.356 9.095-15.824 16.419-.209.441-.23.947-.062 1.405.17.457.517.827.962 1.026l8.864 3.945a1.815 1.815 0 0 1-.901-2.431c3.469-7.324 9.088-13.154 15.825-16.418 5.288-2.563 10.808-3.33 15.961-2.286a22.466 22.466 0 0 0-4.214-2.462c-6.37-2.833-13.689-2.55-20.611.802z",
  fill: "#8FBCBB"
}, {
  d: "M501.636 182.969a1.596 1.596 0 1 1 2.108-.809 1.6 1.6 0 0 1-2.108.809zm8.674-10.449a1.605 1.605 0 0 1-.809-2.11 1.601 1.601 0 0 1 2.109-.809 1.603 1.603 0 0 1 .809 2.108 1.604 1.604 0 0 1-2.109.811zm-.434 8.825a1.604 1.604 0 0 1-.841-.887 1.604 1.604 0 0 1 .031-1.221c.17-.383.494-.69.887-.841.392-.151.836-.14 1.221.031a1.602 1.602 0 0 1 .81 2.109c-.17.383-.495.69-.887.841s-.836.139-1.221-.032zm14.886-2.391a1.6 1.6 0 0 1-.809-2.108 1.6 1.6 0 0 1 2.108-.811 1.601 1.601 0 0 1 .81 2.109c-.171.384-.494.69-.887.841-.392.15-.838.14-1.222-.031zm2.7 12.651a1.6 1.6 0 0 1-.81-2.109 1.597 1.597 0 0 1 2.108-.809 1.6 1.6 0 0 1 .811 2.109 1.602 1.602 0 0 1-2.109.809zm-7.332-22.178a1.583 1.583 0 0 1-.839-.888 1.588 1.588 0 0 1 .917-2.06 1.593 1.593 0 0 1 2.06.917 1.6 1.6 0 0 1-.029 1.221 1.602 1.602 0 0 1-2.109.81zm-18.899 3.71a1.597 1.597 0 0 1-.839-.887 1.597 1.597 0 0 1 .029-1.222c.171-.384.494-.691.888-.84a1.59 1.59 0 0 1 2.06.917 1.6 1.6 0 0 1-.029 1.221 1.6 1.6 0 0 1-.889.84 1.593 1.593 0 0 1-1.22-.029zm17.717 17.539a1.596 1.596 0 1 1 1.298-2.916 1.596 1.596 0 0 1-1.298 2.916zm.404-7.725a1.597 1.597 0 0 1-.84-.886 1.606 1.606 0 0 1 .029-1.222 1.604 1.604 0 0 1 2.11-.809 1.6 1.6 0 0 1 .809 2.109 1.6 1.6 0 0 1-2.108.808zm12.093 2.473a1.6 1.6 0 0 1-.809-2.108 1.601 1.601 0 0 1 2.108-.809 1.6 1.6 0 0 1 .811 2.108 1.605 1.605 0 0 1-2.11.809z",
  fill: "#D8DEE9"
}];
var rightTentaclePaths = [{
  d: "M483.119 229.449a3.978 3.978 0 0 1-2.017-5.251c.749-1.682.61-2.535.356-4.085-.327-2.004-.777-4.749.939-8.603s4.056-5.357 5.765-6.455c1.321-.85 2.049-1.316 2.797-2.998.749-1.682.61-2.535.356-4.084-.327-2.004-.777-4.75.939-8.604 1.715-3.854 4.056-5.356 5.765-6.453 1.321-.848 2.048-1.316 2.796-2.998a3.978 3.978 0 0 1 7.267 3.235c-1.715 3.853-4.056 5.356-5.764 6.454-1.321.85-2.048 1.316-2.797 2.998s-.609 2.534-.356 4.084c.327 2.006.775 4.749-.939 8.602-1.716 3.854-4.056 5.357-5.764 6.456-1.321.849-2.05 1.316-2.798 2.997-.749 1.682-.609 2.536-.356 4.086.327 2.004.776 4.748-.939 8.603a3.976 3.976 0 0 1-5.25 2.016zm21.799 9.706a3.978 3.978 0 0 1-2.017-5.251c.749-1.683.61-2.536.356-4.085-.328-2.005-.776-4.75.938-8.604 1.716-3.854 4.058-5.356 5.766-6.455 1.321-.849 2.048-1.316 2.798-2.998.748-1.681.609-2.533.354-4.084-.327-2.004-.775-4.75.939-8.604 1.716-3.853 4.058-5.355 5.766-6.453 1.321-.849 2.048-1.316 2.798-2.997a3.977 3.977 0 1 1 7.266 3.235c-1.716 3.854-4.056 5.355-5.764 6.454-1.32.849-2.05 1.316-2.797 2.998-.75 1.681-.609 2.534-.357 4.083.329 2.005.777 4.75-.938 8.604s-4.057 5.356-5.765 6.454c-1.321.85-2.049 1.317-2.797 2.998-.75 1.682-.609 2.536-.357 4.085.327 2.005.777 4.75-.939 8.604a3.978 3.978 0 0 1-5.25 2.016z",
  fill: "#5E81AC"
}, {
  d: "M529.885 192.86a3.979 3.979 0 0 0-7.268-3.236c-.748 1.682-1.476 2.149-2.798 2.998-1.708 1.098-4.049 2.601-5.765 6.453-1.715 3.854-1.268 6.6-.939 8.604.254 1.549.394 2.403-.355 4.084-.748 1.682-1.477 2.149-2.797 2.998-.364.234-.756.486-1.165.775l8.349 3.718c1.012-.995 2.023-2.332 2.88-4.255 1.716-3.854 1.268-6.599.938-8.604-.252-1.55-.393-2.403.357-4.085.749-1.681 1.477-2.148 2.797-2.997 1.709-1.098 4.05-2.601 5.766-6.453zm-42.887 12.971l8.349 3.717c1.012-.994 2.023-2.332 2.88-4.256 1.716-3.853 1.267-6.598.939-8.602-.253-1.55-.393-2.402.356-4.084s1.476-2.148 2.797-2.998c1.708-1.098 4.049-2.602 5.765-6.454a3.978 3.978 0 0 0-7.267-3.235c-.749 1.682-1.476 2.148-2.797 2.998-1.709 1.097-4.05 2.6-5.765 6.453-1.716 3.854-1.267 6.6-.939 8.604.254 1.549.393 2.402-.356 4.084-.748 1.682-1.476 2.148-2.797 2.998-.364.233-.756.486-1.165.775z",
  fill: "#4D6D95"
}, {
  d: "M487.113 235.145a3.978 3.978 0 0 1-2.017-5.252c.748-1.682.609-2.535.356-4.084-.328-2.004-.775-4.749.939-8.603 1.716-3.853 4.056-5.357 5.765-6.454 1.321-.85 2.048-1.316 2.797-2.998.748-1.682.609-2.535.356-4.085-.328-2.005-.776-4.75.939-8.603 1.716-3.854 4.056-5.357 5.765-6.455 1.32-.848 2.048-1.316 2.796-2.998a3.978 3.978 0 0 1 7.267 3.236c-1.715 3.854-4.056 5.357-5.765 6.455-1.32.848-2.048 1.316-2.797 2.997-.748 1.682-.609 2.534-.356 4.085.328 2.004.777 4.749-.938 8.602-1.716 3.854-4.057 5.357-5.765 6.455-1.321.849-2.049 1.316-2.798 2.998-.748 1.682-.609 2.535-.355 4.084.327 2.006.776 4.75-.939 8.604a3.976 3.976 0 0 1-5.25 2.016zm10.899 4.853a3.978 3.978 0 0 1-2.016-5.25c.75-1.682.61-2.536.356-4.086-.327-2.004-.776-4.749.94-8.603 1.715-3.854 4.056-5.357 5.764-6.455 1.321-.848 2.05-1.316 2.798-2.998.749-1.682.608-2.533.355-4.084-.327-2.004-.776-4.749.94-8.603 1.715-3.853 4.055-5.357 5.764-6.454 1.32-.85 2.049-1.316 2.797-2.998a3.979 3.979 0 0 1 7.268 3.235c-1.717 3.854-4.057 5.356-5.766 6.455-1.32.849-2.049 1.315-2.797 2.997-.749 1.682-.609 2.535-.356 4.084.327 2.004.776 4.75-.939 8.603-1.716 3.854-4.056 5.356-5.764 6.455-1.321.849-2.05 1.316-2.798 2.998-.748 1.681-.609 2.535-.355 4.085.326 2.004.775 4.748-.94 8.604a3.978 3.978 0 0 1-5.251 2.015z",
  fill: "#81A1C1"
}, {
  d: "M505.854 212.606c-.24.539-.478.951-.732 1.293l7.336 3.268c.229-.408.451-.849.663-1.325 1.716-3.853 1.267-6.599.939-8.603-.253-1.549-.393-2.402.356-4.084.748-1.682 1.477-2.148 2.797-2.997 1.709-1.099 4.049-2.602 5.766-6.455a3.978 3.978 0 0 0-7.268-3.235c-.748 1.682-1.477 2.148-2.797 2.998-1.709 1.097-4.049 2.602-5.764 6.454-1.717 3.854-1.268 6.599-.94 8.603.253 1.55.393 2.401-.356 4.083z",
  fill: "#668DB4"
}, {
  d: "M503.516 198.301c.749-1.68 1.477-2.148 2.798-2.996 1.708-1.099 4.049-2.602 5.765-6.455a3.976 3.976 0 0 0-2.017-5.25 3.975 3.975 0 0 0-5.25 2.014c-.749 1.682-1.476 2.15-2.797 2.998-1.708 1.098-4.049 2.602-5.765 6.455-1.715 3.853-1.267 6.598-.939 8.603.254 1.55.392 2.403-.356 4.085-.24.537-.479.949-.733 1.291l7.338 3.268c.229-.408.45-.848.662-1.324 1.716-3.854 1.268-6.598.94-8.602-.256-1.552-.394-2.405.354-4.087z",
  fill: "#668DB4"
}, {
  d: "M491.188 240.659a3.976 3.976 0 0 1-2.016-5.25c.749-1.682.609-2.535.356-4.084-.327-2.006-.775-4.75.94-8.604s4.055-5.357 5.764-6.454c1.32-.85 2.048-1.316 2.797-2.998s.609-2.536.355-4.085c-.327-2.004-.774-4.75.941-8.604 1.715-3.853 4.055-5.355 5.763-6.453 1.321-.85 2.049-1.316 2.798-2.998a3.978 3.978 0 0 1 7.267 3.236c-1.716 3.854-4.056 5.355-5.766 6.453-1.321.85-2.049 1.316-2.797 2.998-.749 1.682-.609 2.535-.355 4.084.327 2.005.776 4.75-.938 8.604-1.717 3.854-4.057 5.356-5.766 6.453-1.322.85-2.049 1.316-2.798 2.998-.748 1.682-.609 2.536-.355 4.086.328 2.004.776 4.749-.938 8.603a3.977 3.977 0 0 1-5.252 2.015z",
  fill: "#88C0D0"
}, {
  d: "M506.968 214.721c.901-2.938.543-5.139.269-6.82-.254-1.549-.393-2.402.355-4.084s1.476-2.149 2.798-2.998c1.708-1.098 4.048-2.601 5.764-6.455a3.978 3.978 0 0 0-7.267-3.234c-.749 1.682-1.476 2.149-2.797 2.997-1.709 1.099-4.049 2.602-5.764 6.454-1.716 3.854-1.269 6.6-.939 8.604.143.878.25 1.533.18 2.242l7.401 3.294z",
  fill: "#6BB1C4"
}, {
  d: "M523.238 218.149c-.688-.307-.995-1.109-.688-1.796l10.104-22.696a1.36 1.36 0 0 1 2.484 1.107l-10.105 22.696a1.36 1.36 0 0 1-1.795.689z",
  fill: "#A2C7C7"
}, {
  d: "M475.774 212.908a1.358 1.358 0 0 1-.689-1.795l1.98-4.448a1.359 1.359 0 0 1 2.483 1.106l-1.979 4.447a1.36 1.36 0 0 1-1.795.69zm3.824-8.587a1.36 1.36 0 0 1-.689-1.795l10.105-22.696a1.358 1.358 0 0 1 1.794-.688c.687.305.995 1.108.689 1.795l-10.104 22.696a1.362 1.362 0 0 1-1.795.688z",
  fill: "#8FBCBB"
}];

/*
 * Copyright (C) 2019-present Arctic Ice Studio <development@arcticicestudio.com>
 * Copyright (C) 2019-present Sven Greb <development@svengreb.de>
 *
 * Project:    Arctic Ocean Fractal
 * Repository: https://github.com/arcticicestudio/arctic-ocean-fractal
 * License:    MIT
 */
var animTentacleSwing = styled.keyframes(["0%{transform:translate3d(0,0,0);}100%{transform:translate3d(-0.25%,-1%,0);}"]);
var animFloat = styled.keyframes(["0%{transform:translate3d(0,0,0);}100%{transform:translate3d(-1.5%,-6%,0);}"]);
var bodyAnimStyle = styled.css(["animation:", " 4s ease-in-out infinite 1.2s alternate;"], animFloat);
var tentaclesAnimStyle = styled.css(["animation:", " 4s linear 3s infinite alternate;"], animTentacleSwing);

var JellyfishCenter = function JellyfishCenter(_ref) {
  var poseTimings = _ref.poseTimings,
      runCssAnimations = _ref.runCssAnimations;
  return React__default.createElement(Jellyfish$1, {
    bodyAnimation: bodyAnimStyle,
    bodyPaths: centerPaths,
    poseTimings: poseTimings,
    runCssAnimations: runCssAnimations,
    tentaclePaths: centerTentaclePaths,
    tentaclesAnimation: tentaclesAnimStyle
  });
};

var JellyfishCenter$1 = React__default.memo(function (props) {
  return React__default.createElement(JellyfishCenter, props);
});

/*
 * Copyright (C) 2019-present Arctic Ice Studio <development@arcticicestudio.com>
 * Copyright (C) 2019-present Sven Greb <development@svengreb.de>
 *
 * Project:    Arctic Ocean Fractal
 * Repository: https://github.com/arcticicestudio/arctic-ocean-fractal
 * License:    MIT
 */
var animTentacleSwing$1 = styled.keyframes(["0%{transform:translate3d(0,0,0);}100%{transform:translate3d(0,-1.5%,0);}"]);
var animFloat$1 = styled.keyframes(["0%{transform:translate3d(0,0,0);}100%{transform:translate3d(0,-8%,0);}"]);
var bodyAnimStyle$1 = styled.css(["animation:", " 3s ease-in-out infinite alternate;"], animFloat$1);
var tentaclesAnimStyle$1 = styled.css(["animation:", " 3s linear 1.8s infinite alternate;"], animTentacleSwing$1);

var JellyfishLeft = function JellyfishLeft(_ref) {
  var poseTimings = _ref.poseTimings,
      runCssAnimations = _ref.runCssAnimations;
  return React__default.createElement(Jellyfish$1, {
    bodyAnimation: bodyAnimStyle$1,
    bodyPaths: leftPaths,
    poseTimings: poseTimings,
    runCssAnimations: runCssAnimations,
    tentaclePaths: leftTentaclePaths,
    tentaclesAnimation: tentaclesAnimStyle$1
  });
};

var JellyfishLeft$1 = React__default.memo(function (props) {
  return React__default.createElement(JellyfishLeft, props);
});

/*
 * Copyright (C) 2019-present Arctic Ice Studio <development@arcticicestudio.com>
 * Copyright (C) 2019-present Sven Greb <development@svengreb.de>
 *
 * Project:    Arctic Ocean Fractal
 * Repository: https://github.com/arcticicestudio/arctic-ocean-fractal
 * License:    MIT
 */
var animTentacleSwing$2 = styled.keyframes(["0%{transform:translate3d(0,0,0);}100%{transform:translate3d(0,-1.5%,0);}"]);
var animFloat$2 = styled.keyframes(["0%{transform:translate3d(0,0,0);}100%{transform:translate3d(0,-8%,0);}"]);
var bodyAnimStyle$2 = styled.css(["animation:", " 8s ease-in-out infinite alternate;"], animFloat$2);
var tentaclesAnimStyle$2 = styled.css(["animation:", " 8s linear 1.8s infinite alternate;"], animTentacleSwing$2);

var JellyfishLeftSmall = function JellyfishLeftSmall(_ref) {
  var poseTimings = _ref.poseTimings,
      runCssAnimations = _ref.runCssAnimations;
  return React__default.createElement(Jellyfish$1, {
    bodyAnimation: bodyAnimStyle$2,
    bodyPaths: leftSmallPaths,
    poseTimings: poseTimings,
    runCssAnimations: runCssAnimations,
    tentaclePaths: leftSmallTentaclePaths,
    tentaclesAnimation: tentaclesAnimStyle$2
  });
};

var JellyfishLeftSmall$1 = React__default.memo(function (props) {
  return React__default.createElement(JellyfishLeftSmall, props);
});

/*
 * Copyright (C) 2019-present Arctic Ice Studio <development@arcticicestudio.com>
 * Copyright (C) 2019-present Sven Greb <development@svengreb.de>
 *
 * Project:    Arctic Ocean Fractal
 * Repository: https://github.com/arcticicestudio/arctic-ocean-fractal
 * License:    MIT
 */
var animTentacleSwing$3 = styled.keyframes(["0%{transform:translate3d(0,0,0);}100%{transform:translate3d(0.25%,-1%,0);}"]);
var animFloat$3 = styled.keyframes(["0%{transform:translate3d(0,0,0);}100%{transform:translate3d(1.8%,-2%,0);}"]);
var bodyAnimStyle$3 = styled.css(["animation:", " 5s ease-in-out infinite alternate;"], animFloat$3);
var tentaclesAnimStyle$3 = styled.css(["animation:", " 5s linear 1.8s infinite alternate;"], animTentacleSwing$3);

var JellyfishRight = function JellyfishRight(_ref) {
  var poseTimings = _ref.poseTimings,
      runCssAnimations = _ref.runCssAnimations;
  return React__default.createElement(Jellyfish$1, {
    bodyAnimation: bodyAnimStyle$3,
    bodyPaths: rightPaths,
    poseTimings: poseTimings,
    runCssAnimations: runCssAnimations,
    tentaclePaths: rightTentaclePaths,
    tentaclesAnimation: tentaclesAnimStyle$3
  });
};

var JellyfishRight$1 = React__default.memo(function (props) {
  return React__default.createElement(JellyfishRight, props);
});

/*
 * Copyright (C) 2019-present Arctic Ice Studio <development@arcticicestudio.com>
 * Copyright (C) 2019-present Sven Greb <development@svengreb.de>
 *
 * Project:    Arctic Ocean Fractal
 * Repository: https://github.com/arcticicestudio/arctic-ocean-fractal
 * License:    MIT
 */

/*
 * Copyright (C) 2019-present Arctic Ice Studio <development@arcticicestudio.com>
 * Copyright (C) 2019-present Sven Greb <development@svengreb.de>
 *
 * Project:    Arctic Ocean Fractal
 * Repository: https://github.com/arcticicestudio/arctic-ocean-fractal
 * License:    MIT
 */

/**
 * Calculates the delay and duration timings for the `Anglerfish` and `Jellyfish` pose animations based on the passed
 * total duration time.
 *
 * @method calcPoseTimings
 * @return {Object} The calculated pose animation timings.
 * @since 0.1.0
 */
var calcPoseTimings = function calcPoseTimings(totalTime) {
  var timeLeft = totalTime;
  /* Calculate past time until the anglerfish eye lens animation starts. */

  var anglerfishDelayEyeLens = totalTime * 0.25;
  timeLeft -= anglerfishDelayEyeLens;
  /* Calculate total anglerfish eye lens animation duration */

  var anglerfishDurationEyeLens = timeLeft * 0.07;
  timeLeft -= anglerfishDurationEyeLens;
  /* Calculate anglerfish hiding animation duration. */

  var anglerfishDurationHide = timeLeft * 0.5;
  timeLeft -= anglerfishDurationHide;
  /* Calculate past time until anglerfish hiding animation starts. */

  var anglerfishDelayHide = anglerfishDelayEyeLens + anglerfishDurationEyeLens + timeLeft * 0.15;
  timeLeft -= timeLeft * 0.15;
  /* Calculate jellyfish bounce in animation delay. */

  var jellyfishDelay = anglerfishDelayHide + anglerfishDelayHide * 0.1;
  timeLeft -= anglerfishDelayHide * 0.1;
  return {
    anglerfish: {
      anglerfishDelay: anglerfishDelayHide,
      anglerfishDuration: anglerfishDurationHide,
      anglerfishEyeLensDelay: anglerfishDelayEyeLens,
      anglerfishEyeLensDuration: anglerfishDurationEyeLens
    },
    jellyfish: {
      jellyFishDelay: jellyfishDelay,
      jellyFishDuration: timeLeft
    }
  };
};

var Svg = posed.svg({});
/**
 * An animated fractal of the arctic ocean.
 *
 * @author Arctic Ice Studio <development@arcticicestudio.com>
 * @author Sven Greb <development@svengreb.de>
 * @version 0.1.0
 */

var ArcticOceanFractal =
/*#__PURE__*/
function (_Component) {
  _inheritsLoose(ArcticOceanFractal, _Component);

  function ArcticOceanFractal() {
    var _this;

    for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
      args[_key] = arguments[_key];
    }

    _this = _Component.call.apply(_Component, [this].concat(args)) || this;

    _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "state", {
      /**
       * Trigger to run the CSS animation keyframes after the pose animation has been completed.
       *
       * @since 0.1.0
       */
      runCssAnimations: false
    });

    _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "handleCssAnimations", function () {
      var onAnimationComplete = _this.props.onAnimationComplete;

      _this.setState({
        runCssAnimations: true
      });

      onAnimationComplete();
    });

    return _this;
  }

  var _proto = ArcticOceanFractal.prototype;

  _proto.render = function render() {
    var _this$props = this.props,
        duration = _this$props.duration,
        pose = _this$props.pose;
    var runCssAnimations = this.state.runCssAnimations;

    var _calcPoseTimings = calcPoseTimings(duration),
        anglerfish = _calcPoseTimings.anglerfish,
        jellyfish = _calcPoseTimings.jellyfish;

    return React__default.createElement(Svg, {
      onPoseComplete: this.handleCssAnimations,
      pose: pose,
      viewBox: "0 0 800 640.66",
      xmlns: "http://www.w3.org/2000/svg"
    }, React__default.createElement(IllustrationCanvas$1, {
      anglerfishProps: anglerfish
    }), React__default.createElement(BubblesFishSwarm, null), React__default.createElement(BubblesWater, null), React__default.createElement(BubblesGroundHoleTop, null), React__default.createElement(BubblesGroundHoleCenter, null), React__default.createElement(BubblesGroundHoleOverflow, null), React__default.createElement(JellyfishLeft$1, {
      poseTimings: jellyfish,
      runCssAnimations: runCssAnimations
    }), React__default.createElement(JellyfishLeftSmall$1, {
      poseTimings: jellyfish,
      runCssAnimations: runCssAnimations
    }), React__default.createElement(JellyfishCenter$1, {
      poseTimings: jellyfish,
      runCssAnimations: runCssAnimations
    }), React__default.createElement(JellyfishRight$1, {
      poseTimings: jellyfish,
      runCssAnimations: runCssAnimations
    }));
  };

  return ArcticOceanFractal;
}(React.Component);

_defineProperty(ArcticOceanFractal, "propTypes", {
  /**
   * The total animation duration.
   *
   * @since 0.1.0
   */
  duration: function duration(_ref, propName, componentName) {
    var _duration = _ref.duration;
    return _duration < 0 && !Number.isNaN(_duration) && new Error("Invalid prop \"" + propName + "\" of value \"" + _duration + "\" supplied to \"" + componentName + "\", expected a non-negative number.");
  },

  /**
   * The function that gets called when the animation is completed.
   *
   * @since 0.1.0
   */
  onAnimationComplete: PropTypes.func,

  /**
   * The name of the animation pose.
   *
   * @since 0.1.0
   */
  pose: PropTypes.oneOf([POSE_HIDE, POSE_SHOW]).isRequired
});

_defineProperty(ArcticOceanFractal, "defaultProps", {
  duration: 3200,
  onAnimationComplete: function onAnimationComplete() {}
});

/*
 * Copyright (C) 2019-present Arctic Ice Studio <development@arcticicestudio.com>
 * Copyright (C) 2019-present Sven Greb <development@svengreb.de>
 *
 * Project:    Arctic Ocean Fractal
 * Repository: https://github.com/arcticicestudio/arctic-ocean-fractal
 * License:    MIT
 */

exports.POSE_HIDE = POSE_HIDE;
exports.POSE_SHOW = POSE_SHOW;
exports.default = ArcticOceanFractal;
//# sourceMappingURL=arctic-ocean-fractal.cjs.development.js.map