Trying out React Motion

Developer
Size
31,323 Kb
Views
2,024

How do I make an trying out react motion?

Using react-motion to animate an SVG. What is a trying out react motion? How do you make a trying out react motion? This script and codes were developed by Sarah Drasner on 22 January 2023, Sunday.

Trying out React Motion Previews

Trying out React Motion - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Trying out React Motion</title> <link href='https://fonts.googleapis.com/css?family=Lato:400italic' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div id="app"></div>
<svg width="0" height="0" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 803.9 738.1"> <defs> <linearGradient id="linear-gradient" x1="399.74" y1="370.41" x2="399.74" y2="134.33" gradientUnits="userSpaceOnUse"> <stop offset="0" stop-color="#fff"/> <stop offset="1"/> </linearGradient> <linearGradient id="linear-gradient-2" x1="406.42" y1="415.63" x2="406.42" y2="166.91" xlink:href="#linear-gradient"/> </defs>
</svg> <script src='https://fb.me/JSXTransformer-0.14.0.js'></script>
<script src='https://fb.me/react-with-addons-0.14.0.js'></script>
<script src='https://cdn.rawgit.com/chenglou/react-motion/cc852fe787bb15a8b4a9e51538e03c57d5543d2e/build/react-motion.js'></script> <script src="js/index.js"></script>
</body>
</html>

Trying out React Motion - Script Codes CSS Codes

html,
body { background: #333; font-family: 'Lato', sans-serif;
}
svg { position: absolute; top: 60px; width: 50%; left: 50%; margin-left: -25%;
}
.polygon,
polygon { -webkit-transform-origin: 50% 50%; transform-origin: 50% 50%;
}
.react-letters path { stroke-dasharray: 200;
}
.cls-2 { fill: url(#linear-gradient);
}
.cls-3,
.cls-4,
.cls-5,
.cls-6 { fill: none; stroke-miterlimit: 10;
}
.cls-3 { stroke: url(#linear-gradient-2);
}
.cls-4,
.cls-5 { stroke: #8e7e7e;
}
.cls-4 { opacity: 0.24;
}
.cls-6 { stroke: #000; opacity: 0.2;
}
button { padding: 10px 15px; background: black; color: #8e7e7e; box-shadow: none; outline: none; border: none; border-radius: 3px; text-align: center; margin: 20px auto 0; display: table; opacity: 0.6; font-style: italic; letter-spacing: 0.03em; -webkit-transition: 0.5s ease all; transition: 0.5s ease all;
}
button:hover { opacity: 1; -webkit-transition: 0.5s ease all; transition: 0.5s ease all;
}
@media screen and (max-width: 600px) { svg { width: 100% !important; left: 0% !important; margin-left: 0% !important; }
}

Trying out React Motion - Script Codes JS Codes

"use strict";
var _React = React;
var Component = _React.Component;
var Children = _React.Children;
var PropTypes = _React.PropTypes;
var _ReactMotion = ReactMotion;
var Motion = _ReactMotion.Motion;
var spring = _ReactMotion.spring;
var App = React.createClass({ displayName: "App", //set up a boolean flag to track the toggle state getInitialState: function getInitialState() { return { compact: false }; }, handleMouseDown: function handleMouseDown() { //toggle it this.setState({ compact: !this.state.compact }); }, handleTouchStart: function handleTouchStart(e) { e.preventDefault(); this.handleMouseDown(); }, render: function render() { return React.createElement( "div", null, React.createElement( "button", { onMouseDown: this.handleMouseDown, onTouchStart: this.handleTouchStart }, "Press Me" ), React.createElement( Motion, { style: { //designate all of the differences in interpolated values in these ternary operators scale: spring(this.state.compact ? 1 : 0), scaleLower: spring(this.state.compact ? 1 : 0.35), scaleUpper: spring(this.state.compact ? 1 : 0.85), dash: spring(this.state.compact ? 0 : 200), rotate: spring(this.state.compact ? 0 : 180), rotateFull: spring(this.state.compact ? 0 : 360), rotateReverseFull: spring(this.state.compact ? 0 : -180) } }, function (_ref) { var scale = _ref.scale; var scaleLower = _ref.scaleLower; var scaleUpper = _ref.scaleUpper; var dash = _ref.dash; var rotate = _ref.rotate; var rotateFull = _ref.rotateFull; var rotateReverseFull = _ref.rotateReverseFull; return React.createElement( "div", null, React.createElement( "svg", { viewBox: "0 0 803.9 738.1", "aria-labelledby": "title" }, React.createElement( "title", null, "React-Motion" ), React.createElement( "g", null, React.createElement("path", { style: { /* inline styles need ${x} like in SASS */ WebkitTransform: "scale(" + scale + ") rotate(" + rotate + "deg)", transform: "scale(" + scale + ") rotate(" + rotate + "deg)" }, className: "polygon cls-2", d: "M529.8,359.7l-25.1-43.5-25.4-43.9-25.7-44.4L428,183.3,402.4,139l-2.7-4.6-26.8,46.4-26.2,45.4-27.2,47.1-25.9,44.9-27.4,47.5-2.8,4.8H536Zm-130.1-2a30.4,30.4,0,0,1-5.2-.4c-1.3-.3-1.5-1.2-2.2-2.5l-4.6-8c3.8-.7,8.1-2.1,12-2.1s8.2,1.5,12,2.2l-4.6,7.9c-0.8,1.3-.9,2.1-2.2,2.5A30,30,0,0,1,399.7,357.6Zm5.7,0.2a2.3,2.3,0,0,1-1.7.1h1.7Zm-9.6.1a2.3,2.3,0,0,1-1.7-.1h1.7Zm33.7-76.1-26.1,13.8c-0.9.5-2.6,1.9-3.6,1.9s-1.8-.9-2.3-1.2l-15.3-8.1L370,281.8l26.1-22.1c0.7-.6,2.7-3,3.6-3.1s1.9,1.6,2.4,1.9l15.3,13Zm-31.1-27.1H401C399.7,255.9,399.8,255.9,398.5,254.8Zm1.3,89.3-6-1.1c-2.7-.5-5.8-0.6-8.3-1.5s-2-2.2-2.9-3.7l-3.1-5.3,10.1-3.2,7.2-2.3a11.8,11.8,0,0,1,3-1,11.7,11.7,0,0,1,3,1l7.2,2.3,10.1,3.3-3,5.1c-0.9,1.5-1.4,3.3-3,3.9s-5.5,1-8.1,1.4Zm14.8-2a21.4,21.4,0,0,1-2,3.5c-0.8.9-.8,0.7-2.2,0.4l-8.8-1.6ZM398,344.3l-8.8,1.6c-1.4.3-1.4,0.5-2.2-.4a21.3,21.3,0,0,1-2-3.5Zm-29.5-28.4,9.4,16.3L366.4,336c-2.8.9-3.9,1.3-6.8,0.8l-24.3-4.4,17-9,11-5.8C365.1,316.6,366.5,315.3,368.6,315.9Zm-0.6-.8h0Zm31.8,10.2-16.3-5.2-10.2-3.3c-1.9-.6-3.2-0.6-4.1-2.3l26.8-14.2c0.8-.4,2.8-2,3.8-2s1.9,0.9,2.4,1.3l15.6,8.3,12.6,6.7c-0.9,1.6-2.2,1.7-4,2.2L416,320.1Zm29.5-8.8-4.8,8.3-2.3,4c-0.5.8-1.2,2.9-1.9,3.1s-3.1-1-3.8-1.2l-6.4-2.1-9.3-3Zm-30.5,9.1-9.3,3-6.4,2.1c-0.7.2-3,1.4-3.8,1.2s-1.4-2.3-1.9-3.1l-2.3-4-4.8-8.3Zm-20.5,7.2L383,341l-19.5-3.5Zm38.2,8,2.9-5c0.3-.6.9-2.2,1.5-2.7s0.5-.2,1.5,0c4.5,1.1,9,2.9,13.5,4.3C433.7,337.9,416.7,341.4,416.5,340.9Zm4.9-8.6,5.4-9.3c0.9-1.6,3.3-7.6,5.4-7.4s2,1.1,2.7,1.4l5.6,3,14.6,7.7,9,4.8-24.3,4.4c-2.8.5-3.9,0.1-6.8-.8Zm9.9-17.1h0Zm1.6,0.1c8.3-2.7,16.5-5.7,24.9-8,2.2-.6,3.5,1.6,5.1,3L475.9,321l9.1,7.7-11.3,2c-2.4.4-6.4,2-8.8,1.4a16.2,16.2,0,0,1-3.2-1.7l-5.9-3.1-14.1-7.5Zm-0.7-.4-0.6-.3,12-20.7,14.9,12.6Zm10.8-22.4-12.5-10.6,26.8-14.2Zm-0.3.5-10.9,18.9c-1,1.7-.6,2.1-2.1,1.6a33.7,33.7,0,0,1-4.6-2.4l-14.7-7.8-10-5.3,18.5-9.8,9.9-5.3a3.2,3.2,0,0,1,1.3-.6c0.9,0.1,2.6,2.2,3.2,2.7ZM399.1,298L378.2,309l-5.7,3c-0.8.4-2.5,1.8-3.4,1.8s-3.6-5.5-4.3-6.7l-5.4-9.3c-0.6-1.1-2.6-3.3-2.6-4.5s1.4-1.5,2.1-2.2l5.8-4.9c1.1-1,3-3.3,4.4-3.7s4.5,2,5.9,2.7Zm-42.7-5.5-14.3-24.8,26.8,14.2Zm1.3,4.7,10,17.3c-0.9.7-3.1-.5-4-0.8l-9.2-2.9-13.7-4.4,14.9-12.6Zm8.7,18-20.9,11.1c-3.4,1.8-6.9,4.2-10.5,5.5s-4.9-.3-7.2-0.7l-13.4-2.4L335,311.4c1.4-1.2,3.9-4.3,5.7-4.4s3.6,1.2,4.9,1.6l8,2.6Zm-33,17.5-23.3,12.3-6.2,3.3a15.7,15.7,0,0,1-3.1,1.6c-1.3.3-3.2-.2-4.6-0.3l-6.1-.5L307,335l4.4-3.7c0.6-.5,1.6-1.7,2.3-2a5.3,5.3,0,0,1,2,.3l6,1.1Zm1,0.2,26.7,4.8-23.7,7.6L322.8,350c-2.1.7-3.8,1.4-5.9,1.3l-14.9-1.1Zm27.9,5,14.8,2.7c1.6,0.3,4.7.2,6.1,1.1s2.2,3.5,2.9,4.8l-28.3,5.1c-3.6.7-7.5,1.8-11.2,2s-7.6-.6-11.2-0.8L320,351.5Zm24.2,9.1,5.8,10L349,353.7Zm21.6,8.4c1.3-2.3,2.6-5.7,4.4-7.6s0.2-.6,1.4-0.6a25.7,25.7,0,0,1,3.8.7l25.5,4.6,7.2,1.3L407.2,357Zm5.2-8.9c0.7-1.3,1.8-4.1,2.9-4.8s4.9-.9,6.6-1.2l9.9-1.8c1.3-.2,3.1-0.9,4.4-0.8a16,16,0,0,1,3.3,1l7.5,2.4,19.2,6.2,12.4,4-12.7,1c-4.5.3-9.3,1.3-13.8,1.1-2.9-.1-6-1.1-8.9-1.6l-18.5-3.3Zm25.1-8.7,11.7-2.1L459,334c1.7-.3,3.8-1,5.5-1s4.7,2.1,6.6,3.2l15.7,8.3,10.7,5.7c-6.4.5-13.4,2.2-19.6,0.3l-30.3-9.7Zm27.6-5,9.5-1.7,6.8-1.2c0.8-.1,2.5-0.8,3.3-0.6a6,6,0,0,1,1.5,1.2l4.1,3.4,10.9,9.2,7.2,6.1-6.1.5c-1.3.1-3.3,0.6-4.6,0.3a15.7,15.7,0,0,1-3.1-1.6l-6.2-3.3Zm20.3-3.6L498,327c0.8-.1,2.7-0.9,3.5-0.6s1.6,2.1,2,2.7L518,348.6c-2.3.2-6.2,1.3-8.2,0.4a13.2,13.2,0,0,1-2.6-2.2l-4.5-3.8Zm-0.6-.5-25.9-21.9,9.8-3.1,7.5-2.4c0.9-.3,3.2-1.6,4.2-1.4s3.4,4.1,4.2,5.3l9.4,12.6,6.2,8.3Zm-26.5-22.4-7.4-6.3-5.1-4.3c-0.5-.4-2.5-1.6-2.7-2.3s1.5-2.7,1.9-3.4l2.2-3.9,4.6-7.9,5.5-9.5,22.9,30.6Zm-1.3-39.5c-1,.2-3.8-4.6-4.4-5.5l-4.9-6.5h16.2Zm-0.8.4-11.3,6c-4.8,2.6-9.7,5.8-14.8,7.8-1.2.5-.6,0.5-1.6,0s-3-2.5-4.3-3.6L410.5,265l-10.3-8.7a5.3,5.3,0,0,1,2.3-1.5,15.7,15.7,0,0,1,3.1,0h36.7c1.2,0,4.6-.6,5.7.1s1.3,1.8,1.8,2.4l3.1,4.2Zm-11.2-13.6H403.4l26.7-22.6L447,253.6h-1.1Zm-43.5,0c-2,0-4.3.5-6-.5s-4.6-3.9-6.7-5.6L371.5,232c-1.1-.9-1.7-1-1.4-2s3-4.1,4.1-5.5l14.9-20,10.6-14.1L422,220.1l5.6,7.6c0.3,0.5,2.2,2.3,2.1,2.8s-3.4,2.9-4,3.3l-8.4,7.1Zm-6.3,0H352.5l16.9-22.6Zm-42.6,1.2h41.7a4.7,4.7,0,0,1,4,1.5l-23.4,19.8-5.2,4.4c-0.6.5-.9,0.9-1.5,0.9s-3.6-1.9-4.8-2.5l-8.5-4.5-13.5-7.2,5.6-7.5a34.5,34.5,0,0,1,3.1-4.2C351.9,254.6,352.1,254.8,353.5,254.8Zm-11.8,12.1c-1.5-1.3-2.7-4.5-3.7-6.2l-3.4-5.9h16.2Zm1.3,4.9,6.3,10.9,3.4,5.9c0.6,1,2.9,3.9,2.7,4.8s-3.8,3.2-4.7,4l-7.5,6.3c-0.7.6-2.2,2.4-3.2,2.6s-4.3-1.4-5.7-1.8l-16-5.1,22.9-30.6Zm-3.4,34.9-15.5,13.1-8.8,7.5c-1.9,1.6-2.2,1.3-4.9.8l-12-2.2,14.4-19.3,3.6-4.8c0.3-.4,1-1.9,1.5-2s2.3,0.7,2.8.9l7,2.2Zm-26.5,22.4L296.7,343l-4.5,3.8a13.1,13.1,0,0,1-2.6,2.2c-2,.9-5.9-0.2-8.2-0.4l14.5-19.4c0.4-.6,1.3-2.4,2-2.7s2.5,0.4,3.3.5Zm-23.5,20.7,10.2,0.8-12.3,6.5a69.8,69.8,0,0,1-6.2,3.3c-1.5.6-3,.3-4.6,0.3Zm11.4,0.9,15.9,1.2L298,357.9c-2.9.9-5.9,2.2-9,2.9s-4.9.1-7.2,0Zm17.5,1.3,25.8,2-21,3.8c-6.7,1.2-13.7,3.1-20.5,3.7-4.1.3-8.3-.2-12.4-0.3Zm28.1,2.1,23.6,1.8,15.7,1.2c1.2,0.1,6.5-.3,7,1-22.1,1.7-44.2,4.5-66.4,3.9l-20.9-.6Zm-9.1,8.8,44.9,1.2,6.4,0.2-36.8,1L293.3,367l-13.4.4,50.6-3.9Zm5.8-.4,48.2-3.7c0.9-.1,1.3-0.2,1.9.2s2.1,3.6,2.9,4.9L350,362.7Zm51.3-3.9a65.5,65.5,0,0,1,10.3,0l-2,3.5c-1,1.8-1,1.9-3.1,1.9s-2-.1-3.1-1.9Zm9.4,4.1c0.5-.9,1.4-3.5,2.3-4a5.1,5.1,0,0,1,1.7.1l10.7,0.8,30,2.3,7.5,0.6-46.3,1.3-6.7.2Zm58,0.3,50.6,3.9,7.1,0.5-36.8-1-58.7-1.6-13.4-.4,44.9-1.2Zm-55.4-4.8c0.4-1,3.2-.7,4.1-0.8l10-.8,24.2-1.8c3.2-.2,6.4-0.9,9.6-0.3l21.1,3.8,18.3,3.3c-10.7.3-21.5,1.2-32.1,0.9-13.2-.4-26.4-2-39.6-3Zm48.7-4.2,23.9-1.8a12.4,12.4,0,0,1,5.3,1l14.3,4.6,10.4,3.4c-5.8.2-11.3,0.6-17-.5l-28.7-5.1Zm27.3-2.1,10.2-.8c2.3-.2,4.7-0.8,6.7.1,6.2,2.7,12.2,6.5,18.2,9.7-2.4.1-5,.5-7.2,0s-6-1.9-9-2.9Zm17.1-1.3,7.5-.6c2.1-.2,2.5-0.4,4,0.9l11.6,9.8c-1.6,0-3.1.3-4.5-.2a60.2,60.2,0,0,1-6.3-3.3Zm11.1-.8,6.2-.5c1.8-.1,1.6,0,2.7,1.4l7.4,9.9c-1.2,0-2.6.3-3.6-.1s-2.9-2.5-4.1-3.5Zm12.9,4,3.4,5.9-7.8-10.5c0.7-.1,1.3.1,1.5-0.4Zm-12.4-21.5,9.3,16.1c-2.3.2-2.2-.4-3.5-2.2l-5.8-7.7-9.1-12.2c1.1-.2,4.7-0.4,5-1.2Zm-20.6-35.8L507,324.8c-1.2.2-3.8,1.2-5,.9a2.4,2.4,0,0,1-1.1-1.1l-6.5-8.7-12.3-16.4C483.6,299.1,490.5,297.6,490.6,296.5Zm-16.5-28.6,16.4,28.3-6.6,2.1c-1.4.4-1.6,0.8-2.5,0.2s-2.1-2.9-3-4l-4.6-6.1-10.7-14.3-3.5-4.7c-0.8-1-1.3-1.2-.4-2.4s11.1-5.6,10.8-6.2Zm-4.3-7.4-9.9,5.2,6.4-11.1ZM449.3,225l16.5,28.6h-12c-1.4,0-4.9.6-6.1,0s-1.9-2.6-2.5-3.3l-11-14.7c-0.8-1-3.2-3.3-3.4-4.6s0.9-1.3,1.7-2l12.8-10.8Zm-28.9-50.1,19.6,34,5.2,8.9c-0.7-.5-6.3,5-7.2,5.7l-7.8,6.6L410.7,204c-3.3-4.4-6.6-8.7-9.8-13.1-0.8-1.1-.7-0.6-0.4-1.6s3.3-4.5,4.6-6.2L416.4,168Zm-33-14.3,12.4-21.5,16.5,28.6c-1-.4-7.2,9.1-8.1,10.3l-8.5,11.3L391.3,178l-5.6-7.5c-0.4-.6-1.8-3-2.4-2.8Zm-28.9,50.1,19.4-33.6,5.2-9.1,9.7,12.9,5.5,7.3c0.7,0.9,1.1,1.1.9,2s-2.3,3.1-3.2,4.2l-5.6,7.4-13,17.4-8.1,10.8-7.8-6.6c-1.1-.9-5.9-6-7.1-5.7Zm-20.6,35.8,16.4-28.3,11.2,9.5c0.6,0.5,3.4,2.2,3.5,3s-2.1,2.8-2.5,3.3l-11,14.7c-1,1.3-2.1,3.7-3.4,4.6s-2.9.3-4.2,0.3H333.7Zm-4.7,8.1,6.4,11.2-9.9-5.2ZM313,289.3l8.7-15,4.6-7.9c0.7-1.2,1.8-4.4,2.9-5.1s1.4,0.3,2.4.8l5.8,3.1c1,0.5,2.3.9,3,1.8s-1.1,3.3-2.1,4.6L323,292l-3.5,4.7c-0.3.5-1.1,2-1.7,2.2s-2.6-.7-3.4-1l-5.4-1.7Zm-16.5,28.6,12.3-21.4c0.4,1.2,7,2.5,8.5,3L305.1,316l-6.5,8.7a2.4,2.4,0,0,1-1.1,1.1c-1.2.4-3.7-.7-5-0.9ZM280,346.6l12.4-21.4c0.4,0.8,3.9,1,5,1.2l-9.1,12.2-5.6,7.5c-1.4,1.8-1.3,2.5-3.6,2.3Zm-4.1,7.2,2.9-5c0.2,0.4.9,0.3,1.5,0.4l-7.7,10.4Zm5.1-4.6,7.7,0.6-8.5,7.2c-1.2,1-2.7,2.8-4.1,3.5s-2.5.2-3.6,0.1ZM267.6,368h0Zm2.4-4.2c0.5-.6,1.3-2.3,2-2.7s2.4,0.1,3.1.1l-7.1,6Zm6-2.6h3.5l-9.6,5.1Zm4.7,0.1,6,0.2-16,5.1Zm7.8,0.2,11.3,0.3-27.9,5Zm-15,5.6,25.3-4.5c6.8-1.2,13.8-.4,20.7-0.3l12.3,0.3-50.9,3.9Zm118,0.8h-113l42.3-1.2,64.5-1.8,9.4-.3a6,6,0,0,1,1.9-.1c0.8,0.4,1.6,2.4,2.1,3.2h-7.1Zm8.3-.5-1.6-2.8h3.3ZM515.4,368H400.9c1.1-2,1.1-3.3,3.4-3.2l7.3,0.2,27.6,0.8,66.3,1.8,15.5,0.4h-5.6Zm-47.7-5.2,25.6-.7c7-.2,13.9,1.8,20.7,3l11.9,2.1-50.9-3.9Zm31.9-.9c4-.1,8.8-1.1,12.6.1l15.3,4.9Zm13.1-.4c2.5-.1,5.1-0.7,7.3.5l8.7,4.6Zm7.2-.2c2-.1,3.1-0.4,4.6.8l5,4.2Zm4.4-.1c2.7-.1,2.9-0.4,4.5,1.7a47.2,47.2,0,0,1,2.6,4.3Zm7.5,6.8h0Z" }) ), React.createElement("polygon", { style: { WebkitTransform: "rotate(" + rotateFull + "deg)", transform: "rotate(" + rotateFull + "deg)" }, className: "cls-3", points: "334.9 415.1 263.4 291.3 334.9 167.4 477.9 167.4 549.4 291.3 477.9 415.1 334.9 415.1" }), React.createElement("polygon", { style: { WebkitTransform: "rotate(" + rotate + "deg)", transform: "rotate(" + rotate + "deg)" }, className: "cls-4", points: "406.4 16 644.8 428.9 168 428.9 406.4 16" }), React.createElement( "g", { style: { strokeDashoffset: "" + dash }, className: "react-letters", "data-name": "react motion letters" }, React.createElement("path", { className: "cls-5", d: "M178.4,247a2.2,2.2,0,1,1-3.5,2.6l-6.5-8.7h-8.6v7.4a2.2,2.2,0,0,1-4.4,0V220.1a2.2,2.2,0,0,1,2.2-2.2h10.8a11.5,11.5,0,0,1,4.8,22Zm-18.6-10.3h8.6a7.3,7.3,0,0,0,0-14.7h-8.6v14.7Z", transform: "translate(3.1 1.5)" }), React.createElement("path", { className: "cls-5", d: "M188.2,248.3V220.1a2.2,2.2,0,0,1,2.2-2.2h19.2a2.1,2.1,0,0,1,0,4.2h-17v11h14.1a2.1,2.1,0,0,1,0,4.2H192.7v9.1h17a2.1,2.1,0,1,1,0,4.2H190.5A2.2,2.2,0,0,1,188.2,248.3Z", transform: "translate(3.1 1.5)" }), React.createElement("path", { className: "cls-5", d: "M246.7,250.8a2.2,2.2,0,0,1-2.9-1.1l-3.5-8.1H226.5l-3.5,8.1a2.2,2.2,0,0,1-4.1-1.8l12.5-28.7a2.2,2.2,0,0,1,4,0l12.5,28.7A2.2,2.2,0,0,1,246.7,250.8Zm-8.3-13.5-5.1-11.7-5.1,11.7h10.2Z", transform: "translate(3.1 1.5)" }), React.createElement("path", { className: "cls-5", d: "M269.4,251.5a16.8,16.8,0,0,1,0-33.6,16.4,16.4,0,0,1,11.8,5.1,2.1,2.1,0,1,1-3,2.9,12.1,12.1,0,0,0-8.8-3.8,12.6,12.6,0,0,0,0,25.3,12.1,12.1,0,0,0,8.8-3.8,2.1,2.1,0,0,1,3,2.9A16.4,16.4,0,0,1,269.4,251.5Z", transform: "translate(3.1 1.5)" }), React.createElement("path", { className: "cls-5", d: "M299.7,248.3V222h-9.6a2.1,2.1,0,0,1,0-4.2h23.7a2.1,2.1,0,1,1,0,4.2h-9.6v26.3A2.2,2.2,0,0,1,299.7,248.3Z", transform: "translate(3.1 1.5)" }), React.createElement("path", { className: "cls-5", d: "M493.1,248.8V220.1a2.2,2.2,0,0,1,3.9-1.4l11.7,14.9,11.7-14.9a2.2,2.2,0,0,1,3.9,1.4v28.7a2.2,2.2,0,0,1-4.4,0V226l-9.5,12.1a2.2,2.2,0,0,1-3.5,0L497.5,226v22.7A2.2,2.2,0,0,1,493.1,248.8Z", transform: "translate(3.1 1.5)" }), React.createElement("path", { className: "cls-5", d: "M532.7,234.7a16.8,16.8,0,1,1,16.8,16.8A16.8,16.8,0,0,1,532.7,234.7Zm29.2,0a12.4,12.4,0,1,0-12.4,12.6A12.5,12.5,0,0,0,561.9,234.7Z", transform: "translate(3.1 1.5)" }), React.createElement("path", { className: "cls-5", d: "M582,248.3V222h-9.6a2.1,2.1,0,1,1,0-4.2h23.7a2.1,2.1,0,1,1,0,4.2h-9.6v26.3A2.2,2.2,0,0,1,582,248.3Z", transform: "translate(3.1 1.5)" }), React.createElement("path", { className: "cls-5", d: "M607.5,250.5a2.2,2.2,0,0,1-2.2-2.2V220.1a2.2,2.2,0,1,1,4.4,0v28.2A2.2,2.2,0,0,1,607.5,250.5Z", transform: "translate(3.1 1.5)" }), React.createElement("path", { className: "cls-5", d: "M617.8,234.7a16.8,16.8,0,1,1,16.8,16.8A16.8,16.8,0,0,1,617.8,234.7Zm29.2,0a12.4,12.4,0,1,0-12.4,12.6A12.5,12.5,0,0,0,647,234.7Z", transform: "translate(3.1 1.5)" }), React.createElement("path", { className: "cls-5", d: "M659.6,248.6V220.1a2.2,2.2,0,0,1,3.9-1.4L683.6,243V220.4a2.2,2.2,0,0,1,4.4,0v28.4a2.2,2.2,0,0,1-3.9,1.4L664,225.9v22.7A2.2,2.2,0,0,1,659.6,248.6Z", transform: "translate(3.1 1.5)" }) ), React.createElement("polygon", { style: { WebkitTransform: "scale(" + scaleUpper + ") rotate(" + rotateReverseFull + "deg)", transform: "scale(" + scaleUpper + ") rotate(" + rotateReverseFull + "deg)" }, className: "cls-6", points: "789.6 68.3 403.4 737.1 17.3 68.3 789.6 68.3" }), React.createElement("path", { style: { WebkitTransform: "scale(" + scaleLower + ") rotate(" + rotateReverseFull + "deg)", transform: "scale(" + scaleLower + ") rotate(" + rotateReverseFull + "deg)" }, className: "polygon cls-2", d: "M370.7,226.4a132.3,132.3,0,0,1,21.4-6.3c-0.4-1.2.9-.6,1.7-0.6s3.1-.4,4.6-0.6a26.2,26.2,0,0,1,4.5.2l2.6,0.2h1.3q0.5,0,.2.5c3.6,1.1,7.4,1.6,11,2.6s7.2,2.2,10.7,3.6a55,55,0,0,0-12.6-5.1c2.2-.8,7,2,9,2.9l4.2,2.1c1.7,0.9,2.2,1.3,2.2-.9,1.1-.1.5,2,0.8,2.5s4.2,2,5.3,2.5l5.4,2.9c1.5,0.9,3.9,3.1,5.6,3.4a69.1,69.1,0,0,0-8-7c0.8-.5,5.1,3.5,5.8,4.1s3.8,3.6,5.8,5.2c0-.6-0.4-1.1-0.4-1.7,2.4,2.1,4.3,4.8,6.4,7.2a62.8,62.8,0,0,1,5.7,7.2,74.2,74.2,0,0,1,8.1,17.2c4,12.3,5,26.1,2,38.8-0.7-.9.4-3.6,0.6-4.6s0.5-3.6.6-5.4a71.3,71.3,0,0,0-.1-11.9,11.4,11.4,0,0,1-2.6,4.2c-1.6,1.6-1.9,2-1.2,4.2a42,42,0,0,1,1.3,5.7c0.1,0.9,1.1,5.6.3,6.1-0.5-3.9-.2-9.4-2.5-12.8-0.7,2-.7,4.5-1.1,6.6s-1,4.9-1.7,7.3-1.4,4.5-2.2,6.7-2.6,4.6-2.2,5.9c2.4-.7,5.1-2.6,6.9-4.3a7,7,0,0,0,2-2.6c0.1-.3.7-3.3,0.7-3.3a1.8,1.8,0,0,1,0,.8c0.3-.3.2-0.8,0.6-1,0.3,1.8-.9,4.1-1.4,5.8a49.5,49.5,0,0,1-2.1,6.3c-1.7,4-4.8,7.4-6.5,11.4s-4.7,7.1-7.3,10.4-6.2,6-9.7,8.7c-1.4,1.1-2.5,2.5-4.1,3.6l-5.6,3.4a63.3,63.3,0,0,1-12.7,5.8,73.5,73.5,0,0,1-13.7,3.3c-4.4.6-9.7,1.4-14,.6a3.8,3.8,0,0,1,1.8-.3c-1-1.1-2.7-1.7-4-2.5s-2.3-2.4-3.4-1.8-1.3,2.5-1.1,3.2,1.4,0.8,2.3,1-9.9-1.3-11-1.6a91.9,91.9,0,0,1-11.8-4c-3.6-1.4-6.5-3.6-9.9-5.4a50.8,50.8,0,0,1-9.6-6.7c-5.7-4.9-11.7-11-14.8-17.9-1.4-3.3-4-6-5.5-9.3s-2.2-7.7-3.9-11.3q0.6,0.4.6-.2c1,0.4.6,1.9,1.5,2.5a56,56,0,0,0-1.6-7.3,6.6,6.6,0,0,0-.6,4.5c-1.1.2-2.5-15.7-2.5-17.3a79.9,79.9,0,0,1,1.7-18,75.9,75.9,0,0,1,6-17.4,59.6,59.6,0,0,1,4.9-8.3c1.4-1.9,3.3-5.8,5.4-7-0.2,1.1-1.5,2.1-2,3,1-.9,8.5-10.4,8.9-10.2s-1.7,2-1.5,3.1c1.5-.7,2.9-2.6,4.1-3.7s3.1-2.7,4.7-4,8.6-6.2,9.1-5.6-3,1.8-4.1,2.5l-4.5,3.1-3.9,3.2c-0.7.6-3.7,2.7-3.7,3.7,3.9-2.5,7.8-5.1,12-7.2,1.8-.9,4.6-1.6,6-2.9s0.7-.5.6-2,0-1.9.8-1.6c-0.2,2.2.1,2.8,2.1,1.8s3.7-2,5.6-2.8a55.4,55.4,0,0,1,12.9-3.9c0,0.3-18.3,5.2-17.4,6.6C377.7,223.8,370.7,226.4,370.7,226.4ZM325,279.2c-1.9,4.6-.3,9.5,4.4,11.7,0.9-1.3.1-4.7,0.1-6.2a61.7,61.7,0,0,1,.2-6.7c0.4-4.4,1.6-8.6,2.3-12.9C330.3,264.5,325.2,277.6,325,279.2Zm102.1,24.3c-7.3.8-14.7,1.2-22,1.4-1.2,0-2.8-.4-2.9,1.2s1.9,3.7,2.5,4.8c1.7,3.2,3.5,6.3,5.4,9.5,0.7,1.2,3.7,7.5,5.3,7.6s2.3-2.7,2.6-3.2,1.9-3,2.8-4.5c1.9-3.3,3.7-6.6,5.4-10,0.8-1.5,4.7-6.8,1-6.6h0Zm-52.9.2c-1.9-.2,1.5,6.4,1.9,7.1,1.6,3.2,3.3,6.2,5,9.3l2.4,4.2c0.5,0.8,1.5,3.3,2.5,3.6s4.8-6.5,5.7-8.1l5.6-9.6c1.4-2.5,3.7-5-.4-5.3-7.6-.5-15.2-0.5-22.7-1.1h0ZM410,304l10.4-.7c1.5-.1,7.8.3,8.4-1.5s-1.7-3.1-2.2-3.9l-3-4.6-6.4-9.8c-0.5-.8-1.7-3.6-2.7-3.8s-1.8,2.5-2.1,3.2q-2.2,4.8-4.6,9.5c-1.6,3.2-3.5,6.2-5,9.4s-0.7,2.2,1.4,2.2H410Zm-19.1.1c1.8,0,8.1,1.1,8.5-.8s-1.9-3.8-2.3-4.7l-2.5-5-4.9-9.9c-0.3-.6-1.3-3.8-2.2-3.8s-2.3,3.2-2.7,3.9L379,293l-2.9,4.6c-0.7,1.2-2.2,2.7-2.4,4s4.3,1.7,5.9,1.9l11.3,0.7h0Zm10.5-25.2-10.1-.2c-1.2,0-2.4-.3-2.7,1s1.6,3.6,2,4.6c1.6,3.5,3.3,6.9,5,10.3,0.8,1.5,1.5,2.9,2.4,4.4s1.6,3.6,2.6,3.8,4.2-6.1,4.8-7.2c1.7-3.2,3.3-6.5,4.8-9.8,0.7-1.6,4.1-6.2,1.6-7.1s-3.5.1-4.8,0.1l-5.7.2C398.6,278.9,404.3,278.8,401.4,278.9Zm-1.1,50.6,10.6-.3c0.8,0,2.6.2,2.9-.8s-1.7-3.4-2.2-4.3l-5.2-9-2.8-4.7c-0.5-.9-1.5-3.7-2.6-4s-4.4,6.2-5.1,7.4l-5.4,9.3c-0.7,1.3-2.4,3.2-2.7,4.6s0.5,1.4,2,1.5l10.4,0.3C404.3,329.4,396.6,329.4,400.4,329.5Zm36.9-53.8-20,2.5c-1.5.2-1.8,0.2-1.4,1.6s1.7,3.1,2.6,4.4l5.9,9.1c0.9,1.4,3.9,7.5,5.6,7.3s3.4-5.1,3.9-6.5c1.2-3.3,2.2-6.7,3.1-10.1,0.4-1.5,3.2-8.2.4-8.2h0Zm-19.5,53.1c0,0.4,18.8-2.1,20.4-2.4s3.2-.3,3.3-1.8-1.4-3.2-1.9-4.1c-1.5-3.2-3.2-6.3-5-9.4-0.7-1.2-3.3-7.1-4.8-6.5s-1.7,3.2-2.1,4l-2.1,4.1q-2.4,4.5-5.1,9l-2.7,4.4c-0.6,1-2.2,2.7,0,2.7h0Zm-45.4-27.2c2.1-2.2,3.5-5,5-7.5l5.9-9.4c1.3-2.1,5.1-5.9.9-6.4l-10-.9-5-.6c-1.1-.1-3.4-1-4.4-0.6s0.1,5,.5,6.4c1.8,6,3.1,14,7.1,19C372.6,301.3,372.1,301.3,372.4,301.6ZM383.7,329a1.8,1.8,0,0,0,1.4-.7c0.2-.8-1.6-3.1-2-3.7-1.8-3-3.7-6-5.3-9.1s-2.9-5.9-4.4-8.9-1-2.1-2.2-.8-1.9,3.2-2.7,4.6c-1.7,3-3.2,6-4.8,9.1s-4.2,6-1.7,7.1,3.6,0.5,5,.7l5.1,0.7,11.4,1h0Zm69.5-29.7c-6.6.8-13.3,2.2-19.7,3.4-3.6.7-.8,3.6,0.4,5.7s3.4,5.8,4.9,8.7,2.8,7.8,4.6,7.1,1.7-2.7,2.1-3.5,1.4-2.8,2.1-4.2c1.5-3.2,2.9-6.5,4.2-9.8,0.5-1.2,3.4-7.5,1.4-7.5h0Zm-90.4-22.2c-2.9,2.7-4.9,6.5-7.2,9.7l-3.9,5.8c-0.8,1.3-2.5,3.2-2.8,4.8s1.2,1.6,2.7,1.9l5.9,1.2c4.3,0.8,8.8,1.9,13.2,1.9-0.7-4.2-2.2-8.5-3.5-12.5s-2.3-8.7-4.3-12.7C362.5,277.4,363.1,277.8,362.7,277.2Zm-13.8,22.3c-1.3,1.4,1.8,6.4,2.3,7.9a86.6,86.6,0,0,0,3.6,9c0.6,1.3,1.2,2.6,1.9,3.8s1.4,3.1,2.3,4.2,1.4,0.7,2-.7l2.4-4.9c1.6-3.1,3.3-6.2,5-9.3,0.7-1.2,2.3-3.1,2.5-4.4s-0.5-1.1-1.7-1.5c-6.6-1.8-13.6-2.6-20.3-4h0Zm83.5,2.7c3.4-.5,6.8-1,10.2-1.6l5.2-1.1c1.2-.3,3.8-0.4,4.7-1.2,2.8-2.3-5.6-12.3-7.2-14.5s-4.6-7.2-5.8-7-2.1,7.5-2.4,8.6c-1,3.3-2.1,6.6-3.4,9.8-0.5,1.2-4,7.1-1.5,7h0Zm-32.3-23.9c3.5-.1,7,0,10.5-0.3,0.9-.1,1.9,0,2-0.9s-2-3.5-2.3-4.1l-4.9-8.6c-0.7-1.2-3.8-8.4-5-8.2s-1.6,2.9-1.9,3.5l-2.2,4.4c-1.5,2.8-3.2,5.5-4.8,8.3s-3.9,4.9-1.5,5.7,3.2,0.1,4.6.1h5.6C403.4,278.2,396.8,278.2,400.1,278.2Zm21.2-23.3a137.4,137.4,0,0,1-4.8,18.1c-0.3.8-1.7,3-1.4,3.9s1.7,0.7,2.7.6l10.1-1,4.7-.6c1.2-.2,3.3-0.1,4.4-0.7s0.7-1-.2-2.1l-2.9-3.8q-3.1-4-6.4-7.9c-1.9-2.2-3.8-4.8-6.2-6.4C421.3,255.3,421.7,255.1,421.4,254.9Zm-7.9,75c-6.5,0-13.1.4-19.6,0.2-1.4,0-3.6-.5-4.9-0.1s-1.1.5-.5,1.8,3.5,5.1,5.1,7.6,3.3,4.7,5,7,1.3,2.3,2.5,1.8,2.3-2.8,2.9-3.7l5.9-8c0.9-1.3,4.7-5.2,3.5-6.7S414,330.6,413.4,329.9Zm-29-52.1a3.7,3.7,0,0,0,2-.5c0.5-.8-0.8-3.1-1.1-3.9-1.2-3.1-2.2-6.2-3.1-9.3q-0.6-2.3-1.2-4.7c-0.1-.7-0.2-3.4-0.8-3.9s-4.4,4.5-5.1,5.5l-6.1,7.8c-0.8,1-5.2,5.3-4.3,6.6s4.2,0.7,5,.9l4.9,0.6,9.9,1h0Zm-36.2,19.3c3.3-5.4,6.8-10.7,10.5-15.9,0.7-1,3.7-4.2,2.7-5.5s-3-.7-3.7-0.9l-4.9-1.1-4.2-1.2c-0.8-.3-2.8-1.3-3.6-1.1s-0.5,6.9-.5,8.1c0.1,3.4.4,6.7,0.8,10.1,0.2,1.7.6,7.2,2.9,7.6C348.4,296.8,347.7,297,348.2,297.1ZM425.8,347c2.3-1.2,3.9-4.3,5.6-6.2s3.8-4.5,5.6-6.9,4.8-5.5,4.3-6.7-7.6.7-8.8,0.8l-9.3,1.1c-1.8.2-7-.3-6.4,2.1s3.1,5.4,4.4,7.6,3,5.6,4.8,8.1C425.9,346.9,425.7,346.8,425.8,347Zm-5.3-91.4c0.1-2.5-3.2-1.4-4.7-1.3-3.4.3-6.7,0.5-10.1,0.6-0.8,0-3.4-.4-4,0.2s0.3,2.1.6,2.7a92.1,92.1,0,0,0,4.7,8.5c1.6,2.7,3.3,5.5,5,8.2,0.4,0.7,1,2.1,1.9,2.1s1.4-2.6,1.7-3.3a103.3,103.3,0,0,0,4.9-17.6C420.6,254.4,420.4,256.3,420.6,255.5Zm-30.5-1c0,0.2-7.3-.6-8-0.4s-0.7,4.1-.3,5.9,1.5,5.8,2.5,8.6,1.6,6.9,3.3,7.7,7.9-12.2,9-14.2,3.9-5.9,2.5-7.1-2.9-.3-3.8-0.3l-5.2-.3h0Zm-13.6,92.7c1.4-2.6,2.6-5.3,4-7.9l2.6-4.6c0.6-1,1.7-2.4,1.9-3.5s-4-1.8-5.6-1.9l-9.3-.9c-1.2-.1-8-1.9-8.7-1s3.1,5.6,3.7,6.4q2.8,4,5.8,7.8c1.4,1.8,3.4,5,5.7,5.7C376.6,347.2,375.8,347.1,376.5,347.3Zm-17.9-22.1c-0.2-2.4-2.2-4.9-3.5-6.9s-2.4-5.5-3.5-8.3-1.3-3.2-1.9-4.8-0.9-4-2-4.4-3.2,4.9-3.7,5.9a87,87,0,0,0-3.4,9.2c-0.8,2.7-1.9,4.5.9,5.7a57.8,57.8,0,0,0,9.2,2.7c1,0.3,8,2.3,7.9.9S358.6,325.8,358.6,325.2Zm95.9-28.7c2.4-5.1,2.7-11.6,2.9-17.1,0.1-1.8.9-6.9-.3-8.4s-6.4,1.6-8,2l-4.5,1.2c-0.8.2-3.5,0.4-3.9,1.1s3.1,5.4,3.8,6.4c1.9,2.5,3.8,5,5.5,7.7s2.7,5.1,4.6,7.2C454.8,296.1,454.3,296.2,454.6,296.5Zm-53,52.6c2.2,0.7,5,.1,7.3,0l8.7-.5c1.3-.1,6,0.2,6.7-1.1s-2.5-5.9-3.2-7.1a84,84,0,0,0-4.6-8.1c-0.6-.8-0.8-1.4-1.9-1s-2.1,2.8-2.8,3.8c-3.3,4.7-7,9.2-10.2,14C401.9,349.2,401.9,348.6,401.6,349.1Zm60.3-30.3c-1.1-5.8-2.8-12.1-5.6-17.3-1.7-3.1-2-.3-2.7,1.8a91.2,91.2,0,0,1-3.4,9c-1.3,2.8-2.8,5.5-4.2,8.3-0.5.9-2.1,3.1-2,4s0.8,0.8,1.9.5a95.4,95.4,0,0,0,9.5-2.5c1.8-.6,6.4-1.2,6.5-3.7C461.7,318.1,461.8,319.7,461.8,318.8Zm-99.6-66.7c-1.3-.2-5.1,4.4-6.1,5.3s-4,3.9-5.9,6-4.8,4.5-4.9,6.4,0.3,1.1,1.5,1.5l4.4,1.4c2.7,0.7,5.4,1.4,8.2,1.9s2,0.8,2.4-.7-0.1-3.2-.2-4.5c-0.3-5.8.9-11.6,0.4-17.3C361.8,252,362.3,252.8,362.3,252.1Zm36.5,97.3c-1.5-4.7-5.6-9.2-8.3-13.2-0.8-1.2-2.8-5.4-4.4-4.8s-1.4,2.1-1.7,2.7l-2.2,3.9c-1.4,2.5-2.8,4.9-4,7.5-0.3.7-1.1,1.9-.7,2.5s3,0.5,3.7.5a134.2,134.2,0,0,0,17.6.7C398.6,349,398.4,349.4,398.7,349.3Zm40.5-76a55.5,55.5,0,0,0-.2-20.2c-0.4-1.6-.2-1.7-1.7-2s-3.6.6-5,.9c-3.3.6-7,.9-10.1,2.1,2.2,3.7,5.7,6.9,8.5,10.1,1,1.2,7.3,9.9,8.5,9.1S438.8,273.6,439.2,273.3Zm-95.9-1.2c-0.9-.2-4.1,4.9-4.6,5.7-1.7,2.3-3.3,4.6-4.8,7s-3.7,5.3-2.9,7.1,5.8,3.1,7.4,3.7l3.8,1.4c0.7,0.2,2.9,1.3,3.8.9s-0.6-5.9-.9-7.1a87.3,87.3,0,0,1-1.4-9.2c-0.3-2.9.4-6.7-.5-9.4C343.2,272.1,343.3,272.2,343.3,272.1Zm18.8-8.8c0.2,2.7.3,5.5,0.7,8.3s1.8,1.8,3.4-.3c3.7-4.7,7.3-9.4,10.8-14.3,0.4-.6,1.7-1.8,1.7-2.6s-1.6-.8-2.6-1c-2.9-.4-5.9-0.9-8.8-1.5s-4.2-1-4.7,2.4a58.1,58.1,0,0,0-.6,9.1C362.3,265.9,362,261.7,362.1,263.3Zm-31.2,29.4c-0.6,4.6,1.4,9.9,2.7,14.3s2.4,9.4,5.4,12.6c0.9-3.1,1.7-6.1,2.8-9.1s3-6.3,4.3-9.5-3.1-3.2-5.3-3.9a76.3,76.3,0,0,1-9.9-4.3C330.8,293.1,332.2,293.4,330.9,292.8Zm108.5-41.3c-0.5.4,0.9,6.6,1,7.7a59.4,59.4,0,0,1,.1,8.7c-0.1,1.5-1.5,6,.3,6.4s2.4-.5,3.2-0.7l4.3-1.1c1.4-.4,7.3-1.5,7.9-2.8s-3.6-4.9-4.4-5.8c-3.8-4.2-7.7-9.2-12.4-12.4h0ZM458,271.3c-0.3,5.6.1,11.1-.8,16.7-0.2,1.6-.5,3.2-0.8,4.8s-1.1,3-.8,3.7,5.5-1,6.7-1.5,5.8-1.9,6.9-3.8-1.3-4.9-2.1-6.5-2.5-4.6-4-6.9-3-5.5-5-6.5C458,271.6,458.6,271.6,458,271.3ZM446,340.9c-0.2-1.6-1.7-13.5-3.8-13.3s-3.9,5.3-4.7,6.2l-5.3,6.4-2.8,3.4c-0.7.8-2.4,2.2-2.5,3.3s0.1,0.7,1.3.6l4.1-.6q4.4-.7,8.8-1.7c3.2-.7,4.5-0.9,5-4.2C446,340.1,446,341.5,446,340.9Zm16.4-22.3c1.9-1,2.8-5.6,3.4-7.5s1.8-5.9,2.4-8.9a44.1,44.1,0,0,0,1.4-8.4c0.1-3.1-2.3-.5-4.1.4a60.9,60.9,0,0,1-7.7,3.1c-1.2.4-2,.4-2.1,1.7s0.9,2.5,1.3,3.4a82.2,82.2,0,0,1,5.4,16.2C463,318.4,462.3,318.2,462.4,318.7ZM340,322c0.3,2.2,2,4.3,3.2,6.2s2.6,4,4,6,2.8,3.9,4.4,5.8,2.5,3.7,3.7,3.6a45.4,45.4,0,0,1,1.6-9.2c0.5-1.7,3.2-6.3,1.4-7.6s-3.1-.7-4.3-1l-5-1.2c-3-.8-5.9-1.9-8.9-2.6C340.1,322.3,340.4,322,340,322Zm35,25.7c-1.2-2.1-3.2-3.9-4.7-5.8s-3.7-4.7-5.4-7.2l-2.4-3.5c-0.4-.6-1.2-2.3-1.9-2.6s-1,.1-1.4,1.2a38.6,38.6,0,0,0-1.6,4.7c-0.6,2.3-1,4.8-1.5,7.1s0.4,3.3,3.2,4,5.9,1.2,8.8,1.7c1.1,0.2,6,1.6,6.8.5S374.7,348,375,347.6Zm86.3-26.5c-0.6-.2-3.1,1.1-3.7,1.3l-4.5,1.4-4.6,1.2c-1,.2-3.8.4-4.6,1.1s1,5.3,1.4,6.8a72.2,72.2,0,0,1,1.3,10c3.5-2.8,6.2-7,8.7-10.7q1.9-2.9,3.7-5.9c0.9-1.6,2.3-3.3,2.4-5.2C461.2,321.1,461.3,321.3,461.3,321.1Zm-117-53.4c0,3,3.3-2,4-2.8s3.8-4.1,5.8-6,4.3-4.1,6.4-6.3,0.8-2.2-1.6-2.9-4.3-2.1-6.6-2.9-3,1.8-3.8,3.6a53.6,53.6,0,0,0-4.3,17.3C344.3,268.1,344.4,265.3,344.3,267.8Zm62.4-31.9c-0.7,3-1.1,6.1-2.1,9s-2.4,6.2-2.7,9.4c5.8,0,12.1,0,17.8-1.2-1.3-3.2-4.4-6-6.5-8.7L410,240c-0.8-1.1-2-3.5-3.3-4.1S407.2,236.1,406.7,235.9Zm-13.1,0c-2.2,2.8-4.1,5.8-6.1,8.7s-4.3,5.7-6.1,8.7c2.8,0.8,6,.7,8.9.8l4.4,0.2c0.8,0,3.5.5,4.2-.1s-2.3-7.4-2.7-8.6c-1.1-3.2-1.5-6.6-2.6-9.7C393.4,236.2,393.7,236.2,393.6,235.9ZM333,264.4c-2.3,3.1-2.3,8.6-2.7,12.3-0.2,2.2-.4,4.4-0.4,6.5s-0.5,5.5.6,7c0.8-.5,1.2-2.4,1.7-3.2s1.6-3,2.5-4.4,3.7-5.4,5.7-8.1c0.7-.9,2.1-2.2,2.3-3.3s-0.8-1.4-1.9-1.9a32.1,32.1,0,0,1-7.8-5.1C332.8,264.6,333.7,265,333,264.4Zm124,3.8c0-5-2.1-10.7-4-15.3-0.7-1.7-1.8-5.4-3.3-6.4s-4.9,1.8-6.4,2.4-3.1.7-3.4,1.2,0.5,1.2,1,1.7,3.9,3.8,5.8,5.8l5.5,6c0.7,0.8,3.7,5.1,4.8,4.7S456.5,268.3,457,268.1Zm-33.3,80.6c-5.3.4-10.6,0.9-15.9,1.1-1,0-5.5-.5-6.1.5s3,4.9,3.5,5.7,2.8,5.5,4.1,5.9,3.8-2.6,4.4-3.2,10.7-8.5,9.9-10C423.4,348.7,423.8,348.9,423.7,348.7Zm-4.3-114.2c-0.4.7,1.5,5.1,1.7,6.1s0.6,4.6.8,6.9,0,3.1.4,4.3,0.1,1.2,1.7.9l7.4-1.3,3.6-.8c1.1-.3,2.1-0.2,1.8-1.4s-4.1-3.8-5.5-4.9c-3.9-3.3-7.8-7.1-12.1-9.8C419.4,234.6,419.7,234.7,419.4,234.5Zm-38,.3c-0.5-.5-10.1,8.5-11.2,9.5s-4.4,3.1-5.5,5-0.7.7,0.1,1.4,2.7,0.6,3.5.8l7.6,1.3c1.1,0.2,2.5.6,3.1-.1s0.2-2.8.2-3.5a72,72,0,0,1,2.1-14.5S381.4,235,381.5,234.8Zm18,115.8c-0.7-1.3-3.7-.7-5.1-0.7l-5.7-.2-11-.8c0,2,3.6,4.7,4.9,5.9s4.4,4,6.7,5.8c0.7,0.6,1.3,1.4,2.1,1s1.9-2.7,2.4-3.4l5.6-7.7C399.2,350.2,399.1,351.1,399.5,350.6ZM349.5,247.3c-0.9-.6-10.1,8.8-11.1,9.9s-4.5,3.8-4.8,5.8,2.2,3,3.6,3.9,4.9,3.4,6,2.7,1.1-5.9,1.4-7.3a62.9,62.9,0,0,1,5-14.9h0Zm50.3-12c-1.1,0-4.5-.7-5.3.1s0.3,3.6.5,4.5a63.7,63.7,0,0,0,2.3,7.1c0.5,1.2,1.6,5.9,3,6.2s4.4-10.7,4.8-12.1,1.5-4.7.6-5.5-4.7-.2-6-0.2h0Zm66.7,28.6c-2.1,1.5-3.6,3.3-5.9,4.6-0.8.4-2,.7-2.1,1.7s1.7,2.8,2.3,3.5a85.5,85.5,0,0,1,4.9,7.5c1.5,2.6,2.4,6,4.2,8.4,1.3-3.8.3-9.2-.2-13.1-0.3-2.3-.7-4.7-1.2-7s-0.6-4.7-1.9-5.5h0Zm-59.2-28.8c1.8,4,5.4,7.6,8.1,11.1,1.1,1.4,3,4.9,4.7,5.5s1.1-2.1,1.2-3.4c0.1-3.9,0-10.1-2.3-13.5-1.2-1.8-3.8-.6-5.7-0.3s-4,.3-6,0.7C407.4,235.5,407.6,235,407.3,235.1Zm-14.2.2c-1.7-.9-4.3-0.7-6.3-0.9s-4.1-1-5,1.1c-1.6,3.9-1.8,8.8-1.7,13,0,0.7-.1,4,1,3.7s3.4-4.4,4.1-5.4c2.6-3.5,6.2-7.4,7.8-11.5C392.9,235.2,393,235.6,393.1,235.3Zm-55.2,84.8c0.1-1.9-1.7-4.3-2.4-6s-1.8-4.7-2.5-7.1c-1.4-4.5-2-9-3.1-13.5-1.6,1.7-2,5.4-2.4,7.6a22.1,22.1,0,0,0-.3,8.3c0.5,2.6.6,5,2.9,6.6s5,3.7,7.8,4.1C337.9,319.5,337.6,320,337.9,320.1Zm112.8-73.5c-0.4.4,2.6,5.6,2.9,6.5a54.6,54.6,0,0,1,2.5,7.7c0.6,2.2.6,4.8,1.4,6.9s3.1,0.2,4.6-.8,4.2-2.5,4-4.3-3.1-4.1-4.1-5.4a72.2,72.2,0,0,0-11.3-10.6h0Zm-79-14.3c-0.5-.4-5.7,3.2-6.4,3.7l-7.1,4.7c-1.6,1.1-4.8,2.6-5.8,4.3s-0.7.4-.1,1.2,2.9,1.4,3.7,1.7,5.5,2.7,6.8,1.8,1.6-4.4,2.1-5.7c1.7-4.4,4.3-7.9,7-11.7h0Zm4,117c-0.6-1.2-2.5-1-3.6-1.2l-5.4-.8c-3.3-.5-6.6-1.5-9.9-2,2.1,3.2,5.4,5.6,8.2,8.1a46.4,46.4,0,0,0,4.8,3.8c1.2,0.8,2.7,2.3,4.1,2.6a28.5,28.5,0,0,1,1.7-10.7C375.3,348.8,375.2,350.7,375.6,349.4Zm51.6,10.3c0.8,0.7,8.7-5.9,9.7-6.8s2.9-2.5,4.2-3.8,3.2-2.6,3.6-4.2c-5.5,1.4-11,2.4-16.5,3.3-3.1.5-1.8,1.8-1.2,4.4a15.7,15.7,0,0,1,.2,7.2S427.3,359.2,427.2,359.7Zm-73-15.6c-0.9-1.8-2.7-3.3-3.9-4.9s-2.8-3.6-4.1-5.5c-2.5-3.6-4.4-7.5-6.9-11.1-1,2.2-.6,5.6-0.4,8s0.5,5.4,1.9,7.5,4.1,2.9,6.3,3.8,4.9,2.2,7.3,2.3C354.1,343.8,354,344,354.2,344Zm54.4,18c-1.3-2.2-2.8-4.3-4.3-6.3s-2.6-5.1-4.1-4.8-3.2,3.9-4,5a68.9,68.9,0,0,0-4.4,6.3c0.6,0.6,2.4.3,3.2,0.3h5c1.5,0,7.8.7,8.7-.6S408.4,362.5,408.7,362.1ZM381.3,233.7l-3.5-.8c-1.1-.3-2.7-1.1-3.9-1.1s-3.5,2.7-4.5,4.2c-2.5,3.7-5.2,8.6-5.6,13.2,1.1,0.6,7.7-6.4,8.8-7.4l4.9-4.3c1.1-.9,3.5-2.4,3.9-3.8S381.1,234.2,381.3,233.7Zm47.5-1.8c-0.2.2,3.3,4.1,3.7,4.6a54,54,0,0,1,3.9,6.5l1.5,2.8c0.3,0.6,1.3,3.2,1.9,3.4s4.9-1.8,5.9-2.3,3.6-1.2,1.7-2.9a54.8,54.8,0,0,0-5.8-4.3c-4-2.7-8.3-5.9-12.8-7.9h0Zm9,16.7c0.4-1.5-1.5-4.6-2.2-6a41.8,41.8,0,0,0-4-6.6c-1-1.3-2.9-4.5-4.7-4.7s-2.7.9-3.7,1.2l-3.8,1c5.9,5.2,11.9,10.7,18.3,15.2C437.8,248.5,437.4,248.4,437.7,248.6ZM410.3,362.2c3.9,0.4,8.6-.7,12.5-1.3,1.8-.3,3.6-0.2,4.1-2.2s0-4-.4-5.6-0.5-3.9-1.9-3.7-3.9,3.6-4.8,4.5c-3,3-6.4,5.5-9.5,8.3C410.6,362.3,410.5,362,410.3,362.2Zm-20.3.1c0.4-.7-7.6-7.1-8.4-8s-2.9-4-4.4-4.5-1.8,2.1-2.1,3.4-1.2,4.4-.7,6.1,1.6,1.6,3.4,1.8a91,91,0,0,0,12.3,1.2h0Zm57.3-19c1.7,0.4,5-1.6,6.5-2.3s4.6-2,5.9-4.3a21.1,21.1,0,0,0,2.1-6.9c0.2-1.3,1.4-7,.2-8s-2.1,3.5-2.7,4.6-2.6,4.3-4,6.3c-2.5,3.7-5.4,6.9-8.1,10.5C447.5,343.4,447.5,343,447.3,343.3ZM333.5,261.9c1.3-.4,3.3-3.8,4.3-4.9s4.1-4.2,6.3-6.1,5.3-3.5,5.5-5-1.2-1.5-1.8-2.1a6.6,6.6,0,0,1-1.9-3.2c-3.1,2.7-5.3,6.5-7.4,10-1,1.7-2,3.4-2.9,5.2s-2.4,4.2-2.2,6C333.6,261.9,333.5,261.4,333.5,261.9Zm-4.8,53.9c-0.3,1.4,1.3,4.5,1.8,5.9a46.4,46.4,0,0,0,3.2,6.9c0.8,1.5,1.8,2.7,2.7,4.1s2.1,3.6,3.2,4.4a33.5,33.5,0,0,1-1.5-7.2c-0.2-2.4.3-4.7,0.2-7.1s-1.9-2.4-3.7-3.3-3.8-2.8-5.8-3.7h0Zm23.1-71.4c0.7,0.3,3.3-2.2,3.9-2.6l5.6-3.8,5.3-3.3c1.7-1,4.1-2,5.4-3.5-1.6-.7-3.7-2.8-5.2-2.5s-4.5,3.2-6,4.6a41.4,41.4,0,0,0-4.9,5.1c-0.8,1-1.4,2.2-2.2,3.3s-1.8,1.9-2,2.8S351.9,244.3,351.9,244.4Zm113.9,16.9c0.7-.3-4.5-10-5-10.9-2-3.2-4.5-7.7-7.6-10-0.2,2-3,3.9-2.7,5.3s4,3.5,5.1,4.5a96.6,96.6,0,0,1,10.3,11.1h0Zm1.9,3.5c-0.3.2,1.2,5.1,1.4,5.8q0.7,3.4,1.1,6.8a68.2,68.2,0,0,1,.4,6.9c0,1.4-.7,4.9.1,6,1.5-.5,3.2-3,3.8-4.4s0.3-4.4-.2-6.4a42.8,42.8,0,0,0-6.6-14.6h0ZM365.4,229.1c-0.3-.5-10.4,5.2-11.5,5.9a52.2,52.2,0,0,0-5.8,3.9c-1.5,1.2-1.9,1.6-.7,3.4a8.8,8.8,0,0,0,1.6,1.8c1.1,1,1.5,1.2,2.5,0s2.6-3.9,4.1-5.7a55.8,55.8,0,0,1,9.8-9.3h0Zm62.6,1.7c1.1,1.2,3.3,2,4.7,2.9L438,237l5.2,3.4c1.2,0.8,3.2,2.7,4.5,2.9a40.6,40.6,0,0,0-9.1-10.2c-1.7-1.4-3.8-3.7-5.9-4.5s-3.2,1.1-4.8,2.2C428.1,230.9,428.7,230.3,428,230.8ZM355.9,346.1c0,3.6,1.7,8.3,4.6,10.5s4.1,1.8,6.1,2.4,4.3,1.5,6.3,1.4c-0.9-1.4-2.8-2.2-4.1-3.1s-3.2-2.4-4.7-3.7l-4.4-4c-0.7-.7-2.7-3.5-3.8-3.4S356.3,346,355.9,346.1Zm-14-6.1c-0.5.3,6.9,7.5,7.5,8a108.7,108.7,0,0,0,10,8.1c-0.2-.9-1.4-1.9-1.9-2.8a16,16,0,0,1-1.2-2.6c-0.6-1.7-.4-4.7-1.8-5.8s-4.1-1.4-5.8-2a71.7,71.7,0,0,1-6.8-3h0Zm129.8-25.6a32.1,32.1,0,0,1-4.8,3.8c-1.8,1.1-3.8,1.4-4.2,3.6s0,4.7-.3,7.1a54.3,54.3,0,0,1-1.6,6.4c1.2-1.1,1.5-2.9,2.5-4.1a33.8,33.8,0,0,0,3.3-4.6,66.8,66.8,0,0,0,5.1-12.1C471.3,314.7,471.6,314.8,471.8,314.3Zm-38-85.7c-0.1.2,8.8,7.4,9.6,8.3s2.6,3.4,3.9,5,2.4,3.4,4.2.8,1.5-2.6.1-4-3.4-2.3-5-3.4a74.2,74.2,0,0,0-12.8-6.8h0Zm-28,5.7c-0.8-2.1-2.3-3.9-3.3-5.9s-1.7-4-2.6-6a41.9,41.9,0,0,1-2.3,6.4c-0.5,1-3.1,4.5-2.7,5.3s9.4,0.4,11,.2C405.6,234,405.3,234.4,405.7,234.4Zm-1.6-11.7c-0.1.4,1.8,3.6,2,4.2s0.5,4.1.8,6.2,2.2,1.2,4.1,1a55.9,55.9,0,0,0,6.6-.9c-1.8-2.1-4.5-3.7-6.7-5.3s-4.5-4.1-6.8-5.1h0Zm-8.5-.1-6.5,5.5c-1,.9-5.9,3.9-5.8,5.3,1.8,0.4,9.6,2.1,10.3.3s-0.1-3.7.1-5.2a18,18,0,0,1,1.9-5.9C395.4,222.7,394.7,224.1,395.6,222.6Zm-68.9,81.3c0.4-1.7.6-3.5,1-5.3s1.9-4.3,1.7-6-1.7-2.4-2.8-3.3a11,11,0,0,1-2.9-4.1,35.4,35.4,0,0,0,0,9.2c0.2,1.6.9,9.2,2.9,9.4C326.7,303.8,326.2,303.8,326.6,303.9Zm119,41.4c-3.1,2-5.7,5.4-8.5,7.8a109.7,109.7,0,0,1-9.3,6.9c1.8,0.2,4.3-.9,6.1-1.5a14.2,14.2,0,0,0,11.7-13.2C445.4,345.5,445.6,345.6,445.7,345.3ZM391.3,222.3c-0.4-.5-8.4,3.8-9.2,4.2a60.4,60.4,0,0,0-8.2,4.4,31.9,31.9,0,0,0,5.5,1.6c2.2,0.5,2.8.5,4-1.4a26.9,26.9,0,0,1,3.3-4.8c1.3-1.4,3.7-2.6,4.7-4.1h0Zm66.5,117.4c0.1,0.1-10,3.9-10.7,4.5s-1.4,3.7-2,5.2a18.6,18.6,0,0,1-3,4.8c1.3-.1,3.4-2.5,4.5-3.4s2.6-1.9,3.8-3a76.2,76.2,0,0,0,7.6-8.2h0Zm-31.5-109c-2.6-2-6-3.2-9-4.6a93.6,93.6,0,0,0-9.3-4c0.3,1.1,3.9,2.6,4.9,3.5a20.5,20.5,0,0,1,3.7,4.3c1.2,1.8,1.4,3.2,3.6,2.8a24.5,24.5,0,0,0,6.1-1.9C425.6,230.1,426,230.8,426.3,230.7ZM392.2,363c-0.3.7,6,4.9,7.2,5s7.1-3.2,8.9-4.9c-0.7-.5-2.6-0.1-3.4-0.1H392.2ZM368.4,227.9c1.1,1,2.9,2.8,4.6,2.6s3.1-2.4,4.3-3.3c3.2-2.5,6.8-3.9,10.4-5.7-0.9-.4-3.2.8-4.2,1.1l-5.4,1.6c-3,.9-7,1.7-9.6,3.7C369.4,228.8,369,227.4,368.4,227.9Zm42.2,139c5.6,0.1,9.9-3.7,14.9-5.7-0.4-.5-3.7.4-4.4,0.5l-5.6.7c-0.9.1-4.5-.1-5.1,0.6s0.6,2.9.3,4C412.3,366.9,410.8,366.2,410.5,366.9ZM344,242.2c-0.9-.8-8.4,9.3-9,10.1-2.1,2.8-5.2,6.9-2.4,10.4,1.7-3.5,2.9-7.1,4.8-10.5a70.5,70.5,0,0,1,6.6-9.9h0Zm31.6,119.2c0.8,1.1,2.7,1.5,3.8,2l5,2.3a51.4,51.4,0,0,0,5,2c-0.6-1.6.4-3,1-4.4-2.4-.8-5.2-0.7-7.7-1l-7.2-.8C375.9,361.7,376.4,361.4,375.6,361.3Zm36.1-140c0.2-.4,8.9,4.3,9.8,4.8s3.1,2.6,4.8,3.6,3.6-.5,4.8-2c-2.8-1.9-6.5-2.8-9.7-3.7s-6.3-1.9-9.6-2.6h0Zm-11.7.3c0.1,3.6,3.7,9.7,6.3,12.1a16,16,0,0,0-1-8,12.1,12.1,0,0,0-1.5-2.9c-1.1-1.5-2-1.3-3.7-1.2C400,222.4,400.7,221.5,400,221.6Zm-0.5,0c-1-.1-2.1-0.4-2.9.3s-1.5,2.6-1.9,3.6-1.8,6.5-.4,8.2a29.3,29.3,0,0,0,5.2-12.1C398.8,221.6,399.4,222,399.5,221.6Zm18,10.6c0.7-.7-4.7-6.3-5.4-6.9s-6.1-5.1-9-4a140.4,140.4,0,0,0,14.4,10.8h0Zm37.4,9.4c-0.2.2,6.1,8.6,6.7,9.6,2,3.5,3.4,7.2,5.2,10.8,2.6-.2-2.9-10.2-3.3-10.9a35.6,35.6,0,0,0-8.6-9.6h0Zm-58.5-20.2c-3.2-.6-5.3,1.7-7.7,3.6a17.8,17.8,0,0,0-5.6,7.4c0.8,0.5,11.8-9.8,13.3-11C395.7,221.3,391.9,225.2,396.3,221.4Zm-21.9,8.6c0.6,0.5,8.1-4,9.1-4.5l10.2-4.6c-2.3-1.6-7.7,1.6-9.9,2.6a39.5,39.5,0,0,0-9.4,6.5h0Zm50.9-.3c0.7-.9-16.4-10.9-19.7-8.8a176.4,176.4,0,0,1,19.7,8.8h0ZM410.2,366.9c0.2-.9,0-3.2-1-3.4s-2.2,1.2-2.8,1.6a38.6,38.6,0,0,1-5.3,3.1c1.8,0.1,3.6-.2,5.4-0.2-1.1-.7,1.9-0.1,2.3-0.2a14,14,0,0,0,1.3-.8C410.4,365.8,410,366.9,410.2,366.9ZM377.3,365c-1.9-1.7-3.3-3.9-5.8-4.4s-5.6-1.5-8.5-2.2c0.6,1,2.6,1.7,3.6,2.2a36.7,36.7,0,0,0,4.2,2,69.5,69.5,0,0,0,6.5,2.5C376.7,364.4,377.1,364.9,377.3,365ZM468,259.5a10.1,10.1,0,0,0-.6,3.7c0.2,1.3,1.4,2.7,2,3.8a51.9,51.9,0,0,1,3.9,8.2,64.1,64.1,0,0,0-5.3-15.7C467.8,260.5,470.5,264.6,468,259.5ZM423.5,364.2a40.1,40.1,0,0,0,13.3-6.2c-0.9-.3-2.8.8-3.7,1.1l-4.4,1.1c-2.4.6-3.3,2.5-5.3,4C425.4,363.8,423.6,364.2,423.5,364.2Zm-98.7-86a31.6,31.6,0,0,0,1.4-3.9c0.6-1.5,1.7-3,2.1-4.5a32.3,32.3,0,0,0,.5-4.2c0.2-1.3.8-2.6,0.9-4a54.7,54.7,0,0,0-5.1,16.5S325.6,272.5,324.8,278.3Zm60.2,88.2c-1.7-.8-3.5-1.4-5.2-2.3s-3.7-2.6-4.7-2.4,2.4,2.9,3.2,3.3a14.1,14.1,0,0,0,6.7,1.4h0Zm-55.9-98a17.8,17.8,0,0,0,2.6-4.1c0.4-1.4-.3-3.2-0.9-4.6-0.9,2.8-1.1,5.8-1.7,8.7C329.2,268.4,329.7,265.6,329.2,268.5Zm96.6,92.9a74.1,74.1,0,0,1-9.9,4.8c1.3,0.2,3.4-.6,4.7-0.9a8.5,8.5,0,0,0,5.3-3.8C422.5,363.1,425.2,362.4,425.8,361.4Zm-98-44.7a33.2,33.2,0,0,0,5.7,12.5C331.5,325.1,329.4,321,327.8,316.7ZM342,340.9c-0.3.2,9.1,11.6,10.9,10.8A92,92,0,0,1,342,340.9h0Zm-16.6-34.2c1.4-1.8-.7-5.6-1.2-7.5a20.9,20.9,0,0,0,1.2,7.5C326.1,305.9,324.9,305.3,325.4,306.7ZM457,341.2a102,102,0,0,1-7.9,8.1c0.9,0.9,7.4-7.3,7.9-8.1C456.2,342.1,455,344.4,457,341.2ZM399.8,219.3c0.1,0.7-.1,1.4.5,1.8a2.5,2.5,0,0,0,1.6-.2l-2.1-1.6C399.8,219.9,400.5,219.8,399.8,219.3Zm-0.4,1.8q0-.9,0-1.7a5.1,5.1,0,0,0-1.8,1.7h1.8C399.4,220.7,398.8,221,399.4,221Zm1.4-1.6c-0.5,1.1,2.7,1.3,3.2,1.2s-2.8-1.1-3.2-1.2h0Zm-71.5,99.9c0.1-1-.8-4.2-1.7-4.7a42.4,42.4,0,0,0,1.7,4.7C329.3,319.2,328.6,317.8,329.3,319.4Zm66.1-98.8a2.4,2.4,0,0,0,3.1-1.2Zm-1.7-.5c1,0.8,2.5-.1,3.6-0.5s-3.2.5-3.6,0.5S394.9,219.9,393.7,220.1Zm66.9,116.8c0.7,0.4,2.1-2.7,2.2-3.1l-2.2,3.1h0Zm-118.1,5.7c0.2-.2-3.2-4.4-3.7-4.8a58.2,58.2,0,0,0,3.7,4.8h0ZM324,301.2c0,0.7.8,6.8,1.2,6.7l-1.2-6.7C324.1,303.5,324.4,303.5,324,301.2Zm15.5,36.6a22.2,22.2,0,0,0-2.7-3.6A11.8,11.8,0,0,0,339.5,337.8Zm66.1-117.6c0-.3-2.6-0.5-3-0.6s2.1,1.2,3,.6h0Zm-68,116a25.1,25.1,0,0,0-1.8-2.8A4.6,4.6,0,0,0,337.6,336.1Zm131.5-13.9c0.4,0.2,1.5-3.2,1.5-3.7l-1.5,3.7S469.6,321,469.1,322.2Zm-27,32.8a3.2,3.2,0,0,0,1.8-1.3Zm-88.6-2.9c-0.2.2,0.7,0.7,0.9,0.9s-0.8-.8-0.9-0.9h0Zm-12.7-12.2a1.4,1.4,0,0,0-.7-0.9Zm69.5,27.5,1.1-.3A1.1,1.1,0,0,0,410.3,367.4Z" }) ) ); } ) ); }
});
React.render(React.createElement(App, null), document.getElementById('app'));
Trying out React Motion - Script Codes
Trying out React Motion - Script Codes
Home Page Home
Developer Sarah Drasner
Username sdras
Uploaded January 22, 2023
Rating 4.5
Size 31,323 Kb
Views 2,024
Do you need developer help for Trying out React Motion?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Sarah Drasner (sdras) Script Codes
Create amazing sales emails with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!