change(ui): dashboard redesign

This commit is contained in:
Shekar Siri 2024-06-25 16:50:49 +02:00
parent 403b28f2d9
commit 3bfdc0e574
170 changed files with 8082 additions and 1188 deletions

View file

@ -1,10 +1,10 @@
import React from 'react'
import { Table } from '../../common';
import { List } from 'immutable';
import { filtersMap } from 'Types/filter/newFilter';
import { NoContent, Icon } from 'UI';
import { tableColumnName } from 'App/constants/filterOptions';
import { numberWithCommas } from 'App/utils';
import {Table} from '../../common';
import {List} from 'immutable';
import {filtersMap} from 'Types/filter/newFilter';
import {NoContent, Icon} from 'UI';
import {tableColumnName} from 'App/constants/filterOptions';
import {numberWithCommas} from 'App/utils';
const getColumns = (metric) => {
return [
@ -13,6 +13,7 @@ const getColumns = (metric) => {
title: tableColumnName[metric.metricOf],
toText: name => name || 'Unidentified',
width: '70%',
icon: true,
},
{
key: 'sessionCount',
@ -29,13 +30,14 @@ interface Props {
onClick?: (filters: any) => void;
isTemplate?: boolean;
}
function CustomMetricTable(props: Props) {
const { metric = {}, data = { values: [] }, onClick = () => null, isTemplate } = props;
const {metric = {}, data = {values: []}, onClick = () => null, isTemplate} = props;
const rows = List(data.values);
const onClickHandler = (event: any, data: any) => {
const filters = Array<any>();
let filter = { ...filtersMap[metric.metricOf] }
let filter = {...filtersMap[metric.metricOf]}
filter.value = [data.name]
filter.type = filter.key
delete filter.key
@ -49,14 +51,14 @@ function CustomMetricTable(props: Props) {
onClick(filters);
}
return (
<div className="" style={{ height: 240 }}>
<div className="" style={{height: 240}}>
<NoContent
style={{ minHeight: 220 }}
style={{minHeight: 220}}
show={data.values && data.values.length === 0}
size="small"
title={
<div className="flex items-center">
<Icon name="info-circle" className="mr-2" size="18" />
<Icon name="info-circle" className="mr-2" size="18"/>
No data for the selected time period
</div>
}

View file

@ -0,0 +1,96 @@
import React from 'react';
import {List, Typography} from 'antd';
import {filtersMap} from 'Types/filter/newFilter';
import {Icon} from 'UI';
import {Progress, Empty} from 'antd';
import cn from "classnames";
interface Props {
metric?: any;
data: any;
onClick?: (filters: any) => void;
isTemplate?: boolean;
}
function SessionsBy(props: Props) {
const {metric = {}, data = {values: []}, onClick = () => null, isTemplate} = props;
const [selected, setSelected] = React.useState<any>(null);
const onClickHandler = (event: any, data: any) => {
const filters = Array<any>();
let filter = {...filtersMap[metric.metricOf]};
filter.value = [data.name];
filter.type = filter.key;
delete filter.key;
delete filter.operatorOptions;
delete filter.category;
delete filter.icon;
delete filter.label;
delete filter.options;
setSelected(data.name)
filters.push(filter);
onClick(filters);
}
return (
<div style={{height: 240, overflowY: 'scroll', margin: '0 -16px', padding: '0 16px'}}>
{data.values && data.values.length === 0 ? (
<Empty
style={{minHeight: 220}}
className="flex flex-col items-center justify-center"
imageStyle={{height: 60}}
description={
<div className="flex items-center justify-center">
<Icon name="info-circle" className="mr-2" size="18"/>
No data for the selected time period
</div>
}
/>
) : (
<List
dataSource={data.values}
split={false}
renderItem={(row: any) => (
<List.Item
key={row.name}
onClick={(e) => onClickHandler(e, row)}
// actions={[row.sessionCount]}
style={{borderBottom: '1px dotted rgba(0, 0, 0, 0.05)', padding: '6px 0'}}
className={cn('hover:bg-active-blue cursor-pointer', selected === row.name ? 'bg-gray-100' : '')}
>
<List.Item.Meta
avatar={row.icon ? row.icon : null}
title={(
<div className="flex justify-between">
<Typography.Text strong>{row.name}</Typography.Text>
<Typography.Text type="secondary"> {row.sessionCount}</Typography.Text>
</div>
)}
description={
<Progress
percent={row.progress}
showInfo={false}
strokeColor={{
'0%': '#394EFF',
'100%': '#394EFF',
}}
size={['small', 2]}
style={{
padding: '0 0px',
margin: '0 0px',
}}
/>
}
/>
{/*<div className="min-w-8">{row.value}</div>*/}
</List.Item>
)}
/>
)}
</div>
);
}
export default SessionsBy;

View file

@ -14,7 +14,7 @@ function AddCardSelectionModal(props: Props) {
const onCloseModal = () => {
setOpen(false);
// props.onClose && props.onClose();
props.onClose && props.onClose();
}
const onClick = (isLibrary: boolean) => {
@ -22,6 +22,7 @@ function AddCardSelectionModal(props: Props) {
setOpen(true);
}
return (
<>
<Modal
title="Add card to dashboard"
open={props.open}
@ -47,9 +48,9 @@ function AddCardSelectionModal(props: Props) {
</Card>
</Col>
</Row>
{open && <NewDashboardModal open={true} onClose={onCloseModal} isAddingFromLibrary={isLibrary}/>}
</Modal>
<NewDashboardModal open={open} onClose={onCloseModal} isAddingFromLibrary={isLibrary}/>
</>
);
}

View file

@ -0,0 +1,33 @@
import React from 'react';
import DashboardSelectionModal from "Components/Dashboard/components/DashboardSelectionModal/DashboardSelectionModal";
import {Grid2x2Check} from "lucide-react"
import {Button} from "antd";
interface Props {
metricId: string;
}
function AddToDashboardButton({metricId}: Props) {
const [show, setShow] = React.useState(false);
return (
<>
<Button
type="default"
// className="ml-2 p-0"
onClick={() => setShow(true)}
icon={<Grid2x2Check size={18}/>}
>
Add to Dashboard
</Button>
{show && (
<DashboardSelectionModal
metricId={metricId}
show={show}
closeHandler={() => setShow(false)}
/>
)}
</>
);
}
export default AddToDashboardButton;

View file

@ -0,0 +1,31 @@
import React from "react";
import {Button, Tooltip} from "UI";
import AddCardSelectionModal from "Components/Dashboard/components/AddCardSelectionModal";
import {useStore} from "App/mstore";
const MAX_CARDS = 29;
function CreateCardButton() {
const [open, setOpen] = React.useState(false);
const {dashboardStore} = useStore();
const dashboard: any = dashboardStore.selectedDashboard;
const canAddMore: boolean = dashboard?.widgets?.length <= MAX_CARDS;
return <>
<Tooltip delay={0} disabled={canAddMore}
title="The number of cards in one dashboard is limited to 30.">
<Button
disabled={!canAddMore}
variant="primary"
onClick={() => setOpen(true)}
icon="plus"
iconSize={24}
>
Add Card
</Button>
</Tooltip>
<AddCardSelectionModal open={open} onClose={() => setOpen(false)}/>
</>;
}
export default CreateCardButton;

View file

@ -0,0 +1,25 @@
import React from "react";
import {PlusOutlined} from "@ant-design/icons";
import NewDashboardModal from "Components/Dashboard/components/DashboardList/NewDashModal";
import {Button} from "antd";
interface Props {
disabled?: boolean;
}
function CreateDashboardButton({disabled = false}: Props) {
const [showModal, setShowModal] = React.useState(false);
return <>
<Button
icon={<PlusOutlined/>}
type="primary"
onClick={() => setShowModal(true)}
>
Create Dashboard
</Button>
<NewDashboardModal onClose={() => setShowModal(false)} open={showModal}/>
</>;
}
export default CreateDashboardButton;

View file

@ -10,8 +10,9 @@ import DashboardOptions from '../DashboardOptions';
import withModal from 'App/components/Modal/withModal';
import {observer} from 'mobx-react-lite';
import DashboardEditModal from '../DashboardEditModal';
import AddCardModal from '../AddCardModal';
import AddCardSelectionModal from "Components/Dashboard/components/AddCardSelectionModal";
import CreateDashboardButton from "Components/Dashboard/components/CreateDashboardButton";
import CreateCard from "Components/Dashboard/components/DashboardList/NewDashModal/CreateCard";
import CreateCardButton from "Components/Dashboard/components/CreateCardButton";
interface IProps {
dashboardId: string;
@ -22,27 +23,6 @@ interface IProps {
type Props = IProps & RouteComponentProps;
const MAX_CARDS = 29;
function AddCard(props: { disabled: boolean }) {
const [open, setOpen] = React.useState(false);
// showModal(<AddCardModal dashboardId={dashboardId} siteId={siteId}/>, {right: true})
return <>
<Tooltip delay={0} disabled={props.disabled}
title="The number of cards in one dashboard is limited to 30.">
<Button
disabled={!props.disabled}
variant="primary"
onClick={() => setOpen(true)}
icon="plus"
iconSize={24}
>
Add Card
</Button>
</Tooltip>
<AddCardSelectionModal open={open} onClose={() => setOpen(false)}/>
</>;
}
function DashboardHeader(props: Props) {
const {siteId, dashboardId} = props;
const {dashboardStore} = useStore();
@ -103,7 +83,7 @@ function DashboardHeader(props: Props) {
/>
</div>
<div className="flex items-center" style={{flex: 1, justifyContent: 'end'}}>
<AddCard disabled={canAddMore}/>
<CreateCardButton disabled={canAddMore} />
<div className="mx-4"></div>
<div
className="flex items-center flex-shrink-0 justify-end"

View file

@ -1,22 +1,24 @@
import { LockOutlined, TeamOutlined } from '@ant-design/icons';
import { Switch, Table, TableColumnsType, Tag, Tooltip } from 'antd';
import { observer } from 'mobx-react-lite';
import {LockOutlined, TeamOutlined} from '@ant-design/icons';
import {Empty, Switch, Table, TableColumnsType, Tag, Tooltip, Typography} from 'antd';
import {observer} from 'mobx-react-lite';
import React from 'react';
import { connect } from 'react-redux';
import { withRouter } from 'react-router-dom';
import {connect} from 'react-redux';
import {withRouter} from 'react-router-dom';
import { checkForRecent } from 'App/date';
import { useStore } from 'App/mstore';
import {checkForRecent} from 'App/date';
import {useStore} from 'App/mstore';
import Dashboard from 'App/mstore/types/dashboard';
import { dashboardSelected, withSiteId } from 'App/routes';
import { NoContent } from 'UI';
import {dashboardSelected, withSiteId} from 'App/routes';
import AnimatedSVG, { ICONS } from 'Shared/AnimatedSVG/AnimatedSVG';
import AnimatedSVG, {ICONS} from 'Shared/AnimatedSVG/AnimatedSVG';
import CreateDashboardButton from "Components/Dashboard/components/CreateDashboardButton";
import {useHistory} from "react-router";
function DashboardList({ history, siteId }: { history: any; siteId: string }) {
const { dashboardStore } = useStore();
function DashboardList({siteId}: { siteId: string }) {
const {dashboardStore} = useStore();
const list = dashboardStore.filteredList;
const dashboardsSearch = dashboardStore.filter.query;
const history = useHistory();
const tableConfig: TableColumnsType<Dashboard> = [
@ -57,33 +59,35 @@ function DashboardList({ history, siteId }: { history: any; siteId: string }) {
dashboardStore.updateKey('filter', {
...dashboardStore.filter,
showMine: !dashboardStore.filter.showMine,
})} checkedChildren={'Public'} unCheckedChildren={'Private'} />
})} checkedChildren={'Public'} unCheckedChildren={'Private'}/>
</div>
),
width: '16.67%',
dataIndex: 'isPublic',
render: (isPublic: boolean) => (
<Tag icon={isPublic ? <TeamOutlined /> : <LockOutlined />}>
<Tag icon={isPublic ? <TeamOutlined/> : <LockOutlined/>}>
{isPublic ? 'Team' : 'Private'}
</Tag>
),
},
];
return (
<NoContent
show={list.length === 0 && !dashboardStore.filter.showMine}
title={
<div className="flex flex-col items-center justify-center">
<AnimatedSVG name={ICONS.NO_DASHBOARDS} size={180} />
<div className="text-center mt-4">
list.length === 0 && !dashboardStore.filter.showMine ? (
<Empty
image={<AnimatedSVG name={ICONS.NO_DASHBOARDS} size={400}/>}
imageStyle={{height: 300}}
description={(
<div className="text-center">
{dashboardsSearch !== ''
? 'No matching results'
: "You haven't created any dashboards yet"}
</div>
</div>
}
subtext={
? <Typography.Text className="my-2 text-lg">
No matching results
</Typography.Text>
: (
<div>
<Typography.Text className="mb-2 text-lg">
You haven't created any dashboards yet
</Typography.Text>
<div className="text-sm text-gray-500 mt-2">
A Dashboard is a collection of{' '}
<Tooltip
title={
@ -98,8 +102,16 @@ function DashboardList({ history, siteId }: { history: any; siteId: string }) {
</Tooltip>{' '}
that can be shared across teams.
</div>
}
>
<div className="my-4">
<CreateDashboardButton/>
</div>
</div>
)}
</div>
)}
/>
) : (
<Table
dataSource={list}
columns={tableConfig}
@ -118,11 +130,10 @@ function DashboardList({ history, siteId }: { history: any; siteId: string }) {
history.push(path);
},
})}
/>
</NoContent>
/>)
);
}
export default connect((state: any) => ({
siteId: state.getIn(['site', 'siteId']),
}))(withRouter(observer(DashboardList)));
}))(observer(DashboardList));

View file

@ -3,11 +3,11 @@ import withPageTitle from 'HOCs/withPageTitle';
import DashboardList from './DashboardList';
import Header from './Header';
function DashboardsView({ history, siteId }: { history: any; siteId: string }) {
function DashboardsView({history, siteId}: { history: any; siteId: string }) {
return (
<div style={{ maxWidth: '1360px', margin: 'auto' }} className="bg-white rounded py-4 border">
<Header history={history} siteId={siteId} />
<DashboardList />
<div style={{maxWidth: '1360px', margin: 'auto'}} className="bg-white rounded py-4 border">
<Header />
<DashboardList/>
</div>
);
}

View file

@ -1,24 +1,11 @@
import {PlusOutlined} from '@ant-design/icons';
import {Button} from 'antd';
import {observer} from 'mobx-react-lite';
import React from 'react';
import {PageTitle} from 'UI';
import DashboardSearch from './DashboardSearch';
import NewDashboardModal from './NewDashModal';
import CreateDashboardButton from "Components/Dashboard/components/CreateDashboardButton";
function Header() {
const [showModal, setShowModal] = React.useState(true);
const onAddDashboardClick = () => {
setShowModal(true);
};
const onClose = () => {
setShowModal(false);
};
return (
<>
<div className="flex items-center justify-between px-4 pb-2">
@ -26,22 +13,15 @@ function Header() {
<PageTitle title="Dashboards"/>
</div>
<div className="ml-auto flex items-center">
<Button
icon={<PlusOutlined/>}
type="primary"
onClick={onAddDashboardClick}
>
Create Dashboard
</Button>
<CreateDashboardButton/>
<div className="mx-2"></div>
<div className="w-1/4" style={{minWidth: 300}}>
<DashboardSearch/>
</div>
</div>
</div>
<NewDashboardModal onClose={onClose} open={showModal}/>
</>
);
}
export default observer(Header);
export default Header;

View file

@ -23,11 +23,11 @@ function CardsLibrary(props: Props) {
const {selectedList} = props;
const {metricStore, dashboardStore} = useStore();
const cards = useMemo(() => {
return metricStore.filteredCards.filter((card: any) => {
return CARD_TYPES_MAP[props.category || 'default'].includes(card.metricType);
});
}, [metricStore.filteredCards, props.category]);
// const cards = useMemo(() => {
// return metricStore.filteredCards.filter((card: any) => {
// return CARD_TYPES_MAP[props.category || 'default'].includes(card.metricType);
// });
// }, [metricStore.filteredCards, props.category]);
useEffect(() => {
metricStore.fetchList();
@ -40,7 +40,7 @@ function CardsLibrary(props: Props) {
return (
<Loader loading={metricStore.isLoading}>
<div className="grid grid-cols-4 gap-4 items-start">
{cards.map((metric: any) => (
{metricStore.filteredCards.map((metric: any) => (
<React.Fragment key={metric.metricId}>
<div className={'col-span-' + metric.config.col}
onClick={() => onItemClick(metric.metricId)}>

View file

@ -7,7 +7,6 @@ import {useStore} from "App/mstore";
import {CLICKMAP} from "App/constants/card";
import {renderClickmapThumbnail} from "Components/Dashboard/components/WidgetForm/renderMap";
import WidgetPreview from "Components/Dashboard/components/WidgetPreview/WidgetPreview";
import {number} from "Player/player/localStorage";
const getTitleByType = (type: string) => {
switch (type) {
@ -28,7 +27,8 @@ function CreateCard(props: Props) {
const {metricStore, dashboardStore, aiFiltersStore} = useStore();
const metric = metricStore.instance;
const siteId: string = history.location.pathname.split('/')[1];
const dashboardId: string = history.location.pathname.split('/')[4];
const dashboardId: string = history.location.pathname.split('/')[3];
const isItDashboard = history.location.pathname.includes('dashboard')
// const title = getTitleByType(metric.metricType)
const createNewDashboard = async () => {
@ -48,8 +48,8 @@ function CreateCard(props: Props) {
}
const createCard = async () => {
const isClickmap = metric.metricType === CLICKMAP;
if (isClickmap) {
const isClickMap = metric.metricType === CLICKMAP;
if (isClickMap) {
try {
metric.thumbnail = await renderClickmapThumbnail();
} catch (e) {
@ -62,11 +62,18 @@ function CreateCard(props: Props) {
}
const createDashboardAndAddCard = async () => {
const dashboardId = await createNewDashboard();
const cardId = await createCard();
await addCardToDashboard(dashboardId, cardId);
if (dashboardId) {
await addCardToDashboard(dashboardId, cardId);
dashboardStore.fetch(dashboardId);
} else if (isItDashboard) {
const dashboardId = await createNewDashboard();
await addCardToDashboard(dashboardId, cardId);
history.replace(`${history.location.pathname}/${dashboardId}`);
} else {
history.replace(`${history.location.pathname}/${cardId}`);
}
}
return (

View file

@ -1,7 +1,7 @@
import ExCard from '../ExCard'
import React from 'react'
function ByComponent({ title, rows, lineWidth, onCard, type }: {
function ByComponent({title, rows, lineWidth, onCard, type}: {
title: string
rows: {
label: string
@ -29,7 +29,7 @@ function ByComponent({ title, rows, lineWidth, onCard, type }: {
<div>{r.icon}</div>
<div>{r.label}</div>
<div
style={{ marginLeft: 'auto', marginRight: 20, display: 'flex' }}
style={{marginLeft: 'auto', marginRight: 20, display: 'flex'}}
>
<div
style={{

View file

@ -34,7 +34,7 @@ const NewDashboardModal: React.FC<NewDashboardModalProps> = ({
<div>
<div className="flex flex-col gap-4">
{step === 0 && <SelectCard onClose={onClose} onCard={onCard} isLibrary={isAddingFromLibrary}/>}
{step === 1 && <CreateCard onBack={() => setStep(0)}/>}
{step === 1 && <CreateCard onBack={() => setStep(0)} />}
</div>
</div>
</Modal>

View file

@ -6,16 +6,17 @@ import Option from './Option';
import CardsLibrary from "Components/Dashboard/components/DashboardList/NewDashModal/CardsLibrary";
interface SelectCardProps {
onClose: () => void;
onClose: (refresh?: boolean) => void;
onCard: () => void;
isLibrary?: boolean;
}
const SelectCard: React.FC<SelectCardProps> = ({onCard, isLibrary = false}) => {
const SelectCard: React.FC<SelectCardProps> = (props: SelectCardProps) => {
const {onCard, isLibrary = false} = props;
const [selected, setSelected] = React.useState<string>('product-analytics');
const [selectedCards, setSelectedCards] = React.useState<number[]>([]);
const {metricStore, dashboardStore} = useStore();
const dashboardId = window.location.pathname.split('/')[4];
const dashboardId = window.location.pathname.split('/')[3];
const handleCardSelection = (card: string) => {
@ -45,14 +46,17 @@ const SelectCard: React.FC<SelectCardProps> = ({onCard, isLibrary = false}) => {
}
const onAddSelected = () => {
console.log(selectedCards);
dashboardStore.addWidgetToDashboard(dashboardId, selectedCards);
const dashboard = dashboardStore.getDashboard(dashboardId);
dashboardStore.addWidgetToDashboard(dashboard!, selectedCards).finally(() => {
dashboardStore.fetch(dashboardId);
props.onClose(true);
});
}
return (
<>
<Header selectedCount={selectedCards.length} onAdd={onAddSelected}/>
<CategorySelector setSelected={setSelected}/>
{!isLibrary && <CategorySelector setSelected={setSelected}/>}
{isLibrary ? <CardsLibrary selectedList={selectedCards} category={selected} onCard={onCardClick}/> :
<ExampleCardsGrid items={cardItems}/>}
</>

View file

@ -5,6 +5,7 @@ import { NoContent, Loader, Icon } from 'UI';
import { useObserver } from 'mobx-react-lite';
import Widget from 'App/mstore/types/widget';
import MetricTypeList from '../MetricTypeList';
import WidgetWrapperNew from "Components/Dashboard/components/WidgetWrapper/WidgetWrapperNew";
interface Props {
siteId: string;
@ -63,7 +64,7 @@ function DashboardWidgetGrid(props: Props) {
{smallWidgets &&
smallWidgets.map((item: any, index: any) => (
<React.Fragment key={item.widgetId}>
<WidgetWrapper
<WidgetWrapperNew
index={index}
widget={item}
moveListItem={(dragIndex: any, hoverIndex: any) =>
@ -90,7 +91,7 @@ function DashboardWidgetGrid(props: Props) {
{regularWidgets &&
regularWidgets.map((item: any, index: any) => (
<React.Fragment key={item.widgetId}>
<WidgetWrapper
<WidgetWrapperNew
index={smallWidgetsLen + index}
widget={item}
moveListItem={(dragIndex: any, hoverIndex: any) =>

View file

@ -0,0 +1,33 @@
import React from 'react';
import FilterSelection from "Shared/Filters/FilterSelection/FilterSelection";
import {PlusIcon} from "lucide-react";
import {Button} from "antd";
import {useStore} from "App/mstore";
interface Props {
series: any;
excludeFilterKeys: Array<string>;
}
function AddStepButton({series, excludeFilterKeys}: Props) {
const {metricStore} = useStore();
const metric: any = metricStore.instance;
const onAddFilter = (filter: any) => {
series.filter.addFilter(filter);
metric.updateKey('hasChanged', true)
}
return (
<FilterSelection
filter={undefined}
onFilterClick={onAddFilter}
excludeFilterKeys={excludeFilterKeys}
>
<Button type="link" icon={<PlusIcon size={16}/>} size="small">
ADD STEP
</Button>
</FilterSelection>
);
}
export default AddStepButton;

View file

@ -1,11 +1,13 @@
import React, { useState } from 'react';
import React, {useState} from 'react';
import FilterList from 'Shared/Filters/FilterList';
import { Button, Icon } from 'UI';
import FilterSelection from 'Shared/Filters/FilterSelection';
import {Icon} from 'UI';
import SeriesName from './SeriesName';
import cn from 'classnames';
import { observer } from 'mobx-react-lite';
import {observer} from 'mobx-react-lite';
import ExcludeFilters from './ExcludeFilters';
import AddStepButton from "Components/Dashboard/components/FilterSeries/AddStepButton";
import {Button, Space} from "antd";
import {ChevronDown, ChevronUp, Trash} from "lucide-react";
interface Props {
seriesIndex: number;
@ -20,9 +22,64 @@ interface Props {
canExclude?: boolean;
}
const FilterSeriesHeader = observer((props: {
expanded: boolean,
hidden: boolean,
seriesIndex: number,
series: any,
onRemove: (seriesIndex: any) => void,
canDelete: boolean | undefined,
toggleExpand: () => void
}) => {
const events = props.series.filter.filters.filter((i: any) => i && i.isEvent).length;
const filters = props.series.filter.filters.filter((i: any) => i && !i.isEvent).length;
const onUpdate = (name: any) => {
props.series.update('name', name)
}
return <div className={cn("border-b px-5 h-12 flex items-center relative", {hidden: props.hidden})}>
<Space className="mr-auto" size={30}>
<SeriesName
seriesIndex={props.seriesIndex}
name={props.series.name}
onUpdate={onUpdate}
/>
{!props.expanded && (
<Space>
{events > 0 && (
<Button type="primary" ghost size="small" onClick={props.toggleExpand}>
{`${events} Event${events > 1 ? 's' : ''}`}
</Button>
)}
{filters > 0 && (
<Button type="primary" ghost size="small" onClick={props.toggleExpand}>
{`${filters} Filter${filters > 1 ? 's' : ''}`}
</Button>
)}
</Space>
)}
{/*{events === 0 && filters === 0 && !props.expanded && (*/}
{/* <AddStepButton series={props.series} excludeFilterKeys={[]}/>*/}
{/*)}*/}
</Space>
<Space>
<Button onClick={props.onRemove}
size="small"
disabled={!props.canDelete}
icon={<Trash size={16}/>}/>
<Button onClick={props.toggleExpand}
size="small"
icon={props.expanded ? <ChevronUp size={16}/> : <ChevronDown size={16}/>}/>
</Space>
</div>;
})
function FilterSeries(props: Props) {
const {
observeChanges = () => {},
observeChanges = () => {
},
canDelete,
hideHeader = false,
emptyMessage = 'Add user event or filter to define the series by clicking Add Step.',
@ -31,12 +88,7 @@ function FilterSeries(props: Props) {
canExclude = false,
} = props;
const [expanded, setExpanded] = useState(true);
const { series, seriesIndex } = props;
const onAddFilter = (filter: any) => {
series.filter.addFilter(filter);
observeChanges();
};
const {series, seriesIndex} = props;
const onUpdateFilter = (filterIndex: any, filter: any) => {
series.filter.updateFilter(filterIndex, filter);
@ -48,7 +100,7 @@ function FilterSeries(props: Props) {
observeChanges();
}
const onChangeEventsOrder = (_: any, { name, value }: any) => {
const onChangeEventsOrder = (_: any, {name, value}: any) => {
series.filter.updateKey(name, value);
observeChanges();
};
@ -60,26 +112,18 @@ function FilterSeries(props: Props) {
return (
<div className="border rounded bg-white">
{canExclude && <ExcludeFilters filter={series.filter} />}
<div className={cn('border-b px-5 h-12 flex items-center relative', { hidden: hideHeader })}>
<div className="mr-auto">
<SeriesName
{canExclude && <ExcludeFilters filter={series.filter}/>}
{!hideHeader && (
<FilterSeriesHeader hidden={hideHeader}
seriesIndex={seriesIndex}
name={series.name}
onUpdate={(name) => series.update('name', name)}
/>
</div>
series={series}
onRemove={props.onRemoveSeries}
canDelete={canDelete}
expanded={expanded}
toggleExpand={() => setExpanded(!expanded)}/>
)}
<div className="flex items-center cursor-pointer">
<div onClick={props.onRemoveSeries} className={cn('ml-3', { disabled: !canDelete })}>
<Icon name="trash" size="16" />
</div>
<div onClick={() => setExpanded(!expanded)} className="ml-3">
<Icon name="chevron-down" size="16" />
</div>
</div>
</div>
{expanded && (
<>
<div className="p-5">
@ -99,15 +143,7 @@ function FilterSeries(props: Props) {
</div>
<div className="border-t h-12 flex items-center">
<div className="-mx-4 px-6">
<FilterSelection
filter={undefined}
onFilterClick={onAddFilter}
excludeFilterKeys={excludeFilterKeys}
>
<Button variant="text-primary" icon="plus">
ADD STEP
</Button>
</FilterSelection>
<AddStepButton excludeFilterKeys={excludeFilterKeys} series={series}/>
</div>
</div>
</>

View file

@ -33,6 +33,7 @@ import ClickMapCard from 'App/components/Dashboard/Widgets/CustomMetricsWidgets/
import InsightsCard from 'App/components/Dashboard/Widgets/CustomMetricsWidgets/InsightsCard';
import SankeyChart from 'Shared/Insights/SankeyChart';
import CohortCard from '../../Widgets/CustomMetricsWidgets/CohortCard';
import SessionsBy from "Components/Dashboard/Widgets/CustomMetricsWidgets/SessionsBy";
interface Props {
metric: any;
@ -96,6 +97,7 @@ function WidgetChart(props: Props) {
if (!isMounted()) return;
setLoading(true);
dashboardStore.fetchMetricChartData(metric, payload, isWidget, period).then((res: any) => {
console.log('res', res)
if (isMounted()) setData(res);
}).finally(() => {
setLoading(false);
@ -181,11 +183,17 @@ function WidgetChart(props: Props) {
}
if (viewType === TABLE) {
return (
<CustomMetricTable
metric={metric} data={data[0]}
<SessionsBy
metric={metric}
data={data[0]}
onClick={onChartClick}
isTemplate={isTemplate}
/>
// <CustomMetricTable
// metric={metric} data={data[0]}
// onClick={onChartClick}
// isTemplate={isTemplate}
// />
);
} else if (viewType === 'pieChart') {
return (

View file

@ -1,13 +1,13 @@
import React from 'react';
import SelectDateRange from 'Shared/SelectDateRange';
import { useStore } from 'App/mstore';
import { useObserver } from 'mobx-react-lite';
import {useStore} from 'App/mstore';
import {useObserver} from 'mobx-react-lite';
import {Space} from "antd";
interface Props {
}
function WidgetDateRange(props: Props) {
const { dashboardStore } = useStore();
function WidgetDateRange({
label = 'Time Range',
}: any) {
const {dashboardStore} = useStore();
const period = useObserver(() => dashboardStore.drillDownPeriod);
const drillDownFilter = useObserver(() => dashboardStore.drillDownFilter);
@ -21,15 +21,14 @@ function WidgetDateRange(props: Props) {
}
return (
<>
<span className="mr-1 color-gray-medium">Time Range</span>
<Space>
{label && <span className="mr-1 color-gray-medium">{label}</span>}
<SelectDateRange
period={period}
// onChange={(period: any) => metric.setPeriod(period)}
onChange={onChangePeriod}
right={true}
/>
</>
</Space>
);
}

View file

@ -1,12 +1,12 @@
import React, { useEffect, useState } from 'react';
import { metricOf, issueOptions, issueCategories } from 'App/constants/filterOptions';
import { FilterKey } from 'Types/filter/filterType';
import { useStore } from 'App/mstore';
import { observer } from 'mobx-react-lite';
import { Button, Icon, confirm, Tooltip } from 'UI';
import React, {useEffect, useState} from 'react';
import {metricOf, issueOptions, issueCategories} from 'App/constants/filterOptions';
import {FilterKey} from 'Types/filter/filterType';
import {useStore} from 'App/mstore';
import {observer} from 'mobx-react-lite';
import {Button, Icon, confirm, Tooltip} from 'UI';
import FilterSeries from '../FilterSeries';
import Select from 'Shared/Select';
import { withSiteId, dashboardMetricDetails, metricDetails } from 'App/routes';
import {withSiteId, dashboardMetricDetails, metricDetails} from 'App/routes';
import MetricTypeDropdown from './components/MetricTypeDropdown';
import MetricSubtypeDropdown from './components/MetricSubtypeDropdown';
import {
@ -22,28 +22,29 @@ import {
USER_PATH,
RETENTION
} from 'App/constants/card';
import { eventKeys } from 'App/types/filter/newFilter';
import { renderClickmapThumbnail } from './renderMap';
import {eventKeys} from 'App/types/filter/newFilter';
import {renderClickmapThumbnail} from './renderMap';
import Widget from 'App/mstore/types/widget';
import FilterItem from 'Shared/Filters/FilterItem';
import { Input } from 'antd'
import {Input} from 'antd'
interface Props {
history: any;
match: any;
onDelete: () => void;
expanded?: boolean;
}
function WidgetForm(props: Props) {
const {
history,
match: {
params: { siteId, dashboardId }
params: {siteId, dashboardId}
}
} = props;
const [aiQuery, setAiQuery] = useState('')
const [aiAskChart, setAiAskChart] = useState('')
const { metricStore, dashboardStore, aiFiltersStore } = useStore();
const {metricStore, dashboardStore, aiFiltersStore} = useStore();
const isSaving = metricStore.isSaving;
const metric: any = metricStore.instance;
const [initialInstance, setInitialInstance] = useState();
@ -72,9 +73,9 @@ function WidgetForm(props: Props) {
}
}, [metric]);
const writeOption = ({ value, name }: { value: any; name: any }) => {
const writeOption = ({value, name}: { value: any; name: any }) => {
value = Array.isArray(value) ? value : value.value;
const obj: any = { [name]: value };
const obj: any = {[name]: value};
if (name === 'metricType') {
switch (value) {
@ -158,11 +159,12 @@ function WidgetForm(props: Props) {
const testingKey = localStorage.getItem('__mauricio_testing_access') === 'true';
return (
<div className='p-6'>
{/*
<div className='form-group'>
<div className='flex items-center'>
<span className='mr-2'>Card showing</span>
<MetricTypeDropdown onSelect={writeOption} />
<MetricSubtypeDropdown onSelect={writeOption} />
<MetricTypeDropdown onSelect={writeOption}/>
<MetricSubtypeDropdown onSelect={writeOption}/>
{isPathAnalysis && (
<>
@ -170,8 +172,8 @@ function WidgetForm(props: Props) {
<Select
name='startType'
options={[
{ value: 'start', label: 'With Start Point' },
{ value: 'end', label: 'With End Point' }
{value: 'start', label: 'With Start Point'},
{value: 'end', label: 'With End Point'}
]}
defaultValue={metric.startType}
// value={metric.metricOf}
@ -183,10 +185,10 @@ function WidgetForm(props: Props) {
<Select
name='metricValue'
options={[
{ value: 'location', label: 'Pages' },
{ value: 'click', label: 'Clicks' },
{ value: 'input', label: 'Input' },
{ value: 'custom', label: 'Custom' },
{value: 'location', label: 'Pages'},
{value: 'click', label: 'Clicks'},
{value: 'input', label: 'Input'},
{value: 'custom', label: 'Custom'},
]}
defaultValue={metric.metricValue}
isMulti={true}
@ -231,7 +233,7 @@ function WidgetForm(props: Props) {
<span className='mx-3'>showing</span>
<Select
name='metricFormat'
options={[{ value: 'sessionCount', label: 'Session Count' }]}
options={[{value: 'sessionCount', label: 'Session Count'}]}
defaultValue={metric.metricFormat}
onChange={writeOption}
/>
@ -240,6 +242,9 @@ function WidgetForm(props: Props) {
</div>
</div>
*/}
{isPathAnalysis && (
<div className='form-group flex flex-col'>
{metric.startType === 'start' ? 'Start Point' : 'End Point'}
@ -251,13 +256,13 @@ function WidgetForm(props: Props) {
onUpdate={(val) => {
metric.updateStartPoint(val);
}} onRemoveFilter={() => {
}} />
}}/>
</div>
)}
{isPredefined && (
<div className='flex items-center my-6 justify-center'>
<Icon name='info-circle' size='18' color='gray-medium' />
<Icon name='info-circle' size='18' color='gray-medium'/>
<div className='ml-2'>
Filtering and drill-downs will be supported soon for this card type.
</div>
@ -349,7 +354,7 @@ function WidgetForm(props: Props) {
<div className='flex items-center'>
{metric.exists() && (
<Button variant='text-primary' onClick={onDelete}>
<Icon name='trash' size='14' className='mr-2' color='teal' />
<Icon name='trash' size='14' className='mr-2' color='teal'/>
Delete
</Button>
)}

View file

@ -0,0 +1,130 @@
import React from 'react';
import {Card, Space, Typography, Button} from "antd";
import {useStore} from "App/mstore";
import FilterSelection from "Shared/Filters/FilterSelection/FilterSelection";
import {eventKeys} from "Types/filter/newFilter";
import {CLICKMAP, FUNNEL, INSIGHTS, RETENTION, TABLE, USER_PATH} from "App/constants/card";
import FilterSeries from "Components/Dashboard/components/FilterSeries/FilterSeries";
import {metricOf} from "App/constants/filterOptions";
import {AudioWaveform, PlusIcon} from "lucide-react";
import {observer} from "mobx-react-lite";
import AddStepButton from "Components/Dashboard/components/FilterSeries/AddStepButton";
interface Props {
}
function WidgetFormNew(props: Props) {
const [expanded, setExpanded] = React.useState(true);
const {metricStore, dashboardStore, aiFiltersStore} = useStore();
const metric: any = metricStore.instance;
const eventsLength = metric.series[0].filter.filters.filter((i: any) => i && i.isEvent).length;
const filtersLength = metric.series[0].filter.filters.filter((i: any) => i && !i.isEvent).length;
const isClickmap = metric.metricType === CLICKMAP;
const isPathAnalysis = metric.metricType === USER_PATH;
const excludeFilterKeys = isClickmap || isPathAnalysis ? eventKeys : [];
const hasFilters = filtersLength > 0 || eventsLength > 0;
return (
<>
<Card
styles={{
body: {padding: '0'},
cover: {}
}}
>
{!hasFilters && (
<DefineSteps metric={metric} excludeFilterKeys={excludeFilterKeys}/>
)}
</Card>
{/*{eventsLength > 0 && !expanded && (*/}
{/*)}*/}
{hasFilters && expanded && (
<FilterSection metric={metric} excludeFilterKeys={excludeFilterKeys}/>
)}
</>
);
}
export default observer(WidgetFormNew);
function DefineSteps({metric, excludeFilterKeys}: any) {
return (
<Space className="px-4 py-2">
<Typography.Text strong>Define Steps</Typography.Text>
<AddStepButton excludeFilterKeys={excludeFilterKeys} series={metric.series[0]}/>
</Space>
);
}
const FilterSection = observer(({metric, excludeFilterKeys}: any) => {
// const timeseriesOptions = metricOf.filter((i) => i.type === 'timeseries');
// const tableOptions = metricOf.filter((i) => i.type === 'table');
const isTable = metric.metricType === TABLE;
const isClickMap = metric.metricType === CLICKMAP;
const isFunnel = metric.metricType === FUNNEL;
const isInsights = metric.metricType === INSIGHTS;
const isPathAnalysis = metric.metricType === USER_PATH;
const isRetention = metric.metricType === RETENTION;
const canAddSeries = metric.series.length < 3;
const eventsLength = metric.series[0].filter.filters.filter((i: any) => i && i.isEvent).length;
// const cannotSaveFunnel = isFunnel && (!metric.series[0] || eventsLength <= 1);
const isSingleSeries = isTable || isFunnel || isClickMap || isInsights || isRetention
// const onAddFilter = (filter: any) => {
// metric.series[0].filter.addFilter(filter);
// metric.updateKey('hasChanged', true)
// }
return (
<>
{
metric.series.length > 0 && metric.series
.slice(0, isSingleSeries ? 1 : metric.series.length)
.map((series: any, index: number) => (
<div className='mb-2' key={series.name}>
<FilterSeries
canExclude={isPathAnalysis}
supportsEmpty={!isClickMap && !isPathAnalysis}
excludeFilterKeys={excludeFilterKeys}
observeChanges={() => metric.updateKey('hasChanged', true)}
hideHeader={isTable || isClickMap || isInsights || isPathAnalysis || isFunnel}
seriesIndex={index}
series={series}
onRemoveSeries={() => metric.removeSeries(index)}
canDelete={metric.series.length > 1}
emptyMessage={
isTable
? 'Filter data using any event or attribute. Use Add Step button below to do so.'
: 'Add user event or filter to define the series by clicking Add Step.'
}
/>
</div>
))
}
{!isSingleSeries && canAddSeries && (
<Card styles={{body: {padding: '4px'}}}>
<Button
type='link'
onClick={() => metric.addSeries()}
disabled={!canAddSeries}
size="small"
>
<Space>
<AudioWaveform size={16}/>
New Chart Series
</Space>
</Button>
</Card>
)}
</>
);
})

View file

@ -1,43 +1,42 @@
import React from 'react';
import cn from 'classnames';
import WidgetWrapper from '../WidgetWrapper';
import { useStore } from 'App/mstore';
import { SegmentSelection, Button, Icon } from 'UI';
import { observer } from 'mobx-react-lite';
import { FilterKey } from 'Types/filter/filterType';
import WidgetDateRange from '../WidgetDateRange/WidgetDateRange';
import {useStore} from 'App/mstore';
// import {SegmentSelection, Button, Icon} from 'UI';
import {observer} from 'mobx-react-lite';
// import {FilterKey} from 'Types/filter/filterType';
// import WidgetDateRange from '../WidgetDateRange/WidgetDateRange';
import ClickMapRagePicker from "Components/Dashboard/components/ClickMapRagePicker";
import DashboardSelectionModal from '../DashboardSelectionModal/DashboardSelectionModal';
import { CLICKMAP, TABLE, TIMESERIES, RETENTION, USER_PATH } from 'App/constants/card';
import { Space, Switch } from 'antd';
// import DashboardSelectionModal from '../DashboardSelectionModal/DashboardSelectionModal';
import {CLICKMAP, TABLE, TIMESERIES, RETENTION, USER_PATH} from 'App/constants/card';
import {Space, Switch} from 'antd';
// import AddToDashboardButton from "Components/Dashboard/components/AddToDashboardButton";
interface Props {
className?: string;
name: string;
isEditing?: boolean;
}
function WidgetPreview(props: Props) {
const [showDashboardSelectionModal, setShowDashboardSelectionModal] = React.useState(false);
const { className = '' } = props;
const { metricStore, dashboardStore } = useStore();
const dashboards = dashboardStore.dashboards;
const {className = ''} = props;
const {metricStore, dashboardStore} = useStore();
// const dashboards = dashboardStore.dashboards;
const metric: any = metricStore.instance;
const isTimeSeries = metric.metricType === TIMESERIES;
const isTable = metric.metricType === TABLE;
const isRetention = metric.metricType === RETENTION;
const disableVisualization = metric.metricOf === FilterKey.SESSIONS || metric.metricOf === FilterKey.ERRORS;
const changeViewType = (_, { name, value }: any) => {
metric.update({ [ name ]: value });
}
const canAddToDashboard = metric.exists() && dashboards.length > 0;
// const isTimeSeries = metric.metricType === TIMESERIES;
// const isTable = metric.metricType === TABLE;
// const isRetention = metric.metricType === RETENTION;
// const disableVisualization = metric.metricOf === FilterKey.SESSIONS || metric.metricOf === FilterKey.ERRORS;
//
// const changeViewType = (_, {name, value}: any) => {
// metric.update({[name]: value});
// }
return (
<>
<div className={cn(className, 'bg-white rounded border')}>
<div className="flex items-center justify-between px-4 pt-2">
<h2 className="text-2xl">
<h2 className="text-xl">
{props.name}
</h2>
<div className="flex items-center">
@ -46,7 +45,7 @@ function WidgetPreview(props: Props) {
href="#"
onClick={(e) => {
e.preventDefault();
metric.update({ hideExcess: !metric.hideExcess });
metric.update({hideExcess: !metric.hideExcess});
}}
>
<Space>
@ -58,91 +57,79 @@ function WidgetPreview(props: Props) {
</Space>
</a>
)}
{isTimeSeries && (
<>
<span className="mr-4 color-gray-medium">Visualization</span>
<SegmentSelection
name="viewType"
className="my-3"
primary
size="small"
onSelect={ changeViewType }
value={{ value: metric.viewType }}
list={ [
{ value: 'lineChart', name: 'Chart', icon: 'graph-up-arrow' },
{ value: 'progress', name: 'Progress', icon: 'hash' },
]}
/>
</>
)}
{!disableVisualization && isTable && (
<>
<span className="mr-4 color-gray-medium">Visualization</span>
<SegmentSelection
name="viewType"
className="my-3"
primary={true}
size="small"
onSelect={ changeViewType }
value={{ value: metric.viewType }}
list={[
{ value: 'table', name: 'Table', icon: 'table' },
{ value: 'pieChart', name: 'Chart', icon: 'pie-chart-fill' },
]}
disabledMessage="Chart view is not supported"
/>
</>
)}
{/*{isTimeSeries && (*/}
{/* <>*/}
{/* <span className="mr-4 color-gray-medium">Visualization</span>*/}
{/* <SegmentSelection*/}
{/* name="viewType"*/}
{/* className="my-3"*/}
{/* primary*/}
{/* size="small"*/}
{/* onSelect={ changeViewType }*/}
{/* value={{ value: metric.viewType }}*/}
{/* list={ [*/}
{/* { value: 'lineChart', name: 'Chart', icon: 'graph-up-arrow' },*/}
{/* { value: 'progress', name: 'Progress', icon: 'hash' },*/}
{/* ]}*/}
{/* />*/}
{/* </>*/}
{/*)}*/}
{isRetention && (
<>
<span className="mr-4 color-gray-medium">Visualization</span>
<SegmentSelection
name="viewType"
className="my-3"
primary={true}
size="small"
onSelect={ changeViewType }
value={{ value: metric.viewType }}
list={[
{ value: 'trend', name: 'Trend', icon: 'graph-up-arrow' },
{ value: 'cohort', name: 'Cohort', icon: 'dice-3' },
]}
disabledMessage="Chart view is not supported"
/>
</>
)}
<div className="mx-4" />
{/*{!disableVisualization && isTable && (*/}
{/* <>*/}
{/* <span className="mr-4 color-gray-medium">Visualization</span>*/}
{/* <SegmentSelection*/}
{/* name="viewType"*/}
{/* className="my-3"*/}
{/* primary={true}*/}
{/* size="small"*/}
{/* onSelect={ changeViewType }*/}
{/* value={{ value: metric.viewType }}*/}
{/* list={[*/}
{/* { value: 'table', name: 'Table', icon: 'table' },*/}
{/* { value: 'pieChart', name: 'Chart', icon: 'pie-chart-fill' },*/}
{/* ]}*/}
{/* disabledMessage="Chart view is not supported"*/}
{/* />*/}
{/* </>*/}
{/*)}*/}
{/*{isRetention && (*/}
{/* <>*/}
{/* <span className="mr-4 color-gray-medium">Visualization</span>*/}
{/* <SegmentSelection*/}
{/* name="viewType"*/}
{/* className="my-3"*/}
{/* primary={true}*/}
{/* size="small"*/}
{/* onSelect={ changeViewType }*/}
{/* value={{ value: metric.viewType }}*/}
{/* list={[*/}
{/* { value: 'trend', name: 'Trend', icon: 'graph-up-arrow' },*/}
{/* { value: 'cohort', name: 'Cohort', icon: 'dice-3' },*/}
{/* ]}*/}
{/* disabledMessage="Chart view is not supported"*/}
{/* />*/}
{/*</>*/}
{/*)}*/}
<div className="mx-4"/>
{metric.metricType === CLICKMAP ? (
<ClickMapRagePicker />
<ClickMapRagePicker/>
) : null}
<WidgetDateRange />
{/* add to dashboard */}
{metric.exists() && (
<Button
variant="text-primary"
className="ml-2 p-0"
onClick={() => setShowDashboardSelectionModal(true)}
disabled={!canAddToDashboard}
>
<Icon name="columns-gap-filled" size="14" className="mr-2" color="teal"/>
Add to Dashboard
</Button>
)}
{/*{metric.exists() && (*/}
{/* <AddToDashboardButton metricId={metric.metricId}/>*/}
{/*)}*/}
</div>
</div>
<div className="p-4 pt-0">
<WidgetWrapper widget={metric} isPreview={true} isWidget={false} hideName />
<WidgetWrapper widget={metric} isPreview={true} isWidget={false} hideName/>
</div>
</div>
{ canAddToDashboard && (
<DashboardSelectionModal
metricId={metric.metricId}
show={showDashboardSelectionModal}
closeHandler={() => setShowDashboardSelectionModal(false)}
/>
)}
</>
);
}

View file

@ -1,18 +1,15 @@
import React, { useState } from 'react';
import { useStore } from 'App/mstore';
import cn from 'classnames';
import { Icon, Loader, NoContent } from 'UI';
import WidgetForm from '../WidgetForm';
import React, {useState} from 'react';
import {useStore} from 'App/mstore';
import {Icon, Loader, NoContent} from 'UI';
import WidgetPreview from '../WidgetPreview';
import WidgetSessions from '../WidgetSessions';
import { useObserver } from 'mobx-react-lite';
import WidgetName from '../WidgetName';
import { withSiteId } from 'App/routes';
import {useObserver} from 'mobx-react-lite';
import {dashboardMetricDetails, metricDetails, withSiteId} from 'App/routes';
import FunnelIssues from '../Funnels/FunnelIssues/FunnelIssues';
import Breadcrumb from 'Shared/Breadcrumb';
import { FilterKey } from 'Types/filter/filterType';
import { Prompt } from 'react-router';
import AnimatedSVG, { ICONS } from 'Shared/AnimatedSVG/AnimatedSVG';
import {FilterKey} from 'Types/filter/filterType';
import {Prompt, useHistory} from 'react-router';
import AnimatedSVG, {ICONS} from 'Shared/AnimatedSVG/AnimatedSVG';
import {
TIMESERIES,
TABLE,
@ -21,31 +18,41 @@ import {
INSIGHTS,
USER_PATH,
RETENTION,
} from 'App/constants/card';
} from 'App/constants/card';
import CardIssues from '../CardIssues';
import CardUserList from '../CardUserList/CardUserList';
import WidgetViewHeader from "Components/Dashboard/components/WidgetView/WidgetViewHeader";
import WidgetFormNew from "Components/Dashboard/components/WidgetForm/WidgetFormNew";
import {Space} from "antd";
import {renderClickmapThumbnail} from "Components/Dashboard/components/WidgetForm/renderMap";
import Widget from "App/mstore/types/widget";
interface Props {
history: any;
match: any;
siteId: any;
}
function WidgetView(props: Props) {
const {
match: {
params: { siteId, dashboardId, metricId },
params: {siteId, dashboardId, metricId},
},
} = props;
const { metricStore, dashboardStore } = useStore();
// const siteId = location.pathname.split('/')[1];
// const dashboardId = location.pathname.split('/')[3];
const {metricStore, dashboardStore} = useStore();
const widget = useObserver(() => metricStore.instance);
const loading = useObserver(() => metricStore.isLoading);
const [expanded, setExpanded] = useState(!metricId || metricId === 'create');
const hasChanged = useObserver(() => widget.hasChanged);
const dashboards = useObserver(() => dashboardStore.dashboards);
const dashboard = useObserver(() => dashboards.find((d: any) => d.dashboardId == dashboardId));
const dashboardName = dashboard ? dashboard.name : null;
const [metricNotFound, setMetricNotFound] = useState(false);
const history = useHistory();
const [initialInstance, setInitialInstance] = useState();
const isClickMap = widget.metricType === CLICKMAP;
React.useEffect(() => {
if (metricId && metricId !== 'create') {
@ -59,13 +66,44 @@ function WidgetView(props: Props) {
}
}, []);
const onBackHandler = () => {
props.history.goBack();
// const onBackHandler = () => {
// props.history.goBack();
// };
//
// const openEdit = () => {
// if (expanded) return;
// setExpanded(true);
// };
const undoChanges = () => {
const w = new Widget();
metricStore.merge(w.fromJson(initialInstance), false);
};
const openEdit = () => {
if (expanded) return;
setExpanded(true);
const onSave = async () => {
const wasCreating = !widget.exists();
if (isClickMap) {
try {
widget.thumbnail = await renderClickmapThumbnail();
} catch (e) {
console.error(e);
}
}
const savedMetric = await metricStore.save(widget);
setInitialInstance(widget.toJson());
if (wasCreating) {
if (parseInt(dashboardId, 10) > 0) {
history.replace(
withSiteId(dashboardMetricDetails(dashboardId, savedMetric.metricId), siteId)
);
void dashboardStore.addWidgetToDashboard(
dashboardStore.getDashboard(parseInt(dashboardId, 10))!,
[savedMetric.metricId]
);
} else {
history.replace(withSiteId(metricDetails(savedMetric.metricId), siteId));
}
}
};
return useObserver(() => (
@ -80,57 +118,47 @@ function WidgetView(props: Props) {
}}
/>
<div style={{ maxWidth: '1360px', margin: 'auto'}}>
<div style={{maxWidth: '1360px', margin: 'auto'}}>
<Breadcrumb
items={[
{
label: dashboardName ? dashboardName : 'Cards',
to: dashboardId ? withSiteId('/dashboard/' + dashboardId, siteId) : withSiteId('/metrics', siteId),
},
{ label: widget.name },
{label: widget.name},
]}
/>
<NoContent
show={metricNotFound}
title={
<div className="flex flex-col items-center justify-between">
<AnimatedSVG name={ICONS.EMPTY_STATE} size={100} />
<AnimatedSVG name={ICONS.EMPTY_STATE} size={100}/>
<div className="mt-4">Metric not found!</div>
</div>
}
>
<div className="bg-white rounded border">
<div
className={cn('px-6 py-4 flex justify-between items-center', {
'cursor-pointer hover:bg-active-blue hover:shadow-border-blue rounded': !expanded,
})}
onClick={openEdit}
>
<h1 className="mb-0 text-2xl mr-4 min-w-fit">
<WidgetName name={widget.name} onUpdate={(name) => metricStore.merge({ name })} canEdit={expanded} />
</h1>
<div className="text-gray-600 w-full cursor-pointer" onClick={() => setExpanded(!expanded)}>
<div className="flex items-center select-none w-fit ml-auto">
<span className="mr-2 color-teal">{expanded ? 'Collapse' : 'Edit'}</span>
<Icon name={expanded ? 'chevron-up' : 'chevron-down'} size="16" color="teal" />
</div>
</div>
</div>
<Space direction="vertical" size={20} className="w-full">
<WidgetViewHeader onSave={onSave} undoChanges={undoChanges}/>
{expanded && <WidgetForm onDelete={onBackHandler} {...props} />}
</div>
<WidgetFormNew/>
<WidgetPreview className="mt-8" name={widget.name} isEditing={expanded} />
{/*<div className="bg-white rounded border mt-3">*/}
{/* <WidgetForm expanded={expanded} onDelete={onBackHandler} {...props} />*/}
{/*</div>*/}
<WidgetPreview name={widget.name} isEditing={expanded}/>
{widget.metricOf !== FilterKey.SESSIONS && widget.metricOf !== FilterKey.ERRORS && (
<>
{(widget.metricType === TABLE || widget.metricType === TIMESERIES || widget.metricType === CLICKMAP || widget.metricType === INSIGHTS) && <WidgetSessions className="mt-8" />}
{widget.metricType === FUNNEL && <FunnelIssues />}
{(widget.metricType === TABLE || widget.metricType === TIMESERIES || widget.metricType === CLICKMAP || widget.metricType === INSIGHTS) &&
<WidgetSessions/>}
{widget.metricType === FUNNEL && <FunnelIssues/>}
</>
)}
{widget.metricType === USER_PATH && <CardIssues />}
{widget.metricType === RETENTION && <CardUserList />}
{widget.metricType === USER_PATH && <CardIssues/>}
{widget.metricType === RETENTION && <CardUserList/>}
</Space>
</NoContent>
</div>
</Loader>

View file

@ -0,0 +1,46 @@
import React from 'react';
import cn from "classnames";
import WidgetName from "Components/Dashboard/components/WidgetName";
import {useStore} from "App/mstore";
import {useObserver} from "mobx-react-lite";
import AddToDashboardButton from "Components/Dashboard/components/AddToDashboardButton";
import WidgetDateRange from "Components/Dashboard/components/WidgetDateRange/WidgetDateRange";
import {Button, Space} from "antd";
interface Props {
onClick?: () => void;
onSave: () => void;
undoChanges?: () => void;
}
function WidgetViewHeader({onClick, onSave, undoChanges}: Props) {
const {metricStore, dashboardStore} = useStore();
const widget = useObserver(() => metricStore.instance);
return (
<div
className={cn('flex justify-between items-center')}
onClick={onClick}
>
<h1 className="mb-0 text-2xl mr-4 min-w-fit">
<WidgetName name={widget.name}
onUpdate={(name) => metricStore.merge({name})}
canEdit={true}/>
</h1>
<Space>
<WidgetDateRange label=""/>
<AddToDashboardButton metricId={widget.metricId}/>
<Button
type="primary"
onClick={onSave}
loading={metricStore.isSaving}
disabled={metricStore.isSaving || !widget.hasChanged}
>
Update
</Button>
</Space>
</div>
);
}
export default WidgetViewHeader;

View file

@ -4,7 +4,7 @@ import { useStore } from 'App/mstore';
interface Props {
seriesId: string;
initAlert: Function;
initAlert?: Function;
}
function AlertButton(props: Props) {
const { seriesId } = props;

View file

@ -0,0 +1,181 @@
import React, {useRef} from 'react';
import cn from 'classnames';
import {Card, Tooltip, Button} from 'antd';
import {ItemMenu, TextEllipsis} from 'UI';
import {useDrag, useDrop} from 'react-dnd';
import WidgetChart from '../WidgetChart';
import {observer} from 'mobx-react-lite';
import {useStore} from 'App/mstore';
import {withRouter, RouteComponentProps} from 'react-router-dom';
import {withSiteId, dashboardMetricDetails} from 'App/routes';
import TemplateOverlay from './TemplateOverlay';
import AlertButton from './AlertButton';
import stl from './widgetWrapper.module.css';
import {FilterKey} from 'App/types/filter/filterType';
import LazyLoad from 'react-lazyload';
import {TIMESERIES} from "App/constants/card";
interface Props {
className?: string;
widget?: any;
index?: number;
moveListItem?: any;
isPreview?: boolean;
isTemplate?: boolean;
dashboardId?: string;
siteId?: string;
active?: boolean;
history?: any;
onClick?: () => void;
isWidget?: boolean;
hideName?: boolean;
grid?: string;
isGridView?: boolean;
}
function WidgetWrapperNew(props: Props & RouteComponentProps) {
const {dashboardStore} = useStore();
const {
isWidget = false,
active = false,
index = 0,
moveListItem = null,
isPreview = false,
isTemplate = false,
siteId,
grid = '',
isGridView = false,
} = props;
const widget: any = props.widget;
const isTimeSeries = widget.metricType === TIMESERIES;
const isPredefined = widget.metricType === 'predefined';
const dashboard = dashboardStore.selectedDashboard;
const [{isDragging}, dragRef] = useDrag({
type: 'item',
item: {index, grid},
collect: (monitor) => ({
isDragging: monitor.isDragging(),
}),
});
const [{isOver, canDrop}, dropRef] = useDrop({
accept: 'item',
drop: (item: any) => {
if (item.index === index || item.grid !== grid) return;
moveListItem(item.index, index);
},
canDrop(item) {
return item.grid === grid;
},
collect: (monitor: any) => ({
isOver: monitor.isOver(),
canDrop: monitor.canDrop(),
}),
});
const onDelete = async () => {
dashboardStore.deleteDashboardWidget(dashboard?.dashboardId!, widget.widgetId);
};
const onChartClick = () => {
if (!isWidget || isPredefined) return;
props.history.push(
withSiteId(dashboardMetricDetails(dashboard?.dashboardId, widget.metricId), siteId)
);
};
const ref: any = useRef(null);
const dragDropRef: any = dragRef(dropRef(ref));
const addOverlay =
isTemplate ||
(!isPredefined &&
isWidget &&
widget.metricOf !== FilterKey.ERRORS &&
widget.metricOf !== FilterKey.SESSIONS);
return (
<Card
className={cn(
'relative group',
'col-span-' + widget.config.col,
{'hover:shadow': !isTemplate && isWidget},
)}
style={{
userSelect: 'none',
opacity: isDragging ? 0.5 : 1,
borderColor:
(canDrop && isOver) || active ? '#394EFF' : isPreview ? 'transparent' : '#EEEEEE',
}}
ref={dragDropRef}
onClick={props.onClick ? props.onClick : () => null}
id={`widget-${widget.widgetId}`}
title={!props.hideName ? widget.name : null}
extra={isWidget ? [
<div className="flex items-center" id="no-print">
{!isPredefined && isTimeSeries && !isGridView && (
<>
<AlertButton seriesId={widget.series[0] && widget.series[0].seriesId}/>
<div className="mx-2"/>
</>
)}
{!isTemplate && !isGridView && (
<ItemMenu
items={[
{
text:
widget.metricType === 'predefined'
? 'Cannot edit system generated metrics'
: 'Edit',
onClick: onChartClick,
disabled: widget.metricType === 'predefined',
},
{
text: 'Hide',
onClick: onDelete,
},
]}
/>
)}
</div>
] : []}
styles={{
header: {
padding: '0 14px',
borderBottom: 'none',
minHeight: 44,
fontWeight: 500,
fontSize: 14,
},
body: {
padding: 0,
},
}}
>
{!isTemplate && isWidget && isPredefined && (
<Tooltip title="Cannot drill down system provided metrics">
<div
className={cn(stl.drillDownMessage, 'disabled text-gray text-sm invisible group-hover:visible')}>
{'Cannot drill down system provided metrics'}
</div>
</Tooltip>
)}
{addOverlay && <TemplateOverlay onClick={onChartClick} isTemplate={isTemplate}/>}
<LazyLoad offset={!isTemplate ? 100 : 600}>
<div className="px-4" onClick={onChartClick}>
<WidgetChart
isPreview={isPreview}
metric={widget}
isTemplate={isTemplate}
isWidget={isWidget}
/>
</div>
</LazyLoad>
</Card>
);
}
export default withRouter(observer(WidgetWrapperNew));

View file

@ -13,6 +13,7 @@
left: 0;
right: 0;
}
.overlayDashboard {
top: 20%!important;
top: 40px !important;
}

View file

@ -0,0 +1,31 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_tor(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M2 16C2 8.26801 8.26801 2 16 2C23.732 2 30 8.26801 30 16C30 23.732 23.732 30 16 30C8.26801 30 2 23.732 2 16Z" fill="#59316B"/>
<path d="M17.0341 5.64229L16.4629 7.96739C17.272 6.32521 18.5572 5.0895 20.0329 4C18.9539 5.28452 17.9703 6.56916 17.3673 7.85369C18.3828 6.39022 19.7473 5.57729 21.2863 5.04069C19.2395 6.91062 17.6148 8.91715 16.3772 10.9334L15.3936 10.4944C15.5679 8.88465 16.1614 7.23589 17.0341 5.64229V5.64229Z" fill="#ABCD03"/>
<path d="M14.4072 10.067L16.2795 10.863C16.2795 11.3509 16.2408 12.8391 16.5385 13.278C19.6523 17.3878 19.1284 25.626 15.9077 25.8373C11.0031 25.8373 9.13263 22.4228 9.13263 19.2846C9.13263 16.4227 12.4804 14.5203 14.4796 12.8293C14.9873 12.374 14.8992 11.3679 14.4072 10.067V10.067Z" fill="#FFFCDB"/>
<path d="M16.28 10.8344L16.9548 11.1871C16.8914 11.6423 16.9865 12.6506 17.4306 12.9106C19.3982 14.1626 21.2545 15.5284 21.9844 16.8943C24.5865 21.7074 20.1597 26.1625 16.3359 25.7397C18.4144 24.1625 19.0174 20.9268 18.2399 17.3983C17.9226 16.0161 17.4306 14.7641 16.5579 13.3494C16.1799 12.655 16.3119 11.7938 16.28 10.8344Z" fill="white"/>
<path d="M15.9552 10.7156L17.3514 10.9107C16.9389 12.309 18.1607 13.2846 18.5573 13.5124C19.4458 14.0165 20.3026 14.5367 20.9849 15.1708C22.2702 16.3741 23 18.0652 23 19.8538C23 21.6261 22.2066 23.3334 20.8739 24.4716C19.6204 25.5448 17.891 26.0001 16.2091 26.0001C15.1619 26.0001 14.2258 25.9514 13.2104 25.6098C10.894 24.813 9.16445 22.7806 9.02167 20.3414C8.89469 18.439 9.30723 16.9918 10.7512 15.4797C11.4968 14.6829 13.0042 13.7724 14.0356 13.0407C14.5434 12.6829 15.0828 11.6747 14.0514 9.77238L14.2577 9.60974L15.7862 10.6589L14.4958 10.1138C14.6068 10.2765 14.9083 11.0082 14.9719 11.2195C15.1147 11.8211 15.0512 12.4067 14.9242 12.6667C14.2738 13.87 13.1631 14.1952 12.354 14.8781C10.9259 16.0813 9.37101 17.0407 9.54551 20.3414C9.62486 21.9674 10.8625 23.9512 12.7187 24.878C13.766 25.3985 14.9719 25.6098 16.1936 25.6748C17.2883 25.7236 19.3827 25.0569 20.5251 24.0813C21.7468 23.0407 22.4291 21.4634 22.4291 19.8538C22.4291 18.2277 21.7944 16.683 20.6044 15.5935C19.9221 14.9594 18.7957 14.1952 18.0976 13.7886C17.3995 13.3821 16.5268 12.2439 16.8123 11.1545L15.9552 10.7156Z" fill="black"/>
<path d="M15.5268 13.1219C15.3841 13.87 15.2254 15.2195 14.5907 15.7236C14.3209 15.9186 14.0512 16.1139 13.7656 16.3089C12.6232 17.1058 11.4808 17.8536 10.9573 19.7723C10.8462 20.1789 10.9415 20.6179 11.0367 21.0243C11.3223 22.195 12.1315 23.4634 12.7661 24.2114C12.7661 24.2439 12.8931 24.3252 12.8931 24.3577C13.4167 24.992 13.5754 25.1708 15.5587 25.626L15.511 25.8537C14.321 25.5286 13.3374 25.2359 12.7185 24.5041C12.7185 24.4879 12.6074 24.3739 12.6074 24.3739C11.9411 23.5934 11.1318 22.2927 10.8304 21.0732C10.7193 20.5853 10.6242 20.2114 10.7511 19.7072C11.2905 17.7236 12.4647 16.943 13.6547 16.1138C13.9244 15.9349 14.2417 15.7722 14.4955 15.5609C14.9873 15.187 15.257 14.0487 15.5268 13.1219V13.1219Z" fill="black"/>
<path d="M16.0342 16.2113C16.0501 17.0569 15.9696 17.481 16.1758 18.0828C16.3027 18.4404 16.7313 18.9282 16.8583 19.3998C17.0328 20.0341 17.2229 20.7332 17.2069 21.156C17.2069 21.6439 17.1771 22.554 16.9709 23.5297C16.8136 24.3358 16.4512 25.0276 15.8418 25.4197C15.2175 25.288 14.4846 25.0631 14.0519 24.6831C13.2111 23.9351 12.4663 22.6845 12.371 21.595C12.2918 20.7007 13.0998 19.3819 14.2262 18.7153C15.1782 18.1462 15.3996 17.4976 15.6058 16.4569C15.3202 17.3674 15.0521 18.1307 14.1318 18.6185C12.799 19.3339 12.1152 20.5349 12.1786 21.6731C12.2738 23.1365 12.8456 24.128 13.9721 24.9249C14.4481 25.2664 15.3373 25.6272 15.8926 25.7248V25.6504C16.3137 25.5696 16.859 24.8607 17.1306 23.9017C17.3687 23.04 17.4625 21.937 17.4465 21.2378C17.4306 20.8313 17.2556 19.951 16.9382 19.1543C16.7637 18.7153 16.4956 18.2764 16.321 17.9674C16.1308 17.6582 16.1295 16.9917 16.0342 16.2113Z" fill="black"/>
<path d="M15.9398 19.3998C15.9556 19.9689 16.1787 20.6981 16.2738 21.4461C16.3533 21.999 16.3188 22.5543 16.3029 23.0422C16.2872 23.607 16.1036 24.6188 15.8527 25.1109C15.6161 24.9997 15.5236 24.8729 15.3698 24.6681C15.1795 24.3917 15.0503 24.1152 14.9233 23.7901C14.8281 23.5461 14.7169 23.2669 14.6692 22.9418C14.6057 22.454 14.6235 21.6909 15.1629 20.9103C15.5754 20.2924 15.67 20.2454 15.8128 19.53C15.6222 20.1641 15.4802 20.2288 15.0358 20.7652C14.5441 21.3507 14.4622 22.2129 14.4622 22.912C14.4622 23.2048 14.5761 23.5296 14.6873 23.8384C14.8142 24.1637 14.9231 24.4875 15.0976 24.7314C15.3599 25.1267 15.6956 25.3516 15.86 25.3936C15.861 25.3939 15.8625 25.3934 15.8636 25.3936C15.8671 25.3945 15.8711 25.3967 15.8745 25.3974V25.3788C16.1823 25.027 16.3676 24.6776 16.4299 24.3258C16.5093 23.9031 16.5275 23.4794 16.5752 22.9753C16.6227 22.5525 16.5882 21.983 16.4771 21.3977C16.3186 20.666 16.0509 19.9199 15.9398 19.3998L15.9398 19.3998Z" fill="black"/>
<path d="M15.9869 12.4391C16.0028 13.2845 16.0663 14.8619 16.2884 15.4797C16.3518 15.6911 16.9389 16.6179 17.3513 17.7398C17.637 18.5204 17.7004 19.2358 17.748 19.4471C17.9384 20.374 17.7004 21.935 17.383 23.4146C17.2244 24.2114 16.6849 25.2032 16.0661 25.5935L15.9393 25.8211C16.2884 25.8048 17.1451 24.9431 17.4465 23.8699C17.9543 22.0488 18.1606 21.2032 17.9226 19.187C17.8909 18.9917 17.8116 18.3252 17.5101 17.6097C17.0658 16.5202 16.4312 15.4796 16.3519 15.2682C16.209 14.9268 16.0186 13.4472 15.9869 12.4391V12.4391Z" fill="black"/>
<path d="M16.2846 11.2827C16.2375 12.1516 16.2249 12.4716 16.3835 13.1057C16.558 13.8049 17.4466 14.813 17.8115 15.9675C18.5097 18.1789 18.3352 21.0732 17.8273 23.3333C17.6371 24.1299 16.7325 25.2846 15.8282 25.6584L16.4946 25.821C16.8595 25.8047 17.7955 24.9105 18.1605 23.8861C18.7475 22.2763 18.8586 20.3577 18.6206 18.3414C18.6047 18.1463 18.2873 16.4065 17.9859 15.6748C17.5575 14.5854 16.7958 13.6097 16.7166 13.3985C16.5739 13.0407 16.2604 12.2979 16.2846 11.2827Z" fill="black"/>
<rect x="15.7802" y="10.6713" width="0.492005" height="15.0036" fill="black"/>
</svg>
);
}
export default Color_browser_tor;

View file

@ -0,0 +1,29 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_applebot(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32">
<g clipPath="url(#clip0_450_13887)">
<path d="M32 16C32 24.832 24.84 32 16 32C7.16 32 0 24.832 0 16C0 7.16 7.16 0 16 0C24.84 0 32 7.16 32 16Z" fill="#283544"/>
<path d="M22.5621 12.4574C22.4857 12.502 20.6671 13.4425 20.6671 15.5279C20.7528 17.9061 22.9621 18.7401 23 18.7401C22.9621 18.7847 22.6665 19.8763 21.7907 21.0205C21.0956 22.0062 20.3242 23 19.1528 23C18.0385 23 17.6385 22.3431 16.3528 22.3431C14.972 22.3431 14.5813 23 13.5242 23C12.3528 23 11.5242 21.953 10.7913 20.9766C9.8391 19.6986 9.02978 17.6931 9.00121 15.7675C8.98195 14.7471 9.19189 13.744 9.72481 12.8921C10.477 11.7026 11.8198 10.8952 13.2863 10.8686C14.4099 10.8333 15.4099 11.5875 16.0956 11.5875C16.7528 11.5875 17.9814 10.8686 19.3714 10.8686C19.9714 10.8692 21.5714 11.0376 22.5621 12.4574ZM16.0006 10.6649C15.8006 9.73303 16.3528 8.80119 16.8671 8.20677C17.5242 7.48792 18.5621 7 19.4571 7C19.5143 7.93185 19.1522 8.84575 18.505 9.51136C17.9242 10.2302 16.9242 10.7714 16.0006 10.6649Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_450_13887">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>
);
}
export default Color_browser_applebot;

View file

@ -0,0 +1,31 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_tor(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M2 16C2 8.26801 8.26801 2 16 2C23.732 2 30 8.26801 30 16C30 23.732 23.732 30 16 30C8.26801 30 2 23.732 2 16Z" fill="#59316B"/>
<path d="M17.0341 5.64229L16.4629 7.96739C17.272 6.32521 18.5572 5.0895 20.0329 4C18.9539 5.28452 17.9703 6.56916 17.3673 7.85369C18.3828 6.39022 19.7473 5.57729 21.2863 5.04069C19.2395 6.91062 17.6148 8.91715 16.3772 10.9334L15.3936 10.4944C15.5679 8.88465 16.1614 7.23589 17.0341 5.64229V5.64229Z" fill="#ABCD03"/>
<path d="M14.4072 10.067L16.2795 10.863C16.2795 11.3509 16.2408 12.8391 16.5385 13.278C19.6523 17.3878 19.1284 25.626 15.9077 25.8373C11.0031 25.8373 9.13263 22.4228 9.13263 19.2846C9.13263 16.4227 12.4804 14.5203 14.4796 12.8293C14.9873 12.374 14.8992 11.3679 14.4072 10.067V10.067Z" fill="#FFFCDB"/>
<path d="M16.28 10.8344L16.9548 11.1871C16.8914 11.6423 16.9865 12.6506 17.4306 12.9106C19.3982 14.1626 21.2545 15.5284 21.9844 16.8943C24.5865 21.7074 20.1597 26.1625 16.3359 25.7397C18.4144 24.1625 19.0174 20.9268 18.2399 17.3983C17.9226 16.0161 17.4306 14.7641 16.5579 13.3494C16.1799 12.655 16.3119 11.7938 16.28 10.8344Z" fill="white"/>
<path d="M15.9552 10.7156L17.3514 10.9107C16.9389 12.309 18.1607 13.2846 18.5573 13.5124C19.4458 14.0165 20.3026 14.5367 20.9849 15.1708C22.2702 16.3741 23 18.0652 23 19.8538C23 21.6261 22.2066 23.3334 20.8739 24.4716C19.6204 25.5448 17.891 26.0001 16.2091 26.0001C15.1619 26.0001 14.2258 25.9514 13.2104 25.6098C10.894 24.813 9.16445 22.7806 9.02167 20.3414C8.89469 18.439 9.30723 16.9918 10.7512 15.4797C11.4968 14.6829 13.0042 13.7724 14.0356 13.0407C14.5434 12.6829 15.0828 11.6747 14.0514 9.77238L14.2577 9.60974L15.7862 10.6589L14.4958 10.1138C14.6068 10.2765 14.9083 11.0082 14.9719 11.2195C15.1147 11.8211 15.0512 12.4067 14.9242 12.6667C14.2738 13.87 13.1631 14.1952 12.354 14.8781C10.9259 16.0813 9.37101 17.0407 9.54551 20.3414C9.62486 21.9674 10.8625 23.9512 12.7187 24.878C13.766 25.3985 14.9719 25.6098 16.1936 25.6748C17.2883 25.7236 19.3827 25.0569 20.5251 24.0813C21.7468 23.0407 22.4291 21.4634 22.4291 19.8538C22.4291 18.2277 21.7944 16.683 20.6044 15.5935C19.9221 14.9594 18.7957 14.1952 18.0976 13.7886C17.3995 13.3821 16.5268 12.2439 16.8123 11.1545L15.9552 10.7156Z" fill="black"/>
<path d="M15.5268 13.1219C15.3841 13.87 15.2254 15.2195 14.5907 15.7236C14.3209 15.9186 14.0512 16.1139 13.7656 16.3089C12.6232 17.1058 11.4808 17.8536 10.9573 19.7723C10.8462 20.1789 10.9415 20.6179 11.0367 21.0243C11.3223 22.195 12.1315 23.4634 12.7661 24.2114C12.7661 24.2439 12.8931 24.3252 12.8931 24.3577C13.4167 24.992 13.5754 25.1708 15.5587 25.626L15.511 25.8537C14.321 25.5286 13.3374 25.2359 12.7185 24.5041C12.7185 24.4879 12.6074 24.3739 12.6074 24.3739C11.9411 23.5934 11.1318 22.2927 10.8304 21.0732C10.7193 20.5853 10.6242 20.2114 10.7511 19.7072C11.2905 17.7236 12.4647 16.943 13.6547 16.1138C13.9244 15.9349 14.2417 15.7722 14.4955 15.5609C14.9873 15.187 15.257 14.0487 15.5268 13.1219V13.1219Z" fill="black"/>
<path d="M16.0342 16.2113C16.0501 17.0569 15.9696 17.481 16.1758 18.0828C16.3027 18.4404 16.7313 18.9282 16.8583 19.3998C17.0328 20.0341 17.2229 20.7332 17.2069 21.156C17.2069 21.6439 17.1771 22.554 16.9709 23.5297C16.8136 24.3358 16.4512 25.0276 15.8418 25.4197C15.2175 25.288 14.4846 25.0631 14.0519 24.6831C13.2111 23.9351 12.4663 22.6845 12.371 21.595C12.2918 20.7007 13.0998 19.3819 14.2262 18.7153C15.1782 18.1462 15.3996 17.4976 15.6058 16.4569C15.3202 17.3674 15.0521 18.1307 14.1318 18.6185C12.799 19.3339 12.1152 20.5349 12.1786 21.6731C12.2738 23.1365 12.8456 24.128 13.9721 24.9249C14.4481 25.2664 15.3373 25.6272 15.8926 25.7248V25.6504C16.3137 25.5696 16.859 24.8607 17.1306 23.9017C17.3687 23.04 17.4625 21.937 17.4465 21.2378C17.4306 20.8313 17.2556 19.951 16.9382 19.1543C16.7637 18.7153 16.4956 18.2764 16.321 17.9674C16.1308 17.6582 16.1295 16.9917 16.0342 16.2113Z" fill="black"/>
<path d="M15.9398 19.3998C15.9556 19.9689 16.1787 20.6981 16.2738 21.4461C16.3533 21.999 16.3188 22.5543 16.3029 23.0422C16.2872 23.607 16.1036 24.6188 15.8527 25.1109C15.6161 24.9997 15.5236 24.8729 15.3698 24.6681C15.1795 24.3917 15.0503 24.1152 14.9233 23.7901C14.8281 23.5461 14.7169 23.2669 14.6692 22.9418C14.6057 22.454 14.6235 21.6909 15.1629 20.9103C15.5754 20.2924 15.67 20.2454 15.8128 19.53C15.6222 20.1641 15.4802 20.2288 15.0358 20.7652C14.5441 21.3507 14.4622 22.2129 14.4622 22.912C14.4622 23.2048 14.5761 23.5296 14.6873 23.8384C14.8142 24.1637 14.9231 24.4875 15.0976 24.7314C15.3599 25.1267 15.6956 25.3516 15.86 25.3936C15.861 25.3939 15.8625 25.3934 15.8636 25.3936C15.8671 25.3945 15.8711 25.3967 15.8745 25.3974V25.3788C16.1823 25.027 16.3676 24.6776 16.4299 24.3258C16.5093 23.9031 16.5275 23.4794 16.5752 22.9753C16.6227 22.5525 16.5882 21.983 16.4771 21.3977C16.3186 20.666 16.0509 19.9199 15.9398 19.3998L15.9398 19.3998Z" fill="black"/>
<path d="M15.9869 12.4391C16.0028 13.2845 16.0663 14.8619 16.2884 15.4797C16.3518 15.6911 16.9389 16.6179 17.3513 17.7398C17.637 18.5204 17.7004 19.2358 17.748 19.4471C17.9384 20.374 17.7004 21.935 17.383 23.4146C17.2244 24.2114 16.6849 25.2032 16.0661 25.5935L15.9393 25.8211C16.2884 25.8048 17.1451 24.9431 17.4465 23.8699C17.9543 22.0488 18.1606 21.2032 17.9226 19.187C17.8909 18.9917 17.8116 18.3252 17.5101 17.6097C17.0658 16.5202 16.4312 15.4796 16.3519 15.2682C16.209 14.9268 16.0186 13.4472 15.9869 12.4391V12.4391Z" fill="black"/>
<path d="M16.2846 11.2827C16.2375 12.1516 16.2249 12.4716 16.3835 13.1057C16.558 13.8049 17.4466 14.813 17.8115 15.9675C18.5097 18.1789 18.3352 21.0732 17.8273 23.3333C17.6371 24.1299 16.7325 25.2846 15.8282 25.6584L16.4946 25.821C16.8595 25.8047 17.7955 24.9105 18.1605 23.8861C18.7475 22.2763 18.8586 20.3577 18.6206 18.3414C18.6047 18.1463 18.2873 16.4065 17.9859 15.6748C17.5575 14.5854 16.7958 13.6097 16.7166 13.3985C16.5739 13.0407 16.2604 12.2979 16.2846 11.2827Z" fill="black"/>
<rect x="15.7802" y="10.6713" width="0.492005" height="15.0036" fill="black"/>
</svg>
);
}
export default Color_browser_browser_icons_color_tor;

View file

@ -0,0 +1,29 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_applebot(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32">
<g clipPath="url(#clip0_450_13887)">
<path d="M32 16C32 24.832 24.84 32 16 32C7.16 32 0 24.832 0 16C0 7.16 7.16 0 16 0C24.84 0 32 7.16 32 16Z" fill="#283544"/>
<path d="M22.5621 12.4574C22.4857 12.502 20.6671 13.4425 20.6671 15.5279C20.7528 17.9061 22.9621 18.7401 23 18.7401C22.9621 18.7847 22.6665 19.8763 21.7907 21.0205C21.0956 22.0062 20.3242 23 19.1528 23C18.0385 23 17.6385 22.3431 16.3528 22.3431C14.972 22.3431 14.5813 23 13.5242 23C12.3528 23 11.5242 21.953 10.7913 20.9766C9.8391 19.6986 9.02978 17.6931 9.00121 15.7675C8.98195 14.7471 9.19189 13.744 9.72481 12.8921C10.477 11.7026 11.8198 10.8952 13.2863 10.8686C14.4099 10.8333 15.4099 11.5875 16.0956 11.5875C16.7528 11.5875 17.9814 10.8686 19.3714 10.8686C19.9714 10.8692 21.5714 11.0376 22.5621 12.4574ZM16.0006 10.6649C15.8006 9.73303 16.3528 8.80119 16.8671 8.20677C17.5242 7.48792 18.5621 7 19.4571 7C19.5143 7.93185 19.1522 8.84575 18.505 9.51136C17.9242 10.2302 16.9242 10.7714 16.0006 10.6649Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_450_13887">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>
);
}
export default Color_browser_browser_icons_color_applebot;

View file

@ -0,0 +1,34 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_chrome(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2.04 2 28 28">
<path d="M16.0007 2.00382C16.0007 2.00382 24.2529 1.63483 28.628 9.8999H15.2985C15.2985 9.8999 12.783 9.81911 10.6342 12.8599C10.0169 14.1363 9.35338 15.451 10.098 18.042C9.02535 16.2313 4.4035 8.21234 4.4035 8.21234C4.4035 8.21234 7.6635 2.33057 16.0006 2.00382H16.0007Z" fill="#EF3F36"/>
<path d="M28.1996 22.9856C28.1996 22.9856 24.3917 30.2935 15.0246 29.9321C16.182 27.9369 21.6911 18.4302 21.6911 18.4302C21.6911 18.4302 23.0222 16.3005 21.452 12.9253C20.6533 11.7528 19.8392 10.5265 17.2159 9.87287C19.3263 9.85377 28.6047 9.87287 28.6047 9.87287C28.6047 9.87287 32.0806 15.6278 28.1996 22.9856Z" fill="#FCD900"/>
<path d="M3.85937 23.0433C3.85937 23.0433 -0.588931 16.1044 4.41101 8.20068C5.56459 10.1959 11.0738 19.7027 11.0738 19.7027C11.0738 19.7027 12.2621 21.917 15.9773 22.2475C17.3933 22.1437 18.867 22.0553 20.7498 20.1217C19.7118 21.9516 15.0551 29.9476 15.0551 29.9476C15.0551 29.9476 8.3114 30.0706 3.85926 23.0433H3.85937Z" fill="#61BC5B"/>
<path d="M15.0208 30.0013L16.8957 22.2053C16.8957 22.2053 18.9559 22.0437 20.6844 20.1562C19.6118 22.0362 15.0208 30.0013 15.0208 30.0013V30.0013Z" fill="#5AB055"/>
<path d="M9.71985 16.089C9.71985 12.6523 12.517 9.86523 15.9659 9.86523C19.4149 9.86523 22.212 12.6523 22.212 16.089C22.212 19.5257 19.4149 22.3127 15.9659 22.3127C12.517 22.3089 9.71985 19.5257 9.71985 16.089V16.089Z" fill="white"/>
<path d="M10.7653 16.0891C10.7653 13.2291 13.0918 10.9071 15.966 10.9071C18.8363 10.9071 21.1666 13.2252 21.1666 16.0891C21.1666 18.9493 18.8403 21.2713 15.966 21.2713C13.0956 21.2713 10.7653 18.9493 10.7653 16.0891V16.0891Z" fill="url(#paint0_linear_449_13004)"/>
<path d="M28.6008 9.87685L20.881 12.1334C20.881 12.1334 19.7159 10.4303 17.2121 9.87685C19.3841 9.86528 28.6008 9.87685 28.6008 9.87685V9.87685Z" fill="#EACA05"/>
<path d="M9.94753 17.7576C8.86331 15.8854 4.4035 8.21228 4.4035 8.21228L10.1211 13.8479C10.1211 13.8479 9.53459 15.0512 9.75459 16.7734L9.94742 17.7576H9.94753Z" fill="#DF3A32"/>
<defs>
<linearGradient id="paint0_linear_449_13004" x1="15.9657" y1="10.9803" x2="15.9657" y2="20.9593" gradientUnits="userSpaceOnUse">
<stop stopColor="#86BBE5"/>
<stop offset="1" stopColor="#1072BA"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_browser_browser_icons_color_chrome;

View file

@ -0,0 +1,34 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_chrome_mobile(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2.04 2 28 28">
<path d="M16.0006 2.00382C16.0006 2.00382 24.2528 1.63483 28.6279 9.8999H15.2984C15.2984 9.8999 12.7829 9.81911 10.6341 12.8599C10.0168 14.1363 9.35332 15.451 10.0979 18.042C9.02529 16.2313 4.40344 8.21234 4.40344 8.21234C4.40344 8.21234 7.66344 2.33057 16.0005 2.00382H16.0006Z" fill="#EF3F36"/>
<path d="M28.1995 22.9856C28.1995 22.9856 24.3916 30.2935 15.0245 29.9321C16.1819 27.9369 21.6911 18.4302 21.6911 18.4302C21.6911 18.4302 23.0221 16.3005 21.4519 12.9253C20.6532 11.7528 19.8392 10.5265 17.2159 9.87287C19.3262 9.85377 28.6047 9.87287 28.6047 9.87287C28.6047 9.87287 32.0806 15.6278 28.1995 22.9856Z" fill="#FCD900"/>
<path d="M3.85931 23.0433C3.85931 23.0433 -0.588992 16.1044 4.41095 8.20068C5.56452 10.1959 11.0737 19.7027 11.0737 19.7027C11.0737 19.7027 12.262 21.917 15.9772 22.2475C17.3932 22.1437 18.8669 22.0553 20.7497 20.1217C19.7117 21.9516 15.0551 29.9476 15.0551 29.9476C15.0551 29.9476 8.31134 30.0706 3.8592 23.0433H3.85931Z" fill="#61BC5B"/>
<path d="M15.0208 30.0013L16.8957 22.2053C16.8957 22.2053 18.9559 22.0437 20.6844 20.1562C19.6118 22.0362 15.0208 30.0013 15.0208 30.0013V30.0013Z" fill="#5AB055"/>
<path d="M9.71973 16.089C9.71973 12.6523 12.5168 9.86523 15.9658 9.86523C19.4148 9.86523 22.2119 12.6523 22.2119 16.089C22.2119 19.5257 19.4148 22.3127 15.9658 22.3127C12.5168 22.3089 9.71973 19.5257 9.71973 16.089V16.089Z" fill="white"/>
<path d="M10.7653 16.0891C10.7653 13.2291 13.0917 10.9071 15.9659 10.9071C18.8363 10.9071 21.1665 13.2252 21.1665 16.0891C21.1665 18.9493 18.8402 21.2713 15.9659 21.2713C13.0955 21.2713 10.7653 18.9493 10.7653 16.0891V16.0891Z" fill="url(#paint0_linear_449_13214)"/>
<path d="M28.6008 9.87685L20.8809 12.1334C20.8809 12.1334 19.7158 10.4303 17.212 9.87685C19.3841 9.86528 28.6008 9.87685 28.6008 9.87685V9.87685Z" fill="#EACA05"/>
<path d="M9.94747 17.7576C8.86325 15.8854 4.40344 8.21228 4.40344 8.21228L10.121 13.8479C10.121 13.8479 9.53453 15.0512 9.75453 16.7734L9.94736 17.7576H9.94747Z" fill="#DF3A32"/>
<defs>
<linearGradient id="paint0_linear_449_13214" x1="15.9657" y1="10.9803" x2="15.9657" y2="20.9593" gradientUnits="userSpaceOnUse">
<stop stopColor="#86BBE5"/>
<stop offset="1" stopColor="#1072BA"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_browser_browser_icons_color_chrome_mobile;

View file

@ -0,0 +1,34 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_chrome_mobile_ios(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2.04 2 28 28">
<path d="M16.0007 2.00382C16.0007 2.00382 24.2529 1.63483 28.628 9.8999H15.2985C15.2985 9.8999 12.783 9.81911 10.6342 12.8599C10.0169 14.1363 9.35338 15.451 10.098 18.042C9.02535 16.2313 4.4035 8.21234 4.4035 8.21234C4.4035 8.21234 7.6635 2.33057 16.0006 2.00382H16.0007Z" fill="#EF3F36"/>
<path d="M28.1996 22.9856C28.1996 22.9856 24.3917 30.2935 15.0246 29.9321C16.182 27.9369 21.6911 18.4302 21.6911 18.4302C21.6911 18.4302 23.0222 16.3005 21.452 12.9253C20.6533 11.7528 19.8392 10.5265 17.2159 9.87287C19.3263 9.85377 28.6047 9.87287 28.6047 9.87287C28.6047 9.87287 32.0806 15.6278 28.1996 22.9856Z" fill="#FCD900"/>
<path d="M3.85937 23.0433C3.85937 23.0433 -0.588931 16.1044 4.41101 8.20068C5.56459 10.1959 11.0738 19.7027 11.0738 19.7027C11.0738 19.7027 12.2621 21.917 15.9773 22.2475C17.3933 22.1437 18.867 22.0553 20.7498 20.1217C19.7118 21.9516 15.0551 29.9476 15.0551 29.9476C15.0551 29.9476 8.3114 30.0706 3.85926 23.0433H3.85937Z" fill="#61BC5B"/>
<path d="M15.0208 30.0013L16.8957 22.2053C16.8957 22.2053 18.9559 22.0437 20.6844 20.1562C19.6118 22.0362 15.0208 30.0013 15.0208 30.0013V30.0013Z" fill="#5AB055"/>
<path d="M9.71985 16.089C9.71985 12.6523 12.517 9.86523 15.9659 9.86523C19.4149 9.86523 22.212 12.6523 22.212 16.089C22.212 19.5257 19.4149 22.3127 15.9659 22.3127C12.517 22.3089 9.71985 19.5257 9.71985 16.089V16.089Z" fill="white"/>
<path d="M10.7653 16.0891C10.7653 13.2291 13.0918 10.9071 15.966 10.9071C18.8363 10.9071 21.1666 13.2252 21.1666 16.0891C21.1666 18.9493 18.8403 21.2713 15.966 21.2713C13.0956 21.2713 10.7653 18.9493 10.7653 16.0891V16.0891Z" fill="url(#paint0_linear_449_13361)"/>
<path d="M28.6008 9.87685L20.881 12.1334C20.881 12.1334 19.7159 10.4303 17.2121 9.87685C19.3841 9.86528 28.6008 9.87685 28.6008 9.87685V9.87685Z" fill="#EACA05"/>
<path d="M9.94753 17.7576C8.86331 15.8854 4.4035 8.21228 4.4035 8.21228L10.1211 13.8479C10.1211 13.8479 9.53459 15.0512 9.75459 16.7734L9.94742 17.7576H9.94753Z" fill="#DF3A32"/>
<defs>
<linearGradient id="paint0_linear_449_13361" x1="15.9657" y1="10.9803" x2="15.9657" y2="20.9593" gradientUnits="userSpaceOnUse">
<stop stopColor="#86BBE5"/>
<stop offset="1" stopColor="#1072BA"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_browser_browser_icons_color_chrome_mobile_ios;

View file

@ -0,0 +1,59 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_duck_duck_go(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32">
<g clipPath="url(#clip0_450_13857)">
<path d="M31.0754 15.8762C31.0754 24.5004 24.2938 31.492 15.928 31.492C7.56283 31.492 0.78125 24.5007 0.78125 15.8762C0.78125 7.25176 7.56283 0.260742 15.928 0.260742C24.2938 0.26101 31.0754 7.25203 31.0754 15.8762Z" fill="white"/>
<path d="M29.9672 15.9833C29.9672 23.7041 23.7084 29.964 15.9871 29.964C8.26569 29.964 2.0069 23.7041 2.0069 15.9833C2.0069 8.26244 8.26569 2.00312 15.9871 2.00312C23.7084 2.00312 29.9672 8.26244 29.9672 15.9833ZM31.9655 15.9833C31.9655 24.8073 24.8111 31.9617 15.9871 31.9617C7.16306 31.9617 0.00866699 24.8073 0.00866699 15.9833C0.00866699 7.15927 7.16306 0.00488281 15.9871 0.00488281C24.8111 0.00488281 31.9655 7.159 31.9655 15.9833ZM30.6472 15.9833C30.6472 7.88722 24.0829 1.32365 15.9871 1.32365C7.89154 1.32365 1.3269 7.88749 1.3269 15.9833C1.3269 24.0791 7.8918 30.6429 15.9871 30.6429C24.0829 30.6429 30.6472 24.0791 30.6472 15.9833Z" fill="url(#paint0_linear_450_13857)"/>
<mask id="mask0_450_13857" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="1" y="1" width="30" height="29">
<path d="M30.0221 15.9455C30.0221 23.6843 23.7266 29.9795 15.987 29.9795C8.24877 29.9795 1.9541 23.6835 1.9541 15.9455C1.9541 8.20781 8.24958 1.9126 15.987 1.9126C23.7266 1.91233 30.0221 8.20781 30.0221 15.9455Z" fill="white"/>
</mask>
<g mask="url(#mask0_450_13857)">
<path d="M21.6017 36.3896C21.1194 34.1707 18.3177 29.1479 17.2552 27.0241C16.1933 24.9002 15.129 21.9059 15.6137 19.9744C15.7013 19.623 14.6935 16.9461 14.9833 16.7568C17.2373 15.2864 17.8308 16.9169 18.7331 16.2578C19.1986 15.9169 19.8285 16.5382 19.99 15.9742C20.5679 13.9473 19.1849 10.4141 17.6417 8.8696C17.1368 8.36636 16.3634 8.05032 15.4908 7.8824C15.1549 7.42361 14.6137 6.98224 13.8469 6.57568C12.9931 6.12119 11.1362 5.52099 10.1731 5.3611C9.50573 5.25129 9.35494 5.43797 9.06998 5.48457C9.33566 5.50813 10.5963 6.13109 10.8416 6.16725C10.5963 6.33303 9.8756 6.15948 9.41574 6.36598C9.18407 6.4707 9.01079 6.86868 9.0124 7.05696C10.3274 6.92412 12.38 7.05268 13.5922 7.59261C12.6275 7.70242 11.1603 7.82481 10.5294 8.15638C8.69529 9.12296 7.88512 11.3796 8.36801 14.0841C8.85117 16.7825 10.9761 26.6314 11.6521 29.9203C12.3283 33.2046 10.2037 35.3274 8.85197 35.9073L10.3004 36.0045L9.81801 37.0669C11.5546 37.2595 13.4859 36.681 13.4859 36.681C13.1007 37.7429 10.4927 38.1305 10.4927 38.1305C10.4927 38.1305 11.749 38.5156 13.7757 37.7429C15.8044 36.9708 17.0594 36.4874 17.0594 36.4874L18.0247 38.9977L19.8603 37.1642L20.6325 39.0954C20.6357 39.0952 22.0846 38.6112 21.6017 36.3896Z" fill="#D5D7D8"/>
<path d="M22.1851 35.9391C21.7043 33.7191 18.9026 28.6963 17.8391 26.5717C16.7761 24.4465 15.7142 21.453 16.1976 19.5222C16.287 19.1717 16.2886 17.7364 16.58 17.546C18.8324 16.0745 18.6723 17.4967 19.5759 16.8376C20.0419 16.4974 20.415 16.0863 20.577 15.522C21.1566 13.4941 19.772 9.96199 18.2274 8.41692C17.7242 7.91367 16.9504 7.59684 16.0781 7.42972C15.7428 6.96986 15.2021 6.52956 14.4361 6.12247C12.9923 5.35569 11.2024 5.04956 9.54403 5.35033C9.80917 5.37443 10.4161 5.92267 10.6603 5.95909C10.2905 6.20978 9.307 6.17764 9.31343 6.73471C10.6301 6.60294 12.0728 6.81104 13.2863 7.3499C12.3216 7.45971 11.4236 7.69781 10.7926 8.03098C8.95696 8.99568 8.47433 10.9267 8.95695 13.6323C9.44091 16.3362 11.5661 26.1846 12.2394 29.4679C12.9162 32.7509 10.7926 34.8747 9.44091 35.4543L10.8893 35.5505L10.407 36.6145C12.1435 36.8068 14.0748 36.2283 14.0748 36.2283C13.6897 37.2921 11.0816 37.6759 11.0816 37.6759C11.0816 37.6759 12.3366 38.0624 14.3646 37.2892C16.3942 36.517 17.6503 36.0344 17.6503 36.0344L18.615 38.5447L20.4506 36.7101L21.2244 38.6414C21.222 38.643 22.6696 38.1596 22.1851 35.9391Z" fill="white"/>
<path d="M11.084 13.7673C11.0839 13.6341 11.1102 13.5021 11.1612 13.379C11.2122 13.2559 11.2869 13.144 11.3812 13.0499C11.4754 12.9557 11.5873 12.881 11.7104 12.83C11.8336 12.7791 11.9655 12.7529 12.0988 12.7531C12.2319 12.7531 12.3638 12.7793 12.4868 12.8303C12.6098 12.8813 12.7216 12.956 12.8157 13.0502C12.9098 13.1444 12.9845 13.2562 13.0354 13.3792C13.0863 13.5023 13.1125 13.6341 13.1125 13.7673C13.1126 13.9005 13.0864 14.0323 13.0355 14.1554C12.9846 14.2784 12.9099 14.3903 12.8158 14.4845C12.7216 14.5786 12.6099 14.6534 12.4868 14.7043C12.3638 14.7553 12.2319 14.7816 12.0988 14.7816C11.9655 14.7817 11.8335 14.7556 11.7103 14.7047C11.5872 14.6538 11.4753 14.5791 11.381 14.4849C11.2867 14.3907 11.212 14.2788 11.161 14.1557C11.1101 14.0326 11.0839 13.9006 11.084 13.7673Z" fill="#2D4F8E"/>
<path d="M12.2855 13.4293C12.2855 13.3595 12.3132 13.2926 12.3626 13.2433C12.4119 13.194 12.4788 13.1663 12.5485 13.1663C12.6183 13.1663 12.6852 13.194 12.7345 13.2433C12.7838 13.2926 12.8115 13.3595 12.8115 13.4293C12.8115 13.4991 12.7837 13.5661 12.7343 13.6155C12.6849 13.6649 12.6179 13.6927 12.548 13.6928C12.4783 13.6925 12.4115 13.6646 12.3623 13.6152C12.3131 13.5658 12.2855 13.499 12.2855 13.4293Z" fill="white"/>
<path d="M18.0062 13.1657C18.0066 12.9349 18.0985 12.7136 18.2617 12.5504C18.425 12.3873 18.6464 12.2955 18.8772 12.2953C19.0496 12.2952 19.2182 12.3462 19.3616 12.442C19.505 12.5377 19.6168 12.6739 19.6828 12.8332C19.7488 12.9925 19.7661 13.1678 19.7325 13.3369C19.6988 13.506 19.6157 13.6613 19.4938 13.7832C19.3718 13.9051 19.2164 13.9881 19.0473 14.0216C18.8781 14.0552 18.7029 14.0378 18.5436 13.9717C18.3843 13.9056 18.2483 13.7937 18.1526 13.6502C18.057 13.5068 18.006 13.3382 18.0062 13.1657Z" fill="#2D4F8E"/>
<path d="M19.0392 12.8759C19.0392 12.7519 19.1407 12.6504 19.2636 12.6504C19.3914 12.6504 19.4897 12.7519 19.4897 12.8759C19.49 12.9056 19.4843 12.9351 19.473 12.9627C19.4618 12.9902 19.4451 13.0152 19.4241 13.0362C19.403 13.0572 19.378 13.0738 19.3504 13.085C19.3229 13.0962 19.2934 13.1018 19.2636 13.1014C19.2341 13.1013 19.2048 13.0954 19.1776 13.0841C19.1503 13.0727 19.1255 13.0561 19.1047 13.0351C19.0839 13.0142 19.0673 12.9894 19.0561 12.962C19.0449 12.9347 19.0391 12.9054 19.0392 12.8759Z" fill="white"/>
<path d="M12.3869 10.8284C12.3869 10.8284 11.6226 10.4826 10.8793 10.9497C10.1375 11.4163 10.1648 11.8933 10.1648 11.8933C10.1648 11.8933 9.77028 11.014 10.8218 10.5833C11.8743 10.1521 12.3869 10.8284 12.3869 10.8284Z" fill="url(#paint1_linear_450_13857)"/>
<path d="M19.4019 10.7588C19.4019 10.7588 18.8526 10.4449 18.4262 10.4503C17.551 10.4618 17.3115 10.8488 17.3115 10.8488C17.3115 10.8488 17.4586 9.92614 18.5794 10.1112C19.1863 10.2122 19.4019 10.7588 19.4019 10.7588Z" fill="url(#paint2_linear_450_13857)"/>
</g>
<path d="M15.2028 17.6787C15.3043 17.0651 16.8898 15.9044 18.0122 15.8342C19.1374 15.7635 19.4879 15.7793 20.4253 15.5549C21.3649 15.3304 23.7825 14.7278 24.4515 14.4188C25.1222 14.1092 27.9606 14.572 25.9597 15.6877C25.0935 16.1722 22.7605 17.0619 21.0928 17.5593C19.4272 18.0577 18.4172 17.0834 17.8631 17.9024C17.4222 18.5537 17.7736 19.4456 19.7641 19.6306C22.4522 19.8797 25.0295 18.4201 25.3131 19.1954C25.5981 19.9708 23.0031 20.9384 21.4224 20.9692C19.8447 20.9989 16.6619 19.9258 16.1857 19.5934C15.7076 19.2616 15.0705 18.4873 15.2028 17.6787Z" fill="#FDD20A"/>
<path d="M16.4196 26.0608C16.4196 26.0608 12.6433 24.0465 12.5817 24.8636C12.5179 25.6821 12.5817 29.0173 13.0217 29.2696C13.4625 29.5208 16.6092 27.6337 16.6092 27.6337L16.4196 26.0608ZM17.8664 25.9338C17.8664 25.9338 20.4469 23.9827 21.0144 24.1086C21.5797 24.2369 21.7059 28.2628 21.2021 28.4541C20.6983 28.6402 17.745 27.4321 17.745 27.4321L17.8664 25.9338Z" fill="#65BC46"/>
<path d="M15.5052 26.274C15.5052 27.5947 15.3156 28.1619 15.8828 28.2873C16.4482 28.4139 17.5179 28.2873 17.8963 28.036C18.2739 27.7846 17.9584 26.086 17.8336 25.7689C17.7064 25.4553 15.5052 25.7079 15.5052 26.274Z" fill="#43A244"/>
<path d="M15.7452 25.9804C15.7452 27.3016 15.5559 27.8686 16.1228 27.9942C16.6877 28.1214 17.7576 27.9942 18.1363 27.743C18.514 27.491 18.1985 25.7935 18.0726 25.4756C17.9465 25.1617 15.7452 25.4145 15.7452 25.9804Z" fill="#65BC46"/>
<path d="M19.3377 29.4683C18.2071 29.7557 17.045 29.9008 15.8785 29.9001C14.6157 29.9001 13.3926 29.7295 12.2278 29.415L12.2412 29.5257C13.4273 29.845 14.6504 30.0067 15.8788 30.0067C17.0869 30.0067 18.2597 29.8532 19.3787 29.5653L19.3377 29.4683Z" fill="white"/>
</g>
<defs>
<linearGradient id="paint0_linear_450_13857" x1="15.9871" y1="31.9617" x2="15.9871" y2="0.00514948" gradientUnits="userSpaceOnUse">
<stop stopColor="#D14427"/>
<stop offset="1" stopColor="#E55225"/>
</linearGradient>
<linearGradient id="paint1_linear_450_13857" x1="10.0922" y1="11.1667" x2="12.3869" y2="11.1667" gradientUnits="userSpaceOnUse">
<stop offset="0.006" stopColor="#6176B9"/>
<stop offset="0.691" stopColor="#394A9F"/>
</linearGradient>
<linearGradient id="paint2_linear_450_13857" x1="17.3115" y1="10.4677" x2="19.4016" y2="10.4677" gradientUnits="userSpaceOnUse">
<stop offset="0.006" stopColor="#6176B9"/>
<stop offset="0.691" stopColor="#394A9F"/>
</linearGradient>
<clipPath id="clip0_450_13857">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>
);
}
export default Color_browser_browser_icons_color_duck_duck_go;

View file

@ -0,0 +1,59 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_duckduckgo_mobile(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32">
<g clipPath="url(#clip0_450_13825)">
<path d="M31.0754 15.8762C31.0754 24.5004 24.2938 31.492 15.928 31.492C7.56283 31.492 0.78125 24.5007 0.78125 15.8762C0.78125 7.25176 7.56283 0.260742 15.928 0.260742C24.2938 0.26101 31.0754 7.25203 31.0754 15.8762Z" fill="white"/>
<path d="M29.9672 15.9833C29.9672 23.7041 23.7084 29.964 15.9871 29.964C8.26569 29.964 2.0069 23.7041 2.0069 15.9833C2.0069 8.26244 8.26569 2.00312 15.9871 2.00312C23.7084 2.00312 29.9672 8.26244 29.9672 15.9833ZM31.9655 15.9833C31.9655 24.8073 24.8111 31.9617 15.9871 31.9617C7.16306 31.9617 0.00866699 24.8073 0.00866699 15.9833C0.00866699 7.15927 7.16306 0.00488281 15.9871 0.00488281C24.8111 0.00488281 31.9655 7.159 31.9655 15.9833ZM30.6472 15.9833C30.6472 7.88722 24.0829 1.32365 15.9871 1.32365C7.89154 1.32365 1.3269 7.88749 1.3269 15.9833C1.3269 24.0791 7.8918 30.6429 15.9871 30.6429C24.0829 30.6429 30.6472 24.0791 30.6472 15.9833Z" fill="url(#paint0_linear_450_13825)"/>
<mask id="mask0_450_13825" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="1" y="1" width="30" height="29">
<path d="M30.0221 15.9455C30.0221 23.6843 23.7266 29.9795 15.987 29.9795C8.24877 29.9795 1.9541 23.6835 1.9541 15.9455C1.9541 8.20781 8.24958 1.9126 15.987 1.9126C23.7266 1.91233 30.0221 8.20781 30.0221 15.9455Z" fill="white"/>
</mask>
<g mask="url(#mask0_450_13825)">
<path d="M21.6017 36.3896C21.1194 34.1707 18.3177 29.1479 17.2552 27.0241C16.1933 24.9002 15.129 21.9059 15.6137 19.9744C15.7013 19.623 14.6935 16.9461 14.9833 16.7568C17.2373 15.2864 17.8308 16.9169 18.7331 16.2578C19.1986 15.9169 19.8285 16.5382 19.99 15.9742C20.5679 13.9473 19.1849 10.4141 17.6417 8.8696C17.1368 8.36636 16.3634 8.05032 15.4908 7.8824C15.1549 7.42361 14.6137 6.98224 13.8469 6.57568C12.9931 6.12119 11.1362 5.52099 10.1731 5.3611C9.50573 5.25129 9.35494 5.43797 9.06998 5.48457C9.33566 5.50813 10.5963 6.13109 10.8416 6.16725C10.5963 6.33303 9.8756 6.15948 9.41574 6.36598C9.18407 6.4707 9.01079 6.86868 9.0124 7.05696C10.3274 6.92412 12.38 7.05268 13.5922 7.59261C12.6275 7.70242 11.1603 7.82481 10.5294 8.15638C8.69529 9.12296 7.88512 11.3796 8.36801 14.0841C8.85117 16.7825 10.9761 26.6314 11.6521 29.9203C12.3283 33.2046 10.2037 35.3274 8.85197 35.9073L10.3004 36.0045L9.81801 37.0669C11.5546 37.2595 13.4859 36.681 13.4859 36.681C13.1007 37.7429 10.4927 38.1305 10.4927 38.1305C10.4927 38.1305 11.749 38.5156 13.7757 37.7429C15.8044 36.9708 17.0594 36.4874 17.0594 36.4874L18.0247 38.9977L19.8603 37.1642L20.6325 39.0954C20.6357 39.0952 22.0846 38.6112 21.6017 36.3896Z" fill="#D5D7D8"/>
<path d="M22.1851 35.9391C21.7043 33.7191 18.9026 28.6963 17.8391 26.5717C16.7761 24.4465 15.7142 21.453 16.1976 19.5222C16.287 19.1717 16.2886 17.7364 16.58 17.546C18.8324 16.0745 18.6723 17.4967 19.5759 16.8376C20.0419 16.4974 20.415 16.0863 20.577 15.522C21.1566 13.4941 19.772 9.96199 18.2274 8.41692C17.7242 7.91367 16.9504 7.59684 16.0781 7.42972C15.7428 6.96986 15.2021 6.52956 14.4361 6.12247C12.9923 5.35569 11.2024 5.04956 9.54403 5.35033C9.80917 5.37443 10.4161 5.92267 10.6603 5.95909C10.2905 6.20978 9.307 6.17764 9.31343 6.73471C10.6301 6.60294 12.0728 6.81104 13.2863 7.3499C12.3216 7.45971 11.4236 7.69781 10.7926 8.03098C8.95696 8.99568 8.47433 10.9267 8.95695 13.6323C9.44091 16.3362 11.5661 26.1846 12.2394 29.4679C12.9162 32.7509 10.7926 34.8747 9.44091 35.4543L10.8893 35.5505L10.407 36.6145C12.1435 36.8068 14.0748 36.2283 14.0748 36.2283C13.6897 37.2921 11.0816 37.6759 11.0816 37.6759C11.0816 37.6759 12.3366 38.0624 14.3646 37.2892C16.3942 36.517 17.6503 36.0344 17.6503 36.0344L18.615 38.5447L20.4506 36.7101L21.2244 38.6414C21.222 38.643 22.6696 38.1596 22.1851 35.9391Z" fill="white"/>
<path d="M11.084 13.7673C11.0839 13.6341 11.1102 13.5021 11.1612 13.379C11.2122 13.2559 11.2869 13.144 11.3812 13.0499C11.4754 12.9557 11.5873 12.881 11.7104 12.83C11.8336 12.7791 11.9655 12.7529 12.0988 12.7531C12.2319 12.7531 12.3638 12.7793 12.4868 12.8303C12.6098 12.8813 12.7216 12.956 12.8157 13.0502C12.9098 13.1444 12.9845 13.2562 13.0354 13.3792C13.0863 13.5023 13.1125 13.6341 13.1125 13.7673C13.1126 13.9005 13.0864 14.0323 13.0355 14.1554C12.9846 14.2784 12.9099 14.3903 12.8158 14.4845C12.7216 14.5786 12.6099 14.6534 12.4868 14.7043C12.3638 14.7553 12.2319 14.7816 12.0988 14.7816C11.9655 14.7817 11.8335 14.7556 11.7103 14.7047C11.5872 14.6538 11.4753 14.5791 11.381 14.4849C11.2867 14.3907 11.212 14.2788 11.161 14.1557C11.1101 14.0326 11.0839 13.9006 11.084 13.7673Z" fill="#2D4F8E"/>
<path d="M12.2855 13.4293C12.2855 13.3595 12.3132 13.2926 12.3626 13.2433C12.4119 13.194 12.4788 13.1663 12.5485 13.1663C12.6183 13.1663 12.6852 13.194 12.7345 13.2433C12.7838 13.2926 12.8115 13.3595 12.8115 13.4293C12.8115 13.4991 12.7837 13.5661 12.7343 13.6155C12.6849 13.6649 12.6179 13.6927 12.548 13.6928C12.4783 13.6925 12.4115 13.6646 12.3623 13.6152C12.3131 13.5658 12.2855 13.499 12.2855 13.4293Z" fill="white"/>
<path d="M18.0062 13.1657C18.0066 12.9349 18.0985 12.7136 18.2617 12.5504C18.425 12.3873 18.6464 12.2955 18.8772 12.2953C19.0496 12.2952 19.2182 12.3462 19.3616 12.442C19.505 12.5377 19.6168 12.6739 19.6828 12.8332C19.7488 12.9925 19.7661 13.1678 19.7325 13.3369C19.6988 13.506 19.6157 13.6613 19.4938 13.7832C19.3718 13.9051 19.2164 13.9881 19.0473 14.0216C18.8781 14.0552 18.7029 14.0378 18.5436 13.9717C18.3843 13.9056 18.2483 13.7937 18.1526 13.6502C18.057 13.5068 18.006 13.3382 18.0062 13.1657Z" fill="#2D4F8E"/>
<path d="M19.0392 12.8759C19.0392 12.7519 19.1407 12.6504 19.2636 12.6504C19.3914 12.6504 19.4897 12.7519 19.4897 12.8759C19.49 12.9056 19.4843 12.9351 19.473 12.9627C19.4618 12.9902 19.4451 13.0152 19.4241 13.0362C19.403 13.0572 19.378 13.0738 19.3504 13.085C19.3229 13.0962 19.2934 13.1018 19.2636 13.1014C19.2341 13.1013 19.2048 13.0954 19.1776 13.0841C19.1503 13.0727 19.1255 13.0561 19.1047 13.0351C19.0839 13.0142 19.0673 12.9894 19.0561 12.962C19.0449 12.9347 19.0391 12.9054 19.0392 12.8759Z" fill="white"/>
<path d="M12.3869 10.8284C12.3869 10.8284 11.6226 10.4826 10.8793 10.9497C10.1375 11.4163 10.1648 11.8933 10.1648 11.8933C10.1648 11.8933 9.77028 11.014 10.8218 10.5833C11.8743 10.1521 12.3869 10.8284 12.3869 10.8284Z" fill="url(#paint1_linear_450_13825)"/>
<path d="M19.4019 10.7588C19.4019 10.7588 18.8526 10.4449 18.4262 10.4503C17.551 10.4618 17.3115 10.8488 17.3115 10.8488C17.3115 10.8488 17.4586 9.92614 18.5794 10.1112C19.1863 10.2122 19.4019 10.7588 19.4019 10.7588Z" fill="url(#paint2_linear_450_13825)"/>
</g>
<path d="M15.2028 17.6787C15.3043 17.0651 16.8898 15.9044 18.0122 15.8342C19.1374 15.7635 19.4879 15.7793 20.4253 15.5549C21.3649 15.3304 23.7825 14.7278 24.4515 14.4188C25.1222 14.1092 27.9606 14.572 25.9597 15.6877C25.0935 16.1722 22.7605 17.0619 21.0928 17.5593C19.4272 18.0577 18.4172 17.0834 17.8631 17.9024C17.4222 18.5537 17.7736 19.4456 19.7641 19.6306C22.4522 19.8797 25.0295 18.4201 25.3131 19.1954C25.5981 19.9708 23.0031 20.9384 21.4224 20.9692C19.8447 20.9989 16.6619 19.9258 16.1857 19.5934C15.7076 19.2616 15.0705 18.4873 15.2028 17.6787Z" fill="#FDD20A"/>
<path d="M16.4196 26.0608C16.4196 26.0608 12.6433 24.0465 12.5817 24.8636C12.5179 25.6821 12.5817 29.0173 13.0217 29.2696C13.4625 29.5208 16.6092 27.6337 16.6092 27.6337L16.4196 26.0608ZM17.8664 25.9338C17.8664 25.9338 20.4469 23.9827 21.0144 24.1086C21.5797 24.2369 21.7059 28.2628 21.2021 28.4541C20.6983 28.6402 17.745 27.4321 17.745 27.4321L17.8664 25.9338Z" fill="#65BC46"/>
<path d="M15.5052 26.274C15.5052 27.5947 15.3156 28.1619 15.8828 28.2873C16.4482 28.4139 17.5179 28.2873 17.8963 28.036C18.2739 27.7846 17.9584 26.086 17.8336 25.7689C17.7064 25.4553 15.5052 25.7079 15.5052 26.274Z" fill="#43A244"/>
<path d="M15.7452 25.9804C15.7452 27.3016 15.5559 27.8686 16.1228 27.9942C16.6877 28.1214 17.7576 27.9942 18.1363 27.743C18.514 27.491 18.1985 25.7935 18.0726 25.4756C17.9465 25.1617 15.7452 25.4145 15.7452 25.9804Z" fill="#65BC46"/>
<path d="M19.3377 29.4683C18.2071 29.7557 17.045 29.9008 15.8785 29.9001C14.6157 29.9001 13.3926 29.7295 12.2278 29.415L12.2412 29.5257C13.4273 29.845 14.6504 30.0067 15.8788 30.0067C17.0869 30.0067 18.2597 29.8532 19.3787 29.5653L19.3377 29.4683Z" fill="white"/>
</g>
<defs>
<linearGradient id="paint0_linear_450_13825" x1="15.9871" y1="31.9617" x2="15.9871" y2="0.00514948" gradientUnits="userSpaceOnUse">
<stop stopColor="#D14427"/>
<stop offset="1" stopColor="#E55225"/>
</linearGradient>
<linearGradient id="paint1_linear_450_13825" x1="10.0922" y1="11.1667" x2="12.3869" y2="11.1667" gradientUnits="userSpaceOnUse">
<stop offset="0.006" stopColor="#6176B9"/>
<stop offset="0.691" stopColor="#394A9F"/>
</linearGradient>
<linearGradient id="paint2_linear_450_13825" x1="17.3115" y1="10.4677" x2="19.4016" y2="10.4677" gradientUnits="userSpaceOnUse">
<stop offset="0.006" stopColor="#6176B9"/>
<stop offset="0.691" stopColor="#394A9F"/>
</linearGradient>
<clipPath id="clip0_450_13825">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>
);
}
export default Color_browser_browser_icons_color_duckduckgo_mobile;

View file

@ -0,0 +1,47 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_edge(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M19.5918 15.8727C19.5918 13.2 16.8141 8.58636 10.5564 8.58636C4.29874 8.58636 2 13.8045 2 16.0318C2 8.07727 8.48118 2 16.1756 2C23.87 2 30 7.75909 30 13.6136C30 18.8318 26.073 20.6455 22.8803 20.6455C20.7731 20.6455 18.3786 19.9455 18.3786 18.8318C18.3786 17.9727 19.5918 17.9727 19.5918 15.8727Z" fill="url(#paint0_linear_449_13031)"/>
<path d="M10.5564 8.5863C16.8141 8.5863 19.5918 13.1999 19.5918 15.8727C19.5918 15.8934 19.5917 15.914 19.5914 15.9344C19.5599 14.1545 18.3581 12.4681 15.984 12.4681C12.9829 12.4681 8.92817 16.5408 9.47092 21.5999C9.90538 25.6496 13.3341 31.0818 20.7731 29.1727C20.7731 29.1727 19.3683 29.9999 15.4413 29.9999C8.48119 29.9999 2 23.6363 2 16.3499C2 16.1569 2.00294 15.9676 2.00888 15.7819C2.16935 13.4382 4.52236 8.5863 10.5564 8.5863Z" fill="url(#paint1_linear_449_13031)"/>
<path d="M10.5564 8.5863C16.8141 8.5863 19.5918 13.1999 19.5918 15.8727C19.5918 15.8934 19.5917 15.914 19.5914 15.9344C19.5599 14.1545 18.3581 12.4681 15.984 12.4681C12.9829 12.4681 8.92817 16.5408 9.47092 21.5999C9.90538 25.6496 13.3341 31.0818 20.7731 29.1727C20.7731 29.1727 19.3683 29.9999 15.4413 29.9999C8.48119 29.9999 2 23.6363 2 16.3499C2 16.1569 2.00294 15.9676 2.00888 15.7819C2.16935 13.4382 4.52236 8.5863 10.5564 8.5863Z" fill="url(#paint2_radial_449_13031)"/>
<path d="M19.9065 29.4996C23.8921 28.4124 26.7394 25.0205 27.2543 24.3363C27.829 23.5727 27.9887 23.0954 27.829 22.9363C27.6694 22.7772 27.4459 22.809 26.8712 23.0954C26.2965 23.3818 22.9123 24.7818 19.0491 23.6045C15.1859 22.4272 12.536 19.3727 12.536 16C12.536 13.3909 14.7709 12.4681 15.9841 12.4681C12.983 12.4681 8.92822 16.5409 9.47098 21.6C9.90544 25.6496 13.3342 31.0818 20.7731 29.1727C20.7731 29.1727 20.5138 29.3254 19.9065 29.4996Z" fill="#0E458A"/>
<path d="M19.9065 29.4996C23.8921 28.4124 26.7394 25.0205 27.2543 24.3363C27.829 23.5727 27.9887 23.0954 27.829 22.9363C27.6694 22.7772 27.4459 22.809 26.8712 23.0954C26.2965 23.3818 22.9123 24.7818 19.0491 23.6045C15.1859 22.4272 12.536 19.3727 12.536 16C12.536 13.3909 14.7709 12.4681 15.9841 12.4681C12.983 12.4681 8.92822 16.5409 9.47098 21.6C9.90544 25.6496 13.3342 31.0818 20.7731 29.1727C20.7731 29.1727 20.5138 29.3254 19.9065 29.4996Z" fill="url(#paint3_radial_449_13031)"/>
<defs>
<linearGradient id="paint0_linear_449_13031" x1="28.3717" y1="18.5455" x2="0.988192" y2="12.0765" gradientUnits="userSpaceOnUse">
<stop stopColor="#3BCC50"/>
<stop offset="0.489583" stopColor="#2ABAD6"/>
<stop offset="1" stopColor="#7DCFE7"/>
</linearGradient>
<linearGradient id="paint1_linear_449_13031" x1="11.3865" y1="8.5863" x2="11.3865" y2="29.9999" gradientUnits="userSpaceOnUse">
<stop stopColor="#035989"/>
<stop offset="0.265625" stopColor="#1175B6"/>
<stop offset="1" stopColor="#0470CF"/>
</linearGradient>
<radialGradient id="paint2_radial_449_13031" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(10.9396 18.9909) rotate(59.2143) scale(9.48152 9.49698)">
<stop stopColor="#1284D8"/>
<stop offset="0.813899" stopColor="#1170B2" stop-opacity="0.767762"/>
<stop offset="1" stopColor="#0E649B" stop-opacity="0.65"/>
</radialGradient>
<radialGradient id="paint3_radial_449_13031" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.666 21.6) rotate(77.9982) scale(7.6769 8.28824)">
<stop stopColor="#104890"/>
<stop offset="0.69943" stopColor="#12529E" stop-opacity="0.70624"/>
<stop offset="1" stopColor="#0E4584" stop-opacity="0.58"/>
</radialGradient>
</defs>
</svg>
);
}
export default Color_browser_browser_icons_color_edge;

View file

@ -0,0 +1,47 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_edge_mobile(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M19.5918 15.8727C19.5918 13.2 16.8141 8.58636 10.5564 8.58636C4.29874 8.58636 2 13.8045 2 16.0318C2 8.07727 8.48118 2 16.1756 2C23.87 2 30 7.75909 30 13.6136C30 18.8318 26.073 20.6455 22.8803 20.6455C20.7731 20.6455 18.3786 19.9455 18.3786 18.8318C18.3786 17.9727 19.5918 17.9727 19.5918 15.8727Z" fill="url(#paint0_linear_449_13603)"/>
<path d="M10.5564 8.5863C16.8141 8.5863 19.5918 13.1999 19.5918 15.8727C19.5918 15.8934 19.5917 15.914 19.5914 15.9344C19.5599 14.1545 18.3581 12.4681 15.984 12.4681C12.9829 12.4681 8.92817 16.5408 9.47092 21.5999C9.90538 25.6496 13.3341 31.0818 20.7731 29.1727C20.7731 29.1727 19.3683 29.9999 15.4413 29.9999C8.48119 29.9999 2 23.6363 2 16.3499C2 16.1569 2.00294 15.9676 2.00888 15.7819C2.16935 13.4382 4.52236 8.5863 10.5564 8.5863Z" fill="url(#paint1_linear_449_13603)"/>
<path d="M10.5564 8.5863C16.8141 8.5863 19.5918 13.1999 19.5918 15.8727C19.5918 15.8934 19.5917 15.914 19.5914 15.9344C19.5599 14.1545 18.3581 12.4681 15.984 12.4681C12.9829 12.4681 8.92817 16.5408 9.47092 21.5999C9.90538 25.6496 13.3341 31.0818 20.7731 29.1727C20.7731 29.1727 19.3683 29.9999 15.4413 29.9999C8.48119 29.9999 2 23.6363 2 16.3499C2 16.1569 2.00294 15.9676 2.00888 15.7819C2.16935 13.4382 4.52236 8.5863 10.5564 8.5863Z" fill="url(#paint2_radial_449_13603)"/>
<path d="M19.9065 29.4996C23.892 28.4124 26.7394 25.0205 27.2543 24.3363C27.829 23.5727 27.9886 23.0954 27.829 22.9363C27.6693 22.7772 27.4458 22.809 26.8711 23.0954C26.2965 23.3818 22.9122 24.7818 19.049 23.6045C15.1859 22.4272 12.5359 19.3727 12.5359 16C12.5359 13.3909 14.7708 12.4681 15.984 12.4681C12.9829 12.4681 8.92816 16.5409 9.47092 21.6C9.90538 25.6496 13.3341 31.0818 20.7731 29.1727C20.7731 29.1727 20.5138 29.3254 19.9065 29.4996Z" fill="#0E458A"/>
<path d="M19.9065 29.4996C23.892 28.4124 26.7394 25.0205 27.2543 24.3363C27.829 23.5727 27.9886 23.0954 27.829 22.9363C27.6693 22.7772 27.4458 22.809 26.8711 23.0954C26.2965 23.3818 22.9122 24.7818 19.049 23.6045C15.1859 22.4272 12.5359 19.3727 12.5359 16C12.5359 13.3909 14.7708 12.4681 15.984 12.4681C12.9829 12.4681 8.92816 16.5409 9.47092 21.6C9.90538 25.6496 13.3341 31.0818 20.7731 29.1727C20.7731 29.1727 20.5138 29.3254 19.9065 29.4996Z" fill="url(#paint3_radial_449_13603)"/>
<defs>
<linearGradient id="paint0_linear_449_13603" x1="28.3717" y1="18.5455" x2="0.988192" y2="12.0765" gradientUnits="userSpaceOnUse">
<stop stopColor="#3BCC50"/>
<stop offset="0.489583" stopColor="#2ABAD6"/>
<stop offset="1" stopColor="#7DCFE7"/>
</linearGradient>
<linearGradient id="paint1_linear_449_13603" x1="11.3865" y1="8.5863" x2="11.3865" y2="29.9999" gradientUnits="userSpaceOnUse">
<stop stopColor="#035989"/>
<stop offset="0.265625" stopColor="#1175B6"/>
<stop offset="1" stopColor="#0470CF"/>
</linearGradient>
<radialGradient id="paint2_radial_449_13603" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(10.9396 18.9909) rotate(59.2143) scale(9.48152 9.49698)">
<stop stopColor="#1284D8"/>
<stop offset="0.813899" stopColor="#1170B2" stop-opacity="0.767762"/>
<stop offset="1" stopColor="#0E649B" stop-opacity="0.65"/>
</radialGradient>
<radialGradient id="paint3_radial_449_13603" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.6659 21.6) rotate(77.9982) scale(7.6769 8.28824)">
<stop stopColor="#104890"/>
<stop offset="0.69943" stopColor="#12529E" stop-opacity="0.70624"/>
<stop offset="1" stopColor="#0E4584" stop-opacity="0.58"/>
</radialGradient>
</defs>
</svg>
);
}
export default Color_browser_browser_icons_color_edge_mobile;

View file

@ -0,0 +1,28 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_facebook(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<circle cx="16" cy="16" r="14" fill="url(#paint0_linear_449_13784)"/>
<path d="M21.2137 20.2816L21.8356 16.3301H17.9452V13.767C17.9452 12.6857 18.4877 11.6311 20.2302 11.6311H22V8.26699C22 8.26699 20.3945 8 18.8603 8C15.6548 8 13.5617 9.89294 13.5617 13.3184V16.3301H10V20.2816H13.5617V29.8345C14.2767 29.944 15.0082 30 15.7534 30C16.4986 30 17.2302 29.944 17.9452 29.8345V20.2816H21.2137Z" fill="white"/>
<defs>
<linearGradient id="paint0_linear_449_13784" x1="16" y1="2" x2="16" y2="29.917" gradientUnits="userSpaceOnUse">
<stop stopColor="#18ACFE"/>
<stop offset="1" stopColor="#0163E0"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_browser_browser_icons_color_facebook;

View file

@ -0,0 +1,124 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_firefox(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 1 28 29">
<path d="M28.9905 10.7265C28.3816 9.2574 27.1473 7.67139 26.1784 7.17039C26.967 8.72015 27.4232 10.2746 27.5976 11.4344C27.5976 11.4344 27.5976 11.4426 27.6005 11.4578C26.0156 7.49777 23.3277 5.90065 21.1327 2.42407C21.0213 2.24869 20.9105 2.07331 20.802 1.88566C20.7407 1.77985 20.6911 1.68397 20.648 1.59336C20.557 1.41757 20.4867 1.23179 20.4386 1.03975C20.439 1.03063 20.4359 1.02169 20.4301 1.01467C20.4243 1.00765 20.4161 1.00305 20.4071 1.00175C20.3985 0.999416 20.3894 0.999416 20.3808 1.00175C20.3785 1.00281 20.3763 1.00419 20.3744 1.00584C20.3709 1.00584 20.3674 1.00994 20.3639 1.0111L20.3697 1.0035C16.8483 3.07063 15.6536 6.89446 15.544 8.80784C14.1368 8.90428 12.7913 9.42358 11.683 10.298C11.5672 10.1998 11.4461 10.1081 11.3202 10.0232C11.0008 8.9027 10.9873 7.71683 11.2811 6.58931C9.84091 7.24697 8.72095 8.28463 7.90664 9.20303H7.90023C7.34433 8.49742 7.38341 6.17015 7.41491 5.68435C7.40849 5.65395 7.00076 5.89656 6.94826 5.93339C6.45773 6.2841 5.9992 6.67771 5.57805 7.1096C5.0988 7.59655 4.66096 8.12276 4.26909 8.68274C3.36752 9.96323 2.72814 11.4101 2.3879 12.9398C2.38149 12.9702 2.37565 13.0017 2.36924 13.0327C2.34299 13.1561 2.24791 13.7751 2.23099 13.9096V13.9406C2.10704 14.5803 2.02984 15.2282 2 15.8791V15.951C2 23.7097 8.27646 30 16.0182 30C22.9521 30 28.7088 24.9549 29.8364 18.328C29.8597 18.1485 29.8789 17.9673 29.8999 17.786C30.1788 15.3763 29.869 12.8439 28.9905 10.7265ZM12.8327 21.7239C12.8981 21.7549 12.9599 21.7894 13.027 21.8198L13.0363 21.8256C12.9692 21.7929 12.901 21.759 12.8333 21.7239H12.8327ZM27.6017 11.4642V11.4508V11.466V11.4642Z" fill="url(#paint0_linear_449_13012)"/>
<path d="M28.9905 10.7265C28.3815 9.25741 27.1472 7.67141 26.1783 7.17041C26.967 8.72017 27.4231 10.2746 27.5975 11.4344V11.4631C28.9205 15.0572 28.1995 18.7121 27.1612 20.9452C25.5548 24.4002 21.6658 27.9416 15.5778 27.7692C9.00557 27.5821 3.2115 22.6885 2.12945 16.2842C1.93229 15.2735 2.12945 14.7608 2.22862 13.9406C2.10787 14.5725 2.06179 14.7555 2.00171 15.8791V15.951C2.00171 23.7098 8.27817 30 16.0199 30C22.9538 30 28.7105 24.9549 29.8381 18.328C29.8614 18.1485 29.8806 17.9673 29.9016 17.7861C30.1787 15.3764 29.869 12.8439 28.9905 10.7265V10.7265Z" fill="url(#paint1_radial_449_13012)"/>
<path d="M28.9905 10.7265C28.3815 9.25741 27.1472 7.67141 26.1783 7.17041C26.967 8.72017 27.4231 10.2746 27.5975 11.4344V11.4631C28.9205 15.0572 28.1995 18.7121 27.1612 20.9452C25.5548 24.4002 21.6658 27.9416 15.5778 27.7692C9.00557 27.5821 3.2115 22.6885 2.12945 16.2842C1.93229 15.2735 2.12945 14.7608 2.22862 13.9406C2.10787 14.5725 2.06179 14.7555 2.00171 15.8791V15.951C2.00171 23.7098 8.27817 30 16.0199 30C22.9538 30 28.7105 24.9549 29.8381 18.328C29.8614 18.1485 29.8806 17.9673 29.9016 17.7861C30.1787 15.3764 29.869 12.8439 28.9905 10.7265V10.7265Z" fill="url(#paint2_radial_449_13012)"/>
<path d="M22.1781 12.3774C22.209 12.399 22.2364 12.4207 22.2656 12.4423C21.9138 11.8162 21.4754 11.2431 20.9636 10.74C16.6063 6.37304 19.8215 1.2707 20.3634 1.01114L20.3692 1.00354C16.8477 3.07067 15.6531 6.8945 15.5435 8.80788C15.7068 8.79677 15.8695 8.78274 16.0358 8.78274C18.6636 8.78274 20.9525 10.2314 22.1781 12.3774Z" fill="url(#paint3_radial_449_13012)"/>
<path d="M16.0445 13.2496C16.0218 13.6004 14.7898 14.8047 14.3587 14.8047C10.3724 14.8047 9.72546 17.2214 9.72546 17.2214C9.90046 19.2569 11.3156 20.933 13.0276 21.8198C13.1058 21.8601 13.1845 21.8964 13.2609 21.9326C13.398 21.9911 13.5357 22.0495 13.6728 22.1016C14.2599 22.3091 14.8747 22.4273 15.4968 22.4523C22.4837 22.7809 23.8382 14.0798 18.7954 11.5532C20.0863 11.3281 21.4268 11.849 22.1751 12.3757C20.9502 10.2296 18.6607 8.78101 16.0328 8.78101C15.8666 8.78101 15.7039 8.79504 15.5405 8.80614C14.1344 8.90378 12.7901 9.42366 11.6831 10.298C11.8971 10.4798 12.1386 10.7219 12.6467 11.2234C13.5998 12.1658 16.0393 13.1356 16.0445 13.2496V13.2496Z" fill="url(#paint4_radial_449_13012)"/>
<path d="M16.0445 13.2496C16.0218 13.6004 14.7898 14.8047 14.3587 14.8047C10.3724 14.8047 9.72546 17.2214 9.72546 17.2214C9.90046 19.2569 11.3156 20.933 13.0276 21.8198C13.1058 21.8601 13.1845 21.8964 13.2609 21.9326C13.398 21.9911 13.5357 22.0495 13.6728 22.1016C14.2599 22.3091 14.8747 22.4273 15.4968 22.4523C22.4837 22.7809 23.8382 14.0798 18.7954 11.5532C20.0863 11.3281 21.4268 11.849 22.1751 12.3757C20.9502 10.2296 18.6607 8.78101 16.0328 8.78101C15.8666 8.78101 15.7039 8.79504 15.5405 8.80614C14.1344 8.90378 12.7901 9.42366 11.6831 10.298C11.8971 10.4798 12.1386 10.7219 12.6467 11.2234C13.5998 12.1658 16.0393 13.1356 16.0445 13.2496V13.2496Z" fill="url(#paint5_radial_449_13012)"/>
<path d="M11.0314 9.83093C11.1452 9.90459 11.2385 9.96656 11.3231 10.0233C11.0037 8.90275 10.9902 7.71688 11.284 6.58936C9.84382 7.24702 8.72385 8.28468 7.90955 9.20308C7.97546 9.20132 10.0089 9.16449 11.0314 9.83093V9.83093Z" fill="url(#paint6_radial_449_13012)"/>
<path d="M2.12982 16.2842C3.21187 22.6884 9.00594 27.582 15.5828 27.7691C21.6709 27.9416 25.5575 24.4001 27.1663 20.9451C28.2046 18.7114 28.9255 15.0571 27.6026 11.463V11.4361C27.6026 11.4396 27.6026 11.4443 27.6055 11.4595C28.1025 14.7139 26.4511 17.8667 23.8694 19.9987C23.8667 20.0047 23.8642 20.0107 23.8618 20.0168C18.8307 24.1224 14.0166 22.4937 13.0419 21.829C12.9742 21.7963 12.906 21.7624 12.8383 21.7273C9.90482 20.3243 8.69328 17.6439 8.95285 15.3471C6.47668 15.3471 5.63204 13.253 5.63204 13.253C5.63204 13.253 7.85564 11.6641 10.7862 13.0461C13.5004 14.3264 16.0495 13.2536 16.0495 13.253C16.0442 13.1391 13.6048 12.1663 12.6534 11.2268C12.1453 10.7253 11.9038 10.4832 11.6898 10.3014C11.5739 10.2033 11.4528 10.1115 11.3269 10.0267C11.2435 9.96821 11.1519 9.90975 11.0353 9.83434C10.0127 9.1679 7.9793 9.20473 7.91222 9.20648H7.9058C7.3499 8.50088 7.38899 6.17361 7.42049 5.68781C7.41407 5.65741 7.00633 5.90002 6.95383 5.93685C6.46331 6.28755 6.00478 6.68116 5.58363 7.11305C5.10438 7.6 4.66654 8.12621 4.27467 8.68619C3.3731 9.96669 2.73372 11.4136 2.39348 12.9432C2.3824 12.9701 1.88366 15.1524 2.12982 16.2842V16.2842Z" fill="url(#paint7_radial_449_13012)"/>
<path d="M20.9636 10.7399C21.4754 11.2431 21.9137 11.8162 22.2655 12.4423C22.3384 12.4971 22.4085 12.5557 22.4755 12.6176C25.6534 15.55 23.991 19.7012 23.8644 19.9993C26.4461 17.8673 28.0975 14.7146 27.6005 11.4601C26.0157 7.49777 23.3277 5.90065 21.1327 2.42407C21.0213 2.24869 20.9105 2.07331 20.802 1.88566C20.7407 1.77985 20.6912 1.68397 20.648 1.59336C20.557 1.41757 20.4868 1.23179 20.4386 1.03975C20.439 1.03063 20.436 1.02169 20.4301 1.01467C20.4243 1.00765 20.4161 1.00305 20.4071 1.00175C20.3985 0.999416 20.3894 0.999416 20.3808 1.00175C20.3785 1.00281 20.3764 1.00419 20.3744 1.00584C20.3709 1.00584 20.3674 1.00994 20.3639 1.0111C19.8214 1.27066 16.6062 6.37301 20.9636 10.7399V10.7399Z" fill="url(#paint8_radial_449_13012)"/>
<path d="M22.4743 12.6147C22.4073 12.5528 22.3372 12.4942 22.2643 12.4394C22.2357 12.4177 22.206 12.3961 22.1768 12.3745C21.4284 11.8483 20.088 11.3269 18.7971 11.5519C23.8393 14.0786 22.4854 22.7797 15.4985 22.4511C14.8764 22.4261 14.2616 22.3079 13.6744 22.1004C13.5374 22.0489 13.3997 21.9922 13.2626 21.9314C13.1833 21.8952 13.1045 21.8589 13.0293 21.8186L13.0386 21.8244C14.0133 22.4909 18.8274 24.1196 23.8585 20.0122C23.8585 20.0122 23.8614 20.0046 23.8661 19.9941C23.9909 19.7012 25.6534 15.55 22.4743 12.6147Z" fill="url(#paint9_radial_449_13012)"/>
<path d="M9.72532 17.2214C9.72532 17.2214 10.3722 14.8047 14.3586 14.8047C14.7897 14.8047 16.0216 13.5992 16.0444 13.2497C16.0671 12.9001 13.4953 14.323 10.7811 13.0427C7.85055 11.6607 5.62695 13.2497 5.62695 13.2497C5.62695 13.2497 6.47159 15.3437 8.94776 15.3437C8.68819 17.6405 9.89973 20.3186 12.8332 21.7239C12.8986 21.7549 12.9604 21.7894 13.0275 21.8198C11.3154 20.9347 9.90207 19.2569 9.72532 17.2214Z" fill="url(#paint10_radial_449_13012)"/>
<path d="M28.9905 10.7265C28.3816 9.2574 27.1473 7.67139 26.1784 7.17039C26.967 8.72015 27.4232 10.2746 27.5976 11.4344C27.5976 11.4344 27.5976 11.4426 27.6005 11.4578C26.0156 7.49777 23.3277 5.90065 21.1327 2.42407C21.0213 2.24869 20.9105 2.07331 20.802 1.88566C20.7407 1.77985 20.6911 1.68397 20.648 1.59336C20.557 1.41757 20.4867 1.23179 20.4386 1.03975C20.439 1.03063 20.4359 1.02169 20.4301 1.01467C20.4243 1.00765 20.4161 1.00305 20.4071 1.00175C20.3985 0.999416 20.3894 0.999416 20.3808 1.00175C20.3785 1.00281 20.3763 1.00419 20.3744 1.00584C20.3709 1.00584 20.3674 1.00994 20.3639 1.0111L20.3697 1.0035C16.8483 3.07063 15.6536 6.89446 15.544 8.80784C15.7073 8.79673 15.8701 8.78271 16.0363 8.78271C18.6641 8.78271 20.9531 10.2313 22.1786 12.3774C21.4302 11.8512 20.0897 11.3298 18.7989 11.5549C23.841 14.0815 22.4872 22.7826 15.5002 22.454C14.8782 22.429 14.2633 22.3108 13.6762 22.1033C13.5391 22.0518 13.4015 21.9951 13.2644 21.9343C13.1851 21.8981 13.1063 21.8618 13.0311 21.8215L13.0404 21.8273C12.9727 21.7946 12.9045 21.7607 12.8368 21.7256C12.9021 21.7566 12.964 21.7911 13.0311 21.8215C11.3155 20.9347 9.90216 19.2569 9.72542 17.2213C9.72542 17.2213 10.3723 14.8046 14.3587 14.8046C14.7898 14.8046 16.0217 13.5992 16.0445 13.2496C16.0392 13.1356 13.5998 12.1628 12.6484 11.2234C12.1403 10.7218 11.8988 10.4798 11.6848 10.298C11.5689 10.1998 11.4478 10.1081 11.3219 10.0232C11.0026 8.9027 10.9891 7.71683 11.2829 6.58931C9.84266 7.24697 8.7227 8.28463 7.90839 9.20303H7.90198C7.34608 8.49742 7.38516 6.17015 7.41666 5.68435C7.41024 5.65395 7.00251 5.89656 6.95001 5.93339C6.45948 6.2841 6.00095 6.67771 5.5798 7.1096C5.10055 7.59655 4.66271 8.12276 4.27084 8.68274C3.36927 9.96323 2.72989 11.4101 2.38965 12.9398C2.38324 12.9702 2.3774 13.0017 2.37099 13.0327C2.34474 13.1561 2.22574 13.7839 2.20941 13.9184C2.20941 13.9289 2.20941 13.9084 2.20941 13.9184C2.10019 14.5671 2.03026 15.2219 2 15.8791V15.951C2 23.7097 8.27646 30 16.0182 30C22.9521 30 28.7088 24.9549 29.8364 18.328C29.8597 18.1485 29.8789 17.9673 29.8999 17.786C30.1788 15.3763 29.869 12.8439 28.9905 10.7265ZM27.5999 11.4479V11.4631V11.4479Z" fill="url(#paint11_linear_449_13012)"/>
<defs>
<linearGradient id="paint0_linear_449_13012" x1="27.135" y1="5.49261" x2="3.81392" y2="27.9437" gradientUnits="userSpaceOnUse">
<stop offset="0.05" stopColor="#FFF44F"/>
<stop offset="0.11" stopColor="#FFE847"/>
<stop offset="0.22" stopColor="#FFC830"/>
<stop offset="0.37" stopColor="#FF980E"/>
<stop offset="0.4" stopColor="#FF8B16"/>
<stop offset="0.46" stopColor="#FF672A"/>
<stop offset="0.53" stopColor="#FF3647"/>
<stop offset="0.7" stopColor="#E31587"/>
</linearGradient>
<radialGradient id="paint1_radial_449_13012" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(26.0593 4.21879) scale(29.2246 29.2888)">
<stop offset="0.13" stopColor="#FFBD4F"/>
<stop offset="0.19" stopColor="#FFAC31"/>
<stop offset="0.25" stopColor="#FF9D17"/>
<stop offset="0.28" stopColor="#FF980E"/>
<stop offset="0.4" stopColor="#FF563B"/>
<stop offset="0.47" stopColor="#FF3750"/>
<stop offset="0.71" stopColor="#F5156C"/>
<stop offset="0.78" stopColor="#EB0878"/>
<stop offset="0.86" stopColor="#E50080"/>
</radialGradient>
<radialGradient id="paint2_radial_449_13012" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(15.3806 16.1925) scale(29.2246 29.2888)">
<stop offset="0.3" stopColor="#960E18"/>
<stop offset="0.35" stopColor="#B11927" stop-opacity="0.74"/>
<stop offset="0.43" stopColor="#DB293D" stop-opacity="0.34"/>
<stop offset="0.5" stopColor="#F5334B" stop-opacity="0.09"/>
<stop offset="0.53" stopColor="#FF3750" stop-opacity="0"/>
</radialGradient>
<radialGradient id="paint3_radial_449_13012" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.9045 -2.42803) scale(21.172 21.2184)">
<stop offset="0.13" stopColor="#FFF44F"/>
<stop offset="0.25" stopColor="#FFDC3E"/>
<stop offset="0.51" stopColor="#FF9D12"/>
<stop offset="0.53" stopColor="#FF980E"/>
</radialGradient>
<radialGradient id="paint4_radial_449_13012" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(12.1486 23.8431) scale(13.915 13.9455)">
<stop offset="0.35" stopColor="#3A8EE6"/>
<stop offset="0.47" stopColor="#5C79F0"/>
<stop offset="0.67" stopColor="#9059FF"/>
<stop offset="1" stopColor="#C139E6"/>
</radialGradient>
<radialGradient id="paint5_radial_449_13012" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(15.8004 12.7116) rotate(-13.9265) scale(7.37316 8.67852)">
<stop offset="0.21" stopColor="#9059FF" stop-opacity="0"/>
<stop offset="0.28" stopColor="#8C4FF3" stop-opacity="0.06"/>
<stop offset="0.75" stopColor="#7716A8" stop-opacity="0.45"/>
<stop offset="0.97" stopColor="#6E008B" stop-opacity="0.6"/>
</radialGradient>
<radialGradient id="paint6_radial_449_13012" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(15.0114 3.02041) scale(10.0108 10.0328)">
<stop stopColor="#FFE226"/>
<stop offset="0.12" stopColor="#FFDB27"/>
<stop offset="0.3" stopColor="#FFC82A"/>
<stop offset="0.5" stopColor="#FFA930"/>
<stop offset="0.73" stopColor="#FF7E37"/>
<stop offset="0.79" stopColor="#FF7139"/>
</radialGradient>
<radialGradient id="paint7_radial_449_13012" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(22.8807 -3.34301) scale(42.7109 42.8046)">
<stop offset="0.11" stopColor="#FFF44F"/>
<stop offset="0.46" stopColor="#FF980E"/>
<stop offset="0.62" stopColor="#FF5634"/>
<stop offset="0.72" stopColor="#FF3647"/>
<stop offset="0.9" stopColor="#E31587"/>
</radialGradient>
<radialGradient id="paint8_radial_449_13012" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.7518 1.33374) rotate(84.2447) scale(31.1996 20.4543)">
<stop stopColor="#FFF44F"/>
<stop offset="0.06" stopColor="#FFE847"/>
<stop offset="0.17" stopColor="#FFC830"/>
<stop offset="0.3" stopColor="#FF980E"/>
<stop offset="0.36" stopColor="#FF8B16"/>
<stop offset="0.45" stopColor="#FF672A"/>
<stop offset="0.57" stopColor="#FF3647"/>
<stop offset="0.74" stopColor="#E31587"/>
</radialGradient>
<radialGradient id="paint9_radial_449_13012" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(14.7757 6.73605) scale(26.6644 26.723)">
<stop offset="0.14" stopColor="#FFF44F"/>
<stop offset="0.48" stopColor="#FF980E"/>
<stop offset="0.59" stopColor="#FF5634"/>
<stop offset="0.66" stopColor="#FF3647"/>
<stop offset="0.9" stopColor="#E31587"/>
</radialGradient>
<radialGradient id="paint10_radial_449_13012" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(21.8145 8.30047) scale(29.1844 29.2484)">
<stop offset="0.09" stopColor="#FFF44F"/>
<stop offset="0.23" stopColor="#FFE141"/>
<stop offset="0.51" stopColor="#FFAF1E"/>
<stop offset="0.63" stopColor="#FF980E"/>
</radialGradient>
<linearGradient id="paint11_linear_449_13012" x1="26.855" y1="5.37218" x2="7.01043" y2="25.1739" gradientUnits="userSpaceOnUse">
<stop offset="0.17" stopColor="#FFF44F" stop-opacity="0.8"/>
<stop offset="0.27" stopColor="#FFF44F" stop-opacity="0.63"/>
<stop offset="0.49" stopColor="#FFF44F" stop-opacity="0.22"/>
<stop offset="0.6" stopColor="#FFF44F" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_browser_browser_icons_color_firefox;

View file

@ -0,0 +1,124 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_firefox_ios(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 1 28 29">
<path d="M28.9905 10.7265C28.3816 9.2574 27.1473 7.67139 26.1784 7.17039C26.967 8.72015 27.4232 10.2746 27.5976 11.4344C27.5976 11.4344 27.5976 11.4426 27.6005 11.4578C26.0156 7.49777 23.3277 5.90065 21.1327 2.42407C21.0213 2.24869 20.9105 2.07331 20.802 1.88566C20.7407 1.77985 20.6911 1.68397 20.648 1.59336C20.557 1.41757 20.4867 1.23179 20.4386 1.03975C20.439 1.03063 20.4359 1.02169 20.4301 1.01467C20.4243 1.00765 20.4161 1.00305 20.4071 1.00175C20.3985 0.999416 20.3894 0.999416 20.3808 1.00175C20.3785 1.00281 20.3763 1.00419 20.3744 1.00584C20.3709 1.00584 20.3674 1.00994 20.3639 1.0111L20.3697 1.0035C16.8483 3.07063 15.6536 6.89446 15.544 8.80784C14.1368 8.90428 12.7913 9.42358 11.683 10.298C11.5672 10.1998 11.4461 10.1081 11.3202 10.0232C11.0008 8.9027 10.9873 7.71683 11.2811 6.58931C9.84091 7.24697 8.72095 8.28463 7.90664 9.20303H7.90023C7.34433 8.49742 7.38341 6.17015 7.41491 5.68435C7.40849 5.65395 7.00076 5.89656 6.94826 5.93339C6.45773 6.2841 5.9992 6.67771 5.57805 7.1096C5.0988 7.59655 4.66096 8.12276 4.26909 8.68274C3.36752 9.96323 2.72814 11.4101 2.3879 12.9398C2.38149 12.9702 2.37565 13.0017 2.36924 13.0327C2.34299 13.1561 2.24791 13.7751 2.23099 13.9096V13.9406C2.10704 14.5803 2.02984 15.2282 2 15.8791V15.951C2 23.7097 8.27646 30 16.0182 30C22.9521 30 28.7088 24.9549 29.8364 18.328C29.8597 18.1485 29.8789 17.9673 29.8999 17.786C30.1788 15.3763 29.869 12.8439 28.9905 10.7265ZM12.8327 21.7239C12.8981 21.7549 12.9599 21.7894 13.027 21.8198L13.0363 21.8256C12.9692 21.7929 12.901 21.759 12.8333 21.7239H12.8327ZM27.6017 11.4642V11.4508V11.466V11.4642Z" fill="url(#paint0_linear_449_13550)"/>
<path d="M28.9905 10.7265C28.3815 9.25741 27.1472 7.67141 26.1783 7.17041C26.967 8.72017 27.4231 10.2746 27.5975 11.4344V11.4631C28.9205 15.0572 28.1995 18.7121 27.1612 20.9452C25.5548 24.4002 21.6658 27.9416 15.5778 27.7692C9.00557 27.5821 3.2115 22.6885 2.12945 16.2842C1.93229 15.2735 2.12945 14.7608 2.22862 13.9406C2.10787 14.5725 2.06179 14.7555 2.00171 15.8791V15.951C2.00171 23.7098 8.27817 30 16.0199 30C22.9538 30 28.7105 24.9549 29.8381 18.328C29.8614 18.1485 29.8806 17.9673 29.9016 17.7861C30.1787 15.3764 29.869 12.8439 28.9905 10.7265V10.7265Z" fill="url(#paint1_radial_449_13550)"/>
<path d="M28.9905 10.7265C28.3815 9.25741 27.1472 7.67141 26.1783 7.17041C26.967 8.72017 27.4231 10.2746 27.5975 11.4344V11.4631C28.9205 15.0572 28.1995 18.7121 27.1612 20.9452C25.5548 24.4002 21.6658 27.9416 15.5778 27.7692C9.00557 27.5821 3.2115 22.6885 2.12945 16.2842C1.93229 15.2735 2.12945 14.7608 2.22862 13.9406C2.10787 14.5725 2.06179 14.7555 2.00171 15.8791V15.951C2.00171 23.7098 8.27817 30 16.0199 30C22.9538 30 28.7105 24.9549 29.8381 18.328C29.8614 18.1485 29.8806 17.9673 29.9016 17.7861C30.1787 15.3764 29.869 12.8439 28.9905 10.7265V10.7265Z" fill="url(#paint2_radial_449_13550)"/>
<path d="M22.1781 12.3774C22.209 12.399 22.2364 12.4207 22.2656 12.4423C21.9138 11.8162 21.4754 11.2431 20.9636 10.74C16.6063 6.37304 19.8215 1.2707 20.3634 1.01114L20.3692 1.00354C16.8477 3.07067 15.6531 6.8945 15.5435 8.80788C15.7068 8.79677 15.8695 8.78274 16.0358 8.78274C18.6636 8.78274 20.9525 10.2314 22.1781 12.3774Z" fill="url(#paint3_radial_449_13550)"/>
<path d="M16.0445 13.2496C16.0218 13.6004 14.7898 14.8047 14.3587 14.8047C10.3724 14.8047 9.72546 17.2214 9.72546 17.2214C9.90046 19.2569 11.3156 20.933 13.0276 21.8198C13.1058 21.8601 13.1845 21.8964 13.2609 21.9326C13.398 21.9911 13.5357 22.0495 13.6728 22.1016C14.2599 22.3091 14.8747 22.4273 15.4968 22.4523C22.4837 22.7809 23.8382 14.0798 18.7954 11.5532C20.0863 11.3281 21.4268 11.849 22.1751 12.3757C20.9502 10.2296 18.6607 8.78101 16.0328 8.78101C15.8666 8.78101 15.7039 8.79504 15.5405 8.80614C14.1344 8.90378 12.7901 9.42366 11.6831 10.298C11.8971 10.4798 12.1386 10.7219 12.6467 11.2234C13.5998 12.1658 16.0393 13.1356 16.0445 13.2496V13.2496Z" fill="url(#paint4_radial_449_13550)"/>
<path d="M16.0445 13.2496C16.0218 13.6004 14.7898 14.8047 14.3587 14.8047C10.3724 14.8047 9.72546 17.2214 9.72546 17.2214C9.90046 19.2569 11.3156 20.933 13.0276 21.8198C13.1058 21.8601 13.1845 21.8964 13.2609 21.9326C13.398 21.9911 13.5357 22.0495 13.6728 22.1016C14.2599 22.3091 14.8747 22.4273 15.4968 22.4523C22.4837 22.7809 23.8382 14.0798 18.7954 11.5532C20.0863 11.3281 21.4268 11.849 22.1751 12.3757C20.9502 10.2296 18.6607 8.78101 16.0328 8.78101C15.8666 8.78101 15.7039 8.79504 15.5405 8.80614C14.1344 8.90378 12.7901 9.42366 11.6831 10.298C11.8971 10.4798 12.1386 10.7219 12.6467 11.2234C13.5998 12.1658 16.0393 13.1356 16.0445 13.2496V13.2496Z" fill="url(#paint5_radial_449_13550)"/>
<path d="M11.0314 9.83093C11.1452 9.90459 11.2385 9.96656 11.3231 10.0233C11.0037 8.90275 10.9902 7.71688 11.284 6.58936C9.84382 7.24702 8.72385 8.28468 7.90955 9.20308C7.97546 9.20132 10.0089 9.16449 11.0314 9.83093V9.83093Z" fill="url(#paint6_radial_449_13550)"/>
<path d="M2.12982 16.2842C3.21187 22.6884 9.00594 27.582 15.5828 27.7691C21.6709 27.9416 25.5575 24.4001 27.1663 20.9451C28.2046 18.7114 28.9255 15.0571 27.6026 11.463V11.4361C27.6026 11.4396 27.6026 11.4443 27.6055 11.4595C28.1025 14.7139 26.4511 17.8667 23.8694 19.9987C23.8667 20.0047 23.8642 20.0107 23.8618 20.0168C18.8307 24.1224 14.0166 22.4937 13.0419 21.829C12.9742 21.7963 12.906 21.7624 12.8383 21.7273C9.90482 20.3243 8.69328 17.6439 8.95285 15.3471C6.47668 15.3471 5.63204 13.253 5.63204 13.253C5.63204 13.253 7.85564 11.6641 10.7862 13.0461C13.5004 14.3264 16.0495 13.2536 16.0495 13.253C16.0442 13.1391 13.6048 12.1663 12.6534 11.2268C12.1453 10.7253 11.9038 10.4832 11.6898 10.3014C11.5739 10.2033 11.4528 10.1115 11.3269 10.0267C11.2435 9.96821 11.1519 9.90975 11.0353 9.83434C10.0127 9.1679 7.9793 9.20473 7.91222 9.20648H7.9058C7.3499 8.50088 7.38899 6.17361 7.42049 5.68781C7.41407 5.65741 7.00633 5.90002 6.95383 5.93685C6.46331 6.28755 6.00478 6.68116 5.58363 7.11305C5.10438 7.6 4.66654 8.12621 4.27467 8.68619C3.3731 9.96669 2.73372 11.4136 2.39348 12.9432C2.3824 12.9701 1.88366 15.1524 2.12982 16.2842V16.2842Z" fill="url(#paint7_radial_449_13550)"/>
<path d="M20.9636 10.7399C21.4754 11.2431 21.9137 11.8162 22.2655 12.4423C22.3384 12.4971 22.4085 12.5557 22.4755 12.6176C25.6534 15.55 23.991 19.7012 23.8644 19.9993C26.4461 17.8673 28.0975 14.7146 27.6005 11.4601C26.0157 7.49777 23.3277 5.90065 21.1327 2.42407C21.0213 2.24869 20.9105 2.07331 20.802 1.88566C20.7407 1.77985 20.6912 1.68397 20.648 1.59336C20.557 1.41757 20.4868 1.23179 20.4386 1.03975C20.439 1.03063 20.436 1.02169 20.4301 1.01467C20.4243 1.00765 20.4161 1.00305 20.4071 1.00175C20.3985 0.999416 20.3894 0.999416 20.3808 1.00175C20.3785 1.00281 20.3764 1.00419 20.3744 1.00584C20.3709 1.00584 20.3674 1.00994 20.3639 1.0111C19.8214 1.27066 16.6062 6.37301 20.9636 10.7399V10.7399Z" fill="url(#paint8_radial_449_13550)"/>
<path d="M22.4743 12.6147C22.4073 12.5528 22.3372 12.4942 22.2643 12.4394C22.2357 12.4177 22.206 12.3961 22.1768 12.3745C21.4284 11.8483 20.088 11.3269 18.7971 11.5519C23.8393 14.0786 22.4854 22.7797 15.4985 22.4511C14.8764 22.4261 14.2616 22.3079 13.6744 22.1004C13.5374 22.0489 13.3997 21.9922 13.2626 21.9314C13.1833 21.8952 13.1045 21.8589 13.0293 21.8186L13.0386 21.8244C14.0133 22.4909 18.8274 24.1196 23.8585 20.0122C23.8585 20.0122 23.8614 20.0046 23.8661 19.9941C23.9909 19.7012 25.6534 15.55 22.4743 12.6147Z" fill="url(#paint9_radial_449_13550)"/>
<path d="M9.72532 17.2214C9.72532 17.2214 10.3722 14.8047 14.3586 14.8047C14.7897 14.8047 16.0216 13.5992 16.0444 13.2497C16.0671 12.9001 13.4953 14.323 10.7811 13.0427C7.85055 11.6607 5.62695 13.2497 5.62695 13.2497C5.62695 13.2497 6.47159 15.3437 8.94776 15.3437C8.68819 17.6405 9.89973 20.3186 12.8332 21.7239C12.8986 21.7549 12.9604 21.7894 13.0275 21.8198C11.3154 20.9347 9.90207 19.2569 9.72532 17.2214Z" fill="url(#paint10_radial_449_13550)"/>
<path d="M28.9905 10.7265C28.3816 9.2574 27.1473 7.67139 26.1784 7.17039C26.967 8.72015 27.4232 10.2746 27.5976 11.4344C27.5976 11.4344 27.5976 11.4426 27.6005 11.4578C26.0156 7.49777 23.3277 5.90065 21.1327 2.42407C21.0213 2.24869 20.9105 2.07331 20.802 1.88566C20.7407 1.77985 20.6911 1.68397 20.648 1.59336C20.557 1.41757 20.4867 1.23179 20.4386 1.03975C20.439 1.03063 20.4359 1.02169 20.4301 1.01467C20.4243 1.00765 20.4161 1.00305 20.4071 1.00175C20.3985 0.999416 20.3894 0.999416 20.3808 1.00175C20.3785 1.00281 20.3763 1.00419 20.3744 1.00584C20.3709 1.00584 20.3674 1.00994 20.3639 1.0111L20.3697 1.0035C16.8483 3.07063 15.6536 6.89446 15.544 8.80784C15.7073 8.79673 15.8701 8.78271 16.0363 8.78271C18.6641 8.78271 20.9531 10.2313 22.1786 12.3774C21.4302 11.8512 20.0897 11.3298 18.7989 11.5549C23.841 14.0815 22.4872 22.7826 15.5002 22.454C14.8782 22.429 14.2633 22.3108 13.6762 22.1033C13.5391 22.0518 13.4015 21.9951 13.2644 21.9343C13.1851 21.8981 13.1063 21.8618 13.0311 21.8215L13.0404 21.8273C12.9727 21.7946 12.9045 21.7607 12.8368 21.7256C12.9021 21.7566 12.964 21.7911 13.0311 21.8215C11.3155 20.9347 9.90216 19.2569 9.72542 17.2213C9.72542 17.2213 10.3723 14.8046 14.3587 14.8046C14.7898 14.8046 16.0217 13.5992 16.0445 13.2496C16.0392 13.1356 13.5998 12.1628 12.6484 11.2234C12.1403 10.7218 11.8988 10.4798 11.6848 10.298C11.5689 10.1998 11.4478 10.1081 11.3219 10.0232C11.0026 8.9027 10.9891 7.71683 11.2829 6.58931C9.84266 7.24697 8.7227 8.28463 7.90839 9.20303H7.90198C7.34608 8.49742 7.38516 6.17015 7.41666 5.68435C7.41024 5.65395 7.00251 5.89656 6.95001 5.93339C6.45948 6.2841 6.00095 6.67771 5.5798 7.1096C5.10055 7.59655 4.66271 8.12276 4.27084 8.68274C3.36927 9.96323 2.72989 11.4101 2.38965 12.9398C2.38324 12.9702 2.3774 13.0017 2.37099 13.0327C2.34474 13.1561 2.22574 13.7839 2.20941 13.9184C2.20941 13.9289 2.20941 13.9084 2.20941 13.9184C2.10019 14.5671 2.03026 15.2219 2 15.8791V15.951C2 23.7097 8.27646 30 16.0182 30C22.9521 30 28.7088 24.9549 29.8364 18.328C29.8597 18.1485 29.8789 17.9673 29.8999 17.786C30.1788 15.3763 29.869 12.8439 28.9905 10.7265ZM27.5999 11.4479V11.4631V11.4479Z" fill="url(#paint11_linear_449_13550)"/>
<defs>
<linearGradient id="paint0_linear_449_13550" x1="27.135" y1="5.49261" x2="3.81392" y2="27.9437" gradientUnits="userSpaceOnUse">
<stop offset="0.05" stopColor="#FFF44F"/>
<stop offset="0.11" stopColor="#FFE847"/>
<stop offset="0.22" stopColor="#FFC830"/>
<stop offset="0.37" stopColor="#FF980E"/>
<stop offset="0.4" stopColor="#FF8B16"/>
<stop offset="0.46" stopColor="#FF672A"/>
<stop offset="0.53" stopColor="#FF3647"/>
<stop offset="0.7" stopColor="#E31587"/>
</linearGradient>
<radialGradient id="paint1_radial_449_13550" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(26.0593 4.21879) scale(29.2246 29.2888)">
<stop offset="0.13" stopColor="#FFBD4F"/>
<stop offset="0.19" stopColor="#FFAC31"/>
<stop offset="0.25" stopColor="#FF9D17"/>
<stop offset="0.28" stopColor="#FF980E"/>
<stop offset="0.4" stopColor="#FF563B"/>
<stop offset="0.47" stopColor="#FF3750"/>
<stop offset="0.71" stopColor="#F5156C"/>
<stop offset="0.78" stopColor="#EB0878"/>
<stop offset="0.86" stopColor="#E50080"/>
</radialGradient>
<radialGradient id="paint2_radial_449_13550" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(15.3806 16.1925) scale(29.2246 29.2888)">
<stop offset="0.3" stopColor="#960E18"/>
<stop offset="0.35" stopColor="#B11927" stop-opacity="0.74"/>
<stop offset="0.43" stopColor="#DB293D" stop-opacity="0.34"/>
<stop offset="0.5" stopColor="#F5334B" stop-opacity="0.09"/>
<stop offset="0.53" stopColor="#FF3750" stop-opacity="0"/>
</radialGradient>
<radialGradient id="paint3_radial_449_13550" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.9045 -2.42803) scale(21.172 21.2184)">
<stop offset="0.13" stopColor="#FFF44F"/>
<stop offset="0.25" stopColor="#FFDC3E"/>
<stop offset="0.51" stopColor="#FF9D12"/>
<stop offset="0.53" stopColor="#FF980E"/>
</radialGradient>
<radialGradient id="paint4_radial_449_13550" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(12.1486 23.8431) scale(13.915 13.9455)">
<stop offset="0.35" stopColor="#3A8EE6"/>
<stop offset="0.47" stopColor="#5C79F0"/>
<stop offset="0.67" stopColor="#9059FF"/>
<stop offset="1" stopColor="#C139E6"/>
</radialGradient>
<radialGradient id="paint5_radial_449_13550" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(15.8004 12.7116) rotate(-13.9265) scale(7.37316 8.67852)">
<stop offset="0.21" stopColor="#9059FF" stop-opacity="0"/>
<stop offset="0.28" stopColor="#8C4FF3" stop-opacity="0.06"/>
<stop offset="0.75" stopColor="#7716A8" stop-opacity="0.45"/>
<stop offset="0.97" stopColor="#6E008B" stop-opacity="0.6"/>
</radialGradient>
<radialGradient id="paint6_radial_449_13550" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(15.0114 3.02041) scale(10.0108 10.0328)">
<stop stopColor="#FFE226"/>
<stop offset="0.12" stopColor="#FFDB27"/>
<stop offset="0.3" stopColor="#FFC82A"/>
<stop offset="0.5" stopColor="#FFA930"/>
<stop offset="0.73" stopColor="#FF7E37"/>
<stop offset="0.79" stopColor="#FF7139"/>
</radialGradient>
<radialGradient id="paint7_radial_449_13550" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(22.8807 -3.34301) scale(42.7109 42.8046)">
<stop offset="0.11" stopColor="#FFF44F"/>
<stop offset="0.46" stopColor="#FF980E"/>
<stop offset="0.62" stopColor="#FF5634"/>
<stop offset="0.72" stopColor="#FF3647"/>
<stop offset="0.9" stopColor="#E31587"/>
</radialGradient>
<radialGradient id="paint8_radial_449_13550" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.7518 1.33374) rotate(84.2447) scale(31.1996 20.4543)">
<stop stopColor="#FFF44F"/>
<stop offset="0.06" stopColor="#FFE847"/>
<stop offset="0.17" stopColor="#FFC830"/>
<stop offset="0.3" stopColor="#FF980E"/>
<stop offset="0.36" stopColor="#FF8B16"/>
<stop offset="0.45" stopColor="#FF672A"/>
<stop offset="0.57" stopColor="#FF3647"/>
<stop offset="0.74" stopColor="#E31587"/>
</radialGradient>
<radialGradient id="paint9_radial_449_13550" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(14.7757 6.73605) scale(26.6644 26.723)">
<stop offset="0.14" stopColor="#FFF44F"/>
<stop offset="0.48" stopColor="#FF980E"/>
<stop offset="0.59" stopColor="#FF5634"/>
<stop offset="0.66" stopColor="#FF3647"/>
<stop offset="0.9" stopColor="#E31587"/>
</radialGradient>
<radialGradient id="paint10_radial_449_13550" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(21.8145 8.30047) scale(29.1844 29.2484)">
<stop offset="0.09" stopColor="#FFF44F"/>
<stop offset="0.23" stopColor="#FFE141"/>
<stop offset="0.51" stopColor="#FFAF1E"/>
<stop offset="0.63" stopColor="#FF980E"/>
</radialGradient>
<linearGradient id="paint11_linear_449_13550" x1="26.855" y1="5.37218" x2="7.01043" y2="25.1739" gradientUnits="userSpaceOnUse">
<stop offset="0.17" stopColor="#FFF44F" stop-opacity="0.8"/>
<stop offset="0.27" stopColor="#FFF44F" stop-opacity="0.63"/>
<stop offset="0.49" stopColor="#FFF44F" stop-opacity="0.22"/>
<stop offset="0.6" stopColor="#FFF44F" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_browser_browser_icons_color_firefox_ios;

View file

@ -0,0 +1,124 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_firefox_mobile(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 1 28 29">
<path d="M28.9905 10.7265C28.3816 9.2574 27.1473 7.67139 26.1784 7.17039C26.967 8.72015 27.4232 10.2746 27.5976 11.4344C27.5976 11.4344 27.5976 11.4426 27.6005 11.4578C26.0156 7.49777 23.3277 5.90065 21.1327 2.42407C21.0213 2.24869 20.9105 2.07331 20.802 1.88566C20.7407 1.77985 20.6911 1.68397 20.648 1.59336C20.557 1.41757 20.4867 1.23179 20.4386 1.03975C20.439 1.03063 20.4359 1.02169 20.4301 1.01467C20.4243 1.00765 20.4161 1.00305 20.4071 1.00175C20.3985 0.999416 20.3894 0.999416 20.3808 1.00175C20.3785 1.00281 20.3763 1.00419 20.3744 1.00584C20.3709 1.00584 20.3674 1.00994 20.3639 1.0111L20.3697 1.0035C16.8483 3.07063 15.6536 6.89446 15.544 8.80784C14.1368 8.90428 12.7913 9.42358 11.683 10.298C11.5672 10.1998 11.4461 10.1081 11.3202 10.0232C11.0008 8.9027 10.9873 7.71683 11.2811 6.58931C9.84091 7.24697 8.72095 8.28463 7.90664 9.20303H7.90023C7.34433 8.49742 7.38341 6.17015 7.41491 5.68435C7.40849 5.65395 7.00076 5.89656 6.94826 5.93339C6.45773 6.2841 5.9992 6.67771 5.57805 7.1096C5.0988 7.59655 4.66096 8.12276 4.26909 8.68274C3.36752 9.96323 2.72814 11.4101 2.3879 12.9398C2.38149 12.9702 2.37565 13.0017 2.36924 13.0327C2.34299 13.1561 2.24791 13.7751 2.23099 13.9096V13.9406C2.10704 14.5803 2.02984 15.2282 2 15.8791V15.951C2 23.7097 8.27646 30 16.0182 30C22.9521 30 28.7088 24.9549 29.8364 18.328C29.8597 18.1485 29.8789 17.9673 29.8999 17.786C30.1788 15.3763 29.869 12.8439 28.9905 10.7265ZM12.8327 21.7239C12.8981 21.7549 12.9599 21.7894 13.027 21.8198L13.0363 21.8256C12.9692 21.7929 12.901 21.759 12.8333 21.7239H12.8327ZM27.6017 11.4642V11.4508V11.466V11.4642Z" fill="url(#paint0_linear_449_13380)"/>
<path d="M28.9905 10.7265C28.3815 9.25741 27.1472 7.67141 26.1783 7.17041C26.967 8.72017 27.4231 10.2746 27.5975 11.4344V11.4631C28.9205 15.0572 28.1995 18.7121 27.1612 20.9452C25.5548 24.4002 21.6658 27.9416 15.5778 27.7692C9.00557 27.5821 3.2115 22.6885 2.12945 16.2842C1.93229 15.2735 2.12945 14.7608 2.22862 13.9406C2.10787 14.5725 2.06179 14.7555 2.00171 15.8791V15.951C2.00171 23.7098 8.27817 30 16.0199 30C22.9538 30 28.7105 24.9549 29.8381 18.328C29.8614 18.1485 29.8806 17.9673 29.9016 17.7861C30.1787 15.3764 29.869 12.8439 28.9905 10.7265V10.7265Z" fill="url(#paint1_radial_449_13380)"/>
<path d="M28.9905 10.7265C28.3815 9.25741 27.1472 7.67141 26.1783 7.17041C26.967 8.72017 27.4231 10.2746 27.5975 11.4344V11.4631C28.9205 15.0572 28.1995 18.7121 27.1612 20.9452C25.5548 24.4002 21.6658 27.9416 15.5778 27.7692C9.00557 27.5821 3.2115 22.6885 2.12945 16.2842C1.93229 15.2735 2.12945 14.7608 2.22862 13.9406C2.10787 14.5725 2.06179 14.7555 2.00171 15.8791V15.951C2.00171 23.7098 8.27817 30 16.0199 30C22.9538 30 28.7105 24.9549 29.8381 18.328C29.8614 18.1485 29.8806 17.9673 29.9016 17.7861C30.1787 15.3764 29.869 12.8439 28.9905 10.7265V10.7265Z" fill="url(#paint2_radial_449_13380)"/>
<path d="M22.1781 12.3774C22.209 12.399 22.2364 12.4207 22.2656 12.4423C21.9138 11.8162 21.4754 11.2431 20.9636 10.74C16.6063 6.37304 19.8215 1.2707 20.3634 1.01114L20.3692 1.00354C16.8477 3.07067 15.6531 6.8945 15.5435 8.80788C15.7068 8.79677 15.8695 8.78274 16.0358 8.78274C18.6636 8.78274 20.9525 10.2314 22.1781 12.3774Z" fill="url(#paint3_radial_449_13380)"/>
<path d="M16.0445 13.2496C16.0218 13.6004 14.7898 14.8047 14.3587 14.8047C10.3724 14.8047 9.72546 17.2214 9.72546 17.2214C9.90046 19.2569 11.3156 20.933 13.0276 21.8198C13.1058 21.8601 13.1845 21.8964 13.2609 21.9326C13.398 21.9911 13.5357 22.0495 13.6728 22.1016C14.2599 22.3091 14.8747 22.4273 15.4968 22.4523C22.4837 22.7809 23.8382 14.0798 18.7954 11.5532C20.0863 11.3281 21.4268 11.849 22.1751 12.3757C20.9502 10.2296 18.6607 8.78101 16.0328 8.78101C15.8666 8.78101 15.7039 8.79504 15.5405 8.80614C14.1344 8.90378 12.7901 9.42366 11.6831 10.298C11.8971 10.4798 12.1386 10.7219 12.6467 11.2234C13.5998 12.1658 16.0393 13.1356 16.0445 13.2496V13.2496Z" fill="url(#paint4_radial_449_13380)"/>
<path d="M16.0445 13.2496C16.0218 13.6004 14.7898 14.8047 14.3587 14.8047C10.3724 14.8047 9.72546 17.2214 9.72546 17.2214C9.90046 19.2569 11.3156 20.933 13.0276 21.8198C13.1058 21.8601 13.1845 21.8964 13.2609 21.9326C13.398 21.9911 13.5357 22.0495 13.6728 22.1016C14.2599 22.3091 14.8747 22.4273 15.4968 22.4523C22.4837 22.7809 23.8382 14.0798 18.7954 11.5532C20.0863 11.3281 21.4268 11.849 22.1751 12.3757C20.9502 10.2296 18.6607 8.78101 16.0328 8.78101C15.8666 8.78101 15.7039 8.79504 15.5405 8.80614C14.1344 8.90378 12.7901 9.42366 11.6831 10.298C11.8971 10.4798 12.1386 10.7219 12.6467 11.2234C13.5998 12.1658 16.0393 13.1356 16.0445 13.2496V13.2496Z" fill="url(#paint5_radial_449_13380)"/>
<path d="M11.0314 9.83093C11.1452 9.90459 11.2385 9.96656 11.3231 10.0233C11.0037 8.90275 10.9902 7.71688 11.284 6.58936C9.84382 7.24702 8.72385 8.28468 7.90955 9.20308C7.97546 9.20132 10.0089 9.16449 11.0314 9.83093V9.83093Z" fill="url(#paint6_radial_449_13380)"/>
<path d="M2.12982 16.2842C3.21187 22.6884 9.00594 27.582 15.5828 27.7691C21.6709 27.9416 25.5575 24.4001 27.1663 20.9451C28.2046 18.7114 28.9255 15.0571 27.6026 11.463V11.4361C27.6026 11.4396 27.6026 11.4443 27.6055 11.4595C28.1025 14.7139 26.4511 17.8667 23.8694 19.9987C23.8667 20.0047 23.8642 20.0107 23.8618 20.0168C18.8307 24.1224 14.0166 22.4937 13.0419 21.829C12.9742 21.7963 12.906 21.7624 12.8383 21.7273C9.90482 20.3243 8.69328 17.6439 8.95285 15.3471C6.47668 15.3471 5.63204 13.253 5.63204 13.253C5.63204 13.253 7.85564 11.6641 10.7862 13.0461C13.5004 14.3264 16.0495 13.2536 16.0495 13.253C16.0442 13.1391 13.6048 12.1663 12.6534 11.2268C12.1453 10.7253 11.9038 10.4832 11.6898 10.3014C11.5739 10.2033 11.4528 10.1115 11.3269 10.0267C11.2435 9.96821 11.1519 9.90975 11.0353 9.83434C10.0127 9.1679 7.9793 9.20473 7.91222 9.20648H7.9058C7.3499 8.50088 7.38899 6.17361 7.42049 5.68781C7.41407 5.65741 7.00633 5.90002 6.95383 5.93685C6.46331 6.28755 6.00478 6.68116 5.58363 7.11305C5.10438 7.6 4.66654 8.12621 4.27467 8.68619C3.3731 9.96669 2.73372 11.4136 2.39348 12.9432C2.3824 12.9701 1.88366 15.1524 2.12982 16.2842V16.2842Z" fill="url(#paint7_radial_449_13380)"/>
<path d="M20.9636 10.7399C21.4754 11.2431 21.9137 11.8162 22.2655 12.4423C22.3384 12.4971 22.4085 12.5557 22.4755 12.6176C25.6534 15.55 23.991 19.7012 23.8644 19.9993C26.4461 17.8673 28.0975 14.7146 27.6005 11.4601C26.0157 7.49777 23.3277 5.90065 21.1327 2.42407C21.0213 2.24869 20.9105 2.07331 20.802 1.88566C20.7407 1.77985 20.6912 1.68397 20.648 1.59336C20.557 1.41757 20.4868 1.23179 20.4386 1.03975C20.439 1.03063 20.436 1.02169 20.4301 1.01467C20.4243 1.00765 20.4161 1.00305 20.4071 1.00175C20.3985 0.999416 20.3894 0.999416 20.3808 1.00175C20.3785 1.00281 20.3764 1.00419 20.3744 1.00584C20.3709 1.00584 20.3674 1.00994 20.3639 1.0111C19.8214 1.27066 16.6062 6.37301 20.9636 10.7399V10.7399Z" fill="url(#paint8_radial_449_13380)"/>
<path d="M22.4743 12.6147C22.4073 12.5528 22.3372 12.4942 22.2643 12.4394C22.2357 12.4177 22.206 12.3961 22.1768 12.3745C21.4284 11.8483 20.088 11.3269 18.7971 11.5519C23.8393 14.0786 22.4854 22.7797 15.4985 22.4511C14.8764 22.4261 14.2616 22.3079 13.6744 22.1004C13.5374 22.0489 13.3997 21.9922 13.2626 21.9314C13.1833 21.8952 13.1045 21.8589 13.0293 21.8186L13.0386 21.8244C14.0133 22.4909 18.8274 24.1196 23.8585 20.0122C23.8585 20.0122 23.8614 20.0046 23.8661 19.9941C23.9909 19.7012 25.6534 15.55 22.4743 12.6147Z" fill="url(#paint9_radial_449_13380)"/>
<path d="M9.72532 17.2214C9.72532 17.2214 10.3722 14.8047 14.3586 14.8047C14.7897 14.8047 16.0216 13.5992 16.0444 13.2497C16.0671 12.9001 13.4953 14.323 10.7811 13.0427C7.85055 11.6607 5.62695 13.2497 5.62695 13.2497C5.62695 13.2497 6.47159 15.3437 8.94776 15.3437C8.68819 17.6405 9.89973 20.3186 12.8332 21.7239C12.8986 21.7549 12.9604 21.7894 13.0275 21.8198C11.3154 20.9347 9.90207 19.2569 9.72532 17.2214Z" fill="url(#paint10_radial_449_13380)"/>
<path d="M28.9905 10.7265C28.3816 9.2574 27.1473 7.67139 26.1784 7.17039C26.967 8.72015 27.4232 10.2746 27.5976 11.4344C27.5976 11.4344 27.5976 11.4426 27.6005 11.4578C26.0156 7.49777 23.3277 5.90065 21.1327 2.42407C21.0213 2.24869 20.9105 2.07331 20.802 1.88566C20.7407 1.77985 20.6911 1.68397 20.648 1.59336C20.557 1.41757 20.4867 1.23179 20.4386 1.03975C20.439 1.03063 20.4359 1.02169 20.4301 1.01467C20.4243 1.00765 20.4161 1.00305 20.4071 1.00175C20.3985 0.999416 20.3894 0.999416 20.3808 1.00175C20.3785 1.00281 20.3763 1.00419 20.3744 1.00584C20.3709 1.00584 20.3674 1.00994 20.3639 1.0111L20.3697 1.0035C16.8483 3.07063 15.6536 6.89446 15.544 8.80784C15.7073 8.79673 15.8701 8.78271 16.0363 8.78271C18.6641 8.78271 20.9531 10.2313 22.1786 12.3774C21.4302 11.8512 20.0897 11.3298 18.7989 11.5549C23.841 14.0815 22.4872 22.7826 15.5002 22.454C14.8782 22.429 14.2633 22.3108 13.6762 22.1033C13.5391 22.0518 13.4015 21.9951 13.2644 21.9343C13.1851 21.8981 13.1063 21.8618 13.0311 21.8215L13.0404 21.8273C12.9727 21.7946 12.9045 21.7607 12.8368 21.7256C12.9021 21.7566 12.964 21.7911 13.0311 21.8215C11.3155 20.9347 9.90216 19.2569 9.72542 17.2213C9.72542 17.2213 10.3723 14.8046 14.3587 14.8046C14.7898 14.8046 16.0217 13.5992 16.0445 13.2496C16.0392 13.1356 13.5998 12.1628 12.6484 11.2234C12.1403 10.7218 11.8988 10.4798 11.6848 10.298C11.5689 10.1998 11.4478 10.1081 11.3219 10.0232C11.0026 8.9027 10.9891 7.71683 11.2829 6.58931C9.84266 7.24697 8.7227 8.28463 7.90839 9.20303H7.90198C7.34608 8.49742 7.38516 6.17015 7.41666 5.68435C7.41024 5.65395 7.00251 5.89656 6.95001 5.93339C6.45948 6.2841 6.00095 6.67771 5.5798 7.1096C5.10055 7.59655 4.66271 8.12276 4.27084 8.68274C3.36927 9.96323 2.72989 11.4101 2.38965 12.9398C2.38324 12.9702 2.3774 13.0017 2.37099 13.0327C2.34474 13.1561 2.22574 13.7839 2.20941 13.9184C2.20941 13.9289 2.20941 13.9084 2.20941 13.9184C2.10019 14.5671 2.03026 15.2219 2 15.8791V15.951C2 23.7097 8.27646 30 16.0182 30C22.9521 30 28.7088 24.9549 29.8364 18.328C29.8597 18.1485 29.8789 17.9673 29.8999 17.786C30.1788 15.3763 29.869 12.8439 28.9905 10.7265ZM27.5999 11.4479V11.4631V11.4479Z" fill="url(#paint11_linear_449_13380)"/>
<defs>
<linearGradient id="paint0_linear_449_13380" x1="27.135" y1="5.49261" x2="3.81392" y2="27.9437" gradientUnits="userSpaceOnUse">
<stop offset="0.05" stopColor="#FFF44F"/>
<stop offset="0.11" stopColor="#FFE847"/>
<stop offset="0.22" stopColor="#FFC830"/>
<stop offset="0.37" stopColor="#FF980E"/>
<stop offset="0.4" stopColor="#FF8B16"/>
<stop offset="0.46" stopColor="#FF672A"/>
<stop offset="0.53" stopColor="#FF3647"/>
<stop offset="0.7" stopColor="#E31587"/>
</linearGradient>
<radialGradient id="paint1_radial_449_13380" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(26.0593 4.21879) scale(29.2246 29.2888)">
<stop offset="0.13" stopColor="#FFBD4F"/>
<stop offset="0.19" stopColor="#FFAC31"/>
<stop offset="0.25" stopColor="#FF9D17"/>
<stop offset="0.28" stopColor="#FF980E"/>
<stop offset="0.4" stopColor="#FF563B"/>
<stop offset="0.47" stopColor="#FF3750"/>
<stop offset="0.71" stopColor="#F5156C"/>
<stop offset="0.78" stopColor="#EB0878"/>
<stop offset="0.86" stopColor="#E50080"/>
</radialGradient>
<radialGradient id="paint2_radial_449_13380" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(15.3806 16.1925) scale(29.2246 29.2888)">
<stop offset="0.3" stopColor="#960E18"/>
<stop offset="0.35" stopColor="#B11927" stop-opacity="0.74"/>
<stop offset="0.43" stopColor="#DB293D" stop-opacity="0.34"/>
<stop offset="0.5" stopColor="#F5334B" stop-opacity="0.09"/>
<stop offset="0.53" stopColor="#FF3750" stop-opacity="0"/>
</radialGradient>
<radialGradient id="paint3_radial_449_13380" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.9045 -2.42803) scale(21.172 21.2184)">
<stop offset="0.13" stopColor="#FFF44F"/>
<stop offset="0.25" stopColor="#FFDC3E"/>
<stop offset="0.51" stopColor="#FF9D12"/>
<stop offset="0.53" stopColor="#FF980E"/>
</radialGradient>
<radialGradient id="paint4_radial_449_13380" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(12.1486 23.8431) scale(13.915 13.9455)">
<stop offset="0.35" stopColor="#3A8EE6"/>
<stop offset="0.47" stopColor="#5C79F0"/>
<stop offset="0.67" stopColor="#9059FF"/>
<stop offset="1" stopColor="#C139E6"/>
</radialGradient>
<radialGradient id="paint5_radial_449_13380" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(15.8004 12.7116) rotate(-13.9265) scale(7.37316 8.67852)">
<stop offset="0.21" stopColor="#9059FF" stop-opacity="0"/>
<stop offset="0.28" stopColor="#8C4FF3" stop-opacity="0.06"/>
<stop offset="0.75" stopColor="#7716A8" stop-opacity="0.45"/>
<stop offset="0.97" stopColor="#6E008B" stop-opacity="0.6"/>
</radialGradient>
<radialGradient id="paint6_radial_449_13380" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(15.0114 3.02041) scale(10.0108 10.0328)">
<stop stopColor="#FFE226"/>
<stop offset="0.12" stopColor="#FFDB27"/>
<stop offset="0.3" stopColor="#FFC82A"/>
<stop offset="0.5" stopColor="#FFA930"/>
<stop offset="0.73" stopColor="#FF7E37"/>
<stop offset="0.79" stopColor="#FF7139"/>
</radialGradient>
<radialGradient id="paint7_radial_449_13380" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(22.8807 -3.34301) scale(42.7109 42.8046)">
<stop offset="0.11" stopColor="#FFF44F"/>
<stop offset="0.46" stopColor="#FF980E"/>
<stop offset="0.62" stopColor="#FF5634"/>
<stop offset="0.72" stopColor="#FF3647"/>
<stop offset="0.9" stopColor="#E31587"/>
</radialGradient>
<radialGradient id="paint8_radial_449_13380" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.7518 1.33374) rotate(84.2447) scale(31.1996 20.4543)">
<stop stopColor="#FFF44F"/>
<stop offset="0.06" stopColor="#FFE847"/>
<stop offset="0.17" stopColor="#FFC830"/>
<stop offset="0.3" stopColor="#FF980E"/>
<stop offset="0.36" stopColor="#FF8B16"/>
<stop offset="0.45" stopColor="#FF672A"/>
<stop offset="0.57" stopColor="#FF3647"/>
<stop offset="0.74" stopColor="#E31587"/>
</radialGradient>
<radialGradient id="paint9_radial_449_13380" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(14.7757 6.73605) scale(26.6644 26.723)">
<stop offset="0.14" stopColor="#FFF44F"/>
<stop offset="0.48" stopColor="#FF980E"/>
<stop offset="0.59" stopColor="#FF5634"/>
<stop offset="0.66" stopColor="#FF3647"/>
<stop offset="0.9" stopColor="#E31587"/>
</radialGradient>
<radialGradient id="paint10_radial_449_13380" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(21.8145 8.30047) scale(29.1844 29.2484)">
<stop offset="0.09" stopColor="#FFF44F"/>
<stop offset="0.23" stopColor="#FFE141"/>
<stop offset="0.51" stopColor="#FFAF1E"/>
<stop offset="0.63" stopColor="#FF980E"/>
</radialGradient>
<linearGradient id="paint11_linear_449_13380" x1="26.855" y1="5.37218" x2="7.01043" y2="25.1739" gradientUnits="userSpaceOnUse">
<stop offset="0.17" stopColor="#FFF44F" stop-opacity="0.8"/>
<stop offset="0.27" stopColor="#FFF44F" stop-opacity="0.63"/>
<stop offset="0.49" stopColor="#FFF44F" stop-opacity="0.22"/>
<stop offset="0.6" stopColor="#FFF44F" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_browser_browser_icons_color_firefox_mobile;

View file

@ -0,0 +1,24 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_google(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M30.0014 16.3109C30.0014 15.1598 29.9061 14.3198 29.6998 13.4487H16.2871V18.6442H24.1601C24.0014 19.9354 23.1442 21.8798 21.2394 23.1864L21.2127 23.3604L25.4536 26.58L25.7474 26.6087C28.4458 24.1665 30.0014 20.5731 30.0014 16.3109" fill="#4285F4"/>
<path d="M16.2862 30C20.1433 30 23.3814 28.7555 25.7465 26.6089L21.2386 23.1865C20.0322 24.011 18.4132 24.5866 16.2862 24.5866C12.5085 24.5866 9.30219 22.1444 8.15923 18.7688L7.9917 18.7827L3.58202 22.1272L3.52435 22.2843C5.87353 26.8577 10.6989 30 16.2862 30Z" fill="#34A853"/>
<path d="M8.16007 18.7688C7.85848 17.8977 7.68395 16.9643 7.68395 15.9999C7.68395 15.0354 7.85849 14.1021 8.1442 13.231L8.13621 13.0455L3.67126 9.64734L3.52518 9.71544C2.55696 11.6132 2.0014 13.7444 2.0014 15.9999C2.0014 18.2555 2.55696 20.3865 3.52518 22.2843L8.16007 18.7688" fill="#FBBC05"/>
<path d="M16.2863 7.4133C18.9688 7.4133 20.7783 8.54885 21.8101 9.4978L25.8418 5.64C23.3657 3.38445 20.1434 2 16.2863 2C10.699 2 5.87354 5.1422 3.52435 9.71549L8.14339 13.2311C9.30223 9.85555 12.5086 7.4133 16.2863 7.4133" fill="#EB4335"/>
</svg>
);
}
export default Color_browser_browser_icons_color_google;

View file

@ -0,0 +1,24 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_googlebot(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M30.0014 16.3109C30.0014 15.1598 29.9061 14.3198 29.6998 13.4487H16.2871V18.6442H24.1601C24.0014 19.9354 23.1442 21.8798 21.2394 23.1864L21.2127 23.3604L25.4536 26.58L25.7474 26.6087C28.4458 24.1665 30.0014 20.5731 30.0014 16.3109" fill="#4285F4"/>
<path d="M16.2863 30C20.1434 30 23.3814 28.7555 25.7466 26.6089L21.2386 23.1865C20.0323 24.011 18.4132 24.5866 16.2863 24.5866C12.5086 24.5866 9.30225 22.1444 8.15929 18.7688L7.99176 18.7827L3.58208 22.1272L3.52441 22.2843C5.87359 26.8577 10.699 30 16.2863 30Z" fill="#34A853"/>
<path d="M8.16013 18.7688C7.85855 17.8977 7.68401 16.9643 7.68401 15.9999C7.68401 15.0354 7.85855 14.1021 8.14426 13.231L8.13627 13.0455L3.67132 9.64734L3.52524 9.71544C2.55703 11.6132 2.00146 13.7444 2.00146 15.9999C2.00146 18.2555 2.55703 20.3865 3.52524 22.2843L8.16013 18.7688" fill="#FBBC05"/>
<path d="M16.2864 7.4133C18.9689 7.4133 20.7784 8.54885 21.8102 9.4978L25.8419 5.64C23.3658 3.38445 20.1435 2 16.2864 2C10.699 2 5.8736 5.1422 3.52441 9.71549L8.14345 13.2311C9.30229 9.85555 12.5086 7.4133 16.2864 7.4133" fill="#EB4335"/>
</svg>
);
}
export default Color_browser_browser_icons_color_googlebot;

View file

@ -0,0 +1,22 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_huawei_browser(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32">
<rect width="32" height="32" rx="16" fill="#CE0E2D"/>
<path d="M14.2639 21.2839C14.291 21.2635 14.2978 21.2228 14.2843 21.1889C12.4129 17.1666 10.0783 13.3767 7.32795 9.89589C7.32795 9.89589 5.14266 11.9726 5.29875 14.0561C5.33531 14.5364 5.46622 15.0049 5.68399 15.4346C5.90175 15.8643 6.2021 16.2468 6.56785 16.5604C8.4749 18.4199 13.0898 20.7681 14.1621 21.3042C14.196 21.3178 14.2368 21.311 14.2639 21.2839ZM13.5513 22.8719C13.5377 22.8312 13.497 22.8041 13.4495 22.8041L5.76703 23.0687C6.60178 24.555 8.00662 25.7088 9.46574 25.3558C10.477 25.1047 12.7573 23.5099 13.5106 22.9669C13.5717 22.9194 13.5513 22.8787 13.5513 22.8719ZM13.6667 22.1865C13.7074 22.1254 13.6395 22.0711 13.6395 22.0711C10.2666 19.7908 3.72425 16.2889 3.72425 16.2889C3.5074 16.9536 3.44674 17.6593 3.54698 18.3512C3.64722 19.0431 3.90566 19.7026 4.30221 20.2783C4.69876 20.8541 5.22275 21.3307 5.83344 21.6711C6.44414 22.0114 7.12509 22.2064 7.82338 22.2408C7.93875 22.2611 12.3908 22.2408 13.5852 22.234C13.6192 22.2272 13.6463 22.2136 13.6667 22.1865ZM14.1757 6.57722C13.8431 6.60437 12.9405 6.81475 12.9405 6.81475C10.9045 7.33732 10.4227 9.19008 10.4227 9.19008C10.0494 10.3506 10.4294 11.6333 10.4294 11.6333C11.1081 14.6465 14.4471 19.6076 15.1665 20.6459C15.214 20.7002 15.2547 20.6799 15.2547 20.6799C15.2955 20.6663 15.3294 20.6323 15.3294 20.5848C16.4424 9.50905 14.1757 6.57722 14.1757 6.57722ZM16.7207 20.6663C16.7614 20.6799 16.8089 20.6663 16.8292 20.6256C17.569 19.5601 20.8877 14.6262 21.5663 11.6265C21.5663 11.6265 21.9328 10.1741 21.5799 9.18329C21.5799 9.18329 21.0777 7.30339 19.0417 6.80797C19.0417 6.80797 18.458 6.65866 17.8337 6.57043C17.8337 6.57043 15.5534 9.50226 16.6664 20.5781C16.6596 20.6188 16.6867 20.6527 16.7207 20.6663ZM18.5395 22.8109C18.5214 22.8145 18.5042 22.8218 18.4891 22.8323C18.4739 22.8428 18.461 22.8563 18.4513 22.8719C18.4445 22.9127 18.4513 22.9466 18.4784 22.9737C19.2114 23.5031 21.4442 25.064 22.5164 25.3626C22.5164 25.3626 24.5049 26.0413 26.2287 23.0755L18.5395 22.8109ZM28.2783 16.2753C28.2783 16.2753 21.7496 19.784 18.3698 22.0643C18.3359 22.0915 18.3155 22.1322 18.3291 22.1729C18.3291 22.1729 18.363 22.234 18.4105 22.234C19.6186 22.234 24.1927 22.2408 24.3149 22.2204C24.7696 22.1865 25.2175 22.0847 25.6383 21.915C25.6383 21.915 27.2671 21.3992 28.1086 19.5465C28.1086 19.5465 28.862 18.0399 28.2783 16.2753ZM17.7522 21.2839C17.7794 21.3042 17.8201 21.311 17.854 21.2906C18.9535 20.7409 23.5344 18.4131 25.4279 16.5604C25.4279 16.5604 26.6291 15.5967 26.6902 14.0425C26.826 11.8912 24.661 9.89589 24.661 9.89589C24.661 9.89589 20.6569 14.7483 17.7183 21.1617C17.7136 21.1833 17.7142 21.2057 17.7201 21.227C17.726 21.2483 17.7371 21.2678 17.7522 21.2839Z" fill="white"/>
</svg>
);
}
export default Color_browser_browser_icons_color_huawei_browser;

View file

@ -0,0 +1,21 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_internet_explorer(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M28.4247 10.4547C32.7037 0.58468 23.8399 2.03027 23.3463 2.12873C21.4684 2.50329 19.731 3.10454 18.1285 3.86681C12.0215 3.51526 6.48276 7.85253 5.14644 13.7968C8.29872 10.1926 10.5047 8.73827 11.8258 8.15642C7.94624 11.694 4.10934 16.3198 2.6958 21.4678C-0.859433 34.4159 10.2883 29.003 11.8473 28.1807C13.5259 29.026 15.4156 29.5017 17.4148 29.5017C22.8876 29.5017 27.5439 25.9412 29.2771 20.9692H22.6638C21.6853 22.6541 19.8014 23.7953 17.6371 23.7953C14.466 23.7953 11.8954 21.3466 11.8954 18.3259H29.8975C30.2378 15.629 29.7267 12.8439 28.4247 10.4547ZM27.6499 4.05024C28.7338 4.7959 29.6031 5.96674 28.1102 9.91C26.6782 7.56298 24.524 5.72187 21.9635 4.70993C23.1283 4.13666 26.0127 2.92401 27.6499 4.05024ZM4.61614 28.1545C3.73321 27.2318 3.5772 24.9845 5.52532 20.8893C6.50836 23.7701 8.47016 26.184 11.0058 27.7159C9.74477 28.4234 6.39687 30.0162 4.61614 28.1545ZM11.8676 14.818C11.9683 11.8821 14.4753 9.53143 17.5554 9.53143C20.6356 9.53143 23.1427 11.8821 23.2434 14.818H11.8676Z" fill="#1EBBEE"/>
</svg>
);
}
export default Color_browser_browser_icons_color_internet_explorer;

View file

@ -0,0 +1,28 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_miui_browser(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32">
<g clipPath="url(#clip0_450_13847)">
<path d="M13.1934 0.154182C9.24919 0.334913 6.8678 0.951524 4.83723 2.31232C3.39138 3.26913 2.32826 4.51299 1.56281 6.1502C0.722946 7.94687 0.350853 9.92428 0.191384 13.6027C2.22069e-05 17.717 0.276434 21.8206 0.893045 24C1.44587 25.9774 2.32826 27.4871 3.67843 28.7522C5.34753 30.3043 7.21863 31.123 10.121 31.5588C12.7788 31.9522 18.9342 31.9735 21.6239 31.6014C24.8984 31.1548 26.9821 30.2299 28.6937 28.4545C29.5442 27.5828 29.9376 27.0087 30.4904 25.8499C31.3515 24.0319 31.7023 22.1502 31.8724 18.3867C32 15.697 31.8724 11.8698 31.6067 10.0838C30.9794 5.89505 29.1934 3.17345 26.0784 1.60003C24.4306 0.781425 22.0067 0.303019 18.6366 0.143551C16.0957 0.0266075 15.7555 0.0266075 13.1934 0.154182ZM17.1163 10.0625C18.5196 10.3921 19.2 10.8598 19.6465 11.8166C20.1037 12.7947 20.1781 13.6027 20.1781 18.0146V22.1608L18.6685 22.1289L17.1482 22.097L17.095 18.0572C17.0419 13.6452 17.0206 13.507 16.404 13.0286C15.8512 12.5927 15.3834 12.5396 12.3641 12.5289H9.49371L9.44055 17.313L9.3874 22.097H6.41065L6.37876 16.0479C6.3575 11.2744 6.38939 9.96681 6.48507 9.90302C6.55949 9.84986 8.82394 9.8286 11.5136 9.84986C15.4578 9.89239 16.5422 9.93491 17.1163 10.0625ZM25.4724 9.9987C25.5469 10.1475 25.5788 21.7037 25.5043 22.0758C25.5043 22.1183 24.8133 22.1396 23.9841 22.1289L22.4638 22.097L22.4319 16.101C22.4213 11.7635 22.4425 10.0625 22.5276 9.96681C22.6233 9.84986 22.9954 9.81797 24.016 9.81797C25.2067 9.81797 25.3874 9.83923 25.4724 9.9987ZM14.8625 18.3761V22.1608L13.2997 22.1289L11.7263 22.097L11.6944 18.4824C11.6837 16.4944 11.6944 14.804 11.7263 14.7402C11.7582 14.6339 12.1728 14.602 13.321 14.602H14.8625V18.3761Z" fill="#FF6600"/>
</g>
<defs>
<clipPath id="clip0_450_13847">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>
);
}
export default Color_browser_browser_icons_color_miui_browser;

View file

@ -0,0 +1,171 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_mobile_safari(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M16 30C23.732 30 30 23.732 30 16C30 8.26801 23.732 2 16 2C8.26801 2 2 8.26801 2 16C2 23.732 8.26801 30 16 30Z" fill="url(#paint0_linear_449_13224)"/>
<path d="M16 28.9499C23.1521 28.9499 28.9501 23.152 28.9501 15.9999C28.9501 8.84784 23.1521 3.04993 16 3.04993C8.84796 3.04993 3.05005 8.84784 3.05005 15.9999C3.05005 23.152 8.84796 28.9499 16 28.9499Z" fill="url(#paint1_radial_449_13224)"/>
<path d="M16.0219 6.20007C15.9345 6.20007 15.8579 6.13447 15.8579 6.04697V3.76101C15.8579 3.67351 15.9345 3.60791 16.0219 3.60791C16.1094 3.60791 16.186 3.67351 16.186 3.76101V6.04697C16.175 6.13447 16.1094 6.20007 16.0219 6.20007Z" fill="#F3F3F3"/>
<path d="M16.0219 6.21096C15.9235 6.21096 15.8469 6.13441 15.8469 6.04691V3.76097C15.8469 3.67347 15.9235 3.59692 16.0219 3.59692C16.1204 3.59692 16.1969 3.67347 16.1969 3.76097V6.04691C16.1969 6.13441 16.1094 6.21096 16.0219 6.21096ZM16.0219 3.61871C15.9454 3.61871 15.8688 3.68442 15.8688 3.76097V6.04691C15.8688 6.12346 15.9344 6.18917 16.0219 6.18917C16.0985 6.18917 16.175 6.12346 16.175 6.04691V3.76097C16.1642 3.68442 16.0985 3.61871 16.0219 3.61871V3.61871Z" fill="white"/>
<path d="M17.1157 4.97506C17.0282 4.96411 16.9626 4.89851 16.9626 4.81101L17.0392 3.79373C17.05 3.70634 17.1267 3.64063 17.2142 3.65158C17.3017 3.66254 17.3673 3.72825 17.3673 3.81575L17.2907 4.83291C17.2798 4.92041 17.2032 4.98601 17.1157 4.97517V4.97506Z" fill="#F3F3F3"/>
<path d="M17.1157 4.98592C17.0173 4.97496 16.9517 4.89842 16.9517 4.81092L17.0282 3.79365C17.0392 3.70626 17.1157 3.62971 17.2142 3.64055C17.3125 3.65151 17.3782 3.72817 17.3782 3.81555L17.3017 4.83282C17.2907 4.93127 17.2142 4.99687 17.1157 4.98592ZM17.2142 3.66246C17.1376 3.66246 17.061 3.71722 17.061 3.79376L16.9844 4.81103C16.9844 4.88746 17.0392 4.95317 17.1267 4.96401C17.2032 4.96401 17.2798 4.90937 17.2798 4.83282L17.3563 3.81555C17.3563 3.73901 17.2907 3.67341 17.214 3.66246H17.2142Z" fill="white"/>
<path d="M17.9359 6.39693C17.8483 6.37502 17.7937 6.29847 17.8046 6.21097L18.253 3.9687C18.2749 3.88131 18.3515 3.82656 18.439 3.84846C18.5265 3.87036 18.5811 3.94691 18.5702 4.03441L18.1217 6.27668C18.1108 6.35312 18.0233 6.40788 17.9358 6.39693H17.9359Z" fill="#F3F3F3"/>
<path d="M17.9361 6.40784C17.8376 6.38593 17.7829 6.29843 17.7939 6.21093L18.2423 3.96869C18.2642 3.8813 18.3517 3.81559 18.45 3.8375C18.5484 3.8594 18.6032 3.9469 18.5923 4.0344L18.1438 6.27664C18.1219 6.36403 18.0344 6.41879 17.9361 6.40784ZM18.45 3.8594C18.3735 3.84845 18.2969 3.89214 18.275 3.9688L17.8267 6.21105C17.8158 6.28748 17.8595 6.36403 17.9469 6.38605C18.0235 6.39689 18.1 6.35308 18.1219 6.27653L18.5704 4.0344C18.5813 3.9469 18.5267 3.8813 18.45 3.8594V3.8594Z" fill="white"/>
<path d="M19.2484 5.41251C19.2275 5.40749 19.2079 5.39841 19.1906 5.3858C19.1733 5.37318 19.1586 5.35727 19.1474 5.33899C19.1363 5.3207 19.1288 5.30039 19.1255 5.27922C19.1222 5.25805 19.1231 5.23643 19.1281 5.21561L19.4016 4.23132C19.4234 4.14382 19.5109 4.10001 19.5984 4.12192C19.6859 4.14382 19.7406 4.23132 19.7187 4.31882L19.4453 5.30322C19.4234 5.39061 19.3359 5.43442 19.2484 5.41251Z" fill="#F3F3F3"/>
<path d="M19.2485 5.42352C19.161 5.40161 19.0954 5.30316 19.1282 5.21578L19.4017 4.23127C19.4234 4.14389 19.5219 4.08913 19.6094 4.11103C19.6969 4.13293 19.7625 4.23139 19.7297 4.31877L19.4563 5.30328C19.4344 5.39066 19.3469 5.44542 19.2486 5.42352H19.2485ZM19.6094 4.14389C19.5328 4.12198 19.4454 4.16579 19.4235 4.24234L19.1501 5.22662C19.1282 5.30316 19.1719 5.37982 19.2594 5.40161C19.336 5.42352 19.4235 5.37982 19.4454 5.30328L19.7188 4.31877C19.7297 4.24234 19.686 4.16579 19.6094 4.14377V4.14389Z" fill="white"/>
<path d="M19.7845 6.95474C19.697 6.92188 19.6643 6.82343 19.697 6.74688L20.572 4.63594C20.6047 4.5594 20.7033 4.51559 20.7797 4.5594C20.8673 4.59214 20.9002 4.6907 20.8673 4.76714L19.9924 6.87808C19.9596 6.95474 19.8611 6.99843 19.7846 6.95474H19.7845Z" fill="#F3F3F3"/>
<path d="M19.7845 6.96578C19.7424 6.94977 19.7085 6.91774 19.69 6.87673C19.6716 6.83571 19.6701 6.78905 19.686 6.74698L20.561 4.63601C20.5939 4.54851 20.6923 4.51565 20.7908 4.54851C20.8328 4.56453 20.8668 4.59655 20.8852 4.63757C20.9037 4.67858 20.9051 4.72524 20.8892 4.76732L20.0142 6.87828C19.9704 6.96578 19.872 7.00948 19.7845 6.96578ZM20.7798 4.57041C20.7033 4.53767 20.6158 4.57041 20.5829 4.64696L19.7079 6.75793C19.6752 6.83448 19.7189 6.91103 19.7954 6.94388C19.872 6.97662 19.9595 6.94388 19.9923 6.86733L20.8673 4.75637C20.8892 4.69066 20.8564 4.60316 20.7798 4.57041V4.57041Z" fill="white"/>
<path d="M21.261 6.25474C21.1843 6.21093 21.1515 6.12343 21.1843 6.04689L21.6437 5.13916C21.6873 5.0625 21.7748 5.02965 21.8624 5.07345C21.939 5.11726 21.9717 5.20476 21.939 5.28119L21.4795 6.18903C21.4358 6.26558 21.3483 6.29854 21.2609 6.25474H21.261Z" fill="#F3F3F3"/>
<path d="M21.2611 6.26577C21.1735 6.22197 21.1407 6.12351 21.1844 6.03601L21.6439 5.12828C21.6875 5.04067 21.7861 5.00792 21.8735 5.05162C21.961 5.09542 21.9939 5.19388 21.9501 5.28137L21.4907 6.18911C21.4469 6.27661 21.3485 6.30946 21.261 6.26566L21.2611 6.26577ZM21.8627 5.07352C21.786 5.04078 21.6985 5.06257 21.6658 5.13912L21.2063 6.04697C21.1736 6.11256 21.2063 6.20006 21.2719 6.24387C21.3485 6.27661 21.436 6.25482 21.4688 6.17827L21.9283 5.27042C21.961 5.20483 21.9283 5.11733 21.8627 5.07352Z" fill="white"/>
<path d="M21.4798 7.87353C21.4032 7.81888 21.3813 7.72043 21.436 7.65483L22.7048 5.76256C22.7485 5.68601 22.847 5.67506 22.9235 5.71887C23.0001 5.77351 23.0219 5.87196 22.9673 5.93756L21.6985 7.82983C21.6548 7.90638 21.5563 7.92828 21.4798 7.87353Z" fill="#F3F3F3"/>
<path d="M21.4798 7.88442C21.4033 7.82977 21.3814 7.72037 21.4252 7.64382L22.6939 5.75161C22.7485 5.67506 22.847 5.65316 22.9345 5.70791C23.011 5.76256 23.0329 5.87196 22.9892 5.94851L21.7204 7.84072C21.6658 7.91727 21.5564 7.93906 21.4798 7.88442ZM22.9235 5.72982C22.858 5.68601 22.7595 5.69696 22.7158 5.76256L21.447 7.65478C21.4033 7.72026 21.4251 7.80787 21.4908 7.85156C21.5564 7.89537 21.6548 7.88442 21.6985 7.81882L22.9673 5.93755C23.011 5.87196 22.9892 5.77351 22.9235 5.72982V5.72982Z" fill="white"/>
<path d="M23.0766 7.46886C23.0112 7.4141 22.9893 7.31565 23.0439 7.25005L23.6782 6.4516C23.7329 6.38612 23.8313 6.37505 23.8969 6.42981C23.9626 6.48445 23.9844 6.58291 23.9297 6.6485L23.2954 7.44695C23.2408 7.51255 23.1423 7.5235 23.0768 7.46886H23.0766Z" fill="#F3F3F3"/>
<path d="M23.0657 7.47974C22.9892 7.42498 22.9783 7.31557 23.033 7.23902L23.6673 6.44066C23.7219 6.364 23.8313 6.35305 23.9079 6.41876C23.9844 6.4734 23.9954 6.58281 23.9406 6.65936L23.3063 7.45783C23.2517 7.53439 23.1423 7.54534 23.0657 7.47974V7.47974ZM23.886 6.44055C23.8205 6.3859 23.7329 6.39685 23.6782 6.46245L23.0438 7.26093C23.0002 7.32652 23.0111 7.41403 23.0766 7.46867C23.1423 7.52343 23.2298 7.51248 23.2844 7.44688L23.9188 6.64841C23.9626 6.58281 23.9515 6.48436 23.8861 6.44066L23.886 6.44055Z" fill="white"/>
<path d="M22.9672 9.10941C22.9016 9.04382 22.9016 8.94537 22.9672 8.89061L24.5858 7.28289C24.6515 7.2173 24.7498 7.22814 24.8046 7.28289C24.8592 7.33754 24.8702 7.44694 24.8046 7.50158L23.1969 9.10941C23.1312 9.17501 23.0328 9.17501 22.9672 9.10941V9.10941Z" fill="#F3F3F3"/>
<path d="M22.9562 9.12037C22.9247 9.08828 22.907 9.04508 22.907 9.00007C22.907 8.95507 22.9247 8.91187 22.9562 8.87978L24.5749 7.27193C24.607 7.24035 24.6503 7.22266 24.6953 7.22266C24.7403 7.22266 24.7836 7.24035 24.8157 7.27193C24.8472 7.30403 24.8649 7.34723 24.8649 7.39223C24.8649 7.43723 24.8472 7.48044 24.8157 7.51253L23.1968 9.12026C23.1647 9.1518 23.1215 9.16948 23.0765 9.16948C23.0315 9.16948 22.9883 9.1518 22.9562 9.12026V9.12037ZM24.8047 7.28289C24.7501 7.22813 24.6516 7.22813 24.597 7.28289L22.9781 8.89062C22.9234 8.94537 22.9234 9.04382 22.9781 9.09847C23.0328 9.15323 23.1312 9.15323 23.1859 9.09847L24.8047 7.49074C24.8593 7.43598 24.8593 7.34848 24.8047 7.28289Z" fill="white"/>
<path d="M24.6078 9.02192C24.5532 8.95633 24.5532 8.85788 24.6188 8.80312L25.3953 8.14695C25.4609 8.09231 25.5593 8.10315 25.6141 8.16885C25.6687 8.23445 25.6687 8.3329 25.6031 8.38754L24.8266 9.04382C24.7609 9.09847 24.6625 9.08752 24.6078 9.02192Z" fill="#F3F3F3"/>
<path d="M24.5968 9.03285C24.5312 8.95631 24.5422 8.8469 24.6077 8.79226L25.3842 8.13596C25.4498 8.07036 25.5592 8.08131 25.6248 8.15786C25.6905 8.23441 25.6796 8.34381 25.614 8.39846L24.8374 9.05476C24.7719 9.12024 24.6624 9.1094 24.5969 9.03285H24.5968ZM25.603 8.16881C25.5483 8.10322 25.4608 8.10322 25.3953 8.14691L24.6187 8.80321C24.5641 8.85786 24.5531 8.94535 24.6077 9.01095C24.6624 9.07655 24.75 9.07655 24.8155 9.03285L25.5921 8.37655C25.6577 8.32191 25.6577 8.23441 25.603 8.16881Z" fill="white"/>
<path d="M24.1704 10.597C24.1157 10.5204 24.1376 10.422 24.2142 10.3782L26.1172 9.10946C26.1937 9.06565 26.2922 9.08756 26.3358 9.15327C26.3906 9.22982 26.3687 9.32827 26.2922 9.37196L24.3891 10.6407C24.3234 10.6845 24.225 10.6626 24.1704 10.597V10.597Z" fill="#F3F3F3"/>
<path d="M24.1594 10.5969C24.1047 10.5204 24.1266 10.411 24.2032 10.3563L26.1063 9.08751C26.1828 9.03287 26.2922 9.05477 26.3469 9.14227C26.4016 9.21882 26.3796 9.32822 26.3032 9.38275L24.4001 10.6517C24.3234 10.7064 24.2141 10.6845 24.1594 10.597V10.5969ZM26.325 9.16417C26.2813 9.09847 26.1938 9.07656 26.1282 9.12037L24.225 10.389C24.1595 10.4329 24.1375 10.5204 24.1922 10.5969C24.2359 10.6625 24.3234 10.6844 24.3891 10.6407L26.2922 9.37191C26.3578 9.31727 26.3688 9.22966 26.325 9.16417Z" fill="white"/>
<path d="M25.8002 10.8266C25.7564 10.7499 25.7783 10.6516 25.8548 10.6078L26.7408 10.1047C26.8173 10.0609 26.9158 10.0938 26.9595 10.1702C27.0033 10.2469 26.9814 10.3452 26.9048 10.389L26.0189 10.8922C25.9423 10.9359 25.8439 10.9031 25.8001 10.8265L25.8002 10.8266Z" fill="#F3F3F3"/>
<path d="M25.7893 10.8375C25.7455 10.75 25.7674 10.6515 25.8439 10.6078L26.7299 10.1047C26.8065 10.0609 26.9159 10.0938 26.9596 10.1702C27.0034 10.2578 26.9815 10.3563 26.9049 10.4L26.0189 10.9032C25.9424 10.9469 25.833 10.914 25.7893 10.8375V10.8375ZM26.9486 10.1813C26.9049 10.1047 26.8174 10.0828 26.7518 10.1265L25.8658 10.6297C25.8003 10.6734 25.7783 10.7609 25.8111 10.8265C25.8549 10.9031 25.9424 10.925 26.008 10.8813L26.894 10.3781C26.9596 10.3453 26.9815 10.2578 26.9486 10.1813V10.1813Z" fill="white"/>
<path d="M25.0673 12.2813C25.0345 12.1938 25.0673 12.1063 25.1548 12.0735L27.2657 11.1986C27.3422 11.1657 27.4407 11.2094 27.4734 11.2859C27.5063 11.3734 27.4734 11.4609 27.3859 11.4937L25.2751 12.3687C25.1985 12.4015 25.1001 12.3687 25.0673 12.2813Z" fill="#F3F3F3"/>
<path d="M25.0563 12.2922C25.0235 12.2048 25.0563 12.1063 25.1438 12.0625L27.2547 11.1876C27.2968 11.1717 27.3434 11.1732 27.3844 11.1916C27.4254 11.2101 27.4574 11.244 27.4734 11.286C27.5062 11.3735 27.4734 11.4719 27.3859 11.5156L25.2751 12.3906C25.233 12.4065 25.1864 12.4051 25.1454 12.3866C25.1043 12.3682 25.0723 12.3343 25.0563 12.2923V12.2922ZM27.4516 11.297C27.4187 11.2204 27.3312 11.1876 27.2657 11.2095L25.1547 12.0844C25.0782 12.1172 25.0453 12.2048 25.0782 12.2813C25.1109 12.3579 25.1984 12.3907 25.2641 12.3688L27.3749 11.4938C27.4516 11.4611 27.4845 11.3735 27.4516 11.297Z" fill="white"/>
<path d="M26.6095 12.8283C26.5768 12.7406 26.6204 12.6533 26.7079 12.6204L27.6703 12.3031C27.7469 12.2704 27.8453 12.325 27.8672 12.4016C27.9 12.4891 27.8563 12.5766 27.7688 12.6094L26.8064 12.9267C26.7298 12.9594 26.6423 12.9158 26.6095 12.8281V12.8283Z" fill="#F3F3F3"/>
<path d="M26.5984 12.839C26.5656 12.7515 26.6093 12.6531 26.7079 12.6203L27.6702 12.3031C27.7577 12.2703 27.8561 12.325 27.889 12.4126C27.9217 12.5 27.878 12.5984 27.7795 12.6313L26.8172 12.9485C26.7297 12.9703 26.6312 12.9265 26.5984 12.839ZM27.8671 12.4235C27.8452 12.3469 27.7577 12.3031 27.6811 12.325L26.7187 12.6422C26.6422 12.664 26.6093 12.7515 26.6312 12.8282C26.6531 12.9047 26.7406 12.9484 26.8172 12.9265L27.7796 12.6094C27.8561 12.5766 27.889 12.5 27.8671 12.4234V12.4235Z" fill="white"/>
<path d="M25.6252 14.1297C25.6033 14.0422 25.6579 13.9547 25.7454 13.9438L27.9875 13.5063C28.0749 13.4844 28.1516 13.55 28.1734 13.6375C28.1953 13.725 28.1406 13.8125 28.0531 13.8234L25.811 14.2609C25.7235 14.2719 25.636 14.2172 25.6251 14.1297H25.6252Z" fill="#F3F3F3"/>
<path d="M25.6031 14.1299C25.5812 14.0314 25.6468 13.9439 25.7343 13.922L27.9766 13.4844C28.0641 13.4625 28.1516 13.5283 28.1734 13.6267C28.1953 13.7251 28.1297 13.8126 28.0422 13.8345L25.7999 14.272C25.7125 14.2939 25.6249 14.2283 25.6031 14.1297V14.1299ZM28.1516 13.6376C28.1406 13.561 28.0641 13.5064 27.9875 13.5173L25.7453 13.9548C25.6687 13.9658 25.6141 14.0532 25.6359 14.1299C25.6468 14.2064 25.7234 14.2611 25.8 14.2501L28.0422 13.8126C28.1187 13.7907 28.1734 13.7141 28.1516 13.6376Z" fill="white"/>
<path d="M27.0251 14.9719C27.0141 14.8844 27.0688 14.8078 27.1563 14.7968L28.1624 14.6765C28.2499 14.6656 28.3266 14.7312 28.3374 14.8187C28.3484 14.9063 28.2938 14.9828 28.2063 14.9938L27.2 15.114C27.1234 15.125 27.0359 15.0594 27.025 14.9719H27.0251Z" fill="#F3F3F3"/>
<path d="M27.0141 14.9719C27.0032 14.8734 27.0688 14.7859 27.1563 14.775L28.1624 14.6548C28.2499 14.6438 28.3374 14.7094 28.3484 14.8078C28.3593 14.9063 28.2937 14.9938 28.2062 15.0047L27.2 15.125C27.1126 15.1359 27.025 15.0703 27.0141 14.9719ZM28.3374 14.8188C28.3266 14.7423 28.25 14.6765 28.1734 14.6875L27.1672 14.8078C27.0907 14.8188 27.0359 14.8953 27.0469 14.9719C27.0578 15.0484 27.1344 15.1141 27.2109 15.1032L28.2172 14.9828C28.2937 14.9719 28.3484 14.8953 28.3375 14.8188H28.3374Z" fill="white"/>
<path d="M25.8003 16.0328C25.8003 15.9453 25.8658 15.8688 25.9534 15.8688H28.2393C28.3268 15.8688 28.3924 15.9453 28.3924 16.0328C28.3924 16.1203 28.3268 16.1969 28.2393 16.1969H25.9534C25.8659 16.1969 25.8003 16.1203 25.8003 16.0328Z" fill="#F3F3F3"/>
<path d="M25.7893 16.0329C25.7893 15.9345 25.8659 15.8579 25.9534 15.8579H28.2393C28.3268 15.8579 28.4034 15.9345 28.4034 16.0329C28.4034 16.1313 28.3268 16.2079 28.2393 16.2079H25.9534C25.8659 16.2079 25.7893 16.1313 25.7893 16.0329ZM28.3815 16.0439C28.3815 15.9673 28.3159 15.8908 28.2392 15.8908H25.9535C25.8769 15.8908 25.8112 15.9562 25.8112 16.0439C25.8112 16.1204 25.8769 16.1969 25.9535 16.1969H28.2394C28.316 16.186 28.3816 16.1204 28.3816 16.0439H28.3815Z" fill="white"/>
<path d="M27.0142 17.1375C27.025 17.05 27.0907 16.9844 27.1782 16.9844L28.1954 17.0609C28.2828 17.0719 28.3484 17.1484 28.3374 17.2359C28.3266 17.3234 28.2609 17.389 28.1734 17.389L27.1563 17.3125C27.0797 17.3015 27.014 17.225 27.014 17.1375H27.0142Z" fill="#F3F3F3"/>
<path d="M27.0032 17.1376C27.0141 17.0391 27.0907 16.9735 27.1782 16.9735L28.1955 17.0501C28.2829 17.061 28.3595 17.1376 28.3485 17.236C28.3377 17.3345 28.261 17.4001 28.1735 17.4001L27.1563 17.3235C27.0688 17.3126 27.0032 17.2251 27.0032 17.1376ZM28.3377 17.236C28.3485 17.1595 28.2829 17.0829 28.2064 17.0829L27.189 17.0064C27.1126 17.0064 27.0469 17.061 27.0359 17.1486C27.0251 17.2251 27.0907 17.3016 27.1672 17.3016L28.1846 17.3782C28.261 17.3782 28.3267 17.3127 28.3377 17.236V17.236Z" fill="white"/>
<path d="M25.6033 17.936C25.6252 17.8485 25.7018 17.7937 25.7893 17.8048L28.0315 18.2532C28.119 18.275 28.1737 18.3516 28.1518 18.4391C28.1299 18.5266 28.0534 18.5813 27.9659 18.5704L25.7236 18.1219C25.647 18.111 25.5924 18.0235 25.6033 17.936V17.936Z" fill="#F3F3F3"/>
<path d="M25.5921 17.936C25.614 17.8375 25.7015 17.7829 25.789 17.7937L28.0313 18.2422C28.1188 18.264 28.1844 18.3515 28.1625 18.45C28.1407 18.5484 28.0532 18.6032 27.9657 18.5922L25.7233 18.1438C25.6358 18.1219 25.5811 18.0344 25.5921 17.9361V17.936ZM28.1407 18.45C28.1517 18.3734 28.108 18.2969 28.0313 18.275L25.7889 17.8266C25.7125 17.8157 25.6358 17.8594 25.6139 17.9469C25.603 18.0235 25.6467 18.1 25.7234 18.1219L27.9657 18.5703C28.0532 18.5813 28.1188 18.5265 28.1407 18.45Z" fill="white"/>
<path d="M26.5876 19.2485C26.5926 19.2277 26.6017 19.208 26.6143 19.1907C26.6269 19.1734 26.6428 19.1587 26.661 19.1476C26.6793 19.1364 26.6996 19.1289 26.7208 19.1256C26.7419 19.1223 26.7635 19.1232 26.7844 19.1282L27.7687 19.4016C27.8562 19.4235 27.8999 19.5111 27.8781 19.5985C27.8731 19.6193 27.8641 19.639 27.8515 19.6563C27.8388 19.6737 27.8229 19.6883 27.8046 19.6995C27.7864 19.7107 27.766 19.7182 27.7449 19.7215C27.7237 19.7248 27.7021 19.7239 27.6812 19.7189L26.6969 19.4454C26.6094 19.4235 26.5657 19.336 26.5875 19.2485H26.5876Z" fill="#F3F3F3"/>
<path d="M26.5767 19.2485C26.5986 19.161 26.697 19.0954 26.7845 19.1282L27.7689 19.4015C27.8564 19.4234 27.9112 19.5219 27.8893 19.6094C27.8673 19.6969 27.7689 19.7624 27.6814 19.7297L26.697 19.4563C26.6095 19.4344 26.5548 19.3469 26.5768 19.2486L26.5767 19.2485ZM27.8564 19.6094C27.8783 19.5328 27.8345 19.4453 27.7579 19.4234L26.7736 19.15C26.697 19.1281 26.6205 19.1719 26.5986 19.2594C26.5768 19.336 26.6205 19.4234 26.697 19.4453L27.6814 19.7188C27.7579 19.7297 27.8345 19.686 27.8564 19.6094Z" fill="white"/>
<path d="M25.0453 19.7735C25.0781 19.686 25.1766 19.6531 25.2531 19.686L27.3641 20.5609C27.4406 20.5937 27.4843 20.6922 27.4516 20.7687C27.4187 20.8563 27.3203 20.889 27.2437 20.8563L25.1328 19.9813C25.0453 19.9486 25.0125 19.85 25.0453 19.7736V19.7735Z" fill="#F3F3F3"/>
<path d="M25.0344 19.7625C25.0504 19.7205 25.0825 19.6865 25.1235 19.668C25.1645 19.6496 25.2111 19.6481 25.2532 19.664L27.3641 20.5391C27.4516 20.5719 27.4843 20.6704 27.4516 20.7688C27.4356 20.8109 27.4036 20.8448 27.3625 20.8633C27.3215 20.8817 27.2749 20.8832 27.2328 20.8673L25.1219 19.9923C25.0344 19.9484 25.0017 19.85 25.0344 19.7625ZM27.4297 20.7579C27.4624 20.6813 27.4297 20.5938 27.3532 20.561L25.2423 19.6859C25.1657 19.6532 25.0892 19.6969 25.0563 19.7734C25.0236 19.85 25.0563 19.9375 25.1329 19.9704L27.2438 20.8454C27.3203 20.8673 27.4078 20.8344 27.4297 20.7579Z" fill="white"/>
<path d="M25.7562 21.25C25.8 21.1735 25.8874 21.1406 25.9639 21.1735L26.8716 21.6329C26.9482 21.6656 26.981 21.7641 26.9373 21.8516C26.8935 21.9281 26.806 21.9611 26.7295 21.9281L25.8219 21.4688C25.7452 21.425 25.7124 21.3266 25.7562 21.25Z" fill="#F3F3F3"/>
<path d="M25.7452 21.2391C25.789 21.1516 25.8875 21.1189 25.975 21.1626L26.8828 21.622C26.9703 21.6658 27.0031 21.7643 26.9593 21.8516C26.9156 21.9391 26.817 21.972 26.7297 21.9282L25.8219 21.4689C25.7343 21.4362 25.7015 21.3266 25.7452 21.2391V21.2391ZM26.9266 21.8407C26.9593 21.7641 26.9374 21.6766 26.8608 21.6439L25.9531 21.1845C25.8874 21.1517 25.8 21.1845 25.7562 21.2501C25.7234 21.3266 25.7452 21.4141 25.8218 21.447L26.7295 21.9064C26.8062 21.9391 26.8937 21.9174 26.9266 21.8407Z" fill="white"/>
<path d="M24.1484 21.4578C24.2031 21.3813 24.2906 21.3594 24.3672 21.414L26.2703 22.6828C26.3469 22.7265 26.3578 22.8251 26.3141 22.9015C26.2594 22.9782 26.1719 23 26.0953 22.9453L24.1922 21.6765C24.1156 21.6219 24.0937 21.5234 24.1484 21.4578Z" fill="#F3F3F3"/>
<path d="M24.1374 21.4468C24.1922 21.3703 24.3016 21.3484 24.3781 21.3922L26.2813 22.6609C26.3578 22.7155 26.3797 22.814 26.325 22.9015C26.2703 22.9781 26.1609 22.9999 26.0845 22.9562L24.1812 21.6874C24.0937 21.6328 24.0827 21.5234 24.1374 21.4468ZM26.2922 22.8905C26.3359 22.825 26.325 22.7265 26.2595 22.6828L24.3562 21.414C24.2906 21.3703 24.2031 21.3922 24.1593 21.4578C24.1156 21.5234 24.1266 21.6218 24.192 21.6655L26.0953 22.9343C26.1609 22.9781 26.2484 22.9562 26.2922 22.8906V22.8905Z" fill="white"/>
<path d="M24.5531 23.0438C24.6077 22.9781 24.7062 22.9563 24.7718 23.0111L25.5703 23.6344C25.6359 23.6891 25.6468 23.7875 25.5922 23.8532C25.5375 23.9187 25.4391 23.9407 25.3734 23.886L24.5749 23.2625C24.5094 23.2078 24.4983 23.1094 24.5531 23.0438V23.0438Z" fill="#F3F3F3"/>
<path d="M24.5422 23.0329C24.5969 22.9564 24.7063 22.9454 24.7828 23.0002L25.5812 23.6235C25.6578 23.6782 25.6687 23.7876 25.614 23.8641C25.5593 23.9408 25.4499 23.9516 25.3735 23.897L24.575 23.2735C24.4984 23.2189 24.4876 23.1095 24.5422 23.0329ZM25.5922 23.8533C25.6468 23.7876 25.6359 23.7001 25.5703 23.6454L24.7719 23.022C24.7063 22.9783 24.6188 22.9892 24.5641 23.0547C24.5094 23.1204 24.5203 23.2079 24.5859 23.2626L25.3843 23.886C25.4499 23.9298 25.5374 23.9188 25.5921 23.8533H25.5922Z" fill="white"/>
<path d="M22.9234 22.9345C22.9891 22.8689 23.0876 22.8689 23.1422 22.9345L24.761 24.5422C24.8267 24.6079 24.8157 24.7063 24.761 24.761C24.6955 24.8266 24.5969 24.8266 24.5423 24.761L22.9234 23.1533C22.8688 23.0985 22.8688 22.9891 22.9234 22.9345V22.9345Z" fill="#F3F3F3"/>
<path d="M22.9234 22.9234C22.9555 22.8918 22.9987 22.8741 23.0437 22.8741C23.0888 22.8741 23.132 22.8918 23.1641 22.9234L24.7829 24.5311C24.8144 24.5632 24.8321 24.6064 24.8321 24.6515C24.8321 24.6965 24.8144 24.7397 24.7829 24.7718C24.7508 24.8034 24.7076 24.8211 24.6626 24.8211C24.6175 24.8211 24.5743 24.8034 24.5423 24.7718L22.9234 23.1641C22.8468 23.0984 22.8468 22.9891 22.9234 22.9234ZM24.761 24.7499C24.8157 24.6953 24.8157 24.5968 24.761 24.5422L23.1422 22.9344C23.0875 22.8797 22.9891 22.8797 22.9344 22.9344C22.8797 22.989 22.8797 23.0875 22.9344 23.1421L24.5532 24.7499C24.6078 24.8156 24.6955 24.8156 24.761 24.7499Z" fill="white"/>
<path d="M23.0218 24.564C23.0876 24.5094 23.1859 24.5094 23.2407 24.575L23.9079 25.3406C23.9625 25.4063 23.9516 25.5047 23.8859 25.5594C23.8204 25.614 23.7219 25.614 23.6672 25.5484L22.9999 24.7828C22.9453 24.7282 22.9562 24.6297 23.0218 24.564V24.564Z" fill="#F3F3F3"/>
<path d="M23.011 24.564C23.0876 24.4986 23.186 24.5094 23.2515 24.575L23.9188 25.3406C23.9844 25.4063 23.9734 25.5156 23.8969 25.5813C23.8203 25.6469 23.7219 25.6359 23.6563 25.5703L22.989 24.8047C22.9344 24.7282 22.9344 24.6188 23.0109 24.564H23.011ZM23.886 25.5594C23.9515 25.5047 23.9515 25.4171 23.9078 25.3516L23.2406 24.5859C23.1859 24.5313 23.0984 24.5203 23.0328 24.575C22.9672 24.6297 22.9672 24.7172 23.0109 24.7827L23.6782 25.5484C23.7328 25.614 23.8204 25.614 23.8859 25.5594H23.886Z" fill="white"/>
<path d="M21.447 24.1485C21.5235 24.0939 21.622 24.1158 21.6658 24.1923L22.9345 26.0844C22.9783 26.161 22.9564 26.2594 22.8908 26.3032C22.8142 26.3579 22.7158 26.336 22.672 26.2594L21.4032 24.3672C21.3594 24.2908 21.3813 24.1922 21.4469 24.1485H21.447Z" fill="#F3F3F3"/>
<path d="M21.447 24.1375C21.5235 24.0829 21.6329 24.1048 21.6875 24.1813L22.9563 26.0735C23.0109 26.1499 22.989 26.2593 22.9016 26.3139C22.825 26.3687 22.7157 26.3468 22.6609 26.2702L21.3923 24.3781C21.3377 24.2907 21.3596 24.1923 21.447 24.1376V24.1375ZM22.8907 26.2921C22.9563 26.2483 22.9782 26.1608 22.9344 26.0952L21.6658 24.2031C21.622 24.1376 21.5345 24.1266 21.458 24.1704C21.3923 24.2141 21.3704 24.3016 21.4142 24.3673L22.6828 26.2593C22.7266 26.3139 22.8251 26.3358 22.8906 26.292L22.8907 26.2921Z" fill="white"/>
<path d="M21.2172 25.7671C21.2938 25.7234 21.3922 25.7453 21.4359 25.8219L21.9391 26.7078C21.9828 26.7844 21.9499 26.8828 21.8734 26.9265C21.7968 26.9703 21.6984 26.9484 21.6547 26.8719L21.1516 25.9859C21.1188 25.9094 21.1407 25.8109 21.2171 25.7672L21.2172 25.7671Z" fill="#F3F3F3"/>
<path d="M21.2171 25.7563C21.3046 25.7125 21.4031 25.7344 21.4468 25.811L21.9499 26.697C21.9937 26.7736 21.9718 26.883 21.8844 26.9267C21.7968 26.9705 21.6983 26.9486 21.6546 26.8721L21.1516 25.986C21.1077 25.9095 21.1296 25.811 21.217 25.7563H21.2171ZM21.8733 26.9159C21.9391 26.8721 21.9718 26.7845 21.9281 26.7189L21.425 25.8329C21.3812 25.7673 21.2937 25.7454 21.2281 25.7781C21.1624 25.8219 21.1296 25.9095 21.1733 25.9751L21.6766 26.8611C21.7093 26.9267 21.8077 26.9596 21.8733 26.9158V26.9159Z" fill="white"/>
<path d="M19.7626 25.0454C19.8501 25.0126 19.9376 25.0454 19.9705 25.1219L20.8564 27.2328C20.8892 27.3094 20.8455 27.4078 20.7689 27.4405C20.6924 27.4734 20.5939 27.4405 20.5612 27.364L19.6752 25.2532C19.6424 25.1765 19.6861 25.0782 19.7626 25.0454Z" fill="#F3F3F3"/>
<path d="M19.7624 25.0344C19.8499 25.0017 19.9484 25.0344 19.9922 25.1219L20.8781 27.2329C20.894 27.2749 20.8925 27.3216 20.874 27.3626C20.8556 27.4035 20.8217 27.4356 20.7797 27.4516C20.6922 27.4844 20.5937 27.4516 20.55 27.3641L19.6641 25.2532C19.6313 25.1766 19.6751 25.0782 19.7624 25.0344V25.0344ZM20.7578 27.4298C20.8343 27.3969 20.8672 27.3094 20.8343 27.2438L19.9484 25.1329C19.9156 25.0563 19.8281 25.0235 19.7516 25.0563C19.6751 25.0891 19.6421 25.1766 19.6751 25.2423L20.5609 27.3532C20.6047 27.4298 20.6812 27.4625 20.7578 27.4298Z" fill="white"/>
<path d="M19.2265 26.5985C19.3141 26.5658 19.4015 26.6095 19.4344 26.697L19.7516 27.6595C19.7844 27.736 19.7297 27.8345 19.6532 27.8564C19.5657 27.8891 19.4782 27.8454 19.4454 27.7579L19.1282 26.7954C19.0954 26.7189 19.1391 26.6314 19.2266 26.5985H19.2265Z" fill="#F3F3F3"/>
<path d="M19.2158 26.5876C19.2579 26.5717 19.3045 26.5732 19.3455 26.5916C19.3865 26.6101 19.4185 26.644 19.4346 26.686L19.7519 27.6485C19.7846 27.736 19.7299 27.8344 19.6423 27.8673C19.6003 27.8831 19.5536 27.8817 19.5126 27.8632C19.4716 27.8448 19.4396 27.8108 19.4236 27.7688L19.1064 26.8064C19.0845 26.7189 19.1283 26.6204 19.2158 26.5876ZM19.6424 27.8453C19.719 27.8235 19.7627 27.736 19.7409 27.6594L19.4236 26.697C19.4018 26.6204 19.3143 26.5876 19.2377 26.6095C19.1611 26.6314 19.1174 26.7189 19.1393 26.7954L19.4565 27.7579C19.462 27.7764 19.4715 27.7936 19.4841 27.8083C19.4968 27.823 19.5124 27.8348 19.5299 27.8431C19.5475 27.8514 19.5666 27.8558 19.5859 27.8562C19.6053 27.8566 19.6246 27.8529 19.6424 27.8454V27.8453Z" fill="white"/>
<path d="M17.936 25.6032C18.0234 25.5813 18.111 25.636 18.1219 25.7235L18.5814 27.9658C18.6033 28.0532 18.5375 28.1299 18.45 28.1516C18.3626 28.1735 18.275 28.1189 18.2642 28.0314L17.8046 25.7891C17.7937 25.7125 17.8484 25.625 17.9359 25.6031L17.936 25.6032Z" fill="#F3F3F3"/>
<path d="M17.9361 25.592C18.0344 25.5702 18.1219 25.6358 18.1438 25.7233L18.6031 27.9657C18.625 28.0531 18.5593 28.1516 18.4718 28.1626C18.3734 28.1845 18.2859 28.1189 18.2641 28.0313L17.8047 25.7889C17.7829 25.7014 17.8376 25.6139 17.936 25.5921L17.9361 25.592ZM18.4499 28.1406C18.5266 28.1298 18.5812 28.0531 18.5703 27.9656L18.1109 25.7233C18.1001 25.6467 18.0126 25.5921 17.936 25.6139C17.8594 25.6248 17.8048 25.7014 17.8157 25.7889L18.2751 28.0313C18.2969 28.1079 18.3734 28.1516 18.4501 28.1408L18.4499 28.1406Z" fill="white"/>
<path d="M17.1048 27.0249C17.1923 27.014 17.2688 27.0688 17.2907 27.1562L17.4219 28.1624C17.4328 28.2499 17.3672 28.3265 17.2796 28.3374C17.1923 28.3484 17.1157 28.2937 17.0938 28.2062L16.9626 27.1999C16.9517 27.1124 17.0173 27.0359 17.1048 27.0249Z" fill="#F3F3F3"/>
<path d="M17.1046 27.0141C17.2031 27.0033 17.2906 27.0689 17.3015 27.1564L17.4328 28.1626C17.4438 28.2501 17.3781 28.3376 17.2796 28.3486C17.1811 28.3595 17.0936 28.2939 17.0826 28.2063L16.9514 27.2001C16.9404 27.1126 17.0061 27.0251 17.1046 27.0141ZM17.2687 28.3267C17.3453 28.3158 17.411 28.2392 17.4 28.1626L17.2687 27.1564C17.2577 27.0798 17.1811 27.0251 17.1046 27.036C17.028 27.047 16.9622 27.1235 16.9732 27.2001L17.1046 28.2064C17.1155 28.283 17.1921 28.3376 17.2687 28.3267Z" fill="white"/>
<path d="M15.9782 25.7999C16.0657 25.7999 16.1423 25.8656 16.1423 25.9531V28.239C16.1423 28.3265 16.0657 28.3922 15.9782 28.3922C15.8908 28.3922 15.8142 28.3265 15.8142 28.239V25.9531C15.8252 25.8656 15.8908 25.7999 15.9782 25.7999Z" fill="#F3F3F3"/>
<path d="M15.9782 25.7889C16.0767 25.7889 16.1532 25.8655 16.1532 25.953V28.2389C16.1532 28.3264 16.0767 28.403 15.9782 28.403C15.8798 28.403 15.8032 28.3264 15.8032 28.2389V25.9531C15.8032 25.8656 15.8907 25.7889 15.9782 25.7889ZM15.9782 28.3812C16.0548 28.3812 16.1313 28.3156 16.1313 28.2389V25.9531C16.1313 25.8764 16.0657 25.8108 15.9782 25.8108C15.9017 25.8108 15.8251 25.8764 15.8251 25.9531V28.2389C15.836 28.3156 15.9017 28.3812 15.9782 28.3812Z" fill="white"/>
<path d="M14.8844 27.025C14.9719 27.0359 15.0375 27.1015 15.0375 27.189L14.9609 28.2063C14.9501 28.2938 14.8734 28.3594 14.7859 28.3485C14.6984 28.3375 14.6328 28.2719 14.6328 28.1844L14.7094 27.1671C14.7203 27.0798 14.7969 27.014 14.8844 27.025Z" fill="#F3F3F3"/>
<path d="M14.8843 27.0141C14.9828 27.0251 15.0484 27.1016 15.0484 27.1891L14.9718 28.2064C14.9609 28.2939 14.8843 28.3705 14.7859 28.3595C14.6875 28.3486 14.6218 28.272 14.6218 28.1845L14.6984 27.1672C14.7093 27.0689 14.7859 27.0033 14.8843 27.0141ZM14.7859 28.3376C14.8624 28.3376 14.9391 28.283 14.9391 28.2064L15.0156 27.1891C15.0156 27.1126 14.9609 27.047 14.8734 27.036C14.7968 27.036 14.7203 27.0907 14.7203 27.1673L14.6437 28.1845C14.6437 28.2611 14.7093 28.3268 14.786 28.3376H14.7859Z" fill="white"/>
<path d="M14.064 25.6031C14.1515 25.6249 14.2061 25.7014 14.1952 25.7889L13.7467 28.0314C13.7248 28.1189 13.6483 28.1737 13.5608 28.1516C13.4733 28.1298 13.4187 28.0533 13.4296 27.9657L13.878 25.7233C13.889 25.6468 13.9765 25.5921 14.064 25.6031Z" fill="#F3F3F3"/>
<path d="M14.0642 25.592C14.1625 25.6139 14.2173 25.7015 14.2063 25.7889L13.7579 28.0313C13.736 28.1188 13.6485 28.1844 13.5501 28.1624C13.4517 28.1405 13.3969 28.053 13.4079 27.9655L13.8563 25.7233C13.8782 25.6358 13.9657 25.581 14.0641 25.5921L14.0642 25.592ZM13.5501 28.1405C13.6267 28.1515 13.7032 28.1078 13.7251 28.0313L14.1735 25.7889C14.1844 25.7124 14.1407 25.6358 14.0532 25.6139C13.9767 25.6031 13.9001 25.6468 13.8782 25.7234L13.4298 27.9655C13.4188 28.053 13.4735 28.1188 13.5501 28.1405V28.1405Z" fill="white"/>
<path d="M12.7517 26.5877C12.8393 26.6096 12.8939 26.6971 12.872 26.7846L12.5986 27.7689C12.5768 27.8564 12.4893 27.9001 12.4018 27.8783C12.381 27.8733 12.3613 27.8642 12.344 27.8516C12.3266 27.839 12.312 27.8231 12.3008 27.8048C12.2896 27.7865 12.2821 27.7662 12.2788 27.745C12.2755 27.7238 12.2764 27.7022 12.2814 27.6814L12.5549 26.6971C12.5768 26.6096 12.6643 26.5659 12.7518 26.5877H12.7517Z" fill="#F3F3F3"/>
<path d="M12.7516 26.5768C12.8392 26.5986 12.9048 26.6971 12.8719 26.7846L12.5985 27.769C12.5767 27.8565 12.4783 27.9112 12.3908 27.8892C12.3033 27.8674 12.2377 27.769 12.2704 27.6815L12.5439 26.6971C12.5658 26.6096 12.6533 26.5548 12.7516 26.5767V26.5768ZM12.3908 27.8565C12.4673 27.8784 12.5548 27.8346 12.5767 27.758L12.85 26.7736C12.8719 26.6971 12.8282 26.6205 12.7407 26.5986C12.6642 26.5767 12.5767 26.6205 12.5548 26.6971L12.2814 27.6815C12.2704 27.758 12.3141 27.8346 12.3908 27.8565Z" fill="white"/>
<path d="M12.2156 25.0454C12.3031 25.0781 12.3358 25.1766 12.3031 25.2531L11.4281 27.3641C11.3953 27.4407 11.2968 27.4844 11.2204 27.4407C11.1437 27.3969 11.0999 27.3094 11.1327 27.2329L12.0077 25.1219C12.0405 25.0454 12.139 25.0016 12.2155 25.0454H12.2156Z" fill="#F3F3F3"/>
<path d="M12.2156 25.0344C12.2576 25.0504 12.2915 25.0824 12.31 25.1234C12.3285 25.1644 12.3299 25.2111 12.314 25.2532L11.439 27.364C11.4061 27.4515 11.3077 27.4843 11.2092 27.4515C11.1672 27.4354 11.1333 27.4034 11.1148 27.3625C11.0964 27.3215 11.0949 27.2748 11.1108 27.2328L11.9858 25.1218C12.0296 25.0344 12.128 24.9907 12.2156 25.0344V25.0344ZM11.2202 27.4297C11.2967 27.4624 11.3842 27.4297 11.4171 27.3531L12.2921 25.2422C12.3248 25.1657 12.2811 25.089 12.2046 25.0563C12.128 25.0235 12.0405 25.0563 12.0077 25.1328L11.1327 27.2437C11.1108 27.3093 11.1436 27.3968 11.2202 27.4297Z" fill="white"/>
<path d="M10.7392 25.7454C10.8157 25.7891 10.8485 25.8766 10.8157 25.9532L10.3563 26.8608C10.3125 26.9374 10.225 26.9702 10.1375 26.9264C10.061 26.8827 10.0282 26.7953 10.061 26.7187L10.5205 25.8111C10.5642 25.7345 10.6517 25.7016 10.7392 25.7454Z" fill="#F3F3F3"/>
<path d="M10.7392 25.7345C10.8267 25.7782 10.8595 25.8767 10.8158 25.9641L10.3564 26.8719C10.3126 26.9594 10.2141 26.9922 10.1268 26.9484C10.0393 26.9047 10.0064 26.8062 10.0502 26.7188L10.5095 25.8111C10.5533 25.7235 10.6517 25.6908 10.7392 25.7345ZM10.1377 26.9266C10.2143 26.9594 10.3018 26.9375 10.3345 26.8609L10.7939 25.9533C10.8266 25.8876 10.7939 25.8001 10.7283 25.7564C10.6517 25.7236 10.5642 25.7454 10.5314 25.822L10.072 26.7296C10.0393 26.7953 10.072 26.8828 10.1377 26.9265V26.9266Z" fill="white"/>
<path d="M10.5203 24.1267C10.5968 24.1813 10.6187 24.2798 10.5641 24.3454L9.29528 26.2378C9.25158 26.3142 9.15302 26.3252 9.07659 26.2815C9.00004 26.2267 8.97813 26.1284 9.03278 26.0626L10.3016 24.1702C10.3453 24.0938 10.4437 24.0719 10.5203 24.1265V24.1267Z" fill="#F3F3F3"/>
<path d="M10.5203 24.1157C10.5969 24.1704 10.6188 24.2798 10.575 24.3564L9.30626 26.2487C9.25162 26.3251 9.15316 26.347 9.06566 26.2924C8.98911 26.2376 8.9672 26.1283 9.0109 26.0516L10.2797 24.1595C10.3344 24.0829 10.4438 24.061 10.5203 24.1157V24.1157ZM9.07661 26.2705C9.1421 26.3141 9.24066 26.3032 9.28436 26.2377L10.5532 24.3454C10.5969 24.2798 10.5751 24.1923 10.5094 24.1485C10.4438 24.1048 10.3453 24.1158 10.3016 24.1813L9.0328 26.0626C8.98911 26.1283 9.0109 26.2266 9.07661 26.2703V26.2705Z" fill="white"/>
<path d="M8.92344 24.5314C8.98915 24.586 9.01094 24.6845 8.95629 24.7501L8.3219 25.5485C8.26726 25.6141 8.16881 25.625 8.10321 25.5704C8.03762 25.5157 8.01571 25.4173 8.07047 25.3516L8.70475 24.5532C8.75939 24.4877 8.85784 24.4766 8.92344 24.5314Z" fill="#F3F3F3"/>
<path d="M8.9344 24.5204C9.01095 24.575 9.0219 24.6845 8.96714 24.761L8.33284 25.5595C8.2782 25.636 8.16879 25.647 8.09224 25.5814C8.01569 25.5266 8.00474 25.4173 8.0595 25.3407L8.6938 24.5423C8.74845 24.4656 8.85785 24.4548 8.9344 24.5204ZM8.11415 25.5595C8.17963 25.6141 8.26725 25.6033 8.32189 25.5376L8.95631 24.7391C9.00011 24.6736 8.98905 24.586 8.92356 24.5313C8.85785 24.4766 8.77035 24.4875 8.7157 24.5533L8.08129 25.3516C8.0376 25.4173 8.04855 25.5157 8.11403 25.5595H8.11415Z" fill="white"/>
<path d="M9.03277 22.8907C9.09836 22.9562 9.09836 23.0548 9.03277 23.1094L7.41413 24.7171C7.34842 24.7829 7.25009 24.7719 7.19533 24.7171C7.14069 24.6625 7.12973 24.5531 7.19533 24.4985L8.80302 22.8907C8.86873 22.825 8.96717 22.825 9.03277 22.8907V22.8907Z" fill="#F3F3F3"/>
<path d="M9.04376 22.8798C9.07527 22.9119 9.09293 22.9551 9.09293 23C9.09293 23.045 9.07527 23.0882 9.04376 23.1203L7.42501 24.7283C7.39292 24.7598 7.34974 24.7775 7.30477 24.7775C7.2598 24.7775 7.21662 24.7598 7.18453 24.7283C7.15295 24.6962 7.13525 24.653 7.13525 24.6079C7.13525 24.5629 7.15295 24.5197 7.18453 24.4876L8.80317 22.8798C8.83527 22.8482 8.87847 22.8306 8.92347 22.8306C8.96847 22.8306 9.01167 22.8482 9.04376 22.8798V22.8798ZM7.19537 24.7172C7.25001 24.7719 7.34846 24.7719 7.4031 24.7172L9.02186 23.1093C9.07662 23.0547 9.07662 22.9562 9.02186 22.9016C8.96722 22.8468 8.86877 22.8468 8.81412 22.9016L7.19537 24.5094C7.14073 24.564 7.14073 24.6516 7.19537 24.7171V24.7172Z" fill="white"/>
<path d="M7.39221 22.9782C7.44685 23.0437 7.44685 23.1423 7.38125 23.1969L6.60471 23.8533C6.53911 23.908 6.44066 23.897 6.3859 23.8314C6.33125 23.7657 6.33125 23.6673 6.39685 23.6126L7.1734 22.9563C7.23911 22.9016 7.33745 22.9125 7.39221 22.9782Z" fill="#F3F3F3"/>
<path d="M7.40307 22.9672C7.46867 23.0438 7.45772 23.1531 7.39212 23.2079L6.61557 23.864C6.54997 23.9297 6.44057 23.9188 6.37497 23.8422C6.30926 23.7656 6.32021 23.6563 6.38581 23.6015L7.16247 22.9454C7.22796 22.8798 7.33748 22.8908 7.40296 22.9673L7.40307 22.9672ZM6.39676 23.8313C6.45152 23.8969 6.53902 23.8969 6.6045 23.8532L7.38117 23.1969C7.43581 23.1423 7.44677 23.0547 7.39212 22.9892C7.33736 22.9235 7.24986 22.9235 7.18438 22.9673L6.40771 23.6235C6.34211 23.6781 6.34211 23.7657 6.39676 23.8312V23.8313Z" fill="white"/>
<path d="M7.82979 21.4031C7.88444 21.4798 7.86254 21.5781 7.78599 21.6219L5.8829 22.8906C5.80636 22.9343 5.70791 22.9124 5.66421 22.8468C5.60945 22.7703 5.63136 22.6719 5.70791 22.628L7.6111 21.3594C7.67681 21.3157 7.77515 21.3375 7.82991 21.4031H7.82979Z" fill="#F3F3F3"/>
<path d="M7.84065 21.4031C7.89529 21.4798 7.87339 21.5891 7.79684 21.6439L5.89379 22.9125C5.81724 22.9673 5.70784 22.9453 5.6532 22.8579C5.59844 22.7813 5.62045 22.6719 5.69689 22.6173L7.60006 21.3485C7.6766 21.2939 7.78589 21.3158 7.84054 21.4031H7.84065ZM5.6751 22.836C5.71879 22.9016 5.80629 22.9235 5.87188 22.8798L7.77494 21.611C7.84065 21.5673 7.86244 21.4798 7.8078 21.4033C7.7641 21.3376 7.6766 21.3158 7.6109 21.3595L5.70784 22.6282C5.64224 22.6829 5.63129 22.7704 5.6751 22.836V22.836Z" fill="white"/>
<path d="M6.20007 21.1735C6.24388 21.25 6.22197 21.3485 6.14542 21.3923L5.25946 21.8953C5.18291 21.939 5.08446 21.9063 5.04076 21.8297C4.99696 21.7532 5.01886 21.6547 5.09541 21.6109L5.98137 21.1079C6.05792 21.0641 6.15638 21.0969 6.20018 21.1735H6.20007Z" fill="#F3F3F3"/>
<path d="M6.2111 21.1625C6.2548 21.25 6.23289 21.3484 6.15635 21.3922L5.27041 21.8953C5.19386 21.939 5.08446 21.9062 5.04076 21.8297C4.99696 21.7422 5.01886 21.6437 5.09541 21.5999L5.98135 21.0969C6.0579 21.0531 6.1673 21.0859 6.21099 21.1625H6.2111ZM5.0516 21.8187C5.09541 21.8953 5.18291 21.9172 5.2485 21.8734L6.13444 21.3703C6.20004 21.3265 6.22194 21.239 6.1892 21.1734C6.14539 21.0969 6.0579 21.075 5.9923 21.1188L5.10636 21.6218C5.04076 21.6546 5.01886 21.7422 5.05172 21.8187H5.0516Z" fill="white"/>
<path d="M6.93273 19.7188C6.96547 19.8063 6.93273 19.8939 6.84523 19.9266L4.73428 20.8016C4.65773 20.8345 4.55928 20.7908 4.52654 20.7141C4.49368 20.6266 4.52654 20.5391 4.61404 20.5064L6.72499 19.6313C6.80154 19.5986 6.89999 19.6313 6.93273 19.7188V19.7188Z" fill="#F3F3F3"/>
<path d="M6.94368 19.7079C6.97642 19.7954 6.94368 19.8938 6.85618 19.9375L4.74523 20.8125C4.70317 20.8284 4.65654 20.8269 4.61555 20.8085C4.57456 20.79 4.54255 20.7561 4.52654 20.7141C4.49368 20.6266 4.52654 20.5281 4.61404 20.4844L6.72499 19.6094C6.76705 19.5936 6.81368 19.595 6.85467 19.6135C6.89566 19.6319 6.92766 19.6659 6.94368 19.7079V19.7079ZM4.54833 20.7031C4.58118 20.7798 4.66868 20.8126 4.73428 20.7906L6.84523 19.9156C6.92178 19.8829 6.95463 19.7954 6.92178 19.7188C6.88904 19.6423 6.80154 19.6094 6.73583 19.6313L4.62488 20.5063C4.54833 20.5391 4.51559 20.6266 4.54833 20.7032V20.7031Z" fill="white"/>
<path d="M5.39067 19.1719C5.42342 19.2594 5.37972 19.3469 5.29222 19.3797L4.32972 19.6969C4.25317 19.7297 4.15472 19.675 4.13281 19.5985C4.10007 19.511 4.14376 19.4235 4.23126 19.3907L5.19377 19.0735C5.27032 19.0407 5.35782 19.0844 5.39067 19.1719Z" fill="#F3F3F3"/>
<path d="M5.40142 19.161C5.43427 19.2485 5.39058 19.347 5.29213 19.3798L4.32964 19.697C4.24214 19.7297 4.14369 19.6751 4.11084 19.5876C4.0781 19.5001 4.12179 19.4016 4.22035 19.3689L5.18273 19.0516C5.27023 19.0298 5.36868 19.0735 5.40153 19.1611L5.40142 19.161ZM4.13285 19.5767C4.15476 19.6533 4.24226 19.6971 4.3188 19.6752L5.28129 19.3579C5.35784 19.3361 5.39069 19.2486 5.36879 19.172C5.34689 19.0955 5.25939 19.0517 5.18284 19.0736L4.22035 19.3909C4.14381 19.4236 4.11095 19.5002 4.13285 19.5767Z" fill="white"/>
<path d="M6.37517 17.8703C6.39696 17.9578 6.34232 18.0453 6.25482 18.0563L4.01257 18.4938C3.92507 18.5157 3.84853 18.45 3.82674 18.3625C3.80483 18.275 3.85948 18.1875 3.94698 18.1765L6.18922 17.739C6.27672 17.7282 6.36422 17.7828 6.37506 17.8703H6.37517Z" fill="#F3F3F3"/>
<path d="M6.39688 17.8704C6.41878 17.9688 6.35319 18.0563 6.26569 18.0781L4.02343 18.5156C3.93593 18.5375 3.84843 18.4719 3.82664 18.3735C3.80474 18.275 3.87033 18.1875 3.95783 18.1657L6.20009 17.7282C6.28748 17.7063 6.37509 17.7719 6.39688 17.8704ZM3.84843 18.3626C3.85938 18.4391 3.93593 18.4938 4.01248 18.4829L6.25474 18.0454C6.33128 18.0344 6.38593 17.9469 6.36414 17.8704C6.35319 17.7938 6.27664 17.7391 6.19998 17.75L3.95783 18.1875C3.88128 18.2094 3.82664 18.286 3.84843 18.3625V18.3626Z" fill="white"/>
<path d="M4.97515 17.0283C4.98598 17.1157 4.93134 17.1923 4.84384 17.2033L3.83765 17.3236C3.75003 17.3345 3.67348 17.2689 3.66265 17.1813C3.65169 17.0939 3.70634 17.0173 3.79384 17.0062L4.80015 16.886C4.87669 16.875 4.96419 16.9406 4.97515 17.0283Z" fill="#F3F3F3"/>
<path d="M4.98611 17.0282C4.99695 17.1265 4.93135 17.214 4.84385 17.2249L3.83766 17.3453C3.75005 17.3562 3.66266 17.2906 3.65171 17.1922C3.64076 17.0937 3.70635 17.0063 3.79385 16.9953L4.80016 16.875C4.88755 16.864 4.97516 16.9297 4.986 17.028L4.98611 17.0282ZM3.66255 17.1812C3.6735 17.2578 3.75016 17.3235 3.82671 17.3124L4.8329 17.1922C4.90945 17.1812 4.96421 17.1047 4.95326 17.0282C4.94231 16.9515 4.86576 16.8859 4.78921 16.8969L3.7829 17.0172C3.70635 17.0282 3.65171 17.1047 3.66255 17.1812V17.1812Z" fill="white"/>
<path d="M6.19993 15.9671C6.19993 16.0547 6.13444 16.1313 6.04683 16.1313H3.76101C3.67351 16.1313 3.60791 16.0547 3.60791 15.9672C3.60791 15.8798 3.67351 15.8031 3.76101 15.8031H6.04694C6.13444 15.8031 6.20015 15.8798 6.20015 15.9672L6.19993 15.9671Z" fill="#F3F3F3"/>
<path d="M6.21109 15.9671C6.21109 16.0657 6.13443 16.1421 6.04693 16.1421H3.76109C3.67359 16.1421 3.59705 16.0656 3.59705 15.9671C3.59705 15.8688 3.67359 15.7921 3.76109 15.7921H6.04705C6.13455 15.7921 6.21109 15.8688 6.21109 15.9671ZM3.61884 15.9563C3.61884 16.0328 3.68443 16.1094 3.76109 16.1094H6.04693C6.12348 16.1094 6.18919 16.0438 6.18919 15.9563C6.18919 15.8797 6.12348 15.8031 6.04693 15.8031H3.76109C3.68455 15.814 3.61895 15.8797 3.61895 15.9563H3.61884Z" fill="white"/>
<path d="M4.98613 14.8625C4.97507 14.95 4.90947 15.0156 4.82197 15.0156L3.8047 14.9391C3.71731 14.9281 3.65171 14.8516 3.66255 14.7641C3.6735 14.6766 3.73921 14.611 3.82671 14.611L4.84387 14.6875C4.92042 14.6985 4.98613 14.775 4.98613 14.8625Z" fill="#E2E2E2"/>
<path d="M4.99679 14.8625C4.98584 14.9609 4.9093 15.0265 4.8218 15.0265L3.80454 14.95C3.71716 14.939 3.64061 14.8625 3.65156 14.764C3.6624 14.6657 3.73906 14.6 3.82656 14.6L4.8437 14.6765C4.9312 14.6875 4.99679 14.775 4.99679 14.8625ZM3.6624 14.764C3.65156 14.8406 3.71716 14.9172 3.7937 14.9172L4.81096 14.9938C4.88739 14.9938 4.9531 14.939 4.96405 14.8515C4.975 14.775 4.9093 14.6984 4.83275 14.6984L3.81549 14.6219C3.73906 14.6219 3.67335 14.6875 3.6624 14.7641V14.764Z" fill="white"/>
<path d="M6.39679 14.064C6.37488 14.1515 6.29834 14.2062 6.21084 14.1953L3.96869 13.7359C3.88119 13.714 3.82643 13.6375 3.84834 13.55C3.87024 13.4625 3.94679 13.4077 4.03429 13.4188L6.27655 13.8672C6.35309 13.889 6.40774 13.9765 6.39679 14.064V14.064Z" fill="#F3F3F3"/>
<path d="M6.40785 14.0641C6.38595 14.1625 6.29845 14.2173 6.21095 14.2063L3.96882 13.7579C3.88132 13.736 3.81572 13.6485 3.83762 13.5501C3.85941 13.4516 3.94691 13.3969 4.03441 13.4079L6.27666 13.8563C6.36416 13.8782 6.4188 13.9657 6.40785 14.0641V14.0641ZM3.85941 13.55C3.84846 13.6266 3.89216 13.7031 3.96882 13.725L6.21106 14.1735C6.28761 14.1844 6.36416 14.1407 6.38606 14.0531C6.3969 13.9766 6.35321 13.9 6.27655 13.8781L4.03453 13.4298C3.94703 13.4188 3.88143 13.4735 3.85953 13.55H3.85941Z" fill="white"/>
<path d="M5.41272 12.7516C5.4077 12.7725 5.39862 12.7921 5.38601 12.8094C5.37339 12.8268 5.35748 12.8414 5.3392 12.8526C5.32091 12.8637 5.3006 12.8712 5.27943 12.8745C5.25826 12.8778 5.23664 12.8769 5.21582 12.8719L4.2314 12.5984C4.1439 12.5765 4.10021 12.4891 4.122 12.4016C4.12702 12.3807 4.1361 12.3611 4.14871 12.3438C4.16133 12.3265 4.17724 12.3118 4.19552 12.3006C4.21381 12.2895 4.23412 12.282 4.25529 12.2787C4.27646 12.2754 4.29808 12.2763 4.3189 12.2813L5.30332 12.5548C5.39082 12.5765 5.43451 12.664 5.41272 12.7515V12.7516Z" fill="#F3F3F3"/>
<path d="M5.42331 12.7516C5.40152 12.839 5.30307 12.9047 5.21557 12.8718L4.23114 12.5984C4.14364 12.5765 4.08888 12.4781 4.11079 12.3907C4.13269 12.3031 4.23114 12.2375 4.31865 12.2703L5.30307 12.5438C5.39057 12.5657 5.44533 12.6532 5.42331 12.7515V12.7516ZM4.14364 12.3905C4.12174 12.4671 4.16555 12.5546 4.2421 12.5764L5.22652 12.8498C5.30307 12.8717 5.37962 12.8279 5.40152 12.7404C5.42331 12.6639 5.37962 12.5764 5.30307 12.5546L4.31865 12.2812C4.2421 12.2702 4.16555 12.3139 4.14364 12.3906V12.3905Z" fill="white"/>
<path d="M6.95465 12.2267C6.92191 12.3141 6.82335 12.3469 6.74691 12.3141L4.63585 11.4391C4.5593 11.4063 4.5156 11.3079 4.54835 11.2313C4.5812 11.1438 4.67965 11.111 4.7562 11.1438L6.86715 12.0188C6.95465 12.0516 6.98751 12.15 6.95465 12.2266V12.2267Z" fill="#F3F3F3"/>
<path d="M6.96561 12.2375C6.9496 12.2796 6.91757 12.3135 6.87656 12.332C6.83554 12.3504 6.78888 12.3519 6.74681 12.336L4.63584 11.461C4.54834 11.4283 4.5156 11.3298 4.54834 11.2314C4.56436 11.1893 4.59638 11.1554 4.6374 11.1369C4.67841 11.1185 4.72507 11.117 4.76715 11.1329L6.87811 12.0079C6.96561 12.0516 6.99836 12.1501 6.96561 12.2375V12.2375ZM4.57024 11.2423C4.5375 11.3189 4.57024 11.4064 4.64679 11.4391L6.75776 12.3141C6.83431 12.3469 6.91086 12.3031 6.94371 12.2266C6.97645 12.15 6.94371 12.0625 6.86716 12.0298L4.7562 11.1548C4.67965 11.1329 4.59215 11.1658 4.57024 11.2423V11.2423Z" fill="white"/>
<path d="M6.24379 10.75C6.20009 10.8266 6.11259 10.8594 6.03604 10.8266L5.12819 10.3673C5.05164 10.3344 5.01879 10.236 5.06259 10.1484C5.10629 10.0719 5.19379 10.039 5.27033 10.0719L6.17808 10.5313C6.25474 10.575 6.28759 10.6736 6.24379 10.75Z" fill="#F3F3F3"/>
<path d="M6.25485 10.761C6.21104 10.8485 6.11259 10.8814 6.02509 10.8375L5.11735 10.3781C5.02985 10.3344 4.997 10.236 5.04081 10.1485C5.0845 10.061 5.18306 10.0281 5.27045 10.0719L6.17819 10.5313C6.2658 10.5641 6.29854 10.6736 6.25485 10.761V10.761ZM5.07355 10.1594C5.04081 10.236 5.06271 10.3235 5.13926 10.3563L6.04699 10.8158C6.1127 10.8485 6.2002 10.8158 6.2439 10.75C6.27664 10.6735 6.25485 10.586 6.1783 10.5531L5.25939 10.094C5.19379 10.0612 5.10629 10.083 5.07344 10.1595L5.07355 10.1594Z" fill="white"/>
<path d="M7.85138 10.5422C7.79674 10.6188 7.70923 10.6407 7.63268 10.586L5.74039 9.32823C5.66395 9.28442 5.653 9.18597 5.69669 9.10942C5.7405 9.03287 5.83895 9.01097 5.9155 9.06562L7.81864 10.3344C7.88424 10.3782 7.90614 10.4767 7.85138 10.5422Z" fill="#F3F3F3"/>
<path d="M7.86239 10.5531C7.80774 10.6298 7.69834 10.6516 7.62191 10.6079L5.72966 9.33905C5.65311 9.28441 5.63121 9.18596 5.68586 9.09857C5.74061 9.02191 5.85002 9 5.92656 9.04381L7.8187 10.3125C7.90619 10.3673 7.91715 10.4766 7.86239 10.5531ZM5.70776 9.10941C5.66407 9.175 5.67502 9.27346 5.7405 9.31715L7.6437 10.5861C7.70929 10.6299 7.79679 10.608 7.8406 10.5424C7.88429 10.4767 7.87334 10.3782 7.80786 10.3345L5.90455 9.06571C5.83895 9.02191 5.75145 9.04381 5.70765 9.10941H5.70776Z" fill="white"/>
<path d="M7.44684 8.9563C7.3922 9.02189 7.29374 9.04379 7.22815 8.98904L6.42968 8.36571C6.36409 8.31096 6.35313 8.21251 6.40778 8.14691C6.46243 8.08132 6.56088 8.05941 6.62659 8.11417L7.42494 8.73749C7.49065 8.79225 7.5016 8.89059 7.44684 8.9563V8.9563Z" fill="#F3F3F3"/>
<path d="M7.45781 8.96712C7.40316 9.04378 7.29376 9.05473 7.21721 8.99998L6.41878 8.37665C6.34223 8.322 6.33128 8.2126 6.38604 8.13617C6.44068 8.05951 6.55008 8.04856 6.62652 8.10332L7.42495 8.72664C7.50161 8.7814 7.51256 8.89069 7.45781 8.96735V8.96712ZM6.40783 8.14689C6.35318 8.21249 6.36414 8.29999 6.42973 8.35463L7.22817 8.97819C7.29376 9.02188 7.38126 9.01093 7.4359 8.94533C7.49066 8.87974 7.47971 8.79224 7.41411 8.73759L6.61568 8.11404C6.55008 8.07035 6.46247 8.0813 6.40794 8.14689H6.40783Z" fill="white"/>
<path d="M9.07648 9.06562C9.01099 9.13133 8.91243 9.13133 8.85778 9.06562L7.22821 7.45786C7.16261 7.39227 7.17345 7.29381 7.22821 7.23905C7.29381 7.17357 7.39226 7.17357 7.44691 7.23905L9.06575 8.84692C9.13135 8.90157 9.13135 9.01097 9.07671 9.06573L9.07648 9.06562Z" fill="#F3F3F3"/>
<path d="M9.07664 9.0766C9.04455 9.10811 9.00137 9.12576 8.95639 9.12576C8.91142 9.12576 8.86824 9.10811 8.83615 9.0766L7.21725 7.46864C7.18567 7.43654 7.16797 7.39332 7.16797 7.34829C7.16797 7.30326 7.18567 7.26003 7.21725 7.22793C7.24934 7.19639 7.29254 7.17871 7.33754 7.17871C7.38255 7.17871 7.42575 7.19639 7.45784 7.22793L9.07664 8.83578C9.15318 8.90137 9.15318 9.01077 9.07664 9.07637V9.0766ZM7.23938 7.24984C7.18462 7.30459 7.18462 7.40304 7.23938 7.45758L8.85806 9.06542C8.91281 9.12018 9.01115 9.12018 9.0658 9.06542C9.12055 9.01077 9.12055 8.91232 9.0658 8.85768L7.44712 7.239C7.39247 7.18435 7.30486 7.18435 7.23938 7.24995V7.24984Z" fill="white"/>
<path d="M8.9781 7.43593C8.9125 7.49068 8.81405 7.49068 8.7593 7.42497L8.09205 6.65938C8.03752 6.59378 8.04836 6.49533 8.11407 6.44068C8.17955 6.38593 8.27811 6.38593 8.33276 6.45152L9 7.21723C9.05465 7.27188 9.0437 7.37033 8.9781 7.43593Z" fill="#F3F3F3"/>
<path d="M8.989 7.43593C8.91245 7.50153 8.814 7.49069 8.74829 7.42498L8.08115 6.65938C8.01555 6.59378 8.0265 6.48438 8.10305 6.41878C8.1796 6.35307 8.27805 6.36402 8.34365 6.42973L9.01091 7.19522C9.06555 7.27188 9.06555 7.38129 8.989 7.43593V7.43593ZM8.114 6.44068C8.04829 6.49533 8.04829 6.58283 8.0921 6.64843L8.75936 7.41403C8.814 7.46879 8.9015 7.47974 8.9671 7.42498C9.0327 7.37034 9.0327 7.28272 8.989 7.21724L8.32175 6.45152C8.2671 6.38604 8.17949 6.38604 8.114 6.44068V6.44068Z" fill="white"/>
<path d="M10.5532 7.85171C10.4767 7.90635 10.3782 7.88445 10.3344 7.8079L9.05478 5.91566C9.01097 5.83911 9.03287 5.74066 9.09847 5.69696C9.17502 5.64232 9.27347 5.66422 9.31728 5.74077L10.586 7.6329C10.6407 7.70945 10.6188 7.8079 10.5532 7.85159V7.85171Z" fill="#F3F3F3"/>
<path d="M10.5533 7.86251C10.4767 7.91727 10.3673 7.89526 10.3126 7.81882L9.04394 5.92655C8.9893 5.85 9.0112 5.74071 9.09858 5.68606C9.17513 5.63131 9.28452 5.65321 9.33928 5.72976L10.6079 7.62192C10.6626 7.70942 10.6407 7.80787 10.5533 7.86251ZM9.10942 5.70785C9.04383 5.75155 9.02192 5.83905 9.06573 5.90476L10.3344 7.79692C10.3782 7.86251 10.4657 7.87347 10.5421 7.82966C10.6078 7.78597 10.6297 7.69846 10.5859 7.63287L9.31738 5.75155C9.27357 5.68606 9.17513 5.66405 9.10965 5.70785H9.10942Z" fill="white"/>
<path d="M10.7828 6.23295C10.7063 6.27664 10.6078 6.25485 10.5641 6.1783L10.061 5.29235C10.0173 5.2158 10.05 5.11735 10.1267 5.07355C10.2032 5.02985 10.3016 5.05164 10.3453 5.1283L10.8484 6.01414C10.8813 6.09069 10.8594 6.18914 10.7829 6.23295H10.7828Z" fill="#F3F3F3"/>
<path d="M10.7828 6.24391C10.6953 6.2876 10.5968 6.26581 10.5531 6.18915L10.0499 5.30331C10.0062 5.22664 10.0281 5.11735 10.1156 5.07355C10.2031 5.02985 10.3016 5.05164 10.3453 5.1283L10.8483 6.01415C10.8922 6.0907 10.8703 6.18915 10.7829 6.24391H10.7828ZM10.1266 5.0845C10.0609 5.12819 10.0281 5.21569 10.0718 5.2814L10.575 6.16736C10.6187 6.23284 10.7062 6.25486 10.7718 6.22201C10.8375 6.17831 10.8703 6.0907 10.8266 6.0251L10.3234 5.13914C10.2906 5.07366 10.1922 5.04069 10.1266 5.0845V5.0845Z" fill="white"/>
<path d="M12.2373 6.95474C12.1499 6.98748 12.0623 6.95474 12.0296 6.87819L11.1437 4.76713C11.1109 4.69058 11.1546 4.59213 11.2312 4.55927C11.3187 4.52653 11.4062 4.55927 11.4389 4.63582L12.3248 6.74677C12.3577 6.82332 12.314 6.92177 12.2373 6.95451V6.95474Z" fill="#F3F3F3"/>
<path d="M12.2377 6.9657C12.1503 6.99845 12.0518 6.9657 12.008 6.87809L11.122 4.76727C11.1062 4.72519 11.1076 4.67853 11.126 4.63752C11.1445 4.5965 11.1785 4.56448 11.2205 4.54846C11.308 4.51572 11.4064 4.54846 11.4503 4.63596L12.3361 6.7469C12.369 6.82345 12.3253 6.9219 12.2378 6.9657H12.2377ZM11.2424 4.57036C11.1658 4.60311 11.133 4.69072 11.1658 4.75632L12.0517 6.86714C12.0844 6.94369 12.1719 6.97643 12.2485 6.94369C12.325 6.91095 12.358 6.82333 12.325 6.75774L11.4392 4.6468C11.3954 4.57025 11.3188 4.5374 11.2423 4.57025L11.2424 4.57036Z" fill="white"/>
<path d="M12.7733 5.40174C12.6858 5.43448 12.5983 5.39068 12.5656 5.30329L12.2483 4.34069C12.2156 4.26414 12.2702 4.16569 12.3468 4.1439C12.4233 4.122 12.5218 4.15485 12.5545 4.24235L12.8717 5.20484C12.9045 5.28139 12.8608 5.36889 12.7733 5.40163V5.40174Z" fill="#F3F3F3"/>
<path d="M12.7843 5.41251C12.7423 5.42837 12.6956 5.42691 12.6547 5.40845C12.6137 5.39 12.5817 5.35606 12.5656 5.31406L12.2484 4.35156C12.2156 4.26406 12.2703 4.16572 12.3579 4.13287C12.3999 4.11701 12.4466 4.11847 12.4876 4.13693C12.5286 4.15538 12.5606 4.18932 12.5766 4.23132L12.8937 5.19382C12.9157 5.28132 12.8718 5.37977 12.7843 5.41251V5.41251ZM12.3578 4.15477C12.2812 4.17656 12.2374 4.26406 12.2593 4.34061L12.5766 5.30322C12.5984 5.37977 12.6859 5.41251 12.7625 5.39061C12.8391 5.36882 12.8828 5.28132 12.8609 5.20477L12.5437 4.24216C12.5382 4.22359 12.5287 4.20641 12.5161 4.19172C12.5034 4.17704 12.4878 4.16518 12.4703 4.15693C12.4527 4.14867 12.4336 4.1442 12.4143 4.14381C12.3949 4.14342 12.3756 4.14712 12.3578 4.15466V4.15477Z" fill="white"/>
<path d="M14.064 6.3969C13.9765 6.4188 13.889 6.36416 13.8781 6.27655L13.4187 4.03441C13.3968 3.94692 13.4625 3.87037 13.5499 3.84846C13.6375 3.82656 13.7249 3.88121 13.7358 3.96882L14.1953 6.21106C14.2061 6.2875 14.1515 6.375 14.064 6.3969V6.3969Z" fill="#F3F3F3"/>
<path d="M14.0641 6.40785C13.9656 6.42976 13.8781 6.36405 13.8562 6.27655L13.3968 4.0344C13.3749 3.9469 13.4406 3.84845 13.5281 3.8375C13.6266 3.81559 13.7141 3.8813 13.7359 3.9688L14.1954 6.21106C14.2172 6.29845 14.1625 6.38606 14.0641 6.40785V6.40785ZM13.55 3.8594C13.4734 3.87035 13.4187 3.9469 13.4297 4.0344L13.8891 6.27666C13.9 6.35309 13.9874 6.40785 14.0641 6.38595C14.1406 6.375 14.1953 6.29845 14.1843 6.21095L13.7249 3.96869C13.7031 3.89226 13.6266 3.84845 13.5499 3.8594H13.55Z" fill="white"/>
<path d="M14.8954 4.97504C14.8079 4.98599 14.7313 4.93134 14.7094 4.84384L14.5782 3.83752C14.5673 3.75002 14.6329 3.67347 14.7205 3.66252C14.8079 3.65157 14.8844 3.70633 14.9063 3.79383L15.0375 4.80003C15.0484 4.88754 14.9828 4.96409 14.8954 4.97504V4.97504Z" fill="#F3F3F3"/>
<path d="M14.8954 4.98597C14.797 4.99693 14.7095 4.93133 14.6985 4.84372L14.5674 3.83752C14.5564 3.75002 14.622 3.66252 14.7204 3.65156C14.8189 3.64072 14.9064 3.70632 14.9173 3.79382L15.0485 4.80002C15.0595 4.88752 14.9939 4.97502 14.8954 4.98597V4.98597ZM14.7314 3.67347C14.6548 3.68442 14.5891 3.76097 14.6001 3.83752L14.7314 4.84383C14.7423 4.92038 14.8189 4.97502 14.8954 4.96407C14.972 4.95323 15.0377 4.87657 15.0267 4.80002L14.8954 3.79382C14.8845 3.71727 14.8079 3.66252 14.7314 3.67347V3.67347Z" fill="white"/>
<path d="M16.0767 28.9391C23.2288 28.9391 29.0267 23.1411 29.0267 15.9891C29.0267 8.83697 23.2288 3.03906 16.0767 3.03906C8.92462 3.03906 3.12671 8.83697 3.12671 15.9891C3.12671 23.1411 8.92462 28.9391 16.0767 28.9391Z" fill="url(#paint2_linear_449_13224)" fillOpacity="0.2"/>
<path d="M25.0454 7.77502L14.6001 14.4688H14.5891V14.4797L14.5782 14.4906L8.05957 25.2423L17.6408 17.5313L17.6517 17.5205V17.5095L25.0455 7.77514L25.0454 7.77502Z" fill="black" fillOpacity="0.05"/>
<path d="M24.8484 7.15149L14.5234 14.4905L17.5859 17.5311L24.8484 7.15149" fill="#CD151E"/>
<path d="M14.5344 14.4687L16.0767 15.989L24.8484 7.15149L14.5344 14.4687V14.4687Z" fill="#FA5153"/>
<path d="M14.5345 14.4687L17.597 17.5092L7.27197 24.8484L14.5345 14.4686V14.4687Z" fill="#ACACAC"/>
<path d="M7.27197 24.8484L16.0766 15.989L14.5344 14.4686L7.27197 24.8484Z" fill="#EEEEEE"/>
<defs>
<linearGradient id="paint0_linear_449_13224" x1="16" y1="30" x2="16" y2="2" gradientUnits="userSpaceOnUse">
<stop offset="0.25" stopColor="#DBDBDA"/>
<stop offset="1" stopColor="white"/>
</linearGradient>
<radialGradient id="paint1_radial_449_13224" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(17.8195 13.1553) scale(15.8073 15.8073)">
<stop stopColor="#2ABCE1"/>
<stop offset="0.11363" stopColor="#2ABBE1"/>
<stop offset="1" stopColor="#3375F8"/>
</radialGradient>
<linearGradient id="paint2_linear_449_13224" x1="15.8307" y1="12.2861" x2="9.78638" y2="23.1302" gradientUnits="userSpaceOnUse">
<stop stop-opacity="0"/>
<stop offset="1"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_browser_browser_icons_color_mobile_safari;

View file

@ -0,0 +1,171 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_mobile_safari_ui(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M16 30C23.732 30 30 23.732 30 16C30 8.26801 23.732 2 16 2C8.26801 2 2 8.26801 2 16C2 23.732 8.26801 30 16 30Z" fill="url(#paint0_linear_449_13647)"/>
<path d="M16 28.9499C23.1521 28.9499 28.9501 23.152 28.9501 15.9999C28.9501 8.84784 23.1521 3.04993 16 3.04993C8.84796 3.04993 3.05005 8.84784 3.05005 15.9999C3.05005 23.152 8.84796 28.9499 16 28.9499Z" fill="url(#paint1_radial_449_13647)"/>
<path d="M16.0219 6.20007C15.9344 6.20007 15.8578 6.13447 15.8578 6.04697V3.76101C15.8578 3.67351 15.9344 3.60791 16.0219 3.60791C16.1094 3.60791 16.1859 3.67351 16.1859 3.76101V6.04697C16.175 6.13447 16.1094 6.20007 16.0219 6.20007Z" fill="#F3F3F3"/>
<path d="M16.0219 6.21096C15.9235 6.21096 15.8469 6.13441 15.8469 6.04691V3.76097C15.8469 3.67347 15.9235 3.59692 16.0219 3.59692C16.1204 3.59692 16.1969 3.67347 16.1969 3.76097V6.04691C16.1969 6.13441 16.1094 6.21096 16.0219 6.21096ZM16.0219 3.61871C15.9454 3.61871 15.8688 3.68442 15.8688 3.76097V6.04691C15.8688 6.12346 15.9344 6.18917 16.0219 6.18917C16.0985 6.18917 16.175 6.12346 16.175 6.04691V3.76097C16.1642 3.68442 16.0985 3.61871 16.0219 3.61871V3.61871Z" fill="white"/>
<path d="M17.1157 4.97506C17.0282 4.96411 16.9626 4.89851 16.9626 4.81101L17.0391 3.79373C17.05 3.70634 17.1266 3.64063 17.2141 3.65158C17.3016 3.66254 17.3672 3.72825 17.3672 3.81575L17.2907 4.83291C17.2797 4.92041 17.2032 4.98601 17.1157 4.97517V4.97506Z" fill="#F3F3F3"/>
<path d="M17.1156 4.98592C17.0172 4.97496 16.9516 4.89842 16.9516 4.81092L17.0281 3.79365C17.0391 3.70626 17.1156 3.62971 17.2141 3.64055C17.3124 3.65151 17.3781 3.72817 17.3781 3.81555L17.3016 4.83282C17.2906 4.93127 17.2141 4.99687 17.1156 4.98592ZM17.2141 3.66246C17.1376 3.66246 17.0609 3.71722 17.0609 3.79376L16.9843 4.81103C16.9843 4.88746 17.0391 4.95317 17.1266 4.96401C17.2031 4.96401 17.2797 4.90937 17.2797 4.83282L17.3562 3.81555C17.3562 3.73901 17.2906 3.67341 17.214 3.66246H17.2141Z" fill="white"/>
<path d="M17.9359 6.39693C17.8483 6.37502 17.7937 6.29847 17.8046 6.21097L18.253 3.9687C18.2749 3.88131 18.3515 3.82656 18.439 3.84846C18.5265 3.87036 18.5811 3.94691 18.5702 4.03441L18.1217 6.27668C18.1108 6.35312 18.0233 6.40788 17.9358 6.39693H17.9359Z" fill="#F3F3F3"/>
<path d="M17.9361 6.40784C17.8375 6.38593 17.7829 6.29843 17.7938 6.21093L18.2422 3.96869C18.2641 3.8813 18.3516 3.81559 18.4499 3.8375C18.5484 3.8594 18.6031 3.9469 18.5922 4.0344L18.1438 6.27664C18.1219 6.36403 18.0344 6.41879 17.9361 6.40784ZM18.4499 3.8594C18.3734 3.84845 18.2969 3.89214 18.275 3.9688L17.8267 6.21105C17.8157 6.28748 17.8594 6.36403 17.9469 6.38605C18.0234 6.39689 18.1 6.35308 18.1219 6.27653L18.5703 4.0344C18.5812 3.9469 18.5266 3.8813 18.4499 3.8594V3.8594Z" fill="white"/>
<path d="M19.2484 5.41251C19.2276 5.40749 19.208 5.39841 19.1906 5.3858C19.1733 5.37318 19.1587 5.35727 19.1475 5.33899C19.1363 5.3207 19.1289 5.30039 19.1256 5.27922C19.1222 5.25805 19.1231 5.23643 19.1282 5.21561L19.4016 4.23132C19.4234 4.14382 19.5109 4.10001 19.5984 4.12192C19.6859 4.14382 19.7407 4.23132 19.7188 4.31882L19.4453 5.30322C19.4234 5.39061 19.3359 5.43442 19.2484 5.41251Z" fill="#F3F3F3"/>
<path d="M19.2485 5.42352C19.161 5.40161 19.0955 5.30316 19.1283 5.21578L19.4017 4.23127C19.4235 4.14389 19.522 4.08913 19.6094 4.11103C19.6969 4.13293 19.7625 4.23139 19.7298 4.31877L19.4564 5.30328C19.4345 5.39066 19.347 5.44542 19.2486 5.42352H19.2485ZM19.6094 4.14389C19.5329 4.12198 19.4454 4.16579 19.4235 4.24234L19.1502 5.22662C19.1283 5.30316 19.172 5.37982 19.2595 5.40161C19.336 5.42352 19.4235 5.37982 19.4454 5.30328L19.7188 4.31877C19.7298 4.24234 19.6861 4.16579 19.6094 4.14377V4.14389Z" fill="white"/>
<path d="M19.7845 6.95474C19.697 6.92188 19.6642 6.82343 19.697 6.74688L20.5719 4.63594C20.6047 4.5594 20.7032 4.51559 20.7797 4.5594C20.8673 4.59214 20.9001 4.6907 20.8673 4.76714L19.9923 6.87808C19.9596 6.95474 19.861 6.99843 19.7846 6.95474H19.7845Z" fill="#F3F3F3"/>
<path d="M19.7844 6.96578C19.7424 6.94977 19.7084 6.91774 19.69 6.87673C19.6715 6.83571 19.6701 6.78905 19.6859 6.74698L20.561 4.63601C20.5938 4.54851 20.6923 4.51565 20.7907 4.54851C20.8328 4.56453 20.8667 4.59655 20.8852 4.63757C20.9036 4.67858 20.9051 4.72524 20.8892 4.76732L20.0142 6.87828C19.9704 6.96578 19.8719 7.00948 19.7844 6.96578ZM20.7798 4.57041C20.7032 4.53767 20.6157 4.57041 20.5829 4.64696L19.7078 6.75793C19.6751 6.83448 19.7188 6.91103 19.7953 6.94388C19.8719 6.97662 19.9594 6.94388 19.9923 6.86733L20.8673 4.75637C20.8892 4.69066 20.8563 4.60316 20.7798 4.57041V4.57041Z" fill="white"/>
<path d="M21.261 6.25474C21.1844 6.21093 21.1515 6.12343 21.1844 6.04689L21.6437 5.13916C21.6874 5.0625 21.7749 5.02965 21.8625 5.07345C21.939 5.11726 21.9718 5.20476 21.939 5.28119L21.4796 6.18903C21.4359 6.26558 21.3484 6.29854 21.2609 6.25474H21.261Z" fill="#F3F3F3"/>
<path d="M21.2611 6.26577C21.1735 6.22197 21.1407 6.12351 21.1844 6.03601L21.6439 5.12828C21.6875 5.04067 21.7861 5.00792 21.8735 5.05162C21.961 5.09542 21.9939 5.19388 21.9501 5.28137L21.4907 6.18911C21.4469 6.27661 21.3485 6.30946 21.261 6.26566L21.2611 6.26577ZM21.8627 5.07352C21.786 5.04078 21.6985 5.06257 21.6658 5.13912L21.2063 6.04697C21.1736 6.11256 21.2063 6.20006 21.2719 6.24387C21.3485 6.27661 21.436 6.25482 21.4688 6.17827L21.9283 5.27042C21.961 5.20483 21.9283 5.11733 21.8627 5.07352Z" fill="white"/>
<path d="M21.4798 7.87353C21.4032 7.81888 21.3813 7.72043 21.436 7.65483L22.7048 5.76256C22.7485 5.68601 22.847 5.67506 22.9235 5.71887C23.0001 5.77351 23.0219 5.87196 22.9673 5.93756L21.6985 7.82983C21.6548 7.90638 21.5563 7.92828 21.4798 7.87353Z" fill="#F3F3F3"/>
<path d="M21.4797 7.88442C21.4032 7.82977 21.3813 7.72037 21.4251 7.64382L22.6938 5.75161C22.7485 5.67506 22.8469 5.65316 22.9344 5.70791C23.011 5.76256 23.0329 5.87196 22.9892 5.94851L21.7203 7.84072C21.6657 7.91727 21.5563 7.93906 21.4797 7.88442ZM22.9235 5.72982C22.858 5.68601 22.7594 5.69696 22.7157 5.76256L21.4469 7.65478C21.4032 7.72026 21.425 7.80787 21.4907 7.85156C21.5563 7.89537 21.6547 7.88442 21.6984 7.81882L22.9673 5.93755C23.011 5.87196 22.9892 5.77351 22.9235 5.72982V5.72982Z" fill="white"/>
<path d="M23.0766 7.46886C23.0111 7.4141 22.9892 7.31565 23.0438 7.25005L23.6782 6.4516C23.7328 6.38612 23.8313 6.37505 23.8969 6.42981C23.9626 6.48445 23.9844 6.58291 23.9296 6.6485L23.2954 7.44695C23.2407 7.51255 23.1423 7.5235 23.0767 7.46886H23.0766Z" fill="#F3F3F3"/>
<path d="M23.0657 7.47974C22.9891 7.42498 22.9782 7.31557 23.0329 7.23902L23.6672 6.44066C23.7219 6.364 23.8312 6.35305 23.9078 6.41876C23.9843 6.4734 23.9953 6.58281 23.9405 6.65936L23.3063 7.45783C23.2516 7.53439 23.1422 7.54534 23.0657 7.47974V7.47974ZM23.8859 6.44055C23.8204 6.3859 23.7328 6.39685 23.6782 6.46245L23.0438 7.26093C23.0001 7.32652 23.011 7.41403 23.0765 7.46867C23.1422 7.52343 23.2297 7.51248 23.2844 7.44688L23.9187 6.64841C23.9625 6.58281 23.9515 6.48436 23.886 6.44066L23.8859 6.44055Z" fill="white"/>
<path d="M22.9672 9.10941C22.9016 9.04382 22.9016 8.94537 22.9672 8.89061L24.5859 7.28289C24.6516 7.2173 24.7499 7.22814 24.8046 7.28289C24.8593 7.33754 24.8702 7.44694 24.8046 7.50158L23.197 9.10941C23.1313 9.17501 23.0328 9.17501 22.9672 9.10941V9.10941Z" fill="#F3F3F3"/>
<path d="M22.9563 9.12037C22.9247 9.08828 22.907 9.04508 22.907 9.00007C22.907 8.95507 22.9247 8.91187 22.9563 8.87978L24.575 7.27193C24.6071 7.24035 24.6503 7.22266 24.6954 7.22266C24.7404 7.22266 24.7836 7.24035 24.8157 7.27193C24.8473 7.30403 24.8649 7.34723 24.8649 7.39223C24.8649 7.43723 24.8473 7.48044 24.8157 7.51253L23.1969 9.12026C23.1648 9.1518 23.1216 9.16948 23.0766 9.16948C23.0316 9.16948 22.9884 9.1518 22.9563 9.12026V9.12037ZM24.8048 7.28289C24.7501 7.22813 24.6517 7.22813 24.597 7.28289L22.9782 8.89062C22.9234 8.94537 22.9234 9.04382 22.9782 9.09847C23.0328 9.15323 23.1313 9.15323 23.1859 9.09847L24.8048 7.49074C24.8594 7.43598 24.8594 7.34848 24.8048 7.28289Z" fill="white"/>
<path d="M24.6078 9.02192C24.5532 8.95633 24.5532 8.85788 24.6188 8.80312L25.3953 8.14695C25.4609 8.09231 25.5593 8.10315 25.6141 8.16885C25.6687 8.23445 25.6687 8.3329 25.6031 8.38754L24.8266 9.04382C24.7609 9.09847 24.6625 9.08752 24.6078 9.02192Z" fill="#F3F3F3"/>
<path d="M24.5969 9.03285C24.5313 8.95631 24.5422 8.8469 24.6078 8.79226L25.3843 8.13596C25.4499 8.07036 25.5593 8.08131 25.6249 8.15786C25.6906 8.23441 25.6796 8.34381 25.614 8.39846L24.8374 9.05476C24.772 9.12024 24.6624 9.1094 24.597 9.03285H24.5969ZM25.6031 8.16881C25.5483 8.10322 25.4608 8.10322 25.3954 8.14691L24.6188 8.80321C24.5641 8.85786 24.5532 8.94535 24.6078 9.01095C24.6624 9.07655 24.7501 9.07655 24.8155 9.03285L25.5921 8.37655C25.6577 8.32191 25.6577 8.23441 25.6031 8.16881Z" fill="white"/>
<path d="M24.1704 10.597C24.1157 10.5204 24.1376 10.422 24.2142 10.3782L26.1172 9.10946C26.1937 9.06565 26.2922 9.08756 26.3358 9.15327C26.3906 9.22982 26.3687 9.32827 26.2922 9.37196L24.3891 10.6407C24.3234 10.6845 24.225 10.6626 24.1704 10.597V10.597Z" fill="#F3F3F3"/>
<path d="M24.1594 10.5969C24.1047 10.5204 24.1266 10.411 24.2032 10.3563L26.1063 9.08751C26.1828 9.03287 26.2922 9.05477 26.3469 9.14227C26.4016 9.21882 26.3796 9.32822 26.3032 9.38275L24.4001 10.6517C24.3234 10.7064 24.2141 10.6845 24.1594 10.597V10.5969ZM26.325 9.16417C26.2813 9.09847 26.1938 9.07656 26.1282 9.12037L24.225 10.389C24.1595 10.4329 24.1375 10.5204 24.1922 10.5969C24.2359 10.6625 24.3234 10.6844 24.3891 10.6407L26.2922 9.37191C26.3578 9.31727 26.3688 9.22966 26.325 9.16417Z" fill="white"/>
<path d="M25.8002 10.8266C25.7564 10.7499 25.7783 10.6516 25.8549 10.6078L26.7408 10.1047C26.8174 10.0609 26.9158 10.0938 26.9595 10.1702C27.0033 10.2469 26.9814 10.3452 26.9049 10.389L26.0189 10.8922C25.9424 10.9359 25.8439 10.9031 25.8001 10.8265L25.8002 10.8266Z" fill="#F3F3F3"/>
<path d="M25.7893 10.8375C25.7455 10.75 25.7674 10.6515 25.8439 10.6078L26.7299 10.1047C26.8065 10.0609 26.9159 10.0938 26.9596 10.1702C27.0034 10.2578 26.9815 10.3563 26.9049 10.4L26.0189 10.9032C25.9424 10.9469 25.833 10.914 25.7893 10.8375V10.8375ZM26.9486 10.1813C26.9049 10.1047 26.8174 10.0828 26.7518 10.1265L25.8658 10.6297C25.8003 10.6734 25.7783 10.7609 25.8111 10.8265C25.8549 10.9031 25.9424 10.925 26.008 10.8813L26.894 10.3781C26.9596 10.3453 26.9815 10.2578 26.9486 10.1813V10.1813Z" fill="white"/>
<path d="M25.0673 12.2813C25.0345 12.1938 25.0673 12.1063 25.1548 12.0735L27.2657 11.1986C27.3422 11.1657 27.4407 11.2094 27.4734 11.2859C27.5063 11.3734 27.4734 11.4609 27.3859 11.4937L25.2751 12.3687C25.1985 12.4015 25.1001 12.3687 25.0673 12.2813Z" fill="#F3F3F3"/>
<path d="M25.0563 12.2922C25.0235 12.2048 25.0563 12.1063 25.1438 12.0625L27.2547 11.1876C27.2968 11.1717 27.3434 11.1732 27.3844 11.1916C27.4254 11.2101 27.4574 11.244 27.4734 11.286C27.5062 11.3735 27.4734 11.4719 27.3859 11.5156L25.2751 12.3906C25.233 12.4065 25.1864 12.4051 25.1454 12.3866C25.1043 12.3682 25.0723 12.3343 25.0563 12.2923V12.2922ZM27.4516 11.297C27.4187 11.2204 27.3312 11.1876 27.2657 11.2095L25.1547 12.0844C25.0782 12.1172 25.0453 12.2048 25.0782 12.2813C25.1109 12.3579 25.1984 12.3907 25.2641 12.3688L27.3749 11.4938C27.4516 11.4611 27.4845 11.3735 27.4516 11.297Z" fill="white"/>
<path d="M26.6096 12.8283C26.5768 12.7406 26.6205 12.6533 26.708 12.6204L27.6704 12.3031C27.747 12.2704 27.8454 12.325 27.8673 12.4016C27.9 12.4891 27.8563 12.5766 27.7689 12.6094L26.8064 12.9267C26.7299 12.9594 26.6424 12.9158 26.6096 12.8281V12.8283Z" fill="#F3F3F3"/>
<path d="M26.5984 12.839C26.5657 12.7515 26.6094 12.6531 26.708 12.6203L27.6702 12.3031C27.7577 12.2703 27.8562 12.325 27.889 12.4126C27.9218 12.5 27.8781 12.5984 27.7795 12.6313L26.8172 12.9485C26.7297 12.9703 26.6313 12.9265 26.5984 12.839ZM27.8671 12.4235C27.8452 12.3469 27.7577 12.3031 27.6812 12.325L26.7188 12.6422C26.6422 12.664 26.6094 12.7515 26.6313 12.8282C26.6532 12.9047 26.7407 12.9484 26.8172 12.9265L27.7796 12.6094C27.8562 12.5766 27.889 12.5 27.8671 12.4234V12.4235Z" fill="white"/>
<path d="M25.6253 14.1297C25.6034 14.0422 25.658 13.9547 25.7455 13.9438L27.9876 13.5063C28.075 13.4844 28.1516 13.55 28.1734 13.6375C28.1953 13.725 28.1407 13.8125 28.0532 13.8234L25.8111 14.2609C25.7236 14.2719 25.6361 14.2172 25.6251 14.1297H25.6253Z" fill="#F3F3F3"/>
<path d="M25.6031 14.1299C25.5812 14.0314 25.6468 13.9439 25.7343 13.922L27.9765 13.4844C28.064 13.4625 28.1515 13.5283 28.1733 13.6267C28.1952 13.7251 28.1296 13.8126 28.0421 13.8345L25.7999 14.272C25.7125 14.2939 25.6249 14.2283 25.6031 14.1297V14.1299ZM28.1515 13.6376C28.1406 13.561 28.064 13.5064 27.9875 13.5173L25.7452 13.9548C25.6687 13.9658 25.614 14.0532 25.6358 14.1299C25.6468 14.2064 25.7233 14.2611 25.8 14.2501L28.0421 13.8126C28.1186 13.7907 28.1733 13.7141 28.1515 13.6376Z" fill="white"/>
<path d="M27.0251 14.9719C27.0141 14.8844 27.0688 14.8078 27.1563 14.7968L28.1624 14.6765C28.2499 14.6656 28.3266 14.7312 28.3374 14.8187C28.3484 14.9063 28.2938 14.9828 28.2063 14.9938L27.2 15.114C27.1234 15.125 27.0359 15.0594 27.025 14.9719H27.0251Z" fill="#F3F3F3"/>
<path d="M27.0141 14.9719C27.0032 14.8734 27.0688 14.7859 27.1563 14.775L28.1624 14.6548C28.2499 14.6438 28.3374 14.7094 28.3484 14.8078C28.3593 14.9063 28.2937 14.9938 28.2062 15.0047L27.2 15.125C27.1126 15.1359 27.025 15.0703 27.0141 14.9719ZM28.3374 14.8188C28.3266 14.7423 28.25 14.6765 28.1734 14.6875L27.1672 14.8078C27.0907 14.8188 27.0359 14.8953 27.0469 14.9719C27.0578 15.0484 27.1344 15.1141 27.2109 15.1032L28.2172 14.9828C28.2937 14.9719 28.3484 14.8953 28.3375 14.8188H28.3374Z" fill="white"/>
<path d="M25.8002 16.0328C25.8002 15.9453 25.8657 15.8688 25.9533 15.8688H28.2393C28.3268 15.8688 28.3924 15.9453 28.3924 16.0328C28.3924 16.1203 28.3268 16.1969 28.2393 16.1969H25.9533C25.8658 16.1969 25.8002 16.1203 25.8002 16.0328Z" fill="#F3F3F3"/>
<path d="M25.7892 16.0329C25.7892 15.9345 25.8658 15.8579 25.9533 15.8579H28.2392C28.3267 15.8579 28.4033 15.9345 28.4033 16.0329C28.4033 16.1313 28.3267 16.2079 28.2392 16.2079H25.9533C25.8658 16.2079 25.7892 16.1313 25.7892 16.0329ZM28.3814 16.0439C28.3814 15.9673 28.3158 15.8908 28.2391 15.8908H25.9534C25.8769 15.8908 25.8111 15.9562 25.8111 16.0439C25.8111 16.1204 25.8769 16.1969 25.9534 16.1969H28.2394C28.3159 16.186 28.3815 16.1204 28.3815 16.0439H28.3814Z" fill="white"/>
<path d="M27.0142 17.1375C27.025 17.05 27.0907 16.9844 27.1782 16.9844L28.1954 17.0609C28.2828 17.0719 28.3484 17.1484 28.3374 17.2359C28.3266 17.3234 28.2609 17.389 28.1734 17.389L27.1563 17.3125C27.0797 17.3015 27.014 17.225 27.014 17.1375H27.0142Z" fill="#F3F3F3"/>
<path d="M27.0032 17.1376C27.0142 17.0391 27.0907 16.9735 27.1783 16.9735L28.1956 17.0501C28.283 17.061 28.3596 17.1376 28.3486 17.236C28.3378 17.3345 28.2611 17.4001 28.1736 17.4001L27.1563 17.3235C27.0688 17.3126 27.0032 17.2251 27.0032 17.1376ZM28.3378 17.236C28.3486 17.1595 28.283 17.0829 28.2064 17.0829L27.1891 17.0064C27.1126 17.0064 27.0469 17.061 27.036 17.1486C27.0251 17.2251 27.0907 17.3016 27.1673 17.3016L28.1847 17.3782C28.2611 17.3782 28.3268 17.3127 28.3378 17.236V17.236Z" fill="white"/>
<path d="M25.6033 17.936C25.6252 17.8485 25.7018 17.7937 25.7893 17.8048L28.0315 18.2532C28.119 18.275 28.1737 18.3516 28.1518 18.4391C28.1299 18.5266 28.0534 18.5813 27.9659 18.5704L25.7236 18.1219C25.647 18.111 25.5924 18.0235 25.6033 17.936V17.936Z" fill="#F3F3F3"/>
<path d="M25.5921 17.936C25.614 17.8375 25.7015 17.7829 25.789 17.7937L28.0313 18.2422C28.1188 18.264 28.1844 18.3515 28.1625 18.45C28.1407 18.5484 28.0532 18.6032 27.9657 18.5922L25.7233 18.1438C25.6358 18.1219 25.5811 18.0344 25.5921 17.9361V17.936ZM28.1407 18.45C28.1517 18.3734 28.108 18.2969 28.0313 18.275L25.7889 17.8266C25.7125 17.8157 25.6358 17.8594 25.6139 17.9469C25.603 18.0235 25.6467 18.1 25.7234 18.1219L27.9657 18.5703C28.0532 18.5813 28.1188 18.5265 28.1407 18.45Z" fill="white"/>
<path d="M26.5876 19.2485C26.5926 19.2277 26.6017 19.208 26.6143 19.1907C26.6269 19.1734 26.6428 19.1587 26.661 19.1476C26.6793 19.1364 26.6996 19.1289 26.7208 19.1256C26.7419 19.1223 26.7635 19.1232 26.7844 19.1282L27.7687 19.4016C27.8562 19.4235 27.8999 19.5111 27.8781 19.5985C27.8731 19.6193 27.8641 19.639 27.8515 19.6563C27.8388 19.6737 27.8229 19.6883 27.8046 19.6995C27.7864 19.7107 27.766 19.7182 27.7449 19.7215C27.7237 19.7248 27.7021 19.7239 27.6812 19.7189L26.6969 19.4454C26.6094 19.4235 26.5657 19.336 26.5875 19.2485H26.5876Z" fill="#F3F3F3"/>
<path d="M26.5767 19.2485C26.5986 19.161 26.697 19.0954 26.7845 19.1282L27.7689 19.4015C27.8564 19.4234 27.9112 19.5219 27.8893 19.6094C27.8673 19.6969 27.7689 19.7624 27.6814 19.7297L26.697 19.4563C26.6095 19.4344 26.5548 19.3469 26.5768 19.2486L26.5767 19.2485ZM27.8564 19.6094C27.8783 19.5328 27.8345 19.4453 27.7579 19.4234L26.7736 19.15C26.697 19.1281 26.6205 19.1719 26.5986 19.2594C26.5768 19.336 26.6205 19.4234 26.697 19.4453L27.6814 19.7188C27.7579 19.7297 27.8345 19.686 27.8564 19.6094Z" fill="white"/>
<path d="M25.0453 19.7735C25.0781 19.686 25.1766 19.6531 25.2531 19.686L27.3641 20.5609C27.4406 20.5937 27.4843 20.6922 27.4516 20.7687C27.4187 20.8563 27.3203 20.889 27.2437 20.8563L25.1328 19.9813C25.0453 19.9486 25.0125 19.85 25.0453 19.7736V19.7735Z" fill="#F3F3F3"/>
<path d="M25.0344 19.7625C25.0504 19.7205 25.0824 19.6865 25.1234 19.668C25.1644 19.6496 25.2111 19.6481 25.2532 19.664L27.364 20.5391C27.4515 20.5719 27.4843 20.6704 27.4515 20.7688C27.4355 20.8109 27.4035 20.8448 27.3625 20.8633C27.3215 20.8817 27.2748 20.8832 27.2327 20.8673L25.1219 19.9923C25.0344 19.9484 25.0016 19.85 25.0344 19.7625ZM27.4296 20.7579C27.4624 20.6813 27.4296 20.5938 27.3531 20.561L25.2422 19.6859C25.1657 19.6532 25.0891 19.6969 25.0563 19.7734C25.0235 19.85 25.0563 19.9375 25.1328 19.9704L27.2437 20.8454C27.3202 20.8673 27.4077 20.8344 27.4296 20.7579Z" fill="white"/>
<path d="M25.7563 21.25C25.8001 21.1735 25.8874 21.1406 25.964 21.1735L26.8717 21.6329C26.9482 21.6656 26.9811 21.7641 26.9374 21.8516C26.8936 21.9281 26.8061 21.9611 26.7296 21.9281L25.822 21.4688C25.7453 21.425 25.7125 21.3266 25.7563 21.25Z" fill="#F3F3F3"/>
<path d="M25.7452 21.2391C25.789 21.1516 25.8875 21.1189 25.975 21.1626L26.8828 21.622C26.9703 21.6658 27.0031 21.7643 26.9593 21.8516C26.9156 21.9391 26.817 21.972 26.7297 21.9282L25.8219 21.4689C25.7343 21.4362 25.7015 21.3266 25.7452 21.2391V21.2391ZM26.9266 21.8407C26.9593 21.7641 26.9374 21.6766 26.8608 21.6439L25.9531 21.1845C25.8874 21.1517 25.8 21.1845 25.7562 21.2501C25.7234 21.3266 25.7452 21.4141 25.8218 21.447L26.7295 21.9064C26.8062 21.9391 26.8937 21.9174 26.9266 21.8407Z" fill="white"/>
<path d="M24.1484 21.4578C24.2031 21.3813 24.2906 21.3594 24.3672 21.414L26.2703 22.6828C26.3469 22.7265 26.3578 22.8251 26.3141 22.9015C26.2594 22.9782 26.1719 23 26.0953 22.9453L24.1922 21.6765C24.1156 21.6219 24.0937 21.5234 24.1484 21.4578Z" fill="#F3F3F3"/>
<path d="M24.1375 21.4468C24.1922 21.3703 24.3016 21.3484 24.3782 21.3922L26.2814 22.6609C26.3579 22.7155 26.3798 22.814 26.325 22.9015C26.2704 22.9781 26.161 22.9999 26.0846 22.9562L24.1813 21.6874C24.0938 21.6328 24.0828 21.5234 24.1375 21.4468ZM26.2923 22.8905C26.336 22.825 26.325 22.7265 26.2596 22.6828L24.3563 21.414C24.2907 21.3703 24.2032 21.3922 24.1594 21.4578C24.1157 21.5234 24.1266 21.6218 24.1921 21.6655L26.0954 22.9343C26.161 22.9781 26.2485 22.9562 26.2923 22.8906V22.8905Z" fill="white"/>
<path d="M24.5532 23.0438C24.6078 22.9781 24.7063 22.9563 24.7719 23.0111L25.5703 23.6344C25.6359 23.6891 25.6469 23.7875 25.5922 23.8532C25.5376 23.9187 25.4391 23.9407 25.3734 23.886L24.575 23.2625C24.5095 23.2078 24.4984 23.1094 24.5532 23.0438V23.0438Z" fill="#F3F3F3"/>
<path d="M24.5422 23.0329C24.5969 22.9564 24.7063 22.9454 24.7828 23.0002L25.5812 23.6235C25.6578 23.6782 25.6687 23.7876 25.614 23.8641C25.5593 23.9408 25.4499 23.9516 25.3735 23.897L24.575 23.2735C24.4984 23.2189 24.4876 23.1095 24.5422 23.0329ZM25.5922 23.8533C25.6468 23.7876 25.6359 23.7001 25.5703 23.6454L24.7719 23.022C24.7063 22.9783 24.6188 22.9892 24.5641 23.0547C24.5094 23.1204 24.5203 23.2079 24.5859 23.2626L25.3843 23.886C25.4499 23.9298 25.5374 23.9188 25.5921 23.8533H25.5922Z" fill="white"/>
<path d="M22.9234 22.9345C22.9891 22.8689 23.0876 22.8689 23.1422 22.9345L24.761 24.5422C24.8267 24.6079 24.8157 24.7063 24.761 24.761C24.6955 24.8266 24.5969 24.8266 24.5423 24.761L22.9234 23.1533C22.8688 23.0985 22.8688 22.9891 22.9234 22.9345V22.9345Z" fill="#F3F3F3"/>
<path d="M22.9234 22.9234C22.9555 22.8918 22.9987 22.8741 23.0437 22.8741C23.0888 22.8741 23.132 22.8918 23.1641 22.9234L24.7829 24.5311C24.8144 24.5632 24.8321 24.6064 24.8321 24.6515C24.8321 24.6965 24.8144 24.7397 24.7829 24.7718C24.7508 24.8034 24.7076 24.8211 24.6626 24.8211C24.6175 24.8211 24.5743 24.8034 24.5423 24.7718L22.9234 23.1641C22.8468 23.0984 22.8468 22.9891 22.9234 22.9234ZM24.761 24.7499C24.8157 24.6953 24.8157 24.5968 24.761 24.5422L23.1422 22.9344C23.0875 22.8797 22.9891 22.8797 22.9344 22.9344C22.8797 22.989 22.8797 23.0875 22.9344 23.1421L24.5532 24.7499C24.6078 24.8156 24.6955 24.8156 24.761 24.7499Z" fill="white"/>
<path d="M23.0218 24.564C23.0876 24.5094 23.1859 24.5094 23.2407 24.575L23.9079 25.3406C23.9625 25.4063 23.9516 25.5047 23.8859 25.5594C23.8204 25.614 23.7219 25.614 23.6672 25.5484L22.9999 24.7828C22.9453 24.7282 22.9562 24.6297 23.0218 24.564V24.564Z" fill="#F3F3F3"/>
<path d="M23.011 24.564C23.0876 24.4986 23.186 24.5094 23.2515 24.575L23.9188 25.3406C23.9844 25.4063 23.9734 25.5156 23.8969 25.5813C23.8203 25.6469 23.7219 25.6359 23.6563 25.5703L22.989 24.8047C22.9344 24.7282 22.9344 24.6188 23.0109 24.564H23.011ZM23.886 25.5594C23.9515 25.5047 23.9515 25.4171 23.9078 25.3516L23.2406 24.5859C23.1859 24.5313 23.0984 24.5203 23.0328 24.575C22.9672 24.6297 22.9672 24.7172 23.0109 24.7827L23.6782 25.5484C23.7328 25.614 23.8204 25.614 23.8859 25.5594H23.886Z" fill="white"/>
<path d="M21.4469 24.1485C21.5235 24.0939 21.6219 24.1158 21.6657 24.1923L22.9344 26.0844C22.9782 26.161 22.9563 26.2594 22.8907 26.3032C22.8142 26.3579 22.7157 26.336 22.6719 26.2594L21.4031 24.3672C21.3593 24.2908 21.3812 24.1922 21.4468 24.1485H21.4469Z" fill="#F3F3F3"/>
<path d="M21.4469 24.1375C21.5234 24.0829 21.6328 24.1048 21.6875 24.1813L22.9562 26.0735C23.0108 26.1499 22.9889 26.2593 22.9016 26.3139C22.8249 26.3687 22.7156 26.3468 22.6609 26.2702L21.3923 24.3781C21.3376 24.2907 21.3595 24.1923 21.4469 24.1376V24.1375ZM22.8906 26.2921C22.9562 26.2483 22.9781 26.1608 22.9343 26.0952L21.6657 24.2031C21.6219 24.1376 21.5344 24.1266 21.458 24.1704C21.3923 24.2141 21.3704 24.3016 21.4142 24.3673L22.6828 26.2593C22.7266 26.3139 22.825 26.3358 22.8905 26.292L22.8906 26.2921Z" fill="white"/>
<path d="M21.2172 25.7671C21.2938 25.7234 21.3922 25.7453 21.4359 25.8219L21.9391 26.7078C21.9828 26.7844 21.9499 26.8828 21.8734 26.9265C21.7968 26.9703 21.6984 26.9484 21.6547 26.8719L21.1516 25.9859C21.1188 25.9094 21.1407 25.8109 21.2171 25.7672L21.2172 25.7671Z" fill="#F3F3F3"/>
<path d="M21.2172 25.7563C21.3047 25.7125 21.4032 25.7344 21.4469 25.811L21.95 26.697C21.9938 26.7736 21.9719 26.883 21.8845 26.9267C21.7969 26.9705 21.6984 26.9486 21.6547 26.8721L21.1516 25.986C21.1078 25.9095 21.1297 25.811 21.2171 25.7563H21.2172ZM21.8734 26.9159C21.9391 26.8721 21.9719 26.7845 21.9282 26.7189L21.4251 25.8329C21.3813 25.7673 21.2938 25.7454 21.2282 25.7781C21.1625 25.8219 21.1297 25.9095 21.1734 25.9751L21.6766 26.8611C21.7094 26.9267 21.8078 26.9596 21.8734 26.9158V26.9159Z" fill="white"/>
<path d="M19.7626 25.0454C19.8501 25.0126 19.9376 25.0454 19.9705 25.1219L20.8564 27.2328C20.8892 27.3094 20.8455 27.4078 20.7689 27.4405C20.6924 27.4734 20.5939 27.4405 20.5612 27.364L19.6752 25.2532C19.6424 25.1765 19.6861 25.0782 19.7626 25.0454Z" fill="#F3F3F3"/>
<path d="M19.7624 25.0344C19.8499 25.0017 19.9484 25.0344 19.9922 25.1219L20.8781 27.2329C20.894 27.2749 20.8925 27.3216 20.874 27.3626C20.8556 27.4035 20.8217 27.4356 20.7797 27.4516C20.6922 27.4844 20.5937 27.4516 20.55 27.3641L19.6641 25.2532C19.6313 25.1766 19.6751 25.0782 19.7624 25.0344V25.0344ZM20.7578 27.4298C20.8343 27.3969 20.8672 27.3094 20.8343 27.2438L19.9484 25.1329C19.9156 25.0563 19.8281 25.0235 19.7516 25.0563C19.6751 25.0891 19.6421 25.1766 19.6751 25.2423L20.5609 27.3532C20.6047 27.4298 20.6812 27.4625 20.7578 27.4298Z" fill="white"/>
<path d="M19.2265 26.5985C19.3141 26.5658 19.4015 26.6095 19.4344 26.697L19.7516 27.6595C19.7844 27.736 19.7297 27.8345 19.6532 27.8564C19.5657 27.8891 19.4782 27.8454 19.4454 27.7579L19.1282 26.7954C19.0954 26.7189 19.1391 26.6314 19.2266 26.5985H19.2265Z" fill="#F3F3F3"/>
<path d="M19.2158 26.5876C19.2579 26.5717 19.3045 26.5732 19.3455 26.5916C19.3865 26.6101 19.4185 26.644 19.4346 26.686L19.7519 27.6485C19.7846 27.736 19.7299 27.8344 19.6423 27.8673C19.6003 27.8831 19.5536 27.8817 19.5126 27.8632C19.4716 27.8448 19.4396 27.8108 19.4236 27.7688L19.1064 26.8064C19.0845 26.7189 19.1283 26.6204 19.2158 26.5876ZM19.6424 27.8453C19.719 27.8235 19.7627 27.736 19.7409 27.6594L19.4236 26.697C19.4018 26.6204 19.3143 26.5876 19.2377 26.6095C19.1611 26.6314 19.1174 26.7189 19.1393 26.7954L19.4565 27.7579C19.462 27.7764 19.4715 27.7936 19.4841 27.8083C19.4968 27.823 19.5124 27.8348 19.5299 27.8431C19.5475 27.8514 19.5666 27.8558 19.5859 27.8562C19.6053 27.8566 19.6246 27.8529 19.6424 27.8454V27.8453Z" fill="white"/>
<path d="M17.936 25.6032C18.0234 25.5813 18.111 25.636 18.1219 25.7235L18.5814 27.9658C18.6033 28.0532 18.5375 28.1299 18.45 28.1516C18.3626 28.1735 18.275 28.1189 18.2642 28.0314L17.8046 25.7891C17.7937 25.7125 17.8484 25.625 17.9359 25.6031L17.936 25.6032Z" fill="#F3F3F3"/>
<path d="M17.9361 25.592C18.0344 25.5702 18.1219 25.6358 18.1438 25.7233L18.6031 27.9657C18.625 28.0531 18.5593 28.1516 18.4718 28.1626C18.3734 28.1845 18.2859 28.1189 18.2641 28.0313L17.8047 25.7889C17.7829 25.7014 17.8376 25.6139 17.936 25.5921L17.9361 25.592ZM18.4499 28.1406C18.5266 28.1298 18.5812 28.0531 18.5703 27.9656L18.1109 25.7233C18.1001 25.6467 18.0126 25.5921 17.936 25.6139C17.8594 25.6248 17.8048 25.7014 17.8157 25.7889L18.2751 28.0313C18.2969 28.1079 18.3734 28.1516 18.4501 28.1408L18.4499 28.1406Z" fill="white"/>
<path d="M17.1048 27.0249C17.1923 27.014 17.2689 27.0688 17.2908 27.1562L17.4219 28.1624C17.4329 28.2499 17.3673 28.3265 17.2797 28.3374C17.1923 28.3484 17.1158 28.2937 17.0939 28.2062L16.9627 27.1999C16.9517 27.1124 17.0173 27.0359 17.1048 27.0249Z" fill="#F3F3F3"/>
<path d="M17.1046 27.0141C17.2031 27.0033 17.2907 27.0689 17.3016 27.1564L17.4329 28.1626C17.4438 28.2501 17.3782 28.3376 17.2797 28.3486C17.1812 28.3595 17.0937 28.2939 17.0827 28.2063L16.9514 27.2001C16.9405 27.1126 17.0061 27.0251 17.1046 27.0141ZM17.2687 28.3267C17.3453 28.3158 17.4111 28.2392 17.4001 28.1626L17.2687 27.1564C17.2578 27.0798 17.1812 27.0251 17.1046 27.036C17.028 27.047 16.9623 27.1235 16.9732 27.2001L17.1046 28.2064C17.1156 28.283 17.1922 28.3376 17.2687 28.3267Z" fill="white"/>
<path d="M15.9782 25.7999C16.0657 25.7999 16.1422 25.8656 16.1422 25.9531V28.239C16.1422 28.3265 16.0657 28.3922 15.9782 28.3922C15.8907 28.3922 15.8141 28.3265 15.8141 28.239V25.9531C15.8251 25.8656 15.8907 25.7999 15.9782 25.7999Z" fill="#F3F3F3"/>
<path d="M15.9782 25.7889C16.0766 25.7889 16.1531 25.8655 16.1531 25.953V28.2389C16.1531 28.3264 16.0766 28.403 15.9782 28.403C15.8797 28.403 15.8032 28.3264 15.8032 28.2389V25.9531C15.8032 25.8656 15.8907 25.7889 15.9782 25.7889ZM15.9782 28.3812C16.0547 28.3812 16.1312 28.3156 16.1312 28.2389V25.9531C16.1312 25.8764 16.0656 25.8108 15.9782 25.8108C15.9016 25.8108 15.8251 25.8764 15.8251 25.9531V28.2389C15.8359 28.3156 15.9016 28.3812 15.9782 28.3812Z" fill="white"/>
<path d="M14.8844 27.025C14.9719 27.0359 15.0375 27.1015 15.0375 27.189L14.961 28.2063C14.9501 28.2938 14.8735 28.3594 14.786 28.3485C14.6985 28.3375 14.6329 28.2719 14.6329 28.1844L14.7094 27.1671C14.7204 27.0798 14.7969 27.014 14.8844 27.025Z" fill="#F3F3F3"/>
<path d="M14.8844 27.0141C14.9828 27.0251 15.0484 27.1016 15.0484 27.1891L14.9719 28.2064C14.9609 28.2939 14.8844 28.3705 14.7859 28.3595C14.6876 28.3486 14.6219 28.272 14.6219 28.1845L14.6984 27.1672C14.7094 27.0689 14.7859 27.0033 14.8844 27.0141ZM14.7859 28.3376C14.8625 28.3376 14.9391 28.283 14.9391 28.2064L15.0157 27.1891C15.0157 27.1126 14.9609 27.047 14.8734 27.036C14.7969 27.036 14.7203 27.0907 14.7203 27.1673L14.6438 28.1845C14.6438 28.2611 14.7094 28.3268 14.786 28.3376H14.7859Z" fill="white"/>
<path d="M14.064 25.6031C14.1515 25.6249 14.2062 25.7014 14.1952 25.7889L13.7468 28.0314C13.7249 28.1189 13.6484 28.1737 13.5609 28.1516C13.4734 28.1298 13.4187 28.0533 13.4297 27.9657L13.8781 25.7233C13.8891 25.6468 13.9766 25.5921 14.064 25.6031Z" fill="#F3F3F3"/>
<path d="M14.0642 25.592C14.1626 25.6139 14.2173 25.7015 14.2064 25.7889L13.7579 28.0313C13.736 28.1188 13.6485 28.1844 13.5502 28.1624C13.4517 28.1405 13.397 28.053 13.4079 27.9655L13.8564 25.7233C13.8783 25.6358 13.9658 25.581 14.0641 25.5921L14.0642 25.592ZM13.5502 28.1405C13.6267 28.1515 13.7033 28.1078 13.7252 28.0313L14.1735 25.7889C14.1845 25.7124 14.1408 25.6358 14.0533 25.6139C13.9767 25.6031 13.9002 25.6468 13.8783 25.7234L13.4298 27.9655C13.4189 28.053 13.4735 28.1188 13.5502 28.1405V28.1405Z" fill="white"/>
<path d="M12.7517 26.5877C12.8393 26.6096 12.8939 26.6971 12.872 26.7846L12.5986 27.7689C12.5768 27.8564 12.4893 27.9001 12.4018 27.8783C12.381 27.8733 12.3613 27.8642 12.344 27.8516C12.3266 27.839 12.312 27.8231 12.3008 27.8048C12.2896 27.7865 12.2821 27.7662 12.2788 27.745C12.2755 27.7238 12.2764 27.7022 12.2814 27.6814L12.5549 26.6971C12.5768 26.6096 12.6643 26.5659 12.7518 26.5877H12.7517Z" fill="#F3F3F3"/>
<path d="M12.7516 26.5768C12.8392 26.5986 12.9048 26.6971 12.8719 26.7846L12.5985 27.769C12.5767 27.8565 12.4783 27.9112 12.3908 27.8892C12.3033 27.8674 12.2377 27.769 12.2704 27.6815L12.5439 26.6971C12.5658 26.6096 12.6533 26.5548 12.7516 26.5767V26.5768ZM12.3908 27.8565C12.4673 27.8784 12.5548 27.8346 12.5767 27.758L12.85 26.7736C12.8719 26.6971 12.8282 26.6205 12.7407 26.5986C12.6642 26.5767 12.5767 26.6205 12.5548 26.6971L12.2814 27.6815C12.2704 27.758 12.3141 27.8346 12.3908 27.8565Z" fill="white"/>
<path d="M12.2156 25.0454C12.3031 25.0781 12.3358 25.1766 12.3031 25.2531L11.4281 27.3641C11.3953 27.4407 11.2968 27.4844 11.2204 27.4407C11.1437 27.3969 11.0999 27.3094 11.1327 27.2329L12.0077 25.1219C12.0405 25.0454 12.139 25.0016 12.2155 25.0454H12.2156Z" fill="#F3F3F3"/>
<path d="M12.2156 25.0344C12.2576 25.0504 12.2915 25.0824 12.31 25.1234C12.3285 25.1644 12.3299 25.2111 12.314 25.2532L11.439 27.364C11.4061 27.4515 11.3077 27.4843 11.2092 27.4515C11.1672 27.4354 11.1333 27.4034 11.1148 27.3625C11.0964 27.3215 11.0949 27.2748 11.1108 27.2328L11.9858 25.1218C12.0296 25.0344 12.128 24.9907 12.2156 25.0344V25.0344ZM11.2202 27.4297C11.2967 27.4624 11.3842 27.4297 11.4171 27.3531L12.2921 25.2422C12.3248 25.1657 12.2811 25.089 12.2046 25.0563C12.128 25.0235 12.0405 25.0563 12.0077 25.1328L11.1327 27.2437C11.1108 27.3093 11.1436 27.3968 11.2202 27.4297Z" fill="white"/>
<path d="M10.7391 25.7454C10.8157 25.7891 10.8484 25.8766 10.8157 25.9532L10.3563 26.8608C10.3125 26.9374 10.225 26.9702 10.1375 26.9264C10.0609 26.8827 10.0282 26.7953 10.0609 26.7187L10.5204 25.8111C10.5641 25.7345 10.6516 25.7016 10.7391 25.7454Z" fill="#F3F3F3"/>
<path d="M10.7392 25.7345C10.8267 25.7782 10.8595 25.8767 10.8158 25.9641L10.3564 26.8719C10.3126 26.9594 10.2141 26.9922 10.1268 26.9484C10.0393 26.9047 10.0064 26.8062 10.0502 26.7188L10.5095 25.8111C10.5533 25.7235 10.6517 25.6908 10.7392 25.7345ZM10.1377 26.9266C10.2143 26.9594 10.3018 26.9375 10.3345 26.8609L10.7939 25.9533C10.8266 25.8876 10.7939 25.8001 10.7283 25.7564C10.6517 25.7236 10.5642 25.7454 10.5314 25.822L10.072 26.7296C10.0393 26.7953 10.072 26.8828 10.1377 26.9265V26.9266Z" fill="white"/>
<path d="M10.5203 24.1267C10.5968 24.1813 10.6187 24.2798 10.5641 24.3454L9.29528 26.2378C9.25158 26.3142 9.15302 26.3252 9.07659 26.2815C9.00004 26.2267 8.97813 26.1284 9.03278 26.0626L10.3016 24.1702C10.3453 24.0938 10.4437 24.0719 10.5203 24.1265V24.1267Z" fill="#F3F3F3"/>
<path d="M10.5203 24.1157C10.5969 24.1704 10.6188 24.2798 10.575 24.3564L9.30626 26.2487C9.25162 26.3251 9.15316 26.347 9.06566 26.2924C8.98911 26.2376 8.9672 26.1283 9.0109 26.0516L10.2797 24.1595C10.3344 24.0829 10.4438 24.061 10.5203 24.1157V24.1157ZM9.07661 26.2705C9.1421 26.3141 9.24066 26.3032 9.28436 26.2377L10.5532 24.3454C10.5969 24.2798 10.5751 24.1923 10.5094 24.1485C10.4438 24.1048 10.3453 24.1158 10.3016 24.1813L9.0328 26.0626C8.98911 26.1283 9.0109 26.2266 9.07661 26.2703V26.2705Z" fill="white"/>
<path d="M8.92344 24.5314C8.98915 24.586 9.01094 24.6845 8.95629 24.7501L8.3219 25.5485C8.26726 25.6141 8.16881 25.625 8.10321 25.5704C8.03762 25.5157 8.01571 25.4173 8.07047 25.3516L8.70475 24.5532C8.75939 24.4877 8.85784 24.4766 8.92344 24.5314Z" fill="#F3F3F3"/>
<path d="M8.9344 24.5204C9.01095 24.575 9.0219 24.6845 8.96714 24.761L8.33284 25.5595C8.2782 25.636 8.16879 25.647 8.09224 25.5814C8.01569 25.5266 8.00474 25.4173 8.0595 25.3407L8.6938 24.5423C8.74845 24.4656 8.85785 24.4548 8.9344 24.5204ZM8.11415 25.5595C8.17963 25.6141 8.26725 25.6033 8.32189 25.5376L8.95631 24.7391C9.00011 24.6736 8.98905 24.586 8.92356 24.5313C8.85785 24.4766 8.77035 24.4875 8.7157 24.5533L8.08129 25.3516C8.0376 25.4173 8.04855 25.5157 8.11403 25.5595H8.11415Z" fill="white"/>
<path d="M9.03277 22.8907C9.09836 22.9562 9.09836 23.0548 9.03277 23.1094L7.41413 24.7171C7.34842 24.7829 7.25009 24.7719 7.19533 24.7171C7.14069 24.6625 7.12973 24.5531 7.19533 24.4985L8.80302 22.8907C8.86873 22.825 8.96717 22.825 9.03277 22.8907V22.8907Z" fill="#F3F3F3"/>
<path d="M9.04376 22.8798C9.07527 22.9119 9.09293 22.9551 9.09293 23C9.09293 23.045 9.07527 23.0882 9.04376 23.1203L7.42501 24.7283C7.39292 24.7598 7.34974 24.7775 7.30477 24.7775C7.2598 24.7775 7.21662 24.7598 7.18453 24.7283C7.15295 24.6962 7.13525 24.653 7.13525 24.6079C7.13525 24.5629 7.15295 24.5197 7.18453 24.4876L8.80317 22.8798C8.83527 22.8482 8.87847 22.8306 8.92347 22.8306C8.96847 22.8306 9.01167 22.8482 9.04376 22.8798V22.8798ZM7.19537 24.7172C7.25001 24.7719 7.34846 24.7719 7.4031 24.7172L9.02186 23.1093C9.07662 23.0547 9.07662 22.9562 9.02186 22.9016C8.96722 22.8468 8.86877 22.8468 8.81412 22.9016L7.19537 24.5094C7.14073 24.564 7.14073 24.6516 7.19537 24.7171V24.7172Z" fill="white"/>
<path d="M7.39221 22.9782C7.44685 23.0437 7.44685 23.1423 7.38125 23.1969L6.60471 23.8533C6.53911 23.908 6.44066 23.897 6.3859 23.8314C6.33125 23.7657 6.33125 23.6673 6.39685 23.6126L7.1734 22.9563C7.23911 22.9016 7.33745 22.9125 7.39221 22.9782Z" fill="#F3F3F3"/>
<path d="M7.40307 22.9672C7.46867 23.0438 7.45772 23.1531 7.39212 23.2079L6.61557 23.864C6.54997 23.9297 6.44057 23.9188 6.37497 23.8422C6.30926 23.7656 6.32021 23.6563 6.38581 23.6015L7.16247 22.9454C7.22796 22.8798 7.33748 22.8908 7.40296 22.9673L7.40307 22.9672ZM6.39676 23.8313C6.45152 23.8969 6.53902 23.8969 6.6045 23.8532L7.38117 23.1969C7.43581 23.1423 7.44677 23.0547 7.39212 22.9892C7.33736 22.9235 7.24986 22.9235 7.18438 22.9673L6.40771 23.6235C6.34211 23.6781 6.34211 23.7657 6.39676 23.8312V23.8313Z" fill="white"/>
<path d="M7.82986 21.4031C7.8845 21.4798 7.8626 21.5781 7.78605 21.6219L5.88297 22.8906C5.80642 22.9343 5.70797 22.9124 5.66427 22.8468C5.60952 22.7703 5.63142 22.6719 5.70797 22.628L7.61116 21.3594C7.67687 21.3157 7.77521 21.3375 7.82997 21.4031H7.82986Z" fill="#F3F3F3"/>
<path d="M7.84065 21.4031C7.89529 21.4798 7.87339 21.5891 7.79684 21.6439L5.89379 22.9125C5.81724 22.9673 5.70784 22.9453 5.6532 22.8579C5.59844 22.7813 5.62045 22.6719 5.69689 22.6173L7.60006 21.3485C7.6766 21.2939 7.78589 21.3158 7.84054 21.4031H7.84065ZM5.6751 22.836C5.71879 22.9016 5.80629 22.9235 5.87188 22.8798L7.77494 21.611C7.84065 21.5673 7.86244 21.4798 7.8078 21.4033C7.7641 21.3376 7.6766 21.3158 7.6109 21.3595L5.70784 22.6282C5.64224 22.6829 5.63129 22.7704 5.6751 22.836V22.836Z" fill="white"/>
<path d="M6.20007 21.1735C6.24388 21.25 6.22197 21.3485 6.14542 21.3923L5.25946 21.8953C5.18291 21.939 5.08446 21.9063 5.04076 21.8297C4.99696 21.7532 5.01886 21.6547 5.09541 21.6109L5.98137 21.1079C6.05792 21.0641 6.15638 21.0969 6.20018 21.1735H6.20007Z" fill="#F3F3F3"/>
<path d="M6.2111 21.1625C6.2548 21.25 6.23289 21.3484 6.15635 21.3922L5.27041 21.8953C5.19386 21.939 5.08446 21.9062 5.04076 21.8297C4.99696 21.7422 5.01886 21.6437 5.09541 21.5999L5.98135 21.0969C6.0579 21.0531 6.1673 21.0859 6.21099 21.1625H6.2111ZM5.0516 21.8187C5.09541 21.8953 5.18291 21.9172 5.2485 21.8734L6.13444 21.3703C6.20004 21.3265 6.22194 21.239 6.1892 21.1734C6.14539 21.0969 6.0579 21.075 5.9923 21.1188L5.10636 21.6218C5.04076 21.6546 5.01886 21.7422 5.05172 21.8187H5.0516Z" fill="white"/>
<path d="M6.93273 19.7188C6.96547 19.8063 6.93273 19.8939 6.84523 19.9266L4.73428 20.8016C4.65773 20.8345 4.55928 20.7908 4.52654 20.7141C4.49368 20.6266 4.52654 20.5391 4.61404 20.5064L6.72499 19.6313C6.80154 19.5986 6.89999 19.6313 6.93273 19.7188V19.7188Z" fill="#F3F3F3"/>
<path d="M6.94368 19.7079C6.97642 19.7954 6.94368 19.8938 6.85618 19.9375L4.74523 20.8125C4.70317 20.8284 4.65654 20.8269 4.61555 20.8085C4.57456 20.79 4.54255 20.7561 4.52654 20.7141C4.49368 20.6266 4.52654 20.5281 4.61404 20.4844L6.72499 19.6094C6.76705 19.5936 6.81368 19.595 6.85467 19.6135C6.89566 19.6319 6.92766 19.6659 6.94368 19.7079V19.7079ZM4.54833 20.7031C4.58118 20.7798 4.66868 20.8126 4.73428 20.7906L6.84523 19.9156C6.92178 19.8829 6.95463 19.7954 6.92178 19.7188C6.88904 19.6423 6.80154 19.6094 6.73583 19.6313L4.62488 20.5063C4.54833 20.5391 4.51559 20.6266 4.54833 20.7032V20.7031Z" fill="white"/>
<path d="M5.39067 19.1719C5.42342 19.2594 5.37972 19.3469 5.29222 19.3797L4.32972 19.6969C4.25317 19.7297 4.15472 19.675 4.13281 19.5985C4.10007 19.511 4.14376 19.4235 4.23126 19.3907L5.19377 19.0735C5.27032 19.0407 5.35782 19.0844 5.39067 19.1719Z" fill="#F3F3F3"/>
<path d="M5.40136 19.161C5.43421 19.2485 5.39052 19.347 5.29207 19.3798L4.32958 19.697C4.24208 19.7297 4.14363 19.6751 4.11078 19.5876C4.07804 19.5001 4.12173 19.4016 4.22029 19.3689L5.18267 19.0516C5.27017 19.0298 5.36862 19.0735 5.40147 19.1611L5.40136 19.161ZM4.13279 19.5767C4.1547 19.6533 4.2422 19.6971 4.31874 19.6752L5.28123 19.3579C5.35778 19.3361 5.39063 19.2486 5.36873 19.172C5.34683 19.0955 5.25933 19.0517 5.18278 19.0736L4.22029 19.3909C4.14374 19.4236 4.11089 19.5002 4.13279 19.5767Z" fill="white"/>
<path d="M6.37517 17.8703C6.39696 17.9578 6.34232 18.0453 6.25482 18.0563L4.01257 18.4938C3.92507 18.5157 3.84853 18.45 3.82674 18.3625C3.80483 18.275 3.85948 18.1875 3.94698 18.1765L6.18922 17.739C6.27672 17.7282 6.36422 17.7828 6.37506 17.8703H6.37517Z" fill="#F3F3F3"/>
<path d="M6.39688 17.8704C6.41878 17.9688 6.35319 18.0563 6.26569 18.0781L4.02343 18.5156C3.93593 18.5375 3.84843 18.4719 3.82664 18.3735C3.80474 18.275 3.87033 18.1875 3.95783 18.1657L6.20009 17.7282C6.28748 17.7063 6.37509 17.7719 6.39688 17.8704ZM3.84843 18.3626C3.85938 18.4391 3.93593 18.4938 4.01248 18.4829L6.25474 18.0454C6.33128 18.0344 6.38593 17.9469 6.36414 17.8704C6.35319 17.7938 6.27664 17.7391 6.19998 17.75L3.95783 18.1875C3.88128 18.2094 3.82664 18.286 3.84843 18.3625V18.3626Z" fill="white"/>
<path d="M4.97515 17.0283C4.98598 17.1157 4.93134 17.1923 4.84384 17.2033L3.83765 17.3236C3.75003 17.3345 3.67348 17.2689 3.66265 17.1813C3.65169 17.0939 3.70634 17.0173 3.79384 17.0062L4.80015 16.886C4.87669 16.875 4.96419 16.9406 4.97515 17.0283Z" fill="#F3F3F3"/>
<path d="M4.98611 17.0282C4.99695 17.1265 4.93135 17.214 4.84385 17.2249L3.83766 17.3453C3.75005 17.3562 3.66266 17.2906 3.65171 17.1922C3.64076 17.0937 3.70635 17.0063 3.79385 16.9953L4.80016 16.875C4.88755 16.864 4.97516 16.9297 4.986 17.028L4.98611 17.0282ZM3.66255 17.1812C3.6735 17.2578 3.75016 17.3235 3.82671 17.3124L4.8329 17.1922C4.90945 17.1812 4.96421 17.1047 4.95326 17.0282C4.94231 16.9515 4.86576 16.8859 4.78921 16.8969L3.7829 17.0172C3.70635 17.0282 3.65171 17.1047 3.66255 17.1812V17.1812Z" fill="white"/>
<path d="M6.19993 15.9671C6.19993 16.0547 6.13444 16.1313 6.04683 16.1313H3.76101C3.67351 16.1313 3.60791 16.0547 3.60791 15.9672C3.60791 15.8798 3.67351 15.8031 3.76101 15.8031H6.04694C6.13444 15.8031 6.20015 15.8798 6.20015 15.9672L6.19993 15.9671Z" fill="#F3F3F3"/>
<path d="M6.21109 15.9671C6.21109 16.0657 6.13443 16.1421 6.04693 16.1421H3.76109C3.67359 16.1421 3.59705 16.0656 3.59705 15.9671C3.59705 15.8688 3.67359 15.7921 3.76109 15.7921H6.04705C6.13455 15.7921 6.21109 15.8688 6.21109 15.9671ZM3.61884 15.9563C3.61884 16.0328 3.68443 16.1094 3.76109 16.1094H6.04693C6.12348 16.1094 6.18919 16.0438 6.18919 15.9563C6.18919 15.8797 6.12348 15.8031 6.04693 15.8031H3.76109C3.68455 15.814 3.61895 15.8797 3.61895 15.9563H3.61884Z" fill="white"/>
<path d="M4.98619 14.8625C4.97513 14.95 4.90953 15.0156 4.82203 15.0156L3.80476 14.9391C3.71737 14.9281 3.65177 14.8516 3.66261 14.7641C3.67356 14.6766 3.73927 14.611 3.82677 14.611L4.84393 14.6875C4.92048 14.6985 4.98619 14.775 4.98619 14.8625Z" fill="#E2E2E2"/>
<path d="M4.99679 14.8625C4.98584 14.9609 4.9093 15.0265 4.8218 15.0265L3.80454 14.95C3.71716 14.939 3.64061 14.8625 3.65156 14.764C3.6624 14.6657 3.73906 14.6 3.82656 14.6L4.8437 14.6765C4.9312 14.6875 4.99679 14.775 4.99679 14.8625ZM3.6624 14.764C3.65156 14.8406 3.71716 14.9172 3.7937 14.9172L4.81096 14.9938C4.88739 14.9938 4.9531 14.939 4.96405 14.8515C4.975 14.775 4.9093 14.6984 4.83275 14.6984L3.81549 14.6219C3.73906 14.6219 3.67335 14.6875 3.6624 14.7641V14.764Z" fill="white"/>
<path d="M6.39679 14.064C6.37488 14.1515 6.29834 14.2062 6.21084 14.1953L3.96869 13.7359C3.88119 13.714 3.82643 13.6375 3.84834 13.55C3.87024 13.4625 3.94679 13.4077 4.03429 13.4188L6.27655 13.8672C6.35309 13.889 6.40774 13.9765 6.39679 14.064V14.064Z" fill="#F3F3F3"/>
<path d="M6.40785 14.0641C6.38595 14.1625 6.29845 14.2173 6.21095 14.2063L3.96882 13.7579C3.88132 13.736 3.81572 13.6485 3.83762 13.5501C3.85941 13.4516 3.94691 13.3969 4.03441 13.4079L6.27666 13.8563C6.36416 13.8782 6.4188 13.9657 6.40785 14.0641V14.0641ZM3.85941 13.55C3.84846 13.6266 3.89216 13.7031 3.96882 13.725L6.21106 14.1735C6.28761 14.1844 6.36416 14.1407 6.38606 14.0531C6.3969 13.9766 6.35321 13.9 6.27655 13.8781L4.03453 13.4298C3.94703 13.4188 3.88143 13.4735 3.85953 13.55H3.85941Z" fill="white"/>
<path d="M5.41272 12.7516C5.4077 12.7725 5.39862 12.7921 5.38601 12.8094C5.37339 12.8268 5.35748 12.8414 5.3392 12.8526C5.32091 12.8637 5.3006 12.8712 5.27943 12.8745C5.25826 12.8778 5.23664 12.8769 5.21582 12.8719L4.2314 12.5984C4.1439 12.5765 4.10021 12.4891 4.122 12.4016C4.12702 12.3807 4.1361 12.3611 4.14871 12.3438C4.16133 12.3265 4.17724 12.3118 4.19552 12.3006C4.21381 12.2895 4.23412 12.282 4.25529 12.2787C4.27646 12.2754 4.29808 12.2763 4.3189 12.2813L5.30332 12.5548C5.39082 12.5765 5.43451 12.664 5.41272 12.7515V12.7516Z" fill="#F3F3F3"/>
<path d="M5.42337 12.7516C5.40158 12.839 5.30313 12.9047 5.21563 12.8718L4.23121 12.5984C4.1437 12.5765 4.08894 12.4781 4.11085 12.3907C4.13275 12.3031 4.23121 12.2375 4.31871 12.2703L5.30313 12.5438C5.39063 12.5657 5.44539 12.6532 5.42337 12.7515V12.7516ZM4.1437 12.3905C4.1218 12.4671 4.16561 12.5546 4.24216 12.5764L5.22658 12.8498C5.30313 12.8717 5.37968 12.8279 5.40158 12.7404C5.42337 12.6639 5.37968 12.5764 5.30313 12.5546L4.31871 12.2812C4.24216 12.2702 4.16561 12.3139 4.1437 12.3906V12.3905Z" fill="white"/>
<path d="M6.95465 12.2267C6.92191 12.3141 6.82335 12.3469 6.74691 12.3141L4.63585 11.4391C4.5593 11.4063 4.5156 11.3079 4.54835 11.2313C4.5812 11.1438 4.67965 11.111 4.7562 11.1438L6.86715 12.0188C6.95465 12.0516 6.98751 12.15 6.95465 12.2266V12.2267Z" fill="#F3F3F3"/>
<path d="M6.96561 12.2375C6.9496 12.2796 6.91757 12.3135 6.87656 12.332C6.83554 12.3504 6.78888 12.3519 6.74681 12.336L4.63584 11.461C4.54834 11.4283 4.5156 11.3298 4.54834 11.2314C4.56436 11.1893 4.59638 11.1554 4.6374 11.1369C4.67841 11.1185 4.72507 11.117 4.76715 11.1329L6.87811 12.0079C6.96561 12.0516 6.99836 12.1501 6.96561 12.2375V12.2375ZM4.57024 11.2423C4.5375 11.3189 4.57024 11.4064 4.64679 11.4391L6.75776 12.3141C6.83431 12.3469 6.91086 12.3031 6.94371 12.2266C6.97645 12.15 6.94371 12.0625 6.86716 12.0298L4.7562 11.1548C4.67965 11.1329 4.59215 11.1658 4.57024 11.2423V11.2423Z" fill="white"/>
<path d="M6.24385 10.75C6.20015 10.8266 6.11265 10.8594 6.03611 10.8266L5.12825 10.3673C5.0517 10.3344 5.01885 10.236 5.06265 10.1484C5.10635 10.0719 5.19385 10.039 5.2704 10.0719L6.17814 10.5313C6.2548 10.575 6.28765 10.6736 6.24385 10.75Z" fill="#F3F3F3"/>
<path d="M6.25485 10.761C6.21104 10.8485 6.11259 10.8814 6.02509 10.8375L5.11735 10.3781C5.02985 10.3344 4.997 10.236 5.04081 10.1485C5.0845 10.061 5.18306 10.0281 5.27045 10.0719L6.17819 10.5313C6.2658 10.5641 6.29854 10.6736 6.25485 10.761V10.761ZM5.07355 10.1594C5.04081 10.236 5.06271 10.3235 5.13926 10.3563L6.04699 10.8158C6.1127 10.8485 6.2002 10.8158 6.2439 10.75C6.27664 10.6735 6.25485 10.586 6.1783 10.5531L5.25939 10.094C5.19379 10.0612 5.10629 10.083 5.07344 10.1595L5.07355 10.1594Z" fill="white"/>
<path d="M7.85144 10.5422C7.7968 10.6188 7.70929 10.6407 7.63274 10.586L5.74045 9.32823C5.66401 9.28442 5.65306 9.18597 5.69675 9.10942C5.74056 9.03287 5.83901 9.01097 5.91556 9.06562L7.8187 10.3344C7.8843 10.3782 7.9062 10.4767 7.85144 10.5422Z" fill="#F3F3F3"/>
<path d="M7.86239 10.5531C7.80774 10.6298 7.69834 10.6516 7.62191 10.6079L5.72966 9.33905C5.65311 9.28441 5.63121 9.18596 5.68586 9.09857C5.74061 9.02191 5.85002 9 5.92656 9.04381L7.8187 10.3125C7.90619 10.3673 7.91715 10.4766 7.86239 10.5531ZM5.70776 9.10941C5.66407 9.175 5.67502 9.27346 5.7405 9.31715L7.6437 10.5861C7.70929 10.6299 7.79679 10.608 7.8406 10.5424C7.88429 10.4767 7.87334 10.3782 7.80786 10.3345L5.90455 9.06571C5.83895 9.02191 5.75145 9.04381 5.70765 9.10941H5.70776Z" fill="white"/>
<path d="M7.4469 8.9563C7.39226 9.02189 7.29381 9.04379 7.22821 8.98904L6.42975 8.36571C6.36415 8.31096 6.3532 8.21251 6.40784 8.14691C6.46249 8.08132 6.56094 8.05941 6.62665 8.11417L7.425 8.73749C7.49071 8.79225 7.50166 8.89059 7.4469 8.9563V8.9563Z" fill="#F3F3F3"/>
<path d="M7.45781 8.96712C7.40316 9.04378 7.29376 9.05473 7.21721 8.99998L6.41878 8.37665C6.34223 8.322 6.33128 8.2126 6.38604 8.13617C6.44068 8.05951 6.55008 8.04856 6.62652 8.10332L7.42495 8.72664C7.50161 8.7814 7.51256 8.89069 7.45781 8.96735V8.96712ZM6.40783 8.14689C6.35318 8.21249 6.36414 8.29999 6.42973 8.35463L7.22817 8.97819C7.29376 9.02188 7.38126 9.01093 7.4359 8.94533C7.49066 8.87974 7.47971 8.79224 7.41411 8.73759L6.61568 8.11404C6.55008 8.07035 6.46247 8.0813 6.40794 8.14689H6.40783Z" fill="white"/>
<path d="M9.07648 9.06562C9.01099 9.13133 8.91243 9.13133 8.85778 9.06562L7.22821 7.45786C7.16261 7.39227 7.17345 7.29381 7.22821 7.23905C7.29381 7.17357 7.39226 7.17357 7.44691 7.23905L9.06575 8.84692C9.13135 8.90157 9.13135 9.01097 9.07671 9.06573L9.07648 9.06562Z" fill="#F3F3F3"/>
<path d="M9.07664 9.0766C9.04455 9.10811 9.00137 9.12576 8.95639 9.12576C8.91142 9.12576 8.86824 9.10811 8.83615 9.0766L7.21725 7.46864C7.18567 7.43654 7.16797 7.39332 7.16797 7.34829C7.16797 7.30326 7.18567 7.26003 7.21725 7.22793C7.24934 7.19639 7.29254 7.17871 7.33754 7.17871C7.38255 7.17871 7.42575 7.19639 7.45784 7.22793L9.07664 8.83578C9.15318 8.90137 9.15318 9.01077 9.07664 9.07637V9.0766ZM7.23938 7.24984C7.18462 7.30459 7.18462 7.40304 7.23938 7.45758L8.85806 9.06542C8.91281 9.12018 9.01115 9.12018 9.0658 9.06542C9.12055 9.01077 9.12055 8.91232 9.0658 8.85768L7.44712 7.239C7.39247 7.18435 7.30486 7.18435 7.23938 7.24995V7.24984Z" fill="white"/>
<path d="M8.97816 7.43593C8.91256 7.49068 8.81411 7.49068 8.75936 7.42497L8.09211 6.65938C8.03758 6.59378 8.04842 6.49533 8.11413 6.44068C8.17961 6.38593 8.27817 6.38593 8.33282 6.45152L9.00006 7.21723C9.05471 7.27188 9.04376 7.37033 8.97816 7.43593Z" fill="#F3F3F3"/>
<path d="M8.98906 7.43593C8.91252 7.50153 8.81406 7.49069 8.74835 7.42498L8.08121 6.65938C8.01561 6.59378 8.02656 6.48438 8.10311 6.41878C8.17966 6.35307 8.27811 6.36402 8.34371 6.42973L9.01097 7.19522C9.06561 7.27188 9.06561 7.38129 8.98906 7.43593V7.43593ZM8.11406 6.44068C8.04835 6.49533 8.04835 6.58283 8.09216 6.64843L8.75942 7.41403C8.81406 7.46879 8.90156 7.47974 8.96716 7.42498C9.03276 7.37034 9.03276 7.28272 8.98906 7.21724L8.32181 6.45152C8.26716 6.38604 8.17955 6.38604 8.11406 6.44068V6.44068Z" fill="white"/>
<path d="M10.5532 7.85171C10.4766 7.90635 10.3782 7.88445 10.3343 7.8079L9.05472 5.91566C9.01091 5.83911 9.03281 5.74066 9.09841 5.69696C9.17496 5.64232 9.27341 5.66422 9.31721 5.74077L10.5859 7.6329C10.6407 7.70945 10.6187 7.8079 10.5532 7.85159V7.85171Z" fill="#F3F3F3"/>
<path d="M10.5532 7.86251C10.4767 7.91727 10.3673 7.89526 10.3125 7.81882L9.04388 5.92655C8.98924 5.85 9.01114 5.74071 9.09852 5.68606C9.17507 5.63131 9.28446 5.65321 9.33922 5.72976L10.6079 7.62192C10.6625 7.70942 10.6406 7.80787 10.5532 7.86251ZM9.10936 5.70785C9.04377 5.75155 9.02186 5.83905 9.06567 5.90476L10.3343 7.79692C10.3781 7.86251 10.4656 7.87347 10.542 7.82966C10.6077 7.78597 10.6296 7.69846 10.5858 7.63287L9.31732 5.75155C9.27351 5.68606 9.17507 5.66405 9.10958 5.70785H9.10936Z" fill="white"/>
<path d="M10.7828 6.23295C10.7063 6.27664 10.6078 6.25485 10.5641 6.1783L10.061 5.29235C10.0173 5.2158 10.05 5.11735 10.1267 5.07355C10.2032 5.02985 10.3016 5.05164 10.3453 5.1283L10.8484 6.01414C10.8813 6.09069 10.8594 6.18914 10.7829 6.23295H10.7828Z" fill="#F3F3F3"/>
<path d="M10.7828 6.24391C10.6953 6.2876 10.5968 6.26581 10.5531 6.18915L10.0499 5.30331C10.0062 5.22664 10.0281 5.11735 10.1156 5.07355C10.2031 5.02985 10.3016 5.05164 10.3453 5.1283L10.8483 6.01415C10.8922 6.0907 10.8703 6.18915 10.7829 6.24391H10.7828ZM10.1266 5.0845C10.0609 5.12819 10.0281 5.21569 10.0718 5.2814L10.575 6.16736C10.6187 6.23284 10.7062 6.25486 10.7718 6.22201C10.8375 6.17831 10.8703 6.0907 10.8266 6.0251L10.3234 5.13914C10.2906 5.07366 10.1922 5.04069 10.1266 5.0845V5.0845Z" fill="white"/>
<path d="M12.2373 6.95474C12.1499 6.98748 12.0623 6.95474 12.0296 6.87819L11.1437 4.76713C11.1109 4.69058 11.1546 4.59213 11.2312 4.55927C11.3187 4.52653 11.4062 4.55927 11.4389 4.63582L12.3248 6.74677C12.3577 6.82332 12.314 6.92177 12.2373 6.95451V6.95474Z" fill="#F3F3F3"/>
<path d="M12.2377 6.9657C12.1503 6.99845 12.0518 6.9657 12.008 6.87809L11.122 4.76727C11.1062 4.72519 11.1076 4.67853 11.126 4.63752C11.1445 4.5965 11.1785 4.56448 11.2205 4.54846C11.308 4.51572 11.4064 4.54846 11.4503 4.63596L12.3361 6.7469C12.369 6.82345 12.3253 6.9219 12.2378 6.9657H12.2377ZM11.2424 4.57036C11.1658 4.60311 11.133 4.69072 11.1658 4.75632L12.0517 6.86714C12.0844 6.94369 12.1719 6.97643 12.2485 6.94369C12.325 6.91095 12.358 6.82333 12.325 6.75774L11.4392 4.6468C11.3954 4.57025 11.3188 4.5374 11.2423 4.57025L11.2424 4.57036Z" fill="white"/>
<path d="M12.7733 5.40174C12.6858 5.43448 12.5983 5.39068 12.5656 5.30329L12.2483 4.34069C12.2156 4.26414 12.2702 4.16569 12.3468 4.1439C12.4233 4.122 12.5218 4.15485 12.5545 4.24235L12.8717 5.20484C12.9045 5.28139 12.8608 5.36889 12.7733 5.40163V5.40174Z" fill="#F3F3F3"/>
<path d="M12.7844 5.41251C12.7423 5.42837 12.6957 5.42691 12.6547 5.40845C12.6137 5.39 12.5817 5.35606 12.5657 5.31406L12.2484 4.35156C12.2157 4.26406 12.2703 4.16572 12.3579 4.13287C12.4 4.11701 12.4466 4.11847 12.4876 4.13693C12.5286 4.15538 12.5606 4.18932 12.5766 4.23132L12.8938 5.19382C12.9157 5.28132 12.8719 5.37977 12.7844 5.41251V5.41251ZM12.3578 4.15477C12.2813 4.17656 12.2375 4.26406 12.2594 4.34061L12.5766 5.30322C12.5984 5.37977 12.6859 5.41251 12.7626 5.39061C12.8392 5.36882 12.8829 5.28132 12.861 5.20477L12.5438 4.24216C12.5382 4.22359 12.5288 4.20641 12.5161 4.19172C12.5035 4.17704 12.4879 4.16518 12.4703 4.15693C12.4528 4.14867 12.4337 4.1442 12.4143 4.14381C12.3949 4.14342 12.3757 4.14712 12.3578 4.15466V4.15477Z" fill="white"/>
<path d="M14.064 6.3969C13.9765 6.4188 13.889 6.36416 13.8781 6.27655L13.4187 4.03441C13.3968 3.94692 13.4625 3.87037 13.5499 3.84846C13.6375 3.82656 13.7249 3.88121 13.7358 3.96882L14.1953 6.21106C14.2061 6.2875 14.1515 6.375 14.064 6.3969V6.3969Z" fill="#F3F3F3"/>
<path d="M14.064 6.40785C13.9656 6.42976 13.8781 6.36405 13.8562 6.27655L13.3968 4.0344C13.3749 3.9469 13.4406 3.84845 13.5281 3.8375C13.6265 3.81559 13.714 3.8813 13.7358 3.9688L14.1953 6.21106C14.2171 6.29845 14.1625 6.38606 14.064 6.40785V6.40785ZM13.55 3.8594C13.4733 3.87035 13.4187 3.9469 13.4296 4.0344L13.889 6.27666C13.9 6.35309 13.9874 6.40785 14.064 6.38595C14.1406 6.375 14.1952 6.29845 14.1843 6.21095L13.7249 3.96869C13.7031 3.89226 13.6265 3.84845 13.5499 3.8594H13.55Z" fill="white"/>
<path d="M14.8954 4.97504C14.8079 4.98599 14.7313 4.93134 14.7094 4.84384L14.5782 3.83752C14.5673 3.75002 14.6329 3.67347 14.7205 3.66252C14.8079 3.65157 14.8844 3.70633 14.9063 3.79383L15.0375 4.80003C15.0484 4.88754 14.9828 4.96409 14.8954 4.97504V4.97504Z" fill="#F3F3F3"/>
<path d="M14.8954 4.98597C14.7969 4.99693 14.7094 4.93133 14.6985 4.84372L14.5673 3.83752C14.5563 3.75002 14.6219 3.66252 14.7204 3.65156C14.8188 3.64072 14.9063 3.70632 14.9173 3.79382L15.0485 4.80002C15.0594 4.88752 14.9938 4.97502 14.8954 4.98597V4.98597ZM14.7313 3.67347C14.6548 3.68442 14.5891 3.76097 14.6 3.83752L14.7313 4.84383C14.7423 4.92038 14.8188 4.97502 14.8954 4.96407C14.9719 4.95323 15.0376 4.87657 15.0267 4.80002L14.8954 3.79382C14.8844 3.71727 14.8079 3.66252 14.7313 3.67347V3.67347Z" fill="white"/>
<path d="M16.0766 28.9391C23.2287 28.9391 29.0266 23.1411 29.0266 15.9891C29.0266 8.83697 23.2287 3.03906 16.0766 3.03906C8.92456 3.03906 3.12665 8.83697 3.12665 15.9891C3.12665 23.1411 8.92456 28.9391 16.0766 28.9391Z" fill="url(#paint2_linear_449_13647)" fillOpacity="0.2"/>
<path d="M25.0453 7.77502L14.6 14.4688H14.589V14.4797L14.5781 14.4906L8.05951 25.2423L17.6407 17.5313L17.6517 17.5205V17.5095L25.0455 7.77514L25.0453 7.77502Z" fill="black" fillOpacity="0.05"/>
<path d="M24.8484 7.15149L14.5234 14.4905L17.5859 17.5311L24.8484 7.15149" fill="#CD151E"/>
<path d="M14.5344 14.4687L16.0767 15.989L24.8484 7.15149L14.5344 14.4687V14.4687Z" fill="#FA5153"/>
<path d="M14.5344 14.4687L17.5969 17.5092L7.27191 24.8484L14.5344 14.4686V14.4687Z" fill="#ACACAC"/>
<path d="M7.27191 24.8484L16.0766 15.989L14.5343 14.4686L7.27191 24.8484Z" fill="#EEEEEE"/>
<defs>
<linearGradient id="paint0_linear_449_13647" x1="16" y1="30" x2="16" y2="2" gradientUnits="userSpaceOnUse">
<stop offset="0.25" stopColor="#DBDBDA"/>
<stop offset="1" stopColor="white"/>
</linearGradient>
<radialGradient id="paint1_radial_449_13647" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(17.8195 13.1553) scale(15.8073 15.8073)">
<stop stopColor="#2ABCE1"/>
<stop offset="0.11363" stopColor="#2ABBE1"/>
<stop offset="1" stopColor="#3375F8"/>
</radialGradient>
<linearGradient id="paint2_linear_449_13647" x1="15.8306" y1="12.2861" x2="9.78632" y2="23.1302" gradientUnits="userSpaceOnUse">
<stop stop-opacity="0"/>
<stop offset="1"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_browser_browser_icons_color_mobile_safari_ui;

View file

@ -0,0 +1,36 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_opera(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M11.3953 23.8859C9.84219 22.0594 8.84688 19.3578 8.78125 16.3281V15.6719C8.84688 12.6422 9.85313 9.94063 11.3953 8.11406C13.4078 5.51094 16.3609 4.34062 19.6969 4.34062C21.7531 4.34062 23.6891 4.48281 25.3297 5.57656C22.8688 3.35625 19.6203 2.01094 16.0547 2H16C8.26719 2 2 8.26719 2 16C2 23.5031 7.90625 29.6391 15.3328 29.9891C15.5516 30 15.7812 30 16 30C19.5875 30 22.8578 28.6547 25.3297 26.4344C23.6891 27.5281 21.8625 27.5719 19.8063 27.5719C16.4813 27.5828 13.3969 26.5 11.3953 23.8859V23.8859Z" fill="url(#paint0_linear_449_13008)"/>
<path d="M11.3953 8.11401C12.675 6.5937 14.3375 5.68589 16.1531 5.68589C20.2328 5.68589 23.5359 10.3015 23.5359 16.0109C23.5359 21.7203 20.2328 26.3359 16.1531 26.3359C14.3375 26.3359 12.6859 25.4171 11.3953 23.9078C13.4078 26.5109 16.3937 28.1734 19.7187 28.1734C21.764 28.1734 23.689 27.55 25.3296 26.4562C28.1953 23.875 30 20.1453 30 16C30 11.8546 28.1953 8.12495 25.3296 5.56558C23.689 4.47183 21.775 3.84839 19.7187 3.84839C16.3828 3.84839 13.3968 5.49995 11.3953 8.11401V8.11401Z" fill="url(#paint1_linear_449_13008)"/>
<defs>
<linearGradient id="paint0_linear_449_13008" x1="13.6655" y1="2.4564" x2="13.6655" y2="29.5926" gradientUnits="userSpaceOnUse">
<stop offset="0.3" stopColor="#FF1B2D"/>
<stop offset="0.4381" stopColor="#FA1A2C"/>
<stop offset="0.5939" stopColor="#ED1528"/>
<stop offset="0.7581" stopColor="#D60E21"/>
<stop offset="0.9272" stopColor="#B70519"/>
<stop offset="1" stopColor="#A70014"/>
</linearGradient>
<linearGradient id="paint1_linear_449_13008" x1="20.6957" y1="4.05588" x2="20.6957" y2="28.0564" gradientUnits="userSpaceOnUse">
<stop stopColor="#9C0000"/>
<stop offset="0.7" stopColor="#FF4B4B"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_browser_browser_icons_color_opera;

View file

@ -0,0 +1,171 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_safari(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M16 30C23.732 30 30 23.732 30 16C30 8.26801 23.732 2 16 2C8.26801 2 2 8.26801 2 16C2 23.732 8.26801 30 16 30Z" fill="url(#paint0_linear_449_13003)"/>
<path d="M16 28.9499C23.1521 28.9499 28.9501 23.152 28.9501 15.9999C28.9501 8.84784 23.1521 3.04993 16 3.04993C8.84796 3.04993 3.05005 8.84784 3.05005 15.9999C3.05005 23.152 8.84796 28.9499 16 28.9499Z" fill="url(#paint1_radial_449_13003)"/>
<path d="M16.0219 6.20007C15.9344 6.20007 15.8578 6.13447 15.8578 6.04697V3.76101C15.8578 3.67351 15.9344 3.60791 16.0219 3.60791C16.1094 3.60791 16.1859 3.67351 16.1859 3.76101V6.04697C16.175 6.13447 16.1094 6.20007 16.0219 6.20007Z" fill="#F3F3F3"/>
<path d="M16.0219 6.21096C15.9235 6.21096 15.8469 6.13441 15.8469 6.04691V3.76097C15.8469 3.67347 15.9235 3.59692 16.0219 3.59692C16.1204 3.59692 16.1969 3.67347 16.1969 3.76097V6.04691C16.1969 6.13441 16.1094 6.21096 16.0219 6.21096ZM16.0219 3.61871C15.9454 3.61871 15.8688 3.68442 15.8688 3.76097V6.04691C15.8688 6.12346 15.9344 6.18917 16.0219 6.18917C16.0985 6.18917 16.175 6.12346 16.175 6.04691V3.76097C16.1642 3.68442 16.0985 3.61871 16.0219 3.61871V3.61871Z" fill="white"/>
<path d="M17.1157 4.97506C17.0282 4.96411 16.9626 4.89851 16.9626 4.81101L17.0391 3.79373C17.05 3.70634 17.1266 3.64063 17.2141 3.65158C17.3016 3.66254 17.3672 3.72825 17.3672 3.81575L17.2907 4.83291C17.2797 4.92041 17.2032 4.98601 17.1157 4.97517V4.97506Z" fill="#F3F3F3"/>
<path d="M17.1156 4.98592C17.0172 4.97496 16.9516 4.89842 16.9516 4.81092L17.0281 3.79365C17.0391 3.70626 17.1156 3.62971 17.2141 3.64055C17.3124 3.65151 17.3781 3.72817 17.3781 3.81555L17.3016 4.83282C17.2906 4.93127 17.2141 4.99687 17.1156 4.98592ZM17.2141 3.66246C17.1376 3.66246 17.0609 3.71722 17.0609 3.79376L16.9843 4.81103C16.9843 4.88746 17.0391 4.95317 17.1266 4.96401C17.2031 4.96401 17.2797 4.90937 17.2797 4.83282L17.3562 3.81555C17.3562 3.73901 17.2906 3.67341 17.214 3.66246H17.2141Z" fill="white"/>
<path d="M17.9359 6.39693C17.8483 6.37502 17.7937 6.29847 17.8046 6.21097L18.253 3.9687C18.2749 3.88131 18.3515 3.82656 18.439 3.84846C18.5265 3.87036 18.5811 3.94691 18.5702 4.03441L18.1217 6.27668C18.1108 6.35312 18.0233 6.40788 17.9358 6.39693H17.9359Z" fill="#F3F3F3"/>
<path d="M17.9361 6.40784C17.8375 6.38593 17.7829 6.29843 17.7938 6.21093L18.2422 3.96869C18.2641 3.8813 18.3516 3.81559 18.4499 3.8375C18.5484 3.8594 18.6031 3.9469 18.5922 4.0344L18.1438 6.27664C18.1219 6.36403 18.0344 6.41879 17.9361 6.40784ZM18.4499 3.8594C18.3734 3.84845 18.2969 3.89214 18.275 3.9688L17.8267 6.21105C17.8157 6.28748 17.8594 6.36403 17.9469 6.38605C18.0234 6.39689 18.1 6.35308 18.1219 6.27653L18.5703 4.0344C18.5812 3.9469 18.5266 3.8813 18.4499 3.8594V3.8594Z" fill="white"/>
<path d="M19.2484 5.41251C19.2276 5.40749 19.208 5.39841 19.1906 5.3858C19.1733 5.37318 19.1587 5.35727 19.1475 5.33899C19.1363 5.3207 19.1289 5.30039 19.1256 5.27922C19.1222 5.25805 19.1231 5.23643 19.1282 5.21561L19.4016 4.23132C19.4234 4.14382 19.5109 4.10001 19.5984 4.12192C19.6859 4.14382 19.7407 4.23132 19.7188 4.31882L19.4453 5.30322C19.4234 5.39061 19.3359 5.43442 19.2484 5.41251Z" fill="#F3F3F3"/>
<path d="M19.2485 5.42352C19.161 5.40161 19.0955 5.30316 19.1283 5.21578L19.4017 4.23127C19.4235 4.14389 19.522 4.08913 19.6094 4.11103C19.6969 4.13293 19.7625 4.23139 19.7298 4.31877L19.4564 5.30328C19.4345 5.39066 19.347 5.44542 19.2486 5.42352H19.2485ZM19.6094 4.14389C19.5329 4.12198 19.4454 4.16579 19.4235 4.24234L19.1502 5.22662C19.1283 5.30316 19.172 5.37982 19.2595 5.40161C19.336 5.42352 19.4235 5.37982 19.4454 5.30328L19.7188 4.31877C19.7298 4.24234 19.6861 4.16579 19.6094 4.14377V4.14389Z" fill="white"/>
<path d="M19.7845 6.95474C19.697 6.92188 19.6642 6.82343 19.697 6.74688L20.5719 4.63594C20.6047 4.5594 20.7032 4.51559 20.7797 4.5594C20.8673 4.59214 20.9001 4.6907 20.8673 4.76714L19.9923 6.87808C19.9596 6.95474 19.861 6.99843 19.7846 6.95474H19.7845Z" fill="#F3F3F3"/>
<path d="M19.7844 6.96578C19.7424 6.94977 19.7084 6.91774 19.69 6.87673C19.6715 6.83571 19.6701 6.78905 19.6859 6.74698L20.561 4.63601C20.5938 4.54851 20.6923 4.51565 20.7907 4.54851C20.8328 4.56453 20.8667 4.59655 20.8852 4.63757C20.9036 4.67858 20.9051 4.72524 20.8892 4.76732L20.0142 6.87828C19.9704 6.96578 19.8719 7.00948 19.7844 6.96578ZM20.7798 4.57041C20.7032 4.53767 20.6157 4.57041 20.5829 4.64696L19.7078 6.75793C19.6751 6.83448 19.7188 6.91103 19.7953 6.94388C19.8719 6.97662 19.9594 6.94388 19.9923 6.86733L20.8673 4.75637C20.8892 4.69066 20.8563 4.60316 20.7798 4.57041V4.57041Z" fill="white"/>
<path d="M21.261 6.25474C21.1844 6.21093 21.1515 6.12343 21.1844 6.04689L21.6437 5.13916C21.6874 5.0625 21.7749 5.02965 21.8625 5.07345C21.939 5.11726 21.9718 5.20476 21.939 5.28119L21.4796 6.18903C21.4359 6.26558 21.3484 6.29854 21.2609 6.25474H21.261Z" fill="#F3F3F3"/>
<path d="M21.2611 6.26577C21.1735 6.22197 21.1407 6.12351 21.1844 6.03601L21.6439 5.12828C21.6875 5.04067 21.7861 5.00792 21.8735 5.05162C21.961 5.09542 21.9939 5.19388 21.9501 5.28137L21.4907 6.18911C21.4469 6.27661 21.3485 6.30946 21.261 6.26566L21.2611 6.26577ZM21.8627 5.07352C21.786 5.04078 21.6985 5.06257 21.6658 5.13912L21.2063 6.04697C21.1736 6.11256 21.2063 6.20006 21.2719 6.24387C21.3485 6.27661 21.436 6.25482 21.4688 6.17827L21.9283 5.27042C21.961 5.20483 21.9283 5.11733 21.8627 5.07352Z" fill="white"/>
<path d="M21.4798 7.87353C21.4032 7.81888 21.3813 7.72043 21.436 7.65483L22.7048 5.76256C22.7485 5.68601 22.847 5.67506 22.9235 5.71887C23.0001 5.77351 23.0219 5.87196 22.9673 5.93756L21.6985 7.82983C21.6548 7.90638 21.5563 7.92828 21.4798 7.87353Z" fill="#F3F3F3"/>
<path d="M21.4797 7.88442C21.4032 7.82977 21.3813 7.72037 21.4251 7.64382L22.6938 5.75161C22.7485 5.67506 22.8469 5.65316 22.9344 5.70791C23.011 5.76256 23.0329 5.87196 22.9892 5.94851L21.7203 7.84072C21.6657 7.91727 21.5563 7.93906 21.4797 7.88442ZM22.9235 5.72982C22.858 5.68601 22.7594 5.69696 22.7157 5.76256L21.4469 7.65478C21.4032 7.72026 21.425 7.80787 21.4907 7.85156C21.5563 7.89537 21.6547 7.88442 21.6984 7.81882L22.9673 5.93755C23.011 5.87196 22.9892 5.77351 22.9235 5.72982V5.72982Z" fill="white"/>
<path d="M23.0766 7.46886C23.0111 7.4141 22.9892 7.31565 23.0438 7.25005L23.6782 6.4516C23.7328 6.38612 23.8313 6.37505 23.8969 6.42981C23.9626 6.48445 23.9844 6.58291 23.9296 6.6485L23.2954 7.44695C23.2407 7.51255 23.1423 7.5235 23.0767 7.46886H23.0766Z" fill="#F3F3F3"/>
<path d="M23.0657 7.47974C22.9891 7.42498 22.9782 7.31557 23.0329 7.23902L23.6672 6.44066C23.7219 6.364 23.8312 6.35305 23.9078 6.41876C23.9843 6.4734 23.9953 6.58281 23.9405 6.65936L23.3063 7.45783C23.2516 7.53439 23.1422 7.54534 23.0657 7.47974V7.47974ZM23.8859 6.44055C23.8204 6.3859 23.7328 6.39685 23.6782 6.46245L23.0438 7.26093C23.0001 7.32652 23.011 7.41403 23.0765 7.46867C23.1422 7.52343 23.2297 7.51248 23.2844 7.44688L23.9187 6.64841C23.9625 6.58281 23.9515 6.48436 23.886 6.44066L23.8859 6.44055Z" fill="white"/>
<path d="M22.9672 9.10941C22.9016 9.04382 22.9016 8.94537 22.9672 8.89061L24.5859 7.28289C24.6516 7.2173 24.7499 7.22814 24.8046 7.28289C24.8593 7.33754 24.8702 7.44694 24.8046 7.50158L23.197 9.10941C23.1313 9.17501 23.0328 9.17501 22.9672 9.10941V9.10941Z" fill="#F3F3F3"/>
<path d="M22.9563 9.12037C22.9247 9.08828 22.907 9.04508 22.907 9.00007C22.907 8.95507 22.9247 8.91187 22.9563 8.87978L24.575 7.27193C24.6071 7.24035 24.6503 7.22266 24.6954 7.22266C24.7404 7.22266 24.7836 7.24035 24.8157 7.27193C24.8473 7.30403 24.8649 7.34723 24.8649 7.39223C24.8649 7.43723 24.8473 7.48044 24.8157 7.51253L23.1969 9.12026C23.1648 9.1518 23.1216 9.16948 23.0766 9.16948C23.0316 9.16948 22.9884 9.1518 22.9563 9.12026V9.12037ZM24.8048 7.28289C24.7501 7.22813 24.6517 7.22813 24.597 7.28289L22.9782 8.89062C22.9234 8.94537 22.9234 9.04382 22.9782 9.09847C23.0328 9.15323 23.1313 9.15323 23.1859 9.09847L24.8048 7.49074C24.8594 7.43598 24.8594 7.34848 24.8048 7.28289Z" fill="white"/>
<path d="M24.6078 9.02192C24.5532 8.95633 24.5532 8.85788 24.6188 8.80312L25.3953 8.14695C25.4609 8.09231 25.5593 8.10315 25.6141 8.16885C25.6687 8.23445 25.6687 8.3329 25.6031 8.38754L24.8266 9.04382C24.7609 9.09847 24.6625 9.08752 24.6078 9.02192Z" fill="#F3F3F3"/>
<path d="M24.5969 9.03285C24.5313 8.95631 24.5422 8.8469 24.6078 8.79226L25.3843 8.13596C25.4499 8.07036 25.5593 8.08131 25.6249 8.15786C25.6906 8.23441 25.6796 8.34381 25.614 8.39846L24.8374 9.05476C24.772 9.12024 24.6624 9.1094 24.597 9.03285H24.5969ZM25.6031 8.16881C25.5483 8.10322 25.4608 8.10322 25.3954 8.14691L24.6188 8.80321C24.5641 8.85786 24.5532 8.94535 24.6078 9.01095C24.6624 9.07655 24.7501 9.07655 24.8155 9.03285L25.5921 8.37655C25.6577 8.32191 25.6577 8.23441 25.6031 8.16881Z" fill="white"/>
<path d="M24.1704 10.597C24.1157 10.5204 24.1376 10.422 24.2142 10.3782L26.1172 9.10946C26.1937 9.06565 26.2922 9.08756 26.3358 9.15327C26.3906 9.22982 26.3687 9.32827 26.2922 9.37196L24.3891 10.6407C24.3234 10.6845 24.225 10.6626 24.1704 10.597V10.597Z" fill="#F3F3F3"/>
<path d="M24.1594 10.5969C24.1047 10.5204 24.1266 10.411 24.2032 10.3563L26.1063 9.08751C26.1828 9.03287 26.2922 9.05477 26.3469 9.14227C26.4016 9.21882 26.3796 9.32822 26.3032 9.38275L24.4001 10.6517C24.3234 10.7064 24.2141 10.6845 24.1594 10.597V10.5969ZM26.325 9.16417C26.2813 9.09847 26.1938 9.07656 26.1282 9.12037L24.225 10.389C24.1595 10.4329 24.1375 10.5204 24.1922 10.5969C24.2359 10.6625 24.3234 10.6844 24.3891 10.6407L26.2922 9.37191C26.3578 9.31727 26.3688 9.22966 26.325 9.16417Z" fill="white"/>
<path d="M25.8002 10.8266C25.7564 10.7499 25.7783 10.6516 25.8549 10.6078L26.7408 10.1047C26.8174 10.0609 26.9158 10.0938 26.9595 10.1702C27.0033 10.2469 26.9814 10.3452 26.9049 10.389L26.0189 10.8922C25.9424 10.9359 25.8439 10.9031 25.8001 10.8265L25.8002 10.8266Z" fill="#F3F3F3"/>
<path d="M25.7893 10.8375C25.7455 10.75 25.7674 10.6515 25.8439 10.6078L26.7299 10.1047C26.8065 10.0609 26.9159 10.0938 26.9596 10.1702C27.0034 10.2578 26.9815 10.3563 26.9049 10.4L26.0189 10.9032C25.9424 10.9469 25.833 10.914 25.7893 10.8375V10.8375ZM26.9486 10.1813C26.9049 10.1047 26.8174 10.0828 26.7518 10.1265L25.8658 10.6297C25.8003 10.6734 25.7783 10.7609 25.8111 10.8265C25.8549 10.9031 25.9424 10.925 26.008 10.8813L26.894 10.3781C26.9596 10.3453 26.9815 10.2578 26.9486 10.1813V10.1813Z" fill="white"/>
<path d="M25.0673 12.2813C25.0345 12.1938 25.0673 12.1063 25.1548 12.0735L27.2657 11.1986C27.3422 11.1657 27.4407 11.2094 27.4734 11.2859C27.5063 11.3734 27.4734 11.4609 27.3859 11.4937L25.2751 12.3687C25.1985 12.4015 25.1001 12.3687 25.0673 12.2813Z" fill="#F3F3F3"/>
<path d="M25.0563 12.2922C25.0235 12.2048 25.0563 12.1063 25.1438 12.0625L27.2547 11.1876C27.2968 11.1717 27.3434 11.1732 27.3844 11.1916C27.4254 11.2101 27.4574 11.244 27.4734 11.286C27.5062 11.3735 27.4734 11.4719 27.3859 11.5156L25.2751 12.3906C25.233 12.4065 25.1864 12.4051 25.1454 12.3866C25.1043 12.3682 25.0723 12.3343 25.0563 12.2923V12.2922ZM27.4516 11.297C27.4187 11.2204 27.3312 11.1876 27.2657 11.2095L25.1547 12.0844C25.0782 12.1172 25.0453 12.2048 25.0782 12.2813C25.1109 12.3579 25.1984 12.3907 25.2641 12.3688L27.3749 11.4938C27.4516 11.4611 27.4845 11.3735 27.4516 11.297Z" fill="white"/>
<path d="M26.6096 12.8283C26.5768 12.7406 26.6205 12.6533 26.708 12.6204L27.6704 12.3031C27.747 12.2704 27.8454 12.325 27.8673 12.4016C27.9 12.4891 27.8563 12.5766 27.7689 12.6094L26.8064 12.9267C26.7299 12.9594 26.6424 12.9158 26.6096 12.8281V12.8283Z" fill="#F3F3F3"/>
<path d="M26.5984 12.839C26.5657 12.7515 26.6094 12.6531 26.708 12.6203L27.6702 12.3031C27.7577 12.2703 27.8562 12.325 27.889 12.4126C27.9218 12.5 27.8781 12.5984 27.7795 12.6313L26.8172 12.9485C26.7297 12.9703 26.6313 12.9265 26.5984 12.839ZM27.8671 12.4235C27.8452 12.3469 27.7577 12.3031 27.6812 12.325L26.7188 12.6422C26.6422 12.664 26.6094 12.7515 26.6313 12.8282C26.6532 12.9047 26.7407 12.9484 26.8172 12.9265L27.7796 12.6094C27.8562 12.5766 27.889 12.5 27.8671 12.4234V12.4235Z" fill="white"/>
<path d="M25.6253 14.1297C25.6034 14.0422 25.658 13.9547 25.7455 13.9438L27.9876 13.5063C28.075 13.4844 28.1516 13.55 28.1734 13.6375C28.1953 13.725 28.1407 13.8125 28.0532 13.8234L25.8111 14.2609C25.7236 14.2719 25.6361 14.2172 25.6251 14.1297H25.6253Z" fill="#F3F3F3"/>
<path d="M25.6031 14.1299C25.5812 14.0314 25.6468 13.9439 25.7343 13.922L27.9765 13.4844C28.064 13.4625 28.1515 13.5283 28.1733 13.6267C28.1952 13.7251 28.1296 13.8126 28.0421 13.8345L25.7999 14.272C25.7125 14.2939 25.6249 14.2283 25.6031 14.1297V14.1299ZM28.1515 13.6376C28.1406 13.561 28.064 13.5064 27.9875 13.5173L25.7452 13.9548C25.6687 13.9658 25.614 14.0532 25.6358 14.1299C25.6468 14.2064 25.7233 14.2611 25.8 14.2501L28.0421 13.8126C28.1186 13.7907 28.1733 13.7141 28.1515 13.6376Z" fill="white"/>
<path d="M27.0251 14.9719C27.0141 14.8844 27.0688 14.8078 27.1563 14.7968L28.1624 14.6765C28.2499 14.6656 28.3266 14.7312 28.3374 14.8187C28.3484 14.9063 28.2938 14.9828 28.2063 14.9938L27.2 15.114C27.1234 15.125 27.0359 15.0594 27.025 14.9719H27.0251Z" fill="#F3F3F3"/>
<path d="M27.0141 14.9719C27.0032 14.8734 27.0688 14.7859 27.1563 14.775L28.1624 14.6548C28.2499 14.6438 28.3374 14.7094 28.3484 14.8078C28.3593 14.9063 28.2937 14.9938 28.2062 15.0047L27.2 15.125C27.1126 15.1359 27.025 15.0703 27.0141 14.9719ZM28.3374 14.8188C28.3266 14.7423 28.25 14.6765 28.1734 14.6875L27.1672 14.8078C27.0907 14.8188 27.0359 14.8953 27.0469 14.9719C27.0578 15.0484 27.1344 15.1141 27.2109 15.1032L28.2172 14.9828C28.2937 14.9719 28.3484 14.8953 28.3375 14.8188H28.3374Z" fill="white"/>
<path d="M25.8002 16.0328C25.8002 15.9453 25.8657 15.8688 25.9533 15.8688H28.2393C28.3268 15.8688 28.3924 15.9453 28.3924 16.0328C28.3924 16.1203 28.3268 16.1969 28.2393 16.1969H25.9533C25.8658 16.1969 25.8002 16.1203 25.8002 16.0328Z" fill="#F3F3F3"/>
<path d="M25.7892 16.0329C25.7892 15.9345 25.8658 15.8579 25.9533 15.8579H28.2392C28.3267 15.8579 28.4033 15.9345 28.4033 16.0329C28.4033 16.1313 28.3267 16.2079 28.2392 16.2079H25.9533C25.8658 16.2079 25.7892 16.1313 25.7892 16.0329ZM28.3814 16.0439C28.3814 15.9673 28.3158 15.8908 28.2391 15.8908H25.9534C25.8769 15.8908 25.8111 15.9562 25.8111 16.0439C25.8111 16.1204 25.8769 16.1969 25.9534 16.1969H28.2394C28.3159 16.186 28.3815 16.1204 28.3815 16.0439H28.3814Z" fill="white"/>
<path d="M27.0142 17.1375C27.025 17.05 27.0907 16.9844 27.1782 16.9844L28.1954 17.0609C28.2828 17.0719 28.3484 17.1484 28.3374 17.2359C28.3266 17.3234 28.2609 17.389 28.1734 17.389L27.1563 17.3125C27.0797 17.3015 27.014 17.225 27.014 17.1375H27.0142Z" fill="#F3F3F3"/>
<path d="M27.0032 17.1376C27.0142 17.0391 27.0907 16.9735 27.1783 16.9735L28.1956 17.0501C28.283 17.061 28.3596 17.1376 28.3486 17.236C28.3378 17.3345 28.2611 17.4001 28.1736 17.4001L27.1563 17.3235C27.0688 17.3126 27.0032 17.2251 27.0032 17.1376ZM28.3378 17.236C28.3486 17.1595 28.283 17.0829 28.2064 17.0829L27.1891 17.0064C27.1126 17.0064 27.0469 17.061 27.036 17.1486C27.0251 17.2251 27.0907 17.3016 27.1673 17.3016L28.1847 17.3782C28.2611 17.3782 28.3268 17.3127 28.3378 17.236V17.236Z" fill="white"/>
<path d="M25.6033 17.936C25.6252 17.8485 25.7018 17.7937 25.7893 17.8048L28.0315 18.2532C28.119 18.275 28.1737 18.3516 28.1518 18.4391C28.1299 18.5266 28.0534 18.5813 27.9659 18.5704L25.7236 18.1219C25.647 18.111 25.5924 18.0235 25.6033 17.936V17.936Z" fill="#F3F3F3"/>
<path d="M25.5921 17.936C25.614 17.8375 25.7015 17.7829 25.789 17.7937L28.0313 18.2422C28.1188 18.264 28.1844 18.3515 28.1625 18.45C28.1407 18.5484 28.0532 18.6032 27.9657 18.5922L25.7233 18.1438C25.6358 18.1219 25.5811 18.0344 25.5921 17.9361V17.936ZM28.1407 18.45C28.1517 18.3734 28.108 18.2969 28.0313 18.275L25.7889 17.8266C25.7125 17.8157 25.6358 17.8594 25.6139 17.9469C25.603 18.0235 25.6467 18.1 25.7234 18.1219L27.9657 18.5703C28.0532 18.5813 28.1188 18.5265 28.1407 18.45Z" fill="white"/>
<path d="M26.5876 19.2485C26.5926 19.2277 26.6017 19.208 26.6143 19.1907C26.6269 19.1734 26.6428 19.1587 26.661 19.1476C26.6793 19.1364 26.6996 19.1289 26.7208 19.1256C26.7419 19.1223 26.7635 19.1232 26.7844 19.1282L27.7687 19.4016C27.8562 19.4235 27.8999 19.5111 27.8781 19.5985C27.8731 19.6193 27.8641 19.639 27.8515 19.6563C27.8388 19.6737 27.8229 19.6883 27.8046 19.6995C27.7864 19.7107 27.766 19.7182 27.7449 19.7215C27.7237 19.7248 27.7021 19.7239 27.6812 19.7189L26.6969 19.4454C26.6094 19.4235 26.5657 19.336 26.5875 19.2485H26.5876Z" fill="#F3F3F3"/>
<path d="M26.5767 19.2485C26.5986 19.161 26.697 19.0954 26.7845 19.1282L27.7689 19.4015C27.8564 19.4234 27.9112 19.5219 27.8893 19.6094C27.8673 19.6969 27.7689 19.7624 27.6814 19.7297L26.697 19.4563C26.6095 19.4344 26.5548 19.3469 26.5768 19.2486L26.5767 19.2485ZM27.8564 19.6094C27.8783 19.5328 27.8345 19.4453 27.7579 19.4234L26.7736 19.15C26.697 19.1281 26.6205 19.1719 26.5986 19.2594C26.5768 19.336 26.6205 19.4234 26.697 19.4453L27.6814 19.7188C27.7579 19.7297 27.8345 19.686 27.8564 19.6094Z" fill="white"/>
<path d="M25.0453 19.7735C25.0781 19.686 25.1766 19.6531 25.2531 19.686L27.3641 20.5609C27.4406 20.5937 27.4843 20.6922 27.4516 20.7687C27.4187 20.8563 27.3203 20.889 27.2437 20.8563L25.1328 19.9813C25.0453 19.9486 25.0125 19.85 25.0453 19.7736V19.7735Z" fill="#F3F3F3"/>
<path d="M25.0344 19.7625C25.0504 19.7205 25.0824 19.6865 25.1234 19.668C25.1644 19.6496 25.2111 19.6481 25.2532 19.664L27.364 20.5391C27.4515 20.5719 27.4843 20.6704 27.4515 20.7688C27.4355 20.8109 27.4035 20.8448 27.3625 20.8633C27.3215 20.8817 27.2748 20.8832 27.2327 20.8673L25.1219 19.9923C25.0344 19.9484 25.0016 19.85 25.0344 19.7625ZM27.4296 20.7579C27.4624 20.6813 27.4296 20.5938 27.3531 20.561L25.2422 19.6859C25.1657 19.6532 25.0891 19.6969 25.0563 19.7734C25.0235 19.85 25.0563 19.9375 25.1328 19.9704L27.2437 20.8454C27.3202 20.8673 27.4077 20.8344 27.4296 20.7579Z" fill="white"/>
<path d="M25.7563 21.25C25.8001 21.1735 25.8874 21.1406 25.964 21.1735L26.8717 21.6329C26.9482 21.6656 26.9811 21.7641 26.9374 21.8516C26.8936 21.9281 26.8061 21.9611 26.7296 21.9281L25.822 21.4688C25.7453 21.425 25.7125 21.3266 25.7563 21.25Z" fill="#F3F3F3"/>
<path d="M25.7452 21.2391C25.789 21.1516 25.8875 21.1189 25.975 21.1626L26.8828 21.622C26.9703 21.6658 27.0031 21.7643 26.9593 21.8516C26.9156 21.9391 26.817 21.972 26.7297 21.9282L25.8219 21.4689C25.7343 21.4362 25.7015 21.3266 25.7452 21.2391V21.2391ZM26.9266 21.8407C26.9593 21.7641 26.9374 21.6766 26.8608 21.6439L25.9531 21.1845C25.8874 21.1517 25.8 21.1845 25.7562 21.2501C25.7234 21.3266 25.7452 21.4141 25.8218 21.447L26.7295 21.9064C26.8062 21.9391 26.8937 21.9174 26.9266 21.8407Z" fill="white"/>
<path d="M24.1484 21.4578C24.2031 21.3813 24.2906 21.3594 24.3672 21.414L26.2703 22.6828C26.3469 22.7265 26.3578 22.8251 26.3141 22.9015C26.2594 22.9782 26.1719 23 26.0953 22.9453L24.1922 21.6765C24.1156 21.6219 24.0937 21.5234 24.1484 21.4578Z" fill="#F3F3F3"/>
<path d="M24.1375 21.4468C24.1922 21.3703 24.3016 21.3484 24.3782 21.3922L26.2814 22.6609C26.3579 22.7155 26.3798 22.814 26.325 22.9015C26.2704 22.9781 26.161 22.9999 26.0846 22.9562L24.1813 21.6874C24.0938 21.6328 24.0828 21.5234 24.1375 21.4468ZM26.2923 22.8905C26.336 22.825 26.325 22.7265 26.2596 22.6828L24.3563 21.414C24.2907 21.3703 24.2032 21.3922 24.1594 21.4578C24.1157 21.5234 24.1266 21.6218 24.1921 21.6655L26.0954 22.9343C26.161 22.9781 26.2485 22.9562 26.2923 22.8906V22.8905Z" fill="white"/>
<path d="M24.5532 23.0438C24.6078 22.9781 24.7063 22.9563 24.7719 23.0111L25.5703 23.6344C25.6359 23.6891 25.6469 23.7875 25.5922 23.8532C25.5376 23.9187 25.4391 23.9407 25.3734 23.886L24.575 23.2625C24.5095 23.2078 24.4984 23.1094 24.5532 23.0438V23.0438Z" fill="#F3F3F3"/>
<path d="M24.5422 23.0329C24.5969 22.9564 24.7063 22.9454 24.7828 23.0002L25.5812 23.6235C25.6578 23.6782 25.6687 23.7876 25.614 23.8641C25.5593 23.9408 25.4499 23.9516 25.3735 23.897L24.575 23.2735C24.4984 23.2189 24.4876 23.1095 24.5422 23.0329ZM25.5922 23.8533C25.6468 23.7876 25.6359 23.7001 25.5703 23.6454L24.7719 23.022C24.7063 22.9783 24.6188 22.9892 24.5641 23.0547C24.5094 23.1204 24.5203 23.2079 24.5859 23.2626L25.3843 23.886C25.4499 23.9298 25.5374 23.9188 25.5921 23.8533H25.5922Z" fill="white"/>
<path d="M22.9234 22.9345C22.9891 22.8689 23.0876 22.8689 23.1422 22.9345L24.761 24.5422C24.8267 24.6079 24.8157 24.7063 24.761 24.761C24.6955 24.8266 24.5969 24.8266 24.5423 24.761L22.9234 23.1533C22.8688 23.0985 22.8688 22.9891 22.9234 22.9345V22.9345Z" fill="#F3F3F3"/>
<path d="M22.9234 22.9234C22.9555 22.8918 22.9987 22.8741 23.0437 22.8741C23.0888 22.8741 23.132 22.8918 23.1641 22.9234L24.7829 24.5311C24.8144 24.5632 24.8321 24.6064 24.8321 24.6515C24.8321 24.6965 24.8144 24.7397 24.7829 24.7718C24.7508 24.8034 24.7076 24.8211 24.6626 24.8211C24.6175 24.8211 24.5743 24.8034 24.5423 24.7718L22.9234 23.1641C22.8468 23.0984 22.8468 22.9891 22.9234 22.9234ZM24.761 24.7499C24.8157 24.6953 24.8157 24.5968 24.761 24.5422L23.1422 22.9344C23.0875 22.8797 22.9891 22.8797 22.9344 22.9344C22.8797 22.989 22.8797 23.0875 22.9344 23.1421L24.5532 24.7499C24.6078 24.8156 24.6955 24.8156 24.761 24.7499Z" fill="white"/>
<path d="M23.0218 24.564C23.0876 24.5094 23.1859 24.5094 23.2407 24.575L23.9079 25.3406C23.9625 25.4063 23.9516 25.5047 23.8859 25.5594C23.8204 25.614 23.7219 25.614 23.6672 25.5484L22.9999 24.7828C22.9453 24.7282 22.9562 24.6297 23.0218 24.564V24.564Z" fill="#F3F3F3"/>
<path d="M23.011 24.564C23.0876 24.4986 23.186 24.5094 23.2515 24.575L23.9188 25.3406C23.9844 25.4063 23.9734 25.5156 23.8969 25.5813C23.8203 25.6469 23.7219 25.6359 23.6563 25.5703L22.989 24.8047C22.9344 24.7282 22.9344 24.6188 23.0109 24.564H23.011ZM23.886 25.5594C23.9515 25.5047 23.9515 25.4171 23.9078 25.3516L23.2406 24.5859C23.1859 24.5313 23.0984 24.5203 23.0328 24.575C22.9672 24.6297 22.9672 24.7172 23.0109 24.7827L23.6782 25.5484C23.7328 25.614 23.8204 25.614 23.8859 25.5594H23.886Z" fill="white"/>
<path d="M21.4469 24.1485C21.5235 24.0939 21.6219 24.1158 21.6657 24.1923L22.9344 26.0844C22.9782 26.161 22.9563 26.2594 22.8907 26.3032C22.8142 26.3579 22.7157 26.336 22.6719 26.2594L21.4031 24.3672C21.3593 24.2908 21.3812 24.1922 21.4468 24.1485H21.4469Z" fill="#F3F3F3"/>
<path d="M21.4469 24.1375C21.5234 24.0829 21.6328 24.1048 21.6875 24.1813L22.9562 26.0735C23.0108 26.1499 22.9889 26.2593 22.9016 26.3139C22.8249 26.3687 22.7156 26.3468 22.6609 26.2702L21.3923 24.3781C21.3376 24.2907 21.3595 24.1923 21.4469 24.1376V24.1375ZM22.8906 26.2921C22.9562 26.2483 22.9781 26.1608 22.9343 26.0952L21.6657 24.2031C21.6219 24.1376 21.5344 24.1266 21.458 24.1704C21.3923 24.2141 21.3704 24.3016 21.4142 24.3673L22.6828 26.2593C22.7266 26.3139 22.825 26.3358 22.8905 26.292L22.8906 26.2921Z" fill="white"/>
<path d="M21.2172 25.7671C21.2938 25.7234 21.3922 25.7453 21.4359 25.8219L21.9391 26.7078C21.9828 26.7844 21.9499 26.8828 21.8734 26.9265C21.7968 26.9703 21.6984 26.9484 21.6547 26.8719L21.1516 25.9859C21.1188 25.9094 21.1407 25.8109 21.2171 25.7672L21.2172 25.7671Z" fill="#F3F3F3"/>
<path d="M21.2172 25.7563C21.3047 25.7125 21.4032 25.7344 21.4469 25.811L21.95 26.697C21.9938 26.7736 21.9719 26.883 21.8845 26.9267C21.7969 26.9705 21.6984 26.9486 21.6547 26.8721L21.1516 25.986C21.1078 25.9095 21.1297 25.811 21.2171 25.7563H21.2172ZM21.8734 26.9159C21.9391 26.8721 21.9719 26.7845 21.9282 26.7189L21.4251 25.8329C21.3813 25.7673 21.2938 25.7454 21.2282 25.7781C21.1625 25.8219 21.1297 25.9095 21.1734 25.9751L21.6766 26.8611C21.7094 26.9267 21.8078 26.9596 21.8734 26.9158V26.9159Z" fill="white"/>
<path d="M19.7626 25.0454C19.8501 25.0126 19.9376 25.0454 19.9705 25.1219L20.8564 27.2328C20.8892 27.3094 20.8455 27.4078 20.7689 27.4405C20.6924 27.4734 20.5939 27.4405 20.5612 27.364L19.6752 25.2532C19.6424 25.1765 19.6861 25.0782 19.7626 25.0454Z" fill="#F3F3F3"/>
<path d="M19.7624 25.0344C19.8499 25.0017 19.9484 25.0344 19.9922 25.1219L20.8781 27.2329C20.894 27.2749 20.8925 27.3216 20.874 27.3626C20.8556 27.4035 20.8217 27.4356 20.7797 27.4516C20.6922 27.4844 20.5937 27.4516 20.55 27.3641L19.6641 25.2532C19.6313 25.1766 19.6751 25.0782 19.7624 25.0344V25.0344ZM20.7578 27.4298C20.8343 27.3969 20.8672 27.3094 20.8343 27.2438L19.9484 25.1329C19.9156 25.0563 19.8281 25.0235 19.7516 25.0563C19.6751 25.0891 19.6421 25.1766 19.6751 25.2423L20.5609 27.3532C20.6047 27.4298 20.6812 27.4625 20.7578 27.4298Z" fill="white"/>
<path d="M19.2265 26.5985C19.3141 26.5658 19.4015 26.6095 19.4344 26.697L19.7516 27.6595C19.7844 27.736 19.7297 27.8345 19.6532 27.8564C19.5657 27.8891 19.4782 27.8454 19.4454 27.7579L19.1282 26.7954C19.0954 26.7189 19.1391 26.6314 19.2266 26.5985H19.2265Z" fill="#F3F3F3"/>
<path d="M19.2158 26.5876C19.2579 26.5717 19.3045 26.5732 19.3455 26.5916C19.3865 26.6101 19.4185 26.644 19.4346 26.686L19.7519 27.6485C19.7846 27.736 19.7299 27.8344 19.6423 27.8673C19.6003 27.8831 19.5536 27.8817 19.5126 27.8632C19.4716 27.8448 19.4396 27.8108 19.4236 27.7688L19.1064 26.8064C19.0845 26.7189 19.1283 26.6204 19.2158 26.5876ZM19.6424 27.8453C19.719 27.8235 19.7627 27.736 19.7409 27.6594L19.4236 26.697C19.4018 26.6204 19.3143 26.5876 19.2377 26.6095C19.1611 26.6314 19.1174 26.7189 19.1393 26.7954L19.4565 27.7579C19.462 27.7764 19.4715 27.7936 19.4841 27.8083C19.4968 27.823 19.5124 27.8348 19.5299 27.8431C19.5475 27.8514 19.5666 27.8558 19.5859 27.8562C19.6053 27.8566 19.6246 27.8529 19.6424 27.8454V27.8453Z" fill="white"/>
<path d="M17.936 25.6032C18.0234 25.5813 18.111 25.636 18.1219 25.7235L18.5814 27.9658C18.6033 28.0532 18.5375 28.1299 18.45 28.1516C18.3626 28.1735 18.275 28.1189 18.2642 28.0314L17.8046 25.7891C17.7937 25.7125 17.8484 25.625 17.9359 25.6031L17.936 25.6032Z" fill="#F3F3F3"/>
<path d="M17.9361 25.592C18.0344 25.5702 18.1219 25.6358 18.1438 25.7233L18.6031 27.9657C18.625 28.0531 18.5593 28.1516 18.4718 28.1626C18.3734 28.1845 18.2859 28.1189 18.2641 28.0313L17.8047 25.7889C17.7829 25.7014 17.8376 25.6139 17.936 25.5921L17.9361 25.592ZM18.4499 28.1406C18.5266 28.1298 18.5812 28.0531 18.5703 27.9656L18.1109 25.7233C18.1001 25.6467 18.0126 25.5921 17.936 25.6139C17.8594 25.6248 17.8048 25.7014 17.8157 25.7889L18.2751 28.0313C18.2969 28.1079 18.3734 28.1516 18.4501 28.1408L18.4499 28.1406Z" fill="white"/>
<path d="M17.1048 27.0249C17.1923 27.014 17.2689 27.0688 17.2908 27.1562L17.4219 28.1624C17.4329 28.2499 17.3673 28.3265 17.2797 28.3374C17.1923 28.3484 17.1158 28.2937 17.0939 28.2062L16.9627 27.1999C16.9517 27.1124 17.0173 27.0359 17.1048 27.0249Z" fill="#F3F3F3"/>
<path d="M17.1046 27.0141C17.2031 27.0033 17.2907 27.0689 17.3016 27.1564L17.4329 28.1626C17.4438 28.2501 17.3782 28.3376 17.2797 28.3486C17.1812 28.3595 17.0937 28.2939 17.0827 28.2063L16.9514 27.2001C16.9405 27.1126 17.0061 27.0251 17.1046 27.0141ZM17.2687 28.3267C17.3453 28.3158 17.4111 28.2392 17.4001 28.1626L17.2687 27.1564C17.2578 27.0798 17.1812 27.0251 17.1046 27.036C17.028 27.047 16.9623 27.1235 16.9732 27.2001L17.1046 28.2064C17.1156 28.283 17.1922 28.3376 17.2687 28.3267Z" fill="white"/>
<path d="M15.9782 25.7999C16.0657 25.7999 16.1422 25.8656 16.1422 25.9531V28.239C16.1422 28.3265 16.0657 28.3922 15.9782 28.3922C15.8907 28.3922 15.8141 28.3265 15.8141 28.239V25.9531C15.8251 25.8656 15.8907 25.7999 15.9782 25.7999Z" fill="#F3F3F3"/>
<path d="M15.9782 25.7889C16.0766 25.7889 16.1531 25.8655 16.1531 25.953V28.2389C16.1531 28.3264 16.0766 28.403 15.9782 28.403C15.8797 28.403 15.8032 28.3264 15.8032 28.2389V25.9531C15.8032 25.8656 15.8907 25.7889 15.9782 25.7889ZM15.9782 28.3812C16.0547 28.3812 16.1312 28.3156 16.1312 28.2389V25.9531C16.1312 25.8764 16.0656 25.8108 15.9782 25.8108C15.9016 25.8108 15.8251 25.8764 15.8251 25.9531V28.2389C15.8359 28.3156 15.9016 28.3812 15.9782 28.3812Z" fill="white"/>
<path d="M14.8844 27.025C14.9719 27.0359 15.0375 27.1015 15.0375 27.189L14.961 28.2063C14.9501 28.2938 14.8735 28.3594 14.786 28.3485C14.6985 28.3375 14.6329 28.2719 14.6329 28.1844L14.7094 27.1671C14.7204 27.0798 14.7969 27.014 14.8844 27.025Z" fill="#F3F3F3"/>
<path d="M14.8844 27.0141C14.9828 27.0251 15.0484 27.1016 15.0484 27.1891L14.9719 28.2064C14.9609 28.2939 14.8844 28.3705 14.7859 28.3595C14.6876 28.3486 14.6219 28.272 14.6219 28.1845L14.6984 27.1672C14.7094 27.0689 14.7859 27.0033 14.8844 27.0141ZM14.7859 28.3376C14.8625 28.3376 14.9391 28.283 14.9391 28.2064L15.0157 27.1891C15.0157 27.1126 14.9609 27.047 14.8734 27.036C14.7969 27.036 14.7203 27.0907 14.7203 27.1673L14.6438 28.1845C14.6438 28.2611 14.7094 28.3268 14.786 28.3376H14.7859Z" fill="white"/>
<path d="M14.064 25.6031C14.1515 25.6249 14.2062 25.7014 14.1952 25.7889L13.7468 28.0314C13.7249 28.1189 13.6484 28.1737 13.5609 28.1516C13.4734 28.1298 13.4187 28.0533 13.4297 27.9657L13.8781 25.7233C13.8891 25.6468 13.9766 25.5921 14.064 25.6031Z" fill="#F3F3F3"/>
<path d="M14.0642 25.592C14.1626 25.6139 14.2173 25.7015 14.2064 25.7889L13.7579 28.0313C13.736 28.1188 13.6485 28.1844 13.5502 28.1624C13.4517 28.1405 13.397 28.053 13.4079 27.9655L13.8564 25.7233C13.8783 25.6358 13.9658 25.581 14.0641 25.5921L14.0642 25.592ZM13.5502 28.1405C13.6267 28.1515 13.7033 28.1078 13.7252 28.0313L14.1735 25.7889C14.1845 25.7124 14.1408 25.6358 14.0533 25.6139C13.9767 25.6031 13.9002 25.6468 13.8783 25.7234L13.4298 27.9655C13.4189 28.053 13.4735 28.1188 13.5502 28.1405V28.1405Z" fill="white"/>
<path d="M12.7517 26.5877C12.8393 26.6096 12.8939 26.6971 12.872 26.7846L12.5986 27.7689C12.5768 27.8564 12.4893 27.9001 12.4018 27.8783C12.381 27.8733 12.3613 27.8642 12.344 27.8516C12.3266 27.839 12.312 27.8231 12.3008 27.8048C12.2896 27.7865 12.2821 27.7662 12.2788 27.745C12.2755 27.7238 12.2764 27.7022 12.2814 27.6814L12.5549 26.6971C12.5768 26.6096 12.6643 26.5659 12.7518 26.5877H12.7517Z" fill="#F3F3F3"/>
<path d="M12.7516 26.5768C12.8392 26.5986 12.9048 26.6971 12.8719 26.7846L12.5985 27.769C12.5767 27.8565 12.4783 27.9112 12.3908 27.8892C12.3033 27.8674 12.2377 27.769 12.2704 27.6815L12.5439 26.6971C12.5658 26.6096 12.6533 26.5548 12.7516 26.5767V26.5768ZM12.3908 27.8565C12.4673 27.8784 12.5548 27.8346 12.5767 27.758L12.85 26.7736C12.8719 26.6971 12.8282 26.6205 12.7407 26.5986C12.6642 26.5767 12.5767 26.6205 12.5548 26.6971L12.2814 27.6815C12.2704 27.758 12.3141 27.8346 12.3908 27.8565Z" fill="white"/>
<path d="M12.2156 25.0454C12.3031 25.0781 12.3358 25.1766 12.3031 25.2531L11.4281 27.3641C11.3953 27.4407 11.2968 27.4844 11.2204 27.4407C11.1437 27.3969 11.0999 27.3094 11.1327 27.2329L12.0077 25.1219C12.0405 25.0454 12.139 25.0016 12.2155 25.0454H12.2156Z" fill="#F3F3F3"/>
<path d="M12.2156 25.0344C12.2576 25.0504 12.2915 25.0824 12.31 25.1234C12.3285 25.1644 12.3299 25.2111 12.314 25.2532L11.439 27.364C11.4061 27.4515 11.3077 27.4843 11.2092 27.4515C11.1672 27.4354 11.1333 27.4034 11.1148 27.3625C11.0964 27.3215 11.0949 27.2748 11.1108 27.2328L11.9858 25.1218C12.0296 25.0344 12.128 24.9907 12.2156 25.0344V25.0344ZM11.2202 27.4297C11.2967 27.4624 11.3842 27.4297 11.4171 27.3531L12.2921 25.2422C12.3248 25.1657 12.2811 25.089 12.2046 25.0563C12.128 25.0235 12.0405 25.0563 12.0077 25.1328L11.1327 27.2437C11.1108 27.3093 11.1436 27.3968 11.2202 27.4297Z" fill="white"/>
<path d="M10.7391 25.7454C10.8157 25.7891 10.8484 25.8766 10.8157 25.9532L10.3563 26.8608C10.3125 26.9374 10.225 26.9702 10.1375 26.9264C10.0609 26.8827 10.0282 26.7953 10.0609 26.7187L10.5204 25.8111C10.5641 25.7345 10.6516 25.7016 10.7391 25.7454Z" fill="#F3F3F3"/>
<path d="M10.7392 25.7345C10.8267 25.7782 10.8595 25.8767 10.8158 25.9641L10.3564 26.8719C10.3126 26.9594 10.2141 26.9922 10.1268 26.9484C10.0393 26.9047 10.0064 26.8062 10.0502 26.7188L10.5095 25.8111C10.5533 25.7235 10.6517 25.6908 10.7392 25.7345ZM10.1377 26.9266C10.2143 26.9594 10.3018 26.9375 10.3345 26.8609L10.7939 25.9533C10.8266 25.8876 10.7939 25.8001 10.7283 25.7564C10.6517 25.7236 10.5642 25.7454 10.5314 25.822L10.072 26.7296C10.0393 26.7953 10.072 26.8828 10.1377 26.9265V26.9266Z" fill="white"/>
<path d="M10.5203 24.1267C10.5968 24.1813 10.6187 24.2798 10.5641 24.3454L9.29528 26.2378C9.25158 26.3142 9.15302 26.3252 9.07659 26.2815C9.00004 26.2267 8.97813 26.1284 9.03278 26.0626L10.3016 24.1702C10.3453 24.0938 10.4437 24.0719 10.5203 24.1265V24.1267Z" fill="#F3F3F3"/>
<path d="M10.5203 24.1157C10.5969 24.1704 10.6188 24.2798 10.575 24.3564L9.30626 26.2487C9.25162 26.3251 9.15316 26.347 9.06566 26.2924C8.98911 26.2376 8.9672 26.1283 9.0109 26.0516L10.2797 24.1595C10.3344 24.0829 10.4438 24.061 10.5203 24.1157V24.1157ZM9.07661 26.2705C9.1421 26.3141 9.24066 26.3032 9.28436 26.2377L10.5532 24.3454C10.5969 24.2798 10.5751 24.1923 10.5094 24.1485C10.4438 24.1048 10.3453 24.1158 10.3016 24.1813L9.0328 26.0626C8.98911 26.1283 9.0109 26.2266 9.07661 26.2703V26.2705Z" fill="white"/>
<path d="M8.92344 24.5314C8.98915 24.586 9.01094 24.6845 8.95629 24.7501L8.3219 25.5485C8.26726 25.6141 8.16881 25.625 8.10321 25.5704C8.03762 25.5157 8.01571 25.4173 8.07047 25.3516L8.70475 24.5532C8.75939 24.4877 8.85784 24.4766 8.92344 24.5314Z" fill="#F3F3F3"/>
<path d="M8.9344 24.5204C9.01095 24.575 9.0219 24.6845 8.96714 24.761L8.33284 25.5595C8.2782 25.636 8.16879 25.647 8.09224 25.5814C8.01569 25.5266 8.00474 25.4173 8.0595 25.3407L8.6938 24.5423C8.74845 24.4656 8.85785 24.4548 8.9344 24.5204ZM8.11415 25.5595C8.17963 25.6141 8.26725 25.6033 8.32189 25.5376L8.95631 24.7391C9.00011 24.6736 8.98905 24.586 8.92356 24.5313C8.85785 24.4766 8.77035 24.4875 8.7157 24.5533L8.08129 25.3516C8.0376 25.4173 8.04855 25.5157 8.11403 25.5595H8.11415Z" fill="white"/>
<path d="M9.03277 22.8907C9.09836 22.9562 9.09836 23.0548 9.03277 23.1094L7.41413 24.7171C7.34842 24.7829 7.25009 24.7719 7.19533 24.7171C7.14069 24.6625 7.12973 24.5531 7.19533 24.4985L8.80302 22.8907C8.86873 22.825 8.96717 22.825 9.03277 22.8907V22.8907Z" fill="#F3F3F3"/>
<path d="M9.04376 22.8798C9.07527 22.9119 9.09293 22.9551 9.09293 23C9.09293 23.045 9.07527 23.0882 9.04376 23.1203L7.42501 24.7283C7.39292 24.7598 7.34974 24.7775 7.30477 24.7775C7.2598 24.7775 7.21662 24.7598 7.18453 24.7283C7.15295 24.6962 7.13525 24.653 7.13525 24.6079C7.13525 24.5629 7.15295 24.5197 7.18453 24.4876L8.80317 22.8798C8.83527 22.8482 8.87847 22.8306 8.92347 22.8306C8.96847 22.8306 9.01167 22.8482 9.04376 22.8798V22.8798ZM7.19537 24.7172C7.25001 24.7719 7.34846 24.7719 7.4031 24.7172L9.02186 23.1093C9.07662 23.0547 9.07662 22.9562 9.02186 22.9016C8.96722 22.8468 8.86877 22.8468 8.81412 22.9016L7.19537 24.5094C7.14073 24.564 7.14073 24.6516 7.19537 24.7171V24.7172Z" fill="white"/>
<path d="M7.39221 22.9782C7.44685 23.0437 7.44685 23.1423 7.38125 23.1969L6.60471 23.8533C6.53911 23.908 6.44066 23.897 6.3859 23.8314C6.33125 23.7657 6.33125 23.6673 6.39685 23.6126L7.1734 22.9563C7.23911 22.9016 7.33745 22.9125 7.39221 22.9782Z" fill="#F3F3F3"/>
<path d="M7.40307 22.9672C7.46867 23.0438 7.45772 23.1531 7.39212 23.2079L6.61557 23.864C6.54997 23.9297 6.44057 23.9188 6.37497 23.8422C6.30926 23.7656 6.32021 23.6563 6.38581 23.6015L7.16247 22.9454C7.22796 22.8798 7.33748 22.8908 7.40296 22.9673L7.40307 22.9672ZM6.39676 23.8313C6.45152 23.8969 6.53902 23.8969 6.6045 23.8532L7.38117 23.1969C7.43581 23.1423 7.44677 23.0547 7.39212 22.9892C7.33736 22.9235 7.24986 22.9235 7.18438 22.9673L6.40771 23.6235C6.34211 23.6781 6.34211 23.7657 6.39676 23.8312V23.8313Z" fill="white"/>
<path d="M7.82986 21.4031C7.8845 21.4798 7.8626 21.5781 7.78605 21.6219L5.88297 22.8906C5.80642 22.9343 5.70797 22.9124 5.66427 22.8468C5.60952 22.7703 5.63142 22.6719 5.70797 22.628L7.61116 21.3594C7.67687 21.3157 7.77521 21.3375 7.82997 21.4031H7.82986Z" fill="#F3F3F3"/>
<path d="M7.84065 21.4031C7.89529 21.4798 7.87339 21.5891 7.79684 21.6439L5.89379 22.9125C5.81724 22.9673 5.70784 22.9453 5.6532 22.8579C5.59844 22.7813 5.62045 22.6719 5.69689 22.6173L7.60006 21.3485C7.6766 21.2939 7.78589 21.3158 7.84054 21.4031H7.84065ZM5.6751 22.836C5.71879 22.9016 5.80629 22.9235 5.87188 22.8798L7.77494 21.611C7.84065 21.5673 7.86244 21.4798 7.8078 21.4033C7.7641 21.3376 7.6766 21.3158 7.6109 21.3595L5.70784 22.6282C5.64224 22.6829 5.63129 22.7704 5.6751 22.836V22.836Z" fill="white"/>
<path d="M6.20007 21.1735C6.24388 21.25 6.22197 21.3485 6.14542 21.3923L5.25946 21.8953C5.18291 21.939 5.08446 21.9063 5.04076 21.8297C4.99696 21.7532 5.01886 21.6547 5.09541 21.6109L5.98137 21.1079C6.05792 21.0641 6.15638 21.0969 6.20018 21.1735H6.20007Z" fill="#F3F3F3"/>
<path d="M6.2111 21.1625C6.2548 21.25 6.23289 21.3484 6.15635 21.3922L5.27041 21.8953C5.19386 21.939 5.08446 21.9062 5.04076 21.8297C4.99696 21.7422 5.01886 21.6437 5.09541 21.5999L5.98135 21.0969C6.0579 21.0531 6.1673 21.0859 6.21099 21.1625H6.2111ZM5.0516 21.8187C5.09541 21.8953 5.18291 21.9172 5.2485 21.8734L6.13444 21.3703C6.20004 21.3265 6.22194 21.239 6.1892 21.1734C6.14539 21.0969 6.0579 21.075 5.9923 21.1188L5.10636 21.6218C5.04076 21.6546 5.01886 21.7422 5.05172 21.8187H5.0516Z" fill="white"/>
<path d="M6.93273 19.7188C6.96547 19.8063 6.93273 19.8939 6.84523 19.9266L4.73428 20.8016C4.65773 20.8345 4.55928 20.7908 4.52654 20.7141C4.49368 20.6266 4.52654 20.5391 4.61404 20.5064L6.72499 19.6313C6.80154 19.5986 6.89999 19.6313 6.93273 19.7188V19.7188Z" fill="#F3F3F3"/>
<path d="M6.94368 19.7079C6.97642 19.7954 6.94368 19.8938 6.85618 19.9375L4.74523 20.8125C4.70317 20.8284 4.65654 20.8269 4.61555 20.8085C4.57456 20.79 4.54255 20.7561 4.52654 20.7141C4.49368 20.6266 4.52654 20.5281 4.61404 20.4844L6.72499 19.6094C6.76705 19.5936 6.81368 19.595 6.85467 19.6135C6.89566 19.6319 6.92766 19.6659 6.94368 19.7079V19.7079ZM4.54833 20.7031C4.58118 20.7798 4.66868 20.8126 4.73428 20.7906L6.84523 19.9156C6.92178 19.8829 6.95463 19.7954 6.92178 19.7188C6.88904 19.6423 6.80154 19.6094 6.73583 19.6313L4.62488 20.5063C4.54833 20.5391 4.51559 20.6266 4.54833 20.7032V20.7031Z" fill="white"/>
<path d="M5.39067 19.1719C5.42342 19.2594 5.37972 19.3469 5.29222 19.3797L4.32972 19.6969C4.25317 19.7297 4.15472 19.675 4.13281 19.5985C4.10007 19.511 4.14376 19.4235 4.23126 19.3907L5.19377 19.0735C5.27032 19.0407 5.35782 19.0844 5.39067 19.1719Z" fill="#F3F3F3"/>
<path d="M5.40136 19.161C5.43421 19.2485 5.39052 19.347 5.29207 19.3798L4.32958 19.697C4.24208 19.7297 4.14363 19.6751 4.11078 19.5876C4.07804 19.5001 4.12173 19.4016 4.22029 19.3689L5.18267 19.0516C5.27017 19.0298 5.36862 19.0735 5.40147 19.1611L5.40136 19.161ZM4.13279 19.5767C4.1547 19.6533 4.2422 19.6971 4.31874 19.6752L5.28123 19.3579C5.35778 19.3361 5.39063 19.2486 5.36873 19.172C5.34683 19.0955 5.25933 19.0517 5.18278 19.0736L4.22029 19.3909C4.14374 19.4236 4.11089 19.5002 4.13279 19.5767Z" fill="white"/>
<path d="M6.37517 17.8703C6.39696 17.9578 6.34232 18.0453 6.25482 18.0563L4.01257 18.4938C3.92507 18.5157 3.84853 18.45 3.82674 18.3625C3.80483 18.275 3.85948 18.1875 3.94698 18.1765L6.18922 17.739C6.27672 17.7282 6.36422 17.7828 6.37506 17.8703H6.37517Z" fill="#F3F3F3"/>
<path d="M6.39688 17.8704C6.41878 17.9688 6.35319 18.0563 6.26569 18.0781L4.02343 18.5156C3.93593 18.5375 3.84843 18.4719 3.82664 18.3735C3.80474 18.275 3.87033 18.1875 3.95783 18.1657L6.20009 17.7282C6.28748 17.7063 6.37509 17.7719 6.39688 17.8704ZM3.84843 18.3626C3.85938 18.4391 3.93593 18.4938 4.01248 18.4829L6.25474 18.0454C6.33128 18.0344 6.38593 17.9469 6.36414 17.8704C6.35319 17.7938 6.27664 17.7391 6.19998 17.75L3.95783 18.1875C3.88128 18.2094 3.82664 18.286 3.84843 18.3625V18.3626Z" fill="white"/>
<path d="M4.97515 17.0283C4.98598 17.1157 4.93134 17.1923 4.84384 17.2033L3.83765 17.3236C3.75003 17.3345 3.67348 17.2689 3.66265 17.1813C3.65169 17.0939 3.70634 17.0173 3.79384 17.0062L4.80015 16.886C4.87669 16.875 4.96419 16.9406 4.97515 17.0283Z" fill="#F3F3F3"/>
<path d="M4.98611 17.0282C4.99695 17.1265 4.93135 17.214 4.84385 17.2249L3.83766 17.3453C3.75005 17.3562 3.66266 17.2906 3.65171 17.1922C3.64076 17.0937 3.70635 17.0063 3.79385 16.9953L4.80016 16.875C4.88755 16.864 4.97516 16.9297 4.986 17.028L4.98611 17.0282ZM3.66255 17.1812C3.6735 17.2578 3.75016 17.3235 3.82671 17.3124L4.8329 17.1922C4.90945 17.1812 4.96421 17.1047 4.95326 17.0282C4.94231 16.9515 4.86576 16.8859 4.78921 16.8969L3.7829 17.0172C3.70635 17.0282 3.65171 17.1047 3.66255 17.1812V17.1812Z" fill="white"/>
<path d="M6.19993 15.9671C6.19993 16.0547 6.13444 16.1313 6.04683 16.1313H3.76101C3.67351 16.1313 3.60791 16.0547 3.60791 15.9672C3.60791 15.8798 3.67351 15.8031 3.76101 15.8031H6.04694C6.13444 15.8031 6.20015 15.8798 6.20015 15.9672L6.19993 15.9671Z" fill="#F3F3F3"/>
<path d="M6.21109 15.9671C6.21109 16.0657 6.13443 16.1421 6.04693 16.1421H3.76109C3.67359 16.1421 3.59705 16.0656 3.59705 15.9671C3.59705 15.8688 3.67359 15.7921 3.76109 15.7921H6.04705C6.13455 15.7921 6.21109 15.8688 6.21109 15.9671ZM3.61884 15.9563C3.61884 16.0328 3.68443 16.1094 3.76109 16.1094H6.04693C6.12348 16.1094 6.18919 16.0438 6.18919 15.9563C6.18919 15.8797 6.12348 15.8031 6.04693 15.8031H3.76109C3.68455 15.814 3.61895 15.8797 3.61895 15.9563H3.61884Z" fill="white"/>
<path d="M4.98619 14.8625C4.97513 14.95 4.90953 15.0156 4.82203 15.0156L3.80476 14.9391C3.71737 14.9281 3.65177 14.8516 3.66261 14.7641C3.67356 14.6766 3.73927 14.611 3.82677 14.611L4.84393 14.6875C4.92048 14.6985 4.98619 14.775 4.98619 14.8625Z" fill="#E2E2E2"/>
<path d="M4.99679 14.8625C4.98584 14.9609 4.9093 15.0265 4.8218 15.0265L3.80454 14.95C3.71716 14.939 3.64061 14.8625 3.65156 14.764C3.6624 14.6657 3.73906 14.6 3.82656 14.6L4.8437 14.6765C4.9312 14.6875 4.99679 14.775 4.99679 14.8625ZM3.6624 14.764C3.65156 14.8406 3.71716 14.9172 3.7937 14.9172L4.81096 14.9938C4.88739 14.9938 4.9531 14.939 4.96405 14.8515C4.975 14.775 4.9093 14.6984 4.83275 14.6984L3.81549 14.6219C3.73906 14.6219 3.67335 14.6875 3.6624 14.7641V14.764Z" fill="white"/>
<path d="M6.39679 14.064C6.37488 14.1515 6.29834 14.2062 6.21084 14.1953L3.96869 13.7359C3.88119 13.714 3.82643 13.6375 3.84834 13.55C3.87024 13.4625 3.94679 13.4077 4.03429 13.4188L6.27655 13.8672C6.35309 13.889 6.40774 13.9765 6.39679 14.064V14.064Z" fill="#F3F3F3"/>
<path d="M6.40785 14.0641C6.38595 14.1625 6.29845 14.2173 6.21095 14.2063L3.96882 13.7579C3.88132 13.736 3.81572 13.6485 3.83762 13.5501C3.85941 13.4516 3.94691 13.3969 4.03441 13.4079L6.27666 13.8563C6.36416 13.8782 6.4188 13.9657 6.40785 14.0641V14.0641ZM3.85941 13.55C3.84846 13.6266 3.89216 13.7031 3.96882 13.725L6.21106 14.1735C6.28761 14.1844 6.36416 14.1407 6.38606 14.0531C6.3969 13.9766 6.35321 13.9 6.27655 13.8781L4.03453 13.4298C3.94703 13.4188 3.88143 13.4735 3.85953 13.55H3.85941Z" fill="white"/>
<path d="M5.41272 12.7516C5.4077 12.7725 5.39862 12.7921 5.38601 12.8094C5.37339 12.8268 5.35748 12.8414 5.3392 12.8526C5.32091 12.8637 5.3006 12.8712 5.27943 12.8745C5.25826 12.8778 5.23664 12.8769 5.21582 12.8719L4.2314 12.5984C4.1439 12.5765 4.10021 12.4891 4.122 12.4016C4.12702 12.3807 4.1361 12.3611 4.14871 12.3438C4.16133 12.3265 4.17724 12.3118 4.19552 12.3006C4.21381 12.2895 4.23412 12.282 4.25529 12.2787C4.27646 12.2754 4.29808 12.2763 4.3189 12.2813L5.30332 12.5548C5.39082 12.5765 5.43451 12.664 5.41272 12.7515V12.7516Z" fill="#F3F3F3"/>
<path d="M5.42337 12.7516C5.40158 12.839 5.30313 12.9047 5.21563 12.8718L4.23121 12.5984C4.1437 12.5765 4.08894 12.4781 4.11085 12.3907C4.13275 12.3031 4.23121 12.2375 4.31871 12.2703L5.30313 12.5438C5.39063 12.5657 5.44539 12.6532 5.42337 12.7515V12.7516ZM4.1437 12.3905C4.1218 12.4671 4.16561 12.5546 4.24216 12.5764L5.22658 12.8498C5.30313 12.8717 5.37968 12.8279 5.40158 12.7404C5.42337 12.6639 5.37968 12.5764 5.30313 12.5546L4.31871 12.2812C4.24216 12.2702 4.16561 12.3139 4.1437 12.3906V12.3905Z" fill="white"/>
<path d="M6.95465 12.2267C6.92191 12.3141 6.82335 12.3469 6.74691 12.3141L4.63585 11.4391C4.5593 11.4063 4.5156 11.3079 4.54835 11.2313C4.5812 11.1438 4.67965 11.111 4.7562 11.1438L6.86715 12.0188C6.95465 12.0516 6.98751 12.15 6.95465 12.2266V12.2267Z" fill="#F3F3F3"/>
<path d="M6.96561 12.2375C6.9496 12.2796 6.91757 12.3135 6.87656 12.332C6.83554 12.3504 6.78888 12.3519 6.74681 12.336L4.63584 11.461C4.54834 11.4283 4.5156 11.3298 4.54834 11.2314C4.56436 11.1893 4.59638 11.1554 4.6374 11.1369C4.67841 11.1185 4.72507 11.117 4.76715 11.1329L6.87811 12.0079C6.96561 12.0516 6.99836 12.1501 6.96561 12.2375V12.2375ZM4.57024 11.2423C4.5375 11.3189 4.57024 11.4064 4.64679 11.4391L6.75776 12.3141C6.83431 12.3469 6.91086 12.3031 6.94371 12.2266C6.97645 12.15 6.94371 12.0625 6.86716 12.0298L4.7562 11.1548C4.67965 11.1329 4.59215 11.1658 4.57024 11.2423V11.2423Z" fill="white"/>
<path d="M6.24385 10.75C6.20015 10.8266 6.11265 10.8594 6.03611 10.8266L5.12825 10.3673C5.0517 10.3344 5.01885 10.236 5.06265 10.1484C5.10635 10.0719 5.19385 10.039 5.2704 10.0719L6.17814 10.5313C6.2548 10.575 6.28765 10.6736 6.24385 10.75Z" fill="#F3F3F3"/>
<path d="M6.25485 10.761C6.21104 10.8485 6.11259 10.8814 6.02509 10.8375L5.11735 10.3781C5.02985 10.3344 4.997 10.236 5.04081 10.1485C5.0845 10.061 5.18306 10.0281 5.27045 10.0719L6.17819 10.5313C6.2658 10.5641 6.29854 10.6736 6.25485 10.761V10.761ZM5.07355 10.1594C5.04081 10.236 5.06271 10.3235 5.13926 10.3563L6.04699 10.8158C6.1127 10.8485 6.2002 10.8158 6.2439 10.75C6.27664 10.6735 6.25485 10.586 6.1783 10.5531L5.25939 10.094C5.19379 10.0612 5.10629 10.083 5.07344 10.1595L5.07355 10.1594Z" fill="white"/>
<path d="M7.85144 10.5422C7.7968 10.6188 7.70929 10.6407 7.63274 10.586L5.74045 9.32823C5.66401 9.28442 5.65306 9.18597 5.69675 9.10942C5.74056 9.03287 5.83901 9.01097 5.91556 9.06562L7.8187 10.3344C7.8843 10.3782 7.9062 10.4767 7.85144 10.5422Z" fill="#F3F3F3"/>
<path d="M7.86239 10.5531C7.80774 10.6298 7.69834 10.6516 7.62191 10.6079L5.72966 9.33905C5.65311 9.28441 5.63121 9.18596 5.68586 9.09857C5.74061 9.02191 5.85002 9 5.92656 9.04381L7.8187 10.3125C7.90619 10.3673 7.91715 10.4766 7.86239 10.5531ZM5.70776 9.10941C5.66407 9.175 5.67502 9.27346 5.7405 9.31715L7.6437 10.5861C7.70929 10.6299 7.79679 10.608 7.8406 10.5424C7.88429 10.4767 7.87334 10.3782 7.80786 10.3345L5.90455 9.06571C5.83895 9.02191 5.75145 9.04381 5.70765 9.10941H5.70776Z" fill="white"/>
<path d="M7.4469 8.9563C7.39226 9.02189 7.29381 9.04379 7.22821 8.98904L6.42975 8.36571C6.36415 8.31096 6.3532 8.21251 6.40784 8.14691C6.46249 8.08132 6.56094 8.05941 6.62665 8.11417L7.425 8.73749C7.49071 8.79225 7.50166 8.89059 7.4469 8.9563V8.9563Z" fill="#F3F3F3"/>
<path d="M7.45781 8.96712C7.40316 9.04378 7.29376 9.05473 7.21721 8.99998L6.41878 8.37665C6.34223 8.322 6.33128 8.2126 6.38604 8.13617C6.44068 8.05951 6.55008 8.04856 6.62652 8.10332L7.42495 8.72664C7.50161 8.7814 7.51256 8.89069 7.45781 8.96735V8.96712ZM6.40783 8.14689C6.35318 8.21249 6.36414 8.29999 6.42973 8.35463L7.22817 8.97819C7.29376 9.02188 7.38126 9.01093 7.4359 8.94533C7.49066 8.87974 7.47971 8.79224 7.41411 8.73759L6.61568 8.11404C6.55008 8.07035 6.46247 8.0813 6.40794 8.14689H6.40783Z" fill="white"/>
<path d="M9.07648 9.06562C9.01099 9.13133 8.91243 9.13133 8.85778 9.06562L7.22821 7.45786C7.16261 7.39227 7.17345 7.29381 7.22821 7.23905C7.29381 7.17357 7.39226 7.17357 7.44691 7.23905L9.06575 8.84692C9.13135 8.90157 9.13135 9.01097 9.07671 9.06573L9.07648 9.06562Z" fill="#F3F3F3"/>
<path d="M9.07664 9.0766C9.04455 9.10811 9.00137 9.12576 8.95639 9.12576C8.91142 9.12576 8.86824 9.10811 8.83615 9.0766L7.21725 7.46864C7.18567 7.43654 7.16797 7.39332 7.16797 7.34829C7.16797 7.30326 7.18567 7.26003 7.21725 7.22793C7.24934 7.19639 7.29254 7.17871 7.33754 7.17871C7.38255 7.17871 7.42575 7.19639 7.45784 7.22793L9.07664 8.83578C9.15318 8.90137 9.15318 9.01077 9.07664 9.07637V9.0766ZM7.23938 7.24984C7.18462 7.30459 7.18462 7.40304 7.23938 7.45758L8.85806 9.06542C8.91281 9.12018 9.01115 9.12018 9.0658 9.06542C9.12055 9.01077 9.12055 8.91232 9.0658 8.85768L7.44712 7.239C7.39247 7.18435 7.30486 7.18435 7.23938 7.24995V7.24984Z" fill="white"/>
<path d="M8.97816 7.43593C8.91256 7.49068 8.81411 7.49068 8.75936 7.42497L8.09211 6.65938C8.03758 6.59378 8.04842 6.49533 8.11413 6.44068C8.17961 6.38593 8.27817 6.38593 8.33282 6.45152L9.00006 7.21723C9.05471 7.27188 9.04376 7.37033 8.97816 7.43593Z" fill="#F3F3F3"/>
<path d="M8.98906 7.43593C8.91252 7.50153 8.81406 7.49069 8.74835 7.42498L8.08121 6.65938C8.01561 6.59378 8.02656 6.48438 8.10311 6.41878C8.17966 6.35307 8.27811 6.36402 8.34371 6.42973L9.01097 7.19522C9.06561 7.27188 9.06561 7.38129 8.98906 7.43593V7.43593ZM8.11406 6.44068C8.04835 6.49533 8.04835 6.58283 8.09216 6.64843L8.75942 7.41403C8.81406 7.46879 8.90156 7.47974 8.96716 7.42498C9.03276 7.37034 9.03276 7.28272 8.98906 7.21724L8.32181 6.45152C8.26716 6.38604 8.17955 6.38604 8.11406 6.44068V6.44068Z" fill="white"/>
<path d="M10.5532 7.85171C10.4766 7.90635 10.3782 7.88445 10.3343 7.8079L9.05472 5.91566C9.01091 5.83911 9.03281 5.74066 9.09841 5.69696C9.17496 5.64232 9.27341 5.66422 9.31721 5.74077L10.5859 7.6329C10.6407 7.70945 10.6187 7.8079 10.5532 7.85159V7.85171Z" fill="#F3F3F3"/>
<path d="M10.5532 7.86251C10.4767 7.91727 10.3673 7.89526 10.3125 7.81882L9.04388 5.92655C8.98924 5.85 9.01114 5.74071 9.09852 5.68606C9.17507 5.63131 9.28446 5.65321 9.33922 5.72976L10.6079 7.62192C10.6625 7.70942 10.6406 7.80787 10.5532 7.86251ZM9.10936 5.70785C9.04377 5.75155 9.02186 5.83905 9.06567 5.90476L10.3343 7.79692C10.3781 7.86251 10.4656 7.87347 10.542 7.82966C10.6077 7.78597 10.6296 7.69846 10.5858 7.63287L9.31732 5.75155C9.27351 5.68606 9.17507 5.66405 9.10958 5.70785H9.10936Z" fill="white"/>
<path d="M10.7828 6.23295C10.7063 6.27664 10.6078 6.25485 10.5641 6.1783L10.061 5.29235C10.0173 5.2158 10.05 5.11735 10.1267 5.07355C10.2032 5.02985 10.3016 5.05164 10.3453 5.1283L10.8484 6.01414C10.8813 6.09069 10.8594 6.18914 10.7829 6.23295H10.7828Z" fill="#F3F3F3"/>
<path d="M10.7828 6.24391C10.6953 6.2876 10.5968 6.26581 10.5531 6.18915L10.0499 5.30331C10.0062 5.22664 10.0281 5.11735 10.1156 5.07355C10.2031 5.02985 10.3016 5.05164 10.3453 5.1283L10.8483 6.01415C10.8922 6.0907 10.8703 6.18915 10.7829 6.24391H10.7828ZM10.1266 5.0845C10.0609 5.12819 10.0281 5.21569 10.0718 5.2814L10.575 6.16736C10.6187 6.23284 10.7062 6.25486 10.7718 6.22201C10.8375 6.17831 10.8703 6.0907 10.8266 6.0251L10.3234 5.13914C10.2906 5.07366 10.1922 5.04069 10.1266 5.0845V5.0845Z" fill="white"/>
<path d="M12.2373 6.95474C12.1499 6.98748 12.0623 6.95474 12.0296 6.87819L11.1437 4.76713C11.1109 4.69058 11.1546 4.59213 11.2312 4.55927C11.3187 4.52653 11.4062 4.55927 11.4389 4.63582L12.3248 6.74677C12.3577 6.82332 12.314 6.92177 12.2373 6.95451V6.95474Z" fill="#F3F3F3"/>
<path d="M12.2377 6.9657C12.1503 6.99845 12.0518 6.9657 12.008 6.87809L11.122 4.76727C11.1062 4.72519 11.1076 4.67853 11.126 4.63752C11.1445 4.5965 11.1785 4.56448 11.2205 4.54846C11.308 4.51572 11.4064 4.54846 11.4503 4.63596L12.3361 6.7469C12.369 6.82345 12.3253 6.9219 12.2378 6.9657H12.2377ZM11.2424 4.57036C11.1658 4.60311 11.133 4.69072 11.1658 4.75632L12.0517 6.86714C12.0844 6.94369 12.1719 6.97643 12.2485 6.94369C12.325 6.91095 12.358 6.82333 12.325 6.75774L11.4392 4.6468C11.3954 4.57025 11.3188 4.5374 11.2423 4.57025L11.2424 4.57036Z" fill="white"/>
<path d="M12.7733 5.40174C12.6858 5.43448 12.5983 5.39068 12.5656 5.30329L12.2483 4.34069C12.2156 4.26414 12.2702 4.16569 12.3468 4.1439C12.4233 4.122 12.5218 4.15485 12.5545 4.24235L12.8717 5.20484C12.9045 5.28139 12.8608 5.36889 12.7733 5.40163V5.40174Z" fill="#F3F3F3"/>
<path d="M12.7844 5.41251C12.7423 5.42837 12.6957 5.42691 12.6547 5.40845C12.6137 5.39 12.5817 5.35606 12.5657 5.31406L12.2484 4.35156C12.2157 4.26406 12.2703 4.16572 12.3579 4.13287C12.4 4.11701 12.4466 4.11847 12.4876 4.13693C12.5286 4.15538 12.5606 4.18932 12.5766 4.23132L12.8938 5.19382C12.9157 5.28132 12.8719 5.37977 12.7844 5.41251V5.41251ZM12.3578 4.15477C12.2813 4.17656 12.2375 4.26406 12.2594 4.34061L12.5766 5.30322C12.5984 5.37977 12.6859 5.41251 12.7626 5.39061C12.8392 5.36882 12.8829 5.28132 12.861 5.20477L12.5438 4.24216C12.5382 4.22359 12.5288 4.20641 12.5161 4.19172C12.5035 4.17704 12.4879 4.16518 12.4703 4.15693C12.4528 4.14867 12.4337 4.1442 12.4143 4.14381C12.3949 4.14342 12.3757 4.14712 12.3578 4.15466V4.15477Z" fill="white"/>
<path d="M14.064 6.3969C13.9765 6.4188 13.889 6.36416 13.8781 6.27655L13.4187 4.03441C13.3968 3.94692 13.4625 3.87037 13.5499 3.84846C13.6375 3.82656 13.7249 3.88121 13.7358 3.96882L14.1953 6.21106C14.2061 6.2875 14.1515 6.375 14.064 6.3969V6.3969Z" fill="#F3F3F3"/>
<path d="M14.064 6.40785C13.9656 6.42976 13.8781 6.36405 13.8562 6.27655L13.3968 4.0344C13.3749 3.9469 13.4406 3.84845 13.5281 3.8375C13.6265 3.81559 13.714 3.8813 13.7358 3.9688L14.1953 6.21106C14.2171 6.29845 14.1625 6.38606 14.064 6.40785V6.40785ZM13.55 3.8594C13.4733 3.87035 13.4187 3.9469 13.4296 4.0344L13.889 6.27666C13.9 6.35309 13.9874 6.40785 14.064 6.38595C14.1406 6.375 14.1952 6.29845 14.1843 6.21095L13.7249 3.96869C13.7031 3.89226 13.6265 3.84845 13.5499 3.8594H13.55Z" fill="white"/>
<path d="M14.8954 4.97504C14.8079 4.98599 14.7313 4.93134 14.7094 4.84384L14.5782 3.83752C14.5673 3.75002 14.6329 3.67347 14.7205 3.66252C14.8079 3.65157 14.8844 3.70633 14.9063 3.79383L15.0375 4.80003C15.0484 4.88754 14.9828 4.96409 14.8954 4.97504V4.97504Z" fill="#F3F3F3"/>
<path d="M14.8954 4.98597C14.7969 4.99693 14.7094 4.93133 14.6985 4.84372L14.5673 3.83752C14.5563 3.75002 14.6219 3.66252 14.7204 3.65156C14.8188 3.64072 14.9063 3.70632 14.9173 3.79382L15.0485 4.80002C15.0594 4.88752 14.9938 4.97502 14.8954 4.98597V4.98597ZM14.7313 3.67347C14.6548 3.68442 14.5891 3.76097 14.6 3.83752L14.7313 4.84383C14.7423 4.92038 14.8188 4.97502 14.8954 4.96407C14.9719 4.95323 15.0376 4.87657 15.0267 4.80002L14.8954 3.79382C14.8844 3.71727 14.8079 3.66252 14.7313 3.67347V3.67347Z" fill="white"/>
<path d="M16.0766 28.9391C23.2287 28.9391 29.0266 23.1411 29.0266 15.9891C29.0266 8.83697 23.2287 3.03906 16.0766 3.03906C8.92456 3.03906 3.12665 8.83697 3.12665 15.9891C3.12665 23.1411 8.92456 28.9391 16.0766 28.9391Z" fill="url(#paint2_linear_449_13003)" fillOpacity="0.2"/>
<path d="M25.0453 7.77502L14.6 14.4688H14.589V14.4797L14.5781 14.4906L8.05951 25.2423L17.6407 17.5313L17.6517 17.5205V17.5095L25.0455 7.77514L25.0453 7.77502Z" fill="black" fillOpacity="0.05"/>
<path d="M24.8484 7.15149L14.5234 14.4905L17.5859 17.5311L24.8484 7.15149" fill="#CD151E"/>
<path d="M14.5344 14.4687L16.0767 15.989L24.8484 7.15149L14.5344 14.4687V14.4687Z" fill="#FA5153"/>
<path d="M14.5344 14.4687L17.5969 17.5092L7.27191 24.8484L14.5344 14.4686V14.4687Z" fill="#ACACAC"/>
<path d="M7.27191 24.8484L16.0766 15.989L14.5343 14.4686L7.27191 24.8484Z" fill="#EEEEEE"/>
<defs>
<linearGradient id="paint0_linear_449_13003" x1="16" y1="30" x2="16" y2="2" gradientUnits="userSpaceOnUse">
<stop offset="0.25" stopColor="#DBDBDA"/>
<stop offset="1" stopColor="white"/>
</linearGradient>
<radialGradient id="paint1_radial_449_13003" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(17.8195 13.1553) scale(15.8073 15.8073)">
<stop stopColor="#2ABCE1"/>
<stop offset="0.11363" stopColor="#2ABBE1"/>
<stop offset="1" stopColor="#3375F8"/>
</radialGradient>
<linearGradient id="paint2_linear_449_13003" x1="15.8306" y1="12.2861" x2="9.78632" y2="23.1302" gradientUnits="userSpaceOnUse">
<stop stop-opacity="0"/>
<stop offset="1"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_browser_browser_icons_color_safari;

View file

@ -0,0 +1,22 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_samsung_internet(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32">
<path d="M0 16C0 7.16344 7.16344 0 16 0C24.8366 0 32 7.16344 32 16C32 24.8366 24.8366 32 16 32C7.16344 32 0 24.8366 0 16Z" fill="#2D4F9E"/>
<path d="M9.69879 18.9394V20.2739C9.69879 24.1826 12.7424 25.3649 16.0341 25.3649C19.1702 25.3649 21.7643 24.2739 22.1869 21.3661C22.3486 20.4121 22.3387 19.4369 22.1576 18.4864C21.433 14.8189 14.8261 13.7267 14.3145 11.6969C14.2456 11.3985 14.2353 11.0896 14.2841 10.7873C14.3526 10.4252 14.5552 10.1024 14.8515 9.88318C15.1477 9.66399 15.5157 9.56464 15.882 9.60497C16.0965 9.58481 16.3128 9.61131 16.5161 9.68267C16.7193 9.75404 16.9048 9.86856 17.0596 10.0184C17.2144 10.1682 17.335 10.3498 17.413 10.5506C17.491 10.7514 17.5246 10.9667 17.5115 11.1818V12.2728H21.8544V11.0296C21.8544 7.21107 18.4456 6.63513 15.9721 6.63513C12.8653 6.63513 10.3625 7.66527 9.88024 10.5134C9.73965 11.2963 9.74959 12.0988 9.9095 12.878C10.695 16.425 16.8782 17.4551 17.783 19.7308C17.928 20.1514 17.9387 20.6067 17.8135 21.0337C17.7309 21.4063 17.5113 21.7344 17.1982 21.9527C16.8851 22.1711 16.5014 22.2638 16.1231 22.2125C15.9017 22.2392 15.6771 22.2183 15.4645 22.151C15.2518 22.0837 15.0561 21.9716 14.8904 21.8224C14.7247 21.6731 14.5928 21.49 14.5038 21.2855C14.4148 21.081 14.3706 20.8598 14.3742 20.6368V18.9394H9.69879Z" fill="white"/>
</svg>
);
}
export default Color_browser_browser_icons_color_samsung_internet;

View file

@ -0,0 +1,52 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_uc_browser(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M2 7.62758C2.81839 5.75172 5.68274 2 10.5931 2C16.8497 2 17.0873 6.71607 17.0873 8.38057C17.0873 12.0466 14.5113 13.811 11.9216 15.5847C9.30415 17.3775 6.67272 19.1798 6.67272 22.9647C6.67272 27.6412 10.5271 29.8869 12.4542 29.9398C3.06918 29.9398 2.1188 23.2421 2.1188 21.9343C2.1188 18.2182 3.86918 16.218 5.45027 14.4114C6.75251 12.9233 7.9399 11.5665 7.9399 9.49023C7.9399 5.36862 2.95038 6.12161 2 7.62758Z" fill="white"/>
<path d="M2 7.62758C2.81839 5.75172 5.68274 2 10.5931 2C16.8497 2 17.0873 6.71607 17.0873 8.38057C17.0873 12.0466 14.5113 13.811 11.9216 15.5847C9.30415 17.3775 6.67272 19.1798 6.67272 22.9647C6.67272 27.6412 10.5271 29.8869 12.4542 29.9398C3.06918 29.9398 2.1188 23.2421 2.1188 21.9343C2.1188 18.2182 3.86918 16.218 5.45027 14.4114C6.75251 12.9233 7.9399 11.5665 7.9399 9.49023C7.9399 5.36862 2.95038 6.12161 2 7.62758Z" fill="url(#paint0_linear_449_13009)"/>
<path d="M16.5726 13.9685C17.8133 13.5326 20.7226 12.304 22.4333 10.8773C22.2749 9.21282 22.9084 7.58795 23.5816 6.95386C24.4132 7.66721 24.8488 8.96182 24.9676 9.72802C26.4328 10.1243 29.4503 11.7967 29.7987 15.316C29.8938 15.9501 29.8383 16.6634 29.7987 16.9408C29.3763 17.139 28.1752 17.456 26.5912 17.2975C25.6039 17.1987 24.9217 16.7894 24.0538 16.2688C23.1812 15.7453 22.1209 15.1093 20.3741 14.563C18.4733 13.9685 16.8893 13.9685 16.5726 13.9685Z" fill="white"/>
<path d="M16.5726 13.9685C17.8133 13.5326 20.7226 12.304 22.4333 10.8773C22.2749 9.21282 22.9084 7.58795 23.5816 6.95386C24.4132 7.66721 24.8488 8.96182 24.9676 9.72802C26.4328 10.1243 29.4503 11.7967 29.7987 15.316C29.8938 15.9501 29.8383 16.6634 29.7987 16.9408C29.3763 17.139 28.1752 17.456 26.5912 17.2975C25.6039 17.1987 24.9217 16.7894 24.0538 16.2688C23.1812 15.7453 22.1209 15.1093 20.3741 14.563C18.4733 13.9685 16.8893 13.9685 16.5726 13.9685Z" fill="url(#paint1_linear_449_13009)"/>
<path d="M18.0377 15.2763C15.5034 14.8325 13.497 15.4613 12.8106 15.8312C18.4179 15.2288 21.6149 19.279 22.5125 21.3795C22.4201 21.6041 23.6608 21.6965 24.2152 21.6965C24.8067 21.6965 25.6799 21.3582 26.5102 21.0365C27.2364 20.7551 27.9298 20.4865 28.3732 20.468C29.1335 20.4363 29.7723 20.7454 29.9967 20.9039C30.0231 20.6001 29.9017 19.8418 29.2047 19.2394C28.7372 18.8353 28.1101 18.7965 27.3478 18.7492C26.6895 18.7084 25.9305 18.6614 25.0864 18.3675C24.4247 18.1372 23.7315 17.7394 22.9653 17.2998C21.6224 16.5291 20.0548 15.6296 18.0377 15.2763Z" fill="white"/>
<path d="M18.0377 15.2763C15.5034 14.8325 13.497 15.4613 12.8106 15.8312C18.4179 15.2288 21.6149 19.279 22.5125 21.3795C22.4201 21.6041 23.6608 21.6965 24.2152 21.6965C24.8067 21.6965 25.6799 21.3582 26.5102 21.0365C27.2364 20.7551 27.9298 20.4865 28.3732 20.468C29.1335 20.4363 29.7723 20.7454 29.9967 20.9039C30.0231 20.6001 29.9017 19.8418 29.2047 19.2394C28.7372 18.8353 28.1101 18.7965 27.3478 18.7492C26.6895 18.7084 25.9305 18.6614 25.0864 18.3675C24.4247 18.1372 23.7315 17.7394 22.9653 17.2998C21.6224 16.5291 20.0548 15.6296 18.0377 15.2763Z" fill="url(#paint2_linear_449_13009)"/>
<path fillRule="evenodd" clipRule="evenodd" d="M12.8898 28.5923C15.1862 28.5923 17.0477 26.7293 17.0477 24.4311C17.0477 22.1329 15.1862 20.2698 12.8898 20.2698C10.5935 20.2698 8.73189 22.1329 8.73189 24.4311C8.73189 26.7293 10.5935 28.5923 12.8898 28.5923ZM12.8898 26.2937C13.9177 26.2937 14.751 25.4598 14.751 24.4311C14.751 23.4023 13.9177 22.5684 12.8898 22.5684C11.8619 22.5684 11.0286 23.4023 11.0286 24.4311C11.0286 25.4598 11.8619 26.2937 12.8898 26.2937Z" fill="white"/>
<path fillRule="evenodd" clipRule="evenodd" d="M12.8898 28.5923C15.1862 28.5923 17.0477 26.7293 17.0477 24.4311C17.0477 22.1329 15.1862 20.2698 12.8898 20.2698C10.5935 20.2698 8.73189 22.1329 8.73189 24.4311C8.73189 26.7293 10.5935 28.5923 12.8898 28.5923ZM12.8898 26.2937C13.9177 26.2937 14.751 25.4598 14.751 24.4311C14.751 23.4023 13.9177 22.5684 12.8898 22.5684C11.8619 22.5684 11.0286 23.4023 11.0286 24.4311C11.0286 25.4598 11.8619 26.2937 12.8898 26.2937Z" fill="url(#paint3_linear_449_13009)"/>
<path d="M8.49429 20.7335C9.04987 19.3754 10.8201 17.0201 14.157 17.0201C18.5525 17.0201 21.4829 20.8247 21.4829 24.7481C21.4829 25.8181 20.8493 27.5223 20.8493 27.5223C22.6709 27.5223 24.73 28.6319 24.73 29.6623C22.7422 29.8964 18.9513 30.0536 14.3769 29.9829C16.8272 29.3272 18.6317 27.0901 18.6317 24.4311C18.6317 21.2574 16.061 18.6846 12.8898 18.6846C11.1258 18.6846 9.54758 19.4807 8.49429 20.7335Z" fill="white"/>
<path d="M8.49429 20.7335C9.04987 19.3754 10.8201 17.0201 14.157 17.0201C18.5525 17.0201 21.4829 20.8247 21.4829 24.7481C21.4829 25.8181 20.8493 27.5223 20.8493 27.5223C22.6709 27.5223 24.73 28.6319 24.73 29.6623C22.7422 29.8964 18.9513 30.0536 14.3769 29.9829C16.8272 29.3272 18.6317 27.0901 18.6317 24.4311C18.6317 21.2574 16.061 18.6846 12.8898 18.6846C11.1258 18.6846 9.54758 19.4807 8.49429 20.7335Z" fill="url(#paint4_linear_449_13009)"/>
<defs>
<linearGradient id="paint0_linear_449_13009" x1="27.0588" y1="2.58823" x2="2.76471" y2="29.7059" gradientUnits="userSpaceOnUse">
<stop stopColor="#FCA336"/>
<stop offset="1" stopColor="#FC7625"/>
</linearGradient>
<linearGradient id="paint1_linear_449_13009" x1="27.0588" y1="2.58823" x2="2.76471" y2="29.7059" gradientUnits="userSpaceOnUse">
<stop stopColor="#FCA336"/>
<stop offset="1" stopColor="#FC7625"/>
</linearGradient>
<linearGradient id="paint2_linear_449_13009" x1="27.0588" y1="2.58823" x2="2.76471" y2="29.7059" gradientUnits="userSpaceOnUse">
<stop stopColor="#FCA336"/>
<stop offset="1" stopColor="#FC7625"/>
</linearGradient>
<linearGradient id="paint3_linear_449_13009" x1="27.0588" y1="2.58823" x2="2.76471" y2="29.7059" gradientUnits="userSpaceOnUse">
<stop stopColor="#FCA336"/>
<stop offset="1" stopColor="#FC7625"/>
</linearGradient>
<linearGradient id="paint4_linear_449_13009" x1="27.0588" y1="2.58823" x2="2.76471" y2="29.7059" gradientUnits="userSpaceOnUse">
<stop stopColor="#FCA336"/>
<stop offset="1" stopColor="#FC7625"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_browser_browser_icons_color_uc_browser;

View file

@ -0,0 +1,23 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_unknown(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="1.33 1.33 29.33 29.33">
<path d="M16 29.3333C23.3638 29.3333 29.3334 23.3638 29.3334 16C29.3334 8.63616 23.3638 2.66663 16 2.66663C8.63622 2.66663 2.66669 8.63616 2.66669 16C2.66669 23.3638 8.63622 29.3333 16 29.3333Z" stroke="#122AF5" strokeWidth="2.66667" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M16 2.66663C12.5763 6.2615 10.6667 11.0356 10.6667 16C10.6667 20.9643 12.5763 25.7384 16 29.3333C19.4237 25.7384 21.3334 20.9643 21.3334 16C21.3334 11.0356 19.4237 6.2615 16 2.66663Z" stroke="#122AF5" strokeWidth="2.66667" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M2.66669 16H29.3334" stroke="#122AF5" strokeWidth="2.66667" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
);
}
export default Color_browser_browser_icons_color_unknown;

View file

@ -0,0 +1,43 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_whale(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="1.6 1.6 28.8 28.8">
<mask id="mask0_450_13811" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="1" y="1" width="30" height="30">
<path d="M1.6001 1.59961H30.4001V30.3996H1.6001V1.59961Z" fill="white"/>
</mask>
<g mask="url(#mask0_450_13811)">
<g filter="url(#filter0_i_450_13811)">
<path fillRule="evenodd" clipRule="evenodd" d="M27.665 7.70665C27.6418 7.68875 27.622 7.64941 27.622 7.64941C27.622 7.64941 26.6258 7.69949 26.284 7.72811C24.6276 7.87121 20.499 9.64931 17.7389 16.9584C17.7389 16.9584 15.1504 25.7058 9.44946 28.609C11.4011 29.609 13.6103 30.176 15.9536 30.176C23.8458 30.176 30.2428 23.7792 30.2428 15.8869C30.2428 12.8424 29.2874 10.025 27.665 7.70665Z" fill="#E1E1F5"/>
</g>
<path fillRule="evenodd" clipRule="evenodd" d="M3.63037 9.63678L5.59449 15.8887H12.3813L25.2536 8.20572L27.6238 7.65118L27.572 7.57426C24.9782 3.95728 20.7422 1.59961 15.9536 1.59961C10.7696 1.59961 6.22951 4.36154 3.72517 8.49372L3.63037 9.63678Z" fill="#102C88"/>
<path d="M4.37992 8.10342C4.45506 7.80646 4.59638 7.37536 4.63214 7.26982C4.6572 7.20006 4.72158 7.03906 4.72158 7.03906C4.38708 7.4487 3.9846 8.06764 3.9846 8.06764C2.4784 10.3376 1.6001 13.0602 1.6001 15.9885C1.6001 20.212 3.43184 24.0006 6.33868 26.6248L6.3351 26.6338C5.13302 27.8324 3.70018 28.7946 2.10812 29.4548C1.94176 29.5246 1.94713 29.7606 2.11886 29.8214C4.77346 30.6282 7.92716 30.4566 10.3904 29.2114C10.3904 29.2114 10.4065 29.2008 10.4136 29.1972C11.1327 28.8376 11.8751 28.3778 12.5942 27.7894C13.4546 27.1382 14.1558 26.421 14.7944 25.53C16.052 23.7752 17.068 21.3532 18.601 17.4732C20.9676 11.4825 22.8442 9.26794 27.5952 7.66158C27.5828 7.65978 23.2538 6.7457 18.4043 9.9763C13.8893 12.9833 12.4994 15.1907 9.43156 15.1907C7.02738 15.1907 3.185 12.8438 4.3513 8.21252C4.3513 8.21252 4.36562 8.15886 4.37992 8.10698V8.10342Z" fill="#00D1CE"/>
<path d="M15.9554 16.8819C15.4528 16.8819 15.0449 16.3989 15.0449 15.8033C15.0449 15.2076 15.4528 14.7246 15.9554 14.7246C16.4581 14.7246 16.8659 15.2076 16.8659 15.8033C16.8659 16.3989 16.4581 16.8819 15.9554 16.8819Z" fill="#004781"/>
</g>
<defs>
<filter id="filter0_i_450_13811" x="5.44946" y="3.64941" width="24.7933" height="26.5266" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dx="-4" dy="-4"/>
<feGaussianBlur stdDeviation="3"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.02 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_450_13811"/>
</filter>
</defs>
</svg>
);
}
export default Color_browser_browser_icons_color_whale;

View file

@ -0,0 +1,22 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_browser_icons_color_yandex_browser(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32">
<path d="M0 16C0 7.16344 7.16344 0 16 0C24.8366 0 32 7.16344 32 16C32 24.8366 24.8366 32 16 32C7.16344 32 0 24.8366 0 16Z" fill="#F4D4D4"/>
<path d="M8.32752 7.8406L7.57883 8.77647C7.25226 9.18468 7.29521 9.77553 7.67738 10.1322L14.5 16.5V26H17.5V16.5L24.3226 10.1322C24.7048 9.77553 24.7477 9.18467 24.4212 8.77647L23.6725 7.8406C23.3094 7.3867 22.6371 7.33697 22.2112 7.7325L16 13.5L9.78884 7.7325C9.3629 7.33697 8.69064 7.3867 8.32752 7.8406Z" fill="#FF0013"/>
</svg>
);
}
export default Color_browser_browser_icons_color_yandex_browser;

View file

@ -0,0 +1,34 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_chrome(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2.04 2 28 28">
<path d="M16.0007 2.00382C16.0007 2.00382 24.2529 1.63483 28.628 9.8999H15.2985C15.2985 9.8999 12.783 9.81911 10.6342 12.8599C10.0169 14.1363 9.35338 15.451 10.098 18.042C9.02535 16.2313 4.4035 8.21234 4.4035 8.21234C4.4035 8.21234 7.6635 2.33057 16.0006 2.00382H16.0007Z" fill="#EF3F36"/>
<path d="M28.1996 22.9856C28.1996 22.9856 24.3917 30.2935 15.0246 29.9321C16.182 27.9369 21.6911 18.4302 21.6911 18.4302C21.6911 18.4302 23.0222 16.3005 21.452 12.9253C20.6533 11.7528 19.8392 10.5265 17.2159 9.87287C19.3263 9.85377 28.6047 9.87287 28.6047 9.87287C28.6047 9.87287 32.0806 15.6278 28.1996 22.9856Z" fill="#FCD900"/>
<path d="M3.85937 23.0433C3.85937 23.0433 -0.588931 16.1044 4.41101 8.20068C5.56459 10.1959 11.0738 19.7027 11.0738 19.7027C11.0738 19.7027 12.2621 21.917 15.9773 22.2475C17.3933 22.1437 18.867 22.0553 20.7498 20.1217C19.7118 21.9516 15.0551 29.9476 15.0551 29.9476C15.0551 29.9476 8.3114 30.0706 3.85926 23.0433H3.85937Z" fill="#61BC5B"/>
<path d="M15.0208 30.0013L16.8957 22.2053C16.8957 22.2053 18.9559 22.0437 20.6844 20.1562C19.6118 22.0362 15.0208 30.0013 15.0208 30.0013V30.0013Z" fill="#5AB055"/>
<path d="M9.71985 16.089C9.71985 12.6523 12.517 9.86523 15.9659 9.86523C19.4149 9.86523 22.212 12.6523 22.212 16.089C22.212 19.5257 19.4149 22.3127 15.9659 22.3127C12.517 22.3089 9.71985 19.5257 9.71985 16.089V16.089Z" fill="white"/>
<path d="M10.7653 16.0891C10.7653 13.2291 13.0918 10.9071 15.966 10.9071C18.8363 10.9071 21.1666 13.2252 21.1666 16.0891C21.1666 18.9493 18.8403 21.2713 15.966 21.2713C13.0956 21.2713 10.7653 18.9493 10.7653 16.0891V16.0891Z" fill="url(#paint0_linear_449_13004)"/>
<path d="M28.6008 9.87685L20.881 12.1334C20.881 12.1334 19.7159 10.4303 17.2121 9.87685C19.3841 9.86528 28.6008 9.87685 28.6008 9.87685V9.87685Z" fill="#EACA05"/>
<path d="M9.94753 17.7576C8.86331 15.8854 4.4035 8.21228 4.4035 8.21228L10.1211 13.8479C10.1211 13.8479 9.53459 15.0512 9.75459 16.7734L9.94742 17.7576H9.94753Z" fill="#DF3A32"/>
<defs>
<linearGradient id="paint0_linear_449_13004" x1="15.9657" y1="10.9803" x2="15.9657" y2="20.9593" gradientUnits="userSpaceOnUse">
<stop stopColor="#86BBE5"/>
<stop offset="1" stopColor="#1072BA"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_browser_chrome;

View file

@ -0,0 +1,34 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_chrome_mobile(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2.04 2 28 28">
<path d="M16.0006 2.00382C16.0006 2.00382 24.2528 1.63483 28.6279 9.8999H15.2984C15.2984 9.8999 12.7829 9.81911 10.6341 12.8599C10.0168 14.1363 9.35332 15.451 10.0979 18.042C9.02529 16.2313 4.40344 8.21234 4.40344 8.21234C4.40344 8.21234 7.66344 2.33057 16.0005 2.00382H16.0006Z" fill="#EF3F36"/>
<path d="M28.1995 22.9856C28.1995 22.9856 24.3916 30.2935 15.0245 29.9321C16.1819 27.9369 21.6911 18.4302 21.6911 18.4302C21.6911 18.4302 23.0221 16.3005 21.4519 12.9253C20.6532 11.7528 19.8392 10.5265 17.2159 9.87287C19.3262 9.85377 28.6047 9.87287 28.6047 9.87287C28.6047 9.87287 32.0806 15.6278 28.1995 22.9856Z" fill="#FCD900"/>
<path d="M3.85931 23.0433C3.85931 23.0433 -0.588992 16.1044 4.41095 8.20068C5.56452 10.1959 11.0737 19.7027 11.0737 19.7027C11.0737 19.7027 12.262 21.917 15.9772 22.2475C17.3932 22.1437 18.8669 22.0553 20.7497 20.1217C19.7117 21.9516 15.0551 29.9476 15.0551 29.9476C15.0551 29.9476 8.31134 30.0706 3.8592 23.0433H3.85931Z" fill="#61BC5B"/>
<path d="M15.0208 30.0013L16.8957 22.2053C16.8957 22.2053 18.9559 22.0437 20.6844 20.1562C19.6118 22.0362 15.0208 30.0013 15.0208 30.0013V30.0013Z" fill="#5AB055"/>
<path d="M9.71973 16.089C9.71973 12.6523 12.5168 9.86523 15.9658 9.86523C19.4148 9.86523 22.2119 12.6523 22.2119 16.089C22.2119 19.5257 19.4148 22.3127 15.9658 22.3127C12.5168 22.3089 9.71973 19.5257 9.71973 16.089V16.089Z" fill="white"/>
<path d="M10.7653 16.0891C10.7653 13.2291 13.0917 10.9071 15.9659 10.9071C18.8363 10.9071 21.1665 13.2252 21.1665 16.0891C21.1665 18.9493 18.8402 21.2713 15.9659 21.2713C13.0955 21.2713 10.7653 18.9493 10.7653 16.0891V16.0891Z" fill="url(#paint0_linear_449_13214)"/>
<path d="M28.6008 9.87685L20.8809 12.1334C20.8809 12.1334 19.7158 10.4303 17.212 9.87685C19.3841 9.86528 28.6008 9.87685 28.6008 9.87685V9.87685Z" fill="#EACA05"/>
<path d="M9.94747 17.7576C8.86325 15.8854 4.40344 8.21228 4.40344 8.21228L10.121 13.8479C10.121 13.8479 9.53453 15.0512 9.75453 16.7734L9.94736 17.7576H9.94747Z" fill="#DF3A32"/>
<defs>
<linearGradient id="paint0_linear_449_13214" x1="15.9657" y1="10.9803" x2="15.9657" y2="20.9593" gradientUnits="userSpaceOnUse">
<stop stopColor="#86BBE5"/>
<stop offset="1" stopColor="#1072BA"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_browser_chrome_mobile;

View file

@ -0,0 +1,34 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_chrome_mobile_ios(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2.04 2 28 28">
<path d="M16.0007 2.00382C16.0007 2.00382 24.2529 1.63483 28.628 9.8999H15.2985C15.2985 9.8999 12.783 9.81911 10.6342 12.8599C10.0169 14.1363 9.35338 15.451 10.098 18.042C9.02535 16.2313 4.4035 8.21234 4.4035 8.21234C4.4035 8.21234 7.6635 2.33057 16.0006 2.00382H16.0007Z" fill="#EF3F36"/>
<path d="M28.1996 22.9856C28.1996 22.9856 24.3917 30.2935 15.0246 29.9321C16.182 27.9369 21.6911 18.4302 21.6911 18.4302C21.6911 18.4302 23.0222 16.3005 21.452 12.9253C20.6533 11.7528 19.8392 10.5265 17.2159 9.87287C19.3263 9.85377 28.6047 9.87287 28.6047 9.87287C28.6047 9.87287 32.0806 15.6278 28.1996 22.9856Z" fill="#FCD900"/>
<path d="M3.85937 23.0433C3.85937 23.0433 -0.588931 16.1044 4.41101 8.20068C5.56459 10.1959 11.0738 19.7027 11.0738 19.7027C11.0738 19.7027 12.2621 21.917 15.9773 22.2475C17.3933 22.1437 18.867 22.0553 20.7498 20.1217C19.7118 21.9516 15.0551 29.9476 15.0551 29.9476C15.0551 29.9476 8.3114 30.0706 3.85926 23.0433H3.85937Z" fill="#61BC5B"/>
<path d="M15.0208 30.0013L16.8957 22.2053C16.8957 22.2053 18.9559 22.0437 20.6844 20.1562C19.6118 22.0362 15.0208 30.0013 15.0208 30.0013V30.0013Z" fill="#5AB055"/>
<path d="M9.71985 16.089C9.71985 12.6523 12.517 9.86523 15.9659 9.86523C19.4149 9.86523 22.212 12.6523 22.212 16.089C22.212 19.5257 19.4149 22.3127 15.9659 22.3127C12.517 22.3089 9.71985 19.5257 9.71985 16.089V16.089Z" fill="white"/>
<path d="M10.7653 16.0891C10.7653 13.2291 13.0918 10.9071 15.966 10.9071C18.8363 10.9071 21.1666 13.2252 21.1666 16.0891C21.1666 18.9493 18.8403 21.2713 15.966 21.2713C13.0956 21.2713 10.7653 18.9493 10.7653 16.0891V16.0891Z" fill="url(#paint0_linear_449_13361)"/>
<path d="M28.6008 9.87685L20.881 12.1334C20.881 12.1334 19.7159 10.4303 17.2121 9.87685C19.3841 9.86528 28.6008 9.87685 28.6008 9.87685V9.87685Z" fill="#EACA05"/>
<path d="M9.94753 17.7576C8.86331 15.8854 4.4035 8.21228 4.4035 8.21228L10.1211 13.8479C10.1211 13.8479 9.53459 15.0512 9.75459 16.7734L9.94742 17.7576H9.94753Z" fill="#DF3A32"/>
<defs>
<linearGradient id="paint0_linear_449_13361" x1="15.9657" y1="10.9803" x2="15.9657" y2="20.9593" gradientUnits="userSpaceOnUse">
<stop stopColor="#86BBE5"/>
<stop offset="1" stopColor="#1072BA"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_browser_chrome_mobile_ios;

View file

@ -0,0 +1,59 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_duck_duck_go(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32">
<g clipPath="url(#clip0_450_13857)">
<path d="M31.0754 15.8762C31.0754 24.5004 24.2938 31.492 15.928 31.492C7.56283 31.492 0.78125 24.5007 0.78125 15.8762C0.78125 7.25176 7.56283 0.260742 15.928 0.260742C24.2938 0.26101 31.0754 7.25203 31.0754 15.8762Z" fill="white"/>
<path d="M29.9672 15.9833C29.9672 23.7041 23.7084 29.964 15.9871 29.964C8.26569 29.964 2.0069 23.7041 2.0069 15.9833C2.0069 8.26244 8.26569 2.00312 15.9871 2.00312C23.7084 2.00312 29.9672 8.26244 29.9672 15.9833ZM31.9655 15.9833C31.9655 24.8073 24.8111 31.9617 15.9871 31.9617C7.16306 31.9617 0.00866699 24.8073 0.00866699 15.9833C0.00866699 7.15927 7.16306 0.00488281 15.9871 0.00488281C24.8111 0.00488281 31.9655 7.159 31.9655 15.9833ZM30.6472 15.9833C30.6472 7.88722 24.0829 1.32365 15.9871 1.32365C7.89154 1.32365 1.3269 7.88749 1.3269 15.9833C1.3269 24.0791 7.8918 30.6429 15.9871 30.6429C24.0829 30.6429 30.6472 24.0791 30.6472 15.9833Z" fill="url(#paint0_linear_450_13857)"/>
<mask id="mask0_450_13857" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="1" y="1" width="30" height="29">
<path d="M30.0221 15.9455C30.0221 23.6843 23.7266 29.9795 15.987 29.9795C8.24877 29.9795 1.9541 23.6835 1.9541 15.9455C1.9541 8.20781 8.24958 1.9126 15.987 1.9126C23.7266 1.91233 30.0221 8.20781 30.0221 15.9455Z" fill="white"/>
</mask>
<g mask="url(#mask0_450_13857)">
<path d="M21.6017 36.3896C21.1194 34.1707 18.3177 29.1479 17.2552 27.0241C16.1933 24.9002 15.129 21.9059 15.6137 19.9744C15.7013 19.623 14.6935 16.9461 14.9833 16.7568C17.2373 15.2864 17.8308 16.9169 18.7331 16.2578C19.1986 15.9169 19.8285 16.5382 19.99 15.9742C20.5679 13.9473 19.1849 10.4141 17.6417 8.8696C17.1368 8.36636 16.3634 8.05032 15.4908 7.8824C15.1549 7.42361 14.6137 6.98224 13.8469 6.57568C12.9931 6.12119 11.1362 5.52099 10.1731 5.3611C9.50573 5.25129 9.35494 5.43797 9.06998 5.48457C9.33566 5.50813 10.5963 6.13109 10.8416 6.16725C10.5963 6.33303 9.8756 6.15948 9.41574 6.36598C9.18407 6.4707 9.01079 6.86868 9.0124 7.05696C10.3274 6.92412 12.38 7.05268 13.5922 7.59261C12.6275 7.70242 11.1603 7.82481 10.5294 8.15638C8.69529 9.12296 7.88512 11.3796 8.36801 14.0841C8.85117 16.7825 10.9761 26.6314 11.6521 29.9203C12.3283 33.2046 10.2037 35.3274 8.85197 35.9073L10.3004 36.0045L9.81801 37.0669C11.5546 37.2595 13.4859 36.681 13.4859 36.681C13.1007 37.7429 10.4927 38.1305 10.4927 38.1305C10.4927 38.1305 11.749 38.5156 13.7757 37.7429C15.8044 36.9708 17.0594 36.4874 17.0594 36.4874L18.0247 38.9977L19.8603 37.1642L20.6325 39.0954C20.6357 39.0952 22.0846 38.6112 21.6017 36.3896Z" fill="#D5D7D8"/>
<path d="M22.1851 35.9391C21.7043 33.7191 18.9026 28.6963 17.8391 26.5717C16.7761 24.4465 15.7142 21.453 16.1976 19.5222C16.287 19.1717 16.2886 17.7364 16.58 17.546C18.8324 16.0745 18.6723 17.4967 19.5759 16.8376C20.0419 16.4974 20.415 16.0863 20.577 15.522C21.1566 13.4941 19.772 9.96199 18.2274 8.41692C17.7242 7.91367 16.9504 7.59684 16.0781 7.42972C15.7428 6.96986 15.2021 6.52956 14.4361 6.12247C12.9923 5.35569 11.2024 5.04956 9.54403 5.35033C9.80917 5.37443 10.4161 5.92267 10.6603 5.95909C10.2905 6.20978 9.307 6.17764 9.31343 6.73471C10.6301 6.60294 12.0728 6.81104 13.2863 7.3499C12.3216 7.45971 11.4236 7.69781 10.7926 8.03098C8.95696 8.99568 8.47433 10.9267 8.95695 13.6323C9.44091 16.3362 11.5661 26.1846 12.2394 29.4679C12.9162 32.7509 10.7926 34.8747 9.44091 35.4543L10.8893 35.5505L10.407 36.6145C12.1435 36.8068 14.0748 36.2283 14.0748 36.2283C13.6897 37.2921 11.0816 37.6759 11.0816 37.6759C11.0816 37.6759 12.3366 38.0624 14.3646 37.2892C16.3942 36.517 17.6503 36.0344 17.6503 36.0344L18.615 38.5447L20.4506 36.7101L21.2244 38.6414C21.222 38.643 22.6696 38.1596 22.1851 35.9391Z" fill="white"/>
<path d="M11.084 13.7673C11.0839 13.6341 11.1102 13.5021 11.1612 13.379C11.2122 13.2559 11.2869 13.144 11.3812 13.0499C11.4754 12.9557 11.5873 12.881 11.7104 12.83C11.8336 12.7791 11.9655 12.7529 12.0988 12.7531C12.2319 12.7531 12.3638 12.7793 12.4868 12.8303C12.6098 12.8813 12.7216 12.956 12.8157 13.0502C12.9098 13.1444 12.9845 13.2562 13.0354 13.3792C13.0863 13.5023 13.1125 13.6341 13.1125 13.7673C13.1126 13.9005 13.0864 14.0323 13.0355 14.1554C12.9846 14.2784 12.9099 14.3903 12.8158 14.4845C12.7216 14.5786 12.6099 14.6534 12.4868 14.7043C12.3638 14.7553 12.2319 14.7816 12.0988 14.7816C11.9655 14.7817 11.8335 14.7556 11.7103 14.7047C11.5872 14.6538 11.4753 14.5791 11.381 14.4849C11.2867 14.3907 11.212 14.2788 11.161 14.1557C11.1101 14.0326 11.0839 13.9006 11.084 13.7673Z" fill="#2D4F8E"/>
<path d="M12.2855 13.4293C12.2855 13.3595 12.3132 13.2926 12.3626 13.2433C12.4119 13.194 12.4788 13.1663 12.5485 13.1663C12.6183 13.1663 12.6852 13.194 12.7345 13.2433C12.7838 13.2926 12.8115 13.3595 12.8115 13.4293C12.8115 13.4991 12.7837 13.5661 12.7343 13.6155C12.6849 13.6649 12.6179 13.6927 12.548 13.6928C12.4783 13.6925 12.4115 13.6646 12.3623 13.6152C12.3131 13.5658 12.2855 13.499 12.2855 13.4293Z" fill="white"/>
<path d="M18.0062 13.1657C18.0066 12.9349 18.0985 12.7136 18.2617 12.5504C18.425 12.3873 18.6464 12.2955 18.8772 12.2953C19.0496 12.2952 19.2182 12.3462 19.3616 12.442C19.505 12.5377 19.6168 12.6739 19.6828 12.8332C19.7488 12.9925 19.7661 13.1678 19.7325 13.3369C19.6988 13.506 19.6157 13.6613 19.4938 13.7832C19.3718 13.9051 19.2164 13.9881 19.0473 14.0216C18.8781 14.0552 18.7029 14.0378 18.5436 13.9717C18.3843 13.9056 18.2483 13.7937 18.1526 13.6502C18.057 13.5068 18.006 13.3382 18.0062 13.1657Z" fill="#2D4F8E"/>
<path d="M19.0392 12.8759C19.0392 12.7519 19.1407 12.6504 19.2636 12.6504C19.3914 12.6504 19.4897 12.7519 19.4897 12.8759C19.49 12.9056 19.4843 12.9351 19.473 12.9627C19.4618 12.9902 19.4451 13.0152 19.4241 13.0362C19.403 13.0572 19.378 13.0738 19.3504 13.085C19.3229 13.0962 19.2934 13.1018 19.2636 13.1014C19.2341 13.1013 19.2048 13.0954 19.1776 13.0841C19.1503 13.0727 19.1255 13.0561 19.1047 13.0351C19.0839 13.0142 19.0673 12.9894 19.0561 12.962C19.0449 12.9347 19.0391 12.9054 19.0392 12.8759Z" fill="white"/>
<path d="M12.3869 10.8284C12.3869 10.8284 11.6226 10.4826 10.8793 10.9497C10.1375 11.4163 10.1648 11.8933 10.1648 11.8933C10.1648 11.8933 9.77028 11.014 10.8218 10.5833C11.8743 10.1521 12.3869 10.8284 12.3869 10.8284Z" fill="url(#paint1_linear_450_13857)"/>
<path d="M19.4019 10.7588C19.4019 10.7588 18.8526 10.4449 18.4262 10.4503C17.551 10.4618 17.3115 10.8488 17.3115 10.8488C17.3115 10.8488 17.4586 9.92614 18.5794 10.1112C19.1863 10.2122 19.4019 10.7588 19.4019 10.7588Z" fill="url(#paint2_linear_450_13857)"/>
</g>
<path d="M15.2028 17.6787C15.3043 17.0651 16.8898 15.9044 18.0122 15.8342C19.1374 15.7635 19.4879 15.7793 20.4253 15.5549C21.3649 15.3304 23.7825 14.7278 24.4515 14.4188C25.1222 14.1092 27.9606 14.572 25.9597 15.6877C25.0935 16.1722 22.7605 17.0619 21.0928 17.5593C19.4272 18.0577 18.4172 17.0834 17.8631 17.9024C17.4222 18.5537 17.7736 19.4456 19.7641 19.6306C22.4522 19.8797 25.0295 18.4201 25.3131 19.1954C25.5981 19.9708 23.0031 20.9384 21.4224 20.9692C19.8447 20.9989 16.6619 19.9258 16.1857 19.5934C15.7076 19.2616 15.0705 18.4873 15.2028 17.6787Z" fill="#FDD20A"/>
<path d="M16.4196 26.0608C16.4196 26.0608 12.6433 24.0465 12.5817 24.8636C12.5179 25.6821 12.5817 29.0173 13.0217 29.2696C13.4625 29.5208 16.6092 27.6337 16.6092 27.6337L16.4196 26.0608ZM17.8664 25.9338C17.8664 25.9338 20.4469 23.9827 21.0144 24.1086C21.5797 24.2369 21.7059 28.2628 21.2021 28.4541C20.6983 28.6402 17.745 27.4321 17.745 27.4321L17.8664 25.9338Z" fill="#65BC46"/>
<path d="M15.5052 26.274C15.5052 27.5947 15.3156 28.1619 15.8828 28.2873C16.4482 28.4139 17.5179 28.2873 17.8963 28.036C18.2739 27.7846 17.9584 26.086 17.8336 25.7689C17.7064 25.4553 15.5052 25.7079 15.5052 26.274Z" fill="#43A244"/>
<path d="M15.7452 25.9804C15.7452 27.3016 15.5559 27.8686 16.1228 27.9942C16.6877 28.1214 17.7576 27.9942 18.1363 27.743C18.514 27.491 18.1985 25.7935 18.0726 25.4756C17.9465 25.1617 15.7452 25.4145 15.7452 25.9804Z" fill="#65BC46"/>
<path d="M19.3377 29.4683C18.2071 29.7557 17.045 29.9008 15.8785 29.9001C14.6157 29.9001 13.3926 29.7295 12.2278 29.415L12.2412 29.5257C13.4273 29.845 14.6504 30.0067 15.8788 30.0067C17.0869 30.0067 18.2597 29.8532 19.3787 29.5653L19.3377 29.4683Z" fill="white"/>
</g>
<defs>
<linearGradient id="paint0_linear_450_13857" x1="15.9871" y1="31.9617" x2="15.9871" y2="0.00514948" gradientUnits="userSpaceOnUse">
<stop stopColor="#D14427"/>
<stop offset="1" stopColor="#E55225"/>
</linearGradient>
<linearGradient id="paint1_linear_450_13857" x1="10.0922" y1="11.1667" x2="12.3869" y2="11.1667" gradientUnits="userSpaceOnUse">
<stop offset="0.006" stopColor="#6176B9"/>
<stop offset="0.691" stopColor="#394A9F"/>
</linearGradient>
<linearGradient id="paint2_linear_450_13857" x1="17.3115" y1="10.4677" x2="19.4016" y2="10.4677" gradientUnits="userSpaceOnUse">
<stop offset="0.006" stopColor="#6176B9"/>
<stop offset="0.691" stopColor="#394A9F"/>
</linearGradient>
<clipPath id="clip0_450_13857">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>
);
}
export default Color_browser_duck_duck_go;

View file

@ -0,0 +1,59 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_duckduckgo_mobile(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32">
<g clipPath="url(#clip0_450_13825)">
<path d="M31.0754 15.8762C31.0754 24.5004 24.2938 31.492 15.928 31.492C7.56283 31.492 0.78125 24.5007 0.78125 15.8762C0.78125 7.25176 7.56283 0.260742 15.928 0.260742C24.2938 0.26101 31.0754 7.25203 31.0754 15.8762Z" fill="white"/>
<path d="M29.9672 15.9833C29.9672 23.7041 23.7084 29.964 15.9871 29.964C8.26569 29.964 2.0069 23.7041 2.0069 15.9833C2.0069 8.26244 8.26569 2.00312 15.9871 2.00312C23.7084 2.00312 29.9672 8.26244 29.9672 15.9833ZM31.9655 15.9833C31.9655 24.8073 24.8111 31.9617 15.9871 31.9617C7.16306 31.9617 0.00866699 24.8073 0.00866699 15.9833C0.00866699 7.15927 7.16306 0.00488281 15.9871 0.00488281C24.8111 0.00488281 31.9655 7.159 31.9655 15.9833ZM30.6472 15.9833C30.6472 7.88722 24.0829 1.32365 15.9871 1.32365C7.89154 1.32365 1.3269 7.88749 1.3269 15.9833C1.3269 24.0791 7.8918 30.6429 15.9871 30.6429C24.0829 30.6429 30.6472 24.0791 30.6472 15.9833Z" fill="url(#paint0_linear_450_13825)"/>
<mask id="mask0_450_13825" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="1" y="1" width="30" height="29">
<path d="M30.0221 15.9455C30.0221 23.6843 23.7266 29.9795 15.987 29.9795C8.24877 29.9795 1.9541 23.6835 1.9541 15.9455C1.9541 8.20781 8.24958 1.9126 15.987 1.9126C23.7266 1.91233 30.0221 8.20781 30.0221 15.9455Z" fill="white"/>
</mask>
<g mask="url(#mask0_450_13825)">
<path d="M21.6017 36.3896C21.1194 34.1707 18.3177 29.1479 17.2552 27.0241C16.1933 24.9002 15.129 21.9059 15.6137 19.9744C15.7013 19.623 14.6935 16.9461 14.9833 16.7568C17.2373 15.2864 17.8308 16.9169 18.7331 16.2578C19.1986 15.9169 19.8285 16.5382 19.99 15.9742C20.5679 13.9473 19.1849 10.4141 17.6417 8.8696C17.1368 8.36636 16.3634 8.05032 15.4908 7.8824C15.1549 7.42361 14.6137 6.98224 13.8469 6.57568C12.9931 6.12119 11.1362 5.52099 10.1731 5.3611C9.50573 5.25129 9.35494 5.43797 9.06998 5.48457C9.33566 5.50813 10.5963 6.13109 10.8416 6.16725C10.5963 6.33303 9.8756 6.15948 9.41574 6.36598C9.18407 6.4707 9.01079 6.86868 9.0124 7.05696C10.3274 6.92412 12.38 7.05268 13.5922 7.59261C12.6275 7.70242 11.1603 7.82481 10.5294 8.15638C8.69529 9.12296 7.88512 11.3796 8.36801 14.0841C8.85117 16.7825 10.9761 26.6314 11.6521 29.9203C12.3283 33.2046 10.2037 35.3274 8.85197 35.9073L10.3004 36.0045L9.81801 37.0669C11.5546 37.2595 13.4859 36.681 13.4859 36.681C13.1007 37.7429 10.4927 38.1305 10.4927 38.1305C10.4927 38.1305 11.749 38.5156 13.7757 37.7429C15.8044 36.9708 17.0594 36.4874 17.0594 36.4874L18.0247 38.9977L19.8603 37.1642L20.6325 39.0954C20.6357 39.0952 22.0846 38.6112 21.6017 36.3896Z" fill="#D5D7D8"/>
<path d="M22.1851 35.9391C21.7043 33.7191 18.9026 28.6963 17.8391 26.5717C16.7761 24.4465 15.7142 21.453 16.1976 19.5222C16.287 19.1717 16.2886 17.7364 16.58 17.546C18.8324 16.0745 18.6723 17.4967 19.5759 16.8376C20.0419 16.4974 20.415 16.0863 20.577 15.522C21.1566 13.4941 19.772 9.96199 18.2274 8.41692C17.7242 7.91367 16.9504 7.59684 16.0781 7.42972C15.7428 6.96986 15.2021 6.52956 14.4361 6.12247C12.9923 5.35569 11.2024 5.04956 9.54403 5.35033C9.80917 5.37443 10.4161 5.92267 10.6603 5.95909C10.2905 6.20978 9.307 6.17764 9.31343 6.73471C10.6301 6.60294 12.0728 6.81104 13.2863 7.3499C12.3216 7.45971 11.4236 7.69781 10.7926 8.03098C8.95696 8.99568 8.47433 10.9267 8.95695 13.6323C9.44091 16.3362 11.5661 26.1846 12.2394 29.4679C12.9162 32.7509 10.7926 34.8747 9.44091 35.4543L10.8893 35.5505L10.407 36.6145C12.1435 36.8068 14.0748 36.2283 14.0748 36.2283C13.6897 37.2921 11.0816 37.6759 11.0816 37.6759C11.0816 37.6759 12.3366 38.0624 14.3646 37.2892C16.3942 36.517 17.6503 36.0344 17.6503 36.0344L18.615 38.5447L20.4506 36.7101L21.2244 38.6414C21.222 38.643 22.6696 38.1596 22.1851 35.9391Z" fill="white"/>
<path d="M11.084 13.7673C11.0839 13.6341 11.1102 13.5021 11.1612 13.379C11.2122 13.2559 11.2869 13.144 11.3812 13.0499C11.4754 12.9557 11.5873 12.881 11.7104 12.83C11.8336 12.7791 11.9655 12.7529 12.0988 12.7531C12.2319 12.7531 12.3638 12.7793 12.4868 12.8303C12.6098 12.8813 12.7216 12.956 12.8157 13.0502C12.9098 13.1444 12.9845 13.2562 13.0354 13.3792C13.0863 13.5023 13.1125 13.6341 13.1125 13.7673C13.1126 13.9005 13.0864 14.0323 13.0355 14.1554C12.9846 14.2784 12.9099 14.3903 12.8158 14.4845C12.7216 14.5786 12.6099 14.6534 12.4868 14.7043C12.3638 14.7553 12.2319 14.7816 12.0988 14.7816C11.9655 14.7817 11.8335 14.7556 11.7103 14.7047C11.5872 14.6538 11.4753 14.5791 11.381 14.4849C11.2867 14.3907 11.212 14.2788 11.161 14.1557C11.1101 14.0326 11.0839 13.9006 11.084 13.7673Z" fill="#2D4F8E"/>
<path d="M12.2855 13.4293C12.2855 13.3595 12.3132 13.2926 12.3626 13.2433C12.4119 13.194 12.4788 13.1663 12.5485 13.1663C12.6183 13.1663 12.6852 13.194 12.7345 13.2433C12.7838 13.2926 12.8115 13.3595 12.8115 13.4293C12.8115 13.4991 12.7837 13.5661 12.7343 13.6155C12.6849 13.6649 12.6179 13.6927 12.548 13.6928C12.4783 13.6925 12.4115 13.6646 12.3623 13.6152C12.3131 13.5658 12.2855 13.499 12.2855 13.4293Z" fill="white"/>
<path d="M18.0062 13.1657C18.0066 12.9349 18.0985 12.7136 18.2617 12.5504C18.425 12.3873 18.6464 12.2955 18.8772 12.2953C19.0496 12.2952 19.2182 12.3462 19.3616 12.442C19.505 12.5377 19.6168 12.6739 19.6828 12.8332C19.7488 12.9925 19.7661 13.1678 19.7325 13.3369C19.6988 13.506 19.6157 13.6613 19.4938 13.7832C19.3718 13.9051 19.2164 13.9881 19.0473 14.0216C18.8781 14.0552 18.7029 14.0378 18.5436 13.9717C18.3843 13.9056 18.2483 13.7937 18.1526 13.6502C18.057 13.5068 18.006 13.3382 18.0062 13.1657Z" fill="#2D4F8E"/>
<path d="M19.0392 12.8759C19.0392 12.7519 19.1407 12.6504 19.2636 12.6504C19.3914 12.6504 19.4897 12.7519 19.4897 12.8759C19.49 12.9056 19.4843 12.9351 19.473 12.9627C19.4618 12.9902 19.4451 13.0152 19.4241 13.0362C19.403 13.0572 19.378 13.0738 19.3504 13.085C19.3229 13.0962 19.2934 13.1018 19.2636 13.1014C19.2341 13.1013 19.2048 13.0954 19.1776 13.0841C19.1503 13.0727 19.1255 13.0561 19.1047 13.0351C19.0839 13.0142 19.0673 12.9894 19.0561 12.962C19.0449 12.9347 19.0391 12.9054 19.0392 12.8759Z" fill="white"/>
<path d="M12.3869 10.8284C12.3869 10.8284 11.6226 10.4826 10.8793 10.9497C10.1375 11.4163 10.1648 11.8933 10.1648 11.8933C10.1648 11.8933 9.77028 11.014 10.8218 10.5833C11.8743 10.1521 12.3869 10.8284 12.3869 10.8284Z" fill="url(#paint1_linear_450_13825)"/>
<path d="M19.4019 10.7588C19.4019 10.7588 18.8526 10.4449 18.4262 10.4503C17.551 10.4618 17.3115 10.8488 17.3115 10.8488C17.3115 10.8488 17.4586 9.92614 18.5794 10.1112C19.1863 10.2122 19.4019 10.7588 19.4019 10.7588Z" fill="url(#paint2_linear_450_13825)"/>
</g>
<path d="M15.2028 17.6787C15.3043 17.0651 16.8898 15.9044 18.0122 15.8342C19.1374 15.7635 19.4879 15.7793 20.4253 15.5549C21.3649 15.3304 23.7825 14.7278 24.4515 14.4188C25.1222 14.1092 27.9606 14.572 25.9597 15.6877C25.0935 16.1722 22.7605 17.0619 21.0928 17.5593C19.4272 18.0577 18.4172 17.0834 17.8631 17.9024C17.4222 18.5537 17.7736 19.4456 19.7641 19.6306C22.4522 19.8797 25.0295 18.4201 25.3131 19.1954C25.5981 19.9708 23.0031 20.9384 21.4224 20.9692C19.8447 20.9989 16.6619 19.9258 16.1857 19.5934C15.7076 19.2616 15.0705 18.4873 15.2028 17.6787Z" fill="#FDD20A"/>
<path d="M16.4196 26.0608C16.4196 26.0608 12.6433 24.0465 12.5817 24.8636C12.5179 25.6821 12.5817 29.0173 13.0217 29.2696C13.4625 29.5208 16.6092 27.6337 16.6092 27.6337L16.4196 26.0608ZM17.8664 25.9338C17.8664 25.9338 20.4469 23.9827 21.0144 24.1086C21.5797 24.2369 21.7059 28.2628 21.2021 28.4541C20.6983 28.6402 17.745 27.4321 17.745 27.4321L17.8664 25.9338Z" fill="#65BC46"/>
<path d="M15.5052 26.274C15.5052 27.5947 15.3156 28.1619 15.8828 28.2873C16.4482 28.4139 17.5179 28.2873 17.8963 28.036C18.2739 27.7846 17.9584 26.086 17.8336 25.7689C17.7064 25.4553 15.5052 25.7079 15.5052 26.274Z" fill="#43A244"/>
<path d="M15.7452 25.9804C15.7452 27.3016 15.5559 27.8686 16.1228 27.9942C16.6877 28.1214 17.7576 27.9942 18.1363 27.743C18.514 27.491 18.1985 25.7935 18.0726 25.4756C17.9465 25.1617 15.7452 25.4145 15.7452 25.9804Z" fill="#65BC46"/>
<path d="M19.3377 29.4683C18.2071 29.7557 17.045 29.9008 15.8785 29.9001C14.6157 29.9001 13.3926 29.7295 12.2278 29.415L12.2412 29.5257C13.4273 29.845 14.6504 30.0067 15.8788 30.0067C17.0869 30.0067 18.2597 29.8532 19.3787 29.5653L19.3377 29.4683Z" fill="white"/>
</g>
<defs>
<linearGradient id="paint0_linear_450_13825" x1="15.9871" y1="31.9617" x2="15.9871" y2="0.00514948" gradientUnits="userSpaceOnUse">
<stop stopColor="#D14427"/>
<stop offset="1" stopColor="#E55225"/>
</linearGradient>
<linearGradient id="paint1_linear_450_13825" x1="10.0922" y1="11.1667" x2="12.3869" y2="11.1667" gradientUnits="userSpaceOnUse">
<stop offset="0.006" stopColor="#6176B9"/>
<stop offset="0.691" stopColor="#394A9F"/>
</linearGradient>
<linearGradient id="paint2_linear_450_13825" x1="17.3115" y1="10.4677" x2="19.4016" y2="10.4677" gradientUnits="userSpaceOnUse">
<stop offset="0.006" stopColor="#6176B9"/>
<stop offset="0.691" stopColor="#394A9F"/>
</linearGradient>
<clipPath id="clip0_450_13825">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>
);
}
export default Color_browser_duckduckgo_mobile;

View file

@ -0,0 +1,47 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_edge(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M19.5918 15.8727C19.5918 13.2 16.8141 8.58636 10.5564 8.58636C4.29874 8.58636 2 13.8045 2 16.0318C2 8.07727 8.48118 2 16.1756 2C23.87 2 30 7.75909 30 13.6136C30 18.8318 26.073 20.6455 22.8803 20.6455C20.7731 20.6455 18.3786 19.9455 18.3786 18.8318C18.3786 17.9727 19.5918 17.9727 19.5918 15.8727Z" fill="url(#paint0_linear_449_13031)"/>
<path d="M10.5564 8.5863C16.8141 8.5863 19.5918 13.1999 19.5918 15.8727C19.5918 15.8934 19.5917 15.914 19.5914 15.9344C19.5599 14.1545 18.3581 12.4681 15.984 12.4681C12.9829 12.4681 8.92817 16.5408 9.47092 21.5999C9.90538 25.6496 13.3341 31.0818 20.7731 29.1727C20.7731 29.1727 19.3683 29.9999 15.4413 29.9999C8.48119 29.9999 2 23.6363 2 16.3499C2 16.1569 2.00294 15.9676 2.00888 15.7819C2.16935 13.4382 4.52236 8.5863 10.5564 8.5863Z" fill="url(#paint1_linear_449_13031)"/>
<path d="M10.5564 8.5863C16.8141 8.5863 19.5918 13.1999 19.5918 15.8727C19.5918 15.8934 19.5917 15.914 19.5914 15.9344C19.5599 14.1545 18.3581 12.4681 15.984 12.4681C12.9829 12.4681 8.92817 16.5408 9.47092 21.5999C9.90538 25.6496 13.3341 31.0818 20.7731 29.1727C20.7731 29.1727 19.3683 29.9999 15.4413 29.9999C8.48119 29.9999 2 23.6363 2 16.3499C2 16.1569 2.00294 15.9676 2.00888 15.7819C2.16935 13.4382 4.52236 8.5863 10.5564 8.5863Z" fill="url(#paint2_radial_449_13031)"/>
<path d="M19.9065 29.4996C23.8921 28.4124 26.7394 25.0205 27.2543 24.3363C27.829 23.5727 27.9887 23.0954 27.829 22.9363C27.6694 22.7772 27.4459 22.809 26.8712 23.0954C26.2965 23.3818 22.9123 24.7818 19.0491 23.6045C15.1859 22.4272 12.536 19.3727 12.536 16C12.536 13.3909 14.7709 12.4681 15.9841 12.4681C12.983 12.4681 8.92822 16.5409 9.47098 21.6C9.90544 25.6496 13.3342 31.0818 20.7731 29.1727C20.7731 29.1727 20.5138 29.3254 19.9065 29.4996Z" fill="#0E458A"/>
<path d="M19.9065 29.4996C23.8921 28.4124 26.7394 25.0205 27.2543 24.3363C27.829 23.5727 27.9887 23.0954 27.829 22.9363C27.6694 22.7772 27.4459 22.809 26.8712 23.0954C26.2965 23.3818 22.9123 24.7818 19.0491 23.6045C15.1859 22.4272 12.536 19.3727 12.536 16C12.536 13.3909 14.7709 12.4681 15.9841 12.4681C12.983 12.4681 8.92822 16.5409 9.47098 21.6C9.90544 25.6496 13.3342 31.0818 20.7731 29.1727C20.7731 29.1727 20.5138 29.3254 19.9065 29.4996Z" fill="url(#paint3_radial_449_13031)"/>
<defs>
<linearGradient id="paint0_linear_449_13031" x1="28.3717" y1="18.5455" x2="0.988192" y2="12.0765" gradientUnits="userSpaceOnUse">
<stop stopColor="#3BCC50"/>
<stop offset="0.489583" stopColor="#2ABAD6"/>
<stop offset="1" stopColor="#7DCFE7"/>
</linearGradient>
<linearGradient id="paint1_linear_449_13031" x1="11.3865" y1="8.5863" x2="11.3865" y2="29.9999" gradientUnits="userSpaceOnUse">
<stop stopColor="#035989"/>
<stop offset="0.265625" stopColor="#1175B6"/>
<stop offset="1" stopColor="#0470CF"/>
</linearGradient>
<radialGradient id="paint2_radial_449_13031" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(10.9396 18.9909) rotate(59.2143) scale(9.48152 9.49698)">
<stop stopColor="#1284D8"/>
<stop offset="0.813899" stopColor="#1170B2" stop-opacity="0.767762"/>
<stop offset="1" stopColor="#0E649B" stop-opacity="0.65"/>
</radialGradient>
<radialGradient id="paint3_radial_449_13031" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.666 21.6) rotate(77.9982) scale(7.6769 8.28824)">
<stop stopColor="#104890"/>
<stop offset="0.69943" stopColor="#12529E" stop-opacity="0.70624"/>
<stop offset="1" stopColor="#0E4584" stop-opacity="0.58"/>
</radialGradient>
</defs>
</svg>
);
}
export default Color_browser_edge;

View file

@ -0,0 +1,47 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_edge_mobile(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M19.5918 15.8727C19.5918 13.2 16.8141 8.58636 10.5564 8.58636C4.29874 8.58636 2 13.8045 2 16.0318C2 8.07727 8.48118 2 16.1756 2C23.87 2 30 7.75909 30 13.6136C30 18.8318 26.073 20.6455 22.8803 20.6455C20.7731 20.6455 18.3786 19.9455 18.3786 18.8318C18.3786 17.9727 19.5918 17.9727 19.5918 15.8727Z" fill="url(#paint0_linear_449_13603)"/>
<path d="M10.5564 8.5863C16.8141 8.5863 19.5918 13.1999 19.5918 15.8727C19.5918 15.8934 19.5917 15.914 19.5914 15.9344C19.5599 14.1545 18.3581 12.4681 15.984 12.4681C12.9829 12.4681 8.92817 16.5408 9.47092 21.5999C9.90538 25.6496 13.3341 31.0818 20.7731 29.1727C20.7731 29.1727 19.3683 29.9999 15.4413 29.9999C8.48119 29.9999 2 23.6363 2 16.3499C2 16.1569 2.00294 15.9676 2.00888 15.7819C2.16935 13.4382 4.52236 8.5863 10.5564 8.5863Z" fill="url(#paint1_linear_449_13603)"/>
<path d="M10.5564 8.5863C16.8141 8.5863 19.5918 13.1999 19.5918 15.8727C19.5918 15.8934 19.5917 15.914 19.5914 15.9344C19.5599 14.1545 18.3581 12.4681 15.984 12.4681C12.9829 12.4681 8.92817 16.5408 9.47092 21.5999C9.90538 25.6496 13.3341 31.0818 20.7731 29.1727C20.7731 29.1727 19.3683 29.9999 15.4413 29.9999C8.48119 29.9999 2 23.6363 2 16.3499C2 16.1569 2.00294 15.9676 2.00888 15.7819C2.16935 13.4382 4.52236 8.5863 10.5564 8.5863Z" fill="url(#paint2_radial_449_13603)"/>
<path d="M19.9065 29.4996C23.892 28.4124 26.7394 25.0205 27.2543 24.3363C27.829 23.5727 27.9886 23.0954 27.829 22.9363C27.6693 22.7772 27.4458 22.809 26.8711 23.0954C26.2965 23.3818 22.9122 24.7818 19.049 23.6045C15.1859 22.4272 12.5359 19.3727 12.5359 16C12.5359 13.3909 14.7708 12.4681 15.984 12.4681C12.9829 12.4681 8.92816 16.5409 9.47092 21.6C9.90538 25.6496 13.3341 31.0818 20.7731 29.1727C20.7731 29.1727 20.5138 29.3254 19.9065 29.4996Z" fill="#0E458A"/>
<path d="M19.9065 29.4996C23.892 28.4124 26.7394 25.0205 27.2543 24.3363C27.829 23.5727 27.9886 23.0954 27.829 22.9363C27.6693 22.7772 27.4458 22.809 26.8711 23.0954C26.2965 23.3818 22.9122 24.7818 19.049 23.6045C15.1859 22.4272 12.5359 19.3727 12.5359 16C12.5359 13.3909 14.7708 12.4681 15.984 12.4681C12.9829 12.4681 8.92816 16.5409 9.47092 21.6C9.90538 25.6496 13.3341 31.0818 20.7731 29.1727C20.7731 29.1727 20.5138 29.3254 19.9065 29.4996Z" fill="url(#paint3_radial_449_13603)"/>
<defs>
<linearGradient id="paint0_linear_449_13603" x1="28.3717" y1="18.5455" x2="0.988192" y2="12.0765" gradientUnits="userSpaceOnUse">
<stop stopColor="#3BCC50"/>
<stop offset="0.489583" stopColor="#2ABAD6"/>
<stop offset="1" stopColor="#7DCFE7"/>
</linearGradient>
<linearGradient id="paint1_linear_449_13603" x1="11.3865" y1="8.5863" x2="11.3865" y2="29.9999" gradientUnits="userSpaceOnUse">
<stop stopColor="#035989"/>
<stop offset="0.265625" stopColor="#1175B6"/>
<stop offset="1" stopColor="#0470CF"/>
</linearGradient>
<radialGradient id="paint2_radial_449_13603" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(10.9396 18.9909) rotate(59.2143) scale(9.48152 9.49698)">
<stop stopColor="#1284D8"/>
<stop offset="0.813899" stopColor="#1170B2" stop-opacity="0.767762"/>
<stop offset="1" stopColor="#0E649B" stop-opacity="0.65"/>
</radialGradient>
<radialGradient id="paint3_radial_449_13603" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.6659 21.6) rotate(77.9982) scale(7.6769 8.28824)">
<stop stopColor="#104890"/>
<stop offset="0.69943" stopColor="#12529E" stop-opacity="0.70624"/>
<stop offset="1" stopColor="#0E4584" stop-opacity="0.58"/>
</radialGradient>
</defs>
</svg>
);
}
export default Color_browser_edge_mobile;

View file

@ -0,0 +1,28 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_facebook(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<circle cx="16" cy="16" r="14" fill="url(#paint0_linear_449_13784)"/>
<path d="M21.2137 20.2816L21.8356 16.3301H17.9452V13.767C17.9452 12.6857 18.4877 11.6311 20.2302 11.6311H22V8.26699C22 8.26699 20.3945 8 18.8603 8C15.6548 8 13.5617 9.89294 13.5617 13.3184V16.3301H10V20.2816H13.5617V29.8345C14.2767 29.944 15.0082 30 15.7534 30C16.4986 30 17.2302 29.944 17.9452 29.8345V20.2816H21.2137Z" fill="white"/>
<defs>
<linearGradient id="paint0_linear_449_13784" x1="16" y1="2" x2="16" y2="29.917" gradientUnits="userSpaceOnUse">
<stop stopColor="#18ACFE"/>
<stop offset="1" stopColor="#0163E0"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_browser_facebook;

View file

@ -0,0 +1,124 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_firefox(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 1 28 29">
<path d="M28.9905 10.7265C28.3816 9.2574 27.1473 7.67139 26.1784 7.17039C26.967 8.72015 27.4232 10.2746 27.5976 11.4344C27.5976 11.4344 27.5976 11.4426 27.6005 11.4578C26.0156 7.49777 23.3277 5.90065 21.1327 2.42407C21.0213 2.24869 20.9105 2.07331 20.802 1.88566C20.7407 1.77985 20.6911 1.68397 20.648 1.59336C20.557 1.41757 20.4867 1.23179 20.4386 1.03975C20.439 1.03063 20.4359 1.02169 20.4301 1.01467C20.4243 1.00765 20.4161 1.00305 20.4071 1.00175C20.3985 0.999416 20.3894 0.999416 20.3808 1.00175C20.3785 1.00281 20.3763 1.00419 20.3744 1.00584C20.3709 1.00584 20.3674 1.00994 20.3639 1.0111L20.3697 1.0035C16.8483 3.07063 15.6536 6.89446 15.544 8.80784C14.1368 8.90428 12.7913 9.42358 11.683 10.298C11.5672 10.1998 11.4461 10.1081 11.3202 10.0232C11.0008 8.9027 10.9873 7.71683 11.2811 6.58931C9.84091 7.24697 8.72095 8.28463 7.90664 9.20303H7.90023C7.34433 8.49742 7.38341 6.17015 7.41491 5.68435C7.40849 5.65395 7.00076 5.89656 6.94826 5.93339C6.45773 6.2841 5.9992 6.67771 5.57805 7.1096C5.0988 7.59655 4.66096 8.12276 4.26909 8.68274C3.36752 9.96323 2.72814 11.4101 2.3879 12.9398C2.38149 12.9702 2.37565 13.0017 2.36924 13.0327C2.34299 13.1561 2.24791 13.7751 2.23099 13.9096V13.9406C2.10704 14.5803 2.02984 15.2282 2 15.8791V15.951C2 23.7097 8.27646 30 16.0182 30C22.9521 30 28.7088 24.9549 29.8364 18.328C29.8597 18.1485 29.8789 17.9673 29.8999 17.786C30.1788 15.3763 29.869 12.8439 28.9905 10.7265ZM12.8327 21.7239C12.8981 21.7549 12.9599 21.7894 13.027 21.8198L13.0363 21.8256C12.9692 21.7929 12.901 21.759 12.8333 21.7239H12.8327ZM27.6017 11.4642V11.4508V11.466V11.4642Z" fill="url(#paint0_linear_449_13012)"/>
<path d="M28.9905 10.7265C28.3815 9.25741 27.1472 7.67141 26.1783 7.17041C26.967 8.72017 27.4231 10.2746 27.5975 11.4344V11.4631C28.9205 15.0572 28.1995 18.7121 27.1612 20.9452C25.5548 24.4002 21.6658 27.9416 15.5778 27.7692C9.00557 27.5821 3.2115 22.6885 2.12945 16.2842C1.93229 15.2735 2.12945 14.7608 2.22862 13.9406C2.10787 14.5725 2.06179 14.7555 2.00171 15.8791V15.951C2.00171 23.7098 8.27817 30 16.0199 30C22.9538 30 28.7105 24.9549 29.8381 18.328C29.8614 18.1485 29.8806 17.9673 29.9016 17.7861C30.1787 15.3764 29.869 12.8439 28.9905 10.7265V10.7265Z" fill="url(#paint1_radial_449_13012)"/>
<path d="M28.9905 10.7265C28.3815 9.25741 27.1472 7.67141 26.1783 7.17041C26.967 8.72017 27.4231 10.2746 27.5975 11.4344V11.4631C28.9205 15.0572 28.1995 18.7121 27.1612 20.9452C25.5548 24.4002 21.6658 27.9416 15.5778 27.7692C9.00557 27.5821 3.2115 22.6885 2.12945 16.2842C1.93229 15.2735 2.12945 14.7608 2.22862 13.9406C2.10787 14.5725 2.06179 14.7555 2.00171 15.8791V15.951C2.00171 23.7098 8.27817 30 16.0199 30C22.9538 30 28.7105 24.9549 29.8381 18.328C29.8614 18.1485 29.8806 17.9673 29.9016 17.7861C30.1787 15.3764 29.869 12.8439 28.9905 10.7265V10.7265Z" fill="url(#paint2_radial_449_13012)"/>
<path d="M22.1781 12.3774C22.209 12.399 22.2364 12.4207 22.2656 12.4423C21.9138 11.8162 21.4754 11.2431 20.9636 10.74C16.6063 6.37304 19.8215 1.2707 20.3634 1.01114L20.3692 1.00354C16.8477 3.07067 15.6531 6.8945 15.5435 8.80788C15.7068 8.79677 15.8695 8.78274 16.0358 8.78274C18.6636 8.78274 20.9525 10.2314 22.1781 12.3774Z" fill="url(#paint3_radial_449_13012)"/>
<path d="M16.0445 13.2496C16.0218 13.6004 14.7898 14.8047 14.3587 14.8047C10.3724 14.8047 9.72546 17.2214 9.72546 17.2214C9.90046 19.2569 11.3156 20.933 13.0276 21.8198C13.1058 21.8601 13.1845 21.8964 13.2609 21.9326C13.398 21.9911 13.5357 22.0495 13.6728 22.1016C14.2599 22.3091 14.8747 22.4273 15.4968 22.4523C22.4837 22.7809 23.8382 14.0798 18.7954 11.5532C20.0863 11.3281 21.4268 11.849 22.1751 12.3757C20.9502 10.2296 18.6607 8.78101 16.0328 8.78101C15.8666 8.78101 15.7039 8.79504 15.5405 8.80614C14.1344 8.90378 12.7901 9.42366 11.6831 10.298C11.8971 10.4798 12.1386 10.7219 12.6467 11.2234C13.5998 12.1658 16.0393 13.1356 16.0445 13.2496V13.2496Z" fill="url(#paint4_radial_449_13012)"/>
<path d="M16.0445 13.2496C16.0218 13.6004 14.7898 14.8047 14.3587 14.8047C10.3724 14.8047 9.72546 17.2214 9.72546 17.2214C9.90046 19.2569 11.3156 20.933 13.0276 21.8198C13.1058 21.8601 13.1845 21.8964 13.2609 21.9326C13.398 21.9911 13.5357 22.0495 13.6728 22.1016C14.2599 22.3091 14.8747 22.4273 15.4968 22.4523C22.4837 22.7809 23.8382 14.0798 18.7954 11.5532C20.0863 11.3281 21.4268 11.849 22.1751 12.3757C20.9502 10.2296 18.6607 8.78101 16.0328 8.78101C15.8666 8.78101 15.7039 8.79504 15.5405 8.80614C14.1344 8.90378 12.7901 9.42366 11.6831 10.298C11.8971 10.4798 12.1386 10.7219 12.6467 11.2234C13.5998 12.1658 16.0393 13.1356 16.0445 13.2496V13.2496Z" fill="url(#paint5_radial_449_13012)"/>
<path d="M11.0314 9.83093C11.1452 9.90459 11.2385 9.96656 11.3231 10.0233C11.0037 8.90275 10.9902 7.71688 11.284 6.58936C9.84382 7.24702 8.72385 8.28468 7.90955 9.20308C7.97546 9.20132 10.0089 9.16449 11.0314 9.83093V9.83093Z" fill="url(#paint6_radial_449_13012)"/>
<path d="M2.12982 16.2842C3.21187 22.6884 9.00594 27.582 15.5828 27.7691C21.6709 27.9416 25.5575 24.4001 27.1663 20.9451C28.2046 18.7114 28.9255 15.0571 27.6026 11.463V11.4361C27.6026 11.4396 27.6026 11.4443 27.6055 11.4595C28.1025 14.7139 26.4511 17.8667 23.8694 19.9987C23.8667 20.0047 23.8642 20.0107 23.8618 20.0168C18.8307 24.1224 14.0166 22.4937 13.0419 21.829C12.9742 21.7963 12.906 21.7624 12.8383 21.7273C9.90482 20.3243 8.69328 17.6439 8.95285 15.3471C6.47668 15.3471 5.63204 13.253 5.63204 13.253C5.63204 13.253 7.85564 11.6641 10.7862 13.0461C13.5004 14.3264 16.0495 13.2536 16.0495 13.253C16.0442 13.1391 13.6048 12.1663 12.6534 11.2268C12.1453 10.7253 11.9038 10.4832 11.6898 10.3014C11.5739 10.2033 11.4528 10.1115 11.3269 10.0267C11.2435 9.96821 11.1519 9.90975 11.0353 9.83434C10.0127 9.1679 7.9793 9.20473 7.91222 9.20648H7.9058C7.3499 8.50088 7.38899 6.17361 7.42049 5.68781C7.41407 5.65741 7.00633 5.90002 6.95383 5.93685C6.46331 6.28755 6.00478 6.68116 5.58363 7.11305C5.10438 7.6 4.66654 8.12621 4.27467 8.68619C3.3731 9.96669 2.73372 11.4136 2.39348 12.9432C2.3824 12.9701 1.88366 15.1524 2.12982 16.2842V16.2842Z" fill="url(#paint7_radial_449_13012)"/>
<path d="M20.9636 10.7399C21.4754 11.2431 21.9137 11.8162 22.2655 12.4423C22.3384 12.4971 22.4085 12.5557 22.4755 12.6176C25.6534 15.55 23.991 19.7012 23.8644 19.9993C26.4461 17.8673 28.0975 14.7146 27.6005 11.4601C26.0157 7.49777 23.3277 5.90065 21.1327 2.42407C21.0213 2.24869 20.9105 2.07331 20.802 1.88566C20.7407 1.77985 20.6912 1.68397 20.648 1.59336C20.557 1.41757 20.4868 1.23179 20.4386 1.03975C20.439 1.03063 20.436 1.02169 20.4301 1.01467C20.4243 1.00765 20.4161 1.00305 20.4071 1.00175C20.3985 0.999416 20.3894 0.999416 20.3808 1.00175C20.3785 1.00281 20.3764 1.00419 20.3744 1.00584C20.3709 1.00584 20.3674 1.00994 20.3639 1.0111C19.8214 1.27066 16.6062 6.37301 20.9636 10.7399V10.7399Z" fill="url(#paint8_radial_449_13012)"/>
<path d="M22.4743 12.6147C22.4073 12.5528 22.3372 12.4942 22.2643 12.4394C22.2357 12.4177 22.206 12.3961 22.1768 12.3745C21.4284 11.8483 20.088 11.3269 18.7971 11.5519C23.8393 14.0786 22.4854 22.7797 15.4985 22.4511C14.8764 22.4261 14.2616 22.3079 13.6744 22.1004C13.5374 22.0489 13.3997 21.9922 13.2626 21.9314C13.1833 21.8952 13.1045 21.8589 13.0293 21.8186L13.0386 21.8244C14.0133 22.4909 18.8274 24.1196 23.8585 20.0122C23.8585 20.0122 23.8614 20.0046 23.8661 19.9941C23.9909 19.7012 25.6534 15.55 22.4743 12.6147Z" fill="url(#paint9_radial_449_13012)"/>
<path d="M9.72532 17.2214C9.72532 17.2214 10.3722 14.8047 14.3586 14.8047C14.7897 14.8047 16.0216 13.5992 16.0444 13.2497C16.0671 12.9001 13.4953 14.323 10.7811 13.0427C7.85055 11.6607 5.62695 13.2497 5.62695 13.2497C5.62695 13.2497 6.47159 15.3437 8.94776 15.3437C8.68819 17.6405 9.89973 20.3186 12.8332 21.7239C12.8986 21.7549 12.9604 21.7894 13.0275 21.8198C11.3154 20.9347 9.90207 19.2569 9.72532 17.2214Z" fill="url(#paint10_radial_449_13012)"/>
<path d="M28.9905 10.7265C28.3816 9.2574 27.1473 7.67139 26.1784 7.17039C26.967 8.72015 27.4232 10.2746 27.5976 11.4344C27.5976 11.4344 27.5976 11.4426 27.6005 11.4578C26.0156 7.49777 23.3277 5.90065 21.1327 2.42407C21.0213 2.24869 20.9105 2.07331 20.802 1.88566C20.7407 1.77985 20.6911 1.68397 20.648 1.59336C20.557 1.41757 20.4867 1.23179 20.4386 1.03975C20.439 1.03063 20.4359 1.02169 20.4301 1.01467C20.4243 1.00765 20.4161 1.00305 20.4071 1.00175C20.3985 0.999416 20.3894 0.999416 20.3808 1.00175C20.3785 1.00281 20.3763 1.00419 20.3744 1.00584C20.3709 1.00584 20.3674 1.00994 20.3639 1.0111L20.3697 1.0035C16.8483 3.07063 15.6536 6.89446 15.544 8.80784C15.7073 8.79673 15.8701 8.78271 16.0363 8.78271C18.6641 8.78271 20.9531 10.2313 22.1786 12.3774C21.4302 11.8512 20.0897 11.3298 18.7989 11.5549C23.841 14.0815 22.4872 22.7826 15.5002 22.454C14.8782 22.429 14.2633 22.3108 13.6762 22.1033C13.5391 22.0518 13.4015 21.9951 13.2644 21.9343C13.1851 21.8981 13.1063 21.8618 13.0311 21.8215L13.0404 21.8273C12.9727 21.7946 12.9045 21.7607 12.8368 21.7256C12.9021 21.7566 12.964 21.7911 13.0311 21.8215C11.3155 20.9347 9.90216 19.2569 9.72542 17.2213C9.72542 17.2213 10.3723 14.8046 14.3587 14.8046C14.7898 14.8046 16.0217 13.5992 16.0445 13.2496C16.0392 13.1356 13.5998 12.1628 12.6484 11.2234C12.1403 10.7218 11.8988 10.4798 11.6848 10.298C11.5689 10.1998 11.4478 10.1081 11.3219 10.0232C11.0026 8.9027 10.9891 7.71683 11.2829 6.58931C9.84266 7.24697 8.7227 8.28463 7.90839 9.20303H7.90198C7.34608 8.49742 7.38516 6.17015 7.41666 5.68435C7.41024 5.65395 7.00251 5.89656 6.95001 5.93339C6.45948 6.2841 6.00095 6.67771 5.5798 7.1096C5.10055 7.59655 4.66271 8.12276 4.27084 8.68274C3.36927 9.96323 2.72989 11.4101 2.38965 12.9398C2.38324 12.9702 2.3774 13.0017 2.37099 13.0327C2.34474 13.1561 2.22574 13.7839 2.20941 13.9184C2.20941 13.9289 2.20941 13.9084 2.20941 13.9184C2.10019 14.5671 2.03026 15.2219 2 15.8791V15.951C2 23.7097 8.27646 30 16.0182 30C22.9521 30 28.7088 24.9549 29.8364 18.328C29.8597 18.1485 29.8789 17.9673 29.8999 17.786C30.1788 15.3763 29.869 12.8439 28.9905 10.7265ZM27.5999 11.4479V11.4631V11.4479Z" fill="url(#paint11_linear_449_13012)"/>
<defs>
<linearGradient id="paint0_linear_449_13012" x1="27.135" y1="5.49261" x2="3.81392" y2="27.9437" gradientUnits="userSpaceOnUse">
<stop offset="0.05" stopColor="#FFF44F"/>
<stop offset="0.11" stopColor="#FFE847"/>
<stop offset="0.22" stopColor="#FFC830"/>
<stop offset="0.37" stopColor="#FF980E"/>
<stop offset="0.4" stopColor="#FF8B16"/>
<stop offset="0.46" stopColor="#FF672A"/>
<stop offset="0.53" stopColor="#FF3647"/>
<stop offset="0.7" stopColor="#E31587"/>
</linearGradient>
<radialGradient id="paint1_radial_449_13012" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(26.0593 4.21879) scale(29.2246 29.2888)">
<stop offset="0.13" stopColor="#FFBD4F"/>
<stop offset="0.19" stopColor="#FFAC31"/>
<stop offset="0.25" stopColor="#FF9D17"/>
<stop offset="0.28" stopColor="#FF980E"/>
<stop offset="0.4" stopColor="#FF563B"/>
<stop offset="0.47" stopColor="#FF3750"/>
<stop offset="0.71" stopColor="#F5156C"/>
<stop offset="0.78" stopColor="#EB0878"/>
<stop offset="0.86" stopColor="#E50080"/>
</radialGradient>
<radialGradient id="paint2_radial_449_13012" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(15.3806 16.1925) scale(29.2246 29.2888)">
<stop offset="0.3" stopColor="#960E18"/>
<stop offset="0.35" stopColor="#B11927" stop-opacity="0.74"/>
<stop offset="0.43" stopColor="#DB293D" stop-opacity="0.34"/>
<stop offset="0.5" stopColor="#F5334B" stop-opacity="0.09"/>
<stop offset="0.53" stopColor="#FF3750" stop-opacity="0"/>
</radialGradient>
<radialGradient id="paint3_radial_449_13012" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.9045 -2.42803) scale(21.172 21.2184)">
<stop offset="0.13" stopColor="#FFF44F"/>
<stop offset="0.25" stopColor="#FFDC3E"/>
<stop offset="0.51" stopColor="#FF9D12"/>
<stop offset="0.53" stopColor="#FF980E"/>
</radialGradient>
<radialGradient id="paint4_radial_449_13012" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(12.1486 23.8431) scale(13.915 13.9455)">
<stop offset="0.35" stopColor="#3A8EE6"/>
<stop offset="0.47" stopColor="#5C79F0"/>
<stop offset="0.67" stopColor="#9059FF"/>
<stop offset="1" stopColor="#C139E6"/>
</radialGradient>
<radialGradient id="paint5_radial_449_13012" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(15.8004 12.7116) rotate(-13.9265) scale(7.37316 8.67852)">
<stop offset="0.21" stopColor="#9059FF" stop-opacity="0"/>
<stop offset="0.28" stopColor="#8C4FF3" stop-opacity="0.06"/>
<stop offset="0.75" stopColor="#7716A8" stop-opacity="0.45"/>
<stop offset="0.97" stopColor="#6E008B" stop-opacity="0.6"/>
</radialGradient>
<radialGradient id="paint6_radial_449_13012" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(15.0114 3.02041) scale(10.0108 10.0328)">
<stop stopColor="#FFE226"/>
<stop offset="0.12" stopColor="#FFDB27"/>
<stop offset="0.3" stopColor="#FFC82A"/>
<stop offset="0.5" stopColor="#FFA930"/>
<stop offset="0.73" stopColor="#FF7E37"/>
<stop offset="0.79" stopColor="#FF7139"/>
</radialGradient>
<radialGradient id="paint7_radial_449_13012" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(22.8807 -3.34301) scale(42.7109 42.8046)">
<stop offset="0.11" stopColor="#FFF44F"/>
<stop offset="0.46" stopColor="#FF980E"/>
<stop offset="0.62" stopColor="#FF5634"/>
<stop offset="0.72" stopColor="#FF3647"/>
<stop offset="0.9" stopColor="#E31587"/>
</radialGradient>
<radialGradient id="paint8_radial_449_13012" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.7518 1.33374) rotate(84.2447) scale(31.1996 20.4543)">
<stop stopColor="#FFF44F"/>
<stop offset="0.06" stopColor="#FFE847"/>
<stop offset="0.17" stopColor="#FFC830"/>
<stop offset="0.3" stopColor="#FF980E"/>
<stop offset="0.36" stopColor="#FF8B16"/>
<stop offset="0.45" stopColor="#FF672A"/>
<stop offset="0.57" stopColor="#FF3647"/>
<stop offset="0.74" stopColor="#E31587"/>
</radialGradient>
<radialGradient id="paint9_radial_449_13012" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(14.7757 6.73605) scale(26.6644 26.723)">
<stop offset="0.14" stopColor="#FFF44F"/>
<stop offset="0.48" stopColor="#FF980E"/>
<stop offset="0.59" stopColor="#FF5634"/>
<stop offset="0.66" stopColor="#FF3647"/>
<stop offset="0.9" stopColor="#E31587"/>
</radialGradient>
<radialGradient id="paint10_radial_449_13012" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(21.8145 8.30047) scale(29.1844 29.2484)">
<stop offset="0.09" stopColor="#FFF44F"/>
<stop offset="0.23" stopColor="#FFE141"/>
<stop offset="0.51" stopColor="#FFAF1E"/>
<stop offset="0.63" stopColor="#FF980E"/>
</radialGradient>
<linearGradient id="paint11_linear_449_13012" x1="26.855" y1="5.37218" x2="7.01043" y2="25.1739" gradientUnits="userSpaceOnUse">
<stop offset="0.17" stopColor="#FFF44F" stop-opacity="0.8"/>
<stop offset="0.27" stopColor="#FFF44F" stop-opacity="0.63"/>
<stop offset="0.49" stopColor="#FFF44F" stop-opacity="0.22"/>
<stop offset="0.6" stopColor="#FFF44F" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_browser_firefox;

View file

@ -0,0 +1,124 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_firefox_ios(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 1 28 29">
<path d="M28.9905 10.7265C28.3816 9.2574 27.1473 7.67139 26.1784 7.17039C26.967 8.72015 27.4232 10.2746 27.5976 11.4344C27.5976 11.4344 27.5976 11.4426 27.6005 11.4578C26.0156 7.49777 23.3277 5.90065 21.1327 2.42407C21.0213 2.24869 20.9105 2.07331 20.802 1.88566C20.7407 1.77985 20.6911 1.68397 20.648 1.59336C20.557 1.41757 20.4867 1.23179 20.4386 1.03975C20.439 1.03063 20.4359 1.02169 20.4301 1.01467C20.4243 1.00765 20.4161 1.00305 20.4071 1.00175C20.3985 0.999416 20.3894 0.999416 20.3808 1.00175C20.3785 1.00281 20.3763 1.00419 20.3744 1.00584C20.3709 1.00584 20.3674 1.00994 20.3639 1.0111L20.3697 1.0035C16.8483 3.07063 15.6536 6.89446 15.544 8.80784C14.1368 8.90428 12.7913 9.42358 11.683 10.298C11.5672 10.1998 11.4461 10.1081 11.3202 10.0232C11.0008 8.9027 10.9873 7.71683 11.2811 6.58931C9.84091 7.24697 8.72095 8.28463 7.90664 9.20303H7.90023C7.34433 8.49742 7.38341 6.17015 7.41491 5.68435C7.40849 5.65395 7.00076 5.89656 6.94826 5.93339C6.45773 6.2841 5.9992 6.67771 5.57805 7.1096C5.0988 7.59655 4.66096 8.12276 4.26909 8.68274C3.36752 9.96323 2.72814 11.4101 2.3879 12.9398C2.38149 12.9702 2.37565 13.0017 2.36924 13.0327C2.34299 13.1561 2.24791 13.7751 2.23099 13.9096V13.9406C2.10704 14.5803 2.02984 15.2282 2 15.8791V15.951C2 23.7097 8.27646 30 16.0182 30C22.9521 30 28.7088 24.9549 29.8364 18.328C29.8597 18.1485 29.8789 17.9673 29.8999 17.786C30.1788 15.3763 29.869 12.8439 28.9905 10.7265ZM12.8327 21.7239C12.8981 21.7549 12.9599 21.7894 13.027 21.8198L13.0363 21.8256C12.9692 21.7929 12.901 21.759 12.8333 21.7239H12.8327ZM27.6017 11.4642V11.4508V11.466V11.4642Z" fill="url(#paint0_linear_449_13550)"/>
<path d="M28.9905 10.7265C28.3815 9.25741 27.1472 7.67141 26.1783 7.17041C26.967 8.72017 27.4231 10.2746 27.5975 11.4344V11.4631C28.9205 15.0572 28.1995 18.7121 27.1612 20.9452C25.5548 24.4002 21.6658 27.9416 15.5778 27.7692C9.00557 27.5821 3.2115 22.6885 2.12945 16.2842C1.93229 15.2735 2.12945 14.7608 2.22862 13.9406C2.10787 14.5725 2.06179 14.7555 2.00171 15.8791V15.951C2.00171 23.7098 8.27817 30 16.0199 30C22.9538 30 28.7105 24.9549 29.8381 18.328C29.8614 18.1485 29.8806 17.9673 29.9016 17.7861C30.1787 15.3764 29.869 12.8439 28.9905 10.7265V10.7265Z" fill="url(#paint1_radial_449_13550)"/>
<path d="M28.9905 10.7265C28.3815 9.25741 27.1472 7.67141 26.1783 7.17041C26.967 8.72017 27.4231 10.2746 27.5975 11.4344V11.4631C28.9205 15.0572 28.1995 18.7121 27.1612 20.9452C25.5548 24.4002 21.6658 27.9416 15.5778 27.7692C9.00557 27.5821 3.2115 22.6885 2.12945 16.2842C1.93229 15.2735 2.12945 14.7608 2.22862 13.9406C2.10787 14.5725 2.06179 14.7555 2.00171 15.8791V15.951C2.00171 23.7098 8.27817 30 16.0199 30C22.9538 30 28.7105 24.9549 29.8381 18.328C29.8614 18.1485 29.8806 17.9673 29.9016 17.7861C30.1787 15.3764 29.869 12.8439 28.9905 10.7265V10.7265Z" fill="url(#paint2_radial_449_13550)"/>
<path d="M22.1781 12.3774C22.209 12.399 22.2364 12.4207 22.2656 12.4423C21.9138 11.8162 21.4754 11.2431 20.9636 10.74C16.6063 6.37304 19.8215 1.2707 20.3634 1.01114L20.3692 1.00354C16.8477 3.07067 15.6531 6.8945 15.5435 8.80788C15.7068 8.79677 15.8695 8.78274 16.0358 8.78274C18.6636 8.78274 20.9525 10.2314 22.1781 12.3774Z" fill="url(#paint3_radial_449_13550)"/>
<path d="M16.0445 13.2496C16.0218 13.6004 14.7898 14.8047 14.3587 14.8047C10.3724 14.8047 9.72546 17.2214 9.72546 17.2214C9.90046 19.2569 11.3156 20.933 13.0276 21.8198C13.1058 21.8601 13.1845 21.8964 13.2609 21.9326C13.398 21.9911 13.5357 22.0495 13.6728 22.1016C14.2599 22.3091 14.8747 22.4273 15.4968 22.4523C22.4837 22.7809 23.8382 14.0798 18.7954 11.5532C20.0863 11.3281 21.4268 11.849 22.1751 12.3757C20.9502 10.2296 18.6607 8.78101 16.0328 8.78101C15.8666 8.78101 15.7039 8.79504 15.5405 8.80614C14.1344 8.90378 12.7901 9.42366 11.6831 10.298C11.8971 10.4798 12.1386 10.7219 12.6467 11.2234C13.5998 12.1658 16.0393 13.1356 16.0445 13.2496V13.2496Z" fill="url(#paint4_radial_449_13550)"/>
<path d="M16.0445 13.2496C16.0218 13.6004 14.7898 14.8047 14.3587 14.8047C10.3724 14.8047 9.72546 17.2214 9.72546 17.2214C9.90046 19.2569 11.3156 20.933 13.0276 21.8198C13.1058 21.8601 13.1845 21.8964 13.2609 21.9326C13.398 21.9911 13.5357 22.0495 13.6728 22.1016C14.2599 22.3091 14.8747 22.4273 15.4968 22.4523C22.4837 22.7809 23.8382 14.0798 18.7954 11.5532C20.0863 11.3281 21.4268 11.849 22.1751 12.3757C20.9502 10.2296 18.6607 8.78101 16.0328 8.78101C15.8666 8.78101 15.7039 8.79504 15.5405 8.80614C14.1344 8.90378 12.7901 9.42366 11.6831 10.298C11.8971 10.4798 12.1386 10.7219 12.6467 11.2234C13.5998 12.1658 16.0393 13.1356 16.0445 13.2496V13.2496Z" fill="url(#paint5_radial_449_13550)"/>
<path d="M11.0314 9.83093C11.1452 9.90459 11.2385 9.96656 11.3231 10.0233C11.0037 8.90275 10.9902 7.71688 11.284 6.58936C9.84382 7.24702 8.72385 8.28468 7.90955 9.20308C7.97546 9.20132 10.0089 9.16449 11.0314 9.83093V9.83093Z" fill="url(#paint6_radial_449_13550)"/>
<path d="M2.12982 16.2842C3.21187 22.6884 9.00594 27.582 15.5828 27.7691C21.6709 27.9416 25.5575 24.4001 27.1663 20.9451C28.2046 18.7114 28.9255 15.0571 27.6026 11.463V11.4361C27.6026 11.4396 27.6026 11.4443 27.6055 11.4595C28.1025 14.7139 26.4511 17.8667 23.8694 19.9987C23.8667 20.0047 23.8642 20.0107 23.8618 20.0168C18.8307 24.1224 14.0166 22.4937 13.0419 21.829C12.9742 21.7963 12.906 21.7624 12.8383 21.7273C9.90482 20.3243 8.69328 17.6439 8.95285 15.3471C6.47668 15.3471 5.63204 13.253 5.63204 13.253C5.63204 13.253 7.85564 11.6641 10.7862 13.0461C13.5004 14.3264 16.0495 13.2536 16.0495 13.253C16.0442 13.1391 13.6048 12.1663 12.6534 11.2268C12.1453 10.7253 11.9038 10.4832 11.6898 10.3014C11.5739 10.2033 11.4528 10.1115 11.3269 10.0267C11.2435 9.96821 11.1519 9.90975 11.0353 9.83434C10.0127 9.1679 7.9793 9.20473 7.91222 9.20648H7.9058C7.3499 8.50088 7.38899 6.17361 7.42049 5.68781C7.41407 5.65741 7.00633 5.90002 6.95383 5.93685C6.46331 6.28755 6.00478 6.68116 5.58363 7.11305C5.10438 7.6 4.66654 8.12621 4.27467 8.68619C3.3731 9.96669 2.73372 11.4136 2.39348 12.9432C2.3824 12.9701 1.88366 15.1524 2.12982 16.2842V16.2842Z" fill="url(#paint7_radial_449_13550)"/>
<path d="M20.9636 10.7399C21.4754 11.2431 21.9137 11.8162 22.2655 12.4423C22.3384 12.4971 22.4085 12.5557 22.4755 12.6176C25.6534 15.55 23.991 19.7012 23.8644 19.9993C26.4461 17.8673 28.0975 14.7146 27.6005 11.4601C26.0157 7.49777 23.3277 5.90065 21.1327 2.42407C21.0213 2.24869 20.9105 2.07331 20.802 1.88566C20.7407 1.77985 20.6912 1.68397 20.648 1.59336C20.557 1.41757 20.4868 1.23179 20.4386 1.03975C20.439 1.03063 20.436 1.02169 20.4301 1.01467C20.4243 1.00765 20.4161 1.00305 20.4071 1.00175C20.3985 0.999416 20.3894 0.999416 20.3808 1.00175C20.3785 1.00281 20.3764 1.00419 20.3744 1.00584C20.3709 1.00584 20.3674 1.00994 20.3639 1.0111C19.8214 1.27066 16.6062 6.37301 20.9636 10.7399V10.7399Z" fill="url(#paint8_radial_449_13550)"/>
<path d="M22.4743 12.6147C22.4073 12.5528 22.3372 12.4942 22.2643 12.4394C22.2357 12.4177 22.206 12.3961 22.1768 12.3745C21.4284 11.8483 20.088 11.3269 18.7971 11.5519C23.8393 14.0786 22.4854 22.7797 15.4985 22.4511C14.8764 22.4261 14.2616 22.3079 13.6744 22.1004C13.5374 22.0489 13.3997 21.9922 13.2626 21.9314C13.1833 21.8952 13.1045 21.8589 13.0293 21.8186L13.0386 21.8244C14.0133 22.4909 18.8274 24.1196 23.8585 20.0122C23.8585 20.0122 23.8614 20.0046 23.8661 19.9941C23.9909 19.7012 25.6534 15.55 22.4743 12.6147Z" fill="url(#paint9_radial_449_13550)"/>
<path d="M9.72532 17.2214C9.72532 17.2214 10.3722 14.8047 14.3586 14.8047C14.7897 14.8047 16.0216 13.5992 16.0444 13.2497C16.0671 12.9001 13.4953 14.323 10.7811 13.0427C7.85055 11.6607 5.62695 13.2497 5.62695 13.2497C5.62695 13.2497 6.47159 15.3437 8.94776 15.3437C8.68819 17.6405 9.89973 20.3186 12.8332 21.7239C12.8986 21.7549 12.9604 21.7894 13.0275 21.8198C11.3154 20.9347 9.90207 19.2569 9.72532 17.2214Z" fill="url(#paint10_radial_449_13550)"/>
<path d="M28.9905 10.7265C28.3816 9.2574 27.1473 7.67139 26.1784 7.17039C26.967 8.72015 27.4232 10.2746 27.5976 11.4344C27.5976 11.4344 27.5976 11.4426 27.6005 11.4578C26.0156 7.49777 23.3277 5.90065 21.1327 2.42407C21.0213 2.24869 20.9105 2.07331 20.802 1.88566C20.7407 1.77985 20.6911 1.68397 20.648 1.59336C20.557 1.41757 20.4867 1.23179 20.4386 1.03975C20.439 1.03063 20.4359 1.02169 20.4301 1.01467C20.4243 1.00765 20.4161 1.00305 20.4071 1.00175C20.3985 0.999416 20.3894 0.999416 20.3808 1.00175C20.3785 1.00281 20.3763 1.00419 20.3744 1.00584C20.3709 1.00584 20.3674 1.00994 20.3639 1.0111L20.3697 1.0035C16.8483 3.07063 15.6536 6.89446 15.544 8.80784C15.7073 8.79673 15.8701 8.78271 16.0363 8.78271C18.6641 8.78271 20.9531 10.2313 22.1786 12.3774C21.4302 11.8512 20.0897 11.3298 18.7989 11.5549C23.841 14.0815 22.4872 22.7826 15.5002 22.454C14.8782 22.429 14.2633 22.3108 13.6762 22.1033C13.5391 22.0518 13.4015 21.9951 13.2644 21.9343C13.1851 21.8981 13.1063 21.8618 13.0311 21.8215L13.0404 21.8273C12.9727 21.7946 12.9045 21.7607 12.8368 21.7256C12.9021 21.7566 12.964 21.7911 13.0311 21.8215C11.3155 20.9347 9.90216 19.2569 9.72542 17.2213C9.72542 17.2213 10.3723 14.8046 14.3587 14.8046C14.7898 14.8046 16.0217 13.5992 16.0445 13.2496C16.0392 13.1356 13.5998 12.1628 12.6484 11.2234C12.1403 10.7218 11.8988 10.4798 11.6848 10.298C11.5689 10.1998 11.4478 10.1081 11.3219 10.0232C11.0026 8.9027 10.9891 7.71683 11.2829 6.58931C9.84266 7.24697 8.7227 8.28463 7.90839 9.20303H7.90198C7.34608 8.49742 7.38516 6.17015 7.41666 5.68435C7.41024 5.65395 7.00251 5.89656 6.95001 5.93339C6.45948 6.2841 6.00095 6.67771 5.5798 7.1096C5.10055 7.59655 4.66271 8.12276 4.27084 8.68274C3.36927 9.96323 2.72989 11.4101 2.38965 12.9398C2.38324 12.9702 2.3774 13.0017 2.37099 13.0327C2.34474 13.1561 2.22574 13.7839 2.20941 13.9184C2.20941 13.9289 2.20941 13.9084 2.20941 13.9184C2.10019 14.5671 2.03026 15.2219 2 15.8791V15.951C2 23.7097 8.27646 30 16.0182 30C22.9521 30 28.7088 24.9549 29.8364 18.328C29.8597 18.1485 29.8789 17.9673 29.8999 17.786C30.1788 15.3763 29.869 12.8439 28.9905 10.7265ZM27.5999 11.4479V11.4631V11.4479Z" fill="url(#paint11_linear_449_13550)"/>
<defs>
<linearGradient id="paint0_linear_449_13550" x1="27.135" y1="5.49261" x2="3.81392" y2="27.9437" gradientUnits="userSpaceOnUse">
<stop offset="0.05" stopColor="#FFF44F"/>
<stop offset="0.11" stopColor="#FFE847"/>
<stop offset="0.22" stopColor="#FFC830"/>
<stop offset="0.37" stopColor="#FF980E"/>
<stop offset="0.4" stopColor="#FF8B16"/>
<stop offset="0.46" stopColor="#FF672A"/>
<stop offset="0.53" stopColor="#FF3647"/>
<stop offset="0.7" stopColor="#E31587"/>
</linearGradient>
<radialGradient id="paint1_radial_449_13550" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(26.0593 4.21879) scale(29.2246 29.2888)">
<stop offset="0.13" stopColor="#FFBD4F"/>
<stop offset="0.19" stopColor="#FFAC31"/>
<stop offset="0.25" stopColor="#FF9D17"/>
<stop offset="0.28" stopColor="#FF980E"/>
<stop offset="0.4" stopColor="#FF563B"/>
<stop offset="0.47" stopColor="#FF3750"/>
<stop offset="0.71" stopColor="#F5156C"/>
<stop offset="0.78" stopColor="#EB0878"/>
<stop offset="0.86" stopColor="#E50080"/>
</radialGradient>
<radialGradient id="paint2_radial_449_13550" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(15.3806 16.1925) scale(29.2246 29.2888)">
<stop offset="0.3" stopColor="#960E18"/>
<stop offset="0.35" stopColor="#B11927" stop-opacity="0.74"/>
<stop offset="0.43" stopColor="#DB293D" stop-opacity="0.34"/>
<stop offset="0.5" stopColor="#F5334B" stop-opacity="0.09"/>
<stop offset="0.53" stopColor="#FF3750" stop-opacity="0"/>
</radialGradient>
<radialGradient id="paint3_radial_449_13550" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.9045 -2.42803) scale(21.172 21.2184)">
<stop offset="0.13" stopColor="#FFF44F"/>
<stop offset="0.25" stopColor="#FFDC3E"/>
<stop offset="0.51" stopColor="#FF9D12"/>
<stop offset="0.53" stopColor="#FF980E"/>
</radialGradient>
<radialGradient id="paint4_radial_449_13550" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(12.1486 23.8431) scale(13.915 13.9455)">
<stop offset="0.35" stopColor="#3A8EE6"/>
<stop offset="0.47" stopColor="#5C79F0"/>
<stop offset="0.67" stopColor="#9059FF"/>
<stop offset="1" stopColor="#C139E6"/>
</radialGradient>
<radialGradient id="paint5_radial_449_13550" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(15.8004 12.7116) rotate(-13.9265) scale(7.37316 8.67852)">
<stop offset="0.21" stopColor="#9059FF" stop-opacity="0"/>
<stop offset="0.28" stopColor="#8C4FF3" stop-opacity="0.06"/>
<stop offset="0.75" stopColor="#7716A8" stop-opacity="0.45"/>
<stop offset="0.97" stopColor="#6E008B" stop-opacity="0.6"/>
</radialGradient>
<radialGradient id="paint6_radial_449_13550" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(15.0114 3.02041) scale(10.0108 10.0328)">
<stop stopColor="#FFE226"/>
<stop offset="0.12" stopColor="#FFDB27"/>
<stop offset="0.3" stopColor="#FFC82A"/>
<stop offset="0.5" stopColor="#FFA930"/>
<stop offset="0.73" stopColor="#FF7E37"/>
<stop offset="0.79" stopColor="#FF7139"/>
</radialGradient>
<radialGradient id="paint7_radial_449_13550" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(22.8807 -3.34301) scale(42.7109 42.8046)">
<stop offset="0.11" stopColor="#FFF44F"/>
<stop offset="0.46" stopColor="#FF980E"/>
<stop offset="0.62" stopColor="#FF5634"/>
<stop offset="0.72" stopColor="#FF3647"/>
<stop offset="0.9" stopColor="#E31587"/>
</radialGradient>
<radialGradient id="paint8_radial_449_13550" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.7518 1.33374) rotate(84.2447) scale(31.1996 20.4543)">
<stop stopColor="#FFF44F"/>
<stop offset="0.06" stopColor="#FFE847"/>
<stop offset="0.17" stopColor="#FFC830"/>
<stop offset="0.3" stopColor="#FF980E"/>
<stop offset="0.36" stopColor="#FF8B16"/>
<stop offset="0.45" stopColor="#FF672A"/>
<stop offset="0.57" stopColor="#FF3647"/>
<stop offset="0.74" stopColor="#E31587"/>
</radialGradient>
<radialGradient id="paint9_radial_449_13550" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(14.7757 6.73605) scale(26.6644 26.723)">
<stop offset="0.14" stopColor="#FFF44F"/>
<stop offset="0.48" stopColor="#FF980E"/>
<stop offset="0.59" stopColor="#FF5634"/>
<stop offset="0.66" stopColor="#FF3647"/>
<stop offset="0.9" stopColor="#E31587"/>
</radialGradient>
<radialGradient id="paint10_radial_449_13550" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(21.8145 8.30047) scale(29.1844 29.2484)">
<stop offset="0.09" stopColor="#FFF44F"/>
<stop offset="0.23" stopColor="#FFE141"/>
<stop offset="0.51" stopColor="#FFAF1E"/>
<stop offset="0.63" stopColor="#FF980E"/>
</radialGradient>
<linearGradient id="paint11_linear_449_13550" x1="26.855" y1="5.37218" x2="7.01043" y2="25.1739" gradientUnits="userSpaceOnUse">
<stop offset="0.17" stopColor="#FFF44F" stop-opacity="0.8"/>
<stop offset="0.27" stopColor="#FFF44F" stop-opacity="0.63"/>
<stop offset="0.49" stopColor="#FFF44F" stop-opacity="0.22"/>
<stop offset="0.6" stopColor="#FFF44F" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_browser_firefox_ios;

View file

@ -0,0 +1,124 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_firefox_mobile(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 1 28 29">
<path d="M28.9905 10.7265C28.3816 9.2574 27.1473 7.67139 26.1784 7.17039C26.967 8.72015 27.4232 10.2746 27.5976 11.4344C27.5976 11.4344 27.5976 11.4426 27.6005 11.4578C26.0156 7.49777 23.3277 5.90065 21.1327 2.42407C21.0213 2.24869 20.9105 2.07331 20.802 1.88566C20.7407 1.77985 20.6911 1.68397 20.648 1.59336C20.557 1.41757 20.4867 1.23179 20.4386 1.03975C20.439 1.03063 20.4359 1.02169 20.4301 1.01467C20.4243 1.00765 20.4161 1.00305 20.4071 1.00175C20.3985 0.999416 20.3894 0.999416 20.3808 1.00175C20.3785 1.00281 20.3763 1.00419 20.3744 1.00584C20.3709 1.00584 20.3674 1.00994 20.3639 1.0111L20.3697 1.0035C16.8483 3.07063 15.6536 6.89446 15.544 8.80784C14.1368 8.90428 12.7913 9.42358 11.683 10.298C11.5672 10.1998 11.4461 10.1081 11.3202 10.0232C11.0008 8.9027 10.9873 7.71683 11.2811 6.58931C9.84091 7.24697 8.72095 8.28463 7.90664 9.20303H7.90023C7.34433 8.49742 7.38341 6.17015 7.41491 5.68435C7.40849 5.65395 7.00076 5.89656 6.94826 5.93339C6.45773 6.2841 5.9992 6.67771 5.57805 7.1096C5.0988 7.59655 4.66096 8.12276 4.26909 8.68274C3.36752 9.96323 2.72814 11.4101 2.3879 12.9398C2.38149 12.9702 2.37565 13.0017 2.36924 13.0327C2.34299 13.1561 2.24791 13.7751 2.23099 13.9096V13.9406C2.10704 14.5803 2.02984 15.2282 2 15.8791V15.951C2 23.7097 8.27646 30 16.0182 30C22.9521 30 28.7088 24.9549 29.8364 18.328C29.8597 18.1485 29.8789 17.9673 29.8999 17.786C30.1788 15.3763 29.869 12.8439 28.9905 10.7265ZM12.8327 21.7239C12.8981 21.7549 12.9599 21.7894 13.027 21.8198L13.0363 21.8256C12.9692 21.7929 12.901 21.759 12.8333 21.7239H12.8327ZM27.6017 11.4642V11.4508V11.466V11.4642Z" fill="url(#paint0_linear_449_13380)"/>
<path d="M28.9905 10.7265C28.3815 9.25741 27.1472 7.67141 26.1783 7.17041C26.967 8.72017 27.4231 10.2746 27.5975 11.4344V11.4631C28.9205 15.0572 28.1995 18.7121 27.1612 20.9452C25.5548 24.4002 21.6658 27.9416 15.5778 27.7692C9.00557 27.5821 3.2115 22.6885 2.12945 16.2842C1.93229 15.2735 2.12945 14.7608 2.22862 13.9406C2.10787 14.5725 2.06179 14.7555 2.00171 15.8791V15.951C2.00171 23.7098 8.27817 30 16.0199 30C22.9538 30 28.7105 24.9549 29.8381 18.328C29.8614 18.1485 29.8806 17.9673 29.9016 17.7861C30.1787 15.3764 29.869 12.8439 28.9905 10.7265V10.7265Z" fill="url(#paint1_radial_449_13380)"/>
<path d="M28.9905 10.7265C28.3815 9.25741 27.1472 7.67141 26.1783 7.17041C26.967 8.72017 27.4231 10.2746 27.5975 11.4344V11.4631C28.9205 15.0572 28.1995 18.7121 27.1612 20.9452C25.5548 24.4002 21.6658 27.9416 15.5778 27.7692C9.00557 27.5821 3.2115 22.6885 2.12945 16.2842C1.93229 15.2735 2.12945 14.7608 2.22862 13.9406C2.10787 14.5725 2.06179 14.7555 2.00171 15.8791V15.951C2.00171 23.7098 8.27817 30 16.0199 30C22.9538 30 28.7105 24.9549 29.8381 18.328C29.8614 18.1485 29.8806 17.9673 29.9016 17.7861C30.1787 15.3764 29.869 12.8439 28.9905 10.7265V10.7265Z" fill="url(#paint2_radial_449_13380)"/>
<path d="M22.1781 12.3774C22.209 12.399 22.2364 12.4207 22.2656 12.4423C21.9138 11.8162 21.4754 11.2431 20.9636 10.74C16.6063 6.37304 19.8215 1.2707 20.3634 1.01114L20.3692 1.00354C16.8477 3.07067 15.6531 6.8945 15.5435 8.80788C15.7068 8.79677 15.8695 8.78274 16.0358 8.78274C18.6636 8.78274 20.9525 10.2314 22.1781 12.3774Z" fill="url(#paint3_radial_449_13380)"/>
<path d="M16.0445 13.2496C16.0218 13.6004 14.7898 14.8047 14.3587 14.8047C10.3724 14.8047 9.72546 17.2214 9.72546 17.2214C9.90046 19.2569 11.3156 20.933 13.0276 21.8198C13.1058 21.8601 13.1845 21.8964 13.2609 21.9326C13.398 21.9911 13.5357 22.0495 13.6728 22.1016C14.2599 22.3091 14.8747 22.4273 15.4968 22.4523C22.4837 22.7809 23.8382 14.0798 18.7954 11.5532C20.0863 11.3281 21.4268 11.849 22.1751 12.3757C20.9502 10.2296 18.6607 8.78101 16.0328 8.78101C15.8666 8.78101 15.7039 8.79504 15.5405 8.80614C14.1344 8.90378 12.7901 9.42366 11.6831 10.298C11.8971 10.4798 12.1386 10.7219 12.6467 11.2234C13.5998 12.1658 16.0393 13.1356 16.0445 13.2496V13.2496Z" fill="url(#paint4_radial_449_13380)"/>
<path d="M16.0445 13.2496C16.0218 13.6004 14.7898 14.8047 14.3587 14.8047C10.3724 14.8047 9.72546 17.2214 9.72546 17.2214C9.90046 19.2569 11.3156 20.933 13.0276 21.8198C13.1058 21.8601 13.1845 21.8964 13.2609 21.9326C13.398 21.9911 13.5357 22.0495 13.6728 22.1016C14.2599 22.3091 14.8747 22.4273 15.4968 22.4523C22.4837 22.7809 23.8382 14.0798 18.7954 11.5532C20.0863 11.3281 21.4268 11.849 22.1751 12.3757C20.9502 10.2296 18.6607 8.78101 16.0328 8.78101C15.8666 8.78101 15.7039 8.79504 15.5405 8.80614C14.1344 8.90378 12.7901 9.42366 11.6831 10.298C11.8971 10.4798 12.1386 10.7219 12.6467 11.2234C13.5998 12.1658 16.0393 13.1356 16.0445 13.2496V13.2496Z" fill="url(#paint5_radial_449_13380)"/>
<path d="M11.0314 9.83093C11.1452 9.90459 11.2385 9.96656 11.3231 10.0233C11.0037 8.90275 10.9902 7.71688 11.284 6.58936C9.84382 7.24702 8.72385 8.28468 7.90955 9.20308C7.97546 9.20132 10.0089 9.16449 11.0314 9.83093V9.83093Z" fill="url(#paint6_radial_449_13380)"/>
<path d="M2.12982 16.2842C3.21187 22.6884 9.00594 27.582 15.5828 27.7691C21.6709 27.9416 25.5575 24.4001 27.1663 20.9451C28.2046 18.7114 28.9255 15.0571 27.6026 11.463V11.4361C27.6026 11.4396 27.6026 11.4443 27.6055 11.4595C28.1025 14.7139 26.4511 17.8667 23.8694 19.9987C23.8667 20.0047 23.8642 20.0107 23.8618 20.0168C18.8307 24.1224 14.0166 22.4937 13.0419 21.829C12.9742 21.7963 12.906 21.7624 12.8383 21.7273C9.90482 20.3243 8.69328 17.6439 8.95285 15.3471C6.47668 15.3471 5.63204 13.253 5.63204 13.253C5.63204 13.253 7.85564 11.6641 10.7862 13.0461C13.5004 14.3264 16.0495 13.2536 16.0495 13.253C16.0442 13.1391 13.6048 12.1663 12.6534 11.2268C12.1453 10.7253 11.9038 10.4832 11.6898 10.3014C11.5739 10.2033 11.4528 10.1115 11.3269 10.0267C11.2435 9.96821 11.1519 9.90975 11.0353 9.83434C10.0127 9.1679 7.9793 9.20473 7.91222 9.20648H7.9058C7.3499 8.50088 7.38899 6.17361 7.42049 5.68781C7.41407 5.65741 7.00633 5.90002 6.95383 5.93685C6.46331 6.28755 6.00478 6.68116 5.58363 7.11305C5.10438 7.6 4.66654 8.12621 4.27467 8.68619C3.3731 9.96669 2.73372 11.4136 2.39348 12.9432C2.3824 12.9701 1.88366 15.1524 2.12982 16.2842V16.2842Z" fill="url(#paint7_radial_449_13380)"/>
<path d="M20.9636 10.7399C21.4754 11.2431 21.9137 11.8162 22.2655 12.4423C22.3384 12.4971 22.4085 12.5557 22.4755 12.6176C25.6534 15.55 23.991 19.7012 23.8644 19.9993C26.4461 17.8673 28.0975 14.7146 27.6005 11.4601C26.0157 7.49777 23.3277 5.90065 21.1327 2.42407C21.0213 2.24869 20.9105 2.07331 20.802 1.88566C20.7407 1.77985 20.6912 1.68397 20.648 1.59336C20.557 1.41757 20.4868 1.23179 20.4386 1.03975C20.439 1.03063 20.436 1.02169 20.4301 1.01467C20.4243 1.00765 20.4161 1.00305 20.4071 1.00175C20.3985 0.999416 20.3894 0.999416 20.3808 1.00175C20.3785 1.00281 20.3764 1.00419 20.3744 1.00584C20.3709 1.00584 20.3674 1.00994 20.3639 1.0111C19.8214 1.27066 16.6062 6.37301 20.9636 10.7399V10.7399Z" fill="url(#paint8_radial_449_13380)"/>
<path d="M22.4743 12.6147C22.4073 12.5528 22.3372 12.4942 22.2643 12.4394C22.2357 12.4177 22.206 12.3961 22.1768 12.3745C21.4284 11.8483 20.088 11.3269 18.7971 11.5519C23.8393 14.0786 22.4854 22.7797 15.4985 22.4511C14.8764 22.4261 14.2616 22.3079 13.6744 22.1004C13.5374 22.0489 13.3997 21.9922 13.2626 21.9314C13.1833 21.8952 13.1045 21.8589 13.0293 21.8186L13.0386 21.8244C14.0133 22.4909 18.8274 24.1196 23.8585 20.0122C23.8585 20.0122 23.8614 20.0046 23.8661 19.9941C23.9909 19.7012 25.6534 15.55 22.4743 12.6147Z" fill="url(#paint9_radial_449_13380)"/>
<path d="M9.72532 17.2214C9.72532 17.2214 10.3722 14.8047 14.3586 14.8047C14.7897 14.8047 16.0216 13.5992 16.0444 13.2497C16.0671 12.9001 13.4953 14.323 10.7811 13.0427C7.85055 11.6607 5.62695 13.2497 5.62695 13.2497C5.62695 13.2497 6.47159 15.3437 8.94776 15.3437C8.68819 17.6405 9.89973 20.3186 12.8332 21.7239C12.8986 21.7549 12.9604 21.7894 13.0275 21.8198C11.3154 20.9347 9.90207 19.2569 9.72532 17.2214Z" fill="url(#paint10_radial_449_13380)"/>
<path d="M28.9905 10.7265C28.3816 9.2574 27.1473 7.67139 26.1784 7.17039C26.967 8.72015 27.4232 10.2746 27.5976 11.4344C27.5976 11.4344 27.5976 11.4426 27.6005 11.4578C26.0156 7.49777 23.3277 5.90065 21.1327 2.42407C21.0213 2.24869 20.9105 2.07331 20.802 1.88566C20.7407 1.77985 20.6911 1.68397 20.648 1.59336C20.557 1.41757 20.4867 1.23179 20.4386 1.03975C20.439 1.03063 20.4359 1.02169 20.4301 1.01467C20.4243 1.00765 20.4161 1.00305 20.4071 1.00175C20.3985 0.999416 20.3894 0.999416 20.3808 1.00175C20.3785 1.00281 20.3763 1.00419 20.3744 1.00584C20.3709 1.00584 20.3674 1.00994 20.3639 1.0111L20.3697 1.0035C16.8483 3.07063 15.6536 6.89446 15.544 8.80784C15.7073 8.79673 15.8701 8.78271 16.0363 8.78271C18.6641 8.78271 20.9531 10.2313 22.1786 12.3774C21.4302 11.8512 20.0897 11.3298 18.7989 11.5549C23.841 14.0815 22.4872 22.7826 15.5002 22.454C14.8782 22.429 14.2633 22.3108 13.6762 22.1033C13.5391 22.0518 13.4015 21.9951 13.2644 21.9343C13.1851 21.8981 13.1063 21.8618 13.0311 21.8215L13.0404 21.8273C12.9727 21.7946 12.9045 21.7607 12.8368 21.7256C12.9021 21.7566 12.964 21.7911 13.0311 21.8215C11.3155 20.9347 9.90216 19.2569 9.72542 17.2213C9.72542 17.2213 10.3723 14.8046 14.3587 14.8046C14.7898 14.8046 16.0217 13.5992 16.0445 13.2496C16.0392 13.1356 13.5998 12.1628 12.6484 11.2234C12.1403 10.7218 11.8988 10.4798 11.6848 10.298C11.5689 10.1998 11.4478 10.1081 11.3219 10.0232C11.0026 8.9027 10.9891 7.71683 11.2829 6.58931C9.84266 7.24697 8.7227 8.28463 7.90839 9.20303H7.90198C7.34608 8.49742 7.38516 6.17015 7.41666 5.68435C7.41024 5.65395 7.00251 5.89656 6.95001 5.93339C6.45948 6.2841 6.00095 6.67771 5.5798 7.1096C5.10055 7.59655 4.66271 8.12276 4.27084 8.68274C3.36927 9.96323 2.72989 11.4101 2.38965 12.9398C2.38324 12.9702 2.3774 13.0017 2.37099 13.0327C2.34474 13.1561 2.22574 13.7839 2.20941 13.9184C2.20941 13.9289 2.20941 13.9084 2.20941 13.9184C2.10019 14.5671 2.03026 15.2219 2 15.8791V15.951C2 23.7097 8.27646 30 16.0182 30C22.9521 30 28.7088 24.9549 29.8364 18.328C29.8597 18.1485 29.8789 17.9673 29.8999 17.786C30.1788 15.3763 29.869 12.8439 28.9905 10.7265ZM27.5999 11.4479V11.4631V11.4479Z" fill="url(#paint11_linear_449_13380)"/>
<defs>
<linearGradient id="paint0_linear_449_13380" x1="27.135" y1="5.49261" x2="3.81392" y2="27.9437" gradientUnits="userSpaceOnUse">
<stop offset="0.05" stopColor="#FFF44F"/>
<stop offset="0.11" stopColor="#FFE847"/>
<stop offset="0.22" stopColor="#FFC830"/>
<stop offset="0.37" stopColor="#FF980E"/>
<stop offset="0.4" stopColor="#FF8B16"/>
<stop offset="0.46" stopColor="#FF672A"/>
<stop offset="0.53" stopColor="#FF3647"/>
<stop offset="0.7" stopColor="#E31587"/>
</linearGradient>
<radialGradient id="paint1_radial_449_13380" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(26.0593 4.21879) scale(29.2246 29.2888)">
<stop offset="0.13" stopColor="#FFBD4F"/>
<stop offset="0.19" stopColor="#FFAC31"/>
<stop offset="0.25" stopColor="#FF9D17"/>
<stop offset="0.28" stopColor="#FF980E"/>
<stop offset="0.4" stopColor="#FF563B"/>
<stop offset="0.47" stopColor="#FF3750"/>
<stop offset="0.71" stopColor="#F5156C"/>
<stop offset="0.78" stopColor="#EB0878"/>
<stop offset="0.86" stopColor="#E50080"/>
</radialGradient>
<radialGradient id="paint2_radial_449_13380" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(15.3806 16.1925) scale(29.2246 29.2888)">
<stop offset="0.3" stopColor="#960E18"/>
<stop offset="0.35" stopColor="#B11927" stop-opacity="0.74"/>
<stop offset="0.43" stopColor="#DB293D" stop-opacity="0.34"/>
<stop offset="0.5" stopColor="#F5334B" stop-opacity="0.09"/>
<stop offset="0.53" stopColor="#FF3750" stop-opacity="0"/>
</radialGradient>
<radialGradient id="paint3_radial_449_13380" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.9045 -2.42803) scale(21.172 21.2184)">
<stop offset="0.13" stopColor="#FFF44F"/>
<stop offset="0.25" stopColor="#FFDC3E"/>
<stop offset="0.51" stopColor="#FF9D12"/>
<stop offset="0.53" stopColor="#FF980E"/>
</radialGradient>
<radialGradient id="paint4_radial_449_13380" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(12.1486 23.8431) scale(13.915 13.9455)">
<stop offset="0.35" stopColor="#3A8EE6"/>
<stop offset="0.47" stopColor="#5C79F0"/>
<stop offset="0.67" stopColor="#9059FF"/>
<stop offset="1" stopColor="#C139E6"/>
</radialGradient>
<radialGradient id="paint5_radial_449_13380" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(15.8004 12.7116) rotate(-13.9265) scale(7.37316 8.67852)">
<stop offset="0.21" stopColor="#9059FF" stop-opacity="0"/>
<stop offset="0.28" stopColor="#8C4FF3" stop-opacity="0.06"/>
<stop offset="0.75" stopColor="#7716A8" stop-opacity="0.45"/>
<stop offset="0.97" stopColor="#6E008B" stop-opacity="0.6"/>
</radialGradient>
<radialGradient id="paint6_radial_449_13380" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(15.0114 3.02041) scale(10.0108 10.0328)">
<stop stopColor="#FFE226"/>
<stop offset="0.12" stopColor="#FFDB27"/>
<stop offset="0.3" stopColor="#FFC82A"/>
<stop offset="0.5" stopColor="#FFA930"/>
<stop offset="0.73" stopColor="#FF7E37"/>
<stop offset="0.79" stopColor="#FF7139"/>
</radialGradient>
<radialGradient id="paint7_radial_449_13380" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(22.8807 -3.34301) scale(42.7109 42.8046)">
<stop offset="0.11" stopColor="#FFF44F"/>
<stop offset="0.46" stopColor="#FF980E"/>
<stop offset="0.62" stopColor="#FF5634"/>
<stop offset="0.72" stopColor="#FF3647"/>
<stop offset="0.9" stopColor="#E31587"/>
</radialGradient>
<radialGradient id="paint8_radial_449_13380" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.7518 1.33374) rotate(84.2447) scale(31.1996 20.4543)">
<stop stopColor="#FFF44F"/>
<stop offset="0.06" stopColor="#FFE847"/>
<stop offset="0.17" stopColor="#FFC830"/>
<stop offset="0.3" stopColor="#FF980E"/>
<stop offset="0.36" stopColor="#FF8B16"/>
<stop offset="0.45" stopColor="#FF672A"/>
<stop offset="0.57" stopColor="#FF3647"/>
<stop offset="0.74" stopColor="#E31587"/>
</radialGradient>
<radialGradient id="paint9_radial_449_13380" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(14.7757 6.73605) scale(26.6644 26.723)">
<stop offset="0.14" stopColor="#FFF44F"/>
<stop offset="0.48" stopColor="#FF980E"/>
<stop offset="0.59" stopColor="#FF5634"/>
<stop offset="0.66" stopColor="#FF3647"/>
<stop offset="0.9" stopColor="#E31587"/>
</radialGradient>
<radialGradient id="paint10_radial_449_13380" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(21.8145 8.30047) scale(29.1844 29.2484)">
<stop offset="0.09" stopColor="#FFF44F"/>
<stop offset="0.23" stopColor="#FFE141"/>
<stop offset="0.51" stopColor="#FFAF1E"/>
<stop offset="0.63" stopColor="#FF980E"/>
</radialGradient>
<linearGradient id="paint11_linear_449_13380" x1="26.855" y1="5.37218" x2="7.01043" y2="25.1739" gradientUnits="userSpaceOnUse">
<stop offset="0.17" stopColor="#FFF44F" stop-opacity="0.8"/>
<stop offset="0.27" stopColor="#FFF44F" stop-opacity="0.63"/>
<stop offset="0.49" stopColor="#FFF44F" stop-opacity="0.22"/>
<stop offset="0.6" stopColor="#FFF44F" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_browser_firefox_mobile;

View file

@ -0,0 +1,24 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_google(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M30.0014 16.3109C30.0014 15.1598 29.9061 14.3198 29.6998 13.4487H16.2871V18.6442H24.1601C24.0014 19.9354 23.1442 21.8798 21.2394 23.1864L21.2127 23.3604L25.4536 26.58L25.7474 26.6087C28.4458 24.1665 30.0014 20.5731 30.0014 16.3109" fill="#4285F4"/>
<path d="M16.2862 30C20.1433 30 23.3814 28.7555 25.7465 26.6089L21.2386 23.1865C20.0322 24.011 18.4132 24.5866 16.2862 24.5866C12.5085 24.5866 9.30219 22.1444 8.15923 18.7688L7.9917 18.7827L3.58202 22.1272L3.52435 22.2843C5.87353 26.8577 10.6989 30 16.2862 30Z" fill="#34A853"/>
<path d="M8.16007 18.7688C7.85848 17.8977 7.68395 16.9643 7.68395 15.9999C7.68395 15.0354 7.85849 14.1021 8.1442 13.231L8.13621 13.0455L3.67126 9.64734L3.52518 9.71544C2.55696 11.6132 2.0014 13.7444 2.0014 15.9999C2.0014 18.2555 2.55696 20.3865 3.52518 22.2843L8.16007 18.7688" fill="#FBBC05"/>
<path d="M16.2863 7.4133C18.9688 7.4133 20.7783 8.54885 21.8101 9.4978L25.8418 5.64C23.3657 3.38445 20.1434 2 16.2863 2C10.699 2 5.87354 5.1422 3.52435 9.71549L8.14339 13.2311C9.30223 9.85555 12.5086 7.4133 16.2863 7.4133" fill="#EB4335"/>
</svg>
);
}
export default Color_browser_google;

View file

@ -0,0 +1,24 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_googlebot(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M30.0014 16.3109C30.0014 15.1598 29.9061 14.3198 29.6998 13.4487H16.2871V18.6442H24.1601C24.0014 19.9354 23.1442 21.8798 21.2394 23.1864L21.2127 23.3604L25.4536 26.58L25.7474 26.6087C28.4458 24.1665 30.0014 20.5731 30.0014 16.3109" fill="#4285F4"/>
<path d="M16.2863 30C20.1434 30 23.3814 28.7555 25.7466 26.6089L21.2386 23.1865C20.0323 24.011 18.4132 24.5866 16.2863 24.5866C12.5086 24.5866 9.30225 22.1444 8.15929 18.7688L7.99176 18.7827L3.58208 22.1272L3.52441 22.2843C5.87359 26.8577 10.699 30 16.2863 30Z" fill="#34A853"/>
<path d="M8.16013 18.7688C7.85855 17.8977 7.68401 16.9643 7.68401 15.9999C7.68401 15.0354 7.85855 14.1021 8.14426 13.231L8.13627 13.0455L3.67132 9.64734L3.52524 9.71544C2.55703 11.6132 2.00146 13.7444 2.00146 15.9999C2.00146 18.2555 2.55703 20.3865 3.52524 22.2843L8.16013 18.7688" fill="#FBBC05"/>
<path d="M16.2864 7.4133C18.9689 7.4133 20.7784 8.54885 21.8102 9.4978L25.8419 5.64C23.3658 3.38445 20.1435 2 16.2864 2C10.699 2 5.8736 5.1422 3.52441 9.71549L8.14345 13.2311C9.30229 9.85555 12.5086 7.4133 16.2864 7.4133" fill="#EB4335"/>
</svg>
);
}
export default Color_browser_googlebot;

View file

@ -0,0 +1,22 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_huawei_browser(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32">
<rect width="32" height="32" rx="16" fill="#CE0E2D"/>
<path d="M14.2639 21.2839C14.291 21.2635 14.2978 21.2228 14.2843 21.1889C12.4129 17.1666 10.0783 13.3767 7.32795 9.89589C7.32795 9.89589 5.14266 11.9726 5.29875 14.0561C5.33531 14.5364 5.46622 15.0049 5.68399 15.4346C5.90175 15.8643 6.2021 16.2468 6.56785 16.5604C8.4749 18.4199 13.0898 20.7681 14.1621 21.3042C14.196 21.3178 14.2368 21.311 14.2639 21.2839ZM13.5513 22.8719C13.5377 22.8312 13.497 22.8041 13.4495 22.8041L5.76703 23.0687C6.60178 24.555 8.00662 25.7088 9.46574 25.3558C10.477 25.1047 12.7573 23.5099 13.5106 22.9669C13.5717 22.9194 13.5513 22.8787 13.5513 22.8719ZM13.6667 22.1865C13.7074 22.1254 13.6395 22.0711 13.6395 22.0711C10.2666 19.7908 3.72425 16.2889 3.72425 16.2889C3.5074 16.9536 3.44674 17.6593 3.54698 18.3512C3.64722 19.0431 3.90566 19.7026 4.30221 20.2783C4.69876 20.8541 5.22275 21.3307 5.83344 21.6711C6.44414 22.0114 7.12509 22.2064 7.82338 22.2408C7.93875 22.2611 12.3908 22.2408 13.5852 22.234C13.6192 22.2272 13.6463 22.2136 13.6667 22.1865ZM14.1757 6.57722C13.8431 6.60437 12.9405 6.81475 12.9405 6.81475C10.9045 7.33732 10.4227 9.19008 10.4227 9.19008C10.0494 10.3506 10.4294 11.6333 10.4294 11.6333C11.1081 14.6465 14.4471 19.6076 15.1665 20.6459C15.214 20.7002 15.2547 20.6799 15.2547 20.6799C15.2955 20.6663 15.3294 20.6323 15.3294 20.5848C16.4424 9.50905 14.1757 6.57722 14.1757 6.57722ZM16.7207 20.6663C16.7614 20.6799 16.8089 20.6663 16.8292 20.6256C17.569 19.5601 20.8877 14.6262 21.5663 11.6265C21.5663 11.6265 21.9328 10.1741 21.5799 9.18329C21.5799 9.18329 21.0777 7.30339 19.0417 6.80797C19.0417 6.80797 18.458 6.65866 17.8337 6.57043C17.8337 6.57043 15.5534 9.50226 16.6664 20.5781C16.6596 20.6188 16.6867 20.6527 16.7207 20.6663ZM18.5395 22.8109C18.5214 22.8145 18.5042 22.8218 18.4891 22.8323C18.4739 22.8428 18.461 22.8563 18.4513 22.8719C18.4445 22.9127 18.4513 22.9466 18.4784 22.9737C19.2114 23.5031 21.4442 25.064 22.5164 25.3626C22.5164 25.3626 24.5049 26.0413 26.2287 23.0755L18.5395 22.8109ZM28.2783 16.2753C28.2783 16.2753 21.7496 19.784 18.3698 22.0643C18.3359 22.0915 18.3155 22.1322 18.3291 22.1729C18.3291 22.1729 18.363 22.234 18.4105 22.234C19.6186 22.234 24.1927 22.2408 24.3149 22.2204C24.7696 22.1865 25.2175 22.0847 25.6383 21.915C25.6383 21.915 27.2671 21.3992 28.1086 19.5465C28.1086 19.5465 28.862 18.0399 28.2783 16.2753ZM17.7522 21.2839C17.7794 21.3042 17.8201 21.311 17.854 21.2906C18.9535 20.7409 23.5344 18.4131 25.4279 16.5604C25.4279 16.5604 26.6291 15.5967 26.6902 14.0425C26.826 11.8912 24.661 9.89589 24.661 9.89589C24.661 9.89589 20.6569 14.7483 17.7183 21.1617C17.7136 21.1833 17.7142 21.2057 17.7201 21.227C17.726 21.2483 17.7371 21.2678 17.7522 21.2839Z" fill="white"/>
</svg>
);
}
export default Color_browser_huawei_browser;

View file

@ -0,0 +1,21 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_internet_explorer(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M28.4247 10.4547C32.7037 0.58468 23.8399 2.03027 23.3463 2.12873C21.4684 2.50329 19.731 3.10454 18.1285 3.86681C12.0215 3.51526 6.48276 7.85253 5.14644 13.7968C8.29872 10.1926 10.5047 8.73827 11.8258 8.15642C7.94624 11.694 4.10934 16.3198 2.6958 21.4678C-0.859433 34.4159 10.2883 29.003 11.8473 28.1807C13.5259 29.026 15.4156 29.5017 17.4148 29.5017C22.8876 29.5017 27.5439 25.9412 29.2771 20.9692H22.6638C21.6853 22.6541 19.8014 23.7953 17.6371 23.7953C14.466 23.7953 11.8954 21.3466 11.8954 18.3259H29.8975C30.2378 15.629 29.7267 12.8439 28.4247 10.4547ZM27.6499 4.05024C28.7338 4.7959 29.6031 5.96674 28.1102 9.91C26.6782 7.56298 24.524 5.72187 21.9635 4.70993C23.1283 4.13666 26.0127 2.92401 27.6499 4.05024ZM4.61614 28.1545C3.73321 27.2318 3.5772 24.9845 5.52532 20.8893C6.50836 23.7701 8.47016 26.184 11.0058 27.7159C9.74477 28.4234 6.39687 30.0162 4.61614 28.1545ZM11.8676 14.818C11.9683 11.8821 14.4753 9.53143 17.5554 9.53143C20.6356 9.53143 23.1427 11.8821 23.2434 14.818H11.8676Z" fill="#1EBBEE"/>
</svg>
);
}
export default Color_browser_internet_explorer;

View file

@ -0,0 +1,28 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_miui_browser(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32">
<g clipPath="url(#clip0_450_13847)">
<path d="M13.1934 0.154182C9.24919 0.334913 6.8678 0.951524 4.83723 2.31232C3.39138 3.26913 2.32826 4.51299 1.56281 6.1502C0.722946 7.94687 0.350853 9.92428 0.191384 13.6027C2.22069e-05 17.717 0.276434 21.8206 0.893045 24C1.44587 25.9774 2.32826 27.4871 3.67843 28.7522C5.34753 30.3043 7.21863 31.123 10.121 31.5588C12.7788 31.9522 18.9342 31.9735 21.6239 31.6014C24.8984 31.1548 26.9821 30.2299 28.6937 28.4545C29.5442 27.5828 29.9376 27.0087 30.4904 25.8499C31.3515 24.0319 31.7023 22.1502 31.8724 18.3867C32 15.697 31.8724 11.8698 31.6067 10.0838C30.9794 5.89505 29.1934 3.17345 26.0784 1.60003C24.4306 0.781425 22.0067 0.303019 18.6366 0.143551C16.0957 0.0266075 15.7555 0.0266075 13.1934 0.154182ZM17.1163 10.0625C18.5196 10.3921 19.2 10.8598 19.6465 11.8166C20.1037 12.7947 20.1781 13.6027 20.1781 18.0146V22.1608L18.6685 22.1289L17.1482 22.097L17.095 18.0572C17.0419 13.6452 17.0206 13.507 16.404 13.0286C15.8512 12.5927 15.3834 12.5396 12.3641 12.5289H9.49371L9.44055 17.313L9.3874 22.097H6.41065L6.37876 16.0479C6.3575 11.2744 6.38939 9.96681 6.48507 9.90302C6.55949 9.84986 8.82394 9.8286 11.5136 9.84986C15.4578 9.89239 16.5422 9.93491 17.1163 10.0625ZM25.4724 9.9987C25.5469 10.1475 25.5788 21.7037 25.5043 22.0758C25.5043 22.1183 24.8133 22.1396 23.9841 22.1289L22.4638 22.097L22.4319 16.101C22.4213 11.7635 22.4425 10.0625 22.5276 9.96681C22.6233 9.84986 22.9954 9.81797 24.016 9.81797C25.2067 9.81797 25.3874 9.83923 25.4724 9.9987ZM14.8625 18.3761V22.1608L13.2997 22.1289L11.7263 22.097L11.6944 18.4824C11.6837 16.4944 11.6944 14.804 11.7263 14.7402C11.7582 14.6339 12.1728 14.602 13.321 14.602H14.8625V18.3761Z" fill="#FF6600"/>
</g>
<defs>
<clipPath id="clip0_450_13847">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>
);
}
export default Color_browser_miui_browser;

View file

@ -0,0 +1,171 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_mobile_safari(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M16 30C23.732 30 30 23.732 30 16C30 8.26801 23.732 2 16 2C8.26801 2 2 8.26801 2 16C2 23.732 8.26801 30 16 30Z" fill="url(#paint0_linear_449_13224)"/>
<path d="M16 28.9499C23.1521 28.9499 28.9501 23.152 28.9501 15.9999C28.9501 8.84784 23.1521 3.04993 16 3.04993C8.84796 3.04993 3.05005 8.84784 3.05005 15.9999C3.05005 23.152 8.84796 28.9499 16 28.9499Z" fill="url(#paint1_radial_449_13224)"/>
<path d="M16.0219 6.20007C15.9345 6.20007 15.8579 6.13447 15.8579 6.04697V3.76101C15.8579 3.67351 15.9345 3.60791 16.0219 3.60791C16.1094 3.60791 16.186 3.67351 16.186 3.76101V6.04697C16.175 6.13447 16.1094 6.20007 16.0219 6.20007Z" fill="#F3F3F3"/>
<path d="M16.0219 6.21096C15.9235 6.21096 15.8469 6.13441 15.8469 6.04691V3.76097C15.8469 3.67347 15.9235 3.59692 16.0219 3.59692C16.1204 3.59692 16.1969 3.67347 16.1969 3.76097V6.04691C16.1969 6.13441 16.1094 6.21096 16.0219 6.21096ZM16.0219 3.61871C15.9454 3.61871 15.8688 3.68442 15.8688 3.76097V6.04691C15.8688 6.12346 15.9344 6.18917 16.0219 6.18917C16.0985 6.18917 16.175 6.12346 16.175 6.04691V3.76097C16.1642 3.68442 16.0985 3.61871 16.0219 3.61871V3.61871Z" fill="white"/>
<path d="M17.1157 4.97506C17.0282 4.96411 16.9626 4.89851 16.9626 4.81101L17.0392 3.79373C17.05 3.70634 17.1267 3.64063 17.2142 3.65158C17.3017 3.66254 17.3673 3.72825 17.3673 3.81575L17.2907 4.83291C17.2798 4.92041 17.2032 4.98601 17.1157 4.97517V4.97506Z" fill="#F3F3F3"/>
<path d="M17.1157 4.98592C17.0173 4.97496 16.9517 4.89842 16.9517 4.81092L17.0282 3.79365C17.0392 3.70626 17.1157 3.62971 17.2142 3.64055C17.3125 3.65151 17.3782 3.72817 17.3782 3.81555L17.3017 4.83282C17.2907 4.93127 17.2142 4.99687 17.1157 4.98592ZM17.2142 3.66246C17.1376 3.66246 17.061 3.71722 17.061 3.79376L16.9844 4.81103C16.9844 4.88746 17.0392 4.95317 17.1267 4.96401C17.2032 4.96401 17.2798 4.90937 17.2798 4.83282L17.3563 3.81555C17.3563 3.73901 17.2907 3.67341 17.214 3.66246H17.2142Z" fill="white"/>
<path d="M17.9359 6.39693C17.8483 6.37502 17.7937 6.29847 17.8046 6.21097L18.253 3.9687C18.2749 3.88131 18.3515 3.82656 18.439 3.84846C18.5265 3.87036 18.5811 3.94691 18.5702 4.03441L18.1217 6.27668C18.1108 6.35312 18.0233 6.40788 17.9358 6.39693H17.9359Z" fill="#F3F3F3"/>
<path d="M17.9361 6.40784C17.8376 6.38593 17.7829 6.29843 17.7939 6.21093L18.2423 3.96869C18.2642 3.8813 18.3517 3.81559 18.45 3.8375C18.5484 3.8594 18.6032 3.9469 18.5923 4.0344L18.1438 6.27664C18.1219 6.36403 18.0344 6.41879 17.9361 6.40784ZM18.45 3.8594C18.3735 3.84845 18.2969 3.89214 18.275 3.9688L17.8267 6.21105C17.8158 6.28748 17.8595 6.36403 17.9469 6.38605C18.0235 6.39689 18.1 6.35308 18.1219 6.27653L18.5704 4.0344C18.5813 3.9469 18.5267 3.8813 18.45 3.8594V3.8594Z" fill="white"/>
<path d="M19.2484 5.41251C19.2275 5.40749 19.2079 5.39841 19.1906 5.3858C19.1733 5.37318 19.1586 5.35727 19.1474 5.33899C19.1363 5.3207 19.1288 5.30039 19.1255 5.27922C19.1222 5.25805 19.1231 5.23643 19.1281 5.21561L19.4016 4.23132C19.4234 4.14382 19.5109 4.10001 19.5984 4.12192C19.6859 4.14382 19.7406 4.23132 19.7187 4.31882L19.4453 5.30322C19.4234 5.39061 19.3359 5.43442 19.2484 5.41251Z" fill="#F3F3F3"/>
<path d="M19.2485 5.42352C19.161 5.40161 19.0954 5.30316 19.1282 5.21578L19.4017 4.23127C19.4234 4.14389 19.5219 4.08913 19.6094 4.11103C19.6969 4.13293 19.7625 4.23139 19.7297 4.31877L19.4563 5.30328C19.4344 5.39066 19.3469 5.44542 19.2486 5.42352H19.2485ZM19.6094 4.14389C19.5328 4.12198 19.4454 4.16579 19.4235 4.24234L19.1501 5.22662C19.1282 5.30316 19.1719 5.37982 19.2594 5.40161C19.336 5.42352 19.4235 5.37982 19.4454 5.30328L19.7188 4.31877C19.7297 4.24234 19.686 4.16579 19.6094 4.14377V4.14389Z" fill="white"/>
<path d="M19.7845 6.95474C19.697 6.92188 19.6643 6.82343 19.697 6.74688L20.572 4.63594C20.6047 4.5594 20.7033 4.51559 20.7797 4.5594C20.8673 4.59214 20.9002 4.6907 20.8673 4.76714L19.9924 6.87808C19.9596 6.95474 19.8611 6.99843 19.7846 6.95474H19.7845Z" fill="#F3F3F3"/>
<path d="M19.7845 6.96578C19.7424 6.94977 19.7085 6.91774 19.69 6.87673C19.6716 6.83571 19.6701 6.78905 19.686 6.74698L20.561 4.63601C20.5939 4.54851 20.6923 4.51565 20.7908 4.54851C20.8328 4.56453 20.8668 4.59655 20.8852 4.63757C20.9037 4.67858 20.9051 4.72524 20.8892 4.76732L20.0142 6.87828C19.9704 6.96578 19.872 7.00948 19.7845 6.96578ZM20.7798 4.57041C20.7033 4.53767 20.6158 4.57041 20.5829 4.64696L19.7079 6.75793C19.6752 6.83448 19.7189 6.91103 19.7954 6.94388C19.872 6.97662 19.9595 6.94388 19.9923 6.86733L20.8673 4.75637C20.8892 4.69066 20.8564 4.60316 20.7798 4.57041V4.57041Z" fill="white"/>
<path d="M21.261 6.25474C21.1843 6.21093 21.1515 6.12343 21.1843 6.04689L21.6437 5.13916C21.6873 5.0625 21.7748 5.02965 21.8624 5.07345C21.939 5.11726 21.9717 5.20476 21.939 5.28119L21.4795 6.18903C21.4358 6.26558 21.3483 6.29854 21.2609 6.25474H21.261Z" fill="#F3F3F3"/>
<path d="M21.2611 6.26577C21.1735 6.22197 21.1407 6.12351 21.1844 6.03601L21.6439 5.12828C21.6875 5.04067 21.7861 5.00792 21.8735 5.05162C21.961 5.09542 21.9939 5.19388 21.9501 5.28137L21.4907 6.18911C21.4469 6.27661 21.3485 6.30946 21.261 6.26566L21.2611 6.26577ZM21.8627 5.07352C21.786 5.04078 21.6985 5.06257 21.6658 5.13912L21.2063 6.04697C21.1736 6.11256 21.2063 6.20006 21.2719 6.24387C21.3485 6.27661 21.436 6.25482 21.4688 6.17827L21.9283 5.27042C21.961 5.20483 21.9283 5.11733 21.8627 5.07352Z" fill="white"/>
<path d="M21.4798 7.87353C21.4032 7.81888 21.3813 7.72043 21.436 7.65483L22.7048 5.76256C22.7485 5.68601 22.847 5.67506 22.9235 5.71887C23.0001 5.77351 23.0219 5.87196 22.9673 5.93756L21.6985 7.82983C21.6548 7.90638 21.5563 7.92828 21.4798 7.87353Z" fill="#F3F3F3"/>
<path d="M21.4798 7.88442C21.4033 7.82977 21.3814 7.72037 21.4252 7.64382L22.6939 5.75161C22.7485 5.67506 22.847 5.65316 22.9345 5.70791C23.011 5.76256 23.0329 5.87196 22.9892 5.94851L21.7204 7.84072C21.6658 7.91727 21.5564 7.93906 21.4798 7.88442ZM22.9235 5.72982C22.858 5.68601 22.7595 5.69696 22.7158 5.76256L21.447 7.65478C21.4033 7.72026 21.4251 7.80787 21.4908 7.85156C21.5564 7.89537 21.6548 7.88442 21.6985 7.81882L22.9673 5.93755C23.011 5.87196 22.9892 5.77351 22.9235 5.72982V5.72982Z" fill="white"/>
<path d="M23.0766 7.46886C23.0112 7.4141 22.9893 7.31565 23.0439 7.25005L23.6782 6.4516C23.7329 6.38612 23.8313 6.37505 23.8969 6.42981C23.9626 6.48445 23.9844 6.58291 23.9297 6.6485L23.2954 7.44695C23.2408 7.51255 23.1423 7.5235 23.0768 7.46886H23.0766Z" fill="#F3F3F3"/>
<path d="M23.0657 7.47974C22.9892 7.42498 22.9783 7.31557 23.033 7.23902L23.6673 6.44066C23.7219 6.364 23.8313 6.35305 23.9079 6.41876C23.9844 6.4734 23.9954 6.58281 23.9406 6.65936L23.3063 7.45783C23.2517 7.53439 23.1423 7.54534 23.0657 7.47974V7.47974ZM23.886 6.44055C23.8205 6.3859 23.7329 6.39685 23.6782 6.46245L23.0438 7.26093C23.0002 7.32652 23.0111 7.41403 23.0766 7.46867C23.1423 7.52343 23.2298 7.51248 23.2844 7.44688L23.9188 6.64841C23.9626 6.58281 23.9515 6.48436 23.8861 6.44066L23.886 6.44055Z" fill="white"/>
<path d="M22.9672 9.10941C22.9016 9.04382 22.9016 8.94537 22.9672 8.89061L24.5858 7.28289C24.6515 7.2173 24.7498 7.22814 24.8046 7.28289C24.8592 7.33754 24.8702 7.44694 24.8046 7.50158L23.1969 9.10941C23.1312 9.17501 23.0328 9.17501 22.9672 9.10941V9.10941Z" fill="#F3F3F3"/>
<path d="M22.9562 9.12037C22.9247 9.08828 22.907 9.04508 22.907 9.00007C22.907 8.95507 22.9247 8.91187 22.9562 8.87978L24.5749 7.27193C24.607 7.24035 24.6503 7.22266 24.6953 7.22266C24.7403 7.22266 24.7836 7.24035 24.8157 7.27193C24.8472 7.30403 24.8649 7.34723 24.8649 7.39223C24.8649 7.43723 24.8472 7.48044 24.8157 7.51253L23.1968 9.12026C23.1647 9.1518 23.1215 9.16948 23.0765 9.16948C23.0315 9.16948 22.9883 9.1518 22.9562 9.12026V9.12037ZM24.8047 7.28289C24.7501 7.22813 24.6516 7.22813 24.597 7.28289L22.9781 8.89062C22.9234 8.94537 22.9234 9.04382 22.9781 9.09847C23.0328 9.15323 23.1312 9.15323 23.1859 9.09847L24.8047 7.49074C24.8593 7.43598 24.8593 7.34848 24.8047 7.28289Z" fill="white"/>
<path d="M24.6078 9.02192C24.5532 8.95633 24.5532 8.85788 24.6188 8.80312L25.3953 8.14695C25.4609 8.09231 25.5593 8.10315 25.6141 8.16885C25.6687 8.23445 25.6687 8.3329 25.6031 8.38754L24.8266 9.04382C24.7609 9.09847 24.6625 9.08752 24.6078 9.02192Z" fill="#F3F3F3"/>
<path d="M24.5968 9.03285C24.5312 8.95631 24.5422 8.8469 24.6077 8.79226L25.3842 8.13596C25.4498 8.07036 25.5592 8.08131 25.6248 8.15786C25.6905 8.23441 25.6796 8.34381 25.614 8.39846L24.8374 9.05476C24.7719 9.12024 24.6624 9.1094 24.5969 9.03285H24.5968ZM25.603 8.16881C25.5483 8.10322 25.4608 8.10322 25.3953 8.14691L24.6187 8.80321C24.5641 8.85786 24.5531 8.94535 24.6077 9.01095C24.6624 9.07655 24.75 9.07655 24.8155 9.03285L25.5921 8.37655C25.6577 8.32191 25.6577 8.23441 25.603 8.16881Z" fill="white"/>
<path d="M24.1704 10.597C24.1157 10.5204 24.1376 10.422 24.2142 10.3782L26.1172 9.10946C26.1937 9.06565 26.2922 9.08756 26.3358 9.15327C26.3906 9.22982 26.3687 9.32827 26.2922 9.37196L24.3891 10.6407C24.3234 10.6845 24.225 10.6626 24.1704 10.597V10.597Z" fill="#F3F3F3"/>
<path d="M24.1594 10.5969C24.1047 10.5204 24.1266 10.411 24.2032 10.3563L26.1063 9.08751C26.1828 9.03287 26.2922 9.05477 26.3469 9.14227C26.4016 9.21882 26.3796 9.32822 26.3032 9.38275L24.4001 10.6517C24.3234 10.7064 24.2141 10.6845 24.1594 10.597V10.5969ZM26.325 9.16417C26.2813 9.09847 26.1938 9.07656 26.1282 9.12037L24.225 10.389C24.1595 10.4329 24.1375 10.5204 24.1922 10.5969C24.2359 10.6625 24.3234 10.6844 24.3891 10.6407L26.2922 9.37191C26.3578 9.31727 26.3688 9.22966 26.325 9.16417Z" fill="white"/>
<path d="M25.8002 10.8266C25.7564 10.7499 25.7783 10.6516 25.8548 10.6078L26.7408 10.1047C26.8173 10.0609 26.9158 10.0938 26.9595 10.1702C27.0033 10.2469 26.9814 10.3452 26.9048 10.389L26.0189 10.8922C25.9423 10.9359 25.8439 10.9031 25.8001 10.8265L25.8002 10.8266Z" fill="#F3F3F3"/>
<path d="M25.7893 10.8375C25.7455 10.75 25.7674 10.6515 25.8439 10.6078L26.7299 10.1047C26.8065 10.0609 26.9159 10.0938 26.9596 10.1702C27.0034 10.2578 26.9815 10.3563 26.9049 10.4L26.0189 10.9032C25.9424 10.9469 25.833 10.914 25.7893 10.8375V10.8375ZM26.9486 10.1813C26.9049 10.1047 26.8174 10.0828 26.7518 10.1265L25.8658 10.6297C25.8003 10.6734 25.7783 10.7609 25.8111 10.8265C25.8549 10.9031 25.9424 10.925 26.008 10.8813L26.894 10.3781C26.9596 10.3453 26.9815 10.2578 26.9486 10.1813V10.1813Z" fill="white"/>
<path d="M25.0673 12.2813C25.0345 12.1938 25.0673 12.1063 25.1548 12.0735L27.2657 11.1986C27.3422 11.1657 27.4407 11.2094 27.4734 11.2859C27.5063 11.3734 27.4734 11.4609 27.3859 11.4937L25.2751 12.3687C25.1985 12.4015 25.1001 12.3687 25.0673 12.2813Z" fill="#F3F3F3"/>
<path d="M25.0563 12.2922C25.0235 12.2048 25.0563 12.1063 25.1438 12.0625L27.2547 11.1876C27.2968 11.1717 27.3434 11.1732 27.3844 11.1916C27.4254 11.2101 27.4574 11.244 27.4734 11.286C27.5062 11.3735 27.4734 11.4719 27.3859 11.5156L25.2751 12.3906C25.233 12.4065 25.1864 12.4051 25.1454 12.3866C25.1043 12.3682 25.0723 12.3343 25.0563 12.2923V12.2922ZM27.4516 11.297C27.4187 11.2204 27.3312 11.1876 27.2657 11.2095L25.1547 12.0844C25.0782 12.1172 25.0453 12.2048 25.0782 12.2813C25.1109 12.3579 25.1984 12.3907 25.2641 12.3688L27.3749 11.4938C27.4516 11.4611 27.4845 11.3735 27.4516 11.297Z" fill="white"/>
<path d="M26.6095 12.8283C26.5768 12.7406 26.6204 12.6533 26.7079 12.6204L27.6703 12.3031C27.7469 12.2704 27.8453 12.325 27.8672 12.4016C27.9 12.4891 27.8563 12.5766 27.7688 12.6094L26.8064 12.9267C26.7298 12.9594 26.6423 12.9158 26.6095 12.8281V12.8283Z" fill="#F3F3F3"/>
<path d="M26.5984 12.839C26.5656 12.7515 26.6093 12.6531 26.7079 12.6203L27.6702 12.3031C27.7577 12.2703 27.8561 12.325 27.889 12.4126C27.9217 12.5 27.878 12.5984 27.7795 12.6313L26.8172 12.9485C26.7297 12.9703 26.6312 12.9265 26.5984 12.839ZM27.8671 12.4235C27.8452 12.3469 27.7577 12.3031 27.6811 12.325L26.7187 12.6422C26.6422 12.664 26.6093 12.7515 26.6312 12.8282C26.6531 12.9047 26.7406 12.9484 26.8172 12.9265L27.7796 12.6094C27.8561 12.5766 27.889 12.5 27.8671 12.4234V12.4235Z" fill="white"/>
<path d="M25.6252 14.1297C25.6033 14.0422 25.6579 13.9547 25.7454 13.9438L27.9875 13.5063C28.0749 13.4844 28.1516 13.55 28.1734 13.6375C28.1953 13.725 28.1406 13.8125 28.0531 13.8234L25.811 14.2609C25.7235 14.2719 25.636 14.2172 25.6251 14.1297H25.6252Z" fill="#F3F3F3"/>
<path d="M25.6031 14.1299C25.5812 14.0314 25.6468 13.9439 25.7343 13.922L27.9766 13.4844C28.0641 13.4625 28.1516 13.5283 28.1734 13.6267C28.1953 13.7251 28.1297 13.8126 28.0422 13.8345L25.7999 14.272C25.7125 14.2939 25.6249 14.2283 25.6031 14.1297V14.1299ZM28.1516 13.6376C28.1406 13.561 28.0641 13.5064 27.9875 13.5173L25.7453 13.9548C25.6687 13.9658 25.6141 14.0532 25.6359 14.1299C25.6468 14.2064 25.7234 14.2611 25.8 14.2501L28.0422 13.8126C28.1187 13.7907 28.1734 13.7141 28.1516 13.6376Z" fill="white"/>
<path d="M27.0251 14.9719C27.0141 14.8844 27.0688 14.8078 27.1563 14.7968L28.1624 14.6765C28.2499 14.6656 28.3266 14.7312 28.3374 14.8187C28.3484 14.9063 28.2938 14.9828 28.2063 14.9938L27.2 15.114C27.1234 15.125 27.0359 15.0594 27.025 14.9719H27.0251Z" fill="#F3F3F3"/>
<path d="M27.0141 14.9719C27.0032 14.8734 27.0688 14.7859 27.1563 14.775L28.1624 14.6548C28.2499 14.6438 28.3374 14.7094 28.3484 14.8078C28.3593 14.9063 28.2937 14.9938 28.2062 15.0047L27.2 15.125C27.1126 15.1359 27.025 15.0703 27.0141 14.9719ZM28.3374 14.8188C28.3266 14.7423 28.25 14.6765 28.1734 14.6875L27.1672 14.8078C27.0907 14.8188 27.0359 14.8953 27.0469 14.9719C27.0578 15.0484 27.1344 15.1141 27.2109 15.1032L28.2172 14.9828C28.2937 14.9719 28.3484 14.8953 28.3375 14.8188H28.3374Z" fill="white"/>
<path d="M25.8003 16.0328C25.8003 15.9453 25.8658 15.8688 25.9534 15.8688H28.2393C28.3268 15.8688 28.3924 15.9453 28.3924 16.0328C28.3924 16.1203 28.3268 16.1969 28.2393 16.1969H25.9534C25.8659 16.1969 25.8003 16.1203 25.8003 16.0328Z" fill="#F3F3F3"/>
<path d="M25.7893 16.0329C25.7893 15.9345 25.8659 15.8579 25.9534 15.8579H28.2393C28.3268 15.8579 28.4034 15.9345 28.4034 16.0329C28.4034 16.1313 28.3268 16.2079 28.2393 16.2079H25.9534C25.8659 16.2079 25.7893 16.1313 25.7893 16.0329ZM28.3815 16.0439C28.3815 15.9673 28.3159 15.8908 28.2392 15.8908H25.9535C25.8769 15.8908 25.8112 15.9562 25.8112 16.0439C25.8112 16.1204 25.8769 16.1969 25.9535 16.1969H28.2394C28.316 16.186 28.3816 16.1204 28.3816 16.0439H28.3815Z" fill="white"/>
<path d="M27.0142 17.1375C27.025 17.05 27.0907 16.9844 27.1782 16.9844L28.1954 17.0609C28.2828 17.0719 28.3484 17.1484 28.3374 17.2359C28.3266 17.3234 28.2609 17.389 28.1734 17.389L27.1563 17.3125C27.0797 17.3015 27.014 17.225 27.014 17.1375H27.0142Z" fill="#F3F3F3"/>
<path d="M27.0032 17.1376C27.0141 17.0391 27.0907 16.9735 27.1782 16.9735L28.1955 17.0501C28.2829 17.061 28.3595 17.1376 28.3485 17.236C28.3377 17.3345 28.261 17.4001 28.1735 17.4001L27.1563 17.3235C27.0688 17.3126 27.0032 17.2251 27.0032 17.1376ZM28.3377 17.236C28.3485 17.1595 28.2829 17.0829 28.2064 17.0829L27.189 17.0064C27.1126 17.0064 27.0469 17.061 27.0359 17.1486C27.0251 17.2251 27.0907 17.3016 27.1672 17.3016L28.1846 17.3782C28.261 17.3782 28.3267 17.3127 28.3377 17.236V17.236Z" fill="white"/>
<path d="M25.6033 17.936C25.6252 17.8485 25.7018 17.7937 25.7893 17.8048L28.0315 18.2532C28.119 18.275 28.1737 18.3516 28.1518 18.4391C28.1299 18.5266 28.0534 18.5813 27.9659 18.5704L25.7236 18.1219C25.647 18.111 25.5924 18.0235 25.6033 17.936V17.936Z" fill="#F3F3F3"/>
<path d="M25.5921 17.936C25.614 17.8375 25.7015 17.7829 25.789 17.7937L28.0313 18.2422C28.1188 18.264 28.1844 18.3515 28.1625 18.45C28.1407 18.5484 28.0532 18.6032 27.9657 18.5922L25.7233 18.1438C25.6358 18.1219 25.5811 18.0344 25.5921 17.9361V17.936ZM28.1407 18.45C28.1517 18.3734 28.108 18.2969 28.0313 18.275L25.7889 17.8266C25.7125 17.8157 25.6358 17.8594 25.6139 17.9469C25.603 18.0235 25.6467 18.1 25.7234 18.1219L27.9657 18.5703C28.0532 18.5813 28.1188 18.5265 28.1407 18.45Z" fill="white"/>
<path d="M26.5876 19.2485C26.5926 19.2277 26.6017 19.208 26.6143 19.1907C26.6269 19.1734 26.6428 19.1587 26.661 19.1476C26.6793 19.1364 26.6996 19.1289 26.7208 19.1256C26.7419 19.1223 26.7635 19.1232 26.7844 19.1282L27.7687 19.4016C27.8562 19.4235 27.8999 19.5111 27.8781 19.5985C27.8731 19.6193 27.8641 19.639 27.8515 19.6563C27.8388 19.6737 27.8229 19.6883 27.8046 19.6995C27.7864 19.7107 27.766 19.7182 27.7449 19.7215C27.7237 19.7248 27.7021 19.7239 27.6812 19.7189L26.6969 19.4454C26.6094 19.4235 26.5657 19.336 26.5875 19.2485H26.5876Z" fill="#F3F3F3"/>
<path d="M26.5767 19.2485C26.5986 19.161 26.697 19.0954 26.7845 19.1282L27.7689 19.4015C27.8564 19.4234 27.9112 19.5219 27.8893 19.6094C27.8673 19.6969 27.7689 19.7624 27.6814 19.7297L26.697 19.4563C26.6095 19.4344 26.5548 19.3469 26.5768 19.2486L26.5767 19.2485ZM27.8564 19.6094C27.8783 19.5328 27.8345 19.4453 27.7579 19.4234L26.7736 19.15C26.697 19.1281 26.6205 19.1719 26.5986 19.2594C26.5768 19.336 26.6205 19.4234 26.697 19.4453L27.6814 19.7188C27.7579 19.7297 27.8345 19.686 27.8564 19.6094Z" fill="white"/>
<path d="M25.0453 19.7735C25.0781 19.686 25.1766 19.6531 25.2531 19.686L27.3641 20.5609C27.4406 20.5937 27.4843 20.6922 27.4516 20.7687C27.4187 20.8563 27.3203 20.889 27.2437 20.8563L25.1328 19.9813C25.0453 19.9486 25.0125 19.85 25.0453 19.7736V19.7735Z" fill="#F3F3F3"/>
<path d="M25.0344 19.7625C25.0504 19.7205 25.0825 19.6865 25.1235 19.668C25.1645 19.6496 25.2111 19.6481 25.2532 19.664L27.3641 20.5391C27.4516 20.5719 27.4843 20.6704 27.4516 20.7688C27.4356 20.8109 27.4036 20.8448 27.3625 20.8633C27.3215 20.8817 27.2749 20.8832 27.2328 20.8673L25.1219 19.9923C25.0344 19.9484 25.0017 19.85 25.0344 19.7625ZM27.4297 20.7579C27.4624 20.6813 27.4297 20.5938 27.3532 20.561L25.2423 19.6859C25.1657 19.6532 25.0892 19.6969 25.0563 19.7734C25.0236 19.85 25.0563 19.9375 25.1329 19.9704L27.2438 20.8454C27.3203 20.8673 27.4078 20.8344 27.4297 20.7579Z" fill="white"/>
<path d="M25.7562 21.25C25.8 21.1735 25.8874 21.1406 25.9639 21.1735L26.8716 21.6329C26.9482 21.6656 26.981 21.7641 26.9373 21.8516C26.8935 21.9281 26.806 21.9611 26.7295 21.9281L25.8219 21.4688C25.7452 21.425 25.7124 21.3266 25.7562 21.25Z" fill="#F3F3F3"/>
<path d="M25.7452 21.2391C25.789 21.1516 25.8875 21.1189 25.975 21.1626L26.8828 21.622C26.9703 21.6658 27.0031 21.7643 26.9593 21.8516C26.9156 21.9391 26.817 21.972 26.7297 21.9282L25.8219 21.4689C25.7343 21.4362 25.7015 21.3266 25.7452 21.2391V21.2391ZM26.9266 21.8407C26.9593 21.7641 26.9374 21.6766 26.8608 21.6439L25.9531 21.1845C25.8874 21.1517 25.8 21.1845 25.7562 21.2501C25.7234 21.3266 25.7452 21.4141 25.8218 21.447L26.7295 21.9064C26.8062 21.9391 26.8937 21.9174 26.9266 21.8407Z" fill="white"/>
<path d="M24.1484 21.4578C24.2031 21.3813 24.2906 21.3594 24.3672 21.414L26.2703 22.6828C26.3469 22.7265 26.3578 22.8251 26.3141 22.9015C26.2594 22.9782 26.1719 23 26.0953 22.9453L24.1922 21.6765C24.1156 21.6219 24.0937 21.5234 24.1484 21.4578Z" fill="#F3F3F3"/>
<path d="M24.1374 21.4468C24.1922 21.3703 24.3016 21.3484 24.3781 21.3922L26.2813 22.6609C26.3578 22.7155 26.3797 22.814 26.325 22.9015C26.2703 22.9781 26.1609 22.9999 26.0845 22.9562L24.1812 21.6874C24.0937 21.6328 24.0827 21.5234 24.1374 21.4468ZM26.2922 22.8905C26.3359 22.825 26.325 22.7265 26.2595 22.6828L24.3562 21.414C24.2906 21.3703 24.2031 21.3922 24.1593 21.4578C24.1156 21.5234 24.1266 21.6218 24.192 21.6655L26.0953 22.9343C26.1609 22.9781 26.2484 22.9562 26.2922 22.8906V22.8905Z" fill="white"/>
<path d="M24.5531 23.0438C24.6077 22.9781 24.7062 22.9563 24.7718 23.0111L25.5703 23.6344C25.6359 23.6891 25.6468 23.7875 25.5922 23.8532C25.5375 23.9187 25.4391 23.9407 25.3734 23.886L24.5749 23.2625C24.5094 23.2078 24.4983 23.1094 24.5531 23.0438V23.0438Z" fill="#F3F3F3"/>
<path d="M24.5422 23.0329C24.5969 22.9564 24.7063 22.9454 24.7828 23.0002L25.5812 23.6235C25.6578 23.6782 25.6687 23.7876 25.614 23.8641C25.5593 23.9408 25.4499 23.9516 25.3735 23.897L24.575 23.2735C24.4984 23.2189 24.4876 23.1095 24.5422 23.0329ZM25.5922 23.8533C25.6468 23.7876 25.6359 23.7001 25.5703 23.6454L24.7719 23.022C24.7063 22.9783 24.6188 22.9892 24.5641 23.0547C24.5094 23.1204 24.5203 23.2079 24.5859 23.2626L25.3843 23.886C25.4499 23.9298 25.5374 23.9188 25.5921 23.8533H25.5922Z" fill="white"/>
<path d="M22.9234 22.9345C22.9891 22.8689 23.0876 22.8689 23.1422 22.9345L24.761 24.5422C24.8267 24.6079 24.8157 24.7063 24.761 24.761C24.6955 24.8266 24.5969 24.8266 24.5423 24.761L22.9234 23.1533C22.8688 23.0985 22.8688 22.9891 22.9234 22.9345V22.9345Z" fill="#F3F3F3"/>
<path d="M22.9234 22.9234C22.9555 22.8918 22.9987 22.8741 23.0437 22.8741C23.0888 22.8741 23.132 22.8918 23.1641 22.9234L24.7829 24.5311C24.8144 24.5632 24.8321 24.6064 24.8321 24.6515C24.8321 24.6965 24.8144 24.7397 24.7829 24.7718C24.7508 24.8034 24.7076 24.8211 24.6626 24.8211C24.6175 24.8211 24.5743 24.8034 24.5423 24.7718L22.9234 23.1641C22.8468 23.0984 22.8468 22.9891 22.9234 22.9234ZM24.761 24.7499C24.8157 24.6953 24.8157 24.5968 24.761 24.5422L23.1422 22.9344C23.0875 22.8797 22.9891 22.8797 22.9344 22.9344C22.8797 22.989 22.8797 23.0875 22.9344 23.1421L24.5532 24.7499C24.6078 24.8156 24.6955 24.8156 24.761 24.7499Z" fill="white"/>
<path d="M23.0218 24.564C23.0876 24.5094 23.1859 24.5094 23.2407 24.575L23.9079 25.3406C23.9625 25.4063 23.9516 25.5047 23.8859 25.5594C23.8204 25.614 23.7219 25.614 23.6672 25.5484L22.9999 24.7828C22.9453 24.7282 22.9562 24.6297 23.0218 24.564V24.564Z" fill="#F3F3F3"/>
<path d="M23.011 24.564C23.0876 24.4986 23.186 24.5094 23.2515 24.575L23.9188 25.3406C23.9844 25.4063 23.9734 25.5156 23.8969 25.5813C23.8203 25.6469 23.7219 25.6359 23.6563 25.5703L22.989 24.8047C22.9344 24.7282 22.9344 24.6188 23.0109 24.564H23.011ZM23.886 25.5594C23.9515 25.5047 23.9515 25.4171 23.9078 25.3516L23.2406 24.5859C23.1859 24.5313 23.0984 24.5203 23.0328 24.575C22.9672 24.6297 22.9672 24.7172 23.0109 24.7827L23.6782 25.5484C23.7328 25.614 23.8204 25.614 23.8859 25.5594H23.886Z" fill="white"/>
<path d="M21.447 24.1485C21.5235 24.0939 21.622 24.1158 21.6658 24.1923L22.9345 26.0844C22.9783 26.161 22.9564 26.2594 22.8908 26.3032C22.8142 26.3579 22.7158 26.336 22.672 26.2594L21.4032 24.3672C21.3594 24.2908 21.3813 24.1922 21.4469 24.1485H21.447Z" fill="#F3F3F3"/>
<path d="M21.447 24.1375C21.5235 24.0829 21.6329 24.1048 21.6875 24.1813L22.9563 26.0735C23.0109 26.1499 22.989 26.2593 22.9016 26.3139C22.825 26.3687 22.7157 26.3468 22.6609 26.2702L21.3923 24.3781C21.3377 24.2907 21.3596 24.1923 21.447 24.1376V24.1375ZM22.8907 26.2921C22.9563 26.2483 22.9782 26.1608 22.9344 26.0952L21.6658 24.2031C21.622 24.1376 21.5345 24.1266 21.458 24.1704C21.3923 24.2141 21.3704 24.3016 21.4142 24.3673L22.6828 26.2593C22.7266 26.3139 22.8251 26.3358 22.8906 26.292L22.8907 26.2921Z" fill="white"/>
<path d="M21.2172 25.7671C21.2938 25.7234 21.3922 25.7453 21.4359 25.8219L21.9391 26.7078C21.9828 26.7844 21.9499 26.8828 21.8734 26.9265C21.7968 26.9703 21.6984 26.9484 21.6547 26.8719L21.1516 25.9859C21.1188 25.9094 21.1407 25.8109 21.2171 25.7672L21.2172 25.7671Z" fill="#F3F3F3"/>
<path d="M21.2171 25.7563C21.3046 25.7125 21.4031 25.7344 21.4468 25.811L21.9499 26.697C21.9937 26.7736 21.9718 26.883 21.8844 26.9267C21.7968 26.9705 21.6983 26.9486 21.6546 26.8721L21.1516 25.986C21.1077 25.9095 21.1296 25.811 21.217 25.7563H21.2171ZM21.8733 26.9159C21.9391 26.8721 21.9718 26.7845 21.9281 26.7189L21.425 25.8329C21.3812 25.7673 21.2937 25.7454 21.2281 25.7781C21.1624 25.8219 21.1296 25.9095 21.1733 25.9751L21.6766 26.8611C21.7093 26.9267 21.8077 26.9596 21.8733 26.9158V26.9159Z" fill="white"/>
<path d="M19.7626 25.0454C19.8501 25.0126 19.9376 25.0454 19.9705 25.1219L20.8564 27.2328C20.8892 27.3094 20.8455 27.4078 20.7689 27.4405C20.6924 27.4734 20.5939 27.4405 20.5612 27.364L19.6752 25.2532C19.6424 25.1765 19.6861 25.0782 19.7626 25.0454Z" fill="#F3F3F3"/>
<path d="M19.7624 25.0344C19.8499 25.0017 19.9484 25.0344 19.9922 25.1219L20.8781 27.2329C20.894 27.2749 20.8925 27.3216 20.874 27.3626C20.8556 27.4035 20.8217 27.4356 20.7797 27.4516C20.6922 27.4844 20.5937 27.4516 20.55 27.3641L19.6641 25.2532C19.6313 25.1766 19.6751 25.0782 19.7624 25.0344V25.0344ZM20.7578 27.4298C20.8343 27.3969 20.8672 27.3094 20.8343 27.2438L19.9484 25.1329C19.9156 25.0563 19.8281 25.0235 19.7516 25.0563C19.6751 25.0891 19.6421 25.1766 19.6751 25.2423L20.5609 27.3532C20.6047 27.4298 20.6812 27.4625 20.7578 27.4298Z" fill="white"/>
<path d="M19.2265 26.5985C19.3141 26.5658 19.4015 26.6095 19.4344 26.697L19.7516 27.6595C19.7844 27.736 19.7297 27.8345 19.6532 27.8564C19.5657 27.8891 19.4782 27.8454 19.4454 27.7579L19.1282 26.7954C19.0954 26.7189 19.1391 26.6314 19.2266 26.5985H19.2265Z" fill="#F3F3F3"/>
<path d="M19.2158 26.5876C19.2579 26.5717 19.3045 26.5732 19.3455 26.5916C19.3865 26.6101 19.4185 26.644 19.4346 26.686L19.7519 27.6485C19.7846 27.736 19.7299 27.8344 19.6423 27.8673C19.6003 27.8831 19.5536 27.8817 19.5126 27.8632C19.4716 27.8448 19.4396 27.8108 19.4236 27.7688L19.1064 26.8064C19.0845 26.7189 19.1283 26.6204 19.2158 26.5876ZM19.6424 27.8453C19.719 27.8235 19.7627 27.736 19.7409 27.6594L19.4236 26.697C19.4018 26.6204 19.3143 26.5876 19.2377 26.6095C19.1611 26.6314 19.1174 26.7189 19.1393 26.7954L19.4565 27.7579C19.462 27.7764 19.4715 27.7936 19.4841 27.8083C19.4968 27.823 19.5124 27.8348 19.5299 27.8431C19.5475 27.8514 19.5666 27.8558 19.5859 27.8562C19.6053 27.8566 19.6246 27.8529 19.6424 27.8454V27.8453Z" fill="white"/>
<path d="M17.936 25.6032C18.0234 25.5813 18.111 25.636 18.1219 25.7235L18.5814 27.9658C18.6033 28.0532 18.5375 28.1299 18.45 28.1516C18.3626 28.1735 18.275 28.1189 18.2642 28.0314L17.8046 25.7891C17.7937 25.7125 17.8484 25.625 17.9359 25.6031L17.936 25.6032Z" fill="#F3F3F3"/>
<path d="M17.9361 25.592C18.0344 25.5702 18.1219 25.6358 18.1438 25.7233L18.6031 27.9657C18.625 28.0531 18.5593 28.1516 18.4718 28.1626C18.3734 28.1845 18.2859 28.1189 18.2641 28.0313L17.8047 25.7889C17.7829 25.7014 17.8376 25.6139 17.936 25.5921L17.9361 25.592ZM18.4499 28.1406C18.5266 28.1298 18.5812 28.0531 18.5703 27.9656L18.1109 25.7233C18.1001 25.6467 18.0126 25.5921 17.936 25.6139C17.8594 25.6248 17.8048 25.7014 17.8157 25.7889L18.2751 28.0313C18.2969 28.1079 18.3734 28.1516 18.4501 28.1408L18.4499 28.1406Z" fill="white"/>
<path d="M17.1048 27.0249C17.1923 27.014 17.2688 27.0688 17.2907 27.1562L17.4219 28.1624C17.4328 28.2499 17.3672 28.3265 17.2796 28.3374C17.1923 28.3484 17.1157 28.2937 17.0938 28.2062L16.9626 27.1999C16.9517 27.1124 17.0173 27.0359 17.1048 27.0249Z" fill="#F3F3F3"/>
<path d="M17.1046 27.0141C17.2031 27.0033 17.2906 27.0689 17.3015 27.1564L17.4328 28.1626C17.4438 28.2501 17.3781 28.3376 17.2796 28.3486C17.1811 28.3595 17.0936 28.2939 17.0826 28.2063L16.9514 27.2001C16.9404 27.1126 17.0061 27.0251 17.1046 27.0141ZM17.2687 28.3267C17.3453 28.3158 17.411 28.2392 17.4 28.1626L17.2687 27.1564C17.2577 27.0798 17.1811 27.0251 17.1046 27.036C17.028 27.047 16.9622 27.1235 16.9732 27.2001L17.1046 28.2064C17.1155 28.283 17.1921 28.3376 17.2687 28.3267Z" fill="white"/>
<path d="M15.9782 25.7999C16.0657 25.7999 16.1423 25.8656 16.1423 25.9531V28.239C16.1423 28.3265 16.0657 28.3922 15.9782 28.3922C15.8908 28.3922 15.8142 28.3265 15.8142 28.239V25.9531C15.8252 25.8656 15.8908 25.7999 15.9782 25.7999Z" fill="#F3F3F3"/>
<path d="M15.9782 25.7889C16.0767 25.7889 16.1532 25.8655 16.1532 25.953V28.2389C16.1532 28.3264 16.0767 28.403 15.9782 28.403C15.8798 28.403 15.8032 28.3264 15.8032 28.2389V25.9531C15.8032 25.8656 15.8907 25.7889 15.9782 25.7889ZM15.9782 28.3812C16.0548 28.3812 16.1313 28.3156 16.1313 28.2389V25.9531C16.1313 25.8764 16.0657 25.8108 15.9782 25.8108C15.9017 25.8108 15.8251 25.8764 15.8251 25.9531V28.2389C15.836 28.3156 15.9017 28.3812 15.9782 28.3812Z" fill="white"/>
<path d="M14.8844 27.025C14.9719 27.0359 15.0375 27.1015 15.0375 27.189L14.9609 28.2063C14.9501 28.2938 14.8734 28.3594 14.7859 28.3485C14.6984 28.3375 14.6328 28.2719 14.6328 28.1844L14.7094 27.1671C14.7203 27.0798 14.7969 27.014 14.8844 27.025Z" fill="#F3F3F3"/>
<path d="M14.8843 27.0141C14.9828 27.0251 15.0484 27.1016 15.0484 27.1891L14.9718 28.2064C14.9609 28.2939 14.8843 28.3705 14.7859 28.3595C14.6875 28.3486 14.6218 28.272 14.6218 28.1845L14.6984 27.1672C14.7093 27.0689 14.7859 27.0033 14.8843 27.0141ZM14.7859 28.3376C14.8624 28.3376 14.9391 28.283 14.9391 28.2064L15.0156 27.1891C15.0156 27.1126 14.9609 27.047 14.8734 27.036C14.7968 27.036 14.7203 27.0907 14.7203 27.1673L14.6437 28.1845C14.6437 28.2611 14.7093 28.3268 14.786 28.3376H14.7859Z" fill="white"/>
<path d="M14.064 25.6031C14.1515 25.6249 14.2061 25.7014 14.1952 25.7889L13.7467 28.0314C13.7248 28.1189 13.6483 28.1737 13.5608 28.1516C13.4733 28.1298 13.4187 28.0533 13.4296 27.9657L13.878 25.7233C13.889 25.6468 13.9765 25.5921 14.064 25.6031Z" fill="#F3F3F3"/>
<path d="M14.0642 25.592C14.1625 25.6139 14.2173 25.7015 14.2063 25.7889L13.7579 28.0313C13.736 28.1188 13.6485 28.1844 13.5501 28.1624C13.4517 28.1405 13.3969 28.053 13.4079 27.9655L13.8563 25.7233C13.8782 25.6358 13.9657 25.581 14.0641 25.5921L14.0642 25.592ZM13.5501 28.1405C13.6267 28.1515 13.7032 28.1078 13.7251 28.0313L14.1735 25.7889C14.1844 25.7124 14.1407 25.6358 14.0532 25.6139C13.9767 25.6031 13.9001 25.6468 13.8782 25.7234L13.4298 27.9655C13.4188 28.053 13.4735 28.1188 13.5501 28.1405V28.1405Z" fill="white"/>
<path d="M12.7517 26.5877C12.8393 26.6096 12.8939 26.6971 12.872 26.7846L12.5986 27.7689C12.5768 27.8564 12.4893 27.9001 12.4018 27.8783C12.381 27.8733 12.3613 27.8642 12.344 27.8516C12.3266 27.839 12.312 27.8231 12.3008 27.8048C12.2896 27.7865 12.2821 27.7662 12.2788 27.745C12.2755 27.7238 12.2764 27.7022 12.2814 27.6814L12.5549 26.6971C12.5768 26.6096 12.6643 26.5659 12.7518 26.5877H12.7517Z" fill="#F3F3F3"/>
<path d="M12.7516 26.5768C12.8392 26.5986 12.9048 26.6971 12.8719 26.7846L12.5985 27.769C12.5767 27.8565 12.4783 27.9112 12.3908 27.8892C12.3033 27.8674 12.2377 27.769 12.2704 27.6815L12.5439 26.6971C12.5658 26.6096 12.6533 26.5548 12.7516 26.5767V26.5768ZM12.3908 27.8565C12.4673 27.8784 12.5548 27.8346 12.5767 27.758L12.85 26.7736C12.8719 26.6971 12.8282 26.6205 12.7407 26.5986C12.6642 26.5767 12.5767 26.6205 12.5548 26.6971L12.2814 27.6815C12.2704 27.758 12.3141 27.8346 12.3908 27.8565Z" fill="white"/>
<path d="M12.2156 25.0454C12.3031 25.0781 12.3358 25.1766 12.3031 25.2531L11.4281 27.3641C11.3953 27.4407 11.2968 27.4844 11.2204 27.4407C11.1437 27.3969 11.0999 27.3094 11.1327 27.2329L12.0077 25.1219C12.0405 25.0454 12.139 25.0016 12.2155 25.0454H12.2156Z" fill="#F3F3F3"/>
<path d="M12.2156 25.0344C12.2576 25.0504 12.2915 25.0824 12.31 25.1234C12.3285 25.1644 12.3299 25.2111 12.314 25.2532L11.439 27.364C11.4061 27.4515 11.3077 27.4843 11.2092 27.4515C11.1672 27.4354 11.1333 27.4034 11.1148 27.3625C11.0964 27.3215 11.0949 27.2748 11.1108 27.2328L11.9858 25.1218C12.0296 25.0344 12.128 24.9907 12.2156 25.0344V25.0344ZM11.2202 27.4297C11.2967 27.4624 11.3842 27.4297 11.4171 27.3531L12.2921 25.2422C12.3248 25.1657 12.2811 25.089 12.2046 25.0563C12.128 25.0235 12.0405 25.0563 12.0077 25.1328L11.1327 27.2437C11.1108 27.3093 11.1436 27.3968 11.2202 27.4297Z" fill="white"/>
<path d="M10.7392 25.7454C10.8157 25.7891 10.8485 25.8766 10.8157 25.9532L10.3563 26.8608C10.3125 26.9374 10.225 26.9702 10.1375 26.9264C10.061 26.8827 10.0282 26.7953 10.061 26.7187L10.5205 25.8111C10.5642 25.7345 10.6517 25.7016 10.7392 25.7454Z" fill="#F3F3F3"/>
<path d="M10.7392 25.7345C10.8267 25.7782 10.8595 25.8767 10.8158 25.9641L10.3564 26.8719C10.3126 26.9594 10.2141 26.9922 10.1268 26.9484C10.0393 26.9047 10.0064 26.8062 10.0502 26.7188L10.5095 25.8111C10.5533 25.7235 10.6517 25.6908 10.7392 25.7345ZM10.1377 26.9266C10.2143 26.9594 10.3018 26.9375 10.3345 26.8609L10.7939 25.9533C10.8266 25.8876 10.7939 25.8001 10.7283 25.7564C10.6517 25.7236 10.5642 25.7454 10.5314 25.822L10.072 26.7296C10.0393 26.7953 10.072 26.8828 10.1377 26.9265V26.9266Z" fill="white"/>
<path d="M10.5203 24.1267C10.5968 24.1813 10.6187 24.2798 10.5641 24.3454L9.29528 26.2378C9.25158 26.3142 9.15302 26.3252 9.07659 26.2815C9.00004 26.2267 8.97813 26.1284 9.03278 26.0626L10.3016 24.1702C10.3453 24.0938 10.4437 24.0719 10.5203 24.1265V24.1267Z" fill="#F3F3F3"/>
<path d="M10.5203 24.1157C10.5969 24.1704 10.6188 24.2798 10.575 24.3564L9.30626 26.2487C9.25162 26.3251 9.15316 26.347 9.06566 26.2924C8.98911 26.2376 8.9672 26.1283 9.0109 26.0516L10.2797 24.1595C10.3344 24.0829 10.4438 24.061 10.5203 24.1157V24.1157ZM9.07661 26.2705C9.1421 26.3141 9.24066 26.3032 9.28436 26.2377L10.5532 24.3454C10.5969 24.2798 10.5751 24.1923 10.5094 24.1485C10.4438 24.1048 10.3453 24.1158 10.3016 24.1813L9.0328 26.0626C8.98911 26.1283 9.0109 26.2266 9.07661 26.2703V26.2705Z" fill="white"/>
<path d="M8.92344 24.5314C8.98915 24.586 9.01094 24.6845 8.95629 24.7501L8.3219 25.5485C8.26726 25.6141 8.16881 25.625 8.10321 25.5704C8.03762 25.5157 8.01571 25.4173 8.07047 25.3516L8.70475 24.5532C8.75939 24.4877 8.85784 24.4766 8.92344 24.5314Z" fill="#F3F3F3"/>
<path d="M8.9344 24.5204C9.01095 24.575 9.0219 24.6845 8.96714 24.761L8.33284 25.5595C8.2782 25.636 8.16879 25.647 8.09224 25.5814C8.01569 25.5266 8.00474 25.4173 8.0595 25.3407L8.6938 24.5423C8.74845 24.4656 8.85785 24.4548 8.9344 24.5204ZM8.11415 25.5595C8.17963 25.6141 8.26725 25.6033 8.32189 25.5376L8.95631 24.7391C9.00011 24.6736 8.98905 24.586 8.92356 24.5313C8.85785 24.4766 8.77035 24.4875 8.7157 24.5533L8.08129 25.3516C8.0376 25.4173 8.04855 25.5157 8.11403 25.5595H8.11415Z" fill="white"/>
<path d="M9.03277 22.8907C9.09836 22.9562 9.09836 23.0548 9.03277 23.1094L7.41413 24.7171C7.34842 24.7829 7.25009 24.7719 7.19533 24.7171C7.14069 24.6625 7.12973 24.5531 7.19533 24.4985L8.80302 22.8907C8.86873 22.825 8.96717 22.825 9.03277 22.8907V22.8907Z" fill="#F3F3F3"/>
<path d="M9.04376 22.8798C9.07527 22.9119 9.09293 22.9551 9.09293 23C9.09293 23.045 9.07527 23.0882 9.04376 23.1203L7.42501 24.7283C7.39292 24.7598 7.34974 24.7775 7.30477 24.7775C7.2598 24.7775 7.21662 24.7598 7.18453 24.7283C7.15295 24.6962 7.13525 24.653 7.13525 24.6079C7.13525 24.5629 7.15295 24.5197 7.18453 24.4876L8.80317 22.8798C8.83527 22.8482 8.87847 22.8306 8.92347 22.8306C8.96847 22.8306 9.01167 22.8482 9.04376 22.8798V22.8798ZM7.19537 24.7172C7.25001 24.7719 7.34846 24.7719 7.4031 24.7172L9.02186 23.1093C9.07662 23.0547 9.07662 22.9562 9.02186 22.9016C8.96722 22.8468 8.86877 22.8468 8.81412 22.9016L7.19537 24.5094C7.14073 24.564 7.14073 24.6516 7.19537 24.7171V24.7172Z" fill="white"/>
<path d="M7.39221 22.9782C7.44685 23.0437 7.44685 23.1423 7.38125 23.1969L6.60471 23.8533C6.53911 23.908 6.44066 23.897 6.3859 23.8314C6.33125 23.7657 6.33125 23.6673 6.39685 23.6126L7.1734 22.9563C7.23911 22.9016 7.33745 22.9125 7.39221 22.9782Z" fill="#F3F3F3"/>
<path d="M7.40307 22.9672C7.46867 23.0438 7.45772 23.1531 7.39212 23.2079L6.61557 23.864C6.54997 23.9297 6.44057 23.9188 6.37497 23.8422C6.30926 23.7656 6.32021 23.6563 6.38581 23.6015L7.16247 22.9454C7.22796 22.8798 7.33748 22.8908 7.40296 22.9673L7.40307 22.9672ZM6.39676 23.8313C6.45152 23.8969 6.53902 23.8969 6.6045 23.8532L7.38117 23.1969C7.43581 23.1423 7.44677 23.0547 7.39212 22.9892C7.33736 22.9235 7.24986 22.9235 7.18438 22.9673L6.40771 23.6235C6.34211 23.6781 6.34211 23.7657 6.39676 23.8312V23.8313Z" fill="white"/>
<path d="M7.82979 21.4031C7.88444 21.4798 7.86254 21.5781 7.78599 21.6219L5.8829 22.8906C5.80636 22.9343 5.70791 22.9124 5.66421 22.8468C5.60945 22.7703 5.63136 22.6719 5.70791 22.628L7.6111 21.3594C7.67681 21.3157 7.77515 21.3375 7.82991 21.4031H7.82979Z" fill="#F3F3F3"/>
<path d="M7.84065 21.4031C7.89529 21.4798 7.87339 21.5891 7.79684 21.6439L5.89379 22.9125C5.81724 22.9673 5.70784 22.9453 5.6532 22.8579C5.59844 22.7813 5.62045 22.6719 5.69689 22.6173L7.60006 21.3485C7.6766 21.2939 7.78589 21.3158 7.84054 21.4031H7.84065ZM5.6751 22.836C5.71879 22.9016 5.80629 22.9235 5.87188 22.8798L7.77494 21.611C7.84065 21.5673 7.86244 21.4798 7.8078 21.4033C7.7641 21.3376 7.6766 21.3158 7.6109 21.3595L5.70784 22.6282C5.64224 22.6829 5.63129 22.7704 5.6751 22.836V22.836Z" fill="white"/>
<path d="M6.20007 21.1735C6.24388 21.25 6.22197 21.3485 6.14542 21.3923L5.25946 21.8953C5.18291 21.939 5.08446 21.9063 5.04076 21.8297C4.99696 21.7532 5.01886 21.6547 5.09541 21.6109L5.98137 21.1079C6.05792 21.0641 6.15638 21.0969 6.20018 21.1735H6.20007Z" fill="#F3F3F3"/>
<path d="M6.2111 21.1625C6.2548 21.25 6.23289 21.3484 6.15635 21.3922L5.27041 21.8953C5.19386 21.939 5.08446 21.9062 5.04076 21.8297C4.99696 21.7422 5.01886 21.6437 5.09541 21.5999L5.98135 21.0969C6.0579 21.0531 6.1673 21.0859 6.21099 21.1625H6.2111ZM5.0516 21.8187C5.09541 21.8953 5.18291 21.9172 5.2485 21.8734L6.13444 21.3703C6.20004 21.3265 6.22194 21.239 6.1892 21.1734C6.14539 21.0969 6.0579 21.075 5.9923 21.1188L5.10636 21.6218C5.04076 21.6546 5.01886 21.7422 5.05172 21.8187H5.0516Z" fill="white"/>
<path d="M6.93273 19.7188C6.96547 19.8063 6.93273 19.8939 6.84523 19.9266L4.73428 20.8016C4.65773 20.8345 4.55928 20.7908 4.52654 20.7141C4.49368 20.6266 4.52654 20.5391 4.61404 20.5064L6.72499 19.6313C6.80154 19.5986 6.89999 19.6313 6.93273 19.7188V19.7188Z" fill="#F3F3F3"/>
<path d="M6.94368 19.7079C6.97642 19.7954 6.94368 19.8938 6.85618 19.9375L4.74523 20.8125C4.70317 20.8284 4.65654 20.8269 4.61555 20.8085C4.57456 20.79 4.54255 20.7561 4.52654 20.7141C4.49368 20.6266 4.52654 20.5281 4.61404 20.4844L6.72499 19.6094C6.76705 19.5936 6.81368 19.595 6.85467 19.6135C6.89566 19.6319 6.92766 19.6659 6.94368 19.7079V19.7079ZM4.54833 20.7031C4.58118 20.7798 4.66868 20.8126 4.73428 20.7906L6.84523 19.9156C6.92178 19.8829 6.95463 19.7954 6.92178 19.7188C6.88904 19.6423 6.80154 19.6094 6.73583 19.6313L4.62488 20.5063C4.54833 20.5391 4.51559 20.6266 4.54833 20.7032V20.7031Z" fill="white"/>
<path d="M5.39067 19.1719C5.42342 19.2594 5.37972 19.3469 5.29222 19.3797L4.32972 19.6969C4.25317 19.7297 4.15472 19.675 4.13281 19.5985C4.10007 19.511 4.14376 19.4235 4.23126 19.3907L5.19377 19.0735C5.27032 19.0407 5.35782 19.0844 5.39067 19.1719Z" fill="#F3F3F3"/>
<path d="M5.40142 19.161C5.43427 19.2485 5.39058 19.347 5.29213 19.3798L4.32964 19.697C4.24214 19.7297 4.14369 19.6751 4.11084 19.5876C4.0781 19.5001 4.12179 19.4016 4.22035 19.3689L5.18273 19.0516C5.27023 19.0298 5.36868 19.0735 5.40153 19.1611L5.40142 19.161ZM4.13285 19.5767C4.15476 19.6533 4.24226 19.6971 4.3188 19.6752L5.28129 19.3579C5.35784 19.3361 5.39069 19.2486 5.36879 19.172C5.34689 19.0955 5.25939 19.0517 5.18284 19.0736L4.22035 19.3909C4.14381 19.4236 4.11095 19.5002 4.13285 19.5767Z" fill="white"/>
<path d="M6.37517 17.8703C6.39696 17.9578 6.34232 18.0453 6.25482 18.0563L4.01257 18.4938C3.92507 18.5157 3.84853 18.45 3.82674 18.3625C3.80483 18.275 3.85948 18.1875 3.94698 18.1765L6.18922 17.739C6.27672 17.7282 6.36422 17.7828 6.37506 17.8703H6.37517Z" fill="#F3F3F3"/>
<path d="M6.39688 17.8704C6.41878 17.9688 6.35319 18.0563 6.26569 18.0781L4.02343 18.5156C3.93593 18.5375 3.84843 18.4719 3.82664 18.3735C3.80474 18.275 3.87033 18.1875 3.95783 18.1657L6.20009 17.7282C6.28748 17.7063 6.37509 17.7719 6.39688 17.8704ZM3.84843 18.3626C3.85938 18.4391 3.93593 18.4938 4.01248 18.4829L6.25474 18.0454C6.33128 18.0344 6.38593 17.9469 6.36414 17.8704C6.35319 17.7938 6.27664 17.7391 6.19998 17.75L3.95783 18.1875C3.88128 18.2094 3.82664 18.286 3.84843 18.3625V18.3626Z" fill="white"/>
<path d="M4.97515 17.0283C4.98598 17.1157 4.93134 17.1923 4.84384 17.2033L3.83765 17.3236C3.75003 17.3345 3.67348 17.2689 3.66265 17.1813C3.65169 17.0939 3.70634 17.0173 3.79384 17.0062L4.80015 16.886C4.87669 16.875 4.96419 16.9406 4.97515 17.0283Z" fill="#F3F3F3"/>
<path d="M4.98611 17.0282C4.99695 17.1265 4.93135 17.214 4.84385 17.2249L3.83766 17.3453C3.75005 17.3562 3.66266 17.2906 3.65171 17.1922C3.64076 17.0937 3.70635 17.0063 3.79385 16.9953L4.80016 16.875C4.88755 16.864 4.97516 16.9297 4.986 17.028L4.98611 17.0282ZM3.66255 17.1812C3.6735 17.2578 3.75016 17.3235 3.82671 17.3124L4.8329 17.1922C4.90945 17.1812 4.96421 17.1047 4.95326 17.0282C4.94231 16.9515 4.86576 16.8859 4.78921 16.8969L3.7829 17.0172C3.70635 17.0282 3.65171 17.1047 3.66255 17.1812V17.1812Z" fill="white"/>
<path d="M6.19993 15.9671C6.19993 16.0547 6.13444 16.1313 6.04683 16.1313H3.76101C3.67351 16.1313 3.60791 16.0547 3.60791 15.9672C3.60791 15.8798 3.67351 15.8031 3.76101 15.8031H6.04694C6.13444 15.8031 6.20015 15.8798 6.20015 15.9672L6.19993 15.9671Z" fill="#F3F3F3"/>
<path d="M6.21109 15.9671C6.21109 16.0657 6.13443 16.1421 6.04693 16.1421H3.76109C3.67359 16.1421 3.59705 16.0656 3.59705 15.9671C3.59705 15.8688 3.67359 15.7921 3.76109 15.7921H6.04705C6.13455 15.7921 6.21109 15.8688 6.21109 15.9671ZM3.61884 15.9563C3.61884 16.0328 3.68443 16.1094 3.76109 16.1094H6.04693C6.12348 16.1094 6.18919 16.0438 6.18919 15.9563C6.18919 15.8797 6.12348 15.8031 6.04693 15.8031H3.76109C3.68455 15.814 3.61895 15.8797 3.61895 15.9563H3.61884Z" fill="white"/>
<path d="M4.98613 14.8625C4.97507 14.95 4.90947 15.0156 4.82197 15.0156L3.8047 14.9391C3.71731 14.9281 3.65171 14.8516 3.66255 14.7641C3.6735 14.6766 3.73921 14.611 3.82671 14.611L4.84387 14.6875C4.92042 14.6985 4.98613 14.775 4.98613 14.8625Z" fill="#E2E2E2"/>
<path d="M4.99679 14.8625C4.98584 14.9609 4.9093 15.0265 4.8218 15.0265L3.80454 14.95C3.71716 14.939 3.64061 14.8625 3.65156 14.764C3.6624 14.6657 3.73906 14.6 3.82656 14.6L4.8437 14.6765C4.9312 14.6875 4.99679 14.775 4.99679 14.8625ZM3.6624 14.764C3.65156 14.8406 3.71716 14.9172 3.7937 14.9172L4.81096 14.9938C4.88739 14.9938 4.9531 14.939 4.96405 14.8515C4.975 14.775 4.9093 14.6984 4.83275 14.6984L3.81549 14.6219C3.73906 14.6219 3.67335 14.6875 3.6624 14.7641V14.764Z" fill="white"/>
<path d="M6.39679 14.064C6.37488 14.1515 6.29834 14.2062 6.21084 14.1953L3.96869 13.7359C3.88119 13.714 3.82643 13.6375 3.84834 13.55C3.87024 13.4625 3.94679 13.4077 4.03429 13.4188L6.27655 13.8672C6.35309 13.889 6.40774 13.9765 6.39679 14.064V14.064Z" fill="#F3F3F3"/>
<path d="M6.40785 14.0641C6.38595 14.1625 6.29845 14.2173 6.21095 14.2063L3.96882 13.7579C3.88132 13.736 3.81572 13.6485 3.83762 13.5501C3.85941 13.4516 3.94691 13.3969 4.03441 13.4079L6.27666 13.8563C6.36416 13.8782 6.4188 13.9657 6.40785 14.0641V14.0641ZM3.85941 13.55C3.84846 13.6266 3.89216 13.7031 3.96882 13.725L6.21106 14.1735C6.28761 14.1844 6.36416 14.1407 6.38606 14.0531C6.3969 13.9766 6.35321 13.9 6.27655 13.8781L4.03453 13.4298C3.94703 13.4188 3.88143 13.4735 3.85953 13.55H3.85941Z" fill="white"/>
<path d="M5.41272 12.7516C5.4077 12.7725 5.39862 12.7921 5.38601 12.8094C5.37339 12.8268 5.35748 12.8414 5.3392 12.8526C5.32091 12.8637 5.3006 12.8712 5.27943 12.8745C5.25826 12.8778 5.23664 12.8769 5.21582 12.8719L4.2314 12.5984C4.1439 12.5765 4.10021 12.4891 4.122 12.4016C4.12702 12.3807 4.1361 12.3611 4.14871 12.3438C4.16133 12.3265 4.17724 12.3118 4.19552 12.3006C4.21381 12.2895 4.23412 12.282 4.25529 12.2787C4.27646 12.2754 4.29808 12.2763 4.3189 12.2813L5.30332 12.5548C5.39082 12.5765 5.43451 12.664 5.41272 12.7515V12.7516Z" fill="#F3F3F3"/>
<path d="M5.42331 12.7516C5.40152 12.839 5.30307 12.9047 5.21557 12.8718L4.23114 12.5984C4.14364 12.5765 4.08888 12.4781 4.11079 12.3907C4.13269 12.3031 4.23114 12.2375 4.31865 12.2703L5.30307 12.5438C5.39057 12.5657 5.44533 12.6532 5.42331 12.7515V12.7516ZM4.14364 12.3905C4.12174 12.4671 4.16555 12.5546 4.2421 12.5764L5.22652 12.8498C5.30307 12.8717 5.37962 12.8279 5.40152 12.7404C5.42331 12.6639 5.37962 12.5764 5.30307 12.5546L4.31865 12.2812C4.2421 12.2702 4.16555 12.3139 4.14364 12.3906V12.3905Z" fill="white"/>
<path d="M6.95465 12.2267C6.92191 12.3141 6.82335 12.3469 6.74691 12.3141L4.63585 11.4391C4.5593 11.4063 4.5156 11.3079 4.54835 11.2313C4.5812 11.1438 4.67965 11.111 4.7562 11.1438L6.86715 12.0188C6.95465 12.0516 6.98751 12.15 6.95465 12.2266V12.2267Z" fill="#F3F3F3"/>
<path d="M6.96561 12.2375C6.9496 12.2796 6.91757 12.3135 6.87656 12.332C6.83554 12.3504 6.78888 12.3519 6.74681 12.336L4.63584 11.461C4.54834 11.4283 4.5156 11.3298 4.54834 11.2314C4.56436 11.1893 4.59638 11.1554 4.6374 11.1369C4.67841 11.1185 4.72507 11.117 4.76715 11.1329L6.87811 12.0079C6.96561 12.0516 6.99836 12.1501 6.96561 12.2375V12.2375ZM4.57024 11.2423C4.5375 11.3189 4.57024 11.4064 4.64679 11.4391L6.75776 12.3141C6.83431 12.3469 6.91086 12.3031 6.94371 12.2266C6.97645 12.15 6.94371 12.0625 6.86716 12.0298L4.7562 11.1548C4.67965 11.1329 4.59215 11.1658 4.57024 11.2423V11.2423Z" fill="white"/>
<path d="M6.24379 10.75C6.20009 10.8266 6.11259 10.8594 6.03604 10.8266L5.12819 10.3673C5.05164 10.3344 5.01879 10.236 5.06259 10.1484C5.10629 10.0719 5.19379 10.039 5.27033 10.0719L6.17808 10.5313C6.25474 10.575 6.28759 10.6736 6.24379 10.75Z" fill="#F3F3F3"/>
<path d="M6.25485 10.761C6.21104 10.8485 6.11259 10.8814 6.02509 10.8375L5.11735 10.3781C5.02985 10.3344 4.997 10.236 5.04081 10.1485C5.0845 10.061 5.18306 10.0281 5.27045 10.0719L6.17819 10.5313C6.2658 10.5641 6.29854 10.6736 6.25485 10.761V10.761ZM5.07355 10.1594C5.04081 10.236 5.06271 10.3235 5.13926 10.3563L6.04699 10.8158C6.1127 10.8485 6.2002 10.8158 6.2439 10.75C6.27664 10.6735 6.25485 10.586 6.1783 10.5531L5.25939 10.094C5.19379 10.0612 5.10629 10.083 5.07344 10.1595L5.07355 10.1594Z" fill="white"/>
<path d="M7.85138 10.5422C7.79674 10.6188 7.70923 10.6407 7.63268 10.586L5.74039 9.32823C5.66395 9.28442 5.653 9.18597 5.69669 9.10942C5.7405 9.03287 5.83895 9.01097 5.9155 9.06562L7.81864 10.3344C7.88424 10.3782 7.90614 10.4767 7.85138 10.5422Z" fill="#F3F3F3"/>
<path d="M7.86239 10.5531C7.80774 10.6298 7.69834 10.6516 7.62191 10.6079L5.72966 9.33905C5.65311 9.28441 5.63121 9.18596 5.68586 9.09857C5.74061 9.02191 5.85002 9 5.92656 9.04381L7.8187 10.3125C7.90619 10.3673 7.91715 10.4766 7.86239 10.5531ZM5.70776 9.10941C5.66407 9.175 5.67502 9.27346 5.7405 9.31715L7.6437 10.5861C7.70929 10.6299 7.79679 10.608 7.8406 10.5424C7.88429 10.4767 7.87334 10.3782 7.80786 10.3345L5.90455 9.06571C5.83895 9.02191 5.75145 9.04381 5.70765 9.10941H5.70776Z" fill="white"/>
<path d="M7.44684 8.9563C7.3922 9.02189 7.29374 9.04379 7.22815 8.98904L6.42968 8.36571C6.36409 8.31096 6.35313 8.21251 6.40778 8.14691C6.46243 8.08132 6.56088 8.05941 6.62659 8.11417L7.42494 8.73749C7.49065 8.79225 7.5016 8.89059 7.44684 8.9563V8.9563Z" fill="#F3F3F3"/>
<path d="M7.45781 8.96712C7.40316 9.04378 7.29376 9.05473 7.21721 8.99998L6.41878 8.37665C6.34223 8.322 6.33128 8.2126 6.38604 8.13617C6.44068 8.05951 6.55008 8.04856 6.62652 8.10332L7.42495 8.72664C7.50161 8.7814 7.51256 8.89069 7.45781 8.96735V8.96712ZM6.40783 8.14689C6.35318 8.21249 6.36414 8.29999 6.42973 8.35463L7.22817 8.97819C7.29376 9.02188 7.38126 9.01093 7.4359 8.94533C7.49066 8.87974 7.47971 8.79224 7.41411 8.73759L6.61568 8.11404C6.55008 8.07035 6.46247 8.0813 6.40794 8.14689H6.40783Z" fill="white"/>
<path d="M9.07648 9.06562C9.01099 9.13133 8.91243 9.13133 8.85778 9.06562L7.22821 7.45786C7.16261 7.39227 7.17345 7.29381 7.22821 7.23905C7.29381 7.17357 7.39226 7.17357 7.44691 7.23905L9.06575 8.84692C9.13135 8.90157 9.13135 9.01097 9.07671 9.06573L9.07648 9.06562Z" fill="#F3F3F3"/>
<path d="M9.07664 9.0766C9.04455 9.10811 9.00137 9.12576 8.95639 9.12576C8.91142 9.12576 8.86824 9.10811 8.83615 9.0766L7.21725 7.46864C7.18567 7.43654 7.16797 7.39332 7.16797 7.34829C7.16797 7.30326 7.18567 7.26003 7.21725 7.22793C7.24934 7.19639 7.29254 7.17871 7.33754 7.17871C7.38255 7.17871 7.42575 7.19639 7.45784 7.22793L9.07664 8.83578C9.15318 8.90137 9.15318 9.01077 9.07664 9.07637V9.0766ZM7.23938 7.24984C7.18462 7.30459 7.18462 7.40304 7.23938 7.45758L8.85806 9.06542C8.91281 9.12018 9.01115 9.12018 9.0658 9.06542C9.12055 9.01077 9.12055 8.91232 9.0658 8.85768L7.44712 7.239C7.39247 7.18435 7.30486 7.18435 7.23938 7.24995V7.24984Z" fill="white"/>
<path d="M8.9781 7.43593C8.9125 7.49068 8.81405 7.49068 8.7593 7.42497L8.09205 6.65938C8.03752 6.59378 8.04836 6.49533 8.11407 6.44068C8.17955 6.38593 8.27811 6.38593 8.33276 6.45152L9 7.21723C9.05465 7.27188 9.0437 7.37033 8.9781 7.43593Z" fill="#F3F3F3"/>
<path d="M8.989 7.43593C8.91245 7.50153 8.814 7.49069 8.74829 7.42498L8.08115 6.65938C8.01555 6.59378 8.0265 6.48438 8.10305 6.41878C8.1796 6.35307 8.27805 6.36402 8.34365 6.42973L9.01091 7.19522C9.06555 7.27188 9.06555 7.38129 8.989 7.43593V7.43593ZM8.114 6.44068C8.04829 6.49533 8.04829 6.58283 8.0921 6.64843L8.75936 7.41403C8.814 7.46879 8.9015 7.47974 8.9671 7.42498C9.0327 7.37034 9.0327 7.28272 8.989 7.21724L8.32175 6.45152C8.2671 6.38604 8.17949 6.38604 8.114 6.44068V6.44068Z" fill="white"/>
<path d="M10.5532 7.85171C10.4767 7.90635 10.3782 7.88445 10.3344 7.8079L9.05478 5.91566C9.01097 5.83911 9.03287 5.74066 9.09847 5.69696C9.17502 5.64232 9.27347 5.66422 9.31728 5.74077L10.586 7.6329C10.6407 7.70945 10.6188 7.8079 10.5532 7.85159V7.85171Z" fill="#F3F3F3"/>
<path d="M10.5533 7.86251C10.4767 7.91727 10.3673 7.89526 10.3126 7.81882L9.04394 5.92655C8.9893 5.85 9.0112 5.74071 9.09858 5.68606C9.17513 5.63131 9.28452 5.65321 9.33928 5.72976L10.6079 7.62192C10.6626 7.70942 10.6407 7.80787 10.5533 7.86251ZM9.10942 5.70785C9.04383 5.75155 9.02192 5.83905 9.06573 5.90476L10.3344 7.79692C10.3782 7.86251 10.4657 7.87347 10.5421 7.82966C10.6078 7.78597 10.6297 7.69846 10.5859 7.63287L9.31738 5.75155C9.27357 5.68606 9.17513 5.66405 9.10965 5.70785H9.10942Z" fill="white"/>
<path d="M10.7828 6.23295C10.7063 6.27664 10.6078 6.25485 10.5641 6.1783L10.061 5.29235C10.0173 5.2158 10.05 5.11735 10.1267 5.07355C10.2032 5.02985 10.3016 5.05164 10.3453 5.1283L10.8484 6.01414C10.8813 6.09069 10.8594 6.18914 10.7829 6.23295H10.7828Z" fill="#F3F3F3"/>
<path d="M10.7828 6.24391C10.6953 6.2876 10.5968 6.26581 10.5531 6.18915L10.0499 5.30331C10.0062 5.22664 10.0281 5.11735 10.1156 5.07355C10.2031 5.02985 10.3016 5.05164 10.3453 5.1283L10.8483 6.01415C10.8922 6.0907 10.8703 6.18915 10.7829 6.24391H10.7828ZM10.1266 5.0845C10.0609 5.12819 10.0281 5.21569 10.0718 5.2814L10.575 6.16736C10.6187 6.23284 10.7062 6.25486 10.7718 6.22201C10.8375 6.17831 10.8703 6.0907 10.8266 6.0251L10.3234 5.13914C10.2906 5.07366 10.1922 5.04069 10.1266 5.0845V5.0845Z" fill="white"/>
<path d="M12.2373 6.95474C12.1499 6.98748 12.0623 6.95474 12.0296 6.87819L11.1437 4.76713C11.1109 4.69058 11.1546 4.59213 11.2312 4.55927C11.3187 4.52653 11.4062 4.55927 11.4389 4.63582L12.3248 6.74677C12.3577 6.82332 12.314 6.92177 12.2373 6.95451V6.95474Z" fill="#F3F3F3"/>
<path d="M12.2377 6.9657C12.1503 6.99845 12.0518 6.9657 12.008 6.87809L11.122 4.76727C11.1062 4.72519 11.1076 4.67853 11.126 4.63752C11.1445 4.5965 11.1785 4.56448 11.2205 4.54846C11.308 4.51572 11.4064 4.54846 11.4503 4.63596L12.3361 6.7469C12.369 6.82345 12.3253 6.9219 12.2378 6.9657H12.2377ZM11.2424 4.57036C11.1658 4.60311 11.133 4.69072 11.1658 4.75632L12.0517 6.86714C12.0844 6.94369 12.1719 6.97643 12.2485 6.94369C12.325 6.91095 12.358 6.82333 12.325 6.75774L11.4392 4.6468C11.3954 4.57025 11.3188 4.5374 11.2423 4.57025L11.2424 4.57036Z" fill="white"/>
<path d="M12.7733 5.40174C12.6858 5.43448 12.5983 5.39068 12.5656 5.30329L12.2483 4.34069C12.2156 4.26414 12.2702 4.16569 12.3468 4.1439C12.4233 4.122 12.5218 4.15485 12.5545 4.24235L12.8717 5.20484C12.9045 5.28139 12.8608 5.36889 12.7733 5.40163V5.40174Z" fill="#F3F3F3"/>
<path d="M12.7843 5.41251C12.7423 5.42837 12.6956 5.42691 12.6547 5.40845C12.6137 5.39 12.5817 5.35606 12.5656 5.31406L12.2484 4.35156C12.2156 4.26406 12.2703 4.16572 12.3579 4.13287C12.3999 4.11701 12.4466 4.11847 12.4876 4.13693C12.5286 4.15538 12.5606 4.18932 12.5766 4.23132L12.8937 5.19382C12.9157 5.28132 12.8718 5.37977 12.7843 5.41251V5.41251ZM12.3578 4.15477C12.2812 4.17656 12.2374 4.26406 12.2593 4.34061L12.5766 5.30322C12.5984 5.37977 12.6859 5.41251 12.7625 5.39061C12.8391 5.36882 12.8828 5.28132 12.8609 5.20477L12.5437 4.24216C12.5382 4.22359 12.5287 4.20641 12.5161 4.19172C12.5034 4.17704 12.4878 4.16518 12.4703 4.15693C12.4527 4.14867 12.4336 4.1442 12.4143 4.14381C12.3949 4.14342 12.3756 4.14712 12.3578 4.15466V4.15477Z" fill="white"/>
<path d="M14.064 6.3969C13.9765 6.4188 13.889 6.36416 13.8781 6.27655L13.4187 4.03441C13.3968 3.94692 13.4625 3.87037 13.5499 3.84846C13.6375 3.82656 13.7249 3.88121 13.7358 3.96882L14.1953 6.21106C14.2061 6.2875 14.1515 6.375 14.064 6.3969V6.3969Z" fill="#F3F3F3"/>
<path d="M14.0641 6.40785C13.9656 6.42976 13.8781 6.36405 13.8562 6.27655L13.3968 4.0344C13.3749 3.9469 13.4406 3.84845 13.5281 3.8375C13.6266 3.81559 13.7141 3.8813 13.7359 3.9688L14.1954 6.21106C14.2172 6.29845 14.1625 6.38606 14.0641 6.40785V6.40785ZM13.55 3.8594C13.4734 3.87035 13.4187 3.9469 13.4297 4.0344L13.8891 6.27666C13.9 6.35309 13.9874 6.40785 14.0641 6.38595C14.1406 6.375 14.1953 6.29845 14.1843 6.21095L13.7249 3.96869C13.7031 3.89226 13.6266 3.84845 13.5499 3.8594H13.55Z" fill="white"/>
<path d="M14.8954 4.97504C14.8079 4.98599 14.7313 4.93134 14.7094 4.84384L14.5782 3.83752C14.5673 3.75002 14.6329 3.67347 14.7205 3.66252C14.8079 3.65157 14.8844 3.70633 14.9063 3.79383L15.0375 4.80003C15.0484 4.88754 14.9828 4.96409 14.8954 4.97504V4.97504Z" fill="#F3F3F3"/>
<path d="M14.8954 4.98597C14.797 4.99693 14.7095 4.93133 14.6985 4.84372L14.5674 3.83752C14.5564 3.75002 14.622 3.66252 14.7204 3.65156C14.8189 3.64072 14.9064 3.70632 14.9173 3.79382L15.0485 4.80002C15.0595 4.88752 14.9939 4.97502 14.8954 4.98597V4.98597ZM14.7314 3.67347C14.6548 3.68442 14.5891 3.76097 14.6001 3.83752L14.7314 4.84383C14.7423 4.92038 14.8189 4.97502 14.8954 4.96407C14.972 4.95323 15.0377 4.87657 15.0267 4.80002L14.8954 3.79382C14.8845 3.71727 14.8079 3.66252 14.7314 3.67347V3.67347Z" fill="white"/>
<path d="M16.0767 28.9391C23.2288 28.9391 29.0267 23.1411 29.0267 15.9891C29.0267 8.83697 23.2288 3.03906 16.0767 3.03906C8.92462 3.03906 3.12671 8.83697 3.12671 15.9891C3.12671 23.1411 8.92462 28.9391 16.0767 28.9391Z" fill="url(#paint2_linear_449_13224)" fillOpacity="0.2"/>
<path d="M25.0454 7.77502L14.6001 14.4688H14.5891V14.4797L14.5782 14.4906L8.05957 25.2423L17.6408 17.5313L17.6517 17.5205V17.5095L25.0455 7.77514L25.0454 7.77502Z" fill="black" fillOpacity="0.05"/>
<path d="M24.8484 7.15149L14.5234 14.4905L17.5859 17.5311L24.8484 7.15149" fill="#CD151E"/>
<path d="M14.5344 14.4687L16.0767 15.989L24.8484 7.15149L14.5344 14.4687V14.4687Z" fill="#FA5153"/>
<path d="M14.5345 14.4687L17.597 17.5092L7.27197 24.8484L14.5345 14.4686V14.4687Z" fill="#ACACAC"/>
<path d="M7.27197 24.8484L16.0766 15.989L14.5344 14.4686L7.27197 24.8484Z" fill="#EEEEEE"/>
<defs>
<linearGradient id="paint0_linear_449_13224" x1="16" y1="30" x2="16" y2="2" gradientUnits="userSpaceOnUse">
<stop offset="0.25" stopColor="#DBDBDA"/>
<stop offset="1" stopColor="white"/>
</linearGradient>
<radialGradient id="paint1_radial_449_13224" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(17.8195 13.1553) scale(15.8073 15.8073)">
<stop stopColor="#2ABCE1"/>
<stop offset="0.11363" stopColor="#2ABBE1"/>
<stop offset="1" stopColor="#3375F8"/>
</radialGradient>
<linearGradient id="paint2_linear_449_13224" x1="15.8307" y1="12.2861" x2="9.78638" y2="23.1302" gradientUnits="userSpaceOnUse">
<stop stop-opacity="0"/>
<stop offset="1"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_browser_mobile_safari;

View file

@ -0,0 +1,171 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_mobile_safari_ui(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M16 30C23.732 30 30 23.732 30 16C30 8.26801 23.732 2 16 2C8.26801 2 2 8.26801 2 16C2 23.732 8.26801 30 16 30Z" fill="url(#paint0_linear_449_13647)"/>
<path d="M16 28.9499C23.1521 28.9499 28.9501 23.152 28.9501 15.9999C28.9501 8.84784 23.1521 3.04993 16 3.04993C8.84796 3.04993 3.05005 8.84784 3.05005 15.9999C3.05005 23.152 8.84796 28.9499 16 28.9499Z" fill="url(#paint1_radial_449_13647)"/>
<path d="M16.0219 6.20007C15.9344 6.20007 15.8578 6.13447 15.8578 6.04697V3.76101C15.8578 3.67351 15.9344 3.60791 16.0219 3.60791C16.1094 3.60791 16.1859 3.67351 16.1859 3.76101V6.04697C16.175 6.13447 16.1094 6.20007 16.0219 6.20007Z" fill="#F3F3F3"/>
<path d="M16.0219 6.21096C15.9235 6.21096 15.8469 6.13441 15.8469 6.04691V3.76097C15.8469 3.67347 15.9235 3.59692 16.0219 3.59692C16.1204 3.59692 16.1969 3.67347 16.1969 3.76097V6.04691C16.1969 6.13441 16.1094 6.21096 16.0219 6.21096ZM16.0219 3.61871C15.9454 3.61871 15.8688 3.68442 15.8688 3.76097V6.04691C15.8688 6.12346 15.9344 6.18917 16.0219 6.18917C16.0985 6.18917 16.175 6.12346 16.175 6.04691V3.76097C16.1642 3.68442 16.0985 3.61871 16.0219 3.61871V3.61871Z" fill="white"/>
<path d="M17.1157 4.97506C17.0282 4.96411 16.9626 4.89851 16.9626 4.81101L17.0391 3.79373C17.05 3.70634 17.1266 3.64063 17.2141 3.65158C17.3016 3.66254 17.3672 3.72825 17.3672 3.81575L17.2907 4.83291C17.2797 4.92041 17.2032 4.98601 17.1157 4.97517V4.97506Z" fill="#F3F3F3"/>
<path d="M17.1156 4.98592C17.0172 4.97496 16.9516 4.89842 16.9516 4.81092L17.0281 3.79365C17.0391 3.70626 17.1156 3.62971 17.2141 3.64055C17.3124 3.65151 17.3781 3.72817 17.3781 3.81555L17.3016 4.83282C17.2906 4.93127 17.2141 4.99687 17.1156 4.98592ZM17.2141 3.66246C17.1376 3.66246 17.0609 3.71722 17.0609 3.79376L16.9843 4.81103C16.9843 4.88746 17.0391 4.95317 17.1266 4.96401C17.2031 4.96401 17.2797 4.90937 17.2797 4.83282L17.3562 3.81555C17.3562 3.73901 17.2906 3.67341 17.214 3.66246H17.2141Z" fill="white"/>
<path d="M17.9359 6.39693C17.8483 6.37502 17.7937 6.29847 17.8046 6.21097L18.253 3.9687C18.2749 3.88131 18.3515 3.82656 18.439 3.84846C18.5265 3.87036 18.5811 3.94691 18.5702 4.03441L18.1217 6.27668C18.1108 6.35312 18.0233 6.40788 17.9358 6.39693H17.9359Z" fill="#F3F3F3"/>
<path d="M17.9361 6.40784C17.8375 6.38593 17.7829 6.29843 17.7938 6.21093L18.2422 3.96869C18.2641 3.8813 18.3516 3.81559 18.4499 3.8375C18.5484 3.8594 18.6031 3.9469 18.5922 4.0344L18.1438 6.27664C18.1219 6.36403 18.0344 6.41879 17.9361 6.40784ZM18.4499 3.8594C18.3734 3.84845 18.2969 3.89214 18.275 3.9688L17.8267 6.21105C17.8157 6.28748 17.8594 6.36403 17.9469 6.38605C18.0234 6.39689 18.1 6.35308 18.1219 6.27653L18.5703 4.0344C18.5812 3.9469 18.5266 3.8813 18.4499 3.8594V3.8594Z" fill="white"/>
<path d="M19.2484 5.41251C19.2276 5.40749 19.208 5.39841 19.1906 5.3858C19.1733 5.37318 19.1587 5.35727 19.1475 5.33899C19.1363 5.3207 19.1289 5.30039 19.1256 5.27922C19.1222 5.25805 19.1231 5.23643 19.1282 5.21561L19.4016 4.23132C19.4234 4.14382 19.5109 4.10001 19.5984 4.12192C19.6859 4.14382 19.7407 4.23132 19.7188 4.31882L19.4453 5.30322C19.4234 5.39061 19.3359 5.43442 19.2484 5.41251Z" fill="#F3F3F3"/>
<path d="M19.2485 5.42352C19.161 5.40161 19.0955 5.30316 19.1283 5.21578L19.4017 4.23127C19.4235 4.14389 19.522 4.08913 19.6094 4.11103C19.6969 4.13293 19.7625 4.23139 19.7298 4.31877L19.4564 5.30328C19.4345 5.39066 19.347 5.44542 19.2486 5.42352H19.2485ZM19.6094 4.14389C19.5329 4.12198 19.4454 4.16579 19.4235 4.24234L19.1502 5.22662C19.1283 5.30316 19.172 5.37982 19.2595 5.40161C19.336 5.42352 19.4235 5.37982 19.4454 5.30328L19.7188 4.31877C19.7298 4.24234 19.6861 4.16579 19.6094 4.14377V4.14389Z" fill="white"/>
<path d="M19.7845 6.95474C19.697 6.92188 19.6642 6.82343 19.697 6.74688L20.5719 4.63594C20.6047 4.5594 20.7032 4.51559 20.7797 4.5594C20.8673 4.59214 20.9001 4.6907 20.8673 4.76714L19.9923 6.87808C19.9596 6.95474 19.861 6.99843 19.7846 6.95474H19.7845Z" fill="#F3F3F3"/>
<path d="M19.7844 6.96578C19.7424 6.94977 19.7084 6.91774 19.69 6.87673C19.6715 6.83571 19.6701 6.78905 19.6859 6.74698L20.561 4.63601C20.5938 4.54851 20.6923 4.51565 20.7907 4.54851C20.8328 4.56453 20.8667 4.59655 20.8852 4.63757C20.9036 4.67858 20.9051 4.72524 20.8892 4.76732L20.0142 6.87828C19.9704 6.96578 19.8719 7.00948 19.7844 6.96578ZM20.7798 4.57041C20.7032 4.53767 20.6157 4.57041 20.5829 4.64696L19.7078 6.75793C19.6751 6.83448 19.7188 6.91103 19.7953 6.94388C19.8719 6.97662 19.9594 6.94388 19.9923 6.86733L20.8673 4.75637C20.8892 4.69066 20.8563 4.60316 20.7798 4.57041V4.57041Z" fill="white"/>
<path d="M21.261 6.25474C21.1844 6.21093 21.1515 6.12343 21.1844 6.04689L21.6437 5.13916C21.6874 5.0625 21.7749 5.02965 21.8625 5.07345C21.939 5.11726 21.9718 5.20476 21.939 5.28119L21.4796 6.18903C21.4359 6.26558 21.3484 6.29854 21.2609 6.25474H21.261Z" fill="#F3F3F3"/>
<path d="M21.2611 6.26577C21.1735 6.22197 21.1407 6.12351 21.1844 6.03601L21.6439 5.12828C21.6875 5.04067 21.7861 5.00792 21.8735 5.05162C21.961 5.09542 21.9939 5.19388 21.9501 5.28137L21.4907 6.18911C21.4469 6.27661 21.3485 6.30946 21.261 6.26566L21.2611 6.26577ZM21.8627 5.07352C21.786 5.04078 21.6985 5.06257 21.6658 5.13912L21.2063 6.04697C21.1736 6.11256 21.2063 6.20006 21.2719 6.24387C21.3485 6.27661 21.436 6.25482 21.4688 6.17827L21.9283 5.27042C21.961 5.20483 21.9283 5.11733 21.8627 5.07352Z" fill="white"/>
<path d="M21.4798 7.87353C21.4032 7.81888 21.3813 7.72043 21.436 7.65483L22.7048 5.76256C22.7485 5.68601 22.847 5.67506 22.9235 5.71887C23.0001 5.77351 23.0219 5.87196 22.9673 5.93756L21.6985 7.82983C21.6548 7.90638 21.5563 7.92828 21.4798 7.87353Z" fill="#F3F3F3"/>
<path d="M21.4797 7.88442C21.4032 7.82977 21.3813 7.72037 21.4251 7.64382L22.6938 5.75161C22.7485 5.67506 22.8469 5.65316 22.9344 5.70791C23.011 5.76256 23.0329 5.87196 22.9892 5.94851L21.7203 7.84072C21.6657 7.91727 21.5563 7.93906 21.4797 7.88442ZM22.9235 5.72982C22.858 5.68601 22.7594 5.69696 22.7157 5.76256L21.4469 7.65478C21.4032 7.72026 21.425 7.80787 21.4907 7.85156C21.5563 7.89537 21.6547 7.88442 21.6984 7.81882L22.9673 5.93755C23.011 5.87196 22.9892 5.77351 22.9235 5.72982V5.72982Z" fill="white"/>
<path d="M23.0766 7.46886C23.0111 7.4141 22.9892 7.31565 23.0438 7.25005L23.6782 6.4516C23.7328 6.38612 23.8313 6.37505 23.8969 6.42981C23.9626 6.48445 23.9844 6.58291 23.9296 6.6485L23.2954 7.44695C23.2407 7.51255 23.1423 7.5235 23.0767 7.46886H23.0766Z" fill="#F3F3F3"/>
<path d="M23.0657 7.47974C22.9891 7.42498 22.9782 7.31557 23.0329 7.23902L23.6672 6.44066C23.7219 6.364 23.8312 6.35305 23.9078 6.41876C23.9843 6.4734 23.9953 6.58281 23.9405 6.65936L23.3063 7.45783C23.2516 7.53439 23.1422 7.54534 23.0657 7.47974V7.47974ZM23.8859 6.44055C23.8204 6.3859 23.7328 6.39685 23.6782 6.46245L23.0438 7.26093C23.0001 7.32652 23.011 7.41403 23.0765 7.46867C23.1422 7.52343 23.2297 7.51248 23.2844 7.44688L23.9187 6.64841C23.9625 6.58281 23.9515 6.48436 23.886 6.44066L23.8859 6.44055Z" fill="white"/>
<path d="M22.9672 9.10941C22.9016 9.04382 22.9016 8.94537 22.9672 8.89061L24.5859 7.28289C24.6516 7.2173 24.7499 7.22814 24.8046 7.28289C24.8593 7.33754 24.8702 7.44694 24.8046 7.50158L23.197 9.10941C23.1313 9.17501 23.0328 9.17501 22.9672 9.10941V9.10941Z" fill="#F3F3F3"/>
<path d="M22.9563 9.12037C22.9247 9.08828 22.907 9.04508 22.907 9.00007C22.907 8.95507 22.9247 8.91187 22.9563 8.87978L24.575 7.27193C24.6071 7.24035 24.6503 7.22266 24.6954 7.22266C24.7404 7.22266 24.7836 7.24035 24.8157 7.27193C24.8473 7.30403 24.8649 7.34723 24.8649 7.39223C24.8649 7.43723 24.8473 7.48044 24.8157 7.51253L23.1969 9.12026C23.1648 9.1518 23.1216 9.16948 23.0766 9.16948C23.0316 9.16948 22.9884 9.1518 22.9563 9.12026V9.12037ZM24.8048 7.28289C24.7501 7.22813 24.6517 7.22813 24.597 7.28289L22.9782 8.89062C22.9234 8.94537 22.9234 9.04382 22.9782 9.09847C23.0328 9.15323 23.1313 9.15323 23.1859 9.09847L24.8048 7.49074C24.8594 7.43598 24.8594 7.34848 24.8048 7.28289Z" fill="white"/>
<path d="M24.6078 9.02192C24.5532 8.95633 24.5532 8.85788 24.6188 8.80312L25.3953 8.14695C25.4609 8.09231 25.5593 8.10315 25.6141 8.16885C25.6687 8.23445 25.6687 8.3329 25.6031 8.38754L24.8266 9.04382C24.7609 9.09847 24.6625 9.08752 24.6078 9.02192Z" fill="#F3F3F3"/>
<path d="M24.5969 9.03285C24.5313 8.95631 24.5422 8.8469 24.6078 8.79226L25.3843 8.13596C25.4499 8.07036 25.5593 8.08131 25.6249 8.15786C25.6906 8.23441 25.6796 8.34381 25.614 8.39846L24.8374 9.05476C24.772 9.12024 24.6624 9.1094 24.597 9.03285H24.5969ZM25.6031 8.16881C25.5483 8.10322 25.4608 8.10322 25.3954 8.14691L24.6188 8.80321C24.5641 8.85786 24.5532 8.94535 24.6078 9.01095C24.6624 9.07655 24.7501 9.07655 24.8155 9.03285L25.5921 8.37655C25.6577 8.32191 25.6577 8.23441 25.6031 8.16881Z" fill="white"/>
<path d="M24.1704 10.597C24.1157 10.5204 24.1376 10.422 24.2142 10.3782L26.1172 9.10946C26.1937 9.06565 26.2922 9.08756 26.3358 9.15327C26.3906 9.22982 26.3687 9.32827 26.2922 9.37196L24.3891 10.6407C24.3234 10.6845 24.225 10.6626 24.1704 10.597V10.597Z" fill="#F3F3F3"/>
<path d="M24.1594 10.5969C24.1047 10.5204 24.1266 10.411 24.2032 10.3563L26.1063 9.08751C26.1828 9.03287 26.2922 9.05477 26.3469 9.14227C26.4016 9.21882 26.3796 9.32822 26.3032 9.38275L24.4001 10.6517C24.3234 10.7064 24.2141 10.6845 24.1594 10.597V10.5969ZM26.325 9.16417C26.2813 9.09847 26.1938 9.07656 26.1282 9.12037L24.225 10.389C24.1595 10.4329 24.1375 10.5204 24.1922 10.5969C24.2359 10.6625 24.3234 10.6844 24.3891 10.6407L26.2922 9.37191C26.3578 9.31727 26.3688 9.22966 26.325 9.16417Z" fill="white"/>
<path d="M25.8002 10.8266C25.7564 10.7499 25.7783 10.6516 25.8549 10.6078L26.7408 10.1047C26.8174 10.0609 26.9158 10.0938 26.9595 10.1702C27.0033 10.2469 26.9814 10.3452 26.9049 10.389L26.0189 10.8922C25.9424 10.9359 25.8439 10.9031 25.8001 10.8265L25.8002 10.8266Z" fill="#F3F3F3"/>
<path d="M25.7893 10.8375C25.7455 10.75 25.7674 10.6515 25.8439 10.6078L26.7299 10.1047C26.8065 10.0609 26.9159 10.0938 26.9596 10.1702C27.0034 10.2578 26.9815 10.3563 26.9049 10.4L26.0189 10.9032C25.9424 10.9469 25.833 10.914 25.7893 10.8375V10.8375ZM26.9486 10.1813C26.9049 10.1047 26.8174 10.0828 26.7518 10.1265L25.8658 10.6297C25.8003 10.6734 25.7783 10.7609 25.8111 10.8265C25.8549 10.9031 25.9424 10.925 26.008 10.8813L26.894 10.3781C26.9596 10.3453 26.9815 10.2578 26.9486 10.1813V10.1813Z" fill="white"/>
<path d="M25.0673 12.2813C25.0345 12.1938 25.0673 12.1063 25.1548 12.0735L27.2657 11.1986C27.3422 11.1657 27.4407 11.2094 27.4734 11.2859C27.5063 11.3734 27.4734 11.4609 27.3859 11.4937L25.2751 12.3687C25.1985 12.4015 25.1001 12.3687 25.0673 12.2813Z" fill="#F3F3F3"/>
<path d="M25.0563 12.2922C25.0235 12.2048 25.0563 12.1063 25.1438 12.0625L27.2547 11.1876C27.2968 11.1717 27.3434 11.1732 27.3844 11.1916C27.4254 11.2101 27.4574 11.244 27.4734 11.286C27.5062 11.3735 27.4734 11.4719 27.3859 11.5156L25.2751 12.3906C25.233 12.4065 25.1864 12.4051 25.1454 12.3866C25.1043 12.3682 25.0723 12.3343 25.0563 12.2923V12.2922ZM27.4516 11.297C27.4187 11.2204 27.3312 11.1876 27.2657 11.2095L25.1547 12.0844C25.0782 12.1172 25.0453 12.2048 25.0782 12.2813C25.1109 12.3579 25.1984 12.3907 25.2641 12.3688L27.3749 11.4938C27.4516 11.4611 27.4845 11.3735 27.4516 11.297Z" fill="white"/>
<path d="M26.6096 12.8283C26.5768 12.7406 26.6205 12.6533 26.708 12.6204L27.6704 12.3031C27.747 12.2704 27.8454 12.325 27.8673 12.4016C27.9 12.4891 27.8563 12.5766 27.7689 12.6094L26.8064 12.9267C26.7299 12.9594 26.6424 12.9158 26.6096 12.8281V12.8283Z" fill="#F3F3F3"/>
<path d="M26.5984 12.839C26.5657 12.7515 26.6094 12.6531 26.708 12.6203L27.6702 12.3031C27.7577 12.2703 27.8562 12.325 27.889 12.4126C27.9218 12.5 27.8781 12.5984 27.7795 12.6313L26.8172 12.9485C26.7297 12.9703 26.6313 12.9265 26.5984 12.839ZM27.8671 12.4235C27.8452 12.3469 27.7577 12.3031 27.6812 12.325L26.7188 12.6422C26.6422 12.664 26.6094 12.7515 26.6313 12.8282C26.6532 12.9047 26.7407 12.9484 26.8172 12.9265L27.7796 12.6094C27.8562 12.5766 27.889 12.5 27.8671 12.4234V12.4235Z" fill="white"/>
<path d="M25.6253 14.1297C25.6034 14.0422 25.658 13.9547 25.7455 13.9438L27.9876 13.5063C28.075 13.4844 28.1516 13.55 28.1734 13.6375C28.1953 13.725 28.1407 13.8125 28.0532 13.8234L25.8111 14.2609C25.7236 14.2719 25.6361 14.2172 25.6251 14.1297H25.6253Z" fill="#F3F3F3"/>
<path d="M25.6031 14.1299C25.5812 14.0314 25.6468 13.9439 25.7343 13.922L27.9765 13.4844C28.064 13.4625 28.1515 13.5283 28.1733 13.6267C28.1952 13.7251 28.1296 13.8126 28.0421 13.8345L25.7999 14.272C25.7125 14.2939 25.6249 14.2283 25.6031 14.1297V14.1299ZM28.1515 13.6376C28.1406 13.561 28.064 13.5064 27.9875 13.5173L25.7452 13.9548C25.6687 13.9658 25.614 14.0532 25.6358 14.1299C25.6468 14.2064 25.7233 14.2611 25.8 14.2501L28.0421 13.8126C28.1186 13.7907 28.1733 13.7141 28.1515 13.6376Z" fill="white"/>
<path d="M27.0251 14.9719C27.0141 14.8844 27.0688 14.8078 27.1563 14.7968L28.1624 14.6765C28.2499 14.6656 28.3266 14.7312 28.3374 14.8187C28.3484 14.9063 28.2938 14.9828 28.2063 14.9938L27.2 15.114C27.1234 15.125 27.0359 15.0594 27.025 14.9719H27.0251Z" fill="#F3F3F3"/>
<path d="M27.0141 14.9719C27.0032 14.8734 27.0688 14.7859 27.1563 14.775L28.1624 14.6548C28.2499 14.6438 28.3374 14.7094 28.3484 14.8078C28.3593 14.9063 28.2937 14.9938 28.2062 15.0047L27.2 15.125C27.1126 15.1359 27.025 15.0703 27.0141 14.9719ZM28.3374 14.8188C28.3266 14.7423 28.25 14.6765 28.1734 14.6875L27.1672 14.8078C27.0907 14.8188 27.0359 14.8953 27.0469 14.9719C27.0578 15.0484 27.1344 15.1141 27.2109 15.1032L28.2172 14.9828C28.2937 14.9719 28.3484 14.8953 28.3375 14.8188H28.3374Z" fill="white"/>
<path d="M25.8002 16.0328C25.8002 15.9453 25.8657 15.8688 25.9533 15.8688H28.2393C28.3268 15.8688 28.3924 15.9453 28.3924 16.0328C28.3924 16.1203 28.3268 16.1969 28.2393 16.1969H25.9533C25.8658 16.1969 25.8002 16.1203 25.8002 16.0328Z" fill="#F3F3F3"/>
<path d="M25.7892 16.0329C25.7892 15.9345 25.8658 15.8579 25.9533 15.8579H28.2392C28.3267 15.8579 28.4033 15.9345 28.4033 16.0329C28.4033 16.1313 28.3267 16.2079 28.2392 16.2079H25.9533C25.8658 16.2079 25.7892 16.1313 25.7892 16.0329ZM28.3814 16.0439C28.3814 15.9673 28.3158 15.8908 28.2391 15.8908H25.9534C25.8769 15.8908 25.8111 15.9562 25.8111 16.0439C25.8111 16.1204 25.8769 16.1969 25.9534 16.1969H28.2394C28.3159 16.186 28.3815 16.1204 28.3815 16.0439H28.3814Z" fill="white"/>
<path d="M27.0142 17.1375C27.025 17.05 27.0907 16.9844 27.1782 16.9844L28.1954 17.0609C28.2828 17.0719 28.3484 17.1484 28.3374 17.2359C28.3266 17.3234 28.2609 17.389 28.1734 17.389L27.1563 17.3125C27.0797 17.3015 27.014 17.225 27.014 17.1375H27.0142Z" fill="#F3F3F3"/>
<path d="M27.0032 17.1376C27.0142 17.0391 27.0907 16.9735 27.1783 16.9735L28.1956 17.0501C28.283 17.061 28.3596 17.1376 28.3486 17.236C28.3378 17.3345 28.2611 17.4001 28.1736 17.4001L27.1563 17.3235C27.0688 17.3126 27.0032 17.2251 27.0032 17.1376ZM28.3378 17.236C28.3486 17.1595 28.283 17.0829 28.2064 17.0829L27.1891 17.0064C27.1126 17.0064 27.0469 17.061 27.036 17.1486C27.0251 17.2251 27.0907 17.3016 27.1673 17.3016L28.1847 17.3782C28.2611 17.3782 28.3268 17.3127 28.3378 17.236V17.236Z" fill="white"/>
<path d="M25.6033 17.936C25.6252 17.8485 25.7018 17.7937 25.7893 17.8048L28.0315 18.2532C28.119 18.275 28.1737 18.3516 28.1518 18.4391C28.1299 18.5266 28.0534 18.5813 27.9659 18.5704L25.7236 18.1219C25.647 18.111 25.5924 18.0235 25.6033 17.936V17.936Z" fill="#F3F3F3"/>
<path d="M25.5921 17.936C25.614 17.8375 25.7015 17.7829 25.789 17.7937L28.0313 18.2422C28.1188 18.264 28.1844 18.3515 28.1625 18.45C28.1407 18.5484 28.0532 18.6032 27.9657 18.5922L25.7233 18.1438C25.6358 18.1219 25.5811 18.0344 25.5921 17.9361V17.936ZM28.1407 18.45C28.1517 18.3734 28.108 18.2969 28.0313 18.275L25.7889 17.8266C25.7125 17.8157 25.6358 17.8594 25.6139 17.9469C25.603 18.0235 25.6467 18.1 25.7234 18.1219L27.9657 18.5703C28.0532 18.5813 28.1188 18.5265 28.1407 18.45Z" fill="white"/>
<path d="M26.5876 19.2485C26.5926 19.2277 26.6017 19.208 26.6143 19.1907C26.6269 19.1734 26.6428 19.1587 26.661 19.1476C26.6793 19.1364 26.6996 19.1289 26.7208 19.1256C26.7419 19.1223 26.7635 19.1232 26.7844 19.1282L27.7687 19.4016C27.8562 19.4235 27.8999 19.5111 27.8781 19.5985C27.8731 19.6193 27.8641 19.639 27.8515 19.6563C27.8388 19.6737 27.8229 19.6883 27.8046 19.6995C27.7864 19.7107 27.766 19.7182 27.7449 19.7215C27.7237 19.7248 27.7021 19.7239 27.6812 19.7189L26.6969 19.4454C26.6094 19.4235 26.5657 19.336 26.5875 19.2485H26.5876Z" fill="#F3F3F3"/>
<path d="M26.5767 19.2485C26.5986 19.161 26.697 19.0954 26.7845 19.1282L27.7689 19.4015C27.8564 19.4234 27.9112 19.5219 27.8893 19.6094C27.8673 19.6969 27.7689 19.7624 27.6814 19.7297L26.697 19.4563C26.6095 19.4344 26.5548 19.3469 26.5768 19.2486L26.5767 19.2485ZM27.8564 19.6094C27.8783 19.5328 27.8345 19.4453 27.7579 19.4234L26.7736 19.15C26.697 19.1281 26.6205 19.1719 26.5986 19.2594C26.5768 19.336 26.6205 19.4234 26.697 19.4453L27.6814 19.7188C27.7579 19.7297 27.8345 19.686 27.8564 19.6094Z" fill="white"/>
<path d="M25.0453 19.7735C25.0781 19.686 25.1766 19.6531 25.2531 19.686L27.3641 20.5609C27.4406 20.5937 27.4843 20.6922 27.4516 20.7687C27.4187 20.8563 27.3203 20.889 27.2437 20.8563L25.1328 19.9813C25.0453 19.9486 25.0125 19.85 25.0453 19.7736V19.7735Z" fill="#F3F3F3"/>
<path d="M25.0344 19.7625C25.0504 19.7205 25.0824 19.6865 25.1234 19.668C25.1644 19.6496 25.2111 19.6481 25.2532 19.664L27.364 20.5391C27.4515 20.5719 27.4843 20.6704 27.4515 20.7688C27.4355 20.8109 27.4035 20.8448 27.3625 20.8633C27.3215 20.8817 27.2748 20.8832 27.2327 20.8673L25.1219 19.9923C25.0344 19.9484 25.0016 19.85 25.0344 19.7625ZM27.4296 20.7579C27.4624 20.6813 27.4296 20.5938 27.3531 20.561L25.2422 19.6859C25.1657 19.6532 25.0891 19.6969 25.0563 19.7734C25.0235 19.85 25.0563 19.9375 25.1328 19.9704L27.2437 20.8454C27.3202 20.8673 27.4077 20.8344 27.4296 20.7579Z" fill="white"/>
<path d="M25.7563 21.25C25.8001 21.1735 25.8874 21.1406 25.964 21.1735L26.8717 21.6329C26.9482 21.6656 26.9811 21.7641 26.9374 21.8516C26.8936 21.9281 26.8061 21.9611 26.7296 21.9281L25.822 21.4688C25.7453 21.425 25.7125 21.3266 25.7563 21.25Z" fill="#F3F3F3"/>
<path d="M25.7452 21.2391C25.789 21.1516 25.8875 21.1189 25.975 21.1626L26.8828 21.622C26.9703 21.6658 27.0031 21.7643 26.9593 21.8516C26.9156 21.9391 26.817 21.972 26.7297 21.9282L25.8219 21.4689C25.7343 21.4362 25.7015 21.3266 25.7452 21.2391V21.2391ZM26.9266 21.8407C26.9593 21.7641 26.9374 21.6766 26.8608 21.6439L25.9531 21.1845C25.8874 21.1517 25.8 21.1845 25.7562 21.2501C25.7234 21.3266 25.7452 21.4141 25.8218 21.447L26.7295 21.9064C26.8062 21.9391 26.8937 21.9174 26.9266 21.8407Z" fill="white"/>
<path d="M24.1484 21.4578C24.2031 21.3813 24.2906 21.3594 24.3672 21.414L26.2703 22.6828C26.3469 22.7265 26.3578 22.8251 26.3141 22.9015C26.2594 22.9782 26.1719 23 26.0953 22.9453L24.1922 21.6765C24.1156 21.6219 24.0937 21.5234 24.1484 21.4578Z" fill="#F3F3F3"/>
<path d="M24.1375 21.4468C24.1922 21.3703 24.3016 21.3484 24.3782 21.3922L26.2814 22.6609C26.3579 22.7155 26.3798 22.814 26.325 22.9015C26.2704 22.9781 26.161 22.9999 26.0846 22.9562L24.1813 21.6874C24.0938 21.6328 24.0828 21.5234 24.1375 21.4468ZM26.2923 22.8905C26.336 22.825 26.325 22.7265 26.2596 22.6828L24.3563 21.414C24.2907 21.3703 24.2032 21.3922 24.1594 21.4578C24.1157 21.5234 24.1266 21.6218 24.1921 21.6655L26.0954 22.9343C26.161 22.9781 26.2485 22.9562 26.2923 22.8906V22.8905Z" fill="white"/>
<path d="M24.5532 23.0438C24.6078 22.9781 24.7063 22.9563 24.7719 23.0111L25.5703 23.6344C25.6359 23.6891 25.6469 23.7875 25.5922 23.8532C25.5376 23.9187 25.4391 23.9407 25.3734 23.886L24.575 23.2625C24.5095 23.2078 24.4984 23.1094 24.5532 23.0438V23.0438Z" fill="#F3F3F3"/>
<path d="M24.5422 23.0329C24.5969 22.9564 24.7063 22.9454 24.7828 23.0002L25.5812 23.6235C25.6578 23.6782 25.6687 23.7876 25.614 23.8641C25.5593 23.9408 25.4499 23.9516 25.3735 23.897L24.575 23.2735C24.4984 23.2189 24.4876 23.1095 24.5422 23.0329ZM25.5922 23.8533C25.6468 23.7876 25.6359 23.7001 25.5703 23.6454L24.7719 23.022C24.7063 22.9783 24.6188 22.9892 24.5641 23.0547C24.5094 23.1204 24.5203 23.2079 24.5859 23.2626L25.3843 23.886C25.4499 23.9298 25.5374 23.9188 25.5921 23.8533H25.5922Z" fill="white"/>
<path d="M22.9234 22.9345C22.9891 22.8689 23.0876 22.8689 23.1422 22.9345L24.761 24.5422C24.8267 24.6079 24.8157 24.7063 24.761 24.761C24.6955 24.8266 24.5969 24.8266 24.5423 24.761L22.9234 23.1533C22.8688 23.0985 22.8688 22.9891 22.9234 22.9345V22.9345Z" fill="#F3F3F3"/>
<path d="M22.9234 22.9234C22.9555 22.8918 22.9987 22.8741 23.0437 22.8741C23.0888 22.8741 23.132 22.8918 23.1641 22.9234L24.7829 24.5311C24.8144 24.5632 24.8321 24.6064 24.8321 24.6515C24.8321 24.6965 24.8144 24.7397 24.7829 24.7718C24.7508 24.8034 24.7076 24.8211 24.6626 24.8211C24.6175 24.8211 24.5743 24.8034 24.5423 24.7718L22.9234 23.1641C22.8468 23.0984 22.8468 22.9891 22.9234 22.9234ZM24.761 24.7499C24.8157 24.6953 24.8157 24.5968 24.761 24.5422L23.1422 22.9344C23.0875 22.8797 22.9891 22.8797 22.9344 22.9344C22.8797 22.989 22.8797 23.0875 22.9344 23.1421L24.5532 24.7499C24.6078 24.8156 24.6955 24.8156 24.761 24.7499Z" fill="white"/>
<path d="M23.0218 24.564C23.0876 24.5094 23.1859 24.5094 23.2407 24.575L23.9079 25.3406C23.9625 25.4063 23.9516 25.5047 23.8859 25.5594C23.8204 25.614 23.7219 25.614 23.6672 25.5484L22.9999 24.7828C22.9453 24.7282 22.9562 24.6297 23.0218 24.564V24.564Z" fill="#F3F3F3"/>
<path d="M23.011 24.564C23.0876 24.4986 23.186 24.5094 23.2515 24.575L23.9188 25.3406C23.9844 25.4063 23.9734 25.5156 23.8969 25.5813C23.8203 25.6469 23.7219 25.6359 23.6563 25.5703L22.989 24.8047C22.9344 24.7282 22.9344 24.6188 23.0109 24.564H23.011ZM23.886 25.5594C23.9515 25.5047 23.9515 25.4171 23.9078 25.3516L23.2406 24.5859C23.1859 24.5313 23.0984 24.5203 23.0328 24.575C22.9672 24.6297 22.9672 24.7172 23.0109 24.7827L23.6782 25.5484C23.7328 25.614 23.8204 25.614 23.8859 25.5594H23.886Z" fill="white"/>
<path d="M21.4469 24.1485C21.5235 24.0939 21.6219 24.1158 21.6657 24.1923L22.9344 26.0844C22.9782 26.161 22.9563 26.2594 22.8907 26.3032C22.8142 26.3579 22.7157 26.336 22.6719 26.2594L21.4031 24.3672C21.3593 24.2908 21.3812 24.1922 21.4468 24.1485H21.4469Z" fill="#F3F3F3"/>
<path d="M21.4469 24.1375C21.5234 24.0829 21.6328 24.1048 21.6875 24.1813L22.9562 26.0735C23.0108 26.1499 22.9889 26.2593 22.9016 26.3139C22.8249 26.3687 22.7156 26.3468 22.6609 26.2702L21.3923 24.3781C21.3376 24.2907 21.3595 24.1923 21.4469 24.1376V24.1375ZM22.8906 26.2921C22.9562 26.2483 22.9781 26.1608 22.9343 26.0952L21.6657 24.2031C21.6219 24.1376 21.5344 24.1266 21.458 24.1704C21.3923 24.2141 21.3704 24.3016 21.4142 24.3673L22.6828 26.2593C22.7266 26.3139 22.825 26.3358 22.8905 26.292L22.8906 26.2921Z" fill="white"/>
<path d="M21.2172 25.7671C21.2938 25.7234 21.3922 25.7453 21.4359 25.8219L21.9391 26.7078C21.9828 26.7844 21.9499 26.8828 21.8734 26.9265C21.7968 26.9703 21.6984 26.9484 21.6547 26.8719L21.1516 25.9859C21.1188 25.9094 21.1407 25.8109 21.2171 25.7672L21.2172 25.7671Z" fill="#F3F3F3"/>
<path d="M21.2172 25.7563C21.3047 25.7125 21.4032 25.7344 21.4469 25.811L21.95 26.697C21.9938 26.7736 21.9719 26.883 21.8845 26.9267C21.7969 26.9705 21.6984 26.9486 21.6547 26.8721L21.1516 25.986C21.1078 25.9095 21.1297 25.811 21.2171 25.7563H21.2172ZM21.8734 26.9159C21.9391 26.8721 21.9719 26.7845 21.9282 26.7189L21.4251 25.8329C21.3813 25.7673 21.2938 25.7454 21.2282 25.7781C21.1625 25.8219 21.1297 25.9095 21.1734 25.9751L21.6766 26.8611C21.7094 26.9267 21.8078 26.9596 21.8734 26.9158V26.9159Z" fill="white"/>
<path d="M19.7626 25.0454C19.8501 25.0126 19.9376 25.0454 19.9705 25.1219L20.8564 27.2328C20.8892 27.3094 20.8455 27.4078 20.7689 27.4405C20.6924 27.4734 20.5939 27.4405 20.5612 27.364L19.6752 25.2532C19.6424 25.1765 19.6861 25.0782 19.7626 25.0454Z" fill="#F3F3F3"/>
<path d="M19.7624 25.0344C19.8499 25.0017 19.9484 25.0344 19.9922 25.1219L20.8781 27.2329C20.894 27.2749 20.8925 27.3216 20.874 27.3626C20.8556 27.4035 20.8217 27.4356 20.7797 27.4516C20.6922 27.4844 20.5937 27.4516 20.55 27.3641L19.6641 25.2532C19.6313 25.1766 19.6751 25.0782 19.7624 25.0344V25.0344ZM20.7578 27.4298C20.8343 27.3969 20.8672 27.3094 20.8343 27.2438L19.9484 25.1329C19.9156 25.0563 19.8281 25.0235 19.7516 25.0563C19.6751 25.0891 19.6421 25.1766 19.6751 25.2423L20.5609 27.3532C20.6047 27.4298 20.6812 27.4625 20.7578 27.4298Z" fill="white"/>
<path d="M19.2265 26.5985C19.3141 26.5658 19.4015 26.6095 19.4344 26.697L19.7516 27.6595C19.7844 27.736 19.7297 27.8345 19.6532 27.8564C19.5657 27.8891 19.4782 27.8454 19.4454 27.7579L19.1282 26.7954C19.0954 26.7189 19.1391 26.6314 19.2266 26.5985H19.2265Z" fill="#F3F3F3"/>
<path d="M19.2158 26.5876C19.2579 26.5717 19.3045 26.5732 19.3455 26.5916C19.3865 26.6101 19.4185 26.644 19.4346 26.686L19.7519 27.6485C19.7846 27.736 19.7299 27.8344 19.6423 27.8673C19.6003 27.8831 19.5536 27.8817 19.5126 27.8632C19.4716 27.8448 19.4396 27.8108 19.4236 27.7688L19.1064 26.8064C19.0845 26.7189 19.1283 26.6204 19.2158 26.5876ZM19.6424 27.8453C19.719 27.8235 19.7627 27.736 19.7409 27.6594L19.4236 26.697C19.4018 26.6204 19.3143 26.5876 19.2377 26.6095C19.1611 26.6314 19.1174 26.7189 19.1393 26.7954L19.4565 27.7579C19.462 27.7764 19.4715 27.7936 19.4841 27.8083C19.4968 27.823 19.5124 27.8348 19.5299 27.8431C19.5475 27.8514 19.5666 27.8558 19.5859 27.8562C19.6053 27.8566 19.6246 27.8529 19.6424 27.8454V27.8453Z" fill="white"/>
<path d="M17.936 25.6032C18.0234 25.5813 18.111 25.636 18.1219 25.7235L18.5814 27.9658C18.6033 28.0532 18.5375 28.1299 18.45 28.1516C18.3626 28.1735 18.275 28.1189 18.2642 28.0314L17.8046 25.7891C17.7937 25.7125 17.8484 25.625 17.9359 25.6031L17.936 25.6032Z" fill="#F3F3F3"/>
<path d="M17.9361 25.592C18.0344 25.5702 18.1219 25.6358 18.1438 25.7233L18.6031 27.9657C18.625 28.0531 18.5593 28.1516 18.4718 28.1626C18.3734 28.1845 18.2859 28.1189 18.2641 28.0313L17.8047 25.7889C17.7829 25.7014 17.8376 25.6139 17.936 25.5921L17.9361 25.592ZM18.4499 28.1406C18.5266 28.1298 18.5812 28.0531 18.5703 27.9656L18.1109 25.7233C18.1001 25.6467 18.0126 25.5921 17.936 25.6139C17.8594 25.6248 17.8048 25.7014 17.8157 25.7889L18.2751 28.0313C18.2969 28.1079 18.3734 28.1516 18.4501 28.1408L18.4499 28.1406Z" fill="white"/>
<path d="M17.1048 27.0249C17.1923 27.014 17.2689 27.0688 17.2908 27.1562L17.4219 28.1624C17.4329 28.2499 17.3673 28.3265 17.2797 28.3374C17.1923 28.3484 17.1158 28.2937 17.0939 28.2062L16.9627 27.1999C16.9517 27.1124 17.0173 27.0359 17.1048 27.0249Z" fill="#F3F3F3"/>
<path d="M17.1046 27.0141C17.2031 27.0033 17.2907 27.0689 17.3016 27.1564L17.4329 28.1626C17.4438 28.2501 17.3782 28.3376 17.2797 28.3486C17.1812 28.3595 17.0937 28.2939 17.0827 28.2063L16.9514 27.2001C16.9405 27.1126 17.0061 27.0251 17.1046 27.0141ZM17.2687 28.3267C17.3453 28.3158 17.4111 28.2392 17.4001 28.1626L17.2687 27.1564C17.2578 27.0798 17.1812 27.0251 17.1046 27.036C17.028 27.047 16.9623 27.1235 16.9732 27.2001L17.1046 28.2064C17.1156 28.283 17.1922 28.3376 17.2687 28.3267Z" fill="white"/>
<path d="M15.9782 25.7999C16.0657 25.7999 16.1422 25.8656 16.1422 25.9531V28.239C16.1422 28.3265 16.0657 28.3922 15.9782 28.3922C15.8907 28.3922 15.8141 28.3265 15.8141 28.239V25.9531C15.8251 25.8656 15.8907 25.7999 15.9782 25.7999Z" fill="#F3F3F3"/>
<path d="M15.9782 25.7889C16.0766 25.7889 16.1531 25.8655 16.1531 25.953V28.2389C16.1531 28.3264 16.0766 28.403 15.9782 28.403C15.8797 28.403 15.8032 28.3264 15.8032 28.2389V25.9531C15.8032 25.8656 15.8907 25.7889 15.9782 25.7889ZM15.9782 28.3812C16.0547 28.3812 16.1312 28.3156 16.1312 28.2389V25.9531C16.1312 25.8764 16.0656 25.8108 15.9782 25.8108C15.9016 25.8108 15.8251 25.8764 15.8251 25.9531V28.2389C15.8359 28.3156 15.9016 28.3812 15.9782 28.3812Z" fill="white"/>
<path d="M14.8844 27.025C14.9719 27.0359 15.0375 27.1015 15.0375 27.189L14.961 28.2063C14.9501 28.2938 14.8735 28.3594 14.786 28.3485C14.6985 28.3375 14.6329 28.2719 14.6329 28.1844L14.7094 27.1671C14.7204 27.0798 14.7969 27.014 14.8844 27.025Z" fill="#F3F3F3"/>
<path d="M14.8844 27.0141C14.9828 27.0251 15.0484 27.1016 15.0484 27.1891L14.9719 28.2064C14.9609 28.2939 14.8844 28.3705 14.7859 28.3595C14.6876 28.3486 14.6219 28.272 14.6219 28.1845L14.6984 27.1672C14.7094 27.0689 14.7859 27.0033 14.8844 27.0141ZM14.7859 28.3376C14.8625 28.3376 14.9391 28.283 14.9391 28.2064L15.0157 27.1891C15.0157 27.1126 14.9609 27.047 14.8734 27.036C14.7969 27.036 14.7203 27.0907 14.7203 27.1673L14.6438 28.1845C14.6438 28.2611 14.7094 28.3268 14.786 28.3376H14.7859Z" fill="white"/>
<path d="M14.064 25.6031C14.1515 25.6249 14.2062 25.7014 14.1952 25.7889L13.7468 28.0314C13.7249 28.1189 13.6484 28.1737 13.5609 28.1516C13.4734 28.1298 13.4187 28.0533 13.4297 27.9657L13.8781 25.7233C13.8891 25.6468 13.9766 25.5921 14.064 25.6031Z" fill="#F3F3F3"/>
<path d="M14.0642 25.592C14.1626 25.6139 14.2173 25.7015 14.2064 25.7889L13.7579 28.0313C13.736 28.1188 13.6485 28.1844 13.5502 28.1624C13.4517 28.1405 13.397 28.053 13.4079 27.9655L13.8564 25.7233C13.8783 25.6358 13.9658 25.581 14.0641 25.5921L14.0642 25.592ZM13.5502 28.1405C13.6267 28.1515 13.7033 28.1078 13.7252 28.0313L14.1735 25.7889C14.1845 25.7124 14.1408 25.6358 14.0533 25.6139C13.9767 25.6031 13.9002 25.6468 13.8783 25.7234L13.4298 27.9655C13.4189 28.053 13.4735 28.1188 13.5502 28.1405V28.1405Z" fill="white"/>
<path d="M12.7517 26.5877C12.8393 26.6096 12.8939 26.6971 12.872 26.7846L12.5986 27.7689C12.5768 27.8564 12.4893 27.9001 12.4018 27.8783C12.381 27.8733 12.3613 27.8642 12.344 27.8516C12.3266 27.839 12.312 27.8231 12.3008 27.8048C12.2896 27.7865 12.2821 27.7662 12.2788 27.745C12.2755 27.7238 12.2764 27.7022 12.2814 27.6814L12.5549 26.6971C12.5768 26.6096 12.6643 26.5659 12.7518 26.5877H12.7517Z" fill="#F3F3F3"/>
<path d="M12.7516 26.5768C12.8392 26.5986 12.9048 26.6971 12.8719 26.7846L12.5985 27.769C12.5767 27.8565 12.4783 27.9112 12.3908 27.8892C12.3033 27.8674 12.2377 27.769 12.2704 27.6815L12.5439 26.6971C12.5658 26.6096 12.6533 26.5548 12.7516 26.5767V26.5768ZM12.3908 27.8565C12.4673 27.8784 12.5548 27.8346 12.5767 27.758L12.85 26.7736C12.8719 26.6971 12.8282 26.6205 12.7407 26.5986C12.6642 26.5767 12.5767 26.6205 12.5548 26.6971L12.2814 27.6815C12.2704 27.758 12.3141 27.8346 12.3908 27.8565Z" fill="white"/>
<path d="M12.2156 25.0454C12.3031 25.0781 12.3358 25.1766 12.3031 25.2531L11.4281 27.3641C11.3953 27.4407 11.2968 27.4844 11.2204 27.4407C11.1437 27.3969 11.0999 27.3094 11.1327 27.2329L12.0077 25.1219C12.0405 25.0454 12.139 25.0016 12.2155 25.0454H12.2156Z" fill="#F3F3F3"/>
<path d="M12.2156 25.0344C12.2576 25.0504 12.2915 25.0824 12.31 25.1234C12.3285 25.1644 12.3299 25.2111 12.314 25.2532L11.439 27.364C11.4061 27.4515 11.3077 27.4843 11.2092 27.4515C11.1672 27.4354 11.1333 27.4034 11.1148 27.3625C11.0964 27.3215 11.0949 27.2748 11.1108 27.2328L11.9858 25.1218C12.0296 25.0344 12.128 24.9907 12.2156 25.0344V25.0344ZM11.2202 27.4297C11.2967 27.4624 11.3842 27.4297 11.4171 27.3531L12.2921 25.2422C12.3248 25.1657 12.2811 25.089 12.2046 25.0563C12.128 25.0235 12.0405 25.0563 12.0077 25.1328L11.1327 27.2437C11.1108 27.3093 11.1436 27.3968 11.2202 27.4297Z" fill="white"/>
<path d="M10.7391 25.7454C10.8157 25.7891 10.8484 25.8766 10.8157 25.9532L10.3563 26.8608C10.3125 26.9374 10.225 26.9702 10.1375 26.9264C10.0609 26.8827 10.0282 26.7953 10.0609 26.7187L10.5204 25.8111C10.5641 25.7345 10.6516 25.7016 10.7391 25.7454Z" fill="#F3F3F3"/>
<path d="M10.7392 25.7345C10.8267 25.7782 10.8595 25.8767 10.8158 25.9641L10.3564 26.8719C10.3126 26.9594 10.2141 26.9922 10.1268 26.9484C10.0393 26.9047 10.0064 26.8062 10.0502 26.7188L10.5095 25.8111C10.5533 25.7235 10.6517 25.6908 10.7392 25.7345ZM10.1377 26.9266C10.2143 26.9594 10.3018 26.9375 10.3345 26.8609L10.7939 25.9533C10.8266 25.8876 10.7939 25.8001 10.7283 25.7564C10.6517 25.7236 10.5642 25.7454 10.5314 25.822L10.072 26.7296C10.0393 26.7953 10.072 26.8828 10.1377 26.9265V26.9266Z" fill="white"/>
<path d="M10.5203 24.1267C10.5968 24.1813 10.6187 24.2798 10.5641 24.3454L9.29528 26.2378C9.25158 26.3142 9.15302 26.3252 9.07659 26.2815C9.00004 26.2267 8.97813 26.1284 9.03278 26.0626L10.3016 24.1702C10.3453 24.0938 10.4437 24.0719 10.5203 24.1265V24.1267Z" fill="#F3F3F3"/>
<path d="M10.5203 24.1157C10.5969 24.1704 10.6188 24.2798 10.575 24.3564L9.30626 26.2487C9.25162 26.3251 9.15316 26.347 9.06566 26.2924C8.98911 26.2376 8.9672 26.1283 9.0109 26.0516L10.2797 24.1595C10.3344 24.0829 10.4438 24.061 10.5203 24.1157V24.1157ZM9.07661 26.2705C9.1421 26.3141 9.24066 26.3032 9.28436 26.2377L10.5532 24.3454C10.5969 24.2798 10.5751 24.1923 10.5094 24.1485C10.4438 24.1048 10.3453 24.1158 10.3016 24.1813L9.0328 26.0626C8.98911 26.1283 9.0109 26.2266 9.07661 26.2703V26.2705Z" fill="white"/>
<path d="M8.92344 24.5314C8.98915 24.586 9.01094 24.6845 8.95629 24.7501L8.3219 25.5485C8.26726 25.6141 8.16881 25.625 8.10321 25.5704C8.03762 25.5157 8.01571 25.4173 8.07047 25.3516L8.70475 24.5532C8.75939 24.4877 8.85784 24.4766 8.92344 24.5314Z" fill="#F3F3F3"/>
<path d="M8.9344 24.5204C9.01095 24.575 9.0219 24.6845 8.96714 24.761L8.33284 25.5595C8.2782 25.636 8.16879 25.647 8.09224 25.5814C8.01569 25.5266 8.00474 25.4173 8.0595 25.3407L8.6938 24.5423C8.74845 24.4656 8.85785 24.4548 8.9344 24.5204ZM8.11415 25.5595C8.17963 25.6141 8.26725 25.6033 8.32189 25.5376L8.95631 24.7391C9.00011 24.6736 8.98905 24.586 8.92356 24.5313C8.85785 24.4766 8.77035 24.4875 8.7157 24.5533L8.08129 25.3516C8.0376 25.4173 8.04855 25.5157 8.11403 25.5595H8.11415Z" fill="white"/>
<path d="M9.03277 22.8907C9.09836 22.9562 9.09836 23.0548 9.03277 23.1094L7.41413 24.7171C7.34842 24.7829 7.25009 24.7719 7.19533 24.7171C7.14069 24.6625 7.12973 24.5531 7.19533 24.4985L8.80302 22.8907C8.86873 22.825 8.96717 22.825 9.03277 22.8907V22.8907Z" fill="#F3F3F3"/>
<path d="M9.04376 22.8798C9.07527 22.9119 9.09293 22.9551 9.09293 23C9.09293 23.045 9.07527 23.0882 9.04376 23.1203L7.42501 24.7283C7.39292 24.7598 7.34974 24.7775 7.30477 24.7775C7.2598 24.7775 7.21662 24.7598 7.18453 24.7283C7.15295 24.6962 7.13525 24.653 7.13525 24.6079C7.13525 24.5629 7.15295 24.5197 7.18453 24.4876L8.80317 22.8798C8.83527 22.8482 8.87847 22.8306 8.92347 22.8306C8.96847 22.8306 9.01167 22.8482 9.04376 22.8798V22.8798ZM7.19537 24.7172C7.25001 24.7719 7.34846 24.7719 7.4031 24.7172L9.02186 23.1093C9.07662 23.0547 9.07662 22.9562 9.02186 22.9016C8.96722 22.8468 8.86877 22.8468 8.81412 22.9016L7.19537 24.5094C7.14073 24.564 7.14073 24.6516 7.19537 24.7171V24.7172Z" fill="white"/>
<path d="M7.39221 22.9782C7.44685 23.0437 7.44685 23.1423 7.38125 23.1969L6.60471 23.8533C6.53911 23.908 6.44066 23.897 6.3859 23.8314C6.33125 23.7657 6.33125 23.6673 6.39685 23.6126L7.1734 22.9563C7.23911 22.9016 7.33745 22.9125 7.39221 22.9782Z" fill="#F3F3F3"/>
<path d="M7.40307 22.9672C7.46867 23.0438 7.45772 23.1531 7.39212 23.2079L6.61557 23.864C6.54997 23.9297 6.44057 23.9188 6.37497 23.8422C6.30926 23.7656 6.32021 23.6563 6.38581 23.6015L7.16247 22.9454C7.22796 22.8798 7.33748 22.8908 7.40296 22.9673L7.40307 22.9672ZM6.39676 23.8313C6.45152 23.8969 6.53902 23.8969 6.6045 23.8532L7.38117 23.1969C7.43581 23.1423 7.44677 23.0547 7.39212 22.9892C7.33736 22.9235 7.24986 22.9235 7.18438 22.9673L6.40771 23.6235C6.34211 23.6781 6.34211 23.7657 6.39676 23.8312V23.8313Z" fill="white"/>
<path d="M7.82986 21.4031C7.8845 21.4798 7.8626 21.5781 7.78605 21.6219L5.88297 22.8906C5.80642 22.9343 5.70797 22.9124 5.66427 22.8468C5.60952 22.7703 5.63142 22.6719 5.70797 22.628L7.61116 21.3594C7.67687 21.3157 7.77521 21.3375 7.82997 21.4031H7.82986Z" fill="#F3F3F3"/>
<path d="M7.84065 21.4031C7.89529 21.4798 7.87339 21.5891 7.79684 21.6439L5.89379 22.9125C5.81724 22.9673 5.70784 22.9453 5.6532 22.8579C5.59844 22.7813 5.62045 22.6719 5.69689 22.6173L7.60006 21.3485C7.6766 21.2939 7.78589 21.3158 7.84054 21.4031H7.84065ZM5.6751 22.836C5.71879 22.9016 5.80629 22.9235 5.87188 22.8798L7.77494 21.611C7.84065 21.5673 7.86244 21.4798 7.8078 21.4033C7.7641 21.3376 7.6766 21.3158 7.6109 21.3595L5.70784 22.6282C5.64224 22.6829 5.63129 22.7704 5.6751 22.836V22.836Z" fill="white"/>
<path d="M6.20007 21.1735C6.24388 21.25 6.22197 21.3485 6.14542 21.3923L5.25946 21.8953C5.18291 21.939 5.08446 21.9063 5.04076 21.8297C4.99696 21.7532 5.01886 21.6547 5.09541 21.6109L5.98137 21.1079C6.05792 21.0641 6.15638 21.0969 6.20018 21.1735H6.20007Z" fill="#F3F3F3"/>
<path d="M6.2111 21.1625C6.2548 21.25 6.23289 21.3484 6.15635 21.3922L5.27041 21.8953C5.19386 21.939 5.08446 21.9062 5.04076 21.8297C4.99696 21.7422 5.01886 21.6437 5.09541 21.5999L5.98135 21.0969C6.0579 21.0531 6.1673 21.0859 6.21099 21.1625H6.2111ZM5.0516 21.8187C5.09541 21.8953 5.18291 21.9172 5.2485 21.8734L6.13444 21.3703C6.20004 21.3265 6.22194 21.239 6.1892 21.1734C6.14539 21.0969 6.0579 21.075 5.9923 21.1188L5.10636 21.6218C5.04076 21.6546 5.01886 21.7422 5.05172 21.8187H5.0516Z" fill="white"/>
<path d="M6.93273 19.7188C6.96547 19.8063 6.93273 19.8939 6.84523 19.9266L4.73428 20.8016C4.65773 20.8345 4.55928 20.7908 4.52654 20.7141C4.49368 20.6266 4.52654 20.5391 4.61404 20.5064L6.72499 19.6313C6.80154 19.5986 6.89999 19.6313 6.93273 19.7188V19.7188Z" fill="#F3F3F3"/>
<path d="M6.94368 19.7079C6.97642 19.7954 6.94368 19.8938 6.85618 19.9375L4.74523 20.8125C4.70317 20.8284 4.65654 20.8269 4.61555 20.8085C4.57456 20.79 4.54255 20.7561 4.52654 20.7141C4.49368 20.6266 4.52654 20.5281 4.61404 20.4844L6.72499 19.6094C6.76705 19.5936 6.81368 19.595 6.85467 19.6135C6.89566 19.6319 6.92766 19.6659 6.94368 19.7079V19.7079ZM4.54833 20.7031C4.58118 20.7798 4.66868 20.8126 4.73428 20.7906L6.84523 19.9156C6.92178 19.8829 6.95463 19.7954 6.92178 19.7188C6.88904 19.6423 6.80154 19.6094 6.73583 19.6313L4.62488 20.5063C4.54833 20.5391 4.51559 20.6266 4.54833 20.7032V20.7031Z" fill="white"/>
<path d="M5.39067 19.1719C5.42342 19.2594 5.37972 19.3469 5.29222 19.3797L4.32972 19.6969C4.25317 19.7297 4.15472 19.675 4.13281 19.5985C4.10007 19.511 4.14376 19.4235 4.23126 19.3907L5.19377 19.0735C5.27032 19.0407 5.35782 19.0844 5.39067 19.1719Z" fill="#F3F3F3"/>
<path d="M5.40136 19.161C5.43421 19.2485 5.39052 19.347 5.29207 19.3798L4.32958 19.697C4.24208 19.7297 4.14363 19.6751 4.11078 19.5876C4.07804 19.5001 4.12173 19.4016 4.22029 19.3689L5.18267 19.0516C5.27017 19.0298 5.36862 19.0735 5.40147 19.1611L5.40136 19.161ZM4.13279 19.5767C4.1547 19.6533 4.2422 19.6971 4.31874 19.6752L5.28123 19.3579C5.35778 19.3361 5.39063 19.2486 5.36873 19.172C5.34683 19.0955 5.25933 19.0517 5.18278 19.0736L4.22029 19.3909C4.14374 19.4236 4.11089 19.5002 4.13279 19.5767Z" fill="white"/>
<path d="M6.37517 17.8703C6.39696 17.9578 6.34232 18.0453 6.25482 18.0563L4.01257 18.4938C3.92507 18.5157 3.84853 18.45 3.82674 18.3625C3.80483 18.275 3.85948 18.1875 3.94698 18.1765L6.18922 17.739C6.27672 17.7282 6.36422 17.7828 6.37506 17.8703H6.37517Z" fill="#F3F3F3"/>
<path d="M6.39688 17.8704C6.41878 17.9688 6.35319 18.0563 6.26569 18.0781L4.02343 18.5156C3.93593 18.5375 3.84843 18.4719 3.82664 18.3735C3.80474 18.275 3.87033 18.1875 3.95783 18.1657L6.20009 17.7282C6.28748 17.7063 6.37509 17.7719 6.39688 17.8704ZM3.84843 18.3626C3.85938 18.4391 3.93593 18.4938 4.01248 18.4829L6.25474 18.0454C6.33128 18.0344 6.38593 17.9469 6.36414 17.8704C6.35319 17.7938 6.27664 17.7391 6.19998 17.75L3.95783 18.1875C3.88128 18.2094 3.82664 18.286 3.84843 18.3625V18.3626Z" fill="white"/>
<path d="M4.97515 17.0283C4.98598 17.1157 4.93134 17.1923 4.84384 17.2033L3.83765 17.3236C3.75003 17.3345 3.67348 17.2689 3.66265 17.1813C3.65169 17.0939 3.70634 17.0173 3.79384 17.0062L4.80015 16.886C4.87669 16.875 4.96419 16.9406 4.97515 17.0283Z" fill="#F3F3F3"/>
<path d="M4.98611 17.0282C4.99695 17.1265 4.93135 17.214 4.84385 17.2249L3.83766 17.3453C3.75005 17.3562 3.66266 17.2906 3.65171 17.1922C3.64076 17.0937 3.70635 17.0063 3.79385 16.9953L4.80016 16.875C4.88755 16.864 4.97516 16.9297 4.986 17.028L4.98611 17.0282ZM3.66255 17.1812C3.6735 17.2578 3.75016 17.3235 3.82671 17.3124L4.8329 17.1922C4.90945 17.1812 4.96421 17.1047 4.95326 17.0282C4.94231 16.9515 4.86576 16.8859 4.78921 16.8969L3.7829 17.0172C3.70635 17.0282 3.65171 17.1047 3.66255 17.1812V17.1812Z" fill="white"/>
<path d="M6.19993 15.9671C6.19993 16.0547 6.13444 16.1313 6.04683 16.1313H3.76101C3.67351 16.1313 3.60791 16.0547 3.60791 15.9672C3.60791 15.8798 3.67351 15.8031 3.76101 15.8031H6.04694C6.13444 15.8031 6.20015 15.8798 6.20015 15.9672L6.19993 15.9671Z" fill="#F3F3F3"/>
<path d="M6.21109 15.9671C6.21109 16.0657 6.13443 16.1421 6.04693 16.1421H3.76109C3.67359 16.1421 3.59705 16.0656 3.59705 15.9671C3.59705 15.8688 3.67359 15.7921 3.76109 15.7921H6.04705C6.13455 15.7921 6.21109 15.8688 6.21109 15.9671ZM3.61884 15.9563C3.61884 16.0328 3.68443 16.1094 3.76109 16.1094H6.04693C6.12348 16.1094 6.18919 16.0438 6.18919 15.9563C6.18919 15.8797 6.12348 15.8031 6.04693 15.8031H3.76109C3.68455 15.814 3.61895 15.8797 3.61895 15.9563H3.61884Z" fill="white"/>
<path d="M4.98619 14.8625C4.97513 14.95 4.90953 15.0156 4.82203 15.0156L3.80476 14.9391C3.71737 14.9281 3.65177 14.8516 3.66261 14.7641C3.67356 14.6766 3.73927 14.611 3.82677 14.611L4.84393 14.6875C4.92048 14.6985 4.98619 14.775 4.98619 14.8625Z" fill="#E2E2E2"/>
<path d="M4.99679 14.8625C4.98584 14.9609 4.9093 15.0265 4.8218 15.0265L3.80454 14.95C3.71716 14.939 3.64061 14.8625 3.65156 14.764C3.6624 14.6657 3.73906 14.6 3.82656 14.6L4.8437 14.6765C4.9312 14.6875 4.99679 14.775 4.99679 14.8625ZM3.6624 14.764C3.65156 14.8406 3.71716 14.9172 3.7937 14.9172L4.81096 14.9938C4.88739 14.9938 4.9531 14.939 4.96405 14.8515C4.975 14.775 4.9093 14.6984 4.83275 14.6984L3.81549 14.6219C3.73906 14.6219 3.67335 14.6875 3.6624 14.7641V14.764Z" fill="white"/>
<path d="M6.39679 14.064C6.37488 14.1515 6.29834 14.2062 6.21084 14.1953L3.96869 13.7359C3.88119 13.714 3.82643 13.6375 3.84834 13.55C3.87024 13.4625 3.94679 13.4077 4.03429 13.4188L6.27655 13.8672C6.35309 13.889 6.40774 13.9765 6.39679 14.064V14.064Z" fill="#F3F3F3"/>
<path d="M6.40785 14.0641C6.38595 14.1625 6.29845 14.2173 6.21095 14.2063L3.96882 13.7579C3.88132 13.736 3.81572 13.6485 3.83762 13.5501C3.85941 13.4516 3.94691 13.3969 4.03441 13.4079L6.27666 13.8563C6.36416 13.8782 6.4188 13.9657 6.40785 14.0641V14.0641ZM3.85941 13.55C3.84846 13.6266 3.89216 13.7031 3.96882 13.725L6.21106 14.1735C6.28761 14.1844 6.36416 14.1407 6.38606 14.0531C6.3969 13.9766 6.35321 13.9 6.27655 13.8781L4.03453 13.4298C3.94703 13.4188 3.88143 13.4735 3.85953 13.55H3.85941Z" fill="white"/>
<path d="M5.41272 12.7516C5.4077 12.7725 5.39862 12.7921 5.38601 12.8094C5.37339 12.8268 5.35748 12.8414 5.3392 12.8526C5.32091 12.8637 5.3006 12.8712 5.27943 12.8745C5.25826 12.8778 5.23664 12.8769 5.21582 12.8719L4.2314 12.5984C4.1439 12.5765 4.10021 12.4891 4.122 12.4016C4.12702 12.3807 4.1361 12.3611 4.14871 12.3438C4.16133 12.3265 4.17724 12.3118 4.19552 12.3006C4.21381 12.2895 4.23412 12.282 4.25529 12.2787C4.27646 12.2754 4.29808 12.2763 4.3189 12.2813L5.30332 12.5548C5.39082 12.5765 5.43451 12.664 5.41272 12.7515V12.7516Z" fill="#F3F3F3"/>
<path d="M5.42337 12.7516C5.40158 12.839 5.30313 12.9047 5.21563 12.8718L4.23121 12.5984C4.1437 12.5765 4.08894 12.4781 4.11085 12.3907C4.13275 12.3031 4.23121 12.2375 4.31871 12.2703L5.30313 12.5438C5.39063 12.5657 5.44539 12.6532 5.42337 12.7515V12.7516ZM4.1437 12.3905C4.1218 12.4671 4.16561 12.5546 4.24216 12.5764L5.22658 12.8498C5.30313 12.8717 5.37968 12.8279 5.40158 12.7404C5.42337 12.6639 5.37968 12.5764 5.30313 12.5546L4.31871 12.2812C4.24216 12.2702 4.16561 12.3139 4.1437 12.3906V12.3905Z" fill="white"/>
<path d="M6.95465 12.2267C6.92191 12.3141 6.82335 12.3469 6.74691 12.3141L4.63585 11.4391C4.5593 11.4063 4.5156 11.3079 4.54835 11.2313C4.5812 11.1438 4.67965 11.111 4.7562 11.1438L6.86715 12.0188C6.95465 12.0516 6.98751 12.15 6.95465 12.2266V12.2267Z" fill="#F3F3F3"/>
<path d="M6.96561 12.2375C6.9496 12.2796 6.91757 12.3135 6.87656 12.332C6.83554 12.3504 6.78888 12.3519 6.74681 12.336L4.63584 11.461C4.54834 11.4283 4.5156 11.3298 4.54834 11.2314C4.56436 11.1893 4.59638 11.1554 4.6374 11.1369C4.67841 11.1185 4.72507 11.117 4.76715 11.1329L6.87811 12.0079C6.96561 12.0516 6.99836 12.1501 6.96561 12.2375V12.2375ZM4.57024 11.2423C4.5375 11.3189 4.57024 11.4064 4.64679 11.4391L6.75776 12.3141C6.83431 12.3469 6.91086 12.3031 6.94371 12.2266C6.97645 12.15 6.94371 12.0625 6.86716 12.0298L4.7562 11.1548C4.67965 11.1329 4.59215 11.1658 4.57024 11.2423V11.2423Z" fill="white"/>
<path d="M6.24385 10.75C6.20015 10.8266 6.11265 10.8594 6.03611 10.8266L5.12825 10.3673C5.0517 10.3344 5.01885 10.236 5.06265 10.1484C5.10635 10.0719 5.19385 10.039 5.2704 10.0719L6.17814 10.5313C6.2548 10.575 6.28765 10.6736 6.24385 10.75Z" fill="#F3F3F3"/>
<path d="M6.25485 10.761C6.21104 10.8485 6.11259 10.8814 6.02509 10.8375L5.11735 10.3781C5.02985 10.3344 4.997 10.236 5.04081 10.1485C5.0845 10.061 5.18306 10.0281 5.27045 10.0719L6.17819 10.5313C6.2658 10.5641 6.29854 10.6736 6.25485 10.761V10.761ZM5.07355 10.1594C5.04081 10.236 5.06271 10.3235 5.13926 10.3563L6.04699 10.8158C6.1127 10.8485 6.2002 10.8158 6.2439 10.75C6.27664 10.6735 6.25485 10.586 6.1783 10.5531L5.25939 10.094C5.19379 10.0612 5.10629 10.083 5.07344 10.1595L5.07355 10.1594Z" fill="white"/>
<path d="M7.85144 10.5422C7.7968 10.6188 7.70929 10.6407 7.63274 10.586L5.74045 9.32823C5.66401 9.28442 5.65306 9.18597 5.69675 9.10942C5.74056 9.03287 5.83901 9.01097 5.91556 9.06562L7.8187 10.3344C7.8843 10.3782 7.9062 10.4767 7.85144 10.5422Z" fill="#F3F3F3"/>
<path d="M7.86239 10.5531C7.80774 10.6298 7.69834 10.6516 7.62191 10.6079L5.72966 9.33905C5.65311 9.28441 5.63121 9.18596 5.68586 9.09857C5.74061 9.02191 5.85002 9 5.92656 9.04381L7.8187 10.3125C7.90619 10.3673 7.91715 10.4766 7.86239 10.5531ZM5.70776 9.10941C5.66407 9.175 5.67502 9.27346 5.7405 9.31715L7.6437 10.5861C7.70929 10.6299 7.79679 10.608 7.8406 10.5424C7.88429 10.4767 7.87334 10.3782 7.80786 10.3345L5.90455 9.06571C5.83895 9.02191 5.75145 9.04381 5.70765 9.10941H5.70776Z" fill="white"/>
<path d="M7.4469 8.9563C7.39226 9.02189 7.29381 9.04379 7.22821 8.98904L6.42975 8.36571C6.36415 8.31096 6.3532 8.21251 6.40784 8.14691C6.46249 8.08132 6.56094 8.05941 6.62665 8.11417L7.425 8.73749C7.49071 8.79225 7.50166 8.89059 7.4469 8.9563V8.9563Z" fill="#F3F3F3"/>
<path d="M7.45781 8.96712C7.40316 9.04378 7.29376 9.05473 7.21721 8.99998L6.41878 8.37665C6.34223 8.322 6.33128 8.2126 6.38604 8.13617C6.44068 8.05951 6.55008 8.04856 6.62652 8.10332L7.42495 8.72664C7.50161 8.7814 7.51256 8.89069 7.45781 8.96735V8.96712ZM6.40783 8.14689C6.35318 8.21249 6.36414 8.29999 6.42973 8.35463L7.22817 8.97819C7.29376 9.02188 7.38126 9.01093 7.4359 8.94533C7.49066 8.87974 7.47971 8.79224 7.41411 8.73759L6.61568 8.11404C6.55008 8.07035 6.46247 8.0813 6.40794 8.14689H6.40783Z" fill="white"/>
<path d="M9.07648 9.06562C9.01099 9.13133 8.91243 9.13133 8.85778 9.06562L7.22821 7.45786C7.16261 7.39227 7.17345 7.29381 7.22821 7.23905C7.29381 7.17357 7.39226 7.17357 7.44691 7.23905L9.06575 8.84692C9.13135 8.90157 9.13135 9.01097 9.07671 9.06573L9.07648 9.06562Z" fill="#F3F3F3"/>
<path d="M9.07664 9.0766C9.04455 9.10811 9.00137 9.12576 8.95639 9.12576C8.91142 9.12576 8.86824 9.10811 8.83615 9.0766L7.21725 7.46864C7.18567 7.43654 7.16797 7.39332 7.16797 7.34829C7.16797 7.30326 7.18567 7.26003 7.21725 7.22793C7.24934 7.19639 7.29254 7.17871 7.33754 7.17871C7.38255 7.17871 7.42575 7.19639 7.45784 7.22793L9.07664 8.83578C9.15318 8.90137 9.15318 9.01077 9.07664 9.07637V9.0766ZM7.23938 7.24984C7.18462 7.30459 7.18462 7.40304 7.23938 7.45758L8.85806 9.06542C8.91281 9.12018 9.01115 9.12018 9.0658 9.06542C9.12055 9.01077 9.12055 8.91232 9.0658 8.85768L7.44712 7.239C7.39247 7.18435 7.30486 7.18435 7.23938 7.24995V7.24984Z" fill="white"/>
<path d="M8.97816 7.43593C8.91256 7.49068 8.81411 7.49068 8.75936 7.42497L8.09211 6.65938C8.03758 6.59378 8.04842 6.49533 8.11413 6.44068C8.17961 6.38593 8.27817 6.38593 8.33282 6.45152L9.00006 7.21723C9.05471 7.27188 9.04376 7.37033 8.97816 7.43593Z" fill="#F3F3F3"/>
<path d="M8.98906 7.43593C8.91252 7.50153 8.81406 7.49069 8.74835 7.42498L8.08121 6.65938C8.01561 6.59378 8.02656 6.48438 8.10311 6.41878C8.17966 6.35307 8.27811 6.36402 8.34371 6.42973L9.01097 7.19522C9.06561 7.27188 9.06561 7.38129 8.98906 7.43593V7.43593ZM8.11406 6.44068C8.04835 6.49533 8.04835 6.58283 8.09216 6.64843L8.75942 7.41403C8.81406 7.46879 8.90156 7.47974 8.96716 7.42498C9.03276 7.37034 9.03276 7.28272 8.98906 7.21724L8.32181 6.45152C8.26716 6.38604 8.17955 6.38604 8.11406 6.44068V6.44068Z" fill="white"/>
<path d="M10.5532 7.85171C10.4766 7.90635 10.3782 7.88445 10.3343 7.8079L9.05472 5.91566C9.01091 5.83911 9.03281 5.74066 9.09841 5.69696C9.17496 5.64232 9.27341 5.66422 9.31721 5.74077L10.5859 7.6329C10.6407 7.70945 10.6187 7.8079 10.5532 7.85159V7.85171Z" fill="#F3F3F3"/>
<path d="M10.5532 7.86251C10.4767 7.91727 10.3673 7.89526 10.3125 7.81882L9.04388 5.92655C8.98924 5.85 9.01114 5.74071 9.09852 5.68606C9.17507 5.63131 9.28446 5.65321 9.33922 5.72976L10.6079 7.62192C10.6625 7.70942 10.6406 7.80787 10.5532 7.86251ZM9.10936 5.70785C9.04377 5.75155 9.02186 5.83905 9.06567 5.90476L10.3343 7.79692C10.3781 7.86251 10.4656 7.87347 10.542 7.82966C10.6077 7.78597 10.6296 7.69846 10.5858 7.63287L9.31732 5.75155C9.27351 5.68606 9.17507 5.66405 9.10958 5.70785H9.10936Z" fill="white"/>
<path d="M10.7828 6.23295C10.7063 6.27664 10.6078 6.25485 10.5641 6.1783L10.061 5.29235C10.0173 5.2158 10.05 5.11735 10.1267 5.07355C10.2032 5.02985 10.3016 5.05164 10.3453 5.1283L10.8484 6.01414C10.8813 6.09069 10.8594 6.18914 10.7829 6.23295H10.7828Z" fill="#F3F3F3"/>
<path d="M10.7828 6.24391C10.6953 6.2876 10.5968 6.26581 10.5531 6.18915L10.0499 5.30331C10.0062 5.22664 10.0281 5.11735 10.1156 5.07355C10.2031 5.02985 10.3016 5.05164 10.3453 5.1283L10.8483 6.01415C10.8922 6.0907 10.8703 6.18915 10.7829 6.24391H10.7828ZM10.1266 5.0845C10.0609 5.12819 10.0281 5.21569 10.0718 5.2814L10.575 6.16736C10.6187 6.23284 10.7062 6.25486 10.7718 6.22201C10.8375 6.17831 10.8703 6.0907 10.8266 6.0251L10.3234 5.13914C10.2906 5.07366 10.1922 5.04069 10.1266 5.0845V5.0845Z" fill="white"/>
<path d="M12.2373 6.95474C12.1499 6.98748 12.0623 6.95474 12.0296 6.87819L11.1437 4.76713C11.1109 4.69058 11.1546 4.59213 11.2312 4.55927C11.3187 4.52653 11.4062 4.55927 11.4389 4.63582L12.3248 6.74677C12.3577 6.82332 12.314 6.92177 12.2373 6.95451V6.95474Z" fill="#F3F3F3"/>
<path d="M12.2377 6.9657C12.1503 6.99845 12.0518 6.9657 12.008 6.87809L11.122 4.76727C11.1062 4.72519 11.1076 4.67853 11.126 4.63752C11.1445 4.5965 11.1785 4.56448 11.2205 4.54846C11.308 4.51572 11.4064 4.54846 11.4503 4.63596L12.3361 6.7469C12.369 6.82345 12.3253 6.9219 12.2378 6.9657H12.2377ZM11.2424 4.57036C11.1658 4.60311 11.133 4.69072 11.1658 4.75632L12.0517 6.86714C12.0844 6.94369 12.1719 6.97643 12.2485 6.94369C12.325 6.91095 12.358 6.82333 12.325 6.75774L11.4392 4.6468C11.3954 4.57025 11.3188 4.5374 11.2423 4.57025L11.2424 4.57036Z" fill="white"/>
<path d="M12.7733 5.40174C12.6858 5.43448 12.5983 5.39068 12.5656 5.30329L12.2483 4.34069C12.2156 4.26414 12.2702 4.16569 12.3468 4.1439C12.4233 4.122 12.5218 4.15485 12.5545 4.24235L12.8717 5.20484C12.9045 5.28139 12.8608 5.36889 12.7733 5.40163V5.40174Z" fill="#F3F3F3"/>
<path d="M12.7844 5.41251C12.7423 5.42837 12.6957 5.42691 12.6547 5.40845C12.6137 5.39 12.5817 5.35606 12.5657 5.31406L12.2484 4.35156C12.2157 4.26406 12.2703 4.16572 12.3579 4.13287C12.4 4.11701 12.4466 4.11847 12.4876 4.13693C12.5286 4.15538 12.5606 4.18932 12.5766 4.23132L12.8938 5.19382C12.9157 5.28132 12.8719 5.37977 12.7844 5.41251V5.41251ZM12.3578 4.15477C12.2813 4.17656 12.2375 4.26406 12.2594 4.34061L12.5766 5.30322C12.5984 5.37977 12.6859 5.41251 12.7626 5.39061C12.8392 5.36882 12.8829 5.28132 12.861 5.20477L12.5438 4.24216C12.5382 4.22359 12.5288 4.20641 12.5161 4.19172C12.5035 4.17704 12.4879 4.16518 12.4703 4.15693C12.4528 4.14867 12.4337 4.1442 12.4143 4.14381C12.3949 4.14342 12.3757 4.14712 12.3578 4.15466V4.15477Z" fill="white"/>
<path d="M14.064 6.3969C13.9765 6.4188 13.889 6.36416 13.8781 6.27655L13.4187 4.03441C13.3968 3.94692 13.4625 3.87037 13.5499 3.84846C13.6375 3.82656 13.7249 3.88121 13.7358 3.96882L14.1953 6.21106C14.2061 6.2875 14.1515 6.375 14.064 6.3969V6.3969Z" fill="#F3F3F3"/>
<path d="M14.064 6.40785C13.9656 6.42976 13.8781 6.36405 13.8562 6.27655L13.3968 4.0344C13.3749 3.9469 13.4406 3.84845 13.5281 3.8375C13.6265 3.81559 13.714 3.8813 13.7358 3.9688L14.1953 6.21106C14.2171 6.29845 14.1625 6.38606 14.064 6.40785V6.40785ZM13.55 3.8594C13.4733 3.87035 13.4187 3.9469 13.4296 4.0344L13.889 6.27666C13.9 6.35309 13.9874 6.40785 14.064 6.38595C14.1406 6.375 14.1952 6.29845 14.1843 6.21095L13.7249 3.96869C13.7031 3.89226 13.6265 3.84845 13.5499 3.8594H13.55Z" fill="white"/>
<path d="M14.8954 4.97504C14.8079 4.98599 14.7313 4.93134 14.7094 4.84384L14.5782 3.83752C14.5673 3.75002 14.6329 3.67347 14.7205 3.66252C14.8079 3.65157 14.8844 3.70633 14.9063 3.79383L15.0375 4.80003C15.0484 4.88754 14.9828 4.96409 14.8954 4.97504V4.97504Z" fill="#F3F3F3"/>
<path d="M14.8954 4.98597C14.7969 4.99693 14.7094 4.93133 14.6985 4.84372L14.5673 3.83752C14.5563 3.75002 14.6219 3.66252 14.7204 3.65156C14.8188 3.64072 14.9063 3.70632 14.9173 3.79382L15.0485 4.80002C15.0594 4.88752 14.9938 4.97502 14.8954 4.98597V4.98597ZM14.7313 3.67347C14.6548 3.68442 14.5891 3.76097 14.6 3.83752L14.7313 4.84383C14.7423 4.92038 14.8188 4.97502 14.8954 4.96407C14.9719 4.95323 15.0376 4.87657 15.0267 4.80002L14.8954 3.79382C14.8844 3.71727 14.8079 3.66252 14.7313 3.67347V3.67347Z" fill="white"/>
<path d="M16.0766 28.9391C23.2287 28.9391 29.0266 23.1411 29.0266 15.9891C29.0266 8.83697 23.2287 3.03906 16.0766 3.03906C8.92456 3.03906 3.12665 8.83697 3.12665 15.9891C3.12665 23.1411 8.92456 28.9391 16.0766 28.9391Z" fill="url(#paint2_linear_449_13647)" fillOpacity="0.2"/>
<path d="M25.0453 7.77502L14.6 14.4688H14.589V14.4797L14.5781 14.4906L8.05951 25.2423L17.6407 17.5313L17.6517 17.5205V17.5095L25.0455 7.77514L25.0453 7.77502Z" fill="black" fillOpacity="0.05"/>
<path d="M24.8484 7.15149L14.5234 14.4905L17.5859 17.5311L24.8484 7.15149" fill="#CD151E"/>
<path d="M14.5344 14.4687L16.0767 15.989L24.8484 7.15149L14.5344 14.4687V14.4687Z" fill="#FA5153"/>
<path d="M14.5344 14.4687L17.5969 17.5092L7.27191 24.8484L14.5344 14.4686V14.4687Z" fill="#ACACAC"/>
<path d="M7.27191 24.8484L16.0766 15.989L14.5343 14.4686L7.27191 24.8484Z" fill="#EEEEEE"/>
<defs>
<linearGradient id="paint0_linear_449_13647" x1="16" y1="30" x2="16" y2="2" gradientUnits="userSpaceOnUse">
<stop offset="0.25" stopColor="#DBDBDA"/>
<stop offset="1" stopColor="white"/>
</linearGradient>
<radialGradient id="paint1_radial_449_13647" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(17.8195 13.1553) scale(15.8073 15.8073)">
<stop stopColor="#2ABCE1"/>
<stop offset="0.11363" stopColor="#2ABBE1"/>
<stop offset="1" stopColor="#3375F8"/>
</radialGradient>
<linearGradient id="paint2_linear_449_13647" x1="15.8306" y1="12.2861" x2="9.78632" y2="23.1302" gradientUnits="userSpaceOnUse">
<stop stop-opacity="0"/>
<stop offset="1"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_browser_mobile_safari_ui;

View file

@ -0,0 +1,36 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_opera(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M11.3953 23.8859C9.84219 22.0594 8.84688 19.3578 8.78125 16.3281V15.6719C8.84688 12.6422 9.85313 9.94063 11.3953 8.11406C13.4078 5.51094 16.3609 4.34062 19.6969 4.34062C21.7531 4.34062 23.6891 4.48281 25.3297 5.57656C22.8688 3.35625 19.6203 2.01094 16.0547 2H16C8.26719 2 2 8.26719 2 16C2 23.5031 7.90625 29.6391 15.3328 29.9891C15.5516 30 15.7812 30 16 30C19.5875 30 22.8578 28.6547 25.3297 26.4344C23.6891 27.5281 21.8625 27.5719 19.8063 27.5719C16.4813 27.5828 13.3969 26.5 11.3953 23.8859V23.8859Z" fill="url(#paint0_linear_449_13008)"/>
<path d="M11.3953 8.11401C12.675 6.5937 14.3375 5.68589 16.1531 5.68589C20.2328 5.68589 23.5359 10.3015 23.5359 16.0109C23.5359 21.7203 20.2328 26.3359 16.1531 26.3359C14.3375 26.3359 12.6859 25.4171 11.3953 23.9078C13.4078 26.5109 16.3937 28.1734 19.7187 28.1734C21.764 28.1734 23.689 27.55 25.3296 26.4562C28.1953 23.875 30 20.1453 30 16C30 11.8546 28.1953 8.12495 25.3296 5.56558C23.689 4.47183 21.775 3.84839 19.7187 3.84839C16.3828 3.84839 13.3968 5.49995 11.3953 8.11401V8.11401Z" fill="url(#paint1_linear_449_13008)"/>
<defs>
<linearGradient id="paint0_linear_449_13008" x1="13.6655" y1="2.4564" x2="13.6655" y2="29.5926" gradientUnits="userSpaceOnUse">
<stop offset="0.3" stopColor="#FF1B2D"/>
<stop offset="0.4381" stopColor="#FA1A2C"/>
<stop offset="0.5939" stopColor="#ED1528"/>
<stop offset="0.7581" stopColor="#D60E21"/>
<stop offset="0.9272" stopColor="#B70519"/>
<stop offset="1" stopColor="#A70014"/>
</linearGradient>
<linearGradient id="paint1_linear_449_13008" x1="20.6957" y1="4.05588" x2="20.6957" y2="28.0564" gradientUnits="userSpaceOnUse">
<stop stopColor="#9C0000"/>
<stop offset="0.7" stopColor="#FF4B4B"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_browser_opera;

View file

@ -0,0 +1,171 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_safari(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M16 30C23.732 30 30 23.732 30 16C30 8.26801 23.732 2 16 2C8.26801 2 2 8.26801 2 16C2 23.732 8.26801 30 16 30Z" fill="url(#paint0_linear_449_13003)"/>
<path d="M16 28.9499C23.1521 28.9499 28.9501 23.152 28.9501 15.9999C28.9501 8.84784 23.1521 3.04993 16 3.04993C8.84796 3.04993 3.05005 8.84784 3.05005 15.9999C3.05005 23.152 8.84796 28.9499 16 28.9499Z" fill="url(#paint1_radial_449_13003)"/>
<path d="M16.0219 6.20007C15.9344 6.20007 15.8578 6.13447 15.8578 6.04697V3.76101C15.8578 3.67351 15.9344 3.60791 16.0219 3.60791C16.1094 3.60791 16.1859 3.67351 16.1859 3.76101V6.04697C16.175 6.13447 16.1094 6.20007 16.0219 6.20007Z" fill="#F3F3F3"/>
<path d="M16.0219 6.21096C15.9235 6.21096 15.8469 6.13441 15.8469 6.04691V3.76097C15.8469 3.67347 15.9235 3.59692 16.0219 3.59692C16.1204 3.59692 16.1969 3.67347 16.1969 3.76097V6.04691C16.1969 6.13441 16.1094 6.21096 16.0219 6.21096ZM16.0219 3.61871C15.9454 3.61871 15.8688 3.68442 15.8688 3.76097V6.04691C15.8688 6.12346 15.9344 6.18917 16.0219 6.18917C16.0985 6.18917 16.175 6.12346 16.175 6.04691V3.76097C16.1642 3.68442 16.0985 3.61871 16.0219 3.61871V3.61871Z" fill="white"/>
<path d="M17.1157 4.97506C17.0282 4.96411 16.9626 4.89851 16.9626 4.81101L17.0391 3.79373C17.05 3.70634 17.1266 3.64063 17.2141 3.65158C17.3016 3.66254 17.3672 3.72825 17.3672 3.81575L17.2907 4.83291C17.2797 4.92041 17.2032 4.98601 17.1157 4.97517V4.97506Z" fill="#F3F3F3"/>
<path d="M17.1156 4.98592C17.0172 4.97496 16.9516 4.89842 16.9516 4.81092L17.0281 3.79365C17.0391 3.70626 17.1156 3.62971 17.2141 3.64055C17.3124 3.65151 17.3781 3.72817 17.3781 3.81555L17.3016 4.83282C17.2906 4.93127 17.2141 4.99687 17.1156 4.98592ZM17.2141 3.66246C17.1376 3.66246 17.0609 3.71722 17.0609 3.79376L16.9843 4.81103C16.9843 4.88746 17.0391 4.95317 17.1266 4.96401C17.2031 4.96401 17.2797 4.90937 17.2797 4.83282L17.3562 3.81555C17.3562 3.73901 17.2906 3.67341 17.214 3.66246H17.2141Z" fill="white"/>
<path d="M17.9359 6.39693C17.8483 6.37502 17.7937 6.29847 17.8046 6.21097L18.253 3.9687C18.2749 3.88131 18.3515 3.82656 18.439 3.84846C18.5265 3.87036 18.5811 3.94691 18.5702 4.03441L18.1217 6.27668C18.1108 6.35312 18.0233 6.40788 17.9358 6.39693H17.9359Z" fill="#F3F3F3"/>
<path d="M17.9361 6.40784C17.8375 6.38593 17.7829 6.29843 17.7938 6.21093L18.2422 3.96869C18.2641 3.8813 18.3516 3.81559 18.4499 3.8375C18.5484 3.8594 18.6031 3.9469 18.5922 4.0344L18.1438 6.27664C18.1219 6.36403 18.0344 6.41879 17.9361 6.40784ZM18.4499 3.8594C18.3734 3.84845 18.2969 3.89214 18.275 3.9688L17.8267 6.21105C17.8157 6.28748 17.8594 6.36403 17.9469 6.38605C18.0234 6.39689 18.1 6.35308 18.1219 6.27653L18.5703 4.0344C18.5812 3.9469 18.5266 3.8813 18.4499 3.8594V3.8594Z" fill="white"/>
<path d="M19.2484 5.41251C19.2276 5.40749 19.208 5.39841 19.1906 5.3858C19.1733 5.37318 19.1587 5.35727 19.1475 5.33899C19.1363 5.3207 19.1289 5.30039 19.1256 5.27922C19.1222 5.25805 19.1231 5.23643 19.1282 5.21561L19.4016 4.23132C19.4234 4.14382 19.5109 4.10001 19.5984 4.12192C19.6859 4.14382 19.7407 4.23132 19.7188 4.31882L19.4453 5.30322C19.4234 5.39061 19.3359 5.43442 19.2484 5.41251Z" fill="#F3F3F3"/>
<path d="M19.2485 5.42352C19.161 5.40161 19.0955 5.30316 19.1283 5.21578L19.4017 4.23127C19.4235 4.14389 19.522 4.08913 19.6094 4.11103C19.6969 4.13293 19.7625 4.23139 19.7298 4.31877L19.4564 5.30328C19.4345 5.39066 19.347 5.44542 19.2486 5.42352H19.2485ZM19.6094 4.14389C19.5329 4.12198 19.4454 4.16579 19.4235 4.24234L19.1502 5.22662C19.1283 5.30316 19.172 5.37982 19.2595 5.40161C19.336 5.42352 19.4235 5.37982 19.4454 5.30328L19.7188 4.31877C19.7298 4.24234 19.6861 4.16579 19.6094 4.14377V4.14389Z" fill="white"/>
<path d="M19.7845 6.95474C19.697 6.92188 19.6642 6.82343 19.697 6.74688L20.5719 4.63594C20.6047 4.5594 20.7032 4.51559 20.7797 4.5594C20.8673 4.59214 20.9001 4.6907 20.8673 4.76714L19.9923 6.87808C19.9596 6.95474 19.861 6.99843 19.7846 6.95474H19.7845Z" fill="#F3F3F3"/>
<path d="M19.7844 6.96578C19.7424 6.94977 19.7084 6.91774 19.69 6.87673C19.6715 6.83571 19.6701 6.78905 19.6859 6.74698L20.561 4.63601C20.5938 4.54851 20.6923 4.51565 20.7907 4.54851C20.8328 4.56453 20.8667 4.59655 20.8852 4.63757C20.9036 4.67858 20.9051 4.72524 20.8892 4.76732L20.0142 6.87828C19.9704 6.96578 19.8719 7.00948 19.7844 6.96578ZM20.7798 4.57041C20.7032 4.53767 20.6157 4.57041 20.5829 4.64696L19.7078 6.75793C19.6751 6.83448 19.7188 6.91103 19.7953 6.94388C19.8719 6.97662 19.9594 6.94388 19.9923 6.86733L20.8673 4.75637C20.8892 4.69066 20.8563 4.60316 20.7798 4.57041V4.57041Z" fill="white"/>
<path d="M21.261 6.25474C21.1844 6.21093 21.1515 6.12343 21.1844 6.04689L21.6437 5.13916C21.6874 5.0625 21.7749 5.02965 21.8625 5.07345C21.939 5.11726 21.9718 5.20476 21.939 5.28119L21.4796 6.18903C21.4359 6.26558 21.3484 6.29854 21.2609 6.25474H21.261Z" fill="#F3F3F3"/>
<path d="M21.2611 6.26577C21.1735 6.22197 21.1407 6.12351 21.1844 6.03601L21.6439 5.12828C21.6875 5.04067 21.7861 5.00792 21.8735 5.05162C21.961 5.09542 21.9939 5.19388 21.9501 5.28137L21.4907 6.18911C21.4469 6.27661 21.3485 6.30946 21.261 6.26566L21.2611 6.26577ZM21.8627 5.07352C21.786 5.04078 21.6985 5.06257 21.6658 5.13912L21.2063 6.04697C21.1736 6.11256 21.2063 6.20006 21.2719 6.24387C21.3485 6.27661 21.436 6.25482 21.4688 6.17827L21.9283 5.27042C21.961 5.20483 21.9283 5.11733 21.8627 5.07352Z" fill="white"/>
<path d="M21.4798 7.87353C21.4032 7.81888 21.3813 7.72043 21.436 7.65483L22.7048 5.76256C22.7485 5.68601 22.847 5.67506 22.9235 5.71887C23.0001 5.77351 23.0219 5.87196 22.9673 5.93756L21.6985 7.82983C21.6548 7.90638 21.5563 7.92828 21.4798 7.87353Z" fill="#F3F3F3"/>
<path d="M21.4797 7.88442C21.4032 7.82977 21.3813 7.72037 21.4251 7.64382L22.6938 5.75161C22.7485 5.67506 22.8469 5.65316 22.9344 5.70791C23.011 5.76256 23.0329 5.87196 22.9892 5.94851L21.7203 7.84072C21.6657 7.91727 21.5563 7.93906 21.4797 7.88442ZM22.9235 5.72982C22.858 5.68601 22.7594 5.69696 22.7157 5.76256L21.4469 7.65478C21.4032 7.72026 21.425 7.80787 21.4907 7.85156C21.5563 7.89537 21.6547 7.88442 21.6984 7.81882L22.9673 5.93755C23.011 5.87196 22.9892 5.77351 22.9235 5.72982V5.72982Z" fill="white"/>
<path d="M23.0766 7.46886C23.0111 7.4141 22.9892 7.31565 23.0438 7.25005L23.6782 6.4516C23.7328 6.38612 23.8313 6.37505 23.8969 6.42981C23.9626 6.48445 23.9844 6.58291 23.9296 6.6485L23.2954 7.44695C23.2407 7.51255 23.1423 7.5235 23.0767 7.46886H23.0766Z" fill="#F3F3F3"/>
<path d="M23.0657 7.47974C22.9891 7.42498 22.9782 7.31557 23.0329 7.23902L23.6672 6.44066C23.7219 6.364 23.8312 6.35305 23.9078 6.41876C23.9843 6.4734 23.9953 6.58281 23.9405 6.65936L23.3063 7.45783C23.2516 7.53439 23.1422 7.54534 23.0657 7.47974V7.47974ZM23.8859 6.44055C23.8204 6.3859 23.7328 6.39685 23.6782 6.46245L23.0438 7.26093C23.0001 7.32652 23.011 7.41403 23.0765 7.46867C23.1422 7.52343 23.2297 7.51248 23.2844 7.44688L23.9187 6.64841C23.9625 6.58281 23.9515 6.48436 23.886 6.44066L23.8859 6.44055Z" fill="white"/>
<path d="M22.9672 9.10941C22.9016 9.04382 22.9016 8.94537 22.9672 8.89061L24.5859 7.28289C24.6516 7.2173 24.7499 7.22814 24.8046 7.28289C24.8593 7.33754 24.8702 7.44694 24.8046 7.50158L23.197 9.10941C23.1313 9.17501 23.0328 9.17501 22.9672 9.10941V9.10941Z" fill="#F3F3F3"/>
<path d="M22.9563 9.12037C22.9247 9.08828 22.907 9.04508 22.907 9.00007C22.907 8.95507 22.9247 8.91187 22.9563 8.87978L24.575 7.27193C24.6071 7.24035 24.6503 7.22266 24.6954 7.22266C24.7404 7.22266 24.7836 7.24035 24.8157 7.27193C24.8473 7.30403 24.8649 7.34723 24.8649 7.39223C24.8649 7.43723 24.8473 7.48044 24.8157 7.51253L23.1969 9.12026C23.1648 9.1518 23.1216 9.16948 23.0766 9.16948C23.0316 9.16948 22.9884 9.1518 22.9563 9.12026V9.12037ZM24.8048 7.28289C24.7501 7.22813 24.6517 7.22813 24.597 7.28289L22.9782 8.89062C22.9234 8.94537 22.9234 9.04382 22.9782 9.09847C23.0328 9.15323 23.1313 9.15323 23.1859 9.09847L24.8048 7.49074C24.8594 7.43598 24.8594 7.34848 24.8048 7.28289Z" fill="white"/>
<path d="M24.6078 9.02192C24.5532 8.95633 24.5532 8.85788 24.6188 8.80312L25.3953 8.14695C25.4609 8.09231 25.5593 8.10315 25.6141 8.16885C25.6687 8.23445 25.6687 8.3329 25.6031 8.38754L24.8266 9.04382C24.7609 9.09847 24.6625 9.08752 24.6078 9.02192Z" fill="#F3F3F3"/>
<path d="M24.5969 9.03285C24.5313 8.95631 24.5422 8.8469 24.6078 8.79226L25.3843 8.13596C25.4499 8.07036 25.5593 8.08131 25.6249 8.15786C25.6906 8.23441 25.6796 8.34381 25.614 8.39846L24.8374 9.05476C24.772 9.12024 24.6624 9.1094 24.597 9.03285H24.5969ZM25.6031 8.16881C25.5483 8.10322 25.4608 8.10322 25.3954 8.14691L24.6188 8.80321C24.5641 8.85786 24.5532 8.94535 24.6078 9.01095C24.6624 9.07655 24.7501 9.07655 24.8155 9.03285L25.5921 8.37655C25.6577 8.32191 25.6577 8.23441 25.6031 8.16881Z" fill="white"/>
<path d="M24.1704 10.597C24.1157 10.5204 24.1376 10.422 24.2142 10.3782L26.1172 9.10946C26.1937 9.06565 26.2922 9.08756 26.3358 9.15327C26.3906 9.22982 26.3687 9.32827 26.2922 9.37196L24.3891 10.6407C24.3234 10.6845 24.225 10.6626 24.1704 10.597V10.597Z" fill="#F3F3F3"/>
<path d="M24.1594 10.5969C24.1047 10.5204 24.1266 10.411 24.2032 10.3563L26.1063 9.08751C26.1828 9.03287 26.2922 9.05477 26.3469 9.14227C26.4016 9.21882 26.3796 9.32822 26.3032 9.38275L24.4001 10.6517C24.3234 10.7064 24.2141 10.6845 24.1594 10.597V10.5969ZM26.325 9.16417C26.2813 9.09847 26.1938 9.07656 26.1282 9.12037L24.225 10.389C24.1595 10.4329 24.1375 10.5204 24.1922 10.5969C24.2359 10.6625 24.3234 10.6844 24.3891 10.6407L26.2922 9.37191C26.3578 9.31727 26.3688 9.22966 26.325 9.16417Z" fill="white"/>
<path d="M25.8002 10.8266C25.7564 10.7499 25.7783 10.6516 25.8549 10.6078L26.7408 10.1047C26.8174 10.0609 26.9158 10.0938 26.9595 10.1702C27.0033 10.2469 26.9814 10.3452 26.9049 10.389L26.0189 10.8922C25.9424 10.9359 25.8439 10.9031 25.8001 10.8265L25.8002 10.8266Z" fill="#F3F3F3"/>
<path d="M25.7893 10.8375C25.7455 10.75 25.7674 10.6515 25.8439 10.6078L26.7299 10.1047C26.8065 10.0609 26.9159 10.0938 26.9596 10.1702C27.0034 10.2578 26.9815 10.3563 26.9049 10.4L26.0189 10.9032C25.9424 10.9469 25.833 10.914 25.7893 10.8375V10.8375ZM26.9486 10.1813C26.9049 10.1047 26.8174 10.0828 26.7518 10.1265L25.8658 10.6297C25.8003 10.6734 25.7783 10.7609 25.8111 10.8265C25.8549 10.9031 25.9424 10.925 26.008 10.8813L26.894 10.3781C26.9596 10.3453 26.9815 10.2578 26.9486 10.1813V10.1813Z" fill="white"/>
<path d="M25.0673 12.2813C25.0345 12.1938 25.0673 12.1063 25.1548 12.0735L27.2657 11.1986C27.3422 11.1657 27.4407 11.2094 27.4734 11.2859C27.5063 11.3734 27.4734 11.4609 27.3859 11.4937L25.2751 12.3687C25.1985 12.4015 25.1001 12.3687 25.0673 12.2813Z" fill="#F3F3F3"/>
<path d="M25.0563 12.2922C25.0235 12.2048 25.0563 12.1063 25.1438 12.0625L27.2547 11.1876C27.2968 11.1717 27.3434 11.1732 27.3844 11.1916C27.4254 11.2101 27.4574 11.244 27.4734 11.286C27.5062 11.3735 27.4734 11.4719 27.3859 11.5156L25.2751 12.3906C25.233 12.4065 25.1864 12.4051 25.1454 12.3866C25.1043 12.3682 25.0723 12.3343 25.0563 12.2923V12.2922ZM27.4516 11.297C27.4187 11.2204 27.3312 11.1876 27.2657 11.2095L25.1547 12.0844C25.0782 12.1172 25.0453 12.2048 25.0782 12.2813C25.1109 12.3579 25.1984 12.3907 25.2641 12.3688L27.3749 11.4938C27.4516 11.4611 27.4845 11.3735 27.4516 11.297Z" fill="white"/>
<path d="M26.6096 12.8283C26.5768 12.7406 26.6205 12.6533 26.708 12.6204L27.6704 12.3031C27.747 12.2704 27.8454 12.325 27.8673 12.4016C27.9 12.4891 27.8563 12.5766 27.7689 12.6094L26.8064 12.9267C26.7299 12.9594 26.6424 12.9158 26.6096 12.8281V12.8283Z" fill="#F3F3F3"/>
<path d="M26.5984 12.839C26.5657 12.7515 26.6094 12.6531 26.708 12.6203L27.6702 12.3031C27.7577 12.2703 27.8562 12.325 27.889 12.4126C27.9218 12.5 27.8781 12.5984 27.7795 12.6313L26.8172 12.9485C26.7297 12.9703 26.6313 12.9265 26.5984 12.839ZM27.8671 12.4235C27.8452 12.3469 27.7577 12.3031 27.6812 12.325L26.7188 12.6422C26.6422 12.664 26.6094 12.7515 26.6313 12.8282C26.6532 12.9047 26.7407 12.9484 26.8172 12.9265L27.7796 12.6094C27.8562 12.5766 27.889 12.5 27.8671 12.4234V12.4235Z" fill="white"/>
<path d="M25.6253 14.1297C25.6034 14.0422 25.658 13.9547 25.7455 13.9438L27.9876 13.5063C28.075 13.4844 28.1516 13.55 28.1734 13.6375C28.1953 13.725 28.1407 13.8125 28.0532 13.8234L25.8111 14.2609C25.7236 14.2719 25.6361 14.2172 25.6251 14.1297H25.6253Z" fill="#F3F3F3"/>
<path d="M25.6031 14.1299C25.5812 14.0314 25.6468 13.9439 25.7343 13.922L27.9765 13.4844C28.064 13.4625 28.1515 13.5283 28.1733 13.6267C28.1952 13.7251 28.1296 13.8126 28.0421 13.8345L25.7999 14.272C25.7125 14.2939 25.6249 14.2283 25.6031 14.1297V14.1299ZM28.1515 13.6376C28.1406 13.561 28.064 13.5064 27.9875 13.5173L25.7452 13.9548C25.6687 13.9658 25.614 14.0532 25.6358 14.1299C25.6468 14.2064 25.7233 14.2611 25.8 14.2501L28.0421 13.8126C28.1186 13.7907 28.1733 13.7141 28.1515 13.6376Z" fill="white"/>
<path d="M27.0251 14.9719C27.0141 14.8844 27.0688 14.8078 27.1563 14.7968L28.1624 14.6765C28.2499 14.6656 28.3266 14.7312 28.3374 14.8187C28.3484 14.9063 28.2938 14.9828 28.2063 14.9938L27.2 15.114C27.1234 15.125 27.0359 15.0594 27.025 14.9719H27.0251Z" fill="#F3F3F3"/>
<path d="M27.0141 14.9719C27.0032 14.8734 27.0688 14.7859 27.1563 14.775L28.1624 14.6548C28.2499 14.6438 28.3374 14.7094 28.3484 14.8078C28.3593 14.9063 28.2937 14.9938 28.2062 15.0047L27.2 15.125C27.1126 15.1359 27.025 15.0703 27.0141 14.9719ZM28.3374 14.8188C28.3266 14.7423 28.25 14.6765 28.1734 14.6875L27.1672 14.8078C27.0907 14.8188 27.0359 14.8953 27.0469 14.9719C27.0578 15.0484 27.1344 15.1141 27.2109 15.1032L28.2172 14.9828C28.2937 14.9719 28.3484 14.8953 28.3375 14.8188H28.3374Z" fill="white"/>
<path d="M25.8002 16.0328C25.8002 15.9453 25.8657 15.8688 25.9533 15.8688H28.2393C28.3268 15.8688 28.3924 15.9453 28.3924 16.0328C28.3924 16.1203 28.3268 16.1969 28.2393 16.1969H25.9533C25.8658 16.1969 25.8002 16.1203 25.8002 16.0328Z" fill="#F3F3F3"/>
<path d="M25.7892 16.0329C25.7892 15.9345 25.8658 15.8579 25.9533 15.8579H28.2392C28.3267 15.8579 28.4033 15.9345 28.4033 16.0329C28.4033 16.1313 28.3267 16.2079 28.2392 16.2079H25.9533C25.8658 16.2079 25.7892 16.1313 25.7892 16.0329ZM28.3814 16.0439C28.3814 15.9673 28.3158 15.8908 28.2391 15.8908H25.9534C25.8769 15.8908 25.8111 15.9562 25.8111 16.0439C25.8111 16.1204 25.8769 16.1969 25.9534 16.1969H28.2394C28.3159 16.186 28.3815 16.1204 28.3815 16.0439H28.3814Z" fill="white"/>
<path d="M27.0142 17.1375C27.025 17.05 27.0907 16.9844 27.1782 16.9844L28.1954 17.0609C28.2828 17.0719 28.3484 17.1484 28.3374 17.2359C28.3266 17.3234 28.2609 17.389 28.1734 17.389L27.1563 17.3125C27.0797 17.3015 27.014 17.225 27.014 17.1375H27.0142Z" fill="#F3F3F3"/>
<path d="M27.0032 17.1376C27.0142 17.0391 27.0907 16.9735 27.1783 16.9735L28.1956 17.0501C28.283 17.061 28.3596 17.1376 28.3486 17.236C28.3378 17.3345 28.2611 17.4001 28.1736 17.4001L27.1563 17.3235C27.0688 17.3126 27.0032 17.2251 27.0032 17.1376ZM28.3378 17.236C28.3486 17.1595 28.283 17.0829 28.2064 17.0829L27.1891 17.0064C27.1126 17.0064 27.0469 17.061 27.036 17.1486C27.0251 17.2251 27.0907 17.3016 27.1673 17.3016L28.1847 17.3782C28.2611 17.3782 28.3268 17.3127 28.3378 17.236V17.236Z" fill="white"/>
<path d="M25.6033 17.936C25.6252 17.8485 25.7018 17.7937 25.7893 17.8048L28.0315 18.2532C28.119 18.275 28.1737 18.3516 28.1518 18.4391C28.1299 18.5266 28.0534 18.5813 27.9659 18.5704L25.7236 18.1219C25.647 18.111 25.5924 18.0235 25.6033 17.936V17.936Z" fill="#F3F3F3"/>
<path d="M25.5921 17.936C25.614 17.8375 25.7015 17.7829 25.789 17.7937L28.0313 18.2422C28.1188 18.264 28.1844 18.3515 28.1625 18.45C28.1407 18.5484 28.0532 18.6032 27.9657 18.5922L25.7233 18.1438C25.6358 18.1219 25.5811 18.0344 25.5921 17.9361V17.936ZM28.1407 18.45C28.1517 18.3734 28.108 18.2969 28.0313 18.275L25.7889 17.8266C25.7125 17.8157 25.6358 17.8594 25.6139 17.9469C25.603 18.0235 25.6467 18.1 25.7234 18.1219L27.9657 18.5703C28.0532 18.5813 28.1188 18.5265 28.1407 18.45Z" fill="white"/>
<path d="M26.5876 19.2485C26.5926 19.2277 26.6017 19.208 26.6143 19.1907C26.6269 19.1734 26.6428 19.1587 26.661 19.1476C26.6793 19.1364 26.6996 19.1289 26.7208 19.1256C26.7419 19.1223 26.7635 19.1232 26.7844 19.1282L27.7687 19.4016C27.8562 19.4235 27.8999 19.5111 27.8781 19.5985C27.8731 19.6193 27.8641 19.639 27.8515 19.6563C27.8388 19.6737 27.8229 19.6883 27.8046 19.6995C27.7864 19.7107 27.766 19.7182 27.7449 19.7215C27.7237 19.7248 27.7021 19.7239 27.6812 19.7189L26.6969 19.4454C26.6094 19.4235 26.5657 19.336 26.5875 19.2485H26.5876Z" fill="#F3F3F3"/>
<path d="M26.5767 19.2485C26.5986 19.161 26.697 19.0954 26.7845 19.1282L27.7689 19.4015C27.8564 19.4234 27.9112 19.5219 27.8893 19.6094C27.8673 19.6969 27.7689 19.7624 27.6814 19.7297L26.697 19.4563C26.6095 19.4344 26.5548 19.3469 26.5768 19.2486L26.5767 19.2485ZM27.8564 19.6094C27.8783 19.5328 27.8345 19.4453 27.7579 19.4234L26.7736 19.15C26.697 19.1281 26.6205 19.1719 26.5986 19.2594C26.5768 19.336 26.6205 19.4234 26.697 19.4453L27.6814 19.7188C27.7579 19.7297 27.8345 19.686 27.8564 19.6094Z" fill="white"/>
<path d="M25.0453 19.7735C25.0781 19.686 25.1766 19.6531 25.2531 19.686L27.3641 20.5609C27.4406 20.5937 27.4843 20.6922 27.4516 20.7687C27.4187 20.8563 27.3203 20.889 27.2437 20.8563L25.1328 19.9813C25.0453 19.9486 25.0125 19.85 25.0453 19.7736V19.7735Z" fill="#F3F3F3"/>
<path d="M25.0344 19.7625C25.0504 19.7205 25.0824 19.6865 25.1234 19.668C25.1644 19.6496 25.2111 19.6481 25.2532 19.664L27.364 20.5391C27.4515 20.5719 27.4843 20.6704 27.4515 20.7688C27.4355 20.8109 27.4035 20.8448 27.3625 20.8633C27.3215 20.8817 27.2748 20.8832 27.2327 20.8673L25.1219 19.9923C25.0344 19.9484 25.0016 19.85 25.0344 19.7625ZM27.4296 20.7579C27.4624 20.6813 27.4296 20.5938 27.3531 20.561L25.2422 19.6859C25.1657 19.6532 25.0891 19.6969 25.0563 19.7734C25.0235 19.85 25.0563 19.9375 25.1328 19.9704L27.2437 20.8454C27.3202 20.8673 27.4077 20.8344 27.4296 20.7579Z" fill="white"/>
<path d="M25.7563 21.25C25.8001 21.1735 25.8874 21.1406 25.964 21.1735L26.8717 21.6329C26.9482 21.6656 26.9811 21.7641 26.9374 21.8516C26.8936 21.9281 26.8061 21.9611 26.7296 21.9281L25.822 21.4688C25.7453 21.425 25.7125 21.3266 25.7563 21.25Z" fill="#F3F3F3"/>
<path d="M25.7452 21.2391C25.789 21.1516 25.8875 21.1189 25.975 21.1626L26.8828 21.622C26.9703 21.6658 27.0031 21.7643 26.9593 21.8516C26.9156 21.9391 26.817 21.972 26.7297 21.9282L25.8219 21.4689C25.7343 21.4362 25.7015 21.3266 25.7452 21.2391V21.2391ZM26.9266 21.8407C26.9593 21.7641 26.9374 21.6766 26.8608 21.6439L25.9531 21.1845C25.8874 21.1517 25.8 21.1845 25.7562 21.2501C25.7234 21.3266 25.7452 21.4141 25.8218 21.447L26.7295 21.9064C26.8062 21.9391 26.8937 21.9174 26.9266 21.8407Z" fill="white"/>
<path d="M24.1484 21.4578C24.2031 21.3813 24.2906 21.3594 24.3672 21.414L26.2703 22.6828C26.3469 22.7265 26.3578 22.8251 26.3141 22.9015C26.2594 22.9782 26.1719 23 26.0953 22.9453L24.1922 21.6765C24.1156 21.6219 24.0937 21.5234 24.1484 21.4578Z" fill="#F3F3F3"/>
<path d="M24.1375 21.4468C24.1922 21.3703 24.3016 21.3484 24.3782 21.3922L26.2814 22.6609C26.3579 22.7155 26.3798 22.814 26.325 22.9015C26.2704 22.9781 26.161 22.9999 26.0846 22.9562L24.1813 21.6874C24.0938 21.6328 24.0828 21.5234 24.1375 21.4468ZM26.2923 22.8905C26.336 22.825 26.325 22.7265 26.2596 22.6828L24.3563 21.414C24.2907 21.3703 24.2032 21.3922 24.1594 21.4578C24.1157 21.5234 24.1266 21.6218 24.1921 21.6655L26.0954 22.9343C26.161 22.9781 26.2485 22.9562 26.2923 22.8906V22.8905Z" fill="white"/>
<path d="M24.5532 23.0438C24.6078 22.9781 24.7063 22.9563 24.7719 23.0111L25.5703 23.6344C25.6359 23.6891 25.6469 23.7875 25.5922 23.8532C25.5376 23.9187 25.4391 23.9407 25.3734 23.886L24.575 23.2625C24.5095 23.2078 24.4984 23.1094 24.5532 23.0438V23.0438Z" fill="#F3F3F3"/>
<path d="M24.5422 23.0329C24.5969 22.9564 24.7063 22.9454 24.7828 23.0002L25.5812 23.6235C25.6578 23.6782 25.6687 23.7876 25.614 23.8641C25.5593 23.9408 25.4499 23.9516 25.3735 23.897L24.575 23.2735C24.4984 23.2189 24.4876 23.1095 24.5422 23.0329ZM25.5922 23.8533C25.6468 23.7876 25.6359 23.7001 25.5703 23.6454L24.7719 23.022C24.7063 22.9783 24.6188 22.9892 24.5641 23.0547C24.5094 23.1204 24.5203 23.2079 24.5859 23.2626L25.3843 23.886C25.4499 23.9298 25.5374 23.9188 25.5921 23.8533H25.5922Z" fill="white"/>
<path d="M22.9234 22.9345C22.9891 22.8689 23.0876 22.8689 23.1422 22.9345L24.761 24.5422C24.8267 24.6079 24.8157 24.7063 24.761 24.761C24.6955 24.8266 24.5969 24.8266 24.5423 24.761L22.9234 23.1533C22.8688 23.0985 22.8688 22.9891 22.9234 22.9345V22.9345Z" fill="#F3F3F3"/>
<path d="M22.9234 22.9234C22.9555 22.8918 22.9987 22.8741 23.0437 22.8741C23.0888 22.8741 23.132 22.8918 23.1641 22.9234L24.7829 24.5311C24.8144 24.5632 24.8321 24.6064 24.8321 24.6515C24.8321 24.6965 24.8144 24.7397 24.7829 24.7718C24.7508 24.8034 24.7076 24.8211 24.6626 24.8211C24.6175 24.8211 24.5743 24.8034 24.5423 24.7718L22.9234 23.1641C22.8468 23.0984 22.8468 22.9891 22.9234 22.9234ZM24.761 24.7499C24.8157 24.6953 24.8157 24.5968 24.761 24.5422L23.1422 22.9344C23.0875 22.8797 22.9891 22.8797 22.9344 22.9344C22.8797 22.989 22.8797 23.0875 22.9344 23.1421L24.5532 24.7499C24.6078 24.8156 24.6955 24.8156 24.761 24.7499Z" fill="white"/>
<path d="M23.0218 24.564C23.0876 24.5094 23.1859 24.5094 23.2407 24.575L23.9079 25.3406C23.9625 25.4063 23.9516 25.5047 23.8859 25.5594C23.8204 25.614 23.7219 25.614 23.6672 25.5484L22.9999 24.7828C22.9453 24.7282 22.9562 24.6297 23.0218 24.564V24.564Z" fill="#F3F3F3"/>
<path d="M23.011 24.564C23.0876 24.4986 23.186 24.5094 23.2515 24.575L23.9188 25.3406C23.9844 25.4063 23.9734 25.5156 23.8969 25.5813C23.8203 25.6469 23.7219 25.6359 23.6563 25.5703L22.989 24.8047C22.9344 24.7282 22.9344 24.6188 23.0109 24.564H23.011ZM23.886 25.5594C23.9515 25.5047 23.9515 25.4171 23.9078 25.3516L23.2406 24.5859C23.1859 24.5313 23.0984 24.5203 23.0328 24.575C22.9672 24.6297 22.9672 24.7172 23.0109 24.7827L23.6782 25.5484C23.7328 25.614 23.8204 25.614 23.8859 25.5594H23.886Z" fill="white"/>
<path d="M21.4469 24.1485C21.5235 24.0939 21.6219 24.1158 21.6657 24.1923L22.9344 26.0844C22.9782 26.161 22.9563 26.2594 22.8907 26.3032C22.8142 26.3579 22.7157 26.336 22.6719 26.2594L21.4031 24.3672C21.3593 24.2908 21.3812 24.1922 21.4468 24.1485H21.4469Z" fill="#F3F3F3"/>
<path d="M21.4469 24.1375C21.5234 24.0829 21.6328 24.1048 21.6875 24.1813L22.9562 26.0735C23.0108 26.1499 22.9889 26.2593 22.9016 26.3139C22.8249 26.3687 22.7156 26.3468 22.6609 26.2702L21.3923 24.3781C21.3376 24.2907 21.3595 24.1923 21.4469 24.1376V24.1375ZM22.8906 26.2921C22.9562 26.2483 22.9781 26.1608 22.9343 26.0952L21.6657 24.2031C21.6219 24.1376 21.5344 24.1266 21.458 24.1704C21.3923 24.2141 21.3704 24.3016 21.4142 24.3673L22.6828 26.2593C22.7266 26.3139 22.825 26.3358 22.8905 26.292L22.8906 26.2921Z" fill="white"/>
<path d="M21.2172 25.7671C21.2938 25.7234 21.3922 25.7453 21.4359 25.8219L21.9391 26.7078C21.9828 26.7844 21.9499 26.8828 21.8734 26.9265C21.7968 26.9703 21.6984 26.9484 21.6547 26.8719L21.1516 25.9859C21.1188 25.9094 21.1407 25.8109 21.2171 25.7672L21.2172 25.7671Z" fill="#F3F3F3"/>
<path d="M21.2172 25.7563C21.3047 25.7125 21.4032 25.7344 21.4469 25.811L21.95 26.697C21.9938 26.7736 21.9719 26.883 21.8845 26.9267C21.7969 26.9705 21.6984 26.9486 21.6547 26.8721L21.1516 25.986C21.1078 25.9095 21.1297 25.811 21.2171 25.7563H21.2172ZM21.8734 26.9159C21.9391 26.8721 21.9719 26.7845 21.9282 26.7189L21.4251 25.8329C21.3813 25.7673 21.2938 25.7454 21.2282 25.7781C21.1625 25.8219 21.1297 25.9095 21.1734 25.9751L21.6766 26.8611C21.7094 26.9267 21.8078 26.9596 21.8734 26.9158V26.9159Z" fill="white"/>
<path d="M19.7626 25.0454C19.8501 25.0126 19.9376 25.0454 19.9705 25.1219L20.8564 27.2328C20.8892 27.3094 20.8455 27.4078 20.7689 27.4405C20.6924 27.4734 20.5939 27.4405 20.5612 27.364L19.6752 25.2532C19.6424 25.1765 19.6861 25.0782 19.7626 25.0454Z" fill="#F3F3F3"/>
<path d="M19.7624 25.0344C19.8499 25.0017 19.9484 25.0344 19.9922 25.1219L20.8781 27.2329C20.894 27.2749 20.8925 27.3216 20.874 27.3626C20.8556 27.4035 20.8217 27.4356 20.7797 27.4516C20.6922 27.4844 20.5937 27.4516 20.55 27.3641L19.6641 25.2532C19.6313 25.1766 19.6751 25.0782 19.7624 25.0344V25.0344ZM20.7578 27.4298C20.8343 27.3969 20.8672 27.3094 20.8343 27.2438L19.9484 25.1329C19.9156 25.0563 19.8281 25.0235 19.7516 25.0563C19.6751 25.0891 19.6421 25.1766 19.6751 25.2423L20.5609 27.3532C20.6047 27.4298 20.6812 27.4625 20.7578 27.4298Z" fill="white"/>
<path d="M19.2265 26.5985C19.3141 26.5658 19.4015 26.6095 19.4344 26.697L19.7516 27.6595C19.7844 27.736 19.7297 27.8345 19.6532 27.8564C19.5657 27.8891 19.4782 27.8454 19.4454 27.7579L19.1282 26.7954C19.0954 26.7189 19.1391 26.6314 19.2266 26.5985H19.2265Z" fill="#F3F3F3"/>
<path d="M19.2158 26.5876C19.2579 26.5717 19.3045 26.5732 19.3455 26.5916C19.3865 26.6101 19.4185 26.644 19.4346 26.686L19.7519 27.6485C19.7846 27.736 19.7299 27.8344 19.6423 27.8673C19.6003 27.8831 19.5536 27.8817 19.5126 27.8632C19.4716 27.8448 19.4396 27.8108 19.4236 27.7688L19.1064 26.8064C19.0845 26.7189 19.1283 26.6204 19.2158 26.5876ZM19.6424 27.8453C19.719 27.8235 19.7627 27.736 19.7409 27.6594L19.4236 26.697C19.4018 26.6204 19.3143 26.5876 19.2377 26.6095C19.1611 26.6314 19.1174 26.7189 19.1393 26.7954L19.4565 27.7579C19.462 27.7764 19.4715 27.7936 19.4841 27.8083C19.4968 27.823 19.5124 27.8348 19.5299 27.8431C19.5475 27.8514 19.5666 27.8558 19.5859 27.8562C19.6053 27.8566 19.6246 27.8529 19.6424 27.8454V27.8453Z" fill="white"/>
<path d="M17.936 25.6032C18.0234 25.5813 18.111 25.636 18.1219 25.7235L18.5814 27.9658C18.6033 28.0532 18.5375 28.1299 18.45 28.1516C18.3626 28.1735 18.275 28.1189 18.2642 28.0314L17.8046 25.7891C17.7937 25.7125 17.8484 25.625 17.9359 25.6031L17.936 25.6032Z" fill="#F3F3F3"/>
<path d="M17.9361 25.592C18.0344 25.5702 18.1219 25.6358 18.1438 25.7233L18.6031 27.9657C18.625 28.0531 18.5593 28.1516 18.4718 28.1626C18.3734 28.1845 18.2859 28.1189 18.2641 28.0313L17.8047 25.7889C17.7829 25.7014 17.8376 25.6139 17.936 25.5921L17.9361 25.592ZM18.4499 28.1406C18.5266 28.1298 18.5812 28.0531 18.5703 27.9656L18.1109 25.7233C18.1001 25.6467 18.0126 25.5921 17.936 25.6139C17.8594 25.6248 17.8048 25.7014 17.8157 25.7889L18.2751 28.0313C18.2969 28.1079 18.3734 28.1516 18.4501 28.1408L18.4499 28.1406Z" fill="white"/>
<path d="M17.1048 27.0249C17.1923 27.014 17.2689 27.0688 17.2908 27.1562L17.4219 28.1624C17.4329 28.2499 17.3673 28.3265 17.2797 28.3374C17.1923 28.3484 17.1158 28.2937 17.0939 28.2062L16.9627 27.1999C16.9517 27.1124 17.0173 27.0359 17.1048 27.0249Z" fill="#F3F3F3"/>
<path d="M17.1046 27.0141C17.2031 27.0033 17.2907 27.0689 17.3016 27.1564L17.4329 28.1626C17.4438 28.2501 17.3782 28.3376 17.2797 28.3486C17.1812 28.3595 17.0937 28.2939 17.0827 28.2063L16.9514 27.2001C16.9405 27.1126 17.0061 27.0251 17.1046 27.0141ZM17.2687 28.3267C17.3453 28.3158 17.4111 28.2392 17.4001 28.1626L17.2687 27.1564C17.2578 27.0798 17.1812 27.0251 17.1046 27.036C17.028 27.047 16.9623 27.1235 16.9732 27.2001L17.1046 28.2064C17.1156 28.283 17.1922 28.3376 17.2687 28.3267Z" fill="white"/>
<path d="M15.9782 25.7999C16.0657 25.7999 16.1422 25.8656 16.1422 25.9531V28.239C16.1422 28.3265 16.0657 28.3922 15.9782 28.3922C15.8907 28.3922 15.8141 28.3265 15.8141 28.239V25.9531C15.8251 25.8656 15.8907 25.7999 15.9782 25.7999Z" fill="#F3F3F3"/>
<path d="M15.9782 25.7889C16.0766 25.7889 16.1531 25.8655 16.1531 25.953V28.2389C16.1531 28.3264 16.0766 28.403 15.9782 28.403C15.8797 28.403 15.8032 28.3264 15.8032 28.2389V25.9531C15.8032 25.8656 15.8907 25.7889 15.9782 25.7889ZM15.9782 28.3812C16.0547 28.3812 16.1312 28.3156 16.1312 28.2389V25.9531C16.1312 25.8764 16.0656 25.8108 15.9782 25.8108C15.9016 25.8108 15.8251 25.8764 15.8251 25.9531V28.2389C15.8359 28.3156 15.9016 28.3812 15.9782 28.3812Z" fill="white"/>
<path d="M14.8844 27.025C14.9719 27.0359 15.0375 27.1015 15.0375 27.189L14.961 28.2063C14.9501 28.2938 14.8735 28.3594 14.786 28.3485C14.6985 28.3375 14.6329 28.2719 14.6329 28.1844L14.7094 27.1671C14.7204 27.0798 14.7969 27.014 14.8844 27.025Z" fill="#F3F3F3"/>
<path d="M14.8844 27.0141C14.9828 27.0251 15.0484 27.1016 15.0484 27.1891L14.9719 28.2064C14.9609 28.2939 14.8844 28.3705 14.7859 28.3595C14.6876 28.3486 14.6219 28.272 14.6219 28.1845L14.6984 27.1672C14.7094 27.0689 14.7859 27.0033 14.8844 27.0141ZM14.7859 28.3376C14.8625 28.3376 14.9391 28.283 14.9391 28.2064L15.0157 27.1891C15.0157 27.1126 14.9609 27.047 14.8734 27.036C14.7969 27.036 14.7203 27.0907 14.7203 27.1673L14.6438 28.1845C14.6438 28.2611 14.7094 28.3268 14.786 28.3376H14.7859Z" fill="white"/>
<path d="M14.064 25.6031C14.1515 25.6249 14.2062 25.7014 14.1952 25.7889L13.7468 28.0314C13.7249 28.1189 13.6484 28.1737 13.5609 28.1516C13.4734 28.1298 13.4187 28.0533 13.4297 27.9657L13.8781 25.7233C13.8891 25.6468 13.9766 25.5921 14.064 25.6031Z" fill="#F3F3F3"/>
<path d="M14.0642 25.592C14.1626 25.6139 14.2173 25.7015 14.2064 25.7889L13.7579 28.0313C13.736 28.1188 13.6485 28.1844 13.5502 28.1624C13.4517 28.1405 13.397 28.053 13.4079 27.9655L13.8564 25.7233C13.8783 25.6358 13.9658 25.581 14.0641 25.5921L14.0642 25.592ZM13.5502 28.1405C13.6267 28.1515 13.7033 28.1078 13.7252 28.0313L14.1735 25.7889C14.1845 25.7124 14.1408 25.6358 14.0533 25.6139C13.9767 25.6031 13.9002 25.6468 13.8783 25.7234L13.4298 27.9655C13.4189 28.053 13.4735 28.1188 13.5502 28.1405V28.1405Z" fill="white"/>
<path d="M12.7517 26.5877C12.8393 26.6096 12.8939 26.6971 12.872 26.7846L12.5986 27.7689C12.5768 27.8564 12.4893 27.9001 12.4018 27.8783C12.381 27.8733 12.3613 27.8642 12.344 27.8516C12.3266 27.839 12.312 27.8231 12.3008 27.8048C12.2896 27.7865 12.2821 27.7662 12.2788 27.745C12.2755 27.7238 12.2764 27.7022 12.2814 27.6814L12.5549 26.6971C12.5768 26.6096 12.6643 26.5659 12.7518 26.5877H12.7517Z" fill="#F3F3F3"/>
<path d="M12.7516 26.5768C12.8392 26.5986 12.9048 26.6971 12.8719 26.7846L12.5985 27.769C12.5767 27.8565 12.4783 27.9112 12.3908 27.8892C12.3033 27.8674 12.2377 27.769 12.2704 27.6815L12.5439 26.6971C12.5658 26.6096 12.6533 26.5548 12.7516 26.5767V26.5768ZM12.3908 27.8565C12.4673 27.8784 12.5548 27.8346 12.5767 27.758L12.85 26.7736C12.8719 26.6971 12.8282 26.6205 12.7407 26.5986C12.6642 26.5767 12.5767 26.6205 12.5548 26.6971L12.2814 27.6815C12.2704 27.758 12.3141 27.8346 12.3908 27.8565Z" fill="white"/>
<path d="M12.2156 25.0454C12.3031 25.0781 12.3358 25.1766 12.3031 25.2531L11.4281 27.3641C11.3953 27.4407 11.2968 27.4844 11.2204 27.4407C11.1437 27.3969 11.0999 27.3094 11.1327 27.2329L12.0077 25.1219C12.0405 25.0454 12.139 25.0016 12.2155 25.0454H12.2156Z" fill="#F3F3F3"/>
<path d="M12.2156 25.0344C12.2576 25.0504 12.2915 25.0824 12.31 25.1234C12.3285 25.1644 12.3299 25.2111 12.314 25.2532L11.439 27.364C11.4061 27.4515 11.3077 27.4843 11.2092 27.4515C11.1672 27.4354 11.1333 27.4034 11.1148 27.3625C11.0964 27.3215 11.0949 27.2748 11.1108 27.2328L11.9858 25.1218C12.0296 25.0344 12.128 24.9907 12.2156 25.0344V25.0344ZM11.2202 27.4297C11.2967 27.4624 11.3842 27.4297 11.4171 27.3531L12.2921 25.2422C12.3248 25.1657 12.2811 25.089 12.2046 25.0563C12.128 25.0235 12.0405 25.0563 12.0077 25.1328L11.1327 27.2437C11.1108 27.3093 11.1436 27.3968 11.2202 27.4297Z" fill="white"/>
<path d="M10.7391 25.7454C10.8157 25.7891 10.8484 25.8766 10.8157 25.9532L10.3563 26.8608C10.3125 26.9374 10.225 26.9702 10.1375 26.9264C10.0609 26.8827 10.0282 26.7953 10.0609 26.7187L10.5204 25.8111C10.5641 25.7345 10.6516 25.7016 10.7391 25.7454Z" fill="#F3F3F3"/>
<path d="M10.7392 25.7345C10.8267 25.7782 10.8595 25.8767 10.8158 25.9641L10.3564 26.8719C10.3126 26.9594 10.2141 26.9922 10.1268 26.9484C10.0393 26.9047 10.0064 26.8062 10.0502 26.7188L10.5095 25.8111C10.5533 25.7235 10.6517 25.6908 10.7392 25.7345ZM10.1377 26.9266C10.2143 26.9594 10.3018 26.9375 10.3345 26.8609L10.7939 25.9533C10.8266 25.8876 10.7939 25.8001 10.7283 25.7564C10.6517 25.7236 10.5642 25.7454 10.5314 25.822L10.072 26.7296C10.0393 26.7953 10.072 26.8828 10.1377 26.9265V26.9266Z" fill="white"/>
<path d="M10.5203 24.1267C10.5968 24.1813 10.6187 24.2798 10.5641 24.3454L9.29528 26.2378C9.25158 26.3142 9.15302 26.3252 9.07659 26.2815C9.00004 26.2267 8.97813 26.1284 9.03278 26.0626L10.3016 24.1702C10.3453 24.0938 10.4437 24.0719 10.5203 24.1265V24.1267Z" fill="#F3F3F3"/>
<path d="M10.5203 24.1157C10.5969 24.1704 10.6188 24.2798 10.575 24.3564L9.30626 26.2487C9.25162 26.3251 9.15316 26.347 9.06566 26.2924C8.98911 26.2376 8.9672 26.1283 9.0109 26.0516L10.2797 24.1595C10.3344 24.0829 10.4438 24.061 10.5203 24.1157V24.1157ZM9.07661 26.2705C9.1421 26.3141 9.24066 26.3032 9.28436 26.2377L10.5532 24.3454C10.5969 24.2798 10.5751 24.1923 10.5094 24.1485C10.4438 24.1048 10.3453 24.1158 10.3016 24.1813L9.0328 26.0626C8.98911 26.1283 9.0109 26.2266 9.07661 26.2703V26.2705Z" fill="white"/>
<path d="M8.92344 24.5314C8.98915 24.586 9.01094 24.6845 8.95629 24.7501L8.3219 25.5485C8.26726 25.6141 8.16881 25.625 8.10321 25.5704C8.03762 25.5157 8.01571 25.4173 8.07047 25.3516L8.70475 24.5532C8.75939 24.4877 8.85784 24.4766 8.92344 24.5314Z" fill="#F3F3F3"/>
<path d="M8.9344 24.5204C9.01095 24.575 9.0219 24.6845 8.96714 24.761L8.33284 25.5595C8.2782 25.636 8.16879 25.647 8.09224 25.5814C8.01569 25.5266 8.00474 25.4173 8.0595 25.3407L8.6938 24.5423C8.74845 24.4656 8.85785 24.4548 8.9344 24.5204ZM8.11415 25.5595C8.17963 25.6141 8.26725 25.6033 8.32189 25.5376L8.95631 24.7391C9.00011 24.6736 8.98905 24.586 8.92356 24.5313C8.85785 24.4766 8.77035 24.4875 8.7157 24.5533L8.08129 25.3516C8.0376 25.4173 8.04855 25.5157 8.11403 25.5595H8.11415Z" fill="white"/>
<path d="M9.03277 22.8907C9.09836 22.9562 9.09836 23.0548 9.03277 23.1094L7.41413 24.7171C7.34842 24.7829 7.25009 24.7719 7.19533 24.7171C7.14069 24.6625 7.12973 24.5531 7.19533 24.4985L8.80302 22.8907C8.86873 22.825 8.96717 22.825 9.03277 22.8907V22.8907Z" fill="#F3F3F3"/>
<path d="M9.04376 22.8798C9.07527 22.9119 9.09293 22.9551 9.09293 23C9.09293 23.045 9.07527 23.0882 9.04376 23.1203L7.42501 24.7283C7.39292 24.7598 7.34974 24.7775 7.30477 24.7775C7.2598 24.7775 7.21662 24.7598 7.18453 24.7283C7.15295 24.6962 7.13525 24.653 7.13525 24.6079C7.13525 24.5629 7.15295 24.5197 7.18453 24.4876L8.80317 22.8798C8.83527 22.8482 8.87847 22.8306 8.92347 22.8306C8.96847 22.8306 9.01167 22.8482 9.04376 22.8798V22.8798ZM7.19537 24.7172C7.25001 24.7719 7.34846 24.7719 7.4031 24.7172L9.02186 23.1093C9.07662 23.0547 9.07662 22.9562 9.02186 22.9016C8.96722 22.8468 8.86877 22.8468 8.81412 22.9016L7.19537 24.5094C7.14073 24.564 7.14073 24.6516 7.19537 24.7171V24.7172Z" fill="white"/>
<path d="M7.39221 22.9782C7.44685 23.0437 7.44685 23.1423 7.38125 23.1969L6.60471 23.8533C6.53911 23.908 6.44066 23.897 6.3859 23.8314C6.33125 23.7657 6.33125 23.6673 6.39685 23.6126L7.1734 22.9563C7.23911 22.9016 7.33745 22.9125 7.39221 22.9782Z" fill="#F3F3F3"/>
<path d="M7.40307 22.9672C7.46867 23.0438 7.45772 23.1531 7.39212 23.2079L6.61557 23.864C6.54997 23.9297 6.44057 23.9188 6.37497 23.8422C6.30926 23.7656 6.32021 23.6563 6.38581 23.6015L7.16247 22.9454C7.22796 22.8798 7.33748 22.8908 7.40296 22.9673L7.40307 22.9672ZM6.39676 23.8313C6.45152 23.8969 6.53902 23.8969 6.6045 23.8532L7.38117 23.1969C7.43581 23.1423 7.44677 23.0547 7.39212 22.9892C7.33736 22.9235 7.24986 22.9235 7.18438 22.9673L6.40771 23.6235C6.34211 23.6781 6.34211 23.7657 6.39676 23.8312V23.8313Z" fill="white"/>
<path d="M7.82986 21.4031C7.8845 21.4798 7.8626 21.5781 7.78605 21.6219L5.88297 22.8906C5.80642 22.9343 5.70797 22.9124 5.66427 22.8468C5.60952 22.7703 5.63142 22.6719 5.70797 22.628L7.61116 21.3594C7.67687 21.3157 7.77521 21.3375 7.82997 21.4031H7.82986Z" fill="#F3F3F3"/>
<path d="M7.84065 21.4031C7.89529 21.4798 7.87339 21.5891 7.79684 21.6439L5.89379 22.9125C5.81724 22.9673 5.70784 22.9453 5.6532 22.8579C5.59844 22.7813 5.62045 22.6719 5.69689 22.6173L7.60006 21.3485C7.6766 21.2939 7.78589 21.3158 7.84054 21.4031H7.84065ZM5.6751 22.836C5.71879 22.9016 5.80629 22.9235 5.87188 22.8798L7.77494 21.611C7.84065 21.5673 7.86244 21.4798 7.8078 21.4033C7.7641 21.3376 7.6766 21.3158 7.6109 21.3595L5.70784 22.6282C5.64224 22.6829 5.63129 22.7704 5.6751 22.836V22.836Z" fill="white"/>
<path d="M6.20007 21.1735C6.24388 21.25 6.22197 21.3485 6.14542 21.3923L5.25946 21.8953C5.18291 21.939 5.08446 21.9063 5.04076 21.8297C4.99696 21.7532 5.01886 21.6547 5.09541 21.6109L5.98137 21.1079C6.05792 21.0641 6.15638 21.0969 6.20018 21.1735H6.20007Z" fill="#F3F3F3"/>
<path d="M6.2111 21.1625C6.2548 21.25 6.23289 21.3484 6.15635 21.3922L5.27041 21.8953C5.19386 21.939 5.08446 21.9062 5.04076 21.8297C4.99696 21.7422 5.01886 21.6437 5.09541 21.5999L5.98135 21.0969C6.0579 21.0531 6.1673 21.0859 6.21099 21.1625H6.2111ZM5.0516 21.8187C5.09541 21.8953 5.18291 21.9172 5.2485 21.8734L6.13444 21.3703C6.20004 21.3265 6.22194 21.239 6.1892 21.1734C6.14539 21.0969 6.0579 21.075 5.9923 21.1188L5.10636 21.6218C5.04076 21.6546 5.01886 21.7422 5.05172 21.8187H5.0516Z" fill="white"/>
<path d="M6.93273 19.7188C6.96547 19.8063 6.93273 19.8939 6.84523 19.9266L4.73428 20.8016C4.65773 20.8345 4.55928 20.7908 4.52654 20.7141C4.49368 20.6266 4.52654 20.5391 4.61404 20.5064L6.72499 19.6313C6.80154 19.5986 6.89999 19.6313 6.93273 19.7188V19.7188Z" fill="#F3F3F3"/>
<path d="M6.94368 19.7079C6.97642 19.7954 6.94368 19.8938 6.85618 19.9375L4.74523 20.8125C4.70317 20.8284 4.65654 20.8269 4.61555 20.8085C4.57456 20.79 4.54255 20.7561 4.52654 20.7141C4.49368 20.6266 4.52654 20.5281 4.61404 20.4844L6.72499 19.6094C6.76705 19.5936 6.81368 19.595 6.85467 19.6135C6.89566 19.6319 6.92766 19.6659 6.94368 19.7079V19.7079ZM4.54833 20.7031C4.58118 20.7798 4.66868 20.8126 4.73428 20.7906L6.84523 19.9156C6.92178 19.8829 6.95463 19.7954 6.92178 19.7188C6.88904 19.6423 6.80154 19.6094 6.73583 19.6313L4.62488 20.5063C4.54833 20.5391 4.51559 20.6266 4.54833 20.7032V20.7031Z" fill="white"/>
<path d="M5.39067 19.1719C5.42342 19.2594 5.37972 19.3469 5.29222 19.3797L4.32972 19.6969C4.25317 19.7297 4.15472 19.675 4.13281 19.5985C4.10007 19.511 4.14376 19.4235 4.23126 19.3907L5.19377 19.0735C5.27032 19.0407 5.35782 19.0844 5.39067 19.1719Z" fill="#F3F3F3"/>
<path d="M5.40136 19.161C5.43421 19.2485 5.39052 19.347 5.29207 19.3798L4.32958 19.697C4.24208 19.7297 4.14363 19.6751 4.11078 19.5876C4.07804 19.5001 4.12173 19.4016 4.22029 19.3689L5.18267 19.0516C5.27017 19.0298 5.36862 19.0735 5.40147 19.1611L5.40136 19.161ZM4.13279 19.5767C4.1547 19.6533 4.2422 19.6971 4.31874 19.6752L5.28123 19.3579C5.35778 19.3361 5.39063 19.2486 5.36873 19.172C5.34683 19.0955 5.25933 19.0517 5.18278 19.0736L4.22029 19.3909C4.14374 19.4236 4.11089 19.5002 4.13279 19.5767Z" fill="white"/>
<path d="M6.37517 17.8703C6.39696 17.9578 6.34232 18.0453 6.25482 18.0563L4.01257 18.4938C3.92507 18.5157 3.84853 18.45 3.82674 18.3625C3.80483 18.275 3.85948 18.1875 3.94698 18.1765L6.18922 17.739C6.27672 17.7282 6.36422 17.7828 6.37506 17.8703H6.37517Z" fill="#F3F3F3"/>
<path d="M6.39688 17.8704C6.41878 17.9688 6.35319 18.0563 6.26569 18.0781L4.02343 18.5156C3.93593 18.5375 3.84843 18.4719 3.82664 18.3735C3.80474 18.275 3.87033 18.1875 3.95783 18.1657L6.20009 17.7282C6.28748 17.7063 6.37509 17.7719 6.39688 17.8704ZM3.84843 18.3626C3.85938 18.4391 3.93593 18.4938 4.01248 18.4829L6.25474 18.0454C6.33128 18.0344 6.38593 17.9469 6.36414 17.8704C6.35319 17.7938 6.27664 17.7391 6.19998 17.75L3.95783 18.1875C3.88128 18.2094 3.82664 18.286 3.84843 18.3625V18.3626Z" fill="white"/>
<path d="M4.97515 17.0283C4.98598 17.1157 4.93134 17.1923 4.84384 17.2033L3.83765 17.3236C3.75003 17.3345 3.67348 17.2689 3.66265 17.1813C3.65169 17.0939 3.70634 17.0173 3.79384 17.0062L4.80015 16.886C4.87669 16.875 4.96419 16.9406 4.97515 17.0283Z" fill="#F3F3F3"/>
<path d="M4.98611 17.0282C4.99695 17.1265 4.93135 17.214 4.84385 17.2249L3.83766 17.3453C3.75005 17.3562 3.66266 17.2906 3.65171 17.1922C3.64076 17.0937 3.70635 17.0063 3.79385 16.9953L4.80016 16.875C4.88755 16.864 4.97516 16.9297 4.986 17.028L4.98611 17.0282ZM3.66255 17.1812C3.6735 17.2578 3.75016 17.3235 3.82671 17.3124L4.8329 17.1922C4.90945 17.1812 4.96421 17.1047 4.95326 17.0282C4.94231 16.9515 4.86576 16.8859 4.78921 16.8969L3.7829 17.0172C3.70635 17.0282 3.65171 17.1047 3.66255 17.1812V17.1812Z" fill="white"/>
<path d="M6.19993 15.9671C6.19993 16.0547 6.13444 16.1313 6.04683 16.1313H3.76101C3.67351 16.1313 3.60791 16.0547 3.60791 15.9672C3.60791 15.8798 3.67351 15.8031 3.76101 15.8031H6.04694C6.13444 15.8031 6.20015 15.8798 6.20015 15.9672L6.19993 15.9671Z" fill="#F3F3F3"/>
<path d="M6.21109 15.9671C6.21109 16.0657 6.13443 16.1421 6.04693 16.1421H3.76109C3.67359 16.1421 3.59705 16.0656 3.59705 15.9671C3.59705 15.8688 3.67359 15.7921 3.76109 15.7921H6.04705C6.13455 15.7921 6.21109 15.8688 6.21109 15.9671ZM3.61884 15.9563C3.61884 16.0328 3.68443 16.1094 3.76109 16.1094H6.04693C6.12348 16.1094 6.18919 16.0438 6.18919 15.9563C6.18919 15.8797 6.12348 15.8031 6.04693 15.8031H3.76109C3.68455 15.814 3.61895 15.8797 3.61895 15.9563H3.61884Z" fill="white"/>
<path d="M4.98619 14.8625C4.97513 14.95 4.90953 15.0156 4.82203 15.0156L3.80476 14.9391C3.71737 14.9281 3.65177 14.8516 3.66261 14.7641C3.67356 14.6766 3.73927 14.611 3.82677 14.611L4.84393 14.6875C4.92048 14.6985 4.98619 14.775 4.98619 14.8625Z" fill="#E2E2E2"/>
<path d="M4.99679 14.8625C4.98584 14.9609 4.9093 15.0265 4.8218 15.0265L3.80454 14.95C3.71716 14.939 3.64061 14.8625 3.65156 14.764C3.6624 14.6657 3.73906 14.6 3.82656 14.6L4.8437 14.6765C4.9312 14.6875 4.99679 14.775 4.99679 14.8625ZM3.6624 14.764C3.65156 14.8406 3.71716 14.9172 3.7937 14.9172L4.81096 14.9938C4.88739 14.9938 4.9531 14.939 4.96405 14.8515C4.975 14.775 4.9093 14.6984 4.83275 14.6984L3.81549 14.6219C3.73906 14.6219 3.67335 14.6875 3.6624 14.7641V14.764Z" fill="white"/>
<path d="M6.39679 14.064C6.37488 14.1515 6.29834 14.2062 6.21084 14.1953L3.96869 13.7359C3.88119 13.714 3.82643 13.6375 3.84834 13.55C3.87024 13.4625 3.94679 13.4077 4.03429 13.4188L6.27655 13.8672C6.35309 13.889 6.40774 13.9765 6.39679 14.064V14.064Z" fill="#F3F3F3"/>
<path d="M6.40785 14.0641C6.38595 14.1625 6.29845 14.2173 6.21095 14.2063L3.96882 13.7579C3.88132 13.736 3.81572 13.6485 3.83762 13.5501C3.85941 13.4516 3.94691 13.3969 4.03441 13.4079L6.27666 13.8563C6.36416 13.8782 6.4188 13.9657 6.40785 14.0641V14.0641ZM3.85941 13.55C3.84846 13.6266 3.89216 13.7031 3.96882 13.725L6.21106 14.1735C6.28761 14.1844 6.36416 14.1407 6.38606 14.0531C6.3969 13.9766 6.35321 13.9 6.27655 13.8781L4.03453 13.4298C3.94703 13.4188 3.88143 13.4735 3.85953 13.55H3.85941Z" fill="white"/>
<path d="M5.41272 12.7516C5.4077 12.7725 5.39862 12.7921 5.38601 12.8094C5.37339 12.8268 5.35748 12.8414 5.3392 12.8526C5.32091 12.8637 5.3006 12.8712 5.27943 12.8745C5.25826 12.8778 5.23664 12.8769 5.21582 12.8719L4.2314 12.5984C4.1439 12.5765 4.10021 12.4891 4.122 12.4016C4.12702 12.3807 4.1361 12.3611 4.14871 12.3438C4.16133 12.3265 4.17724 12.3118 4.19552 12.3006C4.21381 12.2895 4.23412 12.282 4.25529 12.2787C4.27646 12.2754 4.29808 12.2763 4.3189 12.2813L5.30332 12.5548C5.39082 12.5765 5.43451 12.664 5.41272 12.7515V12.7516Z" fill="#F3F3F3"/>
<path d="M5.42337 12.7516C5.40158 12.839 5.30313 12.9047 5.21563 12.8718L4.23121 12.5984C4.1437 12.5765 4.08894 12.4781 4.11085 12.3907C4.13275 12.3031 4.23121 12.2375 4.31871 12.2703L5.30313 12.5438C5.39063 12.5657 5.44539 12.6532 5.42337 12.7515V12.7516ZM4.1437 12.3905C4.1218 12.4671 4.16561 12.5546 4.24216 12.5764L5.22658 12.8498C5.30313 12.8717 5.37968 12.8279 5.40158 12.7404C5.42337 12.6639 5.37968 12.5764 5.30313 12.5546L4.31871 12.2812C4.24216 12.2702 4.16561 12.3139 4.1437 12.3906V12.3905Z" fill="white"/>
<path d="M6.95465 12.2267C6.92191 12.3141 6.82335 12.3469 6.74691 12.3141L4.63585 11.4391C4.5593 11.4063 4.5156 11.3079 4.54835 11.2313C4.5812 11.1438 4.67965 11.111 4.7562 11.1438L6.86715 12.0188C6.95465 12.0516 6.98751 12.15 6.95465 12.2266V12.2267Z" fill="#F3F3F3"/>
<path d="M6.96561 12.2375C6.9496 12.2796 6.91757 12.3135 6.87656 12.332C6.83554 12.3504 6.78888 12.3519 6.74681 12.336L4.63584 11.461C4.54834 11.4283 4.5156 11.3298 4.54834 11.2314C4.56436 11.1893 4.59638 11.1554 4.6374 11.1369C4.67841 11.1185 4.72507 11.117 4.76715 11.1329L6.87811 12.0079C6.96561 12.0516 6.99836 12.1501 6.96561 12.2375V12.2375ZM4.57024 11.2423C4.5375 11.3189 4.57024 11.4064 4.64679 11.4391L6.75776 12.3141C6.83431 12.3469 6.91086 12.3031 6.94371 12.2266C6.97645 12.15 6.94371 12.0625 6.86716 12.0298L4.7562 11.1548C4.67965 11.1329 4.59215 11.1658 4.57024 11.2423V11.2423Z" fill="white"/>
<path d="M6.24385 10.75C6.20015 10.8266 6.11265 10.8594 6.03611 10.8266L5.12825 10.3673C5.0517 10.3344 5.01885 10.236 5.06265 10.1484C5.10635 10.0719 5.19385 10.039 5.2704 10.0719L6.17814 10.5313C6.2548 10.575 6.28765 10.6736 6.24385 10.75Z" fill="#F3F3F3"/>
<path d="M6.25485 10.761C6.21104 10.8485 6.11259 10.8814 6.02509 10.8375L5.11735 10.3781C5.02985 10.3344 4.997 10.236 5.04081 10.1485C5.0845 10.061 5.18306 10.0281 5.27045 10.0719L6.17819 10.5313C6.2658 10.5641 6.29854 10.6736 6.25485 10.761V10.761ZM5.07355 10.1594C5.04081 10.236 5.06271 10.3235 5.13926 10.3563L6.04699 10.8158C6.1127 10.8485 6.2002 10.8158 6.2439 10.75C6.27664 10.6735 6.25485 10.586 6.1783 10.5531L5.25939 10.094C5.19379 10.0612 5.10629 10.083 5.07344 10.1595L5.07355 10.1594Z" fill="white"/>
<path d="M7.85144 10.5422C7.7968 10.6188 7.70929 10.6407 7.63274 10.586L5.74045 9.32823C5.66401 9.28442 5.65306 9.18597 5.69675 9.10942C5.74056 9.03287 5.83901 9.01097 5.91556 9.06562L7.8187 10.3344C7.8843 10.3782 7.9062 10.4767 7.85144 10.5422Z" fill="#F3F3F3"/>
<path d="M7.86239 10.5531C7.80774 10.6298 7.69834 10.6516 7.62191 10.6079L5.72966 9.33905C5.65311 9.28441 5.63121 9.18596 5.68586 9.09857C5.74061 9.02191 5.85002 9 5.92656 9.04381L7.8187 10.3125C7.90619 10.3673 7.91715 10.4766 7.86239 10.5531ZM5.70776 9.10941C5.66407 9.175 5.67502 9.27346 5.7405 9.31715L7.6437 10.5861C7.70929 10.6299 7.79679 10.608 7.8406 10.5424C7.88429 10.4767 7.87334 10.3782 7.80786 10.3345L5.90455 9.06571C5.83895 9.02191 5.75145 9.04381 5.70765 9.10941H5.70776Z" fill="white"/>
<path d="M7.4469 8.9563C7.39226 9.02189 7.29381 9.04379 7.22821 8.98904L6.42975 8.36571C6.36415 8.31096 6.3532 8.21251 6.40784 8.14691C6.46249 8.08132 6.56094 8.05941 6.62665 8.11417L7.425 8.73749C7.49071 8.79225 7.50166 8.89059 7.4469 8.9563V8.9563Z" fill="#F3F3F3"/>
<path d="M7.45781 8.96712C7.40316 9.04378 7.29376 9.05473 7.21721 8.99998L6.41878 8.37665C6.34223 8.322 6.33128 8.2126 6.38604 8.13617C6.44068 8.05951 6.55008 8.04856 6.62652 8.10332L7.42495 8.72664C7.50161 8.7814 7.51256 8.89069 7.45781 8.96735V8.96712ZM6.40783 8.14689C6.35318 8.21249 6.36414 8.29999 6.42973 8.35463L7.22817 8.97819C7.29376 9.02188 7.38126 9.01093 7.4359 8.94533C7.49066 8.87974 7.47971 8.79224 7.41411 8.73759L6.61568 8.11404C6.55008 8.07035 6.46247 8.0813 6.40794 8.14689H6.40783Z" fill="white"/>
<path d="M9.07648 9.06562C9.01099 9.13133 8.91243 9.13133 8.85778 9.06562L7.22821 7.45786C7.16261 7.39227 7.17345 7.29381 7.22821 7.23905C7.29381 7.17357 7.39226 7.17357 7.44691 7.23905L9.06575 8.84692C9.13135 8.90157 9.13135 9.01097 9.07671 9.06573L9.07648 9.06562Z" fill="#F3F3F3"/>
<path d="M9.07664 9.0766C9.04455 9.10811 9.00137 9.12576 8.95639 9.12576C8.91142 9.12576 8.86824 9.10811 8.83615 9.0766L7.21725 7.46864C7.18567 7.43654 7.16797 7.39332 7.16797 7.34829C7.16797 7.30326 7.18567 7.26003 7.21725 7.22793C7.24934 7.19639 7.29254 7.17871 7.33754 7.17871C7.38255 7.17871 7.42575 7.19639 7.45784 7.22793L9.07664 8.83578C9.15318 8.90137 9.15318 9.01077 9.07664 9.07637V9.0766ZM7.23938 7.24984C7.18462 7.30459 7.18462 7.40304 7.23938 7.45758L8.85806 9.06542C8.91281 9.12018 9.01115 9.12018 9.0658 9.06542C9.12055 9.01077 9.12055 8.91232 9.0658 8.85768L7.44712 7.239C7.39247 7.18435 7.30486 7.18435 7.23938 7.24995V7.24984Z" fill="white"/>
<path d="M8.97816 7.43593C8.91256 7.49068 8.81411 7.49068 8.75936 7.42497L8.09211 6.65938C8.03758 6.59378 8.04842 6.49533 8.11413 6.44068C8.17961 6.38593 8.27817 6.38593 8.33282 6.45152L9.00006 7.21723C9.05471 7.27188 9.04376 7.37033 8.97816 7.43593Z" fill="#F3F3F3"/>
<path d="M8.98906 7.43593C8.91252 7.50153 8.81406 7.49069 8.74835 7.42498L8.08121 6.65938C8.01561 6.59378 8.02656 6.48438 8.10311 6.41878C8.17966 6.35307 8.27811 6.36402 8.34371 6.42973L9.01097 7.19522C9.06561 7.27188 9.06561 7.38129 8.98906 7.43593V7.43593ZM8.11406 6.44068C8.04835 6.49533 8.04835 6.58283 8.09216 6.64843L8.75942 7.41403C8.81406 7.46879 8.90156 7.47974 8.96716 7.42498C9.03276 7.37034 9.03276 7.28272 8.98906 7.21724L8.32181 6.45152C8.26716 6.38604 8.17955 6.38604 8.11406 6.44068V6.44068Z" fill="white"/>
<path d="M10.5532 7.85171C10.4766 7.90635 10.3782 7.88445 10.3343 7.8079L9.05472 5.91566C9.01091 5.83911 9.03281 5.74066 9.09841 5.69696C9.17496 5.64232 9.27341 5.66422 9.31721 5.74077L10.5859 7.6329C10.6407 7.70945 10.6187 7.8079 10.5532 7.85159V7.85171Z" fill="#F3F3F3"/>
<path d="M10.5532 7.86251C10.4767 7.91727 10.3673 7.89526 10.3125 7.81882L9.04388 5.92655C8.98924 5.85 9.01114 5.74071 9.09852 5.68606C9.17507 5.63131 9.28446 5.65321 9.33922 5.72976L10.6079 7.62192C10.6625 7.70942 10.6406 7.80787 10.5532 7.86251ZM9.10936 5.70785C9.04377 5.75155 9.02186 5.83905 9.06567 5.90476L10.3343 7.79692C10.3781 7.86251 10.4656 7.87347 10.542 7.82966C10.6077 7.78597 10.6296 7.69846 10.5858 7.63287L9.31732 5.75155C9.27351 5.68606 9.17507 5.66405 9.10958 5.70785H9.10936Z" fill="white"/>
<path d="M10.7828 6.23295C10.7063 6.27664 10.6078 6.25485 10.5641 6.1783L10.061 5.29235C10.0173 5.2158 10.05 5.11735 10.1267 5.07355C10.2032 5.02985 10.3016 5.05164 10.3453 5.1283L10.8484 6.01414C10.8813 6.09069 10.8594 6.18914 10.7829 6.23295H10.7828Z" fill="#F3F3F3"/>
<path d="M10.7828 6.24391C10.6953 6.2876 10.5968 6.26581 10.5531 6.18915L10.0499 5.30331C10.0062 5.22664 10.0281 5.11735 10.1156 5.07355C10.2031 5.02985 10.3016 5.05164 10.3453 5.1283L10.8483 6.01415C10.8922 6.0907 10.8703 6.18915 10.7829 6.24391H10.7828ZM10.1266 5.0845C10.0609 5.12819 10.0281 5.21569 10.0718 5.2814L10.575 6.16736C10.6187 6.23284 10.7062 6.25486 10.7718 6.22201C10.8375 6.17831 10.8703 6.0907 10.8266 6.0251L10.3234 5.13914C10.2906 5.07366 10.1922 5.04069 10.1266 5.0845V5.0845Z" fill="white"/>
<path d="M12.2373 6.95474C12.1499 6.98748 12.0623 6.95474 12.0296 6.87819L11.1437 4.76713C11.1109 4.69058 11.1546 4.59213 11.2312 4.55927C11.3187 4.52653 11.4062 4.55927 11.4389 4.63582L12.3248 6.74677C12.3577 6.82332 12.314 6.92177 12.2373 6.95451V6.95474Z" fill="#F3F3F3"/>
<path d="M12.2377 6.9657C12.1503 6.99845 12.0518 6.9657 12.008 6.87809L11.122 4.76727C11.1062 4.72519 11.1076 4.67853 11.126 4.63752C11.1445 4.5965 11.1785 4.56448 11.2205 4.54846C11.308 4.51572 11.4064 4.54846 11.4503 4.63596L12.3361 6.7469C12.369 6.82345 12.3253 6.9219 12.2378 6.9657H12.2377ZM11.2424 4.57036C11.1658 4.60311 11.133 4.69072 11.1658 4.75632L12.0517 6.86714C12.0844 6.94369 12.1719 6.97643 12.2485 6.94369C12.325 6.91095 12.358 6.82333 12.325 6.75774L11.4392 4.6468C11.3954 4.57025 11.3188 4.5374 11.2423 4.57025L11.2424 4.57036Z" fill="white"/>
<path d="M12.7733 5.40174C12.6858 5.43448 12.5983 5.39068 12.5656 5.30329L12.2483 4.34069C12.2156 4.26414 12.2702 4.16569 12.3468 4.1439C12.4233 4.122 12.5218 4.15485 12.5545 4.24235L12.8717 5.20484C12.9045 5.28139 12.8608 5.36889 12.7733 5.40163V5.40174Z" fill="#F3F3F3"/>
<path d="M12.7844 5.41251C12.7423 5.42837 12.6957 5.42691 12.6547 5.40845C12.6137 5.39 12.5817 5.35606 12.5657 5.31406L12.2484 4.35156C12.2157 4.26406 12.2703 4.16572 12.3579 4.13287C12.4 4.11701 12.4466 4.11847 12.4876 4.13693C12.5286 4.15538 12.5606 4.18932 12.5766 4.23132L12.8938 5.19382C12.9157 5.28132 12.8719 5.37977 12.7844 5.41251V5.41251ZM12.3578 4.15477C12.2813 4.17656 12.2375 4.26406 12.2594 4.34061L12.5766 5.30322C12.5984 5.37977 12.6859 5.41251 12.7626 5.39061C12.8392 5.36882 12.8829 5.28132 12.861 5.20477L12.5438 4.24216C12.5382 4.22359 12.5288 4.20641 12.5161 4.19172C12.5035 4.17704 12.4879 4.16518 12.4703 4.15693C12.4528 4.14867 12.4337 4.1442 12.4143 4.14381C12.3949 4.14342 12.3757 4.14712 12.3578 4.15466V4.15477Z" fill="white"/>
<path d="M14.064 6.3969C13.9765 6.4188 13.889 6.36416 13.8781 6.27655L13.4187 4.03441C13.3968 3.94692 13.4625 3.87037 13.5499 3.84846C13.6375 3.82656 13.7249 3.88121 13.7358 3.96882L14.1953 6.21106C14.2061 6.2875 14.1515 6.375 14.064 6.3969V6.3969Z" fill="#F3F3F3"/>
<path d="M14.064 6.40785C13.9656 6.42976 13.8781 6.36405 13.8562 6.27655L13.3968 4.0344C13.3749 3.9469 13.4406 3.84845 13.5281 3.8375C13.6265 3.81559 13.714 3.8813 13.7358 3.9688L14.1953 6.21106C14.2171 6.29845 14.1625 6.38606 14.064 6.40785V6.40785ZM13.55 3.8594C13.4733 3.87035 13.4187 3.9469 13.4296 4.0344L13.889 6.27666C13.9 6.35309 13.9874 6.40785 14.064 6.38595C14.1406 6.375 14.1952 6.29845 14.1843 6.21095L13.7249 3.96869C13.7031 3.89226 13.6265 3.84845 13.5499 3.8594H13.55Z" fill="white"/>
<path d="M14.8954 4.97504C14.8079 4.98599 14.7313 4.93134 14.7094 4.84384L14.5782 3.83752C14.5673 3.75002 14.6329 3.67347 14.7205 3.66252C14.8079 3.65157 14.8844 3.70633 14.9063 3.79383L15.0375 4.80003C15.0484 4.88754 14.9828 4.96409 14.8954 4.97504V4.97504Z" fill="#F3F3F3"/>
<path d="M14.8954 4.98597C14.7969 4.99693 14.7094 4.93133 14.6985 4.84372L14.5673 3.83752C14.5563 3.75002 14.6219 3.66252 14.7204 3.65156C14.8188 3.64072 14.9063 3.70632 14.9173 3.79382L15.0485 4.80002C15.0594 4.88752 14.9938 4.97502 14.8954 4.98597V4.98597ZM14.7313 3.67347C14.6548 3.68442 14.5891 3.76097 14.6 3.83752L14.7313 4.84383C14.7423 4.92038 14.8188 4.97502 14.8954 4.96407C14.9719 4.95323 15.0376 4.87657 15.0267 4.80002L14.8954 3.79382C14.8844 3.71727 14.8079 3.66252 14.7313 3.67347V3.67347Z" fill="white"/>
<path d="M16.0766 28.9391C23.2287 28.9391 29.0266 23.1411 29.0266 15.9891C29.0266 8.83697 23.2287 3.03906 16.0766 3.03906C8.92456 3.03906 3.12665 8.83697 3.12665 15.9891C3.12665 23.1411 8.92456 28.9391 16.0766 28.9391Z" fill="url(#paint2_linear_449_13003)" fillOpacity="0.2"/>
<path d="M25.0453 7.77502L14.6 14.4688H14.589V14.4797L14.5781 14.4906L8.05951 25.2423L17.6407 17.5313L17.6517 17.5205V17.5095L25.0455 7.77514L25.0453 7.77502Z" fill="black" fillOpacity="0.05"/>
<path d="M24.8484 7.15149L14.5234 14.4905L17.5859 17.5311L24.8484 7.15149" fill="#CD151E"/>
<path d="M14.5344 14.4687L16.0767 15.989L24.8484 7.15149L14.5344 14.4687V14.4687Z" fill="#FA5153"/>
<path d="M14.5344 14.4687L17.5969 17.5092L7.27191 24.8484L14.5344 14.4686V14.4687Z" fill="#ACACAC"/>
<path d="M7.27191 24.8484L16.0766 15.989L14.5343 14.4686L7.27191 24.8484Z" fill="#EEEEEE"/>
<defs>
<linearGradient id="paint0_linear_449_13003" x1="16" y1="30" x2="16" y2="2" gradientUnits="userSpaceOnUse">
<stop offset="0.25" stopColor="#DBDBDA"/>
<stop offset="1" stopColor="white"/>
</linearGradient>
<radialGradient id="paint1_radial_449_13003" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(17.8195 13.1553) scale(15.8073 15.8073)">
<stop stopColor="#2ABCE1"/>
<stop offset="0.11363" stopColor="#2ABBE1"/>
<stop offset="1" stopColor="#3375F8"/>
</radialGradient>
<linearGradient id="paint2_linear_449_13003" x1="15.8306" y1="12.2861" x2="9.78632" y2="23.1302" gradientUnits="userSpaceOnUse">
<stop stop-opacity="0"/>
<stop offset="1"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_browser_safari;

View file

@ -0,0 +1,22 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_samsung_internet(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32">
<path d="M0 16C0 7.16344 7.16344 0 16 0C24.8366 0 32 7.16344 32 16C32 24.8366 24.8366 32 16 32C7.16344 32 0 24.8366 0 16Z" fill="#2D4F9E"/>
<path d="M9.69879 18.9394V20.2739C9.69879 24.1826 12.7424 25.3649 16.0341 25.3649C19.1702 25.3649 21.7643 24.2739 22.1869 21.3661C22.3486 20.4121 22.3387 19.4369 22.1576 18.4864C21.433 14.8189 14.8261 13.7267 14.3145 11.6969C14.2456 11.3985 14.2353 11.0896 14.2841 10.7873C14.3526 10.4252 14.5552 10.1024 14.8515 9.88318C15.1477 9.66399 15.5157 9.56464 15.882 9.60497C16.0965 9.58481 16.3128 9.61131 16.5161 9.68267C16.7193 9.75404 16.9048 9.86856 17.0596 10.0184C17.2144 10.1682 17.335 10.3498 17.413 10.5506C17.491 10.7514 17.5246 10.9667 17.5115 11.1818V12.2728H21.8544V11.0296C21.8544 7.21107 18.4456 6.63513 15.9721 6.63513C12.8653 6.63513 10.3625 7.66527 9.88024 10.5134C9.73965 11.2963 9.74959 12.0988 9.9095 12.878C10.695 16.425 16.8782 17.4551 17.783 19.7308C17.928 20.1514 17.9387 20.6067 17.8135 21.0337C17.7309 21.4063 17.5113 21.7344 17.1982 21.9527C16.8851 22.1711 16.5014 22.2638 16.1231 22.2125C15.9017 22.2392 15.6771 22.2183 15.4645 22.151C15.2518 22.0837 15.0561 21.9716 14.8904 21.8224C14.7247 21.6731 14.5928 21.49 14.5038 21.2855C14.4148 21.081 14.3706 20.8598 14.3742 20.6368V18.9394H9.69879Z" fill="white"/>
</svg>
);
}
export default Color_browser_samsung_internet;

View file

@ -0,0 +1,52 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_uc_browser(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M2 7.62758C2.81839 5.75172 5.68274 2 10.5931 2C16.8497 2 17.0873 6.71607 17.0873 8.38057C17.0873 12.0466 14.5113 13.811 11.9216 15.5847C9.30415 17.3775 6.67272 19.1798 6.67272 22.9647C6.67272 27.6412 10.5271 29.8869 12.4542 29.9398C3.06918 29.9398 2.1188 23.2421 2.1188 21.9343C2.1188 18.2182 3.86918 16.218 5.45027 14.4114C6.75251 12.9233 7.9399 11.5665 7.9399 9.49023C7.9399 5.36862 2.95038 6.12161 2 7.62758Z" fill="white"/>
<path d="M2 7.62758C2.81839 5.75172 5.68274 2 10.5931 2C16.8497 2 17.0873 6.71607 17.0873 8.38057C17.0873 12.0466 14.5113 13.811 11.9216 15.5847C9.30415 17.3775 6.67272 19.1798 6.67272 22.9647C6.67272 27.6412 10.5271 29.8869 12.4542 29.9398C3.06918 29.9398 2.1188 23.2421 2.1188 21.9343C2.1188 18.2182 3.86918 16.218 5.45027 14.4114C6.75251 12.9233 7.9399 11.5665 7.9399 9.49023C7.9399 5.36862 2.95038 6.12161 2 7.62758Z" fill="url(#paint0_linear_449_13009)"/>
<path d="M16.5726 13.9685C17.8133 13.5326 20.7226 12.304 22.4333 10.8773C22.2749 9.21282 22.9084 7.58795 23.5816 6.95386C24.4132 7.66721 24.8488 8.96182 24.9676 9.72802C26.4328 10.1243 29.4503 11.7967 29.7987 15.316C29.8938 15.9501 29.8383 16.6634 29.7987 16.9408C29.3763 17.139 28.1752 17.456 26.5912 17.2975C25.6039 17.1987 24.9217 16.7894 24.0538 16.2688C23.1812 15.7453 22.1209 15.1093 20.3741 14.563C18.4733 13.9685 16.8893 13.9685 16.5726 13.9685Z" fill="white"/>
<path d="M16.5726 13.9685C17.8133 13.5326 20.7226 12.304 22.4333 10.8773C22.2749 9.21282 22.9084 7.58795 23.5816 6.95386C24.4132 7.66721 24.8488 8.96182 24.9676 9.72802C26.4328 10.1243 29.4503 11.7967 29.7987 15.316C29.8938 15.9501 29.8383 16.6634 29.7987 16.9408C29.3763 17.139 28.1752 17.456 26.5912 17.2975C25.6039 17.1987 24.9217 16.7894 24.0538 16.2688C23.1812 15.7453 22.1209 15.1093 20.3741 14.563C18.4733 13.9685 16.8893 13.9685 16.5726 13.9685Z" fill="url(#paint1_linear_449_13009)"/>
<path d="M18.0377 15.2763C15.5034 14.8325 13.497 15.4613 12.8106 15.8312C18.4179 15.2288 21.6149 19.279 22.5125 21.3795C22.4201 21.6041 23.6608 21.6965 24.2152 21.6965C24.8067 21.6965 25.6799 21.3582 26.5102 21.0365C27.2364 20.7551 27.9298 20.4865 28.3732 20.468C29.1335 20.4363 29.7723 20.7454 29.9967 20.9039C30.0231 20.6001 29.9017 19.8418 29.2047 19.2394C28.7372 18.8353 28.1101 18.7965 27.3478 18.7492C26.6895 18.7084 25.9305 18.6614 25.0864 18.3675C24.4247 18.1372 23.7315 17.7394 22.9653 17.2998C21.6224 16.5291 20.0548 15.6296 18.0377 15.2763Z" fill="white"/>
<path d="M18.0377 15.2763C15.5034 14.8325 13.497 15.4613 12.8106 15.8312C18.4179 15.2288 21.6149 19.279 22.5125 21.3795C22.4201 21.6041 23.6608 21.6965 24.2152 21.6965C24.8067 21.6965 25.6799 21.3582 26.5102 21.0365C27.2364 20.7551 27.9298 20.4865 28.3732 20.468C29.1335 20.4363 29.7723 20.7454 29.9967 20.9039C30.0231 20.6001 29.9017 19.8418 29.2047 19.2394C28.7372 18.8353 28.1101 18.7965 27.3478 18.7492C26.6895 18.7084 25.9305 18.6614 25.0864 18.3675C24.4247 18.1372 23.7315 17.7394 22.9653 17.2998C21.6224 16.5291 20.0548 15.6296 18.0377 15.2763Z" fill="url(#paint2_linear_449_13009)"/>
<path fillRule="evenodd" clipRule="evenodd" d="M12.8898 28.5923C15.1862 28.5923 17.0477 26.7293 17.0477 24.4311C17.0477 22.1329 15.1862 20.2698 12.8898 20.2698C10.5935 20.2698 8.73189 22.1329 8.73189 24.4311C8.73189 26.7293 10.5935 28.5923 12.8898 28.5923ZM12.8898 26.2937C13.9177 26.2937 14.751 25.4598 14.751 24.4311C14.751 23.4023 13.9177 22.5684 12.8898 22.5684C11.8619 22.5684 11.0286 23.4023 11.0286 24.4311C11.0286 25.4598 11.8619 26.2937 12.8898 26.2937Z" fill="white"/>
<path fillRule="evenodd" clipRule="evenodd" d="M12.8898 28.5923C15.1862 28.5923 17.0477 26.7293 17.0477 24.4311C17.0477 22.1329 15.1862 20.2698 12.8898 20.2698C10.5935 20.2698 8.73189 22.1329 8.73189 24.4311C8.73189 26.7293 10.5935 28.5923 12.8898 28.5923ZM12.8898 26.2937C13.9177 26.2937 14.751 25.4598 14.751 24.4311C14.751 23.4023 13.9177 22.5684 12.8898 22.5684C11.8619 22.5684 11.0286 23.4023 11.0286 24.4311C11.0286 25.4598 11.8619 26.2937 12.8898 26.2937Z" fill="url(#paint3_linear_449_13009)"/>
<path d="M8.49429 20.7335C9.04987 19.3754 10.8201 17.0201 14.157 17.0201C18.5525 17.0201 21.4829 20.8247 21.4829 24.7481C21.4829 25.8181 20.8493 27.5223 20.8493 27.5223C22.6709 27.5223 24.73 28.6319 24.73 29.6623C22.7422 29.8964 18.9513 30.0536 14.3769 29.9829C16.8272 29.3272 18.6317 27.0901 18.6317 24.4311C18.6317 21.2574 16.061 18.6846 12.8898 18.6846C11.1258 18.6846 9.54758 19.4807 8.49429 20.7335Z" fill="white"/>
<path d="M8.49429 20.7335C9.04987 19.3754 10.8201 17.0201 14.157 17.0201C18.5525 17.0201 21.4829 20.8247 21.4829 24.7481C21.4829 25.8181 20.8493 27.5223 20.8493 27.5223C22.6709 27.5223 24.73 28.6319 24.73 29.6623C22.7422 29.8964 18.9513 30.0536 14.3769 29.9829C16.8272 29.3272 18.6317 27.0901 18.6317 24.4311C18.6317 21.2574 16.061 18.6846 12.8898 18.6846C11.1258 18.6846 9.54758 19.4807 8.49429 20.7335Z" fill="url(#paint4_linear_449_13009)"/>
<defs>
<linearGradient id="paint0_linear_449_13009" x1="27.0588" y1="2.58823" x2="2.76471" y2="29.7059" gradientUnits="userSpaceOnUse">
<stop stopColor="#FCA336"/>
<stop offset="1" stopColor="#FC7625"/>
</linearGradient>
<linearGradient id="paint1_linear_449_13009" x1="27.0588" y1="2.58823" x2="2.76471" y2="29.7059" gradientUnits="userSpaceOnUse">
<stop stopColor="#FCA336"/>
<stop offset="1" stopColor="#FC7625"/>
</linearGradient>
<linearGradient id="paint2_linear_449_13009" x1="27.0588" y1="2.58823" x2="2.76471" y2="29.7059" gradientUnits="userSpaceOnUse">
<stop stopColor="#FCA336"/>
<stop offset="1" stopColor="#FC7625"/>
</linearGradient>
<linearGradient id="paint3_linear_449_13009" x1="27.0588" y1="2.58823" x2="2.76471" y2="29.7059" gradientUnits="userSpaceOnUse">
<stop stopColor="#FCA336"/>
<stop offset="1" stopColor="#FC7625"/>
</linearGradient>
<linearGradient id="paint4_linear_449_13009" x1="27.0588" y1="2.58823" x2="2.76471" y2="29.7059" gradientUnits="userSpaceOnUse">
<stop stopColor="#FCA336"/>
<stop offset="1" stopColor="#FC7625"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_browser_uc_browser;

View file

@ -0,0 +1,23 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_unknown(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="1.33 1.33 29.33 29.33">
<path d="M16 29.3333C23.3638 29.3333 29.3334 23.3638 29.3334 16C29.3334 8.63616 23.3638 2.66663 16 2.66663C8.63622 2.66663 2.66669 8.63616 2.66669 16C2.66669 23.3638 8.63622 29.3333 16 29.3333Z" stroke="#122AF5" strokeWidth="2.66667" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M16 2.66663C12.5763 6.2615 10.6667 11.0356 10.6667 16C10.6667 20.9643 12.5763 25.7384 16 29.3333C19.4237 25.7384 21.3334 20.9643 21.3334 16C21.3334 11.0356 19.4237 6.2615 16 2.66663Z" stroke="#122AF5" strokeWidth="2.66667" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M2.66669 16H29.3334" stroke="#122AF5" strokeWidth="2.66667" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
);
}
export default Color_browser_unknown;

View file

@ -0,0 +1,43 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_whale(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="1.6 1.6 28.8 28.8">
<mask id="mask0_450_13811" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="1" y="1" width="30" height="30">
<path d="M1.6001 1.59961H30.4001V30.3996H1.6001V1.59961Z" fill="white"/>
</mask>
<g mask="url(#mask0_450_13811)">
<g filter="url(#filter0_i_450_13811)">
<path fillRule="evenodd" clipRule="evenodd" d="M27.665 7.70665C27.6418 7.68875 27.622 7.64941 27.622 7.64941C27.622 7.64941 26.6258 7.69949 26.284 7.72811C24.6276 7.87121 20.499 9.64931 17.7389 16.9584C17.7389 16.9584 15.1504 25.7058 9.44946 28.609C11.4011 29.609 13.6103 30.176 15.9536 30.176C23.8458 30.176 30.2428 23.7792 30.2428 15.8869C30.2428 12.8424 29.2874 10.025 27.665 7.70665Z" fill="#E1E1F5"/>
</g>
<path fillRule="evenodd" clipRule="evenodd" d="M3.63037 9.63678L5.59449 15.8887H12.3813L25.2536 8.20572L27.6238 7.65118L27.572 7.57426C24.9782 3.95728 20.7422 1.59961 15.9536 1.59961C10.7696 1.59961 6.22951 4.36154 3.72517 8.49372L3.63037 9.63678Z" fill="#102C88"/>
<path d="M4.37992 8.10342C4.45506 7.80646 4.59638 7.37536 4.63214 7.26982C4.6572 7.20006 4.72158 7.03906 4.72158 7.03906C4.38708 7.4487 3.9846 8.06764 3.9846 8.06764C2.4784 10.3376 1.6001 13.0602 1.6001 15.9885C1.6001 20.212 3.43184 24.0006 6.33868 26.6248L6.3351 26.6338C5.13302 27.8324 3.70018 28.7946 2.10812 29.4548C1.94176 29.5246 1.94713 29.7606 2.11886 29.8214C4.77346 30.6282 7.92716 30.4566 10.3904 29.2114C10.3904 29.2114 10.4065 29.2008 10.4136 29.1972C11.1327 28.8376 11.8751 28.3778 12.5942 27.7894C13.4546 27.1382 14.1558 26.421 14.7944 25.53C16.052 23.7752 17.068 21.3532 18.601 17.4732C20.9676 11.4825 22.8442 9.26794 27.5952 7.66158C27.5828 7.65978 23.2538 6.7457 18.4043 9.9763C13.8893 12.9833 12.4994 15.1907 9.43156 15.1907C7.02738 15.1907 3.185 12.8438 4.3513 8.21252C4.3513 8.21252 4.36562 8.15886 4.37992 8.10698V8.10342Z" fill="#00D1CE"/>
<path d="M15.9554 16.8819C15.4528 16.8819 15.0449 16.3989 15.0449 15.8033C15.0449 15.2076 15.4528 14.7246 15.9554 14.7246C16.4581 14.7246 16.8659 15.2076 16.8659 15.8033C16.8659 16.3989 16.4581 16.8819 15.9554 16.8819Z" fill="#004781"/>
</g>
<defs>
<filter id="filter0_i_450_13811" x="5.44946" y="3.64941" width="24.7933" height="26.5266" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dx="-4" dy="-4"/>
<feGaussianBlur stdDeviation="3"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.02 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_450_13811"/>
</filter>
</defs>
</svg>
);
}
export default Color_browser_whale;

View file

@ -0,0 +1,22 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_browser_yandex_browser(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32">
<path d="M0 16C0 7.16344 7.16344 0 16 0C24.8366 0 32 7.16344 32 16C32 24.8366 24.8366 32 16 32C7.16344 32 0 24.8366 0 16Z" fill="#F4D4D4"/>
<path d="M8.32752 7.8406L7.57883 8.77647C7.25226 9.18468 7.29521 9.77553 7.67738 10.1322L14.5 16.5V26H17.5V16.5L24.3226 10.1322C24.7048 9.77553 24.7477 9.18467 24.4212 8.77647L23.6725 7.8406C23.3094 7.3867 22.6371 7.33697 22.2112 7.7325L16 13.5L9.78884 7.7325C9.3629 7.33697 8.69064 7.3867 8.32752 7.8406Z" fill="#FF0013"/>
</svg>
);
}
export default Color_browser_yandex_browser;

View file

@ -0,0 +1,32 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_country_de(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clipPath="url(#clip0_475_20186)">
<rect width="24" height="24" rx="12" fill="#F6F8D5"/>
<path fillRule="evenodd" clipRule="evenodd" d="M-4 16H28V24H-4V16Z" fill="#FFD018"/>
<path fillRule="evenodd" clipRule="evenodd" d="M-4 8H28V16H-4V8Z" fill="#E31D1C"/>
<path fillRule="evenodd" clipRule="evenodd" d="M-4 0H28V8H-4V0Z" fill="#272727"/>
</g>
<defs>
<clipPath id="clip0_475_20186">
<rect width="24" height="24" rx="12" fill="white"/>
</clipPath>
</defs>
</svg>
);
}
export default Color_country_de;

View file

@ -0,0 +1,32 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_country_fr(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clipPath="url(#clip0_475_20176)">
<rect y="0.600098" width="24" height="24" rx="12" fill="#FFF8D5"/>
<path fillRule="evenodd" clipRule="evenodd" d="M18 0.600098H28V24.6001H18V0.600098Z" fill="#F50100"/>
<path fillRule="evenodd" clipRule="evenodd" d="M-4 0.600098H8V24.6001H-4V0.600098Z" fill="#2E42A5"/>
<path fillRule="evenodd" clipRule="evenodd" d="M6 0.600098H18V24.6001H6V0.600098Z" fill="#F7FCFF"/>
</g>
<defs>
<clipPath id="clip0_475_20176">
<rect y="0.600098" width="24" height="24" rx="12" fill="white"/>
</clipPath>
</defs>
</svg>
);
}
export default Color_country_fr;

View file

@ -0,0 +1,44 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_country_gb(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clipPath="url(#clip0_475_20166)">
<rect y="0.199951" width="24" height="24" rx="12" fill="#FFF2E8"/>
<path fillRule="evenodd" clipRule="evenodd" d="M-4 0.199951V24.2H28V0.199951H-4Z" fill="#2E42A5"/>
<mask id="mask0_475_20166" maskUnits="userSpaceOnUse" x="-4" y="0" width="32" height="25">
<path fillRule="evenodd" clipRule="evenodd" d="M-4 0.199951V24.2H28V0.199951H-4Z" fill="white"/>
</mask>
<g mask="url(#mask0_475_20166)">
<path d="M-7.56323 22.4853L-0.521543 25.4634L28.1597 3.43776L31.874 -0.987722L24.344 -1.98308L12.6456 7.50839L3.22956 13.9034L-7.56323 22.4853Z" fill="white"/>
<path d="M-6.59924 24.5718L-3.01183 26.3L30.5402 -1.39889H25.5031L-6.59924 24.5718Z" fill="#F50100"/>
<path d="M31.5631 22.4853L24.5214 25.4634L-4.15982 3.43776L-7.87415 -0.987722L-0.344074 -1.98308L11.3543 7.50839L20.7703 13.9034L31.5631 22.4853Z" fill="white"/>
<path d="M31.3229 23.9827L27.7355 25.7109L13.4487 13.8516L9.21293 12.5266L-8.23151 -0.972633H-3.19436L14.2403 12.2062L18.8713 13.795L31.3229 23.9827Z" fill="#F50100"/>
<mask id="path-8-inside-1_475_20166" fill="white">
<path fillRule="evenodd" clipRule="evenodd" d="M15.7777 -1.80005H8.22215V8.19995H-5.97253V16.2H8.22215V26.2H15.7777V16.2H30.0275V8.19995H15.7777V-1.80005Z"/>
</mask>
<path fillRule="evenodd" clipRule="evenodd" d="M15.7777 -1.80005H8.22215V8.19995H-5.97253V16.2H8.22215V26.2H15.7777V16.2H30.0275V8.19995H15.7777V-1.80005Z" fill="#F50100"/>
<path d="M8.22215 -1.80005V-3.80005H6.22215V-1.80005H8.22215ZM15.7777 -1.80005H17.7777V-3.80005H15.7777V-1.80005ZM8.22215 8.19995V10.2H10.2222V8.19995H8.22215ZM-5.97253 8.19995V6.19995H-7.97253V8.19995H-5.97253ZM-5.97253 16.2H-7.97253V18.2H-5.97253V16.2ZM8.22215 16.2H10.2222V14.2H8.22215V16.2ZM8.22215 26.2H6.22215V28.2H8.22215V26.2ZM15.7777 26.2V28.2H17.7777V26.2H15.7777ZM15.7777 16.2V14.2H13.7777V16.2H15.7777ZM30.0275 16.2V18.2H32.0275V16.2H30.0275ZM30.0275 8.19995H32.0275V6.19995H30.0275V8.19995ZM15.7777 8.19995H13.7777V10.2H15.7777V8.19995ZM8.22215 0.199951H15.7777V-3.80005H8.22215V0.199951ZM10.2222 8.19995V-1.80005H6.22215V8.19995H10.2222ZM-5.97253 10.2H8.22215V6.19995H-5.97253V10.2ZM-3.97253 16.2V8.19995H-7.97253V16.2H-3.97253ZM8.22215 14.2H-5.97253V18.2H8.22215V14.2ZM10.2222 26.2V16.2H6.22215V26.2H10.2222ZM15.7777 24.2H8.22215V28.2H15.7777V24.2ZM13.7777 16.2V26.2H17.7777V16.2H13.7777ZM30.0275 14.2H15.7777V18.2H30.0275V14.2ZM28.0275 8.19995V16.2H32.0275V8.19995H28.0275ZM15.7777 10.2H30.0275V6.19995H15.7777V10.2ZM13.7777 -1.80005V8.19995H17.7777V-1.80005H13.7777Z" fill="white" mask="url(#path-8-inside-1_475_20166)"/>
</g>
</g>
<defs>
<clipPath id="clip0_475_20166">
<rect y="0.199951" width="24" height="24" rx="12" fill="white"/>
</clipPath>
</defs>
</svg>
);
}
export default Color_country_gb;

View file

@ -0,0 +1,39 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_country_in(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clipPath="url(#clip0_475_20156)">
<rect y="0.800049" width="24" height="24" rx="12" fill="#FFF7E6"/>
<path fillRule="evenodd" clipRule="evenodd" d="M-4 0.800049V24.8H28V0.800049H-4Z" fill="#F7FCFF"/>
<mask id="mask0_475_20156" maskUnits="userSpaceOnUse" x="-4" y="0" width="32" height="25">
<path fillRule="evenodd" clipRule="evenodd" d="M-4 0.800049V24.8H28V0.800049H-4Z" fill="white"/>
</mask>
<g mask="url(#mask0_475_20156)">
<path fillRule="evenodd" clipRule="evenodd" d="M-4 0.800049V8.80005H28V0.800049H-4Z" fill="#FF8C1A"/>
<path fillRule="evenodd" clipRule="evenodd" d="M-4 16.8V24.8H28V16.8H-4Z" fill="#5EAA22"/>
<path fillRule="evenodd" clipRule="evenodd" d="M8 12.8C8 15.0092 9.79086 16.8 12 16.8C14.2091 16.8 16 15.0092 16 12.8C16 10.5909 14.2091 8.80005 12 8.80005C9.79086 8.80005 8 10.5909 8 12.8ZM15 12.8C15 14.4569 13.6569 15.8 12 15.8C10.3431 15.8 9 14.4569 9 12.8C9 11.1432 10.3431 9.80005 12 9.80005C13.6569 9.80005 15 11.1432 15 12.8Z" fill="#3D58DB"/>
<path fillRule="evenodd" clipRule="evenodd" d="M11.9944 13.6608L11.4236 16.7813L11.7551 13.6263L10.3282 16.4597L11.5351 13.5259L9.36777 15.8424L11.3523 13.3675L8.62014 14.9796L11.2216 13.1641L8.14587 13.9411L11.1534 12.932L7.9834 12.8111L11.1534 12.6902L8.14587 11.6811L11.2216 12.4581L8.62014 10.6426L11.3523 12.2547L9.36777 9.77975L11.5351 12.0963L10.3282 9.16252L11.7551 11.9959L11.4236 8.84088L11.9944 11.9614L12.5653 8.84088L12.2338 11.9959L13.6607 9.16252L12.4538 12.0963L14.6211 9.77975L12.6366 12.2547L15.3688 10.6426L12.7673 12.4581L15.843 11.6811L12.8355 12.6902L16.0055 12.8111L12.8355 12.932L15.843 13.9411L12.7673 13.1641L15.3688 14.9796L12.6366 13.3675L14.6211 15.8424L12.4538 13.5259L13.6607 16.4597L12.2338 13.6263L12.5653 16.7813L11.9944 13.6608Z" fill="#3D58DB"/>
</g>
</g>
<defs>
<clipPath id="clip0_475_20156">
<rect y="0.800049" width="24" height="24" rx="12" fill="white"/>
</clipPath>
</defs>
</svg>
);
}
export default Color_country_in;

View file

@ -0,0 +1,39 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_country_us(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clipPath="url(#clip0_475_20146)">
<rect y="0.399902" width="24" height="24" rx="12" fill="#FFFBE6"/>
<path fillRule="evenodd" clipRule="evenodd" d="M-4 0.399902H28V24.3999H-4V0.399902Z" fill="#F7FCFF"/>
<path fillRule="evenodd" clipRule="evenodd" d="M-4 15.0667V17.0667H28V15.0667H-4Z" fill="#E31D1C"/>
<path fillRule="evenodd" clipRule="evenodd" d="M-4 18.7332V20.7332H28V18.7332H-4Z" fill="#E31D1C"/>
<path fillRule="evenodd" clipRule="evenodd" d="M-4 7.73315V9.73315H28V7.73315H-4Z" fill="#E31D1C"/>
<path fillRule="evenodd" clipRule="evenodd" d="M-4 22.3999V24.3999H28V22.3999H-4Z" fill="#E31D1C"/>
<path fillRule="evenodd" clipRule="evenodd" d="M-4 11.3999V13.3999H28V11.3999H-4Z" fill="#E31D1C"/>
<path fillRule="evenodd" clipRule="evenodd" d="M-4 0.399902V2.3999H28V0.399902H-4Z" fill="#E31D1C"/>
<path fillRule="evenodd" clipRule="evenodd" d="M-4 4.06665V6.06665H28V4.06665H-4Z" fill="#E31D1C"/>
<rect x="-4" y="0.399902" width="20" height="13" fill="#2E42A5"/>
<path fillRule="evenodd" clipRule="evenodd" d="M-2.27791 3.33861L-3.00379 3.8475L-2.75873 2.94189L-3.40344 2.36797H-2.56136L-2.27893 1.62891L-1.94775 2.36797H-1.2299L-1.79393 2.94189L-1.57557 3.8475L-2.27791 3.33861ZM1.72209 3.33861L0.996209 3.8475L1.24127 2.94189L0.596558 2.36797H1.43864L1.72107 1.62891L2.05225 2.36797H2.7701L2.20607 2.94189L2.42443 3.8475L1.72209 3.33861ZM4.99621 3.8475L5.72209 3.33861L6.42443 3.8475L6.20607 2.94189L6.7701 2.36797H6.05225L5.72107 1.62891L5.43864 2.36797H4.59656L5.24127 2.94189L4.99621 3.8475ZM9.72209 3.33861L8.99621 3.8475L9.24127 2.94189L8.59656 2.36797H9.43864L9.72107 1.62891L10.0522 2.36797H10.7701L10.2061 2.94189L10.4244 3.8475L9.72209 3.33861ZM-3.00379 7.8475L-2.27791 7.33861L-1.57557 7.8475L-1.79393 6.94189L-1.2299 6.36797H-1.94775L-2.27893 5.62891L-2.56136 6.36797H-3.40344L-2.75873 6.94189L-3.00379 7.8475ZM1.72209 7.33861L0.996209 7.8475L1.24127 6.94189L0.596558 6.36797H1.43864L1.72107 5.62891L2.05225 6.36797H2.7701L2.20607 6.94189L2.42443 7.8475L1.72209 7.33861ZM4.99621 7.8475L5.72209 7.33861L6.42443 7.8475L6.20607 6.94189L6.7701 6.36797H6.05225L5.72107 5.62891L5.43864 6.36797H4.59656L5.24127 6.94189L4.99621 7.8475ZM9.72209 7.33861L8.99621 7.8475L9.24127 6.94189L8.59656 6.36797H9.43864L9.72107 5.62891L10.0522 6.36797H10.7701L10.2061 6.94189L10.4244 7.8475L9.72209 7.33861ZM-3.00379 11.8475L-2.27791 11.3386L-1.57557 11.8475L-1.79393 10.9419L-1.2299 10.368H-1.94775L-2.27893 9.62891L-2.56136 10.368H-3.40344L-2.75873 10.9419L-3.00379 11.8475ZM1.72209 11.3386L0.996209 11.8475L1.24127 10.9419L0.596558 10.368H1.43864L1.72107 9.62891L2.05225 10.368H2.7701L2.20607 10.9419L2.42443 11.8475L1.72209 11.3386ZM4.99621 11.8475L5.72209 11.3386L6.42443 11.8475L6.20607 10.9419L6.7701 10.368H6.05225L5.72107 9.62891L5.43864 10.368H4.59656L5.24127 10.9419L4.99621 11.8475ZM9.72209 11.3386L8.99621 11.8475L9.24127 10.9419L8.59656 10.368H9.43864L9.72107 9.62891L10.0522 10.368H10.7701L10.2061 10.9419L10.4244 11.8475L9.72209 11.3386ZM12.9962 3.8475L13.7221 3.33861L14.4244 3.8475L14.2061 2.94189L14.7701 2.36797H14.0522L13.7211 1.62891L13.4386 2.36797H12.5966L13.2413 2.94189L12.9962 3.8475ZM13.7221 7.33861L12.9962 7.8475L13.2413 6.94189L12.5966 6.36797H13.4386L13.7211 5.62891L14.0522 6.36797H14.7701L14.2061 6.94189L14.4244 7.8475L13.7221 7.33861ZM12.9962 11.8475L13.7221 11.3386L14.4244 11.8475L14.2061 10.9419L14.7701 10.368H14.0522L13.7211 9.62891L13.4386 10.368H12.5966L13.2413 10.9419L12.9962 11.8475ZM-0.277911 5.33861L-1.00379 5.8475L-0.758726 4.94189L-1.40344 4.36797H-0.561355L-0.278926 3.62891L0.0522454 4.36797H0.770102L0.206065 4.94189L0.424427 5.8475L-0.277911 5.33861ZM2.99621 5.8475L3.72209 5.33861L4.42443 5.8475L4.20607 4.94189L4.7701 4.36797H4.05225L3.72107 3.62891L3.43864 4.36797H2.59656L3.24127 4.94189L2.99621 5.8475ZM7.72209 5.33861L6.99621 5.8475L7.24127 4.94189L6.59656 4.36797H7.43864L7.72107 3.62891L8.05225 4.36797H8.7701L8.20607 4.94189L8.42443 5.8475L7.72209 5.33861ZM-1.00379 9.8475L-0.277911 9.33861L0.424427 9.8475L0.206065 8.94189L0.770102 8.36797H0.0522454L-0.278926 7.62891L-0.561355 8.36797H-1.40344L-0.758726 8.94189L-1.00379 9.8475ZM3.72209 9.33861L2.99621 9.8475L3.24127 8.94189L2.59656 8.36797H3.43864L3.72107 7.62891L4.05225 8.36797H4.7701L4.20607 8.94189L4.42443 9.8475L3.72209 9.33861ZM6.99621 9.8475L7.72209 9.33861L8.42443 9.8475L8.20607 8.94189L8.7701 8.36797H8.05225L7.72107 7.62891L7.43864 8.36797H6.59656L7.24127 8.94189L6.99621 9.8475ZM11.7221 5.33861L10.9962 5.8475L11.2413 4.94189L10.5966 4.36797H11.4386L11.7211 3.62891L12.0522 4.36797H12.7701L12.2061 4.94189L12.4244 5.8475L11.7221 5.33861ZM10.9962 9.8475L11.7221 9.33861L12.4244 9.8475L12.2061 8.94189L12.7701 8.36797H12.0522L11.7211 7.62891L11.4386 8.36797H10.5966L11.2413 8.94189L10.9962 9.8475Z" fill="#F7FCFF"/>
</g>
<defs>
<clipPath id="clip0_475_20146">
<rect y="0.399902" width="24" height="24" rx="12" fill="white"/>
</clipPath>
</defs>
</svg>
);
}
export default Color_country_us;

View file

@ -0,0 +1,23 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_device_desktop(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32">
<rect width="32" height="32" rx="10" fill="#E2E4F6"/>
<path d="M23 8H9C7.89543 8 7 8.89543 7 10V18C7 19.1046 7.89543 20 9 20H23C24.1046 20 25 19.1046 25 18V10C25 8.89543 24.1046 8 23 8Z" stroke="black" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M6 24H26" stroke="black" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
);
}
export default Color_device_desktop;

View file

@ -0,0 +1,35 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_device_mobile(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32">
<rect width="32" height="32" rx="10" fill="url(#paint0_linear_451_13943)"/>
<g clipPath="url(#clip0_451_13943)">
<path d="M20.875 6H11.125C10.2275 6 9.5 6.89543 9.5 8V24C9.5 25.1046 10.2275 26 11.125 26H20.875C21.7725 26 22.5 25.1046 22.5 24V8C22.5 6.89543 21.7725 6 20.875 6Z" stroke="black" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M14.5 9.03186H17.5" stroke="black" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"/>
</g>
<defs>
<linearGradient id="paint0_linear_451_13943" x1="16" y1="0" x2="16" y2="32" gradientUnits="userSpaceOnUse">
<stop stopColor="#E2E4F6"/>
<stop offset="0.415" stopColor="#FFF0F8"/>
<stop offset="1" stopColor="#FDFAC4" stop-opacity="0.8"/>
</linearGradient>
<clipPath id="clip0_451_13943">
<rect width="15" height="22" fill="white" transform="translate(8.5 5)"/>
</clipPath>
</defs>
</svg>
);
}
export default Color_device_mobile;

View file

@ -0,0 +1,30 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_device_other_phone(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0.5 0 32 32">
<rect x="0.5" width="32" height="32" rx="10" fill="#E5F6E2"/>
<g clipPath="url(#clip0_451_13942)">
<path d="M21.375 6H11.625C10.7275 6 10 6.89543 10 8V24C10 25.1046 10.7275 26 11.625 26H21.375C22.2725 26 23 25.1046 23 24V8C23 6.89543 22.2725 6 21.375 6Z" stroke="black" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M16.38 9.03186H16.62" stroke="black" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"/>
</g>
<defs>
<clipPath id="clip0_451_13942">
<rect width="15" height="22" fill="white" transform="translate(9 5)"/>
</clipPath>
</defs>
</svg>
);
}
export default Color_device_other_phone;

View file

@ -0,0 +1,23 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_device_tablet(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32">
<rect width="32" height="32" rx="10" fill="#E2F1F6"/>
<path d="M26 10V22C26 23.1046 25.1046 24 24 24H8C6.89543 24 6 23.1046 6 22V10C6 8.89543 6.89543 8 8 8L24 8C25.1046 8 26 8.89543 26 10Z" stroke="black" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M10 16V15.99" stroke="black" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
);
}
export default Color_device_tablet;

View file

@ -0,0 +1,25 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_device_unkown(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32">
<rect width="32" height="32" rx="10" fill="#FFEEEE"/>
<path d="M22 12V10C22 9.46957 21.7893 8.96086 21.4142 8.58579C21.0391 8.21071 20.5304 8 20 8H8C7.46957 8 6.96086 8.21071 6.58579 8.58579C6.21071 8.96086 6 9.46957 6 10V17C6 17.5304 6.21071 18.0391 6.58579 18.4142C6.96086 18.7893 7.46957 19 8 19H16" stroke="black" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M14 23V19.04V22.19" stroke="black" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M11 23H16" stroke="black" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M24 16H22C20.8954 16 20 16.8954 20 18V24C20 25.1046 20.8954 26 22 26H24C25.1046 26 26 25.1046 26 24V18C26 16.8954 25.1046 16 24 16Z" stroke="black" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
);
}
export default Color_device_unkown;

View file

@ -0,0 +1,24 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_os_android(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="5 3 22 26">
<path fillRule="evenodd" clipRule="evenodd" d="M12.5915 3.88444C13.6002 3.32107 14.7626 3 16 3C17.2374 3 18.3998 3.32107 19.4085 3.88444L20.1464 3.14645C20.3417 2.95118 20.6583 2.95118 20.8536 3.14645C21.0488 3.34171 21.0488 3.65829 20.8536 3.85355L20.2612 4.44595C21.9266 5.72558 23 7.73743 23 10H9C9 7.73743 10.0734 5.72558 11.7388 4.44595L11.1464 3.85355C10.9512 3.65829 10.9512 3.34171 11.1464 3.14645C11.3417 2.95118 11.6583 2.95118 11.8536 3.14645L12.5915 3.88444ZM14 7C14 7.55228 13.5523 8 13 8C12.4477 8 12 7.55228 12 7C12 6.44772 12.4477 6 13 6C13.5523 6 14 6.44772 14 7ZM19 8C19.5523 8 20 7.55228 20 7C20 6.44772 19.5523 6 19 6C18.4477 6 18 6.44772 18 7C18 7.55228 18.4477 8 19 8Z" fill="#87C527"/>
<path d="M5 12.5C5 11.6716 5.67157 11 6.5 11C7.32843 11 8 11.6716 8 12.5V18.5C8 19.3284 7.32843 20 6.5 20C5.67157 20 5 19.3284 5 18.5V12.5Z" fill="#87C527"/>
<path d="M12 24V27.5C12 28.3284 12.6716 29 13.5 29C14.3284 29 15 28.3284 15 27.5V24H17V27.5C17 28.3284 17.6716 29 18.5 29C19.3284 29 20 28.3284 20 27.5V24H21C22.1046 24 23 23.1046 23 22V11H9V22C9 23.1046 9.89543 24 11 24H12Z" fill="#87C527"/>
<path d="M24 12.5C24 11.6716 24.6716 11 25.5 11C26.3284 11 27 11.6716 27 12.5V18.5C27 19.3284 26.3284 20 25.5 20C24.6716 20 24 19.3284 24 18.5V12.5Z" fill="#87C527"/>
</svg>
);
}
export default Color_os_android;

View file

@ -0,0 +1,22 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_os_apple(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M30 16C30 23.728 23.735 30 16 30C8.265 30 2 23.728 2 16C2 8.265 8.265 2 16 2C23.735 2 30 8.265 30 16Z" fill="#283544"/>
<path d="M22.5621 12.4574C22.4857 12.502 20.6671 13.4425 20.6671 15.5279C20.7528 17.9061 22.9621 18.7401 23 18.7401C22.9621 18.7847 22.6665 19.8763 21.7907 21.0205C21.0956 22.0062 20.3242 23 19.1528 23C18.0385 23 17.6385 22.3431 16.3528 22.3431C14.972 22.3431 14.5813 23 13.5242 23C12.3528 23 11.5242 21.953 10.7913 20.9766C9.8391 19.6986 9.02978 17.6931 9.00121 15.7675C8.98195 14.7471 9.19189 13.744 9.72481 12.8921C10.477 11.7026 11.8198 10.8952 13.2863 10.8686C14.4099 10.8333 15.4099 11.5875 16.0956 11.5875C16.7528 11.5875 17.9814 10.8686 19.3714 10.8686C19.9714 10.8692 21.5714 11.0376 22.5621 12.4574ZM16.0006 10.6649C15.8006 9.73303 16.3528 8.80119 16.8671 8.20677C17.5242 7.48792 18.5621 7 19.4571 7C19.5143 7.93185 19.1522 8.84575 18.505 9.51136C17.9242 10.2302 16.9242 10.7714 16.0006 10.6649Z" fill="white"/>
</svg>
);
}
export default Color_os_apple;

View file

@ -0,0 +1,28 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_os_blackberry(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M30 16C30 23.728 23.735 30 16 30C8.265 30 2 23.728 2 16C2 8.265 8.265 2 16 2C23.735 2 30 8.265 30 16Z" fill="#1D1D1D"/>
<path d="M8.95479 8L7.97739 12H11.3381C12.2351 12 13.017 11.3754 13.2345 10.4851C13.543 9.22278 12.6098 8 11.3381 8H8.95479Z" fill="white"/>
<path d="M7.97739 14L7 18H10.3607C11.2577 18 12.0396 17.3754 12.2571 16.4851C12.5656 15.2228 11.6325 14 10.3607 14H7.97739Z" fill="white"/>
<path d="M13.8418 18L14.8192 14H17.2025C18.4742 14 19.4073 15.2228 19.0989 16.4851C18.8814 17.3754 18.0995 18 17.2025 18H13.8418Z" fill="white"/>
<path d="M13.8418 20L12.8644 24H16.2251C17.1221 24 17.904 23.3754 18.1215 22.4851C18.43 21.2228 17.4968 20 16.2251 20H13.8418Z" fill="white"/>
<path d="M23.0669 22H19.7061L20.6835 18H23.0669C24.3386 18 25.2717 19.2228 24.9633 20.4851C24.7457 21.3754 23.9638 22 23.0669 22Z" fill="white"/>
<path d="M21.6609 12L20.6835 16H24.0442C24.9412 16 25.7231 15.3754 25.9407 14.4851C26.2491 13.2228 25.316 12 24.0442 12H21.6609Z" fill="white"/>
<path d="M14.8192 12L15.7966 8H18.1799C19.4516 8 20.3847 9.22278 20.0763 10.4851C19.8588 11.3754 19.0769 12 18.1799 12H14.8192Z" fill="white"/>
</svg>
);
}
export default Color_os_blackberry;

View file

@ -0,0 +1,34 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_os_chrome_os(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2.04 2 28 28">
<path d="M16.0007 2.00385C16.0007 2.00385 24.2529 1.63486 28.628 9.89993H15.2985C15.2985 9.89993 12.783 9.81914 10.6342 12.86C10.0169 14.1363 9.35338 15.451 10.098 18.0421C9.02535 16.2314 4.4035 8.21237 4.4035 8.21237C4.4035 8.21237 7.6635 2.3306 16.0006 2.00385H16.0007Z" fill="#EF3F36"/>
<path d="M28.1996 22.9857C28.1996 22.9857 24.3917 30.2935 15.0246 29.9322C16.182 27.937 21.6911 18.4302 21.6911 18.4302C21.6911 18.4302 23.0222 16.3005 21.452 12.9253C20.6533 11.7528 19.8392 10.5265 17.2159 9.87293C19.3263 9.85383 28.6047 9.87293 28.6047 9.87293C28.6047 9.87293 32.0807 15.6278 28.1996 22.9857Z" fill="#FCD900"/>
<path d="M3.85937 23.0434C3.85937 23.0434 -0.588931 16.1045 4.41101 8.20074C5.56459 10.1959 11.0738 19.7027 11.0738 19.7027C11.0738 19.7027 12.2621 21.9171 15.9773 22.2475C17.3933 22.1438 18.867 22.0554 20.7498 20.1217C19.7118 21.9517 15.0551 29.9476 15.0551 29.9476C15.0551 29.9476 8.3114 30.0707 3.85926 23.0434H3.85937Z" fill="#61BC5B"/>
<path d="M15.0208 30.0014L16.8957 22.2053C16.8957 22.2053 18.9559 22.0438 20.6844 20.1563C19.6118 22.0362 15.0208 30.0014 15.0208 30.0014Z" fill="#5AB055"/>
<path d="M9.71985 16.089C9.71985 12.6524 12.517 9.8653 15.9659 9.8653C19.4149 9.8653 22.212 12.6524 22.212 16.089C22.212 19.5258 19.4149 22.3128 15.9659 22.3128C12.517 22.309 9.71985 19.5258 9.71985 16.089Z" fill="white"/>
<path d="M10.7653 16.0891C10.7653 13.229 13.0918 10.9071 15.966 10.9071C18.8363 10.9071 21.1666 13.2252 21.1666 16.0891C21.1666 18.9493 18.8403 21.2712 15.966 21.2712C13.0956 21.2712 10.7653 18.9493 10.7653 16.0891Z" fill="url(#paint0_linear_1_13608)"/>
<path d="M28.6008 9.87685L20.881 12.1334C20.881 12.1334 19.7159 10.4303 17.2121 9.87685C19.3841 9.86528 28.6008 9.87685 28.6008 9.87685Z" fill="#EACA05"/>
<path d="M9.94753 17.7577C8.86331 15.8855 4.4035 8.21234 4.4035 8.21234L10.1211 13.848C10.1211 13.848 9.53459 15.0513 9.75459 16.7735L9.94742 17.7577H9.94753Z" fill="#DF3A32"/>
<defs>
<linearGradient id="paint0_linear_1_13608" x1="15.9657" y1="10.9802" x2="15.9657" y2="20.9593" gradientUnits="userSpaceOnUse">
<stop stopColor="#86BBE5"/>
<stop offset="1" stopColor="#1072BA"/>
</linearGradient>
</defs>
</svg>
);
}
export default Color_os_chrome_os;

View file

@ -0,0 +1,21 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_os_elementary(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M16 2C8.26945 2 2 8.26945 2 16C2 23.7305 8.26945 30 16 30C23.7305 30 30 23.7305 30 16C30 8.26945 23.7305 2 16 2ZM15.9745 3.33509H15.9771C15.9847 3.33608 15.9924 3.33608 16 3.33509C21.7884 3.33509 26.6705 7.21945 28.18 12.5204C26.8819 15.1893 25.0581 17.5685 22.818 19.5153C21.74 20.4482 20.5615 21.2755 19.2671 21.8596C17.9715 22.4425 16.5485 22.7747 15.1345 22.6945C14.1248 22.6341 13.1396 22.3595 12.2442 21.8889C14.6962 20.5438 16.8855 18.7675 18.7071 16.6453C19.9238 15.2249 20.9865 13.6035 21.3989 11.7669C21.6089 10.848 21.6407 9.88327 21.4498 8.958C21.2636 8.02347 20.8237 7.15824 20.1784 6.45709C19.5336 5.78467 18.7171 5.30142 17.8175 5.05964C16.9231 4.82153 15.9866 4.7876 15.0773 4.96036C13.2662 5.29255 11.6498 6.34255 10.3618 7.64327C8.08745 9.93418 6.68364 13.1669 6.942 16.3933C7.07182 18.0058 7.60891 19.5891 8.53545 20.9165C8.71745 21.1775 8.91982 21.4231 9.12982 21.6598C7.85448 22.1009 6.53898 22.4159 5.20218 22.6004C4.02929 20.6835 3.38784 18.4889 3.34374 16.242C3.29964 13.9952 3.85447 11.7771 4.95124 9.81567C6.048 7.85422 7.64716 6.22009 9.58445 5.08117C11.5217 3.94225 13.7273 3.33958 15.9745 3.33509ZM16.0636 5.906C16.0687 5.90473 16.084 5.90855 16.0789 5.90727C16.9596 5.90727 17.8442 6.17582 18.5429 6.70527C19.1712 7.19131 19.6437 7.85048 19.9022 8.60164C20.1617 9.3568 20.2452 10.1613 20.1465 10.9536C19.9645 12.5356 19.1665 13.9929 18.1955 15.272C16.4722 17.5349 14.1787 19.3485 11.6295 20.6175C11.3876 20.7384 11.1382 20.8555 10.8887 20.9662C10.3561 20.4936 9.90466 19.9368 9.55236 19.318C8.80145 17.9893 8.55455 16.4111 8.69964 14.8864C8.84727 13.3604 9.36909 11.8878 10.0767 10.5209C10.8951 8.93764 12.0062 7.44345 13.5538 6.58818C14.3205 6.15399 15.1839 5.919 16.0649 5.90473L16.0636 5.906ZM28.5745 14.5733C28.628 15.0404 28.6649 15.5138 28.6649 15.9949C28.6649 22.9911 22.9987 28.6624 16.0013 28.6624C14.1609 28.663 12.3427 28.2613 10.674 27.4852C9.00533 26.7091 7.52653 25.5775 6.34127 24.1696C7.72478 23.8451 9.07536 23.3935 10.3758 22.8205C10.9625 23.2609 11.6065 23.6275 12.2938 23.8896C14.3175 24.666 16.6109 24.5515 18.6524 23.8451C20.6925 23.1387 22.4973 21.8736 24.0691 20.4024C25.8712 18.7112 27.3921 16.7435 28.5745 14.5733Z" fill="black"/>
</svg>
);
}
export default Color_os_elementary;

View file

@ -0,0 +1,23 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_os_fedora(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M30 16.0004C30 8.26828 23.7318 2 15.9998 2C8.27112 2 2.00547 8.26303 2 15.9906V26.8246C2.00416 28.5792 3.42723 29.9997 5.18292 29.9997H16.0055C23.735 29.9966 30 23.7305 30 16.0004Z" fill="#294172"/>
<path d="M20.1103 5.31482C16.489 5.31482 13.5429 8.26083 13.5429 11.8822V15.368H10.0715C6.45024 15.368 3.50412 18.3143 3.50412 21.9356C3.50412 25.5567 6.45024 28.503 10.0715 28.503C13.6928 28.503 16.639 25.5567 16.639 21.9356V18.4497H20.1103C23.7316 18.4497 26.6778 15.5035 26.6778 11.8822C26.6778 8.26083 23.7316 5.31482 20.1103 5.31482ZM13.5672 21.9356C13.5672 23.863 11.9991 25.4311 10.0715 25.4311C8.14403 25.4311 6.57592 23.863 6.57592 21.9356C6.57592 20.008 8.14403 18.4399 10.0715 18.4399H13.5429V18.4497H13.5672V21.9356ZM20.1103 15.3779H16.639V15.368H16.6148V11.8822C16.6148 9.95473 18.1829 8.38662 20.1103 8.38662C22.0377 8.38662 23.6059 9.95473 23.6059 11.8822C23.6059 13.8098 22.0377 15.3779 20.1103 15.3779Z" fill="#3C6EB4"/>
<path d="M21.5618 5.51395C21.0521 5.38073 20.6608 5.3186 20.1103 5.3186C16.4816 5.3186 13.5396 8.26068 13.5396 11.8892V15.3719H10.7877C9.92969 15.3719 9.23625 16.0462 9.2368 16.9027C9.2368 17.7539 9.92258 18.431 10.7715 18.431L13.0499 18.4315C13.3204 18.4315 13.5398 18.6502 13.5398 18.9203V21.9339C13.5364 23.8469 11.9846 25.3966 10.0715 25.3966C9.4235 25.3966 9.26305 25.3117 8.82063 25.3117C7.89127 25.3117 7.26947 25.9347 7.26947 26.7913C7.26969 27.5 7.87694 28.1092 8.62003 28.3036C9.12972 28.4369 9.52106 28.4991 10.0715 28.4991C13.7003 28.4991 16.6423 25.557 16.6423 21.9284V18.4458H19.3941C20.2522 18.4458 20.9456 17.7715 20.9451 16.915C20.9451 16.0637 20.2593 15.3867 19.4103 15.3867L17.1319 15.3862C17.0021 15.3864 16.8776 15.3349 16.7857 15.2432C16.6939 15.1516 16.6422 15.0271 16.642 14.8973V11.8837C16.6454 9.97065 18.1972 8.42103 20.1103 8.42103C20.7584 8.42103 20.9188 8.50601 21.3612 8.50601C22.2906 8.50601 22.9124 7.8829 22.9124 7.02639C22.9122 6.31763 22.3049 5.70842 21.5618 5.51395Z" fill="white"/>
</svg>
);
}
export default Color_os_fedora;

View file

@ -0,0 +1,24 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_os_freebsd(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="2 2 28 28">
<path d="M30 16C30 23.728 23.735 30 16 30C8.265 30 2 23.728 2 16C2 8.265 8.265 2 16 2C23.735 2 30 8.265 30 16Z" fill="white"/>
<path d="M24.794 7.30726C25.7482 8.27592 23.103 12.5338 22.6558 12.9883C22.2087 13.4418 21.0729 13.0245 20.1191 12.0556C19.165 11.087 18.7539 9.93313 19.2011 9.47894C19.6481 9.02452 23.8401 6.33814 24.794 7.30726Z" fill="#B5010F"/>
<path d="M11.4138 8.33211C9.95717 7.49263 7.88438 6.55887 7.22499 7.22859C6.5569 7.90693 7.50995 10.0596 8.34518 11.5418C9.08847 10.2293 10.1457 9.12445 11.4138 8.33211Z" fill="#B5010F"/>
<path d="M17.4444 8.4444C17.8888 8 18.9275 8.16967 18.9275 8.16967L19.0373 7.87902C19.0373 7.87902 18 7.40628 16.2291 7.40628C11.4455 7.40628 7.56752 11.3444 7.56752 16.2034C7.56752 21.0614 11.4455 25 16.2291 25C21.0126 25 24.8904 21.0614 24.8904 16.2034C24.8904 14.9915 24.6485 13.838 24.2121 12.7879C23.9966 13.5113 23.8309 13.768 23.2994 14.2994C22.5017 15.0972 20.5443 14.4331 18.9275 12.8163C17.3107 11.1995 16.6467 9.24212 17.4444 8.4444Z" fill="#B5010F"/>
</svg>
);
}
export default Color_os_freebsd;

View file

@ -0,0 +1,21 @@
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Color_os_gnome(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="5 2 22 28">
<path fillRule="evenodd" clipRule="evenodd" d="M9.92295 19.1596C10.1099 20.7686 10.3768 21.9836 10.9573 23.4163C11.5375 24.8485 12.8173 26.7633 14.3785 27.9028C15.9397 29.0418 18.4862 30.1058 20.2077 29.9916C21.9291 29.8777 22.6963 29.2416 23.4882 28.4359C24.2796 27.6302 26.0593 25.1779 26.6796 22.8878C27.3003 20.5982 26.9131 19.7946 26.4136 19.1302C25.9145 18.4658 24.7883 18.0148 23.2513 18.1322C21.7143 18.2497 20.0539 19.2032 19.9594 19.9912C19.8133 21.2092 22.0816 21.3775 21.7143 22.4474C21.5667 22.8783 21.0169 23.2253 19.5574 23.1812C18.0979 23.1376 16.5003 22.4287 16.1289 21.3026C15.7575 20.1765 15.9198 19.1419 16.7085 18.5958C20.0393 16.29 21.1507 14.3906 21.3692 13.5268C21.5877 12.663 21.2458 11.6504 20.3816 10.874C18.5259 9.20692 14.794 9.95197 12.9843 11.2344C10.2984 13.1383 9.56225 16.0568 9.92295 19.1596ZM14.305 3.41756C13.9943 4.11836 13.5847 5.58187 13.9979 6.78901C14.4113 7.99616 15.9751 9.36286 17.695 9.04395C19.4147 8.72483 19.362 6.04055 19.0249 4.87596C18.7199 3.82306 17.185 2.09042 16.1128 2.00617C15.0406 1.92192 14.616 2.71633 14.305 3.41756ZM9.25489 7.55853C10.2618 9.03182 11.8365 9.26202 12.6359 8.9897C13.4352 8.71717 13.0897 6.49201 12.6082 5.46996C12.0066 4.19346 10.6039 4.07623 9.78758 4.49216C8.9713 4.90766 8.2482 6.08523 9.25489 7.55853ZM6.66963 8.61207C5.60554 8.97949 5.9129 11.1834 6.52869 12.0588C7.14427 12.9343 8.98501 13.4196 9.69441 12.6299C10.404 11.8401 9.52049 10.2783 9.09404 9.77305C8.66758 9.26734 7.73372 8.24465 6.66963 8.61207ZM5.08913 14.1219C5.39092 13.4332 6.78058 13.5019 7.82304 14.1015C9.13687 14.8574 9.1902 16.7536 8.4157 17.0629C7.78941 17.3131 6.67948 17.1512 5.98637 16.6021C5.29325 16.053 4.78734 14.8103 5.08913 14.1219Z" fill="black"/>
</svg>
);
}
export default Color_os_gnome;

Some files were not shown because too many files have changed in this diff Show more