diff --git a/src/app.tsx b/src/app.tsx index 280398e..1c68765 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -13,14 +13,21 @@ import { getTheme, setTheme } from '~/design-system' import '~/design-system/styles/global.css' import { useClient } from '~/hooks/useClient' import { useNetworkStatus } from '~/hooks/useNetworkStatus' -import { usePendingBlock } from '~/hooks/usePendingBlock' +import { + getPendingBlockQueryKey, + usePendingBlock, +} from '~/hooks/usePendingBlock' +import { getPendingTransactionsQueryKey } from '~/hooks/usePendingTransactions' import { usePrevious } from '~/hooks/usePrevious' +import { getTxpoolQueryKey } from '~/hooks/useTxpool' import { getMessenger } from '~/messengers' import { QueryClientProvider, queryClient } from '~/react-query' import { deepEqual } from '~/utils' +import { getClient } from '~/viem' import { type AccountState, type NetworkState, + networkStore, syncStores, useAccountStore, useNetworkStore, @@ -40,6 +47,7 @@ import OnboardingDownload from './screens/onboarding/download' import OnboardingRun from './screens/onboarding/run' import OnboardingStart from './screens/onboarding/start' import Session from './screens/session' +import Settings from './screens/settings' import TransactionDetails from './screens/transaction-details' export function init({ type = 'standalone' }: { type?: AppMeta['type'] } = {}) { @@ -87,6 +95,10 @@ export function init({ type = 'standalone' }: { type?: AppMeta['type'] } = {}) { path: 'session', element: , }, + { + path: 'settings', + element: , + }, { path: 'onboarding', children: [ @@ -112,14 +124,33 @@ export function init({ type = 'standalone' }: { type?: AppMeta['type'] } = {}) { }, ]) - // Handle requests from background to toggle the theme. const backgroundMessenger = getMessenger('background:wallet') + + // Handle requests from background to toggle the theme. backgroundMessenger.reply('toggleTheme', async () => { const { storageTheme, systemTheme } = getTheme() const theme = storageTheme || systemTheme setTheme(theme === 'dark' ? 'light' : 'dark') }) + // Handle executed transactions to invalidate stale queries. + backgroundMessenger.reply('transactionExecuted', async () => { + const { + network: { rpcUrl }, + } = networkStore.getState() + const client = getClient({ rpcUrl }) + + queryClient.invalidateQueries({ + queryKey: getPendingBlockQueryKey([client.key]), + }) + queryClient.invalidateQueries({ + queryKey: getPendingTransactionsQueryKey([client.key]), + }) + queryClient.invalidateQueries({ + queryKey: getTxpoolQueryKey([client.key]), + }) + }) + ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render( diff --git a/src/components/Header.tsx b/src/components/Header.tsx index 8b5ecd7..c1244ae 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -1,5 +1,5 @@ import { type ReactNode, useCallback, useMemo } from 'react' -import { Link, useLocation, useNavigate } from 'react-router-dom' +import { Link } from 'react-router-dom' import { formatGwei } from 'viem' import { Tooltip } from '~/components' @@ -30,7 +30,6 @@ import { useAccountStore, useNetworkStore, useSessionsStore } from '~/zustand' import * as styles from './Header.css' const contentMessenger = getMessenger('wallet:contentScript') -const inpageMessenger = getMessenger('wallet:inpage') export function Header({ isNetworkOffline }: { isNetworkOffline?: boolean }) { const { type } = useAppMeta() @@ -59,8 +58,7 @@ export function Header({ isNetworkOffline }: { isNetworkOffline?: boolean }) { - {/** TODO: Remove this once EIP-6963 is widely adopted across wallets & dapps. */} - + @@ -219,27 +217,24 @@ function CollapseButton() { ) } -function ReinjectButton() { - const handleInject = useCallback(() => { - inpageMessenger.send('injectProvider', undefined) - }, []) - +function SettingsButton() { return ( - - - - + + + + + + ) } @@ -248,9 +243,6 @@ function ReinjectButton() { // Middle Bar function Network() { - const { pathname } = useLocation() - const navigate = useNavigate() - const { network } = useNetworkStore() return ( - - { - e.preventDefault() - navigate(`/networks/${encodeURIComponent(network.rpcUrl)}`, { - replace: pathname.includes( - `/networks/${encodeURIComponent(network.rpcUrl)}`, - ), - }) - }} - variant="ghost primary" - height="24px" - symbol="gearshape.fill" - /> - diff --git a/src/design-system/symbols/generated/index.ts b/src/design-system/symbols/generated/index.ts index 24b1510..b958058 100644 --- a/src/design-system/symbols/generated/index.ts +++ b/src/design-system/symbols/generated/index.ts @@ -1 +1 @@ -export default {"arrow.clockwise":{"light":{"name":"arrow.clockwise","path":"M0.0027 17.3747C0.0027 24.0247 5.2927 29.3147 11.9227 29.3147C18.5527 29.3147 23.8327 24.0247 23.8327 17.3747C23.8327 16.8747 23.4727 16.5047 22.9527 16.5047C22.4627 16.5047 22.1527 16.8747 22.1527 17.3747C22.1527 23.0947 17.6127 27.6347 11.9227 27.6347C6.2227 27.6347 1.6927 23.0947 1.6927 17.3747C1.6927 11.6847 6.2227 7.1747 11.9227 7.1747C13.1627 7.1747 14.3827 7.3147 15.3227 7.5447L10.5927 12.2947C10.4327 12.4647 10.3527 12.6747 10.3527 12.8947C10.3527 13.3747 10.7027 13.7447 11.1827 13.7447C11.4427 13.7447 11.6327 13.6547 11.7827 13.4947L17.6127 7.6047C17.8527 7.3547 17.9327 7.1347 17.9327 6.9047C17.9327 6.6547 17.8327 6.4247 17.6127 6.2047L11.8027 0.2647C11.6527 0.0947 11.4527 0.0047 11.1727 0.0047C10.6927 0.0047 10.3527 0.3847 10.3527 0.8647C10.3527 1.0947 10.4327 1.2947 10.5927 1.4747L14.9127 5.8247C14.0927 5.6347 13.0327 5.4947 11.9227 5.4947C5.2927 5.4947 0.0027 10.7647 0.0027 17.3747Z","viewBox":{"width":23.830078125,"height":29.3125}},"regular":{"name":"arrow.clockwise","path":"M0.0027 17.3327C0.0027 24.0527 5.3827 29.4327 12.0827 29.4327C18.7827 29.4327 24.1627 24.0527 24.1627 17.3327C24.1627 16.6827 23.6927 16.2027 23.0227 16.2027C22.3827 16.2027 21.9527 16.6827 21.9527 17.3327C21.9527 22.8327 17.5727 27.2327 12.0827 27.2327C6.6027 27.2327 2.2027 22.8327 2.2027 17.3327C2.2027 11.8527 6.6027 7.4627 12.0827 7.4627C13.1227 7.4627 14.0927 7.5427 14.9027 7.7427L10.8127 11.7827C10.6127 12.0027 10.5027 12.2727 10.5027 12.5627C10.5027 13.1927 10.9627 13.6627 11.5827 13.6627C11.9227 13.6627 12.1827 13.5527 12.3727 13.3427L18.0027 7.6827C18.2527 7.4527 18.3427 7.1827 18.3427 6.8627C18.3427 6.5627 18.2227 6.2627 18.0027 6.0427L12.3727 0.3327C12.1827 0.1127 11.9127 0.0027 11.5827 0.0027C10.9627 0.0027 10.5027 0.4927 10.5027 1.1227C10.5027 1.4127 10.6127 1.6827 10.8027 1.9027L14.4327 5.4927C13.7227 5.3627 12.9227 5.2627 12.0827 5.2627C5.3827 5.2627 0.0027 10.6327 0.0027 17.3327Z","viewBox":{"width":24.158203125,"height":29.435546875}},"medium":{"name":"arrow.clockwise","path":"M0.0027 17.5141C0.0027 24.2941 5.4427 29.7541 12.2127 29.7541C18.9727 29.7541 24.4227 24.2941 24.4227 17.5141C24.4227 16.7041 23.8527 16.1341 23.0527 16.1341C22.2727 16.1341 21.7527 16.7041 21.7527 17.5141C21.7527 22.8141 17.5027 27.0741 12.2127 27.0741C6.9227 27.0741 2.6827 22.8141 2.6827 17.5141C2.6827 12.1841 6.8927 7.9541 12.1727 7.9541C13.0727 7.9541 13.9027 8.0241 14.6027 8.1741L10.8827 11.8641C10.6327 12.1241 10.5127 12.4141 10.5127 12.7741C10.5127 13.5241 11.0727 14.0941 11.8127 14.0941C12.1927 14.0941 12.5127 13.9741 12.7427 13.7241L18.3627 8.0641C18.6527 7.7841 18.7827 7.4541 18.7827 7.0841C18.7827 6.7241 18.6327 6.3741 18.3627 6.0941L12.7427 0.3941C12.5127 0.1341 12.1927 0.0041 11.8127 0.0041C11.0727 0.0041 10.5127 0.6041 10.5127 1.3441C10.5127 1.6941 10.6327 2.0141 10.8727 2.2541L14.1827 5.5241C13.5727 5.4041 12.8827 5.3341 12.1727 5.3341C5.4127 5.3341 0.0027 10.7441 0.0027 17.5141Z","viewBox":{"width":24.41796875,"height":29.75}},"semibold":{"name":"arrow.clockwise","path":"M0.0027 17.6545C0.0027 24.4745 5.4927 29.9845 12.3227 29.9845C19.1227 29.9845 24.6227 24.4745 24.6227 17.6545C24.6227 16.7345 23.9827 16.0945 23.0827 16.0945C22.1927 16.0945 21.5927 16.7345 21.5927 17.6545C21.5927 22.7945 17.4627 26.9345 12.3227 26.9345C7.1827 26.9345 3.0527 22.7945 3.0527 17.6545C3.0527 12.4445 7.1127 8.3445 12.2327 8.3445C13.0327 8.3445 13.7527 8.3945 14.3827 8.5145L10.9327 11.9345C10.6627 12.2045 10.5127 12.5345 10.5127 12.9345C10.5127 13.7845 11.1527 14.4245 11.9927 14.4245C12.4127 14.4245 12.7727 14.2845 13.0327 14.0145L18.6327 8.3645C18.9527 8.0345 19.1027 7.6745 19.1027 7.2445C19.1027 6.8345 18.9327 6.4345 18.6327 6.1345L13.0327 0.4545C12.7527 0.1545 12.4127 0.0045 11.9927 0.0045C11.1527 0.0045 10.5127 0.6845 10.5127 1.5145C10.5127 1.9245 10.6627 2.2545 10.9227 2.5445L13.9727 5.5545C13.4527 5.4445 12.8527 5.3845 12.2327 5.3845C5.4327 5.3845 0.0027 10.8245 0.0027 17.6545Z","viewBox":{"width":24.623046875,"height":29.982421875}},"bold":{"name":"arrow.clockwise","path":"M0.0027 17.8259C0.0027 24.7159 5.5627 30.2859 12.4427 30.2859C19.3327 30.2859 24.8827 24.7159 24.8827 17.8259C24.8827 16.7659 24.1427 16.0259 23.1027 16.0259C22.0827 16.0259 21.3827 16.7659 21.3827 17.8259C21.3827 22.7659 17.3927 26.7559 12.4427 26.7559C7.4927 26.7559 3.5227 22.7659 3.5227 17.8259C3.5227 12.7859 7.3927 8.8359 12.3327 8.8359C12.9727 8.8359 13.5627 8.8759 14.0827 8.9659L11.0027 12.0159C10.7027 12.3159 10.5127 12.6759 10.5127 13.1559C10.5127 14.1059 11.2627 14.8659 12.2227 14.8659C12.7027 14.8659 13.0927 14.6959 13.4127 14.3959L18.9927 8.7359C19.3627 8.3659 19.5327 7.9559 19.5327 7.4659C19.5327 6.9859 19.3427 6.5359 18.9927 6.1959L13.4127 0.5059C13.0927 0.1759 12.7027 -0.0041 12.2227 -0.0041C11.2627 -0.0041 10.5127 0.7759 10.5127 1.7459C10.5127 2.2259 10.7027 2.5859 10.9927 2.8959L13.7127 5.5659C13.3027 5.4959 12.8127 5.4459 12.3327 5.4459C5.4727 5.4459 0.0027 10.9259 0.0027 17.8259Z","viewBox":{"width":24.8828125,"height":30.283203125}},"heavy":{"name":"arrow.clockwise","path":"M0.0027 18.0593C0.0027 25.0593 5.6427 30.7193 12.6327 30.7193C19.6227 30.7193 25.2627 25.0593 25.2627 18.0593C25.2627 16.7893 24.3727 15.9093 23.1427 15.9093C21.9327 15.9093 21.0727 16.7893 21.0727 18.0593C21.0727 22.7193 17.2927 26.4993 12.6327 26.4993C7.9727 26.4993 4.2227 22.7193 4.2227 18.0593C4.2227 13.2593 7.8227 9.5393 12.4727 9.5393C12.8927 9.5393 13.2927 9.5593 13.6427 9.6093L11.1027 12.1293C10.7427 12.4793 10.5227 12.8793 10.5227 13.4493C10.5227 14.5893 11.4327 15.4893 12.5627 15.4893C13.1127 15.4893 13.5927 15.2993 13.9627 14.9293L19.5127 9.2793C19.9427 8.8493 20.1627 8.3493 20.1627 7.7693C20.1627 7.2093 19.9327 6.6693 19.5127 6.2593L13.9627 0.5993C13.5727 0.1893 13.1127 -0.0007 12.5527 -0.0007C11.4327 -0.0007 10.5227 0.9293 10.5227 2.0793C10.5227 2.6493 10.7427 3.0593 11.0927 3.3993L13.3327 5.5893C13.0727 5.5493 12.7527 5.5193 12.4727 5.5193C5.5127 5.5193 0.0027 11.0693 0.0027 18.0593Z","viewBox":{"width":25.265625,"height":30.720703125}}},"arrow.left.arrow.right":{"light":{"name":"arrow.left.arrow.right","path":"M0.3054 7.2421C-0.1046 7.6421 -0.0946 8.2621 0.3054 8.6421L7.3254 15.5721C7.5254 15.7621 7.7854 15.8721 8.0454 15.8721C8.5754 15.8721 8.9554 15.4921 8.9554 14.9521C8.9554 14.7021 8.8654 14.4821 8.6654 14.2821L5.4954 11.1821L2.8454 8.7621L5.8954 8.8621H24.8254C25.3454 8.8621 25.7454 8.4721 25.7454 7.9421C25.7454 7.3921 25.3454 7.0121 24.8254 7.0121H5.8954L2.8454 7.1121L5.4954 4.7021L8.6654 1.5821C8.8654 1.3921 8.9554 1.1921 8.9554 0.9121C8.9554 0.3821 8.5754 0.0021 8.0454 0.0021C7.7854 0.0021 7.5254 0.1121 7.3254 0.3121ZM25.4454 24.3521C25.8654 23.9521 25.8554 23.3521 25.4454 22.9721L18.4354 16.0221C18.2354 15.8321 17.9754 15.7221 17.7254 15.7221C17.1754 15.7221 16.8054 16.1021 16.8054 16.6421C16.8054 16.9021 16.8854 17.1221 17.0954 17.3121L20.2654 20.4121L22.9154 22.8321L19.8554 22.7321H0.9354C0.4154 22.7321 0.0054 23.1221 0.0054 23.6521C0.0054 24.2021 0.4154 24.5821 0.9354 24.5821H19.8554L22.9154 24.4821L20.2654 26.8921L17.0954 30.0121C16.8854 30.2021 16.8054 30.4021 16.8054 30.6821C16.8054 31.2121 17.1754 31.5921 17.7254 31.5921C17.9754 31.5921 18.2354 31.4821 18.4354 31.2821Z","viewBox":{"width":25.757855230538606,"height":31.595703125}},"regular":{"name":"arrow.left.arrow.right","path":"M0.4137 7.2739C-0.1463 7.8039 -0.1263 8.6039 0.4137 9.1039L7.4537 15.9939C7.6937 16.2439 8.0537 16.3939 8.3537 16.3939C9.0737 16.3939 9.5737 15.8839 9.5737 15.1739C9.5737 14.8339 9.4437 14.5639 9.2137 14.3239L6.2737 11.4839L3.7337 9.2839L6.8937 9.4239H25.1537C25.8637 9.4239 26.3737 8.9139 26.3737 8.1939C26.3737 7.4739 25.8637 6.9739 25.1537 6.9739H6.8937L3.7337 7.0939L6.2737 4.9039L9.2137 2.0539C9.4437 1.8139 9.5737 1.5539 9.5737 1.2039C9.5737 0.4939 9.0737 0.0039 8.3537 0.0039C8.0537 0.0039 7.6937 0.1339 7.4537 0.3839ZM25.9737 25.0239C26.5237 24.4839 26.5137 23.6939 25.9737 23.1739L18.9337 16.2839C18.6937 16.0539 18.3337 15.9039 18.0237 15.9039C17.2937 15.9039 16.8137 16.3939 16.8137 17.1039C16.8137 17.4639 16.9237 17.7339 17.1537 17.9539L20.1137 20.8039L22.6537 23.0139L19.4937 22.8739H1.2337C0.5237 22.8739 0.0037 23.3739 0.0037 24.0939C0.0037 24.8139 0.5237 25.3239 1.2337 25.3239H19.4937L22.6537 25.1839L20.1137 27.3839L17.1537 30.2239C16.9237 30.4639 16.8137 30.7339 16.8137 31.0939C16.8137 31.8039 17.2937 32.2939 18.0237 32.2939C18.3337 32.2939 18.6937 32.1439 18.9337 31.9139Z","viewBox":{"width":26.38167208701158,"height":32.29296875}},"medium":{"name":"arrow.left.arrow.right","path":"M0.4737 7.3463C-0.1663 7.9463 -0.1463 8.8863 0.4737 9.4863L7.5237 16.3763C7.8037 16.6563 8.2137 16.8163 8.5737 16.8163C9.4237 16.8163 10.0037 16.2263 10.0037 15.3963C10.0037 14.9963 9.8737 14.6663 9.5937 14.3963L6.6737 11.5763L4.5437 9.7463L7.4637 9.8563H25.2637C26.0837 9.8563 26.7037 9.2463 26.7037 8.4063C26.7037 7.5763 26.0837 6.9763 25.2637 6.9763H7.4637L4.5437 7.0863L6.6737 5.2463L9.5937 2.4363C9.8737 2.1563 10.0037 1.8363 10.0037 1.4263C10.0037 0.5863 9.4237 -0.0037 8.5737 -0.0037C8.2137 -0.0037 7.8037 0.1763 7.5237 0.4463ZM26.2337 25.4163C26.8637 24.7963 26.8537 23.8663 26.2337 23.2663L19.1837 16.3763C18.9037 16.1063 18.4837 15.9263 18.1337 15.9263C17.2837 15.9263 16.7037 16.5263 16.7037 17.3663C16.7037 17.7563 16.8337 18.0863 17.1137 18.3563L20.0337 21.1763L22.1637 23.0063L19.2337 22.8963H1.4337C0.6137 22.8963 0.0037 23.5063 0.0037 24.3463C0.0037 25.1863 0.6137 25.7863 1.4337 25.7863H19.2337L22.1637 25.6763L20.0337 27.5063L17.1137 30.3263C16.8337 30.5963 16.7037 30.9263 16.7037 31.3263C16.7037 32.1563 17.2837 32.7563 18.1337 32.7563C18.4837 32.7563 18.9037 32.5763 19.1837 32.3063Z","viewBox":{"width":26.702894943560732,"height":32.7578125}},"semibold":{"name":"arrow.left.arrow.right","path":"M0.5237 7.3704C-0.1763 8.0504 -0.1663 9.0904 0.5237 9.7604L7.5737 16.6404C7.8737 16.9404 8.3437 17.1404 8.7537 17.1404C9.6837 17.1404 10.3337 16.4704 10.3337 15.5404C10.3337 15.1104 10.1837 14.7204 9.8837 14.4404L6.9737 11.6304L5.1637 10.0804L7.9137 10.1704H25.3437C26.2637 10.1704 26.9437 9.4904 26.9437 8.5704C26.9437 7.6404 26.2637 6.9604 25.3437 6.9604H7.9137L5.1637 7.0504L6.9737 5.5004L9.8837 2.7104C10.1837 2.4104 10.3337 2.0204 10.3337 1.5904C10.3337 0.6604 9.6837 0.0004 8.7537 0.0004C8.3437 0.0004 7.8737 0.1904 7.5737 0.4904ZM26.4237 25.7204C27.1237 25.0304 27.1237 23.9804 26.4237 23.3204L19.3737 16.4504C19.0737 16.1304 18.6037 15.9404 18.2137 15.9404C17.2637 15.9404 16.6137 16.6104 16.6137 17.5404C16.6137 17.9804 16.7637 18.3604 17.0737 18.6504L19.9737 21.4504L21.7837 23.0104L19.0337 22.9104H1.6137C0.6837 22.9104 0.0037 23.5804 0.0037 24.5104C0.0037 25.4404 0.6837 26.1304 1.6137 26.1304H19.0337L21.7837 26.0304L19.9737 27.5904L17.0737 30.3804C16.7637 30.6804 16.6137 31.0504 16.6137 31.5004C16.6137 32.4304 17.2637 33.0904 18.2137 33.0904C18.6037 33.0904 19.0737 32.8904 19.3737 32.5904Z","viewBox":{"width":26.95068359375,"height":33.0859375}},"bold":{"name":"arrow.left.arrow.right","path":"M0.5854 7.4328C-0.2046 8.1928 -0.1946 9.3928 0.5854 10.1428L7.6454 17.0028C7.9854 17.3528 8.5054 17.5728 8.9754 17.5728C10.0354 17.5728 10.7754 16.8128 10.7754 15.7628C10.7754 15.2728 10.6154 14.8328 10.2554 14.4928L7.3754 11.7128L5.9854 10.5428L8.5054 10.6128H25.4554C26.4954 10.6128 27.2754 9.8328 27.2754 8.7928C27.2754 7.7428 26.4954 6.9628 25.4554 6.9628H8.5054L5.9854 7.0228L7.3754 5.8528L10.2554 3.0728C10.6154 2.7528 10.7754 2.3128 10.7754 1.8028C10.7754 0.7528 10.0354 0.0028 8.9754 0.0028C8.5054 0.0028 7.9854 0.2228 7.6454 0.5628ZM26.6854 26.1128C27.4854 25.3628 27.4654 24.1628 26.6854 23.4028L19.6354 16.5428C19.2954 16.2028 18.7754 15.9828 18.3054 15.9828C17.2454 15.9828 16.5054 16.7328 16.5054 17.7828C16.5054 18.2828 16.6654 18.7128 17.0254 19.0628L19.9054 21.8328L21.2854 23.0128L18.7754 22.9428H1.8354C0.7854 22.9428 0.0054 23.7228 0.0054 24.7628C0.0054 25.8128 0.7854 26.5928 1.8354 26.5928H18.7754L21.2854 26.5228L19.9054 27.7028L17.0254 30.4728C16.6654 30.8028 16.5054 31.2428 16.5054 31.7428C16.5054 32.8028 17.2454 33.5528 18.3054 33.5528C18.7754 33.5528 19.2954 33.3328 19.6354 32.9928Z","viewBox":{"width":27.278830884007856,"height":33.55078125}},"heavy":{"name":"arrow.left.arrow.right","path":"M0.6837 7.5209C-0.2363 8.3909 -0.2163 9.8009 0.6837 10.6809L7.7537 17.5409C8.1437 17.9409 8.7537 18.1809 9.2937 18.1809C10.5237 18.1809 11.4137 17.2909 11.4137 16.0609C11.4137 15.4909 11.2237 14.9709 10.8037 14.5709L7.9437 11.8409L7.1937 11.2009L9.3637 11.2409H25.6037C26.8237 11.2409 27.7537 10.3209 27.7537 9.0909C27.7537 7.8709 26.8237 6.9609 25.6037 6.9609H9.3637L7.1937 7.0009L7.9437 6.3409L10.8037 3.6109C11.2237 3.2309 11.4137 2.6909 11.4137 2.1209C11.4137 0.8909 10.5237 0.0009 9.2937 0.0009C8.7537 0.0009 8.1437 0.2609 7.7537 0.6409ZM27.0537 26.7009C27.9737 25.8109 27.9737 24.4209 27.0537 23.5309L20.0037 16.6709C19.6037 16.2709 19.0037 16.0209 18.4537 16.0209C17.2137 16.0209 16.3337 16.9109 16.3337 18.1409C16.3337 18.7209 16.5337 19.2409 16.9437 19.6309L19.7937 22.3709L20.5637 23.0109L18.3937 22.9709H2.1437C0.9137 22.9709 0.0037 23.8809 0.0037 25.1109C0.0037 26.3409 0.9137 27.2609 2.1437 27.2609H18.3937L20.5637 27.2209L19.7937 27.8609L16.9437 30.6009C16.5337 30.9809 16.3337 31.5109 16.3337 32.0909C16.3337 33.3209 17.2137 34.2109 18.4537 34.2109C19.0037 34.2109 19.6037 33.9509 20.0037 33.5609Z","viewBox":{"width":27.75390625,"height":34.20703125}}},"checkmark":{"light":{"name":"checkmark","path":"M8.3837 22.9457C8.8137 22.9457 9.1437 22.7457 9.3837 22.3957L22.6137 1.7057C22.8037 1.4057 22.8737 1.1757 22.8737 0.9557C22.8737 0.3857 22.4937 -0.0043 21.9337 -0.0043C21.5237 -0.0043 21.2837 0.1457 21.0537 0.5157L8.3237 20.5657L1.8837 12.4957C1.6237 12.1557 1.3637 12.0057 0.9837 12.0057C0.4137 12.0057 0.0037 12.3957 0.0037 12.9757C0.0037 13.2057 0.0937 13.4657 0.3037 13.7257L7.3237 22.3657C7.6337 22.7657 7.9437 22.9457 8.3837 22.9457Z","viewBox":{"width":22.873046875,"height":22.94140625}},"regular":{"name":"checkmark","path":"M8.9137 23.3641C9.5037 23.3641 9.9637 23.1041 10.2937 22.6041L23.2137 2.2541C23.4637 1.8641 23.5537 1.5541 23.5537 1.2441C23.5537 0.4941 23.0637 0.0041 22.3137 0.0041C21.7637 0.0041 21.4637 0.1741 21.1337 0.6941L8.8637 20.2641L2.4837 11.9241C2.1437 11.4441 1.8037 11.2541 1.3137 11.2541C0.5337 11.2541 0.0037 11.7841 0.0037 12.5341C0.0037 12.8541 0.1337 13.2041 0.3937 13.5341L7.4937 22.5741C7.9037 23.1041 8.3237 23.3641 8.9137 23.3641Z","viewBox":{"width":23.556640625,"height":23.365234375}},"medium":{"name":"checkmark","path":"M9.2437 23.7165C9.9637 23.7165 10.5137 23.4165 10.9137 22.8365L23.7637 2.7865C24.0537 2.3565 24.1537 1.9665 24.1537 1.5965C24.1537 0.6565 23.5037 -0.0035 22.5437 -0.0035C21.8737 -0.0035 21.4737 0.2365 21.0637 0.8765L9.1837 19.7465L3.0637 11.8765C2.6637 11.3465 2.2537 11.1265 1.6537 11.1265C0.6937 11.1265 0.0037 11.8165 0.0037 12.7565C0.0037 13.1665 0.1537 13.5665 0.4937 13.9865L7.5737 22.8465C8.0537 23.4365 8.5537 23.7165 9.2437 23.7165Z","viewBox":{"width":24.158203125,"height":23.720703125}},"semibold":{"name":"checkmark","path":"M9.5037 23.9842C10.3037 23.9842 10.9337 23.6642 11.3737 23.0142L24.1737 3.2142C24.5037 2.7242 24.6237 2.2842 24.6237 1.8642C24.6237 0.7842 23.8337 0.0042 22.7237 0.0042C21.9537 0.0042 21.4937 0.2742 21.0237 1.0142L9.4437 19.3642L3.5137 11.8442C3.0637 11.2842 2.5937 11.0342 1.9237 11.0342C0.8037 11.0342 0.0037 11.8242 0.0037 12.9242C0.0037 13.3942 0.1637 13.8542 0.5637 14.3242L7.6437 23.0542C8.1637 23.6942 8.7337 23.9842 9.5037 23.9842Z","viewBox":{"width":24.623046875,"height":23.98046875}},"bold":{"name":"checkmark","path":"M9.8437 24.3366C10.7737 24.3366 11.4937 23.9766 11.9937 23.2266L24.7337 3.7466C25.0837 3.1966 25.2337 2.6966 25.2337 2.2166C25.2337 0.9266 24.2837 -0.0034 22.9737 -0.0034C22.0637 -0.0034 21.5037 0.3266 20.9637 1.1866L9.7737 18.8266L4.1037 11.7866C3.5937 11.1866 3.0537 10.9066 2.2837 10.9066C0.9537 10.9066 0.0037 11.8566 0.0037 13.1366C0.0037 13.7166 0.1737 14.2166 0.6737 14.7766L7.7237 23.3266C8.3137 24.0166 8.9737 24.3366 9.8437 24.3366Z","viewBox":{"width":25.23828125,"height":24.3359375}},"heavy":{"name":"checkmark","path":"M10.3237 24.8448C11.4437 24.8448 12.3037 24.4348 12.8937 23.5548L25.5237 4.5248C25.9537 3.8948 26.1237 3.2848 26.1237 2.7048C26.1237 1.1648 24.9137 0.0048 23.3137 0.0048C22.2337 0.0048 21.5337 0.3948 20.8637 1.4348L10.2637 18.0648L4.9537 11.7048C4.3737 11.0148 3.7037 10.7048 2.7937 10.7048C1.1737 10.7048 0.0037 11.8648 0.0037 13.4348C0.0037 14.1548 0.2037 14.7348 0.8037 15.4248L7.8437 23.7248C8.5137 24.5048 9.3137 24.8448 10.3237 24.8448Z","viewBox":{"width":26.126953125,"height":24.841796875}}},"clock":{"light":{"name":"clock","path":"M13.7127 27.424C21.2227 27.424 27.4227 21.214 27.4227 13.714C27.4227 6.194 21.2227 0.004 13.7027 0.004C6.1927 0.004 0.0027 6.194 0.0027 13.714C0.0027 21.214 6.2027 27.424 13.7127 27.424ZM13.7127 25.644C7.0927 25.644 1.7727 20.314 1.7727 13.714C1.7727 7.094 7.0927 1.764 13.7027 1.764C20.3127 1.764 25.6527 7.094 25.6627 13.714C25.6627 20.314 20.3327 25.644 13.7127 25.644ZM6.2727 15.054H13.7027C14.1327 15.054 14.4627 14.724 14.4627 14.304V4.714C14.4627 4.294 14.1327 3.974 13.7027 3.974C13.2927 3.974 12.9627 4.294 12.9627 4.714V13.564H6.2727C5.8527 13.564 5.5327 13.894 5.5327 14.304C5.5327 14.724 5.8527 15.054 6.2727 15.054Z","viewBox":{"width":27.42578125,"height":27.42578125}},"regular":{"name":"clock","path":"M13.9427 27.8864C21.5727 27.8864 27.8927 21.5564 27.8927 13.9464C27.8927 6.3164 21.5627 -0.0036 13.9327 -0.0036C6.3127 -0.0036 0.0027 6.3164 0.0027 13.9464C0.0027 21.5564 6.3327 27.8864 13.9427 27.8864ZM13.9427 25.5664C7.4927 25.5664 2.3427 20.3964 2.3427 13.9464C2.3427 7.4964 7.4827 2.3264 13.9327 2.3264C20.3827 2.3264 25.5527 7.4964 25.5627 13.9464C25.5827 20.3964 20.4027 25.5664 13.9427 25.5664ZM6.7927 15.4264H13.9327C14.4627 15.4264 14.8927 15.0164 14.8927 14.4664V5.2464C14.8927 4.7164 14.4627 4.3064 13.9327 4.3064C13.4027 4.3064 12.9927 4.7164 12.9927 5.2464V13.5264H6.7927C6.2527 13.5264 5.8427 13.9364 5.8427 14.4664C5.8427 15.0164 6.2527 15.4264 6.7927 15.4264Z","viewBox":{"width":27.890625,"height":27.890625}},"medium":{"name":"clock","path":"M14.1227 28.2441C21.8427 28.2441 28.2427 21.8641 28.2427 14.1241C28.2427 6.3941 21.8427 0.0041 14.1127 0.0041C6.3827 0.0041 0.0027 6.3941 0.0027 14.1241C0.0027 21.8641 6.4027 28.2441 14.1227 28.2441ZM14.1227 25.4741C7.8327 25.4741 2.7927 20.4141 2.7927 14.1241C2.7927 7.8341 7.8227 2.7841 14.1127 2.7841C20.4027 2.7841 25.4527 7.8341 25.4727 14.1241C25.4727 20.4141 20.4127 25.4741 14.1227 25.4741ZM7.2027 15.8141H14.1127C14.7227 15.8141 15.2027 15.3441 15.2027 14.7341V5.7741C15.2027 5.1641 14.7227 4.6941 14.1127 4.6941C13.5127 4.6941 13.0327 5.1641 13.0327 5.7741V13.6541H7.2027C6.5927 13.6541 6.1227 14.1241 6.1227 14.7341C6.1227 15.3441 6.5927 15.8141 7.2027 15.8141Z","viewBox":{"width":28.24609375,"height":28.24609375}},"semibold":{"name":"clock","path":"M14.2627 28.5209C22.0827 28.5209 28.5227 22.0809 28.5227 14.2609C28.5227 6.4509 22.0627 0.0009 14.2427 0.0009C6.4427 0.0009 0.0027 6.4509 0.0027 14.2609C0.0027 22.0809 6.4427 28.5209 14.2627 28.5209ZM14.2627 25.3909C8.0927 25.3909 3.1427 20.4209 3.1427 14.2609C3.1427 8.0909 8.0827 3.1309 14.2427 3.1309C20.4227 3.1309 25.3727 8.0909 25.3927 14.2609C25.4027 20.4209 20.4227 25.3909 14.2627 25.3909ZM7.5327 16.1309H14.2427C14.9127 16.1309 15.4327 15.6009 15.4327 14.9409V6.1809C15.4327 5.5109 14.9127 4.9909 14.2427 4.9909C13.5927 4.9909 13.0727 5.5109 13.0727 6.1809V13.7509H7.5327C6.8627 13.7509 6.3427 14.2709 6.3427 14.9409C6.3427 15.6009 6.8627 16.1309 7.5327 16.1309Z","viewBox":{"width":28.51953125,"height":28.51953125}},"bold":{"name":"clock","path":"M14.4327 28.8886C22.3627 28.8886 28.8727 22.3686 28.8727 14.4386C28.8727 6.5186 22.3527 -0.0014 14.4327 -0.0014C6.5127 -0.0014 0.0027 6.5186 0.0027 14.4386C0.0027 22.3686 6.5227 28.8886 14.4327 28.8886ZM14.4327 25.2886C8.4327 25.2886 3.6127 20.4486 3.6127 14.4386C3.6127 8.4386 8.4227 3.5986 14.4327 3.5986C20.4427 3.5986 25.2827 8.4386 25.2827 14.4386C25.2927 20.4486 20.4527 25.2886 14.4327 25.2886ZM7.9427 16.5286H14.4327C15.1727 16.5286 15.7527 15.9386 15.7527 15.1986V6.6986C15.7527 5.9586 15.1727 5.3886 14.4327 5.3886C13.7027 5.3886 13.1127 5.9586 13.1127 6.6986V13.8886H7.9427C7.2027 13.8886 6.6327 14.4686 6.6327 15.1986C6.6327 15.9386 7.2027 16.5286 7.9427 16.5286Z","viewBox":{"width":28.875,"height":28.888671875}},"heavy":{"name":"clock","path":"M14.6927 29.4084C22.7727 29.4084 29.4127 22.7884 29.4127 14.7084C29.4127 6.6284 22.7727 -0.0016 14.6927 -0.0016C6.6127 -0.0016 0.0027 6.6284 0.0027 14.7084C0.0027 22.7884 6.6127 29.4084 14.6927 29.4084ZM14.6927 25.1384C8.9327 25.1384 4.2627 20.4784 4.2627 14.7084C4.2627 8.9284 8.9327 4.2784 14.6927 4.2784C20.4627 4.2784 25.1327 8.9284 25.1327 14.7084C25.1427 20.4784 20.4827 25.1384 14.6927 25.1384ZM8.5627 17.1184H14.6927C15.5427 17.1184 16.2127 16.4484 16.2127 15.5984V7.4784C16.2127 6.6184 15.5427 5.9584 14.6927 5.9584C13.8527 5.9584 13.1827 6.6184 13.1827 7.4784V14.0784H8.5627C7.7127 14.0784 7.0427 14.7384 7.0427 15.5984C7.0427 16.4484 7.7127 17.1184 8.5627 17.1184Z","viewBox":{"width":29.408203125,"height":29.408203125}}},"doc.on.doc":{"light":{"name":"doc.on.doc","path":"M0.0037 29.9826C0.0037 32.6626 1.3537 34.0126 3.9937 34.0126H17.0337C19.6837 34.0126 21.0237 32.6526 21.0237 29.9826V27.4026H23.6537C26.3037 27.4026 27.6537 26.0326 27.6537 23.3626V11.7626C27.6537 10.4626 27.3837 9.6026 26.5137 8.7126L19.0137 1.1326C18.1837 0.3026 17.2837 0.0026 16.1237 0.0026H10.6237C7.9837 0.0026 6.6137 1.3626 6.6137 4.0326V6.6326H3.9937C1.3637 6.6326 0.0037 8.0026 0.0037 10.6626ZM19.9337 15.8426L11.8937 7.7226C11.0237 6.8326 10.3037 6.6326 8.9737 6.6326H8.3137V4.0626C8.3137 2.5526 9.1337 1.6926 10.7037 1.6926H16.9137V9.1426C16.9137 10.6126 17.6137 11.2626 19.0337 11.2626H25.9637V23.3226C25.9637 24.8726 25.1437 25.7026 23.5737 25.7026H21.0237V18.9126C21.0237 17.4326 20.8337 16.7726 19.9337 15.8426ZM18.4537 8.9326V2.6426L25.4537 9.7226H19.2337C18.6737 9.7226 18.4537 9.5026 18.4537 8.9326ZM1.6937 29.9526V10.6926C1.6937 9.1826 2.5037 8.3126 4.0837 8.3126H9.0637V16.5426C9.0637 18.1126 9.8537 18.8526 11.3737 18.8526H19.3437V29.9526C19.3437 31.5026 18.5237 32.3326 16.9537 32.3326H4.0737C2.5037 32.3326 1.6937 31.5026 1.6937 29.9526ZM11.5537 17.2526C10.9237 17.2526 10.6637 16.9926 10.6637 16.3626V8.8326L18.9937 17.2526Z","viewBox":{"width":27.658203125,"height":34.015625}},"regular":{"name":"doc.on.doc","path":"M0.0037 30.104C0.0037 32.964 1.4037 34.394 4.2337 34.394H17.0937C19.9237 34.394 21.3237 32.954 21.3237 30.104V27.574H23.7237C26.5337 27.574 27.9637 26.124 27.9637 23.284V12.184C27.9637 10.504 27.6137 9.434 26.5937 8.384L19.6837 1.364C18.7137 0.374 17.5637 0.004 16.1037 0.004H10.8737C8.0537 0.004 6.6337 1.454 6.6337 4.294V6.824H4.2337C1.4237 6.824 0.0037 8.254 0.0037 11.114ZM20.0337 15.794L12.4937 8.124C11.4537 7.054 10.5937 6.824 9.0637 6.824H8.8337V4.334C8.8337 2.984 9.5537 2.204 10.9737 2.204H17.0237V9.214C17.0237 10.804 17.7837 11.554 19.3637 11.554H25.7537V23.244C25.7537 24.614 25.0237 25.374 23.5937 25.374H21.3237V19.424C21.3237 17.674 21.1237 16.914 20.0337 15.794ZM19.0037 8.884V3.284L25.1837 9.574H19.6737C19.1937 9.574 19.0037 9.364 19.0037 8.884ZM2.2037 30.064V11.144C2.2037 9.804 2.9237 9.024 4.3437 9.024H8.8337V16.954C8.8337 18.674 9.7037 19.534 11.4037 19.534H19.1237V30.064C19.1237 31.434 18.3937 32.194 16.9837 32.194H4.3337C2.9237 32.194 2.2037 31.434 2.2037 30.064ZM11.6637 17.474C11.1137 17.474 10.8937 17.254 10.8937 16.704V9.534L18.7037 17.474Z","viewBox":{"width":27.958984375,"height":34.3984375}},"medium":{"name":"doc.on.doc","path":"M0.0037 30.2817C0.0037 33.2317 1.5137 34.7717 4.4437 34.7717H17.2437C20.1637 34.7717 21.6737 33.2217 21.6737 30.2817V27.7517H23.9937C26.9237 27.7517 28.4337 26.2217 28.4337 23.2717V12.4417C28.4337 10.6517 28.0637 9.5017 26.9837 8.3917L20.1637 1.4517C19.1437 0.3917 17.9237 0.0017 16.3537 0.0017H11.1937C8.2837 0.0017 6.7537 1.5317 6.7537 4.4817V7.0017H4.4437C1.5137 7.0017 0.0037 8.5417 0.0037 11.4817ZM20.3037 15.9117L12.8937 8.3817C11.8437 7.3117 10.9537 7.0317 9.4337 7.0117V4.6317C9.4337 3.3817 10.1037 2.6817 11.4337 2.6817H17.1437V9.2117C17.1437 10.9117 18.0437 11.7817 19.7237 11.7817H25.7537V23.1017C25.7537 24.3817 25.1037 25.0717 23.7637 25.0717H21.6737V19.7717C21.6737 17.9217 21.4537 17.0717 20.3037 15.9117ZM19.3837 8.8717V3.7917L25.0637 9.5417H20.0537C19.5937 9.5417 19.3837 9.3517 19.3837 8.8717ZM2.6837 30.1217V11.6517C2.6837 10.3917 3.3337 9.6817 4.6637 9.6817H8.8637V17.1717C8.8637 19.1317 9.8337 20.0817 11.7737 20.0817H18.9937V30.1217C18.9937 31.3917 18.3337 32.0917 17.0037 32.0917H4.6637C3.3337 32.0917 2.6837 31.3917 2.6837 30.1217ZM12.0337 17.7217C11.4737 17.7217 11.2237 17.4717 11.2237 16.9117V10.2017L18.6237 17.7217Z","viewBox":{"width":28.4375,"height":34.767578125}},"semibold":{"name":"doc.on.doc","path":"M0.0037 30.4321C0.0037 33.4721 1.5837 35.0721 4.5937 35.0721H17.3537C20.3437 35.0721 21.9437 33.4521 21.9437 30.4321V27.9021H24.2137C27.2037 27.9021 28.8037 26.3021 28.8037 23.2821V12.6421C28.8037 10.7621 28.4137 9.5521 27.2937 8.4121L20.5337 1.5221C19.4737 0.4421 18.1837 0.0021 16.5337 0.0021H11.4537C8.4637 0.0021 6.8637 1.6121 6.8637 4.6321V7.1621H4.5937C1.6037 7.1621 0.0037 8.7621 0.0037 11.7821ZM20.5037 16.0121L13.1937 8.5821C12.1837 7.5721 11.2937 7.2321 9.9137 7.1821V4.8921C9.9137 3.7021 10.5137 3.0521 11.7737 3.0521H17.2537V9.2321C17.2537 11.0021 18.2537 11.9721 20.0037 11.9721H25.7537V23.0221C25.7537 24.2121 25.1537 24.8721 23.8937 24.8721H21.9437V20.0421C21.9437 18.1421 21.6937 17.2121 20.5037 16.0121ZM19.6837 8.8821V4.1821L24.9637 9.5421H20.3437C19.8937 9.5421 19.6837 9.3521 19.6837 8.8821ZM3.0537 30.1721V12.0421C3.0537 10.8521 3.6537 10.2021 4.9037 10.2021H8.8837V17.3521C8.8837 19.4821 9.9237 20.5121 12.0537 20.5121H18.8937V30.1721C18.8937 31.3721 18.2937 32.0221 17.0337 32.0221H4.8937C3.6537 32.0221 3.0537 31.3721 3.0537 30.1721ZM12.3137 17.9221C11.7437 17.9221 11.4837 17.6621 11.4837 17.0921V10.7421L18.5637 17.9221Z","viewBox":{"width":28.806640625,"height":35.068359375}},"bold":{"name":"doc.on.doc","path":"M0.0037 30.6235C0.0037 33.7535 1.6937 35.4535 4.8037 35.4535H17.5037C20.6037 35.4535 22.3037 33.7435 22.3037 30.6235V28.1135H24.5037C27.6037 28.1135 29.2837 26.4035 29.2837 23.2835V12.9235C29.2837 10.9235 28.8637 9.6235 27.6837 8.4235L21.0237 1.6135C19.9037 0.4735 18.5437 0.0035 16.7637 0.0035H11.8037C8.6937 0.0035 7.0037 1.7135 7.0037 4.8235V7.3535H4.8037C1.6937 7.3535 0.0037 9.0635 0.0037 12.1835ZM20.7837 16.1335L13.5937 8.8735C12.6337 7.9035 11.7537 7.5235 10.5237 7.3935V5.2235C10.5237 4.1335 11.0637 3.5235 12.2237 3.5235H17.3937V9.2435C17.3937 11.1135 18.5137 12.2235 20.3837 12.2235H25.7537V22.9035C25.7537 23.9935 25.2237 24.5835 24.0637 24.5835H22.3037V20.3835C22.3037 18.4035 22.0137 17.3935 20.7837 16.1335ZM20.0837 8.8835V4.7135L24.8437 9.5435H20.7437C20.2937 9.5435 20.0837 9.3335 20.0837 8.8835ZM3.5237 30.2435V12.5635C3.5237 11.4735 4.0637 10.8835 5.2237 10.8835H8.9237V17.5835C8.9237 19.9635 10.0637 21.0635 12.4237 21.0635H18.7737V30.2435C18.7737 31.3535 18.2237 31.9235 17.0637 31.9235H5.2237C4.0637 31.9235 3.5237 31.3535 3.5237 30.2435ZM12.6837 18.1835C12.1037 18.1835 11.8237 17.9135 11.8237 17.3135V11.4435L18.4837 18.1835Z","viewBox":{"width":29.28515625,"height":35.451171875}},"heavy":{"name":"doc.on.doc","path":"M0.0037 30.917C0.0037 34.167 1.8437 36.007 5.1037 36.007H17.7237C20.9637 36.007 22.8037 34.167 22.8037 30.917V28.397H24.9137C28.1537 28.397 29.9937 26.537 29.9937 23.287V13.307C29.9937 11.127 29.5137 9.737 28.2637 8.437L21.7237 1.747C20.5337 0.547 19.0437 -0.003 17.1037 -0.003H12.2937C9.0337 -0.003 7.1937 1.857 7.1937 5.117V7.627H5.1037C1.8437 7.627 0.0037 9.487 0.0037 12.747ZM21.1737 16.327L14.1637 9.267C13.2937 8.397 12.4737 7.957 11.4137 7.767V5.687C11.4137 4.727 11.8537 4.237 12.8837 4.237H17.5937V9.257C17.5937 11.297 18.8937 12.587 20.9137 12.587H25.7737V22.707C25.7737 23.667 25.3337 24.157 24.3037 24.157H22.8037V20.887C22.8037 18.797 22.4937 17.637 21.1737 16.327ZM20.6537 8.887V5.487L24.6637 9.527H21.2837C20.8637 9.527 20.6537 9.327 20.6537 8.887ZM4.2237 30.337V13.317C4.2237 12.357 4.6637 11.867 5.6837 11.867H8.9837V17.907C8.9837 20.627 10.2437 21.887 12.9637 21.887H18.5837V30.337C18.5837 31.297 18.1437 31.787 17.1137 31.787H5.6837C4.6637 31.787 4.2237 31.297 4.2237 30.337ZM13.2337 18.557C12.6237 18.557 12.3037 18.247 12.3037 17.627V12.457L18.3737 18.557Z","viewBox":{"width":29.99609375,"height":36.01171875}}},"hammer.fill":{"light":{"name":"hammer.fill","path":"M27.2213 18.6616C27.7113 19.1516 28.2513 19.1816 28.7613 18.6916L32.9213 14.5416C33.3813 14.0616 33.3513 13.4916 32.8813 13.0016L31.8413 11.9716C31.2613 11.4016 30.9313 11.3316 30.2613 11.3716L28.9413 11.4916L27.7813 10.3516L28.2013 8.5516C28.4013 7.6116 28.1213 6.7616 27.2213 5.8716L24.3313 3.0016C20.5713 -0.7284 13.8013 -1.1284 10.0613 2.6116C9.4613 3.2116 9.5413 3.8916 9.9113 4.3216C10.1913 4.6216 10.6713 4.7916 11.1513 4.6616C13.7913 3.9916 16.0913 3.9116 18.0813 5.2016L17.0213 7.8616C16.5913 8.9116 16.8113 9.6916 17.5113 10.4016L20.6113 13.5016C21.1313 14.0216 21.6413 14.1616 22.4713 14.0016L24.5413 13.5916L25.6813 14.7316L25.5913 16.0516C25.5513 16.7416 25.5913 17.0916 26.1813 17.6616ZM3.0313 30.2116C4.2113 31.3716 5.4913 31.2916 6.6813 29.9416L19.9313 15.0516L16.0513 11.1716L1.0913 24.3316C-0.2787 25.5416 -0.3487 26.8216 0.8113 27.9816Z","viewBox":{"width":33.251379021986935,"height":31.02382289067848}},"regular":{"name":"hammer.fill","path":"M27.4386 18.8749C28.0286 19.4349 28.6986 19.4749 29.2586 18.9149L33.3786 14.8249C33.9086 14.2949 33.8686 13.5849 33.2986 13.0249L32.3086 12.0249C31.7786 11.5049 31.4386 11.4249 30.8586 11.4649L29.2586 11.6549L28.2386 10.6349L28.6986 8.7049C28.9286 7.7649 28.5786 6.7649 27.5786 5.7649L24.8286 3.0449C21.0286 -0.7451 14.0286 -1.1651 10.1086 2.7449C9.4486 3.3949 9.5686 4.1349 9.9986 4.6049C10.3286 4.9149 10.8286 5.0849 11.3086 4.9349C13.9586 4.1349 16.2686 3.9849 18.2686 5.1749L17.2186 7.9349C16.7686 9.0949 17.0086 9.9249 17.7486 10.6749L20.7986 13.7249C21.3586 14.2849 21.9486 14.4449 22.8386 14.2649L25.0386 13.8149L26.0486 14.8449L25.8986 16.4449C25.8586 17.0449 25.9086 17.3949 26.4586 17.9049ZM3.1386 30.6449C4.3486 31.8649 5.7686 31.7649 6.9986 30.3549L20.0086 15.5549L15.9886 11.5349L1.1386 24.4949C-0.2814 25.7349 -0.3614 27.1449 0.8486 28.3749Z","viewBox":{"width":33.751729469845536,"height":31.492817370749094}},"medium":{"name":"hammer.fill","path":"M27.9049 19.2191C28.5749 19.8591 29.3849 19.9191 30.0049 19.2691L34.0949 15.1991C34.7149 14.5791 34.6749 13.7491 34.0149 13.0891L33.0449 12.1191C32.4749 11.5491 32.0849 11.4691 31.4549 11.5191L29.9649 11.6891L28.9849 10.7191L29.4249 8.8991C29.6649 7.8891 29.2949 6.8591 28.2349 5.7891L25.5249 3.0991C21.6249 -0.7709 14.4049 -1.1809 10.4149 2.7991C9.7249 3.5091 9.8049 4.3291 10.2349 4.8591C10.6049 5.2691 11.2149 5.4791 11.8349 5.2891C14.3949 4.5391 16.6649 4.3891 18.5649 5.4891L17.5949 8.0391C17.1149 9.2491 17.3649 10.1391 18.1649 10.9591L21.1049 13.9091C21.7949 14.5991 22.4749 14.7991 23.4649 14.6091L25.4949 14.1891L26.4649 15.1691L26.3149 16.6591C26.2649 17.3091 26.3349 17.6991 26.9349 18.2791ZM3.2549 31.3091C4.5549 32.5891 6.1149 32.5091 7.3949 31.0191L20.4549 16.0491L16.1849 11.7791L1.1849 24.8091C-0.3051 26.1091 -0.3851 27.6691 0.9049 28.9491Z","viewBox":{"width":34.53404048670482,"height":32.20618829980968}},"semibold":{"name":"hammer.fill","path":"M28.2461 19.4763C28.9961 20.1963 29.8961 20.2363 30.5961 19.5463L34.6561 15.4963C35.3261 14.8163 35.2861 13.8863 34.5761 13.1563L33.6161 12.1963C33.0061 11.5863 32.5761 11.5063 31.9261 11.5563L30.5161 11.7063L29.5561 10.7763L29.9661 9.0463C30.2261 7.9763 29.8461 6.9263 28.7561 5.8263L26.0561 3.1463C22.0961 -0.7837 14.6961 -1.1937 10.6661 2.8463C9.9261 3.5863 9.9861 4.4763 10.4361 5.0663C10.8161 5.5263 11.4961 5.7863 12.2461 5.5663C14.7261 4.8563 16.9861 4.6963 18.7961 5.7463L17.8961 8.1163C17.4061 9.3863 17.6361 10.3163 18.4861 11.1863L21.3561 14.0563C22.1361 14.8363 22.8961 15.0863 23.9361 14.8663L25.8561 14.4663L26.7961 15.4263L26.6461 16.8363C26.5761 17.5163 26.6561 17.9463 27.3061 18.5563ZM3.3461 31.8063C4.7061 33.1563 6.3761 33.0663 7.7161 31.5163L20.8061 16.4363L16.3361 11.9863L1.2461 25.0363C-0.3239 26.3963 -0.3939 28.0563 0.9561 29.3963Z","viewBox":{"width":35.13667042971586,"height":32.75480504692286}},"bold":{"name":"hammer.fill","path":"M28.7125 19.8427C29.5425 20.6527 30.5825 20.6927 31.3625 19.9027L35.3825 15.8927C36.1425 15.1227 36.1025 14.0627 35.3025 13.2427L34.3725 12.3127C33.7125 11.6427 33.2425 11.5427 32.5325 11.6127L31.2225 11.7527L30.3225 10.8627L30.7025 9.2527C30.9625 8.1127 30.5525 7.0227 29.4225 5.8827L26.7525 3.2227C22.7025 -0.8173 15.0625 -1.2073 10.9725 2.9027C10.1825 3.7127 10.2125 4.6827 10.6725 5.3427C11.1025 5.9027 11.8625 6.2027 12.7825 5.9527C15.1725 5.2727 17.3725 5.0927 19.1125 6.0727L18.2925 8.2127C17.7725 9.5527 17.9925 10.5627 18.9025 11.4927L21.6625 14.2627C22.5725 15.1527 23.4425 15.4527 24.5625 15.2227L26.3125 14.8627L27.2325 15.7527L27.0625 17.0827C26.9825 17.7927 27.0925 18.2727 27.7825 18.9227ZM3.4825 32.4727C4.9025 33.9027 6.7125 33.8327 8.1225 32.1727L21.2525 16.9427L16.5525 12.2427L1.2925 25.3527C-0.3475 26.7727 -0.4175 28.5827 1.0125 30.0027Z","viewBox":{"width":35.92933313922065,"height":33.483838458989226}},"heavy":{"name":"hammer.fill","path":"M29.3956 20.338C30.3656 21.288 31.5856 21.338 32.4856 20.418L36.4456 16.448C37.3356 15.558 37.2856 14.328 36.3656 13.368L35.4756 12.448C34.7356 11.698 34.2056 11.608 33.4256 11.688L32.2656 11.798L31.4356 10.978L31.7556 9.538C32.0356 8.298 31.6056 7.148 30.3956 5.948L27.7656 3.308C23.5956 -0.852 15.6156 -1.232 11.4456 2.988C10.5856 3.868 10.5556 4.978 11.0456 5.728C11.5156 6.408 12.4156 6.788 13.5656 6.488C15.8056 5.858 17.9656 5.668 19.5556 6.548L18.8556 8.368C18.3056 9.768 18.5156 10.898 19.5256 11.918L22.1356 14.548C23.2156 15.628 24.2356 15.988 25.4856 15.738L27.0056 15.408L27.8456 16.238L27.6956 17.418C27.5756 18.178 27.7256 18.728 28.4956 19.468ZM3.6756 33.438C5.2056 34.968 7.2156 34.898 8.7256 33.138L21.9256 17.678L16.8556 12.598L1.3956 25.808C-0.3844 27.318 -0.4344 29.328 1.0956 30.868Z","viewBox":{"width":37.08609647258234,"height":34.52737665711565}}},"wallet.pass":{"light":{"name":"wallet.pass","path":"M3.9937 29.138H18.6037C21.2437 29.138 22.6037 27.768 22.6037 25.098V4.018C22.6037 1.358 21.2637 -0.002 18.6037 -0.002H14.5637C14.2037 -0.002 13.9737 0.248 13.9737 0.618C13.9737 2.128 12.8837 3.238 11.3037 3.238C9.7237 3.238 8.6237 2.128 8.6237 0.618C8.6237 0.248 8.3937 -0.002 8.0437 -0.002H3.9937C1.3537 -0.002 0.0037 1.358 0.0037 4.018V25.098C0.0037 27.768 1.3637 29.138 3.9937 29.138ZM4.0837 27.438C2.5037 27.438 1.6937 26.578 1.6937 25.058V4.058C1.6937 2.518 2.5037 1.678 4.0837 1.678H7.1137C7.5337 3.638 9.1337 4.878 11.3037 4.878C13.4637 4.878 15.0837 3.638 15.5037 1.678H18.5237C20.0937 1.678 20.9137 2.518 20.9137 4.058V25.058C20.9137 26.578 20.0937 27.438 18.5237 27.438ZM5.9337 9.718H16.6837C17.0637 9.718 17.3637 9.438 17.3637 9.038C17.3637 8.658 17.0637 8.368 16.6837 8.368H5.9337C5.5337 8.368 5.2537 8.658 5.2537 9.038C5.2537 9.438 5.5337 9.718 5.9337 9.718ZM5.9337 14.708H11.1137C11.4937 14.708 11.8037 14.408 11.8037 14.038C11.8037 13.658 11.4937 13.358 11.1137 13.358H5.9337C5.5337 13.358 5.2537 13.658 5.2537 14.038C5.2537 14.408 5.5337 14.708 5.9337 14.708Z","viewBox":{"width":22.599609375,"height":29.134765625}},"regular":{"name":"wallet.pass","path":"M4.2337 29.3173H18.7537C21.5737 29.3173 22.9937 27.8773 22.9937 25.0373V4.2973C22.9937 1.4373 21.5837 -0.0027 18.7537 -0.0027H14.6937C14.2337 -0.0027 13.9337 0.3273 13.9337 0.8173C13.9337 2.2373 12.9437 3.2373 11.4937 3.2373C10.0537 3.2373 9.0537 2.2373 9.0537 0.8173C9.0537 0.3273 8.7537 -0.0027 8.2837 -0.0027H4.2337C1.4037 -0.0027 0.0037 1.4373 0.0037 4.2973V25.0373C0.0037 27.8773 1.4237 29.3173 4.2337 29.3173ZM4.3437 27.1073C2.9237 27.1073 2.2037 26.3473 2.2037 24.9873V4.3373C2.2037 2.9673 2.9237 2.1973 4.3437 2.1973H7.1137C7.6337 4.1573 9.2837 5.3773 11.4937 5.3773C13.7137 5.3773 15.3637 4.1573 15.8837 2.1973H18.6437C20.0737 2.1973 20.7937 2.9673 20.7937 4.3373V24.9873C20.7937 26.3473 20.0737 27.1073 18.6437 27.1073ZM6.3137 10.1873H16.6937C17.1737 10.1873 17.5237 9.8173 17.5237 9.3273C17.5237 8.8573 17.1737 8.4873 16.6937 8.4873H6.3137C5.8237 8.4873 5.4737 8.8573 5.4737 9.3273C5.4737 9.8173 5.8237 10.1873 6.3137 10.1873ZM6.3137 15.0373H11.2237C11.7137 15.0373 12.0737 14.6673 12.0737 14.2073C12.0737 13.7273 11.7137 13.3573 11.2237 13.3573H6.3137C5.8237 13.3573 5.4737 13.7273 5.4737 14.2073C5.4737 14.6673 5.8237 15.0373 6.3137 15.0373Z","viewBox":{"width":22.99609375,"height":29.3125}},"medium":{"name":"wallet.pass","path":"M4.4437 29.6041H19.0037C21.9337 29.6041 23.4437 28.0541 23.4437 25.1141V4.4841C23.4437 1.5341 21.9337 0.0041 19.0037 0.0041H14.9137C14.4137 0.0041 14.0937 0.3141 14.0937 0.8241C14.0937 2.1741 13.1637 3.1841 11.7137 3.1841C10.2837 3.1841 9.3337 2.1741 9.3337 0.8241C9.3337 0.3141 9.0237 0.0041 8.5137 0.0041H4.4437C1.5137 0.0041 0.0037 1.5341 0.0037 4.4841V25.1141C0.0037 28.0541 1.5137 29.6041 4.4437 29.6041ZM4.6637 26.9241C3.3337 26.9241 2.6837 26.2041 2.6837 24.9541V4.6441C2.6837 3.3741 3.3337 2.6841 4.6637 2.6841H7.2837C7.8737 4.5841 9.5337 5.7441 11.7137 5.7441C13.9137 5.7441 15.5737 4.5841 16.1637 2.6841H18.7737C20.0937 2.6841 20.7637 3.3741 20.7637 4.6441V24.9541C20.7637 26.2041 20.0937 26.9241 18.7737 26.9241ZM6.7237 10.4841H16.7337C17.2237 10.4841 17.5937 10.1041 17.5937 9.5941C17.5937 9.1241 17.2237 8.7541 16.7337 8.7541H6.7237C6.2037 8.7541 5.8337 9.1241 5.8337 9.5941C5.8337 10.1041 6.2037 10.4841 6.7237 10.4841ZM6.7237 15.2341H11.5637C12.0537 15.2341 12.4237 14.8441 12.4237 14.3741C12.4237 13.8741 12.0537 13.4941 11.5637 13.4941H6.7237C6.2037 13.4941 5.8337 13.8741 5.8337 14.3741C5.8337 14.8441 6.2037 15.2341 6.7237 15.2341Z","viewBox":{"width":23.447265625,"height":29.599609375}},"semibold":{"name":"wallet.pass","path":"M4.5937 29.7998H19.1937C22.1937 29.7998 23.7937 28.1898 23.7937 25.1698V4.6198C23.7937 1.5898 22.1937 -0.0002 19.1937 -0.0002H15.0837C14.5437 -0.0002 14.2337 0.2998 14.2337 0.8098C14.2337 2.1098 13.3337 3.1398 11.8937 3.1398C10.4637 3.1398 9.5437 2.1098 9.5437 0.8098C9.5437 0.2998 9.2237 -0.0002 8.6937 -0.0002H4.5937C1.5837 -0.0002 0.0037 1.5898 0.0037 4.6198V25.1698C0.0037 28.1898 1.6037 29.7998 4.5937 29.7998ZM4.9037 26.7598C3.6537 26.7598 3.0537 26.0998 3.0537 24.9098V4.8798C3.0537 3.6798 3.6537 3.0398 4.9037 3.0398H7.4337C8.0637 4.8798 9.7237 5.9998 11.8937 5.9998C14.0637 5.9998 15.7237 4.8798 16.3537 3.0398H18.8837C20.1437 3.0398 20.7437 3.6798 20.7437 4.8798V24.9098C20.7437 26.0998 20.1437 26.7598 18.8837 26.7598ZM7.0237 10.7098H16.7637C17.2637 10.7098 17.6537 10.3098 17.6537 9.7998C17.6537 9.3098 17.2637 8.9298 16.7637 8.9298H7.0237C6.5037 8.9298 6.1237 9.3098 6.1237 9.7998C6.1237 10.3098 6.5037 10.7098 7.0237 10.7098ZM7.0237 15.3498H11.8137C12.3137 15.3498 12.7037 14.9798 12.7037 14.4898C12.7037 13.9898 12.3137 13.5898 11.8137 13.5898H7.0237C6.5037 13.5898 6.1237 13.9898 6.1237 14.4898C6.1237 14.9798 6.5037 15.3498 7.0237 15.3498Z","viewBox":{"width":23.7890625,"height":29.8046875}},"bold":{"name":"wallet.pass","path":"M4.8037 30.0902H19.4437C22.5437 30.0902 24.2437 28.3802 24.2437 25.2702V4.8302C24.2437 1.7002 22.5437 0.0002 19.4437 0.0002H15.3137C14.7237 0.0002 14.4137 0.3002 14.4137 0.8202C14.4137 2.0402 13.5537 3.1002 12.1237 3.1002C10.6937 3.1002 9.8137 2.0402 9.8137 0.8202C9.8137 0.3002 9.5037 0.0002 8.9237 0.0002H4.8037C1.6937 0.0002 0.0037 1.7002 0.0037 4.8302V25.2702C0.0037 28.3802 1.6937 30.0902 4.8037 30.0902ZM5.2237 26.5602C4.0637 26.5602 3.5237 25.9802 3.5237 24.8802V5.2102C3.5237 4.1202 4.0637 3.5302 5.2237 3.5302H7.6337C8.3137 5.3202 9.9637 6.3802 12.1237 6.3802C14.2737 6.3802 15.9237 5.3202 16.6137 3.5302H19.0137C20.1837 3.5302 20.7137 4.1202 20.7137 5.2102V24.8802C20.7137 25.9802 20.1837 26.5602 19.0137 26.5602ZM7.4337 11.0202H16.8037C17.3237 11.0202 17.7237 10.6102 17.7237 10.0902C17.7237 9.5802 17.3237 9.2002 16.8037 9.2002H7.4337C6.9037 9.2002 6.5037 9.5802 6.5037 10.0902C6.5037 10.6102 6.9037 11.0202 7.4337 11.0202ZM7.4337 15.5602H12.1537C12.6737 15.5602 13.0537 15.1802 13.0537 14.6702C13.0537 14.1502 12.6737 13.7402 12.1537 13.7402H7.4337C6.9037 13.7402 6.5037 14.1502 6.5037 14.6702C6.5037 15.1802 6.9037 15.5602 7.4337 15.5602Z","viewBox":{"width":24.240234375,"height":30.091796875}},"heavy":{"name":"wallet.pass","path":"M5.1037 30.4916H19.8137C23.0537 30.4916 24.8937 28.6416 24.8937 25.3716V5.1016C24.8937 1.8316 23.0537 0.0016 19.8137 0.0016H15.6237C14.9937 0.0016 14.6737 0.2716 14.6737 0.7916C14.6737 1.9116 13.8637 3.0216 12.4537 3.0216C11.0337 3.0216 10.2237 1.9116 10.2237 0.7916C10.2237 0.2716 9.8937 0.0016 9.2737 0.0016H5.1037C1.8437 0.0016 0.0037 1.8316 0.0037 5.1016V25.3716C0.0037 28.6416 1.8437 30.4916 5.1037 30.4916ZM5.6837 26.2616C4.6637 26.2616 4.2237 25.7716 4.2237 24.8116V5.6616C4.2237 4.7016 4.6637 4.2116 5.6837 4.2116H7.9137C8.6837 5.9216 10.3337 6.9016 12.4537 6.9016C14.5637 6.9016 16.2237 5.9216 16.9837 4.2116H19.2137C20.2337 4.2116 20.6737 4.7016 20.6737 5.6616V24.8116C20.6737 25.7716 20.2337 26.2616 19.2137 26.2616ZM8.0237 11.4416H16.8737C17.4037 11.4416 17.8137 11.0316 17.8137 10.4816C17.8137 9.9716 17.4037 9.5616 16.8737 9.5616H8.0237C7.4637 9.5616 7.0537 9.9716 7.0537 10.4816C7.0537 11.0316 7.4637 11.4416 8.0237 11.4416ZM8.0237 15.8316H12.6337C13.1837 15.8316 13.5737 15.4216 13.5737 14.9016C13.5737 14.3516 13.1837 13.9416 12.6337 13.9416H8.0237C7.4637 13.9416 7.0537 14.3516 7.0537 14.9016C7.0537 15.4216 7.4637 15.8316 8.0237 15.8316Z","viewBox":{"width":24.896484375,"height":30.48828125}}},"person.circle":{"light":{"name":"person.circle","path":"M13.7127 27.424C21.2227 27.424 27.4227 21.214 27.4227 13.714C27.4227 6.194 21.2227 0.004 13.7027 0.004C6.1927 0.004 0.0027 6.194 0.0027 13.714C0.0027 21.214 6.2027 27.424 13.7127 27.424ZM13.7127 25.644C7.0927 25.644 1.7727 20.314 1.7727 13.714C1.7727 7.094 7.0927 1.764 13.7027 1.764C20.3127 1.764 25.6527 7.094 25.6627 13.714C25.6627 20.314 20.3327 25.644 13.7127 25.644ZM13.7027 13.374C15.6427 13.374 17.2027 11.734 17.2027 9.554C17.2027 7.504 15.6427 5.814 13.7027 5.814C11.7727 5.814 10.2127 7.504 10.2127 9.554C10.2127 11.734 11.7727 13.354 13.7027 13.374ZM7.3527 20.684H20.0527C20.5227 20.684 20.7227 20.394 20.7227 19.964C20.7227 18.454 18.4827 14.474 13.7027 14.474C8.9327 14.474 6.6827 18.454 6.6827 19.964C6.6827 20.394 6.8927 20.684 7.3527 20.684Z","viewBox":{"width":27.42578125,"height":27.42578125}},"regular":{"name":"person.circle","path":"M13.9427 27.8864C21.5727 27.8864 27.8927 21.5564 27.8927 13.9464C27.8927 6.3164 21.5627 -0.0036 13.9327 -0.0036C6.3127 -0.0036 0.0027 6.3164 0.0027 13.9464C0.0027 21.5564 6.3327 27.8864 13.9427 27.8864ZM13.9427 25.5664C7.4927 25.5664 2.3427 20.3964 2.3427 13.9464C2.3427 7.4964 7.4827 2.3264 13.9327 2.3264C20.3827 2.3264 25.5527 7.4964 25.5627 13.9464C25.5827 20.3964 20.4027 25.5664 13.9427 25.5664ZM13.9327 13.5264C15.8727 13.5364 17.4427 11.8664 17.4427 9.6764C17.4427 7.6264 15.8727 5.9364 13.9327 5.9364C11.9927 5.9364 10.4227 7.6264 10.4227 9.6764C10.4227 11.8664 11.9927 13.5064 13.9327 13.5264ZM7.6827 20.8764H20.1827C20.7227 20.8764 20.9827 20.5064 20.9827 20.0164C20.9827 18.5164 18.7327 14.6264 13.9327 14.6264C9.1327 14.6264 6.8727 18.5164 6.8727 20.0164C6.8727 20.5064 7.1327 20.8764 7.6827 20.8764Z","viewBox":{"width":27.890625,"height":27.890625}},"medium":{"name":"person.circle","path":"M14.1227 28.2441C21.8427 28.2441 28.2427 21.8641 28.2427 14.1241C28.2427 6.3941 21.8427 0.0041 14.1127 0.0041C6.3827 0.0041 0.0027 6.3941 0.0027 14.1241C0.0027 21.8641 6.4027 28.2441 14.1227 28.2441ZM14.1227 25.4741C7.8327 25.4741 2.7927 20.4141 2.7927 14.1241C2.7927 7.8341 7.8227 2.7841 14.1127 2.7841C20.4027 2.7841 25.4527 7.8341 25.4727 14.1241C25.4727 20.4141 20.4127 25.4741 14.1227 25.4741ZM14.1127 13.6441C16.0327 13.6541 17.5827 12.0341 17.5827 9.8541C17.5827 7.8341 16.0327 6.1541 14.1127 6.1541C12.1927 6.1541 10.6327 7.8341 10.6327 9.8541C10.6327 12.0341 12.1927 13.6441 14.1127 13.6441ZM8.0627 20.9541H20.1627C20.7527 20.9541 21.0527 20.5441 21.0527 20.0141C21.0527 18.5341 18.8527 14.7241 14.1127 14.7241C9.3627 14.7241 7.1827 18.5341 7.1827 20.0141C7.1827 20.5441 7.4627 20.9541 8.0627 20.9541Z","viewBox":{"width":28.24609375,"height":28.24609375}},"semibold":{"name":"person.circle","path":"M14.2627 28.5209C22.0827 28.5209 28.5227 22.0809 28.5227 14.2609C28.5227 6.4509 22.0627 0.0009 14.2427 0.0009C6.4427 0.0009 0.0027 6.4509 0.0027 14.2609C0.0027 22.0809 6.4427 28.5209 14.2627 28.5209ZM14.2627 25.3909C8.0927 25.3909 3.1427 20.4209 3.1427 14.2609C3.1427 8.0909 8.0827 3.1309 14.2427 3.1309C20.4227 3.1309 25.3727 8.0909 25.3927 14.2609C25.4027 20.4209 20.4227 25.3909 14.2627 25.3909ZM14.2427 13.7509C16.1627 13.7709 17.6927 12.1409 17.6927 9.9909C17.6927 7.9809 16.1627 6.3209 14.2427 6.3209C12.3427 6.3209 10.8127 7.9809 10.8127 9.9909C10.8127 12.1409 12.3427 13.7409 14.2427 13.7509ZM8.3427 21.0309H20.1527C20.7827 21.0309 21.0927 20.5909 21.0927 20.0109C21.0927 18.5509 18.9627 14.7909 14.2427 14.7909C9.5427 14.7909 7.3927 18.5509 7.3927 20.0109C7.3927 20.5909 7.7127 21.0309 8.3427 21.0309Z","viewBox":{"width":28.51953125,"height":28.51953125}},"bold":{"name":"person.circle","path":"M14.4327 28.8886C22.3627 28.8886 28.8727 22.3686 28.8727 14.4386C28.8727 6.5186 22.3527 -0.0014 14.4327 -0.0014C6.5127 -0.0014 0.0027 6.5186 0.0027 14.4386C0.0027 22.3686 6.5227 28.8886 14.4327 28.8886ZM14.4327 25.2886C8.4327 25.2886 3.6127 20.4486 3.6127 14.4386C3.6127 8.4386 8.4227 3.5986 14.4327 3.5986C20.4427 3.5986 25.2827 8.4386 25.2827 14.4386C25.2927 20.4486 20.4527 25.2886 14.4327 25.2886ZM14.4327 13.8786C16.3127 13.8886 17.8327 12.2886 17.8327 10.1686C17.8327 8.1886 16.3127 6.5486 14.4327 6.5486C12.5527 6.5486 11.0327 8.1886 11.0327 10.1686C11.0327 12.2886 12.5527 13.8786 14.4327 13.8786ZM8.7227 21.1086H20.1427C20.8227 21.1086 21.1627 20.6286 21.1627 20.0186C21.1627 18.5686 19.0827 14.8886 14.4327 14.8886C9.7727 14.8886 7.6927 18.5686 7.6927 20.0186C7.6927 20.6286 8.0427 21.1086 8.7227 21.1086Z","viewBox":{"width":28.875,"height":28.888671875}},"heavy":{"name":"person.circle","path":"M14.6927 29.4084C22.7727 29.4084 29.4127 22.7884 29.4127 14.7084C29.4127 6.6284 22.7727 -0.0016 14.6927 -0.0016C6.6127 -0.0016 0.0027 6.6284 0.0027 14.7084C0.0027 22.7884 6.6127 29.4084 14.6927 29.4084ZM14.6927 25.1384C8.9327 25.1384 4.2627 20.4784 4.2627 14.7084C4.2627 8.9284 8.9327 4.2784 14.6927 4.2784C20.4627 4.2784 25.1327 8.9284 25.1327 14.7084C25.1427 20.4784 20.4827 25.1384 14.6927 25.1384ZM14.6927 14.0784C16.5427 14.0784 18.0327 12.5284 18.0327 10.4284C18.0327 8.4784 16.5427 6.8784 14.6927 6.8784C12.8527 6.8784 11.3627 8.4784 11.3627 10.4284C11.3627 12.5284 12.8527 14.0684 14.6927 14.0784ZM9.2727 21.2484H20.1227C20.8727 21.2484 21.2627 20.6884 21.2627 20.0284C21.2627 18.5984 19.2727 15.0284 14.6927 15.0284C10.1127 15.0284 8.1327 18.5984 8.1327 20.0284C8.1327 20.6884 8.5127 21.2484 9.2727 21.2484Z","viewBox":{"width":29.408203125,"height":29.408203125}}},"chevron.down":{"light":{"name":"chevron.down","path":"M11.3937 12.8694C11.6737 12.8694 11.9337 12.7394 12.1437 12.5194L22.5037 1.6094C22.6837 1.4394 22.7937 1.2194 22.7937 0.9394C22.7937 0.4094 22.3837 -0.0006 21.8437 -0.0006C21.6037 -0.0006 21.3437 0.0994 21.1637 0.2694L11.4037 10.5594L1.6137 0.2694C1.4537 0.0994 1.2037 -0.0006 0.9437 -0.0006C0.4137 -0.0006 0.0037 0.4094 0.0037 0.9394C0.0037 1.2194 0.1137 1.4394 0.2837 1.6294L10.6537 12.5394C10.8737 12.7394 11.1037 12.8694 11.3937 12.8694Z","viewBox":{"width":22.791015625,"height":12.865234375}},"regular":{"name":"chevron.down","path":"M11.8837 13.3751C12.2237 13.3751 12.5637 13.2351 12.7937 12.9751L23.3837 2.1351C23.6137 1.9051 23.7437 1.5951 23.7437 1.2551C23.7437 0.5451 23.2137 -0.0049 22.5037 -0.0049C22.1637 -0.0049 21.8437 0.1351 21.6137 0.3551L11.8837 10.3051L2.1337 0.3551C1.9137 0.1351 1.6037 -0.0049 1.2437 -0.0049C0.5337 -0.0049 0.0037 0.5451 0.0037 1.2551C0.0037 1.5951 0.1337 1.9051 0.3737 2.1451L10.9537 12.9751C11.2137 13.2351 11.5237 13.3751 11.8837 13.3751Z","viewBox":{"width":23.748046875,"height":13.37109375}},"medium":{"name":"chevron.down","path":"M12.1137 13.9032C12.5737 13.9032 13.0037 13.7232 13.3437 13.3532L23.7637 2.7032C24.0637 2.4032 24.2137 2.0332 24.2137 1.5832C24.2137 0.6932 23.5137 0.0032 22.6437 0.0032C22.2037 0.0032 21.7937 0.1732 21.4937 0.4832L12.1137 10.0932L2.7337 0.4832C2.4237 0.1732 2.0237 0.0032 1.5837 0.0032C0.6937 0.0032 0.0037 0.6932 0.0037 1.5832C0.0037 2.0232 0.1637 2.4032 0.4637 2.7032L10.8837 13.3532C11.2337 13.7232 11.6437 13.9032 12.1137 13.9032Z","viewBox":{"width":24.212890625,"height":13.904296875}},"semibold":{"name":"chevron.down","path":"M12.2937 14.333C12.8537 14.333 13.3337 14.113 13.7637 13.663L24.0537 3.143C24.4037 2.793 24.5837 2.363 24.5837 1.863C24.5837 0.833 23.7637 0.003 22.7337 0.003C22.2437 0.003 21.7637 0.223 21.3937 0.583L12.3037 9.943L3.1837 0.583C2.8137 0.223 2.3537 0.003 1.8337 0.003C0.8237 0.003 0.0037 0.833 0.0037 1.863C0.0037 2.363 0.1937 2.793 0.5337 3.143L10.8137 13.673C11.2637 14.113 11.7337 14.333 12.2937 14.333Z","viewBox":{"width":24.58203125,"height":14.328125}},"bold":{"name":"chevron.down","path":"M12.5237 14.8611C13.2037 14.8611 13.7837 14.6011 14.3137 14.0511L24.4337 3.7011C24.8437 3.2911 25.0437 2.8011 25.0437 2.2011C25.0437 0.9811 24.0737 0.0011 22.8737 0.0011C22.2837 0.0011 21.7237 0.2411 21.2737 0.7011L12.5337 9.7211L3.7837 0.7011C3.3337 0.2411 2.7737 0.0011 2.1737 0.0011C0.9737 0.0011 0.0037 0.9811 0.0037 2.2011C0.0037 2.7911 0.2037 3.2811 0.6137 3.7011L10.7337 14.0511C11.2937 14.6111 11.8537 14.8611 12.5237 14.8611Z","viewBox":{"width":25.046875,"height":14.861328125}},"heavy":{"name":"chevron.down","path":"M12.8637 15.6533C13.7437 15.6533 14.4137 15.3433 15.1237 14.6333L24.9737 4.5433C25.4937 4.0333 25.7337 3.4333 25.7337 2.7033C25.7337 1.2333 24.5237 0.0033 23.0637 0.0033C22.3437 0.0033 21.6537 0.3033 21.0937 0.8933L12.8937 9.4033L4.6437 0.8933C4.0837 0.3133 3.4037 0.0033 2.6637 0.0033C1.2037 0.0033 0.0037 1.2333 0.0037 2.7033C0.0037 3.4333 0.2437 4.0233 0.7537 4.5533L10.6237 14.6333C11.3337 15.3533 12.0137 15.6533 12.8637 15.6533Z","viewBox":{"width":25.73046875,"height":15.654296875}}},"chevron.right.2":{"light":{"name":"chevron.right.2","path":"M0.9437 22.7934C1.2137 22.7934 1.4337 22.6834 1.6237 22.5034L12.5337 12.1434C12.7437 11.9234 12.8637 11.6934 12.8637 11.4034C12.8637 11.1134 12.7437 10.8534 12.5237 10.6534L1.6137 0.2834C1.4237 0.1134 1.2137 0.0034 0.9437 0.0034C0.4137 0.0034 0.0037 0.4134 0.0037 0.9434C0.0037 1.1934 0.0937 1.4534 0.2737 1.6234L10.5437 11.3934L0.2737 21.1734C0.0937 21.3434 0.0037 21.5834 0.0037 21.8434C0.0037 22.3834 0.4137 22.7934 0.9437 22.7934ZM13.1637 22.7934C13.4237 22.7934 13.6437 22.6834 13.8337 22.5034L24.7437 12.1434C24.9637 11.9234 25.0837 11.6934 25.0837 11.4034C25.0837 11.1134 24.9537 10.8534 24.7337 10.6534L13.8237 0.2834C13.6437 0.1134 13.4237 0.0034 13.1637 0.0034C12.6237 0.0034 12.2137 0.4134 12.2137 0.9434C12.2137 1.1934 12.3137 1.4534 12.4837 1.6234L22.7637 11.3934L12.4837 21.1734C12.3137 21.3434 12.2137 21.5834 12.2137 21.8434C12.2137 22.3834 12.6237 22.7934 13.1637 22.7934Z","viewBox":{"width":25.087890625,"height":22.791015625}},"regular":{"name":"chevron.right.2","path":"M1.2437 23.752C1.6037 23.752 1.9037 23.612 2.1437 23.382L12.9737 12.792C13.2337 12.542 13.3737 12.222 13.3737 11.882C13.3737 11.522 13.2337 11.182 12.9737 10.962L2.1337 0.372C1.9037 0.132 1.6037 0.002 1.2437 0.002C0.5337 0.002 0.0037 0.542 0.0037 1.262C0.0037 1.582 0.1337 1.912 0.3537 2.142L10.3037 11.882L0.3537 21.612C0.1337 21.852 0.0037 22.162 0.0037 22.502C0.0037 23.212 0.5337 23.752 1.2437 23.752ZM13.4637 23.752C13.8237 23.752 14.1237 23.612 14.3537 23.382L25.1837 12.792C25.4437 12.542 25.5937 12.222 25.5937 11.882C25.5937 11.522 25.4437 11.182 25.1837 10.962L14.3537 0.372C14.1137 0.132 13.8237 0.002 13.4637 0.002C12.7537 0.002 12.2137 0.542 12.2137 1.262C12.2137 1.582 12.3637 1.912 12.5737 2.142L22.5337 11.882L12.5737 21.612C12.3637 21.852 12.2137 22.162 12.2137 22.502C12.2137 23.212 12.7537 23.752 13.4637 23.752Z","viewBox":{"width":25.59375,"height":23.748046875}},"medium":{"name":"chevron.right.2","path":"M1.5837 24.2244C2.0237 24.2244 2.4037 24.0644 2.7037 23.7644L13.3537 13.3444C13.7237 12.9744 13.9037 12.5744 13.9037 12.1144C13.9037 11.6344 13.7237 11.2244 13.3537 10.8844L2.7037 0.4644C2.4037 0.1644 2.0337 0.0044 1.5837 0.0044C0.6937 0.0044 0.0037 0.6944 0.0037 1.5844C0.0037 2.0144 0.1737 2.4244 0.4737 2.7344L10.0937 12.1044L0.4737 21.4944C0.1737 21.7944 0.0037 22.2044 0.0037 22.6444C0.0037 23.5244 0.6937 24.2244 1.5837 24.2244ZM13.8037 24.2244C14.2437 24.2244 14.6137 24.0644 14.9137 23.7644L25.5837 13.3444C25.9537 12.9744 26.1237 12.5744 26.1237 12.1144C26.1237 11.6344 25.9337 11.2244 25.5837 10.8844L14.9137 0.4644C14.6137 0.1644 14.2437 0.0044 13.8037 0.0044C12.9237 0.0044 12.2137 0.6944 12.2137 1.5844C12.2137 2.0144 12.4037 2.4244 12.7037 2.7344L22.3137 12.1044L12.7037 21.4944C12.4037 21.7944 12.2137 22.2044 12.2137 22.6444C12.2137 23.5244 12.9237 24.2244 13.8037 24.2244Z","viewBox":{"width":26.126953125,"height":24.2265625}},"semibold":{"name":"chevron.right.2","path":"M1.8637 24.5821C2.3537 24.5821 2.7937 24.3921 3.1437 24.0521L13.6537 13.7721C14.1137 13.3121 14.3237 12.8521 14.3237 12.2921C14.3137 11.7321 14.0937 11.2421 13.6537 10.8121L3.1337 0.5321C2.7937 0.1821 2.3637 0.0021 1.8637 0.0021C0.8237 0.0021 0.0037 0.8221 0.0037 1.8421C0.0037 2.3421 0.2037 2.8121 0.5737 3.1821L9.9237 12.2821L0.5737 21.3921C0.2237 21.7621 0.0037 22.2321 0.0037 22.7321C0.0037 23.7621 0.8237 24.5821 1.8637 24.5821ZM14.0637 24.5821C14.5737 24.5821 14.9937 24.3921 15.3537 24.0521L25.8837 13.7721C26.3337 13.3121 26.5337 12.8521 26.5337 12.2921C26.5337 11.7321 26.3137 11.2421 25.8837 10.8121L15.3537 0.5321C14.9937 0.1821 14.5737 0.0021 14.0637 0.0021C13.0437 0.0021 12.2137 0.8221 12.2137 1.8421C12.2137 2.3421 12.4237 2.8121 12.7937 3.1821L22.1437 12.2821L12.7937 21.3921C12.4237 21.7621 12.2137 22.2321 12.2137 22.7321C12.2137 23.7621 13.0437 24.5821 14.0637 24.5821Z","viewBox":{"width":26.537109375,"height":24.58203125}},"bold":{"name":"chevron.right.2","path":"M2.2037 25.0445C2.7937 25.0445 3.2837 24.8445 3.7037 24.4345L14.0537 14.3145C14.6137 13.7545 14.8637 13.1945 14.8637 12.5245C14.8637 11.8445 14.6037 11.2645 14.0537 10.7345L3.7037 0.6145C3.2937 0.2045 2.8037 0.0045 2.2037 0.0045C0.9837 0.0045 0.0037 0.9745 0.0037 2.1745C0.0037 2.7645 0.2437 3.3245 0.6937 3.7745L9.7237 12.5145L0.6937 21.2645C0.2637 21.7145 0.0037 22.2745 0.0037 22.8745C0.0037 24.0745 0.9837 25.0445 2.2037 25.0445ZM14.4137 25.0445C15.0137 25.0445 15.5037 24.8445 15.9237 24.4345L26.2737 14.3145C26.8237 13.7545 27.0837 13.1945 27.0837 12.5245C27.0737 11.8445 26.8237 11.2645 26.2637 10.7345L15.9237 0.6145C15.5037 0.2045 15.0137 0.0045 14.4137 0.0045C13.1937 0.0045 12.2137 0.9745 12.2137 2.1745C12.2137 2.7645 12.4537 3.3245 12.9237 3.7745L21.9337 12.5145L12.9237 21.2645C12.4737 21.7145 12.2137 22.2745 12.2137 22.8745C12.2137 24.0745 13.1937 25.0445 14.4137 25.0445Z","viewBox":{"width":27.083984375,"height":25.046875}},"heavy":{"name":"chevron.right.2","path":"M2.6937 25.7263C3.4137 25.7263 4.0237 25.4863 4.5437 24.9763L14.6337 15.1063C15.3437 14.3963 15.6537 13.7163 15.6537 12.8663C15.6437 12.0063 15.3237 11.3163 14.6337 10.6063L4.5437 0.7563C4.0237 0.2463 3.4337 -0.0037 2.6937 -0.0037C1.2137 -0.0037 0.0037 1.2163 0.0037 2.6663C0.0037 3.3863 0.3037 4.0763 0.8937 4.6463L9.4037 12.8563L0.8937 21.0863C0.3137 21.6463 0.0037 22.3263 0.0037 23.0763C0.0037 24.5263 1.2137 25.7263 2.6937 25.7263ZM14.9137 25.7263C15.6437 25.7263 16.2237 25.4863 16.7637 24.9763L26.8337 15.1063C27.5637 14.3963 27.8637 13.7163 27.8637 12.8663C27.8637 12.0063 27.5537 11.3163 26.8337 10.6063L16.7637 0.7563C16.2437 0.2463 15.6437 -0.0037 14.9137 -0.0037C13.4437 -0.0037 12.2137 1.2163 12.2137 2.6663C12.2137 3.3863 12.5137 4.0763 13.0937 4.6463L21.6137 12.8563L13.0937 21.0863C12.5237 21.6463 12.2137 22.3263 12.2137 23.0763C12.2137 24.5263 13.4437 25.7263 14.9137 25.7263Z","viewBox":{"width":27.86328125,"height":25.73046875}}},"chevron.left":{"light":{"name":"chevron.left","path":"M0 11.3898C0 11.6598 0.1 11.8898 0.3 12.0898L11.24 22.4898C11.42 22.6698 11.65 22.7598 11.91 22.7598C12.44 22.7598 12.85 22.3698 12.85 21.8198C12.85 21.5598 12.74 21.3298 12.59 21.1598L2.31 11.3898L12.59 1.6098C12.74 1.4398 12.85 1.1998 12.85 0.9398C12.85 0.4098 12.44 -0.0002 11.91 -0.0002C11.65 -0.0002 11.42 0.0998 11.24 0.2698L0.3 10.6898C0.1 10.8798 0 11.1198 0 11.3898Z","viewBox":{"width":12.8515625,"height":22.763671875}},"regular":{"name":"chevron.left","path":"M0 11.8683C0 12.2083 0.12 12.5083 0.38 12.7683L11.22 23.3683C11.46 23.6083 11.76 23.7383 12.11 23.7383C12.82 23.7383 13.37 23.1983 13.37 22.4883C13.37 22.1383 13.22 21.8383 13 21.5983L3.05 11.8683L13 2.1283C13.22 1.8983 13.37 1.5883 13.37 1.2483C13.37 0.5283 12.82 -0.0017 12.11 -0.0017C11.76 -0.0017 11.46 0.1183 11.22 0.3583L0.38 10.9683C0.12 11.2083 0 11.5283 0 11.8683Z","viewBox":{"width":13.37109375,"height":23.734375}},"medium":{"name":"chevron.left","path":"M-0.0016 12.1007C-0.0016 12.5607 0.1784 12.9607 0.5484 13.3207L11.2084 23.7507C11.4984 24.0507 11.8784 24.2007 12.3184 24.2007C13.2084 24.2007 13.9084 23.5107 13.9084 22.6107C13.9084 22.1807 13.7284 21.7807 13.4284 21.4807L3.8184 12.1007L13.4284 2.7207C13.7284 2.4107 13.9084 2.0107 13.9084 1.5707C13.9084 0.6807 13.2084 0.0007 12.3184 0.0007C11.8784 0.0007 11.4984 0.1507 11.2084 0.4507L0.5484 10.8807C0.1784 11.2407 0.0184 11.6307 -0.0016 12.1007Z","viewBox":{"width":13.904296875,"height":24.19921875}},"semibold":{"name":"chevron.left","path":"M-0.0006 12.2784C-0.0006 12.8384 0.2094 13.2984 0.6594 13.7384L11.1794 24.0384C11.5294 24.3884 11.9594 24.5684 12.4694 24.5684C13.4894 24.5684 14.3194 23.7484 14.3194 22.7184C14.3194 22.1984 14.1094 21.7484 13.7394 21.3784L4.3894 12.2684L13.7394 3.1684C14.1094 2.7984 14.3194 2.3384 14.3194 1.8284C14.3194 0.8084 13.4894 -0.0016 12.4694 -0.0016C11.9494 -0.0016 11.5294 0.1684 11.1794 0.5184L0.6594 10.8184C0.2094 11.2484 0.0094 11.7184 -0.0006 12.2784Z","viewBox":{"width":14.314453125,"height":24.568359375}},"bold":{"name":"chevron.left","path":"M0.0041 12.5245C0.0041 13.1945 0.2441 13.7545 0.8041 14.3045L11.1441 24.4345C11.5641 24.8445 12.0541 25.0445 12.6641 25.0445C13.8641 25.0445 14.8641 24.0745 14.8641 22.8745C14.8641 22.2545 14.6041 21.7145 14.1541 21.2645L5.1441 12.5145L14.1541 3.7745C14.6041 3.3345 14.8641 2.7745 14.8641 2.1745C14.8641 0.9845 13.8641 0.0045 12.6641 0.0045C12.0541 0.0045 11.5641 0.2045 11.1441 0.6145L0.8041 10.7445C0.2441 11.2745 0.0141 11.8445 0.0041 12.5245Z","viewBox":{"width":14.861328125,"height":25.046875}},"heavy":{"name":"chevron.left","path":"M-0.0039 12.8663C-0.0039 13.7163 0.2961 14.4063 1.0261 15.1063L11.1061 24.9763C11.6061 25.4963 12.2261 25.7263 12.9361 25.7263C14.4261 25.7263 15.6361 24.5263 15.6361 23.0663C15.6361 22.3263 15.3261 21.6463 14.7561 21.0863L6.2361 12.8563L14.7561 4.6463C15.3361 4.0863 15.6361 3.3863 15.6361 2.6663C15.6361 1.2163 14.4261 -0.0037 12.9361 -0.0037C12.2061 -0.0037 11.6061 0.2463 11.1061 0.7563L1.0261 10.6263C0.2961 11.3163 0.0161 12.0063 -0.0039 12.8663Z","viewBox":{"width":15.640625,"height":25.73046875}}},"trash":{"light":{"name":"trash","path":"M6.8782 30.1486H19.2782C21.0382 30.1486 22.3082 28.9286 22.3982 27.1786L23.4082 6.7686H25.3482C25.7982 6.7686 26.1382 6.4086 26.1382 5.9786C26.1382 5.5186 25.7882 5.1686 25.3482 5.1686H18.9082V2.9486C18.9082 1.1086 17.7082 -0.0014 15.7382 -0.0014H10.3882C8.4182 -0.0014 7.2282 1.1086 7.2282 2.9486V5.1686H0.7882C0.3682 5.1686 -0.0018 5.5386 -0.0018 5.9786C-0.0018 6.4086 0.3682 6.7686 0.7882 6.7686H2.7582L3.7782 27.1786C3.8582 28.9286 5.0982 30.1486 6.8782 30.1486ZM8.8982 3.0386C8.8982 2.1286 9.5182 1.5686 10.4682 1.5686H15.6582C16.6282 1.5686 17.2282 2.1286 17.2282 3.0386V5.1686H8.8982ZM7.0182 28.5486C6.1482 28.5486 5.4682 27.8786 5.4282 26.9986L4.4182 6.7686H21.6982L20.7282 26.9986C20.6882 27.8786 19.9982 28.5486 19.1282 28.5486ZM8.9982 25.9086C9.4082 25.9086 9.6782 25.6386 9.6682 25.2686L9.2182 10.1286C9.1982 9.7486 8.9282 9.4986 8.5482 9.4986C8.1382 9.4986 7.8582 9.7586 7.8582 10.1486L8.3082 25.2686C8.3282 25.6486 8.5882 25.9086 8.9982 25.9086ZM13.0882 25.9086C13.4982 25.9086 13.7682 25.6486 13.7682 25.2686V10.1486C13.7682 9.7586 13.4982 9.4986 13.0882 9.4986C12.6782 9.4986 12.3882 9.7586 12.3882 10.1486V25.2686C12.3882 25.6486 12.6782 25.9086 13.0882 25.9086ZM17.1582 25.9186C17.5582 25.9186 17.8282 25.6586 17.8382 25.2786L18.2882 10.1586C18.2882 9.7586 18.0182 9.4986 17.6082 9.4986C17.2282 9.4986 16.9482 9.7486 16.9382 10.1286L16.4882 25.2686C16.4782 25.6486 16.7482 25.9186 17.1582 25.9186Z","viewBox":{"width":26.140625,"height":30.146484375}},"regular":{"name":"trash","path":"M6.9682 30.4447H19.5082C21.4682 30.4447 22.7782 29.1747 22.8682 27.2247L23.8182 7.3447H25.4582C26.0182 7.3447 26.4682 6.8647 26.4682 6.3047C26.4682 5.7447 26.0182 5.2747 25.4582 5.2747H19.2082V3.1847C19.2082 1.2047 17.9282 0.0047 15.8182 0.0047H10.6182C8.5182 0.0047 7.2282 1.2047 7.2282 3.1847V5.2747H1.0282C0.4782 5.2747 -0.0018 5.7447 -0.0018 6.3047C-0.0018 6.8747 0.4782 7.3447 1.0282 7.3447H2.6682L3.6082 27.2347C3.7082 29.1847 4.9882 30.4447 6.9682 30.4447ZM9.4082 3.3247C9.4082 2.5447 9.9482 2.0347 10.7782 2.0347H15.6682C16.4882 2.0347 17.0382 2.5447 17.0382 3.3247V5.2747H9.4082ZM7.1682 28.3847C6.3882 28.3847 5.7982 27.7947 5.7582 26.9847L4.7982 7.3447H21.6182L20.7082 26.9847C20.6882 27.8047 20.0982 28.3847 19.2882 28.3847ZM9.1882 26.0447C9.7082 26.0447 10.0482 25.7147 10.0382 25.2347L9.6082 10.6047C9.5982 10.1347 9.2582 9.8147 8.7682 9.8147C8.2482 9.8147 7.8982 10.1447 7.9182 10.6247L8.3282 25.2347C8.3382 25.7347 8.6782 26.0447 9.1882 26.0447ZM13.2382 26.0447C13.7582 26.0447 14.1182 25.7147 14.1182 25.2347V10.6247C14.1182 10.1447 13.7582 9.8147 13.2382 9.8147C12.7182 9.8147 12.3582 10.1447 12.3582 10.6247V25.2347C12.3582 25.7147 12.7182 26.0447 13.2382 26.0447ZM17.2982 26.0447C17.7882 26.0447 18.1282 25.7347 18.1382 25.2347L18.5482 10.6247C18.5682 10.1447 18.2282 9.8147 17.7082 9.8147C17.2082 9.8147 16.8682 10.1347 16.8582 10.6247L16.4482 25.2347C16.4382 25.7147 16.7782 26.0447 17.2982 26.0447Z","viewBox":{"width":26.46875,"height":30.447265625}},"medium":{"name":"trash","path":"M7.2082 30.8545H19.7682C21.8582 30.8545 23.2182 29.5845 23.3082 27.4845L24.2382 7.7745H25.7482C26.4282 7.7745 26.9582 7.2645 26.9582 6.5745C26.9582 5.9045 26.4282 5.3845 25.7482 5.3845H19.6582V3.3345C19.6582 1.2445 18.3382 0.0045 16.0682 0.0045H10.8682C8.6182 0.0045 7.2782 1.2445 7.2782 3.3345V5.3845H1.1982C0.5482 5.3845 -0.0018 5.9045 -0.0018 6.5745C-0.0018 7.2645 0.5482 7.7745 1.1982 7.7745H2.7182L3.6482 27.4945C3.7482 29.6045 5.0882 30.8545 7.2082 30.8545ZM9.7882 3.4545C9.7882 2.7445 10.2782 2.2945 11.0482 2.2945H15.8882C16.6482 2.2945 17.1482 2.7445 17.1482 3.4545V5.3845H9.7882ZM7.4682 28.4345C6.7082 28.4345 6.1682 27.8945 6.1282 27.0845L5.2082 7.7745H21.7082L20.8182 27.0845C20.7982 27.8945 20.2482 28.4345 19.4682 28.4345ZM9.4482 26.2345C10.0182 26.2345 10.3882 25.8645 10.3782 25.3345L9.9682 11.0045C9.9482 10.4545 9.5682 10.1045 9.0282 10.1045C8.4482 10.1045 8.0782 10.4745 8.0982 11.0045L8.5082 25.3345C8.5182 25.8845 8.8982 26.2345 9.4482 26.2345ZM13.4782 26.2345C14.0582 26.2345 14.4382 25.8645 14.4382 25.3345V11.0045C14.4382 10.4745 14.0582 10.1045 13.4782 10.1045C12.9082 10.1045 12.5282 10.4745 12.5282 11.0045V25.3345C12.5282 25.8645 12.9082 26.2345 13.4782 26.2345ZM17.5182 26.2345C18.0582 26.2345 18.4282 25.8845 18.4482 25.3345L18.8682 11.0045C18.8782 10.4745 18.4982 10.1045 17.9382 10.1045C17.3882 10.1045 17.0082 10.4545 16.9982 11.0045L16.5682 25.3345C16.5582 25.8645 16.9382 26.2345 17.5182 26.2345Z","viewBox":{"width":26.9609375,"height":30.857421875}},"semibold":{"name":"trash","path":"M7.3682 31.1759H19.9582C22.1582 31.1759 23.5582 29.8859 23.6482 27.6759L24.5682 8.1259H25.9782C26.7382 8.1259 27.3282 7.5459 27.3282 6.7859C27.3282 6.0259 26.7382 5.4559 25.9782 5.4559H20.0182V3.4459C20.0182 1.2759 18.6382 -0.0041 16.2582 -0.0041H11.0482C8.6682 -0.0041 7.2982 1.2759 7.2982 3.4459V5.4559H1.3582C0.5982 5.4559 -0.0018 6.0259 -0.0018 6.7859C-0.0018 7.5459 0.5982 8.1259 1.3582 8.1259H2.7582L3.6782 27.6859C3.7782 29.8859 5.1582 31.1759 7.3682 31.1759ZM10.0882 3.5559C10.0882 2.8959 10.5382 2.4859 11.2482 2.4859H16.0482C16.7782 2.4859 17.2282 2.8959 17.2282 3.5559V5.4559H10.0882ZM7.7082 28.4759C6.9582 28.4759 6.4482 27.9459 6.4082 27.1359L5.5082 8.1259H21.7782L20.9082 27.1359C20.8782 27.9559 20.3682 28.4759 19.6082 28.4759ZM9.6482 26.3759C10.2682 26.3759 10.6682 25.9659 10.6482 25.3859L10.2382 11.2959C10.2282 10.7059 9.8182 10.3259 9.2282 10.3259C8.6182 10.3259 8.2182 10.7159 8.2282 11.2959L8.6382 25.4059C8.6582 25.9859 9.0682 26.3759 9.6482 26.3759ZM13.6682 26.3759C14.2782 26.3759 14.6882 25.9759 14.6882 25.4059V11.2959C14.6882 10.7059 14.2782 10.3259 13.6682 10.3259C13.0582 10.3259 12.6482 10.7059 12.6482 11.2959V25.4059C12.6482 25.9759 13.0582 26.3759 13.6682 26.3759ZM17.6782 26.3759C18.2682 26.3759 18.6782 25.9859 18.6882 25.4059L19.0982 11.2959C19.1182 10.7159 18.7182 10.3259 18.0982 10.3259C17.5182 10.3259 17.1082 10.7059 17.0882 11.2959L16.6782 25.3859C16.6682 25.9759 17.0582 26.3759 17.6782 26.3759Z","viewBox":{"width":27.330078125,"height":31.171875}},"bold":{"name":"trash","path":"M7.5982 31.572H20.2182C22.5582 31.572 23.9982 30.272 24.1082 27.932L24.9882 8.542H26.2782C27.1682 8.542 27.8182 7.912 27.8182 7.042C27.8182 6.182 27.1482 5.552 26.2782 5.552H20.4782V3.572C20.4782 1.282 19.0482 0.002 16.4982 0.002H11.2882C8.7482 0.002 7.3282 1.282 7.3282 3.572V5.552H1.5282C0.6682 5.552 -0.0018 6.182 -0.0018 7.042C-0.0018 7.912 0.6682 8.542 1.5282 8.542H2.8182L3.7182 27.932C3.8282 30.282 5.2482 31.572 7.5982 31.572ZM10.4682 3.682C10.4682 3.092 10.8782 2.732 11.5282 2.732H16.2682C16.9282 2.732 17.3382 3.092 17.3382 3.682V5.552H10.4682ZM8.0082 28.522C7.2982 28.522 6.8382 28.012 6.7982 27.212L5.9182 8.542H21.8582L21.0182 27.212C20.9882 28.032 20.5182 28.522 19.7982 28.522ZM9.9082 26.542C10.5982 26.542 11.0182 26.102 11.0082 25.472L10.5982 11.662C10.5782 11.022 10.1282 10.612 9.4882 10.612C8.8182 10.612 8.3982 11.032 8.4182 11.672L8.8182 25.482C8.8282 26.112 9.2882 26.542 9.9082 26.542ZM13.9082 26.542C14.5582 26.542 15.0082 26.112 15.0082 25.482V11.652C15.0082 11.022 14.5582 10.612 13.9082 10.612C13.2582 10.612 12.8082 11.022 12.8082 11.652V25.482C12.8082 26.112 13.2582 26.542 13.9082 26.542ZM17.9082 26.542C18.5382 26.542 18.9782 26.122 18.9882 25.482L19.3982 11.672C19.4182 11.032 18.9882 10.612 18.3382 10.612C17.6782 10.612 17.2382 11.022 17.2282 11.662L16.8182 25.472C16.7982 26.102 17.2282 26.542 17.9082 26.542Z","viewBox":{"width":27.822265625,"height":31.568359375}},"heavy":{"name":"trash","path":"M7.9282 32.1611H20.6082C23.1282 32.1611 24.6382 30.8611 24.7582 28.3011L25.6182 9.1911H26.7182C27.7682 9.1911 28.5382 8.4811 28.5382 7.4211C28.5382 6.4111 27.7682 5.6911 26.7182 5.6911H21.1482V3.7711C21.1482 1.3311 19.6482 0.0011 16.8682 0.0011H11.6482C8.8682 0.0011 7.3682 1.3311 7.3682 3.7711V5.6911H1.8082C0.7682 5.6911 -0.0018 6.4111 -0.0018 7.4211C-0.0018 8.4811 0.7682 9.1911 1.8082 9.1911H2.9082L3.7782 28.3011C3.8782 30.8611 5.3882 32.1611 7.9282 32.1611ZM11.0382 3.8711C11.0382 3.3911 11.3582 3.1011 11.9382 3.1011H16.5882C17.1582 3.1011 17.4882 3.3911 17.4882 3.8711V5.6911H11.0382ZM8.4582 28.5911C7.7782 28.5911 7.3782 28.1411 7.3582 27.3211L6.5182 9.1911H21.9982L21.1782 27.3211C21.1382 28.1411 20.7582 28.5911 20.0582 28.5911ZM10.2982 26.8011C11.0582 26.8011 11.5382 26.3011 11.5082 25.5811L11.1182 12.2111C11.0982 11.5011 10.5982 11.0211 9.8582 11.0211C9.1182 11.0211 8.6682 11.5011 8.6782 12.2211L9.0782 25.6111C9.1082 26.3311 9.5982 26.8011 10.2982 26.8011ZM14.2582 26.8011C14.9882 26.8011 15.4782 26.3311 15.4782 25.6211V12.1911C15.4782 11.4811 14.9882 11.0211 14.2582 11.0211C13.5382 11.0211 13.0582 11.4811 13.0582 12.1911V25.6211C13.0582 26.3311 13.5382 26.8011 14.2582 26.8011ZM18.2282 26.8011C18.9382 26.8011 19.4282 26.3311 19.4382 25.6111L19.8482 12.2211C19.8682 11.5011 19.3982 11.0211 18.6582 11.0211C17.9282 11.0211 17.4282 11.5011 17.4182 12.2111L17.0082 25.5911C16.9982 26.3011 17.4682 26.8011 18.2282 26.8011Z","viewBox":{"width":28.533203125,"height":32.15625}}},"xmark":{"light":{"name":"xmark","path":"M0.272 21.0125C0.642 21.3825 1.232 21.3825 1.582 21.0125L10.652 11.9625L19.702 21.0125C20.052 21.3825 20.652 21.3825 21.012 21.0125C21.372 20.6525 21.372 20.0725 21.012 19.7125L11.952 10.6525L21.012 1.5825C21.372 1.2325 21.382 0.6225 21.012 0.2725C20.642 -0.0875 20.052 -0.0875 19.702 0.2725L10.652 9.3325L1.582 0.2725C1.232 -0.0875 0.632 -0.0975 0.272 0.2725C-0.088 0.6425 -0.088 1.2325 0.272 1.5825L9.332 10.6525L0.272 19.7125C-0.088 20.0725 -0.098 20.6525 0.272 21.0125Z","viewBox":{"width":21.283739765126377,"height":21.28884253881319}},"regular":{"name":"xmark","path":"M0.352 21.3241C0.832 21.7841 1.622 21.7841 2.092 21.3241L10.842 12.5741L19.592 21.3241C20.052 21.7841 20.862 21.8041 21.322 21.3241C21.792 20.8441 21.792 20.0641 21.322 19.6041L12.572 10.8341L21.322 2.0841C21.792 1.6241 21.802 0.8241 21.322 0.3641C20.852 -0.1159 20.052 -0.1159 19.592 0.3641L10.842 9.1141L2.092 0.3641C1.622 -0.1159 0.822 -0.1259 0.352 0.3641C-0.108 0.8441 -0.108 1.6241 0.352 2.0841L9.102 10.8341L0.352 19.6041C-0.108 20.0641 -0.128 20.8541 0.352 21.3241Z","viewBox":{"width":21.680212929183472,"height":21.676794437328404}},"medium":{"name":"xmark","path":"M0.432 21.5716C1.042 22.1616 2.022 22.1616 2.592 21.5816L11.002 13.1816L19.412 21.5816C20.002 22.1616 20.982 22.1716 21.572 21.5716C22.162 20.9816 22.162 20.0016 21.582 19.4216L13.182 11.0016L21.582 2.5916C22.162 2.0216 22.172 1.0216 21.572 0.4516C20.972 -0.1384 20.002 -0.1384 19.412 0.4316L11.002 8.8416L2.592 0.4316C2.022 -0.1384 1.022 -0.1484 0.432 0.4316C-0.148 1.0416 -0.138 2.0316 0.432 2.5916L8.842 11.0016L0.432 19.4216C-0.138 19.9816 -0.148 21.0016 0.432 21.5716Z","viewBox":{"width":22.02027875010551,"height":22.02027875010551}},"semibold":{"name":"xmark","path":"M0.502 21.7698C1.192 22.4498 2.332 22.4298 2.992 21.7798L11.142 13.6298L19.272 21.7798C19.942 22.4498 21.092 22.4498 21.762 21.7698C22.432 21.0898 22.452 19.9498 21.782 19.2798L13.642 11.1298L21.782 2.9998C22.452 2.3298 22.452 1.1898 21.762 0.5098C21.082 -0.1602 19.942 -0.1702 19.272 0.4998L11.142 8.6398L2.992 0.4998C2.332 -0.1502 1.172 -0.1702 0.502 0.5098C-0.168 1.1898 -0.148 2.3398 0.492 2.9798L8.642 11.1298L0.492 19.2898C-0.148 19.9398 -0.178 21.0998 0.502 21.7698Z","viewBox":{"width":22.278346471730224,"height":22.283512524913746}},"bold":{"name":"xmark","path":"M0.5837 22.0207C1.3937 22.8107 2.7637 22.8007 3.5037 22.0507L11.3037 14.2407L19.1137 22.0507C19.8837 22.8107 21.2337 22.8107 22.0137 22.0207C22.8037 21.2107 22.8137 19.8907 22.0437 19.1107L14.2437 11.3007L22.0437 3.5107C22.8137 2.7307 22.8137 1.3907 22.0137 0.6007C21.2237 -0.1993 19.8837 -0.1993 19.1137 0.5707L11.3037 8.3807L3.5037 0.5707C2.7637 -0.1793 1.3837 -0.2093 0.5837 0.6007C-0.2063 1.3907 -0.1763 2.7607 0.5637 3.5107L8.3837 11.3007L0.5637 19.1207C-0.1763 19.8607 -0.2063 21.2407 0.5837 22.0207Z","viewBox":{"width":22.62016138756176,"height":22.62020713866065}},"heavy":{"name":"xmark","path":"M0.7188 22.4103C1.6888 23.3703 3.3688 23.3203 4.2588 22.4403L11.5688 15.1203L18.8588 22.4203C19.7988 23.3703 21.4288 23.3703 22.3888 22.3903C23.3588 21.4203 23.3688 19.8003 22.4288 18.8503L15.1388 11.5503L22.4288 4.2703C23.3688 3.3203 23.3588 1.7003 22.3888 0.7403C21.4188 -0.2297 19.7988 -0.2497 18.8588 0.7003L11.5688 7.9803L4.2588 0.6803C3.3688 -0.2097 1.6888 -0.2497 0.7188 0.7203C-0.2412 1.7003 -0.2112 3.3603 0.6888 4.2503L7.9988 11.5503L0.6888 18.8703C-0.2112 19.7603 -0.2512 21.4403 0.7188 22.4103Z","viewBox":{"width":23.12442341734022,"height":23.126159669214463}}},"arrow.right":{"light":{"name":"arrow.right","path":"M25.3937 10.2003C25.3937 9.9403 25.2837 9.7103 25.0737 9.5203L15.9437 0.3603C15.6837 0.1003 15.4537 0.0003 15.2037 0.0003C14.6837 0.0003 14.3037 0.3803 14.3037 0.8903C14.3037 1.1503 14.3837 1.3803 14.5437 1.5603L18.6337 5.6903L22.6637 9.4303L19.4937 9.2803H0.9037C0.3837 9.2803 0.0037 9.6703 0.0037 10.2003C0.0037 10.7303 0.3837 11.1103 0.9037 11.1103H19.4937L22.6837 10.9603L18.6337 14.7103L14.5437 18.8403C14.3837 19.0003 14.3037 19.2503 14.3037 19.5003C14.3037 20.0003 14.6837 20.3803 15.2037 20.3803C15.4537 20.3803 15.6637 20.3003 15.8737 20.1103L25.0737 10.8803C25.2837 10.6903 25.3937 10.4603 25.3937 10.2003Z","viewBox":{"width":25.388671875,"height":20.384765625}},"regular":{"name":"arrow.right","path":"M25.3937 10.3644C25.3937 10.0244 25.2537 9.7044 24.9737 9.4444L15.9137 0.4144C15.6137 0.1044 15.3237 0.0044 14.9937 0.0044C14.3237 0.0044 13.8037 0.4944 13.8037 1.1744C13.8037 1.5044 13.9137 1.8144 14.1337 2.0344L17.2037 5.1544L21.7937 9.3544L18.4937 9.1444H1.2037C0.4937 9.1444 0.0037 9.6544 0.0037 10.3644C0.0037 11.0744 0.4937 11.5844 1.2037 11.5844H18.4937L21.8037 11.3744L17.2037 15.5744L14.1337 18.6944C13.9137 18.8944 13.8037 19.2244 13.8037 19.5544C13.8037 20.2344 14.3237 20.7244 14.9937 20.7244C15.3237 20.7244 15.6137 20.6044 15.8837 20.3444L24.9737 11.2744C25.2537 11.0244 25.3937 10.7044 25.3937 10.3644Z","viewBox":{"width":25.388671875,"height":20.7265625}},"medium":{"name":"arrow.right","path":"M25.8437 10.5868C25.8437 10.1768 25.6637 9.7568 25.3437 9.4768L16.3537 0.4768C16.0137 0.1368 15.6437 -0.0032 15.2537 -0.0032C14.4137 -0.0032 13.7937 0.5968 13.7937 1.4268C13.7937 1.8468 13.9637 2.2168 14.2337 2.4868L17.2937 5.5868L21.3137 9.2868L18.1437 9.0868H1.5137C0.6137 9.0868 0.0037 9.6968 0.0037 10.5868C0.0037 11.4568 0.6137 12.0768 1.5137 12.0768H18.1437L21.3237 11.8768L17.2937 15.5768L14.2337 18.6768C13.9637 18.9368 13.7937 19.3068 13.7937 19.7268C13.7937 20.5468 14.4137 21.1668 15.2537 21.1668C15.6437 21.1668 15.9937 21.0168 16.3237 20.6968L25.3437 11.6868C25.6637 11.3868 25.8437 10.9968 25.8437 10.5868Z","viewBox":{"width":25.83984375,"height":21.1640625}},"semibold":{"name":"arrow.right","path":"M26.1637 10.7582C26.1637 10.2982 25.9737 9.8282 25.6337 9.4982L16.6837 0.5582C16.2937 0.1782 15.8837 -0.0018 15.4637 -0.0018C14.4737 -0.0018 13.7837 0.6982 13.7837 1.6282C13.7837 2.1182 13.9837 2.5282 14.3037 2.8482L17.3637 5.9382L20.9637 9.2282L17.8737 9.0482H1.7537C0.7137 9.0482 0.0037 9.7482 0.0037 10.7582C0.0037 11.7682 0.7137 12.4682 1.7537 12.4682H17.8737L20.9737 12.2882L17.3637 15.5882L14.3037 18.6782C13.9837 18.9782 13.7837 19.3882 13.7837 19.8882C13.7837 20.8082 14.4737 21.5082 15.4637 21.5082C15.8837 21.5082 16.2937 21.3382 16.6637 20.9882L25.6337 12.0182C25.9737 11.6882 26.1637 11.2282 26.1637 10.7582Z","viewBox":{"width":26.16796875,"height":21.505859375}},"bold":{"name":"arrow.right","path":"M26.6237 10.9806C26.6237 10.4406 26.3837 9.8806 26.0137 9.5106L17.1137 0.6306C16.6937 0.2006 16.2037 0.0006 15.7237 0.0006C14.5637 0.0006 13.7637 0.8106 13.7637 1.8706C13.7637 2.4706 14.0237 2.9406 14.3937 3.2906L17.4637 6.3706L20.4837 9.1606L17.5037 9.0006H2.0537C0.8237 9.0006 0.0037 9.7906 0.0037 10.9806C0.0037 12.1506 0.8237 12.9606 2.0537 12.9606H17.5037L20.4937 12.8006L17.4637 15.5906L14.3937 18.6506C14.0237 19.0006 13.7637 19.4806 13.7637 20.0706C13.7637 21.1406 14.5637 21.9406 15.7237 21.9406C16.2037 21.9406 16.6937 21.7406 17.1037 21.3306L26.0137 12.4406C26.3837 12.0706 26.6237 11.5106 26.6237 10.9806Z","viewBox":{"width":26.619140625,"height":21.943359375}},"heavy":{"name":"arrow.right","path":"M27.2737 11.2924C27.2737 10.6524 26.9837 9.9624 26.5637 9.5424L17.7637 0.7424C17.2637 0.2424 16.6637 0.0024 16.1037 0.0024C14.6837 0.0024 13.7537 0.9724 13.7537 2.2424C13.7537 2.9824 14.0837 3.5224 14.5337 3.9524L17.5937 7.0124L19.8137 9.0624L16.9837 8.9124H2.5037C0.9937 8.9124 0.0037 9.8724 0.0037 11.2924C0.0037 12.7324 0.9937 13.6824 2.5037 13.6824H16.9837L19.8137 13.5324L17.5937 15.5824L14.5337 18.6324C14.0837 19.0624 13.7537 19.6024 13.7537 20.3424C13.7537 21.6124 14.6837 22.5824 16.1037 22.5824C16.6637 22.5824 17.2637 22.3224 17.7437 21.8524L26.5637 13.0524C26.9837 12.6324 27.2737 11.9324 27.2737 11.2924Z","viewBox":{"width":27.275390625,"height":22.5859375}}},"arrowtriangle.left.and.line.vertical.and.arrowtriangle.right":{"light":{"name":"arrowtriangle.left.and.line.vertical.and.arrowtriangle.right","path":"M19.7793 28.0848C20.2093 28.0848 20.5593 27.7548 20.5593 27.3348V0.7548C20.5593 0.3248 20.2093 0.0048 19.7793 0.0048C19.3693 0.0048 18.9993 0.3248 18.9993 0.7548V27.3348C18.9993 27.7548 19.3693 28.0848 19.7793 28.0848ZM28.2693 21.8648L38.6893 15.4448C39.8393 14.7348 39.8793 13.3548 38.6893 12.6148L28.2693 6.2248C27.1393 5.5348 25.7993 5.9648 25.7993 7.5048V20.5748C25.7993 22.1348 27.1693 22.5348 28.2693 21.8648ZM0.8893 15.4448L11.2893 21.8648C12.4093 22.5348 13.7693 22.1348 13.7693 20.5748V7.5048C13.7693 5.9648 12.4293 5.5348 11.2893 6.2248L0.8893 12.6148C-0.3207 13.3548 -0.2707 14.7348 0.8893 15.4448ZM1.9693 14.3848C1.7093 14.2148 1.5993 13.9148 1.9793 13.6748L11.6193 7.7148C11.8093 7.6048 12.2193 7.5348 12.2193 8.0348V20.0248C12.2193 20.5248 11.8293 20.4948 11.6193 20.3548ZM27.9393 20.3548C27.7393 20.4948 27.3393 20.5248 27.3393 20.0248V8.0348C27.3393 7.5348 27.7693 7.6048 27.9393 7.7148L37.5793 13.6748C37.9693 13.9148 37.8593 14.2348 37.5993 14.3848Z","viewBox":{"width":39.56654036953535,"height":28.08203125}},"regular":{"name":"arrowtriangle.left.and.line.vertical.and.arrowtriangle.right","path":"M20.371 28.5845C20.901 28.5845 21.381 28.1645 21.381 27.6345V0.9445C21.381 0.4145 20.901 0.0045 20.371 0.0045C19.841 0.0045 19.371 0.4145 19.371 0.9445V27.6345C19.371 28.1645 19.841 28.5845 20.371 28.5845ZM1.021 15.9045L11.371 22.2445C12.671 23.0345 14.141 22.4745 14.141 20.8045V7.7645C14.141 6.1345 12.701 5.5345 11.371 6.3445L1.021 12.6845C-0.359 13.5245 -0.329 15.0645 1.021 15.9045ZM29.371 22.2445L39.731 15.9045C41.071 15.0645 41.101 13.5245 39.731 12.6845L29.371 6.3445C28.041 5.5345 26.601 6.1345 26.601 7.7645V20.8045C26.601 22.4745 28.071 23.0345 29.371 22.2445ZM29.081 20.2645C28.921 20.3545 28.601 20.3745 28.601 20.0245V8.5545C28.601 8.1845 28.941 8.2345 29.081 8.3245L38.251 14.0045C38.581 14.2145 38.471 14.4545 38.251 14.5745ZM2.491 14.5745C2.281 14.4345 2.161 14.2145 2.491 14.0045L11.661 8.3245C11.801 8.2345 12.141 8.1845 12.141 8.5545V20.0245C12.141 20.3745 11.831 20.3745 11.661 20.2645Z","viewBox":{"width":40.74565699461586,"height":28.587890625}},"medium":{"name":"arrowtriangle.left.and.line.vertical.and.arrowtriangle.right","path":"M21.1958 28.9423C21.8458 28.9423 22.3858 28.4623 22.3858 27.8223V1.1223C22.3858 0.4823 21.8258 0.0023 21.1958 0.0023C20.5858 0.0023 20.0058 0.4823 20.0058 1.1223V27.8223C20.0058 28.4623 20.5758 28.9423 21.1958 28.9423ZM30.8158 22.6723L41.2958 16.2523C42.7758 15.3523 42.7858 13.5923 41.2958 12.6923L30.8158 6.2723C29.3458 5.3823 27.7358 6.0823 27.7358 7.8923V21.0523C27.7358 22.8723 29.3758 23.5423 30.8158 22.6723ZM1.1058 16.2523L11.6058 22.6723C13.0258 23.5423 14.6658 22.8723 14.6658 21.0523V7.8923C14.6658 6.0823 13.0658 5.3823 11.6058 6.2723L1.1058 12.6923C-0.3742 13.5923 -0.3642 15.3523 1.1058 16.2523ZM2.9058 14.7123C2.7158 14.5923 2.6158 14.3923 2.9058 14.2223L11.8858 8.6823C12.0258 8.6023 12.3258 8.5623 12.3258 8.8823V20.0523C12.3258 20.3623 12.0358 20.3723 11.8858 20.2623ZM30.5058 20.2623C30.3558 20.3623 30.0858 20.3623 30.0858 20.0523V8.8823C30.0858 8.5623 30.3858 8.6023 30.5058 8.6823L39.4958 14.2223C39.7758 14.3923 39.6858 14.6023 39.4958 14.7123Z","viewBox":{"width":42.410168118074225,"height":28.943359375}},"semibold":{"name":"arrowtriangle.left.and.line.vertical.and.arrowtriangle.right","path":"M21.8492 29.2327C22.5592 29.2327 23.1692 28.7127 23.1692 27.9727V1.2727C23.1692 0.5327 22.5592 0.0027 21.8492 0.0027C21.1592 0.0027 20.5192 0.5327 20.5192 1.2727V27.9727C20.5192 28.7127 21.1492 29.2327 21.8492 29.2327ZM1.1692 16.5427L11.7692 22.9927C13.3192 23.9427 15.0792 23.2027 15.0792 21.2627V7.9827C15.0792 6.0727 13.3392 5.2727 11.7692 6.2327L1.1692 12.7027C-0.4008 13.6427 -0.3808 15.5827 1.1692 16.5427ZM31.9192 22.9927L42.5192 16.5427C44.0792 15.5827 44.0892 13.6427 42.5192 12.7027L31.9192 6.2327C30.3492 5.2727 28.6092 6.0727 28.6092 7.9827V21.2627C28.6092 23.2027 30.3792 23.9427 31.9192 22.9927ZM3.2392 14.8327C3.0592 14.7227 2.9792 14.5627 3.2392 14.3927L12.0692 8.9727C12.1892 8.8827 12.4692 8.8627 12.4692 9.1427V20.0827C12.4692 20.3527 12.2192 20.3727 12.0692 20.2727ZM31.6192 20.2727C31.4892 20.3727 31.2292 20.3527 31.2292 20.0827V9.1427C31.2292 8.8627 31.4992 8.8827 31.6192 8.9727L40.4492 14.3927C40.7092 14.5627 40.6292 14.7427 40.4492 14.8327Z","viewBox":{"width":43.69190572536406,"height":29.23046875}},"bold":{"name":"arrowtriangle.left.and.line.vertical.and.arrowtriangle.right","path":"M22.6807 29.6004C23.5007 29.6004 24.1907 29.0104 24.1907 28.1504V1.4404C24.1907 0.5904 23.4907 0.0004 22.6807 0.0004C21.9107 0.0004 21.1707 0.6004 21.1707 1.4404V28.1504C21.1707 29.0104 21.8907 29.6004 22.6807 29.6004ZM33.3807 23.4204L44.1107 16.9004C45.7907 15.8704 45.7907 13.7104 44.1107 12.7004L33.3807 6.1804C31.6707 5.1304 29.7507 6.0204 29.7507 8.0904V21.5104C29.7507 23.6004 31.6907 24.4304 33.3807 23.4204ZM1.2607 16.9004L11.9907 23.4204C13.6607 24.4304 15.6207 23.6004 15.6207 21.5104V8.0904C15.6207 6.0204 13.7007 5.1304 11.9907 6.1804L1.2607 12.7004C-0.4193 13.7104 -0.4193 15.8704 1.2607 16.9004ZM33.0607 20.2704C32.9407 20.3604 32.7207 20.3404 32.7207 20.1104V9.4704C32.7207 9.2404 32.9407 9.2404 33.0607 9.3104L41.7207 14.6004C41.9207 14.7404 41.8507 14.8904 41.7207 14.9804ZM3.6507 14.9804C3.5007 14.8904 3.4507 14.7404 3.6507 14.6004L12.3107 9.3104C12.4207 9.2404 12.6507 9.2404 12.6507 9.4704V20.1104C12.6507 20.3404 12.4307 20.3704 12.3107 20.2704Z","viewBox":{"width":45.3701171875,"height":29.599609375}},"heavy":{"name":"arrowtriangle.left.and.line.vertical.and.arrowtriangle.right","path":"M23.9024 30.1338C24.8924 30.1338 25.6924 29.4638 25.6924 28.4338V1.7138C25.6924 0.6838 24.8624 0.0038 23.9024 0.0038C23.0024 0.0038 22.1224 0.6938 22.1224 1.7138V28.4338C22.1224 29.4538 22.9724 30.1338 23.9024 30.1338ZM1.4024 17.4338L12.3224 24.0438C14.1924 25.1838 16.4124 24.2038 16.4124 21.8738V8.2538C16.4124 5.9638 14.2424 4.9238 12.3224 6.0938L1.4024 12.7138C-0.4576 13.8238 -0.4776 16.2938 1.4024 17.4338ZM35.4924 24.0438L46.4224 17.4338C48.2924 16.2938 48.2824 13.8238 46.4224 12.7138L35.4924 6.0938C33.5824 4.9238 31.4124 5.9638 31.4124 8.2538V21.8738C31.4124 24.2038 33.6224 25.1838 35.4924 24.0438ZM4.2724 15.2038C4.1624 15.1338 4.1324 15.0138 4.2724 14.9338L12.6524 9.8438C12.7624 9.7738 12.9124 9.8038 12.9124 9.9638V20.1638C12.9124 20.3438 12.7424 20.3738 12.6524 20.3038ZM35.1724 20.3038C35.0624 20.3538 34.8924 20.3438 34.8924 20.1638V9.9638C34.8924 9.8038 35.0624 9.7738 35.1724 9.8438L43.5524 14.9338C43.6824 15.0138 43.6624 15.1338 43.5524 15.2038Z","viewBox":{"width":47.820810171211036,"height":30.1328125}}},"square.and.arrow.down":{"light":{"name":"square.and.arrow.down","path":"M11.8937 20.2998C12.1137 20.2998 12.3037 20.2298 12.5137 20.0298L17.3037 15.3298C17.4737 15.1598 17.5537 14.9998 17.5537 14.7798C17.5537 14.3398 17.2237 14.0298 16.7937 14.0298C16.5837 14.0298 16.3637 14.1098 16.2137 14.2898L13.8937 16.6898L12.6737 17.9498L12.7237 15.9698V0.8198C12.7237 0.3798 12.3637 -0.0002 11.8937 -0.0002C11.4437 -0.0002 11.0637 0.3798 11.0637 0.8198V15.9698L11.1337 17.9698L9.8937 16.6898L7.5737 14.2898C7.4237 14.1098 7.1937 14.0298 6.9837 14.0298C6.5537 14.0298 6.2337 14.3398 6.2337 14.7798C6.2337 14.9998 6.3137 15.1598 6.4837 15.3298L11.2937 20.0298C11.4937 20.2298 11.6937 20.2998 11.8937 20.2998ZM4.0337 29.1098H19.7737C22.4337 29.1098 23.8037 27.7398 23.8037 25.1198V11.1398C23.8037 8.4998 22.4337 7.1398 19.7737 7.1398H15.8737V8.8298H19.7237C21.2437 8.8298 22.1037 9.6498 22.1037 11.2198V25.0198C22.1037 26.6098 21.2437 27.4098 19.7237 27.4098H4.0637C2.5337 27.4098 1.6937 26.6098 1.6937 25.0198V11.2198C1.6937 9.6498 2.5337 8.8298 4.0637 8.8298H7.9437V7.1398H4.0337C1.3637 7.1398 0.0037 8.4898 0.0037 11.1398V25.1198C0.0037 27.7498 1.3637 29.1098 4.0337 29.1098Z","viewBox":{"width":23.802734375,"height":29.107421875}},"regular":{"name":"square.and.arrow.down","path":"M12.1237 20.5248C12.4137 20.5248 12.6437 20.4348 12.9237 20.1648L17.5437 15.6948C17.7437 15.4948 17.8737 15.2748 17.8737 14.9848C17.8737 14.4248 17.4337 14.0248 16.8737 14.0248C16.5937 14.0248 16.3237 14.1348 16.1337 14.3548L14.0537 16.5548L13.1437 17.5248L13.2237 15.4748V1.0648C13.2237 0.4948 12.7137 0.0048 12.1237 0.0048C11.5437 0.0048 11.0437 0.4948 11.0437 1.0648V15.4748L11.1337 17.5248L10.2037 16.5548L8.1337 14.3548C7.9437 14.1348 7.6437 14.0248 7.3837 14.0248C6.8037 14.0248 6.3937 14.4248 6.3937 14.9848C6.3937 15.2748 6.5037 15.4948 6.7137 15.6948L11.3337 20.1648C11.6237 20.4348 11.8537 20.5248 12.1237 20.5248ZM4.2937 29.5148H19.9737C22.8337 29.5148 24.2637 28.0948 24.2637 25.2748V11.6348C24.2637 8.8148 22.8337 7.3948 19.9737 7.3948H16.1637V9.5948H19.9337C21.2837 9.5948 22.0637 10.3348 22.0637 11.7548V25.1548C22.0637 26.5748 21.2837 27.3148 19.9337 27.3148H4.3237C2.9537 27.3148 2.2037 26.5748 2.2037 25.1548V11.7548C2.2037 10.3348 2.9537 9.5948 4.3237 9.5948H8.1037V7.3948H4.2937C1.4337 7.3948 0.0037 8.8148 0.0037 11.6348V25.2748C0.0037 28.0948 1.4337 29.5148 4.2937 29.5148Z","viewBox":{"width":24.267578125,"height":29.517578125}},"medium":{"name":"square.and.arrow.down","path":"M12.3437 20.7859C12.6837 20.7859 12.9837 20.6759 13.3037 20.3559L17.8937 15.9259C18.1337 15.6959 18.2537 15.4459 18.2537 15.1259C18.2537 14.4959 17.7437 14.0259 17.1337 14.0259C16.8137 14.0259 16.5037 14.1659 16.2837 14.4059L14.3537 16.4459L13.4837 17.4459L13.6137 15.4259V1.2459C13.6137 0.5759 13.0437 -0.0041 12.3437 -0.0041C11.6637 -0.0041 11.0837 0.5759 11.0837 1.2459V15.4259L11.2237 17.4559L10.3337 16.4459L8.4237 14.4059C8.2037 14.1659 7.8737 14.0259 7.5637 14.0259C6.9437 14.0259 6.4437 14.4959 6.4437 15.1259C6.4437 15.4459 6.5737 15.6959 6.8037 15.9259L11.4037 20.3559C11.7137 20.6759 12.0137 20.7859 12.3437 20.7859ZM4.4837 29.6359H20.2237C23.1737 29.6359 24.7037 28.1259 24.7037 25.2159V11.7459C24.7037 8.8359 23.1737 7.3159 20.2237 7.3159H16.5137V9.9959H20.0537C21.3137 9.9959 22.0237 10.6459 22.0237 11.9759V24.9759C22.0237 26.3059 21.3137 26.9659 20.0537 26.9659H4.6437C3.3737 26.9659 2.6837 26.3059 2.6837 24.9759V11.9759C2.6837 10.6459 3.3737 9.9959 4.6437 9.9959H8.2137V7.3159H4.4837C1.5337 7.3159 0.0037 8.8359 0.0037 11.7459V25.2159C0.0037 28.1259 1.5337 29.6359 4.4837 29.6359Z","viewBox":{"width":24.705078125,"height":29.640625}},"semibold":{"name":"square.and.arrow.down","path":"M12.5237 20.9869C12.8937 20.9869 13.2337 20.8669 13.6037 20.5069L18.1737 16.1169C18.4137 15.8569 18.5537 15.5969 18.5537 15.2469C18.5537 14.5469 17.9937 14.0569 17.3237 14.0569C16.9837 14.0569 16.6437 14.1869 16.3937 14.4469L14.6037 16.3769L13.7537 17.4069L13.9137 15.3769V1.3769C13.9137 0.6469 13.3037 -0.0031 12.5237 -0.0031C11.7437 -0.0031 11.1137 0.6469 11.1137 1.3769V15.3769L11.2937 17.4069L10.4437 16.3769L8.6437 14.4469C8.4037 14.1869 8.0537 14.0569 7.7137 14.0569C7.0437 14.0569 6.4837 14.5469 6.4837 15.2469C6.4837 15.5969 6.6137 15.8569 6.8737 16.1169L11.4437 20.5069C11.8037 20.8669 12.1537 20.9869 12.5237 20.9869ZM4.6337 29.7469H20.4137C23.4437 29.7469 25.0437 28.1469 25.0437 25.1569V11.8369C25.0437 8.8469 23.4437 7.2469 20.4137 7.2469H16.7937V10.2969H20.1537C21.3437 10.2969 21.9937 10.9069 21.9937 12.1569V24.8369C21.9937 26.0969 21.3437 26.6969 20.1537 26.6969H4.8937C3.6937 26.6969 3.0537 26.0969 3.0537 24.8369V12.1569C3.0537 10.9069 3.6937 10.2969 4.8937 10.2969H8.3037V7.2469H4.6337C1.6137 7.2469 0.0037 8.8469 0.0037 11.8369V25.1569C0.0037 28.1669 1.6137 29.7469 4.6337 29.7469Z","viewBox":{"width":25.046875,"height":29.75}},"bold":{"name":"square.and.arrow.down","path":"M12.7437 21.2579C13.1637 21.2579 13.5737 21.1079 14.0037 20.6979L18.5237 16.3379C18.8037 16.0679 18.9537 15.7779 18.9537 15.3779C18.9537 14.5979 18.3037 14.0579 17.5837 14.0579C17.1837 14.0579 16.8137 14.2179 16.5537 14.5079L14.9037 16.2679L14.1137 17.3179L14.3237 15.3279V1.5579C14.3237 0.7279 13.6337 -0.0021 12.7437 -0.0021C11.8637 -0.0021 11.1737 0.7279 11.1737 1.5579V15.3279L11.3737 17.3379L10.5837 16.2679L8.9237 14.5079C8.6637 14.2179 8.2837 14.0579 7.9037 14.0579C7.1737 14.0579 6.5337 14.5979 6.5337 15.3779C6.5337 15.7779 6.6837 16.0679 6.9637 16.3379L11.4937 20.6979C11.9037 21.1079 12.3137 21.2579 12.7437 21.2579ZM4.8237 29.8879H20.6537C23.7937 29.8879 25.4837 28.1779 25.4837 25.0879V11.9479C25.4837 8.8579 23.7937 7.1679 20.6537 7.1679H17.1437V10.6879H20.2737C21.3737 10.6879 21.9537 11.2279 21.9537 12.3879V24.6479C21.9537 25.8079 21.3737 26.3479 20.2737 26.3479H5.2137C4.1137 26.3479 3.5237 25.8079 3.5237 24.6479V12.3879C3.5237 11.2279 4.1137 10.6879 5.2137 10.6879H8.4037V7.1679H4.8237C1.7137 7.1679 0.0037 8.8479 0.0037 11.9479V25.0879C0.0037 28.1879 1.7137 29.8879 4.8237 29.8879Z","viewBox":{"width":25.484375,"height":29.88671875}},"heavy":{"name":"square.and.arrow.down","path":"M13.0737 21.6463C13.5737 21.6463 14.0637 21.4663 14.5637 20.9862L19.0537 16.6763C19.3637 16.3763 19.5337 16.0463 19.5337 15.5863C19.5337 14.6963 18.7537 14.0863 17.9637 14.0863C17.5037 14.0863 17.0937 14.2763 16.7737 14.6063L15.3537 16.1163L14.6337 17.2263L14.9137 15.2463V1.8163C14.9137 0.8463 14.1137 -0.0038 13.0737 -0.0038C12.0337 -0.0038 11.2237 0.8463 11.2237 1.8163V15.2463L11.5137 17.2263L10.7837 16.1163L9.3537 14.6063C9.0537 14.2763 8.6237 14.0863 8.1737 14.0863C7.3737 14.0863 6.6037 14.6963 6.6037 15.5863C6.6037 16.0463 6.7837 16.3763 7.0837 16.6763L11.5837 20.9862C12.0737 21.4663 12.5637 21.6463 13.0737 21.6463ZM5.1137 30.0763H21.0237C24.2937 30.0763 26.1437 28.2363 26.1437 24.9763V12.1263C26.1437 8.8762 24.2937 7.0263 21.0237 7.0263H17.6637V11.2663H20.4537C21.4137 11.2663 21.9137 11.6863 21.9137 12.7263V24.3863C21.9137 25.4163 21.4137 25.8563 20.4537 25.8563H5.6837C4.7137 25.8563 4.2237 25.4163 4.2237 24.3863V12.7263C4.2237 11.6863 4.7137 11.2663 5.6837 11.2663H8.5737V7.0263H5.1137C1.8637 7.0263 0.0037 8.8762 0.0037 12.1263V24.9763C0.0037 28.2363 1.8637 30.0763 5.1137 30.0763Z","viewBox":{"width":26.140625,"height":30.078125}}},"gearshape.fill":{"light":{"name":"gearshape.fill","path":"M12.8627 28.3452H15.4627C16.2027 28.3452 16.7227 27.9152 16.8827 27.1752L17.5827 24.2452C18.0427 24.0752 18.5127 23.8952 18.9327 23.7052L21.4927 25.2952C22.1227 25.7052 22.7927 25.6352 23.2927 25.1252L25.1327 23.3152C25.6527 22.7952 25.7127 22.0952 25.2927 21.4652L23.7227 18.9252C23.9127 18.4852 24.0927 18.0352 24.2427 17.5852L27.1827 16.8952C27.9327 16.7352 28.3427 16.2152 28.3427 15.4752V12.9052C28.3427 12.1852 27.9327 11.6652 27.1827 11.4952L24.2527 10.8052C24.0927 10.3052 23.9027 9.8552 23.7327 9.4652L25.3227 6.8952C25.7127 6.2452 25.6727 5.5952 25.1427 5.0552L23.2927 3.2452C22.7727 2.7452 22.1527 2.6652 21.5227 3.0452L18.9327 4.6652C18.5127 4.4752 18.0627 4.2952 17.5827 4.1252L16.8827 1.1652C16.7227 0.4252 16.2027 -0.0048 15.4627 -0.0048H12.8627C12.1227 -0.0048 11.6227 0.4252 11.4527 1.1652L10.7627 4.1052C10.2827 4.2652 9.8127 4.4452 9.3927 4.6452L6.8127 3.0452C6.1827 2.6652 5.5527 2.7352 5.0327 3.2452L3.1827 5.0552C2.6527 5.5952 2.6127 6.2452 3.0227 6.8952L4.5927 9.4652C4.4327 9.8552 4.2427 10.3052 4.0727 10.8052L1.1627 11.4952C0.4127 11.6652 0.0027 12.1852 0.0027 12.9052V15.4752C0.0027 16.2152 0.4127 16.7352 1.1627 16.8952L4.1027 17.5852C4.2427 18.0352 4.4127 18.4852 4.6027 18.9252L3.0327 21.4652C2.6127 22.0952 2.6827 22.7952 3.2127 23.3152L5.0327 25.1252C5.5327 25.6352 6.2027 25.7052 6.8327 25.2952L9.3927 23.7052C9.8327 23.8952 10.2827 24.0752 10.7627 24.2452L11.4527 27.1752C11.6227 27.9152 12.1227 28.3452 12.8627 28.3452ZM14.1827 19.0552C11.5027 19.0552 9.2827 16.8452 9.2827 14.1552C9.2827 11.4952 11.5027 9.2852 14.1827 9.2852C16.8527 9.2852 19.0627 11.4952 19.0627 14.1552C19.0627 16.8452 16.8527 19.0552 14.1827 19.0552Z","viewBox":{"width":28.341796875,"height":28.341796875}},"regular":{"name":"gearshape.fill","path":"M13.0327 28.5782H15.5427C16.2527 28.5782 16.7727 28.1482 16.9227 27.4482L17.6327 24.4482C18.1727 24.2682 18.6927 24.0582 19.1427 23.8482L21.7827 25.4582C22.3627 25.8282 23.0327 25.7682 23.5327 25.2782L25.2927 23.5282C25.7827 23.0382 25.8527 22.3282 25.4527 21.7382L23.8427 19.1282C24.0727 18.6482 24.2827 18.1582 24.4327 17.6682L27.4627 16.9382C28.1627 16.7882 28.5727 16.2682 28.5727 15.5582V13.0882C28.5727 12.3882 28.1627 11.8682 27.4627 11.7182L24.4627 10.9882C24.2827 10.4282 24.0627 9.9282 23.8727 9.4982L25.4827 6.8482C25.8627 6.2582 25.8227 5.5882 25.3227 5.0982L23.5327 3.3382C23.0227 2.8682 22.4227 2.7882 21.8227 3.1282L19.1427 4.7882C18.7027 4.5482 18.1927 4.3482 17.6327 4.1682L16.9227 1.1182C16.7727 0.4282 16.2527 -0.0018 15.5427 -0.0018H13.0327C12.3227 -0.0018 11.8027 0.4282 11.6327 1.1182L10.9227 4.1382C10.3927 4.3182 9.8727 4.5282 9.4027 4.7682L6.7527 3.1282C6.1527 2.7882 5.5327 2.8582 5.0327 3.3382L3.2527 5.0982C2.7527 5.5882 2.6927 6.2582 3.0927 6.8482L4.6927 9.4982C4.5127 9.9282 4.2927 10.4282 4.1127 10.9882L1.1027 11.7182C0.4127 11.8682 0.0027 12.3882 0.0027 13.0882V15.5582C0.0027 16.2682 0.4127 16.7882 1.1027 16.9382L4.1427 17.6682C4.2927 18.1582 4.5027 18.6482 4.7127 19.1282L3.1127 21.7382C2.7027 22.3282 2.7927 23.0382 3.2827 23.5282L5.0327 25.2782C5.5227 25.7682 6.2027 25.8282 6.7927 25.4582L9.4227 23.8482C9.8827 24.0582 10.3927 24.2682 10.9227 24.4482L11.6327 27.4482C11.8027 28.1482 12.3227 28.5782 13.0327 28.5782ZM14.2827 19.1182C11.6327 19.1182 9.4627 16.9282 9.4627 14.2782C9.4627 11.6382 11.6327 9.4582 14.2827 9.4582C16.9427 9.4582 19.1127 11.6382 19.1127 14.2782C19.1127 16.9282 16.9427 19.1182 14.2827 19.1182Z","viewBox":{"width":28.57421875,"height":28.57421875}},"medium":{"name":"gearshape.fill","path":"M13.2727 29.0406H15.7727C16.5827 29.0406 17.2027 28.5606 17.3627 27.7706L18.0627 24.8506C18.5227 24.6906 18.9727 24.5106 19.3827 24.3206L21.9327 25.8806C22.6027 26.3006 23.3827 26.2406 23.9427 25.6806L25.6927 23.9306C26.2527 23.3606 26.3327 22.5406 25.8827 21.8706L24.3327 19.3606C24.5227 18.9306 24.7227 18.5006 24.8527 18.0706L27.7827 17.3806C28.5727 17.2006 29.0527 16.6006 29.0527 15.7906V13.3306C29.0527 12.5206 28.5727 11.9206 27.7827 11.7406L24.8827 11.0506C24.7227 10.5506 24.5227 10.1206 24.3627 9.7506L25.9127 7.1806C26.3427 6.4906 26.2927 5.7306 25.7127 5.1506L23.9427 3.4006C23.3627 2.8806 22.6527 2.7906 21.9727 3.1706L19.3827 4.7606C18.9927 4.5706 18.5527 4.3906 18.0627 4.2206L17.3627 1.2706C17.2027 0.4806 16.5827 0.0006 15.7727 0.0006H13.2727C12.4527 0.0006 11.8527 0.4806 11.6727 1.2806L10.9927 4.2006C10.5127 4.3606 10.0527 4.5406 9.6427 4.7406L7.0727 3.1706C6.3827 2.7906 5.6727 2.8706 5.1027 3.4006L3.3227 5.1506C2.7527 5.7306 2.6927 6.4906 3.1327 7.1806L4.6727 9.7506C4.5127 10.1206 4.3227 10.5506 4.1727 11.0506L1.2727 11.7406C0.4827 11.9206 0.0027 12.5206 0.0027 13.3306V15.7906C0.0027 16.6006 0.4827 17.2006 1.2727 17.3806L4.1927 18.0706C4.3327 18.5006 4.5127 18.9306 4.7027 19.3606L3.1627 21.8706C2.7027 22.5406 2.7927 23.3606 3.3527 23.9306L5.1027 25.6806C5.6627 26.2406 6.4527 26.3006 7.1227 25.8806L9.6527 24.3206C10.0627 24.5106 10.5127 24.6906 10.9927 24.8506L11.6727 27.7706C11.8527 28.5606 12.4527 29.0406 13.2727 29.0406ZM14.5327 19.3006C11.8927 19.3006 9.7327 17.1406 9.7327 14.5106C9.7327 11.8906 11.8927 9.7306 14.5327 9.7306C17.1627 9.7306 19.3027 11.8906 19.3027 14.5106C19.3027 17.1406 17.1627 19.3006 14.5327 19.3006Z","viewBox":{"width":29.052734375,"height":29.0390625}},"semibold":{"name":"gearshape.fill","path":"M13.4627 29.3984H15.9527C16.8427 29.3984 17.5127 28.8584 17.7027 27.9984L18.3727 25.1684C18.8027 25.0284 19.2127 24.8684 19.5627 24.6884L22.0427 26.2084C22.7727 26.6784 23.6427 26.5884 24.2527 25.9784L26.0027 24.2384C26.6227 23.6284 26.7027 22.7184 26.2227 21.9884L24.7227 19.5384C24.8827 19.1684 25.0427 18.7684 25.1727 18.3884L28.0227 17.7084C28.8927 17.5184 29.4127 16.8484 29.4127 15.9584V13.5084C29.4127 12.6284 28.8927 11.9584 28.0227 11.7684L25.1927 11.0884C25.0627 10.6484 24.8827 10.2584 24.7327 9.9284L26.2527 7.4284C26.7327 6.6684 26.6627 5.8084 26.0127 5.1984L24.2427 3.4484C23.6227 2.8884 22.8427 2.7784 22.1027 3.1884L19.5627 4.7484C19.2127 4.5684 18.8127 4.4184 18.3727 4.2684L17.7027 1.3984C17.5127 0.5284 16.8427 -0.0016 15.9527 -0.0016H13.4627C12.5827 -0.0016 11.8927 0.5284 11.7127 1.3984L11.0327 4.2384C10.6127 4.3884 10.2027 4.5484 9.8327 4.7284L7.3127 3.1884C6.5627 2.7784 5.7827 2.8684 5.1527 3.4584L3.3927 5.1984C2.7527 5.8084 2.6927 6.6684 3.1627 7.4284L4.6727 9.9284C4.5227 10.2584 4.3427 10.6484 4.2127 11.0884L1.3827 11.7684C0.5227 11.9584 0.0027 12.6284 0.0027 13.5084V15.9584C0.0027 16.8484 0.5227 17.5184 1.3827 17.7084L4.2427 18.3884C4.3627 18.7684 4.5227 19.1684 4.7027 19.5384L3.2027 21.9884C2.7027 22.7184 2.7927 23.6284 3.4027 24.2384L5.1527 25.9784C5.7727 26.5884 6.6327 26.6784 7.3727 26.2084L9.8427 24.6884C10.2127 24.8684 10.6127 25.0284 11.0327 25.1684L11.7127 27.9984C11.8927 28.8584 12.5827 29.3984 13.4627 29.3984ZM14.7127 19.4584C12.1027 19.4584 9.9527 17.3084 9.9527 14.6884C9.9527 12.0884 12.1027 9.9484 14.7127 9.9484C17.3227 9.9484 19.4527 12.0884 19.4527 14.6884C19.4527 17.3084 17.3227 19.4584 14.7127 19.4584Z","viewBox":{"width":29.408203125,"height":29.39453125}},"bold":{"name":"gearshape.fill","path":"M13.7127 29.8845H16.1827C17.1727 29.8845 17.9327 29.2845 18.1427 28.3245L18.8027 25.5945C19.1527 25.4745 19.4927 25.3345 19.8127 25.1845L22.1927 26.6645C23.0127 27.1645 23.9927 27.0745 24.6627 26.4045L26.4127 24.6545C27.0927 23.9645 27.1927 22.9545 26.6427 22.1445L25.2127 19.7845C25.3427 19.4645 25.4827 19.1445 25.5927 18.8145L28.3427 18.1545C29.3027 17.9545 29.9027 17.1845 29.9027 16.2045V13.7645C29.9027 12.7945 29.3027 12.0345 28.3427 11.8145L25.6227 11.1745C25.5027 10.8045 25.3627 10.4545 25.2227 10.1745L26.6827 7.7645C27.2027 6.9345 27.1427 5.9445 26.4327 5.2745L24.6527 3.5245C23.9627 2.9145 23.0927 2.7845 22.2627 3.2445L19.8127 4.7445C19.5127 4.5945 19.1727 4.4545 18.8027 4.3245L18.1427 1.5545C17.9327 0.6045 17.1727 0.0045 16.1827 0.0045H13.7127C12.7127 0.0045 11.9627 0.6045 11.7627 1.5745L11.1027 4.3045C10.7327 4.4345 10.3727 4.5645 10.0627 4.7345L7.6327 3.2445C6.7927 2.7845 5.9327 2.8845 5.2327 3.5245L3.4627 5.2745C2.7627 5.9445 2.6827 6.9345 3.2127 7.7645L4.6627 10.1745C4.5227 10.4545 4.3927 10.8045 4.2627 11.1745L1.5427 11.8145C0.6027 12.0345 0.0027 12.7945 0.0027 13.7645V16.2045C0.0027 17.1845 0.6027 17.9545 1.5427 18.1545L4.2927 18.8145C4.4027 19.1445 4.5427 19.4645 4.6927 19.7845L3.2427 22.1445C2.7027 22.9545 2.8027 23.9645 3.4827 24.6545L5.2227 26.4045C5.9027 27.0745 6.8927 27.1645 7.6927 26.6645L10.0727 25.1845C10.3927 25.3345 10.7327 25.4745 11.1027 25.5945L11.7627 28.3245C11.9627 29.2845 12.7127 29.8845 13.7127 29.8845ZM14.9427 19.6645C12.3627 19.6645 10.2427 17.5245 10.2427 14.9345C10.2427 12.3545 12.3627 10.2445 14.9427 10.2445C17.5427 10.2445 19.6627 12.3545 19.6627 14.9345C19.6627 17.5245 17.5427 19.6645 14.9427 19.6645Z","viewBox":{"width":29.900390625,"height":29.88671875}},"heavy":{"name":"gearshape.fill","path":"M14.0727 30.5663H16.5327C17.6527 30.5663 18.5427 29.8763 18.7827 28.7763L19.4027 26.2063C19.6727 26.1163 19.9327 26.0063 20.1627 25.8962L22.4127 27.2863C23.3527 27.8663 24.4827 27.7363 25.2627 26.9763L27.0027 25.2362C27.7827 24.4563 27.8927 23.2663 27.2927 22.3563L25.9227 20.1263C26.0327 19.8963 26.1227 19.6563 26.2127 19.4162L28.8027 18.7863C29.9027 18.5563 30.5927 17.6662 30.5927 16.5262V14.1263C30.5927 13.0063 29.9027 12.1163 28.8027 11.8663L26.2527 11.2563C26.1527 10.9963 26.0427 10.7363 25.9527 10.5262L27.3127 8.2263C27.9227 7.2763 27.8227 6.1363 27.0127 5.3562L25.2527 3.6262C24.4627 2.9163 23.4327 2.7862 22.5027 3.2763L20.1627 4.7162C19.9327 4.6062 19.6827 4.5162 19.4127 4.4063L18.7827 1.7862C18.5427 0.6962 17.6527 -0.0038 16.5327 -0.0038H14.0727C12.9327 -0.0038 12.0427 0.6962 11.8127 1.8062L11.1827 4.3863C10.9227 4.4662 10.6527 4.5763 10.4027 4.7063L8.0927 3.2763C7.1527 2.7862 6.1427 2.8962 5.3327 3.6262L3.5827 5.3562C2.7727 6.1363 2.6627 7.2763 3.2627 8.2263L4.6527 10.5262C4.5427 10.7363 4.4427 10.9963 4.3427 11.2563L1.7727 11.8663C0.6927 12.1163 0.0027 13.0063 0.0027 14.1263V16.5262C0.0027 17.6662 0.6927 18.5563 1.7727 18.7863L4.3927 19.4162C4.4727 19.6563 4.5627 19.8963 4.6727 20.1263L3.3127 22.3563C2.6927 23.2663 2.8027 24.4563 3.5827 25.2362L5.3227 26.9763C6.0927 27.7363 7.2427 27.8663 8.1727 27.2863L10.4327 25.8962C10.6627 26.0063 10.9227 26.1163 11.1827 26.2063L11.8127 28.7763C12.0427 29.8763 12.9327 30.5663 14.0727 30.5663ZM15.3027 19.9463C12.7427 19.9463 10.6527 17.8463 10.6527 15.2863C10.6527 12.7463 12.7427 10.6463 15.3027 10.6463C17.8527 10.6463 19.9427 12.7463 19.9427 15.2863C19.9427 17.8463 17.8527 19.9463 15.3027 19.9463Z","viewBox":{"width":30.59765625,"height":30.5703125}}},"square.and.pencil":{"light":{"name":"square.and.pencil","path":"M25.3845 2.8175L26.2745 1.9075C26.7145 1.4575 26.7145 0.9175 26.3045 0.4875L26.0745 0.2675C25.6945 -0.1225 25.1145 -0.0725 24.7045 0.3375L23.8045 1.2275ZM9.3745 17.5275L11.7345 16.4675L24.4545 3.7275L22.8845 2.1575L10.1545 14.8975L9.0345 17.1675C8.9445 17.3575 9.1745 17.6075 9.3745 17.5275ZM4.0345 26.5775H19.9645C22.3545 26.5775 23.7245 25.2075 23.7245 22.5875V7.9975L22.0245 9.6775V22.4875C22.0245 24.0775 21.1545 24.8775 19.9245 24.8775H4.0645C2.5245 24.8775 1.6945 24.0775 1.6945 22.4875V6.9375C1.6945 5.3675 2.5245 4.5475 4.0645 4.5475H16.9845L18.6745 2.8575H4.0345C1.3645 2.8575 0.0045 4.2075 0.0045 6.8575V22.5875C0.0045 25.2175 1.3645 26.5775 4.0345 26.5775Z","viewBox":{"width":26.608969425889384,"height":26.574752449327647}},"regular":{"name":"square.and.pencil","path":"M25.7155 3.2319L26.7055 2.2219C27.1655 1.7219 27.1655 1.0719 26.7055 0.6219L26.3855 0.2919C25.9655 -0.1381 25.2955 -0.0781 24.8455 0.3619L23.8455 1.3419ZM9.2655 18.1419L11.9355 16.9819L24.7055 4.2319L22.8355 2.3819L10.0755 15.1419L8.8455 17.7119C8.7355 17.9419 9.0055 18.2519 9.2655 18.1419ZM4.2955 27.0019H20.3455C22.8055 27.0019 24.2255 25.5819 24.2255 22.7719V8.1519L22.0255 10.3519V22.6619C22.0255 24.0819 21.2555 24.8019 20.3155 24.8019H4.3355C2.9655 24.8019 2.2055 24.0819 2.2055 22.6619V7.1419C2.2055 5.7219 2.9655 4.9819 4.3355 4.9819H16.7855L18.9855 2.7819H4.2955C1.4455 2.7819 -0.0045 4.2019 -0.0045 7.0219V22.7719C-0.0045 25.6019 1.4455 27.0019 4.2955 27.0019Z","viewBox":{"width":27.0498046875,"height":27.005305724685982}},"medium":{"name":"square.and.pencil","path":"M25.8665 3.5476L26.8965 2.4776C27.4165 1.9376 27.4365 1.1976 26.9365 0.6776L26.5765 0.3076C26.1165 -0.1524 25.3465 -0.0724 24.8465 0.4176L23.7865 1.4576ZM9.6565 18.1476L12.4365 16.9776L24.8665 4.5276L22.7865 2.4676L10.3665 14.9076L9.1365 17.6076C8.9965 17.9176 9.3365 18.2676 9.6565 18.1476ZM4.4865 27.2676H20.4265C23.0365 27.2676 24.5665 25.7476 24.5665 22.8376V8.3876L21.8865 11.0676V22.6076C21.8865 23.9376 21.1765 24.6076 20.2665 24.6076H4.6465C3.3765 24.6076 2.6765 23.9376 2.6765 22.6076V7.3876C2.6765 6.0676 3.3765 5.3976 4.6465 5.3976H16.3365L19.0165 2.7176H4.4865C1.5465 2.7176 -0.0035 4.2276 -0.0035 7.1576V22.8376C-0.0035 25.7676 1.5465 27.2676 4.4865 27.2676Z","viewBox":{"width":27.298034478271234,"height":27.26870867662624}},"semibold":{"name":"square.and.pencil","path":"M25.9938 3.7921L27.0538 2.6821C27.6038 2.0921 27.6438 1.2721 27.0938 0.7121L26.7138 0.3321C26.2238 -0.1779 25.3838 -0.0779 24.8438 0.4721L23.7438 1.5321ZM9.9438 18.1421L12.8238 16.9521L25.0038 4.7721L22.7538 2.5321L10.5838 14.7321L9.3338 17.5121C9.1838 17.8821 9.5938 18.2821 9.9438 18.1421ZM4.6338 27.4821H20.4838C23.2138 27.4821 24.8138 25.8821 24.8138 22.8921V8.5621L21.7638 11.6121V22.5621C21.7638 23.8221 21.1138 24.4321 20.2238 24.4321H4.8938C3.6938 24.4321 3.0538 23.8221 3.0538 22.5621V7.5821C3.0538 6.3221 3.6938 5.7021 4.8938 5.7021H15.9838L19.0338 2.6721H4.6338C1.6138 2.6721 0.0038 4.2521 0.0038 7.2621V22.8921C0.0038 25.8821 1.6138 27.4821 4.6338 27.4821Z","viewBox":{"width":27.487880930130636,"height":27.483545452077195}},"bold":{"name":"square.and.pencil","path":"M26.1448 4.104L27.2648 2.944C27.8648 2.304 27.9348 1.394 27.3348 0.764L26.9048 0.344C26.3848 -0.206 25.4448 -0.066 24.8448 0.524L23.6748 1.644ZM4.8248 27.744H20.5448C23.4448 27.744 25.1548 26.044 25.1548 22.944V8.784L21.6248 12.304V22.504C21.6248 23.684 21.0448 24.214 20.1648 24.214H5.2248C4.1148 24.214 3.5248 23.684 3.5248 22.504V7.824C3.5248 6.664 4.1148 6.114 5.2248 6.114H15.5348L19.0548 2.584H4.8248C1.7048 2.584 0.0048 4.284 0.0048 7.384V22.944C0.0048 26.044 1.7048 27.744 4.8248 27.744ZM10.3348 18.134L13.3148 16.924L25.1748 5.074L22.7048 2.624L10.8648 14.484L9.6248 17.404C9.4448 17.854 9.9248 18.284 10.3348 18.134Z","viewBox":{"width":27.748523713627037,"height":27.743200896359145}},"heavy":{"name":"square.and.pencil","path":"M26.3695 4.5728L27.5495 3.3328C28.2295 2.6028 28.3295 1.5628 27.6495 0.8728L27.1795 0.3828C26.6095 -0.2372 25.5295 -0.0572 24.8295 0.6128L23.5995 1.8028ZM5.1095 28.1328H20.6595C23.7895 28.1328 25.6395 26.2828 25.6395 23.0428V9.1328L21.4095 13.3528V22.4428C21.4095 23.4728 20.9195 23.9028 20.0795 23.9028H5.6895C4.7195 23.9028 4.2295 23.4728 4.2295 22.4428V8.1828C4.2295 7.1628 4.7195 6.7228 5.6895 6.7228H14.8795L19.0995 2.4928H5.1095C1.8495 2.4928 -0.0005 4.3428 -0.0005 7.5828V23.0428C-0.0005 26.2828 1.8495 28.1328 5.1095 28.1328ZM10.8795 18.1328L14.0395 16.9028L25.4295 5.5228L22.6495 2.7528L11.2795 14.1328L10.0395 17.2628C9.8195 17.8228 10.3995 18.3128 10.8795 18.1328Z","viewBox":{"width":28.111879060221924,"height":28.13175222007995}}},"plus":{"light":{"name":"plus","path":"M0.0037 11.0753C0.0037 11.5753 0.4237 12.0053 0.9337 12.0053H10.1437V21.2153C10.1437 21.7253 10.5637 22.1453 11.0737 22.1453C11.5837 22.1453 12.0037 21.7253 12.0037 21.2153V12.0053H21.2337C21.7237 12.0053 22.1437 11.5753 22.1437 11.0753C22.1437 10.5653 21.7237 10.1453 21.2337 10.1453H12.0037V0.9153C12.0037 0.4253 11.5837 -0.0047 11.0737 -0.0047C10.5637 -0.0047 10.1437 0.4253 10.1437 0.9153V10.1453H0.9337C0.4237 10.1453 0.0037 10.5653 0.0037 11.0753Z","viewBox":{"width":22.1484375,"height":22.1484375}},"regular":{"name":"plus","path":"M0.0037 11.2804C0.0037 11.9504 0.5637 12.5004 1.2137 12.5004H10.0637V21.3404C10.0637 22.0004 10.6137 22.5604 11.2837 22.5604C11.9537 22.5604 12.5137 22.0004 12.5137 21.3404V12.5004H21.3437C21.9937 12.5004 22.5537 11.9504 22.5537 11.2804C22.5537 10.6104 21.9937 10.0504 21.3437 10.0504H12.5137V1.2204C12.5137 0.5604 11.9537 0.0004 11.2837 0.0004C10.6137 0.0004 10.0637 0.5604 10.0637 1.2204V10.0504H1.2137C0.5637 10.0504 0.0037 10.6104 0.0037 11.2804Z","viewBox":{"width":22.55859375,"height":22.55859375}},"medium":{"name":"plus","path":"M0.0037 11.4445C0.0037 12.2945 0.6937 12.9745 1.5337 12.9745H9.9137V21.3545C9.9137 22.1945 10.6137 22.8845 11.4437 22.8845C12.2737 22.8845 12.9737 22.1945 12.9737 21.3545V12.9745H21.3537C22.1937 12.9745 22.8837 12.2945 22.8837 11.4445C22.8837 10.6045 22.1937 9.9145 21.3537 9.9145H12.9737V1.5345C12.9737 0.6945 12.2737 0.0045 11.4437 0.0045C10.6137 0.0045 9.9137 0.6945 9.9137 1.5345V9.9145H1.5337C0.6937 9.9145 0.0037 10.6045 0.0037 11.4445Z","viewBox":{"width":22.88671875,"height":22.88671875}},"semibold":{"name":"plus","path":"M0.0037 11.5675C0.0037 12.5375 0.8037 13.3275 1.7637 13.3275H9.8037V21.3675C9.8037 22.3375 10.5937 23.1375 11.5637 23.1375C12.5337 23.1375 13.3337 22.3375 13.3337 21.3675V13.3275H21.3737C22.3437 13.3275 23.1337 12.5375 23.1337 11.5675C23.1337 10.5975 22.3437 9.8075 21.3737 9.8075H13.3337V1.7675C13.3337 0.8075 12.5337 -0.0025 11.5637 -0.0025C10.5937 -0.0025 9.8037 0.8075 9.8037 1.7675V9.8075H1.7637C0.8037 9.8075 0.0037 10.5975 0.0037 11.5675Z","viewBox":{"width":23.1328125,"height":23.1328125}},"bold":{"name":"plus","path":"M0.0037 11.7316C0.0037 12.8816 0.9337 13.8116 2.0737 13.8116H9.6637V21.3916C9.6637 22.5316 10.5837 23.4716 11.7337 23.4716C12.8837 23.4716 13.8037 22.5316 13.8037 21.3916V13.8116H21.3937C22.5337 13.8116 23.4637 12.8816 23.4637 11.7316C23.4637 10.5916 22.5337 9.6616 21.3937 9.6616H13.8037V2.0816C13.8037 0.9416 12.8837 0.0016 11.7337 0.0016C10.5837 0.0016 9.6637 0.9416 9.6637 2.0816V9.6616H2.0737C0.9337 9.6616 0.0037 10.5916 0.0037 11.7316Z","viewBox":{"width":23.4609375,"height":23.474609375}},"heavy":{"name":"plus","path":"M0.0037 11.974C0.0037 13.374 1.1337 14.494 2.5137 14.494H9.4437V21.424C9.4437 22.814 10.5837 23.944 11.9737 23.944C13.3537 23.944 14.4937 22.814 14.4937 21.424V14.494H21.4237C22.8037 14.494 23.9437 13.374 23.9437 11.974C23.9437 10.584 22.8037 9.444 21.4237 9.444H14.4937V2.534C14.4937 1.134 13.3537 0.004 11.9737 0.004C10.5837 0.004 9.4437 1.134 9.4437 2.534V9.444H2.5137C1.1337 9.444 0.0037 10.584 0.0037 11.974Z","viewBox":{"width":23.939453125,"height":23.939453125}}}} as const \ No newline at end of file +export default {"arrow.clockwise":{"light":{"name":"arrow.clockwise","path":"M0.0027 17.3747C0.0027 24.0247 5.2927 29.3147 11.9227 29.3147C18.5527 29.3147 23.8327 24.0247 23.8327 17.3747C23.8327 16.8747 23.4727 16.5047 22.9527 16.5047C22.4627 16.5047 22.1527 16.8747 22.1527 17.3747C22.1527 23.0947 17.6127 27.6347 11.9227 27.6347C6.2227 27.6347 1.6927 23.0947 1.6927 17.3747C1.6927 11.6847 6.2227 7.1747 11.9227 7.1747C13.1627 7.1747 14.3827 7.3147 15.3227 7.5447L10.5927 12.2947C10.4327 12.4647 10.3527 12.6747 10.3527 12.8947C10.3527 13.3747 10.7027 13.7447 11.1827 13.7447C11.4427 13.7447 11.6327 13.6547 11.7827 13.4947L17.6127 7.6047C17.8527 7.3547 17.9327 7.1347 17.9327 6.9047C17.9327 6.6547 17.8327 6.4247 17.6127 6.2047L11.8027 0.2647C11.6527 0.0947 11.4527 0.0047 11.1727 0.0047C10.6927 0.0047 10.3527 0.3847 10.3527 0.8647C10.3527 1.0947 10.4327 1.2947 10.5927 1.4747L14.9127 5.8247C14.0927 5.6347 13.0327 5.4947 11.9227 5.4947C5.2927 5.4947 0.0027 10.7647 0.0027 17.3747Z","viewBox":{"width":23.830078125,"height":29.3125}},"regular":{"name":"arrow.clockwise","path":"M0.0027 17.3327C0.0027 24.0527 5.3827 29.4327 12.0827 29.4327C18.7827 29.4327 24.1627 24.0527 24.1627 17.3327C24.1627 16.6827 23.6927 16.2027 23.0227 16.2027C22.3827 16.2027 21.9527 16.6827 21.9527 17.3327C21.9527 22.8327 17.5727 27.2327 12.0827 27.2327C6.6027 27.2327 2.2027 22.8327 2.2027 17.3327C2.2027 11.8527 6.6027 7.4627 12.0827 7.4627C13.1227 7.4627 14.0927 7.5427 14.9027 7.7427L10.8127 11.7827C10.6127 12.0027 10.5027 12.2727 10.5027 12.5627C10.5027 13.1927 10.9627 13.6627 11.5827 13.6627C11.9227 13.6627 12.1827 13.5527 12.3727 13.3427L18.0027 7.6827C18.2527 7.4527 18.3427 7.1827 18.3427 6.8627C18.3427 6.5627 18.2227 6.2627 18.0027 6.0427L12.3727 0.3327C12.1827 0.1127 11.9127 0.0027 11.5827 0.0027C10.9627 0.0027 10.5027 0.4927 10.5027 1.1227C10.5027 1.4127 10.6127 1.6827 10.8027 1.9027L14.4327 5.4927C13.7227 5.3627 12.9227 5.2627 12.0827 5.2627C5.3827 5.2627 0.0027 10.6327 0.0027 17.3327Z","viewBox":{"width":24.158203125,"height":29.435546875}},"medium":{"name":"arrow.clockwise","path":"M0.0027 17.5141C0.0027 24.2941 5.4427 29.7541 12.2127 29.7541C18.9727 29.7541 24.4227 24.2941 24.4227 17.5141C24.4227 16.7041 23.8527 16.1341 23.0527 16.1341C22.2727 16.1341 21.7527 16.7041 21.7527 17.5141C21.7527 22.8141 17.5027 27.0741 12.2127 27.0741C6.9227 27.0741 2.6827 22.8141 2.6827 17.5141C2.6827 12.1841 6.8927 7.9541 12.1727 7.9541C13.0727 7.9541 13.9027 8.0241 14.6027 8.1741L10.8827 11.8641C10.6327 12.1241 10.5127 12.4141 10.5127 12.7741C10.5127 13.5241 11.0727 14.0941 11.8127 14.0941C12.1927 14.0941 12.5127 13.9741 12.7427 13.7241L18.3627 8.0641C18.6527 7.7841 18.7827 7.4541 18.7827 7.0841C18.7827 6.7241 18.6327 6.3741 18.3627 6.0941L12.7427 0.3941C12.5127 0.1341 12.1927 0.0041 11.8127 0.0041C11.0727 0.0041 10.5127 0.6041 10.5127 1.3441C10.5127 1.6941 10.6327 2.0141 10.8727 2.2541L14.1827 5.5241C13.5727 5.4041 12.8827 5.3341 12.1727 5.3341C5.4127 5.3341 0.0027 10.7441 0.0027 17.5141Z","viewBox":{"width":24.41796875,"height":29.75}},"semibold":{"name":"arrow.clockwise","path":"M0.0027 17.6545C0.0027 24.4745 5.4927 29.9845 12.3227 29.9845C19.1227 29.9845 24.6227 24.4745 24.6227 17.6545C24.6227 16.7345 23.9827 16.0945 23.0827 16.0945C22.1927 16.0945 21.5927 16.7345 21.5927 17.6545C21.5927 22.7945 17.4627 26.9345 12.3227 26.9345C7.1827 26.9345 3.0527 22.7945 3.0527 17.6545C3.0527 12.4445 7.1127 8.3445 12.2327 8.3445C13.0327 8.3445 13.7527 8.3945 14.3827 8.5145L10.9327 11.9345C10.6627 12.2045 10.5127 12.5345 10.5127 12.9345C10.5127 13.7845 11.1527 14.4245 11.9927 14.4245C12.4127 14.4245 12.7727 14.2845 13.0327 14.0145L18.6327 8.3645C18.9527 8.0345 19.1027 7.6745 19.1027 7.2445C19.1027 6.8345 18.9327 6.4345 18.6327 6.1345L13.0327 0.4545C12.7527 0.1545 12.4127 0.0045 11.9927 0.0045C11.1527 0.0045 10.5127 0.6845 10.5127 1.5145C10.5127 1.9245 10.6627 2.2545 10.9227 2.5445L13.9727 5.5545C13.4527 5.4445 12.8527 5.3845 12.2327 5.3845C5.4327 5.3845 0.0027 10.8245 0.0027 17.6545Z","viewBox":{"width":24.623046875,"height":29.982421875}},"bold":{"name":"arrow.clockwise","path":"M0.0027 17.8259C0.0027 24.7159 5.5627 30.2859 12.4427 30.2859C19.3327 30.2859 24.8827 24.7159 24.8827 17.8259C24.8827 16.7659 24.1427 16.0259 23.1027 16.0259C22.0827 16.0259 21.3827 16.7659 21.3827 17.8259C21.3827 22.7659 17.3927 26.7559 12.4427 26.7559C7.4927 26.7559 3.5227 22.7659 3.5227 17.8259C3.5227 12.7859 7.3927 8.8359 12.3327 8.8359C12.9727 8.8359 13.5627 8.8759 14.0827 8.9659L11.0027 12.0159C10.7027 12.3159 10.5127 12.6759 10.5127 13.1559C10.5127 14.1059 11.2627 14.8659 12.2227 14.8659C12.7027 14.8659 13.0927 14.6959 13.4127 14.3959L18.9927 8.7359C19.3627 8.3659 19.5327 7.9559 19.5327 7.4659C19.5327 6.9859 19.3427 6.5359 18.9927 6.1959L13.4127 0.5059C13.0927 0.1759 12.7027 -0.0041 12.2227 -0.0041C11.2627 -0.0041 10.5127 0.7759 10.5127 1.7459C10.5127 2.2259 10.7027 2.5859 10.9927 2.8959L13.7127 5.5659C13.3027 5.4959 12.8127 5.4459 12.3327 5.4459C5.4727 5.4459 0.0027 10.9259 0.0027 17.8259Z","viewBox":{"width":24.8828125,"height":30.283203125}},"heavy":{"name":"arrow.clockwise","path":"M0.0027 18.0593C0.0027 25.0593 5.6427 30.7193 12.6327 30.7193C19.6227 30.7193 25.2627 25.0593 25.2627 18.0593C25.2627 16.7893 24.3727 15.9093 23.1427 15.9093C21.9327 15.9093 21.0727 16.7893 21.0727 18.0593C21.0727 22.7193 17.2927 26.4993 12.6327 26.4993C7.9727 26.4993 4.2227 22.7193 4.2227 18.0593C4.2227 13.2593 7.8227 9.5393 12.4727 9.5393C12.8927 9.5393 13.2927 9.5593 13.6427 9.6093L11.1027 12.1293C10.7427 12.4793 10.5227 12.8793 10.5227 13.4493C10.5227 14.5893 11.4327 15.4893 12.5627 15.4893C13.1127 15.4893 13.5927 15.2993 13.9627 14.9293L19.5127 9.2793C19.9427 8.8493 20.1627 8.3493 20.1627 7.7693C20.1627 7.2093 19.9327 6.6693 19.5127 6.2593L13.9627 0.5993C13.5727 0.1893 13.1127 -0.0007 12.5527 -0.0007C11.4327 -0.0007 10.5227 0.9293 10.5227 2.0793C10.5227 2.6493 10.7427 3.0593 11.0927 3.3993L13.3327 5.5893C13.0727 5.5493 12.7527 5.5193 12.4727 5.5193C5.5127 5.5193 0.0027 11.0693 0.0027 18.0593Z","viewBox":{"width":25.265625,"height":30.720703125}}},"arrow.left.arrow.right":{"light":{"name":"arrow.left.arrow.right","path":"M0.3054 7.2421C-0.1046 7.6421 -0.0946 8.2621 0.3054 8.6421L7.3254 15.5721C7.5254 15.7621 7.7854 15.8721 8.0454 15.8721C8.5754 15.8721 8.9554 15.4921 8.9554 14.9521C8.9554 14.7021 8.8654 14.4821 8.6654 14.2821L5.4954 11.1821L2.8454 8.7621L5.8954 8.8621H24.8254C25.3454 8.8621 25.7454 8.4721 25.7454 7.9421C25.7454 7.3921 25.3454 7.0121 24.8254 7.0121H5.8954L2.8454 7.1121L5.4954 4.7021L8.6654 1.5821C8.8654 1.3921 8.9554 1.1921 8.9554 0.9121C8.9554 0.3821 8.5754 0.0021 8.0454 0.0021C7.7854 0.0021 7.5254 0.1121 7.3254 0.3121ZM25.4454 24.3521C25.8654 23.9521 25.8554 23.3521 25.4454 22.9721L18.4354 16.0221C18.2354 15.8321 17.9754 15.7221 17.7254 15.7221C17.1754 15.7221 16.8054 16.1021 16.8054 16.6421C16.8054 16.9021 16.8854 17.1221 17.0954 17.3121L20.2654 20.4121L22.9154 22.8321L19.8554 22.7321H0.9354C0.4154 22.7321 0.0054 23.1221 0.0054 23.6521C0.0054 24.2021 0.4154 24.5821 0.9354 24.5821H19.8554L22.9154 24.4821L20.2654 26.8921L17.0954 30.0121C16.8854 30.2021 16.8054 30.4021 16.8054 30.6821C16.8054 31.2121 17.1754 31.5921 17.7254 31.5921C17.9754 31.5921 18.2354 31.4821 18.4354 31.2821Z","viewBox":{"width":25.757855230538606,"height":31.595703125}},"regular":{"name":"arrow.left.arrow.right","path":"M0.4137 7.2739C-0.1463 7.8039 -0.1263 8.6039 0.4137 9.1039L7.4537 15.9939C7.6937 16.2439 8.0537 16.3939 8.3537 16.3939C9.0737 16.3939 9.5737 15.8839 9.5737 15.1739C9.5737 14.8339 9.4437 14.5639 9.2137 14.3239L6.2737 11.4839L3.7337 9.2839L6.8937 9.4239H25.1537C25.8637 9.4239 26.3737 8.9139 26.3737 8.1939C26.3737 7.4739 25.8637 6.9739 25.1537 6.9739H6.8937L3.7337 7.0939L6.2737 4.9039L9.2137 2.0539C9.4437 1.8139 9.5737 1.5539 9.5737 1.2039C9.5737 0.4939 9.0737 0.0039 8.3537 0.0039C8.0537 0.0039 7.6937 0.1339 7.4537 0.3839ZM25.9737 25.0239C26.5237 24.4839 26.5137 23.6939 25.9737 23.1739L18.9337 16.2839C18.6937 16.0539 18.3337 15.9039 18.0237 15.9039C17.2937 15.9039 16.8137 16.3939 16.8137 17.1039C16.8137 17.4639 16.9237 17.7339 17.1537 17.9539L20.1137 20.8039L22.6537 23.0139L19.4937 22.8739H1.2337C0.5237 22.8739 0.0037 23.3739 0.0037 24.0939C0.0037 24.8139 0.5237 25.3239 1.2337 25.3239H19.4937L22.6537 25.1839L20.1137 27.3839L17.1537 30.2239C16.9237 30.4639 16.8137 30.7339 16.8137 31.0939C16.8137 31.8039 17.2937 32.2939 18.0237 32.2939C18.3337 32.2939 18.6937 32.1439 18.9337 31.9139Z","viewBox":{"width":26.38167208701158,"height":32.29296875}},"medium":{"name":"arrow.left.arrow.right","path":"M0.4737 7.3463C-0.1663 7.9463 -0.1463 8.8863 0.4737 9.4863L7.5237 16.3763C7.8037 16.6563 8.2137 16.8163 8.5737 16.8163C9.4237 16.8163 10.0037 16.2263 10.0037 15.3963C10.0037 14.9963 9.8737 14.6663 9.5937 14.3963L6.6737 11.5763L4.5437 9.7463L7.4637 9.8563H25.2637C26.0837 9.8563 26.7037 9.2463 26.7037 8.4063C26.7037 7.5763 26.0837 6.9763 25.2637 6.9763H7.4637L4.5437 7.0863L6.6737 5.2463L9.5937 2.4363C9.8737 2.1563 10.0037 1.8363 10.0037 1.4263C10.0037 0.5863 9.4237 -0.0037 8.5737 -0.0037C8.2137 -0.0037 7.8037 0.1763 7.5237 0.4463ZM26.2337 25.4163C26.8637 24.7963 26.8537 23.8663 26.2337 23.2663L19.1837 16.3763C18.9037 16.1063 18.4837 15.9263 18.1337 15.9263C17.2837 15.9263 16.7037 16.5263 16.7037 17.3663C16.7037 17.7563 16.8337 18.0863 17.1137 18.3563L20.0337 21.1763L22.1637 23.0063L19.2337 22.8963H1.4337C0.6137 22.8963 0.0037 23.5063 0.0037 24.3463C0.0037 25.1863 0.6137 25.7863 1.4337 25.7863H19.2337L22.1637 25.6763L20.0337 27.5063L17.1137 30.3263C16.8337 30.5963 16.7037 30.9263 16.7037 31.3263C16.7037 32.1563 17.2837 32.7563 18.1337 32.7563C18.4837 32.7563 18.9037 32.5763 19.1837 32.3063Z","viewBox":{"width":26.702894943560732,"height":32.7578125}},"semibold":{"name":"arrow.left.arrow.right","path":"M0.5237 7.3704C-0.1763 8.0504 -0.1663 9.0904 0.5237 9.7604L7.5737 16.6404C7.8737 16.9404 8.3437 17.1404 8.7537 17.1404C9.6837 17.1404 10.3337 16.4704 10.3337 15.5404C10.3337 15.1104 10.1837 14.7204 9.8837 14.4404L6.9737 11.6304L5.1637 10.0804L7.9137 10.1704H25.3437C26.2637 10.1704 26.9437 9.4904 26.9437 8.5704C26.9437 7.6404 26.2637 6.9604 25.3437 6.9604H7.9137L5.1637 7.0504L6.9737 5.5004L9.8837 2.7104C10.1837 2.4104 10.3337 2.0204 10.3337 1.5904C10.3337 0.6604 9.6837 0.0004 8.7537 0.0004C8.3437 0.0004 7.8737 0.1904 7.5737 0.4904ZM26.4237 25.7204C27.1237 25.0304 27.1237 23.9804 26.4237 23.3204L19.3737 16.4504C19.0737 16.1304 18.6037 15.9404 18.2137 15.9404C17.2637 15.9404 16.6137 16.6104 16.6137 17.5404C16.6137 17.9804 16.7637 18.3604 17.0737 18.6504L19.9737 21.4504L21.7837 23.0104L19.0337 22.9104H1.6137C0.6837 22.9104 0.0037 23.5804 0.0037 24.5104C0.0037 25.4404 0.6837 26.1304 1.6137 26.1304H19.0337L21.7837 26.0304L19.9737 27.5904L17.0737 30.3804C16.7637 30.6804 16.6137 31.0504 16.6137 31.5004C16.6137 32.4304 17.2637 33.0904 18.2137 33.0904C18.6037 33.0904 19.0737 32.8904 19.3737 32.5904Z","viewBox":{"width":26.95068359375,"height":33.0859375}},"bold":{"name":"arrow.left.arrow.right","path":"M0.5854 7.4328C-0.2046 8.1928 -0.1946 9.3928 0.5854 10.1428L7.6454 17.0028C7.9854 17.3528 8.5054 17.5728 8.9754 17.5728C10.0354 17.5728 10.7754 16.8128 10.7754 15.7628C10.7754 15.2728 10.6154 14.8328 10.2554 14.4928L7.3754 11.7128L5.9854 10.5428L8.5054 10.6128H25.4554C26.4954 10.6128 27.2754 9.8328 27.2754 8.7928C27.2754 7.7428 26.4954 6.9628 25.4554 6.9628H8.5054L5.9854 7.0228L7.3754 5.8528L10.2554 3.0728C10.6154 2.7528 10.7754 2.3128 10.7754 1.8028C10.7754 0.7528 10.0354 0.0028 8.9754 0.0028C8.5054 0.0028 7.9854 0.2228 7.6454 0.5628ZM26.6854 26.1128C27.4854 25.3628 27.4654 24.1628 26.6854 23.4028L19.6354 16.5428C19.2954 16.2028 18.7754 15.9828 18.3054 15.9828C17.2454 15.9828 16.5054 16.7328 16.5054 17.7828C16.5054 18.2828 16.6654 18.7128 17.0254 19.0628L19.9054 21.8328L21.2854 23.0128L18.7754 22.9428H1.8354C0.7854 22.9428 0.0054 23.7228 0.0054 24.7628C0.0054 25.8128 0.7854 26.5928 1.8354 26.5928H18.7754L21.2854 26.5228L19.9054 27.7028L17.0254 30.4728C16.6654 30.8028 16.5054 31.2428 16.5054 31.7428C16.5054 32.8028 17.2454 33.5528 18.3054 33.5528C18.7754 33.5528 19.2954 33.3328 19.6354 32.9928Z","viewBox":{"width":27.278830884007856,"height":33.55078125}},"heavy":{"name":"arrow.left.arrow.right","path":"M0.6837 7.5209C-0.2363 8.3909 -0.2163 9.8009 0.6837 10.6809L7.7537 17.5409C8.1437 17.9409 8.7537 18.1809 9.2937 18.1809C10.5237 18.1809 11.4137 17.2909 11.4137 16.0609C11.4137 15.4909 11.2237 14.9709 10.8037 14.5709L7.9437 11.8409L7.1937 11.2009L9.3637 11.2409H25.6037C26.8237 11.2409 27.7537 10.3209 27.7537 9.0909C27.7537 7.8709 26.8237 6.9609 25.6037 6.9609H9.3637L7.1937 7.0009L7.9437 6.3409L10.8037 3.6109C11.2237 3.2309 11.4137 2.6909 11.4137 2.1209C11.4137 0.8909 10.5237 0.0009 9.2937 0.0009C8.7537 0.0009 8.1437 0.2609 7.7537 0.6409ZM27.0537 26.7009C27.9737 25.8109 27.9737 24.4209 27.0537 23.5309L20.0037 16.6709C19.6037 16.2709 19.0037 16.0209 18.4537 16.0209C17.2137 16.0209 16.3337 16.9109 16.3337 18.1409C16.3337 18.7209 16.5337 19.2409 16.9437 19.6309L19.7937 22.3709L20.5637 23.0109L18.3937 22.9709H2.1437C0.9137 22.9709 0.0037 23.8809 0.0037 25.1109C0.0037 26.3409 0.9137 27.2609 2.1437 27.2609H18.3937L20.5637 27.2209L19.7937 27.8609L16.9437 30.6009C16.5337 30.9809 16.3337 31.5109 16.3337 32.0909C16.3337 33.3209 17.2137 34.2109 18.4537 34.2109C19.0037 34.2109 19.6037 33.9509 20.0037 33.5609Z","viewBox":{"width":27.75390625,"height":34.20703125}}},"checkmark":{"light":{"name":"checkmark","path":"M8.3837 22.9457C8.8137 22.9457 9.1437 22.7457 9.3837 22.3957L22.6137 1.7057C22.8037 1.4057 22.8737 1.1757 22.8737 0.9557C22.8737 0.3857 22.4937 -0.0043 21.9337 -0.0043C21.5237 -0.0043 21.2837 0.1457 21.0537 0.5157L8.3237 20.5657L1.8837 12.4957C1.6237 12.1557 1.3637 12.0057 0.9837 12.0057C0.4137 12.0057 0.0037 12.3957 0.0037 12.9757C0.0037 13.2057 0.0937 13.4657 0.3037 13.7257L7.3237 22.3657C7.6337 22.7657 7.9437 22.9457 8.3837 22.9457Z","viewBox":{"width":22.873046875,"height":22.94140625}},"regular":{"name":"checkmark","path":"M8.9137 23.3641C9.5037 23.3641 9.9637 23.1041 10.2937 22.6041L23.2137 2.2541C23.4637 1.8641 23.5537 1.5541 23.5537 1.2441C23.5537 0.4941 23.0637 0.0041 22.3137 0.0041C21.7637 0.0041 21.4637 0.1741 21.1337 0.6941L8.8637 20.2641L2.4837 11.9241C2.1437 11.4441 1.8037 11.2541 1.3137 11.2541C0.5337 11.2541 0.0037 11.7841 0.0037 12.5341C0.0037 12.8541 0.1337 13.2041 0.3937 13.5341L7.4937 22.5741C7.9037 23.1041 8.3237 23.3641 8.9137 23.3641Z","viewBox":{"width":23.556640625,"height":23.365234375}},"medium":{"name":"checkmark","path":"M9.2437 23.7165C9.9637 23.7165 10.5137 23.4165 10.9137 22.8365L23.7637 2.7865C24.0537 2.3565 24.1537 1.9665 24.1537 1.5965C24.1537 0.6565 23.5037 -0.0035 22.5437 -0.0035C21.8737 -0.0035 21.4737 0.2365 21.0637 0.8765L9.1837 19.7465L3.0637 11.8765C2.6637 11.3465 2.2537 11.1265 1.6537 11.1265C0.6937 11.1265 0.0037 11.8165 0.0037 12.7565C0.0037 13.1665 0.1537 13.5665 0.4937 13.9865L7.5737 22.8465C8.0537 23.4365 8.5537 23.7165 9.2437 23.7165Z","viewBox":{"width":24.158203125,"height":23.720703125}},"semibold":{"name":"checkmark","path":"M9.5037 23.9842C10.3037 23.9842 10.9337 23.6642 11.3737 23.0142L24.1737 3.2142C24.5037 2.7242 24.6237 2.2842 24.6237 1.8642C24.6237 0.7842 23.8337 0.0042 22.7237 0.0042C21.9537 0.0042 21.4937 0.2742 21.0237 1.0142L9.4437 19.3642L3.5137 11.8442C3.0637 11.2842 2.5937 11.0342 1.9237 11.0342C0.8037 11.0342 0.0037 11.8242 0.0037 12.9242C0.0037 13.3942 0.1637 13.8542 0.5637 14.3242L7.6437 23.0542C8.1637 23.6942 8.7337 23.9842 9.5037 23.9842Z","viewBox":{"width":24.623046875,"height":23.98046875}},"bold":{"name":"checkmark","path":"M9.8437 24.3366C10.7737 24.3366 11.4937 23.9766 11.9937 23.2266L24.7337 3.7466C25.0837 3.1966 25.2337 2.6966 25.2337 2.2166C25.2337 0.9266 24.2837 -0.0034 22.9737 -0.0034C22.0637 -0.0034 21.5037 0.3266 20.9637 1.1866L9.7737 18.8266L4.1037 11.7866C3.5937 11.1866 3.0537 10.9066 2.2837 10.9066C0.9537 10.9066 0.0037 11.8566 0.0037 13.1366C0.0037 13.7166 0.1737 14.2166 0.6737 14.7766L7.7237 23.3266C8.3137 24.0166 8.9737 24.3366 9.8437 24.3366Z","viewBox":{"width":25.23828125,"height":24.3359375}},"heavy":{"name":"checkmark","path":"M10.3237 24.8448C11.4437 24.8448 12.3037 24.4348 12.8937 23.5548L25.5237 4.5248C25.9537 3.8948 26.1237 3.2848 26.1237 2.7048C26.1237 1.1648 24.9137 0.0048 23.3137 0.0048C22.2337 0.0048 21.5337 0.3948 20.8637 1.4348L10.2637 18.0648L4.9537 11.7048C4.3737 11.0148 3.7037 10.7048 2.7937 10.7048C1.1737 10.7048 0.0037 11.8648 0.0037 13.4348C0.0037 14.1548 0.2037 14.7348 0.8037 15.4248L7.8437 23.7248C8.5137 24.5048 9.3137 24.8448 10.3237 24.8448Z","viewBox":{"width":26.126953125,"height":24.841796875}}},"clock":{"light":{"name":"clock","path":"M13.7127 27.424C21.2227 27.424 27.4227 21.214 27.4227 13.714C27.4227 6.194 21.2227 0.004 13.7027 0.004C6.1927 0.004 0.0027 6.194 0.0027 13.714C0.0027 21.214 6.2027 27.424 13.7127 27.424ZM13.7127 25.644C7.0927 25.644 1.7727 20.314 1.7727 13.714C1.7727 7.094 7.0927 1.764 13.7027 1.764C20.3127 1.764 25.6527 7.094 25.6627 13.714C25.6627 20.314 20.3327 25.644 13.7127 25.644ZM6.2727 15.054H13.7027C14.1327 15.054 14.4627 14.724 14.4627 14.304V4.714C14.4627 4.294 14.1327 3.974 13.7027 3.974C13.2927 3.974 12.9627 4.294 12.9627 4.714V13.564H6.2727C5.8527 13.564 5.5327 13.894 5.5327 14.304C5.5327 14.724 5.8527 15.054 6.2727 15.054Z","viewBox":{"width":27.42578125,"height":27.42578125}},"regular":{"name":"clock","path":"M13.9427 27.8864C21.5727 27.8864 27.8927 21.5564 27.8927 13.9464C27.8927 6.3164 21.5627 -0.0036 13.9327 -0.0036C6.3127 -0.0036 0.0027 6.3164 0.0027 13.9464C0.0027 21.5564 6.3327 27.8864 13.9427 27.8864ZM13.9427 25.5664C7.4927 25.5664 2.3427 20.3964 2.3427 13.9464C2.3427 7.4964 7.4827 2.3264 13.9327 2.3264C20.3827 2.3264 25.5527 7.4964 25.5627 13.9464C25.5827 20.3964 20.4027 25.5664 13.9427 25.5664ZM6.7927 15.4264H13.9327C14.4627 15.4264 14.8927 15.0164 14.8927 14.4664V5.2464C14.8927 4.7164 14.4627 4.3064 13.9327 4.3064C13.4027 4.3064 12.9927 4.7164 12.9927 5.2464V13.5264H6.7927C6.2527 13.5264 5.8427 13.9364 5.8427 14.4664C5.8427 15.0164 6.2527 15.4264 6.7927 15.4264Z","viewBox":{"width":27.890625,"height":27.890625}},"medium":{"name":"clock","path":"M14.1227 28.2441C21.8427 28.2441 28.2427 21.8641 28.2427 14.1241C28.2427 6.3941 21.8427 0.0041 14.1127 0.0041C6.3827 0.0041 0.0027 6.3941 0.0027 14.1241C0.0027 21.8641 6.4027 28.2441 14.1227 28.2441ZM14.1227 25.4741C7.8327 25.4741 2.7927 20.4141 2.7927 14.1241C2.7927 7.8341 7.8227 2.7841 14.1127 2.7841C20.4027 2.7841 25.4527 7.8341 25.4727 14.1241C25.4727 20.4141 20.4127 25.4741 14.1227 25.4741ZM7.2027 15.8141H14.1127C14.7227 15.8141 15.2027 15.3441 15.2027 14.7341V5.7741C15.2027 5.1641 14.7227 4.6941 14.1127 4.6941C13.5127 4.6941 13.0327 5.1641 13.0327 5.7741V13.6541H7.2027C6.5927 13.6541 6.1227 14.1241 6.1227 14.7341C6.1227 15.3441 6.5927 15.8141 7.2027 15.8141Z","viewBox":{"width":28.24609375,"height":28.24609375}},"semibold":{"name":"clock","path":"M14.2627 28.5209C22.0827 28.5209 28.5227 22.0809 28.5227 14.2609C28.5227 6.4509 22.0627 0.0009 14.2427 0.0009C6.4427 0.0009 0.0027 6.4509 0.0027 14.2609C0.0027 22.0809 6.4427 28.5209 14.2627 28.5209ZM14.2627 25.3909C8.0927 25.3909 3.1427 20.4209 3.1427 14.2609C3.1427 8.0909 8.0827 3.1309 14.2427 3.1309C20.4227 3.1309 25.3727 8.0909 25.3927 14.2609C25.4027 20.4209 20.4227 25.3909 14.2627 25.3909ZM7.5327 16.1309H14.2427C14.9127 16.1309 15.4327 15.6009 15.4327 14.9409V6.1809C15.4327 5.5109 14.9127 4.9909 14.2427 4.9909C13.5927 4.9909 13.0727 5.5109 13.0727 6.1809V13.7509H7.5327C6.8627 13.7509 6.3427 14.2709 6.3427 14.9409C6.3427 15.6009 6.8627 16.1309 7.5327 16.1309Z","viewBox":{"width":28.51953125,"height":28.51953125}},"bold":{"name":"clock","path":"M14.4327 28.8886C22.3627 28.8886 28.8727 22.3686 28.8727 14.4386C28.8727 6.5186 22.3527 -0.0014 14.4327 -0.0014C6.5127 -0.0014 0.0027 6.5186 0.0027 14.4386C0.0027 22.3686 6.5227 28.8886 14.4327 28.8886ZM14.4327 25.2886C8.4327 25.2886 3.6127 20.4486 3.6127 14.4386C3.6127 8.4386 8.4227 3.5986 14.4327 3.5986C20.4427 3.5986 25.2827 8.4386 25.2827 14.4386C25.2927 20.4486 20.4527 25.2886 14.4327 25.2886ZM7.9427 16.5286H14.4327C15.1727 16.5286 15.7527 15.9386 15.7527 15.1986V6.6986C15.7527 5.9586 15.1727 5.3886 14.4327 5.3886C13.7027 5.3886 13.1127 5.9586 13.1127 6.6986V13.8886H7.9427C7.2027 13.8886 6.6327 14.4686 6.6327 15.1986C6.6327 15.9386 7.2027 16.5286 7.9427 16.5286Z","viewBox":{"width":28.875,"height":28.888671875}},"heavy":{"name":"clock","path":"M14.6927 29.4084C22.7727 29.4084 29.4127 22.7884 29.4127 14.7084C29.4127 6.6284 22.7727 -0.0016 14.6927 -0.0016C6.6127 -0.0016 0.0027 6.6284 0.0027 14.7084C0.0027 22.7884 6.6127 29.4084 14.6927 29.4084ZM14.6927 25.1384C8.9327 25.1384 4.2627 20.4784 4.2627 14.7084C4.2627 8.9284 8.9327 4.2784 14.6927 4.2784C20.4627 4.2784 25.1327 8.9284 25.1327 14.7084C25.1427 20.4784 20.4827 25.1384 14.6927 25.1384ZM8.5627 17.1184H14.6927C15.5427 17.1184 16.2127 16.4484 16.2127 15.5984V7.4784C16.2127 6.6184 15.5427 5.9584 14.6927 5.9584C13.8527 5.9584 13.1827 6.6184 13.1827 7.4784V14.0784H8.5627C7.7127 14.0784 7.0427 14.7384 7.0427 15.5984C7.0427 16.4484 7.7127 17.1184 8.5627 17.1184Z","viewBox":{"width":29.408203125,"height":29.408203125}}},"doc.on.doc":{"light":{"name":"doc.on.doc","path":"M0.0037 29.9826C0.0037 32.6626 1.3537 34.0126 3.9937 34.0126H17.0337C19.6837 34.0126 21.0237 32.6526 21.0237 29.9826V27.4026H23.6537C26.3037 27.4026 27.6537 26.0326 27.6537 23.3626V11.7626C27.6537 10.4626 27.3837 9.6026 26.5137 8.7126L19.0137 1.1326C18.1837 0.3026 17.2837 0.0026 16.1237 0.0026H10.6237C7.9837 0.0026 6.6137 1.3626 6.6137 4.0326V6.6326H3.9937C1.3637 6.6326 0.0037 8.0026 0.0037 10.6626ZM19.9337 15.8426L11.8937 7.7226C11.0237 6.8326 10.3037 6.6326 8.9737 6.6326H8.3137V4.0626C8.3137 2.5526 9.1337 1.6926 10.7037 1.6926H16.9137V9.1426C16.9137 10.6126 17.6137 11.2626 19.0337 11.2626H25.9637V23.3226C25.9637 24.8726 25.1437 25.7026 23.5737 25.7026H21.0237V18.9126C21.0237 17.4326 20.8337 16.7726 19.9337 15.8426ZM18.4537 8.9326V2.6426L25.4537 9.7226H19.2337C18.6737 9.7226 18.4537 9.5026 18.4537 8.9326ZM1.6937 29.9526V10.6926C1.6937 9.1826 2.5037 8.3126 4.0837 8.3126H9.0637V16.5426C9.0637 18.1126 9.8537 18.8526 11.3737 18.8526H19.3437V29.9526C19.3437 31.5026 18.5237 32.3326 16.9537 32.3326H4.0737C2.5037 32.3326 1.6937 31.5026 1.6937 29.9526ZM11.5537 17.2526C10.9237 17.2526 10.6637 16.9926 10.6637 16.3626V8.8326L18.9937 17.2526Z","viewBox":{"width":27.658203125,"height":34.015625}},"regular":{"name":"doc.on.doc","path":"M0.0037 30.104C0.0037 32.964 1.4037 34.394 4.2337 34.394H17.0937C19.9237 34.394 21.3237 32.954 21.3237 30.104V27.574H23.7237C26.5337 27.574 27.9637 26.124 27.9637 23.284V12.184C27.9637 10.504 27.6137 9.434 26.5937 8.384L19.6837 1.364C18.7137 0.374 17.5637 0.004 16.1037 0.004H10.8737C8.0537 0.004 6.6337 1.454 6.6337 4.294V6.824H4.2337C1.4237 6.824 0.0037 8.254 0.0037 11.114ZM20.0337 15.794L12.4937 8.124C11.4537 7.054 10.5937 6.824 9.0637 6.824H8.8337V4.334C8.8337 2.984 9.5537 2.204 10.9737 2.204H17.0237V9.214C17.0237 10.804 17.7837 11.554 19.3637 11.554H25.7537V23.244C25.7537 24.614 25.0237 25.374 23.5937 25.374H21.3237V19.424C21.3237 17.674 21.1237 16.914 20.0337 15.794ZM19.0037 8.884V3.284L25.1837 9.574H19.6737C19.1937 9.574 19.0037 9.364 19.0037 8.884ZM2.2037 30.064V11.144C2.2037 9.804 2.9237 9.024 4.3437 9.024H8.8337V16.954C8.8337 18.674 9.7037 19.534 11.4037 19.534H19.1237V30.064C19.1237 31.434 18.3937 32.194 16.9837 32.194H4.3337C2.9237 32.194 2.2037 31.434 2.2037 30.064ZM11.6637 17.474C11.1137 17.474 10.8937 17.254 10.8937 16.704V9.534L18.7037 17.474Z","viewBox":{"width":27.958984375,"height":34.3984375}},"medium":{"name":"doc.on.doc","path":"M0.0037 30.2817C0.0037 33.2317 1.5137 34.7717 4.4437 34.7717H17.2437C20.1637 34.7717 21.6737 33.2217 21.6737 30.2817V27.7517H23.9937C26.9237 27.7517 28.4337 26.2217 28.4337 23.2717V12.4417C28.4337 10.6517 28.0637 9.5017 26.9837 8.3917L20.1637 1.4517C19.1437 0.3917 17.9237 0.0017 16.3537 0.0017H11.1937C8.2837 0.0017 6.7537 1.5317 6.7537 4.4817V7.0017H4.4437C1.5137 7.0017 0.0037 8.5417 0.0037 11.4817ZM20.3037 15.9117L12.8937 8.3817C11.8437 7.3117 10.9537 7.0317 9.4337 7.0117V4.6317C9.4337 3.3817 10.1037 2.6817 11.4337 2.6817H17.1437V9.2117C17.1437 10.9117 18.0437 11.7817 19.7237 11.7817H25.7537V23.1017C25.7537 24.3817 25.1037 25.0717 23.7637 25.0717H21.6737V19.7717C21.6737 17.9217 21.4537 17.0717 20.3037 15.9117ZM19.3837 8.8717V3.7917L25.0637 9.5417H20.0537C19.5937 9.5417 19.3837 9.3517 19.3837 8.8717ZM2.6837 30.1217V11.6517C2.6837 10.3917 3.3337 9.6817 4.6637 9.6817H8.8637V17.1717C8.8637 19.1317 9.8337 20.0817 11.7737 20.0817H18.9937V30.1217C18.9937 31.3917 18.3337 32.0917 17.0037 32.0917H4.6637C3.3337 32.0917 2.6837 31.3917 2.6837 30.1217ZM12.0337 17.7217C11.4737 17.7217 11.2237 17.4717 11.2237 16.9117V10.2017L18.6237 17.7217Z","viewBox":{"width":28.4375,"height":34.767578125}},"semibold":{"name":"doc.on.doc","path":"M0.0037 30.4321C0.0037 33.4721 1.5837 35.0721 4.5937 35.0721H17.3537C20.3437 35.0721 21.9437 33.4521 21.9437 30.4321V27.9021H24.2137C27.2037 27.9021 28.8037 26.3021 28.8037 23.2821V12.6421C28.8037 10.7621 28.4137 9.5521 27.2937 8.4121L20.5337 1.5221C19.4737 0.4421 18.1837 0.0021 16.5337 0.0021H11.4537C8.4637 0.0021 6.8637 1.6121 6.8637 4.6321V7.1621H4.5937C1.6037 7.1621 0.0037 8.7621 0.0037 11.7821ZM20.5037 16.0121L13.1937 8.5821C12.1837 7.5721 11.2937 7.2321 9.9137 7.1821V4.8921C9.9137 3.7021 10.5137 3.0521 11.7737 3.0521H17.2537V9.2321C17.2537 11.0021 18.2537 11.9721 20.0037 11.9721H25.7537V23.0221C25.7537 24.2121 25.1537 24.8721 23.8937 24.8721H21.9437V20.0421C21.9437 18.1421 21.6937 17.2121 20.5037 16.0121ZM19.6837 8.8821V4.1821L24.9637 9.5421H20.3437C19.8937 9.5421 19.6837 9.3521 19.6837 8.8821ZM3.0537 30.1721V12.0421C3.0537 10.8521 3.6537 10.2021 4.9037 10.2021H8.8837V17.3521C8.8837 19.4821 9.9237 20.5121 12.0537 20.5121H18.8937V30.1721C18.8937 31.3721 18.2937 32.0221 17.0337 32.0221H4.8937C3.6537 32.0221 3.0537 31.3721 3.0537 30.1721ZM12.3137 17.9221C11.7437 17.9221 11.4837 17.6621 11.4837 17.0921V10.7421L18.5637 17.9221Z","viewBox":{"width":28.806640625,"height":35.068359375}},"bold":{"name":"doc.on.doc","path":"M0.0037 30.6235C0.0037 33.7535 1.6937 35.4535 4.8037 35.4535H17.5037C20.6037 35.4535 22.3037 33.7435 22.3037 30.6235V28.1135H24.5037C27.6037 28.1135 29.2837 26.4035 29.2837 23.2835V12.9235C29.2837 10.9235 28.8637 9.6235 27.6837 8.4235L21.0237 1.6135C19.9037 0.4735 18.5437 0.0035 16.7637 0.0035H11.8037C8.6937 0.0035 7.0037 1.7135 7.0037 4.8235V7.3535H4.8037C1.6937 7.3535 0.0037 9.0635 0.0037 12.1835ZM20.7837 16.1335L13.5937 8.8735C12.6337 7.9035 11.7537 7.5235 10.5237 7.3935V5.2235C10.5237 4.1335 11.0637 3.5235 12.2237 3.5235H17.3937V9.2435C17.3937 11.1135 18.5137 12.2235 20.3837 12.2235H25.7537V22.9035C25.7537 23.9935 25.2237 24.5835 24.0637 24.5835H22.3037V20.3835C22.3037 18.4035 22.0137 17.3935 20.7837 16.1335ZM20.0837 8.8835V4.7135L24.8437 9.5435H20.7437C20.2937 9.5435 20.0837 9.3335 20.0837 8.8835ZM3.5237 30.2435V12.5635C3.5237 11.4735 4.0637 10.8835 5.2237 10.8835H8.9237V17.5835C8.9237 19.9635 10.0637 21.0635 12.4237 21.0635H18.7737V30.2435C18.7737 31.3535 18.2237 31.9235 17.0637 31.9235H5.2237C4.0637 31.9235 3.5237 31.3535 3.5237 30.2435ZM12.6837 18.1835C12.1037 18.1835 11.8237 17.9135 11.8237 17.3135V11.4435L18.4837 18.1835Z","viewBox":{"width":29.28515625,"height":35.451171875}},"heavy":{"name":"doc.on.doc","path":"M0.0037 30.917C0.0037 34.167 1.8437 36.007 5.1037 36.007H17.7237C20.9637 36.007 22.8037 34.167 22.8037 30.917V28.397H24.9137C28.1537 28.397 29.9937 26.537 29.9937 23.287V13.307C29.9937 11.127 29.5137 9.737 28.2637 8.437L21.7237 1.747C20.5337 0.547 19.0437 -0.003 17.1037 -0.003H12.2937C9.0337 -0.003 7.1937 1.857 7.1937 5.117V7.627H5.1037C1.8437 7.627 0.0037 9.487 0.0037 12.747ZM21.1737 16.327L14.1637 9.267C13.2937 8.397 12.4737 7.957 11.4137 7.767V5.687C11.4137 4.727 11.8537 4.237 12.8837 4.237H17.5937V9.257C17.5937 11.297 18.8937 12.587 20.9137 12.587H25.7737V22.707C25.7737 23.667 25.3337 24.157 24.3037 24.157H22.8037V20.887C22.8037 18.797 22.4937 17.637 21.1737 16.327ZM20.6537 8.887V5.487L24.6637 9.527H21.2837C20.8637 9.527 20.6537 9.327 20.6537 8.887ZM4.2237 30.337V13.317C4.2237 12.357 4.6637 11.867 5.6837 11.867H8.9837V17.907C8.9837 20.627 10.2437 21.887 12.9637 21.887H18.5837V30.337C18.5837 31.297 18.1437 31.787 17.1137 31.787H5.6837C4.6637 31.787 4.2237 31.297 4.2237 30.337ZM13.2337 18.557C12.6237 18.557 12.3037 18.247 12.3037 17.627V12.457L18.3737 18.557Z","viewBox":{"width":29.99609375,"height":36.01171875}}},"hammer.fill":{"light":{"name":"hammer.fill","path":"M27.2213 18.6616C27.7113 19.1516 28.2513 19.1816 28.7613 18.6916L32.9213 14.5416C33.3813 14.0616 33.3513 13.4916 32.8813 13.0016L31.8413 11.9716C31.2613 11.4016 30.9313 11.3316 30.2613 11.3716L28.9413 11.4916L27.7813 10.3516L28.2013 8.5516C28.4013 7.6116 28.1213 6.7616 27.2213 5.8716L24.3313 3.0016C20.5713 -0.7284 13.8013 -1.1284 10.0613 2.6116C9.4613 3.2116 9.5413 3.8916 9.9113 4.3216C10.1913 4.6216 10.6713 4.7916 11.1513 4.6616C13.7913 3.9916 16.0913 3.9116 18.0813 5.2016L17.0213 7.8616C16.5913 8.9116 16.8113 9.6916 17.5113 10.4016L20.6113 13.5016C21.1313 14.0216 21.6413 14.1616 22.4713 14.0016L24.5413 13.5916L25.6813 14.7316L25.5913 16.0516C25.5513 16.7416 25.5913 17.0916 26.1813 17.6616ZM3.0313 30.2116C4.2113 31.3716 5.4913 31.2916 6.6813 29.9416L19.9313 15.0516L16.0513 11.1716L1.0913 24.3316C-0.2787 25.5416 -0.3487 26.8216 0.8113 27.9816Z","viewBox":{"width":33.251379021986935,"height":31.02382289067848}},"regular":{"name":"hammer.fill","path":"M27.4386 18.8749C28.0286 19.4349 28.6986 19.4749 29.2586 18.9149L33.3786 14.8249C33.9086 14.2949 33.8686 13.5849 33.2986 13.0249L32.3086 12.0249C31.7786 11.5049 31.4386 11.4249 30.8586 11.4649L29.2586 11.6549L28.2386 10.6349L28.6986 8.7049C28.9286 7.7649 28.5786 6.7649 27.5786 5.7649L24.8286 3.0449C21.0286 -0.7451 14.0286 -1.1651 10.1086 2.7449C9.4486 3.3949 9.5686 4.1349 9.9986 4.6049C10.3286 4.9149 10.8286 5.0849 11.3086 4.9349C13.9586 4.1349 16.2686 3.9849 18.2686 5.1749L17.2186 7.9349C16.7686 9.0949 17.0086 9.9249 17.7486 10.6749L20.7986 13.7249C21.3586 14.2849 21.9486 14.4449 22.8386 14.2649L25.0386 13.8149L26.0486 14.8449L25.8986 16.4449C25.8586 17.0449 25.9086 17.3949 26.4586 17.9049ZM3.1386 30.6449C4.3486 31.8649 5.7686 31.7649 6.9986 30.3549L20.0086 15.5549L15.9886 11.5349L1.1386 24.4949C-0.2814 25.7349 -0.3614 27.1449 0.8486 28.3749Z","viewBox":{"width":33.751729469845536,"height":31.492817370749094}},"medium":{"name":"hammer.fill","path":"M27.9049 19.2191C28.5749 19.8591 29.3849 19.9191 30.0049 19.2691L34.0949 15.1991C34.7149 14.5791 34.6749 13.7491 34.0149 13.0891L33.0449 12.1191C32.4749 11.5491 32.0849 11.4691 31.4549 11.5191L29.9649 11.6891L28.9849 10.7191L29.4249 8.8991C29.6649 7.8891 29.2949 6.8591 28.2349 5.7891L25.5249 3.0991C21.6249 -0.7709 14.4049 -1.1809 10.4149 2.7991C9.7249 3.5091 9.8049 4.3291 10.2349 4.8591C10.6049 5.2691 11.2149 5.4791 11.8349 5.2891C14.3949 4.5391 16.6649 4.3891 18.5649 5.4891L17.5949 8.0391C17.1149 9.2491 17.3649 10.1391 18.1649 10.9591L21.1049 13.9091C21.7949 14.5991 22.4749 14.7991 23.4649 14.6091L25.4949 14.1891L26.4649 15.1691L26.3149 16.6591C26.2649 17.3091 26.3349 17.6991 26.9349 18.2791ZM3.2549 31.3091C4.5549 32.5891 6.1149 32.5091 7.3949 31.0191L20.4549 16.0491L16.1849 11.7791L1.1849 24.8091C-0.3051 26.1091 -0.3851 27.6691 0.9049 28.9491Z","viewBox":{"width":34.53404048670482,"height":32.20618829980968}},"semibold":{"name":"hammer.fill","path":"M28.2461 19.4763C28.9961 20.1963 29.8961 20.2363 30.5961 19.5463L34.6561 15.4963C35.3261 14.8163 35.2861 13.8863 34.5761 13.1563L33.6161 12.1963C33.0061 11.5863 32.5761 11.5063 31.9261 11.5563L30.5161 11.7063L29.5561 10.7763L29.9661 9.0463C30.2261 7.9763 29.8461 6.9263 28.7561 5.8263L26.0561 3.1463C22.0961 -0.7837 14.6961 -1.1937 10.6661 2.8463C9.9261 3.5863 9.9861 4.4763 10.4361 5.0663C10.8161 5.5263 11.4961 5.7863 12.2461 5.5663C14.7261 4.8563 16.9861 4.6963 18.7961 5.7463L17.8961 8.1163C17.4061 9.3863 17.6361 10.3163 18.4861 11.1863L21.3561 14.0563C22.1361 14.8363 22.8961 15.0863 23.9361 14.8663L25.8561 14.4663L26.7961 15.4263L26.6461 16.8363C26.5761 17.5163 26.6561 17.9463 27.3061 18.5563ZM3.3461 31.8063C4.7061 33.1563 6.3761 33.0663 7.7161 31.5163L20.8061 16.4363L16.3361 11.9863L1.2461 25.0363C-0.3239 26.3963 -0.3939 28.0563 0.9561 29.3963Z","viewBox":{"width":35.13667042971586,"height":32.75480504692286}},"bold":{"name":"hammer.fill","path":"M28.7125 19.8427C29.5425 20.6527 30.5825 20.6927 31.3625 19.9027L35.3825 15.8927C36.1425 15.1227 36.1025 14.0627 35.3025 13.2427L34.3725 12.3127C33.7125 11.6427 33.2425 11.5427 32.5325 11.6127L31.2225 11.7527L30.3225 10.8627L30.7025 9.2527C30.9625 8.1127 30.5525 7.0227 29.4225 5.8827L26.7525 3.2227C22.7025 -0.8173 15.0625 -1.2073 10.9725 2.9027C10.1825 3.7127 10.2125 4.6827 10.6725 5.3427C11.1025 5.9027 11.8625 6.2027 12.7825 5.9527C15.1725 5.2727 17.3725 5.0927 19.1125 6.0727L18.2925 8.2127C17.7725 9.5527 17.9925 10.5627 18.9025 11.4927L21.6625 14.2627C22.5725 15.1527 23.4425 15.4527 24.5625 15.2227L26.3125 14.8627L27.2325 15.7527L27.0625 17.0827C26.9825 17.7927 27.0925 18.2727 27.7825 18.9227ZM3.4825 32.4727C4.9025 33.9027 6.7125 33.8327 8.1225 32.1727L21.2525 16.9427L16.5525 12.2427L1.2925 25.3527C-0.3475 26.7727 -0.4175 28.5827 1.0125 30.0027Z","viewBox":{"width":35.92933313922065,"height":33.483838458989226}},"heavy":{"name":"hammer.fill","path":"M29.3956 20.338C30.3656 21.288 31.5856 21.338 32.4856 20.418L36.4456 16.448C37.3356 15.558 37.2856 14.328 36.3656 13.368L35.4756 12.448C34.7356 11.698 34.2056 11.608 33.4256 11.688L32.2656 11.798L31.4356 10.978L31.7556 9.538C32.0356 8.298 31.6056 7.148 30.3956 5.948L27.7656 3.308C23.5956 -0.852 15.6156 -1.232 11.4456 2.988C10.5856 3.868 10.5556 4.978 11.0456 5.728C11.5156 6.408 12.4156 6.788 13.5656 6.488C15.8056 5.858 17.9656 5.668 19.5556 6.548L18.8556 8.368C18.3056 9.768 18.5156 10.898 19.5256 11.918L22.1356 14.548C23.2156 15.628 24.2356 15.988 25.4856 15.738L27.0056 15.408L27.8456 16.238L27.6956 17.418C27.5756 18.178 27.7256 18.728 28.4956 19.468ZM3.6756 33.438C5.2056 34.968 7.2156 34.898 8.7256 33.138L21.9256 17.678L16.8556 12.598L1.3956 25.808C-0.3844 27.318 -0.4344 29.328 1.0956 30.868Z","viewBox":{"width":37.08609647258234,"height":34.52737665711565}}},"wallet.pass":{"light":{"name":"wallet.pass","path":"M3.9937 29.138H18.6037C21.2437 29.138 22.6037 27.768 22.6037 25.098V4.018C22.6037 1.358 21.2637 -0.002 18.6037 -0.002H14.5637C14.2037 -0.002 13.9737 0.248 13.9737 0.618C13.9737 2.128 12.8837 3.238 11.3037 3.238C9.7237 3.238 8.6237 2.128 8.6237 0.618C8.6237 0.248 8.3937 -0.002 8.0437 -0.002H3.9937C1.3537 -0.002 0.0037 1.358 0.0037 4.018V25.098C0.0037 27.768 1.3637 29.138 3.9937 29.138ZM4.0837 27.438C2.5037 27.438 1.6937 26.578 1.6937 25.058V4.058C1.6937 2.518 2.5037 1.678 4.0837 1.678H7.1137C7.5337 3.638 9.1337 4.878 11.3037 4.878C13.4637 4.878 15.0837 3.638 15.5037 1.678H18.5237C20.0937 1.678 20.9137 2.518 20.9137 4.058V25.058C20.9137 26.578 20.0937 27.438 18.5237 27.438ZM5.9337 9.718H16.6837C17.0637 9.718 17.3637 9.438 17.3637 9.038C17.3637 8.658 17.0637 8.368 16.6837 8.368H5.9337C5.5337 8.368 5.2537 8.658 5.2537 9.038C5.2537 9.438 5.5337 9.718 5.9337 9.718ZM5.9337 14.708H11.1137C11.4937 14.708 11.8037 14.408 11.8037 14.038C11.8037 13.658 11.4937 13.358 11.1137 13.358H5.9337C5.5337 13.358 5.2537 13.658 5.2537 14.038C5.2537 14.408 5.5337 14.708 5.9337 14.708Z","viewBox":{"width":22.599609375,"height":29.134765625}},"regular":{"name":"wallet.pass","path":"M4.2337 29.3173H18.7537C21.5737 29.3173 22.9937 27.8773 22.9937 25.0373V4.2973C22.9937 1.4373 21.5837 -0.0027 18.7537 -0.0027H14.6937C14.2337 -0.0027 13.9337 0.3273 13.9337 0.8173C13.9337 2.2373 12.9437 3.2373 11.4937 3.2373C10.0537 3.2373 9.0537 2.2373 9.0537 0.8173C9.0537 0.3273 8.7537 -0.0027 8.2837 -0.0027H4.2337C1.4037 -0.0027 0.0037 1.4373 0.0037 4.2973V25.0373C0.0037 27.8773 1.4237 29.3173 4.2337 29.3173ZM4.3437 27.1073C2.9237 27.1073 2.2037 26.3473 2.2037 24.9873V4.3373C2.2037 2.9673 2.9237 2.1973 4.3437 2.1973H7.1137C7.6337 4.1573 9.2837 5.3773 11.4937 5.3773C13.7137 5.3773 15.3637 4.1573 15.8837 2.1973H18.6437C20.0737 2.1973 20.7937 2.9673 20.7937 4.3373V24.9873C20.7937 26.3473 20.0737 27.1073 18.6437 27.1073ZM6.3137 10.1873H16.6937C17.1737 10.1873 17.5237 9.8173 17.5237 9.3273C17.5237 8.8573 17.1737 8.4873 16.6937 8.4873H6.3137C5.8237 8.4873 5.4737 8.8573 5.4737 9.3273C5.4737 9.8173 5.8237 10.1873 6.3137 10.1873ZM6.3137 15.0373H11.2237C11.7137 15.0373 12.0737 14.6673 12.0737 14.2073C12.0737 13.7273 11.7137 13.3573 11.2237 13.3573H6.3137C5.8237 13.3573 5.4737 13.7273 5.4737 14.2073C5.4737 14.6673 5.8237 15.0373 6.3137 15.0373Z","viewBox":{"width":22.99609375,"height":29.3125}},"medium":{"name":"wallet.pass","path":"M4.4437 29.6041H19.0037C21.9337 29.6041 23.4437 28.0541 23.4437 25.1141V4.4841C23.4437 1.5341 21.9337 0.0041 19.0037 0.0041H14.9137C14.4137 0.0041 14.0937 0.3141 14.0937 0.8241C14.0937 2.1741 13.1637 3.1841 11.7137 3.1841C10.2837 3.1841 9.3337 2.1741 9.3337 0.8241C9.3337 0.3141 9.0237 0.0041 8.5137 0.0041H4.4437C1.5137 0.0041 0.0037 1.5341 0.0037 4.4841V25.1141C0.0037 28.0541 1.5137 29.6041 4.4437 29.6041ZM4.6637 26.9241C3.3337 26.9241 2.6837 26.2041 2.6837 24.9541V4.6441C2.6837 3.3741 3.3337 2.6841 4.6637 2.6841H7.2837C7.8737 4.5841 9.5337 5.7441 11.7137 5.7441C13.9137 5.7441 15.5737 4.5841 16.1637 2.6841H18.7737C20.0937 2.6841 20.7637 3.3741 20.7637 4.6441V24.9541C20.7637 26.2041 20.0937 26.9241 18.7737 26.9241ZM6.7237 10.4841H16.7337C17.2237 10.4841 17.5937 10.1041 17.5937 9.5941C17.5937 9.1241 17.2237 8.7541 16.7337 8.7541H6.7237C6.2037 8.7541 5.8337 9.1241 5.8337 9.5941C5.8337 10.1041 6.2037 10.4841 6.7237 10.4841ZM6.7237 15.2341H11.5637C12.0537 15.2341 12.4237 14.8441 12.4237 14.3741C12.4237 13.8741 12.0537 13.4941 11.5637 13.4941H6.7237C6.2037 13.4941 5.8337 13.8741 5.8337 14.3741C5.8337 14.8441 6.2037 15.2341 6.7237 15.2341Z","viewBox":{"width":23.447265625,"height":29.599609375}},"semibold":{"name":"wallet.pass","path":"M4.5937 29.7998H19.1937C22.1937 29.7998 23.7937 28.1898 23.7937 25.1698V4.6198C23.7937 1.5898 22.1937 -0.0002 19.1937 -0.0002H15.0837C14.5437 -0.0002 14.2337 0.2998 14.2337 0.8098C14.2337 2.1098 13.3337 3.1398 11.8937 3.1398C10.4637 3.1398 9.5437 2.1098 9.5437 0.8098C9.5437 0.2998 9.2237 -0.0002 8.6937 -0.0002H4.5937C1.5837 -0.0002 0.0037 1.5898 0.0037 4.6198V25.1698C0.0037 28.1898 1.6037 29.7998 4.5937 29.7998ZM4.9037 26.7598C3.6537 26.7598 3.0537 26.0998 3.0537 24.9098V4.8798C3.0537 3.6798 3.6537 3.0398 4.9037 3.0398H7.4337C8.0637 4.8798 9.7237 5.9998 11.8937 5.9998C14.0637 5.9998 15.7237 4.8798 16.3537 3.0398H18.8837C20.1437 3.0398 20.7437 3.6798 20.7437 4.8798V24.9098C20.7437 26.0998 20.1437 26.7598 18.8837 26.7598ZM7.0237 10.7098H16.7637C17.2637 10.7098 17.6537 10.3098 17.6537 9.7998C17.6537 9.3098 17.2637 8.9298 16.7637 8.9298H7.0237C6.5037 8.9298 6.1237 9.3098 6.1237 9.7998C6.1237 10.3098 6.5037 10.7098 7.0237 10.7098ZM7.0237 15.3498H11.8137C12.3137 15.3498 12.7037 14.9798 12.7037 14.4898C12.7037 13.9898 12.3137 13.5898 11.8137 13.5898H7.0237C6.5037 13.5898 6.1237 13.9898 6.1237 14.4898C6.1237 14.9798 6.5037 15.3498 7.0237 15.3498Z","viewBox":{"width":23.7890625,"height":29.8046875}},"bold":{"name":"wallet.pass","path":"M4.8037 30.0902H19.4437C22.5437 30.0902 24.2437 28.3802 24.2437 25.2702V4.8302C24.2437 1.7002 22.5437 0.0002 19.4437 0.0002H15.3137C14.7237 0.0002 14.4137 0.3002 14.4137 0.8202C14.4137 2.0402 13.5537 3.1002 12.1237 3.1002C10.6937 3.1002 9.8137 2.0402 9.8137 0.8202C9.8137 0.3002 9.5037 0.0002 8.9237 0.0002H4.8037C1.6937 0.0002 0.0037 1.7002 0.0037 4.8302V25.2702C0.0037 28.3802 1.6937 30.0902 4.8037 30.0902ZM5.2237 26.5602C4.0637 26.5602 3.5237 25.9802 3.5237 24.8802V5.2102C3.5237 4.1202 4.0637 3.5302 5.2237 3.5302H7.6337C8.3137 5.3202 9.9637 6.3802 12.1237 6.3802C14.2737 6.3802 15.9237 5.3202 16.6137 3.5302H19.0137C20.1837 3.5302 20.7137 4.1202 20.7137 5.2102V24.8802C20.7137 25.9802 20.1837 26.5602 19.0137 26.5602ZM7.4337 11.0202H16.8037C17.3237 11.0202 17.7237 10.6102 17.7237 10.0902C17.7237 9.5802 17.3237 9.2002 16.8037 9.2002H7.4337C6.9037 9.2002 6.5037 9.5802 6.5037 10.0902C6.5037 10.6102 6.9037 11.0202 7.4337 11.0202ZM7.4337 15.5602H12.1537C12.6737 15.5602 13.0537 15.1802 13.0537 14.6702C13.0537 14.1502 12.6737 13.7402 12.1537 13.7402H7.4337C6.9037 13.7402 6.5037 14.1502 6.5037 14.6702C6.5037 15.1802 6.9037 15.5602 7.4337 15.5602Z","viewBox":{"width":24.240234375,"height":30.091796875}},"heavy":{"name":"wallet.pass","path":"M5.1037 30.4916H19.8137C23.0537 30.4916 24.8937 28.6416 24.8937 25.3716V5.1016C24.8937 1.8316 23.0537 0.0016 19.8137 0.0016H15.6237C14.9937 0.0016 14.6737 0.2716 14.6737 0.7916C14.6737 1.9116 13.8637 3.0216 12.4537 3.0216C11.0337 3.0216 10.2237 1.9116 10.2237 0.7916C10.2237 0.2716 9.8937 0.0016 9.2737 0.0016H5.1037C1.8437 0.0016 0.0037 1.8316 0.0037 5.1016V25.3716C0.0037 28.6416 1.8437 30.4916 5.1037 30.4916ZM5.6837 26.2616C4.6637 26.2616 4.2237 25.7716 4.2237 24.8116V5.6616C4.2237 4.7016 4.6637 4.2116 5.6837 4.2116H7.9137C8.6837 5.9216 10.3337 6.9016 12.4537 6.9016C14.5637 6.9016 16.2237 5.9216 16.9837 4.2116H19.2137C20.2337 4.2116 20.6737 4.7016 20.6737 5.6616V24.8116C20.6737 25.7716 20.2337 26.2616 19.2137 26.2616ZM8.0237 11.4416H16.8737C17.4037 11.4416 17.8137 11.0316 17.8137 10.4816C17.8137 9.9716 17.4037 9.5616 16.8737 9.5616H8.0237C7.4637 9.5616 7.0537 9.9716 7.0537 10.4816C7.0537 11.0316 7.4637 11.4416 8.0237 11.4416ZM8.0237 15.8316H12.6337C13.1837 15.8316 13.5737 15.4216 13.5737 14.9016C13.5737 14.3516 13.1837 13.9416 12.6337 13.9416H8.0237C7.4637 13.9416 7.0537 14.3516 7.0537 14.9016C7.0537 15.4216 7.4637 15.8316 8.0237 15.8316Z","viewBox":{"width":24.896484375,"height":30.48828125}}},"person.circle":{"light":{"name":"person.circle","path":"M13.7127 27.424C21.2227 27.424 27.4227 21.214 27.4227 13.714C27.4227 6.194 21.2227 0.004 13.7027 0.004C6.1927 0.004 0.0027 6.194 0.0027 13.714C0.0027 21.214 6.2027 27.424 13.7127 27.424ZM13.7127 25.644C7.0927 25.644 1.7727 20.314 1.7727 13.714C1.7727 7.094 7.0927 1.764 13.7027 1.764C20.3127 1.764 25.6527 7.094 25.6627 13.714C25.6627 20.314 20.3327 25.644 13.7127 25.644ZM13.7027 13.374C15.6427 13.374 17.2027 11.734 17.2027 9.554C17.2027 7.504 15.6427 5.814 13.7027 5.814C11.7727 5.814 10.2127 7.504 10.2127 9.554C10.2127 11.734 11.7727 13.354 13.7027 13.374ZM7.3527 20.684H20.0527C20.5227 20.684 20.7227 20.394 20.7227 19.964C20.7227 18.454 18.4827 14.474 13.7027 14.474C8.9327 14.474 6.6827 18.454 6.6827 19.964C6.6827 20.394 6.8927 20.684 7.3527 20.684Z","viewBox":{"width":27.42578125,"height":27.42578125}},"regular":{"name":"person.circle","path":"M13.9427 27.8864C21.5727 27.8864 27.8927 21.5564 27.8927 13.9464C27.8927 6.3164 21.5627 -0.0036 13.9327 -0.0036C6.3127 -0.0036 0.0027 6.3164 0.0027 13.9464C0.0027 21.5564 6.3327 27.8864 13.9427 27.8864ZM13.9427 25.5664C7.4927 25.5664 2.3427 20.3964 2.3427 13.9464C2.3427 7.4964 7.4827 2.3264 13.9327 2.3264C20.3827 2.3264 25.5527 7.4964 25.5627 13.9464C25.5827 20.3964 20.4027 25.5664 13.9427 25.5664ZM13.9327 13.5264C15.8727 13.5364 17.4427 11.8664 17.4427 9.6764C17.4427 7.6264 15.8727 5.9364 13.9327 5.9364C11.9927 5.9364 10.4227 7.6264 10.4227 9.6764C10.4227 11.8664 11.9927 13.5064 13.9327 13.5264ZM7.6827 20.8764H20.1827C20.7227 20.8764 20.9827 20.5064 20.9827 20.0164C20.9827 18.5164 18.7327 14.6264 13.9327 14.6264C9.1327 14.6264 6.8727 18.5164 6.8727 20.0164C6.8727 20.5064 7.1327 20.8764 7.6827 20.8764Z","viewBox":{"width":27.890625,"height":27.890625}},"medium":{"name":"person.circle","path":"M14.1227 28.2441C21.8427 28.2441 28.2427 21.8641 28.2427 14.1241C28.2427 6.3941 21.8427 0.0041 14.1127 0.0041C6.3827 0.0041 0.0027 6.3941 0.0027 14.1241C0.0027 21.8641 6.4027 28.2441 14.1227 28.2441ZM14.1227 25.4741C7.8327 25.4741 2.7927 20.4141 2.7927 14.1241C2.7927 7.8341 7.8227 2.7841 14.1127 2.7841C20.4027 2.7841 25.4527 7.8341 25.4727 14.1241C25.4727 20.4141 20.4127 25.4741 14.1227 25.4741ZM14.1127 13.6441C16.0327 13.6541 17.5827 12.0341 17.5827 9.8541C17.5827 7.8341 16.0327 6.1541 14.1127 6.1541C12.1927 6.1541 10.6327 7.8341 10.6327 9.8541C10.6327 12.0341 12.1927 13.6441 14.1127 13.6441ZM8.0627 20.9541H20.1627C20.7527 20.9541 21.0527 20.5441 21.0527 20.0141C21.0527 18.5341 18.8527 14.7241 14.1127 14.7241C9.3627 14.7241 7.1827 18.5341 7.1827 20.0141C7.1827 20.5441 7.4627 20.9541 8.0627 20.9541Z","viewBox":{"width":28.24609375,"height":28.24609375}},"semibold":{"name":"person.circle","path":"M14.2627 28.5209C22.0827 28.5209 28.5227 22.0809 28.5227 14.2609C28.5227 6.4509 22.0627 0.0009 14.2427 0.0009C6.4427 0.0009 0.0027 6.4509 0.0027 14.2609C0.0027 22.0809 6.4427 28.5209 14.2627 28.5209ZM14.2627 25.3909C8.0927 25.3909 3.1427 20.4209 3.1427 14.2609C3.1427 8.0909 8.0827 3.1309 14.2427 3.1309C20.4227 3.1309 25.3727 8.0909 25.3927 14.2609C25.4027 20.4209 20.4227 25.3909 14.2627 25.3909ZM14.2427 13.7509C16.1627 13.7709 17.6927 12.1409 17.6927 9.9909C17.6927 7.9809 16.1627 6.3209 14.2427 6.3209C12.3427 6.3209 10.8127 7.9809 10.8127 9.9909C10.8127 12.1409 12.3427 13.7409 14.2427 13.7509ZM8.3427 21.0309H20.1527C20.7827 21.0309 21.0927 20.5909 21.0927 20.0109C21.0927 18.5509 18.9627 14.7909 14.2427 14.7909C9.5427 14.7909 7.3927 18.5509 7.3927 20.0109C7.3927 20.5909 7.7127 21.0309 8.3427 21.0309Z","viewBox":{"width":28.51953125,"height":28.51953125}},"bold":{"name":"person.circle","path":"M14.4327 28.8886C22.3627 28.8886 28.8727 22.3686 28.8727 14.4386C28.8727 6.5186 22.3527 -0.0014 14.4327 -0.0014C6.5127 -0.0014 0.0027 6.5186 0.0027 14.4386C0.0027 22.3686 6.5227 28.8886 14.4327 28.8886ZM14.4327 25.2886C8.4327 25.2886 3.6127 20.4486 3.6127 14.4386C3.6127 8.4386 8.4227 3.5986 14.4327 3.5986C20.4427 3.5986 25.2827 8.4386 25.2827 14.4386C25.2927 20.4486 20.4527 25.2886 14.4327 25.2886ZM14.4327 13.8786C16.3127 13.8886 17.8327 12.2886 17.8327 10.1686C17.8327 8.1886 16.3127 6.5486 14.4327 6.5486C12.5527 6.5486 11.0327 8.1886 11.0327 10.1686C11.0327 12.2886 12.5527 13.8786 14.4327 13.8786ZM8.7227 21.1086H20.1427C20.8227 21.1086 21.1627 20.6286 21.1627 20.0186C21.1627 18.5686 19.0827 14.8886 14.4327 14.8886C9.7727 14.8886 7.6927 18.5686 7.6927 20.0186C7.6927 20.6286 8.0427 21.1086 8.7227 21.1086Z","viewBox":{"width":28.875,"height":28.888671875}},"heavy":{"name":"person.circle","path":"M14.6927 29.4084C22.7727 29.4084 29.4127 22.7884 29.4127 14.7084C29.4127 6.6284 22.7727 -0.0016 14.6927 -0.0016C6.6127 -0.0016 0.0027 6.6284 0.0027 14.7084C0.0027 22.7884 6.6127 29.4084 14.6927 29.4084ZM14.6927 25.1384C8.9327 25.1384 4.2627 20.4784 4.2627 14.7084C4.2627 8.9284 8.9327 4.2784 14.6927 4.2784C20.4627 4.2784 25.1327 8.9284 25.1327 14.7084C25.1427 20.4784 20.4827 25.1384 14.6927 25.1384ZM14.6927 14.0784C16.5427 14.0784 18.0327 12.5284 18.0327 10.4284C18.0327 8.4784 16.5427 6.8784 14.6927 6.8784C12.8527 6.8784 11.3627 8.4784 11.3627 10.4284C11.3627 12.5284 12.8527 14.0684 14.6927 14.0784ZM9.2727 21.2484H20.1227C20.8727 21.2484 21.2627 20.6884 21.2627 20.0284C21.2627 18.5984 19.2727 15.0284 14.6927 15.0284C10.1127 15.0284 8.1327 18.5984 8.1327 20.0284C8.1327 20.6884 8.5127 21.2484 9.2727 21.2484Z","viewBox":{"width":29.408203125,"height":29.408203125}}},"chevron.down":{"light":{"name":"chevron.down","path":"M11.3937 12.8694C11.6737 12.8694 11.9337 12.7394 12.1437 12.5194L22.5037 1.6094C22.6837 1.4394 22.7937 1.2194 22.7937 0.9394C22.7937 0.4094 22.3837 -0.0006 21.8437 -0.0006C21.6037 -0.0006 21.3437 0.0994 21.1637 0.2694L11.4037 10.5594L1.6137 0.2694C1.4537 0.0994 1.2037 -0.0006 0.9437 -0.0006C0.4137 -0.0006 0.0037 0.4094 0.0037 0.9394C0.0037 1.2194 0.1137 1.4394 0.2837 1.6294L10.6537 12.5394C10.8737 12.7394 11.1037 12.8694 11.3937 12.8694Z","viewBox":{"width":22.791015625,"height":12.865234375}},"regular":{"name":"chevron.down","path":"M11.8837 13.3751C12.2237 13.3751 12.5637 13.2351 12.7937 12.9751L23.3837 2.1351C23.6137 1.9051 23.7437 1.5951 23.7437 1.2551C23.7437 0.5451 23.2137 -0.0049 22.5037 -0.0049C22.1637 -0.0049 21.8437 0.1351 21.6137 0.3551L11.8837 10.3051L2.1337 0.3551C1.9137 0.1351 1.6037 -0.0049 1.2437 -0.0049C0.5337 -0.0049 0.0037 0.5451 0.0037 1.2551C0.0037 1.5951 0.1337 1.9051 0.3737 2.1451L10.9537 12.9751C11.2137 13.2351 11.5237 13.3751 11.8837 13.3751Z","viewBox":{"width":23.748046875,"height":13.37109375}},"medium":{"name":"chevron.down","path":"M12.1137 13.9032C12.5737 13.9032 13.0037 13.7232 13.3437 13.3532L23.7637 2.7032C24.0637 2.4032 24.2137 2.0332 24.2137 1.5832C24.2137 0.6932 23.5137 0.0032 22.6437 0.0032C22.2037 0.0032 21.7937 0.1732 21.4937 0.4832L12.1137 10.0932L2.7337 0.4832C2.4237 0.1732 2.0237 0.0032 1.5837 0.0032C0.6937 0.0032 0.0037 0.6932 0.0037 1.5832C0.0037 2.0232 0.1637 2.4032 0.4637 2.7032L10.8837 13.3532C11.2337 13.7232 11.6437 13.9032 12.1137 13.9032Z","viewBox":{"width":24.212890625,"height":13.904296875}},"semibold":{"name":"chevron.down","path":"M12.2937 14.333C12.8537 14.333 13.3337 14.113 13.7637 13.663L24.0537 3.143C24.4037 2.793 24.5837 2.363 24.5837 1.863C24.5837 0.833 23.7637 0.003 22.7337 0.003C22.2437 0.003 21.7637 0.223 21.3937 0.583L12.3037 9.943L3.1837 0.583C2.8137 0.223 2.3537 0.003 1.8337 0.003C0.8237 0.003 0.0037 0.833 0.0037 1.863C0.0037 2.363 0.1937 2.793 0.5337 3.143L10.8137 13.673C11.2637 14.113 11.7337 14.333 12.2937 14.333Z","viewBox":{"width":24.58203125,"height":14.328125}},"bold":{"name":"chevron.down","path":"M12.5237 14.8611C13.2037 14.8611 13.7837 14.6011 14.3137 14.0511L24.4337 3.7011C24.8437 3.2911 25.0437 2.8011 25.0437 2.2011C25.0437 0.9811 24.0737 0.0011 22.8737 0.0011C22.2837 0.0011 21.7237 0.2411 21.2737 0.7011L12.5337 9.7211L3.7837 0.7011C3.3337 0.2411 2.7737 0.0011 2.1737 0.0011C0.9737 0.0011 0.0037 0.9811 0.0037 2.2011C0.0037 2.7911 0.2037 3.2811 0.6137 3.7011L10.7337 14.0511C11.2937 14.6111 11.8537 14.8611 12.5237 14.8611Z","viewBox":{"width":25.046875,"height":14.861328125}},"heavy":{"name":"chevron.down","path":"M12.8637 15.6533C13.7437 15.6533 14.4137 15.3433 15.1237 14.6333L24.9737 4.5433C25.4937 4.0333 25.7337 3.4333 25.7337 2.7033C25.7337 1.2333 24.5237 0.0033 23.0637 0.0033C22.3437 0.0033 21.6537 0.3033 21.0937 0.8933L12.8937 9.4033L4.6437 0.8933C4.0837 0.3133 3.4037 0.0033 2.6637 0.0033C1.2037 0.0033 0.0037 1.2333 0.0037 2.7033C0.0037 3.4333 0.2437 4.0233 0.7537 4.5533L10.6237 14.6333C11.3337 15.3533 12.0137 15.6533 12.8637 15.6533Z","viewBox":{"width":25.73046875,"height":15.654296875}}},"chevron.right.2":{"light":{"name":"chevron.right.2","path":"M0.9437 22.7934C1.2137 22.7934 1.4337 22.6834 1.6237 22.5034L12.5337 12.1434C12.7437 11.9234 12.8637 11.6934 12.8637 11.4034C12.8637 11.1134 12.7437 10.8534 12.5237 10.6534L1.6137 0.2834C1.4237 0.1134 1.2137 0.0034 0.9437 0.0034C0.4137 0.0034 0.0037 0.4134 0.0037 0.9434C0.0037 1.1934 0.0937 1.4534 0.2737 1.6234L10.5437 11.3934L0.2737 21.1734C0.0937 21.3434 0.0037 21.5834 0.0037 21.8434C0.0037 22.3834 0.4137 22.7934 0.9437 22.7934ZM13.1637 22.7934C13.4237 22.7934 13.6437 22.6834 13.8337 22.5034L24.7437 12.1434C24.9637 11.9234 25.0837 11.6934 25.0837 11.4034C25.0837 11.1134 24.9537 10.8534 24.7337 10.6534L13.8237 0.2834C13.6437 0.1134 13.4237 0.0034 13.1637 0.0034C12.6237 0.0034 12.2137 0.4134 12.2137 0.9434C12.2137 1.1934 12.3137 1.4534 12.4837 1.6234L22.7637 11.3934L12.4837 21.1734C12.3137 21.3434 12.2137 21.5834 12.2137 21.8434C12.2137 22.3834 12.6237 22.7934 13.1637 22.7934Z","viewBox":{"width":25.087890625,"height":22.791015625}},"regular":{"name":"chevron.right.2","path":"M1.2437 23.752C1.6037 23.752 1.9037 23.612 2.1437 23.382L12.9737 12.792C13.2337 12.542 13.3737 12.222 13.3737 11.882C13.3737 11.522 13.2337 11.182 12.9737 10.962L2.1337 0.372C1.9037 0.132 1.6037 0.002 1.2437 0.002C0.5337 0.002 0.0037 0.542 0.0037 1.262C0.0037 1.582 0.1337 1.912 0.3537 2.142L10.3037 11.882L0.3537 21.612C0.1337 21.852 0.0037 22.162 0.0037 22.502C0.0037 23.212 0.5337 23.752 1.2437 23.752ZM13.4637 23.752C13.8237 23.752 14.1237 23.612 14.3537 23.382L25.1837 12.792C25.4437 12.542 25.5937 12.222 25.5937 11.882C25.5937 11.522 25.4437 11.182 25.1837 10.962L14.3537 0.372C14.1137 0.132 13.8237 0.002 13.4637 0.002C12.7537 0.002 12.2137 0.542 12.2137 1.262C12.2137 1.582 12.3637 1.912 12.5737 2.142L22.5337 11.882L12.5737 21.612C12.3637 21.852 12.2137 22.162 12.2137 22.502C12.2137 23.212 12.7537 23.752 13.4637 23.752Z","viewBox":{"width":25.59375,"height":23.748046875}},"medium":{"name":"chevron.right.2","path":"M1.5837 24.2244C2.0237 24.2244 2.4037 24.0644 2.7037 23.7644L13.3537 13.3444C13.7237 12.9744 13.9037 12.5744 13.9037 12.1144C13.9037 11.6344 13.7237 11.2244 13.3537 10.8844L2.7037 0.4644C2.4037 0.1644 2.0337 0.0044 1.5837 0.0044C0.6937 0.0044 0.0037 0.6944 0.0037 1.5844C0.0037 2.0144 0.1737 2.4244 0.4737 2.7344L10.0937 12.1044L0.4737 21.4944C0.1737 21.7944 0.0037 22.2044 0.0037 22.6444C0.0037 23.5244 0.6937 24.2244 1.5837 24.2244ZM13.8037 24.2244C14.2437 24.2244 14.6137 24.0644 14.9137 23.7644L25.5837 13.3444C25.9537 12.9744 26.1237 12.5744 26.1237 12.1144C26.1237 11.6344 25.9337 11.2244 25.5837 10.8844L14.9137 0.4644C14.6137 0.1644 14.2437 0.0044 13.8037 0.0044C12.9237 0.0044 12.2137 0.6944 12.2137 1.5844C12.2137 2.0144 12.4037 2.4244 12.7037 2.7344L22.3137 12.1044L12.7037 21.4944C12.4037 21.7944 12.2137 22.2044 12.2137 22.6444C12.2137 23.5244 12.9237 24.2244 13.8037 24.2244Z","viewBox":{"width":26.126953125,"height":24.2265625}},"semibold":{"name":"chevron.right.2","path":"M1.8637 24.5821C2.3537 24.5821 2.7937 24.3921 3.1437 24.0521L13.6537 13.7721C14.1137 13.3121 14.3237 12.8521 14.3237 12.2921C14.3137 11.7321 14.0937 11.2421 13.6537 10.8121L3.1337 0.5321C2.7937 0.1821 2.3637 0.0021 1.8637 0.0021C0.8237 0.0021 0.0037 0.8221 0.0037 1.8421C0.0037 2.3421 0.2037 2.8121 0.5737 3.1821L9.9237 12.2821L0.5737 21.3921C0.2237 21.7621 0.0037 22.2321 0.0037 22.7321C0.0037 23.7621 0.8237 24.5821 1.8637 24.5821ZM14.0637 24.5821C14.5737 24.5821 14.9937 24.3921 15.3537 24.0521L25.8837 13.7721C26.3337 13.3121 26.5337 12.8521 26.5337 12.2921C26.5337 11.7321 26.3137 11.2421 25.8837 10.8121L15.3537 0.5321C14.9937 0.1821 14.5737 0.0021 14.0637 0.0021C13.0437 0.0021 12.2137 0.8221 12.2137 1.8421C12.2137 2.3421 12.4237 2.8121 12.7937 3.1821L22.1437 12.2821L12.7937 21.3921C12.4237 21.7621 12.2137 22.2321 12.2137 22.7321C12.2137 23.7621 13.0437 24.5821 14.0637 24.5821Z","viewBox":{"width":26.537109375,"height":24.58203125}},"bold":{"name":"chevron.right.2","path":"M2.2037 25.0445C2.7937 25.0445 3.2837 24.8445 3.7037 24.4345L14.0537 14.3145C14.6137 13.7545 14.8637 13.1945 14.8637 12.5245C14.8637 11.8445 14.6037 11.2645 14.0537 10.7345L3.7037 0.6145C3.2937 0.2045 2.8037 0.0045 2.2037 0.0045C0.9837 0.0045 0.0037 0.9745 0.0037 2.1745C0.0037 2.7645 0.2437 3.3245 0.6937 3.7745L9.7237 12.5145L0.6937 21.2645C0.2637 21.7145 0.0037 22.2745 0.0037 22.8745C0.0037 24.0745 0.9837 25.0445 2.2037 25.0445ZM14.4137 25.0445C15.0137 25.0445 15.5037 24.8445 15.9237 24.4345L26.2737 14.3145C26.8237 13.7545 27.0837 13.1945 27.0837 12.5245C27.0737 11.8445 26.8237 11.2645 26.2637 10.7345L15.9237 0.6145C15.5037 0.2045 15.0137 0.0045 14.4137 0.0045C13.1937 0.0045 12.2137 0.9745 12.2137 2.1745C12.2137 2.7645 12.4537 3.3245 12.9237 3.7745L21.9337 12.5145L12.9237 21.2645C12.4737 21.7145 12.2137 22.2745 12.2137 22.8745C12.2137 24.0745 13.1937 25.0445 14.4137 25.0445Z","viewBox":{"width":27.083984375,"height":25.046875}},"heavy":{"name":"chevron.right.2","path":"M2.6937 25.7263C3.4137 25.7263 4.0237 25.4863 4.5437 24.9763L14.6337 15.1063C15.3437 14.3963 15.6537 13.7163 15.6537 12.8663C15.6437 12.0063 15.3237 11.3163 14.6337 10.6063L4.5437 0.7563C4.0237 0.2463 3.4337 -0.0037 2.6937 -0.0037C1.2137 -0.0037 0.0037 1.2163 0.0037 2.6663C0.0037 3.3863 0.3037 4.0763 0.8937 4.6463L9.4037 12.8563L0.8937 21.0863C0.3137 21.6463 0.0037 22.3263 0.0037 23.0763C0.0037 24.5263 1.2137 25.7263 2.6937 25.7263ZM14.9137 25.7263C15.6437 25.7263 16.2237 25.4863 16.7637 24.9763L26.8337 15.1063C27.5637 14.3963 27.8637 13.7163 27.8637 12.8663C27.8637 12.0063 27.5537 11.3163 26.8337 10.6063L16.7637 0.7563C16.2437 0.2463 15.6437 -0.0037 14.9137 -0.0037C13.4437 -0.0037 12.2137 1.2163 12.2137 2.6663C12.2137 3.3863 12.5137 4.0763 13.0937 4.6463L21.6137 12.8563L13.0937 21.0863C12.5237 21.6463 12.2137 22.3263 12.2137 23.0763C12.2137 24.5263 13.4437 25.7263 14.9137 25.7263Z","viewBox":{"width":27.86328125,"height":25.73046875}}},"chevron.left":{"light":{"name":"chevron.left","path":"M0 11.3898C0 11.6598 0.1 11.8898 0.3 12.0898L11.24 22.4898C11.42 22.6698 11.65 22.7598 11.91 22.7598C12.44 22.7598 12.85 22.3698 12.85 21.8198C12.85 21.5598 12.74 21.3298 12.59 21.1598L2.31 11.3898L12.59 1.6098C12.74 1.4398 12.85 1.1998 12.85 0.9398C12.85 0.4098 12.44 -0.0002 11.91 -0.0002C11.65 -0.0002 11.42 0.0998 11.24 0.2698L0.3 10.6898C0.1 10.8798 0 11.1198 0 11.3898Z","viewBox":{"width":12.8515625,"height":22.763671875}},"regular":{"name":"chevron.left","path":"M0 11.8683C0 12.2083 0.12 12.5083 0.38 12.7683L11.22 23.3683C11.46 23.6083 11.76 23.7383 12.11 23.7383C12.82 23.7383 13.37 23.1983 13.37 22.4883C13.37 22.1383 13.22 21.8383 13 21.5983L3.05 11.8683L13 2.1283C13.22 1.8983 13.37 1.5883 13.37 1.2483C13.37 0.5283 12.82 -0.0017 12.11 -0.0017C11.76 -0.0017 11.46 0.1183 11.22 0.3583L0.38 10.9683C0.12 11.2083 0 11.5283 0 11.8683Z","viewBox":{"width":13.37109375,"height":23.734375}},"medium":{"name":"chevron.left","path":"M-0.0016 12.1007C-0.0016 12.5607 0.1784 12.9607 0.5484 13.3207L11.2084 23.7507C11.4984 24.0507 11.8784 24.2007 12.3184 24.2007C13.2084 24.2007 13.9084 23.5107 13.9084 22.6107C13.9084 22.1807 13.7284 21.7807 13.4284 21.4807L3.8184 12.1007L13.4284 2.7207C13.7284 2.4107 13.9084 2.0107 13.9084 1.5707C13.9084 0.6807 13.2084 0.0007 12.3184 0.0007C11.8784 0.0007 11.4984 0.1507 11.2084 0.4507L0.5484 10.8807C0.1784 11.2407 0.0184 11.6307 -0.0016 12.1007Z","viewBox":{"width":13.904296875,"height":24.19921875}},"semibold":{"name":"chevron.left","path":"M-0.0006 12.2784C-0.0006 12.8384 0.2094 13.2984 0.6594 13.7384L11.1794 24.0384C11.5294 24.3884 11.9594 24.5684 12.4694 24.5684C13.4894 24.5684 14.3194 23.7484 14.3194 22.7184C14.3194 22.1984 14.1094 21.7484 13.7394 21.3784L4.3894 12.2684L13.7394 3.1684C14.1094 2.7984 14.3194 2.3384 14.3194 1.8284C14.3194 0.8084 13.4894 -0.0016 12.4694 -0.0016C11.9494 -0.0016 11.5294 0.1684 11.1794 0.5184L0.6594 10.8184C0.2094 11.2484 0.0094 11.7184 -0.0006 12.2784Z","viewBox":{"width":14.314453125,"height":24.568359375}},"bold":{"name":"chevron.left","path":"M0.0041 12.5245C0.0041 13.1945 0.2441 13.7545 0.8041 14.3045L11.1441 24.4345C11.5641 24.8445 12.0541 25.0445 12.6641 25.0445C13.8641 25.0445 14.8641 24.0745 14.8641 22.8745C14.8641 22.2545 14.6041 21.7145 14.1541 21.2645L5.1441 12.5145L14.1541 3.7745C14.6041 3.3345 14.8641 2.7745 14.8641 2.1745C14.8641 0.9845 13.8641 0.0045 12.6641 0.0045C12.0541 0.0045 11.5641 0.2045 11.1441 0.6145L0.8041 10.7445C0.2441 11.2745 0.0141 11.8445 0.0041 12.5245Z","viewBox":{"width":14.861328125,"height":25.046875}},"heavy":{"name":"chevron.left","path":"M-0.0039 12.8663C-0.0039 13.7163 0.2961 14.4063 1.0261 15.1063L11.1061 24.9763C11.6061 25.4963 12.2261 25.7263 12.9361 25.7263C14.4261 25.7263 15.6361 24.5263 15.6361 23.0663C15.6361 22.3263 15.3261 21.6463 14.7561 21.0863L6.2361 12.8563L14.7561 4.6463C15.3361 4.0863 15.6361 3.3863 15.6361 2.6663C15.6361 1.2163 14.4261 -0.0037 12.9361 -0.0037C12.2061 -0.0037 11.6061 0.2463 11.1061 0.7563L1.0261 10.6263C0.2961 11.3163 0.0161 12.0063 -0.0039 12.8663Z","viewBox":{"width":15.640625,"height":25.73046875}}},"trash":{"light":{"name":"trash","path":"M6.8782 30.1486H19.2782C21.0382 30.1486 22.3082 28.9286 22.3982 27.1786L23.4082 6.7686H25.3482C25.7982 6.7686 26.1382 6.4086 26.1382 5.9786C26.1382 5.5186 25.7882 5.1686 25.3482 5.1686H18.9082V2.9486C18.9082 1.1086 17.7082 -0.0014 15.7382 -0.0014H10.3882C8.4182 -0.0014 7.2282 1.1086 7.2282 2.9486V5.1686H0.7882C0.3682 5.1686 -0.0018 5.5386 -0.0018 5.9786C-0.0018 6.4086 0.3682 6.7686 0.7882 6.7686H2.7582L3.7782 27.1786C3.8582 28.9286 5.0982 30.1486 6.8782 30.1486ZM8.8982 3.0386C8.8982 2.1286 9.5182 1.5686 10.4682 1.5686H15.6582C16.6282 1.5686 17.2282 2.1286 17.2282 3.0386V5.1686H8.8982ZM7.0182 28.5486C6.1482 28.5486 5.4682 27.8786 5.4282 26.9986L4.4182 6.7686H21.6982L20.7282 26.9986C20.6882 27.8786 19.9982 28.5486 19.1282 28.5486ZM8.9982 25.9086C9.4082 25.9086 9.6782 25.6386 9.6682 25.2686L9.2182 10.1286C9.1982 9.7486 8.9282 9.4986 8.5482 9.4986C8.1382 9.4986 7.8582 9.7586 7.8582 10.1486L8.3082 25.2686C8.3282 25.6486 8.5882 25.9086 8.9982 25.9086ZM13.0882 25.9086C13.4982 25.9086 13.7682 25.6486 13.7682 25.2686V10.1486C13.7682 9.7586 13.4982 9.4986 13.0882 9.4986C12.6782 9.4986 12.3882 9.7586 12.3882 10.1486V25.2686C12.3882 25.6486 12.6782 25.9086 13.0882 25.9086ZM17.1582 25.9186C17.5582 25.9186 17.8282 25.6586 17.8382 25.2786L18.2882 10.1586C18.2882 9.7586 18.0182 9.4986 17.6082 9.4986C17.2282 9.4986 16.9482 9.7486 16.9382 10.1286L16.4882 25.2686C16.4782 25.6486 16.7482 25.9186 17.1582 25.9186Z","viewBox":{"width":26.140625,"height":30.146484375}},"regular":{"name":"trash","path":"M6.9682 30.4447H19.5082C21.4682 30.4447 22.7782 29.1747 22.8682 27.2247L23.8182 7.3447H25.4582C26.0182 7.3447 26.4682 6.8647 26.4682 6.3047C26.4682 5.7447 26.0182 5.2747 25.4582 5.2747H19.2082V3.1847C19.2082 1.2047 17.9282 0.0047 15.8182 0.0047H10.6182C8.5182 0.0047 7.2282 1.2047 7.2282 3.1847V5.2747H1.0282C0.4782 5.2747 -0.0018 5.7447 -0.0018 6.3047C-0.0018 6.8747 0.4782 7.3447 1.0282 7.3447H2.6682L3.6082 27.2347C3.7082 29.1847 4.9882 30.4447 6.9682 30.4447ZM9.4082 3.3247C9.4082 2.5447 9.9482 2.0347 10.7782 2.0347H15.6682C16.4882 2.0347 17.0382 2.5447 17.0382 3.3247V5.2747H9.4082ZM7.1682 28.3847C6.3882 28.3847 5.7982 27.7947 5.7582 26.9847L4.7982 7.3447H21.6182L20.7082 26.9847C20.6882 27.8047 20.0982 28.3847 19.2882 28.3847ZM9.1882 26.0447C9.7082 26.0447 10.0482 25.7147 10.0382 25.2347L9.6082 10.6047C9.5982 10.1347 9.2582 9.8147 8.7682 9.8147C8.2482 9.8147 7.8982 10.1447 7.9182 10.6247L8.3282 25.2347C8.3382 25.7347 8.6782 26.0447 9.1882 26.0447ZM13.2382 26.0447C13.7582 26.0447 14.1182 25.7147 14.1182 25.2347V10.6247C14.1182 10.1447 13.7582 9.8147 13.2382 9.8147C12.7182 9.8147 12.3582 10.1447 12.3582 10.6247V25.2347C12.3582 25.7147 12.7182 26.0447 13.2382 26.0447ZM17.2982 26.0447C17.7882 26.0447 18.1282 25.7347 18.1382 25.2347L18.5482 10.6247C18.5682 10.1447 18.2282 9.8147 17.7082 9.8147C17.2082 9.8147 16.8682 10.1347 16.8582 10.6247L16.4482 25.2347C16.4382 25.7147 16.7782 26.0447 17.2982 26.0447Z","viewBox":{"width":26.46875,"height":30.447265625}},"medium":{"name":"trash","path":"M7.2082 30.8545H19.7682C21.8582 30.8545 23.2182 29.5845 23.3082 27.4845L24.2382 7.7745H25.7482C26.4282 7.7745 26.9582 7.2645 26.9582 6.5745C26.9582 5.9045 26.4282 5.3845 25.7482 5.3845H19.6582V3.3345C19.6582 1.2445 18.3382 0.0045 16.0682 0.0045H10.8682C8.6182 0.0045 7.2782 1.2445 7.2782 3.3345V5.3845H1.1982C0.5482 5.3845 -0.0018 5.9045 -0.0018 6.5745C-0.0018 7.2645 0.5482 7.7745 1.1982 7.7745H2.7182L3.6482 27.4945C3.7482 29.6045 5.0882 30.8545 7.2082 30.8545ZM9.7882 3.4545C9.7882 2.7445 10.2782 2.2945 11.0482 2.2945H15.8882C16.6482 2.2945 17.1482 2.7445 17.1482 3.4545V5.3845H9.7882ZM7.4682 28.4345C6.7082 28.4345 6.1682 27.8945 6.1282 27.0845L5.2082 7.7745H21.7082L20.8182 27.0845C20.7982 27.8945 20.2482 28.4345 19.4682 28.4345ZM9.4482 26.2345C10.0182 26.2345 10.3882 25.8645 10.3782 25.3345L9.9682 11.0045C9.9482 10.4545 9.5682 10.1045 9.0282 10.1045C8.4482 10.1045 8.0782 10.4745 8.0982 11.0045L8.5082 25.3345C8.5182 25.8845 8.8982 26.2345 9.4482 26.2345ZM13.4782 26.2345C14.0582 26.2345 14.4382 25.8645 14.4382 25.3345V11.0045C14.4382 10.4745 14.0582 10.1045 13.4782 10.1045C12.9082 10.1045 12.5282 10.4745 12.5282 11.0045V25.3345C12.5282 25.8645 12.9082 26.2345 13.4782 26.2345ZM17.5182 26.2345C18.0582 26.2345 18.4282 25.8845 18.4482 25.3345L18.8682 11.0045C18.8782 10.4745 18.4982 10.1045 17.9382 10.1045C17.3882 10.1045 17.0082 10.4545 16.9982 11.0045L16.5682 25.3345C16.5582 25.8645 16.9382 26.2345 17.5182 26.2345Z","viewBox":{"width":26.9609375,"height":30.857421875}},"semibold":{"name":"trash","path":"M7.3682 31.1759H19.9582C22.1582 31.1759 23.5582 29.8859 23.6482 27.6759L24.5682 8.1259H25.9782C26.7382 8.1259 27.3282 7.5459 27.3282 6.7859C27.3282 6.0259 26.7382 5.4559 25.9782 5.4559H20.0182V3.4459C20.0182 1.2759 18.6382 -0.0041 16.2582 -0.0041H11.0482C8.6682 -0.0041 7.2982 1.2759 7.2982 3.4459V5.4559H1.3582C0.5982 5.4559 -0.0018 6.0259 -0.0018 6.7859C-0.0018 7.5459 0.5982 8.1259 1.3582 8.1259H2.7582L3.6782 27.6859C3.7782 29.8859 5.1582 31.1759 7.3682 31.1759ZM10.0882 3.5559C10.0882 2.8959 10.5382 2.4859 11.2482 2.4859H16.0482C16.7782 2.4859 17.2282 2.8959 17.2282 3.5559V5.4559H10.0882ZM7.7082 28.4759C6.9582 28.4759 6.4482 27.9459 6.4082 27.1359L5.5082 8.1259H21.7782L20.9082 27.1359C20.8782 27.9559 20.3682 28.4759 19.6082 28.4759ZM9.6482 26.3759C10.2682 26.3759 10.6682 25.9659 10.6482 25.3859L10.2382 11.2959C10.2282 10.7059 9.8182 10.3259 9.2282 10.3259C8.6182 10.3259 8.2182 10.7159 8.2282 11.2959L8.6382 25.4059C8.6582 25.9859 9.0682 26.3759 9.6482 26.3759ZM13.6682 26.3759C14.2782 26.3759 14.6882 25.9759 14.6882 25.4059V11.2959C14.6882 10.7059 14.2782 10.3259 13.6682 10.3259C13.0582 10.3259 12.6482 10.7059 12.6482 11.2959V25.4059C12.6482 25.9759 13.0582 26.3759 13.6682 26.3759ZM17.6782 26.3759C18.2682 26.3759 18.6782 25.9859 18.6882 25.4059L19.0982 11.2959C19.1182 10.7159 18.7182 10.3259 18.0982 10.3259C17.5182 10.3259 17.1082 10.7059 17.0882 11.2959L16.6782 25.3859C16.6682 25.9759 17.0582 26.3759 17.6782 26.3759Z","viewBox":{"width":27.330078125,"height":31.171875}},"bold":{"name":"trash","path":"M7.5982 31.572H20.2182C22.5582 31.572 23.9982 30.272 24.1082 27.932L24.9882 8.542H26.2782C27.1682 8.542 27.8182 7.912 27.8182 7.042C27.8182 6.182 27.1482 5.552 26.2782 5.552H20.4782V3.572C20.4782 1.282 19.0482 0.002 16.4982 0.002H11.2882C8.7482 0.002 7.3282 1.282 7.3282 3.572V5.552H1.5282C0.6682 5.552 -0.0018 6.182 -0.0018 7.042C-0.0018 7.912 0.6682 8.542 1.5282 8.542H2.8182L3.7182 27.932C3.8282 30.282 5.2482 31.572 7.5982 31.572ZM10.4682 3.682C10.4682 3.092 10.8782 2.732 11.5282 2.732H16.2682C16.9282 2.732 17.3382 3.092 17.3382 3.682V5.552H10.4682ZM8.0082 28.522C7.2982 28.522 6.8382 28.012 6.7982 27.212L5.9182 8.542H21.8582L21.0182 27.212C20.9882 28.032 20.5182 28.522 19.7982 28.522ZM9.9082 26.542C10.5982 26.542 11.0182 26.102 11.0082 25.472L10.5982 11.662C10.5782 11.022 10.1282 10.612 9.4882 10.612C8.8182 10.612 8.3982 11.032 8.4182 11.672L8.8182 25.482C8.8282 26.112 9.2882 26.542 9.9082 26.542ZM13.9082 26.542C14.5582 26.542 15.0082 26.112 15.0082 25.482V11.652C15.0082 11.022 14.5582 10.612 13.9082 10.612C13.2582 10.612 12.8082 11.022 12.8082 11.652V25.482C12.8082 26.112 13.2582 26.542 13.9082 26.542ZM17.9082 26.542C18.5382 26.542 18.9782 26.122 18.9882 25.482L19.3982 11.672C19.4182 11.032 18.9882 10.612 18.3382 10.612C17.6782 10.612 17.2382 11.022 17.2282 11.662L16.8182 25.472C16.7982 26.102 17.2282 26.542 17.9082 26.542Z","viewBox":{"width":27.822265625,"height":31.568359375}},"heavy":{"name":"trash","path":"M7.9282 32.1611H20.6082C23.1282 32.1611 24.6382 30.8611 24.7582 28.3011L25.6182 9.1911H26.7182C27.7682 9.1911 28.5382 8.4811 28.5382 7.4211C28.5382 6.4111 27.7682 5.6911 26.7182 5.6911H21.1482V3.7711C21.1482 1.3311 19.6482 0.0011 16.8682 0.0011H11.6482C8.8682 0.0011 7.3682 1.3311 7.3682 3.7711V5.6911H1.8082C0.7682 5.6911 -0.0018 6.4111 -0.0018 7.4211C-0.0018 8.4811 0.7682 9.1911 1.8082 9.1911H2.9082L3.7782 28.3011C3.8782 30.8611 5.3882 32.1611 7.9282 32.1611ZM11.0382 3.8711C11.0382 3.3911 11.3582 3.1011 11.9382 3.1011H16.5882C17.1582 3.1011 17.4882 3.3911 17.4882 3.8711V5.6911H11.0382ZM8.4582 28.5911C7.7782 28.5911 7.3782 28.1411 7.3582 27.3211L6.5182 9.1911H21.9982L21.1782 27.3211C21.1382 28.1411 20.7582 28.5911 20.0582 28.5911ZM10.2982 26.8011C11.0582 26.8011 11.5382 26.3011 11.5082 25.5811L11.1182 12.2111C11.0982 11.5011 10.5982 11.0211 9.8582 11.0211C9.1182 11.0211 8.6682 11.5011 8.6782 12.2211L9.0782 25.6111C9.1082 26.3311 9.5982 26.8011 10.2982 26.8011ZM14.2582 26.8011C14.9882 26.8011 15.4782 26.3311 15.4782 25.6211V12.1911C15.4782 11.4811 14.9882 11.0211 14.2582 11.0211C13.5382 11.0211 13.0582 11.4811 13.0582 12.1911V25.6211C13.0582 26.3311 13.5382 26.8011 14.2582 26.8011ZM18.2282 26.8011C18.9382 26.8011 19.4282 26.3311 19.4382 25.6111L19.8482 12.2211C19.8682 11.5011 19.3982 11.0211 18.6582 11.0211C17.9282 11.0211 17.4282 11.5011 17.4182 12.2111L17.0082 25.5911C16.9982 26.3011 17.4682 26.8011 18.2282 26.8011Z","viewBox":{"width":28.533203125,"height":32.15625}}},"xmark":{"light":{"name":"xmark","path":"M0.272 21.0125C0.642 21.3825 1.232 21.3825 1.582 21.0125L10.652 11.9625L19.702 21.0125C20.052 21.3825 20.652 21.3825 21.012 21.0125C21.372 20.6525 21.372 20.0725 21.012 19.7125L11.952 10.6525L21.012 1.5825C21.372 1.2325 21.382 0.6225 21.012 0.2725C20.642 -0.0875 20.052 -0.0875 19.702 0.2725L10.652 9.3325L1.582 0.2725C1.232 -0.0875 0.632 -0.0975 0.272 0.2725C-0.088 0.6425 -0.088 1.2325 0.272 1.5825L9.332 10.6525L0.272 19.7125C-0.088 20.0725 -0.098 20.6525 0.272 21.0125Z","viewBox":{"width":21.283739765126377,"height":21.28884253881319}},"regular":{"name":"xmark","path":"M0.352 21.3241C0.832 21.7841 1.622 21.7841 2.092 21.3241L10.842 12.5741L19.592 21.3241C20.052 21.7841 20.862 21.8041 21.322 21.3241C21.792 20.8441 21.792 20.0641 21.322 19.6041L12.572 10.8341L21.322 2.0841C21.792 1.6241 21.802 0.8241 21.322 0.3641C20.852 -0.1159 20.052 -0.1159 19.592 0.3641L10.842 9.1141L2.092 0.3641C1.622 -0.1159 0.822 -0.1259 0.352 0.3641C-0.108 0.8441 -0.108 1.6241 0.352 2.0841L9.102 10.8341L0.352 19.6041C-0.108 20.0641 -0.128 20.8541 0.352 21.3241Z","viewBox":{"width":21.680212929183472,"height":21.676794437328404}},"medium":{"name":"xmark","path":"M0.432 21.5716C1.042 22.1616 2.022 22.1616 2.592 21.5816L11.002 13.1816L19.412 21.5816C20.002 22.1616 20.982 22.1716 21.572 21.5716C22.162 20.9816 22.162 20.0016 21.582 19.4216L13.182 11.0016L21.582 2.5916C22.162 2.0216 22.172 1.0216 21.572 0.4516C20.972 -0.1384 20.002 -0.1384 19.412 0.4316L11.002 8.8416L2.592 0.4316C2.022 -0.1384 1.022 -0.1484 0.432 0.4316C-0.148 1.0416 -0.138 2.0316 0.432 2.5916L8.842 11.0016L0.432 19.4216C-0.138 19.9816 -0.148 21.0016 0.432 21.5716Z","viewBox":{"width":22.02027875010551,"height":22.02027875010551}},"semibold":{"name":"xmark","path":"M0.502 21.7698C1.192 22.4498 2.332 22.4298 2.992 21.7798L11.142 13.6298L19.272 21.7798C19.942 22.4498 21.092 22.4498 21.762 21.7698C22.432 21.0898 22.452 19.9498 21.782 19.2798L13.642 11.1298L21.782 2.9998C22.452 2.3298 22.452 1.1898 21.762 0.5098C21.082 -0.1602 19.942 -0.1702 19.272 0.4998L11.142 8.6398L2.992 0.4998C2.332 -0.1502 1.172 -0.1702 0.502 0.5098C-0.168 1.1898 -0.148 2.3398 0.492 2.9798L8.642 11.1298L0.492 19.2898C-0.148 19.9398 -0.178 21.0998 0.502 21.7698Z","viewBox":{"width":22.278346471730224,"height":22.283512524913746}},"bold":{"name":"xmark","path":"M0.5837 22.0207C1.3937 22.8107 2.7637 22.8007 3.5037 22.0507L11.3037 14.2407L19.1137 22.0507C19.8837 22.8107 21.2337 22.8107 22.0137 22.0207C22.8037 21.2107 22.8137 19.8907 22.0437 19.1107L14.2437 11.3007L22.0437 3.5107C22.8137 2.7307 22.8137 1.3907 22.0137 0.6007C21.2237 -0.1993 19.8837 -0.1993 19.1137 0.5707L11.3037 8.3807L3.5037 0.5707C2.7637 -0.1793 1.3837 -0.2093 0.5837 0.6007C-0.2063 1.3907 -0.1763 2.7607 0.5637 3.5107L8.3837 11.3007L0.5637 19.1207C-0.1763 19.8607 -0.2063 21.2407 0.5837 22.0207Z","viewBox":{"width":22.62016138756176,"height":22.62020713866065}},"heavy":{"name":"xmark","path":"M0.7188 22.4103C1.6888 23.3703 3.3688 23.3203 4.2588 22.4403L11.5688 15.1203L18.8588 22.4203C19.7988 23.3703 21.4288 23.3703 22.3888 22.3903C23.3588 21.4203 23.3688 19.8003 22.4288 18.8503L15.1388 11.5503L22.4288 4.2703C23.3688 3.3203 23.3588 1.7003 22.3888 0.7403C21.4188 -0.2297 19.7988 -0.2497 18.8588 0.7003L11.5688 7.9803L4.2588 0.6803C3.3688 -0.2097 1.6888 -0.2497 0.7188 0.7203C-0.2412 1.7003 -0.2112 3.3603 0.6888 4.2503L7.9988 11.5503L0.6888 18.8703C-0.2112 19.7603 -0.2512 21.4403 0.7188 22.4103Z","viewBox":{"width":23.12442341734022,"height":23.126159669214463}}},"arrow.right":{"light":{"name":"arrow.right","path":"M25.3937 10.2003C25.3937 9.9403 25.2837 9.7103 25.0737 9.5203L15.9437 0.3603C15.6837 0.1003 15.4537 0.0003 15.2037 0.0003C14.6837 0.0003 14.3037 0.3803 14.3037 0.8903C14.3037 1.1503 14.3837 1.3803 14.5437 1.5603L18.6337 5.6903L22.6637 9.4303L19.4937 9.2803H0.9037C0.3837 9.2803 0.0037 9.6703 0.0037 10.2003C0.0037 10.7303 0.3837 11.1103 0.9037 11.1103H19.4937L22.6837 10.9603L18.6337 14.7103L14.5437 18.8403C14.3837 19.0003 14.3037 19.2503 14.3037 19.5003C14.3037 20.0003 14.6837 20.3803 15.2037 20.3803C15.4537 20.3803 15.6637 20.3003 15.8737 20.1103L25.0737 10.8803C25.2837 10.6903 25.3937 10.4603 25.3937 10.2003Z","viewBox":{"width":25.388671875,"height":20.384765625}},"regular":{"name":"arrow.right","path":"M25.3937 10.3644C25.3937 10.0244 25.2537 9.7044 24.9737 9.4444L15.9137 0.4144C15.6137 0.1044 15.3237 0.0044 14.9937 0.0044C14.3237 0.0044 13.8037 0.4944 13.8037 1.1744C13.8037 1.5044 13.9137 1.8144 14.1337 2.0344L17.2037 5.1544L21.7937 9.3544L18.4937 9.1444H1.2037C0.4937 9.1444 0.0037 9.6544 0.0037 10.3644C0.0037 11.0744 0.4937 11.5844 1.2037 11.5844H18.4937L21.8037 11.3744L17.2037 15.5744L14.1337 18.6944C13.9137 18.8944 13.8037 19.2244 13.8037 19.5544C13.8037 20.2344 14.3237 20.7244 14.9937 20.7244C15.3237 20.7244 15.6137 20.6044 15.8837 20.3444L24.9737 11.2744C25.2537 11.0244 25.3937 10.7044 25.3937 10.3644Z","viewBox":{"width":25.388671875,"height":20.7265625}},"medium":{"name":"arrow.right","path":"M25.8437 10.5868C25.8437 10.1768 25.6637 9.7568 25.3437 9.4768L16.3537 0.4768C16.0137 0.1368 15.6437 -0.0032 15.2537 -0.0032C14.4137 -0.0032 13.7937 0.5968 13.7937 1.4268C13.7937 1.8468 13.9637 2.2168 14.2337 2.4868L17.2937 5.5868L21.3137 9.2868L18.1437 9.0868H1.5137C0.6137 9.0868 0.0037 9.6968 0.0037 10.5868C0.0037 11.4568 0.6137 12.0768 1.5137 12.0768H18.1437L21.3237 11.8768L17.2937 15.5768L14.2337 18.6768C13.9637 18.9368 13.7937 19.3068 13.7937 19.7268C13.7937 20.5468 14.4137 21.1668 15.2537 21.1668C15.6437 21.1668 15.9937 21.0168 16.3237 20.6968L25.3437 11.6868C25.6637 11.3868 25.8437 10.9968 25.8437 10.5868Z","viewBox":{"width":25.83984375,"height":21.1640625}},"semibold":{"name":"arrow.right","path":"M26.1637 10.7582C26.1637 10.2982 25.9737 9.8282 25.6337 9.4982L16.6837 0.5582C16.2937 0.1782 15.8837 -0.0018 15.4637 -0.0018C14.4737 -0.0018 13.7837 0.6982 13.7837 1.6282C13.7837 2.1182 13.9837 2.5282 14.3037 2.8482L17.3637 5.9382L20.9637 9.2282L17.8737 9.0482H1.7537C0.7137 9.0482 0.0037 9.7482 0.0037 10.7582C0.0037 11.7682 0.7137 12.4682 1.7537 12.4682H17.8737L20.9737 12.2882L17.3637 15.5882L14.3037 18.6782C13.9837 18.9782 13.7837 19.3882 13.7837 19.8882C13.7837 20.8082 14.4737 21.5082 15.4637 21.5082C15.8837 21.5082 16.2937 21.3382 16.6637 20.9882L25.6337 12.0182C25.9737 11.6882 26.1637 11.2282 26.1637 10.7582Z","viewBox":{"width":26.16796875,"height":21.505859375}},"bold":{"name":"arrow.right","path":"M26.6237 10.9806C26.6237 10.4406 26.3837 9.8806 26.0137 9.5106L17.1137 0.6306C16.6937 0.2006 16.2037 0.0006 15.7237 0.0006C14.5637 0.0006 13.7637 0.8106 13.7637 1.8706C13.7637 2.4706 14.0237 2.9406 14.3937 3.2906L17.4637 6.3706L20.4837 9.1606L17.5037 9.0006H2.0537C0.8237 9.0006 0.0037 9.7906 0.0037 10.9806C0.0037 12.1506 0.8237 12.9606 2.0537 12.9606H17.5037L20.4937 12.8006L17.4637 15.5906L14.3937 18.6506C14.0237 19.0006 13.7637 19.4806 13.7637 20.0706C13.7637 21.1406 14.5637 21.9406 15.7237 21.9406C16.2037 21.9406 16.6937 21.7406 17.1037 21.3306L26.0137 12.4406C26.3837 12.0706 26.6237 11.5106 26.6237 10.9806Z","viewBox":{"width":26.619140625,"height":21.943359375}},"heavy":{"name":"arrow.right","path":"M27.2737 11.2924C27.2737 10.6524 26.9837 9.9624 26.5637 9.5424L17.7637 0.7424C17.2637 0.2424 16.6637 0.0024 16.1037 0.0024C14.6837 0.0024 13.7537 0.9724 13.7537 2.2424C13.7537 2.9824 14.0837 3.5224 14.5337 3.9524L17.5937 7.0124L19.8137 9.0624L16.9837 8.9124H2.5037C0.9937 8.9124 0.0037 9.8724 0.0037 11.2924C0.0037 12.7324 0.9937 13.6824 2.5037 13.6824H16.9837L19.8137 13.5324L17.5937 15.5824L14.5337 18.6324C14.0837 19.0624 13.7537 19.6024 13.7537 20.3424C13.7537 21.6124 14.6837 22.5824 16.1037 22.5824C16.6637 22.5824 17.2637 22.3224 17.7437 21.8524L26.5637 13.0524C26.9837 12.6324 27.2737 11.9324 27.2737 11.2924Z","viewBox":{"width":27.275390625,"height":22.5859375}}},"arrowtriangle.left.and.line.vertical.and.arrowtriangle.right":{"light":{"name":"arrowtriangle.left.and.line.vertical.and.arrowtriangle.right","path":"M19.7793 28.0848C20.2093 28.0848 20.5593 27.7548 20.5593 27.3348V0.7548C20.5593 0.3248 20.2093 0.0048 19.7793 0.0048C19.3693 0.0048 18.9993 0.3248 18.9993 0.7548V27.3348C18.9993 27.7548 19.3693 28.0848 19.7793 28.0848ZM28.2693 21.8648L38.6893 15.4448C39.8393 14.7348 39.8793 13.3548 38.6893 12.6148L28.2693 6.2248C27.1393 5.5348 25.7993 5.9648 25.7993 7.5048V20.5748C25.7993 22.1348 27.1693 22.5348 28.2693 21.8648ZM0.8893 15.4448L11.2893 21.8648C12.4093 22.5348 13.7693 22.1348 13.7693 20.5748V7.5048C13.7693 5.9648 12.4293 5.5348 11.2893 6.2248L0.8893 12.6148C-0.3207 13.3548 -0.2707 14.7348 0.8893 15.4448ZM1.9693 14.3848C1.7093 14.2148 1.5993 13.9148 1.9793 13.6748L11.6193 7.7148C11.8093 7.6048 12.2193 7.5348 12.2193 8.0348V20.0248C12.2193 20.5248 11.8293 20.4948 11.6193 20.3548ZM27.9393 20.3548C27.7393 20.4948 27.3393 20.5248 27.3393 20.0248V8.0348C27.3393 7.5348 27.7693 7.6048 27.9393 7.7148L37.5793 13.6748C37.9693 13.9148 37.8593 14.2348 37.5993 14.3848Z","viewBox":{"width":39.56654036953535,"height":28.08203125}},"regular":{"name":"arrowtriangle.left.and.line.vertical.and.arrowtriangle.right","path":"M20.371 28.5845C20.901 28.5845 21.381 28.1645 21.381 27.6345V0.9445C21.381 0.4145 20.901 0.0045 20.371 0.0045C19.841 0.0045 19.371 0.4145 19.371 0.9445V27.6345C19.371 28.1645 19.841 28.5845 20.371 28.5845ZM1.021 15.9045L11.371 22.2445C12.671 23.0345 14.141 22.4745 14.141 20.8045V7.7645C14.141 6.1345 12.701 5.5345 11.371 6.3445L1.021 12.6845C-0.359 13.5245 -0.329 15.0645 1.021 15.9045ZM29.371 22.2445L39.731 15.9045C41.071 15.0645 41.101 13.5245 39.731 12.6845L29.371 6.3445C28.041 5.5345 26.601 6.1345 26.601 7.7645V20.8045C26.601 22.4745 28.071 23.0345 29.371 22.2445ZM29.081 20.2645C28.921 20.3545 28.601 20.3745 28.601 20.0245V8.5545C28.601 8.1845 28.941 8.2345 29.081 8.3245L38.251 14.0045C38.581 14.2145 38.471 14.4545 38.251 14.5745ZM2.491 14.5745C2.281 14.4345 2.161 14.2145 2.491 14.0045L11.661 8.3245C11.801 8.2345 12.141 8.1845 12.141 8.5545V20.0245C12.141 20.3745 11.831 20.3745 11.661 20.2645Z","viewBox":{"width":40.74565699461586,"height":28.587890625}},"medium":{"name":"arrowtriangle.left.and.line.vertical.and.arrowtriangle.right","path":"M21.1958 28.9423C21.8458 28.9423 22.3858 28.4623 22.3858 27.8223V1.1223C22.3858 0.4823 21.8258 0.0023 21.1958 0.0023C20.5858 0.0023 20.0058 0.4823 20.0058 1.1223V27.8223C20.0058 28.4623 20.5758 28.9423 21.1958 28.9423ZM30.8158 22.6723L41.2958 16.2523C42.7758 15.3523 42.7858 13.5923 41.2958 12.6923L30.8158 6.2723C29.3458 5.3823 27.7358 6.0823 27.7358 7.8923V21.0523C27.7358 22.8723 29.3758 23.5423 30.8158 22.6723ZM1.1058 16.2523L11.6058 22.6723C13.0258 23.5423 14.6658 22.8723 14.6658 21.0523V7.8923C14.6658 6.0823 13.0658 5.3823 11.6058 6.2723L1.1058 12.6923C-0.3742 13.5923 -0.3642 15.3523 1.1058 16.2523ZM2.9058 14.7123C2.7158 14.5923 2.6158 14.3923 2.9058 14.2223L11.8858 8.6823C12.0258 8.6023 12.3258 8.5623 12.3258 8.8823V20.0523C12.3258 20.3623 12.0358 20.3723 11.8858 20.2623ZM30.5058 20.2623C30.3558 20.3623 30.0858 20.3623 30.0858 20.0523V8.8823C30.0858 8.5623 30.3858 8.6023 30.5058 8.6823L39.4958 14.2223C39.7758 14.3923 39.6858 14.6023 39.4958 14.7123Z","viewBox":{"width":42.410168118074225,"height":28.943359375}},"semibold":{"name":"arrowtriangle.left.and.line.vertical.and.arrowtriangle.right","path":"M21.8492 29.2327C22.5592 29.2327 23.1692 28.7127 23.1692 27.9727V1.2727C23.1692 0.5327 22.5592 0.0027 21.8492 0.0027C21.1592 0.0027 20.5192 0.5327 20.5192 1.2727V27.9727C20.5192 28.7127 21.1492 29.2327 21.8492 29.2327ZM1.1692 16.5427L11.7692 22.9927C13.3192 23.9427 15.0792 23.2027 15.0792 21.2627V7.9827C15.0792 6.0727 13.3392 5.2727 11.7692 6.2327L1.1692 12.7027C-0.4008 13.6427 -0.3808 15.5827 1.1692 16.5427ZM31.9192 22.9927L42.5192 16.5427C44.0792 15.5827 44.0892 13.6427 42.5192 12.7027L31.9192 6.2327C30.3492 5.2727 28.6092 6.0727 28.6092 7.9827V21.2627C28.6092 23.2027 30.3792 23.9427 31.9192 22.9927ZM3.2392 14.8327C3.0592 14.7227 2.9792 14.5627 3.2392 14.3927L12.0692 8.9727C12.1892 8.8827 12.4692 8.8627 12.4692 9.1427V20.0827C12.4692 20.3527 12.2192 20.3727 12.0692 20.2727ZM31.6192 20.2727C31.4892 20.3727 31.2292 20.3527 31.2292 20.0827V9.1427C31.2292 8.8627 31.4992 8.8827 31.6192 8.9727L40.4492 14.3927C40.7092 14.5627 40.6292 14.7427 40.4492 14.8327Z","viewBox":{"width":43.69190572536406,"height":29.23046875}},"bold":{"name":"arrowtriangle.left.and.line.vertical.and.arrowtriangle.right","path":"M22.6807 29.6004C23.5007 29.6004 24.1907 29.0104 24.1907 28.1504V1.4404C24.1907 0.5904 23.4907 0.0004 22.6807 0.0004C21.9107 0.0004 21.1707 0.6004 21.1707 1.4404V28.1504C21.1707 29.0104 21.8907 29.6004 22.6807 29.6004ZM33.3807 23.4204L44.1107 16.9004C45.7907 15.8704 45.7907 13.7104 44.1107 12.7004L33.3807 6.1804C31.6707 5.1304 29.7507 6.0204 29.7507 8.0904V21.5104C29.7507 23.6004 31.6907 24.4304 33.3807 23.4204ZM1.2607 16.9004L11.9907 23.4204C13.6607 24.4304 15.6207 23.6004 15.6207 21.5104V8.0904C15.6207 6.0204 13.7007 5.1304 11.9907 6.1804L1.2607 12.7004C-0.4193 13.7104 -0.4193 15.8704 1.2607 16.9004ZM33.0607 20.2704C32.9407 20.3604 32.7207 20.3404 32.7207 20.1104V9.4704C32.7207 9.2404 32.9407 9.2404 33.0607 9.3104L41.7207 14.6004C41.9207 14.7404 41.8507 14.8904 41.7207 14.9804ZM3.6507 14.9804C3.5007 14.8904 3.4507 14.7404 3.6507 14.6004L12.3107 9.3104C12.4207 9.2404 12.6507 9.2404 12.6507 9.4704V20.1104C12.6507 20.3404 12.4307 20.3704 12.3107 20.2704Z","viewBox":{"width":45.3701171875,"height":29.599609375}},"heavy":{"name":"arrowtriangle.left.and.line.vertical.and.arrowtriangle.right","path":"M23.9024 30.1338C24.8924 30.1338 25.6924 29.4638 25.6924 28.4338V1.7138C25.6924 0.6838 24.8624 0.0038 23.9024 0.0038C23.0024 0.0038 22.1224 0.6938 22.1224 1.7138V28.4338C22.1224 29.4538 22.9724 30.1338 23.9024 30.1338ZM1.4024 17.4338L12.3224 24.0438C14.1924 25.1838 16.4124 24.2038 16.4124 21.8738V8.2538C16.4124 5.9638 14.2424 4.9238 12.3224 6.0938L1.4024 12.7138C-0.4576 13.8238 -0.4776 16.2938 1.4024 17.4338ZM35.4924 24.0438L46.4224 17.4338C48.2924 16.2938 48.2824 13.8238 46.4224 12.7138L35.4924 6.0938C33.5824 4.9238 31.4124 5.9638 31.4124 8.2538V21.8738C31.4124 24.2038 33.6224 25.1838 35.4924 24.0438ZM4.2724 15.2038C4.1624 15.1338 4.1324 15.0138 4.2724 14.9338L12.6524 9.8438C12.7624 9.7738 12.9124 9.8038 12.9124 9.9638V20.1638C12.9124 20.3438 12.7424 20.3738 12.6524 20.3038ZM35.1724 20.3038C35.0624 20.3538 34.8924 20.3438 34.8924 20.1638V9.9638C34.8924 9.8038 35.0624 9.7738 35.1724 9.8438L43.5524 14.9338C43.6824 15.0138 43.6624 15.1338 43.5524 15.2038Z","viewBox":{"width":47.820810171211036,"height":30.1328125}}},"square.and.arrow.down":{"light":{"name":"square.and.arrow.down","path":"M11.8937 20.2998C12.1137 20.2998 12.3037 20.2298 12.5137 20.0298L17.3037 15.3298C17.4737 15.1598 17.5537 14.9998 17.5537 14.7798C17.5537 14.3398 17.2237 14.0298 16.7937 14.0298C16.5837 14.0298 16.3637 14.1098 16.2137 14.2898L13.8937 16.6898L12.6737 17.9498L12.7237 15.9698V0.8198C12.7237 0.3798 12.3637 -0.0002 11.8937 -0.0002C11.4437 -0.0002 11.0637 0.3798 11.0637 0.8198V15.9698L11.1337 17.9698L9.8937 16.6898L7.5737 14.2898C7.4237 14.1098 7.1937 14.0298 6.9837 14.0298C6.5537 14.0298 6.2337 14.3398 6.2337 14.7798C6.2337 14.9998 6.3137 15.1598 6.4837 15.3298L11.2937 20.0298C11.4937 20.2298 11.6937 20.2998 11.8937 20.2998ZM4.0337 29.1098H19.7737C22.4337 29.1098 23.8037 27.7398 23.8037 25.1198V11.1398C23.8037 8.4998 22.4337 7.1398 19.7737 7.1398H15.8737V8.8298H19.7237C21.2437 8.8298 22.1037 9.6498 22.1037 11.2198V25.0198C22.1037 26.6098 21.2437 27.4098 19.7237 27.4098H4.0637C2.5337 27.4098 1.6937 26.6098 1.6937 25.0198V11.2198C1.6937 9.6498 2.5337 8.8298 4.0637 8.8298H7.9437V7.1398H4.0337C1.3637 7.1398 0.0037 8.4898 0.0037 11.1398V25.1198C0.0037 27.7498 1.3637 29.1098 4.0337 29.1098Z","viewBox":{"width":23.802734375,"height":29.107421875}},"regular":{"name":"square.and.arrow.down","path":"M12.1237 20.5248C12.4137 20.5248 12.6437 20.4348 12.9237 20.1648L17.5437 15.6948C17.7437 15.4948 17.8737 15.2748 17.8737 14.9848C17.8737 14.4248 17.4337 14.0248 16.8737 14.0248C16.5937 14.0248 16.3237 14.1348 16.1337 14.3548L14.0537 16.5548L13.1437 17.5248L13.2237 15.4748V1.0648C13.2237 0.4948 12.7137 0.0048 12.1237 0.0048C11.5437 0.0048 11.0437 0.4948 11.0437 1.0648V15.4748L11.1337 17.5248L10.2037 16.5548L8.1337 14.3548C7.9437 14.1348 7.6437 14.0248 7.3837 14.0248C6.8037 14.0248 6.3937 14.4248 6.3937 14.9848C6.3937 15.2748 6.5037 15.4948 6.7137 15.6948L11.3337 20.1648C11.6237 20.4348 11.8537 20.5248 12.1237 20.5248ZM4.2937 29.5148H19.9737C22.8337 29.5148 24.2637 28.0948 24.2637 25.2748V11.6348C24.2637 8.8148 22.8337 7.3948 19.9737 7.3948H16.1637V9.5948H19.9337C21.2837 9.5948 22.0637 10.3348 22.0637 11.7548V25.1548C22.0637 26.5748 21.2837 27.3148 19.9337 27.3148H4.3237C2.9537 27.3148 2.2037 26.5748 2.2037 25.1548V11.7548C2.2037 10.3348 2.9537 9.5948 4.3237 9.5948H8.1037V7.3948H4.2937C1.4337 7.3948 0.0037 8.8148 0.0037 11.6348V25.2748C0.0037 28.0948 1.4337 29.5148 4.2937 29.5148Z","viewBox":{"width":24.267578125,"height":29.517578125}},"medium":{"name":"square.and.arrow.down","path":"M12.3437 20.7859C12.6837 20.7859 12.9837 20.6759 13.3037 20.3559L17.8937 15.9259C18.1337 15.6959 18.2537 15.4459 18.2537 15.1259C18.2537 14.4959 17.7437 14.0259 17.1337 14.0259C16.8137 14.0259 16.5037 14.1659 16.2837 14.4059L14.3537 16.4459L13.4837 17.4459L13.6137 15.4259V1.2459C13.6137 0.5759 13.0437 -0.0041 12.3437 -0.0041C11.6637 -0.0041 11.0837 0.5759 11.0837 1.2459V15.4259L11.2237 17.4559L10.3337 16.4459L8.4237 14.4059C8.2037 14.1659 7.8737 14.0259 7.5637 14.0259C6.9437 14.0259 6.4437 14.4959 6.4437 15.1259C6.4437 15.4459 6.5737 15.6959 6.8037 15.9259L11.4037 20.3559C11.7137 20.6759 12.0137 20.7859 12.3437 20.7859ZM4.4837 29.6359H20.2237C23.1737 29.6359 24.7037 28.1259 24.7037 25.2159V11.7459C24.7037 8.8359 23.1737 7.3159 20.2237 7.3159H16.5137V9.9959H20.0537C21.3137 9.9959 22.0237 10.6459 22.0237 11.9759V24.9759C22.0237 26.3059 21.3137 26.9659 20.0537 26.9659H4.6437C3.3737 26.9659 2.6837 26.3059 2.6837 24.9759V11.9759C2.6837 10.6459 3.3737 9.9959 4.6437 9.9959H8.2137V7.3159H4.4837C1.5337 7.3159 0.0037 8.8359 0.0037 11.7459V25.2159C0.0037 28.1259 1.5337 29.6359 4.4837 29.6359Z","viewBox":{"width":24.705078125,"height":29.640625}},"semibold":{"name":"square.and.arrow.down","path":"M12.5237 20.9869C12.8937 20.9869 13.2337 20.8669 13.6037 20.5069L18.1737 16.1169C18.4137 15.8569 18.5537 15.5969 18.5537 15.2469C18.5537 14.5469 17.9937 14.0569 17.3237 14.0569C16.9837 14.0569 16.6437 14.1869 16.3937 14.4469L14.6037 16.3769L13.7537 17.4069L13.9137 15.3769V1.3769C13.9137 0.6469 13.3037 -0.0031 12.5237 -0.0031C11.7437 -0.0031 11.1137 0.6469 11.1137 1.3769V15.3769L11.2937 17.4069L10.4437 16.3769L8.6437 14.4469C8.4037 14.1869 8.0537 14.0569 7.7137 14.0569C7.0437 14.0569 6.4837 14.5469 6.4837 15.2469C6.4837 15.5969 6.6137 15.8569 6.8737 16.1169L11.4437 20.5069C11.8037 20.8669 12.1537 20.9869 12.5237 20.9869ZM4.6337 29.7469H20.4137C23.4437 29.7469 25.0437 28.1469 25.0437 25.1569V11.8369C25.0437 8.8469 23.4437 7.2469 20.4137 7.2469H16.7937V10.2969H20.1537C21.3437 10.2969 21.9937 10.9069 21.9937 12.1569V24.8369C21.9937 26.0969 21.3437 26.6969 20.1537 26.6969H4.8937C3.6937 26.6969 3.0537 26.0969 3.0537 24.8369V12.1569C3.0537 10.9069 3.6937 10.2969 4.8937 10.2969H8.3037V7.2469H4.6337C1.6137 7.2469 0.0037 8.8469 0.0037 11.8369V25.1569C0.0037 28.1669 1.6137 29.7469 4.6337 29.7469Z","viewBox":{"width":25.046875,"height":29.75}},"bold":{"name":"square.and.arrow.down","path":"M12.7437 21.2579C13.1637 21.2579 13.5737 21.1079 14.0037 20.6979L18.5237 16.3379C18.8037 16.0679 18.9537 15.7779 18.9537 15.3779C18.9537 14.5979 18.3037 14.0579 17.5837 14.0579C17.1837 14.0579 16.8137 14.2179 16.5537 14.5079L14.9037 16.2679L14.1137 17.3179L14.3237 15.3279V1.5579C14.3237 0.7279 13.6337 -0.0021 12.7437 -0.0021C11.8637 -0.0021 11.1737 0.7279 11.1737 1.5579V15.3279L11.3737 17.3379L10.5837 16.2679L8.9237 14.5079C8.6637 14.2179 8.2837 14.0579 7.9037 14.0579C7.1737 14.0579 6.5337 14.5979 6.5337 15.3779C6.5337 15.7779 6.6837 16.0679 6.9637 16.3379L11.4937 20.6979C11.9037 21.1079 12.3137 21.2579 12.7437 21.2579ZM4.8237 29.8879H20.6537C23.7937 29.8879 25.4837 28.1779 25.4837 25.0879V11.9479C25.4837 8.8579 23.7937 7.1679 20.6537 7.1679H17.1437V10.6879H20.2737C21.3737 10.6879 21.9537 11.2279 21.9537 12.3879V24.6479C21.9537 25.8079 21.3737 26.3479 20.2737 26.3479H5.2137C4.1137 26.3479 3.5237 25.8079 3.5237 24.6479V12.3879C3.5237 11.2279 4.1137 10.6879 5.2137 10.6879H8.4037V7.1679H4.8237C1.7137 7.1679 0.0037 8.8479 0.0037 11.9479V25.0879C0.0037 28.1879 1.7137 29.8879 4.8237 29.8879Z","viewBox":{"width":25.484375,"height":29.88671875}},"heavy":{"name":"square.and.arrow.down","path":"M13.0737 21.6463C13.5737 21.6463 14.0637 21.4663 14.5637 20.9862L19.0537 16.6763C19.3637 16.3763 19.5337 16.0463 19.5337 15.5863C19.5337 14.6963 18.7537 14.0863 17.9637 14.0863C17.5037 14.0863 17.0937 14.2763 16.7737 14.6063L15.3537 16.1163L14.6337 17.2263L14.9137 15.2463V1.8163C14.9137 0.8463 14.1137 -0.0038 13.0737 -0.0038C12.0337 -0.0038 11.2237 0.8463 11.2237 1.8163V15.2463L11.5137 17.2263L10.7837 16.1163L9.3537 14.6063C9.0537 14.2763 8.6237 14.0863 8.1737 14.0863C7.3737 14.0863 6.6037 14.6963 6.6037 15.5863C6.6037 16.0463 6.7837 16.3763 7.0837 16.6763L11.5837 20.9862C12.0737 21.4663 12.5637 21.6463 13.0737 21.6463ZM5.1137 30.0763H21.0237C24.2937 30.0763 26.1437 28.2363 26.1437 24.9763V12.1263C26.1437 8.8762 24.2937 7.0263 21.0237 7.0263H17.6637V11.2663H20.4537C21.4137 11.2663 21.9137 11.6863 21.9137 12.7263V24.3863C21.9137 25.4163 21.4137 25.8563 20.4537 25.8563H5.6837C4.7137 25.8563 4.2237 25.4163 4.2237 24.3863V12.7263C4.2237 11.6863 4.7137 11.2663 5.6837 11.2663H8.5737V7.0263H5.1137C1.8637 7.0263 0.0037 8.8762 0.0037 12.1263V24.9763C0.0037 28.2363 1.8637 30.0763 5.1137 30.0763Z","viewBox":{"width":26.140625,"height":30.078125}}},"gearshape.fill":{"light":{"name":"gearshape.fill","path":"M12.8627 28.3452H15.4627C16.2027 28.3452 16.7227 27.9152 16.8827 27.1752L17.5827 24.2452C18.0427 24.0752 18.5127 23.8952 18.9327 23.7052L21.4927 25.2952C22.1227 25.7052 22.7927 25.6352 23.2927 25.1252L25.1327 23.3152C25.6527 22.7952 25.7127 22.0952 25.2927 21.4652L23.7227 18.9252C23.9127 18.4852 24.0927 18.0352 24.2427 17.5852L27.1827 16.8952C27.9327 16.7352 28.3427 16.2152 28.3427 15.4752V12.9052C28.3427 12.1852 27.9327 11.6652 27.1827 11.4952L24.2527 10.8052C24.0927 10.3052 23.9027 9.8552 23.7327 9.4652L25.3227 6.8952C25.7127 6.2452 25.6727 5.5952 25.1427 5.0552L23.2927 3.2452C22.7727 2.7452 22.1527 2.6652 21.5227 3.0452L18.9327 4.6652C18.5127 4.4752 18.0627 4.2952 17.5827 4.1252L16.8827 1.1652C16.7227 0.4252 16.2027 -0.0048 15.4627 -0.0048H12.8627C12.1227 -0.0048 11.6227 0.4252 11.4527 1.1652L10.7627 4.1052C10.2827 4.2652 9.8127 4.4452 9.3927 4.6452L6.8127 3.0452C6.1827 2.6652 5.5527 2.7352 5.0327 3.2452L3.1827 5.0552C2.6527 5.5952 2.6127 6.2452 3.0227 6.8952L4.5927 9.4652C4.4327 9.8552 4.2427 10.3052 4.0727 10.8052L1.1627 11.4952C0.4127 11.6652 0.0027 12.1852 0.0027 12.9052V15.4752C0.0027 16.2152 0.4127 16.7352 1.1627 16.8952L4.1027 17.5852C4.2427 18.0352 4.4127 18.4852 4.6027 18.9252L3.0327 21.4652C2.6127 22.0952 2.6827 22.7952 3.2127 23.3152L5.0327 25.1252C5.5327 25.6352 6.2027 25.7052 6.8327 25.2952L9.3927 23.7052C9.8327 23.8952 10.2827 24.0752 10.7627 24.2452L11.4527 27.1752C11.6227 27.9152 12.1227 28.3452 12.8627 28.3452ZM14.1827 19.0552C11.5027 19.0552 9.2827 16.8452 9.2827 14.1552C9.2827 11.4952 11.5027 9.2852 14.1827 9.2852C16.8527 9.2852 19.0627 11.4952 19.0627 14.1552C19.0627 16.8452 16.8527 19.0552 14.1827 19.0552Z","viewBox":{"width":28.341796875,"height":28.341796875}},"regular":{"name":"gearshape.fill","path":"M13.0327 28.5782H15.5427C16.2527 28.5782 16.7727 28.1482 16.9227 27.4482L17.6327 24.4482C18.1727 24.2682 18.6927 24.0582 19.1427 23.8482L21.7827 25.4582C22.3627 25.8282 23.0327 25.7682 23.5327 25.2782L25.2927 23.5282C25.7827 23.0382 25.8527 22.3282 25.4527 21.7382L23.8427 19.1282C24.0727 18.6482 24.2827 18.1582 24.4327 17.6682L27.4627 16.9382C28.1627 16.7882 28.5727 16.2682 28.5727 15.5582V13.0882C28.5727 12.3882 28.1627 11.8682 27.4627 11.7182L24.4627 10.9882C24.2827 10.4282 24.0627 9.9282 23.8727 9.4982L25.4827 6.8482C25.8627 6.2582 25.8227 5.5882 25.3227 5.0982L23.5327 3.3382C23.0227 2.8682 22.4227 2.7882 21.8227 3.1282L19.1427 4.7882C18.7027 4.5482 18.1927 4.3482 17.6327 4.1682L16.9227 1.1182C16.7727 0.4282 16.2527 -0.0018 15.5427 -0.0018H13.0327C12.3227 -0.0018 11.8027 0.4282 11.6327 1.1182L10.9227 4.1382C10.3927 4.3182 9.8727 4.5282 9.4027 4.7682L6.7527 3.1282C6.1527 2.7882 5.5327 2.8582 5.0327 3.3382L3.2527 5.0982C2.7527 5.5882 2.6927 6.2582 3.0927 6.8482L4.6927 9.4982C4.5127 9.9282 4.2927 10.4282 4.1127 10.9882L1.1027 11.7182C0.4127 11.8682 0.0027 12.3882 0.0027 13.0882V15.5582C0.0027 16.2682 0.4127 16.7882 1.1027 16.9382L4.1427 17.6682C4.2927 18.1582 4.5027 18.6482 4.7127 19.1282L3.1127 21.7382C2.7027 22.3282 2.7927 23.0382 3.2827 23.5282L5.0327 25.2782C5.5227 25.7682 6.2027 25.8282 6.7927 25.4582L9.4227 23.8482C9.8827 24.0582 10.3927 24.2682 10.9227 24.4482L11.6327 27.4482C11.8027 28.1482 12.3227 28.5782 13.0327 28.5782ZM14.2827 19.1182C11.6327 19.1182 9.4627 16.9282 9.4627 14.2782C9.4627 11.6382 11.6327 9.4582 14.2827 9.4582C16.9427 9.4582 19.1127 11.6382 19.1127 14.2782C19.1127 16.9282 16.9427 19.1182 14.2827 19.1182Z","viewBox":{"width":28.57421875,"height":28.57421875}},"medium":{"name":"gearshape.fill","path":"M13.2727 29.0406H15.7727C16.5827 29.0406 17.2027 28.5606 17.3627 27.7706L18.0627 24.8506C18.5227 24.6906 18.9727 24.5106 19.3827 24.3206L21.9327 25.8806C22.6027 26.3006 23.3827 26.2406 23.9427 25.6806L25.6927 23.9306C26.2527 23.3606 26.3327 22.5406 25.8827 21.8706L24.3327 19.3606C24.5227 18.9306 24.7227 18.5006 24.8527 18.0706L27.7827 17.3806C28.5727 17.2006 29.0527 16.6006 29.0527 15.7906V13.3306C29.0527 12.5206 28.5727 11.9206 27.7827 11.7406L24.8827 11.0506C24.7227 10.5506 24.5227 10.1206 24.3627 9.7506L25.9127 7.1806C26.3427 6.4906 26.2927 5.7306 25.7127 5.1506L23.9427 3.4006C23.3627 2.8806 22.6527 2.7906 21.9727 3.1706L19.3827 4.7606C18.9927 4.5706 18.5527 4.3906 18.0627 4.2206L17.3627 1.2706C17.2027 0.4806 16.5827 0.0006 15.7727 0.0006H13.2727C12.4527 0.0006 11.8527 0.4806 11.6727 1.2806L10.9927 4.2006C10.5127 4.3606 10.0527 4.5406 9.6427 4.7406L7.0727 3.1706C6.3827 2.7906 5.6727 2.8706 5.1027 3.4006L3.3227 5.1506C2.7527 5.7306 2.6927 6.4906 3.1327 7.1806L4.6727 9.7506C4.5127 10.1206 4.3227 10.5506 4.1727 11.0506L1.2727 11.7406C0.4827 11.9206 0.0027 12.5206 0.0027 13.3306V15.7906C0.0027 16.6006 0.4827 17.2006 1.2727 17.3806L4.1927 18.0706C4.3327 18.5006 4.5127 18.9306 4.7027 19.3606L3.1627 21.8706C2.7027 22.5406 2.7927 23.3606 3.3527 23.9306L5.1027 25.6806C5.6627 26.2406 6.4527 26.3006 7.1227 25.8806L9.6527 24.3206C10.0627 24.5106 10.5127 24.6906 10.9927 24.8506L11.6727 27.7706C11.8527 28.5606 12.4527 29.0406 13.2727 29.0406ZM14.5327 19.3006C11.8927 19.3006 9.7327 17.1406 9.7327 14.5106C9.7327 11.8906 11.8927 9.7306 14.5327 9.7306C17.1627 9.7306 19.3027 11.8906 19.3027 14.5106C19.3027 17.1406 17.1627 19.3006 14.5327 19.3006Z","viewBox":{"width":29.052734375,"height":29.0390625}},"semibold":{"name":"gearshape.fill","path":"M13.4627 29.3984H15.9527C16.8427 29.3984 17.5127 28.8584 17.7027 27.9984L18.3727 25.1684C18.8027 25.0284 19.2127 24.8684 19.5627 24.6884L22.0427 26.2084C22.7727 26.6784 23.6427 26.5884 24.2527 25.9784L26.0027 24.2384C26.6227 23.6284 26.7027 22.7184 26.2227 21.9884L24.7227 19.5384C24.8827 19.1684 25.0427 18.7684 25.1727 18.3884L28.0227 17.7084C28.8927 17.5184 29.4127 16.8484 29.4127 15.9584V13.5084C29.4127 12.6284 28.8927 11.9584 28.0227 11.7684L25.1927 11.0884C25.0627 10.6484 24.8827 10.2584 24.7327 9.9284L26.2527 7.4284C26.7327 6.6684 26.6627 5.8084 26.0127 5.1984L24.2427 3.4484C23.6227 2.8884 22.8427 2.7784 22.1027 3.1884L19.5627 4.7484C19.2127 4.5684 18.8127 4.4184 18.3727 4.2684L17.7027 1.3984C17.5127 0.5284 16.8427 -0.0016 15.9527 -0.0016H13.4627C12.5827 -0.0016 11.8927 0.5284 11.7127 1.3984L11.0327 4.2384C10.6127 4.3884 10.2027 4.5484 9.8327 4.7284L7.3127 3.1884C6.5627 2.7784 5.7827 2.8684 5.1527 3.4584L3.3927 5.1984C2.7527 5.8084 2.6927 6.6684 3.1627 7.4284L4.6727 9.9284C4.5227 10.2584 4.3427 10.6484 4.2127 11.0884L1.3827 11.7684C0.5227 11.9584 0.0027 12.6284 0.0027 13.5084V15.9584C0.0027 16.8484 0.5227 17.5184 1.3827 17.7084L4.2427 18.3884C4.3627 18.7684 4.5227 19.1684 4.7027 19.5384L3.2027 21.9884C2.7027 22.7184 2.7927 23.6284 3.4027 24.2384L5.1527 25.9784C5.7727 26.5884 6.6327 26.6784 7.3727 26.2084L9.8427 24.6884C10.2127 24.8684 10.6127 25.0284 11.0327 25.1684L11.7127 27.9984C11.8927 28.8584 12.5827 29.3984 13.4627 29.3984ZM14.7127 19.4584C12.1027 19.4584 9.9527 17.3084 9.9527 14.6884C9.9527 12.0884 12.1027 9.9484 14.7127 9.9484C17.3227 9.9484 19.4527 12.0884 19.4527 14.6884C19.4527 17.3084 17.3227 19.4584 14.7127 19.4584Z","viewBox":{"width":29.408203125,"height":29.39453125}},"bold":{"name":"gearshape.fill","path":"M13.7127 29.8845H16.1827C17.1727 29.8845 17.9327 29.2845 18.1427 28.3245L18.8027 25.5945C19.1527 25.4745 19.4927 25.3345 19.8127 25.1845L22.1927 26.6645C23.0127 27.1645 23.9927 27.0745 24.6627 26.4045L26.4127 24.6545C27.0927 23.9645 27.1927 22.9545 26.6427 22.1445L25.2127 19.7845C25.3427 19.4645 25.4827 19.1445 25.5927 18.8145L28.3427 18.1545C29.3027 17.9545 29.9027 17.1845 29.9027 16.2045V13.7645C29.9027 12.7945 29.3027 12.0345 28.3427 11.8145L25.6227 11.1745C25.5027 10.8045 25.3627 10.4545 25.2227 10.1745L26.6827 7.7645C27.2027 6.9345 27.1427 5.9445 26.4327 5.2745L24.6527 3.5245C23.9627 2.9145 23.0927 2.7845 22.2627 3.2445L19.8127 4.7445C19.5127 4.5945 19.1727 4.4545 18.8027 4.3245L18.1427 1.5545C17.9327 0.6045 17.1727 0.0045 16.1827 0.0045H13.7127C12.7127 0.0045 11.9627 0.6045 11.7627 1.5745L11.1027 4.3045C10.7327 4.4345 10.3727 4.5645 10.0627 4.7345L7.6327 3.2445C6.7927 2.7845 5.9327 2.8845 5.2327 3.5245L3.4627 5.2745C2.7627 5.9445 2.6827 6.9345 3.2127 7.7645L4.6627 10.1745C4.5227 10.4545 4.3927 10.8045 4.2627 11.1745L1.5427 11.8145C0.6027 12.0345 0.0027 12.7945 0.0027 13.7645V16.2045C0.0027 17.1845 0.6027 17.9545 1.5427 18.1545L4.2927 18.8145C4.4027 19.1445 4.5427 19.4645 4.6927 19.7845L3.2427 22.1445C2.7027 22.9545 2.8027 23.9645 3.4827 24.6545L5.2227 26.4045C5.9027 27.0745 6.8927 27.1645 7.6927 26.6645L10.0727 25.1845C10.3927 25.3345 10.7327 25.4745 11.1027 25.5945L11.7627 28.3245C11.9627 29.2845 12.7127 29.8845 13.7127 29.8845ZM14.9427 19.6645C12.3627 19.6645 10.2427 17.5245 10.2427 14.9345C10.2427 12.3545 12.3627 10.2445 14.9427 10.2445C17.5427 10.2445 19.6627 12.3545 19.6627 14.9345C19.6627 17.5245 17.5427 19.6645 14.9427 19.6645Z","viewBox":{"width":29.900390625,"height":29.88671875}},"heavy":{"name":"gearshape.fill","path":"M14.0727 30.5663H16.5327C17.6527 30.5663 18.5427 29.8763 18.7827 28.7763L19.4027 26.2063C19.6727 26.1163 19.9327 26.0063 20.1627 25.8962L22.4127 27.2863C23.3527 27.8663 24.4827 27.7363 25.2627 26.9763L27.0027 25.2362C27.7827 24.4563 27.8927 23.2663 27.2927 22.3563L25.9227 20.1263C26.0327 19.8963 26.1227 19.6563 26.2127 19.4162L28.8027 18.7863C29.9027 18.5563 30.5927 17.6662 30.5927 16.5262V14.1263C30.5927 13.0063 29.9027 12.1163 28.8027 11.8663L26.2527 11.2563C26.1527 10.9963 26.0427 10.7363 25.9527 10.5262L27.3127 8.2263C27.9227 7.2763 27.8227 6.1363 27.0127 5.3562L25.2527 3.6262C24.4627 2.9163 23.4327 2.7862 22.5027 3.2763L20.1627 4.7162C19.9327 4.6062 19.6827 4.5162 19.4127 4.4063L18.7827 1.7862C18.5427 0.6962 17.6527 -0.0038 16.5327 -0.0038H14.0727C12.9327 -0.0038 12.0427 0.6962 11.8127 1.8062L11.1827 4.3863C10.9227 4.4662 10.6527 4.5763 10.4027 4.7063L8.0927 3.2763C7.1527 2.7862 6.1427 2.8962 5.3327 3.6262L3.5827 5.3562C2.7727 6.1363 2.6627 7.2763 3.2627 8.2263L4.6527 10.5262C4.5427 10.7363 4.4427 10.9963 4.3427 11.2563L1.7727 11.8663C0.6927 12.1163 0.0027 13.0063 0.0027 14.1263V16.5262C0.0027 17.6662 0.6927 18.5563 1.7727 18.7863L4.3927 19.4162C4.4727 19.6563 4.5627 19.8963 4.6727 20.1263L3.3127 22.3563C2.6927 23.2663 2.8027 24.4563 3.5827 25.2362L5.3227 26.9763C6.0927 27.7363 7.2427 27.8663 8.1727 27.2863L10.4327 25.8962C10.6627 26.0063 10.9227 26.1163 11.1827 26.2063L11.8127 28.7763C12.0427 29.8763 12.9327 30.5663 14.0727 30.5663ZM15.3027 19.9463C12.7427 19.9463 10.6527 17.8463 10.6527 15.2863C10.6527 12.7463 12.7427 10.6463 15.3027 10.6463C17.8527 10.6463 19.9427 12.7463 19.9427 15.2863C19.9427 17.8463 17.8527 19.9463 15.3027 19.9463Z","viewBox":{"width":30.59765625,"height":30.5703125}}},"square.and.pencil":{"light":{"name":"square.and.pencil","path":"M25.3845 2.8175L26.2745 1.9075C26.7145 1.4575 26.7145 0.9175 26.3045 0.4875L26.0745 0.2675C25.6945 -0.1225 25.1145 -0.0725 24.7045 0.3375L23.8045 1.2275ZM9.3745 17.5275L11.7345 16.4675L24.4545 3.7275L22.8845 2.1575L10.1545 14.8975L9.0345 17.1675C8.9445 17.3575 9.1745 17.6075 9.3745 17.5275ZM4.0345 26.5775H19.9645C22.3545 26.5775 23.7245 25.2075 23.7245 22.5875V7.9975L22.0245 9.6775V22.4875C22.0245 24.0775 21.1545 24.8775 19.9245 24.8775H4.0645C2.5245 24.8775 1.6945 24.0775 1.6945 22.4875V6.9375C1.6945 5.3675 2.5245 4.5475 4.0645 4.5475H16.9845L18.6745 2.8575H4.0345C1.3645 2.8575 0.0045 4.2075 0.0045 6.8575V22.5875C0.0045 25.2175 1.3645 26.5775 4.0345 26.5775Z","viewBox":{"width":26.608969425889384,"height":26.574752449327647}},"regular":{"name":"square.and.pencil","path":"M25.7155 3.2319L26.7055 2.2219C27.1655 1.7219 27.1655 1.0719 26.7055 0.6219L26.3855 0.2919C25.9655 -0.1381 25.2955 -0.0781 24.8455 0.3619L23.8455 1.3419ZM9.2655 18.1419L11.9355 16.9819L24.7055 4.2319L22.8355 2.3819L10.0755 15.1419L8.8455 17.7119C8.7355 17.9419 9.0055 18.2519 9.2655 18.1419ZM4.2955 27.0019H20.3455C22.8055 27.0019 24.2255 25.5819 24.2255 22.7719V8.1519L22.0255 10.3519V22.6619C22.0255 24.0819 21.2555 24.8019 20.3155 24.8019H4.3355C2.9655 24.8019 2.2055 24.0819 2.2055 22.6619V7.1419C2.2055 5.7219 2.9655 4.9819 4.3355 4.9819H16.7855L18.9855 2.7819H4.2955C1.4455 2.7819 -0.0045 4.2019 -0.0045 7.0219V22.7719C-0.0045 25.6019 1.4455 27.0019 4.2955 27.0019Z","viewBox":{"width":27.0498046875,"height":27.005305724685982}},"medium":{"name":"square.and.pencil","path":"M25.8665 3.5476L26.8965 2.4776C27.4165 1.9376 27.4365 1.1976 26.9365 0.6776L26.5765 0.3076C26.1165 -0.1524 25.3465 -0.0724 24.8465 0.4176L23.7865 1.4576ZM9.6565 18.1476L12.4365 16.9776L24.8665 4.5276L22.7865 2.4676L10.3665 14.9076L9.1365 17.6076C8.9965 17.9176 9.3365 18.2676 9.6565 18.1476ZM4.4865 27.2676H20.4265C23.0365 27.2676 24.5665 25.7476 24.5665 22.8376V8.3876L21.8865 11.0676V22.6076C21.8865 23.9376 21.1765 24.6076 20.2665 24.6076H4.6465C3.3765 24.6076 2.6765 23.9376 2.6765 22.6076V7.3876C2.6765 6.0676 3.3765 5.3976 4.6465 5.3976H16.3365L19.0165 2.7176H4.4865C1.5465 2.7176 -0.0035 4.2276 -0.0035 7.1576V22.8376C-0.0035 25.7676 1.5465 27.2676 4.4865 27.2676Z","viewBox":{"width":27.298034478271234,"height":27.26870867662624}},"semibold":{"name":"square.and.pencil","path":"M25.9938 3.7921L27.0538 2.6821C27.6038 2.0921 27.6438 1.2721 27.0938 0.7121L26.7138 0.3321C26.2238 -0.1779 25.3838 -0.0779 24.8438 0.4721L23.7438 1.5321ZM9.9438 18.1421L12.8238 16.9521L25.0038 4.7721L22.7538 2.5321L10.5838 14.7321L9.3338 17.5121C9.1838 17.8821 9.5938 18.2821 9.9438 18.1421ZM4.6338 27.4821H20.4838C23.2138 27.4821 24.8138 25.8821 24.8138 22.8921V8.5621L21.7638 11.6121V22.5621C21.7638 23.8221 21.1138 24.4321 20.2238 24.4321H4.8938C3.6938 24.4321 3.0538 23.8221 3.0538 22.5621V7.5821C3.0538 6.3221 3.6938 5.7021 4.8938 5.7021H15.9838L19.0338 2.6721H4.6338C1.6138 2.6721 0.0038 4.2521 0.0038 7.2621V22.8921C0.0038 25.8821 1.6138 27.4821 4.6338 27.4821Z","viewBox":{"width":27.487880930130636,"height":27.483545452077195}},"bold":{"name":"square.and.pencil","path":"M26.1448 4.104L27.2648 2.944C27.8648 2.304 27.9348 1.394 27.3348 0.764L26.9048 0.344C26.3848 -0.206 25.4448 -0.066 24.8448 0.524L23.6748 1.644ZM4.8248 27.744H20.5448C23.4448 27.744 25.1548 26.044 25.1548 22.944V8.784L21.6248 12.304V22.504C21.6248 23.684 21.0448 24.214 20.1648 24.214H5.2248C4.1148 24.214 3.5248 23.684 3.5248 22.504V7.824C3.5248 6.664 4.1148 6.114 5.2248 6.114H15.5348L19.0548 2.584H4.8248C1.7048 2.584 0.0048 4.284 0.0048 7.384V22.944C0.0048 26.044 1.7048 27.744 4.8248 27.744ZM10.3348 18.134L13.3148 16.924L25.1748 5.074L22.7048 2.624L10.8648 14.484L9.6248 17.404C9.4448 17.854 9.9248 18.284 10.3348 18.134Z","viewBox":{"width":27.748523713627037,"height":27.743200896359145}},"heavy":{"name":"square.and.pencil","path":"M26.3695 4.5728L27.5495 3.3328C28.2295 2.6028 28.3295 1.5628 27.6495 0.8728L27.1795 0.3828C26.6095 -0.2372 25.5295 -0.0572 24.8295 0.6128L23.5995 1.8028ZM5.1095 28.1328H20.6595C23.7895 28.1328 25.6395 26.2828 25.6395 23.0428V9.1328L21.4095 13.3528V22.4428C21.4095 23.4728 20.9195 23.9028 20.0795 23.9028H5.6895C4.7195 23.9028 4.2295 23.4728 4.2295 22.4428V8.1828C4.2295 7.1628 4.7195 6.7228 5.6895 6.7228H14.8795L19.0995 2.4928H5.1095C1.8495 2.4928 -0.0005 4.3428 -0.0005 7.5828V23.0428C-0.0005 26.2828 1.8495 28.1328 5.1095 28.1328ZM10.8795 18.1328L14.0395 16.9028L25.4295 5.5228L22.6495 2.7528L11.2795 14.1328L10.0395 17.2628C9.8195 17.8228 10.3995 18.3128 10.8795 18.1328Z","viewBox":{"width":28.111879060221924,"height":28.13175222007995}}},"plus":{"light":{"name":"plus","path":"M0.0037 11.0753C0.0037 11.5753 0.4237 12.0053 0.9337 12.0053H10.1437V21.2153C10.1437 21.7253 10.5637 22.1453 11.0737 22.1453C11.5837 22.1453 12.0037 21.7253 12.0037 21.2153V12.0053H21.2337C21.7237 12.0053 22.1437 11.5753 22.1437 11.0753C22.1437 10.5653 21.7237 10.1453 21.2337 10.1453H12.0037V0.9153C12.0037 0.4253 11.5837 -0.0047 11.0737 -0.0047C10.5637 -0.0047 10.1437 0.4253 10.1437 0.9153V10.1453H0.9337C0.4237 10.1453 0.0037 10.5653 0.0037 11.0753Z","viewBox":{"width":22.1484375,"height":22.1484375}},"regular":{"name":"plus","path":"M0.0037 11.2804C0.0037 11.9504 0.5637 12.5004 1.2137 12.5004H10.0637V21.3404C10.0637 22.0004 10.6137 22.5604 11.2837 22.5604C11.9537 22.5604 12.5137 22.0004 12.5137 21.3404V12.5004H21.3437C21.9937 12.5004 22.5537 11.9504 22.5537 11.2804C22.5537 10.6104 21.9937 10.0504 21.3437 10.0504H12.5137V1.2204C12.5137 0.5604 11.9537 0.0004 11.2837 0.0004C10.6137 0.0004 10.0637 0.5604 10.0637 1.2204V10.0504H1.2137C0.5637 10.0504 0.0037 10.6104 0.0037 11.2804Z","viewBox":{"width":22.55859375,"height":22.55859375}},"medium":{"name":"plus","path":"M0.0037 11.4445C0.0037 12.2945 0.6937 12.9745 1.5337 12.9745H9.9137V21.3545C9.9137 22.1945 10.6137 22.8845 11.4437 22.8845C12.2737 22.8845 12.9737 22.1945 12.9737 21.3545V12.9745H21.3537C22.1937 12.9745 22.8837 12.2945 22.8837 11.4445C22.8837 10.6045 22.1937 9.9145 21.3537 9.9145H12.9737V1.5345C12.9737 0.6945 12.2737 0.0045 11.4437 0.0045C10.6137 0.0045 9.9137 0.6945 9.9137 1.5345V9.9145H1.5337C0.6937 9.9145 0.0037 10.6045 0.0037 11.4445Z","viewBox":{"width":22.88671875,"height":22.88671875}},"semibold":{"name":"plus","path":"M0.0037 11.5675C0.0037 12.5375 0.8037 13.3275 1.7637 13.3275H9.8037V21.3675C9.8037 22.3375 10.5937 23.1375 11.5637 23.1375C12.5337 23.1375 13.3337 22.3375 13.3337 21.3675V13.3275H21.3737C22.3437 13.3275 23.1337 12.5375 23.1337 11.5675C23.1337 10.5975 22.3437 9.8075 21.3737 9.8075H13.3337V1.7675C13.3337 0.8075 12.5337 -0.0025 11.5637 -0.0025C10.5937 -0.0025 9.8037 0.8075 9.8037 1.7675V9.8075H1.7637C0.8037 9.8075 0.0037 10.5975 0.0037 11.5675Z","viewBox":{"width":23.1328125,"height":23.1328125}},"bold":{"name":"plus","path":"M0.0037 11.7316C0.0037 12.8816 0.9337 13.8116 2.0737 13.8116H9.6637V21.3916C9.6637 22.5316 10.5837 23.4716 11.7337 23.4716C12.8837 23.4716 13.8037 22.5316 13.8037 21.3916V13.8116H21.3937C22.5337 13.8116 23.4637 12.8816 23.4637 11.7316C23.4637 10.5916 22.5337 9.6616 21.3937 9.6616H13.8037V2.0816C13.8037 0.9416 12.8837 0.0016 11.7337 0.0016C10.5837 0.0016 9.6637 0.9416 9.6637 2.0816V9.6616H2.0737C0.9337 9.6616 0.0037 10.5916 0.0037 11.7316Z","viewBox":{"width":23.4609375,"height":23.474609375}},"heavy":{"name":"plus","path":"M0.0037 11.974C0.0037 13.374 1.1337 14.494 2.5137 14.494H9.4437V21.424C9.4437 22.814 10.5837 23.944 11.9737 23.944C13.3537 23.944 14.4937 22.814 14.4937 21.424V14.494H21.4237C22.8037 14.494 23.9437 13.374 23.9437 11.974C23.9437 10.584 22.8037 9.444 21.4237 9.444H14.4937V2.534C14.4937 1.134 13.3537 0.004 11.9737 0.004C10.5837 0.004 9.4437 1.134 9.4437 2.534V9.444H2.5137C1.1337 9.444 0.0037 10.584 0.0037 11.974Z","viewBox":{"width":23.939453125,"height":23.939453125}}},"gear":{"light":{"name":"gear","path":"M15.2727 28.3805C15.6527 28.3805 16.0327 28.3505 16.4327 28.3105L17.1727 29.7305C17.3227 30.0205 17.5727 30.1405 17.9327 30.1005C18.2627 30.0405 18.4427 29.8405 18.5027 29.4805L18.7127 27.9105C19.4727 27.7205 20.2027 27.4505 20.9027 27.1205L22.0627 28.1705C22.3127 28.4005 22.5827 28.4305 22.9127 28.2705C23.2027 28.1205 23.2927 27.8605 23.2327 27.5005L22.9127 25.9605C23.5427 25.5205 24.1427 25.0305 24.6927 24.4705L26.1427 25.0705C26.4427 25.2205 26.7127 25.1505 26.9727 24.8505C27.2027 24.6005 27.2327 24.3205 27.0327 24.0305L26.1827 22.6905C26.6327 22.0605 27.0127 21.3805 27.3427 20.6705L28.9327 20.7505C29.2727 20.7605 29.5127 20.6105 29.6227 20.2805C29.7327 19.9505 29.6427 19.6905 29.3827 19.4905L28.1327 18.4905C28.3427 17.7705 28.4827 16.9905 28.5327 16.1905L30.0327 15.7205C30.3627 15.5905 30.5427 15.3905 30.5427 15.0505C30.5427 14.7005 30.3627 14.4905 30.0327 14.3605L28.5327 13.9005C28.4827 13.0905 28.3327 12.3405 28.1327 11.6005L29.3827 10.6005C29.6427 10.4105 29.7227 10.1505 29.6227 9.8205C29.5127 9.5005 29.2727 9.3505 28.9327 9.3605L27.3427 9.4305C27.0127 8.7005 26.6327 8.0505 26.1827 7.4005L27.0327 6.0605C27.2227 5.7905 27.2027 5.5005 26.9727 5.2605C26.7127 4.9605 26.4427 4.8905 26.1427 5.0405L24.6927 5.6305C24.1427 5.0805 23.5427 4.5705 22.9127 4.1405L23.2327 2.6005C23.2927 2.2505 23.2027 1.9905 22.9127 1.8405C22.5827 1.6605 22.3127 1.6905 22.0627 1.9305L20.9027 2.9605C20.2027 2.6505 19.4727 2.3905 18.7127 2.1805L18.5027 0.6205C18.4427 0.2705 18.2527 0.0605 17.9227 0.0105C17.5727 -0.0295 17.3227 0.0905 17.1727 0.3605L16.4327 1.7805C16.0327 1.7605 15.6527 1.7305 15.2727 1.7305C14.8727 1.7305 14.5027 1.7605 14.1127 1.7805L13.3527 0.3605C13.2227 0.0905 12.9727 -0.0295 12.6027 0.0105C12.2727 0.0605 12.0827 0.2705 12.0427 0.6205L11.8127 2.1805C11.0727 2.3905 10.3327 2.6305 9.6227 2.9605L8.4627 1.9505C8.2127 1.7005 7.9427 1.6805 7.6127 1.8405C7.3427 1.9905 7.2427 2.2505 7.3027 2.6005L7.6327 4.1405C7.0027 4.5705 6.3827 5.0805 5.8427 5.6305L4.4027 5.0405C4.0927 4.8905 3.8327 4.9605 3.5727 5.2605C3.3327 5.5005 3.3227 5.7905 3.5027 6.0505L4.3427 7.4005C3.9127 8.0505 3.5227 8.7005 3.2027 9.4305L1.6027 9.3605C1.2627 9.3505 1.0227 9.5005 0.9127 9.8205C0.7927 10.1505 0.8727 10.4105 1.1627 10.6005L2.3927 11.6005C2.2027 12.3405 2.0627 13.0905 2.0127 13.8805L0.5027 14.3605C0.1627 14.4905 0.0027 14.6905 0.0027 15.0505C0.0027 15.4005 0.1627 15.6105 0.5027 15.7205L2.0127 16.2105C2.0627 16.9905 2.2027 17.7705 2.3927 18.4905L1.1627 19.4905C0.8927 19.6805 0.8027 19.9405 0.9127 20.2805C1.0227 20.6105 1.2627 20.7605 1.6027 20.7505L3.2027 20.6705C3.5127 21.3805 3.9127 22.0605 4.3427 22.6905L3.5127 24.0305C3.3127 24.3205 3.3227 24.6005 3.5727 24.8505C3.8327 25.1505 4.0927 25.2205 4.4027 25.0705L5.8427 24.4705C6.3827 25.0305 7.0027 25.5205 7.6327 25.9605L7.3027 27.5005C7.2427 27.8605 7.3427 28.1205 7.6127 28.2705C7.9527 28.4305 8.2127 28.4005 8.4627 28.1705L9.6227 27.1205C10.3327 27.4505 11.0727 27.7205 11.8127 27.9305L12.0427 29.4805C12.0827 29.8405 12.2727 30.0405 12.6227 30.1005C12.9727 30.1405 13.2227 30.0205 13.3527 29.7305L14.1127 28.3105C14.4927 28.3505 14.8727 28.3805 15.2727 28.3805ZM18.5427 14.3505C18.0427 12.7405 16.8027 11.7405 15.2627 11.7405C14.9727 11.7405 14.6727 11.7805 14.2627 11.9005L9.9927 4.5905C11.5627 3.7805 13.3527 3.3305 15.2727 3.3305C21.5427 3.3305 26.4727 8.1405 26.8227 14.3505ZM3.7027 15.0605C3.7027 10.9905 5.6627 7.4405 8.7127 5.3505L12.9927 12.6805C12.2627 13.3605 11.8827 14.2105 11.8827 15.1105C11.8827 16.0305 12.2727 16.8505 13.0327 17.5605L8.6727 24.7405C5.6427 22.6305 3.7027 19.0905 3.7027 15.0605ZM13.4227 15.1005C13.4227 14.0905 14.2827 13.2805 15.2727 13.2805C16.2927 13.2805 17.1327 14.0905 17.1327 15.1005C17.1327 16.1305 16.2927 16.9505 15.2727 16.9505C14.2827 16.9505 13.4227 16.1305 13.4227 15.1005ZM15.2727 26.7805C13.3427 26.7805 11.5427 26.3305 9.9627 25.5105L14.3027 18.3505C14.6827 18.4605 14.9827 18.4905 15.2627 18.4905C16.8327 18.4905 18.0927 17.4705 18.5527 15.8005H26.8227C26.4527 21.9605 21.5327 26.7805 15.2727 26.7805Z","viewBox":{"width":30.54296875,"height":30.10720464807197}},"regular":{"name":"gear","path":"M15.3927 28.4859C15.7527 28.4859 16.0927 28.4459 16.4627 28.4259L17.2427 29.9259C17.3927 30.2259 17.6927 30.3859 18.0727 30.3359C18.4127 30.2659 18.6527 30.0159 18.7027 29.6559L18.9327 27.9959C19.6227 27.8159 20.2927 27.5559 20.9327 27.2759L22.1627 28.3759C22.4227 28.6259 22.7527 28.6859 23.0927 28.4859C23.3927 28.3259 23.5127 27.9959 23.4427 27.6459L23.1027 26.0059C23.6827 25.6059 24.2427 25.1559 24.7427 24.6459L26.2627 25.2859C26.6027 25.4259 26.9327 25.3559 27.1927 25.0459C27.4227 24.7959 27.4527 24.4459 27.2527 24.1459L26.3627 22.7159C26.7727 22.1459 27.0927 21.5259 27.4127 20.8759L29.0927 20.9559C29.4527 20.9659 29.7327 20.7759 29.8627 20.4359C29.9727 20.0959 29.8727 19.7659 29.5827 19.5459L28.2727 18.5059C28.4527 17.8559 28.5927 17.1459 28.6527 16.4059L30.2327 15.9159C30.5827 15.7859 30.7927 15.5259 30.7927 15.1559C30.7927 14.8059 30.5827 14.5459 30.2327 14.4259L28.6527 13.9159C28.5927 13.1759 28.4527 12.4959 28.2727 11.8259L29.5827 10.7659C29.8627 10.5659 29.9727 10.2559 29.8627 9.9059C29.7327 9.5659 29.4527 9.3759 29.0927 9.3859L27.4127 9.4559C27.0927 8.8059 26.7727 8.1859 26.3627 7.6159L27.2527 6.1859C27.4427 5.9059 27.4127 5.5459 27.1927 5.3059C26.9327 4.9859 26.6027 4.9059 26.2627 5.0559L24.7427 5.6759C24.2427 5.1959 23.6827 4.7259 23.1027 4.3359L23.4427 2.7059C23.5127 2.3359 23.3927 2.0059 23.0927 1.8459C22.7527 1.6659 22.4227 1.6959 22.1627 1.9659L20.9327 3.0459C20.2927 2.7559 19.6227 2.5259 18.9327 2.3359L18.7027 0.6859C18.6527 0.3259 18.4027 0.0659 18.0627 0.0159C17.6927 -0.0441 17.3927 0.1059 17.2427 0.4059L16.4627 1.9159C16.0927 1.8859 15.7527 1.8559 15.3927 1.8559C15.0227 1.8559 14.6927 1.8859 14.3327 1.9159L13.5327 0.4059C13.3827 0.1059 13.0827 -0.0441 12.7127 0.0159C12.3727 0.0659 12.1227 0.3259 12.0827 0.6859L11.8427 2.3259C11.1527 2.5259 10.5027 2.7559 9.8427 3.0459L8.6127 1.9659C8.3527 1.6959 8.0227 1.6659 7.6827 1.8459C7.3827 2.0059 7.2627 2.3359 7.3327 2.7059L7.6727 4.3359C7.1127 4.7259 6.5327 5.1959 6.0327 5.6759L4.5127 5.0559C4.1727 4.9059 3.8527 4.9859 3.5927 5.3059C3.3627 5.5459 3.3327 5.9059 3.5227 6.1759L4.4127 7.6159C4.0227 8.1859 3.6827 8.8059 3.3627 9.4559L1.6927 9.3859C1.3427 9.3759 1.0427 9.5659 0.9127 9.9059C0.8027 10.2559 0.9027 10.5659 1.1927 10.7659L2.5027 11.8259C2.3227 12.4959 2.1827 13.1759 2.1427 13.9159L0.5427 14.4259C0.1927 14.5259 0.0027 14.7859 0.0027 15.1559C0.0027 15.5259 0.1927 15.7859 0.5427 15.9159L2.1427 16.4159C2.1827 17.1459 2.3227 17.8559 2.5027 18.5059L1.1927 19.5459C0.9127 19.7659 0.8227 20.0959 0.9127 20.4359C1.0427 20.7759 1.3427 20.9659 1.6927 20.9559L3.3627 20.8759C3.6827 21.5259 4.0227 22.1459 4.4127 22.7159L3.5227 24.1459C3.3327 24.4459 3.3627 24.7959 3.5927 25.0459C3.8527 25.3559 4.1727 25.4259 4.5127 25.2859L6.0327 24.6459C6.5327 25.1559 7.1127 25.6059 7.6727 26.0059L7.3327 27.6459C7.2627 27.9959 7.3827 28.3259 7.6827 28.4859C8.0227 28.6859 8.3527 28.6259 8.6127 28.3759L9.8427 27.2759C10.5027 27.5559 11.1527 27.8159 11.8427 27.9959L12.0827 29.6559C12.1227 30.0159 12.3727 30.2659 12.7127 30.3359C13.0827 30.3859 13.3827 30.2259 13.5327 29.9259L14.3327 28.4259C14.6827 28.4459 15.0227 28.4859 15.3927 28.4859ZM18.8227 14.2959C18.1927 12.5759 16.9227 11.6359 15.3627 11.6359C15.1227 11.6359 14.8627 11.6559 14.4127 11.7559L10.4827 5.0559C11.9627 4.3359 13.6127 3.9359 15.3927 3.9359C21.3527 3.9359 26.0327 8.4559 26.4727 14.2959ZM4.2927 15.1759C4.2927 11.3759 6.0927 8.0259 8.9127 5.9959L12.8827 12.7359C12.1227 13.5059 11.7827 14.3359 11.7827 15.2259C11.7827 16.0859 12.1127 16.8859 12.8627 17.6759L8.8327 24.2959C6.0527 22.2559 4.2927 18.9459 4.2927 15.1759ZM13.7227 15.2159C13.7227 14.2859 14.5027 13.5559 15.3927 13.5559C16.3127 13.5559 17.0727 14.2859 17.0727 15.2159C17.0727 16.1259 16.3127 16.8859 15.3927 16.8859C14.5027 16.8859 13.7227 16.1259 13.7227 15.2159ZM15.3927 26.4159C13.5727 26.4159 11.8827 25.9859 10.3927 25.2459L14.4127 18.6759C14.8327 18.7859 15.1227 18.8059 15.3627 18.8059C16.9427 18.8059 18.2127 17.8359 18.8227 16.0759H26.4527C26.0127 21.8859 21.3527 26.4159 15.3927 26.4159Z","viewBox":{"width":30.7890625,"height":30.3457095002449}},"medium":{"name":"gear","path":"M15.6127 28.8834C15.9427 28.8834 16.2727 28.8534 16.6127 28.8334L17.3727 30.2834C17.5427 30.6334 17.8927 30.8134 18.3227 30.7534C18.7027 30.6934 18.9927 30.3934 19.0427 29.9934L19.2727 28.3634C19.9227 28.1834 20.5527 27.9534 21.1527 27.6934L22.3527 28.7634C22.6527 29.0534 23.0327 29.1034 23.4227 28.9034C23.7627 28.6934 23.9127 28.3234 23.8327 27.9234L23.4927 26.3234C24.0227 25.9434 24.5527 25.5234 25.0327 25.0434L26.5227 25.6734C26.9027 25.8334 27.2727 25.7434 27.5727 25.4034C27.8227 25.1134 27.8627 24.7134 27.6427 24.3634L26.7727 22.9634C27.1527 22.4334 27.4627 21.8434 27.7527 21.2334L29.3927 21.3134C29.8027 21.3334 30.1427 21.1034 30.2727 20.7234C30.4027 20.3434 30.2827 19.9534 29.9727 19.7134L28.6827 18.7034C28.8427 18.0734 28.9827 17.4034 29.0427 16.7134L30.5827 16.2234C30.9827 16.0834 31.2127 15.7834 31.2127 15.3734C31.2127 14.9634 30.9827 14.6634 30.5827 14.5334L29.0427 14.0334C28.9827 13.3534 28.8427 12.6934 28.6827 12.0534L29.9727 11.0434C30.2827 10.7934 30.4027 10.4234 30.2727 10.0434C30.1427 9.6634 29.8027 9.4434 29.3927 9.4534L27.7527 9.5234C27.4627 8.9134 27.1527 8.3334 26.7727 7.7734L27.6427 6.3934C27.8527 6.0634 27.8227 5.6534 27.5727 5.3734C27.2727 5.0234 26.9027 4.9434 26.5227 5.0934L25.0327 5.7134C24.5527 5.2434 24.0227 4.8134 23.4927 4.4434L23.8327 2.8434C23.9127 2.4334 23.7627 2.0634 23.4227 1.8734C23.0327 1.6634 22.6427 1.7034 22.3527 1.9934L21.1527 3.0734C20.5527 2.8034 19.9027 2.5834 19.2727 2.3934L19.0427 0.7934C18.9927 0.3834 18.7027 0.0734 18.3227 0.0134C17.8927 -0.0466 17.5427 0.1334 17.3727 0.4634L16.6127 1.9334C16.2727 1.9134 15.9427 1.8834 15.6127 1.8834C15.2627 1.8834 14.9527 1.9134 14.6027 1.9334L13.8327 0.4734C13.6627 0.1334 13.3127 -0.0466 12.8927 0.0134C12.4927 0.0734 12.2227 0.3834 12.1727 0.7934L11.9327 2.3934C11.3027 2.5834 10.6627 2.8034 10.0527 3.0734L8.8627 2.0034C8.5627 1.7034 8.1727 1.6734 7.7927 1.8734C7.4527 2.0634 7.3027 2.4334 7.3827 2.8534L7.7227 4.4434C7.1927 4.8134 6.6627 5.2434 6.1827 5.7134L4.6927 5.0934C4.3027 4.9434 3.9227 5.0234 3.6327 5.3734C3.3927 5.6534 3.3527 6.0634 3.5727 6.3834L4.4427 7.7734C4.0627 8.3334 3.7427 8.9134 3.4627 9.5234L1.8227 9.4534C1.4127 9.4434 1.0627 9.6634 0.9327 10.0434C0.8027 10.4234 0.9127 10.7934 1.2427 11.0434L2.5327 12.0534C2.3627 12.6934 2.2327 13.3534 2.1827 14.0334L0.6327 14.5334C0.2327 14.6634 0.0027 14.9634 0.0027 15.3734C0.0027 15.7834 0.2327 16.0834 0.6327 16.2234L2.1827 16.7134C2.2327 17.4034 2.3627 18.0734 2.5327 18.7034L1.2427 19.7134C0.9327 19.9534 0.8227 20.3434 0.9327 20.7234C1.0627 21.1034 1.4127 21.3334 1.8227 21.3134L3.4627 21.2334C3.7427 21.8434 4.0627 22.4334 4.4327 22.9634L3.5727 24.3734C3.3527 24.7034 3.3927 25.1134 3.6327 25.4034C3.9227 25.7434 4.3027 25.8334 4.6927 25.6734L6.1827 25.0434C6.6627 25.5234 7.1927 25.9434 7.7227 26.3234L7.3827 27.9234C7.3127 28.3234 7.4527 28.6934 7.7927 28.9034C8.1727 29.1034 8.5627 29.0534 8.8627 28.7734L10.0527 27.6934C10.6627 27.9534 11.2927 28.1834 11.9327 28.3634L12.1727 29.9934C12.2227 30.3934 12.4927 30.6934 12.8927 30.7534C13.3127 30.8134 13.6627 30.6334 13.8327 30.2834L14.6027 28.8334C14.9427 28.8534 15.2627 28.8834 15.6127 28.8834ZM19.2227 14.3134C18.5527 12.5634 17.1827 11.6034 15.5827 11.6034C15.3527 11.6034 15.1027 11.6334 14.6827 11.7234L10.9827 5.3734C12.3727 4.7234 13.9427 4.3534 15.6127 4.3534C21.3827 4.3534 25.9527 8.7034 26.4727 14.3134ZM4.7027 15.3934C4.7027 11.7134 6.4227 8.4834 9.1227 6.4734L12.8527 12.8634C12.1227 13.6634 11.8027 14.5334 11.8027 15.4334C11.8027 16.2934 12.1127 17.1134 12.8527 17.9334L9.0227 24.2134C6.3827 22.2034 4.7027 19.0134 4.7027 15.3934ZM13.9427 15.4134C13.9427 14.5034 14.7227 13.7734 15.6027 13.7734C16.5127 13.7734 17.2627 14.5034 17.2627 15.4134C17.2627 16.3234 16.5127 17.0734 15.6027 17.0734C14.7427 17.0734 13.9427 16.3234 13.9427 15.4134ZM15.6127 26.3934C13.9027 26.3934 12.3027 26.0234 10.8727 25.3434L14.6727 19.1234C15.0827 19.2234 15.3527 19.2334 15.5827 19.2334C17.2027 19.2334 18.5527 18.2634 19.2227 16.4534H26.4727C25.9527 22.0634 21.3827 26.3934 15.6127 26.3934Z","viewBox":{"width":31.212890625,"height":30.767577212222783}},"semibold":{"name":"gear","path":"M15.7727 29.1907C16.0927 29.1907 16.3927 29.1607 16.7327 29.1307L17.4827 30.5607C17.6627 30.9507 18.0627 31.1407 18.5127 31.0907C18.9327 31.0107 19.2527 30.6807 19.3027 30.2407L19.5227 28.6407C20.1427 28.4807 20.7427 28.2407 21.3327 28.0107L22.5027 29.0707C22.8327 29.3707 23.2527 29.4207 23.6627 29.2007C24.0527 28.9807 24.2027 28.5707 24.1127 28.1407L23.7727 26.5607C24.2927 26.2107 24.7827 25.8007 25.2527 25.3507L26.7327 25.9607C27.1427 26.1407 27.5527 26.0307 27.8627 25.6607C28.1327 25.3607 28.1827 24.9107 27.9427 24.5407L27.0827 23.1607C27.4427 22.6507 27.7427 22.0907 28.0227 21.5007L29.6427 21.5907C30.0627 21.6107 30.4627 21.3507 30.5927 20.9407C30.7327 20.5307 30.5927 20.1007 30.2527 19.8407L29.0027 18.8407C29.1627 18.2407 29.2827 17.6107 29.3427 16.9507L30.8527 16.4707C31.2827 16.3207 31.5527 15.9807 31.5527 15.5407C31.5527 15.0907 31.2827 14.7607 30.8527 14.6107L29.3427 14.1207C29.2827 13.4807 29.1527 12.8607 29.0027 12.2307L30.2527 11.2407C30.5927 10.9807 30.7327 10.5707 30.5927 10.1607C30.4627 9.7307 30.0627 9.4907 29.6427 9.5107L28.0227 9.5707C27.7427 8.9807 27.4427 8.4307 27.0827 7.9107L27.9427 6.5507C28.1827 6.1907 28.1327 5.7407 27.8627 5.4307C27.5527 5.0707 27.1427 4.9607 26.7127 5.1307L25.2527 5.7307C24.7827 5.3007 24.2927 4.8807 23.7727 4.5107L24.1127 2.9507C24.2027 2.5007 24.0327 2.1007 23.6627 1.9007C23.2527 1.6707 22.8227 1.7107 22.5027 2.0207L21.3327 3.0707C20.7427 2.8307 20.1427 2.6107 19.5227 2.4307L19.3027 0.8607C19.2527 0.4207 18.9327 0.0907 18.5127 0.0107C18.0627 -0.0593 17.6627 0.1507 17.4827 0.5207L16.7327 1.9507C16.3927 1.9307 16.0927 1.9107 15.7727 1.9107C15.4527 1.9107 15.1527 1.9307 14.8027 1.9507L14.0527 0.5207C13.8727 0.1507 13.4827 -0.0593 13.0327 0.0107C12.6027 0.0907 12.2927 0.4207 12.2327 0.8607L12.0127 2.4307C11.4027 2.6107 10.8027 2.8307 10.2127 3.0707L9.0327 2.0407C8.7227 1.7207 8.2827 1.6807 7.8727 1.9007C7.5027 2.1007 7.3427 2.5007 7.4227 2.9707L7.7627 4.5107C7.2427 4.8807 6.7527 5.3007 6.2927 5.7307L4.8127 5.1307C4.4027 4.9607 3.9927 5.0707 3.6827 5.4307C3.4027 5.7407 3.3727 6.1907 3.5927 6.5507L4.4527 7.9107C4.1027 8.4307 3.8027 8.9807 3.5127 9.5707L1.9027 9.5107C1.4727 9.4907 1.0827 9.7307 0.9427 10.1607C0.8027 10.5707 0.9327 10.9907 1.2827 11.2407L2.5427 12.2507C2.3927 12.8607 2.2527 13.4807 2.2127 14.1207L0.6827 14.6107C0.2427 14.7607 0.0027 15.0907 0.0027 15.5407C0.0027 15.9807 0.2427 16.3207 0.6827 16.4707L2.2127 16.9507C2.2527 17.6107 2.3927 18.2407 2.5427 18.8407L1.2827 19.8407C0.9427 20.1007 0.8027 20.5307 0.9427 20.9307C1.0827 21.3507 1.4727 21.6107 1.9127 21.5907L3.5127 21.5007C3.8027 22.0907 4.1027 22.6507 4.4527 23.1607L3.5927 24.5407C3.3627 24.9107 3.4027 25.3607 3.6827 25.6607C3.9927 26.0307 4.4027 26.1407 4.8227 25.9607L6.2927 25.3507C6.7527 25.8007 7.2427 26.2107 7.7627 26.5607L7.4227 28.1507C7.3427 28.5707 7.5027 28.9807 7.8727 29.2007C8.2827 29.4207 8.7227 29.3707 9.0327 29.0707L10.2127 28.0107C10.8027 28.2407 11.4027 28.4807 12.0127 28.6507L12.2327 30.2407C12.2927 30.6807 12.6027 31.0107 13.0427 31.0907C13.4827 31.1407 13.8727 30.9407 14.0527 30.5707L14.8027 29.1307C15.1327 29.1607 15.4527 29.1907 15.7727 29.1907ZM19.5227 14.3407C18.8127 12.5507 17.3927 11.5807 15.7527 11.5807C15.5327 11.5807 15.2827 11.6107 14.8927 11.6907L11.3627 5.6207C12.7027 5.0207 14.1927 4.6907 15.7727 4.6907C21.3927 4.6907 25.8827 8.8907 26.4727 14.3407ZM5.0327 15.5407C5.0327 11.9807 6.6727 8.8307 9.2827 6.8607L12.8527 12.9607C12.1227 13.7907 11.8027 14.6707 11.8027 15.5807C11.8027 16.4607 12.1127 17.2807 12.8427 18.1407L9.1727 24.1607C6.6327 22.1707 5.0327 19.0607 5.0327 15.5407ZM14.1227 15.5707C14.1227 14.6507 14.8927 13.9407 15.7627 13.9407C16.6827 13.9407 17.4227 14.6507 17.4227 15.5707C17.4227 16.4707 16.6827 17.2107 15.7627 17.2107C14.9027 17.2107 14.1227 16.4707 14.1227 15.5707ZM15.7727 26.4007C14.1527 26.4007 12.6227 26.0407 11.2427 25.4007L14.8727 19.4507C15.2627 19.5507 15.5127 19.5607 15.7527 19.5607C17.4027 19.5607 18.8227 18.5807 19.5127 16.7507H26.4727C25.8827 22.1907 21.3927 26.4007 15.7727 26.4007Z","viewBox":{"width":31.5546875,"height":31.098382959658444}},"bold":{"name":"gear","path":"M15.9927 29.5883C16.2927 29.5883 16.5727 29.5583 16.8827 29.5383L17.6227 30.9283C17.8127 31.3583 18.2627 31.5783 18.7727 31.5083C19.2327 31.4283 19.5927 31.0583 19.6427 30.5683L19.8627 29.0283C20.4427 28.8583 21.0027 28.6383 21.5427 28.4183L22.6927 29.4483C23.0527 29.7783 23.5427 29.8583 24.0127 29.5983C24.4227 29.3483 24.5927 28.8983 24.5027 28.4183L24.1727 26.8883C24.6327 26.5483 25.1127 26.1683 25.5527 25.7383L26.9927 26.3583C27.4427 26.5483 27.9027 26.4283 28.2427 26.0183C28.5427 25.6783 28.6027 25.1783 28.3327 24.7583L27.4927 23.4183C27.8227 22.9383 28.1127 22.4183 28.3727 21.8683L29.9527 21.9583C30.4327 21.9783 30.8727 21.6983 31.0227 21.2283C31.1727 20.7783 31.0227 20.2883 30.6527 19.9983L29.4127 19.0283C29.5627 18.4683 29.6827 17.8683 29.7327 17.2683L31.2127 16.7883C31.6927 16.6183 31.9827 16.2383 31.9827 15.7583C31.9827 15.2683 31.6927 14.8883 31.2127 14.7183L29.7327 14.2483C29.6827 13.6383 29.5627 13.0683 29.4127 12.4783L30.6427 11.5083C31.0227 11.2183 31.1727 10.7483 31.0227 10.3083C30.8727 9.8383 30.4327 9.5583 29.9527 9.5783L28.3727 9.6383C28.1127 9.0883 27.8227 8.5883 27.4927 8.0783L28.3327 6.7483C28.5927 6.3583 28.5427 5.8483 28.2427 5.5083C27.9027 5.1083 27.4427 4.9883 26.9727 5.1783L25.5427 5.7583C25.1127 5.3583 24.6327 4.9783 24.1727 4.6183L24.5027 3.0983C24.5927 2.6083 24.4027 2.1483 23.9827 1.9083C23.5427 1.6783 23.0327 1.7183 22.6927 2.0583L21.5427 3.0983C21.0027 2.8583 20.4427 2.6683 19.8627 2.4983L19.6427 0.9583C19.5927 0.4783 19.2327 0.0983 18.7627 0.0083C18.2627 -0.0517 17.8327 0.1783 17.6227 0.5683L16.8827 1.9783C16.5727 1.9483 16.2927 1.9383 15.9927 1.9383C15.6827 1.9383 15.4127 1.9483 15.0927 1.9783L14.3527 0.5683C14.1527 0.1783 13.7127 -0.0517 13.2027 0.0083C12.7427 0.0983 12.4027 0.4783 12.3327 0.9583L12.1127 2.4983C11.5427 2.6683 10.9827 2.8583 10.4327 3.0983L9.2827 2.0783C8.9327 1.7183 8.4327 1.6783 7.9827 1.9083C7.5727 2.1483 7.3827 2.6083 7.4827 3.0983L7.8227 4.6183C7.3427 4.9783 6.8627 5.3583 6.4427 5.7583L4.9927 5.1783C4.5427 4.9883 4.0727 5.1083 3.7327 5.5083C3.4327 5.8483 3.3927 6.3583 3.6527 6.7483L4.4827 8.0783C4.1527 8.5883 3.8727 9.0883 3.6127 9.6383L2.0227 9.5783C1.5427 9.5583 1.1027 9.8383 0.9527 10.2883C0.8027 10.7483 0.9527 11.2183 1.3227 11.5083L2.5727 12.4983C2.4227 13.0683 2.2927 13.6383 2.2527 14.2483L0.7627 14.7183C0.2827 14.8883 0.0027 15.2683 0.0027 15.7583C0.0027 16.2383 0.2827 16.6183 0.7627 16.7883L2.2527 17.2683C2.2927 17.8683 2.4227 18.4683 2.5727 19.0283L1.3427 19.9983C0.9527 20.2883 0.8027 20.7783 0.9527 21.2183C1.1027 21.6983 1.5427 21.9783 2.0327 21.9583L3.6127 21.8683C3.8727 22.4183 4.1527 22.9383 4.4827 23.4183L3.6327 24.7683C3.3727 25.1683 3.4327 25.6783 3.7327 26.0183C4.0727 26.4283 4.5427 26.5483 5.0027 26.3483L6.4227 25.7383C6.8627 26.1683 7.3427 26.5483 7.8227 26.8883L7.4827 28.4383C7.3827 28.8983 7.5627 29.3483 8.0027 29.6083C8.4327 29.8583 8.9327 29.7883 9.2827 29.4583L10.4327 28.4183C10.9827 28.6383 11.5427 28.8583 12.1127 29.0283L12.3327 30.5683C12.4027 31.0583 12.7427 31.4283 13.2227 31.5283C13.7127 31.5783 14.1527 31.3483 14.3527 30.9383L15.0927 29.5383C15.3927 29.5583 15.6827 29.5883 15.9927 29.5883ZM19.9227 14.3583C19.1827 12.5383 17.6627 11.5483 15.9727 11.5483C15.7727 11.5483 15.5427 11.5683 15.1727 11.6483L11.8527 5.9583C13.1227 5.4083 14.5227 5.1283 15.9927 5.1283C21.4227 5.1283 25.8027 9.1283 26.4727 14.3583ZM5.4427 15.7483C5.4427 12.3283 7.0127 9.2983 9.4927 7.3583L12.8427 13.0983C12.1227 13.9483 11.8027 14.8683 11.8027 15.7883C11.8027 16.6783 12.1027 17.5083 12.8227 18.3983L9.3827 24.0583C6.9727 22.1183 5.4427 19.1283 5.4427 15.7483ZM14.3527 15.7783C14.3527 14.8683 15.1027 14.1583 15.9827 14.1583C16.8827 14.1583 17.6127 14.8683 17.6127 15.7783C17.6127 16.6783 16.8827 17.4183 15.9827 17.4183C15.1227 17.4183 14.3527 16.6783 14.3527 15.7783ZM15.9927 26.3883C14.4627 26.3883 13.0327 26.0683 11.7327 25.4983L15.1327 19.9083C15.5027 19.9883 15.7527 19.9983 15.9727 19.9983C17.6627 19.9983 19.1827 19.0183 19.9027 17.1283H26.4727C25.8027 22.3683 21.4227 26.3883 15.9927 26.3883Z","viewBox":{"width":31.978515625,"height":31.533442513919063}},"heavy":{"name":"gear","path":"M16.3127 30.1658C16.5827 30.1658 16.8327 30.1458 17.1127 30.1158L17.8127 31.4558C18.0327 31.9558 18.5627 32.2258 19.1427 32.1258C19.6727 32.0358 20.0827 31.6058 20.1527 31.0658L20.3527 29.5558C20.8727 29.4058 21.3827 29.2158 21.8727 29.0258L22.9827 30.0158C23.3927 30.3758 23.9627 30.4758 24.4727 30.1858C24.9527 29.9058 25.1727 29.3658 25.0427 28.8358L24.7327 27.3558C25.1527 27.0458 25.5827 26.7058 25.9727 26.3158L27.3727 26.9258C27.8727 27.1258 28.4227 26.9858 28.8027 26.5358C29.1327 26.1458 29.2027 25.5658 28.9027 25.0858L28.0927 23.7858C28.3827 23.3558 28.6427 22.8858 28.8927 22.3958L30.4027 22.4758C30.9527 22.5058 31.4627 22.1758 31.6227 21.6458C31.8127 21.1358 31.6327 20.5658 31.2127 20.2358L30.0127 19.3058C30.1327 18.7858 30.2527 18.2558 30.3127 17.7158L31.7327 17.2458C32.2827 17.0658 32.6227 16.6158 32.6227 16.0658C32.6227 15.5158 32.2827 15.0658 31.7327 14.8858L30.3127 14.4158C30.2527 13.8758 30.1327 13.3558 30.0127 12.8358L31.2027 11.8958C31.6327 11.5658 31.8127 11.0058 31.6227 10.5158C31.4627 9.9858 30.9527 9.6558 30.4027 9.6858L28.8927 9.7358C28.6427 9.2458 28.3827 8.7958 28.0927 8.3258L28.9027 7.0458C29.1927 6.5958 29.1327 6.0058 28.8027 5.6158C28.4227 5.1658 27.8927 5.0158 27.3527 5.2358L25.9527 5.7958C25.5827 5.4558 25.1527 5.1058 24.7327 4.7858L25.0427 3.2958C25.1727 2.7458 24.9327 2.2158 24.4627 1.9558C23.9527 1.6858 23.3627 1.7358 22.9827 2.1158L21.8727 3.1158C21.3827 2.9158 20.8627 2.7358 20.3527 2.5858L20.1527 1.0958C20.0827 0.5458 19.6727 0.1058 19.1227 0.0158C18.5627 -0.0642 18.0627 0.2058 17.8327 0.6558L17.1127 2.0158C16.8327 1.9958 16.5827 1.9858 16.3127 1.9858C16.0327 1.9858 15.7727 1.9958 15.5027 2.0158L14.7927 0.6758C14.5627 0.1958 14.0427 -0.0642 13.4627 0.0158C12.9327 0.1058 12.5327 0.5458 12.4527 1.0958L12.2527 2.5858C11.7427 2.7358 11.2227 2.9158 10.7427 3.1158L9.6427 2.1358C9.2427 1.7358 8.6727 1.6858 8.1527 1.9558C7.6827 2.2158 7.4327 2.7458 7.5627 3.3058L7.8927 4.7858C7.4627 5.1058 7.0427 5.4558 6.6427 5.7958L5.2527 5.2358C4.7327 5.0158 4.1827 5.1658 3.8027 5.6158C3.4727 6.0058 3.4227 6.5958 3.7027 7.0458L4.5127 8.3258C4.2227 8.7958 3.9627 9.2458 3.7327 9.7358L2.2127 9.6858C1.6727 9.6558 1.1527 9.9858 0.9827 10.5058C0.8027 11.0058 0.9827 11.5658 1.3927 11.8958L2.5927 12.8358C2.4727 13.3558 2.3627 13.8758 2.3127 14.4158L0.8727 14.8858C0.3327 15.0658 0.0027 15.5158 0.0027 16.0658C0.0027 16.6158 0.3327 17.0658 0.8727 17.2458L2.3127 17.7158C2.3627 18.2558 2.4727 18.7858 2.5927 19.3058L1.4127 20.2358C0.9827 20.5758 0.8027 21.1358 0.9827 21.6258C1.1527 22.1758 1.6727 22.5058 2.2127 22.4758L3.7327 22.3958C3.9627 22.8858 4.2227 23.3558 4.5127 23.7858L3.6927 25.1058C3.4027 25.5558 3.4727 26.1458 3.8027 26.5358C4.1827 26.9858 4.7327 27.1258 5.2527 26.9058L6.6327 26.3158C7.0427 26.7058 7.4627 27.0458 7.8927 27.3558L7.5627 28.8458C7.4527 29.3658 7.6727 29.9058 8.1627 30.2058C8.6527 30.4758 9.2327 30.3958 9.6227 30.0258L10.7427 29.0258C11.2227 29.2158 11.7327 29.4058 12.2527 29.5558L12.4527 31.0658C12.5327 31.6058 12.9327 32.0358 13.4927 32.1458C14.0427 32.2258 14.5627 31.9358 14.7927 31.4558L15.5027 30.1158C15.7727 30.1458 16.0327 30.1658 16.3127 30.1658ZM20.4927 14.3958C19.7027 12.5158 18.0427 11.5158 16.2927 11.5158C16.1227 11.5158 15.9027 11.5258 15.5727 11.5958L12.5827 6.4358C13.7427 5.9858 15.0027 5.7458 16.3127 5.7458C21.4627 5.7458 25.6627 9.4758 26.4527 14.3958ZM6.0427 16.0658C6.0427 12.8358 7.5027 9.9658 9.7927 8.0858L12.8127 13.2758C12.1227 14.1758 11.8127 15.1458 11.8127 16.0758C11.8127 16.9858 12.0827 17.8458 12.8127 18.7758L9.6827 23.9358C7.4527 22.0558 6.0427 19.2258 6.0427 16.0658ZM14.6827 16.0758C14.6827 15.1758 15.4327 14.4758 16.2927 14.4758C17.1827 14.4758 17.8927 15.1758 17.8927 16.0758C17.8927 16.9558 17.1827 17.6958 16.2927 17.6958C15.4527 17.6958 14.6827 16.9558 14.6827 16.0758ZM16.3127 26.3758C14.9427 26.3758 13.6327 26.1058 12.4427 25.6258L15.5127 20.5458C15.8627 20.6158 16.0927 20.6358 16.2927 20.6358C18.0427 20.6358 19.6827 19.6358 20.4827 17.6958H26.4527C25.6927 22.6158 21.4627 26.3758 16.3127 26.3758Z","viewBox":{"width":32.62109375,"height":32.15781772402166}}}} as const \ No newline at end of file diff --git a/src/design-system/tokens.ts b/src/design-system/tokens.ts index 422a6a7..28d4ddc 100644 --- a/src/design-system/tokens.ts +++ b/src/design-system/tokens.ts @@ -653,6 +653,7 @@ export const symbolNames = [ 'gearshape.fill', 'square.and.pencil', 'plus', + 'gear', ] as const export type SymbolName = typeof symbolNames[number] diff --git a/src/entries/background/rpc.ts b/src/entries/background/rpc.ts index 5da1444..fcd57bf 100644 --- a/src/entries/background/rpc.ts +++ b/src/entries/background/rpc.ts @@ -20,8 +20,12 @@ import { networkStore, pendingRequestsStore, sessionsStore, + settingsStore, } from '~/zustand' +const inpageMessenger = getMessenger('background:inpage') +const walletMessenger = getMessenger('background:wallet') + const clientCache = new Map() export function getRpcClient({ rpcUrl: rpcUrl_, @@ -49,12 +53,17 @@ export function getRpcClient({ }, timeout: 5_000, }) + + if (method === 'eth_sendTransaction') + walletMessenger.send('transactionExecuted', undefined) + if ((response as { success?: boolean }).success === false) return { id, jsonrpc: '2.0', error: 'An unknown error occurred.', } as RpcResponse + return response }, }), @@ -63,9 +72,6 @@ export function getRpcClient({ return client } -const inpageMessenger = getMessenger('background:inpage') -const walletMessenger = getMessenger('background:wallet') - export function setupRpcHandler({ messenger }: { messenger: Messenger }) { messenger.reply('request', async ({ request, rpcUrl }, meta) => { const isInpage = @@ -74,7 +80,6 @@ export function setupRpcHandler({ messenger }: { messenger: Messenger }) { const rpcClient = getRpcClient({ rpcUrl }) const hasOnboarded = isInpage ? networkStore.getState().onboarded : rpcUrl - if (!hasOnboarded) return { id: request.id, @@ -85,12 +90,14 @@ export function setupRpcHandler({ messenger }: { messenger: Messenger }) { }, } as RpcResponse + const { bypassSignatureAuth, bypassTransactionAuth } = + settingsStore.getState() // If the method is a "signable" method, request approval from the user. if ( - request.method === 'eth_sendTransaction' || - request.method === 'eth_sign' || - request.method === 'eth_signTypedData_v4' || - request.method === 'personal_sign' + (request.method === 'eth_sendTransaction' && !bypassTransactionAuth) || + (request.method === 'eth_sign' && !bypassSignatureAuth) || + (request.method === 'eth_signTypedData_v4' && !bypassSignatureAuth) || + (request.method === 'personal_sign' && !bypassSignatureAuth) ) { const { addPendingRequest, removePendingRequest } = pendingRequestsStore.getState() @@ -136,14 +143,10 @@ export function setupRpcHandler({ messenger }: { messenger: Messenger }) { } if (isInpage && request.method === 'eth_requestAccounts') { - const { addPendingRequest, removePendingRequest } = - pendingRequestsStore.getState() - - const { addSession, instantAuth } = sessionsStore.getState() - const authorize = () => { const { accountsForRpcUrl } = accountStore.getState() const { network } = networkStore.getState() + const { addSession } = sessionsStore.getState() const accounts = accountsForRpcUrl({ activeFirst: true, @@ -165,7 +168,11 @@ export function setupRpcHandler({ messenger }: { messenger: Messenger }) { } as RpcResponse } - if (instantAuth) return authorize() + const { bypassConnectAuth } = settingsStore.getState() + if (bypassConnectAuth) return authorize() + + const { addPendingRequest, removePendingRequest } = + pendingRequestsStore.getState() addPendingRequest({ ...request, sender: meta.sender }) diff --git a/src/messengers/schema.ts b/src/messengers/schema.ts index 9537ef6..fed3cb2 100644 --- a/src/messengers/schema.ts +++ b/src/messengers/schema.ts @@ -38,4 +38,5 @@ export type Schema = { | undefined, response: void, ] + transactionExecuted: [payload: void, response: void] } diff --git a/src/screens/index.tsx b/src/screens/index.tsx index cf19ec3..6f7f015 100644 --- a/src/screens/index.tsx +++ b/src/screens/index.tsx @@ -63,13 +63,15 @@ import type { Account } from '~/zustand/account' import OnboardingStart from './onboarding/start' export default function Index() { + const defaultTab = 'accounts' + const { setPosition } = useScrollPositionStore() - const [params, setParams] = useSearchParams({ tab: 'accounts' }) + const [params, setParams] = useSearchParams({ tab: defaultTab }) const { onboarded } = useNetworkStore() if (!onboarded) return return ( - + contract.visible) const VirtualList = useVirtualList({ - // rome-ignore lint/nursery/useExhaustiveDependencies: layout: useMemo( () => [ { size: 40, sticky: true, type: 'search' }, @@ -837,7 +838,7 @@ function Contracts() { }) as const, ), ], - [contracts.length], + [contracts], ), }) @@ -911,9 +912,15 @@ function Contracts() { > - - {contract.address} - + {contract.address !== '0x' ? ( + + {contract.address} + + ) : ( + + Deploying... + + )} { // Serialize the transaction request into RPC format (hex). const txRequest = formatTransactionRequest(request) @@ -151,11 +143,6 @@ function SendTransactionRequest(args: { request: { ...args.request, params: params as any }, status: 'approved', }) - - // Invalidate resources that depend on pending transactions. - queryClient.invalidateQueries(pendingBlockQueryOptions) - queryClient.invalidateQueries(pendingTransactionsQueryOptions) - queryClient.invalidateQueries(txpoolQueryOptions) } const handleReject = async () => { diff --git a/src/screens/session.tsx b/src/screens/session.tsx index 2db6218..a060517 100644 --- a/src/screens/session.tsx +++ b/src/screens/session.tsx @@ -1,15 +1,7 @@ import { Fragment } from 'react' import { connect, disconnect } from '~/actions' import { Container, LabelledContent } from '~/components' -import { - Box, - Button, - Inline, - Inset, - Separator, - Stack, - Text, -} from '~/design-system' +import { Box, Button, Inline, Separator, Stack, Text } from '~/design-system' import { useHost } from '~/hooks/useHost' import { getMessenger } from '~/messengers' import { useSessionsStore } from '~/zustand' @@ -18,8 +10,7 @@ const inpageMessenger = getMessenger('wallet:inpage') export default function Session() { const { data: host } = useHost() - const { getSession, sessions, instantAuth, setInstantAuth } = - useSessionsStore() + const { getSession, sessions } = useSessionsStore() const isConnected = Boolean(host && getSession({ host })) return ( @@ -47,33 +38,6 @@ export default function Session() { )} - - - - - - - Enable Instant Authorization - - {/** TODO: component */} - { - setInstantAuth(e.target.checked) - }} - type="checkbox" - /> - - - - - diff --git a/src/screens/settings.tsx b/src/screens/settings.tsx new file mode 100644 index 0000000..d02b379 --- /dev/null +++ b/src/screens/settings.tsx @@ -0,0 +1,83 @@ +import { Container } from '~/components' +import { Box, Inline, Inset, Stack, Text } from '~/design-system' +import { useSettingsStore } from '~/zustand' + +export default function Settings() { + const { + bypassConnectAuth, + bypassSignatureAuth, + bypassTransactionAuth, + setBypassConnectAuth, + setBypassSignatureAuth, + setBypassTransactionAuth, + } = useSettingsStore() + + return ( + + + Cheats + + + + + Bypass Connect Authorization + + {/** TODO: component */} + { + setBypassConnectAuth(e.target.checked) + }} + type="checkbox" + /> + + + + Bypass Signature Authorization + + {/** TODO: component */} + { + setBypassSignatureAuth(e.target.checked) + }} + type="checkbox" + /> + + + + Bypass Transaction Authorization + + {/** TODO: component */} + { + setBypassTransactionAuth(e.target.checked) + }} + type="checkbox" + /> + + + + + + ) +} diff --git a/src/zustand/contracts.ts b/src/zustand/contracts.ts index 1b36504..e1549c6 100644 --- a/src/zustand/contracts.ts +++ b/src/zustand/contracts.ts @@ -173,6 +173,10 @@ export const contractsStore = createStore( ] } + contracts[serializedKey] = contracts[serializedKey]?.filter( + (c) => c.address !== '0x', + ) + return { ...state, contracts, diff --git a/src/zustand/index.ts b/src/zustand/index.ts index 29def28..d3374cb 100644 --- a/src/zustand/index.ts +++ b/src/zustand/index.ts @@ -46,6 +46,14 @@ export { useSessionsStore, } from './sessions' +export { + type SettingsActions, + type SettingsState, + type SettingsStore, + settingsStore, + useSettingsStore, +} from './settings' + export { type TokensActions, type TokensState, diff --git a/src/zustand/sessions.ts b/src/zustand/sessions.ts index c015866..1563b7a 100644 --- a/src/zustand/sessions.ts +++ b/src/zustand/sessions.ts @@ -6,20 +6,17 @@ type Host = string type Session = { host: Host; autoApprove?: boolean } export type SessionsState = { - instantAuth: boolean sessions: Session[] } export type SessionsActions = { addSession: ({ session }: { session: Session }) => void getSession: ({ host }: { host: Host }) => Session | undefined removeSession: ({ host }: { host: Host }) => void - setInstantAuth: (value: boolean) => void } export type SessionsStore = SessionsState & SessionsActions export const sessionsStore = createStore( (set, get) => ({ - instantAuth: true, sessions: [], addSession({ session }) { if (get().sessions.find((s) => s.host === session.host)) return @@ -42,9 +39,6 @@ export const sessionsStore = createStore( } }) }, - setInstantAuth(value) { - set({ instantAuth: value }) - }, }), { persist: { diff --git a/src/zustand/settings.ts b/src/zustand/settings.ts new file mode 100644 index 0000000..3e56a8f --- /dev/null +++ b/src/zustand/settings.ts @@ -0,0 +1,43 @@ +import { useSyncExternalStoreWithTracked } from '~/hooks/useSyncExternalStoreWithTracked' +import { createStore } from './utils' + +export type SettingsState = { + bypassConnectAuth?: boolean + bypassSignatureAuth?: boolean + bypassTransactionAuth?: boolean +} +export type SettingsActions = { + setBypassConnectAuth: (value?: boolean) => void + setBypassSignatureAuth: (value?: boolean) => void + setBypassTransactionAuth: (value?: boolean) => void +} +export type SettingsStore = SettingsState & SettingsActions + +export const settingsStore = createStore( + (set) => ({ + bypassConnectAuth: false, + bypassSignatureAuth: false, + bypassTransactionAuth: false, + setBypassConnectAuth(value) { + set({ bypassConnectAuth: value }) + }, + setBypassSignatureAuth(value) { + set({ bypassSignatureAuth: value }) + }, + setBypassTransactionAuth(value) { + set({ bypassTransactionAuth: value }) + }, + }), + { + persist: { + name: 'settings', + version: 0, + }, + }, +) + +export const useSettingsStore = () => + useSyncExternalStoreWithTracked( + settingsStore.subscribe, + settingsStore.getState, + ) diff --git a/test/dapp/App.tsx b/test/dapp/App.tsx index 729111b..29a0f1d 100644 --- a/test/dapp/App.tsx +++ b/test/dapp/App.tsx @@ -64,6 +64,7 @@ export default function App() { () => createClient({ transport: custom(provider), + pollingInterval: 100, }) .extend(publicActions) .extend(walletActions) as unknown as Client, @@ -555,7 +556,7 @@ function ContractPlayground() { account: address, chain: null, }) - const transaction = await client.getTransactionReceipt({ hash }) + const transaction = await client.waitForTransactionReceipt({ hash }) setDeployedAddress(transaction.contractAddress) } @@ -617,7 +618,7 @@ function ContractMockERC20() { chain: null, args: ['MockERC20', 'M20', 18], }) - const transaction = await client.getTransactionReceipt({ hash }) + const transaction = await client.waitForTransactionReceipt({ hash }) setDeployedAddress(transaction.contractAddress) } @@ -663,7 +664,7 @@ function ContractMockERC721() { chain: null, args: ['MockERC721', 'M721'], }) - const transaction = await client.getTransactionReceipt({ hash }) + const transaction = await client.waitForTransactionReceipt({ hash }) setDeployedAddress(transaction.contractAddress) }