browse sessions page ui improvements

This commit is contained in:
Nuwan 2023-11-24 20:03:11 +05:30
parent 5598b2ef17
commit 2edfccda87
37 changed files with 97 additions and 27 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 301 B

View File

@ -1,3 +1,8 @@
.table-responsive {
display: table;
}
.even-row {
border: 1px solid $gray-400;
background-color: red;
}

View File

@ -15,6 +15,8 @@ import JKUserLatencyBadge from '../profile/JKUserLatencyBadge';
import JKSessionUser from './JKSessionUser';
import useNativeAppCheck from '../../hooks/useNativeAppCheck';
import { useNativeApp } from '../../context/NativeAppContext';
import EnterIcon from '../../assets/img/session/session_entrance.png';
function JKSession({ session }) {
const { currentUser } = useAuth();
@ -35,7 +37,7 @@ function JKSession({ session }) {
toast.info(t('list.alerts.join_request_sent', { ns: 'sessions' }));
} else {
try {
await isNativeAppAvailable()
await isNativeAppAvailable();
const q = `joinSessionId~${session.id}`;
const urlScheme = jkCustomUrlScheme('findSession', q);
window.open(urlScheme, '_blank');
@ -54,7 +56,7 @@ function JKSession({ session }) {
} else if (session.musician_access && session.approval_required) {
return t('list.descriptions.private_session', { ns: 'sessions' });
} else if (!session.musician_access && !session.approval_required) {
return t("list.descriptions.rsvp_session", { ns: "sessions" });
return t('list.descriptions.rsvp_session', { ns: 'sessions' });
}
};
@ -66,16 +68,16 @@ function JKSession({ session }) {
const hasFriendNote = session => {
if (session.participants.find(p => p.user.is_friend)) {
return t('list.notes.has_friend', { ns: 'sessions' })
return t('list.notes.has_friend', { ns: 'sessions' });
}
};
const actionButtons = () => {
return (
<div>
<Button onClick={joinSession} color="primary" data-testid="joinBtn" className="btn-join mr-1 mb-1">
<FontAwesomeIcon icon="arrow-right" transform="shrink-4 down-1" className="mr-1" />
</Button>
<a onClick={joinSession} data-testid="joinBtn" className="btn btn-outline-light btn-join mr-1 mb-1" style={{ cursor: 'pointer', padding: 2 }}>
<img src={EnterIcon} alt="enter" className="mr-1" height={28} width={38} />
</a>
{/* <Button
color="primary"
onClick={() =>
@ -89,6 +91,12 @@ clicks this button, we open an audio stream using Icecast server to let the user
);
};
const musicianRowStyle = {
height: "40px",
flexWrap: "wrap",
overflow: "hidden"
}
return (
<>
{greaterThan.sm ? (
@ -110,23 +118,33 @@ clicks this button, we open an audio stream using Icecast server to let the user
</td>
<td>
{session.participants.map(participant => (
<JKSessionUser key={participant.id} user={participant.user} />
<Row style={musicianRowStyle} key={participant.id}>
<Col>
<JKSessionUser user={participant.user} />
</Col>
</Row>
))}
</td>
<td>
<div>
{session.participants.map(participant => (
<JKUserLatencyBadge key={participant.id} user={participant.user} />
))}
</div>
{session.participants.map(participant => (
<Row key={participant.id} style={musicianRowStyle}>
<Col>
<JKUserLatencyBadge key={participant.id} user={participant.user} />
</Col>
</Row>
))}
</td>
<td>
{session.participants.map(participant => (
<div className="d-flex flex-row" key={participant.id} data-testid={`Participant${participant.id}Tracks`}>
{participant.tracks.map(track => (
<div key={track.id}>{track.instrument}</div>
))}
</div>
<Row style={musicianRowStyle} key={participant.id} data-testid={`Participant${participant.id}Tracks`}>
<Col>
{participant.tracks.map(track => (
<span key={track.id}>
<img width="25" src={require(`../../icons/instruments/icon_instrument_${track.instrument_id.replace(/\s+/g,"_")}.svg`)} alt={track.instrment} />
</span>
))}
</Col>
</Row>
))}
</td>
<td>{actionButtons()}</td>
@ -149,10 +167,10 @@ clicks this button, we open an audio stream using Icecast server to let the user
<div>{sessionDescription(session)}</div>
<div className="d-flex flex-row justify-content-between mt-3">
<div className="ml-2 ms-2">
<h5>{t('list.header.musicians', { ns: 'sessions'})}</h5>
<h5>{t('list.header.musicians', { ns: 'sessions' })}</h5>
</div>
<div className="ml-2 ms-2">
<strong>{t('list.header.latency', { ns: 'sessions'})}</strong>
<strong>{t('list.header.latency', { ns: 'sessions' })}</strong>
</div>
</div>
<div>

View File

@ -24,33 +24,44 @@ function JKSessionUser({ user }) {
setShowSidePanel(prev => !prev);
};
const truncate = (str, length = 15) => {
return str.length > length ? str.substring(0, length - 3) + '...' : str;
};
return (
<>
{!greaterThan.sm ? (
<div className="d-flex flex-row justify-content-between">
<div className="avatar avatar-sm">
<JKProfileAvatar url={user.photo_url} />
<a href="/#" onClick={toggleMoreDetails}>
<JKProfileAvatar url={user.photo_url} />
</a>
</div>
<div className="ml-2 ms-2" style={{ width: '70%'}}>
<div className="ml-2 ms-2" style={{ width: '70%' }}>
<a href="/#" onClick={toggleMoreDetails}>
{user.name}
</a>
</div>
<div className="ml-2 ms-2" style={{ marginRight: 'auto'}}>
<div className="ml-2 ms-2" style={{ marginRight: 'auto' }}>
<JKLatencyBadge latencyData={latencyData} />
</div>
</div>
) : (
<div className="d-flex flex-row align-items-center mb-1 fs-0">
<div className="avatar avatar-xl">
<JKProfileAvatar url={user.photo_url} />
<a href="/#" onClick={toggleMoreDetails}>
<JKProfileAvatar url={user.photo_url} />
</a>
</div>
<div className="ml-2 ms-2">
<strong>{user.name}</strong>
<a href="/#" onClick={toggleMoreDetails}>
{truncate(user.name)}
</a>
</div>
</div>
)}
<JKProfileSidePanel show={showSidePanel} user={user} toggle={toggleMoreDetails} />
<JKProfileSidePanel show={showSidePanel} setShow={setShowSidePanel} user={user} toggle={toggleMoreDetails} />
</>
);
}

View File

@ -160,6 +160,9 @@ import {
faVolumeUp
} from '@fortawesome/free-solid-svg-icons';
//import { faAcousticGuitar } from "../icons";
library.add(
// Solid
faChartPie,
@ -322,4 +325,6 @@ library.add(
farCircle,
farCopy,
farComment,
//faAcousticGuitar,
);

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 31 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 149.64 149.64"><defs><style>.cls-1{fill:#fff;stroke:#5e6e82;stroke-miterlimit:10;stroke-width:6px;}.cls-2{fill:#5e6e82;stroke-width:0px;}</style></defs><g id="svg2"><circle class="cls-1" cx="74.82" cy="74.82" r="71.82"/><g id="layer1"><polygon class="cls-2" points="120.91 46.02 121.18 46.31 121.33 46.18 121.06 45.88 120.91 46.02"/><rect class="cls-2" x="129.45" y="38.6" width=".21" height=".4" transform="translate(7.76 97.6) rotate(-42.44)"/><rect class="cls-2" x="125.38" y="42.14" width=".21" height=".4" transform="translate(4.36 95.89) rotate(-42.49)"/><rect class="cls-2" x="111.24" y="34.94" width=".21" height=".4" transform="translate(5.59 84.63) rotate(-42.59)"/><polygon class="cls-2" points="119.22 27.82 118.94 27.53 118.79 27.67 119.06 27.96 119.22 27.82"/><rect class="cls-2" x="115.11" y="31.18" width=".21" height=".4" transform="translate(9.1 86.14) rotate(-42.53)"/><path class="cls-2" d="m132.71,34.85c-1.59-2.25-.93-7.58-1.41-7.99-.66-.38-6.1-.65-7.94-2.09l-3.91,3.81-.16-.17c.05-.03.1-.06.15-.1.17-.16.24-.37.15-.47-.09-.1-.3-.05-.48.11-.05.05-.1.1-.13.16l-.06-.06-1.61,1.59.52.52-2.14,2.08-.19-.19c.05-.03.11-.06.15-.1.17-.16.24-.37.15-.46-.09-.1-.3-.05-.48.1-.05.05-.1.1-.13.16l-.06-.06-1.61,1.59.54.55-2.24,2.19-.19-.2c.05-.03.1-.06.15-.1.17-.16.24-.37.15-.46-.09-.1-.3-.05-.48.1-.05.05-.1.1-.13.16l-.06-.06-1.61,1.59.55.55-1.13,1.1c-.22,1.2-1.35,2.59-3.76,5.14l-.11-.12-34.64,31.71c-.08-.04-.15-.08-.2-.1-6.55-6.9-15.46-14.28-26.47,4.12-4.68,7.19-17.33,5.48-25.7,12.05-7.08,6.03-11.13,18.58,4.01,34.96,15.88,17.31,28.44,14.46,34.49,8.1,7.52-7.58,7.11-21.4,14.4-25.29,20.17-8.67,12.42-19.52,6.39-26.09l34.74-31.8-.12-.13c2.66-2.08,4.17-3.16,5.44-3.31l1.05-.9.5.6,1.73-1.47-.05-.06c.06-.03.12-.06.17-.11.17-.16.24-.37.15-.47-.09-.1-.3-.05-.48.1-.05.05-.09.09-.12.14l-.18-.21,2.65-2.28.51.6,1.73-1.47-.06-.06c.06-.03.12-.06.17-.11.17-.16.24-.37.15-.46-.09-.1-.3-.05-.48.1-.05.05-.09.09-.12.14l-.18-.22,2.37-2.04.49.58,1.73-1.47-.06-.06c.06-.03.12-.06.17-.11.17-.16.24-.37.15-.46-.09-.1-.3-.05-.48.1-.05.04-.09.09-.12.14l-.17-.2,3.96-3.41Zm-21.75,4.62l10.73-9.84c.71-.66,1.83-.61,2.48.11h0c.66.72.61,1.83-.11,2.48l-4.88,4.47-.4-.43,2.75-2.71.44.48.98-.9-.47-.52.14-.14-.19-.19h0s-.13.13-.13.13l-1.64-1.79-.98.9,1.67,1.83-2.75,2.71-.48-.53.16-.14-.16-.18h0l-.17.15-1.08-1.17-.98.9,1.06,1.15-3.07,2.7-.43-.47.09-.06-.06-.08h0l-.06-.08-.11.08-.49-.54-.98.9.39.43-1.83,1.33c.07-.36.25-.71.54-.98Zm-58.63,59.85s0,0,0,0c-.23-.25-.44-.51-.64-.78l11.05-10.13c.25.22.49.45.72.7,0,0,0,0,0,0,.14.16.28.32.41.48l-11.1,10.17c-.15-.14-.29-.29-.43-.44Zm-1.57-2.4l10.45-9.58c.46.25.9.54,1.32.89l-11,10.08c-.3-.45-.56-.91-.77-1.39Zm61.3-54.4c-.44-.02-.88-.21-1.2-.57h0s0,0,0,0l2.21-1.95.74.81-1.74,1.72Zm2.27,3.33c-.3-.44-.38-.99-.22-1.47l1.69-1.39.74.81-2.21,2.06Zm.41-2.35l.83-.76.04.05-.87.72Zm-1.4-1.44c-.25.23-.55.37-.86.43l1.51-1.49.18.2.98-.9-.21-.23,2.92-2.87.36.39-4.87,4.47Zm1.41-2.19l-.69-.75,3.07-2.71.53.58-2.92,2.87Zm-4.05,1.89c-.22-.32-.32-.68-.31-1.05l1.99-1.45.51.56-2.2,1.94Zm-51.32,44.85c.53.14,1.06.34,1.57.6l-10.3,9.44c-.21-.53-.36-1.07-.46-1.61l9.19-8.42Zm4.65,3.19c.34.45.63.93.86,1.42l-10.59,9.7c-.47-.28-.92-.61-1.34-.98l11.07-10.14Zm.98,1.68c.25.56.43,1.14.54,1.72l-9.34,8.56c-.57-.17-1.13-.4-1.66-.69l10.46-9.59Zm50.64-44.91c-.43-.02-.85-.2-1.17-.54l2.22-2.07.66.72-1.72,1.88Zm1.86-3.69l-.68-.74,3.17-2.6.51.55-3,2.79Zm3.33-4.39l-.27-.3-.98.9.23.25-3.17,2.6-.09-.1,6.96-6.38.44.48-3.11,2.55Zm-68.46,49.72c1.83-1.68,4.32-2.22,6.68-1.68l-8.93,8.18c-.33-2.39.42-4.83,2.25-6.5Zm11.01,12c-1.87,1.72-4.45,2.24-6.86,1.64l9.08-8.32c.39,2.45-.35,4.97-2.22,6.69Zm52.54-53.64l1.57-1.73.33.36.98-.9-.41-.44.06-.06-.07-.07h0s-.07-.07-.07-.07l-.05.05-.58-.64,3-2.79,1.17,1.28.98-.9-1.18-1.29.11-.11.03-.04-.2-.13-.11.11-.45-.49,3.11-2.55,1.62,1.77.98-.9-1.57-1.71.02-.02h0s-.18-.22-.18-.22l-.03.03-.49-.54.93-.85c.69-.63,1.76-.58,2.39.1.63.69.58,1.76-.1,2.39l-10.84,9.94c-.27.25-.59.39-.93.43Z"/></g></g></svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.9 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 149.64 149.64"><defs><style>.cls-1{fill:#fff;stroke:#5e6e82;stroke-miterlimit:10;stroke-width:6px;}.cls-2{fill:#5e6e82;stroke-width:0px;}</style></defs><g id="svg2"><path class="cls-1" d="m3,74.82C3,35.15,35.15,3,74.82,3s71.82,32.15,71.82,71.82-32.16,71.82-71.82,71.82S3,114.48,3,74.82Z"/><path class="cls-2" d="m49.49,131.3c8.11-8.13,4.72-13.64,7.88-16.81,3.16-3.17,7.53-1.91,11.54-5.93,3.91-3.92,3.38-6.59,2.19-8.02-1.19-1.43-4,1.66-5.53,2.13-1.96.6-3.93.52-5.13-.68-1.46-1.46-1.99-2.76-2.17-3.64l48.76-49.9s1.61-1.55,3.41-1.72c1.82-.17,3.23-.58,3.23-.58,0,0,1.49-5.14,6.46-10.11,2.24-2.24,5.06-1.91,5.06-1.91,0,0,0-1.49.5-3.15.5-1.66,1.41-2.4-.41-4.23-1.02-1.02-2.15-1.05-4.41.17l-1.26-1.73c.31-.45.72-1.11.57-1.32l-.58-.83c-.22-.32-1.38-.09-2.3.55-.92.64-1.57,1.68-1.35,1.99l.58.83c.15.22.97.04,1.52-.12l1.18,1.6c-.88.56-1.9,1.25-3.07,2.08l-1.13-1.55c.31-.45.72-1.11.57-1.32l-.58-.83c-.22-.32-1.38-.09-2.3.56-.92.64-1.58,1.68-1.35,1.99l.58.83c.15.22.96.04,1.52-.12l1.14,1.55c-.5.36-1.02.73-1.57,1.13-.6.43-1.15.83-1.69,1.21l-1.15-1.58c.31-.45.72-1.11.57-1.32l-.58-.83c-.22-.32-1.38-.09-2.3.55-.92.64-1.58,1.68-1.35,2l.58.83c.15.22.97.04,1.52-.12l1.16,1.58c-1.52,1.08-2.73,1.95-3.69,2.63l-1.17-1.6c.32-.45.72-1.11.57-1.32l-.58-.83c-.22-.32-1.38-.09-2.3.55-.92.64-1.57,1.68-1.35,1.99l.58.83c.15.22.96.05,1.52-.12l1.17,1.6c-1.34.94-1.78,1.24-1.78,1.24,0,0,.58.91.75,2.24.17,1.33-.75,2.73-.75,2.73-10.4,10.17-32.77,32-43.96,42.9-.21.2-2.89,2.69-5.2-.43-2.4-3.24-1.29-5.89-.52-7.01,1.32-1.91,4.34-4.01,3.57-5.97-.02-.04-.03-.07-.05-.11.03-.03.05-.05.08-.08.5-.52.88-.13,1.2-.47.14-.14-.09-.58-.5-.98-.42-.4-.86-.61-1-.46-.29.31.07.71-.41,1.22-.04.04-.06.06-.09.09-1.72-.83-5.62.19-8.43,3-6.48,6.5-5.04,10.7-9.39,15.07-4.35,4.37-12.6,2.72-18.41,8.54-6.29,6.31-6.72,14.8,3.97,25.98-.5.52-.88.13-1.2.46-.14.14.09.58.5.98.42.4.86.61,1,.46.29-.3-.06-.7.39-1.19.11.11.21.21.31.32,11.73,11.69,18.83,10.56,24.89,4.48Z"/></g></svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 149.64 149.64"><defs><style>.cls-1{fill:#fff;stroke:#5e6e82;stroke-miterlimit:10;stroke-width:6px;}.cls-2{fill:#5e6e82;stroke-width:0px;}</style></defs><g id="svg2"><path class="cls-1" d="m3,74.82C3,35.15,35.15,3,74.82,3s71.82,32.15,71.82,71.82-32.15,71.82-71.82,71.82S3,114.48,3,74.82Z"/><polygon class="cls-2" points="113.34 39.2 113.84 38.71 114.29 38.26 114.06 38.46 113.34 39.2"/><path class="cls-2" d="m119.43,40.37l-1.42-1.42-.67.76,1.37,1.4c-.5.59-.63,1.44.09,2.03.49.4,1.61.41,2.41-.33.72-.66.66-1.91.04-2.52-.48-.48-1.2-.49-1.83.08Z"/><path class="cls-2" d="m60.42,91.41c.02.06.04.11.06.17l.96.93.19-.2,51.71-53.12-52.77,52.06-.15.15Z"/><path class="cls-2" d="m62.11,94.46l.07-.07-1.06-1.06-8.23,8.22c.29.28.58.53.88.77l8.33-7.86Z"/><path class="cls-2" d="m62.59,94.78l-.15-.15-.08.08-8.29,7.83c.34.25.68.49,1.03.71l8.15-7.09c-.52-.51-.92-1.01-.66-1.38Z"/><path class="cls-2" d="m52.65,101.3l8.23-8.23-.95-.95c-.06,0-.12-.02-.18-.04l-7.84,8.39c.24.29.49.57.74.82Z"/><path class="cls-2" d="m66.46,121.83c4.21-7.26,5-11.51,8.51-11.37l.34-1.01c-6.41-3.32-1.48-9.88.93-12.39,2.29-2.38,5.38-4.19,8.51-.93l1.01-.34c-.12-2.72,2.17-3.57,3.96-4.8,3.84-2.4,8.3-5.38,9.52-11.88.86-4.57-.07-10.05-4.8-15.59l-.09-.09,6.71-7.24-36.18,38.88-.1.1c.32.3.65.66.97,1.09l-1.1,1.26c-.25-.32-.71-.72-1.14-1.12l-8.09,7.04c.13.08.26.15.39.23-2.08,1.89-4.19,3.64-6.49,4.63-4.14,2.52-5.54,4.39-8.43,7.33-1.13,1.35-3.39,3.71-4.63,4.72l-2.11-2.11c1.73-1.81,3.46-3.62,5.52-5.1,2.4-1.92,4.76-3.96,6.61-7.54,1.3-2.74,3.02-4.48,4.63-6.49.25.39.51.75.77,1.08l7.72-8.27c-.64-.36-1.51-1.19-2.38-1.96l1.31-1.31c.69.76,1.49,1.39,1.95,2.38l.05-.05,53.26-52.55.71-.71.25.25-.27.27,1.81-1.6.23-.23.25.25-.24.24-2.03,1.8-52.42,53.85-.19.19,1.08,1.04.29-.29,51.7-53.85,1.54-2.02.28.22-1.56,2.04-51.71,53.86-.29.29.19.18c.43.11.86.35,1.29.69l.11-.11,51.11-54.93.26.24-2.36,2.54.23.23c2.3-1.79,4.84-4.29,6.29-7.42,0,0,0,0,0,0l-.48.99,1.24,1.27c-.5.59-.63,1.44.09,2.02.49.4,1.61.41,2.41-.33.72-.66.66-1.91.05-2.52-.48-.48-1.2-.49-1.83.08l-1.44-1.56c.43-.77.85-1.47,1.28-2.09.71.42,1.14-.22,1.62-.61.43.36,1.02,1.01,2.25-.46l-.7-.85c.55-.47.69-1.02.45-1.49.36-.52,1.23-.63.13-1.59-.57-.5-.96-1.15-1.68-.14,0,0-.01.01-.02.02-.48-.36-1.33.11-1.53.42-.41-.38-.3-.29-.81-.7-.71.5-1.54.92-.82,2.1-.36.37-.73.72-.63,1.4l-2.82,2.4-1.92-1.95c.24-.41-.29-1.07-.72-1.52-.59-.61-1.5-.78-1.85-.06-.38.79.69,1.68,1.8,2.31l1.91,1.88.35-.3-3.15,2.68-1.91-1.94c.24-.41-.42-.97-.85-1.42-.59-.61-1.65-.96-1.71-.16-.07.84.68,1.68,1.8,2.31l1.9,1.87-1.15.98c-.46.41-.9.83-.43,1.55l.04.04-20.41,19.6c-4.8-3.95-9.94-6.62-17.25-4.6-5.33,1.47-9.03,5.95-10.45,8.93-1.3,2.74-3.42,4.49-5.34,4.45-.35.92-.04.15-.43,1.04,5.02,2.92.9,6.88-.73,8.47-4.99,4.86-9.47,4.77-12.49,1.32l-1.06.23c.41,4.07-7.4,5.32-11.12,8.09-5.24,3.9-7.7,9.6-7.42,15,.32,6.12,4.26,11,9.17,15.93-.34.02-1,.89-.61,1.71l-3.63,3.79-3.53,4.04.72.72,4.67-4.92,2.75-2.83c.76.17,1.46-.38,1.41-.65l-1.52-1.6c.31.31.62.61.94.92,6.2,6.07,9.88,8.43,14.66,9.27,7.59,1.33,14.54-2.75,17.1-7.16Zm-6.36-37.28c-.18-.62.04-1.01.76-1.18-.8-2.05-3.88.5-6.7,3.5-4.3,4.15-5.82,3.23-6.82,2.19-.56-.57-1.05-2,.25-2.7.41-.22,1.29-.03,1.26.76-.01.34-.29.84-1.1.59-.12,2.24,2.18,1.41,3.12.84,2.04-1.37,3.74-3.35,5.64-5.06,1.38-1.23,3.14-2.04,4.51-.88.48.41.7,1.13.34,1.94-.51.35-.98.54-1.26,0Zm5.12,22.65c-1.04-1.01-1.96-2.53,2.19-6.82,3-2.82,5.55-5.9,3.5-6.7-.17.72-.56.94-1.18.76-.54-.29-.35-.75,0-1.26.8-.36,1.53-.15,1.94.34,1.16,1.37.35,3.13-.88,4.51-1.7,1.91-3.69,3.61-5.05,5.65-.56.94-1.4,3.23.84,3.12-.25-.81.25-1.08.59-1.1.78-.03.98.86.76,1.26-.7,1.3-2.12.81-2.7.25Z"/></g></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.1 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 149.64 149.64"><defs><style>.cls-1{fill:#fff;stroke:#5e6e82;stroke-miterlimit:10;stroke-width:6px;}.cls-2{fill:#5e6e82;stroke-width:0px;}</style></defs><g id="svg2"><path class="cls-1" d="m3,74.82C3,35.15,35.15,3,74.82,3s71.82,32.15,71.82,71.82-32.15,71.82-71.82,71.82S3,114.48,3,74.82Z"/><g id="layer1"><path id="path2159" class="cls-2" d="m53.79,98.05c-13.61-25.54-34.51-21.24-41.01-3.38-4.17,11.47,7.5,31.24,34.55,22.94,14.6-18.16,41.84-49.49,56.44-67.65,10.72,36.33.61,41.02-13.66,52.67,12.87,2.22,34.94-3.01,33.95-40.24-.97-16.83.24-18.19,1.21-36.36-2.53-2.25-3.8-3.03-6.33-5.27-18.39,21.77-46.76,55.52-65.15,77.29Z"/></g></g></svg>

After

Width:  |  Height:  |  Size: 741 B

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 149.64 149.64"><defs><style>.cls-1{fill:#fff;stroke:#5e6e82;stroke-miterlimit:10;stroke-width:6px;}.cls-2{fill:#5e6e82;stroke-width:0px;}</style></defs><g id="svg2"><path class="cls-1" d="m3,74.82C3,35.15,35.15,3,74.82,3s71.82,32.15,71.82,71.82-32.15,71.82-71.82,71.82S3,114.48,3,74.82Z"/><polygon class="cls-2" points="113.34 39.2 113.84 38.71 114.29 38.26 114.06 38.46 113.34 39.2"/><path class="cls-2" d="m119.43,40.37l-1.42-1.42-.67.76,1.37,1.4c-.5.59-.63,1.44.09,2.03.49.4,1.61.41,2.41-.33.72-.66.66-1.91.04-2.52-.48-.48-1.2-.49-1.83.08Z"/><path class="cls-2" d="m60.42,91.41c.02.06.04.11.06.17l.96.93.19-.2,51.71-53.12-52.77,52.06-.15.15Z"/><path class="cls-2" d="m62.11,94.46l.07-.07-1.06-1.06-8.23,8.22c.29.28.58.53.88.77l8.33-7.86Z"/><path class="cls-2" d="m62.59,94.78l-.15-.15-.08.08-8.29,7.83c.34.25.68.49,1.03.71l8.15-7.09c-.52-.51-.92-1.01-.66-1.38Z"/><path class="cls-2" d="m52.65,101.3l8.23-8.23-.95-.95c-.06,0-.12-.02-.18-.04l-7.84,8.39c.24.29.49.57.74.82Z"/><path class="cls-2" d="m66.46,121.83c4.21-7.26,5-11.51,8.51-11.37l.34-1.01c-6.41-3.32-1.48-9.88.93-12.39,2.29-2.38,5.38-4.19,8.51-.93l1.01-.34c-.12-2.72,2.17-3.57,3.96-4.8,3.84-2.4,8.3-5.38,9.52-11.88.86-4.57-.07-10.05-4.8-15.59l-.09-.09,6.71-7.24-36.18,38.88-.1.1c.32.3.65.66.97,1.09l-1.1,1.26c-.25-.32-.71-.72-1.14-1.12l-8.09,7.04c.13.08.26.15.39.23-2.08,1.89-4.19,3.64-6.49,4.63-4.14,2.52-5.54,4.39-8.43,7.33-1.13,1.35-3.39,3.71-4.63,4.72l-2.11-2.11c1.73-1.81,3.46-3.62,5.52-5.1,2.4-1.92,4.76-3.96,6.61-7.54,1.3-2.74,3.02-4.48,4.63-6.49.25.39.51.75.77,1.08l7.72-8.27c-.64-.36-1.51-1.19-2.38-1.96l1.31-1.31c.69.76,1.49,1.39,1.95,2.38l.05-.05,53.26-52.55.71-.71.25.25-.27.27,1.81-1.6.23-.23.25.25-.24.24-2.03,1.8-52.42,53.85-.19.19,1.08,1.04.29-.29,51.7-53.85,1.54-2.02.28.22-1.56,2.04-51.71,53.86-.29.29.19.18c.43.11.86.35,1.29.69l.11-.11,51.11-54.93.26.24-2.36,2.54.23.23c2.3-1.79,4.84-4.29,6.29-7.42,0,0,0,0,0,0l-.48.99,1.24,1.27c-.5.59-.63,1.44.09,2.02.49.4,1.61.41,2.41-.33.72-.66.66-1.91.05-2.52-.48-.48-1.2-.49-1.83.08l-1.44-1.56c.43-.77.85-1.47,1.28-2.09.71.42,1.14-.22,1.62-.61.43.36,1.02,1.01,2.25-.46l-.7-.85c.55-.47.69-1.02.45-1.49.36-.52,1.23-.63.13-1.59-.57-.5-.96-1.15-1.68-.14,0,0-.01.01-.02.02-.48-.36-1.33.11-1.53.42-.41-.38-.3-.29-.81-.7-.71.5-1.54.92-.82,2.1-.36.37-.73.72-.63,1.4l-2.82,2.4-1.92-1.95c.24-.41-.29-1.07-.72-1.52-.59-.61-1.5-.78-1.85-.06-.38.79.69,1.68,1.8,2.31l1.91,1.88.35-.3-3.15,2.68-1.91-1.94c.24-.41-.42-.97-.85-1.42-.59-.61-1.65-.96-1.71-.16-.07.84.68,1.68,1.8,2.31l1.9,1.87-1.15.98c-.46.41-.9.83-.43,1.55l.04.04-20.41,19.6c-4.8-3.95-9.94-6.62-17.25-4.6-5.33,1.47-9.03,5.95-10.45,8.93-1.3,2.74-3.42,4.49-5.34,4.45-.35.92-.04.15-.43,1.04,5.02,2.92.9,6.88-.73,8.47-4.99,4.86-9.47,4.77-12.49,1.32l-1.06.23c.41,4.07-7.4,5.32-11.12,8.09-5.24,3.9-7.7,9.6-7.41,15,.32,6.12,4.26,11,9.17,15.93-.34.02-1,.89-.61,1.71l-3.63,3.79-3.53,4.04.72.72,4.67-4.92,2.75-2.83c.76.17,1.46-.38,1.41-.65l-1.52-1.6c.31.31.62.61.94.92,6.2,6.07,9.88,8.43,14.66,9.27,7.59,1.33,14.54-2.75,17.1-7.16Zm-6.36-37.28c-.18-.62.04-1.01.76-1.18-.79-2.05-3.88.5-6.7,3.5-4.3,4.15-5.82,3.23-6.82,2.19-.56-.57-1.05-2,.25-2.7.41-.22,1.29-.03,1.26.76-.01.34-.29.84-1.1.59-.12,2.24,2.18,1.41,3.12.84,2.04-1.37,3.74-3.35,5.64-5.06,1.38-1.23,3.14-2.04,4.51-.88.48.41.7,1.13.34,1.94-.51.35-.98.54-1.26,0Zm5.12,22.65c-1.04-1.01-1.96-2.53,2.19-6.82,3-2.82,5.55-5.9,3.5-6.7-.17.72-.56.94-1.18.76-.54-.29-.35-.75,0-1.26.8-.36,1.53-.15,1.94.34,1.16,1.37.35,3.13-.88,4.51-1.7,1.91-3.69,3.61-5.05,5.65-.56.94-1.4,3.23.84,3.12-.25-.81.25-1.08.59-1.1.78-.03.98.86.76,1.26-.7,1.3-2.12.81-2.7.25Z"/></g></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 149.64 149.64"><defs><style>.cls-1{fill:#fff;stroke:#5e6e82;stroke-miterlimit:10;stroke-width:6px;}.cls-2{fill:#5e6e82;stroke-width:0px;}</style></defs><g id="svg2"><path class="cls-1" d="m3,74.82C3,35.15,35.15,3,74.82,3s71.82,32.15,71.82,71.82-32.15,71.82-71.82,71.82S3,114.48,3,74.82Z"/><path class="cls-2" d="m65.18,115.35c3.55-3.56,9.03-2.7,13.54-7.23,4.4-4.41,3.85-7.3,2.3-8.85-1.48-1.48-4.33,1.7-6.05,2.23-2.21.68-4.42.58-5.77-.76-1.65-1.64-2.23-3.1-2.44-4.09l42.52-43.93s3.49-4.32,8.14-.09c0,0,1.89-.66,4.04-5.03,2.16-4.38,2.06-5.6,2.85-6.31,1.75-1.57,3.87,1.8,6.54-.87,1.96-1.97,2.15-4.76.56-6.34-2.05-2.05-4.13-1.81-5.76-.85-.08.05-.2.11-.35.2l-.41-.76c.26-.29.26-.55.17-.72l-.34-.64c-.13-.25-.62-.35-1.34.02-.71.37-.9.85-.77,1.09l.33.64c.09.17.32.32.73.25l.42.77c-.57.31-1.26.68-2.03,1.1l-.4-.74c.27-.29.27-.55.18-.72l-.34-.64c-.13-.25-.62-.35-1.33.02-.71.38-.9.84-.77,1.09l.34.64c.09.17.32.32.72.25l.4.75c-.65.35-1.34.72-2.04,1.1l-.43-.79c.26-.29.26-.55.17-.72l-.33-.63c-.13-.25-.63-.35-1.34.02-.71.37-.9.84-.77,1.09l.34.64c.09.17.32.32.72.25l.43.79c-.69.37-1.39.74-2.09,1.12l-.44-.82c.26-.29.26-.55.18-.72l-.34-.64c-.13-.24-.62-.35-1.33.02-.71.37-.9.84-.77,1.09l.34.64c.09.17.32.32.72.25l.44.82c-.66.36-1.32.71-1.96,1.05l-.45-.83c.26-.29.27-.55.18-.72l-.34-.64c-.13-.25-.62-.35-1.33.02-.71.38-.9.84-.77,1.09l.34.64c.09.17.32.32.72.25l.45.82c-.82.44-1.59.85-2.28,1.22l-.46-.84c.26-.29.27-.55.18-.72l-.34-.64c-.13-.25-.62-.35-1.33.02-.71.37-.9.84-.77,1.09l.34.64c.09.17.32.32.72.25l.45.84c-1.26.67-2.04,1.08-2.04,1.08,0,0,1.09,2.33-.88,4.25-1.35,1.31-21.35,20.45-37.43,36.11-.23.22-3.25,3.02-5.84-.48-2.69-3.65-1.45-6.63-.59-7.88,1.48-2.15,4.32-3.94,3.45-6.15-.04-.09-.09-.18-.14-.27,0,0,0,0,.01-.02.49-.5.85-.12,1.17-.45.13-.14-.09-.56-.49-.95-.4-.39-.83-.59-.97-.45-.29.3.07.69-.4,1.18,0,0-.01.01-.02.02-1.81-1.06-5.81-.3-8.96,2.87-7.29,7.31-6.22,12.59-11.12,17.5-4.89,4.91-15.84,4.73-22.37,11.28-7.08,7.1-6.8,15.9,5.32,28.46-.46.43-.82.09-1.12.4-.13.14.08.56.48.95.4.39.83.59.97.45.27-.28-.03-.65.35-1.11.13.13.27.27.4.4,13.18,13.14,20.37,12.67,27.18,5.84,9.12-9.14,6.99-17.02,10.54-20.58Z"/></g></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 149.64 149.64"><defs><style>.cls-1{fill:#fff;stroke:#5e6e82;stroke-miterlimit:10;stroke-width:6px;}.cls-2{fill:#5e6e82;stroke-width:0px;}</style></defs><g id="svg2"><circle class="cls-1" cx="74.82" cy="74.82" r="71.82"/><path class="cls-2" d="m126.17,27.65c-.24-.54-.88-.72-1.29-.87-.42-.18-.84-.15-1.15-.08-.3.05-.52.25-.64.41-.12.14-.18.3-.12.49l-2.81,2.57c-.6-.22-1.27-.11-2.03.31-.79.43-1.71,1.45-2.54,2.2-.84.71-2,1.66-2.41,2.14-.4.45-.1.52,0,.69.05.18.19.28.39.36l-10.4,9.18c-.24-.12-.49-.14-.78-.05-.31.08-.76.31-.95.55-.19.22-.23.46-.13.75l-3.88,3.63c-.48-.03-.81,0-1.03.13-.23.12-.22.32-.29.56-.08.22-.14.47-.17.77l-3.38,2.93-1.24-1.03c.23-.23.35-.44.29-.63-.06-.21-.36-.65-.61-.58-.28.05-.58.33-.97.88-.53-.12-.91-.08-1.12.09-.22.18-.29.47-.19.93l-1.04.83c-.4-.13-.7-.09-.87.06-.18.17-.24.45-.18.89-1.54,1.24-3.29,2.72-5.34,4.47-2.06,1.77-4.33,3.72-6.92,6l-16.51,14.89c-.37.01-.62.13-.8.31-.16.17-.25.41-.26.72-.67.26-1.22.73-1.59,1.33l-2.25,1.77c-.25-.04-.46-.01-.63.12-.17.13-.32.33-.42.63l-1.31,1.1c-.33-.07-.59-.05-.75.07-.16.09-.24.33-.24.56-.02.22,0,.46.11.75l-2.32,1.93c-.35.04-.62.1-.84.23-.23.12-.42.31-.45.5-.03.18.04.34.25.55l-.56.38c-.52.03-.89.12-1.09.29-.22.18-.27.46-.17.69.07.2.27.38.62.54l1.2,1.15-.66.65c-.75-.62-1.41-1-1.94-1.12-.55-.14-.92.13-1.3.32-.4.16-.83.42-1,.75-.18.32-.14.75.04,1.24-.25-.25-.65-.22-1.2.08-.58.28-1.72,1.26-2.14,1.7-.41.42-.39.6-.35.92.03.3.21.62.55.95-.57.25-.87.54-.96.79-.08.24.17.53.48.77.3.24.73.46,1.31.67l-1.75,1.6c.12-.65.05-1.16-.26-1.5-.31-.36-.88-.72-1.57-.6-.71.12-1.98.67-2.64,1.25-.68.55-1.21,1.44-1.38,2.05-.15.58.11,1.16.43,1.46.3.29.73.38,1.34.27l.32.68-3.26,2.48c.04-.88-.23-1.37-.88-1.5-.65-.12-2.14.24-2.93.69-.82.42-1.5,1.28-1.82,1.85-.31.55-.16,1.13-.06,1.47.07.32.23.41.46.53.21.11.46.15.77.13l.5.57-6.86,6.3c-.17-.04-.31-.04-.49,0-.19.03-.37.13-.51.25-.14.11-.27.26-.36.47.41.92.97,1.77,1.71,2.61.75.83,1.62,1.58,2.71,2.33.32-.18.59-.35.74-.53.15-.19.23-.36.2-.55l20.79-19.06c.72.41,1.33.55,1.86.46.51-.12.88-.6,1.27-1.06.39-.48.85-1.02,1.06-1.65.18-.64.21-1.34.07-2.13.71.07,1.18-.04,1.46-.31.27-.27.33-.7.17-1.3l20.67-18.99c.29.14.61.13,1.02.03.39-.12,1.07-.28,1.37-.72.28-.46.43-1.16.39-2.07.33.66.81,1.17,1.42,1.46.62.29,1.54.43,2.24.32.66-.16,1.58-.68,1.77-1.11.15-.43-.33-1.08-.72-1.37-.38-.29-1.02-.4-1.54-.36-.51.03-1.18.55-1.56.55-.39-.04-.66-.23-.78-.67.72-.07,1.29-.18,1.71-.34.4-.18.59-.37.79-.64.21-.28.32-.61.4-1l21.68-19.92c-.02.14.08.16.32.06.23-.12.82-.41,1.04-.67.2-.25.27-.51.22-.81l3.7-3.48c.55-.11.99-.28,1.24-.54.24-.27.37-.56.31-.96l1.81-1.68,18.38-16.84c.22-1.03.25-1.81.04-2.34ZM47.53,96.25l-.57-1.04c.11-.25.12-.51.02-.85-.11-.35-.7-.8-.64-1.12.06-.33.36-.57.94-.78l.15.18c.14.08.2.25.21.53-.03.27-.26.62-.2,1.07.06.43.28.91.62,1.49l-.52.53Zm2.43-4.84c-.29.01-.57.08-.86.22l-.44-.67,1.37-1.15c-.13.37-.12.69,0,1,.14.29.37.54.75.77-.29-.13-.54-.19-.83-.18Zm2.8-3.33c-.14.25-.26.52-.38.85l-.17-.89.9-.82c.02.08.04.16.06.24-.14.17-.27.36-.41.62Zm9.35-5.65c-.21-.09-.47-.14-.79-.17-.31-.03-.7-.03-1.12,0l-.76-.58,1.59-1.49c.16.2.32.4.48.6-.56.33-.91.57-1.02.73-.12.15-.02.22.31.22.36-.19.62-.32.83-.38.18-.05.11-.03.36.03.24.02.64.06,1.16.12l-1.03.93Zm5.54-4.17c-.45-.24-1.04-.35-1.79-.35l1.84-1.81c.24.24.48.46.71.69-.12.29-.18.63-.15,1.07.02.43.12.9.29,1.46-.14-.49-.47-.83-.9-1.07Zm4.36-4.08l-1.31.25.03.94c-.21-.05-.41-.06-.56-.07-.17-.01-.32,0-.44.04-.2-.3-.39-.61-.6-.92l2.68-2.29.55.51c-.26.44-.4.78-.46,1.04-.07.27-.02.41.11.5Zm2.72-2.72c-.26-.06-.63-.12-1.07-.15-.32-.48-.63-.96-.95-1.44l1.15-1,1.31,1.2c-.07.2-.09.44-.08.71.01.27.06.56.16.89-.08-.08-.27-.16-.53-.21Zm3.68-3.45c-.39-.09-.77-.15-1.17-.13-.4,0-.81.06-1.22.16-.24-.2-.49-.39-.74-.59l2.28-1.78.89.9c-.07.17-.12.38-.12.63-.01.25,0,.5.07.81Zm3.05-3.25c-.44,0-1.03.03-1.77.09-.08-.18-.17-.37-.25-.55l1.48-1.22,1.37,1.76c-.12-.05-.4-.1-.83-.09Zm.95-1.01c-.03.1-.04.18-.04.29l-1.52-1.75.34-.32c.25.24.48.49.71.74.23.24.42.5.63.75-.05.09-.09.19-.12.29Zm.31-.94l-1.13-1.01,1.49-1.27.95,1.22-1.31,1.06Zm1.81-1.66l-.83-1.02,1.87-1.51.86.97-1.9,1.56Zm4.47-3.25l-.95-.07-.95-.8.9-.68,1.26,1.25-.27.3Zm.33-.86s-.04.04-.05.05c0,0,.01.01.02.02.09.07-.05.05-.02-.02-.14-.11-.37-.34-.71-.67.26-.26.51-.52.76-.78l.93.75c-.46.3-.76.52-.93.64Zm1.65-1.52l-.52-.67.12-.24.71-.66.68.71-.99.86Z"/></g></svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 149.64 149.64"><defs><style>.cls-1{fill:none;}.cls-1,.cls-2{stroke-width:0px;}.cls-3{fill:#fff;stroke:#5e6e82;stroke-miterlimit:10;stroke-width:6px;}.cls-2{fill:#5e6e82;}</style></defs><g id="svg2"><path class="cls-3" d="m3,74.82C3,35.15,35.16,3,74.82,3s71.82,32.15,71.82,71.82-32.16,71.82-71.82,71.82S3,114.48,3,74.82Z"/><path id="path3005" class="cls-1" d="m22.1,98s15.47,3.68,17.79,4.08c2.33.4,8.05-1.39,13.74-6.34,5.7-4.94,68.66-58.99,69.15-59.9.5-.91,2.7-3.21-3.69-4.24-6.4-1.03-15.04-2.02-15.04-2.02"/><path class="cls-2" d="m121.7,31.86c.87-5.68-2.82-6.79-7.93-7.11-5.12-.32-12.02,4.08-12.02,4.08l-1.78.14c-7.91-1.29-11.36,3.78-11.36,3.78,0,0-61.76,52.31-65.55,55.63-3.78,3.32-3.56,7.57-1.88,9.57-2.71,3.78-3,7.47,5.94,10.7,8.94,3.23,18.91-4.98,18.91-4.98,0,0,73.03-65.58,75.39-67.71,2.36-2.13.53-3.62.27-4.11ZM26.09,103.52c.97-1.52,4.52-2.47,4.42.37-.1,2.84-5.12,3.46-4.42-.37ZM114.6,28.29c-1.46,2.12-4.25.85-3.34-.79,1.65-2.06,4.81-1.32,3.34.79Z"/><path class="cls-2" d="m133.66,38.27c-1.02-1.94-3.57-6.79-3.57-6.79,0,0-.87-2.84-3.34-3.61-.4-.12-1.1-.29-1.98-.49.12.04.22.08.31.12,2.92,1.23,3.47,2.89,2.41,4.59-1.06,1.69-76.61,68.69-80.47,72.18-3.86,3.49-8.37,6.67-11.77,7.32-3.4.65-22.84-5.4-22.84-5.4-3.43-.96,4.46-5.43,4.46-5.43,0,0,2.85-2.43,7.51-6.4l-5.76,4.34-6.2,4.7s-2.76,1.04-1.23,3.95c1.53,2.91,3.48,6.63,3.48,6.63,0,0,1.25,1.2,2.73,1.66,1.48.46,12.12,3.85,16.44,4.58,4.31.73,6,.84,8.74-1.2.55-.41,1.73-1.38,3.41-2.79,1.17-.2,2.77-.9,4.93-2.62,5.96-4.76,68.12-58.54,71.03-61.04,2.48-2.14,6.72-4.97,5.6-7.47,3.11-2.73,4.92-4.33,4.91-4.33,0,0,2.2-.53,1.18-2.48Zm-11.08-.26l1.46,3.29-5.6,5.02-1.67-3.17,5.8-5.14Zm-6.35,5.95l1.48,3.2-6.41,5.59-1.56-3.22,6.49-5.57Zm-7.41,6.38l1.51,3.26-6.3,5.78-1.74-3.12,6.53-5.92Zm-6.99,6.51l1.7,3.16-6.86,5.94-1.72-3.28,6.87-5.82Zm-7.5,6.5l1.69,3.16-6.87,5.92-1.94-3.02,7.12-6.07Zm-7.88,6.84l1.68,3.17-6.89,5.91-1.93-3.02,7.14-6.05Zm-8.06,7.06l1.72,3.14-6.81,5.99-1.97-3,7.06-6.14Zm-7.95,6.96l1.8,3.1-6.68,6.13-2.04-2.95,6.92-6.28Zm-7.53,6.72l1.78,3.11-6.7,6.1-2.03-2.96,6.95-6.25Zm-14.95,13.26l6.99-6.21,1.76,3.12-6.74,6.06-2.01-2.97Zm3.94,6.01l-1.78-2.53,7.14-5.93,1.53,2.68-6.89,5.79Zm8.4-6.57l-2.03-2.96,6.95-6.25,1.78,3.11-6.7,6.1Zm7.48-6.72l-1.97-2.99,6.97-6.31,1.73,3.14-6.72,6.16Zm7.81-6.95l-1.97-2.99,7.06-6.14,1.72,3.14-6.81,5.99Zm7.89-6.79l-1.93-3.02,7.14-6.05,1.68,3.17-6.89,5.91Zm7.87-6.88l-1.94-3.02,7.12-6.07,1.69,3.16-6.87,5.93Zm7.38-6.49l-1.74-3.05,7.1-6.08,1.7,3.01-7.06,6.12Zm7.42-6.74l-1.65-2.95,6.42-5.71,1.39,2.89-6.15,5.78Zm7.18-6.66l-1.38-3.02,6.34-5.56,1.49,3.34-6.45,5.23Zm7.1-5.95l-1.67-3.17,5.8-5.14,1.46,3.28-5.6,5.02Z"/></g></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 149.64 149.64"><defs><style>.cls-1{clip-path:url(#clippath);}.cls-2{fill:none;}.cls-2,.cls-3{stroke-width:0px;}.cls-4{fill:#fff;stroke:#5e6e82;stroke-miterlimit:10;stroke-width:6px;}.cls-3{fill:#5e6e82;}</style><clipPath id="clippath"><path class="cls-2" d="m3,74.82C3,35.15,35.15,3,74.82,3s71.82,32.15,71.82,71.82-32.16,71.82-71.82,71.82S3,114.48,3,74.82Z"/></clipPath></defs><g id="svg2"><path class="cls-4" d="m3,74.82C3,35.15,35.15,3,74.82,3s71.82,32.15,71.82,71.82-32.16,71.82-71.82,71.82S3,114.48,3,74.82Z"/><g class="cls-1"><path class="cls-3" d="m61.24,97.73V32.7h3.25v-4.34c0-1.79-1.46-3.25-3.25-3.25h-10.84c-1.79,0-3.25,1.46-3.25,3.25v4.34h4.33v65.03h-4.33v30.35c0,1.79,1.46,3.25,3.25,3.25h10.84c1.79,0,3.25-1.46,3.25-3.25v-30.35h-3.25Z"/><path class="cls-3" d="m40.65,97.73V32.7h4.33v-4.34c0-1.79-1.46-3.25-3.25-3.25h-10.84c-1.79,0-3.25,1.46-3.25,3.25v4.34h3.25v65.03h-3.25v30.35c0,1.79,1.46,3.25,3.25,3.25h10.84c1.79,0,3.25-1.46,3.25-3.25v-30.35h-4.33Z"/><path class="cls-3" d="m18.5,97.73V32.7h6.98v-4.34c0-1.79-1.88-3.25-4.19-3.25H7.33c-2.31,0-4.19,1.46-4.19,3.25v99.72c0,1.79,1.88,3.25,4.19,3.25h13.95c2.31,0,4.19-1.46,4.19-3.25v-30.35h-6.98Z"/><path class="cls-3" d="m80.75,25.11h-10.84c-1.79,0-3.25,1.46-3.25,3.25v4.34h5.42v65.03h-5.42v30.35c0,1.79,1.46,3.25,3.25,3.25h10.84c1.79,0,3.25-1.46,3.25-3.25V28.36c0-1.79-1.46-3.25-3.25-3.25Z"/><path class="cls-3" d="m142.55,25.11h-13.35c-2.21,0-4.01,1.46-4.01,3.25v4.34h6.68v65.03h-6.68v30.35c0,1.79,1.8,3.25,4.01,3.25h13.35c2.21,0,4-1.46,4-3.25V28.36c0-1.79-1.8-3.25-4-3.25Z"/><path class="cls-3" d="m98.09,97.73V32.7h5.42v-4.34c0-1.79-1.46-3.25-3.25-3.25h-10.84c-1.79,0-3.25,1.46-3.25,3.25v99.72c0,1.79,1.46,3.25,3.25,3.25h10.84c1.79,0,3.25-1.46,3.25-3.25v-30.35h-5.42Z"/><path class="cls-3" d="m119.77,97.73V32.7h3.25v-4.34c0-1.79-1.46-3.25-3.25-3.25h-10.84c-1.79,0-3.25,1.46-3.25,3.25v4.34h3.25v65.03h-3.25v30.35c0,1.79,1.46,3.25,3.25,3.25h10.84c1.79,0,3.25-1.46,3.25-3.25v-30.35h-3.25Z"/></g></g></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 149.64 149.64"><defs><style>.cls-1{fill:#fff;stroke:#5e6e82;stroke-miterlimit:10;stroke-width:6px;}.cls-2{fill:#5e6e82;stroke-width:0px;}</style></defs><g id="svg2"><path class="cls-1" d="m3,74.82C3,35.15,35.15,3,74.82,3s71.82,32.15,71.82,71.82-32.15,71.82-71.82,71.82S3,114.48,3,74.82Z"/><path class="cls-2" d="m126.83,33.02c-.64-.68-1.51-1.16-2.26-1.74-.51-.39-.99-.81-1.73-1.42,1.16-1.16,2.2-2.2,3.24-3.24-1.19-1.19-2.38-2.38-3.57-3.57-.82.82-1.63,1.63-2.74,2.73-.94-1.31-1.74-2.44-2.56-3.56-.39-.52-.74-1.15-1.27-1.46-.62-.37-1.4-.45-2.12-.66-.12.64-.23,1.29-.35,1.93-.37-.09-.92-.23-1.62-.4.03.62.06,1.06.08,1.49-1.5-.08-2.85,1.15-2.93,2.72-.92.02-2.04-.25-2.21,1.17-.13,1.05,1.01,2.84,2.19,2.91,1.69.1,2.21,1.47,3.37,2.4-.62.53-1.13.97-1.89,1.61-.81-1.19-1.48-2.33-2.31-3.34-.64-.77-1.45-1.42-2.27-2-.26-.18-.97-.15-1.13.06-.24.29-.37.97-.19,1.25.52.8,1.15,1.57,1.87,2.19,1.01.84,2.15,1.53,3.32,2.34-1.52,1.52-2.79,2.86-4.13,4.12-7.05,6.61-14.12,13.19-21.16,19.81-.69.65-1.38.9-2.33.96-6.89.47-13.8.77-20.65,1.6-8.1.98-15.4,4.38-22.25,8.66-3.62,2.27-6.96,4.99-10.43,7.49-.26.19-.55.32-.83.47-2.25,2.25-4.49,4.49-6.74,6.74-1.52,2.06-3.14,4.04-4.53,6.18-2.85,4.38-4.73,9.08-4.36,14.46.23,3.29,1.32,6.27,3.2,8.97.15.21.23.48.34.72,6.14,6.14,12.29,12.29,18.43,18.43,1.98,1,3.87,2.29,5.96,2.96,6.23,2,11.97.31,17.33-2.94,2.14-1.3,4.07-2.94,6.1-4.42.29-.21.62-.37.93-.56,2.31-2.31,4.62-4.62,6.94-6.94,1.65-2.18,3.38-4.31,4.94-6.56,5.52-7.96,10.15-16.42,11.53-26.11,1.03-7.19,1.22-14.49,1.82-21.74.05-.59.25-1.3.63-1.72,7.9-8.51,15.85-16.99,23.78-25.48.44-.47.91-.91,1.64-1.64.51.96.79,1.82,1.34,2.46.75.88,1.6,1.79,2.6,2.3.85.44,1.81-.56,1.35-1.41-.54-.99-1.45-1.84-2.35-2.57-.68-.55-1.58-.83-2.57-1.33.65-.73,1.01-1.13,1.6-1.79.67.98,1.2,1.87,1.85,2.66.58.71,1.22,1.41,1.97,1.92.35.24,1.11.2,1.49-.02.22-.13.14-.92.04-1.37-.1-.41-.41-.76-.64-1.15,1.74.77,3.3-.35,3.3-2.22.51-.25,1.28-.41,1.35-.72.11-.51-.06-1.27-.42-1.65ZM43.3,114.22c-4.97,0-9-4.03-9-9s4.03-9,9-9,9,4.03,9,9-4.03,9-9,9ZM112.99,31.18c-.98-.28-2.06-2.13-1.79-3.36,1.07.93,2.01,1.74,3.25,2.82-.68.27-1.14.63-1.46.54Zm1.29-5.79c.92.92,1.81,1.81,2.7,2.7-1.49-.2-2.72-1.6-2.7-2.7Zm4.2,1.32c-.21.13-.66.21-.8.08-.94-.86-1.83-1.78-2.73-2.69.12-.13.23-.26.35-.39,1.59.03,2.27,1.39,3.24,2.31.11.11.07.61-.05.69Zm.23,8.3q.89-1.23,2.76,1.96c-.92-.65-1.84-1.31-2.76-1.96Z"/></g></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 149.64 149.64"><defs><style>.cls-1{fill:#fff;stroke:#5e6e82;stroke-miterlimit:10;stroke-width:6px;}.cls-2{fill:#5e6e82;stroke-width:0px;}</style></defs><g id="svg2"><path class="cls-1" d="m3,74.82C3,35.15,35.15,3,74.82,3s71.82,32.15,71.82,71.82-32.15,71.82-71.82,71.82S3,114.48,3,74.82Z"/><g id="layer1"><path id="path2159" class="cls-2" d="m53.79,98.05c-13.61-25.54-34.51-21.24-41.01-3.38-4.17,11.47,7.5,31.24,34.55,22.94,14.6-18.16,41.84-49.49,56.44-67.65,10.72,36.33.61,41.02-13.66,52.67,12.87,2.22,34.94-3.01,33.95-40.24-.97-16.83.24-18.19,1.21-36.36-2.53-2.25-3.8-3.03-6.33-5.27-18.39,21.77-46.76,55.52-65.15,77.29Z"/></g></g></svg>

After

Width:  |  Height:  |  Size: 741 B

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 149.64 149.64"><defs><style>.cls-1{clip-path:url(#clippath);}.cls-2{fill:none;}.cls-2,.cls-3{stroke-width:0px;}.cls-4{fill:#fff;stroke:#5e6e82;stroke-miterlimit:10;stroke-width:6px;}.cls-3{fill:#5e6e82;}</style><clipPath id="clippath"><path class="cls-2" d="m3,74.82C3,35.15,35.15,3,74.82,3s71.82,32.15,71.82,71.82-32.16,71.82-71.82,71.82S3,114.48,3,74.82Z"/></clipPath></defs><g id="svg2"><path class="cls-4" d="m3,74.82C3,35.15,35.15,3,74.82,3s71.82,32.15,71.82,71.82-32.16,71.82-71.82,71.82S3,114.48,3,74.82Z"/><g class="cls-1"><path class="cls-3" d="m61.24,97.73V32.7h3.25v-4.34c0-1.79-1.46-3.25-3.25-3.25h-10.84c-1.79,0-3.25,1.46-3.25,3.25v4.34h4.33v65.03h-4.33v30.35c0,1.79,1.46,3.25,3.25,3.25h10.84c1.79,0,3.25-1.46,3.25-3.25v-30.35h-3.25Z"/><path class="cls-3" d="m40.65,97.73V32.7h4.34v-4.34c0-1.79-1.46-3.25-3.25-3.25h-10.84c-1.79,0-3.25,1.46-3.25,3.25v4.34h3.25v65.03h-3.25v30.35c0,1.79,1.46,3.25,3.25,3.25h10.84c1.79,0,3.25-1.46,3.25-3.25v-30.35h-4.34Z"/><path class="cls-3" d="m18.5,97.73V32.7h6.98v-4.34c0-1.79-1.88-3.25-4.19-3.25H7.33c-2.31,0-4.19,1.46-4.19,3.25v99.72c0,1.79,1.88,3.25,4.19,3.25h13.95c2.31,0,4.19-1.46,4.19-3.25v-30.35h-6.98Z"/><path class="cls-3" d="m80.75,25.11h-10.84c-1.79,0-3.25,1.46-3.25,3.25v4.34h5.42v65.03h-5.42v30.35c0,1.79,1.46,3.25,3.25,3.25h10.84c1.79,0,3.25-1.46,3.25-3.25V28.36c0-1.79-1.46-3.25-3.25-3.25Z"/><path class="cls-3" d="m142.55,25.11h-13.35c-2.21,0-4.01,1.46-4.01,3.25v4.34h6.68v65.03h-6.68v30.35c0,1.79,1.8,3.25,4.01,3.25h13.35c2.21,0,4-1.46,4-3.25V28.36c0-1.79-1.8-3.25-4-3.25Z"/><path class="cls-3" d="m98.09,97.73V32.7h5.42v-4.34c0-1.79-1.46-3.25-3.25-3.25h-10.84c-1.79,0-3.25,1.46-3.25,3.25v99.72c0,1.79,1.46,3.25,3.25,3.25h10.84c1.79,0,3.25-1.46,3.25-3.25v-30.35h-5.42Z"/><path class="cls-3" d="m119.77,97.73V32.7h3.25v-4.34c0-1.79-1.46-3.25-3.25-3.25h-10.84c-1.79,0-3.25,1.46-3.25,3.25v4.34h3.25v65.03h-3.25v30.35c0,1.79,1.46,3.25,3.25,3.25h10.84c1.79,0,3.25-1.46,3.25-3.25v-30.35h-3.25Z"/></g></g></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 149.64 149.64"><defs><style>.cls-1{fill:#fff;stroke:#5e6e82;stroke-miterlimit:10;stroke-width:6px;}.cls-2{fill:#5e6e82;stroke-width:0px;}</style></defs><g id="svg2"><path class="cls-1" d="m3,74.82C3,35.15,35.16,3,74.82,3s71.82,32.15,71.82,71.82-32.15,71.82-71.82,71.82S3,114.48,3,74.82Z"/><path class="cls-2" d="m43.81,98.48c-.41-.17-.71.13-.83.32-.22.33-.01.83.13.93.1.08.25.1.37.08.46.03.69.77.69.77-.08.26.15,1.14.15,1.14l-.61.46-1.94-1.31c.03-.65-.6-.74-.86-.67-.17.05-.31.16-.37.24-.16.19-.15.49-.15.49,0,0-.03.29-.36.31-.69-.06-.72.33-.68.53.04.2-.1.26-.1.26l-1.23,1.03s-.19.23-.36.22c-.67-.07-.29.44-.29.44,0,0-2.47,2.2-2.57,2.22-.88-.81-1.31.45-1.31.45-.5,1.19-1.08,1.71-1.08,1.71l-1.44,1.23s-.07.08-.14.06c-.69-.21-.58.46-.56.55.02.1-.1.14-.1.14,0,0-.34.24-.68.54-.69-.33-.48.47-.48.47l-.44.37c-.27-.18-.56.05-.68.21-.13.19-.14.45-.11.58.06.26.38.45.5.45.13,0,.27-.06.27-.06l.34.23s-.05.16.79,1.3c.85,1.14.34,1.76.34,1.76-.78,1.51-1.15,3.13-1.15,3.13-1.48,4.19.54,8.91.54,8.91l1.26,2.59c2.28,4.99,7.45,4.17,8,4.06.55-.11,1.75-.34,1.75-.34,1.18-.17,2.3-.58,3.33-1.09,1.67-.82,3.08-1.88,4.08-2.59,1.61-1.14,1.74-1.16,1.74-1.16,0,0,.36-.1.61-.5.32-.06.6-.54.6-.54.46-.23.71-.87.71-.87.5-.34,10.91-8.68,10.91-8.68,9.45-7.16,15.13-8.23,15.13-8.23,4.64,8.9,11.49,4.77,14.03.98,2.06-3.07,2.88-6.93,2.88-6.93,1.64-8.79-1.65-13.87-4.31-15.69-2.51-1.72-5.49-1.1-7.21-.07-2.48,1.49-4.29,4.49-4.29,4.49,0,0-3.95.83-9.35,4-1.56.91-3.37,2.22-5.02,3.45,0,0,0-.33-.16-.6,0,0,.24-.49.57-.46.33.04.46-.41.46-.41,0,0,.07-.26.33-.49.26-.23,12.71-11.85,12.71-11.85l4.4-4.18s.95.72,1.26.84c0,.03.34,1.05,1.21,1.63.8.54,2.88.74,3.92-.59l1.64-2.43s.17-.29.17-.43c0-.17-.04-.4-.25-.59,0,0,.24-.49-.5-.63-.37.03-.25.11-.48-.04,0,0,.86-.22,1.04-.66.11-.29.04-1.09-1.62-1.17,0,0-.21,0-.26-.24-.05-.25-.07-.21,0-.33.02-.02.37-.21.56-.56.25-.46.36-1.72-1.23-2.08,0,0,.65-.2.85-.59,0,0,.86.01,1.26-.64.21-.34.46-.92.04-1.65,0,0,.21-.42.35-.45,0,0,.46.32.94.28.41-.04,1.15-.52.98-1.4,0,0,.16.13.45-.09.16-.12.77-.24,1.26.01.38.2.79.59.65,1.42,0,0,.08.52-1.23,2.47-1.17,1.44-.23,1.06-.23,1.06,0,0,1.67-.42,2.6-3.29.55-.11,1-.4,1.36-.77.89-.92,1.3-1.82,1.21-2.28,0,0-.73-1.17-.69-1.73.27-.4.7-.68.7-.68,0,0,1.13,1.43.34,2.9-.79,1.47-1.38,1.86-.7,1.92,0,0,.83-.13,1.46-1.1.39-.59.87-1.75.7-2.89,0,0-.16-1.27.18-1.78,0,0,1.37.06,2.11-2.3,0,0,.39-1.18,1.72-2.26l6.6-6.18s1.21-1.04,1.9-2.06c.37-.55.93-1.27,1.23-1.88.26-.54.4-.58-.1-1.18,0,0-.28.03-.37.17l-.13-.08s-.13-.02.49-.56c.62-.54,2.96-2.73,2.96-2.73,0,0,.18.08.33-.06.15-.14,2.03-1.82,2.03-1.82,0,0,.18.18.26.05.13.09.29.19.29.19,0,0-.03,0,.12-.02.14-.03.4-.14.4-.14,0,0,.09-.04.11.08,0,.04.04.18.12.34.19.36,1.2,1.08,1.41,0,0,0,.02-.53-.3-.86-.32-.33-.55-.33-.62-.69,0,0-.07-.05-.14-.09-.07-.05.12-.34-.04-.52.55-.49,1.83-1.89,1.83-1.89,0,0,.08-.01.15-.03.04,0,.88.04,1.92-.6,1.08-.66,2.9-2.47,3.19-5.01,0,0,.04-.51.53-1.37.2-.35.47-1.3.42-2.5-.03-.86-.03-1.29-.41-2-.25-.46-.71-1.31-1.4-2.21-.37-.48-.8-.98-1.29-1.44,0,0-.67-.58-1.29-1.01.29-.87-.51-.73-.51-.73,0,0,0-.72-.82-.42-.11.16-.21.26-.21.26,0,0,.02.12-.37-.06-.39-.18-1.67-.83-1.67-.83,0,0-.17-.04-.33,0-.22.05-.71.43-.21.89,0,0-.22.05-.27.24-.03.12-1.7-.67-2.97-1.62-.78-.58-1.04-1.19-1.42-1.76,0,0,0-.54-.21-.99-.21-.44-.7-2.57-.71-3.08,0-.51.24-.68-.16-1.42,0,0-.8-1.89-.84-2.01-.03-.12-.39-1.02-1.34-2.3-.27-.37-.71-.45-.71-.45,0,0-.58-.2-.91-.07l-2.95-1.99s-.11-.08-.23-.09c-.13-.01-.38.04-.37.33,0,0,.75,3.34,1.21,4.54.09.3-.01.53-.01.53,0,0-.02.3-.02.35l-.42-.13s.03-.18.03-.35c0-.14-.11-.34-.26-.45-.12-.08-.41-.15-.67-.06-.28.09-.68.53-.63,1.04.02.18.05.36.25.52,0,0,.36.29.79-.09,0,0,.24.12.32.33-.01.02-.41.2-.6.46-.12.16-.27.62-.12.92.12.24.63.5,1.1.14,0,0,.26.21.28.39.03.14.51.43.51.43l.82.56s.17.09.35,0c.18-.08.5.32.5.32l1.41,2.3s.06.13.33.34c.13.23.4.78.4.78,0,0,.12.23.52.45,0,0,.25.81.99,1.84.77,1.08,1.74,2.25,4.17,3.35,0,0,.96.49,2.03,1.27,2.12,1.54,2.67,2.42.97,6.3,0,0-.71,1.05-1.35,1.66-.34-.36-.51-.11-.51-.11,0,0-.2.3-.46.34-.12.02-.23-.04-.4-.16l-.65-.44s-.41-.2-.42.49c0,.38.66.86.66.86l-1.73,1.5-.74-.51s0-.22-.09-.4c-.08-.14-.37-.35-.67-.33-.22.02-.51.2-.6.62l-.22.22s-.65-.33-.51.43c-.25.25-2.84,2.41-2.84,2.41l-.07-.05s-.03-.12-.11-.23c-.08-.11-.34-.32-.62-.3-.24.01-.71.4-.64.75,0,0,0,.05-.11.04-.11,0-.51-.19-.47.44-.02.15-.3.32-.3.32l-28.84,24.89s-.31-.33-.68-.23c-.18.05-.6.19-.85.52-.19.25-.35.67-.06,1.12l-18.35,15.96s-.37-.53-.72-.21c-.35.32-.21.31-.56.38-.35.07-.6.06-.37.55.05.08.13.09.13.09,0,0,.08.05.09.13.02.08.15.23-.03.18,0,0-.3-.26-.76-.25-.29,0-.61.22-1.04.48,0,0-.58.41-1.04.42,0,0-.13-1-.63-.27,0,0-.55.98-1.2,1.49-.65.5-.89.81-.83,1.16-.37-.36-.67.21-.67.21,0,0-.9,1.01-1.31,1.29-.41.27-.28.7-.15.95.13.25-.05.05-.05.05,0,0-.2-.66-.63-.39-.25.17-.6.6-.6.6,0,0-.3.35-.74.67s-.91.82-.46,1.71l-3.5,2.92s-.16-.09-.31-.09c-.17,0-.47.19-.29.64l-.52.41Z"/></g></svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 149.64 149.64"><defs><style>.cls-1{fill:none;}.cls-1,.cls-2{stroke-width:0px;}.cls-2{fill:#5e6e82;}</style></defs><g id="svg2"><path class="cls-2" d="m74.82,149.64C33.56,149.64,0,116.07,0,74.82S33.56,0,74.82,0s74.82,33.56,74.82,74.82-33.56,74.82-74.82,74.82Zm0-143.64C36.87,6,6,36.87,6,74.82s30.87,68.82,68.82,68.82,68.82-30.87,68.82-68.82S112.77,6,74.82,6Z"/><circle class="cls-1" cx="74.82" cy="74.82" r="71.82" transform="translate(-14.55 18.17) rotate(-12.63)"/><path class="cls-2" d="m140.94,46.75c-10.63,7.91-24.18,17.99-31.49,23.41-10.36,7.67-12.91,9.6-18.91,13.97-2.79,2.03-5.46,3.96-8.06,5.83.03-.05.07-.1.11-.15-.06-.15-.14-.2-.37-.14-.2.07-.26,0-.89.46-.67.49-1.73,1.32-3.08,2.35-.39.28-.81.59-1.26.91l-.97-4.86c1.12-.82,2.34-1.72,3.13-2.3,1.18-.9,1.94-1.52,2.25-1.81-.09-.01-.2-.07-.3-.12.16-.12.31-.23.47-.35.16,1.18.36,2.26.51,3.16.16,1.07.39,1.99.55,2.68.53-.39,1.07-.78,1.6-1.16l-1.04-5.89c.6-.45,1.22-.92,1.89-1.42,9.76-7.36,32.26-24.16,41-30.76,8.63-6.49,4.96-3.94,10.65-8.21.47-.35.99-.75,1.54-1.16-.4-.75-.82-1.49-1.24-2.23-.71.54-1.42,1.08-2.11,1.62-6.36,4.84-13.13,9.89-19.76,14.89-6.64,5.02-12.72,9.58-19.75,14.83-4.73,3.49-10.81,7.88-15.84,11.56,0-.04,0-.07.02-.11-.05-.14-.17-.16-.3-.14-.15.03.02-.16-.59.32-.69.49-1.86,1.47-3.26,2.56-1.45,1.11-3.14,2.4-5.2,3.95-.13.19-.22.39-.26.6-1.12.9-1.76,1.48-2.45,2.09l-2.65-1.81-.52.08-5.82-4.01-.27-.64-2.34-1.6c.12-.11.25-.22.37-.33,4.96-4.36,10.01-8.83,14.22-12.31,4.12-3.42,7.38-5.88,10.65-8.21,3.27-2.34,6.51-4.48,8.87-5.69,2.28-1.18,3.61-1.26,4.91-1.36,1.28-.08,1.9.56,2.77.91.81.36,1.03.7,2.21,1.25,1.15.59,3.62,1.96,4.66,2.07.97.07,1.34-.35,1.33-1.52-.05-1.15-.53-3.2-1.53-5.3-1.07-2.1-3.02-5-4.58-7.1-1.58-2.06-2.83-3.43-4.74-5.31-1.97-1.92-4.99-4.51-6.8-5.95-1.84-1.39-2.89-2.09-4-2.49-1.15-.4-2.09-.22-2.68-.05-.64.17-.91.45-1,1.02-.13.64.11,1.67.38,2.54.26.86.72,1.61,1.18,2.47.4.86.85,1.75,1.3,2.71.18,1.02,0,2.33-.6,3.92-.61,1.62-1.5,3.41-2.97,5.63-1.51,2.25-2.03,3.19-6.03,7.69-4.11,4.56-12.91,13.77-18.15,19.14-5.21,5.35-8.43,8.14-13.04,12.65-4.73,4.53-10.85,10.4-14.88,14.2-4.07,3.77-7.24,6.08-9.12,8.35-1.73,2.11-2.04,3.42-2.03,4.86,1.58,2.19,3.28,4.29,5.1,6.28,1.15.48,2.41.84,3.58.93,2.25.2,4.67-.47,6.92-1.49,2.14-1.06,3.15-2.29,6.06-4.68,2.88-2.38,6.32-5.44,11.33-9.46,4.99-4.03,12.52-9.77,18.5-14.37,1.31-1.01,2.4-1.85,3.4-2.61.08.03.16.06.24.08.37-.27,1.14-.79,2.28-1.63.11.64.27,1.46.39,2.1.12.95.31,1.87.44,2.81-.6.42-1.21.85-1.88,1.32-.2.29-.3.61-.28.94l-.92.76c-.01.12-.05.3-.18.43-.16.14-.34.33-.62.5-.22-.17-.35-.23-.47-.17-.12.08-.21.25-.22.55l-.91.54c-.38-.3-.83-.42-1.36-.32-.56.08-1.19.35-1.88.8l-.15-.1c-.16-.33-.4-.43-.69-.34-.29.08-.65.4-1.07.89-.21.76-.28,1.4-.16,2.06.1.66.25,1.21.81,1.77.52.56,1.27,1.07,2.29,1.56l1.14-.57-.03-.46c.42-.08.79-.4,1.14-1,.31-.6.58-1.45.83-2.56l.91-.6c.21.08.29.11.44.04.07-.07.17-.17.19-.4.18-.2.33-.35.53-.45.15-.1.32-.14.5-.1l1.3-.79c.13.06.25.13.4.17.41-.29,1.19-.86,2.45-1.77,1.25-.92,3.69-2.66,4.92-3.61,1.18-.93,1.85-1.56,2.09-1.96-.03,0-.08-.02-.12-.02,2.09-1.52,4.42-3.23,7.01-5.14,7.27-5.39,17.27-12.92,27.09-20.21,7.25-5.4,16.27-12.06,23.85-17.7-.29-.74-.57-1.49-.88-2.22ZM28.54,121.66c-1.62.49-2.84.34-4.02.07-1.26-.25-2.3-.9-3.11-1.54-.84-.6-1.45-1.26-1.68-2.12-.28-.83-.61-1.6.23-2.9.68-1.09,1.14-1.54,3.27-3.44.67.47,1.16.83,1.56,1.1.41.3.64.46.74.49h.43s5.29,3.7,5.29,3.7l.31.83,1.72,1.22c-1.93,1.38-3.33,2.11-4.74,2.57Zm6.22-3.71l-1.87-1.28-.52.08-5.82-4.01-.27-.64-1.94-1.34c.15-.13.29-.26.45-.41,1.15-1.03,2.69-2.37,4.43-3.87.96.65,1.66,1.11,2.17,1.43.49.34.73.5.73.48h.44s5.29,3.7,5.29,3.7l.31.83,1.28.86c-1.85,1.65-3.3,3.01-4.68,4.16Zm30.54-24.96c-2.98,2.35-6.06,4.58-9.95,7.7-3.96,3.15-9.86,7.96-13.46,10.97-.41.35-.81.69-1.19,1.02l-1.23-.95-.51.09-5.81-4.02-.28-.64-2.46-1.7c3.38-2.89,7.28-6.2,10.5-9.01,4.74-4.14,9.32-8.31,13.84-12.28.88.59,1.54,1.03,2.02,1.33.51.35.74.51.74.49l.43-.02,5.3,3.71.31.83,2.56,1.82c-.24.2-.5.41-.81.65Z"/></g></svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.1 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 149.64 149.64"><defs><style>.cls-1{fill:#fff;stroke:#5e6e82;stroke-miterlimit:10;stroke-width:6px;}.cls-2{fill:#5e6e82;stroke-width:0px;}</style></defs><g id="svg2"><path class="cls-1" d="m3,74.82C3,35.15,35.15,3,74.82,3s71.82,32.15,71.82,71.82-32.15,71.82-71.82,71.82S3,114.48,3,74.82Z"/><path class="cls-2" d="m59.24,114.82c-.1-1.93.86-4.31,1.56-6.72.31-.95,1.06-1.68,2.03-2.29.22-.21.3-.34.29-.42,1.09-.37,2.7-.95,5.05-1.84,13.25-5,13.54-19.4,8.27-25.25l-1.08-1.07,29.96-30.95-7.15-7.1-31.18,29.71-1.54-1.54c-6.06-4.95-18.55-5.46-24.18,7.02-1.96,4.35-2.71,6.18-2.91,6.81-.61.75-1.16,1.43-2.16,1.9-3.15,1.21-4.97,1.6-8.21,2.11-16.7,2.59-28.68,22.06-8.74,40.09,19.05,20.62,37.27,7.11,39.99-10.46Zm2.6-32.09c2.92,2.9,2.81,7.75-.25,10.83-3.06,3.08-7.91,3.22-10.83.32-2.92-2.9-2.81-7.75.25-10.83,3.06-3.08,7.91-3.22,10.83-.32Zm-26.23,37.46c-.49-.38-.99-.15-.99-.15l-10.55-10.49s.23-.51-.1-.94c-.33-.43-1.68-1.28-1.68-1.28l.1-.1h0s3.14-3.18,3.14-3.18l.13.09,14.51,14.41-.1.1h0s-3.14,3.17-3.14,3.17c0,0-.84-1.26-1.33-1.63Z"/><path class="cls-2" d="m123.38,21.52c-2.68-.41-6.03-1.52-7.47-3.59,0,0,0,0-.3.02l-14.13,15.07c.03,1.56-.81,3.14-2.31,4.96-.16.22-.29.43-.34.62l7.54,6.6c1.61-1.42,3.32-2.4,4.98-2.37l15.39-13.82c-2.08-2.5-3.18-5.01-3.36-7.48Zm-6.05.71c.64.64.62,1.71-.05,2.38-.67.67-1.74.69-2.38.05-.64-.64-.62-1.71.05-2.38s1.74-.69,2.38-.05Zm-10.36,10.55c-.64-.64-.62-1.71.05-2.38.67-.67,1.74-.69,2.38-.05.64.64.62,1.71-.05,2.38-.67.67-1.74.69-2.38.05Zm15.3-5.43c.64.64.62,1.71-.05,2.38-.67.67-1.74.69-2.38.05-.64-.64-.62-1.71.05-2.38.67-.67,1.74-.7,2.38-.05Zm-10.34,10.42c-.64-.64-.62-1.71.05-2.38.67-.67,1.74-.69,2.38-.05.64.64.62,1.71-.05,2.38-.67.67-1.74.69-2.38.05Z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 149.64 149.64"><defs><style>.cls-1{fill:#fff;stroke:#5e6e82;stroke-miterlimit:10;stroke-width:6px;}.cls-2{fill:#5e6e82;stroke-width:0px;}</style></defs><g id="svg2"><path class="cls-1" d="m3,74.82C3,35.15,35.15,3,74.82,3s71.82,32.15,71.82,71.82-32.15,71.82-71.82,71.82S3,114.48,3,74.82Z"/><polygon class="cls-2" points="113.34 39.2 113.84 38.71 114.29 38.26 114.06 38.46 113.34 39.2"/><path class="cls-2" d="m119.43,40.37l-1.42-1.42-.67.76,1.37,1.4c-.5.59-.63,1.44.09,2.03.49.4,1.61.41,2.41-.33.72-.66.66-1.91.04-2.52-.48-.48-1.2-.49-1.83.08Z"/><path class="cls-2" d="m60.42,91.41c.02.06.04.11.06.17l.96.93.19-.2,51.71-53.12-52.77,52.06-.15.15Z"/><path class="cls-2" d="m62.11,94.46l.07-.07-1.06-1.06-8.23,8.22c.29.28.58.53.88.77l8.33-7.86Z"/><path class="cls-2" d="m62.59,94.78l-.15-.15-.08.08-8.29,7.83c.34.25.68.49,1.03.71l8.15-7.09c-.52-.51-.92-1.01-.66-1.38Z"/><path class="cls-2" d="m52.65,101.3l8.23-8.23-.95-.95c-.06,0-.12-.02-.18-.04l-7.84,8.39c.24.29.49.57.74.82Z"/><path class="cls-2" d="m66.46,121.83c4.21-7.26,5-11.51,8.51-11.37l.34-1.01c-6.41-3.32-1.48-9.88.93-12.39,2.29-2.38,5.38-4.19,8.51-.93l1.01-.34c-.12-2.72,2.17-3.57,3.96-4.8,3.84-2.4,8.3-5.38,9.52-11.88.86-4.57-.07-10.05-4.8-15.59l-.09-.09,6.71-7.24-36.18,38.88-.1.1c.32.3.65.66.97,1.09l-1.1,1.26c-.25-.32-.71-.72-1.14-1.12l-8.09,7.04c.13.08.26.15.39.23-2.08,1.89-4.19,3.64-6.49,4.63-4.14,2.52-5.54,4.39-8.43,7.33-1.13,1.35-3.39,3.71-4.63,4.72l-2.11-2.11c1.73-1.81,3.46-3.62,5.52-5.1,2.4-1.92,4.76-3.96,6.61-7.54,1.3-2.74,3.02-4.48,4.63-6.49.25.39.51.75.77,1.08l7.72-8.27c-.64-.36-1.51-1.19-2.38-1.96l1.31-1.31c.69.76,1.49,1.39,1.95,2.38l.05-.05,53.26-52.55.71-.71.25.25-.27.27,1.81-1.6.23-.23.25.25-.24.24-2.03,1.8-52.42,53.85-.19.19,1.08,1.04.29-.29,51.7-53.85,1.54-2.02.28.22-1.56,2.04-51.71,53.86-.29.29.19.18c.43.11.86.35,1.29.69l.11-.11,51.11-54.93.26.24-2.36,2.54.23.23c2.3-1.79,4.84-4.29,6.29-7.42,0,0,0,0,0,0l-.48.99,1.24,1.27c-.5.59-.63,1.44.09,2.02.49.4,1.61.41,2.41-.33.72-.66.66-1.91.05-2.52-.48-.48-1.2-.49-1.83.08l-1.44-1.56c.43-.77.85-1.47,1.28-2.09.71.42,1.14-.22,1.62-.61.43.36,1.02,1.01,2.25-.46l-.7-.85c.55-.47.69-1.02.45-1.49.36-.52,1.23-.63.13-1.59-.57-.5-.96-1.15-1.68-.14,0,0-.01.01-.02.02-.48-.36-1.33.11-1.53.42-.41-.38-.3-.29-.81-.7-.71.5-1.54.92-.82,2.1-.36.37-.73.72-.63,1.4l-2.82,2.4-1.92-1.95c.24-.41-.29-1.07-.72-1.52-.59-.61-1.5-.78-1.85-.06-.38.79.69,1.68,1.8,2.31l1.91,1.88.35-.3-3.15,2.68-1.91-1.94c.24-.41-.42-.97-.85-1.42-.59-.61-1.65-.96-1.71-.16-.07.84.68,1.68,1.8,2.31l1.9,1.87-1.15.98c-.46.41-.9.83-.43,1.55l.04.04-20.41,19.6c-4.8-3.95-9.94-6.62-17.25-4.6-5.33,1.47-9.03,5.95-10.45,8.93-1.3,2.74-3.42,4.49-5.34,4.45-.35.92-.04.15-.43,1.04,5.02,2.92.9,6.88-.73,8.47-4.99,4.86-9.47,4.77-12.49,1.32l-1.06.23c.41,4.07-7.4,5.32-11.12,8.09-5.24,3.9-7.7,9.6-7.41,15,.32,6.12,4.26,11,9.17,15.93-.34.02-1,.89-.61,1.71l-3.63,3.79-3.53,4.04.72.72,4.67-4.92,2.75-2.83c.76.17,1.46-.38,1.41-.65l-1.52-1.6c.31.31.62.61.94.92,6.2,6.07,9.88,8.43,14.66,9.27,7.59,1.33,14.54-2.75,17.1-7.16Zm-6.36-37.28c-.18-.62.04-1.01.76-1.18-.79-2.05-3.88.5-6.7,3.5-4.3,4.15-5.82,3.23-6.82,2.19-.56-.57-1.05-2,.25-2.7.41-.22,1.29-.03,1.26.76-.01.34-.29.84-1.1.59-.12,2.24,2.18,1.41,3.12.84,2.04-1.37,3.74-3.35,5.64-5.06,1.38-1.23,3.14-2.04,4.51-.88.48.41.7,1.13.34,1.94-.51.35-.98.54-1.26,0Zm5.12,22.65c-1.04-1.01-1.96-2.53,2.19-6.82,3-2.82,5.55-5.9,3.5-6.7-.17.72-.56.94-1.18.76-.54-.29-.35-.75,0-1.26.8-.36,1.53-.15,1.94.34,1.16,1.37.35,3.13-.88,4.51-1.7,1.91-3.69,3.61-5.05,5.65-.56.94-1.4,3.23.84,3.12-.25-.81.25-1.08.59-1.1.78-.03.98.86.76,1.26-.7,1.3-2.12.81-2.7.25Z"/></g></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 149.64 149.64"><defs><style>.cls-1{fill:#fff;stroke:#5e6e82;stroke-miterlimit:10;stroke-width:6px;}.cls-2{fill:#5e6e82;stroke-width:0px;}</style></defs><g id="svg2"><path class="cls-1" d="m3,74.82C3,35.15,35.16,3,74.82,3s71.82,32.15,71.82,71.82-32.15,71.82-71.82,71.82S3,114.48,3,74.82Z"/><path class="cls-2" d="m109.91,42.18s-1.57,1.47-1.55,2.69l-22.93,21.11s-5.42-4.95-12.5-4.74c-2.79.08-6.57.89-10.17,3.9-2.31,1.92-4.4,4.86-6.4,8.85,0,0-.79,1.51-2.85,2.05-.83.19-.91.58-.91.58l-.33.82s-.24.29.26.64c.49.35,3.9,1.87,1.1,6.18-2.79,4.31-12.94,11-15.2,3.8,0,0-1.37-.3-2.37,1.57-.93,1.69-3.94,2.63-3.94,2.63,0,0-11.2,3.26-13.46,13.8-1.08,5.04.43,9.28,2.49,12.62,2.25,3.65,4.45,6.02,6.05,7.61,0,0-.3.31.06.86.23.35,1.15,1.51,1.73,1.35,0,0,.24.54.64.32.39-.22.08-.08.08-.08,0,0,2.75,3.32,7.42,5.78,3.17,1.67,7.35,3.08,11.89,2.51,0,0,2.5-.22,5.6-1.93,2.12-1.18,4.38-3.14,6.42-6.14,1.36-2,1.55-2.76,2.86-5.58,0,0,.17-.47.48-1.08.5-.99.6-1.87,2.56-2.84,0,0,1.33-.82,1.49-1.99,0,0-6.28-1.51-1.67-9.15,0,0,1.27-2.12,3.15-3.94,2.26-2.18,6.32-4.69,8.25-1.04,0,0,.12.79.74.42l.79-.32s.41,0,.59-.66c.07-.28.2-.84.47-1.43.38-.81.75-1,2.28-1.96,0,0,2.33-1.02,4.88-2.96,3.06-2.33,6.17-6.06,6.49-10.8,0,0,.38-3.04.07-4.83-.4-2.38-1.12-5.86-3.31-8.57l21.76-22.92s.82-.8.92-1.11c.25-.16,3.56-3.69,3.56-3.69l.66.71s-.11.39.26.44c0,.25.41.42.41.42,0,0,.21.13.04.33-.17.21-.11.52.43.94.29.23,1.2,1.04,2.08,1.49.72.37,1.26.33,1.72-.16,0,0,.67-.78-.17-1.89-.84-1.11-1.72-2.09-1.72-2.09,0,0-.22-.35-.45-.17-.23.18-.46-.09-.46-.09,0,0-.06-.31-.27-.31-.21,0-.06-.44-.43-.27l-.8-.78,3.52-4.23,1.6,1.59s-.19.16.1.42c0,0-.03.37.39.33l.16.19s-1.26.95.21,2.16c.62.51,1.41.89,2.13.88.99-.01,2.32-1.08,1.99-2.91-.54-2.2-1.72-2.11-1.72-2.11,0,0-.59.07-1.01.52l-.19-.18s.08-.45-.36-.39c-.14-.25-.39-.13-.39-.13l-1.7-1.75s.83-.9.96-1.17c0,0,.13.1.21.34.07.23.6.49,1.14-.13.53-.62.58-.69.58-.69l.65.69s.49.53,1.37-.08c0,0,.21.25.6-.04.23-.18.87-.91.88-1.28,0,0,.02-.14-.12-.28-.14-.14-.86-.97-.86-.97,0,0,.57-.74.77-1.19.21-.45-.03-.53-.03-.53l-.37-.31s2.1-2.74,1.09-2.78c-.76-.04-.89-.66-.89-.66,0,0,.05-.34-.28-.39-.33-.05-.85-.43-.75-.86.06-.41-.58-.17-.58-.17l-2.09,1.23-.41-.41s-.12-.15-.38,0c0,0-.66.42-1.26,1.01l-.94-.91s-.22-.21-.76.13c-.54.34-.83.75-.83.75,0,0-.27.31-.08.68,0,0-.32.9-.04,1.19,0,0,.22.22.25.24.02.01-.35.37-.62.71-.12.14-.24.34-.18.67,0,0-.38.22-3.08,2.82-.04.02-1.54-1.67-1.54-1.67,0,0,.21-.35-.18-.48.02-.07.03-.12.02-.17-.05-.27-.39-.33-.5-.24l-.21-.2s-.08-.08.07-.23c.08-.07.41-.34.45-.75.04-.4-.07-1.04-1.15-1.59,0,0-.96-.51-1.93-.43-.9.07-2.18,1.08-1.96,2.63,0,0,.77,3.36,2.71,2.02.3-.21.45.02.45.02,0,0-.2.2-.09.32.11.12.22.23.22.23,0,0,.07.11.29.01-.05.09.11.25.11.25,0,0,.13.15.21.07.08-.08.1-.1.1-.1l1.62,1.63-2.17,2.14-.49-.48s-.67.46-1,.98c.41.47.45.52.45.52l-1.55,1.48s-.88-.87-1.33-1.42c-.18-.22-.34-.35-.26-.42,0,0,.08-.12-.17-.28.04-.06.01-.11-.04-.16-.11-.12-.26-.28-.38-.18l-.23-.19s-.06-.09.07-.21c.14-.12.51-.52-.21-.99-.71-.47-2.11-1.41-2.11-1.41,0,0-.51-.26-.99-.15-.46.11-1.37.62-.87,1.87l1.47,2.36s.33.65.72.26c.39-.39.3-.29.3-.29l.24.23s-.11.12-.01.22c.09.09.21.22.21.22,0,0,.07.06.14,0l.16.19s.08.06.24,0c.13,0,1.65,1.55,1.65,1.55Z"/></g></svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 149.64 149.64"><defs><style>.cls-1{fill:#fff;stroke:#5e6e82;stroke-miterlimit:10;stroke-width:6px;}.cls-2{fill:#5e6e82;stroke-width:0px;}</style></defs><g id="svg2"><path class="cls-1" d="m3,74.82C3,35.15,35.16,3,74.82,3s71.82,32.15,71.82,71.82-32.15,71.82-71.82,71.82S3,114.48,3,74.82Z"/><path class="cls-2" d="m109.92,42.19s-1.57,1.47-1.55,2.69l-22.93,21.11s-5.42-4.95-12.5-4.74c-2.79.08-6.57.89-10.17,3.9-2.31,1.92-4.4,4.86-6.4,8.85,0,0-.79,1.51-2.85,2.05-.83.19-.91.58-.91.58l-.33.82s-.24.29.26.64c.49.35,3.9,1.88,1.1,6.18-2.79,4.31-12.94,11-15.2,3.8,0,0-1.37-.3-2.37,1.57-.93,1.69-3.94,2.63-3.94,2.63,0,0-11.2,3.26-13.46,13.8-1.08,5.04.43,9.28,2.49,12.62,2.25,3.65,4.45,6.02,6.05,7.61,0,0-.3.31.06.86.23.35,1.15,1.51,1.73,1.35,0,0,.24.54.64.32.39-.22.08-.08.08-.08,0,0,2.75,3.32,7.42,5.78,3.17,1.67,7.35,3.08,11.89,2.51,0,0,2.5-.22,5.6-1.93,2.12-1.18,4.38-3.14,6.42-6.14,1.36-2,1.55-2.76,2.86-5.58,0,0,.17-.47.48-1.09.5-.99.6-1.87,2.56-2.84,0,0,1.33-.81,1.49-1.99,0,0-6.28-1.51-1.67-9.15,0,0,1.27-2.12,3.15-3.94,2.26-2.18,6.32-4.69,8.25-1.04,0,0,.12.79.74.42l.79-.32s.41,0,.59-.66c.07-.28.2-.84.47-1.43.38-.81.75-1,2.28-1.96,0,0,2.33-1.02,4.88-2.96,3.06-2.33,6.17-6.06,6.49-10.8,0,0,.38-3.04.07-4.83-.4-2.38-1.12-5.86-3.31-8.57l21.76-22.92s.82-.8.92-1.11c.25-.16,3.56-3.69,3.56-3.69l.66.71s-.11.39.26.44c0,.25.41.42.41.42,0,0,.21.13.04.33-.17.21-.11.52.43.94.29.23,1.2,1.04,2.08,1.49.72.37,1.26.33,1.72-.16,0,0,.67-.78-.17-1.89-.84-1.11-1.72-2.09-1.72-2.09,0,0-.22-.35-.45-.17-.23.19-.46-.09-.46-.09,0,0-.06-.31-.27-.31-.21,0-.06-.44-.43-.27l-.8-.78,3.52-4.23,1.6,1.59s-.19.16.1.42c0,0-.03.37.39.33l.17.19s-1.26.95.21,2.16c.62.51,1.41.89,2.13.88.99-.01,2.32-1.08,1.99-2.91-.54-2.2-1.72-2.11-1.72-2.11,0,0-.59.07-1.01.52l-.19-.18s.08-.45-.36-.39c-.14-.25-.39-.13-.39-.13l-1.7-1.75s.83-.9.96-1.17c0,0,.13.1.21.34.07.23.6.49,1.14-.13.53-.62.58-.69.58-.69l.65.69s.49.53,1.37-.08c0,0,.21.25.6-.04.23-.18.87-.91.88-1.28,0,0,.02-.14-.12-.28-.14-.14-.86-.97-.86-.97,0,0,.57-.74.77-1.19.21-.45-.03-.53-.03-.53l-.37-.31s2.1-2.74,1.09-2.78c-.76-.04-.89-.66-.89-.66,0,0,.05-.34-.28-.39-.33-.05-.85-.43-.75-.86.06-.41-.58-.17-.58-.17l-2.09,1.23-.41-.41s-.12-.15-.38,0c0,0-.66.42-1.26,1.01l-.94-.91s-.22-.21-.76.13c-.54.34-.83.75-.83.75,0,0-.27.31-.08.68,0,0-.32.9-.04,1.19,0,0,.22.22.25.24.02.01-.35.37-.62.71-.12.14-.24.34-.18.67,0,0-.38.22-3.08,2.82-.04.02-1.54-1.67-1.54-1.67,0,0,.21-.35-.18-.48.02-.07.03-.12.02-.17-.05-.27-.39-.34-.5-.24l-.21-.2s-.08-.08.07-.23c.08-.07.41-.34.45-.75.04-.4-.07-1.04-1.15-1.59,0,0-.96-.51-1.93-.43-.9.07-2.18,1.08-1.96,2.63,0,0,.77,3.36,2.71,2.03.3-.21.45.02.45.02,0,0-.2.2-.09.32.11.12.22.23.22.23,0,0,.07.11.29.01-.05.09.11.25.11.25,0,0,.13.15.21.07.08-.08.1-.1.1-.1l1.62,1.63-2.17,2.14-.49-.48s-.67.46-1,.98c.41.47.45.52.45.52l-1.55,1.47s-.88-.87-1.33-1.42c-.18-.22-.34-.35-.26-.42,0,0,.08-.12-.17-.28.04-.06.01-.12-.04-.16-.11-.12-.26-.28-.38-.19l-.23-.19s-.06-.09.07-.21c.14-.12.51-.52-.21-.99-.71-.47-2.11-1.41-2.11-1.41,0,0-.51-.26-.99-.15-.46.11-1.38.62-.87,1.87l1.47,2.36s.33.65.72.26c.39-.39.3-.29.3-.29l.24.23s-.11.12-.01.22c.09.09.21.22.21.22,0,0,.07.06.14,0l.16.19s.08.06.24,0c.13,0,1.65,1.55,1.65,1.55Z"/></g></svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 149.64 149.64"><defs><style>.cls-1{fill:#fff;stroke:#5e6e82;stroke-miterlimit:10;stroke-width:6px;}.cls-2{fill:#5e6e82;stroke-width:0px;}</style></defs><g id="svg2"><circle class="cls-1" cx="74.82" cy="74.82" r="71.82" transform="translate(-15.6 129.77) rotate(-76.29)"/><path class="cls-2" d="m100.66,67.68v16.67c0,13.74-11.59,24.91-25.83,24.91s-25.84-11.17-25.84-24.91v-16.67h-11.91v16.67c0,18.04,13.37,33.08,30.95,36.21v12.43h-17.49v12.27h48.58v-12.27h-17.99v-12.34c17.83-2.93,31.45-18.09,31.45-36.3v-16.67h-11.91Z"/><path class="cls-2" d="m89.56,28.17v35.42h-5.54V24.01c-2.1-1.09-4.39-1.84-6.8-2.17v34.51h-5.54V21.85c-2.41.33-4.7,1.07-6.8,2.17v39.58h-5.55V28.17c-4.01,4.15-6.51,9.93-6.51,16.34v38.17c0,12.62,9.68,22.85,21.63,22.85s21.63-10.23,21.63-22.85v-38.17c0-6.4-2.5-12.19-6.51-16.34Z"/></g></svg>

After

Width:  |  Height:  |  Size: 910 B

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 149.64 149.64"><defs><style>.cls-1{fill:#fff;stroke:#5e6e82;stroke-miterlimit:10;stroke-width:6px;}.cls-2{fill:#5e6e82;stroke-width:0px;}</style></defs><g id="svg2"><circle class="cls-1" cx="74.82" cy="74.82" r="71.82" transform="translate(-15.6 129.77) rotate(-76.29)"/><path class="cls-2" d="m100.66,67.68v16.67c0,13.74-11.59,24.91-25.83,24.91s-25.84-11.17-25.84-24.91v-16.67h-11.91v16.67c0,18.04,13.37,33.08,30.95,36.21v12.43h-17.49v12.27h48.58v-12.27h-17.99v-12.34c17.83-2.93,31.45-18.09,31.45-36.3v-16.67h-11.91Z"/><path class="cls-2" d="m89.56,28.17v35.42h-5.54V24.01c-2.1-1.09-4.39-1.84-6.8-2.17v34.51h-5.54V21.85c-2.41.33-4.7,1.07-6.8,2.17v39.58h-5.55V28.17c-4.01,4.15-6.51,9.93-6.51,16.34v38.17c0,12.62,9.68,22.85,21.63,22.85s21.63-10.23,21.63-22.85v-38.17c0-6.4-2.5-12.19-6.51-16.34Z"/></g></svg>

After

Width:  |  Height:  |  Size: 910 B

View File

@ -25,8 +25,8 @@ export const musicSessionRoutes = {
icon: 'music',
children: [
{ to: '/sessions/new', name: 'Create Session' },
{ to: '/sessions', name: 'Browse Current Sessions' },
{ to: '/sessions/history', name: 'View Session History' },
{ to: '/sessions', name: 'Browse Sessions' },
{ to: '/sessions/history', name: 'Session History' },
]
}

View File

@ -30,6 +30,7 @@ export const SessionSlice = createSlice({
state.status = "loading";
})
.addCase(fetchSessions.fulfilled, (state, action) => {
console.log(action.payload);
state.status = "succeeded";
state.sessions = action.payload;
})