Commit 10e5c4f0 authored by Dovah 周子正's avatar Dovah 周子正

第一次提交

parents
# dev
dist/
selenium-debug.log
test/unit/coverage
test/e2e/reports
node_modules/
# IDEA
.idea
*.iml
*.log
*.lock
# Mac
.DS_Store
# Log
npm-debug.*
# Node
node_modules
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
## Available Scripts
In the project directory, you can run:
### `yarn start`
Runs the app in the development mode.<br />
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
The page will reload if you make edits.<br />
You will also see any lint errors in the console.
### `yarn test`
Launches the test runner in the interactive watch mode.<br />
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
### `yarn build`
Builds the app for production to the `build` folder.<br />
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.<br />
Your app is ready to be deployed!
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
### `yarn eject`
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
## Learn More
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
To learn React, check out the [React documentation](https://reactjs.org/).
### Code Splitting
This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
### Analyzing the Bundle Size
This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
### Making a Progressive Web App
This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
### Advanced Configuration
This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
### Deployment
This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
### `yarn build` fails to minify
This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify
This source diff could not be displayed because it is too large. You can view the blob instead.
{
"name": "reacthook",
"version": "0.1.0",
"private": true,
"dependencies": {
"mockjs": "^1.1.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-scripts": "3.2.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"axios": "^0.19.0"
}
}
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
/>
<link rel="apple-touch-icon" href="logo192.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}
# https://www.robotstxt.org/robotstxt.html
User-agent: *
.App {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 400px;
}
.counter {
display: flex;
flex-direction: column;
align-items: center;
border: 1px solid #282c34;
border-radius: 4px;
padding: 10px;
}
.user {
display: flex;
flex-direction: column;
align-items: center;
border: 1px solid #282c34;
border-radius: 4px;
padding: 10px;
}
.children {
/* width:100px; */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 10px;
height: 50px;
background: white;
border: 1px solid #282c34;
border-radius: 4px;
margin-top: 30px;
}
.fruit {
width: 300px;
display: flex;
flex-direction: column;
align-items: center;
border: 1px solid #282c34;
border-radius: 4px;
padding: 10px;
}
.App-header {
background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}
.App-link {
color: #09d3ac;
}
.button {
width: 100px;
height: 30px;
}
\ No newline at end of file
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
import Hook from './hook';
it('renders without crashing', () => {
const div = document.createElement('div');
ReactDOM.render(<Hook />, div);
ReactDOM.unmountComponentAtNode(div);
});
/* eslint-disable react-hooks/exhaustive-deps */
import React, {
useState,
useEffect,
} from 'react';
import '../App.css';
import axios from 'axios';
function FruitList (props) {
const { fruitListData } = props;
return (
<table border="1" width="200px">
<thead>
<tr>
<th>名字</th>
<th>数量</th>
<th>价格</th>
</tr>
</thead>
<tfoot></tfoot>
<tbody>
{
fruitListData.map((item, index) => {
return (
<tr key={index}>
<td key={item.name}>{item.name}</td>
<td key={item.num}>{item.num}</td>
<td key={item.pice}>{item.pice}</td>
</tr>
)
})
}
</tbody>
</table>
)
}
// 自定义请求 Hook
const useFetchData = (dependencies) => {
let options = {
url: 'https://www.fastmock.site/mock/56123bfe451fc35ede8511d9cad416ad/reacthook/getlist',
method: 'get'
}
const [isLoading, setIsLoading] = useState(false);
const [response, setResponse] = useState(null);
const [param, setParams] = useState(dependencies);
useEffect(() => {
const fetchData = async (value) => {
console.log(value)
setIsLoading(true)
try {
const res = await axios({
method:options.method,
url:options.url+`/${value}`
})
setIsLoading(false)
setResponse(res.data)
} catch (err) {
setIsLoading(false)
console.log(err)
}
}
fetchData(param)
}, [param])
return [isLoading, response, setParams];
}
function AsyncHook () {
let options = {
url: 'https://www.fastmock.site/mock/56123bfe451fc35ede8511d9cad416ad/reacthook/getlist',
method: 'get'
}
// const [fruitListData, setfruitListData]
const [searchValue, setSearchValue] = useState('')
const [queryValue, setQueryValue] = useState('')
const [asyncStr, setAsyncStr] = useState('')
const [isLoading, response, setParams] = useFetchData(queryValue)
// 更新输入框值
const _inputChange = (e) => {
setSearchValue(e.target.value)
}
useEffect(()=>{
setParams(queryValue);
setAsyncStr(options.url+`/${queryValue}`)
},[queryValue])
//实时查询
useEffect(()=>{
setParams(searchValue);
setAsyncStr(options.url+`/${searchValue}`)
},[searchValue])
// 搜索按钮点击的时候
// 点击查询
const _searchClick = () => {
setQueryValue(searchValue)
}
return (
<div className="App">
<h3>异步请求</h3>
<div>
<span>您输入并查询了 {searchValue}</span>
<br />
<input style={{ width: "150px" }} onChange={(e) => _inputChange(e)} placeholder="请输入价格" />
<button onClick={_searchClick}>search</button>
</div>
{/* loding */}
<div>
{
isLoading ? "loading" : null
}
</div>
<div style={{ marginTop: "10px" }} className="fruit">
<h3>水果信息列表</h3>
{/* 自定义Hook */}
<FruitList fruitListData={response && response.data || []} />
{/* <FruitList fruitListData={fruitListData.data ? fruitListData.data : []} /> */}
</div>
<p>请求:{asyncStr}</p>
</div>
)
}
export default AsyncHook;
\ No newline at end of file
import React, { useState, useEffect } from 'react';
import '../App.css';
function Children (props) {
return (
<div>
来自父组件传递的值为:{props.num}
</div>
);
}
function BaseHook () {
const [num, myNumset] = useState(0);
// 定义一个state
const [userInfo, setdatas] = useState({
name: '',
like: '',
friend: '',
});
const colorList = [
'#FFF',
'#FF7F24',
'#48D1CC',
'#87CEFF',
'#FFC1C1'
]
const [color] = useState(colorList);
// 添加
const _add = () => {
if(num >= colorList.length-1) return;
myNumset(num+1);
};
// 删除
const _del = () => {
if(num <= 0) return;
myNumset(num-1);
};
const updateData = () => {
setdatas({...userInfo,name: '',friend: ''});
};
useEffect(() => {
document.body.style.background = color[num];
}, [color,num])
return (
<div className="App">
<h3>BaseHook</h3>
<div className="content">
<div className="counter">
<h3>Counter</h3>
<div>
<span>数字</span>
<span>{num}</span>
</div>
<div style={{ marginTop: "10px" }}>
<button className="button" onClick={_add}>add</button>
<button className="button" onClick={_del}>del</button>
</div>
<div className="children">
<Children num={num} />
</div>
</div>
<div className="user" style={{ marginTop: '10px' }}>
<h3>UpdateAll</h3>
<div>
<span>名字:</span>
<span>{userInfo.name}</span>
</div>
<div>
<span>爱好:</span>
<span>{userInfo.like}</span>
</div>
<div style={{ marginBottom: "10px" }}>
<span>搭档:</span>
<span>{userInfo.friend}</span>
</div>
<button className="button" onClick={updateData}>updateData</button>
</div>
</div>
<p id="alert"></p>
</div>
);
}
export default BaseHook;
import React, { Component } from 'react';
import '../App.css';
class Children extends Component {
render () {
const { num } = this.props;
return (
<div>
来自父组件传递的值为:{num}
</div>
)
}
}
// 1.基本的 更新State的方法
// 2.基本的 生命周期
// 3.基本的 父子组件传参
class BaseReact extends Component {
constructor (props) {
super(props);
this.state = {
num: 0,
user: {
name: "谢霆锋",
like: "Cook",
friend: '张柏芝',
num: 18
},
color: ["green", "yellow", "red", "black"],
}
}
// 不利用 Hook 进行 State操作
_add = () => {
let { num } = this.state;
this.setState({
num: num + 1,
})
}
_del = () => {
let { num } = this.state;
this.setState({
num: num - 1,
})
}
_updateData = () => {
this.setState({
user: {
name: "陈冠希",
like: "Camera",
friend: "谢霆锋",
}
})
}
componentDidMount () {
document.getElementById("alert").innerHTML = "触发了componentDidMount生命周期"
}
componentDidUpdate () {
const { color, num } = this.state;
document.body.style.background = color[num] // 改变颜色
document.getElementById("alert").innerHTML = "触发了componentDidUpdate生命周期"
}
componentWillMount () {
document.body.style.background = "white"
}
render () {
const { num, user } = this.state;
return (
<div className="App">
<h3>BaseReact</h3>
<div className="content">
<div className="counter">
<h3>Counter</h3>
<div>
<span>数字</span>
<span>{num}</span>
</div>
<div style={{ marginTop: "10px" }}>
<button className="button" onClick={this._add}>add</button>
<button className="button" onClick={this._del}>del</button>
</div>
<div className="children">
<Children num={num} />
</div>
</div>
<div className="user" style={{ marginTop: '10px' }}>
<h3>UpdateAll</h3>
<div>
<span>名字:</span>
<span>{user.name}</span>
</div>
<div>
<span>爱好:</span>
<span>{user.like}</span>
</div>
<div style={{ marginBottom: "10px" }}>
<span>搭档:</span>
<span>{user.friend}</span>
</div>
<button className="button" onClick={this._updateData}>updateData</button>
</div>
</div>
<p id="alert"></p>
</div>
)
}
}
export default BaseReact;
/* useContext */
import React, { useReducer, useContext, useEffect } from 'react';
import ReactDOM from 'react-dom';
const initialState = 0;
const myContext = React.createContext();
function reducer (state, action) {
switch (action.type) {
case "reset":
return { count: initialState };
case "increment":
return { count: state.count + 1 };
case "decrement":
return { count: state.count - 1 };
default:
return state;
}
}
const ContextProvider = props => {
const [state, dispatch] = useReducer(reducer, { count: 0 });
return (
<myContext.Provider value={{ state, dispatch }}>
{props.children}
</myContext.Provider>
);
};
const Counter = () => {
const { state, dispatch } = useContext(myContext);
const [str, setstr];
useEffect(() => {
console.log("调用了 useContext 的组件总会在 context 值变化时重新渲染")
})
const reset = () => {
}
const add = () => {
}
const del = () => [
]
return (
<div>
Counter Count:
<button onClick={reset}>Reset</button>
<button onClick={add}>+</button>
<button onClick={del}>-</button>
</div>
);
}
const CounterView = () => {
useEffect(() => {
console.log("调用了 useContext 的组件总会在 context 值变化时重新渲染---CounterView")
})
return (
<div>
Counter Count -only view:
</div>
);
}
ReactDOM.render(
<div className="App">
<ContextProvider>
<Counter />
</ContextProvider>
</div>,
document.getElementById('root'));
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
import './index.css';
import './App.css';
/* 基本 */
import React from 'react';
import ReactDOM from 'react-dom';
// import BaseReact from './BaseReact';
import BaseHook from './BaseHook';
import AsyncHook from './AsyncHook';
ReactDOM.render(<BaseHook />, document.getElementById('root'));
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 170.96 159.93"><defs><style>.cls-1{fill:#09d3ac;}</style></defs><path class="cls-1" d="M141.35,73.27c0-6.89-8.11-13-20.58-16.73,3-12.67,1.69-22.75-4.28-26.16a9.55,9.55,0,0,0-4.79-1.2c-5.57,0-12.61,3.89-19.72,10.62-7.11-6.68-14.13-10.55-19.69-10.55a9.46,9.46,0,0,0-4.86,1.22c-5.94,3.42-7.17,13.44-4.21,26.05-12.41,3.71-20.48,9.77-20.5,16.63s8.12,13,20.59,16.72c-3,12.68-1.7,22.75,4.28,26.16a9.41,9.41,0,0,0,4.78,1.2c5.58,0,12.62-3.89,19.73-10.62,7.1,6.68,14.12,10.55,19.69,10.55a9.59,9.59,0,0,0,4.86-1.22c5.94-3.42,7.16-13.44,4.21-26C133.27,86.18,141.34,80.12,141.35,73.27ZM96.56,42.06c8.19-7.33,13.31-8.12,15.13-8.12h0a4.71,4.71,0,0,1,2.42.58c2.86,1.63,4,7.38,3.09,15a56.73,56.73,0,0,1-1,5.79,97.7,97.7,0,0,0-12.58-2.07,98.47,98.47,0,0,0-8.24-10.08C95.75,42.79,96.15,42.42,96.56,42.06ZM71.77,78.94c.78,1.5,1.61,3,2.47,4.51S76,86.49,77,88c-2.71-.39-5.34-.88-7.84-1.46C69.86,84,70.75,81.5,71.77,78.94ZM69,59.9c2.53-.59,5.18-1.08,7.93-1.46-1,1.48-1.86,3-2.76,4.59s-1.69,3-2.46,4.52Q70.18,63.65,69,59.9Zm5.21,13.34q1.86-3.93,4.09-7.86c1.5-2.62,3.11-5.17,4.77-7.61,2.91-.22,5.91-.34,9-.33s6,.12,8.89.35c1.66,2.42,3.25,5,4.75,7.55s2.88,5.22,4.12,7.83c-1.23,2.62-2.6,5.25-4.08,7.85s-3.11,5.18-4.77,7.62c-2.91.23-5.91.34-9,.34s-6-.13-8.89-.36c-1.66-2.42-3.26-4.94-4.76-7.55S75.5,75.85,74.25,73.24Zm32.86-14.77c2.72.38,5.35.87,7.84,1.45-.74,2.47-1.62,5-2.64,7.55-.79-1.5-1.61-3-2.48-4.51S108,59.93,107.11,58.47Zm2.76,24.92q1.29-2.27,2.46-4.53c1,2.6,2,5.16,2.7,7.66-2.52.59-5.17,1.07-7.92,1.45Q108.52,85.75,109.87,83.39ZM92,46.56c1.8,1.92,3.57,4,5.3,6.23-1.71-.07-3.46-.12-5.23-.12s-3.58,0-5.33.12C88.45,50.57,90.2,48.48,92,46.56Zm-22.18-12A4.82,4.82,0,0,1,72.29,34a13.11,13.11,0,0,1,5.19,1.31,39.07,39.07,0,0,1,10,6.78l1.17,1.07a98.49,98.49,0,0,0-8.16,10,98.88,98.88,0,0,0-12.65,2.06c-.44-1.94-.8-3.84-1-5.67C65.8,42,67,36.24,69.81,34.6ZM64.53,85.26a58.75,58.75,0,0,1-5.54-2c-7.1-3-11.5-6.85-11.5-10.14S51.91,66,59,63.05a57.63,57.63,0,0,1,5.44-1.94A97.93,97.93,0,0,0,69,73.25,98.72,98.72,0,0,0,64.53,85.26Zm23,19.1c-8.19,7.33-13.31,8.11-15.14,8.11a4.69,4.69,0,0,1-2.42-.58c-2.86-1.63-4-7.38-3.09-15a56.07,56.07,0,0,1,1-5.78,99.51,99.51,0,0,0,12.58,2.06,97.17,97.17,0,0,0,8.24,10.08Zm4.57-4.51c-1.8-1.92-3.57-4-5.31-6.23,1.72.08,3.47.12,5.24.12s3.58,0,5.33-.11C95.63,95.85,93.87,97.93,92.09,99.85Zm22.18,12a4.82,4.82,0,0,1-2.48.59c-1.82,0-7-.8-15.16-8.1l-1.17-1.07a98.44,98.44,0,0,0,8.15-10,97,97,0,0,0,12.66-2.06c.44,1.94.79,3.84,1,5.67C118.27,104.42,117.12,110.18,114.27,111.81Zm10.8-28.44c-1.71.7-3.52,1.35-5.44,1.93a98.54,98.54,0,0,0-4.57-12.14,98.1,98.1,0,0,0,4.49-12,58.75,58.75,0,0,1,5.54,2c7.09,3,11.5,6.85,11.49,10.14S132.17,80.42,125.07,83.37ZM92,82.39a9.18,9.18,0,1,0-9.17-9.19A9.17,9.17,0,0,0,92,82.39ZM31,17.88V128.53H153.07V17.88ZM148.3,123.77H35.78V22.65H148.3Zm-85-33.9c-3,12.68-1.7,22.75,4.28,26.16a9.41,9.41,0,0,0,4.78,1.2c5.58,0,12.62-3.89,19.73-10.62,7.1,6.68,14.12,10.55,19.69,10.55a9.59,9.59,0,0,0,4.86-1.22c5.94-3.42,7.16-13.44,4.21-26,12.41-3.72,20.48-9.78,20.49-16.63s-8.11-13-20.58-16.73c3-12.67,1.69-22.75-4.28-26.16a9.55,9.55,0,0,0-4.79-1.2c-5.57,0-12.61,3.89-19.72,10.62-7.11-6.68-14.13-10.55-19.69-10.55a9.46,9.46,0,0,0-4.86,1.22c-5.94,3.42-7.17,13.44-4.21,26.05-12.41,3.71-20.48,9.77-20.5,16.63S50.84,86.13,63.31,89.87Zm24.21,14.49c-8.19,7.33-13.31,8.11-15.14,8.11a4.69,4.69,0,0,1-2.42-.58c-2.86-1.63-4-7.38-3.09-15a56.07,56.07,0,0,1,1-5.78,99.51,99.51,0,0,0,12.58,2.06,97.17,97.17,0,0,0,8.24,10.08Zm24.79-36.89c-.79-1.5-1.61-3-2.48-4.51s-1.8-3-2.72-4.49c2.72.38,5.35.87,7.84,1.45C114.21,62.39,113.33,64.92,112.31,67.47Zm2.72,19c-2.52.59-5.17,1.07-7.92,1.45q1.41-2.22,2.76-4.58t2.46-4.53C113.37,81.46,114.28,84,115,86.52Zm-5.21-13.35c-1.23,2.62-2.6,5.25-4.08,7.85s-3.11,5.18-4.77,7.62c-2.91.23-5.91.34-9,.34s-6-.13-8.89-.36c-1.66-2.42-3.26-4.94-4.76-7.55s-2.87-5.22-4.12-7.83q1.86-3.93,4.09-7.86c1.5-2.62,3.11-5.17,4.77-7.61,2.91-.22,5.91-.34,9-.33s6,.12,8.89.35c1.66,2.42,3.25,5,4.75,7.55S108.58,70.56,109.82,73.17ZM77,88c-2.71-.39-5.34-.88-7.84-1.46.74-2.46,1.63-5,2.65-7.55.78,1.5,1.61,3,2.47,4.51S76,86.49,77,88ZM74.21,63c-.87,1.5-1.69,3-2.46,4.52Q70.18,63.65,69,59.9c2.53-.59,5.18-1.08,7.93-1.46C76,59.92,75.11,61.45,74.21,63ZM92.09,99.85c-1.8-1.92-3.57-4-5.31-6.23,1.72.08,3.47.12,5.24.12s3.58,0,5.33-.11C95.63,95.85,93.87,97.93,92.09,99.85Zm22.18,12a4.82,4.82,0,0,1-2.48.59c-1.82,0-7-.8-15.16-8.1l-1.17-1.07a98.44,98.44,0,0,0,8.15-10,97,97,0,0,0,12.66-2.06c.44,1.94.79,3.84,1,5.67C118.27,104.42,117.12,110.18,114.27,111.81Zm5.28-50.66a58.75,58.75,0,0,1,5.54,2c7.09,3,11.5,6.85,11.49,10.14s-4.41,7.16-11.51,10.11c-1.71.7-3.52,1.35-5.44,1.93a98.54,98.54,0,0,0-4.57-12.14A98.1,98.1,0,0,0,119.55,61.15Zm-23-19.09c8.19-7.33,13.31-8.12,15.13-8.12h0a4.71,4.71,0,0,1,2.42.58c2.86,1.63,4,7.38,3.09,15a56.73,56.73,0,0,1-1,5.79,97.7,97.7,0,0,0-12.58-2.07,98.47,98.47,0,0,0-8.24-10.08C95.75,42.79,96.15,42.42,96.56,42.06ZM92,46.56c1.8,1.92,3.57,4,5.3,6.23-1.71-.07-3.46-.12-5.23-.12s-3.58,0-5.33.12C88.45,50.57,90.2,48.48,92,46.56Zm-22.18-12A4.82,4.82,0,0,1,72.29,34a13.11,13.11,0,0,1,5.19,1.31,39.07,39.07,0,0,1,10,6.78l1.17,1.07a98.49,98.49,0,0,0-8.16,10,98.88,98.88,0,0,0-12.65,2.06c-.44-1.94-.8-3.84-1-5.67C65.8,42,67,36.24,69.81,34.6ZM59,63.05a57.63,57.63,0,0,1,5.44-1.94A97.93,97.93,0,0,0,69,73.25a98.72,98.72,0,0,0-4.49,12,58.75,58.75,0,0,1-5.54-2c-7.1-3-11.5-6.85-11.5-10.14S51.91,66,59,63.05Zm33,1a9.18,9.18,0,1,0,9.17,9.19A9.17,9.17,0,0,0,92,64Zm0,0a9.18,9.18,0,1,0,9.17,9.19A9.17,9.17,0,0,0,92,64Zm0,0a9.18,9.18,0,1,0,9.17,9.19A9.17,9.17,0,0,0,92,64Zm49.35,9.24c0-6.89-8.11-13-20.58-16.73,3-12.67,1.69-22.75-4.28-26.16a9.55,9.55,0,0,0-4.79-1.2c-5.57,0-12.61,3.89-19.72,10.62-7.11-6.68-14.13-10.55-19.69-10.55a9.46,9.46,0,0,0-4.86,1.22c-5.94,3.42-7.17,13.44-4.21,26.05-12.41,3.71-20.48,9.77-20.5,16.63s8.12,13,20.59,16.72c-3,12.68-1.7,22.75,4.28,26.16a9.41,9.41,0,0,0,4.78,1.2c5.58,0,12.62-3.89,19.73-10.62,7.1,6.68,14.12,10.55,19.69,10.55a9.59,9.59,0,0,0,4.86-1.22c5.94-3.42,7.16-13.44,4.21-26C133.27,86.18,141.34,80.12,141.35,73.27ZM96.56,42.06c8.19-7.33,13.31-8.12,15.13-8.12h0a4.71,4.71,0,0,1,2.42.58c2.86,1.63,4,7.38,3.09,15a56.73,56.73,0,0,1-1,5.79,97.7,97.7,0,0,0-12.58-2.07,98.47,98.47,0,0,0-8.24-10.08C95.75,42.79,96.15,42.42,96.56,42.06ZM71.77,78.94c.78,1.5,1.61,3,2.47,4.51S76,86.49,77,88c-2.71-.39-5.34-.88-7.84-1.46C69.86,84,70.75,81.5,71.77,78.94ZM69,59.9c2.53-.59,5.18-1.08,7.93-1.46-1,1.48-1.86,3-2.76,4.59s-1.69,3-2.46,4.52Q70.18,63.65,69,59.9Zm5.21,13.34q1.86-3.93,4.09-7.86c1.5-2.62,3.11-5.17,4.77-7.61,2.91-.22,5.91-.34,9-.33s6,.12,8.89.35c1.66,2.42,3.25,5,4.75,7.55s2.88,5.22,4.12,7.83c-1.23,2.62-2.6,5.25-4.08,7.85s-3.11,5.18-4.77,7.62c-2.91.23-5.91.34-9,.34s-6-.13-8.89-.36c-1.66-2.42-3.26-4.94-4.76-7.55S75.5,75.85,74.25,73.24Zm32.86-14.77c2.72.38,5.35.87,7.84,1.45-.74,2.47-1.62,5-2.64,7.55-.79-1.5-1.61-3-2.48-4.51S108,59.93,107.11,58.47Zm2.76,24.92q1.29-2.27,2.46-4.53c1,2.6,2,5.16,2.7,7.66-2.52.59-5.17,1.07-7.92,1.45Q108.52,85.75,109.87,83.39ZM92,46.56c1.8,1.92,3.57,4,5.3,6.23-1.71-.07-3.46-.12-5.23-.12s-3.58,0-5.33.12C88.45,50.57,90.2,48.48,92,46.56Zm-22.18-12A4.82,4.82,0,0,1,72.29,34a13.11,13.11,0,0,1,5.19,1.31,39.07,39.07,0,0,1,10,6.78l1.17,1.07a98.49,98.49,0,0,0-8.16,10,98.88,98.88,0,0,0-12.65,2.06c-.44-1.94-.8-3.84-1-5.67C65.8,42,67,36.24,69.81,34.6ZM64.53,85.26a58.75,58.75,0,0,1-5.54-2c-7.1-3-11.5-6.85-11.5-10.14S51.91,66,59,63.05a57.63,57.63,0,0,1,5.44-1.94A97.93,97.93,0,0,0,69,73.25,98.72,98.72,0,0,0,64.53,85.26Zm23,19.1c-8.19,7.33-13.31,8.11-15.14,8.11a4.69,4.69,0,0,1-2.42-.58c-2.86-1.63-4-7.38-3.09-15a56.07,56.07,0,0,1,1-5.78,99.51,99.51,0,0,0,12.58,2.06,97.17,97.17,0,0,0,8.24,10.08Zm4.57-4.51c-1.8-1.92-3.57-4-5.31-6.23,1.72.08,3.47.12,5.24.12s3.58,0,5.33-.11C95.63,95.85,93.87,97.93,92.09,99.85Zm22.18,12a4.82,4.82,0,0,1-2.48.59c-1.82,0-7-.8-15.16-8.1l-1.17-1.07a98.44,98.44,0,0,0,8.15-10,97,97,0,0,0,12.66-2.06c.44,1.94.79,3.84,1,5.67C118.27,104.42,117.12,110.18,114.27,111.81Zm10.8-28.44c-1.71.7-3.52,1.35-5.44,1.93a98.54,98.54,0,0,0-4.57-12.14,98.1,98.1,0,0,0,4.49-12,58.75,58.75,0,0,1,5.54,2c7.09,3,11.5,6.85,11.49,10.14S132.17,80.42,125.07,83.37ZM92,82.39a9.18,9.18,0,1,0-9.17-9.19A9.17,9.17,0,0,0,92,82.39Zm-69.32,54.5V26.2L17.89,31V141.66H139.94l4.78-4.77Z"/></svg>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment