Merged in feat/SW-1737-design-mystay-multiroom (pull request #1565)
Feat/SW-1737 design mystay multiroom * feat(SW-1737) Fixed member view of guest details * feat(SW-1737) fix merge issues * feat(SW-1737) Fixed price details * feat(SW-1737) removed unused imports * feat(SW-1737) removed true as statement * feat(SW-1737) updated store handling * feat(SW-1737) fixed bug showing double numbers * feat(SW-1737) small design fixed * feat(SW-1737) fixed rebase errors * feat(SW-1737) fixed create booking error with dates * feat(SW-1737) fixed view multiroom as singleroom * feat(SW-1737) fixes for multiroom * feat(SW-1737) fixed bookingsummary * feat(SW-1737) dont hide modify dates * feat(SW-1737) updated breakfast to handle number * feat(SW-1737) Added red color if member rate * feat(SW-1737) fix PR comments * feat(SW-1737) updated member tiers svg * feat(SW-1737) updated how to handle paymentMethodDescription * feat(SW-1737) fixes after testing mystay * feat(SW-1737) updated Room type to just use whats used * feat(SW-1737) fixed access * feat(SW-1737) refactor my stay after PR comments * feat(SW-1737) fix roomNumber translation * feat(SW-1737) removed log Approved-by: Arvid Norlin
This commit is contained in:
@@ -6,7 +6,7 @@ import { MyStaySkeleton } from "@/components/HotelReservation/MyStay/myStaySkele
|
||||
|
||||
import type { LangParams, PageArgs } from "@/types/params"
|
||||
|
||||
export default async function MyStayPage({
|
||||
export default function MyStayPage({
|
||||
searchParams,
|
||||
}: PageArgs<LangParams, { RefId?: string }>) {
|
||||
if (!searchParams.RefId) {
|
||||
|
||||
@@ -3,6 +3,7 @@ import { Suspense } from "react"
|
||||
|
||||
import Blocks from "@/components/Blocks"
|
||||
import Hero from "@/components/Hero"
|
||||
import MeetingPackageWidget from "@/components/MeetingPackageWidget"
|
||||
import Sidebar from "@/components/Sidebar"
|
||||
import SidebarSkeleton from "@/components/Sidebar/SidebarSkeleton"
|
||||
import Button from "@/components/TempDesignSystem/Button"
|
||||
@@ -15,7 +16,6 @@ import { staticPageVariants } from "./variants"
|
||||
|
||||
import styles from "./staticPage.module.css"
|
||||
|
||||
import MeetingPackageWidget from "@/components/MeetingPackageWidget"
|
||||
import type { StaticPageProps } from "./staticPage"
|
||||
|
||||
export default async function StaticPage({
|
||||
|
||||
@@ -5,7 +5,6 @@ import { useIntl } from "react-intl"
|
||||
import { Lang } from "@/constants/languages"
|
||||
import { dt } from "@/lib/dt"
|
||||
|
||||
import { CloseLargeIcon } from "@/components/Icons"
|
||||
import Button from "@/components/TempDesignSystem/Button"
|
||||
import Body from "@/components/TempDesignSystem/Text/Body"
|
||||
import Subtitle from "@/components/TempDesignSystem/Text/Subtitle"
|
||||
@@ -38,11 +37,6 @@ export default function DatePickerSingleMobile({
|
||||
|
||||
return (
|
||||
<div className={`${styles.container} ${hideHeader ? styles.noHeader : ""}`}>
|
||||
<header className={styles.header}>
|
||||
<button className={styles.close} onClick={close} type="button">
|
||||
<CloseLargeIcon />
|
||||
</button>
|
||||
</header>
|
||||
<DayPicker
|
||||
classNames={{
|
||||
...classNames,
|
||||
|
||||
@@ -10,6 +10,11 @@
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.titleText {
|
||||
color: var(--Scandic-Brand-Burgundy);
|
||||
}
|
||||
|
||||
.ancillaries {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
import { Typography } from "@scandic-hotels/design-system/Typography"
|
||||
|
||||
import Image from "@/components/Image"
|
||||
import Link from "@/components/TempDesignSystem/Link"
|
||||
import Body from "@/components/TempDesignSystem/Text/Body"
|
||||
import Caption from "@/components/TempDesignSystem/Text/Caption"
|
||||
|
||||
import styles from "./summaryCard.module.css"
|
||||
|
||||
interface SummaryCardProps {
|
||||
title: string
|
||||
title: React.ReactNode
|
||||
image: {
|
||||
src: string
|
||||
alt: string
|
||||
@@ -36,25 +36,28 @@ export default function SummaryCard({
|
||||
<Image src={image.src} alt={image.alt} width={152} height={152} />
|
||||
</div>
|
||||
<div className={styles.content}>
|
||||
<div className={styles.topContent}>
|
||||
<Body textTransform="bold" color="uiTextHighContrast">
|
||||
{title}
|
||||
</Body>
|
||||
<div>
|
||||
{title}
|
||||
{texts.map((text) => (
|
||||
<Body color="uiTextHighContrast" key={text}>
|
||||
{text}
|
||||
</Body>
|
||||
<Typography variant="Body/Paragraph/mdRegular" key={text}>
|
||||
<p>{text}</p>
|
||||
</Typography>
|
||||
))}
|
||||
</div>
|
||||
{supportingText && (
|
||||
<Caption color="uiTextPlaceholder">{supportingText}</Caption>
|
||||
<Typography variant="Body/Supporting text (caption)/smRegular">
|
||||
<p className={styles.supportingText}>{supportingText}</p>
|
||||
</Typography>
|
||||
)}
|
||||
<div className={styles.bottomContent}>
|
||||
{chip}
|
||||
{links && (
|
||||
<div className={styles.links}>
|
||||
{links.map((link) => (
|
||||
<Caption asChild type="bold" color="burgundy" key={link.href}>
|
||||
<Typography
|
||||
variant="Body/Supporting text (caption)/smBold"
|
||||
key={link.href}
|
||||
>
|
||||
<Link
|
||||
href={link.href}
|
||||
target="_blank"
|
||||
@@ -65,7 +68,7 @@ export default function SummaryCard({
|
||||
{link.icon}
|
||||
{link.text}
|
||||
</Link>
|
||||
</Caption>
|
||||
</Typography>
|
||||
))}
|
||||
</div>
|
||||
)}
|
||||
|
||||
@@ -5,34 +5,18 @@
|
||||
gap: var(--Spacing-x2);
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.card {
|
||||
align-items: flex-start;
|
||||
flex-direction: row;
|
||||
}
|
||||
}
|
||||
|
||||
.image {
|
||||
width: 152px;
|
||||
height: 152px;
|
||||
|
||||
border-radius: var(--Corner-radius-Medium);
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.image {
|
||||
background-color: var(--Base-Surface-Secondary-light-Normal);
|
||||
}
|
||||
}
|
||||
|
||||
.content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.topContent {
|
||||
margin-bottom: 10px;
|
||||
text-align: center;
|
||||
gap: var(--Spacing-x1);
|
||||
}
|
||||
|
||||
.bottomContent {
|
||||
@@ -50,3 +34,22 @@
|
||||
align-items: center;
|
||||
gap: var(--Spacing-x-half);
|
||||
}
|
||||
|
||||
.supportingText {
|
||||
color: var(--UI-Text-Placeholder);
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.card {
|
||||
align-items: flex-start;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.image {
|
||||
background-color: var(--Base-Surface-Secondary-light-Normal);
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--Spacing-x5);
|
||||
padding: var(--Spacing-x2);
|
||||
}
|
||||
|
||||
.bookingSummaryContent {
|
||||
@@ -10,13 +11,26 @@
|
||||
gap: 80px;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.bookingSummaryContent {
|
||||
flex-direction: row;
|
||||
}
|
||||
}
|
||||
|
||||
.toast {
|
||||
width: var(--max-width-content);
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.title {
|
||||
color: var(--Scandic-Brand-Burgundy);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.bookingSummary {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.bookingSummaryContent {
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.title {
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,12 @@
|
||||
"use client"
|
||||
|
||||
import { useEffect } from "react"
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import { Typography } from "@scandic-hotels/design-system/Typography"
|
||||
|
||||
import { CancellationRuleEnum } from "@/constants/booking"
|
||||
import { dt } from "@/lib/dt"
|
||||
import { useMyStayRoomDetailsStore } from "@/stores/my-stay/myStayRoomDetailsStore"
|
||||
|
||||
import {
|
||||
CheckCircleIcon,
|
||||
@@ -13,120 +16,107 @@ import {
|
||||
} from "@/components/Icons"
|
||||
import CrossCircleIcon from "@/components/Icons/CrossCircle"
|
||||
import IconChip from "@/components/TempDesignSystem/IconChip"
|
||||
import Body from "@/components/TempDesignSystem/Text/Body"
|
||||
import Caption from "@/components/TempDesignSystem/Text/Caption"
|
||||
import Subtitle from "@/components/TempDesignSystem/Text/Subtitle"
|
||||
import { Toast } from "@/components/TempDesignSystem/Toasts"
|
||||
import useLang from "@/hooks/useLang"
|
||||
import { formatPrice } from "@/utils/numberFormatting"
|
||||
import { trackMyStayPageLink } from "@/utils/tracking"
|
||||
|
||||
import { useMyStayRoomDetailsStore } from "../stores/myStayRoomDetailsStore"
|
||||
import { useMyStayTotalPriceStore } from "../stores/myStayTotalPrice"
|
||||
import { formatChildBedPreferences } from "../utils"
|
||||
import TotalPrice from "../Rooms/TotalPrice"
|
||||
import SummaryCard from "./SummaryCard"
|
||||
|
||||
import styles from "./bookingSummary.module.css"
|
||||
|
||||
import type { Hotel, Room } from "@/types/hotel"
|
||||
import type { BookingConfirmation } from "@/types/trpc/routers/booking/confirmation"
|
||||
import type { Hotel } from "@/types/hotel"
|
||||
|
||||
interface BookingSummaryProps {
|
||||
booking: BookingConfirmation["booking"]
|
||||
hotel: Hotel
|
||||
room: Room | null
|
||||
}
|
||||
|
||||
export default function BookingSummary({
|
||||
booking,
|
||||
hotel,
|
||||
room,
|
||||
}: BookingSummaryProps) {
|
||||
export default function BookingSummary({ hotel }: BookingSummaryProps) {
|
||||
const intl = useIntl()
|
||||
const lang = useLang()
|
||||
|
||||
const bookedRoom = useMyStayRoomDetailsStore((state) => state.bookedRoom)
|
||||
|
||||
const {
|
||||
totalPrice,
|
||||
currencyCode,
|
||||
actions: { setRoomPrice },
|
||||
} = useMyStayTotalPriceStore()
|
||||
const {
|
||||
actions: { setRoomDetails },
|
||||
} = useMyStayRoomDetailsStore()
|
||||
|
||||
const childrenAsString = formatChildBedPreferences({
|
||||
childrenAges: booking.childrenAges,
|
||||
childBedPreferences: booking.childBedPreferences,
|
||||
})
|
||||
|
||||
useEffect(() => {
|
||||
// Add price information
|
||||
setRoomPrice({
|
||||
id: booking.confirmationNumber,
|
||||
totalPrice: booking.totalPrice,
|
||||
currencyCode: booking.currencyCode,
|
||||
isMainBooking: true,
|
||||
})
|
||||
|
||||
// Add room details
|
||||
setRoomDetails({
|
||||
id: booking.confirmationNumber,
|
||||
hotelId: booking.hotelId,
|
||||
checkInDate: booking.checkInDate,
|
||||
checkOutDate: booking.checkOutDate,
|
||||
adults: booking.adults,
|
||||
children: childrenAsString,
|
||||
roomName: room?.name ?? booking.roomTypeCode ?? "",
|
||||
roomTypeCode: booking.roomTypeCode ?? "",
|
||||
rateCode: booking.rateDefinition.rateCode ?? "",
|
||||
bookingCode: booking.bookingCode ?? "",
|
||||
isCancelable: booking.isCancelable,
|
||||
mainRoom: booking.mainRoom,
|
||||
})
|
||||
}, [booking, room, childrenAsString, setRoomPrice, setRoomDetails])
|
||||
isCancelled,
|
||||
createDateTime,
|
||||
rateDefinition,
|
||||
guaranteeInfo,
|
||||
checkInDate,
|
||||
} = bookedRoom
|
||||
|
||||
const directionsUrl = `https://www.google.com/maps/dir/?api=1&destination=${hotel.location.latitude},${hotel.location.longitude}`
|
||||
|
||||
const bookingDate = dt(createDateTime).locale(lang).format("D MMMM YYYY")
|
||||
|
||||
const isPaid =
|
||||
booking.rateDefinition.cancellationRule !== "CancellableBefore6PM"
|
||||
const bookingDate = dt(booking.createDateTime)
|
||||
.locale(lang)
|
||||
.format("D MMMM YYYY")
|
||||
rateDefinition.cancellationRule !==
|
||||
CancellationRuleEnum.CancellableBefore6PM ||
|
||||
dt(checkInDate).startOf("day").isBefore(dt().startOf("day"))
|
||||
|
||||
const paymentMethod = guaranteeInfo?.paymentMethodDescription
|
||||
?.toLocaleLowerCase()
|
||||
.startsWith("visa")
|
||||
? intl.formatMessage({ id: "Card" })
|
||||
: guaranteeInfo?.paymentMethodDescription
|
||||
? guaranteeInfo?.paymentMethodDescription
|
||||
: intl.formatMessage({ id: "N/A" })
|
||||
|
||||
return (
|
||||
<div className={styles.bookingSummary}>
|
||||
<Subtitle textTransform="uppercase" color="burgundy">
|
||||
{intl.formatMessage({ id: "Booking summary" })}
|
||||
</Subtitle>
|
||||
<Typography variant="Title/sm">
|
||||
<h2 className={styles.title}>
|
||||
{intl.formatMessage({ id: "Booking summary" })}
|
||||
</h2>
|
||||
</Typography>
|
||||
<div className={styles.bookingSummaryContent}>
|
||||
<SummaryCard
|
||||
title={formatPrice(intl, totalPrice, currencyCode)}
|
||||
title={<TotalPrice variant="Body/Paragraph/mdBold" />}
|
||||
image={{
|
||||
src: "/_static/img/scandic-coin.svg",
|
||||
alt: "Scandic coin",
|
||||
}}
|
||||
texts={[`${intl.formatMessage({ id: "Payment" })}: N/A`]}
|
||||
texts={[`${intl.formatMessage({ id: "Payment" })}: ${paymentMethod}`]}
|
||||
supportingText={bookingDate}
|
||||
chip={
|
||||
<IconChip
|
||||
color={isPaid ? "green" : "red"}
|
||||
icon={
|
||||
isPaid ? (
|
||||
<CheckCircleIcon width={20} height={20} color="green" />
|
||||
) : (
|
||||
<CrossCircleIcon width={20} height={20} color="red" />
|
||||
)
|
||||
}
|
||||
>
|
||||
<Caption color={isPaid ? "green" : "red"}>
|
||||
<strong>{intl.formatMessage({ id: "Status" })}:</strong>{" "}
|
||||
{isPaid
|
||||
? intl.formatMessage({ id: "Paid" })
|
||||
: intl.formatMessage({ id: "Unpaid" })}
|
||||
</Caption>
|
||||
</IconChip>
|
||||
isCancelled ? (
|
||||
<IconChip
|
||||
color={"red"}
|
||||
icon={<CrossCircleIcon width={20} height={20} color="red" />}
|
||||
>
|
||||
<Typography variant="Body/Supporting text (caption)/smBold">
|
||||
<span>{intl.formatMessage({ id: "Cancelled" })}</span>
|
||||
</Typography>
|
||||
</IconChip>
|
||||
) : (
|
||||
<IconChip
|
||||
color={isPaid ? "green" : "red"}
|
||||
icon={
|
||||
isPaid ? (
|
||||
<CheckCircleIcon width={20} height={20} color="green" />
|
||||
) : (
|
||||
<CrossCircleIcon width={20} height={20} color="red" />
|
||||
)
|
||||
}
|
||||
>
|
||||
<Typography variant="Body/Supporting text (caption)/smRegular">
|
||||
<span>
|
||||
<strong>{intl.formatMessage({ id: "Status" })}:</strong>{" "}
|
||||
{isPaid
|
||||
? intl.formatMessage({ id: "Paid" })
|
||||
: intl.formatMessage({ id: "Unpaid" })}
|
||||
</span>
|
||||
</Typography>
|
||||
</IconChip>
|
||||
)
|
||||
}
|
||||
/>
|
||||
<SummaryCard
|
||||
title={hotel.name}
|
||||
title={
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>{hotel.name}</p>
|
||||
</Typography>
|
||||
}
|
||||
image={{
|
||||
src: "/_static/img/scandic-service.svg",
|
||||
alt: "Scandic service",
|
||||
@@ -170,7 +160,9 @@ export default function BookingSummary({
|
||||
<ul>
|
||||
{hotel.specialAlerts.map((alert) => (
|
||||
<li key={alert.id}>
|
||||
<Body color="uiTextHighContrast">{alert.text}</Body>
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<span>{alert.text}</span>
|
||||
</Typography>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
|
||||
@@ -5,13 +5,15 @@ import { useRouter } from "next/navigation"
|
||||
import { FormProvider, useForm } from "react-hook-form"
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import { BookingStatusEnum, PaymentMethodEnum } from "@/constants/booking"
|
||||
import { PaymentMethodEnum } from "@/constants/booking"
|
||||
import {
|
||||
bookingTermsAndConditions,
|
||||
privacyPolicy,
|
||||
} from "@/constants/currentWebHrefs"
|
||||
import { guaranteeCallback } from "@/constants/routes/hotelReservation"
|
||||
import { env } from "@/env/client"
|
||||
import { useManageStayStore } from "@/stores/my-stay/manageStayStore"
|
||||
import { useMyStayRoomDetailsStore } from "@/stores/my-stay/myStayRoomDetailsStore"
|
||||
|
||||
import LoadingSpinner from "@/components/LoadingSpinner"
|
||||
import { ModalContentWithActions } from "@/components/Modal/ModalContentWithActions"
|
||||
@@ -31,27 +33,24 @@ import { type GuaranteeFormData, paymentSchema } from "./schema"
|
||||
|
||||
import styles from "./guaranteeLateArrival.module.css"
|
||||
|
||||
import type { BookingConfirmation } from "@/types/trpc/routers/booking/confirmation"
|
||||
import type { CreditCard } from "@/types/user"
|
||||
|
||||
export interface GuaranteeLateArrivalProps {
|
||||
booking: BookingConfirmation["booking"]
|
||||
handleCloseModal: () => void
|
||||
handleBackToManageStay: () => void
|
||||
savedCreditCards: CreditCard[] | null
|
||||
refId: string
|
||||
}
|
||||
|
||||
export default function GuaranteeLateArrival({
|
||||
booking,
|
||||
handleCloseModal,
|
||||
handleBackToManageStay,
|
||||
savedCreditCards,
|
||||
refId,
|
||||
}: GuaranteeLateArrivalProps) {
|
||||
const intl = useIntl()
|
||||
const lang = useLang()
|
||||
const router = useRouter()
|
||||
const bookedRoom = useMyStayRoomDetailsStore((state) => state.bookedRoom)
|
||||
const {
|
||||
actions: { handleCloseView, handleCloseModal },
|
||||
} = useManageStayStore()
|
||||
|
||||
const methods = useForm<GuaranteeFormData>({
|
||||
defaultValues: {
|
||||
@@ -67,7 +66,7 @@ export default function GuaranteeLateArrival({
|
||||
const guaranteeRedirectUrl = `${env.NEXT_PUBLIC_NODE_ENV === "development" ? `http://localhost:${env.NEXT_PUBLIC_PORT}` : ""}${guaranteeCallback(lang)}`
|
||||
|
||||
const { guaranteeBooking, isLoading } = useGuaranteeBooking({
|
||||
confirmationNumber: booking.confirmationNumber,
|
||||
confirmationNumber: bookedRoom.confirmationNumber,
|
||||
handleBookingCompleted: router.refresh,
|
||||
})
|
||||
|
||||
@@ -83,7 +82,7 @@ export default function GuaranteeLateArrival({
|
||||
const savedCreditCard = savedCreditCards?.find(
|
||||
(card) => card.id === data.paymentMethod
|
||||
)
|
||||
if (booking.confirmationNumber) {
|
||||
if (bookedRoom.confirmationNumber) {
|
||||
const card = savedCreditCard
|
||||
? {
|
||||
alias: savedCreditCard.alias,
|
||||
@@ -92,7 +91,7 @@ export default function GuaranteeLateArrival({
|
||||
}
|
||||
: undefined
|
||||
guaranteeBooking.mutate({
|
||||
confirmationNumber: booking.confirmationNumber,
|
||||
confirmationNumber: bookedRoom.confirmationNumber,
|
||||
language: lang,
|
||||
...(card !== undefined && { card }),
|
||||
success: `${guaranteeRedirectUrl}?status=success&RefId=${encodeURIComponent(refId)}`,
|
||||
@@ -182,7 +181,7 @@ export default function GuaranteeLateArrival({
|
||||
</div>
|
||||
<Divider variant="vertical" color="subtle" />
|
||||
<Body textTransform="bold">
|
||||
{formatPrice(intl, 0, booking.currencyCode)}
|
||||
{formatPrice(intl, 0, bookedRoom.currencyCode)}
|
||||
</Body>
|
||||
</div>
|
||||
</>
|
||||
@@ -194,7 +193,7 @@ export default function GuaranteeLateArrival({
|
||||
}}
|
||||
secondaryAction={{
|
||||
label: intl.formatMessage({ id: "Back" }),
|
||||
onClick: handleBackToManageStay,
|
||||
onClick: handleCloseView,
|
||||
intent: "text",
|
||||
}}
|
||||
/>
|
||||
|
||||
@@ -0,0 +1,105 @@
|
||||
.guestDetails {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
background-color: var(--Main-Brand-PalePeach);
|
||||
padding: var(--Spacing-x3) 0;
|
||||
border-radius: var(--Corner-radius-Medium);
|
||||
gap: var(--Spacing-x2);
|
||||
}
|
||||
|
||||
.memberLevel {
|
||||
align-items: center;
|
||||
height: 32px;
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
.memberLevelIcon {
|
||||
height: 100%;
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
.rowTitle {
|
||||
margin-bottom: var(--Spacing-x1);
|
||||
}
|
||||
|
||||
.userDetails {
|
||||
width: 80%;
|
||||
border-bottom: 1px solid var(--Primary-Light-On-Surface-Divider);
|
||||
padding-bottom: var(--Spacing-x3);
|
||||
text-align: center;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--Spacing-x1);
|
||||
color: var(--Scandic-Brand-Burgundy);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.totalPoints {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
gap: var(--Spacing-x1);
|
||||
justify-content: space-between;
|
||||
padding-top: var(--Spacing-x3);
|
||||
}
|
||||
|
||||
.totalPointsText {
|
||||
display: flex;
|
||||
gap: var(--Spacing-x-one-and-half);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.guest {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: var(--Spacing-x-half);
|
||||
}
|
||||
|
||||
.memberNumber {
|
||||
color: var(--Scandic-Brand-Burgundy);
|
||||
}
|
||||
.contactInfoMobile {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--Spacing-x-half);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.contactInfoDesktop {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.guest {
|
||||
align-items: flex-start;
|
||||
}
|
||||
.memberLevel {
|
||||
height: 24px;
|
||||
align-items: flex-start;
|
||||
}
|
||||
.userDetails {
|
||||
width: 100%;
|
||||
border-bottom: none;
|
||||
padding: 0;
|
||||
align-items: flex-start;
|
||||
}
|
||||
.guestDetails {
|
||||
align-items: flex-start;
|
||||
padding: var(--Spacing-x3) var(--Spacing-x-one-and-half);
|
||||
}
|
||||
.contactInfoMobile,
|
||||
.userDetailsTitle {
|
||||
display: none;
|
||||
}
|
||||
.contactInfoDesktop {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--Spacing-x-half);
|
||||
}
|
||||
.totalPoints {
|
||||
padding: var(--Spacing-x-one-and-half) 0;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,274 @@
|
||||
"use client"
|
||||
import { zodResolver } from "@hookform/resolvers/zod"
|
||||
import { useRouter } from "next/navigation"
|
||||
import { useState } from "react"
|
||||
import { Dialog } from "react-aria-components"
|
||||
import { FormProvider, useForm } from "react-hook-form"
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import { Typography } from "@scandic-hotels/design-system/Typography"
|
||||
|
||||
import { trpc } from "@/lib/trpc/client"
|
||||
import { type Room } from "@/stores/my-stay/myStayRoomDetailsStore"
|
||||
|
||||
import { DiamondIcon, EditIcon } from "@/components/Icons"
|
||||
import MembershipLevelIcon from "@/components/Levels/Icon"
|
||||
import Modal from "@/components/Modal"
|
||||
import { ModalContentWithActions } from "@/components/Modal/ModalContentWithActions"
|
||||
import Button from "@/components/TempDesignSystem/Button"
|
||||
import { toast } from "@/components/TempDesignSystem/Toasts"
|
||||
import useLang from "@/hooks/useLang"
|
||||
|
||||
import ModifyContact from "../ModifyContact"
|
||||
|
||||
import styles from "./guestDetails.module.css"
|
||||
|
||||
import {
|
||||
type ModifyContactSchema,
|
||||
modifyContactSchema,
|
||||
} from "@/types/components/hotelReservation/myStay/modifyContact"
|
||||
import { MODAL_STEPS } from "@/types/components/hotelReservation/myStay/myStay"
|
||||
import type { User } from "@/types/user"
|
||||
|
||||
interface GuestDetailsProps {
|
||||
user: User | null
|
||||
booking: Room
|
||||
updateRoom: (room: Room) => void
|
||||
}
|
||||
|
||||
export default function GuestDetails({
|
||||
user,
|
||||
booking,
|
||||
updateRoom,
|
||||
}: GuestDetailsProps) {
|
||||
const intl = useIntl()
|
||||
const lang = useLang()
|
||||
const router = useRouter()
|
||||
const [currentStep, setCurrentStep] = useState(MODAL_STEPS.INITIAL)
|
||||
const [isLoading, setIsLoading] = useState(false)
|
||||
|
||||
const [isModifyGuestDetailsOpen, setIsModifyGuestDetailsOpen] =
|
||||
useState(false)
|
||||
|
||||
const form = useForm<ModifyContactSchema>({
|
||||
resolver: zodResolver(modifyContactSchema),
|
||||
defaultValues: {
|
||||
firstName: booking.guest.firstName,
|
||||
lastName: booking.guest.lastName,
|
||||
email: booking.guest.email,
|
||||
phoneNumber: booking.guest.phoneNumber,
|
||||
countryCode: booking.guest.countryCode,
|
||||
},
|
||||
})
|
||||
|
||||
const isFirstStep = currentStep === MODAL_STEPS.INITIAL
|
||||
|
||||
const isMemberBooking =
|
||||
booking.guest.membershipNumber === user?.membership?.membershipNumber
|
||||
|
||||
const updateGuest = trpc.booking.update.useMutation({
|
||||
onMutate: () => setIsLoading(true),
|
||||
onSuccess: (data) => {
|
||||
if (!data) {
|
||||
toast.error(
|
||||
intl.formatMessage({ id: "Failed to update guest details" })
|
||||
)
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
updateRoom({
|
||||
...booking,
|
||||
guest: {
|
||||
...booking.guest,
|
||||
email: data.guest.email,
|
||||
phoneNumber: data.guest.phoneNumber,
|
||||
countryCode: data.guest.countryCode,
|
||||
},
|
||||
})
|
||||
|
||||
toast.success(intl.formatMessage({ id: "Guest details updated" }))
|
||||
setIsModifyGuestDetailsOpen(false)
|
||||
},
|
||||
onError: () => {
|
||||
toast.error(intl.formatMessage({ id: "Failed to update guest details" }))
|
||||
},
|
||||
onSettled: () => {
|
||||
setIsLoading(false)
|
||||
},
|
||||
})
|
||||
|
||||
async function onSubmit(data: ModifyContactSchema) {
|
||||
updateGuest.mutate({
|
||||
confirmationNumber: booking.confirmationNumber,
|
||||
guest: {
|
||||
email: data.email,
|
||||
phoneNumber: data.phoneNumber,
|
||||
countryCode: data.countryCode,
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
function handleModifyMemberDetails() {
|
||||
const expirationTime = Date.now() + 10 * 60 * 1000
|
||||
sessionStorage.setItem(
|
||||
"myStayReturnRoute",
|
||||
JSON.stringify({
|
||||
path: window.location.pathname,
|
||||
expiry: expirationTime,
|
||||
})
|
||||
)
|
||||
router.push(`/${lang}/scandic-friends/my-pages/profile/edit`)
|
||||
}
|
||||
|
||||
return (
|
||||
<div className={styles.guestDetails}>
|
||||
{isMemberBooking && user.membership && (
|
||||
<div className={styles.userDetails}>
|
||||
<div className={styles.userDetailsTitle}>
|
||||
<Typography variant="Title/Overline/sm">
|
||||
<p>{intl.formatMessage({ id: "Your member tier" })}</p>
|
||||
</Typography>
|
||||
</div>
|
||||
<div className={styles.memberLevel}>
|
||||
<MembershipLevelIcon
|
||||
level={user.membership.membershipLevel}
|
||||
color="red"
|
||||
rows={1}
|
||||
className={styles.memberLevelIcon}
|
||||
/>
|
||||
</div>
|
||||
<div className={styles.totalPoints}>
|
||||
<div className={styles.totalPointsText}>
|
||||
<DiamondIcon color="uiTextHighContrast" />
|
||||
|
||||
<Typography variant="Title/Overline/sm">
|
||||
<p>{intl.formatMessage({ id: "Total points" })}</p>
|
||||
</Typography>
|
||||
</div>
|
||||
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p>{user.membership.currentPoints}</p>
|
||||
</Typography>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
<div className={styles.guest}>
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>
|
||||
{booking.guest.firstName} {booking.guest.lastName}
|
||||
</p>
|
||||
</Typography>
|
||||
{isMemberBooking && user.membership && (
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p className={styles.memberNumber}>
|
||||
{intl.formatMessage(
|
||||
{ id: "Member no. {nr}" },
|
||||
{
|
||||
nr: user.membership.membershipNumber,
|
||||
}
|
||||
)}
|
||||
</p>
|
||||
</Typography>
|
||||
)}
|
||||
<div className={styles.contactInfoMobile}>
|
||||
<Typography variant="Body/Supporting text (caption)/smRegular">
|
||||
<p color="uiTextHighContrast">{booking.guest.email}</p>
|
||||
</Typography>
|
||||
<Typography variant="Body/Supporting text (caption)/smRegular">
|
||||
<p color="uiTextHighContrast">{booking.guest.phoneNumber}</p>
|
||||
</Typography>
|
||||
</div>
|
||||
<div className={styles.contactInfoDesktop}>
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p color="uiTextHighContrast">{booking.guest.email}</p>
|
||||
</Typography>
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p color="uiTextHighContrast">{booking.guest.phoneNumber}</p>
|
||||
</Typography>
|
||||
</div>
|
||||
</div>
|
||||
{isMemberBooking ? (
|
||||
<Button
|
||||
variant="icon"
|
||||
color="burgundy"
|
||||
intent={"secondary"}
|
||||
onClick={handleModifyMemberDetails}
|
||||
disabled={booking.isCancelled}
|
||||
size="small"
|
||||
>
|
||||
<EditIcon color="burgundy" width={20} height={20} />
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<span>{intl.formatMessage({ id: "Modify guest details" })}</span>
|
||||
</Typography>
|
||||
</Button>
|
||||
) : (
|
||||
<>
|
||||
<Button
|
||||
variant="icon"
|
||||
color="burgundy"
|
||||
intent="secondary"
|
||||
onClick={() =>
|
||||
setIsModifyGuestDetailsOpen(!isModifyGuestDetailsOpen)
|
||||
}
|
||||
disabled={booking.isCancelled}
|
||||
size="small"
|
||||
>
|
||||
<EditIcon color="burgundy" width={20} height={20} />
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<span>{intl.formatMessage({ id: "Modify guest details" })}</span>
|
||||
</Typography>
|
||||
</Button>
|
||||
{isModifyGuestDetailsOpen && (
|
||||
<Modal
|
||||
withActions
|
||||
hideHeader
|
||||
isOpen={isModifyGuestDetailsOpen}
|
||||
onToggle={setIsModifyGuestDetailsOpen}
|
||||
>
|
||||
<Dialog
|
||||
aria-label={intl.formatMessage({ id: "Modify guest details" })}
|
||||
>
|
||||
{({ close }) => (
|
||||
<FormProvider {...form}>
|
||||
<ModalContentWithActions
|
||||
title={intl.formatMessage({ id: "Modify guest details" })}
|
||||
onClose={() => setIsModifyGuestDetailsOpen(false)}
|
||||
content={
|
||||
booking.guest && (
|
||||
<ModifyContact
|
||||
guest={booking.guest}
|
||||
isFirstStep={isFirstStep}
|
||||
/>
|
||||
)
|
||||
}
|
||||
primaryAction={{
|
||||
label: isFirstStep
|
||||
? intl.formatMessage({ id: "Save updates" })
|
||||
: intl.formatMessage({ id: "Confirm" }),
|
||||
onClick: isFirstStep
|
||||
? () => setCurrentStep(MODAL_STEPS.CONFIRMATION)
|
||||
: () => form.handleSubmit(onSubmit)(),
|
||||
disabled: !form.formState.isValid || isLoading,
|
||||
intent: isFirstStep ? "secondary" : "primary",
|
||||
}}
|
||||
secondaryAction={{
|
||||
label: isFirstStep
|
||||
? intl.formatMessage({ id: "Back" })
|
||||
: intl.formatMessage({ id: "Cancel" }),
|
||||
onClick: () => {
|
||||
close()
|
||||
setCurrentStep(MODAL_STEPS.INITIAL)
|
||||
},
|
||||
}}
|
||||
/>
|
||||
</FormProvider>
|
||||
)}
|
||||
</Dialog>
|
||||
</Modal>
|
||||
)}
|
||||
</>
|
||||
)}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
@@ -1,64 +0,0 @@
|
||||
import SkeletonShimmer from "@/components/SkeletonShimmer"
|
||||
|
||||
import styles from "./linkedReservation.module.css"
|
||||
|
||||
export default function LinkedReservationSkeleton() {
|
||||
return (
|
||||
<div className={styles.linkedReservation}>
|
||||
<div className={styles.title}>
|
||||
<div
|
||||
className={styles.skeleton}
|
||||
style={{ width: "100px", height: "24px" }}
|
||||
>
|
||||
<SkeletonShimmer width="100px" height="24px" />
|
||||
</div>
|
||||
</div>
|
||||
<div className={styles.details}>
|
||||
<div
|
||||
className={styles.skeleton}
|
||||
style={{ width: "200px", height: "18px" }}
|
||||
>
|
||||
<SkeletonShimmer width="200px" height="18px" />
|
||||
</div>
|
||||
<div className={styles.guests}>
|
||||
<div
|
||||
className={styles.skeleton}
|
||||
style={{ width: "150px", height: "18px" }}
|
||||
>
|
||||
<SkeletonShimmer width="150px" height="18px" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className={styles.dates}>
|
||||
<div className={styles.date}>
|
||||
<div
|
||||
className={styles.skeleton}
|
||||
style={{ width: "80px", height: "18px" }}
|
||||
>
|
||||
<SkeletonShimmer width="80px" height="18px" />
|
||||
</div>
|
||||
<div
|
||||
className={styles.skeleton}
|
||||
style={{ width: "160px", height: "18px" }}
|
||||
>
|
||||
<SkeletonShimmer width="160px" height="18px" />
|
||||
</div>
|
||||
</div>
|
||||
<div className={styles.date}>
|
||||
<div
|
||||
className={styles.skeleton}
|
||||
style={{ width: "80px", height: "18px" }}
|
||||
>
|
||||
<SkeletonShimmer width="80px" height="18px" />
|
||||
</div>
|
||||
<div
|
||||
className={styles.skeleton}
|
||||
style={{ width: "160px", height: "18px" }}
|
||||
>
|
||||
<SkeletonShimmer width="160px" height="18px" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
@@ -1,149 +0,0 @@
|
||||
"use client"
|
||||
import { use, useEffect } from "react"
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import { dt } from "@/lib/dt"
|
||||
|
||||
import Caption from "@/components/TempDesignSystem/Text/Caption"
|
||||
import Subtitle from "@/components/TempDesignSystem/Text/Subtitle"
|
||||
import useLang from "@/hooks/useLang"
|
||||
|
||||
import { useMyStayRoomDetailsStore } from "../stores/myStayRoomDetailsStore"
|
||||
import { useMyStayTotalPriceStore } from "../stores/myStayTotalPrice"
|
||||
import { formatChildBedPreferences } from "../utils"
|
||||
|
||||
import styles from "./linkedReservation.module.css"
|
||||
|
||||
import type { BookingConfirmation } from "@/types/trpc/routers/booking/confirmation"
|
||||
|
||||
interface LinkedReservationProps {
|
||||
bookingPromise: Promise<BookingConfirmation | null>
|
||||
index: number
|
||||
}
|
||||
|
||||
export default function LinkedReservation({
|
||||
bookingPromise,
|
||||
index,
|
||||
}: LinkedReservationProps) {
|
||||
const intl = useIntl()
|
||||
const lang = useLang()
|
||||
|
||||
const {
|
||||
actions: { setRoomPrice },
|
||||
} = useMyStayTotalPriceStore()
|
||||
const {
|
||||
actions: { setRoomDetails },
|
||||
} = useMyStayRoomDetailsStore()
|
||||
|
||||
const bookingConfirmation = use(bookingPromise)
|
||||
const { booking, room } = bookingConfirmation ?? {}
|
||||
|
||||
useEffect(() => {
|
||||
if (booking) {
|
||||
const childrenAsString = formatChildBedPreferences({
|
||||
childrenAges: booking.childrenAges ?? [],
|
||||
childBedPreferences: booking.childBedPreferences ?? [],
|
||||
})
|
||||
|
||||
setRoomPrice({
|
||||
id: booking.confirmationNumber,
|
||||
totalPrice: booking.totalPrice,
|
||||
currencyCode: booking.currencyCode,
|
||||
isMainBooking: false,
|
||||
})
|
||||
|
||||
// Add room details for linked reservation to the store
|
||||
setRoomDetails({
|
||||
id: booking.confirmationNumber,
|
||||
hotelId: booking.hotelId,
|
||||
checkInDate: booking.checkInDate,
|
||||
checkOutDate: booking.checkOutDate,
|
||||
adults: booking.adults,
|
||||
children: childrenAsString,
|
||||
roomName: room?.name ?? booking.roomTypeCode ?? "",
|
||||
roomTypeCode: booking.roomTypeCode ?? "",
|
||||
rateCode: booking.rateDefinition.rateCode ?? "",
|
||||
bookingCode: booking.bookingCode ?? "",
|
||||
isCancelable: booking.isCancelable,
|
||||
mainRoom: booking.mainRoom,
|
||||
})
|
||||
}
|
||||
}, [booking, room, setRoomPrice, setRoomDetails])
|
||||
|
||||
if (!booking) return null
|
||||
|
||||
const fromDate = dt(booking.checkInDate).locale(lang)
|
||||
const toDate = dt(booking.checkOutDate).locale(lang)
|
||||
|
||||
const adultsMsg = intl.formatMessage(
|
||||
{ id: "{adults, plural, one {# adult} other {# adults}}" },
|
||||
{
|
||||
adults: booking.adults,
|
||||
}
|
||||
)
|
||||
|
||||
const childrenMsg = intl.formatMessage(
|
||||
{
|
||||
id: "{children, plural, one {# child} other {# children}}",
|
||||
},
|
||||
{
|
||||
children: booking.childrenAges.length,
|
||||
}
|
||||
)
|
||||
|
||||
const adultsOnlyMsg = adultsMsg
|
||||
const adultsAndChildrenMsg = [adultsMsg, childrenMsg].join(", ")
|
||||
|
||||
return (
|
||||
<article className={styles.linkedReservation}>
|
||||
<div className={styles.title}>
|
||||
<Subtitle color="burgundy">
|
||||
{intl.formatMessage(
|
||||
{ id: "Room {roomIndex}" },
|
||||
{
|
||||
roomIndex: index + 2,
|
||||
}
|
||||
)}
|
||||
</Subtitle>
|
||||
</div>
|
||||
<div className={styles.details}>
|
||||
<Caption textTransform="uppercase" type="bold">
|
||||
{intl.formatMessage({ id: "Reference" })} {booking.confirmationNumber}
|
||||
</Caption>
|
||||
<div>
|
||||
<Caption color="uiTextHighContrast">
|
||||
{booking.childrenAges.length > 0
|
||||
? adultsAndChildrenMsg
|
||||
: adultsOnlyMsg}
|
||||
</Caption>
|
||||
</div>
|
||||
</div>
|
||||
<div className={styles.dates}>
|
||||
<div className={styles.date}>
|
||||
<Caption
|
||||
type="bold"
|
||||
textTransform="uppercase"
|
||||
color="uiTextHighContrast"
|
||||
>
|
||||
{intl.formatMessage({ id: "Check-in" })}
|
||||
</Caption>
|
||||
<Caption color="uiTextHighContrast">
|
||||
{`${fromDate.format("dddd, D MMMM")} `}
|
||||
</Caption>
|
||||
</div>
|
||||
<div className={styles.date}>
|
||||
<Caption
|
||||
type="bold"
|
||||
textTransform="uppercase"
|
||||
color="uiTextHighContrast"
|
||||
>
|
||||
{intl.formatMessage({ id: "Check-out" })}
|
||||
</Caption>
|
||||
<Caption color="uiTextHighContrast">
|
||||
{`${toDate.format("dddd, D MMMM")} `}
|
||||
</Caption>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
)
|
||||
}
|
||||
@@ -1,33 +0,0 @@
|
||||
.linkedReservation {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: var(--Spacing-x2);
|
||||
background-color: var(--Base-Background-Primary-Normal);
|
||||
padding: var(--Spacing-x3);
|
||||
border-radius: var(--Corner-radius-Large);
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.title {
|
||||
border-right: 1px solid var(--Base-Border-Normal);
|
||||
width: 40%;
|
||||
align-content: center;
|
||||
}
|
||||
.details {
|
||||
display: flex;
|
||||
padding: 0 var(--Spacing-x1);
|
||||
gap: var(--Spacing-x2);
|
||||
flex-direction: column;
|
||||
}
|
||||
.dates {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--Spacing-x2);
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.date {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
}
|
||||
@@ -1,23 +1,34 @@
|
||||
import { useFormContext } from "react-hook-form"
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import PriceContainer from "../../../PriceContainer"
|
||||
import { useCheckedRoomsCounts } from "../utils"
|
||||
|
||||
import type { PriceContainerProps } from "@/types/components/hotelReservation/myStay/cancelStay"
|
||||
import type {
|
||||
CancelStayFormValues,
|
||||
PriceContainerProps,
|
||||
} from "@/types/components/hotelReservation/myStay/cancelStay"
|
||||
|
||||
export default function CancelStayPriceContainer({
|
||||
booking,
|
||||
roomDetails,
|
||||
stayDetails,
|
||||
}: PriceContainerProps) {
|
||||
const intl = useIntl()
|
||||
|
||||
const checkedRoomsDetails = useCheckedRoomsCounts(booking, intl)
|
||||
const { getValues } = useFormContext<CancelStayFormValues>()
|
||||
const formRooms = getValues("rooms")
|
||||
|
||||
const checkedRoomsDetails = useCheckedRoomsCounts(
|
||||
roomDetails,
|
||||
formRooms,
|
||||
intl
|
||||
)
|
||||
|
||||
return (
|
||||
<PriceContainer
|
||||
text={intl.formatMessage({ id: "Cancellation cost" })}
|
||||
price={0}
|
||||
currencyCode={booking.currencyCode}
|
||||
currencyCode={roomDetails.currencyCode}
|
||||
nightsText={stayDetails.nightsText}
|
||||
adultsText={checkedRoomsDetails.adultsText}
|
||||
childrenText={checkedRoomsDetails.childrenText}
|
||||
|
||||
@@ -3,7 +3,8 @@
|
||||
import { useFormContext } from "react-hook-form"
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import { useMyStayRoomDetailsStore } from "@/components/HotelReservation/MyStay/stores/myStayRoomDetailsStore"
|
||||
import { useMyStayRoomDetailsStore } from "@/stores/my-stay/myStayRoomDetailsStore"
|
||||
|
||||
import Checkbox from "@/components/TempDesignSystem/Form/Checkbox"
|
||||
import Body from "@/components/TempDesignSystem/Text/Body"
|
||||
import Caption from "@/components/TempDesignSystem/Text/Caption"
|
||||
@@ -19,12 +20,16 @@ import type {
|
||||
|
||||
export function CancelStayConfirmation({
|
||||
hotel,
|
||||
booking,
|
||||
stayDetails,
|
||||
}: CancelStayConfirmationProps) {
|
||||
const intl = useIntl()
|
||||
const { getValues } = useFormContext<CancelStayFormValues>()
|
||||
const { rooms: roomDetails } = useMyStayRoomDetailsStore()
|
||||
const { watch } = useFormContext<CancelStayFormValues>()
|
||||
const bookedRoom = useMyStayRoomDetailsStore((state) => state.bookedRoom)
|
||||
const linkedReservationRooms = useMyStayRoomDetailsStore(
|
||||
(state) => state.linkedReservationRooms
|
||||
)
|
||||
|
||||
const { multiRoom } = bookedRoom
|
||||
|
||||
return (
|
||||
<>
|
||||
@@ -45,25 +50,31 @@ export function CancelStayConfirmation({
|
||||
{intl.formatMessage({ id: "No charges were made." })}
|
||||
</Caption>
|
||||
</div>
|
||||
{booking.multiRoom && (
|
||||
{multiRoom && (
|
||||
<>
|
||||
<Body color="uiTextHighContrast" textTransform="bold">
|
||||
{intl.formatMessage({ id: "Select rooms" })}
|
||||
</Body>
|
||||
|
||||
<div className={styles.rooms}>
|
||||
{getValues("rooms").map((room, index) => {
|
||||
{watch("rooms").map((room, index) => {
|
||||
// Find room details from store by confirmationNumber
|
||||
const roomDetail = roomDetails.find(
|
||||
(detail) => detail.id === room.confirmationNumber
|
||||
)
|
||||
const roomDetail =
|
||||
linkedReservationRooms.find(
|
||||
(detail) =>
|
||||
detail.confirmationNumber === room.confirmationNumber
|
||||
) ?? bookedRoom
|
||||
|
||||
return (
|
||||
<div key={room.id} className={styles.roomContainer}>
|
||||
<div
|
||||
key={room.confirmationNumber}
|
||||
className={styles.roomContainer}
|
||||
>
|
||||
<Checkbox
|
||||
name={`rooms.${index}.checked`}
|
||||
registerOptions={{
|
||||
disabled: !roomDetail?.isCancelable,
|
||||
disabled:
|
||||
!roomDetail.isCancelable || roomDetail.isCancelled,
|
||||
}}
|
||||
>
|
||||
<div className={styles.roomInfo}>
|
||||
@@ -90,8 +101,11 @@ export function CancelStayConfirmation({
|
||||
</div>
|
||||
</>
|
||||
)}
|
||||
{getValues("rooms").some((room) => room.checked) && (
|
||||
<CancelStayPriceContainer booking={booking} stayDetails={stayDetails} />
|
||||
{watch("rooms").some((room) => room.checked) && (
|
||||
<CancelStayPriceContainer
|
||||
roomDetails={bookedRoom}
|
||||
stayDetails={stayDetails}
|
||||
/>
|
||||
)}
|
||||
</>
|
||||
)
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import { useMyStayRoomDetailsStore } from "@/stores/my-stay/myStayRoomDetailsStore"
|
||||
|
||||
import Body from "@/components/TempDesignSystem/Text/Body"
|
||||
|
||||
import CancelStayPriceContainer from "../CancelStayPriceContainer"
|
||||
@@ -8,12 +10,11 @@ import styles from "../cancelStay.module.css"
|
||||
|
||||
import type { FinalConfirmationProps } from "@/types/components/hotelReservation/myStay/cancelStay"
|
||||
|
||||
export function FinalConfirmation({
|
||||
booking,
|
||||
stayDetails,
|
||||
}: FinalConfirmationProps) {
|
||||
export function FinalConfirmation({ stayDetails }: FinalConfirmationProps) {
|
||||
const intl = useIntl()
|
||||
|
||||
const bookedRoom = useMyStayRoomDetailsStore((state) => state.bookedRoom)
|
||||
|
||||
return (
|
||||
<>
|
||||
<div className={styles.modalText}>
|
||||
@@ -23,7 +24,12 @@ export function FinalConfirmation({
|
||||
})}
|
||||
</Body>
|
||||
</div>
|
||||
<CancelStayPriceContainer booking={booking} stayDetails={stayDetails} />
|
||||
{bookedRoom && (
|
||||
<CancelStayPriceContainer
|
||||
roomDetails={bookedRoom}
|
||||
stayDetails={stayDetails}
|
||||
/>
|
||||
)}
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -1,8 +1,12 @@
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import { trpc } from "@/lib/trpc/client"
|
||||
import { useManageStayStore } from "@/stores/my-stay/manageStayStore"
|
||||
import {
|
||||
type Room,
|
||||
useMyStayRoomDetailsStore,
|
||||
} from "@/stores/my-stay/myStayRoomDetailsStore"
|
||||
|
||||
import { useManageStayStore } from "@/components/HotelReservation/MyStay/stores/manageStayStore"
|
||||
import { toast } from "@/components/TempDesignSystem/Toasts"
|
||||
import useLang from "@/hooks/useLang"
|
||||
import { trackCancelStay } from "@/utils/tracking"
|
||||
@@ -13,14 +17,12 @@ import type {
|
||||
} from "@/types/components/hotelReservation/myStay/cancelStay"
|
||||
|
||||
interface UseCancelStayProps extends Omit<CancelStayProps, "hotel"> {
|
||||
getFormValues: () => CancelStayFormValues
|
||||
checkedRooms: CancelStayFormValues["rooms"]
|
||||
}
|
||||
|
||||
export default function useCancelStay({
|
||||
booking,
|
||||
setBookingStatus,
|
||||
handleCloseModal,
|
||||
getFormValues,
|
||||
checkedRooms,
|
||||
}: UseCancelStayProps) {
|
||||
const intl = useIntl()
|
||||
const lang = useLang()
|
||||
@@ -28,12 +30,25 @@ export default function useCancelStay({
|
||||
actions: { setIsLoading },
|
||||
} = useManageStayStore()
|
||||
|
||||
const bookedRoom = useMyStayRoomDetailsStore((state) => state.bookedRoom)
|
||||
const linkedReservationRooms = useMyStayRoomDetailsStore(
|
||||
(state) => state.linkedReservationRooms
|
||||
)
|
||||
|
||||
const updateBookedRoom = useMyStayRoomDetailsStore(
|
||||
(state) => state.actions.updateBookedRoom
|
||||
)
|
||||
|
||||
const updateLinkedReservationRoom = useMyStayRoomDetailsStore(
|
||||
(state) => state.actions.updateLinkedReservationRoom
|
||||
)
|
||||
|
||||
const cancelStay = trpc.booking.cancel.useMutation({
|
||||
onMutate: () => setIsLoading(true),
|
||||
})
|
||||
|
||||
async function handleCancelStay() {
|
||||
if (!booking.confirmationNumber) {
|
||||
if (!bookedRoom.confirmationNumber) {
|
||||
toast.error(
|
||||
intl.formatMessage({
|
||||
id: "Something went wrong. Please try again later.",
|
||||
@@ -45,61 +60,96 @@ export default function useCancelStay({
|
||||
setIsLoading(true)
|
||||
|
||||
try {
|
||||
const formValues = getFormValues()
|
||||
const { rooms } = formValues
|
||||
const checkedRooms = rooms.filter((room) => room.checked)
|
||||
|
||||
const results = []
|
||||
const errors = []
|
||||
|
||||
for (const room of checkedRooms) {
|
||||
const confirmationNumber =
|
||||
room.confirmationNumber || booking.confirmationNumber
|
||||
let targetRoom: Room | undefined
|
||||
|
||||
// Check if this is the main booked room
|
||||
if (room.confirmationNumber === bookedRoom.confirmationNumber) {
|
||||
targetRoom = bookedRoom
|
||||
}
|
||||
// Check if this is a linked reservation room
|
||||
else {
|
||||
targetRoom = linkedReservationRooms.find(
|
||||
(r) => r.confirmationNumber === room.confirmationNumber
|
||||
)
|
||||
}
|
||||
|
||||
if (!targetRoom?.confirmationNumber) {
|
||||
errors.push(room.confirmationNumber)
|
||||
continue
|
||||
}
|
||||
|
||||
try {
|
||||
const result = await cancelStay.mutateAsync({
|
||||
confirmationNumber: confirmationNumber,
|
||||
const response = await cancelStay.mutateAsync({
|
||||
confirmationNumber: targetRoom.confirmationNumber,
|
||||
language: lang,
|
||||
})
|
||||
|
||||
if (result) {
|
||||
results.push(room.id)
|
||||
if (response) {
|
||||
results.push(room.confirmationNumber)
|
||||
const cancelledRoom = response.rooms.find(
|
||||
(r) => r.confirmationNumber === targetRoom?.confirmationNumber
|
||||
)
|
||||
|
||||
if (cancelledRoom) {
|
||||
if (
|
||||
targetRoom.confirmationNumber === bookedRoom.confirmationNumber
|
||||
) {
|
||||
// Update main booked room
|
||||
updateBookedRoom({
|
||||
...bookedRoom,
|
||||
isCancelled: true,
|
||||
cancellationNumber: cancelledRoom.cancellationNumber,
|
||||
})
|
||||
} else {
|
||||
// Update linked reservation room
|
||||
updateLinkedReservationRoom({
|
||||
...targetRoom,
|
||||
isCancelled: true,
|
||||
cancellationNumber: cancelledRoom.cancellationNumber,
|
||||
})
|
||||
}
|
||||
|
||||
trackCancelStay(
|
||||
bookedRoom.hotelId,
|
||||
cancelledRoom.confirmationNumber
|
||||
)
|
||||
}
|
||||
} else {
|
||||
errors.push(room.id)
|
||||
errors.push(room.confirmationNumber)
|
||||
}
|
||||
} catch (error) {
|
||||
console.error(
|
||||
`Error cancelling room ${room.confirmationNumber}:`,
|
||||
`Error cancelling room ${targetRoom.confirmationNumber}:`,
|
||||
error
|
||||
)
|
||||
toast.error(
|
||||
intl.formatMessage({
|
||||
id: "Something went wrong. Please try again later.",
|
||||
})
|
||||
)
|
||||
errors.push(room.id)
|
||||
errors.push(room.confirmationNumber)
|
||||
}
|
||||
}
|
||||
|
||||
// Show appropriate toast based on results
|
||||
if (results.length > 0 && errors.length === 0) {
|
||||
setBookingStatus()
|
||||
// All selected rooms cancelled successfully
|
||||
toast.success(
|
||||
intl.formatMessage(
|
||||
{
|
||||
id: "Your stay was cancelled. Cancellation cost: 0 {currency}. We're sorry to see that the plans didn't work out",
|
||||
},
|
||||
{ currency: booking.currencyCode }
|
||||
{ currency: bookedRoom.currencyCode }
|
||||
)
|
||||
)
|
||||
trackCancelStay(booking.hotelId, booking.confirmationNumber)
|
||||
} else if (results.length > 0 && errors.length > 0) {
|
||||
setBookingStatus()
|
||||
// Some rooms cancelled, some failed
|
||||
toast.warning(
|
||||
intl.formatMessage({
|
||||
id: "Some rooms were cancelled successfully, but we encountered issues with others. Please contact customer service for assistance.",
|
||||
})
|
||||
)
|
||||
} else {
|
||||
// No rooms cancelled successfully
|
||||
toast.error(
|
||||
intl.formatMessage({
|
||||
id: "Something went wrong. Please try again later.",
|
||||
@@ -115,6 +165,7 @@ export default function useCancelStay({
|
||||
id: "Something went wrong. Please try again later.",
|
||||
})
|
||||
)
|
||||
} finally {
|
||||
setIsLoading(false)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,7 +4,9 @@ import { zodResolver } from "@hookform/resolvers/zod"
|
||||
import { FormProvider, useForm } from "react-hook-form"
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import { useManageStayStore } from "@/components/HotelReservation/MyStay/stores/manageStayStore"
|
||||
import { useManageStayStore } from "@/stores/my-stay/manageStayStore"
|
||||
import { useMyStayRoomDetailsStore } from "@/stores/my-stay/myStayRoomDetailsStore"
|
||||
|
||||
import { ModalContentWithActions } from "@/components/Modal/ModalContentWithActions"
|
||||
import Alert from "@/components/TempDesignSystem/Alert"
|
||||
import useLang from "@/hooks/useLang"
|
||||
@@ -21,44 +23,38 @@ import {
|
||||
import { MODAL_STEPS } from "@/types/components/hotelReservation/myStay/myStay"
|
||||
import { AlertTypeEnum } from "@/types/enums/alert"
|
||||
import type { Hotel } from "@/types/hotel"
|
||||
import type { BookingConfirmation } from "@/types/trpc/routers/booking/confirmation"
|
||||
|
||||
interface CancelStayProps {
|
||||
booking: BookingConfirmation["booking"]
|
||||
hotel: Hotel
|
||||
setBookingStatus: () => void
|
||||
}
|
||||
|
||||
export default function CancelStay({
|
||||
booking,
|
||||
hotel,
|
||||
setBookingStatus,
|
||||
}: CancelStayProps) {
|
||||
export default function CancelStay({ hotel }: CancelStayProps) {
|
||||
const intl = useIntl()
|
||||
const lang = useLang()
|
||||
|
||||
const bookedRoom = useMyStayRoomDetailsStore((state) => state.bookedRoom)
|
||||
|
||||
const form = useForm<CancelStayFormValues>({
|
||||
resolver: zodResolver(cancelStaySchema),
|
||||
defaultValues: {
|
||||
rooms: getDefaultRooms(booking),
|
||||
rooms: getDefaultRooms(bookedRoom),
|
||||
},
|
||||
})
|
||||
|
||||
const {
|
||||
currentStep,
|
||||
isLoading,
|
||||
actions: { handleForward, handleCloseView, handleCloseModal },
|
||||
} = useManageStayStore()
|
||||
|
||||
const { rooms } = form.watch()
|
||||
|
||||
const { handleCancelStay } = useCancelStay({
|
||||
booking,
|
||||
setBookingStatus,
|
||||
handleCloseModal,
|
||||
getFormValues: form.getValues,
|
||||
checkedRooms: rooms.filter((room) => room.checked),
|
||||
})
|
||||
|
||||
const { mainRoom } = booking
|
||||
const isFirstStep = currentStep === MODAL_STEPS.INITIAL
|
||||
const stayDetails = formatStayDetails({ booking, lang, intl })
|
||||
const stayDetails = formatStayDetails({ bookedRoom, lang, intl })
|
||||
|
||||
function getModalCopy() {
|
||||
if (isFirstStep) {
|
||||
@@ -77,19 +73,13 @@ export default function CancelStay({
|
||||
}
|
||||
|
||||
function getModalContent() {
|
||||
if (mainRoom && isFirstStep)
|
||||
return (
|
||||
<CancelStayConfirmation
|
||||
hotel={hotel}
|
||||
booking={booking}
|
||||
stayDetails={stayDetails}
|
||||
/>
|
||||
)
|
||||
if (bookedRoom && isFirstStep)
|
||||
return <CancelStayConfirmation hotel={hotel} stayDetails={stayDetails} />
|
||||
|
||||
if (mainRoom && !isFirstStep)
|
||||
return <FinalConfirmation booking={booking} stayDetails={stayDetails} />
|
||||
if (bookedRoom && !isFirstStep)
|
||||
return <FinalConfirmation stayDetails={stayDetails} />
|
||||
|
||||
if (!mainRoom && isFirstStep)
|
||||
if (!bookedRoom && isFirstStep)
|
||||
return (
|
||||
<Alert
|
||||
type={AlertTypeEnum.Info}
|
||||
@@ -103,7 +93,6 @@ export default function CancelStay({
|
||||
)
|
||||
}
|
||||
|
||||
const { rooms } = form.watch()
|
||||
const isFormValid = rooms?.some((room) => room.checked)
|
||||
|
||||
return (
|
||||
@@ -113,7 +102,7 @@ export default function CancelStay({
|
||||
content={getModalContent()}
|
||||
onClose={handleCloseModal}
|
||||
primaryAction={
|
||||
mainRoom
|
||||
bookedRoom
|
||||
? {
|
||||
label: getModalCopy().primaryLabel,
|
||||
onClick: isFirstStep ? handleForward : handleCancelStay,
|
||||
|
||||
@@ -1,14 +1,12 @@
|
||||
import { useFormContext } from "react-hook-form"
|
||||
|
||||
import { dt } from "@/lib/dt"
|
||||
|
||||
import type { IntlShape } from "react-intl"
|
||||
|
||||
import type { CancelStayFormValues } from "@/types/components/hotelReservation/myStay/cancelStay"
|
||||
import type { BookingConfirmation } from "@/types/trpc/routers/booking/confirmation"
|
||||
import type { Room } from "@/stores/my-stay/myStayRoomDetailsStore"
|
||||
|
||||
export function getDefaultRooms(booking: BookingConfirmation["booking"]) {
|
||||
const { multiRoom, confirmationNumber, linkedReservations = [] } = booking
|
||||
export function getDefaultRooms(room: Room) {
|
||||
const { multiRoom, confirmationNumber, linkedReservations = [] } = room
|
||||
|
||||
if (!multiRoom) {
|
||||
return [{ id: "1", checked: true, confirmationNumber }]
|
||||
@@ -25,35 +23,43 @@ export function getDefaultRooms(booking: BookingConfirmation["booking"]) {
|
||||
}
|
||||
|
||||
export function formatStayDetails({
|
||||
booking,
|
||||
bookedRoom,
|
||||
lang,
|
||||
intl,
|
||||
}: {
|
||||
booking: BookingConfirmation["booking"]
|
||||
bookedRoom: Room
|
||||
lang: string
|
||||
intl: IntlShape
|
||||
}) {
|
||||
const { multiRoom } = booking
|
||||
const totalAdults = multiRoom
|
||||
? (booking.adults ?? 0) +
|
||||
(booking.linkedReservations ?? []).reduce((acc, reservation) => {
|
||||
return acc + (reservation.adults ?? 0)
|
||||
}, 0)
|
||||
: (booking.adults ?? 0)
|
||||
const totalChildren = multiRoom
|
||||
? booking.childrenAges?.length +
|
||||
(booking.linkedReservations ?? []).reduce((acc, reservation) => {
|
||||
return acc + reservation.children
|
||||
}, 0)
|
||||
: booking.childrenAges?.length
|
||||
const {
|
||||
multiRoom,
|
||||
adults,
|
||||
childrenAges,
|
||||
linkedReservations,
|
||||
checkInDate,
|
||||
checkOutDate,
|
||||
} = bookedRoom
|
||||
|
||||
const checkInDate = dt(booking.checkInDate)
|
||||
const totalAdults = multiRoom
|
||||
? linkedReservations.reduce((acc, reservation) => {
|
||||
return acc + reservation.adults
|
||||
}, adults)
|
||||
: adults
|
||||
const totalChildren = multiRoom
|
||||
? linkedReservations.reduce((acc, reservation) => {
|
||||
return acc + reservation.children
|
||||
}, childrenAges.length)
|
||||
: childrenAges.length
|
||||
|
||||
const checkInDateFormatted = dt(checkInDate)
|
||||
.locale(lang)
|
||||
.format("dddd D MMM YYYY")
|
||||
const checkOutDate = dt(booking.checkOutDate)
|
||||
const checkOutDateFormatted = dt(checkOutDate)
|
||||
.locale(lang)
|
||||
.format("dddd D MMM YYYY")
|
||||
const diff = dt(checkOutDate).diff(checkInDate, "days")
|
||||
const diff = dt(checkOutDate)
|
||||
.startOf("day")
|
||||
.diff(dt(checkInDate).startOf("day"), "days")
|
||||
|
||||
const nightsText = intl.formatMessage(
|
||||
{ id: "{totalNights, plural, one {# night} other {# nights}}" },
|
||||
@@ -69,8 +75,8 @@ export function formatStayDetails({
|
||||
)
|
||||
|
||||
return {
|
||||
checkInDate,
|
||||
checkOutDate,
|
||||
checkInDate: checkInDateFormatted,
|
||||
checkOutDate: checkOutDateFormatted,
|
||||
nightsText,
|
||||
adultsText,
|
||||
childrenText,
|
||||
@@ -79,31 +85,28 @@ export function formatStayDetails({
|
||||
}
|
||||
|
||||
function getMatchedRooms(
|
||||
booking: BookingConfirmation["booking"],
|
||||
roomDetails: Room,
|
||||
checkedConfirmationNumbers: string[]
|
||||
) {
|
||||
let matchedRooms = []
|
||||
|
||||
// Main booking
|
||||
if (checkedConfirmationNumbers.includes(booking.confirmationNumber)) {
|
||||
if (checkedConfirmationNumbers.includes(roomDetails.confirmationNumber)) {
|
||||
matchedRooms.push({
|
||||
adults: booking.adults ?? 0,
|
||||
children: booking.childrenAges?.length ?? 0,
|
||||
adults: roomDetails.adults,
|
||||
children: roomDetails.childrenAges.length,
|
||||
})
|
||||
}
|
||||
|
||||
// Linked reservations
|
||||
if (booking.linkedReservations) {
|
||||
const matchedLinkedRooms = booking.linkedReservations
|
||||
.filter((reservation) =>
|
||||
checkedConfirmationNumbers.includes(reservation.confirmationNumber)
|
||||
)
|
||||
.map((reservation) => ({
|
||||
adults: reservation.adults ?? 0,
|
||||
children: reservation.children ?? 0,
|
||||
}))
|
||||
|
||||
matchedRooms = [...matchedRooms, ...matchedLinkedRooms]
|
||||
if (roomDetails.linkedReservations) {
|
||||
roomDetails.linkedReservations.forEach((reservation) => {
|
||||
if (checkedConfirmationNumbers.includes(reservation.confirmationNumber))
|
||||
matchedRooms.push({
|
||||
adults: reservation.adults,
|
||||
children: reservation.children,
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
return matchedRooms
|
||||
@@ -119,12 +122,10 @@ function calculateTotals(matchedRooms: { adults: number; children: number }[]) {
|
||||
}
|
||||
|
||||
export const useCheckedRoomsCounts = (
|
||||
booking: BookingConfirmation["booking"],
|
||||
roomDetails: Room,
|
||||
formRooms: CancelStayFormValues["rooms"],
|
||||
intl: IntlShape
|
||||
) => {
|
||||
const { getValues } = useFormContext<CancelStayFormValues>()
|
||||
const formRooms = getValues("rooms")
|
||||
|
||||
const checkedFormRooms = formRooms.filter((room) => room.checked)
|
||||
const checkedConfirmationNumbers = checkedFormRooms
|
||||
.map((room) => room.confirmationNumber)
|
||||
@@ -133,7 +134,7 @@ export const useCheckedRoomsCounts = (
|
||||
confirmationNumber !== null && confirmationNumber !== undefined
|
||||
)
|
||||
|
||||
const matchedRooms = getMatchedRooms(booking, checkedConfirmationNumbers)
|
||||
const matchedRooms = getMatchedRooms(roomDetails, checkedConfirmationNumbers)
|
||||
const { totalAdults, totalChildren } = calculateTotals(matchedRooms)
|
||||
|
||||
const adultsText = intl.formatMessage(
|
||||
|
||||
@@ -2,9 +2,9 @@ import { useFormContext } from "react-hook-form"
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import { dt } from "@/lib/dt"
|
||||
import { useMyStayTotalPriceStore } from "@/stores/my-stay/myStayTotalPrice"
|
||||
|
||||
import PriceContainer from "@/components/HotelReservation/MyStay/ManageStay/ActionPanel/PriceContainer"
|
||||
import { useMyStayTotalPriceStore } from "@/components/HotelReservation/MyStay/stores/myStayTotalPrice"
|
||||
import Divider from "@/components/TempDesignSystem/Divider"
|
||||
import Body from "@/components/TempDesignSystem/Text/Body"
|
||||
import Caption from "@/components/TempDesignSystem/Text/Caption"
|
||||
@@ -21,7 +21,7 @@ interface ConfirmationProps {
|
||||
nightsText: string
|
||||
adultsText: string
|
||||
childrenText: string
|
||||
totalChildren: number
|
||||
totalChildren?: number
|
||||
}
|
||||
}
|
||||
|
||||
@@ -50,6 +50,15 @@ export default function Confirmation({
|
||||
.locale(lang)
|
||||
.format("dddd, DD MMM, YYYY")
|
||||
|
||||
const diff = dt(newCheckOut)
|
||||
.startOf("day")
|
||||
.diff(dt(newCheckIn).startOf("day"), "days")
|
||||
|
||||
const nightsText = intl.formatMessage(
|
||||
{ id: "{totalNights, plural, one {# night} other {# nights}}" },
|
||||
{ totalNights: diff }
|
||||
)
|
||||
|
||||
return (
|
||||
<div className={styles.container}>
|
||||
<div className={styles.dateComparison}>
|
||||
@@ -130,7 +139,7 @@ export default function Confirmation({
|
||||
text={intl.formatMessage({ id: "To be paid" })}
|
||||
price={newPrice}
|
||||
currencyCode={currencyCode}
|
||||
nightsText={stayDetails.nightsText}
|
||||
nightsText={nightsText}
|
||||
adultsText={stayDetails.adultsText}
|
||||
childrenText={stayDetails.childrenText}
|
||||
totalChildren={stayDetails.totalChildren}
|
||||
|
||||
@@ -21,7 +21,7 @@ import styles from "./newDates.module.css"
|
||||
import type { DateRange } from "react-day-picker"
|
||||
|
||||
import { AlertTypeEnum } from "@/types/enums/alert"
|
||||
import type { RoomDetails } from "@/components/HotelReservation/MyStay/stores/myStayRoomDetailsStore"
|
||||
import type { Room } from "@/stores/my-stay/myStayRoomDetailsStore"
|
||||
|
||||
const locales = {
|
||||
[Lang.da]: da,
|
||||
@@ -32,7 +32,7 @@ const locales = {
|
||||
}
|
||||
|
||||
interface NewDatesProps {
|
||||
mainRoom: RoomDetails
|
||||
mainRoom: Room
|
||||
noAvailability: boolean
|
||||
error: boolean
|
||||
}
|
||||
|
||||
@@ -2,9 +2,9 @@ import { useIntl } from "react-intl"
|
||||
|
||||
import { dt } from "@/lib/dt"
|
||||
import { trpc } from "@/lib/trpc/client"
|
||||
import { useManageStayStore } from "@/stores/my-stay/manageStayStore"
|
||||
import { useMyStayRoomDetailsStore } from "@/stores/my-stay/myStayRoomDetailsStore"
|
||||
|
||||
import { useManageStayStore } from "@/components/HotelReservation/MyStay/stores/manageStayStore"
|
||||
import { useMyStayRoomDetailsStore } from "@/components/HotelReservation/MyStay/stores/myStayRoomDetailsStore"
|
||||
import { toast } from "@/components/TempDesignSystem/Toasts"
|
||||
import useLang from "@/hooks/useLang"
|
||||
|
||||
@@ -13,18 +13,12 @@ import type { UseFormGetValues } from "react-hook-form"
|
||||
import type { ModifyDateSchema } from "@/types/components/hotelReservation/myStay/modifyDate"
|
||||
|
||||
interface UseModifyStayOptions {
|
||||
booking: {
|
||||
confirmationNumber: string
|
||||
roomPrice?: number
|
||||
currencyCode?: string
|
||||
}
|
||||
isLoggedIn?: boolean
|
||||
getFormValues: UseFormGetValues<ModifyDateSchema>
|
||||
handleCloseModal: () => void
|
||||
}
|
||||
|
||||
export default function useModifyStay({
|
||||
booking,
|
||||
isLoggedIn,
|
||||
getFormValues,
|
||||
handleCloseModal,
|
||||
@@ -34,45 +28,51 @@ export default function useModifyStay({
|
||||
const {
|
||||
actions: { setIsLoading },
|
||||
} = useManageStayStore()
|
||||
const {
|
||||
rooms,
|
||||
actions: { updateRoomDetails },
|
||||
} = useMyStayRoomDetailsStore()
|
||||
|
||||
const bookedRoom = useMyStayRoomDetailsStore((state) => state.bookedRoom)
|
||||
|
||||
const updateBookedRoom = useMyStayRoomDetailsStore(
|
||||
(state) => state.actions.updateBookedRoom
|
||||
)
|
||||
|
||||
const utils = trpc.useUtils()
|
||||
|
||||
const updateBooking = trpc.booking.update.useMutation({
|
||||
onMutate: () => setIsLoading(true),
|
||||
onSuccess: (updatedBooking) => {
|
||||
if (!updatedBooking) return
|
||||
if (!updatedBooking) {
|
||||
toast.error(intl.formatMessage({ id: "Failed to update your stay" }))
|
||||
return
|
||||
}
|
||||
|
||||
// Update room details with server response data
|
||||
for (const room of rooms) {
|
||||
const originalCheckIn = dt(room.checkInDate)
|
||||
const originalCheckOut = dt(room.checkOutDate)
|
||||
|
||||
updateRoomDetails({
|
||||
...room,
|
||||
checkInDate: dt(updatedBooking.checkInDate)
|
||||
.hour(originalCheckIn.hour())
|
||||
.minute(originalCheckIn.minute())
|
||||
.second(originalCheckIn.second())
|
||||
.toDate(),
|
||||
checkOutDate: dt(updatedBooking.checkOutDate)
|
||||
.hour(originalCheckOut.hour())
|
||||
.minute(originalCheckOut.minute())
|
||||
.second(originalCheckOut.second())
|
||||
.toDate(),
|
||||
})
|
||||
}
|
||||
setIsLoading(false)
|
||||
const originalCheckIn = dt(bookedRoom.checkInDate)
|
||||
const originalCheckOut = dt(bookedRoom.checkOutDate)
|
||||
|
||||
updateBookedRoom({
|
||||
...bookedRoom,
|
||||
checkInDate: dt(updatedBooking.checkInDate)
|
||||
.hour(originalCheckIn.hour())
|
||||
.minute(originalCheckIn.minute())
|
||||
.second(originalCheckIn.second())
|
||||
.toDate(),
|
||||
checkOutDate: dt(updatedBooking.checkOutDate)
|
||||
.hour(originalCheckOut.hour())
|
||||
.minute(originalCheckOut.minute())
|
||||
.second(originalCheckOut.second())
|
||||
.toDate(),
|
||||
})
|
||||
|
||||
toast.success(intl.formatMessage({ id: "Your stay was updated" }))
|
||||
handleCloseModal()
|
||||
},
|
||||
onError: () => {
|
||||
setIsLoading(false)
|
||||
toast.error(intl.formatMessage({ id: "Failed to update your stay" }))
|
||||
},
|
||||
onSettled: () => {
|
||||
setIsLoading(false)
|
||||
},
|
||||
})
|
||||
|
||||
async function checkAvailability() {
|
||||
@@ -89,34 +89,32 @@ export default function useModifyStay({
|
||||
const availabilityResults = []
|
||||
let totalNewPrice = 0
|
||||
|
||||
for (const room of rooms) {
|
||||
try {
|
||||
const data = await utils.client.hotel.availability.room.query({
|
||||
hotelId: room.hotelId,
|
||||
roomStayStartDate: formValues.checkInDate,
|
||||
roomStayEndDate: formValues.checkOutDate,
|
||||
adults: room.adults,
|
||||
children: room.children,
|
||||
bookingCode: room.bookingCode,
|
||||
rateCode: room.rateCode,
|
||||
roomTypeCode: room.roomTypeCode,
|
||||
lang,
|
||||
})
|
||||
try {
|
||||
const data = await utils.client.hotel.availability.room.query({
|
||||
hotelId: bookedRoom.hotelId,
|
||||
roomStayStartDate: formValues.checkInDate,
|
||||
roomStayEndDate: formValues.checkOutDate,
|
||||
adults: bookedRoom.adults,
|
||||
children: bookedRoom.childrenAsString,
|
||||
bookingCode: bookedRoom.bookingCode ?? undefined,
|
||||
rateCode: bookedRoom.rateDefinition.rateCode,
|
||||
roomTypeCode: bookedRoom.roomTypeCode,
|
||||
lang,
|
||||
})
|
||||
|
||||
if (!data?.selectedRoom || data.selectedRoom.roomsLeft <= 0) {
|
||||
return { success: false, noAvailability: true }
|
||||
}
|
||||
|
||||
const roomPrice = isLoggedIn
|
||||
? data.memberRate?.requestedPrice?.pricePerStay
|
||||
: data.publicRate?.requestedPrice?.pricePerStay
|
||||
|
||||
totalNewPrice += roomPrice || 0
|
||||
availabilityResults.push(data)
|
||||
} catch (error) {
|
||||
console.error("Error checking room availability:", error)
|
||||
return { success: false, error: true }
|
||||
if (!data?.selectedRoom || data.selectedRoom.roomsLeft <= 0) {
|
||||
return { success: false, noAvailability: true }
|
||||
}
|
||||
|
||||
const roomPrice = isLoggedIn
|
||||
? data.memberRate?.localPrice.pricePerStay
|
||||
: data.publicRate?.localPrice.pricePerStay
|
||||
|
||||
totalNewPrice += roomPrice ?? 0
|
||||
availabilityResults.push(data)
|
||||
} catch (error) {
|
||||
console.error("Error checking room availability:", error)
|
||||
return { success: false, error: true }
|
||||
}
|
||||
|
||||
return {
|
||||
@@ -133,21 +131,12 @@ export default function useModifyStay({
|
||||
}
|
||||
|
||||
async function handleModifyStay() {
|
||||
if (!booking.confirmationNumber) {
|
||||
toast.error(
|
||||
intl.formatMessage({
|
||||
id: "Something went wrong. Please try again later.",
|
||||
})
|
||||
)
|
||||
return
|
||||
}
|
||||
|
||||
const formValues = getFormValues()
|
||||
setIsLoading(true)
|
||||
|
||||
try {
|
||||
await updateBooking.mutateAsync({
|
||||
confirmationNumber: booking.confirmationNumber,
|
||||
confirmationNumber: bookedRoom.confirmationNumber,
|
||||
checkInDate: formValues.checkInDate,
|
||||
checkOutDate: formValues.checkOutDate,
|
||||
})
|
||||
|
||||
@@ -5,9 +5,9 @@ import { FormProvider, useForm } from "react-hook-form"
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import { dt } from "@/lib/dt"
|
||||
import { useManageStayStore } from "@/stores/my-stay/manageStayStore"
|
||||
import { useMyStayRoomDetailsStore } from "@/stores/my-stay/myStayRoomDetailsStore"
|
||||
|
||||
import { useManageStayStore } from "@/components/HotelReservation/MyStay/stores/manageStayStore"
|
||||
import { useMyStayRoomDetailsStore } from "@/components/HotelReservation/MyStay/stores/myStayRoomDetailsStore"
|
||||
import { ModalContentWithActions } from "@/components/Modal/ModalContentWithActions"
|
||||
import Alert from "@/components/TempDesignSystem/Alert"
|
||||
import useLang from "@/hooks/useLang"
|
||||
@@ -25,7 +25,7 @@ import {
|
||||
import { MODAL_STEPS } from "@/types/components/hotelReservation/myStay/myStay"
|
||||
import { AlertTypeEnum } from "@/types/enums/alert"
|
||||
|
||||
export default function ModifyStay({ booking, user }: ModifyStayProps) {
|
||||
export default function ModifyStay({ isLoggedIn }: ModifyStayProps) {
|
||||
const intl = useIntl()
|
||||
const lang = useLang()
|
||||
|
||||
@@ -46,20 +46,24 @@ export default function ModifyStay({ booking, user }: ModifyStayProps) {
|
||||
isLoading,
|
||||
actions: { handleCloseView, handleCloseModal, setCurrentStep },
|
||||
} = useManageStayStore()
|
||||
const { rooms } = useMyStayRoomDetailsStore()
|
||||
|
||||
const { mainRoom: isMainRoom } = booking
|
||||
const stayDetails = formatStayDetails({ booking, lang, intl })
|
||||
const bookedRoom = useMyStayRoomDetailsStore((state) => state.bookedRoom)
|
||||
|
||||
const stayDetails = formatStayDetails({ bookedRoom, lang, intl })
|
||||
|
||||
const isFirstStep = currentStep === MODAL_STEPS.INITIAL
|
||||
|
||||
const mainRoom = rooms.find((room) => room.mainRoom)
|
||||
|
||||
const isMultiRoom = rooms.length > 1
|
||||
const {
|
||||
multiRoom,
|
||||
checkInDate,
|
||||
checkOutDate,
|
||||
mainRoom,
|
||||
roomPrice,
|
||||
canChangeDate,
|
||||
} = bookedRoom
|
||||
|
||||
const { checkAvailability, handleModifyStay } = useModifyStay({
|
||||
booking,
|
||||
isLoggedIn: !!user,
|
||||
isLoggedIn,
|
||||
getFormValues: form.getValues,
|
||||
handleCloseModal,
|
||||
})
|
||||
@@ -84,20 +88,12 @@ export default function ModifyStay({ booking, user }: ModifyStayProps) {
|
||||
}
|
||||
|
||||
useEffect(() => {
|
||||
if (mainRoom) {
|
||||
form.setValue(
|
||||
"checkInDate",
|
||||
dt(mainRoom.checkInDate).format("YYYY-MM-DD")
|
||||
)
|
||||
form.setValue(
|
||||
"checkOutDate",
|
||||
dt(mainRoom.checkOutDate).format("YYYY-MM-DD")
|
||||
)
|
||||
}
|
||||
}, [mainRoom, form])
|
||||
form.setValue("checkInDate", dt(checkInDate).format("YYYY-MM-DD"))
|
||||
form.setValue("checkOutDate", dt(checkOutDate).format("YYYY-MM-DD"))
|
||||
}, [checkInDate, checkOutDate, form])
|
||||
|
||||
function getModalContent() {
|
||||
if (mainRoom && isFirstStep && isMultiRoom) {
|
||||
if (bookedRoom && isFirstStep && multiRoom) {
|
||||
return (
|
||||
<Alert
|
||||
type={AlertTypeEnum.Info}
|
||||
@@ -110,10 +106,23 @@ export default function ModifyStay({ booking, user }: ModifyStayProps) {
|
||||
/>
|
||||
)
|
||||
}
|
||||
if (mainRoom && !canChangeDate) {
|
||||
return (
|
||||
<Alert
|
||||
type={AlertTypeEnum.Info}
|
||||
heading={intl.formatMessage({
|
||||
id: "Contact customer service",
|
||||
})}
|
||||
text={intl.formatMessage({
|
||||
id: "Please contact customer service to update the dates.",
|
||||
})}
|
||||
/>
|
||||
)
|
||||
}
|
||||
if (mainRoom && isFirstStep)
|
||||
return (
|
||||
<NewDates
|
||||
mainRoom={mainRoom}
|
||||
mainRoom={bookedRoom}
|
||||
noAvailability={noAvailability}
|
||||
error={error}
|
||||
/>
|
||||
@@ -122,7 +131,7 @@ export default function ModifyStay({ booking, user }: ModifyStayProps) {
|
||||
if (mainRoom && !isFirstStep)
|
||||
return (
|
||||
<Confirmation
|
||||
oldPrice={booking.roomPrice}
|
||||
oldPrice={roomPrice.perStay.local.price}
|
||||
newPrice={newRoomPrice}
|
||||
stayDetails={stayDetails}
|
||||
/>
|
||||
@@ -153,7 +162,7 @@ export default function ModifyStay({ booking, user }: ModifyStayProps) {
|
||||
content={getModalContent()}
|
||||
onClose={handleCloseModal}
|
||||
primaryAction={
|
||||
isMainRoom && !isMultiRoom
|
||||
mainRoom && !multiRoom && canChangeDate
|
||||
? {
|
||||
label: isFirstStep
|
||||
? intl.formatMessage({ id: "Check availability" })
|
||||
|
||||
@@ -10,7 +10,7 @@ interface PriceContainerProps {
|
||||
nightsText: string
|
||||
adultsText: string
|
||||
childrenText: string
|
||||
totalChildren: number
|
||||
totalChildren?: number
|
||||
}
|
||||
|
||||
export default function PriceContainer({
|
||||
@@ -20,7 +20,7 @@ export default function PriceContainer({
|
||||
nightsText,
|
||||
adultsText,
|
||||
childrenText,
|
||||
totalChildren,
|
||||
totalChildren = 0,
|
||||
}: PriceContainerProps) {
|
||||
return (
|
||||
<div className={styles.priceContainer}>
|
||||
|
||||
@@ -6,12 +6,6 @@
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@media (min-width: 1367px) {
|
||||
.actionPanel {
|
||||
flex-direction: row;
|
||||
}
|
||||
}
|
||||
|
||||
.menu {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
@@ -19,12 +13,6 @@
|
||||
gap: var(--Spacing-x2);
|
||||
}
|
||||
|
||||
@media (min-width: 1367px) {
|
||||
.menu {
|
||||
width: 432px;
|
||||
}
|
||||
}
|
||||
|
||||
.actionPanel .menu .button,
|
||||
.actionLink {
|
||||
width: 100%;
|
||||
@@ -49,12 +37,6 @@
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
@media (min-width: 1367px) {
|
||||
.info {
|
||||
width: 256px;
|
||||
}
|
||||
}
|
||||
|
||||
.tag {
|
||||
text-transform: uppercase;
|
||||
font-size: 12px;
|
||||
@@ -66,3 +48,17 @@
|
||||
.link {
|
||||
margin-top: auto;
|
||||
}
|
||||
|
||||
@media (min-width: 1367px) {
|
||||
.actionPanel {
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.menu {
|
||||
width: 432px;
|
||||
}
|
||||
|
||||
.info {
|
||||
width: 256px;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,8 +2,9 @@
|
||||
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import { BookingStatusEnum } from "@/constants/booking"
|
||||
import { customerService } from "@/constants/currentWebHrefs"
|
||||
import { useManageStayStore } from "@/stores/my-stay/manageStayStore"
|
||||
import { useMyStayRoomDetailsStore } from "@/stores/my-stay/myStayRoomDetailsStore"
|
||||
import { preliminaryReceipt } from "@/constants/routes/myStay"
|
||||
|
||||
import AddToCalendar from "@/components/HotelReservation/AddToCalendar"
|
||||
@@ -23,7 +24,6 @@ import Subtitle from "@/components/TempDesignSystem/Text/Subtitle"
|
||||
import useLang from "@/hooks/useLang"
|
||||
import { trackMyStayPageLink } from "@/utils/tracking"
|
||||
|
||||
import { useManageStayStore } from "../../stores/manageStayStore"
|
||||
import AddToCalendarButton from "./Actions/AddToCalendarButton"
|
||||
|
||||
import styles from "./actionPanel.module.css"
|
||||
@@ -31,46 +31,45 @@ import styles from "./actionPanel.module.css"
|
||||
import type { EventAttributes } from "ics"
|
||||
|
||||
import type { Hotel } from "@/types/hotel"
|
||||
import type { BookingConfirmation } from "@/types/trpc/routers/booking/confirmation"
|
||||
|
||||
interface ActionPanelProps {
|
||||
booking: BookingConfirmation["booking"]
|
||||
hotel: Hotel
|
||||
bookingStatus: string | null
|
||||
showGuaranteeButton: boolean
|
||||
onCancelClick: () => void
|
||||
onGuaranteeClick: () => void
|
||||
}
|
||||
|
||||
export default function ActionPanel({
|
||||
booking,
|
||||
hotel,
|
||||
bookingStatus,
|
||||
showGuaranteeButton,
|
||||
onGuaranteeClick,
|
||||
}: ActionPanelProps) {
|
||||
export default function ActionPanel({ hotel }: ActionPanelProps) {
|
||||
const intl = useIntl()
|
||||
const lang = useLang()
|
||||
const {
|
||||
actions: { setActiveView },
|
||||
} = useManageStayStore()
|
||||
|
||||
const showCancelStayButton =
|
||||
bookingStatus !== BookingStatusEnum.Cancelled && booking.isCancelable
|
||||
const bookedRoom = useMyStayRoomDetailsStore((state) => state.bookedRoom)
|
||||
const linkedReservationRooms = useMyStayRoomDetailsStore(
|
||||
(state) => state.linkedReservationRooms
|
||||
)
|
||||
|
||||
const event: EventAttributes = {
|
||||
const showCancelStayButton =
|
||||
bookedRoom.isCancelable ||
|
||||
linkedReservationRooms.some((room) => room.isCancelable)
|
||||
const showGuaranteeButton =
|
||||
!bookedRoom.guaranteeInfo && !bookedRoom.isCancelled
|
||||
|
||||
const { confirmationNumber, checkInDate, checkOutDate, createDateTime } =
|
||||
bookedRoom
|
||||
|
||||
const calendarEvent: EventAttributes = {
|
||||
busyStatus: "FREE",
|
||||
categories: ["booking", "hotel", "stay"],
|
||||
created: generateDateTime(booking.createDateTime),
|
||||
created: generateDateTime(createDateTime),
|
||||
description: hotel.hotelContent.texts.descriptions?.medium,
|
||||
end: generateDateTime(booking.checkOutDate),
|
||||
end: generateDateTime(checkOutDate),
|
||||
endInputType: "utc",
|
||||
geo: {
|
||||
lat: hotel.location.latitude,
|
||||
lon: hotel.location.longitude,
|
||||
},
|
||||
location: `${hotel.address.streetAddress}, ${hotel.address.zipCode} ${hotel.address.city} ${hotel.address.country}`,
|
||||
start: generateDateTime(booking.checkInDate),
|
||||
start: generateDateTime(checkInDate),
|
||||
startInputType: "utc",
|
||||
status: "CONFIRMED",
|
||||
title: hotel.name,
|
||||
@@ -93,7 +92,7 @@ export default function ActionPanel({
|
||||
|
||||
const handleGuaranteeLateArrival = () => {
|
||||
trackMyStayPageLink("guarantee late arrival")
|
||||
onGuaranteeClick()
|
||||
setActiveView("guaranteeLateArrival")
|
||||
}
|
||||
|
||||
const handleCustomerSupport = () => {
|
||||
@@ -124,8 +123,8 @@ export default function ActionPanel({
|
||||
</Button>
|
||||
)}
|
||||
<AddToCalendar
|
||||
checkInDate={booking.checkInDate}
|
||||
event={event}
|
||||
checkInDate={checkInDate}
|
||||
event={calendarEvent}
|
||||
hotelName={hotel.name}
|
||||
renderButton={(onPress) => <AddToCalendarButton onPress={onPress} />}
|
||||
/>
|
||||
@@ -157,7 +156,7 @@ export default function ActionPanel({
|
||||
{intl.formatMessage({ id: "Reference number" })}
|
||||
</span>
|
||||
<Subtitle color="burgundy" textAlign="right">
|
||||
{booking.confirmationNumber}
|
||||
{confirmationNumber}
|
||||
</Subtitle>
|
||||
</div>
|
||||
<div>
|
||||
|
||||
@@ -2,98 +2,90 @@
|
||||
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import { BookingStatusEnum } from "@/constants/booking"
|
||||
import { useManageStayStore } from "@/stores/my-stay/manageStayStore"
|
||||
import { useMyStayRoomDetailsStore } from "@/stores/my-stay/myStayRoomDetailsStore"
|
||||
|
||||
import { ChevronDownIcon } from "@/components/Icons"
|
||||
import Modal from "@/components/Modal"
|
||||
import Button from "@/components/TempDesignSystem/Button"
|
||||
|
||||
import GuaranteeLateArrival from "../GuaranteeLateArrival"
|
||||
import { useManageStayStore } from "../stores/manageStayStore"
|
||||
import CancelStay from "./ActionPanel/Actions/CancelStay"
|
||||
import ModifyStay from "./ActionPanel/Actions/ModifyStay"
|
||||
import ActionPanel from "./ActionPanel"
|
||||
|
||||
import type { Hotel } from "@/types/hotel"
|
||||
import type { BookingConfirmation } from "@/types/trpc/routers/booking/confirmation"
|
||||
import { type CreditCard, type User } from "@/types/user"
|
||||
import { type CreditCard } from "@/types/user"
|
||||
|
||||
interface ManageStayProps {
|
||||
booking: BookingConfirmation["booking"]
|
||||
hotel: Hotel
|
||||
setBookingStatus: (status: BookingStatusEnum) => void
|
||||
bookingStatus: string | null
|
||||
user: User | null
|
||||
savedCreditCards: CreditCard[] | null
|
||||
refId: string
|
||||
isLoggedIn: boolean
|
||||
}
|
||||
|
||||
export default function ManageStay({
|
||||
booking,
|
||||
hotel,
|
||||
setBookingStatus,
|
||||
bookingStatus,
|
||||
user,
|
||||
savedCreditCards,
|
||||
refId,
|
||||
isLoggedIn,
|
||||
}: ManageStayProps) {
|
||||
const intl = useIntl()
|
||||
const {
|
||||
isOpen,
|
||||
activeView,
|
||||
actions: { setIsOpen, handleCloseModal, setActiveView },
|
||||
actions: { setIsOpen, handleCloseModal },
|
||||
} = useManageStayStore()
|
||||
|
||||
const showGuaranteeButton =
|
||||
bookingStatus !== BookingStatusEnum.Cancelled && !booking.guaranteeInfo
|
||||
const bookedRoom = useMyStayRoomDetailsStore((state) => state.bookedRoom)
|
||||
const linkedReservationRooms = useMyStayRoomDetailsStore(
|
||||
(state) => state.linkedReservationRooms
|
||||
)
|
||||
|
||||
const allRoomsCancelled =
|
||||
linkedReservationRooms.every((room) => room.isCancelled) &&
|
||||
bookedRoom.isCancelled
|
||||
|
||||
function renderContent() {
|
||||
switch (activeView) {
|
||||
case "cancelStay":
|
||||
return (
|
||||
<CancelStay
|
||||
booking={booking}
|
||||
hotel={hotel}
|
||||
setBookingStatus={() =>
|
||||
setBookingStatus(BookingStatusEnum.Cancelled)
|
||||
}
|
||||
/>
|
||||
)
|
||||
return <CancelStay hotel={hotel} />
|
||||
case "modifyStay":
|
||||
return <ModifyStay booking={booking} user={user} />
|
||||
return <ModifyStay isLoggedIn={isLoggedIn} />
|
||||
case "guaranteeLateArrival":
|
||||
return (
|
||||
<GuaranteeLateArrival
|
||||
booking={booking}
|
||||
handleCloseModal={handleCloseModal}
|
||||
handleBackToManageStay={() => setActiveView("actionPanel")}
|
||||
savedCreditCards={savedCreditCards}
|
||||
refId={refId}
|
||||
/>
|
||||
)
|
||||
default:
|
||||
return (
|
||||
<ActionPanel
|
||||
booking={booking}
|
||||
hotel={hotel}
|
||||
bookingStatus={bookingStatus}
|
||||
onCancelClick={() => setActiveView("cancelStay")}
|
||||
onGuaranteeClick={() => setActiveView("guaranteeLateArrival")}
|
||||
showGuaranteeButton={showGuaranteeButton}
|
||||
/>
|
||||
)
|
||||
return <ActionPanel hotel={hotel} />
|
||||
}
|
||||
}
|
||||
|
||||
return (
|
||||
<>
|
||||
<Button variant="icon" fullWidth onClick={() => setIsOpen(true)}>
|
||||
<Button
|
||||
variant="icon"
|
||||
fullWidth
|
||||
onClick={() => setIsOpen(true)}
|
||||
size="small"
|
||||
disabled={allRoomsCancelled}
|
||||
>
|
||||
{intl.formatMessage({ id: "Manage stay" })}
|
||||
<ChevronDownIcon width={24} height={24} color="burgundy" />
|
||||
</Button>
|
||||
<Modal isOpen={isOpen} onToggle={handleCloseModal} withActions hideHeader>
|
||||
{renderContent()}
|
||||
</Modal>
|
||||
{isOpen && (
|
||||
<Modal
|
||||
isOpen={isOpen}
|
||||
onToggle={handleCloseModal}
|
||||
withActions
|
||||
hideHeader
|
||||
>
|
||||
{renderContent()}
|
||||
</Modal>
|
||||
)}
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -0,0 +1,45 @@
|
||||
import SkeletonShimmer from "@/components/SkeletonShimmer"
|
||||
import Divider from "@/components/TempDesignSystem/Divider"
|
||||
|
||||
import styles from "./multiRoom.module.css"
|
||||
|
||||
export default function MultiRoomSkeleton() {
|
||||
return (
|
||||
<div className={styles.multiRoom}>
|
||||
<div className={styles.roomName}>
|
||||
<SkeletonShimmer width="50%" height="30px" />
|
||||
</div>
|
||||
<div className={styles.roomHeader}>
|
||||
<SkeletonShimmer width="100%" height="23px" />
|
||||
</div>
|
||||
<div className={styles.multiRoomCard}>
|
||||
<div className={styles.imageContainer}>
|
||||
<SkeletonShimmer width="100%" height="100%" />
|
||||
</div>
|
||||
<div className={styles.details}>
|
||||
<div className={styles.row}>
|
||||
<SkeletonShimmer width="60px" height="23px" />
|
||||
<SkeletonShimmer width="110px" height="23px" />
|
||||
</div>
|
||||
<div className={styles.row}>
|
||||
<SkeletonShimmer width="55px" height="23px" />
|
||||
<SkeletonShimmer width="130px" height="23px" />
|
||||
</div>
|
||||
<div className={styles.row}>
|
||||
<SkeletonShimmer width="75px" height="23px" />
|
||||
<SkeletonShimmer width="155px" height="23px" />
|
||||
</div>
|
||||
<div className={styles.row}>
|
||||
<SkeletonShimmer width="75px" height="23px" />
|
||||
<SkeletonShimmer width="65px" height="23px" />
|
||||
</div>
|
||||
<Divider color="subtle" />
|
||||
<div className={styles.row}>
|
||||
<SkeletonShimmer width="150px" height="30px" />
|
||||
<SkeletonShimmer width="150px" height="30px" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
"use client"
|
||||
|
||||
import useSidePeekStore from "@/stores/sidepeek"
|
||||
|
||||
import { ExpandIcon } from "@/components/Icons"
|
||||
import Button from "@/components/TempDesignSystem/Button"
|
||||
|
||||
import styles from "./toggleSidePeek.module.css"
|
||||
|
||||
import { SidePeekEnum } from "@/types/components/hotelReservation/sidePeek"
|
||||
import type { ToggleSidePeekProps } from "@/types/components/hotelReservation/toggleSidePeekProps"
|
||||
|
||||
export default function ToggleSidePeek({
|
||||
hotelId,
|
||||
roomTypeCode,
|
||||
user,
|
||||
confirmationNumber,
|
||||
}: ToggleSidePeekProps) {
|
||||
const openSidePeek = useSidePeekStore((state) => state.openSidePeek)
|
||||
|
||||
return (
|
||||
<Button
|
||||
onClick={() =>
|
||||
openSidePeek({
|
||||
key: SidePeekEnum.bookedRoomDetails,
|
||||
hotelId,
|
||||
roomTypeCode,
|
||||
user,
|
||||
confirmationNumber,
|
||||
})
|
||||
}
|
||||
theme="base"
|
||||
size="small"
|
||||
variant="icon"
|
||||
intent="text"
|
||||
wrapping
|
||||
>
|
||||
<div className={styles.iconContainer}>
|
||||
<ExpandIcon />
|
||||
</div>
|
||||
</Button>
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,300 @@
|
||||
"use client"
|
||||
import { use, useEffect } from "react"
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import { Typography } from "@scandic-hotels/design-system/Typography"
|
||||
|
||||
import { BookingStatusEnum } from "@/constants/booking"
|
||||
import { dt } from "@/lib/dt"
|
||||
import { useMyStayRoomDetailsStore } from "@/stores/my-stay/myStayRoomDetailsStore"
|
||||
import { useMyStayTotalPriceStore } from "@/stores/my-stay/myStayTotalPrice"
|
||||
|
||||
import CrossCircleIcon from "@/components/Icons/CrossCircle"
|
||||
import Image from "@/components/Image"
|
||||
import Divider from "@/components/TempDesignSystem/Divider"
|
||||
import IconChip from "@/components/TempDesignSystem/IconChip"
|
||||
import useLang from "@/hooks/useLang"
|
||||
|
||||
import { getIconForFeatureCode } from "../../utils"
|
||||
import Price from "../Price"
|
||||
import { hasBreakfastPackage } from "../utils/hasBreakfastPackage"
|
||||
import { mapRoomDetails } from "../utils/mapRoomDetails"
|
||||
import MultiRoomSkeleton from "./MultiRoomSkeleton"
|
||||
import ToggleSidePeek from "./ToggleSidePeek"
|
||||
|
||||
import styles from "./multiRoom.module.css"
|
||||
|
||||
import { RoomPackageCodeEnum } from "@/types/components/hotelReservation/selectRate/roomFilter"
|
||||
import type { Room } from "@/types/hotel"
|
||||
import type { BookingConfirmation } from "@/types/trpc/routers/booking/confirmation"
|
||||
import type { User } from "@/types/user"
|
||||
|
||||
interface MultiRoomProps {
|
||||
booking?: BookingConfirmation["booking"]
|
||||
room?:
|
||||
| (Room & {
|
||||
bedType: Room["roomTypes"][number]
|
||||
})
|
||||
| null
|
||||
bookingPromise?: Promise<BookingConfirmation | null>
|
||||
index?: number
|
||||
user?: User | null
|
||||
}
|
||||
|
||||
export default function MultiRoom({
|
||||
room: initialRoom,
|
||||
booking: initialBooking,
|
||||
bookingPromise,
|
||||
index,
|
||||
user,
|
||||
}: MultiRoomProps) {
|
||||
const intl = useIntl()
|
||||
const lang = useLang()
|
||||
const addRoomPrice = useMyStayTotalPriceStore(
|
||||
(state) => state.actions.addRoomPrice
|
||||
)
|
||||
|
||||
const addLinkedReservationRoom = useMyStayRoomDetailsStore(
|
||||
(state) => state.actions.addLinkedReservationRoom
|
||||
)
|
||||
|
||||
const bookedRoom = useMyStayRoomDetailsStore((state) => state.bookedRoom)
|
||||
const linkedReservationRooms = useMyStayRoomDetailsStore(
|
||||
(state) => state.linkedReservationRooms
|
||||
)
|
||||
|
||||
const allRooms = [bookedRoom, ...linkedReservationRooms]
|
||||
|
||||
// Resolve promise data directly without setState
|
||||
let bookingInfo = initialBooking
|
||||
let roomInfo = initialRoom
|
||||
|
||||
if (bookingPromise) {
|
||||
const promiseData = use(bookingPromise)
|
||||
if (promiseData) {
|
||||
bookingInfo = promiseData.booking
|
||||
roomInfo = promiseData.room
|
||||
}
|
||||
}
|
||||
const isBookingCancelled =
|
||||
bookingInfo?.reservationStatus === BookingStatusEnum.Cancelled
|
||||
|
||||
const multiRoom = allRooms.find(
|
||||
(room) => room.confirmationNumber === bookingInfo?.confirmationNumber
|
||||
)
|
||||
|
||||
// Update stores when data is available
|
||||
useEffect(() => {
|
||||
if (bookingInfo) {
|
||||
addRoomPrice({
|
||||
id: bookingInfo.confirmationNumber,
|
||||
totalPrice: isBookingCancelled ? 0 : bookingInfo.totalPrice,
|
||||
currencyCode: bookingInfo.currencyCode,
|
||||
isMainBooking: false,
|
||||
})
|
||||
|
||||
// Add room details to the store
|
||||
addLinkedReservationRoom(
|
||||
mapRoomDetails({
|
||||
booking: bookingInfo,
|
||||
room: roomInfo ?? null,
|
||||
roomNumber: index !== undefined ? index + 2 : 1,
|
||||
})
|
||||
)
|
||||
}
|
||||
}, [
|
||||
bookingInfo,
|
||||
roomInfo,
|
||||
index,
|
||||
isBookingCancelled,
|
||||
addRoomPrice,
|
||||
addLinkedReservationRoom,
|
||||
])
|
||||
|
||||
if (!multiRoom?.roomNumber) return <MultiRoomSkeleton />
|
||||
|
||||
const {
|
||||
adults,
|
||||
checkInDate,
|
||||
childrenAges,
|
||||
confirmationNumber,
|
||||
cancellationNumber,
|
||||
hotelId,
|
||||
roomPrice,
|
||||
packages,
|
||||
rateDefinition,
|
||||
isCancelled,
|
||||
} = multiRoom
|
||||
|
||||
const fromDate = dt(checkInDate).locale(lang)
|
||||
|
||||
const adultsMsg = intl.formatMessage(
|
||||
{ id: "{adults, plural, one {# adult} other {# adults}}" },
|
||||
{
|
||||
adults: adults,
|
||||
}
|
||||
)
|
||||
|
||||
const childrenMsg = intl.formatMessage(
|
||||
{
|
||||
id: "{children, plural, one {# child} other {# children}}",
|
||||
},
|
||||
{
|
||||
children: childrenAges.length,
|
||||
}
|
||||
)
|
||||
|
||||
const adultsOnlyMsg = adultsMsg
|
||||
const adultsAndChildrenMsg = [adultsMsg, childrenMsg].join(", ")
|
||||
|
||||
return (
|
||||
<article className={styles.multiRoom}>
|
||||
<Typography variant="Title/smRegular">
|
||||
<h3 className={styles.roomName}>{roomInfo?.name}</h3>
|
||||
</Typography>
|
||||
<div className={styles.roomHeader}>
|
||||
{isCancelled ? (
|
||||
<IconChip
|
||||
color={"red"}
|
||||
icon={<CrossCircleIcon width={20} height={20} color="red" />}
|
||||
>
|
||||
<Typography variant="Body/Supporting text (caption)/smBold">
|
||||
<span>{intl.formatMessage({ id: "Cancelled" })}</span>
|
||||
</Typography>
|
||||
</IconChip>
|
||||
) : (
|
||||
<div className={styles.chip}>
|
||||
<Typography variant="Tag/sm">
|
||||
<span>
|
||||
{intl.formatMessage({ id: "Room" }) +
|
||||
" " +
|
||||
(index !== undefined ? index + 2 : 1)}
|
||||
</span>
|
||||
</Typography>
|
||||
</div>
|
||||
)}
|
||||
<div className={styles.reference}>
|
||||
<Typography variant="Body/Supporting text (caption)/smBold">
|
||||
{isCancelled ? (
|
||||
<span>{intl.formatMessage({ id: "Cancellation no" })}:</span>
|
||||
) : (
|
||||
<span>{intl.formatMessage({ id: "Reference" })}:</span>
|
||||
)}
|
||||
</Typography>
|
||||
<Typography variant="Body/Supporting text (caption)/smRegular">
|
||||
{isCancelled ? (
|
||||
<span className={styles.cancellationNumber}>
|
||||
{cancellationNumber}
|
||||
</span>
|
||||
) : (
|
||||
<span>{confirmationNumber}</span>
|
||||
)}
|
||||
</Typography>
|
||||
</div>
|
||||
<div className={styles.toggleSidePeek}>
|
||||
<ToggleSidePeek
|
||||
hotelId={hotelId}
|
||||
roomTypeCode={roomInfo?.roomTypes[0].code}
|
||||
user={user ?? undefined}
|
||||
confirmationNumber={confirmationNumber}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
className={`${styles.multiRoomCard} ${isCancelled ? styles.cancelled : ""}`}
|
||||
>
|
||||
{packages &&
|
||||
packages.some((item) =>
|
||||
Object.values(RoomPackageCodeEnum).includes(
|
||||
item.code as RoomPackageCodeEnum
|
||||
)
|
||||
) && (
|
||||
<div className={styles.packages}>
|
||||
{packages
|
||||
.filter((item) =>
|
||||
Object.values(RoomPackageCodeEnum).includes(
|
||||
item.code as RoomPackageCodeEnum
|
||||
)
|
||||
)
|
||||
.map((item) => {
|
||||
const Icon = getIconForFeatureCode(
|
||||
item.code as RoomPackageCodeEnum
|
||||
)
|
||||
return (
|
||||
<span className={styles.package} key={item.code}>
|
||||
<Icon width={16} height={16} color="burgundy" />
|
||||
</span>
|
||||
)
|
||||
})}
|
||||
</div>
|
||||
)}
|
||||
<div className={styles.imageContainer}>
|
||||
<Image
|
||||
src={roomInfo?.images[0]?.imageSizes.small ?? ""}
|
||||
alt={roomInfo?.name ?? ""}
|
||||
fill
|
||||
/>
|
||||
</div>
|
||||
<div className={styles.details}>
|
||||
<div className={styles.row}>
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>{intl.formatMessage({ id: "Guests" })}</p>
|
||||
</Typography>
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p>
|
||||
{childrenAges.length > 0 ? adultsAndChildrenMsg : adultsOnlyMsg}
|
||||
</p>
|
||||
</Typography>
|
||||
</div>
|
||||
<div className={styles.row}>
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>{intl.formatMessage({ id: "Terms" })}</p>
|
||||
</Typography>
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p>{rateDefinition.cancellationText}</p>
|
||||
</Typography>
|
||||
</div>
|
||||
<div className={styles.row}>
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>{intl.formatMessage({ id: "Modify By" })}</p>
|
||||
</Typography>
|
||||
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p color="uiTextHighContrast">
|
||||
18:00, {fromDate.format("dddd D MMM")}
|
||||
</p>
|
||||
</Typography>
|
||||
</div>
|
||||
<div className={styles.row}>
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>{intl.formatMessage({ id: "Breakfast" })}</p>
|
||||
</Typography>
|
||||
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p color="uiTextHighContrast">
|
||||
{hasBreakfastPackage(
|
||||
packages?.map((pkg) => ({
|
||||
code: pkg.code,
|
||||
})) ?? []
|
||||
)
|
||||
? intl.formatMessage({ id: "Included" })
|
||||
: intl.formatMessage({ id: "Not included" })}
|
||||
</p>
|
||||
</Typography>
|
||||
</div>
|
||||
<Divider color="subtle" />
|
||||
<div className={styles.row}>
|
||||
<Typography variant="Body/Lead text">
|
||||
<p>{intl.formatMessage({ id: "Room total" })}</p>
|
||||
</Typography>
|
||||
<Price
|
||||
price={isCancelled ? 0 : roomPrice.perStay.local.price}
|
||||
variant="Body/Paragraph/mdBold"
|
||||
isMember={rateDefinition.isMemberRate}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
.multiRoom {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--Spacing-x2);
|
||||
padding: 0 var(--Spacing-x2);
|
||||
}
|
||||
|
||||
.cancelled {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.cancellationNumber {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
.multiRoomCard {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--Spacing-x2);
|
||||
background-color: var(--Base-Background-Primary-Normal);
|
||||
border-radius: var(--Corner-radius-Large);
|
||||
border: 1px solid var(--Base-Border-Subtle);
|
||||
overflow: hidden;
|
||||
padding-bottom: var(--Spacing-x3);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.imageContainer {
|
||||
width: 100%;
|
||||
height: 342px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.roomName {
|
||||
color: var(--Scandic-Brand-Burgundy);
|
||||
}
|
||||
|
||||
.roomHeader {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--Spacing-x-one-and-half);
|
||||
}
|
||||
|
||||
.chip {
|
||||
background-color: var(--Scandic-Peach-30);
|
||||
color: var(--Scandic-Red-100);
|
||||
border-radius: var(--Corner-radius-Small);
|
||||
padding: var(--Spacing-x-half) var(--Spacing-x1);
|
||||
height: fit-content;
|
||||
}
|
||||
|
||||
.toggleSidePeek {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.reference {
|
||||
display: flex;
|
||||
gap: var(--Spacing-x-half);
|
||||
}
|
||||
|
||||
.details {
|
||||
display: flex;
|
||||
padding: var(--Spacing-x-one-and-half) var(--Spacing-x2) 0;
|
||||
gap: var(--Spacing-x2);
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.packages {
|
||||
position: absolute;
|
||||
top: 304px;
|
||||
left: 10px;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: var(--Spacing-x1);
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.package {
|
||||
background-color: var(--Main-Grey-White);
|
||||
padding: var(--Spacing-x-half) var(--Spacing-x1);
|
||||
border-radius: var(--Corner-radius-Small);
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.multiRoom {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
.iconContainer {
|
||||
display: flex;
|
||||
border: 1px solid var(--Base-Border-Subtle);
|
||||
border-radius: var(--Corner-radius-Small);
|
||||
padding: var(--Spacing-x-half);
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
"use client"
|
||||
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import { Typography } from "@scandic-hotels/design-system/Typography"
|
||||
|
||||
import { useMyStayTotalPriceStore } from "@/stores/my-stay/myStayTotalPrice"
|
||||
|
||||
import SkeletonShimmer from "@/components/SkeletonShimmer"
|
||||
import { formatPrice } from "@/utils/numberFormatting"
|
||||
|
||||
import styles from "./price.module.css"
|
||||
|
||||
export type Variant =
|
||||
| "Title/Subtitle/lg"
|
||||
| "Title/Subtitle/md"
|
||||
| "Body/Paragraph/mdBold"
|
||||
|
||||
export default function Price({
|
||||
price,
|
||||
variant,
|
||||
isMember,
|
||||
}: {
|
||||
price: number | null
|
||||
variant: Variant
|
||||
isMember?: boolean
|
||||
}) {
|
||||
const intl = useIntl()
|
||||
const currencyCode = useMyStayTotalPriceStore((state) => state.currencyCode)
|
||||
|
||||
if (price === null) {
|
||||
return <SkeletonShimmer width={"100px"} />
|
||||
}
|
||||
|
||||
return (
|
||||
<Typography variant={variant}>
|
||||
<p className={isMember ? styles.memberPrice : styles.nonMemberPrice}>
|
||||
{formatPrice(intl, price, currencyCode)}
|
||||
</p>
|
||||
</Typography>
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
.memberPrice {
|
||||
color: var(--Scandic-Red-60);
|
||||
}
|
||||
|
||||
.nonMemberPrice {
|
||||
color: var(--Main-Grey-100);
|
||||
}
|
||||
@@ -3,6 +3,8 @@
|
||||
import { Fragment } from "react"
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import { Typography } from "@scandic-hotels/design-system/Typography"
|
||||
|
||||
import { dt } from "@/lib/dt"
|
||||
|
||||
import { PriceTagIcon } from "@/components/Icons"
|
||||
@@ -13,9 +15,8 @@ import { formatPrice } from "@/utils/numberFormatting"
|
||||
|
||||
import styles from "./priceDetailsTable.module.css"
|
||||
|
||||
import type { RoomPrice } from "@/types/components/hotelReservation/enterDetails/details"
|
||||
import type { Price } from "@/types/components/hotelReservation/price"
|
||||
import type { Child } from "@/types/components/hotelReservation/selectRate/selectRate"
|
||||
import type { Room } from "@/stores/my-stay/myStayRoomDetailsStore"
|
||||
|
||||
function Row({
|
||||
label,
|
||||
@@ -29,10 +30,26 @@ function Row({
|
||||
return (
|
||||
<tr className={styles.row}>
|
||||
<td>
|
||||
<Caption type={bold ? "bold" : undefined}>{label}</Caption>
|
||||
<Typography
|
||||
variant={
|
||||
bold
|
||||
? "Body/Supporting text (caption)/smBold"
|
||||
: "Body/Supporting text (caption)/smRegular"
|
||||
}
|
||||
>
|
||||
<span>{label}</span>
|
||||
</Typography>
|
||||
</td>
|
||||
<td className={styles.price}>
|
||||
<Caption type={bold ? "bold" : undefined}>{value}</Caption>
|
||||
<Typography
|
||||
variant={
|
||||
bold
|
||||
? "Body/Supporting text (caption)/smBold"
|
||||
: "Body/Supporting text (caption)/smRegular"
|
||||
}
|
||||
>
|
||||
<span>{value}</span>
|
||||
</Typography>
|
||||
</td>
|
||||
</tr>
|
||||
)
|
||||
@@ -50,26 +67,46 @@ function TableSectionHeader({
|
||||
subtitle?: string
|
||||
}) {
|
||||
return (
|
||||
<tr>
|
||||
<th colSpan={2}>
|
||||
<Body>{title}</Body>
|
||||
{subtitle ? <Body>{subtitle}</Body> : null}
|
||||
</th>
|
||||
</tr>
|
||||
<>
|
||||
<tr>
|
||||
<th colSpan={2}>
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<span>{title}</span>
|
||||
</Typography>
|
||||
</th>
|
||||
</tr>
|
||||
{subtitle && (
|
||||
<tr>
|
||||
<th colSpan={2}>
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<span>{subtitle}</span>
|
||||
</Typography>
|
||||
</th>
|
||||
</tr>
|
||||
)}
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
interface Room {
|
||||
adults: number
|
||||
childrenInRoom: Child[] | undefined
|
||||
roomPrice: RoomPrice
|
||||
roomType: string
|
||||
export type RoomPriceDetails = Pick<
|
||||
Room,
|
||||
| "adults"
|
||||
| "bedType"
|
||||
| "breakfast"
|
||||
| "childrenInRoom"
|
||||
| "roomPrice"
|
||||
| "roomName"
|
||||
| "packages"
|
||||
| "isCancelled"
|
||||
> & {
|
||||
guest?: Room["guest"]
|
||||
}
|
||||
|
||||
export interface PriceDetailsTableProps {
|
||||
bookingCode?: string | null
|
||||
fromDate: string
|
||||
rooms: Room[]
|
||||
bookedRoom: RoomPriceDetails
|
||||
linkedReservationRooms: RoomPriceDetails[]
|
||||
toDate: string
|
||||
totalPrice: Price
|
||||
vat: number
|
||||
@@ -78,7 +115,8 @@ export interface PriceDetailsTableProps {
|
||||
export default function PriceDetailsTable({
|
||||
bookingCode,
|
||||
fromDate,
|
||||
rooms,
|
||||
bookedRoom,
|
||||
linkedReservationRooms,
|
||||
toDate,
|
||||
totalPrice,
|
||||
vat,
|
||||
@@ -86,6 +124,10 @@ export default function PriceDetailsTable({
|
||||
const intl = useIntl()
|
||||
const lang = useLang()
|
||||
|
||||
const rooms = [bookedRoom, ...linkedReservationRooms].filter(
|
||||
(room) => !room.isCancelled
|
||||
)
|
||||
|
||||
const diff = dt(toDate).diff(fromDate, "days")
|
||||
const nights = intl.formatMessage(
|
||||
{ id: "{totalNights, plural, one {# night} other {# nights}}" },
|
||||
@@ -99,6 +141,7 @@ export default function PriceDetailsTable({
|
||||
const duration = ` ${dt(fromDate).locale(lang).format("ddd, D MMM")}
|
||||
-
|
||||
${dt(toDate).locale(lang).format("ddd, D MMM")} (${nights})`
|
||||
|
||||
return (
|
||||
<table className={styles.priceDetailsTable}>
|
||||
{rooms.map((room, idx) => {
|
||||
@@ -106,11 +149,20 @@ export default function PriceDetailsTable({
|
||||
<Fragment key={idx}>
|
||||
<TableSection>
|
||||
{rooms.length > 1 && (
|
||||
<Body textTransform="bold">
|
||||
{intl.formatMessage({ id: "Room" })} {idx + 1}
|
||||
</Body>
|
||||
<tr>
|
||||
<td>
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<span>
|
||||
{intl.formatMessage(
|
||||
{ id: "Room {roomIndex}" },
|
||||
{ roomIndex: idx + 1 }
|
||||
)}
|
||||
</span>
|
||||
</Typography>
|
||||
</td>
|
||||
</tr>
|
||||
)}
|
||||
<TableSectionHeader title={room.roomType} subtitle={duration} />
|
||||
<TableSectionHeader title={room.roomName} subtitle={duration} />
|
||||
<Row
|
||||
label={intl.formatMessage({ id: "Average price per night" })}
|
||||
value={formatPrice(
|
||||
@@ -119,6 +171,19 @@ export default function PriceDetailsTable({
|
||||
room.roomPrice.perNight.local.currency
|
||||
)}
|
||||
/>
|
||||
{room.packages
|
||||
? room.packages.map((feature) => (
|
||||
<Row
|
||||
key={feature.code}
|
||||
label={feature.description}
|
||||
value={formatPrice(
|
||||
intl,
|
||||
+feature.localPrice.totalPrice,
|
||||
feature.localPrice.currency
|
||||
)}
|
||||
/>
|
||||
))
|
||||
: null}
|
||||
<Row
|
||||
bold
|
||||
label={intl.formatMessage({ id: "Room charge" })}
|
||||
@@ -129,6 +194,52 @@ export default function PriceDetailsTable({
|
||||
)}
|
||||
/>
|
||||
</TableSection>
|
||||
{room.breakfast ? (
|
||||
<TableSection>
|
||||
<Row
|
||||
label={intl.formatMessage(
|
||||
{
|
||||
id: "Breakfast ({totalAdults, plural, one {# adult} other {# adults}}) x {totalBreakfasts}",
|
||||
},
|
||||
{ totalAdults: room.adults, totalBreakfasts: diff }
|
||||
)}
|
||||
value={formatPrice(
|
||||
intl,
|
||||
room.breakfast.localPrice.price * room.adults,
|
||||
room.breakfast.localPrice.currency
|
||||
)}
|
||||
/>
|
||||
{room.childrenInRoom?.length ? (
|
||||
<Row
|
||||
label={intl.formatMessage(
|
||||
{
|
||||
id: "Breakfast ({totalChildren, plural, one {# child} other {# children}}) x {totalBreakfasts}",
|
||||
},
|
||||
{
|
||||
totalChildren: room.childrenInRoom.length,
|
||||
totalBreakfasts: diff,
|
||||
}
|
||||
)}
|
||||
value={formatPrice(
|
||||
intl,
|
||||
0,
|
||||
room.breakfast.localPrice.currency
|
||||
)}
|
||||
/>
|
||||
) : null}
|
||||
<Row
|
||||
bold
|
||||
label={intl.formatMessage({
|
||||
id: "Breakfast charge",
|
||||
})}
|
||||
value={formatPrice(
|
||||
intl,
|
||||
room.breakfast.localPrice.price * room.adults * diff,
|
||||
room.breakfast.localPrice.currency
|
||||
)}
|
||||
/>
|
||||
</TableSection>
|
||||
) : null}
|
||||
</Fragment>
|
||||
)
|
||||
})}
|
||||
@@ -29,6 +29,7 @@
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.priceDetailsTable {
|
||||
min-width: 512px;
|
||||
@@ -0,0 +1,39 @@
|
||||
"use client"
|
||||
import { dt } from "@/lib/dt"
|
||||
import { useMyStayRoomDetailsStore } from "@/stores/my-stay/myStayRoomDetailsStore"
|
||||
import { useMyStayTotalPriceStore } from "@/stores/my-stay/myStayTotalPrice"
|
||||
|
||||
import PriceDetailsModal from "../../PriceDetailsModal"
|
||||
import PriceDetailsTable from "./PriceDetailsTable"
|
||||
|
||||
import styles from "./priceDetails.module.css"
|
||||
|
||||
export default function PriceDetails() {
|
||||
const bookedRoom = useMyStayRoomDetailsStore((state) => state.bookedRoom)
|
||||
const linkedReservationRooms = useMyStayRoomDetailsStore(
|
||||
(state) => state.linkedReservationRooms
|
||||
)
|
||||
const currencyCode = useMyStayTotalPriceStore((state) => state.currencyCode)
|
||||
const totalPrice = useMyStayTotalPriceStore((state) => state.totalPrice)
|
||||
|
||||
return (
|
||||
<div className={styles.priceDetailsModal}>
|
||||
<PriceDetailsModal>
|
||||
<PriceDetailsTable
|
||||
fromDate={dt(bookedRoom.checkInDate).format("YYYY-MM-DD")}
|
||||
toDate={dt(bookedRoom.checkOutDate).format("YYYY-MM-DD")}
|
||||
linkedReservationRooms={linkedReservationRooms}
|
||||
bookedRoom={bookedRoom}
|
||||
totalPrice={{
|
||||
requested: undefined,
|
||||
local: {
|
||||
currency: currencyCode,
|
||||
price: totalPrice ?? 0,
|
||||
},
|
||||
}}
|
||||
vat={bookedRoom.vatPercentage}
|
||||
/>
|
||||
</PriceDetailsModal>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
.priceDetailsModal {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
@@ -1,25 +1,45 @@
|
||||
import { Typography } from "@scandic-hotels/design-system/Typography"
|
||||
|
||||
import Image from "@/components/Image"
|
||||
import Button from "@/components/TempDesignSystem/Button"
|
||||
import Link from "@/components/TempDesignSystem/Link"
|
||||
import Body from "@/components/TempDesignSystem/Text/Body"
|
||||
import Title from "@/components/TempDesignSystem/Text/Title"
|
||||
|
||||
import styles from "./promo.module.css"
|
||||
|
||||
import type { PromoProps } from "@/types/components/hotelReservation/bookingConfirmation/promo"
|
||||
|
||||
export default function Promo({ buttonText, href, text, title }: PromoProps) {
|
||||
export default function Promo({
|
||||
buttonText,
|
||||
href,
|
||||
text,
|
||||
title,
|
||||
image,
|
||||
}: PromoProps) {
|
||||
return (
|
||||
<Link className={styles.link} color="none" href={href}>
|
||||
<Link color="none" href={href}>
|
||||
<article className={styles.promo}>
|
||||
<Title color="white" level="h4">
|
||||
{title}
|
||||
</Title>
|
||||
<Body className={styles.text} color="white" textAlign="center">
|
||||
{text}
|
||||
</Body>
|
||||
<Button asChild intent="primary" size="small" theme="primaryStrong">
|
||||
<div>{buttonText}</div>
|
||||
</Button>
|
||||
{image && (
|
||||
<div className={styles.imageContainer}>
|
||||
<Image
|
||||
className={styles.image}
|
||||
src={image.imageSizes.large}
|
||||
alt={image.metaData.altText}
|
||||
fill
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
<div className={styles.overlay} />
|
||||
<div className={styles.content}>
|
||||
<Typography variant="Title/smRegular">
|
||||
<p>{title}</p>
|
||||
</Typography>
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p className={styles.text}>{text}</p>
|
||||
</Typography>
|
||||
<Button asChild intent="secondary" size="small" theme="primaryStrong">
|
||||
<span>{buttonText}</span>
|
||||
</Button>
|
||||
</div>
|
||||
</article>
|
||||
</Link>
|
||||
)
|
||||
|
||||
@@ -1,34 +1,71 @@
|
||||
.promo {
|
||||
align-items: center;
|
||||
background-position: 50%;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
height: 480px;
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 0 480px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.content {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
align-items: center;
|
||||
display: flex;
|
||||
flex: 1 0 100%;
|
||||
flex-direction: column;
|
||||
gap: var(--Spacing-x2);
|
||||
height: 480px;
|
||||
justify-content: center;
|
||||
padding: var(--Spacing-x4) var(--Spacing-x3);
|
||||
color: var(--UI-Opacity-White-100);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.text {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.imageContainer {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
background-image: linear-gradient(
|
||||
180deg,
|
||||
rgba(0, 0, 0, 0) 0%,
|
||||
rgba(0, 0, 0, 0.36) 37.88%,
|
||||
rgba(0, 0, 0, 0.75) 100%
|
||||
);
|
||||
}
|
||||
|
||||
.overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-image: linear-gradient(
|
||||
180deg,
|
||||
rgba(0, 0, 0, 0) 0%,
|
||||
rgba(0, 0, 0, 0.36) 37.88%,
|
||||
rgba(0, 0, 0, 0.75) 100%
|
||||
);
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.image {
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.promo {
|
||||
border-radius: var(--Medium, 8px);
|
||||
border-radius: var(--Corner-radius-xLarge);
|
||||
}
|
||||
|
||||
.content {
|
||||
flex: 1 0 480px;
|
||||
}
|
||||
|
||||
.text {
|
||||
width: 400px;
|
||||
}
|
||||
}
|
||||
|
||||
.link .promo {
|
||||
background-image:
|
||||
linear-gradient(
|
||||
180deg,
|
||||
rgba(0, 0, 0, 0) 0%,
|
||||
rgba(0, 0, 0, 0.36) 37.88%,
|
||||
rgba(0, 0, 0, 0.75) 100%
|
||||
),
|
||||
url("/_static/img/Scandic_Family_Breakfast.jpg");
|
||||
}
|
||||
|
||||
.text {
|
||||
max-width: 400px;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,35 @@
|
||||
import SkeletonShimmer from "@/components/SkeletonShimmer"
|
||||
import Divider from "@/components/TempDesignSystem/Divider"
|
||||
|
||||
import styles from "./referenceCard.module.css"
|
||||
|
||||
export default function ReferenceCardSkeleton() {
|
||||
return (
|
||||
<div className={styles.referenceCard}>
|
||||
<div className={styles.referenceRow}>
|
||||
<SkeletonShimmer width="100%" height="28px" />
|
||||
</div>
|
||||
<Divider color="subtle" className={styles.divider} />
|
||||
<div className={styles.referenceRow}>
|
||||
<SkeletonShimmer width="20%" height="24px" />
|
||||
<SkeletonShimmer width="20%" height="24px" />
|
||||
</div>
|
||||
<div className={styles.referenceRow}>
|
||||
<SkeletonShimmer width="20%" height="24px" />
|
||||
<SkeletonShimmer width="20%" height="24px" />
|
||||
</div>
|
||||
<div className={styles.referenceRow}>
|
||||
<SkeletonShimmer width="20%" height="24px" />
|
||||
<SkeletonShimmer width="20%" height="24px" />
|
||||
</div>
|
||||
<Divider color="subtle" className={styles.divider} />
|
||||
<div className={styles.referenceRow}>
|
||||
<SkeletonShimmer width="100%" height="28px" />
|
||||
</div>
|
||||
<div className={styles.actionArea}>
|
||||
<SkeletonShimmer width="100%" height="44px" />
|
||||
<SkeletonShimmer width="100%" height="44px" />
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
@@ -1,82 +1,123 @@
|
||||
"use client"
|
||||
|
||||
import { useState } from "react"
|
||||
import { useEffect } from "react"
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import { Typography } from "@scandic-hotels/design-system/Typography"
|
||||
|
||||
import { BookingStatusEnum } from "@/constants/booking"
|
||||
import { dt } from "@/lib/dt"
|
||||
import { useMyStayRoomDetailsStore } from "@/stores/my-stay/myStayRoomDetailsStore"
|
||||
import { useMyStayTotalPriceStore } from "@/stores/my-stay/myStayTotalPrice"
|
||||
|
||||
import { BookingCodeIcon, CheckCircleIcon } from "@/components/Icons"
|
||||
import CrossCircleIcon from "@/components/Icons/CrossCircle"
|
||||
import SkeletonShimmer from "@/components/SkeletonShimmer"
|
||||
import Button from "@/components/TempDesignSystem/Button"
|
||||
import Divider from "@/components/TempDesignSystem/Divider"
|
||||
import IconChip from "@/components/TempDesignSystem/IconChip"
|
||||
import Link from "@/components/TempDesignSystem/Link"
|
||||
import Caption from "@/components/TempDesignSystem/Text/Caption"
|
||||
import Subtitle from "@/components/TempDesignSystem/Text/Subtitle"
|
||||
import { useGuaranteePaymentFailedToast } from "@/hooks/booking/useGuaranteePaymentFailedToast"
|
||||
import useLang from "@/hooks/useLang"
|
||||
import { formatPrice } from "@/utils/numberFormatting"
|
||||
|
||||
import ManageStay from "../ManageStay"
|
||||
import { useMyStayRoomDetailsStore } from "../stores/myStayRoomDetailsStore"
|
||||
import { useMyStayTotalPriceStore } from "../stores/myStayTotalPrice"
|
||||
import TotalPrice from "../Rooms/TotalPrice"
|
||||
import { mapRoomDetails } from "../utils/mapRoomDetails"
|
||||
import ReferenceCardSkeleton from "./ReferenceCardSkeleton"
|
||||
|
||||
import styles from "./referenceCard.module.css"
|
||||
|
||||
import type { Hotel } from "@/types/hotel"
|
||||
import type { Hotel, Room } from "@/types/hotel"
|
||||
import type { BookingConfirmation } from "@/types/trpc/routers/booking/confirmation"
|
||||
import { type CreditCard, type User } from "@/types/user"
|
||||
import type { CreditCard } from "@/types/user"
|
||||
|
||||
interface ReferenceCardProps {
|
||||
booking: BookingConfirmation["booking"]
|
||||
hotel: Hotel
|
||||
user: User | null
|
||||
room:
|
||||
| (Room & {
|
||||
bedType: Room["roomTypes"][number]
|
||||
})
|
||||
| null
|
||||
savedCreditCards: CreditCard[] | null
|
||||
refId: string
|
||||
isLoggedIn: boolean
|
||||
}
|
||||
|
||||
export function ReferenceCard({
|
||||
booking,
|
||||
hotel,
|
||||
user,
|
||||
room,
|
||||
savedCreditCards,
|
||||
refId,
|
||||
isLoggedIn,
|
||||
}: ReferenceCardProps) {
|
||||
const [bookingStatus, setBookingStatus] = useState(booking.reservationStatus)
|
||||
const intl = useIntl()
|
||||
const lang = useLang()
|
||||
const { totalPrice, currencyCode } = useMyStayTotalPriceStore()
|
||||
const { rooms } = useMyStayRoomDetailsStore()
|
||||
const bookedRoom = useMyStayRoomDetailsStore((state) => state.bookedRoom)
|
||||
const linkedReservationRooms = useMyStayRoomDetailsStore(
|
||||
(state) => state.linkedReservationRooms
|
||||
)
|
||||
const addBookedRoom = useMyStayRoomDetailsStore(
|
||||
(state) => state.actions.addBookedRoom
|
||||
)
|
||||
const addRoomPrice = useMyStayTotalPriceStore(
|
||||
(state) => state.actions.addRoomPrice
|
||||
)
|
||||
|
||||
const fromDate = rooms[0]
|
||||
? dt(rooms[0].checkInDate).locale(lang)
|
||||
: dt(booking.checkInDate).locale(lang)
|
||||
const toDate = rooms[0]
|
||||
? dt(rooms[0].checkOutDate).locale(lang)
|
||||
: dt(booking.checkOutDate).locale(lang)
|
||||
// Initialize store with server data
|
||||
useEffect(() => {
|
||||
// Add price and details for booked room (main room or single room)
|
||||
addRoomPrice({
|
||||
id: booking.confirmationNumber,
|
||||
totalPrice:
|
||||
booking.reservationStatus === BookingStatusEnum.Cancelled
|
||||
? 0
|
||||
: booking.totalPrice,
|
||||
currencyCode: booking.currencyCode,
|
||||
isMainBooking: true,
|
||||
})
|
||||
addBookedRoom(
|
||||
mapRoomDetails({
|
||||
booking,
|
||||
room,
|
||||
roomNumber: 1,
|
||||
})
|
||||
)
|
||||
}, [booking, room, addBookedRoom, addRoomPrice])
|
||||
|
||||
const isCancelled = bookingStatus === BookingStatusEnum.Cancelled
|
||||
useGuaranteePaymentFailedToast()
|
||||
|
||||
if (!bookedRoom.roomNumber) return <ReferenceCardSkeleton />
|
||||
|
||||
const {
|
||||
confirmationNumber,
|
||||
cancellationNumber,
|
||||
checkInDate,
|
||||
checkOutDate,
|
||||
isCancelled,
|
||||
isModifiable,
|
||||
bookingCode,
|
||||
} = bookedRoom
|
||||
|
||||
const fromDate = dt(checkInDate).locale(lang)
|
||||
const toDate = dt(checkOutDate).locale(lang)
|
||||
|
||||
const isMultiRoom = bookedRoom.linkedReservations.length > 0
|
||||
|
||||
const directionsUrl = `https://www.google.com/maps/dir/?api=1&destination=${hotel.location.latitude},${hotel.location.longitude}`
|
||||
|
||||
const adults =
|
||||
booking.adults +
|
||||
(booking.linkedReservations?.reduce(
|
||||
(acc, linkedReservation) => acc + linkedReservation.adults,
|
||||
0
|
||||
) ?? 0)
|
||||
const allRooms = [bookedRoom, ...linkedReservationRooms]
|
||||
|
||||
const children =
|
||||
booking.childrenAges.length +
|
||||
(booking.linkedReservations?.reduce(
|
||||
(acc, linkedReservation) => acc + linkedReservation.children,
|
||||
0
|
||||
) ?? 0)
|
||||
const adults = allRooms
|
||||
.filter((room) => !room.isCancelled)
|
||||
.reduce((acc, room) => acc + room.adults, 0)
|
||||
|
||||
const children = allRooms
|
||||
.filter((room) => !room.isCancelled)
|
||||
.reduce((acc, room) => acc + (room.childrenAges?.length ?? 0), 0)
|
||||
|
||||
const cancelledRooms = allRooms.filter((room) => room.isCancelled).length
|
||||
const allRoomsCancelled = allRooms.every((room) => room.isCancelled)
|
||||
|
||||
const adultsMsg = intl.formatMessage(
|
||||
{ id: "{adults, plural, one {# adult} other {# adults}}" },
|
||||
@@ -94,142 +135,186 @@ export function ReferenceCard({
|
||||
}
|
||||
)
|
||||
|
||||
const cancelledRoomsMsg = intl.formatMessage(
|
||||
{ id: "{rooms, plural, one {# room} other {# rooms}}" },
|
||||
{
|
||||
rooms: cancelledRooms,
|
||||
}
|
||||
)
|
||||
|
||||
const roomCancelledRoomsMsg = intl.formatMessage({ id: "Room cancelled" })
|
||||
|
||||
const roomsMsg = intl.formatMessage(
|
||||
{ id: "{rooms, plural, one {# room} other {# rooms}}" },
|
||||
{
|
||||
rooms: allRooms.filter((room) => !room.isCancelled).length,
|
||||
}
|
||||
)
|
||||
const adultsOnlyMsg = adultsMsg
|
||||
const adultsAndChildrenMsg = [adultsMsg, childrenMsg].join(", ")
|
||||
const adultsAndRoomsMsg = [adultsMsg, roomsMsg].join(", ")
|
||||
const adultsAndChildrenAndRoomsMsg = [adultsMsg, childrenMsg, roomsMsg].join(
|
||||
", "
|
||||
)
|
||||
|
||||
return (
|
||||
<div className={styles.referenceCard}>
|
||||
<div className={styles.referenceRow}>
|
||||
<Subtitle color="uiTextHighContrast" className={styles.titleMobile}>
|
||||
{intl.formatMessage({ id: "Reference" })}
|
||||
</Subtitle>
|
||||
<Subtitle color="uiTextHighContrast" className={styles.titleDesktop}>
|
||||
{isCancelled
|
||||
? intl.formatMessage({ id: "Cancellation number" })
|
||||
: intl.formatMessage({ id: "Reference number" })}
|
||||
</Subtitle>
|
||||
<Subtitle color="uiTextHighContrast">
|
||||
{isCancelled
|
||||
? booking.cancellationNumber
|
||||
: booking.confirmationNumber}
|
||||
</Subtitle>
|
||||
</div>
|
||||
<Divider color="primaryLightSubtle" className={styles.divider} />
|
||||
<div className={styles.referenceRow}>
|
||||
<Caption
|
||||
textTransform="uppercase"
|
||||
type="bold"
|
||||
color="uiTextHighContrast"
|
||||
>
|
||||
{intl.formatMessage({ id: "Guests" })}
|
||||
</Caption>
|
||||
<Caption type="bold" color="uiTextHighContrast">
|
||||
{children > 0 ? adultsAndChildrenMsg : adultsOnlyMsg}
|
||||
</Caption>
|
||||
</div>
|
||||
<div className={styles.referenceRow}>
|
||||
<Caption
|
||||
textTransform="uppercase"
|
||||
type="bold"
|
||||
color="uiTextHighContrast"
|
||||
>
|
||||
{intl.formatMessage({ id: "Check-in" })}
|
||||
</Caption>
|
||||
<Caption type="bold" color="uiTextHighContrast">
|
||||
{`${fromDate.format("dddd, D MMMM")} ${intl.formatMessage({ id: "from" })} ${fromDate.format("HH:mm")}`}
|
||||
</Caption>
|
||||
</div>
|
||||
<div className={styles.referenceRow}>
|
||||
<Caption
|
||||
textTransform="uppercase"
|
||||
type="bold"
|
||||
color="uiTextHighContrast"
|
||||
>
|
||||
{intl.formatMessage({ id: "Check-out" })}
|
||||
</Caption>
|
||||
<Caption type="bold" color="uiTextHighContrast">
|
||||
{`${toDate.format("dddd, D MMMM")} ${intl.formatMessage({ id: "until" })} ${toDate.format("HH:mm")}`}
|
||||
</Caption>
|
||||
</div>
|
||||
{booking.guaranteeInfo && (
|
||||
<div className={styles.guaranteed}>
|
||||
<CheckCircleIcon color="green" height={20} width={20} />
|
||||
<Typography variant="Body/Supporting text (caption)/smRegular">
|
||||
<p className={styles.guaranteedText}>
|
||||
<strong>
|
||||
{intl.formatMessage({ id: "Booking guaranteed." })}
|
||||
</strong>{" "}
|
||||
{intl.formatMessage({
|
||||
id: "Your stay remains available for check-in after 18:00.",
|
||||
})}
|
||||
{!isMultiRoom && (
|
||||
<>
|
||||
<div className={styles.referenceRow}>
|
||||
<Subtitle color="uiTextHighContrast" className={styles.titleMobile}>
|
||||
{intl.formatMessage({ id: "Reference" })}
|
||||
</Subtitle>
|
||||
<Subtitle
|
||||
color="uiTextHighContrast"
|
||||
className={styles.titleDesktop}
|
||||
>
|
||||
{isCancelled && !isMultiRoom
|
||||
? intl.formatMessage({ id: "Cancellation number" })
|
||||
: intl.formatMessage({ id: "Reference number" })}
|
||||
</Subtitle>
|
||||
<Subtitle color="uiTextHighContrast">
|
||||
{isCancelled && !isMultiRoom
|
||||
? cancellationNumber
|
||||
: confirmationNumber}
|
||||
</Subtitle>
|
||||
</div>
|
||||
|
||||
<Divider color="subtle" className={styles.divider} />
|
||||
</>
|
||||
)}
|
||||
|
||||
{!allRoomsCancelled && (
|
||||
<div className={styles.referenceRow}>
|
||||
<Typography variant="Title/Overline/sm">
|
||||
<p>{intl.formatMessage({ id: "Guests" })}</p>
|
||||
</Typography>
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>
|
||||
{allRooms.length > 1
|
||||
? children > 0
|
||||
? adultsAndChildrenAndRoomsMsg
|
||||
: adultsAndRoomsMsg
|
||||
: children > 0
|
||||
? adultsAndChildrenMsg
|
||||
: adultsOnlyMsg}
|
||||
</p>
|
||||
</Typography>
|
||||
</div>
|
||||
)}
|
||||
<Divider color="primaryLightSubtle" className={styles.divider} />
|
||||
<div className={styles.referenceRow}>
|
||||
<Caption
|
||||
textTransform="uppercase"
|
||||
type="bold"
|
||||
color="uiTextHighContrast"
|
||||
>
|
||||
{intl.formatMessage({ id: "Total" })}
|
||||
</Caption>
|
||||
{allRooms.some((room) => room.isCancelled) && (
|
||||
<div className={styles.referenceRow}>
|
||||
<Typography variant="Title/Overline/sm">
|
||||
<p>{intl.formatMessage({ id: "Cancellation" })}</p>
|
||||
</Typography>
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p className={styles.cancelledRooms}>
|
||||
{isMultiRoom
|
||||
? `${cancelledRoomsMsg} ${intl.formatMessage({ id: "cancelled" })}`
|
||||
: roomCancelledRoomsMsg}
|
||||
</p>
|
||||
</Typography>
|
||||
</div>
|
||||
)}
|
||||
{!allRoomsCancelled && (
|
||||
<>
|
||||
<div className={styles.referenceRow}>
|
||||
<Typography variant="Title/Overline/sm">
|
||||
<p>{intl.formatMessage({ id: "Check-in" })}</p>
|
||||
</Typography>
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>
|
||||
{`${fromDate.format("dddd, D MMMM")} ${intl.formatMessage({ id: "from" })} ${fromDate.format("HH:mm")}`}
|
||||
</p>
|
||||
</Typography>
|
||||
</div>
|
||||
<div className={styles.referenceRow}>
|
||||
<Typography variant="Title/Overline/sm">
|
||||
<p>{intl.formatMessage({ id: "Check-out" })}</p>
|
||||
</Typography>
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>
|
||||
{`${toDate.format("dddd, D MMMM")} ${intl.formatMessage({ id: "until" })} ${toDate.format("HH:mm")}`}
|
||||
</p>
|
||||
</Typography>
|
||||
</div>
|
||||
</>
|
||||
)}
|
||||
<Divider color="subtle" className={styles.divider} />
|
||||
{booking.guaranteeInfo && !allRoomsCancelled && (
|
||||
<>
|
||||
<div className={styles.guaranteed}>
|
||||
<CheckCircleIcon color="green" height={20} width={20} />
|
||||
<Typography variant="Body/Supporting text (caption)/smRegular">
|
||||
<p className={styles.guaranteedText}>
|
||||
<strong>
|
||||
{intl.formatMessage({ id: "Booking guaranteed." })}
|
||||
</strong>{" "}
|
||||
{intl.formatMessage({
|
||||
id: "Your stay remains available for check-in after 18:00.",
|
||||
})}
|
||||
</p>
|
||||
</Typography>
|
||||
</div>
|
||||
<Divider color="subtle" className={styles.divider} />
|
||||
</>
|
||||
)}
|
||||
|
||||
{totalPrice ? (
|
||||
<Caption type="bold" color="uiTextHighContrast">
|
||||
{formatPrice(intl, totalPrice, currencyCode)}
|
||||
</Caption>
|
||||
) : (
|
||||
<SkeletonShimmer width="50px" height="18px" />
|
||||
)}
|
||||
<div className={styles.referenceRow}>
|
||||
<Typography variant="Title/Overline/sm">
|
||||
<p>{intl.formatMessage({ id: "Total" })}</p>
|
||||
</Typography>
|
||||
<TotalPrice variant="Title/Subtitle/md" />
|
||||
</div>
|
||||
{booking?.bookingCode && (
|
||||
{bookingCode && (
|
||||
<div className={styles.referenceRow}>
|
||||
<Caption>{intl.formatMessage({ id: "Booking code" })}</Caption>
|
||||
<Typography variant="Title/Overline/sm">
|
||||
<p>{intl.formatMessage({ id: "Booking code" })}</p>
|
||||
</Typography>
|
||||
<IconChip color={"blue"} icon={<BookingCodeIcon color="blue" />}>
|
||||
<Caption className={styles.bookingCode} color="blue">
|
||||
<strong>{intl.formatMessage({ id: "Booking code" })}</strong>
|
||||
{booking.bookingCode}
|
||||
</Caption>
|
||||
</IconChip>
|
||||
</div>
|
||||
)}
|
||||
{isCancelled && (
|
||||
<div className={styles.referenceRow}>
|
||||
<IconChip
|
||||
color={"red"}
|
||||
icon={<CrossCircleIcon width={20} height={20} color="red" />}
|
||||
>
|
||||
<Caption color={"red"}>
|
||||
<strong>{intl.formatMessage({ id: "Status" })}:</strong>{" "}
|
||||
{intl.formatMessage({ id: "Cancelled" })}
|
||||
</Caption>
|
||||
<Typography variant="Body/Supporting text (caption)/smBold">
|
||||
<p className={styles.bookingCode}>
|
||||
<strong>{intl.formatMessage({ id: "Booking code" })}</strong>:{" "}
|
||||
{bookingCode}
|
||||
</p>
|
||||
</Typography>
|
||||
</IconChip>
|
||||
</div>
|
||||
)}
|
||||
|
||||
<div className={styles.actionArea}>
|
||||
<ManageStay
|
||||
booking={booking}
|
||||
hotel={hotel}
|
||||
user={user}
|
||||
setBookingStatus={setBookingStatus}
|
||||
bookingStatus={bookingStatus}
|
||||
savedCreditCards={savedCreditCards}
|
||||
refId={refId}
|
||||
isLoggedIn={isLoggedIn}
|
||||
/>
|
||||
<Button fullWidth intent="secondary" asChild>
|
||||
<Button fullWidth intent="secondary" asChild size="small">
|
||||
<Link href={directionsUrl} target="_blank">
|
||||
{intl.formatMessage({ id: "Get directions" })}
|
||||
</Link>
|
||||
</Button>
|
||||
</div>
|
||||
{booking.isModifiable && (
|
||||
<Caption className={styles.note} color="uiTextHighContrast">
|
||||
{booking.rateDefinition.generalTerms.map((term) => (
|
||||
<span key={term}>{term} </span>
|
||||
))}
|
||||
</Caption>
|
||||
{isMultiRoom && (
|
||||
<Typography variant="Body/Supporting text (caption)/smBold">
|
||||
<p className={styles.note}>
|
||||
{intl.formatMessage({ id: "Multi-room stay" })}
|
||||
</p>
|
||||
</Typography>
|
||||
)}
|
||||
{isModifiable && (
|
||||
<Typography variant="Body/Supporting text (caption)/smRegular">
|
||||
<p
|
||||
className={`${styles.note} ${allRoomsCancelled ? styles.cancelledNote : ""}`}
|
||||
>
|
||||
{booking.rateDefinition.generalTerms.map((term) => (
|
||||
<span key={term}>
|
||||
{term}
|
||||
{term.endsWith(".") ? " " : ". "}
|
||||
</span>
|
||||
))}
|
||||
</p>
|
||||
</Typography>
|
||||
)}
|
||||
</div>
|
||||
)
|
||||
|
||||
@@ -19,25 +19,32 @@
|
||||
margin-bottom: var(--Spacing-x-one-and-half);
|
||||
}
|
||||
|
||||
.cancelledRooms {
|
||||
color: var(--Scandic-Brand-Scandic-Red);
|
||||
}
|
||||
|
||||
.actionArea {
|
||||
display: flex;
|
||||
gap: var(--Spacing-x3);
|
||||
gap: var(--Spacing-x2);
|
||||
margin: var(--Spacing-x4) 0 var(--Spacing-x3);
|
||||
}
|
||||
|
||||
.referenceCard .note {
|
||||
.note {
|
||||
text-align: center;
|
||||
width: 80%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.cancelledNote {
|
||||
color: var(--UI-Text-Placeholder);
|
||||
}
|
||||
|
||||
.titleDesktop {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.bookingCode {
|
||||
display: flex;
|
||||
gap: var(--Spacing-x1);
|
||||
color: var(--UI-Semantic-Information);
|
||||
}
|
||||
|
||||
.guaranteed {
|
||||
@@ -49,14 +56,20 @@
|
||||
padding: var(--Spacing-x1);
|
||||
margin-bottom: var(--Space-x1);
|
||||
}
|
||||
|
||||
.guaranteedText {
|
||||
color: var(--Surface-Feedback-Succes-Accent);
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.actionArea {
|
||||
gap: var(--Spacing-x3);
|
||||
}
|
||||
|
||||
.titleMobile {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.titleDesktop {
|
||||
display: block;
|
||||
}
|
||||
|
||||
@@ -1,247 +0,0 @@
|
||||
"use client"
|
||||
import { zodResolver } from "@hookform/resolvers/zod"
|
||||
import { useRouter } from "next/navigation"
|
||||
import { useState } from "react"
|
||||
import { Dialog } from "react-aria-components"
|
||||
import { FormProvider, useForm } from "react-hook-form"
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import { trpc } from "@/lib/trpc/client"
|
||||
|
||||
import { DiamondIcon, EditIcon } from "@/components/Icons"
|
||||
import MembershipLevelIcon from "@/components/Levels/Icon"
|
||||
import Modal from "@/components/Modal"
|
||||
import { ModalContentWithActions } from "@/components/Modal/ModalContentWithActions"
|
||||
import Button from "@/components/TempDesignSystem/Button"
|
||||
import Body from "@/components/TempDesignSystem/Text/Body"
|
||||
import Caption from "@/components/TempDesignSystem/Text/Caption"
|
||||
import { toast } from "@/components/TempDesignSystem/Toasts"
|
||||
import useLang from "@/hooks/useLang"
|
||||
|
||||
import ModifyContact from "../ModifyContact"
|
||||
|
||||
import styles from "./room.module.css"
|
||||
|
||||
import {
|
||||
type ModifyContactSchema,
|
||||
modifyContactSchema,
|
||||
} from "@/types/components/hotelReservation/myStay/modifyContact"
|
||||
import { MODAL_STEPS } from "@/types/components/hotelReservation/myStay/myStay"
|
||||
import type { BookingConfirmation } from "@/types/trpc/routers/booking/confirmation"
|
||||
import type { User } from "@/types/user"
|
||||
|
||||
interface GuestDetailsProps {
|
||||
user: User | null
|
||||
booking: BookingConfirmation["booking"]
|
||||
isMobile?: boolean
|
||||
}
|
||||
|
||||
export default function GuestDetails({
|
||||
user,
|
||||
booking,
|
||||
isMobile = false,
|
||||
}: GuestDetailsProps) {
|
||||
const intl = useIntl()
|
||||
const lang = useLang()
|
||||
const router = useRouter()
|
||||
const [currentStep, setCurrentStep] = useState(MODAL_STEPS.INITIAL)
|
||||
const [isLoading, setIsLoading] = useState(false)
|
||||
const [guestDetails, setGuestDetails] = useState<
|
||||
BookingConfirmation["booking"]["guest"]
|
||||
>(booking.guest)
|
||||
const [isModifyGuestDetailsOpen, setIsModifyGuestDetailsOpen] =
|
||||
useState(false)
|
||||
|
||||
const isFirstStep = currentStep === MODAL_STEPS.INITIAL
|
||||
|
||||
const form = useForm<ModifyContactSchema>({
|
||||
resolver: zodResolver(modifyContactSchema),
|
||||
defaultValues: {
|
||||
firstName: booking.guest.firstName ?? "",
|
||||
lastName: booking.guest.lastName ?? "",
|
||||
email: booking.guest.email ?? "",
|
||||
phoneNumber: booking.guest.phoneNumber ?? "",
|
||||
countryCode: booking.guest.countryCode ?? "",
|
||||
},
|
||||
})
|
||||
const containerClass = isMobile
|
||||
? styles.guestDetailsMobile
|
||||
: styles.guestDetailsDesktop
|
||||
|
||||
const isMemberBooking =
|
||||
booking.guest.membershipNumber === user?.membership?.membershipNumber
|
||||
|
||||
const updateGuest = trpc.booking.update.useMutation({
|
||||
onMutate: () => setIsLoading(true),
|
||||
onSuccess: () => {
|
||||
setIsLoading(false)
|
||||
toast.success(intl.formatMessage({ id: "Guest details updated" }))
|
||||
setIsModifyGuestDetailsOpen(false)
|
||||
},
|
||||
onError: () => {
|
||||
setIsLoading(false)
|
||||
toast.error(intl.formatMessage({ id: "Failed to update guest details" }))
|
||||
},
|
||||
})
|
||||
|
||||
async function onSubmit(data: ModifyContactSchema) {
|
||||
if (booking.confirmationNumber) {
|
||||
updateGuest.mutate({
|
||||
confirmationNumber: booking.confirmationNumber,
|
||||
guest: {
|
||||
email: data.email,
|
||||
phoneNumber: data.phoneNumber,
|
||||
countryCode: data.countryCode,
|
||||
},
|
||||
})
|
||||
setGuestDetails({ ...guestDetails, ...data })
|
||||
}
|
||||
}
|
||||
|
||||
function handleModifyMemberDetails() {
|
||||
const expirationTime = Date.now() + 10 * 60 * 1000
|
||||
sessionStorage.setItem(
|
||||
"myStayReturnRoute",
|
||||
JSON.stringify({
|
||||
path: window.location.pathname,
|
||||
expiry: expirationTime,
|
||||
})
|
||||
)
|
||||
router.push(`/${lang}/scandic-friends/my-pages/profile/edit`)
|
||||
}
|
||||
|
||||
return (
|
||||
<div className={containerClass}>
|
||||
{isMemberBooking && (
|
||||
<div className={styles.userDetails}>
|
||||
<div className={styles.row}>
|
||||
<div className={styles.rowTitle}>
|
||||
<Caption
|
||||
type="bold"
|
||||
color="burgundy"
|
||||
textTransform="uppercase"
|
||||
textAlign="center"
|
||||
>
|
||||
{intl.formatMessage({ id: "Your member tier" })}
|
||||
</Caption>
|
||||
</div>
|
||||
<MembershipLevelIcon
|
||||
level={user.membership!.membershipLevel}
|
||||
color="red"
|
||||
height={isMobile ? "40" : "20"}
|
||||
width={isMobile ? "80" : "40"}
|
||||
/>
|
||||
</div>
|
||||
<div className={styles.totalPoints}>
|
||||
{isMobile && (
|
||||
<div>
|
||||
<DiamondIcon color="uiTextHighContrast" />
|
||||
</div>
|
||||
)}
|
||||
<Caption
|
||||
type="bold"
|
||||
color="uiTextHighContrast"
|
||||
textTransform="uppercase"
|
||||
>
|
||||
{intl.formatMessage({ id: "Total points" })}
|
||||
</Caption>
|
||||
|
||||
<Body color="uiTextHighContrast" className={styles.totalPointsText}>
|
||||
{user.membership!.currentPoints}
|
||||
</Body>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
<div className={styles.guest}>
|
||||
<Body textTransform="bold" color="uiTextHighContrast">
|
||||
{guestDetails.firstName} {guestDetails.lastName}
|
||||
</Body>
|
||||
{isMemberBooking && (
|
||||
<Body color="uiTextHighContrast">
|
||||
{intl.formatMessage(
|
||||
{ id: "Member no. {nr}" },
|
||||
{
|
||||
nr: user.membership!.membershipNumber,
|
||||
}
|
||||
)}
|
||||
</Body>
|
||||
)}
|
||||
<Caption color="uiTextHighContrast">{guestDetails.email}</Caption>
|
||||
<Caption color="uiTextHighContrast">{guestDetails.phoneNumber}</Caption>
|
||||
</div>
|
||||
{isMemberBooking ? (
|
||||
<Button
|
||||
variant="icon"
|
||||
color="burgundy"
|
||||
intent={isMobile ? "secondary" : "text"}
|
||||
onClick={handleModifyMemberDetails}
|
||||
>
|
||||
<EditIcon color="burgundy" width={20} height={20} />
|
||||
<Caption color="burgundy">
|
||||
{intl.formatMessage({ id: "Modify guest details" })}
|
||||
</Caption>
|
||||
</Button>
|
||||
) : (
|
||||
<>
|
||||
<Button
|
||||
variant="icon"
|
||||
color="burgundy"
|
||||
intent="text"
|
||||
onClick={() =>
|
||||
setIsModifyGuestDetailsOpen(!isModifyGuestDetailsOpen)
|
||||
}
|
||||
>
|
||||
<EditIcon color="burgundy" width={20} height={20} />
|
||||
<Caption color="burgundy">
|
||||
{intl.formatMessage({ id: "Modify guest details" })}
|
||||
</Caption>
|
||||
</Button>
|
||||
<Modal
|
||||
withActions
|
||||
hideHeader
|
||||
isOpen={isModifyGuestDetailsOpen}
|
||||
onToggle={setIsModifyGuestDetailsOpen}
|
||||
>
|
||||
<Dialog>
|
||||
{({ close }) => (
|
||||
<FormProvider {...form}>
|
||||
<ModalContentWithActions
|
||||
title={intl.formatMessage({ id: "Modify guest details" })}
|
||||
onClose={() => setIsModifyGuestDetailsOpen(false)}
|
||||
content={
|
||||
<ModifyContact
|
||||
guest={booking.guest}
|
||||
isFirstStep={isFirstStep}
|
||||
/>
|
||||
}
|
||||
primaryAction={{
|
||||
label: isFirstStep
|
||||
? intl.formatMessage({ id: "Save updates" })
|
||||
: intl.formatMessage({ id: "Confirm" }),
|
||||
onClick: isFirstStep
|
||||
? () => setCurrentStep(MODAL_STEPS.CONFIRMATION)
|
||||
: () => {
|
||||
form.handleSubmit(onSubmit)()
|
||||
},
|
||||
disabled: !form.formState.isValid || isLoading,
|
||||
intent: isFirstStep ? "secondary" : "primary",
|
||||
}}
|
||||
secondaryAction={{
|
||||
label: isFirstStep
|
||||
? intl.formatMessage({ id: "Back" })
|
||||
: intl.formatMessage({ id: "Cancel" }),
|
||||
onClick: () => {
|
||||
close()
|
||||
setCurrentStep(MODAL_STEPS.INITIAL)
|
||||
},
|
||||
}}
|
||||
/>
|
||||
</FormProvider>
|
||||
)}
|
||||
</Dialog>
|
||||
</Modal>
|
||||
</>
|
||||
)}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
@@ -1,336 +0,0 @@
|
||||
"use client"
|
||||
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import { dt } from "@/lib/dt"
|
||||
|
||||
import PriceDetailsModal from "@/components/HotelReservation/PriceDetailsModal"
|
||||
import { getIconForFeatureCode } from "@/components/HotelReservation/utils"
|
||||
import {
|
||||
BedDoubleIcon,
|
||||
BookingCodeIcon,
|
||||
CoffeeIcon,
|
||||
ContractIcon,
|
||||
DoorOpenIcon,
|
||||
PersonIcon,
|
||||
} from "@/components/Icons"
|
||||
import RocketLaunch from "@/components/Icons/Refresh"
|
||||
import Image from "@/components/Image"
|
||||
import IconChip from "@/components/TempDesignSystem/IconChip"
|
||||
import Body from "@/components/TempDesignSystem/Text/Body"
|
||||
import Caption from "@/components/TempDesignSystem/Text/Caption"
|
||||
import Subtitle from "@/components/TempDesignSystem/Text/Subtitle"
|
||||
import useLang from "@/hooks/useLang"
|
||||
import { formatPrice } from "@/utils/numberFormatting"
|
||||
|
||||
import GuestDetails from "./GuestDetails"
|
||||
import PriceDetailsTable from "./PriceDetailsTable"
|
||||
import ToggleSidePeek from "./ToggleSidePeek"
|
||||
|
||||
import styles from "./room.module.css"
|
||||
|
||||
import { RoomPackageCodeEnum } from "@/types/components/hotelReservation/selectRate/roomFilter"
|
||||
import { BreakfastPackageEnum } from "@/types/enums/breakfast"
|
||||
import type { Hotel, Room } from "@/types/hotel"
|
||||
import type { BookingConfirmation } from "@/types/trpc/routers/booking/confirmation"
|
||||
import type { User } from "@/types/user"
|
||||
|
||||
interface RoomProps {
|
||||
booking: BookingConfirmation["booking"]
|
||||
room:
|
||||
| (Room & {
|
||||
bedType: Room["roomTypes"][number]
|
||||
})
|
||||
| null
|
||||
hotel: Hotel
|
||||
user: User | null
|
||||
}
|
||||
|
||||
function hasBreakfastPackage(
|
||||
packages: BookingConfirmation["booking"]["packages"]
|
||||
) {
|
||||
return packages.some(
|
||||
(p) =>
|
||||
p.code === BreakfastPackageEnum.REGULAR_BREAKFAST ||
|
||||
p.code === BreakfastPackageEnum.FREE_MEMBER_BREAKFAST ||
|
||||
p.code === BreakfastPackageEnum.SPECIAL_PACKAGE_BREAKFAST
|
||||
)
|
||||
}
|
||||
|
||||
function RoomHeader({
|
||||
room,
|
||||
hotel,
|
||||
}: {
|
||||
room: RoomProps["room"]
|
||||
hotel: Hotel
|
||||
}) {
|
||||
if (!room) return null
|
||||
|
||||
return (
|
||||
<div className={styles.roomHeader}>
|
||||
<Subtitle textTransform="uppercase" color="burgundy">
|
||||
{room.name}
|
||||
</Subtitle>
|
||||
<ToggleSidePeek
|
||||
hotelId={hotel.operaId}
|
||||
roomTypeCode={room.roomTypes[0].code}
|
||||
intent="text"
|
||||
/>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export function Room({ booking, room, hotel, user }: RoomProps) {
|
||||
const intl = useIntl()
|
||||
const lang = useLang()
|
||||
|
||||
if (!room) return null
|
||||
|
||||
const fromDate = dt(booking.checkInDate).locale(lang)
|
||||
|
||||
const mainBedWidthValueMsg = intl.formatMessage(
|
||||
{ id: "{value} cm" },
|
||||
{
|
||||
value: room.bedType.mainBed.widthRange.min,
|
||||
}
|
||||
)
|
||||
|
||||
const mainBedWidthRangeMsg = intl.formatMessage(
|
||||
{
|
||||
id: "{min}–{max} cm",
|
||||
},
|
||||
{
|
||||
min: room.bedType.mainBed.widthRange.min,
|
||||
max: room.bedType.mainBed.widthRange.max,
|
||||
}
|
||||
)
|
||||
|
||||
const adultsMsg = intl.formatMessage(
|
||||
{
|
||||
id: "{adults, plural, one {# adult} other {# adults}}",
|
||||
},
|
||||
{
|
||||
adults: booking.adults,
|
||||
}
|
||||
)
|
||||
|
||||
const childrenMsg = intl.formatMessage(
|
||||
{
|
||||
id: "{children, plural, one {# child} other {# children}}",
|
||||
},
|
||||
{
|
||||
children: booking.childrenAges.length,
|
||||
}
|
||||
)
|
||||
|
||||
const adultsOnlyMsg = adultsMsg
|
||||
const adultsAndChildrenMsg = [adultsMsg, childrenMsg].join(", ")
|
||||
|
||||
return (
|
||||
<div>
|
||||
<article className={styles.room}>
|
||||
<RoomHeader room={room} hotel={hotel} />
|
||||
<div className={styles.booking}>
|
||||
<div className={styles.chipContainer}>
|
||||
{booking.packages
|
||||
.filter((item) =>
|
||||
Object.values(RoomPackageCodeEnum).includes(
|
||||
item.code as RoomPackageCodeEnum
|
||||
)
|
||||
)
|
||||
.map((item) => {
|
||||
const Icon = getIconForFeatureCode(
|
||||
item.code as RoomPackageCodeEnum
|
||||
)
|
||||
return (
|
||||
<span className={styles.chip} key={item.code}>
|
||||
<Icon width={16} height={16} color="burgundy" />
|
||||
</span>
|
||||
)
|
||||
})}
|
||||
</div>
|
||||
<div className={styles.images}>
|
||||
{room.images.slice(0, 2).map((image) => (
|
||||
<Image
|
||||
key={image.imageSizes.large}
|
||||
src={image.imageSizes.large}
|
||||
className={styles.image}
|
||||
alt={room?.name ?? hotel.name}
|
||||
width={700}
|
||||
height={450}
|
||||
/>
|
||||
))}
|
||||
</div>
|
||||
<div className={styles.roomDetails}>
|
||||
<div className={styles.bookingDetails}>
|
||||
<div className={styles.row}>
|
||||
<span className={styles.rowTitle}>
|
||||
<ContractIcon color="grey80" width={20} height={20} />
|
||||
<Body textTransform="bold" color="uiTextHighContrast">
|
||||
{intl.formatMessage({ id: "Booking policy" })}
|
||||
</Body>
|
||||
</span>
|
||||
<div className={styles.rowContent}>
|
||||
<Body color="uiTextHighContrast">
|
||||
{booking.rateDefinition.cancellationText}
|
||||
</Body>
|
||||
</div>
|
||||
</div>
|
||||
<div className={styles.row}>
|
||||
<span className={styles.rowTitle}>
|
||||
<RocketLaunch color="grey80" width={20} height={20} />
|
||||
<Body textTransform="bold" color="uiTextHighContrast">
|
||||
{intl.formatMessage({ id: "Rebooking" })}
|
||||
</Body>
|
||||
</span>
|
||||
<div className={styles.rowContent}>
|
||||
<Body color="uiTextHighContrast">
|
||||
{intl.formatMessage(
|
||||
{ id: "Until {time}, {date}" },
|
||||
{ time: "18:00", date: fromDate.format("dddd D MMM") }
|
||||
)}
|
||||
</Body>
|
||||
</div>
|
||||
</div>
|
||||
{booking.packages.some((item) =>
|
||||
Object.values(RoomPackageCodeEnum).includes(
|
||||
item.code as RoomPackageCodeEnum
|
||||
)
|
||||
) && (
|
||||
<div className={styles.row}>
|
||||
<span className={styles.rowTitle}>
|
||||
<DoorOpenIcon color="grey80" width={20} height={20} />
|
||||
<Body textTransform="bold" color="uiTextHighContrast">
|
||||
{intl.formatMessage({ id: "Room type" })}
|
||||
</Body>
|
||||
</span>
|
||||
<div className={styles.rowContent}>
|
||||
<Body color="uiTextHighContrast">
|
||||
{booking.packages
|
||||
.filter((item) =>
|
||||
Object.values(RoomPackageCodeEnum).includes(
|
||||
item.code as RoomPackageCodeEnum
|
||||
)
|
||||
)
|
||||
.map((item) => item.description)
|
||||
.join(", ")}
|
||||
</Body>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
<div className={styles.row}>
|
||||
<span className={styles.rowTitle}>
|
||||
<PersonIcon color="grey80" width={20} height={20} />
|
||||
<Body textTransform="bold" color="uiTextHighContrast">
|
||||
{intl.formatMessage({ id: "Guests" })}
|
||||
</Body>
|
||||
</span>
|
||||
<div className={styles.rowContent}>
|
||||
<Body color="uiTextHighContrast">
|
||||
{booking.childrenAges.length > 0
|
||||
? adultsAndChildrenMsg
|
||||
: adultsOnlyMsg}
|
||||
</Body>
|
||||
</div>
|
||||
</div>
|
||||
<div className={styles.row}>
|
||||
<span className={styles.rowTitle}>
|
||||
<CoffeeIcon color="grey80" width={20} height={20} />
|
||||
<Body textTransform="bold" color="uiTextHighContrast">
|
||||
{intl.formatMessage({ id: "Breakfast" })}
|
||||
</Body>
|
||||
</span>
|
||||
<div className={styles.rowContent}>
|
||||
<Body color="uiTextHighContrast">
|
||||
{hasBreakfastPackage(booking.packages)
|
||||
? intl.formatMessage({ id: "Included" })
|
||||
: intl.formatMessage({ id: "Not included" })}
|
||||
</Body>
|
||||
</div>
|
||||
</div>
|
||||
<div className={styles.row}>
|
||||
<span className={styles.rowTitle}>
|
||||
<BedDoubleIcon color="grey80" width={20} height={20} />
|
||||
<Body textTransform="bold" color="uiTextHighContrast">
|
||||
{intl.formatMessage({ id: "Bed preference" })}
|
||||
</Body>
|
||||
</span>
|
||||
<div className={styles.rowContent}>
|
||||
<Body color="uiTextHighContrast">
|
||||
{room.bedType.mainBed.description}
|
||||
{room.bedType.mainBed.widthRange.min ===
|
||||
room.bedType.mainBed.widthRange.max
|
||||
? ` (${mainBedWidthValueMsg})`
|
||||
: ` (${mainBedWidthRangeMsg})`}
|
||||
</Body>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<GuestDetails user={user} booking={booking} isMobile={false} />
|
||||
</div>
|
||||
|
||||
<div className={styles.bookingInformation}>
|
||||
{booking?.bookingCode && (
|
||||
<IconChip color={"blue"} icon={<BookingCodeIcon color="blue" />}>
|
||||
<Caption className={styles.bookingCode} color="blue">
|
||||
<strong>{intl.formatMessage({ id: "Booking code" })}</strong>
|
||||
{booking.bookingCode}
|
||||
</Caption>
|
||||
</IconChip>
|
||||
)}
|
||||
<div className={styles.priceDetails}>
|
||||
<div className={styles.price}>
|
||||
<Body color="uiTextHighContrast">
|
||||
{intl.formatMessage({ id: "Room total" })}
|
||||
</Body>
|
||||
<Body color="uiTextHighContrast" textTransform="bold">
|
||||
{formatPrice(intl, booking.totalPrice, booking.currencyCode)}
|
||||
</Body>
|
||||
</div>
|
||||
|
||||
<PriceDetailsModal>
|
||||
<PriceDetailsTable
|
||||
bookingCode={booking.bookingCode}
|
||||
fromDate={dt(booking.checkInDate).format("YYYY-MM-DD")}
|
||||
rooms={[
|
||||
{
|
||||
adults: booking.adults,
|
||||
childrenInRoom: undefined,
|
||||
roomPrice: {
|
||||
perNight: {
|
||||
requested: undefined,
|
||||
local: {
|
||||
currency: booking.currencyCode,
|
||||
price: booking.totalPrice,
|
||||
},
|
||||
},
|
||||
perStay: {
|
||||
requested: undefined,
|
||||
local: {
|
||||
currency: booking.currencyCode,
|
||||
price: booking.totalPrice,
|
||||
},
|
||||
},
|
||||
},
|
||||
roomType: room.name,
|
||||
},
|
||||
]}
|
||||
toDate={dt(booking.checkOutDate).format("YYYY-MM-DD")}
|
||||
totalPrice={{
|
||||
requested: undefined,
|
||||
local: {
|
||||
currency: booking.currencyCode,
|
||||
price: booking.totalPrice,
|
||||
},
|
||||
}}
|
||||
vat={booking.vatPercentage}
|
||||
/>
|
||||
</PriceDetailsModal>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
<GuestDetails user={user} booking={booking} isMobile={true} />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
"use client"
|
||||
|
||||
import { useMyStayTotalPriceStore } from "@/stores/my-stay/myStayTotalPrice"
|
||||
|
||||
import Price, { type Variant } from "../../Price"
|
||||
|
||||
export default function TotalPrice({ variant }: { variant: Variant }) {
|
||||
const { totalPrice } = useMyStayTotalPriceStore()
|
||||
|
||||
return <Price price={totalPrice} variant={variant} />
|
||||
}
|
||||
@@ -0,0 +1,103 @@
|
||||
import { Suspense } from "react"
|
||||
|
||||
import { Typography } from "@scandic-hotels/design-system/Typography"
|
||||
|
||||
import { getBookingConfirmation } from "@/lib/trpc/memoizedRequests"
|
||||
|
||||
import { getIntl } from "@/i18n"
|
||||
|
||||
import MultiRoom from "../MultiRoom"
|
||||
import MultiRoomSkeleton from "../MultiRoom/MultiRoomSkeleton"
|
||||
import PriceDetails from "../PriceDetails"
|
||||
import { SingleRoom } from "../SingleRoom"
|
||||
import TotalPrice from "./TotalPrice"
|
||||
|
||||
import styles from "./rooms.module.css"
|
||||
|
||||
import { type Hotel, type Room } from "@/types/hotel"
|
||||
import type { BookingConfirmation } from "@/types/trpc/routers/booking/confirmation"
|
||||
import type { User } from "@/types/user"
|
||||
|
||||
interface RoomsProps {
|
||||
booking: BookingConfirmation["booking"]
|
||||
room:
|
||||
| (Room & {
|
||||
bedType: Room["roomTypes"][number]
|
||||
})
|
||||
| null
|
||||
hotel: Hotel
|
||||
user: User | null
|
||||
}
|
||||
|
||||
export default async function Rooms({
|
||||
booking,
|
||||
room,
|
||||
hotel,
|
||||
user,
|
||||
}: RoomsProps) {
|
||||
const intl = await getIntl()
|
||||
|
||||
if (!room) {
|
||||
return null
|
||||
}
|
||||
|
||||
const linkedBookingPromises = booking.linkedReservations
|
||||
? booking.linkedReservations.map((linkedBooking) => {
|
||||
return getBookingConfirmation(linkedBooking.confirmationNumber)
|
||||
})
|
||||
: []
|
||||
|
||||
const isMultiRoom = booking.linkedReservations.length > 0
|
||||
|
||||
return (
|
||||
<div className={styles.wrapper}>
|
||||
{isMultiRoom && (
|
||||
<Typography variant="Title/sm">
|
||||
<h2 className={styles.title}>
|
||||
{intl.formatMessage({ id: "Your rooms" })}
|
||||
</h2>
|
||||
</Typography>
|
||||
)}
|
||||
<div className={styles.container}>
|
||||
{!isMultiRoom ? (
|
||||
<SingleRoom
|
||||
bedType={room.bedType}
|
||||
image={room.images[0]}
|
||||
hotel={hotel}
|
||||
user={user}
|
||||
/>
|
||||
) : (
|
||||
<div className={styles.roomsContainer}>
|
||||
<MultiRoom booking={booking} room={room} user={user} />
|
||||
{booking.linkedReservations.map((linkedRes, index) => (
|
||||
<div
|
||||
key={linkedRes.confirmationNumber}
|
||||
className={styles.roomWrapper}
|
||||
>
|
||||
<Suspense fallback={<MultiRoomSkeleton />}>
|
||||
<MultiRoom
|
||||
bookingPromise={linkedBookingPromises[index]}
|
||||
index={index}
|
||||
user={user}
|
||||
/>
|
||||
</Suspense>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
{isMultiRoom && (
|
||||
<div className={styles.totalContainer}>
|
||||
<div className={styles.total}>
|
||||
<Typography variant="Body/Lead text">
|
||||
<p>{intl.formatMessage({ id: "Booking total" })}:</p>
|
||||
</Typography>
|
||||
<TotalPrice variant="Title/Subtitle/lg" />
|
||||
</div>
|
||||
|
||||
<PriceDetails />
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
.wrapper {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--Spacing-x3);
|
||||
}
|
||||
|
||||
.container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--Spacing-x5);
|
||||
}
|
||||
|
||||
.roomsContainer {
|
||||
display: grid;
|
||||
gap: var(--Spacing-x3);
|
||||
width: 100%;
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.roomWrapper {
|
||||
width: 100%;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.roomWrapper > * {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.title {
|
||||
color: var(--Scandic-Brand-Burgundy);
|
||||
padding: 0 var(--Spacing-x2);
|
||||
}
|
||||
|
||||
.totalContainer {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--Spacing-x1);
|
||||
padding: 0 var(--Spacing-x2);
|
||||
}
|
||||
|
||||
.total {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
gap: var(--Spacing-x1);
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.roomsContainer {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
|
||||
.roomsContainer:has(> *:nth-child(3):last-child) {
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
|
||||
.title {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.totalContainer {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
@@ -22,7 +22,11 @@ export default function ToggleSidePeek({
|
||||
return (
|
||||
<Button
|
||||
onClick={() =>
|
||||
openSidePeek({ key: SidePeekEnum.roomDetails, hotelId, roomTypeCode })
|
||||
openSidePeek({
|
||||
key: SidePeekEnum.roomDetails,
|
||||
hotelId,
|
||||
roomTypeCode,
|
||||
})
|
||||
}
|
||||
theme="base"
|
||||
size="small"
|
||||
@@ -0,0 +1,355 @@
|
||||
"use client"
|
||||
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import { Typography } from "@scandic-hotels/design-system/Typography"
|
||||
|
||||
import { dt } from "@/lib/dt"
|
||||
import { useMyStayRoomDetailsStore } from "@/stores/my-stay/myStayRoomDetailsStore"
|
||||
|
||||
import { getIconForFeatureCode } from "@/components/HotelReservation/utils"
|
||||
import {
|
||||
BedDoubleIcon,
|
||||
BookingCodeIcon,
|
||||
CoffeeIcon,
|
||||
ContractIcon,
|
||||
DoorOpenIcon,
|
||||
PersonIcon,
|
||||
} from "@/components/Icons"
|
||||
import Refresh from "@/components/Icons/Refresh"
|
||||
import Image from "@/components/Image"
|
||||
import SkeletonShimmer from "@/components/SkeletonShimmer"
|
||||
import IconChip from "@/components/TempDesignSystem/IconChip"
|
||||
import useLang from "@/hooks/useLang"
|
||||
|
||||
import GuestDetails from "../GuestDetails"
|
||||
import Price from "../Price"
|
||||
import PriceDetails from "../PriceDetails"
|
||||
import { hasBreakfastPackage } from "../utils/hasBreakfastPackage"
|
||||
import ToggleSidePeek from "./ToggleSidePeek"
|
||||
|
||||
import styles from "./room.module.css"
|
||||
|
||||
import { RoomPackageCodeEnum } from "@/types/components/hotelReservation/selectRate/roomFilter"
|
||||
import type { Hotel, Room } from "@/types/hotel"
|
||||
import type { User } from "@/types/user"
|
||||
|
||||
interface RoomProps {
|
||||
bedType: Room["roomTypes"][number]
|
||||
image: Room["images"][number]
|
||||
hotel: Hotel
|
||||
user: User | null
|
||||
}
|
||||
|
||||
export function SingleRoom({ bedType, image, hotel, user }: RoomProps) {
|
||||
const intl = useIntl()
|
||||
const lang = useLang()
|
||||
|
||||
const bookedRoom = useMyStayRoomDetailsStore((state) => state.bookedRoom)
|
||||
const updateBookedRoom = useMyStayRoomDetailsStore(
|
||||
(state) => state.actions.updateBookedRoom
|
||||
)
|
||||
|
||||
if (!bookedRoom.roomNumber) {
|
||||
return (
|
||||
<div className={styles.room}>
|
||||
<SkeletonShimmer width={"200px"} height="30px" />
|
||||
<SkeletonShimmer width="100%" height="750px" />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
const fromDate = dt(bookedRoom.checkInDate).locale(lang)
|
||||
|
||||
const {
|
||||
adults,
|
||||
childrenAges,
|
||||
confirmationNumber,
|
||||
bookingCode,
|
||||
roomPrice,
|
||||
packages,
|
||||
rateDefinition,
|
||||
isCancelled,
|
||||
} = bookedRoom
|
||||
|
||||
const mainBedWidthValueMsg = intl.formatMessage(
|
||||
{ id: "{value} cm" },
|
||||
{
|
||||
value: bedType.mainBed.widthRange.min,
|
||||
}
|
||||
)
|
||||
|
||||
const mainBedWidthRangeMsg = intl.formatMessage(
|
||||
{
|
||||
id: "{min}–{max} cm",
|
||||
},
|
||||
{
|
||||
min: bedType.mainBed.widthRange.min,
|
||||
max: bedType.mainBed.widthRange.max,
|
||||
}
|
||||
)
|
||||
|
||||
const adultsMsg = intl.formatMessage(
|
||||
{ id: "{adults, plural, one {# adult} other {# adults}}" },
|
||||
{
|
||||
adults,
|
||||
}
|
||||
)
|
||||
|
||||
const childrenMsg = intl.formatMessage(
|
||||
{
|
||||
id: "{children, plural, one {# child} other {# children}}",
|
||||
},
|
||||
{
|
||||
children: childrenAges.length,
|
||||
}
|
||||
)
|
||||
|
||||
const adultsOnlyMsg = adultsMsg
|
||||
const adultsAndChildrenMsg = [adultsMsg, childrenMsg].join(", ")
|
||||
|
||||
const hasPackages = packages?.some((item) =>
|
||||
Object.values(RoomPackageCodeEnum).includes(item.code)
|
||||
)
|
||||
|
||||
return (
|
||||
<div>
|
||||
<article className={styles.room}>
|
||||
<Typography variant="Title/Subtitle/lg">
|
||||
<p className={styles.roomName}>{bookedRoom.roomName}</p>
|
||||
</Typography>
|
||||
<div className={styles.roomHeader}>
|
||||
<div className={styles.roomHeaderContent}>
|
||||
<div className={styles.chip}>
|
||||
<Typography variant="Tag/sm">
|
||||
<span>
|
||||
{intl.formatMessage(
|
||||
{ id: "Room {roomIndex}" },
|
||||
{
|
||||
roomIndex: bookedRoom.roomNumber,
|
||||
}
|
||||
)}
|
||||
</span>
|
||||
</Typography>
|
||||
</div>
|
||||
<div className={styles.reference}>
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<span>{intl.formatMessage({ id: "Reference" })}:</span>
|
||||
</Typography>
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<span>{confirmationNumber}</span>
|
||||
</Typography>
|
||||
</div>
|
||||
</div>
|
||||
<div className={styles.sidePeek}>
|
||||
<ToggleSidePeek
|
||||
hotelId={hotel.operaId}
|
||||
roomTypeCode={bookedRoom.roomTypeCode}
|
||||
intent="text"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div className={styles.booking}>
|
||||
<div
|
||||
className={`${styles.content} ${isCancelled ? styles.cancelled : ""}`}
|
||||
>
|
||||
{packages &&
|
||||
packages.some((item) =>
|
||||
Object.values(RoomPackageCodeEnum).includes(item.code)
|
||||
) && (
|
||||
<div className={styles.packages}>
|
||||
{packages
|
||||
.filter((item) =>
|
||||
Object.values(RoomPackageCodeEnum).includes(item.code)
|
||||
)
|
||||
.map((item) => {
|
||||
const Icon = getIconForFeatureCode(item.code)
|
||||
return (
|
||||
<span className={styles.package} key={item.code}>
|
||||
<Icon width={16} height={16} color="burgundy" />
|
||||
</span>
|
||||
)
|
||||
})}
|
||||
</div>
|
||||
)}
|
||||
<div className={styles.imageContainer}>
|
||||
<Image
|
||||
key={image.imageSizes.small}
|
||||
src={image.imageSizes.small}
|
||||
className={styles.image}
|
||||
alt={bookedRoom.roomName}
|
||||
width={640}
|
||||
height={960}
|
||||
/>
|
||||
</div>
|
||||
<div className={styles.roomDetails}>
|
||||
<div className={styles.bookingDetails}>
|
||||
<div className={styles.row}>
|
||||
<span className={styles.rowTitle}>
|
||||
<PersonIcon color="grey80" width={20} height={20} />
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>{intl.formatMessage({ id: "Guests" })}</p>
|
||||
</Typography>
|
||||
</span>
|
||||
<div className={styles.rowContent}>
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p color="uiTextHighContrast">
|
||||
{childrenAges.length > 0
|
||||
? adultsAndChildrenMsg
|
||||
: adultsOnlyMsg}
|
||||
</p>
|
||||
</Typography>
|
||||
</div>
|
||||
</div>
|
||||
<div className={styles.row}>
|
||||
<span className={styles.rowTitle}>
|
||||
<ContractIcon color="grey80" width={20} height={20} />
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>{intl.formatMessage({ id: "Terms" })}</p>
|
||||
</Typography>
|
||||
</span>
|
||||
<div className={styles.rowContent}>
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p color="uiTextHighContrast">
|
||||
{rateDefinition.cancellationText}
|
||||
</p>
|
||||
</Typography>
|
||||
</div>
|
||||
</div>
|
||||
<div className={styles.row}>
|
||||
<span className={styles.rowTitle}>
|
||||
<Refresh color="grey80" width={20} height={20} />
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>{intl.formatMessage({ id: "Modify By" })}</p>
|
||||
</Typography>
|
||||
</span>
|
||||
<div className={styles.rowContent}>
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p color="uiTextHighContrast">
|
||||
{intl.formatMessage(
|
||||
{ id: "Until {time}, {date}" },
|
||||
{ time: "18:00", date: fromDate.format("dddd D MMM") }
|
||||
)}
|
||||
</p>
|
||||
</Typography>
|
||||
</div>
|
||||
</div>
|
||||
<div className={styles.row}>
|
||||
<span className={styles.rowTitle}>
|
||||
<CoffeeIcon color="grey80" width={20} height={20} />
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>{intl.formatMessage({ id: "Breakfast" })}</p>
|
||||
</Typography>
|
||||
</span>
|
||||
<div className={styles.rowContent}>
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p color="uiTextHighContrast">
|
||||
{hasBreakfastPackage(
|
||||
packages?.map((pkg) => ({
|
||||
code: pkg.code,
|
||||
})) ?? []
|
||||
)
|
||||
? intl.formatMessage({ id: "Included" })
|
||||
: intl.formatMessage({ id: "Not included" })}
|
||||
</p>
|
||||
</Typography>
|
||||
</div>
|
||||
</div>
|
||||
{hasPackages && (
|
||||
<div className={styles.row}>
|
||||
<span className={styles.rowTitle}>
|
||||
<DoorOpenIcon color="grey80" width={20} height={20} />
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>
|
||||
{intl.formatMessage({ id: "Room classification" })}
|
||||
</p>
|
||||
</Typography>
|
||||
</span>
|
||||
<div className={styles.rowContent}>
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p color="uiTextHighContrast">
|
||||
{packages!
|
||||
.filter((item) =>
|
||||
Object.values(RoomPackageCodeEnum).includes(
|
||||
item.code
|
||||
)
|
||||
)
|
||||
.map((item) => item.description)
|
||||
.join(", ")}
|
||||
</p>
|
||||
</Typography>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
|
||||
<div className={styles.row}>
|
||||
<span className={styles.rowTitle}>
|
||||
<BedDoubleIcon color="grey80" width={20} height={20} />
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>{intl.formatMessage({ id: "Bed preference" })}</p>
|
||||
</Typography>
|
||||
</span>
|
||||
<div className={styles.rowContent}>
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p color="uiTextHighContrast">
|
||||
{bedType.mainBed.description}
|
||||
{bedType.mainBed.widthRange.min ===
|
||||
bedType.mainBed.widthRange.max
|
||||
? ` (${mainBedWidthValueMsg})`
|
||||
: ` (${mainBedWidthRangeMsg})`}
|
||||
</p>
|
||||
</Typography>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className={styles.guestDetailsDesktopWrapper}>
|
||||
<GuestDetails
|
||||
user={user}
|
||||
booking={bookedRoom}
|
||||
updateRoom={updateBookedRoom}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className={styles.bookingInformation}>
|
||||
{bookingCode && (
|
||||
<IconChip color={"blue"} icon={<BookingCodeIcon color="blue" />}>
|
||||
<Typography variant="Body/Supporting text (caption)/smBold">
|
||||
<p className={styles.bookingCode}>
|
||||
<strong>
|
||||
{intl.formatMessage({ id: "Booking code" })}
|
||||
</strong>
|
||||
: {bookingCode}
|
||||
</p>
|
||||
</Typography>
|
||||
</IconChip>
|
||||
)}
|
||||
<div className={styles.priceDetails}>
|
||||
<div className={styles.price}>
|
||||
<Typography variant="Body/Lead text">
|
||||
<p color="uiTextHighContrast">
|
||||
{intl.formatMessage({ id: "Room total" })}
|
||||
</p>
|
||||
</Typography>
|
||||
<Price
|
||||
price={isCancelled ? 0 : roomPrice.perStay.local.price}
|
||||
variant="Title/Subtitle/lg"
|
||||
isMember={rateDefinition.isMemberRate}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<PriceDetails />
|
||||
<div className={styles.guestDetailsMobileWrapper}>
|
||||
<GuestDetails
|
||||
user={user}
|
||||
booking={bookedRoom}
|
||||
updateRoom={updateBookedRoom}
|
||||
/>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
@@ -7,102 +7,87 @@
|
||||
}
|
||||
|
||||
.bookingCode {
|
||||
display: flex;
|
||||
gap: var(--Spacing-x1);
|
||||
color: var(--UI-Semantic-Information);
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.room {
|
||||
background-color: transparent;
|
||||
padding: 0;
|
||||
}
|
||||
.roomName {
|
||||
color: var(--Scandic-Brand-Burgundy);
|
||||
padding: 0 var(--Spacing-x2);
|
||||
}
|
||||
|
||||
.roomHeader {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: var(--max-width-content);
|
||||
margin: 0 auto;
|
||||
align-items: flex-start;
|
||||
gap: var(--Spacing-x1);
|
||||
gap: var(--Spacing-x-one-and-half);
|
||||
padding: 0 var(--Spacing-x2);
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.roomHeader {
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
flex-direction: row;
|
||||
}
|
||||
.roomHeaderContent {
|
||||
display: flex;
|
||||
gap: var(--Spacing-x-one-and-half);
|
||||
}
|
||||
|
||||
.sidePeek {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.booking {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
}
|
||||
.content {
|
||||
display: grid;
|
||||
gap: var(--Spacing-x2);
|
||||
position: relative;
|
||||
width: var(--max-width-content);
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.booking {
|
||||
border-radius: var(--Corner-radius-Large);
|
||||
background-color: var(--Base-Background-Primary-Normal);
|
||||
padding: var(--Spacing-x2);
|
||||
}
|
||||
}
|
||||
|
||||
.chipContainer {
|
||||
position: absolute;
|
||||
top: 300px;
|
||||
left: 25px;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: var(--Spacing-x1);
|
||||
.cancelled {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.chip {
|
||||
background-color: var(--Scandic-Peach-30);
|
||||
color: var(--Scandic-Red-100);
|
||||
border-radius: var(--Corner-radius-Small);
|
||||
padding: var(--Spacing-x-half) var(--Spacing-x1);
|
||||
}
|
||||
|
||||
.reference {
|
||||
display: flex;
|
||||
gap: var(--Spacing-x-half);
|
||||
}
|
||||
|
||||
.packages {
|
||||
position: absolute;
|
||||
top: 180px;
|
||||
left: 15px;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: var(--Spacing-x1);
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.package {
|
||||
background-color: var(--Main-Grey-White);
|
||||
padding: var(--Spacing-x-half) var(--Spacing-x1);
|
||||
border-radius: var(--Corner-radius-Small);
|
||||
}
|
||||
|
||||
.images {
|
||||
display: grid;
|
||||
gap: var(--Spacing-x-one-and-half);
|
||||
grid-template-columns: 1fr;
|
||||
height: 210px;
|
||||
.imageContainer {
|
||||
height: 220px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.images {
|
||||
height: 320px;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
.image {
|
||||
border-radius: var(--Corner-radius-Medium);
|
||||
width: 100%;
|
||||
height: 210px;
|
||||
height: 220px;
|
||||
aspect-ratio: 16/9;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.image:last-child {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.image {
|
||||
height: 100%;
|
||||
}
|
||||
.image:last-child {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
.imagePlaceholder {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
@@ -121,42 +106,22 @@
|
||||
}
|
||||
|
||||
.roomDetails {
|
||||
display: grid;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--Spacing-x5);
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.roomDetails {
|
||||
grid-template-columns: minmax(0, 700px) 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
.bookingDetails {
|
||||
max-width: 100%;
|
||||
padding: 0 var(--Spacing-x2);
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.bookingDetails {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.row {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: var(--Spacing-x-one-and-half) 0;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.row {
|
||||
border-bottom: 1px solid var(--Base-Border-Subtle);
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
}
|
||||
|
||||
.row:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
@@ -172,136 +137,127 @@
|
||||
height: 24px;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.rowTitle svg {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.rowContent {
|
||||
padding-left: var(--Spacing-x4);
|
||||
}
|
||||
|
||||
.guestDetailsDesktop {
|
||||
flex-direction: column;
|
||||
align-items: flex-end;
|
||||
display: none;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.guestDetailsDesktop {
|
||||
display: flex;
|
||||
}
|
||||
}
|
||||
|
||||
.guestDetailsMobile {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
margin-bottom: var(--Spacing-x2);
|
||||
background-color: var(--Main-Brand-PalePeach);
|
||||
padding: var(--Spacing-x3) 0;
|
||||
}
|
||||
|
||||
.guestDetailsMobile .row {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.guestDetailsMobile .rowTitle {
|
||||
margin-bottom: var(--Spacing-x1);
|
||||
}
|
||||
|
||||
.guestDetailsMobile .userDetails {
|
||||
width: calc(100% - var(--Spacing-x4) - var(--Spacing-x4));
|
||||
border-bottom: 1px solid var(--Primary-Light-On-Surface-Divider);
|
||||
padding-bottom: var(--Spacing-x3);
|
||||
margin-bottom: var(--Spacing-x3);
|
||||
}
|
||||
|
||||
.guestDetailsMobile .totalPoints {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: var(--Spacing-x1);
|
||||
padding-top: var(--Spacing-x3);
|
||||
}
|
||||
|
||||
.guestDetailsMobile .totalPointsText {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.guestDetailsMobile .guest {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.guestDetailsMobile {
|
||||
display: none;
|
||||
}
|
||||
.totalPoints {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: var(--Spacing-x-one-and-half) 0;
|
||||
}
|
||||
}
|
||||
|
||||
.guest {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-end;
|
||||
margin-bottom: var(--Spacing-x2);
|
||||
}
|
||||
|
||||
.bookingInformation {
|
||||
display: flex;
|
||||
flex-direction: column-reverse;
|
||||
align-items: center;
|
||||
gap: var(--Spacing-x2);
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.bookingInformation {
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
}
|
||||
background-color: var(--Scandic-Beige-10);
|
||||
margin: 0 var(--Spacing-x2);
|
||||
border: 1px solid var(--Base-Border-Subtle);
|
||||
border-radius: var(--Corner-radius-Medium);
|
||||
}
|
||||
|
||||
.priceDetails {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: var(--Spacing-x1);
|
||||
border-top: 1px solid var(--Base-Border-Subtle);
|
||||
border-bottom: 1px solid var(--Base-Border-Subtle);
|
||||
padding: var(--Spacing-x-one-and-half) 0;
|
||||
width: calc(100% - var(--Spacing-x4));
|
||||
justify-content: center;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.priceDetails {
|
||||
border: none;
|
||||
margin: 0;
|
||||
width: auto;
|
||||
flex-direction: column;
|
||||
align-items: flex-end;
|
||||
}
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.price {
|
||||
display: flex;
|
||||
gap: var(--Spacing-x1);
|
||||
}
|
||||
.price {
|
||||
display: flex;
|
||||
gap: var(--Spacing-x1);
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.userDetails {
|
||||
width: 100%;
|
||||
border-bottom: 1px solid var(--Base-Border-Subtle);
|
||||
margin-bottom: var(--Spacing-x1);
|
||||
color: var(--Scandic-Brand-Burgundy);
|
||||
}
|
||||
|
||||
.guestDetailsMobileWrapper {
|
||||
display: block;
|
||||
padding: 0 var(--Spacing-x2);
|
||||
}
|
||||
|
||||
.guestDetailsDesktopWrapper {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.room {
|
||||
background-color: transparent;
|
||||
padding: 0;
|
||||
}
|
||||
.roomName {
|
||||
padding: 0;
|
||||
}
|
||||
.roomHeader {
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
flex-direction: row;
|
||||
padding: 0;
|
||||
}
|
||||
.sidePeek {
|
||||
display: block;
|
||||
}
|
||||
.booking {
|
||||
border-radius: var(--Corner-radius-Large);
|
||||
background-color: var(--Base-Background-Primary-Normal);
|
||||
}
|
||||
.content {
|
||||
padding: var(--Spacing-x2);
|
||||
grid-template-columns: 3fr 2fr;
|
||||
width: var(--max-width-content);
|
||||
}
|
||||
.packages {
|
||||
top: 620px;
|
||||
left: 25px;
|
||||
}
|
||||
.imageContainer {
|
||||
height: 640px;
|
||||
}
|
||||
.image {
|
||||
height: 100%;
|
||||
border-radius: var(--Corner-radius-Medium);
|
||||
}
|
||||
.bookingDetails {
|
||||
padding: 0;
|
||||
}
|
||||
.row {
|
||||
border-bottom: 1px solid var(--Base-Border-Subtle);
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.rowTitle svg {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
.bookingInformation {
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
padding: var(--Spacing-x-one-and-half);
|
||||
margin: 0;
|
||||
border-radius: 0;
|
||||
border: none;
|
||||
}
|
||||
.priceDetails {
|
||||
margin: 0 0 0 auto;
|
||||
width: auto;
|
||||
align-items: flex-end;
|
||||
}
|
||||
.price {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
.guestDetailsMobileWrapper {
|
||||
display: none;
|
||||
}
|
||||
.guestDetailsDesktopWrapper {
|
||||
display: block;
|
||||
margin-top: auto;
|
||||
}
|
||||
}
|
||||
@@ -138,7 +138,7 @@ const loggedOut: Guest = {
|
||||
email: "logged+out@scandichotels.com",
|
||||
firstName: "Anonymous",
|
||||
lastName: "Booking",
|
||||
membershipNumber: null,
|
||||
membershipNumber: "",
|
||||
phoneNumber: "+46701234567",
|
||||
countryCode: "SE",
|
||||
}
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
import { cookies } from "next/headers"
|
||||
import { notFound } from "next/navigation"
|
||||
import { Suspense } from "react"
|
||||
|
||||
import { homeHrefs } from "@/constants/homeHrefs"
|
||||
import { env } from "@/env/server"
|
||||
@@ -19,7 +18,6 @@ import { getIntl } from "@/i18n"
|
||||
import { getLang } from "@/i18n/serverContext"
|
||||
|
||||
import AdditionalInfoForm from "../FindMyBooking/AdditionalInfoForm"
|
||||
import LinkedReservationSkeleton from "./LinkedReservation/LinkedReservationSkeleton"
|
||||
import accessBooking, {
|
||||
ACCESS_GRANTED,
|
||||
ERROR_BAD_REQUEST,
|
||||
@@ -28,10 +26,9 @@ import accessBooking, {
|
||||
import { Ancillaries } from "./Ancillaries"
|
||||
import BookingSummary from "./BookingSummary"
|
||||
import { Header } from "./Header"
|
||||
import LinkedReservation from "./LinkedReservation"
|
||||
import Promo from "./Promo"
|
||||
import { ReferenceCard } from "./ReferenceCard"
|
||||
import { Room } from "./Room"
|
||||
import Rooms from "./Rooms"
|
||||
|
||||
import styles from "./myStay.module.css"
|
||||
|
||||
@@ -53,12 +50,6 @@ export async function MyStay({ refId }: { refId: string }) {
|
||||
|
||||
const access = accessBooking(booking.guest, lastName, user, bv)
|
||||
if (access === ACCESS_GRANTED) {
|
||||
const linkedBookingPromises = booking.linkedReservations
|
||||
? booking.linkedReservations.map((linkedBooking) => {
|
||||
return getBookingConfirmation(linkedBooking.confirmationNumber)
|
||||
})
|
||||
: []
|
||||
|
||||
const lang = getLang()
|
||||
const ancillaryPackages = await getAncillaryPackages({
|
||||
fromDate: dt(booking.checkInDate).format("YYYY-MM-DD"),
|
||||
@@ -94,9 +85,10 @@ export async function MyStay({ refId }: { refId: string }) {
|
||||
<ReferenceCard
|
||||
booking={booking}
|
||||
hotel={hotel}
|
||||
user={user}
|
||||
savedCreditCards={savedCreditCards}
|
||||
refId={refId}
|
||||
room={room}
|
||||
isLoggedIn={!!user}
|
||||
/>
|
||||
</div>
|
||||
{booking.showAncillaries && (
|
||||
@@ -108,28 +100,18 @@ export async function MyStay({ refId }: { refId: string }) {
|
||||
refId={refId}
|
||||
/>
|
||||
)}
|
||||
<div>
|
||||
<Room booking={booking} room={room} hotel={hotel} user={user} />
|
||||
{booking.linkedReservations.map((linkedRes, index) => (
|
||||
<Suspense
|
||||
key={linkedRes.confirmationNumber}
|
||||
fallback={<LinkedReservationSkeleton />}
|
||||
>
|
||||
<LinkedReservation
|
||||
bookingPromise={linkedBookingPromises[index]}
|
||||
index={index}
|
||||
/>
|
||||
</Suspense>
|
||||
))}
|
||||
</div>
|
||||
<BookingSummary booking={booking} hotel={hotel} room={room} />
|
||||
|
||||
<Rooms booking={booking} room={room} hotel={hotel} user={user} />
|
||||
|
||||
<BookingSummary hotel={hotel} />
|
||||
<Promo
|
||||
buttonText={intl.formatMessage({ id: "Book another stay" })}
|
||||
href={`${homeHrefs[env.NODE_ENV][lang]}?hotel=${hotel.operaId}`}
|
||||
title={intl.formatMessage({ id: "Book your next stay" })}
|
||||
text={intl.formatMessage({
|
||||
id: "Get inspired and start dreaming beyond your next trip. Explore more Scandic destinations.",
|
||||
})}
|
||||
title={intl.formatMessage({ id: "Book your next stay" })}
|
||||
buttonText={intl.formatMessage({ id: "Explore Scandic hotels" })}
|
||||
href={`${homeHrefs[env.NODE_ENV][lang]}?hotel=${hotel.operaId}`}
|
||||
image={hotel.hotelContent.images}
|
||||
/>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
@@ -44,13 +44,6 @@
|
||||
padding-bottom: var(--Spacing-x3);
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.content {
|
||||
width: var(--max-width-content);
|
||||
padding-bottom: 160px;
|
||||
}
|
||||
}
|
||||
|
||||
.form {
|
||||
max-width: 640px;
|
||||
margin-left: auto;
|
||||
@@ -85,12 +78,6 @@
|
||||
gap: var(--Spacing-x2);
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.ancillariesSkeleton {
|
||||
flex-direction: row;
|
||||
}
|
||||
}
|
||||
|
||||
.paymentDetailsSkeleton {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@@ -106,3 +93,14 @@
|
||||
.logIn {
|
||||
padding: var(--Spacing-x5) var(--Spacing-x2);
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.content {
|
||||
width: var(--max-width-content);
|
||||
padding-bottom: 160px;
|
||||
}
|
||||
|
||||
.ancillariesSkeleton {
|
||||
flex-direction: row;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,8 +1,10 @@
|
||||
"use client"
|
||||
|
||||
import SkeletonShimmer from "@/components/SkeletonShimmer"
|
||||
|
||||
import styles from "./myStay.module.css"
|
||||
|
||||
export async function MyStaySkeleton() {
|
||||
export function MyStaySkeleton() {
|
||||
return (
|
||||
<div className={styles.content}>
|
||||
<div className={styles.headerSkeleton}>
|
||||
@@ -25,7 +27,7 @@ export async function MyStaySkeleton() {
|
||||
</div>
|
||||
<div className={styles.section}>
|
||||
<SkeletonShimmer width={"200px"} height="30px" />
|
||||
<div className={styles.roomSkeleton}>
|
||||
<div>
|
||||
<SkeletonShimmer width="100%" height="700px" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,63 +0,0 @@
|
||||
import { create } from "zustand"
|
||||
|
||||
export interface RoomDetails {
|
||||
id: string
|
||||
hotelId: string
|
||||
checkInDate: Date
|
||||
checkOutDate: Date
|
||||
adults: number
|
||||
children: string
|
||||
roomName: string
|
||||
roomTypeCode: string
|
||||
rateCode: string
|
||||
bookingCode: string
|
||||
isCancelable: boolean
|
||||
mainRoom: boolean
|
||||
}
|
||||
|
||||
interface MyStayRoomDetailsState {
|
||||
rooms: RoomDetails[]
|
||||
actions: {
|
||||
setRoomDetails: (room: RoomDetails) => void
|
||||
updateRoomDetails: (room: RoomDetails) => void
|
||||
}
|
||||
}
|
||||
|
||||
export const useMyStayRoomDetailsStore = create<MyStayRoomDetailsState>(
|
||||
(set) => ({
|
||||
rooms: [],
|
||||
actions: {
|
||||
setRoomDetails: (room) => {
|
||||
set((state) => {
|
||||
// Check if room with this ID already exists
|
||||
const existingIndex = state.rooms.findIndex((r) => r.id === room.id)
|
||||
let newRooms = [...state.rooms]
|
||||
|
||||
if (existingIndex >= 0) {
|
||||
// Update existing room
|
||||
newRooms[existingIndex] = room
|
||||
} else {
|
||||
// Add new room
|
||||
newRooms.push(room)
|
||||
}
|
||||
|
||||
return {
|
||||
rooms: newRooms,
|
||||
}
|
||||
})
|
||||
},
|
||||
updateRoomDetails: (room) => {
|
||||
set((state) => {
|
||||
const existingIndex = state.rooms.findIndex((r) => r.id === room.id)
|
||||
let newRooms = [...state.rooms]
|
||||
if (existingIndex >= 0) {
|
||||
newRooms[existingIndex] = room
|
||||
}
|
||||
return {
|
||||
rooms: newRooms,
|
||||
}
|
||||
})
|
||||
},
|
||||
},
|
||||
})
|
||||
)
|
||||
@@ -0,0 +1,20 @@
|
||||
import { ChildBedMapEnum } from "@/types/components/bookingWidget/enums"
|
||||
import type { Child } from "@/types/components/hotelReservation/selectRate/selectRate"
|
||||
import type { BookingConfirmation } from "@/types/trpc/routers/booking/confirmation"
|
||||
|
||||
const bedTypeToMapEnum: Record<string, ChildBedMapEnum> = {
|
||||
Crib: ChildBedMapEnum.IN_CRIB,
|
||||
ExtraBed: ChildBedMapEnum.IN_EXTRA_BED,
|
||||
ParentsBed: ChildBedMapEnum.IN_ADULTS_BED,
|
||||
Unknown: ChildBedMapEnum.UNKNOWN,
|
||||
}
|
||||
|
||||
export function convertToChildType(
|
||||
childrenAges: number[],
|
||||
childBedPreferences: BookingConfirmation["booking"]["childBedPreferences"]
|
||||
): Child[] {
|
||||
return childBedPreferences.map((preference, index) => ({
|
||||
age: childrenAges[index],
|
||||
bed: bedTypeToMapEnum[preference.bedType] ?? ChildBedMapEnum.UNKNOWN,
|
||||
}))
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
import { BreakfastPackageEnum } from "@/types/enums/breakfast"
|
||||
|
||||
export function hasBreakfastPackage(
|
||||
packages: {
|
||||
code: string
|
||||
}[]
|
||||
) {
|
||||
return packages.some(
|
||||
(p) =>
|
||||
p.code === BreakfastPackageEnum.REGULAR_BREAKFAST ||
|
||||
p.code === BreakfastPackageEnum.FREE_MEMBER_BREAKFAST ||
|
||||
p.code === BreakfastPackageEnum.SPECIAL_PACKAGE_BREAKFAST
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,140 @@
|
||||
import { BookingStatusEnum } from "@/constants/booking"
|
||||
import { dt } from "@/lib/dt"
|
||||
|
||||
import { formatChildBedPreferences } from "../utils"
|
||||
import { convertToChildType } from "./convertToChildType"
|
||||
|
||||
import type { BreakfastPackage } from "@/types/components/hotelReservation/breakfast"
|
||||
import { RoomPackageCodeEnum } from "@/types/components/hotelReservation/selectRate/roomFilter"
|
||||
import { BreakfastPackageEnum } from "@/types/enums/breakfast"
|
||||
import { PackageTypeEnum } from "@/types/enums/packages"
|
||||
import type { Room } from "@/types/hotel"
|
||||
import type { BookingConfirmation } from "@/types/trpc/routers/booking/confirmation"
|
||||
import type { Room as MyStayRoom } from "@/stores/my-stay/myStayRoomDetailsStore"
|
||||
|
||||
interface MapRoomDetailsParams {
|
||||
booking: BookingConfirmation["booking"]
|
||||
room: (Room & { bedType: Room["roomTypes"][number] }) | null
|
||||
roomNumber: number
|
||||
}
|
||||
|
||||
export function mapRoomDetails({
|
||||
booking,
|
||||
room,
|
||||
roomNumber,
|
||||
}: MapRoomDetailsParams): MyStayRoom {
|
||||
const nights = dt(booking.checkOutDate)
|
||||
.startOf("day")
|
||||
.diff(dt(booking.checkInDate).startOf("day"), "days")
|
||||
|
||||
const breakfastPkg = booking.packages.find(
|
||||
(pkg) =>
|
||||
pkg.code === BreakfastPackageEnum.REGULAR_BREAKFAST ||
|
||||
pkg.code === BreakfastPackageEnum.FREE_MEMBER_BREAKFAST ||
|
||||
pkg.code === BreakfastPackageEnum.SPECIAL_PACKAGE_BREAKFAST
|
||||
)
|
||||
|
||||
const featuresPkg = booking.packages.filter(
|
||||
(pkg) =>
|
||||
pkg.code === RoomPackageCodeEnum.PET_ROOM ||
|
||||
pkg.code === RoomPackageCodeEnum.ALLERGY_ROOM ||
|
||||
pkg.code === RoomPackageCodeEnum.ACCESSIBILITY_ROOM
|
||||
)
|
||||
|
||||
const breakfast: BreakfastPackage | false = breakfastPkg
|
||||
? {
|
||||
code: breakfastPkg.code,
|
||||
description: breakfastPkg.description,
|
||||
localPrice: {
|
||||
currency: breakfastPkg.currency,
|
||||
price: breakfastPkg.unitPrice,
|
||||
totalPrice: breakfastPkg.totalPrice,
|
||||
},
|
||||
requestedPrice: {
|
||||
currency: breakfastPkg.currency,
|
||||
price: breakfastPkg.unitPrice,
|
||||
totalPrice: breakfastPkg.totalPrice,
|
||||
},
|
||||
packageType: PackageTypeEnum.BreakfastAdult,
|
||||
}
|
||||
: false
|
||||
|
||||
const isCancelled = booking.reservationStatus === BookingStatusEnum.Cancelled
|
||||
|
||||
const childrenAsString = formatChildBedPreferences({
|
||||
childrenAges: booking.childrenAges,
|
||||
childBedPreferences: booking.childBedPreferences,
|
||||
})
|
||||
|
||||
const childrenInRoom = convertToChildType(
|
||||
booking.childrenAges,
|
||||
booking.childBedPreferences
|
||||
)
|
||||
|
||||
return {
|
||||
hotelId: booking.hotelId,
|
||||
roomTypeCode: booking.roomTypeCode,
|
||||
adults: booking.adults,
|
||||
childrenAges: booking.childrenAges,
|
||||
checkInDate: booking.checkInDate,
|
||||
checkOutDate: booking.checkOutDate,
|
||||
confirmationNumber: booking.confirmationNumber,
|
||||
cancellationNumber: booking.cancellationNumber,
|
||||
createDateTime: booking.createDateTime,
|
||||
rateDefinition: booking.rateDefinition,
|
||||
guaranteeInfo: booking.guaranteeInfo,
|
||||
linkedReservations: booking.linkedReservations,
|
||||
bookingCode: booking.bookingCode,
|
||||
isModifiable: booking.isModifiable,
|
||||
isCancelable: booking.isCancelable,
|
||||
multiRoom: booking.multiRoom,
|
||||
canChangeDate: booking.canChangeDate,
|
||||
guest: booking.guest,
|
||||
currencyCode: booking.currencyCode,
|
||||
vatPercentage: booking.vatPercentage,
|
||||
mainRoom: booking.mainRoom,
|
||||
roomName: room?.name ?? "",
|
||||
roomNumber,
|
||||
isCancelled,
|
||||
childrenInRoom,
|
||||
childrenAsString,
|
||||
terms: booking.rateDefinition.cancellationText,
|
||||
packages: featuresPkg.map((pkg) => ({
|
||||
code: pkg.code as RoomPackageCodeEnum,
|
||||
description: pkg.description,
|
||||
inventories: [],
|
||||
itemCode: "",
|
||||
localPrice: {
|
||||
currency: pkg.currency,
|
||||
price: pkg.unitPrice,
|
||||
totalPrice: pkg.totalPrice,
|
||||
},
|
||||
requestedPrice: {
|
||||
currency: pkg.currency,
|
||||
price: pkg.unitPrice,
|
||||
totalPrice: pkg.totalPrice,
|
||||
},
|
||||
})),
|
||||
bedType: {
|
||||
description: room?.bedType.mainBed.description ?? "",
|
||||
roomTypeCode: room?.bedType.code ?? "",
|
||||
},
|
||||
roomPrice: {
|
||||
perNight: {
|
||||
local: {
|
||||
currency: booking.currencyCode,
|
||||
price: isCancelled ? 0 : booking.roomPrice / nights,
|
||||
},
|
||||
requested: undefined,
|
||||
},
|
||||
perStay: {
|
||||
local: {
|
||||
currency: booking.currencyCode,
|
||||
price: isCancelled ? 0 : booking.roomPrice,
|
||||
},
|
||||
requested: undefined,
|
||||
},
|
||||
},
|
||||
breakfast,
|
||||
}
|
||||
}
|
||||
@@ -3,6 +3,7 @@
|
||||
import { trpc } from "@/lib/trpc/client"
|
||||
import useSidePeekStore from "@/stores/sidepeek"
|
||||
|
||||
import BookedRoomSidePeek from "@/components/SidePeeks/BookedRoomSidePeek"
|
||||
import HotelSidePeek from "@/components/SidePeeks/HotelSidePeek"
|
||||
import RoomSidePeek from "@/components/SidePeeks/RoomSidePeek"
|
||||
import useLang from "@/hooks/useLang"
|
||||
@@ -10,8 +11,12 @@ import useLang from "@/hooks/useLang"
|
||||
export default function HotelReservationSidePeek() {
|
||||
const activeSidePeek = useSidePeekStore((state) => state.activeSidePeek)
|
||||
const hotelId = useSidePeekStore((state) => state.hotelId)
|
||||
const confirmationNumber = useSidePeekStore(
|
||||
(state) => state.confirmationNumber
|
||||
)
|
||||
const roomTypeCode = useSidePeekStore((state) => state.roomTypeCode)
|
||||
const showCTA = useSidePeekStore((state) => state.showCTA)
|
||||
const user = useSidePeekStore((state) => state.user)
|
||||
const close = useSidePeekStore((state) => state.closeSidePeek)
|
||||
const lang = useLang()
|
||||
|
||||
@@ -49,6 +54,15 @@ export default function HotelReservationSidePeek() {
|
||||
close={close}
|
||||
/>
|
||||
)}
|
||||
{selectedRoom && (
|
||||
<BookedRoomSidePeek
|
||||
room={selectedRoom}
|
||||
activeSidePeek={activeSidePeek}
|
||||
close={close}
|
||||
user={user}
|
||||
confirmationNumber={confirmationNumber}
|
||||
/>
|
||||
)}
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
43
apps/scandic-web/components/Icons/Expand.tsx
Normal file
43
apps/scandic-web/components/Icons/Expand.tsx
Normal file
@@ -0,0 +1,43 @@
|
||||
import { iconVariants } from "./variants"
|
||||
|
||||
import type { IconProps } from "@/types/components/icon"
|
||||
|
||||
export default function ExpandIcon({ className, color, ...props }: IconProps) {
|
||||
const classNames = iconVariants({ className, color })
|
||||
return (
|
||||
<svg
|
||||
className={classNames}
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
fillRule="evenodd"
|
||||
clipRule="evenodd"
|
||||
d="M14.7569 4.36451C14.7569 3.87465 15.154 3.47753 15.6439 3.47753H19.6353C20.1252 3.47753 20.5223 3.87465 20.5223 4.36451V8.35591C20.5223 8.84577 20.1252 9.24288 19.6353 9.24288C19.1454 9.24288 18.7483 8.84577 18.7483 8.35591V5.25149H15.6439C15.154 5.25149 14.7569 4.85437 14.7569 4.36451Z"
|
||||
fill="#26201E"
|
||||
/>
|
||||
<path
|
||||
fillRule="evenodd"
|
||||
clipRule="evenodd"
|
||||
d="M20.2625 3.73732C20.6089 4.08371 20.6089 4.64531 20.2625 4.9917L15.2732 9.98094C14.9269 10.3273 14.3653 10.3273 14.0189 9.98094C13.6725 9.63456 13.6725 9.07295 14.0189 8.72657L19.0081 3.73732C19.3545 3.39094 19.9161 3.39094 20.2625 3.73732Z"
|
||||
fill="#26201E"
|
||||
/>
|
||||
<path
|
||||
fillRule="evenodd"
|
||||
clipRule="evenodd"
|
||||
d="M4.36476 14.7567C4.85462 14.7567 5.25174 15.1538 5.25174 15.6437V18.7481H8.35616C8.84602 18.7481 9.24313 19.1452 9.24313 19.6351C9.24313 20.1249 8.84602 20.522 8.35616 20.522H4.36476C3.8749 20.522 3.47778 20.1249 3.47778 19.6351V15.6437C3.47778 15.1538 3.8749 14.7567 4.36476 14.7567Z"
|
||||
fill="#26201E"
|
||||
/>
|
||||
<path
|
||||
fillRule="evenodd"
|
||||
clipRule="evenodd"
|
||||
d="M9.98119 14.0186C10.3276 14.365 10.3276 14.9266 9.98119 15.273L4.99195 20.2623C4.64556 20.6086 4.08396 20.6086 3.73757 20.2623C3.39119 19.9159 3.39119 19.3543 3.73757 19.0079L8.72682 14.0186C9.0732 13.6722 9.63481 13.6722 9.98119 14.0186Z"
|
||||
fill="#26201E"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
@@ -2,11 +2,7 @@ import { iconVariants } from "./variants"
|
||||
|
||||
import type { IconProps } from "@/types/components/icon"
|
||||
|
||||
export default function RocketLaunch({
|
||||
className,
|
||||
color,
|
||||
...props
|
||||
}: IconProps) {
|
||||
export default function Refresh({ className, color, ...props }: IconProps) {
|
||||
const classNames = iconVariants({ className, color })
|
||||
return (
|
||||
<svg
|
||||
|
||||
@@ -82,6 +82,7 @@ export { default as ElectricBikeIcon } from "./ElectricBike"
|
||||
export { default as ElectricCarIcon } from "./ElectricCar"
|
||||
export { default as EmailIcon } from "./Email"
|
||||
export { default as ErrorCircleIcon } from "./ErrorCircle"
|
||||
export { default as ExpandIcon } from "./Expand"
|
||||
export { default as EyeHideIcon } from "./EyeHide"
|
||||
export { default as EyeShowIcon } from "./EyeShow"
|
||||
export { default as FacebookIcon } from "./Facebook"
|
||||
|
||||
@@ -2,36 +2,79 @@ import { MembershipLevelEnum } from "@/constants/membershipLevels"
|
||||
|
||||
import {
|
||||
BestFriend,
|
||||
BestFriendSingle,
|
||||
CloseFriend,
|
||||
CloseFriendSingle,
|
||||
DearFriend,
|
||||
DearFriendSingle,
|
||||
GoodFriend,
|
||||
GoodFriendSingle,
|
||||
LoyalFriend,
|
||||
LoyalFriendSingle,
|
||||
NewFriend,
|
||||
NewFriendSingle,
|
||||
TrueFriend,
|
||||
TrueFriendSingle,
|
||||
} from "@/components/Levels"
|
||||
|
||||
import type { MembershipLevelIconProps } from "@/types/components/myPages/membership"
|
||||
|
||||
export default function MembershipLevelIcon({
|
||||
level,
|
||||
rows = 1,
|
||||
color = "pale",
|
||||
...props
|
||||
}: MembershipLevelIconProps) {
|
||||
switch (level) {
|
||||
case MembershipLevelEnum.L1:
|
||||
return <NewFriend color={color} {...props} />
|
||||
switch (rows) {
|
||||
case 1:
|
||||
return <NewFriendSingle color={color} {...props} />
|
||||
case 2:
|
||||
return <NewFriend color={color} {...props} />
|
||||
}
|
||||
case MembershipLevelEnum.L2:
|
||||
return <GoodFriend color={color} {...props} />
|
||||
switch (rows) {
|
||||
case 1:
|
||||
return <GoodFriendSingle color={color} {...props} />
|
||||
case 2:
|
||||
return <GoodFriend color={color} {...props} />
|
||||
}
|
||||
case MembershipLevelEnum.L3:
|
||||
return <CloseFriend color={color} {...props} />
|
||||
switch (rows) {
|
||||
case 1:
|
||||
return <CloseFriendSingle color={color} {...props} />
|
||||
case 2:
|
||||
return <CloseFriend color={color} {...props} />
|
||||
}
|
||||
case MembershipLevelEnum.L4:
|
||||
return <DearFriend color={color} {...props} />
|
||||
switch (rows) {
|
||||
case 1:
|
||||
return <DearFriendSingle color={color} {...props} />
|
||||
case 2:
|
||||
return <DearFriend color={color} {...props} />
|
||||
}
|
||||
case MembershipLevelEnum.L5:
|
||||
return <LoyalFriend color={color} {...props} />
|
||||
switch (rows) {
|
||||
case 1:
|
||||
return <LoyalFriendSingle color={color} {...props} />
|
||||
case 2:
|
||||
return <LoyalFriend color={color} {...props} />
|
||||
}
|
||||
case MembershipLevelEnum.L6:
|
||||
return <TrueFriend color={color} {...props} />
|
||||
switch (rows) {
|
||||
case 1:
|
||||
return <TrueFriendSingle color={color} {...props} />
|
||||
case 2:
|
||||
return <TrueFriend color={color} {...props} />
|
||||
}
|
||||
case MembershipLevelEnum.L7:
|
||||
return <BestFriend color={color} {...props} />
|
||||
switch (rows) {
|
||||
case 1:
|
||||
return <BestFriendSingle color={color} {...props} />
|
||||
case 2:
|
||||
return <BestFriend color={color} {...props} />
|
||||
}
|
||||
default:
|
||||
return null
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { levelVariants } from "../variants"
|
||||
import { levelVariants } from "../../variants"
|
||||
|
||||
import type { LevelProps } from "../levels"
|
||||
import type { LevelProps } from "../../levels"
|
||||
|
||||
export default function BestFriend({
|
||||
className,
|
||||
@@ -1,6 +1,6 @@
|
||||
import { levelVariants } from "../variants"
|
||||
import { levelVariants } from "../../variants"
|
||||
|
||||
import type { LevelProps } from "../levels"
|
||||
import type { LevelProps } from "../../levels"
|
||||
|
||||
export default function CloseFriend({
|
||||
className,
|
||||
@@ -1,6 +1,6 @@
|
||||
import { levelVariants } from "../variants"
|
||||
import { levelVariants } from "../../variants"
|
||||
|
||||
import type { LevelProps } from "../levels"
|
||||
import type { LevelProps } from "../../levels"
|
||||
|
||||
export default function DearFriend({
|
||||
className,
|
||||
@@ -1,6 +1,6 @@
|
||||
import { levelVariants } from "../variants"
|
||||
import { levelVariants } from "../../variants"
|
||||
|
||||
import type { LevelProps } from "../levels"
|
||||
import type { LevelProps } from "../../levels"
|
||||
|
||||
export default function GoodFriend({
|
||||
className,
|
||||
@@ -1,6 +1,6 @@
|
||||
import { levelVariants } from "../variants"
|
||||
import { levelVariants } from "../../variants"
|
||||
|
||||
import type { LevelProps } from "../levels"
|
||||
import type { LevelProps } from "../../levels"
|
||||
|
||||
export default function LoyalFriend({
|
||||
className,
|
||||
@@ -1,6 +1,6 @@
|
||||
import { levelVariants } from "../variants"
|
||||
import { levelVariants } from "../../variants"
|
||||
|
||||
import type { LevelProps } from "../levels"
|
||||
import type { LevelProps } from "../../levels"
|
||||
|
||||
export default function NewFriend({
|
||||
className,
|
||||
@@ -0,0 +1,189 @@
|
||||
import { levelVariants } from "../../variants"
|
||||
|
||||
import type { LevelProps } from "../../levels"
|
||||
|
||||
export default function ScandicFamily({ className, color }: LevelProps) {
|
||||
const classNames = levelVariants({
|
||||
className,
|
||||
color,
|
||||
})
|
||||
return (
|
||||
<svg
|
||||
className={classNames}
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="365"
|
||||
height="44"
|
||||
viewBox="0 0 365 44"
|
||||
fill="none"
|
||||
>
|
||||
<path
|
||||
d="M23.4441 23.8625C23.4256 23.8442 23.4071 23.8259 23.3886 23.8076C23.3701 23.7893 23.3516 23.7711 23.3331 23.7528C23.3146 23.7345 23.296 23.7162 23.2775 23.698C23.259 23.6797 23.2405 23.6614 23.222 23.6431C23.2035 23.6248 23.185 23.6066 23.1665 23.5883C23.148 23.57 23.1295 23.5517 23.111 23.5335C23.0925 23.5152 23.0739 23.4969 23.0554 23.4786C23.0369 23.4603 23.0184 23.4421 22.9999 23.4238C22.9814 23.4055 22.9629 23.3872 22.9444 23.3689C22.9259 23.3507 22.9074 23.3324 22.8889 23.3141C22.8703 23.2958 22.8518 23.2776 22.8333 23.2593C22.8148 23.241 22.7963 23.2227 22.7778 23.2044C22.7593 23.1862 22.7408 23.1679 22.7223 23.1496C22.7038 23.1313 22.6853 23.113 22.6668 23.0948C22.6482 23.0765 22.6297 23.0582 22.6112 23.0399C22.5927 23.0217 22.5742 23.0034 22.5557 22.9851C22.5372 22.9668 22.5187 22.9485 22.5002 22.9303C22.4817 22.912 22.4632 22.8937 22.4447 22.8754C22.4261 22.8571 22.4076 22.8389 22.3891 22.8206C22.3706 22.8023 22.3521 22.784 22.3336 22.7658C22.3151 22.7475 22.2966 22.7292 22.2781 22.7109C22.2596 22.6926 22.2411 22.6744 22.2225 22.6561C22.204 22.6378 22.1855 22.6195 22.167 22.6012C22.1522 22.583 22.1337 22.5683 22.1152 22.5501C23.6995 24.1293 24.8471 26.2021 24.8471 28.9622C24.8471 33.6232 20.7678 38.3317 14.0306 38.3317C8.08935 38.3317 4.79482 35.9043 3.73242 34.8588C3.73612 34.8661 3.74353 34.8697 3.75093 34.8771C3.75833 34.8807 3.76574 34.888 3.76944 34.8953C3.78054 34.9063 3.79165 34.9173 3.80646 34.9319C3.81386 34.9392 3.82126 34.9429 3.82496 34.9502C3.83607 34.9611 3.84717 34.9758 3.86198 34.9867C3.86939 34.994 3.87679 34.9977 3.88049 35.005C3.8916 35.016 3.9027 35.0269 3.91751 35.0416C3.92491 35.0489 3.93232 35.0525 3.93602 35.0598C3.94712 35.0708 3.95823 35.0854 3.97303 35.0964C3.97674 35.1001 3.98784 35.1074 3.99154 35.1147C4.00265 35.1293 4.01375 35.1403 4.02856 35.1512C4.03596 35.1585 4.04337 35.1659 4.04707 35.1695C4.05817 35.1805 4.06928 35.1914 4.08408 35.2061C4.08779 35.2097 4.09519 35.217 4.10259 35.2243C4.1137 35.239 4.1248 35.2499 4.13961 35.2609C4.14701 35.2682 4.15442 35.2755 4.15812 35.2792C4.16923 35.2902 4.18033 35.3011 4.19514 35.3157C4.19884 35.3231 4.20995 35.3267 4.21365 35.334C4.22475 35.3486 4.23586 35.3596 4.25066 35.3706C4.25807 35.3779 4.26547 35.3852 4.26917 35.3889C4.28028 35.3998 4.29138 35.4108 4.30619 35.4254C4.30989 35.4327 4.321 35.4364 4.3247 35.4437C4.3395 35.4583 4.34691 35.4693 4.36171 35.4802C4.36912 35.4876 4.37652 35.4912 4.38022 35.4985C4.39133 35.5095 4.40243 35.5205 4.41724 35.5351C4.42464 35.5387 4.43205 35.5461 4.43575 35.5534C4.44686 35.5643 4.45796 35.5753 4.47277 35.5899C4.48017 35.5936 4.48758 35.6009 4.49128 35.6082C4.50238 35.6192 4.51349 35.6301 4.52829 35.6448C4.5357 35.6521 4.5431 35.6557 4.5468 35.663C4.55791 35.674 4.56901 35.685 4.58382 35.6996C4.59122 35.7069 4.59863 35.7106 4.60233 35.7179C4.61343 35.7288 4.62454 35.7398 4.63934 35.7544C4.64675 35.7617 4.65415 35.7654 4.65785 35.7727C4.66896 35.7837 4.68006 35.7946 4.69487 35.8093C4.70227 35.8166 4.70968 35.8202 4.71338 35.8275C4.72449 35.8385 4.73559 35.8495 4.7504 35.8641C4.7578 35.8714 4.7652 35.8751 4.76891 35.8824C4.78001 35.8933 4.79112 35.908 4.80592 35.9189C4.80962 35.9226 4.82073 35.9299 4.82443 35.9372C4.83924 35.9482 4.84664 35.9628 4.86145 35.9738C4.86885 35.9811 4.87625 35.9847 4.87996 35.992C4.89106 36.003 4.90217 36.014 4.91697 36.0286C4.92068 36.0359 4.93178 36.0396 4.93548 36.0469C4.94659 36.0615 4.95769 36.0725 4.9725 36.0834C4.9799 36.0908 4.98731 36.0981 4.99101 36.1017C5.00211 36.1127 5.01322 36.1237 5.02803 36.1383C5.03173 36.1456 5.04283 36.1492 5.04654 36.1566C5.05764 36.1712 5.06875 36.1821 5.08355 36.1931C5.09096 36.2004 5.09836 36.2077 5.10206 36.2114C5.11316 36.2224 5.12427 36.2333 5.13908 36.2479C6.19407 37.2898 9.49231 39.7318 15.4484 39.7318C22.1855 39.7318 26.2648 35.0233 26.2648 30.3623C26.2648 27.5803 25.0988 25.4966 23.4959 23.9136C23.4774 23.8954 23.4626 23.8807 23.4441 23.8625Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M12.0096 15.6549C12.0096 14.4339 13.2459 13.3482 14.8969 13.3482C17.6917 13.3482 21.0381 15.8377 21.449 16.0643C21.8599 16.3824 22.6853 15.973 23.0074 15.4758L25.3432 11.9919C25.5098 11.7068 25.5949 11.0195 25.2062 10.6539C25.1877 10.6356 25.1692 10.6174 25.1507 10.5991C25.1322 10.5808 25.1137 10.5625 25.0952 10.5443C25.0767 10.526 25.0581 10.5077 25.0396 10.4894C25.0211 10.4711 25.0026 10.4529 24.9841 10.4346C24.9656 10.4163 24.9471 10.398 24.9286 10.3797C24.9101 10.3615 24.8916 10.3432 24.8731 10.3249C24.8545 10.3066 24.836 10.2884 24.8175 10.2701C24.799 10.2518 24.7805 10.2335 24.762 10.2152C24.7435 10.197 24.725 10.1787 24.7065 10.1604C24.688 10.1421 24.6695 10.1238 24.651 10.1056C24.6324 10.0873 24.6139 10.069 24.5954 10.0507C24.5769 10.0325 24.5584 10.0142 24.5399 9.9959C24.5214 9.97762 24.5029 9.95934 24.4844 9.94107C24.4659 9.92279 24.4474 9.90451 24.4289 9.88623C24.4103 9.86795 24.3918 9.84967 24.3733 9.83139C24.3548 9.81312 24.3363 9.79484 24.3178 9.77656C24.2993 9.75828 24.2808 9.74 24.2623 9.72172C24.2438 9.70345 24.2253 9.68517 24.2067 9.66689C24.1882 9.64861 24.1697 9.63033 24.1512 9.61205C24.1327 9.59377 24.1142 9.5755 24.0957 9.55722C24.0772 9.53894 24.0587 9.52066 24.0402 9.50238C24.0217 9.48411 24.0032 9.46583 23.9846 9.44755C23.9661 9.42927 23.9476 9.41099 23.9291 9.39271C23.9106 9.37443 23.8921 9.35615 23.8736 9.33788C23.8588 9.3196 23.8403 9.30132 23.8218 9.2867C24.1734 9.65958 24.0883 10.3176 23.9254 10.5954L21.5896 14.0793C21.2676 14.5765 20.4458 14.9859 20.0312 14.6679C19.6203 14.4412 16.2739 11.9517 13.4791 11.9517C11.8282 11.9517 10.5918 13.0374 10.5918 14.2584C10.5918 14.6459 10.6695 15.0079 10.8287 15.3588C11.173 15.6147 11.5765 15.8669 12.0503 16.1192C12.0244 15.9693 12.0059 15.8158 12.0059 15.6549H12.0096Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M12.1534 24.7578C10.1767 23.9865 7.94823 22.8386 6.21582 21.2008C6.23433 21.2191 6.25284 21.2374 6.27135 21.2557C6.28985 21.2739 6.30836 21.2922 6.32687 21.3105C6.34538 21.3288 6.36389 21.3471 6.3824 21.3653C6.4009 21.3836 6.41941 21.4019 6.43792 21.4202C6.45643 21.4384 6.47494 21.4567 6.49345 21.475C6.51196 21.4933 6.53047 21.5116 6.54898 21.5298C6.56748 21.5481 6.58599 21.5664 6.6045 21.5847C6.62301 21.603 6.64152 21.6212 6.66003 21.6395C6.67853 21.6578 6.69704 21.6761 6.71555 21.6943C6.73406 21.7126 6.75257 21.7309 6.77108 21.7492C6.78959 21.7675 6.8081 21.7857 6.82661 21.804C6.84511 21.8223 6.86362 21.8406 6.88213 21.8589C6.90064 21.8771 6.91915 21.8954 6.93766 21.9137C6.95616 21.932 6.97467 21.9502 6.99318 21.9685C7.01169 21.9868 7.0302 22.0051 7.04871 22.0234C7.06722 22.0416 7.08573 22.0599 7.10423 22.0782C7.12274 22.0965 7.14125 22.1147 7.15976 22.133C7.17827 22.1513 7.19678 22.1696 7.21528 22.1879C7.23379 22.2061 7.2523 22.2244 7.27081 22.2427C7.28932 22.261 7.30783 22.2793 7.32634 22.2975C7.34485 22.3158 7.36336 22.3341 7.38186 22.3524C7.40037 22.3706 7.41888 22.3889 7.43739 22.4072C7.4559 22.4255 7.47441 22.4438 7.49291 22.462C7.51142 22.4803 7.52993 22.4986 7.54844 22.5169C7.56695 22.5352 7.58546 22.5534 7.60397 22.5717C9.34008 24.2241 11.5833 25.3829 13.5712 26.1579C14.1412 26.3809 14.6447 26.6149 15.1111 26.8562C14.9926 26.5454 14.8186 26.2457 14.5854 25.9569C13.9191 25.5328 13.1121 25.1343 12.1571 24.7615L12.1534 24.7578Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M120.381 8.4567C120.381 8.21543 120.263 7.99608 120.085 7.83523C120.067 7.81695 120.048 7.79867 120.03 7.7804C120.011 7.76212 119.993 7.74384 119.974 7.72556C119.956 7.70729 119.937 7.68901 119.919 7.67073C119.9 7.65245 119.881 7.63417 119.863 7.61589C119.844 7.59761 119.826 7.57933 119.807 7.56106C119.789 7.54278 119.77 7.5245 119.752 7.50622C119.733 7.48794 119.715 7.46966 119.696 7.45139C119.678 7.43311 119.659 7.41483 119.641 7.39655C119.622 7.37827 119.604 7.35999 119.585 7.34171C119.567 7.32344 119.548 7.30516 119.53 7.28688C119.511 7.2686 119.493 7.25032 119.474 7.23204C119.456 7.21376 119.437 7.19549 119.419 7.17721C119.4 7.15893 119.382 7.14065 119.363 7.12237C119.345 7.1041 119.326 7.08582 119.308 7.06754C119.289 7.04926 119.271 7.03098 119.252 7.0127C119.234 6.99442 119.215 6.97614 119.197 6.95787C119.178 6.93959 119.16 6.92131 119.141 6.90303C119.123 6.88475 119.104 6.86648 119.086 6.8482C119.067 6.82992 119.049 6.81164 119.03 6.79336C119.012 6.77508 118.993 6.7568 118.975 6.73853C118.956 6.72025 118.938 6.70197 118.919 6.68369C118.901 6.66541 118.882 6.64713 118.864 6.62886C118.845 6.61058 118.826 6.5923 118.808 6.57402C118.789 6.55574 118.771 6.53746 118.752 6.51918C118.741 6.50822 118.73 6.49725 118.719 6.48628C118.867 6.64348 118.963 6.84089 118.963 7.05657V37.5158C118.963 37.9691 118.553 38.331 118.094 38.331H117.361C117.224 38.331 116.857 38.1958 116.765 38.1044L118.179 39.5008C118.271 39.5922 118.638 39.7275 118.775 39.7275H119.508C119.967 39.7275 120.378 39.3656 120.378 38.9123V8.45305L120.381 8.4567Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M98.6186 37.0184C98.6186 37.4717 98.2521 37.8775 97.7487 37.8775H92.296C92.0776 37.8775 91.874 37.7825 91.7148 37.6362C91.7259 37.6472 91.7371 37.6582 91.7482 37.6691C91.7667 37.6874 91.7852 37.7057 91.8037 37.724C91.8222 37.7422 91.8407 37.7605 91.8592 37.7788C91.8777 37.7971 91.8962 37.8154 91.9147 37.8336C91.9332 37.8519 91.9517 37.8702 91.9703 37.8885C91.9888 37.9068 92.0073 37.925 92.0258 37.9433C92.0443 37.9616 92.0628 37.9799 92.0813 37.9981C92.0998 38.0164 92.1183 38.0347 92.1368 38.053C92.1553 38.0713 92.1739 38.0895 92.1924 38.1078C92.2109 38.1261 92.2294 38.1444 92.2479 38.1627C92.2664 38.1809 92.2849 38.1992 92.3034 38.2175C92.3219 38.2358 92.3404 38.254 92.3589 38.2723C92.3775 38.2906 92.396 38.3089 92.4145 38.3272C92.433 38.3454 92.4515 38.3637 92.47 38.382C92.4885 38.4003 92.507 38.4185 92.5255 38.4368C92.544 38.4551 92.5625 38.4734 92.581 38.4917C92.5996 38.5099 92.6181 38.5282 92.6366 38.5465C92.6551 38.5648 92.6736 38.5831 92.6921 38.6013C92.7106 38.6196 92.7291 38.6379 92.7476 38.6562C92.7661 38.6744 92.7846 38.6927 92.8031 38.711C92.8217 38.7293 92.8402 38.7476 92.8587 38.7658C92.8772 38.7841 92.8957 38.8024 92.9142 38.8207C92.9327 38.839 92.9512 38.8572 92.9697 38.8755C92.9882 38.8938 93.0067 38.9121 93.0253 38.9303C93.0438 38.9486 93.0623 38.9669 93.0808 38.9852C93.2436 39.1607 93.4695 39.2776 93.7101 39.2776H99.1627C99.6662 39.2776 100.033 38.8719 100.033 38.4185V21.7193L98.6186 20.3156V37.0221V37.0184Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M197.618 32.7197C197.94 33.0377 197.891 33.6263 197.573 33.9407C194.456 36.9274 190.514 38.3312 186.438 38.3312C181.93 38.3312 177.854 36.5838 174.874 33.736C174.863 33.7287 174.852 33.7177 174.841 33.7104C174.859 33.7287 174.874 33.7433 174.893 33.7616C174.911 33.7798 174.93 33.7981 174.948 33.8164C174.967 33.8347 174.985 33.853 175.004 33.8712C175.022 33.8895 175.041 33.9078 175.059 33.9261C175.078 33.9443 175.096 33.9626 175.115 33.9809C175.133 33.9992 175.152 34.0175 175.17 34.0357C175.189 34.054 175.207 34.0723 175.226 34.0906C175.244 34.1089 175.263 34.1271 175.281 34.1454C175.3 34.1637 175.318 34.182 175.337 34.2002C175.355 34.2185 175.374 34.2368 175.392 34.2551C175.411 34.2734 175.429 34.2916 175.448 34.3099C175.466 34.3282 175.485 34.3465 175.503 34.3648C175.522 34.383 175.54 34.4013 175.559 34.4196C175.577 34.4379 175.596 34.4561 175.614 34.4744C175.633 34.4927 175.651 34.511 175.67 34.5293C175.688 34.5475 175.707 34.5658 175.726 34.5841C175.744 34.6024 175.763 34.6207 175.781 34.6389C175.8 34.6572 175.818 34.6755 175.837 34.6938C175.855 34.712 175.874 34.7303 175.892 34.7486C175.911 34.7669 175.929 34.7852 175.948 34.8034C175.966 34.8217 175.985 34.84 176.003 34.8583C176.022 34.8765 176.04 34.8948 176.059 34.9131C176.077 34.9314 176.096 34.9497 176.114 34.9679C179.105 37.9181 183.255 39.7313 187.856 39.7313C191.935 39.7313 195.874 38.3275 198.991 35.3408C199.313 35.0228 199.357 34.4342 199.035 34.1198L196.448 31.4036C196.477 31.4585 196.503 31.5133 196.522 31.5718L197.618 32.7233V32.7197Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M188.078 13.9772C190.325 13.9772 192.568 14.7924 194.263 16.284C194.585 16.602 195.089 16.602 195.411 16.284L198.987 12.6173C199.353 12.2554 199.353 11.7107 198.942 11.3488C198.931 11.3378 198.916 11.3305 198.905 11.3195C198.898 11.3122 198.894 11.3012 198.887 11.2939C198.876 11.283 198.861 11.2757 198.85 11.2647C198.842 11.2574 198.839 11.2464 198.831 11.2391C198.82 11.2281 198.805 11.2208 198.794 11.2099C198.787 11.2025 198.783 11.1916 198.776 11.1843C198.765 11.1733 198.75 11.166 198.739 11.155C198.731 11.1477 198.728 11.1367 198.72 11.1294C198.709 11.1185 198.694 11.1111 198.683 11.1002C198.676 11.0929 198.672 11.0819 198.665 11.0746C198.654 11.0636 198.639 11.0563 198.628 11.0453C198.62 11.038 198.617 11.0271 198.609 11.0198C198.598 11.0088 198.583 11.0015 198.572 10.9905C198.565 10.9832 198.561 10.9722 198.554 10.9649C198.543 10.954 198.528 10.9466 198.517 10.9357C198.509 10.9284 198.506 10.9174 198.498 10.9101C198.487 10.8991 198.472 10.8918 198.461 10.8808C198.454 10.8735 198.45 10.8626 198.443 10.8552C198.432 10.8443 198.417 10.837 198.406 10.826C198.398 10.8187 198.395 10.8077 198.387 10.8004C198.376 10.7894 198.361 10.7821 198.35 10.7712C198.343 10.7639 198.339 10.7529 198.332 10.7456C198.32 10.7346 198.306 10.7273 198.295 10.7163C198.287 10.709 198.283 10.6981 198.276 10.6907C198.265 10.6798 198.25 10.6725 198.239 10.6615C198.232 10.6542 198.228 10.6432 198.221 10.6359C198.209 10.6249 198.195 10.6176 198.184 10.6067C198.176 10.5994 198.172 10.5884 198.165 10.5811C198.154 10.5701 198.139 10.5628 198.128 10.5518C198.121 10.5445 198.117 10.5335 198.109 10.5262C198.098 10.5153 198.084 10.508 198.072 10.497C198.065 10.4897 198.061 10.4787 198.054 10.4714C198.043 10.4604 198.028 10.4531 198.017 10.4422C198.01 10.4348 198.006 10.4239 197.998 10.4166C197.987 10.4056 197.973 10.3983 197.961 10.3873C197.954 10.38 197.95 10.369 197.943 10.3617C197.932 10.3508 197.917 10.3435 197.906 10.3325C197.898 10.3252 197.895 10.3142 197.887 10.3069C197.876 10.2959 197.861 10.2886 197.85 10.2776C197.843 10.2703 197.839 10.2594 197.832 10.2521C197.821 10.2411 197.806 10.2338 197.795 10.2228C197.787 10.2155 197.784 10.2045 197.776 10.1972C197.765 10.1863 197.75 10.1789 197.739 10.168C197.732 10.1607 197.728 10.1497 197.721 10.1424C197.71 10.1314 197.695 10.1241 197.684 10.1131C197.676 10.1058 197.673 10.0949 197.665 10.0876C197.654 10.0766 197.639 10.0693 197.628 10.0583C197.621 10.051 197.617 10.04 197.61 10.0327C197.599 10.0218 197.584 10.0144 197.573 10.0035C197.565 9.99616 197.562 9.9852 197.554 9.97788C197.547 9.97423 197.543 9.96692 197.536 9.96326C197.936 10.3252 197.936 10.8589 197.573 11.2172L193.997 14.8838C193.675 15.2019 193.171 15.2019 192.849 14.8838C191.154 13.3923 188.907 12.5771 186.664 12.5771C181.485 12.5771 177.68 16.8323 177.68 21.8991C177.68 23.8914 178.287 25.7449 179.342 27.2583C179.671 27.5581 180.019 27.8286 180.389 28.0772C179.564 26.6771 179.094 25.043 179.094 23.2956C179.094 18.2251 182.899 13.9736 188.078 13.9736V13.9772Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M220.681 14.0213H233.375C233.878 14.0213 234.245 13.6155 234.245 13.1622V8.23067C234.245 7.9894 234.137 7.7664 233.963 7.60555C233.945 7.58727 233.926 7.56899 233.908 7.55071C233.889 7.53243 233.871 7.51415 233.852 7.49588C233.834 7.4776 233.815 7.45931 233.797 7.44104C233.778 7.42276 233.76 7.40448 233.741 7.3862C233.723 7.36793 233.704 7.34965 233.686 7.33137C233.667 7.31309 233.649 7.29481 233.63 7.27653C233.612 7.25825 233.593 7.23998 233.575 7.2217C233.556 7.20342 233.538 7.18514 233.519 7.16686C233.501 7.14858 233.482 7.1303 233.464 7.11203C233.445 7.09375 233.426 7.07547 233.408 7.05719C233.389 7.03892 233.371 7.02063 233.352 7.00235C233.334 6.98408 233.315 6.9658 233.297 6.94752C233.278 6.92924 233.26 6.91096 233.241 6.89268C233.223 6.8744 233.204 6.85613 233.186 6.83785C233.167 6.81957 233.149 6.80129 233.13 6.78302C233.112 6.76474 233.093 6.74646 233.075 6.72818C233.056 6.7099 233.038 6.69163 233.019 6.67335C233.001 6.65507 232.982 6.63679 232.964 6.61851C232.945 6.60023 232.927 6.58195 232.908 6.56367C232.89 6.5454 232.871 6.52712 232.853 6.50884C232.834 6.49056 232.816 6.47228 232.797 6.454C232.779 6.43572 232.76 6.41744 232.742 6.39917C232.723 6.38089 232.705 6.36261 232.686 6.34433C232.668 6.32605 232.649 6.30778 232.631 6.2895C232.612 6.27122 232.594 6.25294 232.575 6.23466C232.731 6.39186 232.827 6.60388 232.827 6.83054V11.7621C232.827 12.2154 232.46 12.6212 231.957 12.6212H219.264V17.5929H220.678V14.0176L220.681 14.0213Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M232 26.334V21.4025C232 21.1648 231.882 20.9418 231.704 20.781C231.685 20.7627 231.667 20.7444 231.648 20.7261C231.63 20.7079 231.611 20.6896 231.593 20.6713C231.574 20.653 231.556 20.6348 231.537 20.6165C231.519 20.5982 231.5 20.5799 231.482 20.5616C231.463 20.5434 231.445 20.5251 231.426 20.5068C231.408 20.4885 231.389 20.4703 231.371 20.452C231.352 20.4337 231.334 20.4154 231.315 20.3971C231.297 20.3789 231.278 20.3606 231.26 20.3423C231.241 20.324 231.223 20.3057 231.204 20.2875C231.186 20.2692 231.167 20.2509 231.149 20.2326C231.13 20.2143 231.112 20.1961 231.093 20.1778C231.075 20.1595 231.056 20.1412 231.038 20.123C231.019 20.1047 231.001 20.0864 230.982 20.0681C230.964 20.0498 230.945 20.0316 230.927 20.0133C230.908 19.995 230.89 19.9767 230.871 19.9585C230.853 19.9402 230.834 19.9219 230.816 19.9036C230.797 19.8853 230.778 19.8671 230.76 19.8488C230.741 19.8305 230.723 19.8122 230.704 19.7939C230.686 19.7757 230.667 19.7574 230.649 19.7391C230.63 19.7208 230.612 19.7026 230.593 19.6843C230.575 19.666 230.556 19.6477 230.538 19.6294C230.519 19.6112 230.501 19.5929 230.482 19.5746C230.464 19.5563 230.445 19.5381 230.427 19.5198C230.408 19.5015 230.39 19.4832 230.371 19.4649C230.36 19.454 230.349 19.443 230.338 19.432C230.486 19.5892 230.582 19.7866 230.582 20.0023V24.9338C230.582 25.3871 230.171 25.7929 229.712 25.7929H219.262V36.7893C219.262 37.2426 218.852 37.6483 218.393 37.6483H212.984C212.751 37.6483 212.551 37.557 212.399 37.4144C212.407 37.4217 212.414 37.429 212.425 37.44C212.444 37.4582 212.462 37.4765 212.481 37.4948C212.499 37.5131 212.518 37.5314 212.536 37.5496C212.555 37.5679 212.573 37.5862 212.592 37.6045C212.61 37.6227 212.629 37.641 212.647 37.6593C212.666 37.6776 212.684 37.6959 212.703 37.7141C212.721 37.7324 212.74 37.7507 212.758 37.769C212.777 37.7873 212.795 37.8055 212.814 37.8238C212.833 37.8421 212.851 37.8604 212.87 37.8786C212.888 37.8969 212.907 37.9152 212.925 37.9335C212.944 37.9518 212.962 37.97 212.981 37.9883C212.999 38.0066 213.018 38.0249 213.036 38.0432C213.055 38.0614 213.073 38.0797 213.092 38.098C213.11 38.1163 213.129 38.1345 213.147 38.1528C213.166 38.1711 213.184 38.1894 213.203 38.2077C213.221 38.2259 213.24 38.2442 213.258 38.2625C213.277 38.2808 213.295 38.2991 213.314 38.3173C213.332 38.3356 213.351 38.3539 213.369 38.3722C213.388 38.3904 213.406 38.4087 213.425 38.427C213.443 38.4453 213.462 38.4636 213.48 38.4818C213.499 38.5001 213.517 38.5184 213.536 38.5367C213.554 38.555 213.573 38.5732 213.591 38.5915C213.61 38.6098 213.628 38.6281 213.647 38.6463C213.665 38.6646 213.684 38.6829 213.702 38.7012C213.721 38.7194 213.739 38.7377 213.758 38.756C213.913 38.9278 214.136 39.0485 214.402 39.0485H219.81C220.269 39.0485 220.68 38.6427 220.68 38.1894V27.1931H231.13C231.589 27.1931 232 26.7873 232 26.334Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M248.241 7.41555C248.2 7.33147 248.133 7.25836 248.063 7.18525C248.044 7.16697 248.026 7.14869 248.007 7.13041C247.989 7.11213 247.97 7.09385 247.952 7.07557C247.933 7.05729 247.915 7.03902 247.896 7.02074C247.878 7.00246 247.859 6.98418 247.841 6.9659C247.822 6.94763 247.804 6.92935 247.785 6.91107C247.767 6.89279 247.748 6.87451 247.73 6.85623C247.711 6.83795 247.693 6.81967 247.674 6.80139C247.656 6.78311 247.637 6.76484 247.619 6.74656C247.6 6.72828 247.582 6.71001 247.563 6.69173C247.545 6.67345 247.526 6.65517 247.508 6.63689C247.489 6.61861 247.471 6.60034 247.452 6.58206C247.434 6.56378 247.415 6.5455 247.397 6.52722C247.378 6.50894 247.36 6.49066 247.341 6.47239C247.323 6.45411 247.304 6.43583 247.286 6.41755C247.267 6.39927 247.249 6.38099 247.23 6.36271C247.212 6.34443 247.193 6.32616 247.175 6.30788C247.156 6.2896 247.138 6.27132 247.119 6.25304C247.101 6.23476 247.082 6.21649 247.063 6.19821C247.045 6.17993 247.026 6.16165 247.008 6.14338C246.989 6.1251 246.971 6.10681 246.952 6.08854C246.934 6.07026 246.915 6.05198 246.897 6.0337C246.878 6.01542 246.86 5.99714 246.841 5.97886C246.823 5.96058 246.804 5.94231 246.786 5.92403C246.767 5.90575 246.749 5.88748 246.73 5.8692C246.712 5.85092 246.693 5.83264 246.675 5.81436C246.734 5.8765 246.786 5.94231 246.823 6.01542L261.167 36.4746C261.441 37.0632 261.075 37.6518 260.386 37.6518H255.3C254.785 37.6518 254.452 37.5421 254.171 37.257C254.189 37.2752 254.208 37.2935 254.226 37.3118C254.245 37.3301 254.263 37.3483 254.282 37.3666C254.3 37.3849 254.319 37.4032 254.337 37.4215C254.356 37.4397 254.374 37.458 254.393 37.4763C254.411 37.4946 254.43 37.5129 254.448 37.5311C254.467 37.5494 254.485 37.5677 254.504 37.586C254.522 37.6042 254.541 37.6225 254.559 37.6408C254.578 37.6591 254.596 37.6774 254.615 37.6956C254.633 37.7139 254.652 37.7322 254.671 37.7505C254.689 37.7688 254.708 37.787 254.726 37.8053C254.745 37.8236 254.763 37.8419 254.782 37.8601C254.8 37.8784 254.819 37.8967 254.837 37.915C254.856 37.9333 254.874 37.9515 254.893 37.9698C254.911 37.9881 254.93 38.0064 254.948 38.0247C254.967 38.0429 254.985 38.0612 255.004 38.0795C255.022 38.0978 255.041 38.116 255.059 38.1343C255.078 38.1526 255.096 38.1709 255.115 38.1892C255.133 38.2074 255.152 38.2257 255.17 38.244C255.189 38.2623 255.207 38.2806 255.226 38.2988C255.244 38.3171 255.263 38.3354 255.281 38.3537C255.3 38.3719 255.318 38.3902 255.337 38.4085C255.355 38.4268 255.374 38.4451 255.392 38.4633C255.411 38.4816 255.429 38.4999 255.448 38.5182C255.466 38.5364 255.485 38.5547 255.503 38.573C255.522 38.5913 255.54 38.6096 255.559 38.6279C255.844 38.9349 256.185 39.0482 256.71 39.0482H261.796C262.485 39.0482 262.851 38.4597 262.577 37.8711L248.233 7.41189L248.241 7.41555Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M239.586 32.9468L237.935 36.5659C237.706 37.107 237.202 37.6517 236.284 37.6517H231.243C230.976 37.6517 230.765 37.5603 230.613 37.4177C230.632 37.436 230.647 37.4543 230.669 37.4726C230.687 37.4908 230.706 37.5091 230.724 37.5274C230.743 37.5457 230.758 37.5639 230.78 37.5822C230.798 37.6005 230.817 37.6188 230.835 37.6371C230.854 37.6553 230.872 37.6736 230.891 37.6919C230.909 37.7102 230.928 37.7285 230.946 37.7467C230.965 37.765 230.983 37.7833 231.002 37.8016C231.02 37.8198 231.035 37.8381 231.057 37.8564C231.076 37.8747 231.094 37.893 231.113 37.9112C231.132 37.9295 231.15 37.9478 231.169 37.9661C231.187 37.9844 231.206 38.0026 231.224 38.0209C231.243 38.0392 231.257 38.0575 231.28 38.0757C231.298 38.094 231.317 38.1123 231.335 38.1306C231.354 38.1489 231.368 38.1671 231.391 38.1854C231.409 38.2037 231.428 38.222 231.446 38.2403C231.465 38.2585 231.483 38.2768 231.502 38.2951C231.52 38.3134 231.539 38.3316 231.557 38.3499C231.576 38.3682 231.591 38.3865 231.613 38.4048C231.631 38.423 231.65 38.4413 231.668 38.4596C231.687 38.4779 231.705 38.4962 231.724 38.5144C231.742 38.5327 231.761 38.551 231.779 38.5693C231.798 38.5875 231.816 38.6058 231.835 38.6241C231.853 38.6424 231.868 38.6607 231.89 38.6789C231.909 38.6972 231.927 38.7155 231.946 38.7338C231.964 38.752 231.979 38.7703 232.001 38.7886C232.153 38.9458 232.375 39.0482 232.657 39.0482H237.698C238.616 39.0482 239.12 38.5035 239.349 37.9624L241 34.3433H251.761L251.117 32.9468H239.586Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M245.105 25.2444L246.371 22.4994L245.335 20.276L243.047 25.2441L245.105 25.2444Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M283.306 37.6076C283.169 37.8781 282.754 38.1048 282.525 38.1048H281.699C281.5 38.1048 281.259 37.9841 281.085 37.816C281.1 37.8306 281.111 37.8416 281.126 37.8562C281.144 37.8745 281.163 37.8927 281.181 37.911C281.2 37.9293 281.218 37.9476 281.237 37.9659C281.255 37.9841 281.274 38.0024 281.292 38.0207C281.311 38.039 281.329 38.0572 281.348 38.0755C281.366 38.0938 281.385 38.1121 281.403 38.1304C281.422 38.1486 281.44 38.1669 281.459 38.1852C281.477 38.2035 281.496 38.2218 281.514 38.24C281.533 38.2583 281.551 38.2766 281.57 38.2949C281.588 38.3131 281.607 38.3314 281.625 38.3497C281.644 38.368 281.662 38.3863 281.681 38.4045C281.699 38.4228 281.718 38.4411 281.736 38.4594C281.755 38.4776 281.773 38.4959 281.792 38.5142C281.811 38.5325 281.829 38.5508 281.848 38.569C281.866 38.5873 281.885 38.6056 281.903 38.6239C281.922 38.6422 281.94 38.6604 281.959 38.6787C281.977 38.697 281.996 38.7153 282.014 38.7336C282.033 38.7518 282.051 38.7701 282.07 38.7884C282.088 38.8067 282.107 38.8249 282.125 38.8432C282.144 38.8615 282.162 38.8798 282.181 38.8981C282.199 38.9163 282.218 38.9346 282.236 38.9529C282.255 38.9712 282.273 38.9894 282.292 39.0077C282.31 39.026 282.329 39.0443 282.347 39.0626C282.366 39.0808 282.384 39.0991 282.403 39.1174C282.421 39.1357 282.44 39.154 282.458 39.1722C282.632 39.3623 282.899 39.5012 283.113 39.5012H283.939C284.168 39.5012 284.579 39.2746 284.72 39.0041L290.484 28.026L290.014 24.831L283.306 37.6076Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M271.069 36.928C271.025 37.2899 270.658 37.6518 270.199 37.6518H264.791C264.517 37.6518 264.276 37.5458 264.117 37.3703C264.121 37.374 264.125 37.3776 264.132 37.3849C264.15 37.4032 264.169 37.4215 264.188 37.4398C264.206 37.4581 264.225 37.4763 264.243 37.4946C264.262 37.5129 264.28 37.5312 264.299 37.5494C264.317 37.5677 264.336 37.586 264.354 37.6043C264.373 37.6226 264.391 37.6408 264.41 37.6591C264.428 37.6774 264.447 37.6957 264.465 37.714C264.484 37.7322 264.502 37.7505 264.521 37.7688C264.539 37.7871 264.558 37.8053 264.576 37.8236C264.595 37.8419 264.613 37.8602 264.632 37.8785C264.65 37.8967 264.669 37.915 264.687 37.9333C264.706 37.9516 264.724 37.9699 264.743 37.9881C264.761 38.0064 264.78 38.0247 264.798 38.043C264.817 38.0612 264.835 38.0795 264.854 38.0978C264.872 38.1161 264.891 38.1343 264.909 38.1526C264.928 38.1709 264.946 38.1892 264.965 38.2075C264.983 38.2258 265.002 38.244 265.02 38.2623C265.039 38.2806 265.057 38.2989 265.076 38.3171C265.094 38.3354 265.113 38.3537 265.131 38.372C265.15 38.3903 265.168 38.4085 265.187 38.4268C265.205 38.4451 265.224 38.4634 265.242 38.4817C265.261 38.4999 265.28 38.5182 265.298 38.5365C265.317 38.5548 265.335 38.573 265.354 38.5913C265.372 38.6096 265.391 38.6279 265.409 38.6461C265.428 38.6644 265.446 38.6827 265.465 38.701C265.483 38.7193 265.502 38.7375 265.52 38.7558C265.679 38.9423 265.927 39.0519 266.209 39.0519H271.617C272.076 39.0519 272.442 38.69 272.487 38.3281L274.197 26.4727L272.927 24.0709L271.073 36.9316L271.069 36.928Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M296.544 7.642C296.522 7.42997 296.396 7.24718 296.233 7.11558C296.214 7.0973 296.2 7.07902 296.177 7.06075C296.159 7.04247 296.144 7.02419 296.122 7.00591C296.103 6.98763 296.089 6.96935 296.066 6.95107C296.048 6.93279 296.033 6.91452 296.011 6.89624C295.992 6.87796 295.977 6.85968 295.955 6.8414C295.937 6.82312 295.922 6.80485 295.9 6.78657C295.881 6.76829 295.866 6.75001 295.844 6.73174C295.826 6.71346 295.811 6.69517 295.789 6.6769C295.77 6.65862 295.755 6.64034 295.733 6.62206C295.715 6.60378 295.7 6.58185 295.678 6.56722C295.659 6.54894 295.644 6.53067 295.622 6.51239C295.604 6.49411 295.589 6.47218 295.567 6.45756C295.548 6.43928 295.533 6.421 295.511 6.40272C295.493 6.38444 295.478 6.36616 295.456 6.34789C295.437 6.32961 295.422 6.31133 295.4 6.29305C295.382 6.27477 295.367 6.25649 295.344 6.23821C295.326 6.21993 295.311 6.20166 295.289 6.18338C295.27 6.1651 295.256 6.14682 295.233 6.12854C295.215 6.11026 295.2 6.09199 295.178 6.07371C295.159 6.05543 295.145 6.03715 295.122 6.01887C295.104 6.00059 295.089 5.98232 295.067 5.96404C295.048 5.94576 295.034 5.92748 295.011 5.90921C294.993 5.89093 294.978 5.87264 294.956 5.85437C294.937 5.83609 294.923 5.81781 294.9 5.79953C294.882 5.78126 294.867 5.76297 294.848 5.74835C294.997 5.8763 295.108 6.04812 295.13 6.24553L300.309 36.6572C300.401 37.2458 299.986 37.6516 299.439 37.6516H294.03C293.819 37.6516 293.612 37.5529 293.449 37.4103C293.468 37.4286 293.483 37.4469 293.505 37.4651C293.523 37.4834 293.538 37.5017 293.56 37.52C293.579 37.5382 293.594 37.5565 293.616 37.5748C293.634 37.5931 293.649 37.6114 293.671 37.6296C293.69 37.6479 293.705 37.6662 293.727 37.6845C293.745 37.7027 293.76 37.721 293.782 37.7393C293.801 37.7576 293.816 37.7759 293.838 37.7941C293.856 37.8124 293.871 37.8307 293.893 37.849C293.912 37.8672 293.927 37.8855 293.949 37.9038C293.967 37.9221 293.982 37.9404 294.004 37.9586C294.023 37.9769 294.038 37.9952 294.06 38.0135C294.079 38.0318 294.093 38.05 294.116 38.0683C294.134 38.0866 294.149 38.1049 294.171 38.1232C294.19 38.1414 294.204 38.1597 294.227 38.178C294.245 38.1963 294.26 38.2145 294.282 38.2328C294.301 38.2511 294.315 38.2694 294.338 38.2877C294.356 38.3059 294.371 38.3242 294.393 38.3425C294.412 38.3608 294.426 38.3791 294.449 38.3973C294.467 38.4156 294.482 38.4339 294.504 38.4522C294.523 38.4704 294.538 38.4887 294.56 38.507C294.578 38.5253 294.593 38.5436 294.615 38.5618C294.634 38.5801 294.649 38.5984 294.671 38.6167C294.689 38.635 294.704 38.6532 294.726 38.6715C294.745 38.6898 294.76 38.7081 294.782 38.7263C294.8 38.7446 294.815 38.7629 294.837 38.7812C295.004 38.9384 295.222 39.0517 295.448 39.0517H300.856C301.408 39.0517 301.819 38.6459 301.726 38.0537L296.548 7.642H296.544Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M272.853 7.37175C272.816 7.29498 272.753 7.22917 272.679 7.16702C272.661 7.14874 272.646 7.13047 272.624 7.11219C272.605 7.09392 272.591 7.07564 272.568 7.05736C272.55 7.03908 272.535 7.0208 272.513 7.00252C272.494 6.98424 272.479 6.96596 272.457 6.94769C272.439 6.92941 272.424 6.91112 272.402 6.89285C272.383 6.87457 272.368 6.85629 272.346 6.83801C272.328 6.81973 272.313 6.80146 272.291 6.78318C272.272 6.7649 272.257 6.74662 272.235 6.72834C272.217 6.71006 272.202 6.69179 272.18 6.67351C272.161 6.65523 272.146 6.63695 272.124 6.61867C272.106 6.60039 272.091 6.58212 272.069 6.56384C272.05 6.54556 272.035 6.52728 272.013 6.509C271.995 6.49072 271.98 6.47244 271.958 6.45417C271.939 6.43589 271.924 6.41761 271.902 6.39933C271.883 6.38105 271.869 6.36277 271.846 6.34449C271.828 6.32622 271.813 6.30794 271.791 6.28966C271.772 6.27138 271.758 6.2531 271.735 6.23483C271.717 6.21655 271.702 6.19826 271.68 6.17999C271.661 6.16171 271.647 6.14343 271.624 6.12516C271.606 6.10688 271.591 6.08859 271.569 6.07032C271.55 6.05204 271.536 6.03376 271.513 6.01548C271.495 5.99721 271.48 5.97893 271.458 5.96065C271.439 5.94237 271.424 5.92409 271.402 5.90581C271.384 5.88753 271.369 5.86926 271.347 5.85098C271.328 5.8327 271.313 5.81442 271.295 5.7998C271.354 5.85098 271.406 5.90947 271.439 5.97162L280.945 23.4495L281.271 22.8463L272.853 7.36809V7.37175Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M313.214 7.55402C313.195 7.53574 313.177 7.51746 313.158 7.49918C313.14 7.4809 313.121 7.46263 313.103 7.44435C313.084 7.42607 313.066 7.40779 313.047 7.38951C313.029 7.37123 313.01 7.35295 312.992 7.33467C312.973 7.3164 312.955 7.29812 312.936 7.27984C312.918 7.26156 312.899 7.24328 312.88 7.225C312.862 7.20672 312.843 7.18845 312.825 7.17017C312.806 7.15189 312.788 7.13361 312.769 7.11533C312.751 7.09706 312.732 7.07878 312.714 7.0605C312.695 7.04222 312.677 7.02394 312.658 7.00566C312.64 6.98739 312.621 6.96911 312.603 6.95083C312.584 6.93255 312.566 6.91427 312.547 6.89599C312.529 6.87771 312.51 6.85943 312.492 6.84116C312.473 6.82288 312.455 6.8046 312.436 6.78632C312.418 6.76804 312.399 6.74977 312.381 6.73149C312.362 6.71321 312.344 6.69493 312.325 6.67665C312.307 6.65837 312.288 6.6401 312.27 6.62182C312.251 6.60354 312.233 6.58526 312.214 6.56698C312.196 6.5487 312.177 6.53042 312.159 6.51215C312.14 6.49387 312.122 6.47559 312.103 6.45731C312.085 6.43904 312.066 6.42075 312.048 6.40247C312.029 6.38419 312.011 6.36592 311.992 6.34764C311.974 6.32936 311.955 6.31108 311.937 6.2928C311.925 6.28183 311.914 6.27087 311.903 6.2599C312.051 6.41344 312.148 6.6145 312.148 6.83019V36.7886C312.148 37.2419 311.737 37.6477 311.278 37.6477H305.781C305.562 37.6477 305.359 37.5526 305.203 37.4064C305.214 37.4174 305.225 37.4283 305.236 37.4393C305.255 37.4576 305.273 37.4758 305.292 37.4941C305.31 37.5124 305.329 37.5307 305.347 37.549C305.366 37.5672 305.385 37.5855 305.403 37.6038C305.422 37.6221 305.44 37.6404 305.459 37.6586C305.477 37.6769 305.496 37.6952 305.514 37.7135C305.533 37.7317 305.551 37.75 305.57 37.7683C305.588 37.7866 305.607 37.8049 305.625 37.8231C305.644 37.8414 305.662 37.8597 305.681 37.878C305.699 37.8962 305.718 37.9145 305.736 37.9328C305.755 37.9511 305.773 37.9694 305.792 37.9876C305.81 38.0059 305.829 38.0242 305.847 38.0425C305.866 38.0608 305.884 38.079 305.903 38.0973C305.921 38.1156 305.94 38.1339 305.958 38.1521C305.977 38.1704 305.995 38.1887 306.014 38.207C306.032 38.2253 306.051 38.2435 306.069 38.2618C306.088 38.2801 306.106 38.2984 306.125 38.3167C306.143 38.3349 306.162 38.3532 306.18 38.3715C306.199 38.3898 306.217 38.4081 306.236 38.4263C306.254 38.4446 306.273 38.4629 306.291 38.4812C306.31 38.4994 306.328 38.5177 306.347 38.536C306.365 38.5543 306.384 38.5726 306.402 38.5908C306.421 38.6091 306.439 38.6274 306.458 38.6457C306.477 38.6639 306.495 38.6822 306.514 38.7005C306.532 38.7188 306.551 38.7371 306.569 38.7553C306.732 38.9308 306.958 39.0478 307.198 39.0478H312.695C313.154 39.0478 313.565 38.642 313.565 38.1887V8.22667C313.565 7.98905 313.447 7.76605 313.269 7.6052C313.251 7.58692 313.232 7.56864 313.214 7.55036V7.55402Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M327.343 8.23032C327.343 7.9927 327.224 7.7697 327.047 7.60885C327.028 7.59057 327.01 7.5723 326.991 7.55402C326.973 7.53574 326.954 7.51746 326.936 7.49918C326.917 7.4809 326.899 7.46263 326.88 7.44435C326.861 7.42607 326.843 7.40779 326.824 7.38951C326.806 7.37123 326.787 7.35295 326.769 7.33467C326.75 7.3164 326.732 7.29812 326.713 7.27984C326.695 7.26156 326.676 7.24328 326.658 7.225C326.639 7.20672 326.621 7.18845 326.602 7.17017C326.584 7.15189 326.565 7.13361 326.547 7.11533C326.528 7.09706 326.51 7.07878 326.491 7.0605C326.473 7.04222 326.454 7.02394 326.436 7.00566C326.417 6.98739 326.399 6.96911 326.38 6.95083C326.362 6.93255 326.343 6.91427 326.325 6.89599C326.306 6.87771 326.288 6.85943 326.269 6.84116C326.251 6.82288 326.232 6.8046 326.214 6.78632C326.195 6.76804 326.177 6.74977 326.158 6.73149C326.14 6.71321 326.121 6.69493 326.103 6.67665C326.084 6.65837 326.066 6.6401 326.047 6.62182C326.029 6.60354 326.01 6.58526 325.992 6.56698C325.973 6.5487 325.955 6.53042 325.936 6.51215C325.918 6.49387 325.899 6.47559 325.881 6.45731C325.862 6.43904 325.844 6.42075 325.825 6.40247C325.807 6.38419 325.788 6.36592 325.769 6.34764C325.751 6.32936 325.732 6.31108 325.714 6.2928C325.703 6.28183 325.692 6.27087 325.681 6.2599C325.829 6.41344 325.925 6.6145 325.925 6.83019V29.4516H327.339V8.22667L327.343 8.23032Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M338.781 32.5777C338.762 32.5595 338.744 32.5412 338.725 32.5229C338.707 32.5046 338.688 32.4864 338.67 32.4681C338.651 32.4498 338.633 32.4315 338.614 32.4132C338.596 32.395 338.577 32.3767 338.559 32.3584C338.54 32.3401 338.522 32.3219 338.503 32.3036C338.485 32.2853 338.466 32.267 338.448 32.2487C338.429 32.2305 338.411 32.2122 338.392 32.1939C338.374 32.1756 338.355 32.1574 338.337 32.1391C338.318 32.1208 338.3 32.1025 338.281 32.0842C338.263 32.066 338.244 32.0477 338.226 32.0294C338.207 32.0111 338.189 31.9928 338.17 31.9746C338.152 31.9563 338.133 31.938 338.115 31.9197C338.096 31.9015 338.078 31.8832 338.059 31.8649C338.041 31.8466 338.022 31.8283 338.004 31.8101C337.985 31.7918 337.967 31.7735 337.948 31.7552C337.929 31.7369 337.911 31.7187 337.892 31.7004C337.874 31.6821 337.855 31.6638 337.837 31.6456C337.818 31.6273 337.8 31.609 337.781 31.5907C337.763 31.5724 337.744 31.5542 337.726 31.5359C337.707 31.5176 337.689 31.4993 337.67 31.481C337.652 31.4628 337.633 31.4445 337.615 31.4262C337.596 31.4079 337.578 31.3897 337.559 31.3714C337.541 31.3531 337.522 31.3348 337.504 31.3165C337.485 31.2983 337.467 31.28 337.448 31.2617C337.604 31.4189 337.7 31.6309 337.7 31.8576V36.7891C337.7 37.2424 337.334 37.6482 336.83 37.6482H319.599C319.365 37.6482 319.165 37.5568 319.014 37.4142C319.021 37.4215 319.028 37.4289 319.04 37.4398C319.058 37.4581 319.077 37.4764 319.095 37.4947C319.114 37.5129 319.132 37.5312 319.151 37.5495C319.169 37.5678 319.188 37.586 319.206 37.6043C319.225 37.6226 319.243 37.6409 319.262 37.6592C319.28 37.6774 319.299 37.6957 319.317 37.714C319.336 37.7323 319.354 37.7506 319.373 37.7688C319.391 37.7871 319.41 37.8054 319.428 37.8237C319.447 37.8419 319.465 37.8602 319.484 37.8785C319.502 37.8968 319.521 37.9151 319.539 37.9333C319.558 37.9516 319.576 37.9699 319.595 37.9882C319.613 38.0065 319.632 38.0247 319.65 38.043C319.669 38.0613 319.687 38.0796 319.706 38.0978C319.724 38.1161 319.743 38.1344 319.761 38.1527C319.78 38.171 319.798 38.1892 319.817 38.2075C319.835 38.2258 319.854 38.2441 319.872 38.2624C319.891 38.2806 319.909 38.2989 319.928 38.3172C319.946 38.3355 319.965 38.3537 319.984 38.372C320.002 38.3903 320.021 38.4086 320.039 38.4268C320.058 38.4451 320.076 38.4634 320.095 38.4817C320.113 38.5 320.132 38.5183 320.15 38.5365C320.169 38.5548 320.187 38.5731 320.206 38.5914C320.224 38.6096 320.243 38.6279 320.261 38.6462C320.28 38.6645 320.298 38.6828 320.317 38.701C320.335 38.7193 320.354 38.7376 320.372 38.7559C320.528 38.9313 320.75 39.0483 321.016 39.0483H338.248C338.751 39.0483 339.118 38.6425 339.118 38.1892V33.2577C339.118 33.0164 339.01 32.7934 338.836 32.6326C338.818 32.6143 338.799 32.596 338.781 32.5777Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M342.046 7.77804C342.005 7.72321 341.954 7.66837 341.898 7.61354C341.88 7.59526 341.861 7.57698 341.843 7.5587C341.824 7.54043 341.806 7.52214 341.787 7.50386C341.769 7.48559 341.75 7.46731 341.732 7.44903C341.713 7.43075 341.695 7.41248 341.676 7.3942C341.658 7.37592 341.639 7.35764 341.62 7.33936C341.602 7.32108 341.583 7.30281 341.565 7.28453C341.546 7.26625 341.528 7.24797 341.509 7.22969C341.491 7.21141 341.472 7.19313 341.454 7.17485C341.435 7.15658 341.417 7.1383 341.398 7.12002C341.38 7.10174 341.361 7.08346 341.343 7.06518C341.324 7.0469 341.306 7.02863 341.287 7.01035C341.269 6.99207 341.25 6.97379 341.232 6.95551C341.213 6.93723 341.195 6.91896 341.176 6.90068C341.158 6.8824 341.139 6.86412 341.121 6.84584C341.102 6.82757 341.084 6.80929 341.065 6.79101C341.047 6.77273 341.028 6.75445 341.01 6.73617C340.991 6.71789 340.973 6.69961 340.954 6.68134C340.936 6.66306 340.917 6.64478 340.899 6.6265C340.88 6.60822 340.862 6.58995 340.843 6.57167C340.825 6.55339 340.806 6.53511 340.788 6.51683C340.769 6.49855 340.751 6.48027 340.732 6.46199C340.714 6.44372 340.695 6.42544 340.677 6.40716C340.658 6.38888 340.64 6.3706 340.621 6.35233C340.603 6.33405 340.584 6.31577 340.565 6.29749C340.547 6.27921 340.532 6.26093 340.514 6.24631C340.558 6.29018 340.599 6.33771 340.632 6.37792L345.726 13.7953L345.955 13.4626L342.05 7.77439L342.046 7.77804Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M362.034 7.54781C362.016 7.52953 361.997 7.51124 361.979 7.49297C361.96 7.47469 361.942 7.45641 361.923 7.43813C361.905 7.41985 361.886 7.40158 361.868 7.3833C361.849 7.36502 361.831 7.34674 361.812 7.32846C361.794 7.31018 361.775 7.2919 361.757 7.27362C361.738 7.25535 361.72 7.23706 361.701 7.21878C361.683 7.20051 361.664 7.18223 361.646 7.16395C361.627 7.14567 361.609 7.1274 361.59 7.10912C361.572 7.09084 361.553 7.07256 361.535 7.05428C361.516 7.036 361.498 7.01773 361.479 6.99945C361.461 6.98117 361.442 6.96289 361.424 6.94461C361.405 6.92633 361.387 6.90806 361.368 6.88978C361.35 6.8715 361.331 6.85322 361.313 6.83495C361.294 6.81667 361.276 6.79838 361.257 6.78011C361.239 6.76183 361.22 6.74355 361.202 6.72527C361.183 6.70699 361.165 6.68871 361.146 6.67043C361.127 6.65215 361.109 6.63388 361.091 6.6156C361.072 6.59732 361.053 6.57905 361.035 6.56077C361.016 6.54249 360.998 6.52421 360.979 6.50593C360.961 6.48765 360.942 6.46937 360.924 6.4511C360.905 6.43282 360.887 6.41453 360.868 6.39626C360.85 6.37798 360.831 6.3597 360.813 6.34142C360.794 6.32314 360.776 6.30487 360.757 6.28659C360.739 6.26831 360.72 6.25003 360.702 6.23175C360.961 6.49496 361.024 6.91537 360.794 7.28459L350.529 22.357V36.7933C350.529 37.2466 350.119 37.6524 349.66 37.6524H344.207C343.974 37.6524 343.774 37.561 343.622 37.4221C343.629 37.4294 343.637 37.4367 343.644 37.444C343.663 37.4623 343.681 37.4806 343.7 37.4989C343.718 37.5172 343.737 37.5354 343.755 37.5537C343.774 37.572 343.792 37.5903 343.811 37.6086C343.829 37.6268 343.848 37.6451 343.866 37.6634C343.885 37.6817 343.903 37.6999 343.922 37.7182C343.94 37.7365 343.959 37.7548 343.977 37.7731C343.996 37.7913 344.014 37.8096 344.033 37.8279C344.051 37.8462 344.07 37.8645 344.088 37.8827C344.107 37.901 344.125 37.9193 344.144 37.9376C344.162 37.9558 344.181 37.9741 344.2 37.9924C344.218 38.0107 344.237 38.029 344.255 38.0472C344.274 38.0655 344.292 38.0838 344.311 38.1021C344.329 38.1204 344.348 38.1386 344.366 38.1569C344.385 38.1752 344.403 38.1935 344.422 38.2117C344.44 38.23 344.459 38.2483 344.477 38.2666C344.496 38.2849 344.514 38.3031 344.533 38.3214C344.551 38.3397 344.57 38.358 344.588 38.3762C344.607 38.3945 344.625 38.4128 344.644 38.4311C344.662 38.4494 344.681 38.4676 344.699 38.4859C344.718 38.5042 344.736 38.5225 344.755 38.5407C344.773 38.559 344.792 38.5773 344.81 38.5956C344.829 38.6139 344.847 38.6321 344.866 38.6504C344.884 38.6687 344.903 38.687 344.921 38.7053C344.94 38.7235 344.958 38.7418 344.977 38.7601C345.132 38.9319 345.354 39.0526 345.621 39.0526H351.074C351.533 39.0526 351.944 38.6468 351.944 38.1935V23.7571L362.208 8.68472C362.445 8.30088 362.371 7.86584 362.09 7.60263C362.071 7.58436 362.053 7.56608 362.034 7.54781Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M36.1748 23.3031C36.1748 18.2327 39.9765 13.9811 45.1589 13.9811C47.4058 13.9811 49.6491 14.7963 51.3445 16.2878C51.6665 16.6059 52.17 16.6059 52.492 16.2878L56.0679 12.6212C56.4343 12.2593 56.4343 11.7146 56.0235 11.3527C56.0124 11.3417 55.9975 11.3344 55.9864 11.3234C55.979 11.3161 55.9753 11.3051 55.9679 11.2978C55.9568 11.2868 55.942 11.2795 55.9309 11.2686C55.9235 11.2613 55.9198 11.2503 55.9124 11.243C55.9013 11.232 55.8865 11.2247 55.8754 11.2137C55.868 11.2064 55.8643 11.1955 55.8569 11.1881C55.8458 11.1772 55.831 11.1699 55.8199 11.1589C55.8125 11.1516 55.8088 11.1406 55.8013 11.1333C55.7902 11.1223 55.7754 11.115 55.7643 11.1041C55.7569 11.0968 55.7532 11.0858 55.7458 11.0785C55.7347 11.0675 55.7199 11.0602 55.7088 11.0492C55.7014 11.0419 55.6977 11.0309 55.6903 11.0236C55.6792 11.0127 55.6644 11.0054 55.6533 10.9944C55.6459 10.9871 55.6422 10.9761 55.6348 10.9688C55.6237 10.9578 55.6089 10.9505 55.5978 10.9396C55.5904 10.9322 55.5867 10.9213 55.5793 10.914C55.5681 10.903 55.5533 10.8957 55.5422 10.8847C55.5348 10.8774 55.5311 10.8664 55.5237 10.8591C55.5126 10.8482 55.4978 10.8409 55.4867 10.8299C55.4793 10.8226 55.4756 10.8116 55.4682 10.8043C55.4571 10.7933 55.4423 10.786 55.4312 10.7751C55.4238 10.7677 55.4201 10.7568 55.4127 10.7495C55.4016 10.7385 55.3868 10.7312 55.3757 10.7202C55.3683 10.7129 55.3645 10.7019 55.3571 10.6946C55.346 10.6837 55.3312 10.6763 55.3201 10.6654C55.3127 10.6581 55.309 10.6471 55.3016 10.6398C55.2905 10.6288 55.2757 10.6215 55.2646 10.6105C55.2572 10.6032 55.2535 10.5923 55.2461 10.585C55.235 10.574 55.2202 10.5667 55.2091 10.5557C55.2017 10.5484 55.198 10.5374 55.1906 10.5301C55.1795 10.5192 55.1647 10.5118 55.1535 10.5009C55.1461 10.4936 55.1424 10.4826 55.135 10.4753C55.1239 10.4643 55.1091 10.457 55.098 10.446C55.0906 10.4387 55.0869 10.4278 55.0795 10.4204C55.0684 10.4095 55.0536 10.4022 55.0425 10.3912C55.0351 10.3839 55.0314 10.3729 55.024 10.3656C55.0129 10.3546 54.9981 10.3473 54.987 10.3364C54.9796 10.3291 54.9759 10.3181 54.9685 10.3108C54.9574 10.2998 54.9426 10.2925 54.9314 10.2815C54.924 10.2742 54.9203 10.2633 54.9129 10.2559C54.9018 10.245 54.887 10.2377 54.8759 10.2267C54.8685 10.2194 54.8648 10.2084 54.8574 10.2011C54.8463 10.1901 54.8315 10.1828 54.8204 10.1719C54.813 10.1645 54.8093 10.1536 54.8019 10.1463C54.7908 10.1353 54.776 10.128 54.7649 10.117C54.7575 10.1097 54.7538 10.0987 54.7464 10.0914C54.7353 10.0805 54.7204 10.0732 54.7093 10.0622C54.7019 10.0549 54.6982 10.0439 54.6908 10.0366C54.6797 10.0256 54.6649 10.0183 54.6538 10.0074C54.6464 10 54.6427 9.98908 54.6353 9.98177C54.6279 9.97811 54.6242 9.9708 54.6168 9.96714C55.0166 10.3291 55.0166 10.8628 54.6538 11.221L51.078 14.8877C50.7559 15.2058 50.2525 15.2058 49.9304 14.8877C48.235 13.3962 45.9881 12.581 43.7448 12.581C38.5661 12.581 34.7607 16.8362 34.7607 21.903C34.7607 23.8953 35.3678 25.7488 36.4228 27.2622C36.7523 27.562 37.1002 27.8325 37.4704 28.0774C36.6449 26.6773 36.1748 25.0432 36.1748 23.2958V23.3031Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M54.6937 32.7197C55.0158 33.0377 54.9676 33.6263 54.6493 33.9407C51.5324 36.9274 47.5901 38.3312 43.5145 38.3312C39.0058 38.3312 34.9302 36.5874 31.9503 33.736C31.9392 33.7287 31.9281 33.7177 31.917 33.7104C31.9355 33.7287 31.9503 33.7433 31.9688 33.7616C31.9873 33.7798 32.0058 33.7981 32.0243 33.8164C32.0428 33.8347 32.0614 33.853 32.0799 33.8712C32.0984 33.8895 32.1169 33.9078 32.1354 33.9261C32.1539 33.9443 32.1724 33.9626 32.1909 33.9809C32.2094 33.9992 32.2279 34.0175 32.2464 34.0357C32.265 34.054 32.2835 34.0723 32.302 34.0906C32.3205 34.1089 32.339 34.1271 32.3575 34.1454C32.376 34.1637 32.3945 34.182 32.413 34.2002C32.4315 34.2185 32.45 34.2368 32.4685 34.2551C32.4871 34.2734 32.5056 34.2916 32.5241 34.3099C32.5426 34.3282 32.5611 34.3465 32.5796 34.3648C32.5981 34.383 32.6166 34.4013 32.6351 34.4196C32.6536 34.4379 32.6721 34.4561 32.6906 34.4744C32.7092 34.4927 32.7277 34.511 32.7462 34.5293C32.7647 34.5475 32.7832 34.5658 32.8017 34.5841C32.8202 34.6024 32.8387 34.6207 32.8572 34.6389C32.8757 34.6572 32.8942 34.6755 32.9128 34.6938C32.9313 34.712 32.9498 34.7303 32.9683 34.7486C32.9868 34.7669 33.0053 34.7852 33.0238 34.8034C33.0423 34.8217 33.0608 34.84 33.0793 34.8583C33.0978 34.8765 33.1163 34.8948 33.1349 34.9131C33.1534 34.9314 33.1719 34.9497 33.1904 34.9679C36.1814 37.9181 40.331 39.7313 44.9323 39.7313C49.0116 39.7313 52.9502 38.3275 56.0671 35.3408C56.3891 35.0228 56.4335 34.4342 56.1115 34.1198L53.524 31.4036C53.5536 31.4585 53.5796 31.5131 53.5981 31.5716L54.6938 32.7231L54.6937 32.7197Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M88.6942 36.7049C88.9681 37.2935 88.6017 37.882 87.9131 37.882H82.827C82.3124 37.882 81.9793 37.7724 81.6979 37.4872C81.6979 37.4872 81.6979 37.4872 81.7016 37.4909C81.7201 37.5092 81.7386 37.5274 81.7572 37.5457C81.7757 37.564 81.7942 37.5823 81.8127 37.6006C81.8312 37.6188 81.8497 37.6371 81.8682 37.6554C81.8867 37.6737 81.9052 37.6919 81.9237 37.7102C81.9422 37.7285 81.9608 37.7468 81.9793 37.7651C81.9978 37.7833 82.0163 37.8016 82.0348 37.8199C82.0533 37.8382 82.0718 37.8564 82.0903 37.8747C82.1088 37.893 82.1273 37.9113 82.1458 37.9296C82.1644 37.9478 82.1829 37.9661 82.2014 37.9844C82.2199 38.0027 82.2384 38.021 82.2569 38.0392C82.2754 38.0575 82.2939 38.0758 82.3124 38.0941C82.3309 38.1124 82.3494 38.1306 82.3679 38.1489C82.3864 38.1672 82.405 38.1855 82.4235 38.2037C82.442 38.222 82.4605 38.2403 82.479 38.2586C82.4975 38.2769 82.516 38.2951 82.5345 38.3134C82.553 38.3317 82.5715 38.35 82.59 38.3682C82.6086 38.3865 82.6271 38.4048 82.6456 38.4231C82.6641 38.4414 82.6826 38.4596 82.7011 38.4779C82.7196 38.4962 82.7381 38.5145 82.7566 38.5328C82.7751 38.551 82.7936 38.5693 82.8121 38.5876C82.8307 38.6059 82.8492 38.6241 82.8677 38.6424C82.8862 38.6607 82.9047 38.679 82.9232 38.6973C82.9417 38.7155 82.9602 38.7338 82.9787 38.7521C82.9972 38.7704 83.0157 38.7887 83.0343 38.8069C83.0528 38.8252 83.0713 38.8435 83.0898 38.8618C83.3748 39.1688 83.7154 39.2822 84.241 39.2822H89.3272C90.0157 39.2822 90.3822 38.6936 90.1083 38.105L75.7641 7.64582C75.7233 7.56174 75.6567 7.48497 75.5864 7.41551C75.5679 7.39723 75.5494 7.37895 75.5309 7.36068C75.5124 7.3424 75.4938 7.32412 75.4753 7.30584C75.4568 7.28756 75.4383 7.26928 75.4198 7.251C75.4013 7.23273 75.3828 7.21445 75.3643 7.19617C75.3458 7.17789 75.3273 7.15961 75.3088 7.14133C75.2902 7.12305 75.2717 7.10478 75.2532 7.0865C75.2347 7.06822 75.2162 7.04994 75.1977 7.03166C75.1792 7.01338 75.1607 6.99511 75.1422 6.97683C75.1237 6.95855 75.1052 6.94027 75.0866 6.92199C75.0681 6.90371 75.0496 6.88543 75.0311 6.86716C75.0126 6.84888 74.9941 6.8306 74.9756 6.81232C74.9571 6.79404 74.9386 6.77576 74.9201 6.75749C74.9016 6.73921 74.883 6.72093 74.8645 6.70265C74.846 6.68437 74.8275 6.66609 74.809 6.64781C74.7905 6.62954 74.772 6.61126 74.7535 6.59298C74.735 6.5747 74.7165 6.55642 74.698 6.53815C74.6795 6.51987 74.6609 6.50159 74.6424 6.48331C74.6239 6.46503 74.6054 6.44675 74.5869 6.42847C74.5684 6.4102 74.5499 6.39192 74.5314 6.37364C74.5129 6.35536 74.4944 6.33708 74.4759 6.3188C74.4574 6.30052 74.4389 6.28225 74.4203 6.26397C74.4018 6.24569 74.3833 6.22741 74.3648 6.20913C74.3463 6.19085 74.3278 6.17258 74.3093 6.1543C74.2908 6.13602 74.2723 6.11774 74.2538 6.09946C74.2353 6.08118 74.2167 6.0629 74.1982 6.04462C74.2575 6.10677 74.3093 6.17258 74.3463 6.24569L88.6905 36.7049H88.6942Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M73.891 22.7248L72.8539 20.5058L70.5703 25.4731L72.6289 25.4734L73.891 22.7248Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M67.1097 33.1732L65.4587 36.7923C65.2292 37.337 64.7258 37.8781 63.8078 37.8781H58.766C58.4995 37.8781 58.2885 37.7867 58.1367 37.6441C58.1552 37.6624 58.1737 37.6807 58.1922 37.6989C58.2108 37.7172 58.2256 37.7355 58.2478 37.7538C58.2663 37.7721 58.2848 37.7903 58.3033 37.8086C58.3218 37.8269 58.3366 37.8452 58.3588 37.8634C58.3773 37.8817 58.3958 37.9 58.4143 37.9183C58.4329 37.9366 58.4514 37.9548 58.4699 37.9731C58.4884 37.9914 58.5069 38.0097 58.5254 38.028C58.5439 38.0462 58.5624 38.0645 58.5809 38.0828C58.5994 38.1011 58.6142 38.1193 58.6365 38.1376C58.655 38.1559 58.6735 38.1742 58.692 38.1925C58.7105 38.2107 58.729 38.229 58.7475 38.2473C58.766 38.2656 58.7845 38.2838 58.803 38.3021C58.8215 38.3204 58.8363 38.3387 58.8586 38.357C58.8771 38.3752 58.8956 38.3935 58.9141 38.4118C58.9326 38.4301 58.9474 38.4484 58.9696 38.4666C58.9881 38.4849 59.0066 38.5032 59.0251 38.5215C59.0436 38.5397 59.0621 38.558 59.0807 38.5763C59.0992 38.5946 59.1177 38.6129 59.1362 38.6311C59.1547 38.6494 59.1732 38.6677 59.1917 38.686C59.2102 38.7043 59.225 38.7225 59.2472 38.7408C59.2657 38.7591 59.2806 38.7774 59.3028 38.7956C59.3213 38.8139 59.3398 38.8322 59.3583 38.8505C59.3768 38.8688 59.3953 38.887 59.4138 38.9053C59.4323 38.9236 59.4471 38.9419 59.4693 38.9602C59.4878 38.9784 59.5064 38.9967 59.5249 39.015C59.6766 39.1722 59.8987 39.2745 60.1801 39.2745H65.2218C66.1398 39.2745 66.6433 38.7298 66.8728 38.1888L68.5238 34.5697H79.2847L78.6406 33.1732H67.1097Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M138.59 14.2517C140.234 14.2517 141.729 14.6685 143.01 15.3886C142.766 15.0231 142.492 14.6757 142.196 14.3576C140.793 13.4108 139.083 12.8552 137.176 12.8552L132.778 12.8549V29.6382L134.192 29.6385V14.2517H138.59Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M153.719 21.9939C153.719 30.7749 146.478 37.8779 137.635 37.8779H126.452C126.226 37.8779 126.03 37.7756 125.882 37.622C125.9 37.6403 125.915 37.6586 125.934 37.6732C125.952 37.6915 125.971 37.7098 125.989 37.728C126.008 37.7463 126.026 37.7646 126.045 37.7829C126.063 37.8012 126.082 37.8194 126.1 37.8377C126.119 37.856 126.137 37.8743 126.156 37.8925C126.174 37.9108 126.193 37.9291 126.211 37.9474C126.23 37.9657 126.248 37.9839 126.267 38.0022C126.285 38.0205 126.304 38.0388 126.322 38.0571C126.341 38.0753 126.359 38.0936 126.378 38.1119C126.396 38.1302 126.415 38.1484 126.433 38.1667C126.452 38.185 126.47 38.2033 126.489 38.2216C126.507 38.2398 126.526 38.2581 126.544 38.2764C126.563 38.2947 126.581 38.313 126.6 38.3312C126.618 38.3495 126.637 38.3678 126.655 38.3861C126.674 38.4044 126.693 38.4226 126.711 38.4409C126.73 38.4592 126.748 38.4775 126.767 38.4957C126.785 38.5177 126.804 38.5323 126.822 38.5506C126.841 38.5689 126.859 38.5871 126.878 38.6054C126.896 38.6273 126.915 38.642 126.933 38.6602C126.952 38.6785 126.97 38.6968 126.989 38.7151C127.007 38.7334 127.026 38.7516 127.044 38.7699C127.063 38.7882 127.081 38.8065 127.1 38.8247C127.118 38.843 127.137 38.8613 127.155 38.8796C127.174 38.8979 127.192 38.9161 127.211 38.9344C127.229 38.9527 127.248 38.971 127.266 38.9893C127.418 39.1611 127.629 39.2781 127.87 39.2781H139.053C147.896 39.2781 155.137 32.1714 155.137 23.3941C155.137 19.0365 153.315 15.081 150.387 12.215C150.369 12.1967 150.35 12.1784 150.332 12.1601C150.313 12.1419 150.295 12.1236 150.276 12.1053C150.258 12.087 150.239 12.0687 150.221 12.0505C150.202 12.0322 150.184 12.0139 150.165 11.9956C150.147 11.9774 150.128 11.9591 150.11 11.9408C150.091 11.9225 150.073 11.9042 150.054 11.886C150.036 11.8677 150.017 11.8494 149.999 11.8311C149.98 11.8128 149.962 11.7946 149.943 11.7763C149.925 11.758 149.906 11.7397 149.888 11.7215C149.869 11.7032 149.85 11.6849 149.832 11.6666C149.813 11.6483 149.795 11.6301 149.776 11.6118C149.758 11.5935 149.739 11.5752 149.721 11.557C149.702 11.5387 149.684 11.5204 149.665 11.5021C149.647 11.4838 149.628 11.4656 149.61 11.4473C149.591 11.429 149.573 11.4107 149.554 11.3924C149.536 11.3742 149.517 11.3559 149.499 11.3376C149.48 11.3193 149.462 11.3011 149.443 11.2828C149.425 11.2645 149.406 11.2462 149.388 11.2279C149.369 11.2097 149.351 11.1914 149.332 11.1731C149.314 11.1548 149.295 11.1365 149.277 11.1183C149.266 11.1073 149.255 11.0963 149.243 11.0854C149.255 11.1 149.262 11.1146 149.273 11.1256C152.023 13.9624 153.723 17.7899 153.723 21.9939H153.719Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M158.523 37.6367C158.523 37.6367 158.546 37.6586 158.557 37.6696C158.575 37.6878 158.594 37.7061 158.612 37.7244C158.631 37.7427 158.649 37.761 158.668 37.7792C158.686 37.7975 158.705 37.8158 158.723 37.8341C158.742 37.8523 158.76 37.8706 158.779 37.8889C158.797 37.9072 158.816 37.9255 158.834 37.9437C158.853 37.962 158.871 37.9803 158.89 37.9986C158.908 38.0169 158.927 38.0351 158.945 38.0534C158.964 38.0717 158.982 38.09 159.001 38.1082C159.019 38.1265 159.038 38.1448 159.056 38.1631C159.075 38.1814 159.093 38.1996 159.112 38.2179C159.131 38.2362 159.149 38.2545 159.168 38.2727C159.186 38.291 159.205 38.3093 159.223 38.3276C159.242 38.3459 159.26 38.3641 159.279 38.3824C159.297 38.4007 159.316 38.419 159.334 38.4373C159.353 38.4555 159.371 38.4738 159.39 38.4921C159.408 38.5104 159.427 38.5286 159.445 38.5469C159.464 38.5652 159.482 38.5835 159.501 38.6018C159.519 38.62 159.538 38.6383 159.556 38.6566C159.575 38.6749 159.593 38.6932 159.612 38.7114C159.63 38.7297 159.649 38.748 159.667 38.7663C159.686 38.7845 159.704 38.8028 159.723 38.8211C159.741 38.8394 159.76 38.8577 159.778 38.8759C159.797 38.8942 159.815 38.9125 159.834 38.9308C159.852 38.9491 159.871 38.9673 159.889 38.9856C160.052 39.1611 160.278 39.2781 160.519 39.2781H166.016C166.475 39.2781 166.886 38.8723 166.886 38.419V8.46058C166.886 8.21931 166.767 7.99997 166.589 7.83912C166.571 7.82084 166.552 7.80256 166.534 7.78428C166.515 7.766 166.497 7.74772 166.478 7.72945C166.46 7.71117 166.441 7.69289 166.423 7.67461C166.404 7.65633 166.386 7.63806 166.367 7.61978C166.349 7.6015 166.33 7.58322 166.312 7.56494C166.293 7.54666 166.275 7.52838 166.256 7.51011C166.238 7.49183 166.219 7.47355 166.201 7.45527C166.182 7.43699 166.164 7.41871 166.145 7.40044C166.127 7.38216 166.108 7.36388 166.09 7.3456C166.071 7.32732 166.053 7.30904 166.034 7.29076C166.016 7.27249 165.997 7.25421 165.979 7.23593C165.96 7.21765 165.942 7.19937 165.923 7.18109C165.905 7.16281 165.886 7.14454 165.868 7.12626C165.849 7.10798 165.831 7.0897 165.812 7.07142C165.794 7.05315 165.775 7.03487 165.757 7.01659C165.738 6.99831 165.72 6.98003 165.701 6.96175C165.683 6.94347 165.664 6.92519 165.646 6.90692C165.627 6.88864 165.609 6.87036 165.59 6.85208C165.572 6.8338 165.553 6.81553 165.535 6.79725C165.516 6.77897 165.497 6.76069 165.479 6.74241C165.46 6.72413 165.442 6.70585 165.423 6.68757C165.405 6.6693 165.386 6.65102 165.368 6.63274C165.349 6.61446 165.331 6.59618 165.312 6.57791C165.294 6.55963 165.275 6.54135 165.257 6.52307C165.246 6.5121 165.235 6.50113 165.224 6.49017C165.372 6.64736 165.468 6.84477 165.468 7.06046V37.0188C165.468 37.4722 165.057 37.8779 164.598 37.8779H159.101C158.882 37.8779 158.679 37.7829 158.523 37.6367Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M9.02958 12.8582C9.02958 11.5019 10.3918 10.4015 12.0687 10.4015C14.534 10.4015 17.4325 12.3098 18.3875 12.9386C18.5356 13.0373 18.643 13.1067 18.6948 13.136C18.8355 13.242 19.002 13.2383 19.1205 13.2164C19.461 13.1579 19.8645 12.8911 20.0533 12.5986L22.3928 9.11107C22.5335 8.86979 22.6334 8.14231 22.167 7.87544C20.4198 6.61058 16.8476 4.50124 12.4352 4.50124C5.26492 4.50124 2 9.09279 2 13.359C2 16.2908 3.52511 20.3852 10.7953 23.222C14.0824 24.5088 15.6112 26.0077 15.6112 27.9306C15.6112 29.5903 14.2194 30.7966 12.2982 30.7966C11.047 30.7966 8.91482 30.3799 5.87201 28.3875C5.79427 28.3363 5.74244 28.3034 5.72394 28.2925C5.59438 28.2011 5.37227 28.1353 5.13536 28.1353C5.05763 28.1353 4.97989 28.1426 4.90215 28.1572C4.73557 28.1901 4.50607 28.2779 4.3617 28.5082L2.211 32.2589C1.89635 32.8036 1.97779 32.9133 2.41459 33.3483C2.99577 33.9222 6.22367 36.7883 12.6203 36.7883C19.0168 36.7883 23.2849 32.1017 23.2849 27.5687C23.2849 21.6684 18.0544 18.9339 14.1232 17.3876C10.5066 15.9399 9.03328 14.6312 9.03328 12.8582H9.02958Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M30.4959 32.1022C33.5794 35.1254 37.6994 36.7888 42.0971 36.7888C46.4947 36.7888 50.1595 35.2863 53.1282 32.4421C53.4022 32.1716 53.4244 31.6818 53.1727 31.4332L49.5968 27.6751C49.3784 27.4265 48.8861 27.4119 48.6121 27.6422C46.9871 29.0241 44.655 29.8503 42.3747 29.8503C37.2293 29.8503 33.1944 25.7486 33.1944 20.5136C33.1944 15.2787 37.2071 11.0417 42.3266 11.0417C44.6291 11.0417 46.9204 11.8972 48.6121 13.3887C48.8787 13.6519 49.297 13.6446 49.5487 13.396L53.1208 9.73299C53.2726 9.58311 53.354 9.39667 53.3466 9.20292C53.3392 9.00917 53.2467 8.82638 53.0838 8.68015C49.8781 5.79581 46.491 4.50901 42.0934 4.50901C33.0538 4.50901 25.7021 11.7729 25.7021 20.6964C25.7021 25.0284 27.4049 29.0826 30.4922 32.1095L30.4959 32.1022Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M81.4129 36.335H86.4991C86.773 36.335 86.9988 36.2253 87.121 36.0352C87.2431 35.8488 87.2505 35.6039 87.1395 35.3699L72.7953 4.91434C72.6768 4.68037 72.3992 4.50124 72.1549 4.50124H71.6959C71.4478 4.50124 71.1702 4.68037 71.0518 4.91799L56.7113 35.3699C56.6002 35.6039 56.6076 35.8488 56.7298 36.0352C56.8519 36.2253 57.0814 36.335 57.3517 36.335H62.3934C63.3411 36.335 63.7483 35.7135 63.9037 35.3407L65.5954 31.6265H78.2553L79.947 35.2895C80.3394 36.1083 80.654 36.335 81.4129 36.335ZM68.2088 25.7701L71.7847 18.0054H72.0253L75.6456 25.7701H68.2088Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M116.684 36.7883C117.072 36.7883 117.402 36.4849 117.402 36.123V5.66375C117.402 5.29087 117.058 4.95455 116.684 4.95455H111.187C110.791 4.95455 110.469 5.27259 110.469 5.66375V21.8804H110.209L91.9229 4.50124H90.8382C90.4496 4.50124 90.1201 4.80467 90.1201 5.16658L90.1645 35.6258C90.1645 35.9987 90.5088 36.335 90.8827 36.335H96.3353C96.7314 36.335 97.0535 36.017 97.0535 35.6258V18.5939H97.3126L97.357 18.6378L115.458 36.6055C115.518 36.664 115.847 36.7883 115.947 36.7883H116.684Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M125.038 36.3348H136.221C145.009 36.3348 152.157 29.2756 152.157 20.597C152.157 11.9184 145.009 4.95067 136.221 4.95067H125.038C124.671 4.95067 124.364 5.27603 124.364 5.65987V35.6219C124.364 36.0058 124.671 36.3311 125.038 36.3311V36.3348ZM131.209 11.3079H135.758C140.941 11.3079 144.846 15.3036 144.846 20.597C144.846 25.8905 140.941 29.9337 135.758 29.9337H131.209V11.3079Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M157.687 4.95141H163.188C163.584 4.95141 163.906 5.26946 163.906 5.66062V35.619C163.906 36.0102 163.584 36.3282 163.188 36.3282H157.691C157.295 36.3282 156.973 36.0102 156.973 35.619V5.65696C156.973 5.2658 157.295 4.94776 157.691 4.94776L157.687 4.95141Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M176.114 20.5097C176.114 15.198 180.127 11.0378 185.247 11.0378C187.549 11.0378 189.84 11.8933 191.532 13.3848C191.799 13.648 192.217 13.6407 192.469 13.3921L196.041 9.72911C196.193 9.57923 196.274 9.39279 196.267 9.19904C196.259 9.00528 196.167 8.8225 196.004 8.67627C192.798 5.79193 189.411 4.50513 185.013 4.50513C175.974 4.50513 168.622 11.769 168.622 20.6925C168.622 25.0245 170.325 29.0787 173.412 32.1056C176.496 35.1289 180.616 36.7922 185.013 36.7922C189.411 36.7922 193.076 35.2897 196.044 32.4456C196.318 32.1751 196.341 31.6852 196.089 31.4366L192.513 27.6786C192.295 27.43 191.802 27.4153 191.528 27.6457C189.903 29.0275 187.571 29.8537 185.291 29.8537C180.146 29.8537 176.111 25.752 176.111 20.5171L176.114 20.5097Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M217.701 11.0791H230.546C230.942 11.0791 231.264 10.761 231.264 10.3699V5.43834C231.264 5.04718 230.942 4.72914 230.546 4.72914H211.575C211.178 4.72914 210.856 5.04718 210.856 5.43834V35.4004C210.856 35.7915 211.178 36.1096 211.575 36.1096H216.983C217.36 36.1096 217.701 35.7696 217.701 35.4004V24.2542H228.299C228.677 24.2542 229.017 23.9142 229.017 23.545V18.6135C229.017 18.2406 228.673 17.9043 228.299 17.9043H217.701V11.0791Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M259.62 35.1406L245.276 4.68504C245.157 4.45108 244.88 4.27195 244.635 4.27195H244.176C243.928 4.27195 243.651 4.45108 243.532 4.6887L229.192 35.1443C229.081 35.3782 229.088 35.6232 229.21 35.8096C229.332 35.9997 229.562 36.1094 229.832 36.1094H234.874C235.822 36.1094 236.229 35.4879 236.384 35.115L238.076 31.4008H250.736L252.427 35.0638C252.82 35.8827 253.135 36.1094 253.893 36.1094H258.98C259.253 36.1094 259.479 35.9997 259.601 35.8096C259.724 35.6232 259.731 35.3782 259.62 35.1443V35.1406ZM240.689 25.5444L244.265 17.7797H244.506L248.126 25.5444H240.689Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M292.616 36.1055H298.024C298.261 36.1055 298.465 36.0214 298.598 35.8642C298.731 35.7107 298.78 35.5096 298.746 35.2793L293.568 4.8676C293.527 4.52031 293.179 4.26807 292.89 4.26807H292.157C291.979 4.26807 291.62 4.42891 291.513 4.63729L280.837 24.272H280.563L269.888 4.64095C269.78 4.42526 269.421 4.26807 269.243 4.26807H268.511C268.222 4.26807 267.874 4.52031 267.837 4.86029V4.8676L262.658 35.2793C262.621 35.5059 262.673 35.7107 262.806 35.8605C262.939 36.0141 263.143 36.1018 263.38 36.1018H268.788C269.173 36.1018 269.473 35.7947 269.51 35.5096L271.546 21.395H271.861L279.649 36.1384C279.756 36.3541 280.071 36.5551 280.293 36.5551H281.119C281.285 36.5551 281.648 36.365 281.763 36.1384L289.503 21.3913H289.818L291.898 35.5023C291.935 35.8057 292.294 36.0982 292.62 36.0982L292.616 36.1055Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M309.866 4.72525H304.366C303.969 4.72525 303.647 5.04278 303.647 5.43446V35.3965C303.647 35.7882 303.969 36.1057 304.366 36.1057H309.866C310.263 36.1057 310.585 35.7882 310.585 35.3965V5.43446C310.585 5.04278 310.263 4.72525 309.866 4.72525Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M324.363 5.43834C324.363 5.06546 324.018 4.72914 323.644 4.72914H318.192C317.796 4.72914 317.474 5.04718 317.474 5.43834V35.4004C317.474 35.7915 317.796 36.1096 318.192 36.1096H335.423C335.819 36.1096 336.141 35.7915 336.141 35.4004V30.4689C336.141 30.0777 335.819 29.7597 335.423 29.7597H324.366V5.442L324.363 5.43834Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M339.091 5.06889C338.917 4.84224 338.717 4.72891 338.484 4.72891H332.528C332.247 4.72891 332.013 4.85321 331.888 5.07255C331.762 5.29555 331.773 5.57338 331.921 5.811L342.071 20.9602V35.3965C342.071 35.7877 342.393 36.1057 342.789 36.1057H348.242C348.619 36.1057 348.96 35.7657 348.96 35.3965V20.9127L348.986 20.8761L359.251 5.80368C359.395 5.56972 359.41 5.29189 359.284 5.06889C359.158 4.84955 358.925 4.72525 358.644 4.72525H352.688C352.34 4.72525 352.191 4.91901 352.077 5.07255L345.588 14.5262L339.091 5.06523V5.06889Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,205 @@
|
||||
import { levelVariants } from "../../variants"
|
||||
|
||||
import type { LevelProps } from "../../levels"
|
||||
|
||||
export default function ScandicFriends({ className, color }: LevelProps) {
|
||||
const classNames = levelVariants({
|
||||
className,
|
||||
color,
|
||||
})
|
||||
return (
|
||||
<svg
|
||||
className={classNames}
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="403"
|
||||
height="44"
|
||||
viewBox="0 0 403 44"
|
||||
fill="none"
|
||||
>
|
||||
<path
|
||||
d="M235.666 8.1843C235.648 8.16602 235.629 8.14775 235.611 8.12947C235.592 8.11119 235.574 8.09291 235.552 8.07463C235.534 8.05635 235.515 8.03807 235.497 8.01979C235.478 8.00152 235.46 7.98324 235.438 7.96496C235.42 7.94668 235.401 7.9284 235.383 7.91012C235.364 7.89184 235.346 7.87356 235.328 7.85529C235.309 7.83701 235.291 7.81873 235.269 7.80045C235.25 7.78217 235.232 7.76389 235.214 7.74561C235.195 7.72733 235.177 7.70906 235.158 7.69078C235.14 7.6725 235.122 7.65056 235.1 7.63594C235.081 7.61766 235.063 7.59939 235.044 7.58111C235.026 7.56283 235.008 7.5409 234.989 7.52262C234.971 7.50434 234.952 7.48606 234.93 7.46778C234.912 7.4495 234.894 7.43122 234.875 7.41294C234.857 7.39467 234.838 7.37639 234.816 7.35811C234.798 7.33983 234.78 7.32155 234.761 7.30327C234.743 7.28499 234.724 7.26671 234.706 7.24844C234.688 7.23016 234.669 7.21188 234.647 7.1936C234.629 7.17532 234.61 7.15704 234.592 7.13876C234.574 7.12048 234.555 7.10221 234.537 7.08393C234.518 7.06565 234.5 7.04371 234.478 7.02909C234.478 7.02544 234.471 7.02178 234.467 7.01812C234.629 7.17532 234.724 7.39466 234.724 7.62497V12.5383C234.724 12.9879 234.36 13.3937 233.864 13.3937H221.308V18.1278H222.588V14.6695H235.144C235.644 14.6695 236.004 14.2638 236.004 13.8141V8.90082C236.004 8.65954 235.898 8.43289 235.725 8.27204C235.706 8.25376 235.688 8.23548 235.67 8.2172L235.666 8.1843Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M233.43 21.3014C233.412 21.2831 233.393 21.2649 233.375 21.2466C233.357 21.2283 233.338 21.2064 233.316 21.1917C233.298 21.1735 233.279 21.1552 233.257 21.1369C233.239 21.1186 233.221 21.0967 233.202 21.0821C233.184 21.0638 233.165 21.0455 233.147 21.0272C233.129 21.009 233.11 20.9907 233.088 20.9724C233.07 20.9541 233.051 20.9358 233.033 20.9176C233.015 20.8993 232.996 20.8774 232.978 20.8627C232.959 20.8445 232.941 20.8262 232.923 20.8079C232.904 20.7896 232.886 20.7713 232.864 20.7531C232.845 20.7348 232.827 20.7128 232.809 20.6982C232.79 20.6799 232.772 20.6617 232.75 20.6434C232.731 20.6251 232.713 20.6032 232.695 20.5886C232.676 20.5703 232.658 20.552 232.639 20.5337C232.621 20.5154 232.603 20.4935 232.581 20.4789C232.562 20.4606 232.544 20.4387 232.525 20.424C232.507 20.4058 232.489 20.3838 232.47 20.3692C232.452 20.3509 232.434 20.3327 232.411 20.3144C232.393 20.2961 232.375 20.2742 232.356 20.2595C232.338 20.2413 232.32 20.223 232.297 20.2047C232.279 20.1864 232.261 20.1681 232.242 20.1499C232.239 20.1462 232.235 20.1426 232.231 20.1389C232.397 20.2961 232.503 20.5118 232.503 20.7421V25.6517C232.503 26.1014 232.095 26.5072 231.643 26.5072H221.308V37.456C221.308 37.9057 220.9 38.3115 220.447 38.3115H215.096C214.842 38.3115 214.629 38.2055 214.475 38.0446C214.478 38.0483 214.482 38.0556 214.489 38.0592C214.508 38.0775 214.526 38.0958 214.548 38.1141C214.567 38.1323 214.585 38.1506 214.603 38.1726C214.622 38.1908 214.64 38.2091 214.662 38.2274C214.681 38.2457 214.699 38.2676 214.717 38.2822C214.736 38.3005 214.754 38.3188 214.773 38.3371C214.791 38.3553 214.809 38.3736 214.831 38.3919C214.85 38.4102 214.868 38.4285 214.887 38.4467C214.905 38.465 214.923 38.4869 214.942 38.5016C214.96 38.5198 214.978 38.5381 215.001 38.5564C215.019 38.5747 215.037 38.5966 215.056 38.6149C215.074 38.6332 215.092 38.6515 215.111 38.6697C215.129 38.688 215.148 38.7063 215.17 38.7246C215.188 38.7428 215.206 38.7611 215.225 38.7794C215.243 38.7977 215.262 38.816 215.28 38.8342C215.298 38.8525 215.317 38.8708 215.339 38.8891C215.357 38.9074 215.376 38.9256 215.394 38.9439C215.412 38.9622 215.431 38.9805 215.453 38.9987C215.471 39.017 215.49 39.0353 215.508 39.0536C215.526 39.0719 215.545 39.0901 215.563 39.1084C215.582 39.1267 215.6 39.145 215.622 39.1633C215.64 39.1815 215.659 39.1998 215.677 39.2181C215.696 39.2364 215.714 39.2546 215.736 39.2729C215.891 39.4447 216.111 39.5581 216.372 39.5581H221.724C222.176 39.5581 222.584 39.1523 222.584 38.7026V27.7538H232.919C233.371 27.7538 233.78 27.348 233.78 26.8983V21.985C233.78 21.7474 233.662 21.5208 233.489 21.3636C233.471 21.3453 233.452 21.3234 233.434 21.3087L233.43 21.3014Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M246.869 25.9331V37.423C246.869 37.8726 246.461 38.2784 246.008 38.2784H240.613C240.363 38.2784 240.146 38.1724 239.991 38.0115C239.995 38.0152 239.999 38.0225 240.006 38.0262C240.024 38.0444 240.043 38.0627 240.061 38.081C240.079 38.0993 240.098 38.1176 240.116 38.1358C240.135 38.1541 240.153 38.1724 240.175 38.1907C240.193 38.2089 240.212 38.2309 240.23 38.2455C240.249 38.2638 240.267 38.2821 240.285 38.3003C240.304 38.3186 240.322 38.3369 240.344 38.3552C240.363 38.3735 240.381 38.3917 240.399 38.41C240.418 38.4283 240.436 38.4466 240.455 38.4648C240.473 38.4831 240.491 38.5014 240.513 38.5197C240.532 38.538 240.55 38.5562 240.569 38.5745C240.587 38.5928 240.605 38.6111 240.624 38.6294C240.642 38.6476 240.661 38.6659 240.683 38.6842C240.701 38.7025 240.719 38.7207 240.738 38.739C240.756 38.7573 240.775 38.7756 240.797 38.7939C240.815 38.8121 240.833 38.8304 240.852 38.8487C240.87 38.867 240.889 38.8853 240.907 38.9035C240.925 38.9218 240.944 38.9401 240.966 38.9584C240.984 38.9767 241.003 38.9949 241.021 39.0169C241.039 39.0351 241.058 39.0534 241.076 39.0717C241.095 39.09 241.113 39.1082 241.135 39.1265C241.153 39.1448 241.172 39.1631 241.19 39.1814C241.209 39.1996 241.227 39.2179 241.249 39.2362C241.404 39.408 241.624 39.5214 241.885 39.5214H247.281C247.733 39.5214 248.141 39.1156 248.141 38.6659V27.176H249.657L249.013 25.9038H246.858L246.869 25.9331Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M253.577 13.1817L246.869 13.182V18.4572H248.149V14.4578H254.857C254.975 14.4578 255.093 14.4688 255.207 14.4798C255.144 14.1105 255.019 13.7559 254.839 13.4379C254.446 13.277 254.019 13.1856 253.574 13.1856L253.577 13.1817Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M265.332 17.7443C265.332 15.0537 264.21 12.6081 262.408 10.846C262.389 10.8277 262.371 10.8095 262.349 10.7912C262.331 10.7729 262.312 10.7546 262.294 10.7363C262.275 10.7181 262.257 10.6998 262.235 10.6778C262.217 10.6596 262.198 10.6413 262.18 10.623C262.161 10.6047 262.143 10.5865 262.125 10.5682C262.106 10.5499 262.088 10.5316 262.066 10.5097C262.044 10.4877 262.029 10.4731 262.007 10.4548C261.989 10.4366 261.97 10.4183 261.952 10.4C261.933 10.3817 261.915 10.3635 261.897 10.3452C261.878 10.3269 261.86 10.3086 261.838 10.2903C261.819 10.2721 261.801 10.2538 261.779 10.2318C261.761 10.2136 261.742 10.1953 261.724 10.177C261.705 10.1587 261.687 10.1405 261.669 10.1222C261.65 10.1039 261.632 10.0856 261.613 10.0673C261.595 10.0491 261.577 10.0308 261.555 10.0089C261.536 9.99057 261.518 9.97229 261.499 9.95401C261.481 9.93573 261.463 9.91746 261.444 9.89918C261.426 9.8809 261.407 9.86262 261.385 9.84435C261.367 9.82607 261.349 9.80778 261.327 9.78585C261.308 9.76757 261.29 9.74929 261.271 9.73101C261.253 9.71273 261.235 9.69445 261.216 9.67617C261.198 9.6579 261.179 9.63962 261.161 9.62134C261.157 9.61403 261.15 9.61037 261.143 9.60306C262.937 11.3651 264.052 13.8035 264.052 16.4868C264.052 20.6324 261.286 23.9664 257.343 25.5456L263.555 36.9917C263.872 37.5766 263.555 38.3004 262.783 38.3004H256.755C256.498 38.3004 256.295 38.1871 256.159 38.0555C256.174 38.0701 256.185 38.0811 256.2 38.0957C256.218 38.114 256.236 38.1323 256.255 38.1506C256.273 38.1688 256.292 38.1871 256.31 38.2054C256.328 38.2237 256.347 38.242 256.369 38.2602C256.387 38.2785 256.406 38.2968 256.424 38.3151C256.442 38.3333 256.461 38.3516 256.479 38.3699C256.498 38.3882 256.516 38.4065 256.538 38.4247C256.556 38.443 256.575 38.4613 256.593 38.4796C256.612 38.4979 256.63 38.5161 256.648 38.5344C256.667 38.5527 256.685 38.571 256.707 38.5892C256.726 38.6075 256.744 38.6258 256.762 38.6441C256.781 38.6624 256.799 38.6806 256.821 38.6989C256.84 38.7172 256.858 38.7355 256.876 38.7538C256.895 38.772 256.913 38.7903 256.932 38.8086C256.95 38.8269 256.968 38.8451 256.99 38.8634C257.009 38.8817 257.027 38.9 257.046 38.9183C257.064 38.9365 257.082 38.9548 257.101 38.9731C257.119 38.9914 257.137 39.0097 257.16 39.0279C257.178 39.0462 257.196 39.0645 257.215 39.0828C257.233 39.101 257.251 39.1193 257.274 39.1376C257.292 39.1559 257.31 39.1742 257.329 39.1924C257.347 39.2107 257.366 39.229 257.384 39.2473C257.513 39.3972 257.737 39.5361 258.028 39.5361H264.056C264.828 39.5361 265.144 38.8159 264.828 38.231L258.616 26.7849C262.559 25.2093 265.324 21.8717 265.324 17.7261L265.332 17.7443Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M278.219 8.18795C278.2 8.16968 278.182 8.1514 278.163 8.13312C278.145 8.11484 278.127 8.09656 278.105 8.07829C278.086 8.06001 278.068 8.03807 278.049 8.02345C278.031 8.00517 278.013 7.98689 277.991 7.96861C277.972 7.95033 277.954 7.93205 277.935 7.91377C277.917 7.89549 277.899 7.87356 277.88 7.85894C277.862 7.84066 277.843 7.82239 277.821 7.80411C277.803 7.78583 277.785 7.76755 277.766 7.74927C277.748 7.73099 277.729 7.71271 277.707 7.69444C277.689 7.67616 277.671 7.65787 277.652 7.6396C277.634 7.62132 277.615 7.60304 277.597 7.58476C277.579 7.56648 277.56 7.54455 277.542 7.52627C277.523 7.50799 277.505 7.48971 277.483 7.47144C277.465 7.45316 277.446 7.43123 277.428 7.4166C277.409 7.39832 277.391 7.38004 277.369 7.36176C277.351 7.34348 277.332 7.32521 277.314 7.30693C277.295 7.28865 277.277 7.26671 277.259 7.24844C277.24 7.23016 277.222 7.21188 277.2 7.1936C277.181 7.17532 277.163 7.15704 277.145 7.13876C277.126 7.12048 277.108 7.09855 277.089 7.08393C277.071 7.06565 277.053 7.04737 277.031 7.02909C277.027 7.02544 277.023 7.02178 277.02 7.01812C277.185 7.17532 277.292 7.39101 277.292 7.62132V37.452C277.292 37.9016 276.884 38.3074 276.431 38.3074H270.992C270.76 38.3074 270.547 38.2014 270.385 38.0369C270.388 38.0405 270.392 38.0442 270.396 38.0478C270.414 38.0661 270.433 38.0881 270.451 38.1027C270.469 38.121 270.488 38.1392 270.506 38.1575C270.525 38.1758 270.543 38.1941 270.565 38.2124C270.583 38.2306 270.602 38.2526 270.62 38.2672C270.639 38.2855 270.657 38.3037 270.675 38.322C270.694 38.3403 270.712 38.3586 270.734 38.3769C270.753 38.3951 270.771 38.4134 270.793 38.4317C270.811 38.45 270.83 38.4683 270.848 38.4865C270.867 38.5048 270.885 38.5231 270.907 38.5414C270.925 38.5597 270.944 38.5779 270.962 38.5962C270.981 38.6145 270.999 38.6328 271.021 38.6511C271.039 38.6693 271.058 38.6913 271.076 38.7059C271.095 38.7242 271.113 38.7424 271.131 38.7607C271.15 38.779 271.168 38.7973 271.19 38.8156C271.209 38.8338 271.227 38.8558 271.245 38.874C271.264 38.8923 271.282 38.9106 271.304 38.9289C271.323 38.9472 271.341 38.9654 271.359 38.9837C271.378 39.002 271.396 39.0203 271.415 39.0386C271.433 39.0568 271.451 39.0751 271.47 39.0934C271.488 39.1117 271.506 39.1299 271.529 39.1482C271.547 39.1665 271.565 39.1848 271.584 39.2031C271.602 39.2213 271.621 39.2396 271.643 39.2579C271.804 39.4334 272.029 39.5467 272.268 39.5467H277.707C278.16 39.5467 278.568 39.1409 278.568 38.6913V8.86061C278.568 8.62299 278.45 8.39634 278.277 8.23914C278.259 8.22086 278.241 8.19892 278.222 8.1843L278.219 8.18795Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M306.516 33.1018C306.498 33.0835 306.479 33.0653 306.457 33.047C306.439 33.0287 306.421 33.0104 306.402 32.9921C306.384 32.9739 306.365 32.9556 306.347 32.9373C306.329 32.919 306.31 32.9008 306.288 32.8825C306.27 32.8642 306.251 32.8459 306.233 32.8276C306.215 32.8094 306.196 32.7874 306.178 32.7728C306.159 32.7545 306.141 32.7363 306.119 32.718C306.101 32.6997 306.082 32.6814 306.064 32.6631C306.045 32.6449 306.027 32.6266 306.009 32.6083C305.99 32.59 305.972 32.5717 305.95 32.5535C305.931 32.5352 305.913 32.5169 305.895 32.4986C305.876 32.4804 305.858 32.4621 305.839 32.4401C305.821 32.4219 305.803 32.4036 305.781 32.3853C305.762 32.367 305.744 32.3487 305.725 32.3305C305.707 32.3122 305.689 32.2939 305.667 32.2756C305.648 32.2574 305.63 32.2391 305.611 32.2208C305.593 32.2025 305.575 32.1806 305.556 32.166C305.538 32.1477 305.52 32.1294 305.497 32.1111C305.479 32.0928 305.461 32.0746 305.442 32.0563C305.424 32.038 305.405 32.0197 305.387 32.0015C305.369 31.9832 305.35 31.9612 305.328 31.9466C305.328 31.943 305.321 31.9393 305.317 31.9357C305.479 32.0928 305.575 32.3122 305.575 32.5425V37.4558C305.575 37.9054 305.211 38.3112 304.714 38.3112H285.946C285.696 38.3112 285.479 38.2052 285.328 38.0444C285.332 38.048 285.335 38.0553 285.343 38.059C285.361 38.0773 285.38 38.0955 285.402 38.1138C285.42 38.1321 285.438 38.1504 285.457 38.1686C285.475 38.1869 285.494 38.2052 285.516 38.2235C285.534 38.2418 285.552 38.2637 285.571 38.2783C285.589 38.2966 285.608 38.3149 285.626 38.3332C285.644 38.3514 285.663 38.3697 285.685 38.388C285.703 38.4063 285.722 38.4246 285.74 38.4428C285.758 38.4611 285.777 38.4794 285.795 38.4977C285.814 38.5159 285.832 38.5342 285.854 38.5525C285.872 38.5708 285.891 38.5891 285.909 38.6073C285.928 38.6256 285.946 38.6439 285.964 38.6622C285.983 38.6805 286.001 38.6987 286.023 38.717C286.042 38.7353 286.06 38.7536 286.078 38.7718C286.097 38.7901 286.115 38.8084 286.134 38.8267C286.152 38.845 286.17 38.8632 286.192 38.8815C286.211 38.8998 286.229 38.9181 286.248 38.9363C286.266 38.9546 286.284 38.9729 286.303 38.9912C286.321 39.0095 286.34 39.0277 286.362 39.0497C286.38 39.068 286.398 39.0862 286.417 39.1045C286.435 39.1228 286.454 39.1411 286.476 39.1593C286.494 39.1776 286.512 39.1959 286.531 39.2142C286.549 39.2325 286.568 39.2507 286.59 39.269C286.744 39.4408 286.965 39.5542 287.226 39.5542H305.994C306.494 39.5542 306.855 39.1484 306.855 38.6987V33.7855C306.855 33.5442 306.748 33.3175 306.575 33.1567C306.557 33.1384 306.538 33.1201 306.52 33.1018H306.516Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M306.517 8.1843C306.498 8.16602 306.48 8.14775 306.458 8.12947C306.439 8.11119 306.421 8.09291 306.402 8.07463C306.384 8.05635 306.366 8.03807 306.347 8.01979C306.329 8.00152 306.311 7.98324 306.288 7.96496C306.27 7.94668 306.252 7.9284 306.233 7.91012C306.215 7.89184 306.197 7.87356 306.178 7.85529C306.16 7.83701 306.141 7.81873 306.119 7.80045C306.101 7.78217 306.083 7.76389 306.064 7.74561C306.046 7.72733 306.027 7.70906 306.009 7.69078C305.991 7.6725 305.972 7.65422 305.95 7.63594C305.932 7.61766 305.913 7.59939 305.895 7.58111C305.877 7.56283 305.858 7.54455 305.84 7.52627C305.821 7.50799 305.803 7.48971 305.781 7.47144C305.763 7.45316 305.744 7.43488 305.726 7.4166C305.707 7.39832 305.689 7.38004 305.667 7.36176C305.649 7.34348 305.63 7.32521 305.612 7.30693C305.593 7.28865 305.575 7.27037 305.557 7.25209C305.538 7.23381 305.52 7.21554 305.498 7.19726C305.479 7.17898 305.461 7.1607 305.443 7.14242C305.424 7.12414 305.406 7.10587 305.387 7.08393C305.369 7.06565 305.351 7.04737 305.329 7.02909C305.329 7.02544 305.321 7.02178 305.318 7.01812C305.479 7.17532 305.575 7.39466 305.575 7.62497V12.5383C305.575 12.9879 305.211 13.3937 304.714 13.3937H292.158V17.2249H293.442V14.6659H305.998C306.498 14.6659 306.859 14.2601 306.859 13.8104V8.89716C306.859 8.65588 306.752 8.42923 306.579 8.26838C306.561 8.2501 306.542 8.23182 306.524 8.21354L306.517 8.1843Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M293.434 26.8474H303.769C304.222 26.8474 304.63 26.4854 304.63 25.9919V21.0786C304.63 20.841 304.512 20.6144 304.339 20.4572C304.321 20.4389 304.302 20.4206 304.284 20.4023C304.266 20.3841 304.247 20.3621 304.229 20.3475C304.21 20.3292 304.192 20.3109 304.174 20.2927C304.155 20.2744 304.137 20.2561 304.115 20.2378C304.096 20.2196 304.078 20.2013 304.06 20.183C304.041 20.1647 304.023 20.1464 304.001 20.1282C303.982 20.1099 303.964 20.0879 303.946 20.0697C303.927 20.0514 303.909 20.0331 303.891 20.0148C303.872 19.9965 303.854 19.9783 303.832 19.96C303.813 19.9417 303.795 19.9234 303.777 19.9052C303.758 19.8869 303.74 19.8686 303.721 19.8503C303.703 19.832 303.685 19.8138 303.663 19.7955C303.644 19.7772 303.626 19.7553 303.607 19.7407C303.589 19.7224 303.571 19.7041 303.548 19.6858C303.53 19.6675 303.512 19.6456 303.493 19.631C303.475 19.6127 303.457 19.5944 303.438 19.5761C303.42 19.5579 303.401 19.5359 303.379 19.5213C303.361 19.503 303.343 19.4811 303.324 19.4665C303.306 19.4482 303.287 19.4299 303.269 19.4116C303.251 19.3934 303.232 19.3751 303.21 19.3568C303.192 19.3385 303.173 19.3202 303.155 19.302C303.137 19.2837 303.118 19.2654 303.096 19.2471C303.092 19.2435 303.089 19.2398 303.085 19.2362C303.251 19.3934 303.357 19.609 303.357 19.8394V24.7526C303.357 25.2498 302.949 25.6081 302.497 25.6081H292.158V29.9365H293.442V26.8839L293.434 26.8474Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M339.826 8.18795C339.808 8.16968 339.789 8.14775 339.767 8.12947C339.749 8.11119 339.73 8.09291 339.712 8.07463C339.694 8.05635 339.675 8.03442 339.653 8.01979C339.635 8.00152 339.616 7.98324 339.598 7.96496C339.58 7.94668 339.561 7.9284 339.543 7.91012C339.524 7.89184 339.506 7.87356 339.484 7.85529C339.466 7.83701 339.447 7.81873 339.429 7.80045C339.41 7.78217 339.392 7.76389 339.374 7.74561C339.355 7.72733 339.337 7.70906 339.315 7.69078C339.296 7.6725 339.278 7.65422 339.26 7.63594C339.241 7.61766 339.223 7.59939 339.204 7.58111C339.186 7.56283 339.168 7.54089 339.146 7.52627C339.127 7.50799 339.109 7.48971 339.09 7.47144C339.072 7.45316 339.054 7.43123 339.032 7.4166C339.013 7.39832 338.995 7.37639 338.976 7.36176C338.958 7.34348 338.94 7.32155 338.921 7.30693C338.903 7.28865 338.884 7.27037 338.862 7.25209C338.844 7.23381 338.826 7.21188 338.807 7.1936C338.789 7.17532 338.77 7.15704 338.752 7.13876C338.734 7.12048 338.715 7.09855 338.693 7.08393C338.675 7.06565 338.656 7.04737 338.638 7.02909C338.634 7.02544 338.631 7.02178 338.627 7.01812C338.793 7.17532 338.899 7.39101 338.899 7.62132V37.9491C338.899 38.3988 338.491 38.7607 338.039 38.7607H337.314C337.178 38.7607 336.818 38.6255 336.726 38.5377L337.969 39.7733C338.061 39.8647 338.421 40 338.557 40H339.282C339.734 40 340.142 39.6381 340.142 39.1884V8.86061C340.142 8.62299 340.025 8.39634 339.852 8.23914C339.833 8.22086 339.815 8.20258 339.797 8.1843L339.826 8.18795Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M318.763 37.4263C318.763 37.876 318.399 38.2818 317.903 38.2818H312.507C312.276 38.2818 312.059 38.1758 311.9 38.0112C311.904 38.0149 311.908 38.0186 311.911 38.0222C311.93 38.0405 311.948 38.0624 311.97 38.077C311.989 38.0953 312.007 38.1173 312.025 38.1319C312.044 38.1502 312.062 38.1684 312.081 38.1867C312.099 38.205 312.117 38.2233 312.139 38.2416C312.158 38.2598 312.176 38.2781 312.195 38.2964C312.213 38.3147 312.231 38.3329 312.25 38.3512C312.268 38.3695 312.287 38.3878 312.309 38.4061C312.327 38.4243 312.345 38.4426 312.364 38.4609C312.382 38.4792 312.401 38.4975 312.419 38.5157C312.437 38.534 312.456 38.5559 312.478 38.5706C312.496 38.5888 312.515 38.6071 312.533 38.6254C312.551 38.6437 312.57 38.6656 312.588 38.6802C312.607 38.6985 312.625 38.7204 312.647 38.7351C312.665 38.7533 312.684 38.7753 312.702 38.7899C312.721 38.8082 312.739 38.8265 312.761 38.8447C312.779 38.863 312.798 38.885 312.816 38.8996C312.835 38.9179 312.853 38.9361 312.871 38.9544C312.89 38.9727 312.908 38.991 312.93 39.0092C312.949 39.0275 312.967 39.0458 312.985 39.0641C313.004 39.0824 313.022 39.1006 313.044 39.1189C313.063 39.1372 313.081 39.1555 313.099 39.1738C313.118 39.192 313.136 39.2103 313.155 39.2286C313.316 39.4041 313.541 39.5174 313.78 39.5174H319.175C319.675 39.5174 320.036 39.1116 320.036 38.662V22.0358L318.752 20.7563V37.3898L318.763 37.4263Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M353.762 13.3615V29.8561L355.042 29.8552V14.6328H359.393C360.992 14.6328 362.449 15.0276 363.703 15.7222C363.49 15.3968 363.258 15.0906 363.004 14.8018C361.629 13.8916 359.962 13.3615 358.113 13.3615H353.762Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M371.059 12.6084C371.04 12.5901 371.022 12.5718 371.004 12.5535C370.985 12.5352 370.967 12.517 370.945 12.4987C370.926 12.4804 370.908 12.4621 370.886 12.4402C370.868 12.4219 370.849 12.4036 370.831 12.3854C370.812 12.3671 370.794 12.3488 370.772 12.3269C370.754 12.3086 370.735 12.2903 370.717 12.272C370.698 12.2538 370.68 12.2355 370.662 12.2172C370.643 12.1989 370.625 12.1806 370.603 12.1624C370.584 12.1441 370.566 12.1258 370.548 12.1075C370.529 12.0892 370.511 12.071 370.489 12.0527C370.47 12.0344 370.452 12.0161 370.43 11.9942C370.412 11.9759 370.393 11.9576 370.375 11.9394C370.356 11.9211 370.338 11.9028 370.32 11.8845C370.301 11.8662 370.283 11.848 370.261 11.826C370.242 11.8078 370.224 11.7895 370.206 11.7712C370.187 11.7529 370.169 11.7346 370.147 11.7164C370.128 11.6981 370.11 11.6798 370.092 11.6615C370.073 11.6432 370.055 11.625 370.036 11.6067C370.018 11.5884 370 11.5701 369.978 11.5519C369.959 11.5336 369.941 11.5153 369.919 11.4934C369.9 11.4751 369.882 11.4568 369.864 11.4385C369.852 11.4276 369.841 11.4166 369.83 11.4056C369.83 11.4056 369.83 11.4056 369.834 11.4093C372.695 14.2571 374.476 18.1724 374.476 22.4788C374.476 31.2196 367.311 38.2934 358.565 38.2934H347.502C347.274 38.2934 347.072 38.1874 346.925 38.0302C346.932 38.0339 346.936 38.0412 346.943 38.0448C346.962 38.0668 346.98 38.0814 346.998 38.0997C347.017 38.1216 347.035 38.1362 347.054 38.1545C347.072 38.1728 347.09 38.1911 347.112 38.2093C347.131 38.2313 347.149 38.2459 347.168 38.2642C347.186 38.2825 347.204 38.3007 347.223 38.319C347.241 38.341 347.259 38.3556 347.282 38.3738C347.3 38.3958 347.318 38.4104 347.337 38.4287C347.355 38.447 347.374 38.4652 347.396 38.4835C347.414 38.5054 347.432 38.5201 347.451 38.5384C347.469 38.5603 347.488 38.5749 347.506 38.5932C347.524 38.6115 347.543 38.6298 347.561 38.648C347.579 38.67 347.598 38.6846 347.62 38.7029C347.638 38.7248 347.657 38.7394 347.675 38.7577C347.693 38.7796 347.712 38.7943 347.734 38.8125C347.752 38.8345 347.771 38.8491 347.789 38.8674C347.807 38.8857 347.826 38.9039 347.844 38.9222C347.863 38.9441 347.881 38.9588 347.903 38.977C347.921 38.999 347.94 39.0136 347.958 39.0319C347.977 39.0502 347.995 39.0684 348.013 39.0867C348.032 39.1087 348.05 39.1233 348.072 39.1415C348.091 39.1635 348.109 39.1781 348.127 39.1964C348.146 39.2147 348.164 39.2329 348.183 39.2512C348.33 39.4194 348.539 39.5291 348.775 39.5291H359.838C368.587 39.5291 375.752 32.4552 375.752 23.7144C375.752 19.3751 373.95 15.4342 371.051 12.5828L371.059 12.6084Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M385.91 15.9049C385.91 14.6875 387.135 13.6054 388.768 13.6054C391.533 13.6054 394.843 16.084 395.252 16.3106C395.66 16.625 396.476 16.2192 396.793 15.7257L399.106 12.2564C399.272 11.9713 399.356 11.2877 398.97 10.9221C398.952 10.9038 398.933 10.8856 398.915 10.8673C398.896 10.8453 398.878 10.8307 398.856 10.8124C398.838 10.7905 398.819 10.7759 398.801 10.7576C398.782 10.7393 398.764 10.721 398.746 10.7028C398.727 10.6808 398.709 10.6662 398.687 10.6443C398.668 10.626 398.65 10.6077 398.632 10.5894C398.613 10.5712 398.595 10.5529 398.577 10.5346C398.558 10.5127 398.54 10.498 398.518 10.4798C398.499 10.4578 398.481 10.4432 398.462 10.4249C398.444 10.403 398.426 10.3884 398.404 10.3701C398.385 10.3518 398.367 10.3335 398.348 10.3153C398.33 10.2933 398.312 10.2787 398.293 10.2604C398.275 10.2385 398.257 10.2239 398.234 10.2056C398.216 10.1837 398.198 10.169 398.179 10.1508C398.161 10.1325 398.143 10.1142 398.124 10.0959C398.106 10.074 398.087 10.0594 398.065 10.0411C398.047 10.0191 398.029 10.0045 398.01 9.98625C397.992 9.96797 397.973 9.94969 397.955 9.93141C397.937 9.90947 397.918 9.89485 397.896 9.87658C397.878 9.85464 397.859 9.84001 397.841 9.82174C397.823 9.7998 397.804 9.78518 397.782 9.7669C397.764 9.74497 397.745 9.73035 397.727 9.71207C397.727 9.71207 397.72 9.70476 397.716 9.7011C398.073 10.0703 397.988 10.732 397.83 11.0135L395.517 14.4828C395.2 14.98 394.384 15.3821 393.976 15.0677C393.567 14.841 390.257 12.3625 387.491 12.3625C385.859 12.3625 384.634 13.4446 384.634 14.6619C384.634 15.0129 384.7 15.3455 384.829 15.6672C385.152 15.8939 385.524 16.1169 385.947 16.3435C385.928 16.2083 385.914 16.073 385.914 15.9341L385.91 15.9049Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M386.171 25.0852C384.101 24.27 381.751 23.038 380 21.2503C380.007 21.2576 380.015 21.265 380.022 21.2723C380.04 21.2905 380.059 21.3088 380.077 21.3271C380.096 21.3454 380.114 21.3637 380.136 21.3856C380.154 21.4039 380.173 21.4221 380.191 21.4404C380.21 21.4587 380.228 21.477 380.246 21.4953C380.265 21.5135 380.283 21.5318 380.302 21.5501C380.32 21.5684 380.338 21.5867 380.36 21.6086C380.379 21.6269 380.397 21.6451 380.416 21.6634C380.434 21.6817 380.452 21.7 380.471 21.7183C380.489 21.7365 380.508 21.7548 380.53 21.7731C380.548 21.7914 380.566 21.8097 380.588 21.8279C380.607 21.8462 380.625 21.8645 380.647 21.8864C380.666 21.9047 380.684 21.923 380.702 21.9413C380.721 21.9595 380.739 21.9778 380.761 21.9961C380.78 22.0144 380.798 22.0327 380.816 22.0509C380.835 22.0692 380.853 22.0875 380.875 22.1094C380.894 22.1277 380.912 22.146 380.934 22.1643C380.953 22.1825 380.971 22.2008 380.989 22.2191C381.008 22.2374 381.026 22.2557 381.044 22.2739C381.063 22.2922 381.081 22.3105 381.103 22.3324C381.122 22.3507 381.14 22.369 381.159 22.3873C381.177 22.4055 381.195 22.4238 381.214 22.4421C381.232 22.4604 381.25 22.4787 381.269 22.4969C383.02 24.2882 385.377 25.5275 387.451 26.3391C387.977 26.5475 388.455 26.7595 388.893 26.9825C388.794 26.712 388.658 26.4524 388.477 26.1965C387.834 25.798 387.072 25.4179 386.171 25.0632V25.0852Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M395.759 22.6245C395.759 22.6245 395.741 22.6062 395.734 22.5989C395.734 22.5989 395.726 22.5916 395.723 22.5879C395.741 22.6062 395.759 22.6245 395.781 22.6428C395.8 22.661 395.818 22.6793 395.837 22.6976C395.855 22.7159 395.873 22.7341 395.895 22.7561C395.914 22.7744 395.932 22.7926 395.951 22.8109C395.969 22.8292 395.987 22.8475 396.006 22.8657C396.024 22.884 396.043 22.9023 396.065 22.9206C396.083 22.9388 396.101 22.9571 396.12 22.9754C396.134 22.99 396.149 23.0046 396.164 23.0192C396.032 22.8803 395.895 22.7451 395.756 22.6135L395.759 22.6245Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M397.039 23.8969L397.032 23.8896C397.013 23.8713 396.995 23.853 396.973 23.8348C396.955 23.8165 396.936 23.7982 396.918 23.7799C396.899 23.7616 396.881 23.7434 396.863 23.7251C396.844 23.7068 396.826 23.6885 396.804 23.6666C396.785 23.6483 396.767 23.63 396.749 23.6118C396.73 23.5935 396.712 23.5752 396.69 23.5569C396.671 23.5387 396.653 23.5204 396.631 23.4984C396.613 23.4802 396.594 23.4619 396.576 23.4436C396.557 23.4253 396.539 23.4071 396.517 23.3888C396.499 23.3705 396.48 23.3522 396.462 23.3339C396.443 23.3157 396.425 23.2974 396.407 23.2791C396.388 23.2608 396.37 23.2425 396.348 23.2206C396.329 23.2023 396.311 23.1841 396.293 23.1658C396.274 23.1475 396.256 23.1292 396.237 23.1109C396.219 23.0927 396.201 23.0744 396.179 23.0561C396.179 23.0524 396.171 23.0488 396.168 23.0451C397.661 24.5988 398.727 26.6241 398.727 29.2928C398.727 33.9355 394.693 38.6221 388.028 38.6221C382.155 38.6221 378.896 36.2057 377.841 35.1638C377.848 35.1711 377.852 35.1748 377.859 35.1821C377.867 35.1894 377.874 35.1931 377.878 35.2004C377.892 35.215 377.9 35.226 377.914 35.237C377.918 35.2443 377.929 35.2479 377.933 35.2552C377.947 35.2698 377.955 35.2808 377.97 35.2918C377.977 35.2991 377.984 35.3027 377.988 35.3101C377.999 35.3247 378.01 35.3357 378.025 35.3466C378.032 35.3539 378.039 35.3576 378.043 35.3649C378.058 35.3795 378.065 35.3905 378.08 35.4015C378.087 35.4088 378.095 35.4161 378.098 35.4197C378.109 35.4344 378.12 35.4453 378.135 35.4563C378.142 35.4636 378.15 35.4709 378.153 35.4746C378.168 35.4892 378.175 35.5002 378.19 35.5111C378.198 35.5184 378.205 35.5221 378.209 35.5294C378.223 35.544 378.231 35.555 378.245 35.566C378.253 35.5733 378.26 35.5806 378.264 35.5842C378.278 35.5989 378.286 35.6098 378.301 35.6208C378.308 35.6281 378.315 35.6318 378.319 35.6391C378.334 35.6537 378.341 35.6647 378.356 35.6756C378.359 35.6829 378.37 35.6866 378.374 35.6939C378.389 35.7085 378.396 35.7195 378.411 35.7305C378.418 35.7378 378.426 35.7451 378.429 35.7487C378.444 35.7634 378.451 35.7743 378.466 35.7853C378.473 35.7926 378.481 35.7999 378.484 35.8036C378.499 35.8182 378.506 35.8292 378.521 35.8401C378.525 35.8475 378.536 35.8511 378.54 35.8584C378.551 35.873 378.562 35.884 378.576 35.895C378.584 35.9023 378.591 35.9059 378.595 35.9133C378.609 35.9279 378.617 35.9388 378.632 35.9498C378.639 35.9571 378.646 35.9608 378.65 35.9681C378.665 35.9827 378.672 35.9937 378.687 36.0046C378.69 36.012 378.701 36.0193 378.705 36.0229C378.716 36.0376 378.727 36.0485 378.742 36.0595C378.749 36.0668 378.757 36.0741 378.76 36.0778C378.771 36.0924 378.782 36.1034 378.797 36.1143C378.801 36.1216 378.812 36.1253 378.815 36.1326C378.83 36.1472 378.838 36.1582 378.852 36.1692C378.856 36.1765 378.867 36.1801 378.871 36.1874C378.885 36.2021 378.893 36.213 378.907 36.224C378.915 36.2313 378.922 36.2386 378.926 36.2423C378.94 36.2569 378.948 36.2679 378.963 36.2788C378.97 36.2861 378.977 36.2898 378.981 36.2971C378.992 36.3117 379.003 36.3227 379.018 36.3337C379.025 36.341 379.032 36.3483 379.036 36.3519C379.051 36.3666 379.058 36.3775 379.073 36.3885C380.114 37.4231 383.38 39.8578 389.272 39.8578C395.936 39.8578 399.97 35.1711 399.97 30.5284C399.97 27.6221 398.705 25.4798 396.999 23.875L397.039 23.8969Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M382.861 13.0244C382.861 11.6755 384.211 10.5787 385.866 10.5787C388.301 10.5787 391.173 12.4797 392.115 13.1048C392.262 13.2036 392.368 13.273 392.42 13.3023C392.559 13.4083 392.721 13.4046 392.839 13.3827C393.177 13.3242 393.575 13.061 393.762 12.7685L396.076 9.29559C396.215 9.05431 396.315 8.33048 395.855 8.06361C394.126 6.80239 390.592 4.70401 386.23 4.70401C379.139 4.70401 375.906 9.27366 375.906 13.5216C375.906 18.8114 380.636 21.7835 384.608 23.3409C387.859 24.624 389.371 26.1155 389.371 28.0311C389.371 29.6835 387.992 30.8826 386.094 30.8826C384.858 30.8826 382.751 30.4658 379.739 28.4844C379.661 28.4333 379.61 28.4004 379.588 28.3894C379.459 28.298 379.238 28.2322 379.003 28.2322C378.926 28.2322 378.849 28.2395 378.775 28.2541C378.609 28.287 378.385 28.3748 378.242 28.6051L376.112 32.3412C375.8 32.8823 375.88 32.9919 376.314 33.4233C376.888 33.9973 380.081 36.8487 386.406 36.8487C392.732 36.8487 396.955 32.1804 396.955 27.6692C396.955 21.7945 391.783 19.071 387.892 17.5356C384.314 16.0952 382.857 14.7901 382.857 13.0244H382.861Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M219.536 11.606H232.243C232.636 11.606 232.952 11.2879 232.952 10.9004V5.98712C232.952 5.59596 232.632 5.28157 232.243 5.28157H213.474C213.081 5.28157 212.765 5.59962 212.765 5.98712V35.8178C212.765 36.2089 213.085 36.5233 213.474 36.5233H218.826C219.197 36.5233 219.536 36.187 219.536 35.8178V24.719H230.021C230.393 24.719 230.731 24.3827 230.731 24.0135V19.1038C230.731 18.7346 230.393 18.3983 230.021 18.3983H219.536V11.606Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M261.161 36.5241C261.452 36.5241 261.68 36.4071 261.805 36.1987C261.937 35.9794 261.933 35.6906 261.797 35.4383L255.508 23.846L255.663 23.7839C259.745 22.1534 262.279 18.7353 262.279 14.8639C262.279 9.57778 257.914 5.27865 252.548 5.27865H238.991C238.598 5.27865 238.281 5.5967 238.281 5.9842V35.8149C238.281 36.206 238.601 36.5204 238.991 36.5204H244.386C244.758 36.5204 245.096 36.1841 245.096 35.8149V24.1751H248.465L254.537 36.1987C254.6 36.323 254.817 36.5241 255.129 36.5241H261.161ZM251.963 18.7536H245.104V11.4239H251.963C253.912 11.4239 255.56 13.0617 255.56 14.9992C255.56 16.9367 253.879 18.7536 251.963 18.7536Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M274.809 5.28157H269.366C268.974 5.28157 268.656 5.59746 268.656 5.98712V35.8214C268.656 36.2111 268.974 36.527 269.366 36.527H274.809C275.201 36.527 275.519 36.2111 275.519 35.8214V5.98712C275.519 5.59746 275.201 5.28157 274.809 5.28157Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M290.389 11.606H303.096C303.49 11.606 303.806 11.2879 303.806 10.9004V5.98712C303.806 5.59596 303.486 5.28157 303.096 5.28157H284.328C283.934 5.28157 283.618 5.59962 283.618 5.98712V35.8178C283.618 36.2089 283.938 36.5233 284.328 36.5233H303.096C303.49 36.5233 303.806 36.2053 303.806 35.8178V30.9045C303.806 30.5133 303.486 30.1989 303.096 30.1989H290.389V23.8161H300.875C301.268 23.8161 301.584 23.498 301.584 23.1105V18.2009C301.584 17.8316 301.246 17.4953 300.875 17.4953H290.389V11.606Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M335.688 36.9771H336.413C336.799 36.9771 337.123 36.6737 337.123 36.3154V5.99123C337.123 5.622 336.784 5.28568 336.413 5.28568H330.973C330.58 5.28568 330.264 5.60372 330.264 5.99123V22.1385H330.006L311.919 4.83602H310.845C310.458 4.83602 310.135 5.13945 310.135 5.49771L310.179 35.8219C310.179 36.1911 310.517 36.5274 310.889 36.5274H316.284C316.678 36.5274 316.994 36.2094 316.994 35.8219V18.8667H317.251L317.296 18.9105L335.203 36.798C335.258 36.8528 335.578 36.9807 335.685 36.9807L335.688 36.9771Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M356.95 5.28231H345.887C345.527 5.28231 345.222 5.60767 345.222 5.98786V35.8185C345.222 36.2024 345.527 36.5241 345.887 36.5241H356.95C365.641 36.5241 372.714 29.4941 372.714 20.8557C372.714 12.2172 365.641 5.27865 356.95 5.27865V5.28231ZM356.498 30.1558H351.996V11.6067H356.498C361.621 11.6067 365.487 15.5841 365.487 20.8593C365.487 26.1345 361.621 30.1558 356.498 30.1558Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M27.1599 29.9147C27.1599 27.1254 25.9977 25.0379 24.4052 23.4514C24.3868 23.4331 24.3721 23.4185 24.3537 23.4002C24.3353 23.3819 24.3169 23.3636 24.2986 23.3453C24.2802 23.3271 24.2618 23.3088 24.2434 23.2905C24.225 23.2722 24.2066 23.254 24.1882 23.2357C24.1698 23.2174 24.1514 23.1991 24.1331 23.1808C24.1147 23.1626 24.0963 23.1443 24.0779 23.126C24.0595 23.1077 24.0411 23.0894 24.0227 23.0712C24.0043 23.0529 23.9859 23.0346 23.9676 23.0163C23.9492 22.9981 23.9308 22.9798 23.9124 22.9615C23.894 22.9432 23.8756 22.9249 23.8572 22.9067C23.8388 22.8884 23.8204 22.8701 23.802 22.8518C23.7837 22.8335 23.7653 22.8153 23.7469 22.797C23.7285 22.7787 23.7101 22.7604 23.6917 22.7421C23.6733 22.7239 23.6549 22.7056 23.6365 22.6873C23.6182 22.669 23.5998 22.6508 23.5814 22.6325C23.563 22.6142 23.5446 22.5959 23.5262 22.5776C23.5078 22.5594 23.4894 22.5411 23.471 22.5228C23.4527 22.5045 23.4343 22.4863 23.4159 22.468C23.3975 22.4497 23.3791 22.4314 23.3607 22.4131C23.3423 22.3949 23.3239 22.3766 23.3055 22.3583C23.2871 22.34 23.2688 22.3217 23.2504 22.3035C23.232 22.2852 23.2136 22.2669 23.1952 22.2486C23.1768 22.2304 23.1584 22.2121 23.14 22.1938C23.1216 22.1755 23.1033 22.1572 23.0849 22.139C23.0702 22.1207 23.0518 22.1061 23.0334 22.0878C24.6112 23.6707 25.755 25.7472 25.755 28.5145C25.755 33.1865 21.6946 37.9024 14.9863 37.9024C9.07228 37.9024 5.79164 35.4677 4.73242 34.4222C4.7361 34.4295 4.74345 34.4331 4.75081 34.4404C4.75817 34.4441 4.76552 34.4514 4.7692 34.4587C4.78023 34.4697 4.79127 34.4807 4.80598 34.4953C4.81333 34.5026 4.82069 34.5062 4.82437 34.5136C4.8354 34.5245 4.84643 34.5391 4.86115 34.5501C4.8685 34.5574 4.87586 34.5611 4.87953 34.5684C4.89057 34.5794 4.9016 34.5903 4.91631 34.6049C4.92367 34.6123 4.93102 34.6159 4.9347 34.6232C4.94574 34.6342 4.95677 34.6488 4.97148 34.6598C4.97516 34.6634 4.98619 34.6708 4.98987 34.6781C5.00458 34.6927 5.01194 34.7037 5.02665 34.7146C5.034 34.7219 5.04136 34.7292 5.04504 34.7329C5.05607 34.7439 5.0671 34.7548 5.08182 34.7695C5.08549 34.7731 5.09653 34.7804 5.10021 34.7877C5.11124 34.8024 5.12227 34.8133 5.13698 34.8243C5.14434 34.8316 5.15169 34.8389 5.15537 34.8426C5.16641 34.8535 5.17744 34.8645 5.19215 34.8791C5.19583 34.8864 5.20686 34.8901 5.21054 34.8974C5.22157 34.912 5.23261 34.923 5.24732 34.934C5.25467 34.9413 5.26203 34.9486 5.26571 34.9522C5.27674 34.9632 5.28777 34.9742 5.30249 34.9888C5.30616 34.9961 5.3172 34.9998 5.32088 35.0071C5.33559 35.0217 5.34294 35.0327 5.35765 35.0436C5.36501 35.051 5.37237 35.0546 5.37604 35.0619C5.38708 35.0729 5.39811 35.0838 5.41282 35.0985C5.42018 35.1021 5.42753 35.1094 5.43121 35.1168C5.44224 35.1277 5.45328 35.1387 5.46799 35.1533C5.47535 35.157 5.4827 35.1643 5.48638 35.1716C5.49741 35.1826 5.50844 35.1935 5.52316 35.2081C5.53051 35.2155 5.53787 35.2191 5.54155 35.2264C5.55258 35.2374 5.56361 35.2484 5.57832 35.263C5.58568 35.2703 5.59304 35.2739 5.59671 35.2813C5.60775 35.2922 5.61878 35.3032 5.63349 35.3178C5.64085 35.3251 5.64821 35.3288 5.65188 35.3361C5.66292 35.3471 5.67395 35.358 5.68866 35.3727C5.69602 35.38 5.70337 35.3836 5.70705 35.3909C5.71808 35.4019 5.72912 35.4129 5.74383 35.4275C5.75118 35.4348 5.75854 35.4385 5.76222 35.4458C5.77325 35.4567 5.78428 35.4714 5.79899 35.4823C5.80267 35.486 5.81371 35.4933 5.81739 35.5006C5.8321 35.5116 5.83945 35.5262 5.85416 35.5372C5.86152 35.5445 5.86888 35.5481 5.87255 35.5554C5.88359 35.5664 5.89462 35.5774 5.90933 35.592C5.91301 35.5993 5.92404 35.603 5.92772 35.6103C5.93876 35.6249 5.94979 35.6359 5.9645 35.6468C5.97186 35.6541 5.97921 35.6615 5.98289 35.6651C5.99392 35.6761 6.00496 35.687 6.01967 35.7017C6.02335 35.709 6.03438 35.7126 6.03806 35.7199C6.04909 35.7346 6.06012 35.7455 6.07483 35.7565C6.08219 35.7638 6.08955 35.7711 6.09322 35.7748C6.10426 35.7858 6.11529 35.7967 6.13 35.8113C7.17819 36.8532 10.4625 39.3025 16.3949 39.3025C23.0996 39.3025 27.1636 34.5867 27.1636 29.9147H27.1599Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M12.9711 15.179C12.9711 13.9544 14.2032 12.865 15.8435 12.865C18.6276 12.865 21.9561 15.3582 22.368 15.5848C22.7799 15.9029 23.6001 15.4934 23.9201 14.9963L26.2481 11.505C26.4136 11.2199 26.4982 10.529 26.112 10.1634C26.0937 10.1451 26.0753 10.1268 26.0569 10.1086C26.0385 10.0903 26.0201 10.072 26.0017 10.0537C25.9833 10.0354 25.9649 10.0172 25.9465 9.99889C25.9282 9.98061 25.9098 9.96234 25.8914 9.94406C25.873 9.92578 25.8546 9.9075 25.8362 9.88922C25.8178 9.87094 25.7994 9.85266 25.781 9.83439C25.7627 9.81611 25.7443 9.79783 25.7259 9.77955C25.7075 9.76127 25.6891 9.74299 25.6707 9.72471C25.6523 9.70644 25.6339 9.68816 25.6155 9.66988C25.5972 9.6516 25.5788 9.63332 25.5604 9.61504C25.542 9.59677 25.5236 9.57849 25.5052 9.56021C25.4868 9.54193 25.4684 9.52365 25.45 9.50537C25.4317 9.48709 25.4133 9.46881 25.3949 9.45053C25.3765 9.43226 25.3581 9.41398 25.3397 9.3957C25.3213 9.37742 25.3029 9.35914 25.2845 9.34086C25.2661 9.32259 25.2478 9.30431 25.2294 9.28603C25.211 9.26775 25.1926 9.24947 25.1742 9.23119C25.1558 9.21291 25.1374 9.19463 25.119 9.17636C25.1006 9.15808 25.0823 9.1398 25.0639 9.12152C25.0455 9.10324 25.0271 9.08496 25.0087 9.06669C24.9903 9.04841 24.9719 9.03013 24.9535 9.01185C24.9351 8.99357 24.9168 8.97529 24.8984 8.95701C24.88 8.93874 24.8616 8.92046 24.8432 8.90218C24.8248 8.8839 24.8064 8.86562 24.788 8.84734C24.7733 8.82907 24.7549 8.81079 24.7365 8.79616C25.0859 9.16905 25.0013 9.82707 24.8395 10.1049L22.5114 13.5961C22.1915 14.0933 21.3713 14.5027 20.9594 14.1847C20.5475 13.958 17.219 11.4648 14.4349 11.4648C12.7946 11.4648 11.5625 12.5542 11.5625 13.7789C11.5625 14.1664 11.6397 14.532 11.7979 14.8793C12.1399 15.1352 12.5445 15.3874 13.0152 15.6433C12.9895 15.4898 12.9711 15.3362 12.9711 15.179Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M13.1142 24.2999C11.1465 23.5249 8.9251 22.377 7.2002 20.7356C7.21858 20.7539 7.23697 20.7722 7.25536 20.7904C7.27375 20.8087 7.29214 20.827 7.31053 20.8453C7.32892 20.8636 7.34731 20.8818 7.3657 20.9001C7.38409 20.9184 7.40248 20.9367 7.42087 20.955C7.43925 20.9732 7.45764 20.9915 7.47603 21.0098C7.49442 21.0281 7.51281 21.0463 7.5312 21.0646C7.54959 21.0829 7.56798 21.1012 7.58637 21.1195C7.60476 21.1377 7.62315 21.156 7.64154 21.1743C7.65992 21.1926 7.67831 21.2109 7.6967 21.2291C7.71509 21.2474 7.73348 21.2657 7.75187 21.284C7.77026 21.3023 7.78865 21.3205 7.80704 21.3388C7.82543 21.3571 7.84382 21.3754 7.86221 21.3936C7.88059 21.4119 7.89898 21.4302 7.91737 21.4485C7.93576 21.4668 7.95415 21.485 7.97254 21.5033C7.99093 21.5216 8.00932 21.5399 8.02771 21.5581C8.0461 21.5764 8.06449 21.5947 8.08288 21.613C8.10126 21.6313 8.11966 21.6495 8.13804 21.6678C8.15643 21.6861 8.17482 21.7044 8.19321 21.7227C8.2116 21.7409 8.22999 21.7592 8.24838 21.7775C8.26677 21.7958 8.28516 21.8141 8.30355 21.8323C8.32194 21.8506 8.34032 21.8689 8.35871 21.8872C8.3771 21.9054 8.39549 21.9237 8.41388 21.942C8.43227 21.9603 8.45066 21.9786 8.46905 21.9968C8.48744 22.0151 8.50583 22.0334 8.52422 22.0517C8.54261 22.0699 8.561 22.0882 8.57939 22.1065C10.308 23.7625 12.5404 24.9214 14.5191 25.7001C15.0855 25.9231 15.5894 26.157 16.0491 26.3983C15.9314 26.0876 15.7585 25.7878 15.5268 25.499C14.8611 25.0749 14.0594 24.6765 13.1068 24.2999H13.1142Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M118.668 39.0722C118.76 39.1636 119.124 39.2989 119.261 39.2989H119.989C120.445 39.2989 120.857 38.9369 120.857 38.4836V7.96205C120.857 7.72077 120.739 7.49778 120.562 7.33692C120.544 7.31865 120.526 7.30037 120.507 7.28209C120.489 7.26381 120.471 7.24553 120.452 7.22725C120.434 7.20898 120.415 7.1907 120.397 7.17242C120.379 7.15414 120.36 7.13586 120.342 7.11758C120.323 7.0993 120.305 7.08102 120.287 7.06275C120.268 7.04447 120.25 7.02619 120.231 7.00791C120.213 6.98963 120.195 6.97135 120.176 6.95308C120.158 6.9348 120.14 6.91652 120.121 6.89824C120.103 6.87996 120.084 6.86168 120.066 6.8434C120.048 6.82512 120.029 6.80685 120.011 6.78857C119.992 6.77029 119.974 6.75201 119.956 6.73373C119.937 6.71545 119.919 6.69718 119.9 6.6789C119.882 6.66062 119.864 6.64234 119.845 6.62406C119.827 6.60578 119.809 6.5875 119.79 6.56922C119.772 6.55095 119.753 6.53267 119.735 6.51439C119.717 6.49611 119.698 6.47783 119.68 6.45955C119.661 6.44127 119.643 6.423 119.625 6.40472C119.606 6.38644 119.588 6.36816 119.569 6.34988C119.551 6.3316 119.533 6.31332 119.514 6.29505C119.496 6.27677 119.478 6.25849 119.459 6.24021C119.441 6.22193 119.422 6.20365 119.404 6.18537C119.386 6.16709 119.367 6.14882 119.349 6.13054C119.33 6.11226 119.312 6.09398 119.294 6.0757C119.275 6.05742 119.257 6.03915 119.238 6.02087C119.227 6.0099 119.216 5.99893 119.205 5.98797C119.352 6.14516 119.448 6.34623 119.448 6.56191V37.0835C119.448 37.5368 119.036 37.8987 118.58 37.8987H117.852C117.716 37.8987 117.352 37.7635 117.26 37.6721L118.668 39.0722Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M99.1942 36.5906C99.1942 37.0439 98.8301 37.4534 98.3262 37.4534H92.8977C92.6807 37.4534 92.4785 37.3583 92.3203 37.2121C92.3313 37.2231 92.3424 37.234 92.3534 37.245C92.3718 37.2633 92.3902 37.2816 92.4086 37.2998C92.427 37.3181 92.4454 37.3364 92.4638 37.3547C92.4821 37.3729 92.5005 37.3912 92.5189 37.4095C92.5373 37.4278 92.5557 37.4461 92.5741 37.4643C92.5925 37.4826 92.6109 37.5009 92.6292 37.5192C92.6476 37.5374 92.666 37.5557 92.6844 37.574C92.7028 37.5923 92.7212 37.6106 92.7396 37.6288C92.758 37.6471 92.7764 37.6654 92.7948 37.6837C92.8131 37.702 92.8315 37.7202 92.8499 37.7385C92.8683 37.7568 92.8867 37.7751 92.9051 37.7934C92.9235 37.8116 92.9419 37.8299 92.9603 37.8482C92.9786 37.8665 92.997 37.8847 93.0154 37.903C93.0338 37.9213 93.0522 37.9396 93.0706 37.9579C93.089 37.9761 93.1074 37.9944 93.1258 38.0127C93.1442 38.031 93.1625 38.0492 93.1809 38.0675C93.1993 38.0858 93.2177 38.1041 93.2361 38.1224C93.2545 38.1406 93.2729 38.1589 93.2913 38.1772C93.3097 38.1955 93.328 38.2138 93.3464 38.232C93.3648 38.2503 93.3832 38.2686 93.4016 38.2869C93.42 38.3052 93.4384 38.3234 93.4568 38.3417C93.4752 38.36 93.4935 38.3783 93.5119 38.3965C93.5303 38.4148 93.5487 38.4331 93.5671 38.4514C93.5855 38.4697 93.6039 38.4879 93.6223 38.5062C93.6407 38.5245 93.659 38.5428 93.6774 38.5611C93.8393 38.7365 94.0636 38.8535 94.3027 38.8535H99.7312C100.231 38.8535 100.599 38.4441 100.599 37.9908V21.2549L99.1905 19.8474V36.5906H99.1942Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M197.753 32.2801C198.073 32.5981 198.025 33.1867 197.709 33.5048C194.605 36.4988 190.684 37.9026 186.624 37.9026C182.133 37.9026 178.076 36.1515 175.108 33.2964C175.097 33.2891 175.086 33.2781 175.075 33.2708C175.094 33.2891 175.112 33.3073 175.127 33.322C175.145 33.3402 175.163 33.3585 175.182 33.3768C175.2 33.3951 175.219 33.4134 175.237 33.4316C175.255 33.4499 175.274 33.4682 175.292 33.4865C175.311 33.5048 175.329 33.523 175.347 33.5413C175.366 33.5596 175.384 33.5779 175.403 33.5961C175.421 33.6144 175.439 33.6327 175.458 33.651C175.476 33.6693 175.494 33.6875 175.513 33.7058C175.531 33.7241 175.55 33.7424 175.568 33.7607C175.586 33.7789 175.605 33.7972 175.623 33.8155C175.642 33.8338 175.66 33.852 175.678 33.8703C175.697 33.8886 175.715 33.9069 175.734 33.9252C175.752 33.9434 175.77 33.9617 175.789 33.98C175.807 33.9983 175.825 34.0166 175.844 34.0348C175.862 34.0531 175.881 34.0714 175.899 34.0897C175.917 34.1079 175.936 34.1262 175.954 34.1445C175.973 34.1628 175.991 34.1811 176.009 34.1993C176.028 34.2176 176.046 34.2359 176.065 34.2542C176.083 34.2725 176.101 34.2907 176.12 34.309C176.138 34.3273 176.156 34.3456 176.175 34.3638C176.193 34.3821 176.212 34.4004 176.23 34.4187C176.248 34.437 176.267 34.4552 176.285 34.4735C176.304 34.4918 176.322 34.5101 176.34 34.5284C179.319 37.4822 183.45 39.2991 188.029 39.2991C192.089 39.2991 196.013 37.8916 199.114 34.9012C199.434 34.5832 199.478 33.9946 199.158 33.6766L196.583 30.9531C196.613 31.0079 196.638 31.0627 196.657 31.1212L197.749 32.2764L197.753 32.2801Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M188.257 13.5003C190.493 13.5003 192.729 14.3155 194.417 15.8144C194.737 16.1324 195.237 16.1324 195.557 15.8144L199.118 12.1404C199.482 11.7785 199.482 11.2338 199.073 10.8718C199.062 10.8609 199.048 10.8536 199.037 10.8426C199.029 10.8353 199.026 10.8243 199.018 10.817C199.007 10.806 198.993 10.7987 198.982 10.7878C198.974 10.7804 198.97 10.7695 198.963 10.7622C198.952 10.7512 198.937 10.7439 198.926 10.7329C198.919 10.7256 198.915 10.7146 198.908 10.7073C198.897 10.6964 198.882 10.6891 198.871 10.6781C198.864 10.6708 198.86 10.6598 198.853 10.6525C198.842 10.6415 198.827 10.6342 198.816 10.6233C198.809 10.6159 198.805 10.605 198.798 10.5977C198.787 10.5867 198.772 10.5794 198.761 10.5684C198.753 10.5611 198.75 10.5501 198.742 10.5428C198.731 10.5319 198.717 10.5245 198.706 10.5136C198.698 10.5063 198.695 10.4953 198.687 10.488C198.676 10.477 198.662 10.4697 198.65 10.4587C198.643 10.4514 198.639 10.4405 198.632 10.4332C198.621 10.4222 198.606 10.4149 198.595 10.4039C198.588 10.3966 198.584 10.3856 198.577 10.3783C198.566 10.3673 198.551 10.36 198.54 10.3491C198.533 10.3418 198.529 10.3308 198.522 10.3235C198.511 10.3125 198.496 10.3052 198.485 10.2942C198.478 10.2869 198.474 10.276 198.467 10.2686C198.456 10.2577 198.441 10.2504 198.43 10.2394C198.422 10.2321 198.419 10.2211 198.411 10.2138C198.4 10.2028 198.386 10.1919 198.375 10.1846C198.367 10.1773 198.364 10.1663 198.356 10.159C198.345 10.148 198.331 10.1407 198.319 10.1297C198.312 10.1224 198.308 10.1114 198.301 10.1041C198.29 10.0932 198.275 10.0859 198.264 10.0749C198.257 10.0676 198.253 10.0566 198.246 10.0493C198.235 10.0383 198.22 10.031 198.209 10.0201C198.202 10.0127 198.198 10.0018 198.191 9.99447C198.18 9.9835 198.165 9.97619 198.154 9.96522C198.147 9.95791 198.143 9.94694 198.136 9.93963C198.125 9.92866 198.11 9.92135 198.099 9.91038C198.091 9.90307 198.088 9.89211 198.08 9.88479C198.069 9.87383 198.055 9.86652 198.044 9.85555C198.036 9.84824 198.033 9.83727 198.025 9.82996C198.014 9.81899 198 9.81168 197.988 9.80071C197.981 9.7934 197.977 9.78243 197.97 9.77512C197.959 9.76415 197.944 9.75684 197.933 9.74588C197.926 9.73857 197.922 9.7276 197.915 9.72029C197.904 9.70932 197.889 9.70201 197.878 9.69104C197.871 9.68373 197.867 9.67276 197.86 9.66545C197.849 9.65448 197.834 9.64717 197.823 9.63621C197.816 9.62889 197.812 9.61793 197.805 9.61062C197.794 9.59965 197.779 9.59234 197.768 9.58137C197.76 9.57406 197.757 9.56309 197.749 9.55578C197.738 9.54481 197.724 9.5375 197.713 9.52654C197.705 9.51922 197.702 9.50825 197.694 9.50094C197.687 9.49729 197.683 9.48998 197.676 9.48632C198.073 9.84824 198.073 10.3856 197.713 10.7439L194.152 14.4179C193.833 14.7359 193.332 14.7359 193.012 14.4179C191.324 12.9227 189.088 12.1038 186.852 12.1038C181.696 12.1038 177.911 16.3664 177.911 21.4442C177.911 23.4402 178.518 25.2973 179.566 26.8181C179.893 27.1178 180.243 27.3884 180.611 27.637C179.79 26.2368 179.32 24.5954 179.32 22.8443C179.32 17.7665 183.108 13.504 188.264 13.504L188.257 13.5003Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M37.0282 22.8407C37.0282 17.7629 40.8164 13.5003 45.9727 13.5003C48.2089 13.5003 50.445 14.3155 52.1331 15.8144C52.4531 16.1324 52.9533 16.1324 53.2733 15.8144L56.8334 12.1404C57.1975 11.7785 57.1975 11.2338 56.7893 10.8718C56.7782 10.8609 56.7635 10.8536 56.7525 10.8426C56.7451 10.8353 56.7415 10.8243 56.7341 10.817C56.7231 10.806 56.7084 10.7987 56.6973 10.7878C56.69 10.7804 56.6863 10.7695 56.6789 10.7622C56.6679 10.7512 56.6532 10.7439 56.6422 10.7329C56.6348 10.7256 56.6311 10.7146 56.6238 10.7073C56.6127 10.6964 56.598 10.6891 56.587 10.6781C56.5796 10.6708 56.576 10.6598 56.5686 10.6525C56.5576 10.6415 56.5429 10.6342 56.5318 10.6233C56.5245 10.6159 56.5208 10.605 56.5134 10.5977C56.5024 10.5867 56.4877 10.5794 56.4767 10.5684C56.4693 10.5611 56.4656 10.5501 56.4583 10.5428C56.4472 10.5319 56.4325 10.5245 56.4215 10.5136C56.4141 10.5063 56.4105 10.4953 56.4031 10.488C56.3921 10.477 56.3774 10.4697 56.3663 10.4587C56.359 10.4514 56.3553 10.4405 56.3479 10.4332C56.3369 10.4222 56.3222 10.4149 56.3111 10.4039C56.3038 10.3966 56.3001 10.3856 56.2928 10.3783C56.2817 10.3673 56.267 10.36 56.256 10.3491C56.2486 10.3418 56.2449 10.3308 56.2376 10.3235C56.2266 10.3125 56.2119 10.3052 56.2008 10.2942C56.1935 10.2869 56.1898 10.276 56.1824 10.2686C56.1714 10.2577 56.1567 10.2504 56.1456 10.2394C56.1383 10.2321 56.1346 10.2211 56.1273 10.2138C56.1162 10.2028 56.1015 10.1955 56.0905 10.1846C56.0831 10.1773 56.0794 10.1663 56.0721 10.159C56.0611 10.148 56.0463 10.1407 56.0353 10.1297C56.028 10.1224 56.0243 10.1114 56.0169 10.1041C56.0059 10.0932 55.9912 10.0859 55.9801 10.0749C55.9728 10.0676 55.9691 10.0566 55.9618 10.0493C55.9507 10.0383 55.936 10.031 55.925 10.0201C55.9176 10.0127 55.9139 10.0018 55.9066 9.99447C55.8956 9.9835 55.8808 9.97619 55.8698 9.96522C55.8625 9.95791 55.8588 9.94694 55.8514 9.93963C55.8404 9.92866 55.8257 9.92135 55.8146 9.91038C55.8073 9.90307 55.8036 9.89211 55.7963 9.88479C55.7852 9.87383 55.7705 9.86652 55.7595 9.85555C55.7521 9.84824 55.7484 9.83727 55.7411 9.82996C55.7301 9.81899 55.7153 9.81168 55.7043 9.80071C55.697 9.7934 55.6933 9.78243 55.6859 9.77512C55.6749 9.76415 55.6602 9.75684 55.6491 9.74588C55.6418 9.73857 55.6381 9.7276 55.6308 9.72029C55.6197 9.70932 55.605 9.70201 55.594 9.69104C55.5866 9.68373 55.5829 9.67276 55.5756 9.66545C55.5645 9.65448 55.5498 9.64717 55.5388 9.63621C55.5314 9.62889 55.5278 9.61793 55.5204 9.61062C55.5094 9.59965 55.4947 9.59234 55.4836 9.58137C55.4763 9.57406 55.4726 9.56309 55.4652 9.55578C55.4542 9.54481 55.4395 9.5375 55.4285 9.52654C55.4211 9.51922 55.4174 9.50825 55.4101 9.50094C55.4027 9.49729 55.399 9.48998 55.3917 9.48632C55.7889 9.84824 55.7889 10.3856 55.4285 10.7439L51.8683 14.4179C51.5483 14.7359 51.0482 14.7359 50.7282 14.4179C49.0401 12.9227 46.8039 12.1038 44.5678 12.1038C39.4115 12.1038 35.627 16.3664 35.627 21.4442C35.627 23.4402 36.2338 25.2973 37.282 26.8181C37.6093 27.1178 37.9587 27.392 38.3265 27.637C37.5063 26.2368 37.0356 24.5954 37.0356 22.8443L37.0282 22.8407Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M56.8292 34.9051C57.1492 34.5871 57.1933 33.9985 56.8733 33.6805L54.2988 30.9569C54.3282 31.0118 54.3541 31.0664 54.3725 31.1249L55.4648 32.2801C55.7848 32.5981 55.737 33.1867 55.4207 33.5047C52.3202 36.4988 48.396 37.9026 44.3356 37.9026C39.845 37.9026 35.7883 36.1515 32.8203 33.2964C32.8093 33.2891 32.7981 33.2783 32.7871 33.271C32.8055 33.2893 32.8202 33.3076 32.8386 33.3222C32.857 33.3405 32.8754 33.3587 32.8938 33.377C32.9122 33.3953 32.9305 33.4136 32.9489 33.4319C32.9673 33.4501 32.9857 33.4684 33.0041 33.4867C33.0225 33.505 33.0409 33.5233 33.0593 33.5415C33.0777 33.5598 33.096 33.5781 33.1144 33.5964C33.1328 33.6147 33.1512 33.6329 33.1696 33.6512C33.188 33.6695 33.2064 33.6878 33.2248 33.706C33.2432 33.7243 33.2616 33.7426 33.2799 33.7609C33.2983 33.7792 33.3167 33.7974 33.3351 33.8157C33.3535 33.834 33.3719 33.8523 33.3903 33.8706C33.4087 33.8888 33.4271 33.9071 33.4454 33.9254C33.4638 33.9437 33.4822 33.9619 33.5006 33.9802C33.519 33.9985 33.5374 34.0168 33.5558 34.0351C33.5742 34.0533 33.5926 34.0716 33.6109 34.0899C33.6293 34.1082 33.6477 34.1265 33.6661 34.1447C33.6845 34.163 33.7029 34.1813 33.7213 34.1996C33.7397 34.2178 33.7581 34.2361 33.7765 34.2544C33.7948 34.2727 33.8132 34.291 33.8316 34.3092C33.85 34.3275 33.8684 34.3458 33.8868 34.3641C33.9052 34.3824 33.9236 34.4006 33.942 34.4189C33.9603 34.4372 33.9787 34.4555 33.9971 34.4737C34.0155 34.492 34.0339 34.5103 34.0523 34.5286C37.0313 37.4824 41.1616 39.2993 45.7405 39.2993C49.8008 39.2993 53.7251 37.8918 56.8255 34.9015L56.8292 34.9051Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M89.3117 36.2726C89.5839 36.8612 89.2198 37.4534 88.5357 37.4534H83.4713C82.9601 37.4534 82.6254 37.3437 82.3459 37.0549C82.3459 37.0549 82.3459 37.0549 82.3496 37.0586C82.368 37.0769 82.3864 37.0951 82.4047 37.1134C82.4231 37.1317 82.4415 37.15 82.4599 37.1683C82.4783 37.1865 82.4967 37.2048 82.5151 37.2231C82.5335 37.2414 82.5519 37.2597 82.5702 37.2779C82.5886 37.2962 82.607 37.3145 82.6254 37.3328C82.6438 37.351 82.6622 37.3693 82.6806 37.3876C82.699 37.4059 82.7174 37.4242 82.7358 37.4424C82.7541 37.4607 82.7725 37.479 82.7909 37.4973C82.8093 37.5155 82.8277 37.5338 82.8461 37.5521C82.8645 37.5704 82.8829 37.5887 82.9013 37.6069C82.9196 37.6252 82.938 37.6435 82.9564 37.6618C82.9748 37.6801 82.9932 37.6983 83.0116 37.7166C83.03 37.7349 83.0484 37.7532 83.0668 37.7714C83.0851 37.7897 83.1035 37.808 83.1219 37.8263C83.1403 37.8446 83.1587 37.8628 83.1771 37.8811C83.1955 37.8994 83.2139 37.9177 83.2323 37.936C83.2507 37.9542 83.269 37.9725 83.2874 37.9908C83.3058 38.0091 83.3242 38.0273 83.3426 38.0456C83.361 38.0639 83.3794 38.0822 83.3978 38.1005C83.4161 38.1187 83.4346 38.137 83.4529 38.1553C83.4713 38.1736 83.4897 38.1919 83.5081 38.2101C83.5265 38.2284 83.5449 38.2467 83.5633 38.265C83.5817 38.2832 83.6 38.3015 83.6184 38.3198C83.6368 38.3381 83.6552 38.3564 83.6736 38.3746C83.692 38.3929 83.7104 38.4112 83.7288 38.4295C84.012 38.7366 84.3503 38.8499 84.8763 38.8499H89.9407C90.6247 38.8499 90.9888 38.2613 90.7167 37.6691L76.4356 7.14751C76.3951 7.06343 76.329 6.98666 76.2591 6.9172C76.2407 6.89892 76.2223 6.88064 76.2039 6.86236C76.1855 6.84409 76.1671 6.82581 76.1487 6.80753C76.1303 6.78925 76.112 6.77097 76.0936 6.75269C76.0752 6.73441 76.0568 6.71613 76.0384 6.69786C76.02 6.67958 76.0016 6.6613 75.9832 6.64302C75.9648 6.62474 75.9465 6.60646 75.9281 6.58819C75.9097 6.56991 75.8913 6.55163 75.8729 6.53335C75.8545 6.51507 75.8361 6.49679 75.8177 6.47851C75.7993 6.46023 75.781 6.44196 75.7626 6.42368C75.7442 6.4054 75.7258 6.38712 75.7074 6.36884C75.689 6.35056 75.6706 6.33229 75.6522 6.31401C75.6338 6.29573 75.6154 6.27745 75.5971 6.25917C75.5787 6.24089 75.5603 6.22261 75.5419 6.20433C75.5235 6.18606 75.5051 6.16778 75.4867 6.1495C75.4683 6.13122 75.4499 6.11294 75.4316 6.09466C75.4132 6.07638 75.3948 6.05811 75.3764 6.03983C75.358 6.02155 75.3396 6.00327 75.3212 5.98499C75.3028 5.96671 75.2844 5.94843 75.2661 5.93016C75.2477 5.91188 75.2293 5.8936 75.2109 5.87532C75.1925 5.85704 75.1741 5.83876 75.1557 5.82048C75.1373 5.8022 75.1189 5.78393 75.1005 5.76565C75.0822 5.74737 75.0638 5.72909 75.0454 5.71081C75.027 5.69253 75.0086 5.67426 74.9902 5.65598C74.9718 5.6377 74.9534 5.61942 74.9351 5.60114C74.9167 5.58286 74.8983 5.56458 74.8799 5.5463C74.9387 5.60845 74.9902 5.67426 75.027 5.74737L89.3081 36.2689L89.3117 36.2726Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M74.5787 22.2635L73.5454 20.0406L71.2688 25.0161L73.3174 25.0158L74.5787 22.2635Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M67.8222 32.7331L66.1818 36.3595C65.9538 36.9042 65.4499 37.4489 64.5378 37.4489H59.5176C59.2528 37.4489 59.0395 37.3576 58.8887 37.215C58.9071 37.2333 58.9254 37.2515 58.9438 37.2698C58.9622 37.2881 58.9806 37.3064 58.999 37.3247C59.0174 37.3429 59.0358 37.3612 59.0542 37.3795C59.0726 37.3978 59.091 37.416 59.1093 37.4343C59.1277 37.4526 59.1461 37.4709 59.1645 37.4892C59.1829 37.5074 59.2013 37.5257 59.2197 37.544C59.2381 37.5623 59.2565 37.5806 59.2748 37.5988C59.2932 37.6171 59.3116 37.6354 59.33 37.6537C59.3484 37.6719 59.3668 37.6902 59.3852 37.7085C59.4036 37.7268 59.422 37.7451 59.4403 37.7633C59.4587 37.7816 59.4771 37.7999 59.4955 37.8182C59.5139 37.8365 59.5323 37.8547 59.5507 37.873C59.5691 37.8913 59.5875 37.9096 59.6059 37.9278C59.6242 37.9461 59.6426 37.9644 59.661 37.9827C59.6794 38.001 59.6978 38.0192 59.7162 38.0375C59.7346 38.0558 59.753 38.0741 59.7714 38.0924C59.7897 38.1106 59.8081 38.1289 59.8265 38.1472C59.8449 38.1655 59.8633 38.1837 59.8817 38.202C59.9001 38.2203 59.9185 38.2386 59.9369 38.2569C59.9552 38.2751 59.9736 38.2934 59.992 38.3117C60.0104 38.33 60.0288 38.3483 60.0472 38.3665C60.0656 38.3848 60.084 38.4031 60.1024 38.4214C60.1208 38.4396 60.1391 38.4579 60.1575 38.4762C60.1759 38.4945 60.1943 38.5128 60.2127 38.531C60.2311 38.5493 60.2495 38.5676 60.2679 38.5859C60.4187 38.7431 60.643 38.8454 60.9225 38.8454H65.9428C66.8549 38.8454 67.3588 38.3007 67.5868 37.756L69.2271 34.1296H79.9407L79.3007 32.7294H67.8222V32.7331Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M134.608 13.7709L138.988 13.7713C140.625 13.7713 142.115 14.1917 143.391 14.9119C143.144 14.5464 142.876 14.1991 142.582 13.8774C141.184 12.9269 139.481 12.3712 137.583 12.3712H133.203V29.1875H134.612V13.7713L134.608 13.7709Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M155.458 22.9324C155.458 18.5675 153.645 14.601 150.728 11.7313C150.71 11.713 150.692 11.6947 150.673 11.6764C150.655 11.6581 150.636 11.6399 150.618 11.6216C150.6 11.6033 150.581 11.585 150.563 11.5668C150.544 11.5485 150.526 11.5302 150.508 11.5119C150.489 11.4936 150.471 11.4754 150.453 11.4571C150.434 11.4388 150.416 11.4205 150.397 11.4022C150.379 11.384 150.361 11.3657 150.342 11.3474C150.324 11.3291 150.305 11.3109 150.287 11.2926C150.269 11.2743 150.25 11.256 150.232 11.2377C150.213 11.2195 150.195 11.2012 150.177 11.1829C150.158 11.1646 150.14 11.1463 150.122 11.1281C150.103 11.1098 150.085 11.0915 150.066 11.0732C150.048 11.055 150.03 11.0367 150.011 11.0184C149.993 11.0001 149.974 10.9818 149.956 10.9636C149.938 10.9453 149.919 10.927 149.901 10.9087C149.882 10.8904 149.864 10.8722 149.846 10.8539C149.827 10.8356 149.809 10.8173 149.791 10.7991C149.772 10.7808 149.754 10.7625 149.735 10.7442C149.717 10.7259 149.699 10.7077 149.68 10.6894C149.662 10.6711 149.643 10.6528 149.625 10.6345L149.592 10.6016C149.592 10.6016 149.61 10.6272 149.621 10.6419C152.361 13.486 154.053 17.3208 154.053 21.5359C154.053 30.3352 146.845 37.4529 138.04 37.4529H126.907C126.683 37.4529 126.484 37.3505 126.337 37.1933C126.355 37.2116 126.37 37.2299 126.388 37.2445C126.407 37.2628 126.425 37.2811 126.444 37.2993C126.462 37.3176 126.48 37.3359 126.499 37.3542C126.517 37.3725 126.536 37.3907 126.554 37.409C126.572 37.4309 126.591 37.4456 126.609 37.4639C126.627 37.4821 126.646 37.5004 126.664 37.5187C126.683 37.5406 126.701 37.5552 126.719 37.5735C126.738 37.5918 126.756 37.6101 126.775 37.6284C126.793 37.6503 126.811 37.6649 126.83 37.6832C126.848 37.7015 126.867 37.7198 126.885 37.738C126.903 37.76 126.922 37.7746 126.94 37.7929C126.958 37.8111 126.977 37.8294 126.995 37.8477C127.014 37.8696 127.032 37.8843 127.05 37.9025C127.069 37.9208 127.087 37.9391 127.106 37.9574C127.124 37.9793 127.142 37.9939 127.161 38.0122C127.179 38.0305 127.198 38.0488 127.216 38.067C127.234 38.089 127.253 38.1036 127.271 38.1219C127.289 38.1402 127.308 38.1584 127.326 38.1767C127.345 38.1986 127.363 38.2133 127.381 38.2315C127.4 38.2535 127.418 38.2681 127.437 38.2864C127.455 38.3047 127.473 38.3229 127.492 38.3412C127.51 38.3632 127.529 38.3778 127.547 38.3961C127.565 38.4143 127.584 38.4326 127.602 38.4509C127.62 38.4728 127.639 38.4874 127.657 38.5057C127.676 38.524 127.694 38.5423 127.712 38.5606C127.863 38.7324 128.073 38.8494 128.312 38.8494H139.445C148.25 38.8494 155.458 31.728 155.458 22.9324Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M158.834 37.208C158.834 37.208 158.856 37.23 158.867 37.2409C158.885 37.2592 158.904 37.2775 158.922 37.2958C158.94 37.314 158.959 37.3323 158.977 37.3506C158.996 37.3689 159.014 37.3871 159.032 37.4054C159.051 37.4237 159.069 37.442 159.088 37.4603C159.106 37.4785 159.124 37.4968 159.143 37.5151C159.161 37.5334 159.179 37.5517 159.198 37.5699C159.216 37.5882 159.235 37.6065 159.253 37.6248C159.271 37.643 159.29 37.6613 159.308 37.6796C159.327 37.6979 159.345 37.7162 159.363 37.7344C159.382 37.7527 159.4 37.771 159.419 37.7893C159.437 37.8076 159.455 37.8258 159.474 37.8441C159.492 37.8624 159.51 37.8807 159.529 37.8989C159.547 37.9172 159.566 37.9355 159.584 37.9538C159.602 37.9721 159.621 37.9903 159.639 38.0086C159.658 38.0269 159.676 38.0452 159.694 38.0635C159.713 38.0817 159.731 38.1 159.75 38.1183C159.768 38.1366 159.786 38.1549 159.805 38.1731C159.823 38.1914 159.841 38.2097 159.86 38.228C159.878 38.2462 159.897 38.2645 159.915 38.2828C159.933 38.3011 159.952 38.3194 159.97 38.3376C159.989 38.3559 160.007 38.3742 160.025 38.3925C160.044 38.4107 160.062 38.429 160.081 38.4473C160.099 38.4656 160.117 38.4839 160.136 38.5021C160.154 38.5204 160.172 38.5387 160.191 38.557C160.353 38.7325 160.577 38.8494 160.816 38.8494H166.292C166.748 38.8494 167.16 38.44 167.16 37.9867V7.96594C167.16 7.72466 167.043 7.50166 166.866 7.34081C166.848 7.32253 166.829 7.30425 166.811 7.28597C166.793 7.2677 166.774 7.24942 166.756 7.23114C166.737 7.21286 166.719 7.19458 166.701 7.1763C166.682 7.15803 166.664 7.13975 166.646 7.12147C166.627 7.10319 166.609 7.08491 166.59 7.06663C166.572 7.04835 166.554 7.03007 166.535 7.0118C166.517 6.99352 166.498 6.97524 166.48 6.95696C166.462 6.93868 166.443 6.9204 166.425 6.90213C166.406 6.88385 166.388 6.86557 166.37 6.84729C166.351 6.82901 166.333 6.81073 166.314 6.79245C166.296 6.77417 166.278 6.75589 166.259 6.73762C166.241 6.71934 166.223 6.70106 166.204 6.68278C166.186 6.6645 166.167 6.64622 166.149 6.62795C166.131 6.60967 166.112 6.59139 166.094 6.57311C166.075 6.55483 166.057 6.53655 166.039 6.51827C166.02 6.5 166.002 6.48172 165.983 6.46344C165.965 6.44516 165.947 6.42688 165.928 6.4086C165.91 6.39032 165.892 6.37205 165.873 6.35377C165.855 6.33549 165.836 6.31721 165.818 6.29893C165.8 6.28065 165.781 6.26237 165.763 6.24409C165.744 6.22582 165.726 6.20754 165.708 6.18926C165.689 6.17098 165.671 6.1527 165.652 6.13442C165.634 6.11614 165.616 6.09787 165.597 6.07959C165.579 6.06131 165.561 6.04303 165.542 6.02475C165.531 6.01379 165.52 6.00282 165.509 5.99185C165.656 6.14905 165.752 6.35011 165.752 6.5658V36.5865C165.752 37.0399 165.34 37.4493 164.884 37.4493H159.408C159.191 37.4493 158.988 37.3542 158.83 37.208H158.834Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M10.0026 12.3789C10.0026 11.0226 11.3597 9.91861 13.0258 9.91861C15.4789 9.91861 18.366 11.8305 19.3149 12.4593C19.462 12.558 19.5687 12.6275 19.6239 12.6567C19.7636 12.7628 19.9291 12.7591 20.0468 12.7372C20.3889 12.6787 20.7861 12.4118 20.9736 12.1157L23.3017 8.62083C23.4415 8.37955 23.5408 7.64841 23.0774 7.38154C21.3377 6.113 17.7813 4 13.3899 4C6.25121 4 3 8.59889 3 12.8761C3 15.8153 4.51895 19.917 11.7569 22.7611C15.0266 24.0516 16.5529 25.5504 16.5529 27.4807C16.5529 29.144 15.1663 30.3504 13.2538 30.3504C12.007 30.3504 9.8886 29.93 6.85806 27.9376C6.78083 27.8865 6.72933 27.8535 6.70727 27.8426C6.57854 27.7512 6.35787 27.6854 6.11881 27.6854C6.04158 27.6854 5.96434 27.6927 5.88711 27.7073C5.72161 27.7402 5.49358 27.828 5.35014 28.0583L3.20964 31.8163C2.89702 32.3611 2.97793 32.4744 3.41192 32.9058C3.98934 33.4797 7.20378 36.3531 13.5701 36.3531C19.9365 36.3531 24.1881 31.6555 24.1881 27.1151C24.1881 21.2001 18.9839 18.462 15.067 16.9156C11.4664 15.468 9.99894 14.1519 9.99894 12.3789H10.0026Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M53.9532 30.986L50.393 27.2206C50.2864 27.1 50.1172 27.0268 49.9223 27.0232C49.731 27.0159 49.5398 27.078 49.4147 27.184C47.7965 28.5696 45.4757 29.3957 43.2028 29.3957C38.0796 29.3957 34.0634 25.2867 34.0634 20.0408C34.0634 14.7948 38.0575 10.5505 43.155 10.5505C45.4463 10.5505 47.7303 11.406 49.4147 12.9012C49.6795 13.1644 50.0951 13.1571 50.3489 12.9085L53.9054 9.23813C54.0562 9.08824 54.1371 8.89814 54.1334 8.70805C54.126 8.51429 54.0341 8.32785 53.8686 8.18528C50.6799 5.29361 47.3036 4.00679 42.927 4.00679C33.9273 4.00679 26.6084 11.2853 26.6084 20.2272C26.6084 24.5665 28.3002 28.6281 31.3786 31.6623C34.4496 34.6892 38.5504 36.3562 42.9307 36.3562C47.311 36.3562 50.9594 34.8501 53.9127 31.9986C54.1849 31.7281 54.2069 31.2346 53.9569 30.986H53.9532Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M82.0626 35.9027H87.127C87.3991 35.9027 87.6235 35.793 87.7485 35.6029C87.8699 35.4128 87.8772 35.1716 87.7669 34.9339L73.4858 4.41601C73.3681 4.18204 73.0923 4.00291 72.8459 4.00291H72.3898C72.1434 4.00291 71.8676 4.18204 71.7499 4.41966L57.4725 34.9339C57.3622 35.1716 57.3695 35.4128 57.4909 35.6029C57.6123 35.793 57.8403 35.9027 58.1124 35.9027H63.1327C64.0779 35.9027 64.4825 35.2776 64.6369 34.9047L66.3214 31.1832H78.9254L80.6098 34.8535C80.9997 35.676 81.316 35.899 82.0699 35.899L82.0626 35.9027ZM68.9179 25.3157L72.4781 17.5327H72.7172L76.3214 25.3157H68.9179Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M116.447 36.3562H117.175C117.565 36.3562 117.893 36.0492 117.893 35.6909V5.16931C117.893 4.79643 117.551 4.45645 117.175 4.45645H111.699C111.306 4.45645 110.982 4.7745 110.982 5.16931V21.419H110.725L92.5192 4.00679H91.4379C91.048 4.00679 90.7207 4.31388 90.7207 4.67579L90.7648 35.1937C90.7648 35.5666 91.1069 35.9066 91.482 35.9066H96.9105C97.3041 35.9066 97.6277 35.5885 97.6277 35.1937V18.1288H97.8851L97.9293 18.1727L115.951 36.1771C116.006 36.2319 116.33 36.3599 116.436 36.3599L116.447 36.3562Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M136.627 4.45622H125.495C125.13 4.45622 124.825 4.78158 124.825 5.16909V35.1898C124.825 35.5773 125.134 35.9027 125.495 35.9027H136.627C145.373 35.9027 152.49 28.8289 152.49 20.1356C152.49 11.4423 145.373 4.45988 136.627 4.45988V4.45622ZM136.171 29.4869H131.64V10.8208H136.171C141.328 10.8208 145.219 14.8238 145.219 20.1319C145.219 25.44 141.328 29.4869 136.171 29.4869Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M163.476 4.45622H158.003C157.607 4.45622 157.286 4.77538 157.286 5.16909V35.1898C157.286 35.5835 157.607 35.9027 158.003 35.9027H163.476C163.872 35.9027 164.193 35.5835 164.193 35.1898V5.16909C164.193 4.77538 163.872 4.45622 163.476 4.45622Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M176.349 20.0408C176.349 14.718 180.343 10.5505 185.44 10.5505C187.731 10.5505 190.015 11.406 191.7 12.9012C191.965 13.1644 192.38 13.1571 192.634 12.9085L196.191 9.23813C196.341 9.08824 196.422 8.89814 196.419 8.70805C196.411 8.51429 196.319 8.32785 196.154 8.18528C192.965 5.29361 189.589 4.00679 185.212 4.00679C176.212 4.00679 168.894 11.2853 168.894 20.2272C168.894 24.5665 170.585 28.6281 173.664 31.6623C176.735 34.6892 180.836 36.3562 185.216 36.3562C189.596 36.3562 193.245 34.8501 196.198 31.9986C196.47 31.7281 196.492 31.2346 196.242 30.986L192.682 27.2206C192.575 27.1 192.406 27.0268 192.211 27.0232C192.012 27.0159 191.829 27.078 191.704 27.184C190.085 28.5696 187.765 29.3957 185.492 29.3957C180.368 29.3957 176.352 25.2867 176.352 20.0408H176.349Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
import { levelVariants } from "../variants"
|
||||
import { levelVariants } from "../../variants"
|
||||
|
||||
import type { LevelProps } from "../levels"
|
||||
import type { LevelProps } from "../../levels"
|
||||
|
||||
export default function TrueFriend({
|
||||
className,
|
||||
@@ -0,0 +1,168 @@
|
||||
import { levelVariants } from "../../variants"
|
||||
|
||||
import type { LevelProps } from "../../levels"
|
||||
|
||||
export default function BestFriend({
|
||||
className,
|
||||
color,
|
||||
height = "44",
|
||||
width = "274",
|
||||
...props
|
||||
}: LevelProps) {
|
||||
const classNames = levelVariants({
|
||||
className,
|
||||
color,
|
||||
})
|
||||
return (
|
||||
<svg
|
||||
className={classNames}
|
||||
fill="none"
|
||||
height={height}
|
||||
viewBox="0 0 274 44"
|
||||
width={width}
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
d="M25.4507 25.1358C25.4507 25.1358 25.4137 25.0988 25.3952 25.0803C25.3767 25.0618 25.3582 25.0433 25.3397 25.0248C25.3212 25.0063 25.3027 24.9879 25.2842 24.9694C25.2657 24.9509 25.2472 24.9324 25.2286 24.9139C25.2101 24.8954 25.1916 24.8769 25.1731 24.8584C25.1546 24.8399 25.1361 24.8214 25.1176 24.8029C25.0991 24.7844 25.0806 24.7659 25.0621 24.7474C25.0436 24.7289 25.0251 24.7104 25.0065 24.692C24.988 24.6735 24.9695 24.655 24.951 24.6365C24.9325 24.618 24.914 24.5995 24.8955 24.581C24.877 24.5625 24.8585 24.544 24.84 24.5255C24.8215 24.507 24.803 24.4885 24.7844 24.47C24.7659 24.4515 24.7474 24.433 24.7289 24.4145C24.7104 24.3961 24.6919 24.3776 24.6734 24.3591C24.6549 24.3406 24.6364 24.3221 24.6179 24.3036C24.5993 24.2851 24.5808 24.2666 24.5623 24.2481C24.5438 24.2296 24.5253 24.2111 24.5068 24.1926C24.4883 24.1741 24.4698 24.1556 24.4513 24.1371C24.4328 24.1186 24.4143 24.1001 24.3958 24.0816C24.3772 24.0632 24.3587 24.0447 24.3402 24.0262C24.3217 24.0077 24.3032 23.9892 24.2847 23.9707C24.2662 23.9522 24.2477 23.9337 24.2292 23.9152C24.2107 23.8967 24.1922 23.8782 24.1737 23.8597C24.1552 23.8412 24.1366 23.8227 24.1181 23.8042C24.0996 23.7857 24.0811 23.7673 24.0626 23.7488C25.2805 24.9472 26.1985 26.5413 26.1985 28.6238C26.1985 33.6948 21.712 37.3603 16.3223 37.3603H5.08755C4.83954 37.3603 4.63224 37.2567 4.48047 37.0977C4.49898 37.1162 4.51378 37.1346 4.53229 37.1494C4.5508 37.1679 4.56931 37.1864 4.58782 37.2049C4.60633 37.2234 4.62484 37.2419 4.64334 37.2604C4.66185 37.2789 4.68036 37.2974 4.69887 37.3159C4.71738 37.3344 4.73589 37.3529 4.7544 37.3714C4.77291 37.3899 4.79141 37.4084 4.80992 37.4269C4.82843 37.4453 4.84694 37.4638 4.86544 37.4823C4.88395 37.5008 4.90247 37.5193 4.92097 37.5378C4.93948 37.5563 4.95799 37.5748 4.9765 37.5933C4.99501 37.6118 5.01352 37.6303 5.03203 37.6488C5.05054 37.6673 5.06904 37.6858 5.08755 37.7043C5.10606 37.7228 5.12457 37.7413 5.14307 37.7597C5.16158 37.7782 5.1801 37.7967 5.1986 37.8152C5.21711 37.8337 5.23562 37.8522 5.25413 37.8707C5.27264 37.8892 5.29115 37.9077 5.30966 37.9262C5.32817 37.9447 5.34667 37.9632 5.36518 37.9817C5.38369 38.0002 5.4022 38.0187 5.4207 38.0372C5.43921 38.0556 5.45773 38.0741 5.47623 38.0926C5.49474 38.1111 5.51325 38.1296 5.53176 38.1481C5.55027 38.1666 5.56878 38.1851 5.58729 38.2036C5.6058 38.2221 5.6243 38.2406 5.64281 38.2591C5.66132 38.2776 5.67983 38.2961 5.69833 38.3146C5.71684 38.3331 5.73536 38.3516 5.75386 38.37C5.77237 38.3885 5.79088 38.407 5.80939 38.4255C5.8279 38.444 5.84641 38.4625 5.86492 38.481C6.02039 38.6548 6.23879 38.7732 6.50161 38.7732H17.7364C23.1261 38.7732 27.6126 35.1077 27.6126 30.0367C27.6126 27.9395 26.6834 26.3379 25.4545 25.1358H25.4507Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M14.8407 12.2077L11.3096 12.208V17.0016L12.7051 17.0019V13.6027L16.2358 13.6024C16.3098 13.6024 16.3801 13.6098 16.4542 13.6172C16.4172 13.1993 16.2987 12.8146 16.1137 12.4743C15.7213 12.3079 15.2957 12.208 14.8442 12.208L14.8407 12.2077Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M26.7934 15.5043C26.7934 13.4071 25.9347 11.5207 24.5209 10.0671C24.5024 10.0486 24.4839 10.0301 24.4654 10.0116C24.4469 9.99313 24.4284 9.97463 24.4098 9.95614C24.3913 9.93764 24.3728 9.91915 24.3543 9.90065C24.3358 9.88216 24.3173 9.86367 24.2988 9.84517C24.2803 9.82668 24.2618 9.80819 24.2433 9.78969C24.2248 9.7712 24.2063 9.7527 24.1878 9.73421C24.1693 9.71572 24.1508 9.69722 24.1323 9.67873C24.1138 9.66023 24.0952 9.64174 24.0767 9.62325C24.0582 9.60475 24.0397 9.58626 24.0212 9.56777C24.0027 9.54927 23.9842 9.53078 23.9657 9.51228C23.9472 9.49379 23.9287 9.4753 23.9102 9.4568C23.8917 9.43831 23.8732 9.41981 23.8547 9.40132C23.8362 9.38283 23.8177 9.36433 23.7992 9.34584C23.7807 9.32734 23.7622 9.30885 23.7436 9.29036C23.7251 9.27186 23.7066 9.25337 23.6881 9.23488C23.6696 9.21638 23.6511 9.19789 23.6326 9.17939C23.6141 9.1609 23.5956 9.1424 23.5771 9.12391C23.5586 9.10542 23.5401 9.08692 23.5216 9.06843C23.5031 9.04994 23.4846 9.03144 23.4661 9.01295C23.4476 8.99446 23.429 8.97596 23.4105 8.95747C23.392 8.93897 23.3735 8.92048 23.355 8.90199C23.3365 8.88349 23.318 8.865 23.2995 8.8465C23.281 8.82801 23.2625 8.80951 23.244 8.79102C23.2255 8.77253 23.207 8.75403 23.1885 8.73554C23.1737 8.71705 23.1552 8.70225 23.1367 8.68376C24.5357 10.1337 25.3795 12.0053 25.3795 14.0877C25.3795 17.1688 22.9368 19.5027 20.8975 20.7862C21.4563 21.1339 22.0189 21.5444 22.5371 22.0216C24.5209 20.7085 26.7712 18.4411 26.7712 15.4821L26.7934 15.5043Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M14.9774 24.432L11.3102 24.4327V29.3595L12.7051 29.3589V25.8229L16.3727 25.8228C16.6244 25.8228 16.8761 25.8561 17.1278 25.9115C17.0797 25.5306 16.939 25.1755 16.7318 24.8574C16.1803 24.5874 15.5696 24.432 14.9774 24.432Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M74.6059 23.3524C74.5874 23.3339 74.5689 23.3154 74.5504 23.2969C74.5319 23.2784 74.5133 23.2599 74.4948 23.2414C74.4763 23.223 74.4578 23.2045 74.4393 23.186C74.4208 23.1675 74.4023 23.149 74.3838 23.1305C74.3653 23.112 74.3468 23.0935 74.3283 23.075C74.3098 23.0565 74.2912 23.038 74.2727 23.0195C74.2542 23.001 74.2357 22.9825 74.2172 22.964C74.1987 22.9455 74.1802 22.927 74.1617 22.9086C74.1432 22.8901 74.1247 22.8716 74.1062 22.8531C74.0876 22.8346 74.0691 22.8161 74.0506 22.7976C74.0321 22.7791 74.0136 22.7606 73.9951 22.7421C73.9766 22.7236 73.9581 22.7051 73.9396 22.6866C73.9211 22.6681 73.9026 22.6496 73.884 22.6311C73.8655 22.6127 73.847 22.5942 73.8285 22.5757C73.81 22.5572 73.7915 22.5387 73.773 22.5202C73.7545 22.5017 73.736 22.4832 73.7175 22.4647C73.699 22.4462 73.6805 22.4277 73.6619 22.4092C73.6434 22.3907 73.6249 22.3722 73.6064 22.3537C73.5879 22.3352 73.5694 22.3168 73.5509 22.2983C73.5324 22.2798 73.5139 22.2613 73.4954 22.2428C73.4769 22.2243 73.4584 22.2058 73.4398 22.1873C73.4213 22.1688 73.4028 22.1503 73.3843 22.1318C73.3658 22.1133 73.3473 22.0948 73.3288 22.0763C73.3103 22.0578 73.2955 22.043 73.277 22.0245C74.8428 23.6039 75.9792 25.6789 75.9792 28.4382C75.9792 33.0987 71.948 37.8072 65.2886 37.8072C59.4177 37.8072 56.1602 35.3808 55.1089 34.3341C55.1126 34.3378 55.12 34.3452 55.1237 34.3489C55.1274 34.3563 55.1385 34.36 55.1422 34.3674C55.1533 34.3785 55.1644 34.3896 55.1792 34.4044C55.1866 34.4118 55.194 34.4155 55.1977 34.4229C55.2088 34.434 55.2199 34.4451 55.2347 34.4599C55.2384 34.4673 55.2496 34.4709 55.2533 34.4783C55.2644 34.4894 55.2755 34.5005 55.2903 34.5153C55.2977 34.519 55.3051 34.5264 55.3088 34.5338C55.3199 34.5449 55.331 34.556 55.3458 34.5708C55.3495 34.5782 55.3569 34.5819 55.3643 34.5893C55.3754 34.6004 55.3865 34.6115 55.4013 34.6263C55.4087 34.6337 55.4161 34.6374 55.4198 34.6448C55.4309 34.6559 55.442 34.667 55.4568 34.6818C55.4643 34.6892 55.4717 34.6929 55.4754 34.7003C55.4865 34.7114 55.4976 34.7225 55.5124 34.7373C55.5198 34.7447 55.5272 34.7484 55.5309 34.7558C55.542 34.7668 55.5531 34.7779 55.5679 34.7927C55.5753 34.8001 55.5827 34.8038 55.5864 34.8112C55.5975 34.8223 55.6086 34.8334 55.6234 34.8482C55.6308 34.8556 55.6382 34.8593 55.6419 34.8667C55.653 34.8778 55.6641 34.8889 55.679 34.9037C55.6827 34.9111 55.6938 34.9148 55.6975 34.9222C55.7086 34.9333 55.7197 34.9444 55.7345 34.9592C55.7419 34.9666 55.7493 34.9703 55.753 34.9777C55.7641 34.9888 55.7752 34.9999 55.79 35.0147C55.7974 35.0221 55.8048 35.0258 55.8085 35.0332C55.8196 35.0443 55.8307 35.0554 55.8418 35.0701C55.8492 35.0738 55.8566 35.0812 55.8603 35.0886C55.8714 35.0997 55.8825 35.1108 55.8974 35.1256C55.9011 35.133 55.9122 35.1367 55.9159 35.1441C55.927 35.1552 55.9381 35.1663 55.9529 35.1811C55.9566 35.1848 55.964 35.1922 55.9714 35.1996C55.9825 35.2107 55.9936 35.2218 56.0084 35.2366C56.0121 35.244 56.0195 35.2477 56.0269 35.2551C56.038 35.2662 56.0491 35.2773 56.0639 35.2921C56.0713 35.2995 56.0787 35.3032 56.0824 35.3106C56.0935 35.3217 56.1047 35.3328 56.1195 35.3476C56.1269 35.3513 56.1343 35.3587 56.138 35.3661C56.1491 35.3771 56.1602 35.3882 56.175 35.403C56.1787 35.4104 56.1898 35.4141 56.1935 35.4215C56.2046 35.4326 56.2157 35.4437 56.2305 35.4585C56.2379 35.4622 56.2453 35.4696 56.249 35.477C56.2601 35.4881 56.2712 35.4992 56.286 35.514C56.2934 35.5214 56.3008 35.5251 56.3046 35.5325C56.3157 35.5436 56.3268 35.5547 56.3416 35.5695C56.349 35.5732 56.3564 35.5806 56.3601 35.588C56.3712 35.5991 56.3823 35.6102 56.3971 35.625C56.4008 35.6324 56.4119 35.6361 56.4156 35.6435C56.4267 35.6546 56.4378 35.6657 56.4526 35.6804C56.46 35.6878 56.4674 35.6915 56.4711 35.6989C56.4822 35.71 56.4933 35.7211 56.5081 35.7359C57.5483 36.7753 60.8095 39.2202 66.699 39.2202C73.3584 39.2202 77.3896 34.5116 77.3896 29.8512C77.3896 27.0697 76.2384 24.9836 74.654 23.4005C74.6392 23.382 74.6207 23.3672 74.6022 23.3487L74.6059 23.3524Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M63.4528 24.251C61.4983 23.478 59.292 22.3277 57.5781 20.6891C57.5966 20.7076 57.6151 20.7261 57.6337 20.7446C57.6522 20.7631 57.6707 20.7816 57.6892 20.8001C57.7077 20.8186 57.7262 20.8371 57.7447 20.8556C57.7632 20.8741 57.7817 20.8925 57.8002 20.911C57.8187 20.9295 57.8372 20.948 57.8558 20.9665C57.8743 20.985 57.8928 21.0035 57.9113 21.022C57.9298 21.0405 57.9483 21.059 57.9668 21.0775C57.9853 21.096 58.0038 21.1145 58.0223 21.133C58.0408 21.1515 58.0593 21.17 58.0779 21.1884C58.0964 21.2069 58.1149 21.2254 58.1334 21.2439C58.1519 21.2624 58.1704 21.2809 58.1889 21.2994C58.2074 21.3179 58.2259 21.3364 58.2444 21.3549C58.2629 21.3734 58.2814 21.3919 58.3 21.4104C58.3185 21.4289 58.337 21.4474 58.3555 21.4659C58.374 21.4843 58.3925 21.5028 58.411 21.5213C58.4295 21.5398 58.448 21.5583 58.4665 21.5768C58.485 21.5953 58.5036 21.6138 58.5221 21.6323C58.5406 21.6508 58.5591 21.6693 58.5776 21.6878C58.5961 21.7063 58.6146 21.7248 58.6331 21.7433C58.6516 21.7618 58.6701 21.7802 58.6886 21.7987C58.7072 21.8172 58.7257 21.8357 58.7442 21.8542C58.7627 21.8727 58.7812 21.8912 58.7997 21.9097C58.8182 21.9282 58.8367 21.9467 58.8552 21.9652C58.8737 21.9837 58.8922 22.0022 58.9108 22.0207C58.9293 22.0392 58.9478 22.0577 58.9663 22.0762C60.6839 23.7295 62.9012 24.8872 64.8631 25.664C65.4258 25.8859 65.9255 26.1226 66.3882 26.363C66.2698 26.0523 66.0958 25.7527 65.8663 25.4642C65.2074 25.0389 64.4115 24.6431 63.4676 24.2695L63.4528 24.251Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M63.3046 15.1419C63.3046 13.9213 64.5299 12.8339 66.1586 12.8339C68.9238 12.8339 72.2295 15.3231 72.6367 15.5488C73.0439 15.8669 73.8619 15.46 74.1766 14.9607L76.4865 11.4764C76.5383 11.3839 76.5827 11.2434 76.6086 11.088C76.6049 11.0843 76.6012 11.0806 76.5975 11.0769C76.1496 10.9734 75.8128 10.5739 75.8128 10.0931V9.59744C75.8128 9.59744 75.809 9.59374 75.8053 9.59004C75.7905 9.57155 75.7683 9.55305 75.7498 9.53456C75.735 9.51606 75.7128 9.49757 75.6943 9.47907C75.6758 9.46058 75.6573 9.44209 75.6388 9.4236C75.6203 9.4051 75.6017 9.38661 75.5832 9.36811C75.5684 9.34962 75.5462 9.33112 75.5277 9.31263C75.5129 9.29414 75.4907 9.27564 75.4722 9.25715C75.4574 9.23865 75.4352 9.22016 75.4167 9.20167C75.3982 9.18317 75.3796 9.16468 75.3611 9.14619C75.3463 9.12769 75.3241 9.1092 75.3056 9.0907C75.2871 9.07221 75.2686 9.05372 75.2501 9.03522C75.2316 9.01673 75.2131 8.99823 75.1946 8.97974C75.176 8.96125 75.1575 8.94275 75.139 8.92426C75.1242 8.90576 75.102 8.88727 75.0835 8.86878C75.0687 8.85028 75.0465 8.83179 75.028 8.8133C75.0132 8.7948 74.9947 8.78001 74.9762 8.76151C75.3241 9.13509 75.239 9.78977 75.0798 10.0709L72.7699 13.5551C72.4516 14.0545 71.6372 14.4613 71.23 14.1432C70.8228 13.9176 67.5172 11.4283 64.752 11.4283C63.1232 11.4283 61.8979 12.5158 61.8979 13.7364C61.8979 14.121 61.9757 14.4835 62.1312 14.8349C62.468 15.0901 62.8715 15.3416 63.3379 15.5969C63.312 15.4452 63.2935 15.2899 63.2935 15.1308L63.3046 15.1419Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M98.3343 12.3441H91.8562V36.5156C91.8562 36.9669 91.449 37.3738 90.9974 37.3738H85.5596C85.3449 37.3738 85.1413 37.2776 84.9858 37.1297C84.9969 37.1407 85.0081 37.1518 85.0192 37.1629C85.0377 37.1814 85.0562 37.1999 85.0747 37.2184C85.0932 37.2369 85.108 37.2554 85.1302 37.2739C85.1487 37.2924 85.1672 37.3109 85.1857 37.3294C85.2042 37.3479 85.219 37.3664 85.2413 37.3849C85.2598 37.4034 85.2783 37.4219 85.2968 37.4403C85.3153 37.4588 85.3301 37.4773 85.3523 37.4958C85.3708 37.5143 85.3893 37.5328 85.4078 37.5513C85.4263 37.5698 85.4411 37.5883 85.4634 37.6068C85.4819 37.6253 85.5004 37.6438 85.5189 37.6623C85.5374 37.6808 85.5522 37.6993 85.5744 37.7178C85.5929 37.7362 85.6114 37.7547 85.6299 37.7732C85.6484 37.7917 85.667 37.8102 85.6855 37.8287C85.704 37.8472 85.7225 37.8657 85.741 37.8842C85.7595 37.9027 85.7743 37.9212 85.7965 37.9397C85.815 37.9582 85.8335 37.9767 85.852 37.9952C85.8706 38.0137 85.8854 38.0321 85.9076 38.0506C85.9261 38.0691 85.9446 38.0876 85.9631 38.1061C85.9816 38.1246 85.9964 38.1431 86.0186 38.1616C86.0371 38.1801 86.0556 38.1986 86.0742 38.2171C86.0927 38.2356 86.1075 38.2541 86.1297 38.2726C86.1482 38.2911 86.1667 38.3096 86.1852 38.328C86.2037 38.3465 86.2185 38.365 86.2407 38.3835C86.2592 38.402 86.2777 38.4205 86.2962 38.439C86.3148 38.4575 86.3296 38.476 86.3518 38.4945C86.511 38.6683 86.7331 38.7867 86.9737 38.7867H92.4115C92.8631 38.7867 93.2703 38.3798 93.2703 37.9286V13.757H99.7483C100.248 13.757 100.607 13.3502 100.607 12.8952V7.96106C100.607 7.72064 100.5 7.49871 100.329 7.33596C100.311 7.31747 100.292 7.29898 100.274 7.28048C100.255 7.26199 100.237 7.24349 100.218 7.225C100.2 7.20651 100.181 7.18801 100.163 7.16952C100.144 7.15102 100.126 7.13253 100.107 7.11404C100.089 7.09554 100.07 7.07705 100.052 7.05855C100.033 7.04006 100.015 7.02157 99.9963 7.00307C99.9778 6.98458 99.9593 6.96609 99.9408 6.94759C99.9223 6.9291 99.9038 6.9106 99.8853 6.89211C99.8668 6.87362 99.8483 6.85512 99.8298 6.83663C99.8112 6.81813 99.7927 6.79964 99.7742 6.78115C99.7557 6.76265 99.7372 6.74416 99.7187 6.72567C99.7002 6.70717 99.6817 6.68868 99.6632 6.67018C99.6447 6.65169 99.6262 6.6332 99.6077 6.6147C99.5892 6.59621 99.5706 6.57771 99.5521 6.55922C99.5336 6.54073 99.5151 6.52223 99.4966 6.50374C99.4781 6.48524 99.4596 6.46675 99.4411 6.44826C99.4226 6.42976 99.4041 6.41127 99.3856 6.39277C99.3671 6.37428 99.3485 6.35579 99.33 6.33729C99.3115 6.3188 99.293 6.3003 99.2745 6.28181C99.256 6.26332 99.2375 6.24482 99.219 6.22633C99.2005 6.20783 99.182 6.18934 99.1635 6.17085C99.1449 6.15235 99.1264 6.13386 99.1079 6.11537C99.0894 6.09687 99.0709 6.07838 99.0524 6.05988C99.0339 6.04139 99.0154 6.0229 98.9969 6.0044C98.9784 5.98591 98.9636 5.96741 98.945 5.95262C99.0968 6.11167 99.1931 6.3225 99.1931 6.54812V11.4823C99.1931 11.9335 98.8303 12.3441 98.3343 12.3441Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M78.2188 12.3452C77.9708 12.3452 77.7636 12.2417 77.6118 12.0826C77.6266 12.1011 77.6451 12.1159 77.6636 12.1344C77.6821 12.1529 77.7006 12.1714 77.7192 12.1899C77.7377 12.2084 77.7562 12.2269 77.7747 12.2454C77.7932 12.2639 77.8117 12.2824 77.8302 12.3008C77.8487 12.3193 77.8672 12.3378 77.8857 12.3563C77.9042 12.3748 77.9227 12.3933 77.9412 12.4118C77.9597 12.4303 77.9782 12.4488 77.9967 12.4673C78.0152 12.4858 78.0337 12.5043 78.0523 12.5228C78.0708 12.5413 78.0893 12.5598 78.1078 12.5783C78.1263 12.5967 78.1448 12.6152 78.1633 12.6337C78.1818 12.6522 78.2003 12.6707 78.2188 12.6892C78.2373 12.7077 78.2558 12.7262 78.2743 12.7447C78.2928 12.7632 78.3113 12.7817 78.3298 12.8002C78.3483 12.8187 78.3668 12.8372 78.3854 12.8557C78.4039 12.8742 78.4224 12.8927 78.4409 12.9111C78.4594 12.9296 78.4779 12.9481 78.4964 12.9666C78.5149 12.9851 78.5334 13.0036 78.5519 13.0221C78.5704 13.0406 78.5889 13.0591 78.6074 13.0776C78.6259 13.0961 78.6444 13.1146 78.6629 13.1331C78.6814 13.1516 78.6999 13.1701 78.7185 13.1886C78.737 13.207 78.7555 13.2255 78.774 13.244C78.7925 13.2625 78.811 13.281 78.8295 13.2995C78.848 13.318 78.8665 13.3365 78.885 13.355C78.9035 13.3735 78.922 13.392 78.9405 13.4105C78.959 13.429 78.9775 13.4475 78.996 13.466C79.1515 13.6398 79.3699 13.7582 79.6326 13.7582H83.1709V12.3637H78.241L78.2188 12.3452Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M134.951 8.04723C134.933 8.02874 134.914 8.01025 134.896 7.99175C134.877 7.97326 134.859 7.95477 134.84 7.93627C134.822 7.91778 134.803 7.89928 134.785 7.88079C134.766 7.86229 134.748 7.8438 134.729 7.82531C134.711 7.80681 134.692 7.78832 134.674 7.76983C134.655 7.75133 134.637 7.73284 134.618 7.71434C134.6 7.69585 134.581 7.67736 134.563 7.65886C134.544 7.64037 134.526 7.62187 134.507 7.60338C134.489 7.58488 134.47 7.5664 134.452 7.5479C134.433 7.52941 134.415 7.51091 134.396 7.49242C134.378 7.47393 134.359 7.45543 134.341 7.43694C134.322 7.41844 134.304 7.39995 134.285 7.38145C134.267 7.36296 134.248 7.34447 134.23 7.32597C134.211 7.30748 134.193 7.28899 134.174 7.27049C134.156 7.252 134.137 7.23351 134.119 7.21501C134.1 7.19652 134.082 7.17802 134.063 7.15952C134.045 7.14103 134.026 7.12254 134.008 7.10405C133.989 7.08555 133.97 7.06706 133.952 7.04856C133.933 7.03007 133.915 7.01157 133.896 6.99308C133.878 6.97459 133.859 6.9561 133.841 6.9376C133.822 6.91911 133.804 6.90061 133.785 6.88211C133.767 6.86362 133.748 6.84513 133.73 6.82664C133.711 6.80814 133.693 6.78965 133.674 6.77115C133.656 6.75266 133.641 6.73417 133.623 6.71937C133.774 6.87842 133.871 7.08925 133.871 7.31487V12.2491C133.871 12.7003 133.508 13.1072 133.012 13.1072H120.463V18.082H121.858V14.5016H134.407C134.903 14.5016 135.266 14.0947 135.266 13.6435V8.70932C135.266 8.4689 135.159 8.24697 134.988 8.08422C134.97 8.06573 134.951 8.04724 134.933 8.02874L134.951 8.04723Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M132.716 21.2189C132.698 21.2004 132.679 21.1819 132.661 21.1634C132.642 21.1449 132.627 21.1264 132.605 21.1079C132.587 21.0894 132.568 21.0709 132.55 21.0524C132.531 21.0339 132.516 21.0154 132.494 20.997C132.476 20.9785 132.457 20.96 132.439 20.9415C132.42 20.923 132.405 20.9045 132.383 20.886C132.365 20.8675 132.346 20.849 132.328 20.8305C132.309 20.812 132.294 20.7935 132.272 20.775C132.254 20.7565 132.235 20.738 132.216 20.7195C132.198 20.701 132.183 20.6826 132.161 20.6641C132.142 20.6456 132.124 20.6271 132.105 20.6086C132.087 20.5901 132.072 20.5716 132.05 20.5531C132.031 20.5346 132.013 20.5161 131.994 20.4976C131.976 20.4791 131.961 20.4606 131.939 20.4421C131.92 20.4236 131.902 20.4051 131.883 20.3867C131.865 20.3682 131.85 20.3497 131.828 20.3312C131.809 20.3127 131.791 20.2942 131.772 20.2757C131.754 20.2572 131.739 20.2387 131.717 20.2202C131.698 20.2017 131.68 20.1832 131.661 20.1647C131.643 20.1462 131.628 20.1277 131.606 20.1092C131.587 20.0908 131.569 20.0723 131.55 20.0538C131.532 20.0353 131.513 20.0168 131.495 19.9983C131.476 19.9798 131.458 19.9613 131.439 19.9428C131.428 19.9317 131.417 19.9206 131.406 19.9095C131.55 20.0649 131.65 20.2646 131.65 20.4791V25.4133C131.65 25.8645 131.243 26.2714 130.791 26.2714H120.464V37.2716C120.464 37.7228 120.056 38.1297 119.605 38.1297H114.259C114.011 38.1297 113.804 38.0261 113.652 37.8671C113.671 37.8856 113.686 37.9004 113.704 37.9189C113.723 37.9374 113.741 37.9559 113.76 37.9744C113.778 37.9929 113.797 38.0113 113.815 38.0298C113.834 38.0483 113.852 38.0668 113.871 38.0853C113.889 38.1038 113.908 38.1223 113.926 38.1408C113.945 38.1593 113.963 38.1778 113.982 38.1963C114 38.2148 114.019 38.2333 114.037 38.2518C114.056 38.2703 114.074 38.2887 114.093 38.3072C114.111 38.3257 114.13 38.3442 114.148 38.3627C114.167 38.3812 114.185 38.3997 114.204 38.4182C114.222 38.4367 114.241 38.4552 114.259 38.4737C114.278 38.4922 114.296 38.5107 114.315 38.5292C114.333 38.5477 114.352 38.5662 114.37 38.5847C114.389 38.6031 114.407 38.6216 114.426 38.6401C114.445 38.6586 114.463 38.6771 114.482 38.6956C114.5 38.7141 114.519 38.7326 114.537 38.7511C114.556 38.7696 114.574 38.7881 114.593 38.8066C114.611 38.8251 114.63 38.8436 114.648 38.8621C114.667 38.8806 114.685 38.899 114.704 38.9175C114.722 38.936 114.741 38.9545 114.759 38.973C114.778 38.9915 114.796 39.01 114.815 39.0285C114.833 39.047 114.852 39.0655 114.87 39.084C114.889 39.1025 114.907 39.121 114.926 39.1395C114.944 39.158 114.963 39.1765 114.981 39.1949C115 39.2134 115.018 39.2319 115.037 39.2504C115.192 39.4243 115.411 39.5426 115.673 39.5426H121.019C121.47 39.5426 121.878 39.1358 121.878 38.6845V27.6843H132.205C132.657 27.6843 133.064 27.2775 133.064 26.8262V21.8921C133.064 21.6516 132.946 21.4297 132.772 21.2707C132.753 21.2522 132.738 21.2337 132.716 21.2152V21.2189Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M145.124 25.7528V37.2967C145.124 37.7479 144.717 38.1548 144.265 38.1548H138.876C138.628 38.1548 138.42 38.0475 138.269 37.8922C138.287 37.9107 138.302 37.9292 138.32 37.944C138.339 37.9625 138.357 37.9809 138.376 37.9994C138.394 38.0179 138.413 38.0364 138.431 38.0549C138.45 38.0734 138.468 38.0919 138.487 38.1104C138.505 38.1289 138.524 38.1474 138.542 38.1659C138.561 38.1844 138.579 38.2029 138.598 38.2214C138.617 38.2399 138.635 38.2584 138.654 38.2769C138.672 38.2953 138.691 38.3138 138.709 38.3323C138.728 38.3508 138.746 38.3693 138.765 38.3878C138.783 38.4063 138.802 38.4248 138.82 38.4433C138.839 38.4618 138.857 38.4803 138.876 38.4988C138.894 38.5173 138.913 38.5358 138.931 38.5543C138.95 38.5728 138.968 38.5913 138.987 38.6097C139.005 38.6282 139.024 38.6467 139.042 38.6652C139.061 38.6837 139.079 38.7022 139.098 38.7207C139.116 38.7392 139.135 38.7577 139.153 38.7762C139.172 38.7947 139.19 38.8132 139.209 38.8317C139.227 38.8502 139.246 38.8687 139.264 38.8872C139.283 38.9057 139.301 38.9241 139.32 38.9426C139.338 38.9611 139.357 38.9796 139.375 38.9981C139.394 39.0166 139.412 39.0351 139.431 39.0536C139.449 39.0721 139.468 39.0906 139.486 39.1091C139.505 39.1276 139.523 39.1461 139.542 39.1646C139.56 39.1831 139.579 39.2016 139.597 39.2201C139.616 39.2385 139.634 39.257 139.653 39.2755C139.808 39.4494 140.027 39.5677 140.29 39.5677H145.679C146.131 39.5677 146.538 39.1609 146.538 38.7096V27.1657H148.104L147.404 25.7713H145.143L145.124 25.7528Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M163.688 17.6417C163.688 14.9379 162.567 12.4819 160.764 10.7102C160.745 10.6917 160.727 10.6732 160.708 10.6547C160.69 10.6363 160.671 10.6178 160.653 10.5993C160.634 10.5808 160.616 10.5623 160.597 10.5438C160.579 10.5253 160.56 10.5068 160.542 10.4883C160.523 10.4698 160.505 10.4513 160.486 10.4328C160.468 10.4143 160.449 10.3958 160.431 10.3773L160.375 10.3219C160.375 10.3219 160.338 10.2849 160.32 10.2664L160.264 10.2109C160.264 10.2109 160.227 10.1739 160.209 10.1554C160.19 10.1369 160.172 10.1184 160.153 10.0999C160.135 10.0814 160.116 10.0629 160.098 10.0444C160.079 10.026 160.06 10.0075 160.042 9.98897C160.023 9.97047 160.005 9.95198 159.986 9.93348C159.968 9.91499 159.949 9.8965 159.931 9.878C159.912 9.85951 159.894 9.84101 159.875 9.82252C159.857 9.80402 159.838 9.78553 159.82 9.76704C159.801 9.74854 159.783 9.73005 159.764 9.71156C159.746 9.69307 159.727 9.67457 159.709 9.65607C159.69 9.63758 159.672 9.61909 159.653 9.60059C159.635 9.5821 159.616 9.5636 159.598 9.54511C159.579 9.52661 159.561 9.50813 159.542 9.48963C159.524 9.47114 159.505 9.45264 159.487 9.43415C159.468 9.41566 159.45 9.39716 159.431 9.37867C159.413 9.36017 159.394 9.34168 159.376 9.32318C161.164 11.0912 162.274 13.5361 162.274 16.2288C162.274 20.3936 159.509 23.7447 155.57 25.3278L161.774 36.8236C162.093 37.4117 161.774 38.1367 161.004 38.1367H154.978C154.723 38.1367 154.519 38.022 154.386 37.8926C154.397 37.9037 154.408 37.9148 154.419 37.9259C154.434 37.9444 154.452 37.9628 154.475 37.9813C154.489 37.9998 154.508 38.0183 154.53 38.0368C154.545 38.0553 154.563 38.0738 154.586 38.0923C154.6 38.1108 154.619 38.1293 154.641 38.1478C154.656 38.1663 154.674 38.1848 154.697 38.2033C154.711 38.2218 154.73 38.2402 154.752 38.2587C154.767 38.2772 154.786 38.2957 154.808 38.3142C154.823 38.3327 154.841 38.3512 154.863 38.3697C154.878 38.3882 154.897 38.4067 154.919 38.4252C154.934 38.4437 154.956 38.4622 154.974 38.4807C154.989 38.4992 155.008 38.5177 155.03 38.5362C155.048 38.5546 155.063 38.5731 155.085 38.5916C155.1 38.6101 155.119 38.6286 155.141 38.6471C155.156 38.6656 155.174 38.6841 155.196 38.7026C155.211 38.7211 155.23 38.7396 155.252 38.7581C155.267 38.7766 155.285 38.7951 155.307 38.8136C155.322 38.8321 155.341 38.8506 155.363 38.869C155.378 38.8875 155.396 38.906 155.419 38.9245C155.433 38.943 155.452 38.9615 155.474 38.98C155.493 38.9985 155.507 39.017 155.53 39.0355C155.544 39.054 155.563 39.0725 155.585 39.091C155.6 39.1095 155.618 39.128 155.641 39.1464C155.655 39.1649 155.674 39.1834 155.696 39.2019C155.715 39.2204 155.729 39.2389 155.752 39.2574C155.881 39.4054 156.107 39.5496 156.392 39.5496H162.418C163.188 39.5496 163.507 38.8247 163.188 38.2366L156.984 26.7407C160.927 25.1577 163.688 21.8066 163.688 17.6417Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M153.223 14.3384C153.371 14.3384 153.52 14.3529 153.664 14.3751C153.586 13.9756 153.431 13.602 153.216 13.2654C152.787 13.0694 152.324 12.9436 151.832 12.9436H145.128V18.4585H146.523V14.3344H153.227L153.223 14.3384Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M175.664 8.04624C175.646 8.02774 175.631 8.00925 175.609 7.99075C175.59 7.97226 175.572 7.95377 175.553 7.93527C175.535 7.91678 175.52 7.89828 175.498 7.87978C175.479 7.86129 175.461 7.8428 175.442 7.82431C175.424 7.80582 175.409 7.78732 175.387 7.76883C175.368 7.75034 175.35 7.73183 175.331 7.71334C175.313 7.69485 175.294 7.67636 175.276 7.65786C175.257 7.63937 175.239 7.62087 175.22 7.60238C175.202 7.58388 175.187 7.56539 175.165 7.5469C175.146 7.5284 175.127 7.50991 175.109 7.49142C175.09 7.47293 175.076 7.45443 175.053 7.43593C175.035 7.41744 175.016 7.39895 174.998 7.38046C174.979 7.36196 174.965 7.34346 174.942 7.32497C174.924 7.30648 174.905 7.28798 174.887 7.26949C174.868 7.251 174.85 7.2325 174.831 7.21401C174.813 7.19551 174.798 7.17702 174.776 7.15853C174.757 7.14003 174.743 7.12154 174.72 7.10305C174.702 7.08455 174.687 7.06606 174.665 7.04756C174.646 7.02907 174.628 7.01057 174.609 6.99208C174.591 6.97359 174.572 6.95509 174.554 6.9366C174.535 6.91811 174.517 6.89961 174.498 6.88112C174.48 6.86262 174.465 6.84413 174.443 6.82564C174.424 6.80714 174.406 6.78865 174.387 6.77015C174.376 6.75906 174.365 6.74796 174.354 6.73687C174.502 6.89221 174.598 7.09565 174.598 7.31018V37.274C174.598 37.7252 174.191 38.1321 173.739 38.1321H168.305C168.091 38.1321 167.891 38.036 167.731 37.888C167.743 37.8991 167.754 37.9102 167.761 37.9213C167.78 37.9398 167.798 37.9583 167.817 37.9768C167.835 37.9953 167.854 38.0138 167.872 38.0323C167.891 38.0508 167.905 38.0692 167.928 38.0877C167.946 38.1062 167.965 38.1247 167.983 38.1432C168.002 38.1617 168.02 38.1802 168.039 38.1987C168.057 38.2172 168.076 38.2357 168.094 38.2542C168.113 38.2727 168.128 38.2912 168.15 38.3097C168.168 38.3282 168.187 38.3466 168.205 38.3651C168.224 38.3836 168.239 38.4021 168.261 38.4206C168.279 38.4391 168.298 38.4576 168.316 38.4761C168.335 38.4946 168.35 38.5131 168.372 38.5316C168.39 38.5501 168.409 38.5686 168.427 38.5871C168.446 38.6056 168.464 38.6241 168.483 38.6426C168.501 38.661 168.52 38.6795 168.538 38.698C168.557 38.7165 168.572 38.735 168.594 38.7535C168.612 38.772 168.631 38.7905 168.649 38.809C168.668 38.8275 168.683 38.846 168.705 38.8645C168.724 38.883 168.742 38.9015 168.761 38.92C168.779 38.9385 168.794 38.9569 168.816 38.9754C168.835 38.9939 168.853 39.0124 168.872 39.0309C168.89 39.0494 168.905 39.0679 168.927 39.0864C168.946 39.1049 168.964 39.1234 168.983 39.1419C169.001 39.1604 169.016 39.1789 169.038 39.1974C169.057 39.2159 169.075 39.2344 169.094 39.2528C169.253 39.4267 169.475 39.5451 169.716 39.5451H175.15C175.601 39.5451 176.009 39.1382 176.009 38.6869V8.72311C176.009 8.48269 175.89 8.26077 175.716 8.10172C175.698 8.08322 175.679 8.06473 175.661 8.04624H175.664Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M203.042 8.04723C203.023 8.02874 203.005 8.01025 202.986 7.99175C202.968 7.97326 202.949 7.95477 202.931 7.93627C202.912 7.91778 202.894 7.89928 202.875 7.88079C202.857 7.86229 202.838 7.8438 202.82 7.82531C202.801 7.80681 202.783 7.78832 202.764 7.76983C202.746 7.75133 202.727 7.73284 202.709 7.71434C202.69 7.69585 202.672 7.67736 202.653 7.65886C202.635 7.64037 202.616 7.62187 202.598 7.60338C202.579 7.58488 202.561 7.5664 202.542 7.5479C202.524 7.52941 202.505 7.51091 202.487 7.49242C202.468 7.47393 202.45 7.45543 202.431 7.43694C202.412 7.41844 202.394 7.39995 202.375 7.38145C202.357 7.36296 202.338 7.34446 202.32 7.32597C202.301 7.30748 202.283 7.28899 202.264 7.27049C202.246 7.252 202.227 7.23351 202.209 7.21501C202.19 7.19652 202.172 7.17802 202.153 7.15952C202.135 7.14103 202.116 7.12254 202.098 7.10405C202.079 7.08555 202.061 7.06706 202.042 7.04856C202.024 7.03007 202.005 7.01157 201.987 6.99308C201.968 6.97459 201.95 6.9561 201.931 6.9376C201.913 6.91911 201.894 6.90061 201.876 6.88211C201.857 6.86362 201.839 6.84513 201.82 6.82664C201.802 6.80814 201.783 6.78965 201.765 6.77115C201.746 6.75266 201.731 6.73417 201.713 6.71937C201.865 6.87842 201.961 7.08925 201.961 7.31487V12.2491C201.961 12.7003 201.598 13.1072 201.102 13.1072H188.553V17.1758H189.949V14.5016H202.498C202.994 14.5016 203.356 14.0947 203.356 13.6435V8.70932C203.356 8.4689 203.249 8.24697 203.079 8.08422C203.06 8.06573 203.042 8.04724 203.023 8.02874L203.042 8.04723Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M189.963 26.7853H200.291C200.743 26.7853 201.15 26.4228 201.15 25.9272V20.993C201.15 20.7526 201.032 20.5307 200.858 20.3716C200.839 20.3531 200.824 20.3346 200.802 20.3161C200.784 20.2976 200.769 20.2791 200.747 20.2607C200.728 20.2422 200.709 20.2237 200.691 20.2052C200.672 20.1867 200.658 20.1682 200.635 20.1497C200.617 20.1312 200.598 20.1127 200.58 20.0942C200.561 20.0757 200.547 20.0572 200.524 20.0387C200.506 20.0202 200.487 20.0017 200.469 19.9832C200.45 19.9648 200.436 19.9463 200.413 19.9278C200.395 19.9093 200.376 19.8908 200.358 19.8723C200.339 19.8538 200.325 19.8353 200.302 19.8168C200.284 19.7983 200.265 19.7798 200.247 19.7613C200.228 19.7428 200.21 19.7243 200.191 19.7058C200.173 19.6873 200.154 19.6689 200.136 19.6504C200.117 19.6319 200.102 19.6134 200.08 19.5949C200.062 19.5764 200.043 19.5579 200.025 19.5394C200.006 19.5209 199.991 19.5024 199.969 19.4839C199.951 19.4654 199.932 19.4469 199.914 19.4284C199.895 19.4099 199.88 19.3914 199.858 19.3729C199.84 19.3545 199.821 19.336 199.803 19.3175C199.784 19.299 199.769 19.2805 199.747 19.262C199.729 19.2435 199.71 19.225 199.692 19.2065C199.673 19.188 199.658 19.1695 199.636 19.151C199.617 19.1325 199.599 19.114 199.58 19.0955C199.562 19.077 199.547 19.0586 199.525 19.0401C199.514 19.029 199.503 19.0179 199.495 19.0105C199.64 19.1658 199.736 19.3656 199.736 19.5801V24.5143C199.736 25.0136 199.329 25.3724 198.877 25.3724H188.549V29.9404H189.945V26.7668L189.963 26.7853Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M203.041 33.0765C203.023 33.058 203.004 33.0395 202.986 33.021C202.967 33.0025 202.949 32.9841 202.93 32.9656C202.912 32.9471 202.893 32.9286 202.875 32.9101C202.856 32.8916 202.838 32.8731 202.819 32.8546C202.801 32.8361 202.782 32.8176 202.764 32.7991C202.745 32.7806 202.727 32.7621 202.708 32.7436C202.69 32.7251 202.671 32.7066 202.653 32.6881C202.634 32.6697 202.616 32.6512 202.597 32.6327C202.579 32.6142 202.56 32.5957 202.542 32.5772C202.523 32.5587 202.505 32.5402 202.486 32.5217C202.468 32.5032 202.449 32.4847 202.431 32.4662C202.412 32.4477 202.394 32.4292 202.375 32.4107C202.357 32.3922 202.338 32.3738 202.32 32.3553C202.301 32.3368 202.283 32.3183 202.264 32.2998C202.246 32.2813 202.227 32.2628 202.209 32.2443C202.19 32.2258 202.172 32.2073 202.153 32.1888C202.135 32.1703 202.116 32.1518 202.097 32.1333C202.079 32.1148 202.06 32.0964 202.042 32.0779C202.023 32.0594 202.005 32.0409 201.986 32.0224C201.968 32.0039 201.949 31.9854 201.931 31.9669C201.912 31.9484 201.894 31.9299 201.875 31.9114C201.857 31.8929 201.838 31.8744 201.82 31.8559C201.801 31.8374 201.783 31.8189 201.764 31.8004C201.746 31.782 201.731 31.7635 201.713 31.7487C201.864 31.9077 201.961 32.1185 201.961 32.3442V37.2783C201.961 37.7296 201.598 38.1365 201.102 38.1365H182.349C182.101 38.1365 181.893 38.0292 181.742 37.8738C181.76 37.8923 181.775 37.9108 181.794 37.9256C181.812 37.9441 181.831 37.9626 181.849 37.9811C181.868 37.9996 181.886 38.0181 181.905 38.0366C181.923 38.0551 181.942 38.0736 181.96 38.0921C181.979 38.1106 181.997 38.1291 182.016 38.1476C182.034 38.1661 182.053 38.1845 182.071 38.203C182.09 38.2215 182.108 38.24 182.127 38.2585C182.145 38.277 182.164 38.2955 182.182 38.314C182.201 38.3325 182.219 38.351 182.238 38.3695C182.256 38.388 182.275 38.4065 182.293 38.425C182.312 38.4435 182.33 38.462 182.349 38.4804C182.367 38.4989 182.386 38.5174 182.404 38.5359C182.423 38.5544 182.441 38.5729 182.46 38.5914C182.478 38.6099 182.497 38.6284 182.515 38.6469C182.534 38.6654 182.552 38.6839 182.571 38.7024C182.589 38.7209 182.608 38.7394 182.626 38.7579C182.645 38.7763 182.663 38.7948 182.682 38.8133C182.7 38.8318 182.719 38.8503 182.737 38.8688C182.756 38.8873 182.774 38.9058 182.793 38.9243C182.812 38.9428 182.83 38.9613 182.849 38.9798C182.867 38.9983 182.886 39.0168 182.904 39.0353C182.923 39.0538 182.941 39.0722 182.96 39.0907C182.978 39.1092 182.997 39.1277 183.015 39.1462C183.034 39.1647 183.052 39.1832 183.071 39.2017C183.089 39.2202 183.108 39.2387 183.126 39.2572C183.282 39.431 183.5 39.5494 183.763 39.5494H202.516C203.012 39.5494 203.375 39.1425 203.375 38.6913V33.7571C203.375 33.5167 203.267 33.2948 203.097 33.132C203.078 33.1135 203.06 33.095 203.041 33.0765Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M214.254 37.2963C214.254 37.7475 213.892 38.1544 213.396 38.1544H208.006C207.791 38.1544 207.588 38.0582 207.432 37.9103C207.443 37.9214 207.454 37.9324 207.465 37.9435C207.484 37.962 207.499 37.9805 207.521 37.999C207.539 38.0175 207.558 38.036 207.577 38.0545C207.595 38.073 207.61 38.0915 207.632 38.11C207.651 38.1285 207.669 38.147 207.688 38.1655C207.706 38.184 207.721 38.2025 207.743 38.221C207.762 38.2394 207.78 38.2579 207.799 38.2764C207.817 38.2949 207.832 38.3134 207.854 38.3319C207.873 38.3504 207.891 38.3689 207.91 38.3874C207.928 38.4059 207.943 38.4244 207.965 38.4429C207.984 38.4614 208.002 38.4799 208.021 38.4984C208.039 38.5169 208.054 38.5353 208.076 38.5538C208.095 38.5723 208.113 38.5908 208.132 38.6093C208.15 38.6278 208.165 38.6463 208.187 38.6648C208.206 38.6833 208.224 38.7018 208.243 38.7203C208.261 38.7388 208.276 38.7573 208.298 38.7758C208.317 38.7943 208.335 38.8128 208.354 38.8312C208.372 38.8497 208.391 38.8682 208.409 38.8867C208.428 38.9052 208.446 38.9237 208.465 38.9422C208.483 38.9607 208.498 38.9792 208.52 38.9977C208.539 39.0162 208.557 39.0347 208.576 39.0532C208.594 39.0717 208.609 39.0902 208.631 39.1087C208.65 39.1272 208.669 39.1457 208.687 39.1641C208.706 39.1826 208.724 39.2011 208.743 39.2196C208.761 39.2381 208.776 39.2566 208.798 39.2751C208.957 39.449 209.179 39.5673 209.42 39.5673H214.81C215.306 39.5673 215.668 39.1604 215.668 38.7092V22.0092L214.273 20.6074V37.3148L214.254 37.2963Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M235.417 8.04624C235.398 8.02774 235.383 8.00925 235.361 7.99075C235.343 7.97226 235.324 7.95377 235.306 7.93527C235.287 7.91678 235.272 7.89828 235.25 7.87978C235.232 7.86129 235.213 7.8428 235.195 7.82431C235.176 7.80582 235.161 7.78732 235.139 7.76883C235.121 7.75034 235.102 7.73183 235.084 7.71334C235.065 7.69485 235.05 7.67636 235.028 7.65786C235.01 7.63937 234.991 7.62087 234.973 7.60238C234.954 7.58388 234.939 7.56539 234.917 7.5469C234.899 7.5284 234.88 7.50991 234.862 7.49142C234.843 7.47293 234.828 7.45443 234.806 7.43593C234.788 7.41744 234.769 7.39895 234.751 7.38046C234.732 7.36196 234.717 7.34346 234.695 7.32497C234.677 7.30648 234.658 7.28798 234.639 7.26949C234.621 7.251 234.602 7.2325 234.584 7.21401C234.565 7.19551 234.547 7.17702 234.528 7.15853C234.51 7.14003 234.495 7.12154 234.473 7.10305C234.454 7.08455 234.436 7.06606 234.417 7.04756C234.399 7.02907 234.384 7.01057 234.362 6.99208C234.343 6.97359 234.325 6.95509 234.306 6.9366C234.288 6.91811 234.273 6.89961 234.251 6.88112C234.232 6.86262 234.214 6.84413 234.195 6.82564C234.177 6.80714 234.158 6.78865 234.14 6.77015C234.129 6.75906 234.118 6.74796 234.107 6.73687C234.255 6.89221 234.351 7.09565 234.351 7.31018V37.7733C234.351 38.2246 233.944 38.5871 233.492 38.5871H232.767C232.63 38.5871 232.267 38.4502 232.178 38.3614L233.592 39.7744C233.685 39.8668 234.044 40 234.181 40H234.906C235.358 40 235.765 39.6375 235.765 39.1863V8.72311C235.765 8.48269 235.646 8.26077 235.472 8.10172C235.454 8.08322 235.435 8.06473 235.417 8.04624Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M265.723 12.4815C265.723 12.4815 265.686 12.4445 265.668 12.426C265.649 12.4075 265.631 12.389 265.612 12.3705C265.594 12.352 265.575 12.3335 265.557 12.3151C265.538 12.2966 265.52 12.2781 265.501 12.2596C265.483 12.2411 265.464 12.2226 265.446 12.2041C265.427 12.1856 265.409 12.1671 265.39 12.1486C265.372 12.1301 265.353 12.1116 265.335 12.0931C265.316 12.0746 265.298 12.0561 265.279 12.0376C265.261 12.0192 265.242 12.0007 265.224 11.9822C265.205 11.9637 265.187 11.9452 265.168 11.9267C265.15 11.9082 265.131 11.8897 265.113 11.8712C265.094 11.8527 265.076 11.8342 265.057 11.8157C265.039 11.7972 265.02 11.7787 265.002 11.7602C264.983 11.7417 264.965 11.7233 264.946 11.7048C264.928 11.6863 264.909 11.6678 264.891 11.6493C264.872 11.6308 264.854 11.6123 264.835 11.5938C264.817 11.5753 264.798 11.5568 264.78 11.5383C264.761 11.5198 264.743 11.5013 264.724 11.4828C264.705 11.4643 264.687 11.4458 264.669 11.4273C264.65 11.4089 264.631 11.3904 264.613 11.3719C264.606 11.3645 264.598 11.3571 264.591 11.3497C264.602 11.3645 264.609 11.3793 264.62 11.3941C267.334 14.231 269.007 18.0556 269.007 22.2537C269.007 31.0346 261.848 38.1399 253.108 38.1399H242.055C241.833 38.1399 241.636 38.0364 241.488 37.881C241.503 37.8995 241.522 37.9143 241.54 37.9328C241.559 37.9513 241.577 37.9698 241.596 37.9883C241.614 38.0068 241.633 38.0253 241.651 38.0438C241.67 38.0623 241.688 38.0808 241.707 38.0993C241.725 38.1178 241.744 38.1362 241.762 38.1547C241.781 38.1732 241.799 38.1917 241.818 38.2102C241.836 38.2287 241.855 38.2472 241.873 38.2657C241.892 38.2842 241.91 38.3027 241.929 38.3212C241.947 38.3397 241.966 38.3582 241.984 38.3767C242.003 38.3952 242.021 38.4137 242.04 38.4321C242.058 38.4506 242.077 38.4691 242.095 38.4876C242.114 38.5061 242.132 38.5246 242.151 38.5431C242.169 38.5616 242.188 38.5801 242.206 38.5986C242.225 38.6171 242.243 38.6356 242.262 38.6541C242.28 38.6726 242.299 38.6911 242.317 38.7096C242.336 38.728 242.354 38.7465 242.373 38.765C242.392 38.7835 242.41 38.802 242.429 38.8205C242.447 38.839 242.466 38.8575 242.484 38.876C242.503 38.8945 242.521 38.913 242.54 38.9315C242.558 38.95 242.577 38.9685 242.595 38.987C242.614 39.0055 242.632 39.0239 242.651 39.0424C242.669 39.0609 242.688 39.0794 242.706 39.0979C242.725 39.1164 242.743 39.1349 242.762 39.1534C242.78 39.1719 242.799 39.1904 242.817 39.2089C242.836 39.2274 242.854 39.2459 242.873 39.2644C243.021 39.4345 243.232 39.5529 243.469 39.5529H254.522C263.266 39.5529 270.425 32.4475 270.425 23.6666C270.425 19.3094 268.626 15.3518 265.727 12.4852L265.723 12.4815Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M252.671 13.1251H248.321V29.9138L249.717 29.9142V14.5198H254.066C255.691 14.5198 257.168 14.9378 258.438 15.6591C258.194 15.2929 257.924 14.9489 257.631 14.6271C256.243 13.6802 254.559 13.1291 252.675 13.1291L252.671 13.1251Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M39.5244 26.0048H49.8522C50.3038 26.0048 50.711 25.6423 50.711 25.1466V20.2125C50.711 19.972 50.5926 19.7501 50.4186 19.5911C50.4001 19.5726 50.3816 19.5541 50.3631 19.5356C50.3446 19.5171 50.3297 19.4986 50.3075 19.4801C50.289 19.4616 50.2705 19.4431 50.252 19.4246C50.2335 19.4061 50.2187 19.3876 50.1965 19.3691C50.178 19.3507 50.1595 19.3322 50.141 19.3137C50.1225 19.2952 50.1077 19.2767 50.0854 19.2582C50.0669 19.2397 50.0484 19.2212 50.0299 19.2027C50.0114 19.1842 49.9966 19.1657 49.9744 19.1472C49.9559 19.1287 49.9374 19.1102 49.9189 19.0917C49.9004 19.0732 49.8855 19.0547 49.8633 19.0363C49.8448 19.0178 49.8263 18.9993 49.8078 18.9808C49.7893 18.9623 49.7745 18.9438 49.7523 18.9253C49.7338 18.9068 49.7153 18.8883 49.6968 18.8698C49.6782 18.8513 49.6634 18.8328 49.6412 18.8143C49.6227 18.7958 49.6042 18.7773 49.5857 18.7588C49.5672 18.7403 49.5524 18.7219 49.5302 18.7034C49.5117 18.6849 49.4932 18.6664 49.4746 18.6479C49.4561 18.6294 49.4413 18.6109 49.4191 18.5924C49.4006 18.5739 49.3821 18.5554 49.3636 18.5369C49.3451 18.5184 49.3303 18.4999 49.3081 18.4814C49.2896 18.4629 49.2711 18.4445 49.2525 18.426C49.234 18.4075 49.2155 18.389 49.197 18.3705C49.1785 18.352 49.16 18.3335 49.1415 18.315C49.123 18.2965 49.1082 18.278 49.086 18.2595C49.0749 18.2484 49.0638 18.2373 49.0527 18.2262C49.2007 18.3816 49.297 18.585 49.297 18.7995V23.7337C49.297 24.233 48.8898 24.5918 48.4382 24.5918H38.1104V29.1598H39.5059V25.9863L39.5244 26.0048Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M39.5244 13.7396H52.0733C52.573 13.7396 52.9321 13.3327 52.9321 12.8777V7.94356C52.9321 7.70314 52.8247 7.48121 52.6544 7.31847C52.6359 7.29997 52.6174 7.28148 52.5989 7.26299C52.5804 7.24449 52.5619 7.226 52.5434 7.2075C52.5249 7.18901 52.5064 7.17051 52.4879 7.15202C52.4693 7.13353 52.4508 7.11503 52.4323 7.09654C52.4138 7.07805 52.3953 7.05955 52.3768 7.04106C52.3583 7.02256 52.3398 7.00407 52.3213 6.98558C52.3028 6.96708 52.2843 6.94859 52.2658 6.93009C52.2472 6.9116 52.2287 6.89311 52.2102 6.87461C52.1917 6.85612 52.1732 6.83763 52.1547 6.81913C52.1362 6.80064 52.1177 6.78214 52.0992 6.76365C52.0807 6.74516 52.0622 6.72666 52.0436 6.70817C52.0251 6.68967 52.0066 6.67118 51.9881 6.65269C51.9696 6.63419 51.9511 6.6157 51.9326 6.5972C51.9141 6.57871 51.8956 6.56022 51.8771 6.54172C51.8586 6.52323 51.84 6.50474 51.8215 6.48624C51.803 6.46775 51.7845 6.44925 51.766 6.43076C51.7475 6.41227 51.729 6.39377 51.7105 6.37528C51.692 6.35678 51.6735 6.33829 51.655 6.31979C51.6365 6.3013 51.618 6.28281 51.5994 6.26432C51.5809 6.24582 51.5624 6.22733 51.5439 6.20883C51.5254 6.19034 51.5069 6.17184 51.4884 6.15335C51.4699 6.13486 51.4514 6.11636 51.4329 6.09787C51.4144 6.07937 51.3959 6.06088 51.3773 6.04239C51.3588 6.02389 51.3403 6.0054 51.3218 5.98691C51.3033 5.96841 51.2885 5.94992 51.27 5.93512C51.4218 6.09417 51.518 6.305 51.518 6.53063V11.4648C51.518 11.9161 51.1552 12.3266 50.6592 12.3266H38.1104V16.3953H39.5059V13.7211L39.5244 13.7396Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M50.675 37.3746H31.922C31.674 37.3746 31.4667 37.271 31.3149 37.1119C31.3335 37.1304 31.3483 37.1489 31.3668 37.1637C31.3853 37.1822 31.4038 37.2007 31.4223 37.2192C31.4408 37.2377 31.4593 37.2562 31.4778 37.2747C31.4963 37.2932 31.5148 37.3117 31.5333 37.3302C31.5518 37.3487 31.5704 37.3672 31.5889 37.3857C31.6074 37.4041 31.6259 37.4226 31.6444 37.4411C31.6629 37.4596 31.6814 37.4781 31.6999 37.4966C31.7184 37.5151 31.7369 37.5336 31.7554 37.5521C31.774 37.5706 31.7925 37.5891 31.811 37.6076C31.8295 37.6261 31.848 37.6446 31.8665 37.6631C31.885 37.6816 31.9035 37.7001 31.922 37.7185C31.9405 37.737 31.959 37.7555 31.9776 37.774C31.9961 37.7925 32.0146 37.811 32.0331 37.8295C32.0516 37.848 32.0701 37.8665 32.0886 37.885C32.1071 37.9035 32.1256 37.922 32.1441 37.9405C32.1626 37.959 32.1812 37.9775 32.1997 37.996C32.2182 38.0145 32.2367 38.0329 32.2552 38.0514C32.2737 38.0699 32.2922 38.0884 32.3107 38.1069C32.3292 38.1254 32.3477 38.1439 32.3662 38.1624C32.3847 38.1809 32.4033 38.1994 32.4218 38.2179C32.4403 38.2364 32.4588 38.2549 32.4773 38.2734C32.4958 38.2919 32.5143 38.3104 32.5328 38.3288C32.5513 38.3473 32.5698 38.3658 32.5883 38.3843C32.6068 38.4028 32.6254 38.4213 32.6439 38.4398C32.6624 38.4583 32.6809 38.4768 32.6994 38.4953C32.8549 38.6691 33.0733 38.7875 33.3361 38.7875H52.089C52.5888 38.7875 52.9478 38.3806 52.9478 37.9294V32.9952C52.9478 32.7548 52.8405 32.5329 52.6702 32.3701C52.6517 32.3516 52.6332 32.3331 52.6147 32.3146C52.5962 32.2961 52.5777 32.2776 52.5592 32.2591C52.5407 32.2406 52.5221 32.2222 52.5036 32.2037C52.4851 32.1852 52.4666 32.1667 52.4481 32.1482C52.4296 32.1297 52.4111 32.1112 52.3926 32.0927C52.3741 32.0742 52.3556 32.0557 52.3371 32.0372C52.3185 32.0187 52.3 32.0002 52.2815 31.9817C52.263 31.9632 52.2445 31.9447 52.226 31.9263C52.2075 31.9078 52.189 31.8893 52.1705 31.8708C52.152 31.8523 52.1335 31.8338 52.1149 31.8153C52.0964 31.7968 52.0779 31.7783 52.0594 31.7598C52.0409 31.7413 52.0224 31.7228 52.0039 31.7043C51.9854 31.6858 51.9669 31.6673 51.9484 31.6488C51.9299 31.6304 51.9113 31.6119 51.8928 31.5934C51.8743 31.5749 51.8558 31.5564 51.8373 31.5379C51.8188 31.5194 51.8003 31.5009 51.7818 31.4824C51.7633 31.4639 51.7448 31.4454 51.7263 31.4269C51.7078 31.4084 51.6893 31.3899 51.6707 31.3714C51.6522 31.3529 51.6337 31.3345 51.6152 31.316C51.5967 31.2975 51.5782 31.279 51.5597 31.2605C51.5412 31.242 51.5227 31.2235 51.5042 31.205C51.4857 31.1865 51.4671 31.168 51.4486 31.1495C51.4301 31.131 51.4116 31.1125 51.3931 31.094C51.3746 31.0755 51.3561 31.057 51.3376 31.0386C51.3191 31.0201 51.3043 31.0016 51.2858 30.9868C51.4375 31.1458 51.5338 31.3566 51.5338 31.5823V36.5164C51.5338 36.9677 51.171 37.3746 50.675 37.3746Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M18.6916 20.0088L18.3955 19.8868L18.6768 19.7351C21.1792 18.4073 23.8518 15.8625 23.8518 12.7185C23.8518 8.08027 19.6393 4.44806 14.2644 4.44806H3.71073C3.31835 4.44806 3 4.76616 3 5.15823V35.1221C3 35.5141 3.31835 35.8322 3.71073 35.8322H14.9455C20.3981 35.8322 24.6699 32.0595 24.6699 27.2473C24.6699 23.1047 20.9238 20.9335 18.6916 20.0088ZM9.76306 10.6657H13.4463C15.3082 10.6657 16.7667 12.0823 16.7667 13.8947C16.7667 15.7072 15.2749 17.305 13.4463 17.305H9.76306V10.6657ZM14.0385 29.659H9.76675V22.8828H13.5869C15.4119 22.8828 17.4515 24.3031 17.4515 26.2043C17.4515 28.1055 15.919 29.659 14.0385 29.659Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M36.5814 23.0675H47.061C47.4534 23.0675 47.7717 22.7494 47.7717 22.3574V17.4232C47.7717 17.0533 47.4349 16.713 47.061 16.713H36.5814V10.7987H49.282C49.6744 10.7987 49.9928 10.4806 49.9928 10.0885V5.15434C49.9928 4.76227 49.6744 4.44417 49.282 4.44417H30.5291C30.1367 4.44417 29.8184 4.76227 29.8184 5.15434V35.1182C29.8184 35.5102 30.1367 35.8283 30.5291 35.8283H49.282C49.6744 35.8283 49.9928 35.5102 49.9928 35.1182V30.184C49.9928 29.7919 49.6744 29.4738 49.282 29.4738H36.5814V23.0601V23.0675Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M60.3655 12.3555C60.3655 10.9981 61.713 9.89586 63.3713 9.89586C65.8071 9.89586 68.6759 11.8044 69.6161 12.4332C69.7642 12.5331 69.8679 12.6034 69.9234 12.633C70.0604 12.7402 70.2269 12.7328 70.3417 12.7143C70.6786 12.6551 71.0746 12.3888 71.2634 12.0966L73.577 8.60868C73.714 8.36826 73.8139 7.6396 73.3549 7.37329C71.6262 6.10831 68.0947 4 63.7378 4C56.6527 4 53.4248 8.59019 53.4248 12.8586C53.4248 18.1737 58.1519 21.1549 62.1165 22.7232C65.3666 24.0104 66.8769 25.5084 66.8769 27.4355C66.8769 29.0962 65.4998 30.302 63.6008 30.302C62.3645 30.302 60.2582 29.8841 57.2487 27.8904C57.1709 27.8386 57.1228 27.8054 57.1006 27.7943C56.9711 27.7055 56.7526 27.6389 56.5194 27.6389C56.4454 27.6389 56.3677 27.6463 56.2899 27.6611C56.1271 27.6944 55.9013 27.7832 55.7569 28.0125L53.6321 31.7668C53.3212 32.3105 53.4026 32.4214 53.8357 32.8542C54.4095 33.4275 57.6003 36.2941 63.9229 36.2941C70.2454 36.2941 74.4617 31.6077 74.4617 27.0767C74.4617 21.1771 69.2941 18.44 65.4073 16.8976C61.8314 15.4514 60.3729 14.1384 60.3729 12.3666L60.3655 12.3555Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M83.4532 10.8026V35.1257C83.4532 35.4956 83.7901 35.8359 84.164 35.8359H89.6018C89.972 35.8359 90.3125 35.4993 90.3125 35.1257V10.8026H96.9423C97.3347 10.8026 97.6531 10.4845 97.6531 10.0924V5.15823C97.6531 4.76616 97.3347 4.44806 96.9423 4.44806H76.8309C76.4385 4.44806 76.1201 4.76616 76.1201 5.15823V10.0924C76.1201 10.4845 76.4385 10.8026 76.8309 10.8026H83.4606H83.4532Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M118.935 11.579H131.636C132.028 11.579 132.346 11.2609 132.346 10.8689V5.9347C132.346 5.54263 132.028 5.22453 131.636 5.22453H112.883C112.49 5.22453 112.172 5.54263 112.172 5.9347V35.8985C112.172 36.2906 112.49 36.6087 112.883 36.6087H118.228C118.598 36.6087 118.939 36.2721 118.939 35.8985V24.7467H129.418C129.788 24.7467 130.129 24.4101 130.129 24.0365V19.1024C130.129 18.7325 129.792 18.3922 129.418 18.3922H118.939V11.5716L118.935 11.579Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M153.605 36.6124H159.631C159.92 36.6124 160.15 36.4977 160.275 36.2832C160.405 36.065 160.405 35.7728 160.268 35.5212L153.983 23.8738L154.138 23.8109C158.214 22.1723 160.749 18.7399 160.749 14.8525C160.749 9.54471 156.389 5.22453 151.025 5.22453H137.48C137.088 5.22453 136.77 5.54263 136.77 5.9347V35.8985C136.77 36.2906 137.088 36.6087 137.48 36.6087H142.87C143.24 36.6087 143.581 36.2721 143.581 35.8985V24.2067H146.949L146.99 24.2881L153.016 36.2832C153.079 36.409 153.294 36.6087 153.605 36.6087V36.6124ZM150.436 18.7621H143.581V11.3978H150.436C152.383 11.3978 154.031 13.0438 154.031 14.9893C154.031 16.9349 152.35 18.7621 150.436 18.7621Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M166.925 5.22842H172.359C172.751 5.22842 173.069 5.54652 173.069 5.93859V35.9024C173.069 36.2945 172.751 36.6126 172.359 36.6126H166.925C166.532 36.6126 166.214 36.2945 166.214 35.9024V5.93859C166.214 5.54652 166.532 5.22842 166.925 5.22842Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M187.024 11.579H199.725C200.117 11.579 200.436 11.2609 200.436 10.8689V5.9347C200.436 5.54263 200.117 5.22453 199.725 5.22453H180.972C180.58 5.22453 180.261 5.54263 180.261 5.9347V35.8985C180.261 36.2906 180.58 36.6087 180.972 36.6087H199.725C200.117 36.6087 200.436 36.2906 200.436 35.8985V30.9643C200.436 30.5723 200.117 30.2542 199.725 30.2542H187.024V23.8405H197.504C197.896 23.8405 198.215 23.5224 198.215 23.1303V18.1962C198.215 17.8263 197.878 17.486 197.504 17.486H187.024V11.5716V11.579Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M231.39 37.0641H232.115C232.5 37.0641 232.826 36.7608 232.826 36.402V5.93886C232.826 5.56898 232.489 5.22869 232.115 5.22869H226.681C226.289 5.22869 225.97 5.54679 225.97 5.93886V22.158H225.711L225.667 22.1173L207.636 4.77744H206.562C206.177 4.77744 205.852 5.08075 205.852 5.44323L205.896 35.9064C205.896 36.2763 206.233 36.6166 206.607 36.6166H211.996C212.389 36.6166 212.707 36.2985 212.707 35.9064V18.8735H212.966L213.011 18.9179L230.905 36.8866C230.96 36.942 231.282 37.0678 231.386 37.0678L231.39 37.0641Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M251.727 5.22842H240.673C240.314 5.22842 240.011 5.55391 240.011 5.93859V35.9024C240.011 36.2871 240.314 36.6126 240.673 36.6126H251.727C260.411 36.6126 267.478 29.5516 267.478 20.8743C267.478 12.1969 260.411 5.22842 251.727 5.22842ZM251.275 30.2137H246.774V11.5792H251.275C256.398 11.5792 260.259 15.5739 260.259 20.8743C260.259 26.1746 256.395 30.2137 251.275 30.2137Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,176 @@
|
||||
import { levelVariants } from "../../variants"
|
||||
|
||||
import type { LevelProps } from "../../levels"
|
||||
|
||||
export default function CloseFriend({
|
||||
className,
|
||||
color,
|
||||
height = "44",
|
||||
width = "310",
|
||||
...props
|
||||
}: LevelProps) {
|
||||
const classNames = levelVariants({
|
||||
className,
|
||||
color,
|
||||
})
|
||||
return (
|
||||
<svg
|
||||
className={classNames}
|
||||
fill="none"
|
||||
height={height}
|
||||
viewBox="0 0 310 44"
|
||||
width={width}
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
d="M83.8796 11.8851C83.8796 11.8851 83.8428 11.8474 83.8244 11.8286C83.806 11.8098 83.7876 11.791 83.7692 11.7721C83.7508 11.7533 83.7324 11.7345 83.7141 11.7156C83.6957 11.6968 83.6773 11.678 83.6589 11.6591C83.6405 11.6403 83.6221 11.6215 83.6037 11.6026C83.5853 11.5838 83.5669 11.565 83.5486 11.5461C83.5302 11.5273 83.5118 11.5085 83.4934 11.4897C83.475 11.4708 83.4566 11.452 83.4382 11.4332C83.4198 11.4143 83.4014 11.3955 83.383 11.3767C83.3647 11.3578 83.3463 11.339 83.3279 11.3202C83.3095 11.3013 83.2911 11.2825 83.2727 11.2637C83.2543 11.2448 83.2359 11.226 83.2176 11.2072C83.1992 11.1884 83.1808 11.1695 83.1624 11.1507C83.144 11.1319 83.1256 11.113 83.1072 11.0942C83.0888 11.0754 83.0704 11.0565 83.052 11.0377C83.0337 11.0189 83.0153 11 82.9969 10.9812C82.9785 10.9624 82.9601 10.9436 82.9417 10.9247C82.9233 10.9059 82.9049 10.8871 82.8865 10.8682C82.8681 10.8494 82.8498 10.8306 82.8314 10.8117C82.813 10.7929 82.7946 10.7741 82.7762 10.7552C82.7578 10.7364 82.7394 10.7176 82.721 10.6987C82.7027 10.6799 82.6843 10.6611 82.6659 10.6423C82.6659 10.6423 82.6585 10.6347 82.6585 10.631C85.4978 13.546 87.2448 17.5796 87.2448 22.0464C87.2448 30.9761 80.2679 38.0792 71.5478 38.0792C67.1822 38.0792 63.2652 36.3015 60.4443 33.4053C60.448 33.4091 60.4517 33.4128 60.4554 33.4166C60.4738 33.4354 60.4921 33.4543 60.5105 33.4731C60.5289 33.4919 60.5473 33.5108 60.5657 33.5296C60.5841 33.5484 60.6025 33.5672 60.6209 33.5861C60.6393 33.6049 60.6577 33.6237 60.676 33.6426C60.6944 33.6614 60.7128 33.6802 60.7312 33.6991C60.7496 33.7179 60.768 33.7367 60.7864 33.7556C60.8048 33.7744 60.8231 33.7932 60.8415 33.8121C60.8599 33.8309 60.8783 33.8497 60.8967 33.8685C60.9151 33.8874 60.9335 33.9062 60.9519 33.925C60.9703 33.9439 60.9887 33.9627 61.007 33.9815C61.0254 34.0004 61.0438 34.0192 61.0622 34.038C61.0806 34.0569 61.099 34.0757 61.1174 34.0945C61.1358 34.1134 61.1542 34.1322 61.1726 34.151C61.1909 34.1698 61.2093 34.1887 61.2277 34.2075C61.2461 34.2263 61.2645 34.2452 61.2829 34.264C61.3013 34.2828 61.3197 34.3017 61.3381 34.3205C61.3564 34.3393 61.3748 34.3582 61.3932 34.377C61.4116 34.3958 61.43 34.4146 61.4484 34.4335C61.4668 34.4523 61.4852 34.4711 61.5036 34.49C61.5219 34.5088 61.5403 34.5276 61.5587 34.5465C61.5771 34.5653 61.5955 34.5841 61.6139 34.603C61.6323 34.6218 61.6507 34.6406 61.6691 34.6595C64.4936 37.567 68.4179 39.3559 72.7945 39.3559C81.5147 39.3559 88.4916 32.2566 88.4916 23.3231C88.4916 18.8413 86.7336 14.8002 83.8832 11.8851H83.8796Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M71.5553 13.0829C66.7999 13.0829 62.876 17.1465 62.876 22.0577C62.876 23.9031 63.446 25.6205 64.4023 27.0479C64.6818 27.2965 64.9723 27.5262 65.2813 27.7371C64.542 26.4302 64.108 24.9238 64.108 23.3193C64.108 18.4082 68.0323 14.3444 72.7878 14.3444C74.3582 14.3444 75.8367 14.7851 77.1129 15.5459C76.9033 15.2295 76.6752 14.9244 76.4288 14.6382C75.0349 13.659 73.3575 13.0791 71.5553 13.0791V13.0829Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M124.461 14.2124H136.539C137.017 14.2124 137.366 13.8094 137.366 13.365V8.49905C137.366 8.25801 137.263 8.03581 137.098 7.87762C137.08 7.85879 137.061 7.83996 137.043 7.82113C137.024 7.8023 137.006 7.78347 136.988 7.76464C136.969 7.74581 136.951 7.72698 136.932 7.70815C136.914 7.68931 136.896 7.67048 136.877 7.65165C136.859 7.63282 136.841 7.61399 136.822 7.59516C136.804 7.57633 136.785 7.55749 136.767 7.53866C136.749 7.51983 136.73 7.501 136.712 7.48217C136.693 7.46334 136.675 7.44451 136.657 7.42568C136.638 7.40685 136.62 7.38802 136.601 7.36918C136.583 7.35035 136.565 7.33152 136.546 7.31269C136.528 7.29386 136.51 7.27503 136.491 7.2562C136.473 7.23737 136.454 7.21854 136.436 7.19971C136.418 7.18087 136.399 7.16204 136.381 7.14321C136.362 7.12438 136.344 7.10555 136.326 7.08672C136.307 7.06789 136.289 7.04906 136.27 7.03022C136.252 7.01139 136.234 6.99256 136.215 6.97373C136.197 6.9549 136.179 6.93607 136.16 6.91724C136.142 6.89841 136.123 6.87958 136.105 6.86075C136.087 6.84191 136.068 6.82308 136.05 6.80425C136.031 6.78542 136.013 6.76659 135.995 6.74776C135.976 6.72893 135.958 6.71009 135.939 6.69126C135.921 6.67243 135.903 6.6536 135.884 6.63477C135.884 6.63101 135.877 6.62724 135.873 6.62347C136.028 6.78165 136.123 6.99633 136.123 7.22607V12.092C136.123 12.5402 135.774 12.9394 135.296 12.9394H123.218V16.732H124.45V14.2011L124.461 14.2124Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M137.37 38.06V33.1941C137.37 32.953 137.267 32.7308 137.102 32.5726C137.084 32.5538 137.065 32.535 137.047 32.5161C137.028 32.4973 137.01 32.4785 136.992 32.4596C136.973 32.4408 136.955 32.422 136.936 32.4031C136.918 32.3843 136.9 32.3655 136.881 32.3467C136.863 32.3278 136.844 32.309 136.826 32.2902C136.808 32.2713 136.789 32.2525 136.771 32.2337C136.753 32.2148 136.734 32.196 136.716 32.1772C136.697 32.1583 136.679 32.1395 136.661 32.1207C136.642 32.1018 136.624 32.083 136.605 32.0642C136.587 32.0454 136.569 32.0265 136.55 32.0077C136.532 31.9889 136.513 31.97 136.495 31.9512C136.477 31.9324 136.458 31.9135 136.44 31.8947C136.422 31.8759 136.403 31.857 136.385 31.8382C136.366 31.8194 136.348 31.8006 136.33 31.7817C136.311 31.7629 136.293 31.7441 136.274 31.7252C136.256 31.7064 136.238 31.6876 136.219 31.6687C136.201 31.6499 136.182 31.6311 136.164 31.6122C136.146 31.5934 136.127 31.5746 136.109 31.5557C136.09 31.5369 136.072 31.5181 136.054 31.4993C136.035 31.4804 136.017 31.4616 135.999 31.4428C135.98 31.4239 135.962 31.4051 135.943 31.3863C135.925 31.3674 135.907 31.3486 135.888 31.3298C135.888 31.326 135.881 31.3222 135.877 31.3185C136.032 31.4767 136.127 31.6913 136.127 31.9211V36.787C136.127 37.2352 135.778 37.6344 135.3 37.6344H117.245C117.002 37.6344 116.797 37.529 116.649 37.3708C116.653 37.3746 116.657 37.3783 116.664 37.3859C116.683 37.4047 116.701 37.4235 116.719 37.4424C116.738 37.4612 116.756 37.48 116.774 37.4988C116.793 37.5177 116.811 37.5365 116.83 37.5553C116.848 37.5742 116.866 37.593 116.885 37.6118C116.903 37.6307 116.922 37.6495 116.94 37.6683C116.958 37.6872 116.977 37.706 116.995 37.7248C117.014 37.7437 117.032 37.7625 117.05 37.7813C117.069 37.8001 117.087 37.819 117.105 37.8378C117.124 37.8566 117.142 37.8755 117.161 37.8943C117.179 37.9131 117.197 37.932 117.216 37.9508C117.234 37.9696 117.253 37.9885 117.271 38.0073C117.289 38.0261 117.308 38.0449 117.326 38.0638C117.345 38.0826 117.363 38.1014 117.381 38.1203C117.4 38.1391 117.418 38.1579 117.436 38.1768C117.455 38.1956 117.473 38.2144 117.492 38.2333C117.51 38.2521 117.528 38.2709 117.547 38.2898C117.565 38.3086 117.584 38.3274 117.602 38.3462C117.62 38.3651 117.639 38.3839 117.657 38.4027C117.676 38.4216 117.694 38.4404 117.712 38.4592C117.731 38.4781 117.749 38.4969 117.767 38.5157C117.786 38.5346 117.804 38.5534 117.823 38.5722C117.841 38.5911 117.859 38.6099 117.878 38.6287C118.025 38.7982 118.242 38.9112 118.492 38.9112H136.547C137.025 38.9112 137.374 38.5082 137.374 38.0638L137.37 38.06Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M124.461 26.3132H134.402C134.84 26.3132 135.23 25.9554 135.23 25.4658V20.5999C135.23 20.3626 135.116 20.1404 134.95 19.9822C134.932 19.9634 134.913 19.9445 134.895 19.9257C134.877 19.9069 134.858 19.888 134.84 19.8692C134.821 19.8504 134.803 19.8316 134.785 19.8127C134.766 19.7939 134.748 19.7751 134.729 19.7562C134.711 19.7374 134.693 19.7186 134.674 19.6997C134.656 19.6809 134.637 19.6621 134.619 19.6432C134.601 19.6244 134.582 19.6056 134.564 19.5868C134.546 19.5679 134.527 19.5491 134.509 19.5303C134.49 19.5114 134.472 19.4926 134.454 19.4738C134.435 19.4549 134.417 19.4361 134.398 19.4173C134.38 19.3984 134.362 19.3796 134.343 19.3608C134.325 19.3419 134.306 19.3231 134.288 19.3043C134.27 19.2855 134.251 19.2666 134.233 19.2478C134.215 19.229 134.196 19.2101 134.178 19.1913C134.159 19.1725 134.141 19.1536 134.123 19.1348C134.104 19.116 134.086 19.0971 134.067 19.0783C134.049 19.0595 134.031 19.0406 134.012 19.0218C133.994 19.003 133.975 18.9842 133.957 18.9653C133.939 18.9465 133.92 18.9277 133.902 18.9088C133.884 18.89 133.865 18.8712 133.847 18.8523C133.828 18.8335 133.81 18.8147 133.792 18.7958C133.773 18.777 133.755 18.7582 133.736 18.7394C133.733 18.7356 133.729 18.7318 133.725 18.7281C133.884 18.8862 133.986 19.0971 133.986 19.3269V24.1928C133.986 24.6825 133.593 25.0402 133.159 25.0402H123.218V29.3224H124.45V26.3019L124.461 26.3132Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M172.167 7.96128C172.148 7.94245 172.13 7.92362 172.112 7.90479C172.093 7.88595 172.075 7.86712 172.056 7.84829C172.038 7.82946 172.02 7.81062 172.001 7.79179C171.983 7.77296 171.965 7.75414 171.946 7.73531C171.928 7.71647 171.909 7.69765 171.891 7.67881C171.873 7.65998 171.854 7.64115 171.836 7.62231C171.817 7.60348 171.799 7.58466 171.781 7.56583C171.762 7.547 171.744 7.52816 171.725 7.50933C171.707 7.4905 171.689 7.47167 171.67 7.45284C171.652 7.434 171.634 7.41518 171.615 7.39635C171.597 7.37752 171.578 7.35868 171.56 7.33985C171.542 7.32102 171.523 7.30219 171.505 7.28336C171.486 7.26452 171.468 7.24569 171.45 7.22686C171.431 7.20803 171.413 7.1892 171.394 7.17037C171.376 7.15154 171.358 7.13271 171.339 7.11388C171.321 7.09505 171.303 7.07622 171.284 7.05738C171.266 7.03855 171.247 7.01972 171.229 7.00089C171.211 6.98206 171.192 6.96322 171.174 6.94439C171.155 6.92556 171.137 6.90674 171.119 6.88791C171.1 6.86907 171.082 6.85024 171.063 6.83141C171.045 6.81258 171.027 6.79374 171.008 6.77491C171.008 6.77115 171.001 6.76738 170.997 6.76362C171.152 6.9218 171.247 7.13648 171.247 7.36621V12.2322C171.247 12.6804 170.898 13.0796 170.42 13.0796H158.342V17.7648H159.574V14.3413H171.652C172.13 14.3413 172.479 13.9383 172.479 13.4939V8.6279C172.479 8.39062 172.376 8.16465 172.211 8.00647C172.193 7.98764 172.174 7.96881 172.156 7.94998L172.167 7.96128Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M170.019 20.9633C170.001 20.9445 169.982 20.9257 169.964 20.9068C169.946 20.888 169.927 20.8692 169.909 20.8503C169.89 20.8315 169.872 20.8127 169.854 20.7939C169.835 20.775 169.817 20.7562 169.799 20.7374C169.78 20.7185 169.762 20.6997 169.743 20.6809C169.725 20.662 169.707 20.6432 169.688 20.6244C169.67 20.6055 169.651 20.5867 169.633 20.5679C169.615 20.549 169.596 20.5302 169.578 20.5114C169.559 20.4926 169.541 20.4737 169.523 20.4549C169.504 20.4361 169.486 20.4172 169.468 20.3984C169.449 20.3796 169.431 20.3607 169.412 20.3419C169.394 20.3231 169.376 20.3042 169.357 20.2854C169.339 20.2666 169.32 20.2478 169.302 20.2289C169.284 20.2101 169.265 20.1913 169.247 20.1724C169.228 20.1536 169.21 20.1348 169.192 20.1159C169.173 20.0971 169.155 20.0783 169.137 20.0594C169.118 20.0406 169.1 20.0218 169.081 20.0029C169.063 19.9841 169.045 19.9653 169.026 19.9465C169.008 19.9276 168.989 19.9088 168.971 19.89C168.953 19.8711 168.934 19.8523 168.916 19.8335C168.897 19.8146 168.879 19.7958 168.861 19.777C168.857 19.7732 168.853 19.7694 168.85 19.7657C169.008 19.9239 169.111 20.1348 169.111 20.3645V25.2305C169.111 25.6786 168.717 26.0779 168.283 26.0779H158.342V36.9283C158.342 37.3765 157.949 37.7757 157.515 37.7757H152.369C152.127 37.7757 151.921 37.6703 151.773 37.5121C151.777 37.5159 151.781 37.5196 151.788 37.5272C151.807 37.546 151.825 37.5648 151.843 37.5837C151.862 37.6025 151.88 37.6213 151.898 37.6402C151.917 37.659 151.935 37.6778 151.954 37.6967C151.972 37.7155 151.99 37.7343 152.009 37.7532C152.027 37.772 152.046 37.7908 152.064 37.8096C152.082 37.8285 152.101 37.8473 152.119 37.8661C152.138 37.885 152.156 37.9038 152.174 37.9226C152.193 37.9415 152.211 37.9603 152.229 37.9791C152.248 37.998 152.266 38.0168 152.285 38.0356C152.303 38.0544 152.321 38.0733 152.34 38.0921C152.358 38.1109 152.377 38.1298 152.395 38.1486C152.413 38.1674 152.432 38.1863 152.45 38.2051C152.469 38.2239 152.487 38.2428 152.505 38.2616C152.524 38.2804 152.542 38.2993 152.561 38.3181C152.579 38.3369 152.597 38.3557 152.616 38.3746C152.634 38.3934 152.652 38.4122 152.671 38.4311C152.689 38.4499 152.708 38.4687 152.726 38.4876C152.744 38.5064 152.763 38.5252 152.781 38.5441C152.8 38.5629 152.818 38.5817 152.836 38.6005C152.855 38.6194 152.873 38.6382 152.892 38.657C152.91 38.6759 152.928 38.6947 152.947 38.7135C152.965 38.7324 152.983 38.7512 153.002 38.77C153.149 38.9395 153.362 39.0525 153.616 39.0525H158.761C159.195 39.0525 159.589 38.6495 159.589 38.2051V27.3546H169.53C169.968 27.3546 170.358 26.9516 170.358 26.5072V21.6413C170.358 21.404 170.244 21.1818 170.078 21.0236C170.06 21.0048 170.041 20.9859 170.023 20.9671L170.019 20.9633Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M182.943 25.5533V36.9423C182.943 37.3905 182.549 37.7897 182.115 37.7897H176.926C176.683 37.7897 176.477 37.6843 176.33 37.5261C176.334 37.5298 176.337 37.5336 176.345 37.5412C176.363 37.56 176.382 37.5788 176.4 37.5976C176.418 37.6165 176.437 37.6353 176.455 37.6541C176.474 37.673 176.492 37.6918 176.51 37.7106C176.529 37.7295 176.547 37.7483 176.565 37.7671C176.584 37.786 176.602 37.8048 176.621 37.8236C176.639 37.8424 176.657 37.8613 176.676 37.8801C176.694 37.8989 176.713 37.9178 176.731 37.9366C176.749 37.9554 176.768 37.9743 176.786 37.9931C176.805 38.0119 176.823 38.0308 176.841 38.0496C176.86 38.0684 176.878 38.0873 176.896 38.1061C176.915 38.1249 176.933 38.1437 176.952 38.1626C176.97 38.1814 176.988 38.2002 177.007 38.2191C177.025 38.2379 177.044 38.2567 177.062 38.2756C177.08 38.2944 177.099 38.3132 177.117 38.3321C177.136 38.3509 177.154 38.3697 177.172 38.3886C177.191 38.4074 177.209 38.4262 177.227 38.445C177.246 38.4639 177.264 38.4827 177.283 38.5015C177.301 38.5204 177.319 38.5392 177.338 38.558C177.356 38.5769 177.375 38.5957 177.393 38.6145C177.411 38.6334 177.43 38.6522 177.448 38.671C177.467 38.6899 177.485 38.7087 177.503 38.7275C177.522 38.7463 177.54 38.7652 177.558 38.784C177.706 38.9535 177.919 39.0665 178.173 39.0665H183.362C183.796 39.0665 184.19 38.6635 184.19 38.2191V26.83H185.642L185.025 25.5683H182.958L182.943 25.5533Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M189.398 12.9143H182.943V18.1343L184.174 18.1343V14.176H190.629C190.739 14.176 190.85 14.1873 190.96 14.1986C190.898 13.8296 190.781 13.4793 190.604 13.1629C190.229 13.0085 189.821 12.9143 189.398 12.9143Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M200.703 17.4378C200.703 14.7714 199.625 12.3497 197.889 10.6022C197.871 10.5833 197.853 10.5645 197.834 10.5457C197.816 10.5268 197.797 10.508 197.779 10.4892C197.761 10.4703 197.742 10.4515 197.724 10.4327C197.705 10.4138 197.687 10.395 197.669 10.3762C197.65 10.3574 197.632 10.3385 197.613 10.3197C197.595 10.3009 197.577 10.282 197.558 10.2632C197.54 10.2444 197.522 10.2255 197.503 10.2067C197.485 10.1879 197.466 10.169 197.448 10.1502C197.43 10.1314 197.411 10.1125 197.393 10.0937C197.374 10.0749 197.356 10.0561 197.338 10.0372C197.319 10.0184 197.301 9.99956 197.282 9.98073C197.264 9.9619 197.246 9.94306 197.227 9.92423C197.209 9.9054 197.191 9.88658 197.172 9.86774C197.154 9.84891 197.135 9.83008 197.117 9.81124C197.099 9.79241 197.08 9.77358 197.062 9.75475C197.043 9.73592 197.025 9.7171 197.007 9.69827C196.988 9.67943 196.97 9.6606 196.951 9.64177C196.933 9.62294 196.915 9.6041 196.896 9.58527C196.878 9.56644 196.86 9.54761 196.841 9.52878C196.823 9.50995 196.804 9.49112 196.786 9.47229C196.768 9.45346 196.749 9.43463 196.731 9.41579C196.712 9.39696 196.694 9.37813 196.676 9.3593C196.672 9.35554 196.665 9.348 196.661 9.34424C198.39 11.0918 199.46 13.5059 199.46 16.1649C199.46 20.2738 196.801 23.5768 193.005 25.1398L198.978 36.4836C199.283 37.0636 198.978 37.7792 198.235 37.7792H192.435C192.189 37.7792 191.99 37.6662 191.861 37.5382C191.872 37.5532 191.887 37.5645 191.902 37.5796C191.916 37.5984 191.935 37.6173 191.957 37.6361C191.972 37.6549 191.99 37.6738 192.012 37.6926C192.027 37.7114 192.049 37.7303 192.067 37.7491C192.082 37.7679 192.1 37.7867 192.122 37.8056C192.137 37.8244 192.159 37.8432 192.178 37.8621C192.192 37.8809 192.214 37.8997 192.233 37.9186C192.247 37.9374 192.266 37.9562 192.288 37.9751C192.303 37.9939 192.325 38.0127 192.343 38.0315C192.358 38.0504 192.38 38.0692 192.398 38.0881C192.413 38.1069 192.431 38.1257 192.453 38.1445C192.468 38.1634 192.49 38.1822 192.509 38.201C192.523 38.2199 192.542 38.2387 192.564 38.2575C192.579 38.2764 192.601 38.2952 192.619 38.314C192.634 38.3328 192.656 38.3517 192.674 38.3705C192.689 38.3893 192.707 38.4082 192.729 38.427C192.744 38.4458 192.766 38.4647 192.784 38.4835C192.799 38.5023 192.821 38.5212 192.84 38.54C192.854 38.5588 192.873 38.5776 192.895 38.5965C192.91 38.6153 192.932 38.6342 192.95 38.653C192.965 38.6718 192.983 38.6906 193.005 38.7095C193.02 38.7283 193.038 38.7471 193.06 38.766C193.185 38.9129 193.402 39.0522 193.678 39.0522H199.478C200.221 39.0522 200.526 38.3366 200.221 37.7566L194.248 26.4128C198.044 24.8498 200.703 21.5468 200.703 17.4378Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M213.101 7.96919C213.083 7.95036 213.064 7.93153 213.046 7.9127C213.028 7.89387 213.009 7.87503 212.991 7.8562C212.972 7.83737 212.954 7.81854 212.936 7.79971C212.917 7.78088 212.899 7.76205 212.88 7.74322C212.862 7.72439 212.844 7.70555 212.825 7.68672C212.807 7.66789 212.789 7.64906 212.77 7.63023C212.752 7.6114 212.733 7.59257 212.715 7.57373C212.697 7.5549 212.678 7.53607 212.66 7.51724C212.641 7.49841 212.623 7.47958 212.605 7.46075C212.586 7.44192 212.568 7.42309 212.549 7.40425C212.531 7.38542 212.513 7.36659 212.494 7.34776C212.476 7.32893 212.458 7.3101 212.439 7.29127C212.421 7.27244 212.402 7.25361 212.384 7.23478C212.366 7.21595 212.347 7.19711 212.329 7.17828C212.31 7.15945 212.292 7.14062 212.274 7.12179C212.255 7.10296 212.237 7.08413 212.218 7.0653C212.2 7.04647 212.182 7.02763 212.163 7.0088C212.145 6.98997 212.127 6.97114 212.108 6.95231C212.09 6.93348 212.071 6.91465 212.053 6.89582C212.035 6.87699 212.016 6.85815 211.998 6.83932C211.979 6.82049 211.961 6.80166 211.943 6.78283C211.939 6.77907 211.935 6.7753 211.932 6.77153C212.09 6.92972 212.193 7.14062 212.193 7.37036V36.9314C212.193 37.3796 211.799 37.7788 211.365 37.7788H206.132C205.911 37.7788 205.701 37.6734 205.547 37.5114C205.551 37.5114 205.554 37.519 205.558 37.5227C205.576 37.5416 205.595 37.5604 205.613 37.5792C205.631 37.5981 205.65 37.6169 205.668 37.6357C205.687 37.6545 205.705 37.6734 205.723 37.6922C205.742 37.711 205.76 37.7299 205.779 37.7487C205.797 37.7675 205.815 37.7864 205.834 37.8052C205.852 37.824 205.871 37.8429 205.889 37.8617C205.907 37.8805 205.926 37.8994 205.944 37.9182C205.962 37.937 205.981 37.9558 205.999 37.9747C206.018 37.9935 206.036 38.0123 206.054 38.0312C206.073 38.05 206.091 38.0688 206.11 38.0877C206.128 38.1065 206.146 38.1253 206.165 38.1442C206.183 38.163 206.202 38.1818 206.22 38.2007C206.238 38.2195 206.257 38.2383 206.275 38.2571C206.293 38.276 206.312 38.2948 206.33 38.3136C206.349 38.3325 206.367 38.3513 206.385 38.3701C206.404 38.389 206.422 38.4078 206.441 38.4266C206.459 38.4455 206.477 38.4643 206.496 38.4831C206.514 38.5019 206.533 38.5208 206.551 38.5396C206.569 38.5584 206.588 38.5773 206.606 38.5961C206.624 38.6149 206.643 38.6338 206.661 38.6526C206.68 38.6714 206.698 38.6903 206.716 38.7091C206.735 38.7279 206.753 38.7468 206.772 38.7656C206.926 38.9388 207.143 39.0518 207.375 39.0518H212.608C213.046 39.0518 213.436 38.6488 213.436 38.2044V8.64334C213.436 8.40607 213.326 8.18387 213.156 8.02568C213.138 8.00685 213.12 7.98802 213.101 7.96919Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M240.321 32.6573C240.303 32.6384 240.284 32.6196 240.266 32.6008C240.248 32.5819 240.229 32.5631 240.211 32.5443C240.192 32.5254 240.174 32.5066 240.156 32.4878C240.137 32.469 240.119 32.4501 240.1 32.4313C240.082 32.4125 240.064 32.3936 240.045 32.3748C240.027 32.356 240.009 32.3371 239.99 32.3183C239.972 32.2995 239.953 32.2806 239.935 32.2618C239.917 32.243 239.898 32.2241 239.88 32.2053C239.861 32.1865 239.843 32.1677 239.825 32.1488C239.806 32.13 239.788 32.1112 239.769 32.0923C239.751 32.0735 239.733 32.0547 239.714 32.0358C239.696 32.017 239.678 31.9982 239.659 31.9794C239.641 31.9605 239.622 31.9417 239.604 31.9229C239.586 31.904 239.567 31.8852 239.549 31.8664C239.53 31.8475 239.512 31.8287 239.494 31.8099C239.475 31.791 239.457 31.7722 239.438 31.7534C239.42 31.7345 239.402 31.7157 239.383 31.6969C239.365 31.6781 239.347 31.6592 239.328 31.6404C239.31 31.6215 239.291 31.6027 239.273 31.5839C239.255 31.5651 239.236 31.5462 239.218 31.5274C239.199 31.5086 239.181 31.4897 239.163 31.4709C239.163 31.4672 239.155 31.4634 239.152 31.4596C239.306 31.6178 239.402 31.8325 239.402 32.0622V36.9282C239.402 37.3763 239.052 37.7756 238.574 37.7756H220.52C220.277 37.7756 220.071 37.6701 219.924 37.5119C219.928 37.5157 219.931 37.5195 219.939 37.527C219.957 37.5458 219.975 37.5646 219.994 37.5835C220.012 37.6023 220.03 37.6212 220.049 37.64C220.067 37.6588 220.086 37.6776 220.104 37.6965C220.122 37.7153 220.141 37.7341 220.159 37.753C220.178 37.7718 220.196 37.7906 220.214 37.8095C220.233 37.8283 220.251 37.8471 220.27 37.866C220.288 37.8848 220.306 37.9036 220.325 37.9225C220.343 37.9413 220.361 37.9601 220.38 37.9789C220.398 37.9978 220.417 38.0166 220.435 38.0354C220.453 38.0543 220.472 38.0731 220.49 38.0919C220.509 38.1108 220.527 38.1296 220.545 38.1484C220.564 38.1672 220.582 38.1861 220.601 38.2049C220.619 38.2237 220.637 38.2426 220.656 38.2614C220.674 38.2802 220.693 38.2991 220.711 38.3179C220.729 38.3367 220.748 38.3556 220.766 38.3744C220.784 38.3932 220.803 38.412 220.821 38.4309C220.84 38.4497 220.858 38.4686 220.876 38.4874C220.895 38.5062 220.913 38.525 220.932 38.5439C220.95 38.5627 220.968 38.5815 220.987 38.6004C221.005 38.6192 221.024 38.638 221.042 38.6569C221.06 38.6757 221.079 38.6945 221.097 38.7133C221.115 38.7322 221.134 38.751 221.152 38.7699C221.299 38.9393 221.513 39.0523 221.766 39.0523H239.821C240.299 39.0523 240.648 38.6493 240.648 38.2049V33.339C240.648 33.0979 240.546 32.8757 240.38 32.7175C240.362 32.6987 240.343 32.6799 240.325 32.661L240.321 32.6573Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M240.321 7.96128C240.303 7.94245 240.284 7.92362 240.266 7.90479C240.248 7.88595 240.229 7.86712 240.211 7.84829C240.192 7.82946 240.174 7.81062 240.156 7.79179C240.137 7.77296 240.119 7.75414 240.1 7.73531C240.082 7.71647 240.064 7.69765 240.045 7.67881C240.027 7.65998 240.008 7.64115 239.99 7.62231C239.972 7.60348 239.953 7.58466 239.935 7.56583C239.917 7.547 239.898 7.52816 239.88 7.50933C239.861 7.4905 239.843 7.47167 239.825 7.45284C239.806 7.434 239.788 7.41518 239.769 7.39635C239.751 7.37752 239.733 7.35868 239.714 7.33985C239.696 7.32102 239.677 7.30219 239.659 7.28336C239.641 7.26452 239.622 7.24569 239.604 7.22686C239.586 7.20803 239.567 7.1892 239.549 7.17037C239.53 7.15154 239.512 7.13271 239.494 7.11388C239.475 7.09505 239.457 7.07622 239.438 7.05738C239.42 7.03855 239.402 7.01972 239.383 7.00089C239.365 6.98206 239.346 6.96322 239.328 6.94439C239.31 6.92556 239.291 6.90674 239.273 6.88791C239.255 6.86907 239.236 6.85024 239.218 6.83141C239.199 6.81258 239.181 6.79374 239.163 6.77491C239.163 6.77115 239.155 6.76738 239.152 6.76362C239.306 6.9218 239.402 7.13648 239.402 7.36621V12.2322C239.402 12.6804 239.052 13.0796 238.574 13.0796H226.496V16.8722H227.728V14.3413H239.806C240.284 14.3413 240.634 13.9383 240.634 13.4939V8.6279C240.634 8.39062 240.531 8.16465 240.365 8.00647C240.347 7.98764 240.328 7.96881 240.31 7.94998L240.321 7.96128Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M227.739 26.4573H237.684C238.118 26.4573 238.512 26.0995 238.512 25.6099V20.744C238.512 20.5067 238.401 20.2845 238.232 20.1263C238.214 20.1075 238.195 20.0886 238.177 20.0698C238.159 20.051 238.14 20.0322 238.122 20.0133C238.103 19.9945 238.085 19.9757 238.067 19.9568C238.048 19.938 238.03 19.9192 238.011 19.9003C237.993 19.8815 237.975 19.8627 237.956 19.8438C237.938 19.825 237.919 19.8062 237.901 19.7874C237.883 19.7685 237.864 19.7497 237.846 19.7309C237.828 19.712 237.809 19.6932 237.791 19.6744C237.772 19.6555 237.754 19.6367 237.736 19.6179C237.717 19.599 237.699 19.5802 237.68 19.5614C237.662 19.5425 237.644 19.5237 237.625 19.5049C237.607 19.4861 237.588 19.4672 237.57 19.4484C237.552 19.4296 237.533 19.4107 237.515 19.3919C237.497 19.3731 237.478 19.3542 237.46 19.3354C237.441 19.3166 237.423 19.2977 237.405 19.2789C237.386 19.2601 237.368 19.2412 237.349 19.2224C237.331 19.2036 237.313 19.1848 237.294 19.1659C237.276 19.1471 237.257 19.1283 237.239 19.1094C237.221 19.0906 237.202 19.0718 237.184 19.0529C237.166 19.0341 237.147 19.0153 237.129 18.9964C237.11 18.9776 237.092 18.9588 237.074 18.94C237.055 18.9211 237.037 18.9023 237.018 18.8835C237.015 18.8797 237.011 18.8759 237.007 18.8722C237.166 19.0303 237.268 19.245 237.268 19.471V24.3369C237.268 24.8303 236.875 25.1843 236.441 25.1843H226.496V29.4665H227.728V26.446L227.739 26.4573Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M272.362 7.96919C272.344 7.95036 272.326 7.93153 272.307 7.9127C272.289 7.89387 272.27 7.87503 272.252 7.8562C272.234 7.83737 272.215 7.81854 272.197 7.79971C272.179 7.78088 272.16 7.76205 272.142 7.74322C272.123 7.72439 272.105 7.70555 272.087 7.68672C272.068 7.66789 272.05 7.64906 272.031 7.63023C272.013 7.6114 271.995 7.59257 271.976 7.57373C271.958 7.5549 271.94 7.53607 271.921 7.51724C271.903 7.49841 271.884 7.47958 271.866 7.46075C271.848 7.44192 271.829 7.42309 271.811 7.40425C271.792 7.38542 271.774 7.36659 271.756 7.34776C271.737 7.32893 271.719 7.3101 271.7 7.29127C271.682 7.27244 271.664 7.25361 271.645 7.23478C271.627 7.21595 271.608 7.19711 271.59 7.17828C271.572 7.15945 271.553 7.14062 271.535 7.12179C271.517 7.10296 271.498 7.08413 271.48 7.0653C271.461 7.04647 271.443 7.02763 271.425 7.0088C271.406 6.98997 271.388 6.97114 271.369 6.95231C271.351 6.93348 271.333 6.91465 271.314 6.89582C271.296 6.87699 271.277 6.85815 271.259 6.83932C271.241 6.82049 271.222 6.80166 271.204 6.78283C271.2 6.77907 271.197 6.7753 271.193 6.77153C271.351 6.92972 271.454 7.14062 271.454 7.37036V37.4248C271.454 37.873 271.061 38.227 270.627 38.227H269.928C269.795 38.227 269.45 38.0952 269.361 38.0048L269.446 38.0914L269.497 38.1479L269.553 38.2044L269.604 38.2609L269.714 38.3739L269.766 38.4304L270.483 39.1648L270.535 39.2213L270.59 39.2778C270.678 39.3682 271.024 39.5 271.156 39.5H271.855C272.289 39.5 272.682 39.1422 272.682 38.6978V8.64334C272.682 8.40607 272.568 8.18387 272.403 8.02568C272.385 8.00685 272.366 7.98802 272.348 7.96919H272.362Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M252.101 36.9391C252.101 37.3873 251.751 37.7865 251.273 37.7865H246.084C245.863 37.7865 245.653 37.681 245.499 37.5191C245.503 37.5191 245.506 37.5266 245.51 37.5304C245.528 37.5492 245.547 37.5681 245.565 37.5869C245.584 37.6057 245.602 37.6245 245.62 37.6434C245.639 37.6622 245.657 37.681 245.676 37.6999C245.694 37.7187 245.712 37.7375 245.731 37.7564C245.749 37.7752 245.767 37.794 245.786 37.8129C245.804 37.8317 245.823 37.8505 245.841 37.8694C245.859 37.8882 245.878 37.907 245.896 37.9258C245.915 37.9447 245.933 37.9635 245.951 37.9823C245.97 38.0012 245.988 38.02 246.007 38.0388C246.025 38.0577 246.043 38.0765 246.062 38.0953C246.08 38.1142 246.099 38.133 246.117 38.1518C246.135 38.1706 246.154 38.1895 246.172 38.2083C246.19 38.2271 246.209 38.246 246.227 38.2648C246.246 38.2836 246.264 38.3025 246.282 38.3213C246.301 38.3401 246.319 38.359 246.338 38.3778C246.356 38.3966 246.374 38.4154 246.393 38.4343C246.411 38.4531 246.43 38.4719 246.448 38.4908C246.466 38.5096 246.485 38.5284 246.503 38.5473C246.521 38.5661 246.54 38.5849 246.558 38.6038C246.577 38.6226 246.595 38.6414 246.613 38.6603C246.632 38.6791 246.65 38.6979 246.669 38.7168C246.687 38.7356 246.705 38.7544 246.724 38.7732C246.878 38.9465 247.095 39.0595 247.327 39.0595H252.516C252.994 39.0595 253.344 38.6565 253.344 38.2121V21.7424L252.112 20.4732V36.9504L252.101 36.9391Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M285.768 13.0954V29.4371H287V14.3609H291.185C292.719 14.3609 294.116 14.7526 295.319 15.4343C295.113 15.1104 294.885 14.8015 294.642 14.5153C293.322 13.6189 291.726 13.103 289.953 13.103H285.768V13.0954Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M302.351 12.2895C302.351 12.2895 302.314 12.2518 302.296 12.233C302.278 12.2141 302.259 12.1953 302.241 12.1765C302.222 12.1576 302.204 12.1388 302.186 12.12C302.167 12.1012 302.149 12.0823 302.13 12.0635C302.112 12.0447 302.094 12.0258 302.075 12.007C302.057 11.9882 302.038 11.9693 302.02 11.9505C302.002 11.9317 301.983 11.9128 301.965 11.894C301.947 11.8752 301.928 11.8563 301.91 11.8375C301.891 11.8187 301.873 11.7999 301.855 11.781C301.836 11.7622 301.818 11.7434 301.799 11.7245C301.781 11.7057 301.763 11.6869 301.744 11.668C301.726 11.6492 301.707 11.6304 301.689 11.6115C301.671 11.5927 301.652 11.5739 301.634 11.555C301.616 11.5362 301.597 11.5174 301.579 11.4986C301.56 11.4797 301.542 11.4609 301.524 11.4421C301.505 11.4232 301.487 11.4044 301.468 11.3856C301.45 11.3667 301.432 11.3479 301.413 11.3291C301.395 11.3102 301.376 11.2914 301.358 11.2726C301.34 11.2538 301.321 11.2349 301.303 11.2161C301.284 11.1973 301.266 11.1784 301.248 11.1596C301.248 11.1596 301.244 11.1558 301.24 11.1521C301.24 11.1521 301.244 11.1596 301.248 11.1596C303.984 13.9805 305.683 17.8446 305.683 22.1005C305.683 30.7628 298.795 37.7755 290.376 37.7755H279.736C279.515 37.7755 279.32 37.67 279.181 37.5156C279.188 37.5194 279.192 37.5269 279.195 37.5307C279.214 37.5495 279.232 37.5683 279.251 37.5872C279.269 37.606 279.287 37.6248 279.306 37.6437C279.324 37.6625 279.342 37.6813 279.361 37.7002C279.379 37.719 279.398 37.7378 279.416 37.7567C279.434 37.7755 279.453 37.7943 279.471 37.8131C279.49 37.832 279.508 37.8508 279.526 37.8696C279.545 37.8885 279.563 37.9073 279.582 37.9261C279.6 37.945 279.618 37.9638 279.637 37.9826C279.655 38.0015 279.674 38.0203 279.692 38.0391C279.71 38.058 279.729 38.0768 279.747 38.0956C279.765 38.1145 279.784 38.1333 279.802 38.1521C279.821 38.1709 279.839 38.1898 279.857 38.2086C279.876 38.2274 279.894 38.2463 279.913 38.2651C279.931 38.2839 279.949 38.3028 279.968 38.3216C279.986 38.3404 280.004 38.3593 280.023 38.3781C280.041 38.3969 280.06 38.4157 280.078 38.4346C280.096 38.4534 280.115 38.4722 280.133 38.4911C280.152 38.5099 280.17 38.5287 280.188 38.5476C280.207 38.5664 280.225 38.5852 280.244 38.604C280.262 38.6229 280.28 38.6417 280.299 38.6605C280.317 38.6794 280.335 38.6982 280.354 38.717C280.372 38.7359 280.391 38.7547 280.409 38.7735C280.552 38.9392 280.755 39.0485 280.979 39.0485H291.619C300.034 39.0485 306.926 32.0358 306.926 23.3735C306.926 19.0762 305.194 15.1669 302.406 12.3422C302.388 12.3234 302.369 12.3045 302.351 12.2857V12.2895Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M30.7863 32.5542C31.0916 32.8668 31.0475 33.4468 30.7422 33.7594C27.7779 36.7046 24.0265 38.0906 20.1463 38.0906C15.7807 38.0906 11.8418 36.3091 8.99512 33.4129C8.99512 33.4129 9.00247 33.4205 9.00615 33.4242C9.02454 33.4431 9.04293 33.4619 9.06132 33.4807C9.07971 33.4995 9.0981 33.5184 9.11649 33.5372C9.13488 33.556 9.15326 33.5749 9.17165 33.5937C9.19004 33.6125 9.20843 33.6314 9.22682 33.6502C9.24521 33.669 9.2636 33.6879 9.28199 33.7067C9.30038 33.7255 9.31877 33.7443 9.33716 33.7632C9.35555 33.782 9.37394 33.8008 9.39232 33.8197C9.41071 33.8385 9.4291 33.8573 9.44749 33.8762C9.46588 33.895 9.48427 33.9138 9.50266 33.9327C9.52105 33.9515 9.53944 33.9703 9.55783 33.9892C9.57622 34.008 9.59461 34.0268 9.613 34.0456C9.63139 34.0645 9.64977 34.0833 9.66816 34.1021C9.68655 34.121 9.70494 34.1398 9.72333 34.1586C9.74172 34.1775 9.76011 34.1963 9.7785 34.2151C9.79689 34.234 9.81528 34.2528 9.83367 34.2716C9.85206 34.2905 9.87045 34.3093 9.88884 34.3281C9.90723 34.3469 9.92561 34.3658 9.944 34.3846C9.96239 34.4034 9.98078 34.4223 9.99917 34.4411C10.0176 34.4599 10.0359 34.4788 10.0543 34.4976C10.0727 34.5164 10.0911 34.5353 10.1095 34.5541C10.1279 34.5729 10.1463 34.5917 10.1647 34.6106C10.1831 34.6294 10.2015 34.6482 10.2198 34.6671C13.0665 37.5784 17.0165 39.3673 21.3931 39.3673C25.2733 39.3673 29.0247 37.9813 31.989 35.0362C32.2943 34.7236 32.3384 34.1436 32.0331 33.831L29.4844 31.0553C29.5101 31.1042 29.5359 31.157 29.5506 31.2097L30.7974 32.5693L30.7863 32.5542Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M13.0478 23.1418C13.0478 18.1403 16.6668 13.9447 21.5951 13.9447C23.7319 13.9447 25.8688 14.7469 27.4833 16.2233C27.7886 16.5359 28.2667 16.5359 28.572 16.2233L31.974 12.6077C32.3234 12.2499 32.3234 11.7151 31.9299 11.3573C31.9225 11.3498 31.9151 11.346 31.9078 11.3385C31.8968 11.3272 31.8857 11.3121 31.8747 11.3008C31.8673 11.2933 31.86 11.2895 31.8526 11.282C31.8416 11.2707 31.8306 11.2556 31.8195 11.2443C31.8122 11.2368 31.8048 11.233 31.7975 11.2255C31.7864 11.2142 31.7754 11.1991 31.7644 11.1878C31.757 11.1803 31.7496 11.1765 31.7423 11.169C31.7313 11.1577 31.7202 11.1426 31.7092 11.1313C31.7018 11.1238 31.6945 11.12 31.6871 11.1125C31.6761 11.1012 31.665 11.0862 31.654 11.0749C31.6467 11.0673 31.6393 11.0636 31.632 11.056C31.6209 11.0447 31.6099 11.0297 31.5989 11.0184C31.5915 11.0108 31.5841 11.0071 31.5768 10.9995C31.5657 10.9882 31.5547 10.9732 31.5437 10.9619C31.5363 10.9543 31.529 10.9506 31.5216 10.943C31.5106 10.9317 31.4995 10.9167 31.4885 10.9054C31.4812 10.8978 31.4738 10.8941 31.4664 10.8865C31.4554 10.8752 31.4444 10.8602 31.4333 10.8489C31.426 10.8413 31.4186 10.8376 31.4113 10.83C31.4002 10.8188 31.3892 10.8037 31.3782 10.7924C31.3708 10.7849 31.3635 10.7811 31.3561 10.7736C31.3451 10.7623 31.334 10.7472 31.323 10.7359C31.3157 10.7284 31.3083 10.7246 31.3009 10.7171C31.2899 10.7058 31.2789 10.6907 31.2678 10.6794C31.2605 10.6719 31.2531 10.6681 31.2458 10.6606C31.2347 10.6493 31.2237 10.6342 31.2127 10.6229C31.2053 10.6154 31.198 10.6116 31.1906 10.6041C31.1796 10.5928 31.1685 10.5777 31.1575 10.5664C31.1501 10.5589 31.1428 10.5551 31.1354 10.5476C31.1244 10.5363 31.1134 10.5212 31.1023 10.5099C31.095 10.5024 31.0876 10.4986 31.0803 10.4911C31.0692 10.4798 31.0582 10.4647 31.0472 10.4534C31.0398 10.4459 31.0325 10.4421 31.0251 10.4346C31.0141 10.4233 31.003 10.4082 30.992 10.3969C30.9846 10.3894 30.9773 10.3856 30.9699 10.3781C30.9589 10.3668 30.9479 10.3517 30.9368 10.3404C30.9295 10.3329 30.9221 10.3291 30.9148 10.3216C30.9037 10.3103 30.8927 10.2952 30.8817 10.2839C30.8743 10.2764 30.867 10.2726 30.8596 10.2651C30.8486 10.2538 30.8375 10.2388 30.8265 10.2275C30.8191 10.2199 30.8118 10.2162 30.8044 10.2086C30.7934 10.1973 30.7824 10.1823 30.7713 10.171C30.764 10.1634 30.7566 10.1597 30.7493 10.1521C30.7382 10.1408 30.7272 10.1258 30.7162 10.1145C30.7088 10.1069 30.7015 10.1032 30.6941 10.0956C31.0766 10.4534 31.0766 10.9807 30.7309 11.3385L27.3289 14.9541C27.0236 15.2667 26.5455 15.2667 26.2402 14.9541C24.6257 13.4815 22.4888 12.6755 20.352 12.6755C15.4237 12.6755 11.8047 16.8711 11.8047 21.8726C11.8047 23.8047 12.3674 25.6049 13.3383 27.0851C13.6215 27.3374 13.9195 27.5709 14.2321 27.7818C13.4708 26.4147 13.0368 24.8253 13.0368 23.1305L13.0478 23.1418Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M44.0521 8.49528C44.0521 8.25801 43.9418 8.03581 43.7726 7.87762C43.7542 7.85879 43.7358 7.83996 43.7174 7.82113C43.699 7.8023 43.6806 7.78347 43.6622 7.76464C43.6438 7.74581 43.6255 7.72698 43.6071 7.70815C43.5887 7.68931 43.5703 7.67048 43.5519 7.65165C43.5335 7.63282 43.5151 7.61399 43.4967 7.59516C43.4784 7.57633 43.46 7.55749 43.4416 7.53866C43.4232 7.51983 43.4048 7.501 43.3864 7.48217C43.368 7.46334 43.3496 7.44451 43.3312 7.42568C43.3128 7.40685 43.2945 7.38802 43.2761 7.36918C43.2577 7.35035 43.2393 7.33152 43.2209 7.31269C43.2025 7.29386 43.1841 7.27503 43.1657 7.2562C43.1473 7.23737 43.129 7.21854 43.1106 7.19971C43.0922 7.18087 43.0738 7.16204 43.0554 7.14321C43.037 7.12438 43.0186 7.10555 43.0002 7.08672C42.9818 7.06789 42.9635 7.04906 42.9451 7.03022C42.9267 7.01139 42.9083 6.99256 42.8899 6.97373C42.8715 6.9549 42.8531 6.93607 42.8347 6.91724C42.8163 6.89841 42.7979 6.87958 42.7796 6.86075C42.7612 6.84191 42.7428 6.82308 42.7244 6.80425C42.706 6.78542 42.6876 6.76659 42.6692 6.74776C42.6508 6.72893 42.6324 6.71009 42.6141 6.69126C42.5957 6.67243 42.5773 6.6536 42.5589 6.63477C42.5552 6.63101 42.5515 6.62724 42.5479 6.62347C42.706 6.78165 42.809 6.99256 42.809 7.2223V29.3225H44.0411V8.48399L44.0521 8.49528Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M53.1987 37.6465H36.8028C36.5601 37.6465 36.3541 37.541 36.207 37.3829C36.2107 37.3866 36.2144 37.3904 36.2217 37.3979C36.2401 37.4168 36.2585 37.4356 36.2769 37.4544C36.2953 37.4732 36.3137 37.4921 36.3321 37.5109C36.3505 37.5297 36.3689 37.5486 36.3872 37.5674C36.4056 37.5862 36.424 37.6051 36.4424 37.6239C36.4608 37.6427 36.4792 37.6616 36.4976 37.6804C36.516 37.6992 36.5344 37.7181 36.5527 37.7369C36.5711 37.7557 36.5895 37.7746 36.6079 37.7934C36.6263 37.8122 36.6447 37.831 36.6631 37.8499C36.6815 37.8687 36.6999 37.8875 36.7183 37.9064C36.7366 37.9252 36.755 37.944 36.7734 37.9629C36.7918 37.9817 36.8102 38.0005 36.8286 38.0194C36.847 38.0382 36.8654 38.057 36.8838 38.0759C36.9021 38.0947 36.9205 38.1135 36.9389 38.1323C36.9573 38.1512 36.9757 38.17 36.9941 38.1888C37.0125 38.2077 37.0309 38.2265 37.0493 38.2453C37.0676 38.2642 37.086 38.283 37.1044 38.3018C37.1228 38.3207 37.1412 38.3395 37.1596 38.3583C37.178 38.3771 37.1964 38.396 37.2148 38.4148C37.2331 38.4336 37.2515 38.4525 37.2699 38.4713C37.2883 38.4901 37.3067 38.509 37.3251 38.5278C37.3435 38.5466 37.3619 38.5655 37.3803 38.5843C37.3987 38.6031 37.417 38.622 37.4354 38.6408C37.5825 38.8103 37.7995 38.9232 38.0496 38.9232H54.4455C54.9273 38.9232 55.273 38.5203 55.273 38.0759V33.2099C55.273 32.9688 55.17 32.7466 55.0045 32.5885C54.9861 32.5696 54.9677 32.5508 54.9493 32.532C54.9309 32.5131 54.9125 32.4943 54.8942 32.4755C54.8758 32.4566 54.8574 32.4378 54.839 32.419C54.8206 32.4002 54.8022 32.3813 54.7838 32.3625C54.7654 32.3437 54.747 32.3248 54.7287 32.306C54.7103 32.2872 54.6919 32.2683 54.6735 32.2495C54.6551 32.2307 54.6367 32.2118 54.6183 32.193C54.5999 32.1742 54.5815 32.1553 54.5632 32.1365C54.5448 32.1177 54.5264 32.0989 54.508 32.08C54.4896 32.0612 54.4712 32.0424 54.4528 32.0235C54.4344 32.0047 54.416 31.9859 54.3977 31.967C54.3793 31.9482 54.3609 31.9294 54.3425 31.9105C54.3241 31.8917 54.3057 31.8729 54.2873 31.854C54.2689 31.8352 54.2505 31.8164 54.2322 31.7976C54.2138 31.7787 54.1954 31.7599 54.177 31.7411C54.1586 31.7222 54.1402 31.7034 54.1218 31.6846C54.1034 31.6657 54.085 31.6469 54.0666 31.6281C54.0483 31.6092 54.0299 31.5904 54.0115 31.5716C53.9931 31.5528 53.9747 31.5339 53.9563 31.5151C53.9379 31.4963 53.9195 31.4774 53.9011 31.4586C53.8827 31.4398 53.8644 31.4209 53.846 31.4021C53.8276 31.3833 53.8092 31.3644 53.7908 31.3456C53.7908 31.3456 53.7835 31.3381 53.7798 31.3343C53.9342 31.4925 54.0299 31.7072 54.0299 31.9369V36.8029C54.0299 37.251 53.6805 37.6503 53.2024 37.6503L53.1987 37.6465Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M98.7785 15.5986C98.7785 14.3934 99.9554 13.32 101.526 13.32C104.185 13.32 107.37 15.7756 107.763 15.9978C108.157 16.3104 108.94 15.9074 109.246 15.4178L111.471 11.9793C111.629 11.6968 111.71 11.0189 111.342 10.6573C111.327 10.6385 111.305 10.6197 111.287 10.6008C111.272 10.582 111.25 10.5632 111.232 10.5443C111.217 10.5255 111.195 10.5067 111.177 10.4878C111.162 10.469 111.14 10.4502 111.121 10.4314C111.107 10.4125 111.085 10.3937 111.066 10.3749C111.051 10.356 111.029 10.3372 111.011 10.3184C110.996 10.2995 110.974 10.2807 110.956 10.2619C110.941 10.243 110.919 10.2242 110.901 10.2054C110.886 10.1865 110.864 10.1677 110.846 10.1489C110.831 10.1301 110.809 10.1112 110.79 10.0924C110.776 10.0736 110.754 10.0547 110.735 10.0359C110.72 10.0171 110.698 9.99824 110.68 9.97941C110.665 9.96058 110.643 9.94175 110.625 9.92291C110.61 9.90408 110.588 9.88525 110.57 9.86642C110.555 9.84759 110.533 9.82876 110.514 9.80993C110.5 9.7911 110.478 9.77227 110.459 9.75344C110.445 9.7346 110.423 9.71577 110.404 9.69694C110.389 9.67811 110.367 9.65928 110.349 9.64045C110.334 9.62162 110.312 9.60278 110.294 9.58395C110.279 9.56512 110.257 9.54629 110.239 9.52746C110.224 9.50863 110.202 9.4898 110.183 9.47097C110.169 9.45214 110.147 9.43331 110.128 9.41447L110.121 9.40694C110.467 9.77226 110.386 10.4314 110.231 10.7063L108.006 14.1448C107.701 14.6345 106.918 15.0374 106.524 14.7249C106.131 14.5026 102.949 12.0471 100.286 12.0471C98.716 12.0471 97.5391 13.1204 97.5391 14.3256C97.5391 14.6684 97.6016 14.996 97.723 15.3124C98.0319 15.5384 98.3923 15.7606 98.8042 15.9865C98.7858 15.8547 98.7748 15.7229 98.7748 15.5873L98.7785 15.5986Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M99.0288 24.6942C97.0354 23.8882 94.7735 22.6642 93.0928 20.8941C93.1001 20.9016 93.1075 20.9091 93.1148 20.9167C93.1332 20.9355 93.1516 20.9543 93.17 20.9732C93.1884 20.992 93.2068 21.0108 93.2252 21.0297C93.2436 21.0485 93.262 21.0673 93.2803 21.0862C93.2987 21.105 93.3171 21.1238 93.3355 21.1426C93.3539 21.1615 93.3723 21.1803 93.3907 21.1991C93.4091 21.218 93.4275 21.2368 93.4459 21.2556C93.4642 21.2745 93.4826 21.2933 93.501 21.3121C93.5194 21.331 93.5378 21.3498 93.5562 21.3686C93.5746 21.3875 93.593 21.4063 93.6114 21.4251C93.6297 21.4439 93.6481 21.4628 93.6665 21.4816C93.6849 21.5004 93.7033 21.5193 93.7217 21.5381C93.7401 21.5569 93.7585 21.5758 93.7769 21.5946C93.7952 21.6134 93.8136 21.6323 93.832 21.6511C93.8504 21.6699 93.8688 21.6887 93.8872 21.7076C93.9056 21.7264 93.924 21.7452 93.9424 21.7641C93.9607 21.7829 93.9791 21.8017 93.9975 21.8206C94.0159 21.8394 94.0343 21.8582 94.0527 21.8771C94.0711 21.8959 94.0895 21.9147 94.1079 21.9336C94.1263 21.9524 94.1446 21.9712 94.163 21.99C94.1814 22.0089 94.1998 22.0277 94.2182 22.0465C94.2366 22.0654 94.255 22.0842 94.2734 22.103C94.2918 22.1219 94.3101 22.1407 94.3285 22.1595C96.013 23.9372 98.2785 25.1612 100.276 25.9672C100.776 26.1705 101.236 26.3815 101.655 26.5999C101.559 26.3325 101.427 26.0689 101.25 25.8203C100.636 25.4286 99.9041 25.0558 99.0435 24.7055L99.0288 24.6942Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M108.272 22.2761C108.272 22.2761 108.308 22.3137 108.327 22.3326C108.345 22.3514 108.364 22.3702 108.382 22.389C108.4 22.4079 108.419 22.4267 108.437 22.4455C108.456 22.4644 108.474 22.4832 108.492 22.502C108.511 22.5208 108.529 22.5397 108.547 22.5585C108.566 22.5773 108.584 22.5962 108.603 22.615C108.617 22.63 108.632 22.6451 108.647 22.6602C108.518 22.5246 108.389 22.389 108.257 22.261C108.25 22.2535 108.239 22.2422 108.231 22.2347C108.231 22.2347 108.231 22.2347 108.228 22.2309C108.246 22.2497 108.261 22.2648 108.279 22.2836L108.272 22.2761Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M100.816 38.0907C95.1672 38.0907 92.03 35.6992 91.0186 34.6635C91.0259 34.671 91.0296 34.6748 91.0369 34.6823C91.0443 34.6898 91.0517 34.6936 91.0553 34.7011C91.0664 34.7124 91.0774 34.7237 91.0921 34.7388C91.0958 34.7426 91.1068 34.7501 91.1105 34.7576C91.1215 34.7689 91.1326 34.7802 91.1473 34.7953C91.1546 34.7991 91.162 34.8066 91.1657 34.8141C91.1767 34.8254 91.1877 34.8367 91.2024 34.8518C91.2098 34.8556 91.2172 34.8631 91.2208 34.8706C91.2319 34.8819 91.2429 34.8932 91.2576 34.9083C91.265 34.9158 91.2723 34.9196 91.276 34.9271C91.287 34.9384 91.2981 34.9497 91.3128 34.9648C91.3201 34.9685 91.3275 34.9761 91.3312 34.9836C91.3422 34.9949 91.3532 35.0062 91.3679 35.0213C91.3753 35.025 91.3827 35.0326 91.3863 35.0401C91.3974 35.0514 91.4084 35.0627 91.4231 35.0778C91.4305 35.0853 91.4378 35.0891 91.4415 35.0966C91.4525 35.1079 91.4636 35.1192 91.4783 35.1343C91.4856 35.138 91.493 35.1456 91.4967 35.1531C91.5077 35.1644 91.5187 35.1757 91.5334 35.1908C91.5371 35.1945 91.5482 35.2021 91.5518 35.2096C91.5629 35.2209 91.5739 35.2359 91.5886 35.2472C91.596 35.2548 91.6033 35.2585 91.607 35.2661C91.618 35.2774 91.6291 35.2887 91.6438 35.3037C91.6511 35.3113 91.6585 35.315 91.6622 35.3226C91.6732 35.3339 91.6842 35.3452 91.699 35.3602C91.7026 35.3678 91.7137 35.3715 91.7173 35.3791C91.7284 35.3904 91.7394 35.4017 91.7541 35.4167C91.7615 35.4205 91.7688 35.428 91.7725 35.4356C91.7835 35.4469 91.7946 35.4582 91.8093 35.4732C91.8166 35.477 91.824 35.4845 91.8277 35.492C91.8387 35.5033 91.8497 35.5146 91.8645 35.5297C91.8681 35.5372 91.8792 35.541 91.8829 35.5485C91.8939 35.5598 91.9049 35.5711 91.9196 35.5862C91.927 35.5937 91.9343 35.5975 91.938 35.605C91.9491 35.6163 91.9601 35.6276 91.9748 35.6427C91.9785 35.6465 91.9895 35.654 91.9932 35.6615C92.0042 35.6728 92.0152 35.6841 92.03 35.6992C92.0336 35.7067 92.0447 35.7105 92.0483 35.718C92.0594 35.7293 92.0704 35.7406 92.0851 35.7557C92.0925 35.7632 92.0998 35.767 92.1035 35.7745C92.1145 35.7858 92.1256 35.7971 92.1403 35.8122C92.1476 35.8197 92.155 35.8235 92.1587 35.831C92.1697 35.8423 92.1807 35.8536 92.1955 35.8687C92.2028 35.8762 92.2102 35.88 92.2139 35.8875C92.2249 35.8988 92.2359 35.9101 92.2506 35.9252C93.2547 36.9533 96.3919 39.3637 102.063 39.3637C108.474 39.3637 112.354 34.72 112.354 30.1214C112.354 27.2403 111.136 25.1161 109.496 23.5305L109.489 23.523C109.47 23.5042 109.452 23.4853 109.434 23.4665C109.415 23.4477 109.397 23.4288 109.378 23.41C109.36 23.3912 109.342 23.3723 109.323 23.3535C109.305 23.3347 109.286 23.3159 109.268 23.297C109.25 23.2782 109.231 23.2594 109.213 23.2405C109.194 23.2217 109.176 23.2029 109.158 23.184C109.139 23.1652 109.121 23.1464 109.103 23.1275C109.084 23.1087 109.066 23.0899 109.047 23.071C109.029 23.0522 109.011 23.0334 108.992 23.0146C108.974 22.9957 108.955 22.9769 108.937 22.9581C108.919 22.9392 108.9 22.9204 108.882 22.9016C108.863 22.8827 108.845 22.8639 108.827 22.8451C108.808 22.8262 108.79 22.8074 108.772 22.7886C108.753 22.7697 108.735 22.7509 108.716 22.7321C108.698 22.7133 108.68 22.6944 108.661 22.6756C108.661 22.6756 108.654 22.6681 108.65 22.6643C110.088 24.2047 111.114 26.2121 111.114 28.8522C111.114 33.4508 107.234 38.0945 100.824 38.0945L100.816 38.0907Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M10.1129 20.2922C10.1129 15.0496 13.9342 10.9406 18.8111 10.9406C21.0031 10.9406 23.1877 11.7843 24.7986 13.2568C25.0524 13.513 25.4349 13.513 25.6813 13.2644L29.0796 9.64881C29.223 9.50193 29.3003 9.31738 29.2929 9.13284C29.2892 8.94453 29.1973 8.76375 29.0428 8.62063C25.9939 5.77337 22.7721 4.50792 18.5904 4.50792C9.99158 4.50792 3 11.6713 3 20.4729C3 24.7438 4.61825 28.7436 7.55685 31.7302C10.4881 34.7092 14.4087 36.3513 18.5941 36.3513C22.7795 36.3513 26.2624 34.8674 29.087 32.0654C29.3444 31.8017 29.3665 31.3196 29.1274 31.0786L25.7217 27.3689C25.6224 27.2484 25.4606 27.1806 25.2767 27.1768C25.0928 27.1693 24.9126 27.2333 24.7949 27.335C23.2465 28.6984 21.0251 29.5156 18.8552 29.5156C13.9526 29.5156 10.1129 25.4669 10.1129 20.2959V20.2922Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M35.248 35.8994H51.6438C52.019 35.8994 52.3206 35.5868 52.3206 35.2065V30.3405C52.3206 29.9563 52.0153 29.6475 51.6438 29.6475H41.1142V5.64915C41.1142 5.28382 40.7905 4.95616 40.4375 4.95616H35.248C34.8729 4.95616 34.5713 5.26876 34.5713 5.64915V35.2102C34.5713 35.5944 34.8766 35.9032 35.248 35.9032V35.8994Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M70.0029 4.50396C65.8322 4.50396 61.9263 6.1611 59.0098 9.17031C56.1006 12.172 54.4971 16.1868 54.4971 20.4727C54.4971 29.3761 61.3084 36.3511 70.0029 36.3511C74.1846 36.3511 78.0941 34.7091 81.018 31.73C83.9419 28.7471 85.5528 24.7512 85.5528 20.4727C85.5528 11.6673 78.5796 4.50773 70.0029 4.50773V4.50396ZM70.0029 29.5079C65.1334 29.5079 61.176 25.4517 61.176 20.469C61.176 15.4863 65.1371 11.3397 70.0029 11.3397C74.8687 11.3397 78.8738 15.4335 78.8738 20.469C78.8738 25.5044 74.8944 29.5079 70.0029 29.5079Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M95.8401 12.7443C95.8401 11.4035 97.1384 10.3113 98.7382 10.3113C101.085 10.3113 103.847 12.1944 104.752 12.8158C104.895 12.9137 104.994 12.9815 105.046 13.0117C105.178 13.1171 105.333 13.1134 105.447 13.0908C105.77 13.0343 106.149 12.7706 106.329 12.4844L108.554 9.04207C108.687 8.80479 108.782 8.09298 108.341 7.82934C106.679 6.57896 103.28 4.5 99.084 4.5C92.2652 4.5 89.1611 9.027 89.1611 13.2339C89.1611 18.4727 93.7106 21.4141 97.5246 22.9583C100.654 24.2312 102.111 25.7076 102.111 27.6133C102.111 29.2554 100.783 30.4455 98.9516 30.4455C97.7599 30.4455 95.7334 30.0312 92.8353 28.069C92.7617 28.0201 92.7103 27.9862 92.6919 27.9749C92.5705 27.8882 92.3572 27.8204 92.1328 27.8204C92.0593 27.8204 91.9857 27.828 91.9122 27.843C91.754 27.8769 91.5407 27.9598 91.4046 28.1858L89.3597 31.888C89.0618 32.4228 89.1391 32.5282 89.5547 32.9538C90.1063 33.5187 93.1774 36.3472 99.2605 36.3472C105.344 36.3472 109.4 31.726 109.4 27.2555C109.4 21.4367 104.428 18.7401 100.688 17.2185C97.245 15.7911 95.8401 14.4956 95.8401 12.7443Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M121.526 11.2041H133.755C134.13 11.2041 134.431 10.8915 134.431 10.5111V5.64519C134.431 5.26103 134.126 4.9522 133.755 4.9522H115.7C115.325 4.9522 115.023 5.2648 115.023 5.64519V35.2063C115.023 35.5904 115.329 35.8992 115.7 35.8992H133.755C134.13 35.8992 134.431 35.5866 134.431 35.2063V30.3403C134.431 29.9561 134.126 29.6473 133.755 29.6473H121.526V23.3125H131.618C131.993 23.3125 132.295 22.9999 132.295 22.6195V17.7536C132.295 17.3883 131.971 17.0606 131.618 17.0606H121.526V11.2041Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M156.646 11.3482H168.875C169.25 11.3482 169.552 11.0356 169.552 10.6552V5.78929C169.552 5.40514 169.246 5.09631 168.875 5.09631H150.82C150.445 5.09631 150.144 5.4089 150.144 5.78929V35.3504C150.144 35.7345 150.449 36.0433 150.82 36.0433H155.966C156.322 36.0433 156.642 35.7119 156.642 35.3504V24.3455H166.734C167.091 24.3455 167.411 24.014 167.411 23.6525V18.7865C167.411 18.4212 167.087 18.0935 166.734 18.0935H156.642V11.3558L156.646 11.3482Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M196.694 36.0433C196.97 36.0433 197.191 35.9304 197.308 35.7232C197.433 35.5085 197.43 35.2223 197.301 34.9775L191.247 23.483L191.402 23.419C195.326 21.8033 197.761 18.4174 197.761 14.5872C197.761 9.35214 193.564 5.09631 188.404 5.09631H175.366C174.991 5.09631 174.689 5.4089 174.689 5.78929V35.3504C174.689 35.7345 174.995 36.0433 175.366 36.0433H180.556C180.912 36.0433 181.232 35.7119 181.232 35.3504V23.8107H184.484L190.324 35.727C190.383 35.8513 190.589 36.0433 190.887 36.0433H196.694ZM187.845 18.4438H181.24V11.1712H187.845C189.724 11.1712 191.31 12.7945 191.31 14.719C191.31 16.6435 189.691 18.4438 187.845 18.4438Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M204.587 5.09235H209.82C210.196 5.09235 210.497 5.40494 210.497 5.78533V35.3464C210.497 35.7306 210.192 36.0394 209.82 36.0394H204.587C204.212 36.0394 203.91 35.7268 203.91 35.3464V5.78533C203.91 5.40118 204.215 5.09235 204.587 5.09235Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M224.8 11.3482H237.029C237.404 11.3482 237.706 11.0356 237.706 10.6552V5.78929C237.706 5.40514 237.401 5.09631 237.029 5.09631H218.975C218.599 5.09631 218.298 5.4089 218.298 5.78929V35.3504C218.298 35.7345 218.603 36.0433 218.975 36.0433H237.029C237.404 36.0433 237.706 35.7307 237.706 35.3504V30.4844C237.706 30.1003 237.401 29.7914 237.029 29.7914H224.8V23.4566H234.892C235.267 23.4566 235.569 23.144 235.569 22.7636V17.8977C235.569 17.5324 235.245 17.2047 234.892 17.2047H224.8V11.3482Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M268.383 36.4913H269.082C269.45 36.4913 269.759 36.1937 269.759 35.8397V5.78527C269.759 5.41995 269.435 5.09229 269.082 5.09229H263.848C263.473 5.09229 263.172 5.40488 263.172 5.78527V21.7917H262.918L262.874 21.7503L245.518 4.6441H244.488C244.12 4.6441 243.812 4.94164 243.812 5.29566L243.856 35.3501C243.856 35.7154 244.179 36.0431 244.532 36.0431H249.722C250.097 36.0431 250.399 35.7305 250.399 35.3501V18.5415H250.656L250.7 18.5867L267.927 36.3143C267.979 36.367 268.288 36.4913 268.387 36.4913H268.383Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M288.835 5.09216H278.195C277.849 5.09216 277.559 5.40852 277.559 5.78514V35.3462C277.559 35.7228 277.849 36.0392 278.195 36.0392H288.835C297.191 36.0392 303.991 29.0755 303.991 20.5186C303.991 11.9617 297.191 5.08839 288.835 5.08839V5.09216ZM288.397 29.7421H284.061V11.3479H288.397C293.329 11.3479 297.051 15.2911 297.051 20.5224C297.051 25.7536 293.333 29.7421 288.397 29.7421Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,164 @@
|
||||
import { levelVariants } from "../../variants"
|
||||
|
||||
import type { LevelProps } from "../../levels"
|
||||
|
||||
export default function DearFriend({
|
||||
className,
|
||||
color,
|
||||
height = "44",
|
||||
width = "294",
|
||||
...props
|
||||
}: LevelProps) {
|
||||
const classNames = levelVariants({
|
||||
className,
|
||||
color,
|
||||
})
|
||||
return (
|
||||
<svg
|
||||
className={classNames}
|
||||
fill="none"
|
||||
height={height}
|
||||
viewBox="0 0 294 44"
|
||||
width={width}
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
d="M28.6533 11.6529C28.6533 11.6529 28.6163 11.6159 28.5978 11.5975C28.5793 11.579 28.5608 11.5605 28.5423 11.542C28.5238 11.5235 28.5052 11.505 28.4867 11.4865C28.4682 11.468 28.4497 11.4495 28.4312 11.431C28.4127 11.4125 28.3942 11.394 28.3757 11.3755C28.3572 11.3571 28.3387 11.3386 28.3202 11.3201C28.3017 11.3016 28.2831 11.2831 28.2646 11.2646C28.2461 11.2461 28.2276 11.2276 28.2091 11.2091C28.1906 11.1906 28.1721 11.1721 28.1536 11.1536C28.1351 11.1351 28.1166 11.1167 28.0981 11.0982C28.0795 11.0797 28.061 11.0612 28.0425 11.0427C28.024 11.0242 28.0055 11.0057 27.987 10.9872C27.9685 10.9687 27.95 10.9502 27.9315 10.9317C27.913 10.9132 27.8945 10.8947 27.876 10.8763C27.8574 10.8578 27.8389 10.8393 27.8204 10.8208C27.8019 10.8023 27.7834 10.7838 27.7649 10.7653C27.7464 10.7468 27.7279 10.7283 27.7094 10.7098C27.6909 10.6913 27.6724 10.6728 27.6538 10.6544C27.6353 10.6359 27.6168 10.6174 27.5983 10.5989C27.5909 10.5915 27.5835 10.5841 27.5798 10.5804C27.5909 10.5952 27.5983 10.61 27.6094 10.6248C30.3191 13.4615 31.9923 17.2857 31.9923 21.4797C31.9923 30.2598 24.8331 37.3645 16.0934 37.3645H5.04C4.81789 37.3645 4.6217 37.261 4.47363 37.1056C4.48844 37.1241 4.50695 37.1426 4.52546 37.1574C4.54397 37.1759 4.56247 37.1944 4.58098 37.2129C4.59949 37.2314 4.618 37.2499 4.63651 37.2684C4.65502 37.2869 4.67353 37.3053 4.69203 37.3238C4.71054 37.3423 4.72905 37.3608 4.74756 37.3793C4.76607 37.3978 4.78458 37.4163 4.80309 37.4348C4.8216 37.4533 4.8401 37.4718 4.85861 37.4903C4.87712 37.5088 4.89563 37.5273 4.91414 37.5457C4.93265 37.5642 4.95116 37.5827 4.96966 37.6012C4.98817 37.6197 5.00668 37.6382 5.02519 37.6567C5.0437 37.6752 5.06221 37.6937 5.08072 37.7122C5.09922 37.7307 5.11773 37.7492 5.13624 37.7677C5.15475 37.7861 5.17326 37.8046 5.19177 37.8231C5.21028 37.8416 5.22878 37.8601 5.24729 37.8786C5.2658 37.8971 5.28431 37.9156 5.30282 37.9341C5.32133 37.9526 5.33984 37.9711 5.35835 37.9896C5.37685 38.0081 5.39536 38.0265 5.41387 38.045C5.43238 38.0635 5.45089 38.082 5.4694 38.1005C5.48791 38.119 5.50641 38.1375 5.52492 38.156C5.54343 38.1745 5.56194 38.193 5.58045 38.2115C5.59895 38.23 5.61747 38.2485 5.63597 38.2669C5.65448 38.2854 5.67299 38.3039 5.6915 38.3224C5.71001 38.3409 5.72852 38.3594 5.74703 38.3779C5.76554 38.3964 5.78404 38.4149 5.80255 38.4334C5.82106 38.4519 5.83957 38.4704 5.85807 38.4889C6.00614 38.6627 6.21344 38.7773 6.45405 38.7773H17.5074C26.2509 38.7773 33.4063 31.6726 33.4063 22.8925C33.4063 18.5357 31.6073 14.5784 28.7088 11.7121C28.6903 11.6936 28.6718 11.6751 28.6533 11.6566V11.6529Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M15.6562 12.3511H11.3066V29.1383H12.6985V13.7454H17.048C18.6731 13.7454 20.1501 14.1633 21.4198 14.8845C21.1754 14.5184 20.9052 14.1744 20.6128 13.8527C19.2246 12.9059 17.5403 12.3548 15.6562 12.3548V12.3511Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M154.943 8.04625C154.924 8.02775 154.906 8.00926 154.887 7.99077C154.869 7.97228 154.85 7.95379 154.832 7.9353C154.813 7.9168 154.795 7.89831 154.776 7.87981C154.758 7.86132 154.739 7.84283 154.721 7.82434C154.702 7.80585 154.684 7.78735 154.665 7.76886C154.647 7.75037 154.628 7.73188 154.61 7.71339C154.591 7.69489 154.572 7.6764 154.554 7.65791C154.535 7.63942 154.517 7.62092 154.498 7.60243C154.48 7.58394 154.461 7.56545 154.443 7.54696C154.424 7.52847 154.406 7.50997 154.387 7.49148C154.369 7.47299 154.35 7.4545 154.332 7.436C154.313 7.41751 154.295 7.39902 154.276 7.38053C154.258 7.36204 154.239 7.34354 154.221 7.32505C154.202 7.30656 154.184 7.28807 154.165 7.26957C154.147 7.25108 154.128 7.23258 154.11 7.21409C154.091 7.1956 154.073 7.17711 154.054 7.15862C154.036 7.14012 154.017 7.12164 153.999 7.10315C153.98 7.08465 153.962 7.06616 153.943 7.04766C153.925 7.02917 153.906 7.01068 153.888 6.99219C153.869 6.9737 153.851 6.9552 153.832 6.93671C153.814 6.91822 153.795 6.89973 153.777 6.88123C153.758 6.86274 153.74 6.84425 153.721 6.82576C153.703 6.80727 153.684 6.78877 153.666 6.77028C153.647 6.75179 153.632 6.7333 153.614 6.7185C153.766 6.87754 153.862 7.08835 153.862 7.31395V12.2477C153.862 12.6989 153.499 13.1057 153.003 13.1057H140.454V18.0801H141.846V14.4963H154.395C154.895 14.4963 155.254 14.0895 155.254 13.6383V8.70456C155.254 8.46416 155.146 8.24226 154.976 8.07953C154.957 8.06104 154.939 8.04255 154.92 8.02406L154.943 8.04625Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M152.707 21.2206C152.689 21.2021 152.674 21.1836 152.652 21.1651C152.633 21.1466 152.615 21.1281 152.596 21.1096C152.578 21.0911 152.559 21.0726 152.541 21.0541C152.522 21.0357 152.507 21.0172 152.485 20.9987C152.467 20.9802 152.448 20.9617 152.43 20.9432C152.411 20.9247 152.396 20.9062 152.374 20.8877C152.356 20.8692 152.341 20.8507 152.319 20.8323C152.3 20.8138 152.282 20.7953 152.263 20.7768C152.245 20.7583 152.23 20.7398 152.208 20.7213C152.189 20.7028 152.174 20.6843 152.152 20.6658C152.133 20.6473 152.115 20.6288 152.096 20.6103C152.078 20.5918 152.063 20.5734 152.041 20.5549C152.022 20.5364 152.004 20.5179 151.985 20.4994C151.967 20.4809 151.948 20.4624 151.93 20.4439C151.911 20.4254 151.897 20.4069 151.874 20.3884C151.856 20.3699 151.837 20.3515 151.819 20.333C151.8 20.3145 151.786 20.296 151.763 20.2775C151.745 20.259 151.73 20.2405 151.708 20.222C151.689 20.2035 151.671 20.185 151.652 20.1665C151.634 20.148 151.619 20.1295 151.597 20.1111C151.578 20.0926 151.563 20.0741 151.541 20.0556C151.523 20.0371 151.504 20.0186 151.486 20.0001C151.467 19.9816 151.452 19.9631 151.43 19.9446C151.419 19.9335 151.408 19.9224 151.397 19.9113C151.545 20.0667 151.641 20.2664 151.641 20.4846V25.4183C151.641 25.8695 151.234 26.2801 150.779 26.2801H140.451V37.2792C140.451 37.7304 140.044 38.1373 139.592 38.1373H134.247C133.999 38.1373 133.791 38.0337 133.64 37.8784C133.654 37.8969 133.673 37.9117 133.691 37.9302C133.71 37.9487 133.728 37.9671 133.747 37.9856C133.766 38.0041 133.784 38.0226 133.803 38.0411C133.821 38.0596 133.84 38.0781 133.858 38.0966C133.877 38.1151 133.895 38.1336 133.914 38.1521C133.932 38.1706 133.951 38.1891 133.969 38.2076C133.988 38.226 134.006 38.2445 134.025 38.263C134.043 38.2815 134.062 38.3 134.08 38.3185C134.099 38.337 134.117 38.3555 134.136 38.374C134.154 38.3925 134.173 38.411 134.191 38.4295C134.21 38.4479 134.228 38.4664 134.247 38.4849C134.265 38.5034 134.284 38.5219 134.302 38.5404C134.321 38.5589 134.339 38.5774 134.358 38.5959C134.376 38.6144 134.395 38.6329 134.413 38.6514C134.432 38.6699 134.45 38.6883 134.469 38.7068C134.487 38.7253 134.506 38.7438 134.524 38.7623C134.543 38.7808 134.561 38.7993 134.58 38.8178C134.598 38.8363 134.617 38.8548 134.635 38.8733C134.654 38.8918 134.672 38.9102 134.691 38.9287C134.709 38.9472 134.728 38.9657 134.746 38.9842C134.765 39.0027 134.783 39.0212 134.802 39.0397C134.82 39.0582 134.839 39.0767 134.858 39.0952C134.876 39.1137 134.895 39.1322 134.913 39.1507C134.932 39.1691 134.95 39.1876 134.969 39.2061C134.987 39.2246 135.006 39.2431 135.024 39.2616C135.18 39.4354 135.398 39.5538 135.661 39.5538H141.006C141.458 39.5538 141.865 39.147 141.865 38.6957V27.6966H152.193C152.644 27.6966 153.055 27.2897 153.055 26.8385V21.9048C153.055 21.6644 152.937 21.4425 152.763 21.2835C152.744 21.265 152.729 21.2465 152.707 21.228V21.2206Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M173.215 14.3378C173.366 14.3378 173.511 14.3563 173.655 14.3748C173.577 13.9753 173.422 13.6015 173.207 13.2649C172.778 13.0652 172.311 12.9432 171.819 12.9432H165.115V18.4613H166.507V14.3375H173.211L173.215 14.3378Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M183.679 17.6401C183.679 14.9365 182.558 12.4807 180.755 10.7092C180.736 10.6907 180.718 10.6722 180.699 10.6537C180.681 10.6352 180.662 10.6167 180.644 10.5982C180.625 10.5797 180.607 10.5613 180.588 10.5428C180.57 10.5243 180.551 10.5058 180.533 10.4873C180.514 10.4688 180.496 10.4503 180.477 10.4318C180.459 10.4133 180.44 10.3948 180.422 10.3763C180.403 10.3578 180.385 10.3393 180.366 10.3209C180.348 10.3024 180.329 10.2839 180.311 10.2654C180.292 10.2469 180.274 10.2284 180.255 10.2099C180.237 10.1914 180.218 10.1729 180.2 10.1544C180.181 10.1359 180.163 10.1174 180.144 10.0989C180.126 10.0804 180.107 10.062 180.089 10.0435C180.07 10.025 180.051 10.0065 180.033 9.98799C180.014 9.9695 179.996 9.95101 179.977 9.93251C179.959 9.91402 179.94 9.89553 179.922 9.87704C179.903 9.85855 179.885 9.84005 179.866 9.82156C179.848 9.80307 179.829 9.78458 179.811 9.76608C179.792 9.74759 179.774 9.7291 179.755 9.71061C179.737 9.69211 179.718 9.67362 179.7 9.65513C179.681 9.63664 179.663 9.61815 179.644 9.59966C179.626 9.58116 179.607 9.56267 179.589 9.54418C179.57 9.52569 179.552 9.50719 179.533 9.4887C179.515 9.47021 179.496 9.45172 179.478 9.43322C179.459 9.41473 179.441 9.39624 179.422 9.37775C179.404 9.35925 179.389 9.34076 179.37 9.32597C181.158 11.0975 182.265 13.5385 182.265 16.2273C182.265 20.3917 179.5 23.7425 175.561 25.3254L181.765 36.8202C182.084 37.4083 181.765 38.1332 180.995 38.1332H174.969C174.71 38.1332 174.503 38.0185 174.373 37.8854C174.384 37.8965 174.399 37.9112 174.41 37.9223C174.425 37.9408 174.443 37.9593 174.466 37.9778C174.48 37.9963 174.499 38.0148 174.521 38.0333C174.536 38.0518 174.554 38.0703 174.577 38.0888C174.591 38.1073 174.61 38.1258 174.632 38.1443C174.647 38.1627 174.665 38.1812 174.688 38.1997C174.703 38.2182 174.721 38.2367 174.743 38.2552C174.758 38.2737 174.777 38.2922 174.799 38.3107C174.814 38.3292 174.832 38.3477 174.854 38.3662C174.869 38.3847 174.888 38.4031 174.91 38.4216C174.925 38.4401 174.943 38.4586 174.965 38.4771C174.98 38.4956 174.999 38.5141 175.021 38.5326C175.036 38.5511 175.054 38.5696 175.076 38.5881C175.091 38.6066 175.11 38.6251 175.132 38.6435C175.147 38.662 175.165 38.6805 175.187 38.699C175.202 38.7175 175.221 38.736 175.243 38.7545C175.258 38.773 175.276 38.7915 175.298 38.81C175.313 38.8285 175.332 38.847 175.354 38.8655C175.369 38.884 175.387 38.9024 175.41 38.9209C175.424 38.9394 175.443 38.9579 175.465 38.9764C175.48 38.9949 175.498 39.0134 175.521 39.0319C175.535 39.0504 175.554 39.0689 175.576 39.0874C175.591 39.1059 175.609 39.1243 175.632 39.1428C175.646 39.1613 175.665 39.1798 175.687 39.1983C175.702 39.2168 175.72 39.2353 175.743 39.2538C175.872 39.4017 176.098 39.546 176.383 39.546H182.409C183.179 39.546 183.498 38.8211 183.179 38.233L176.975 26.7383C180.918 25.1553 183.679 21.8045 183.679 17.6401Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M165.115 25.7541V37.2969C165.115 37.7481 164.708 38.155 164.257 38.155H158.867C158.619 38.155 158.412 38.0514 158.26 37.8924C158.275 37.9109 158.293 37.9294 158.312 37.9442C158.33 37.9627 158.349 37.9811 158.367 37.9996C158.386 38.0181 158.404 38.0366 158.423 38.0551C158.441 38.0736 158.46 38.0921 158.478 38.1106C158.497 38.1291 158.515 38.1476 158.534 38.1661C158.552 38.1846 158.571 38.203 158.589 38.2215C158.608 38.24 158.626 38.2585 158.645 38.277C158.663 38.2955 158.682 38.314 158.7 38.3325C158.719 38.351 158.737 38.3695 158.756 38.388C158.774 38.4065 158.793 38.425 158.811 38.4435C158.83 38.4619 158.848 38.4804 158.867 38.4989C158.885 38.5174 158.904 38.5359 158.922 38.5544C158.941 38.5729 158.959 38.5914 158.978 38.6099C158.996 38.6284 159.015 38.6469 159.033 38.6654C159.052 38.6839 159.07 38.7023 159.089 38.7208C159.107 38.7393 159.126 38.7578 159.144 38.7763C159.163 38.7948 159.181 38.8133 159.2 38.8318C159.219 38.8503 159.237 38.8688 159.256 38.8873C159.274 38.9058 159.293 38.9242 159.311 38.9427C159.33 38.9612 159.348 38.9797 159.367 38.9982C159.385 39.0167 159.404 39.0352 159.422 39.0537C159.441 39.0722 159.459 39.0907 159.478 39.1092C159.496 39.1277 159.515 39.1462 159.533 39.1646C159.552 39.1831 159.57 39.2016 159.589 39.2201C159.607 39.2386 159.626 39.2571 159.644 39.2756C159.8 39.4494 160.018 39.5678 160.281 39.5678H165.671C166.122 39.5678 166.529 39.161 166.529 38.7097V27.1669H168.099L167.399 25.7763H165.138L165.115 25.7541Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M195.655 8.04914C195.637 8.03064 195.618 8.01215 195.6 7.99366C195.581 7.97516 195.566 7.95667 195.544 7.93818C195.525 7.91969 195.511 7.90119 195.488 7.8827C195.47 7.86421 195.455 7.84572 195.433 7.82723C195.414 7.80874 195.4 7.79025 195.377 7.77176C195.359 7.75326 195.34 7.73476 195.322 7.71627C195.303 7.69778 195.289 7.67929 195.266 7.6608C195.248 7.64231 195.233 7.62381 195.211 7.60532C195.192 7.58682 195.174 7.56834 195.155 7.54984C195.137 7.53135 195.122 7.51286 195.1 7.49437C195.081 7.47588 195.066 7.45738 195.044 7.43889C195.026 7.4204 195.007 7.40191 194.989 7.38342C194.97 7.36492 194.955 7.34643 194.933 7.32793C194.915 7.30944 194.896 7.29095 194.878 7.27246C194.859 7.25397 194.844 7.23548 194.822 7.21698C194.804 7.19849 194.789 7.18 194.767 7.16151C194.748 7.14301 194.73 7.12452 194.711 7.10603C194.693 7.08754 194.674 7.06904 194.656 7.05055C194.637 7.03206 194.622 7.01357 194.6 6.99508C194.582 6.97658 194.563 6.95809 194.545 6.9396C194.526 6.92111 194.511 6.90262 194.489 6.88412C194.47 6.86563 194.452 6.84714 194.433 6.82865C194.415 6.81016 194.396 6.79166 194.378 6.77317C194.367 6.76208 194.356 6.75098 194.345 6.73988C194.489 6.89522 194.589 7.09494 194.589 7.31314V37.2742C194.589 37.7255 194.182 38.1323 193.726 38.1323H188.289C188.074 38.1323 187.87 38.0361 187.715 37.8882C187.726 37.8993 187.737 37.9104 187.748 37.9215C187.767 37.94 187.781 37.9585 187.804 37.977C187.822 37.9954 187.841 38.0139 187.859 38.0324C187.878 38.0509 187.893 38.0694 187.915 38.0879C187.933 38.1064 187.948 38.1249 187.97 38.1434C187.989 38.1619 188.007 38.1804 188.026 38.1989C188.044 38.2174 188.059 38.2358 188.081 38.2543C188.1 38.2728 188.115 38.2913 188.137 38.3098C188.155 38.3283 188.174 38.3468 188.192 38.3653C188.211 38.3838 188.226 38.4023 188.248 38.4208C188.266 38.4393 188.285 38.4577 188.303 38.4762C188.322 38.4947 188.34 38.5132 188.359 38.5317C188.377 38.5502 188.392 38.5687 188.414 38.5872C188.433 38.6057 188.451 38.6242 188.47 38.6427C188.488 38.6612 188.503 38.6797 188.526 38.6982C188.544 38.7166 188.559 38.7351 188.581 38.7536C188.6 38.7721 188.618 38.7906 188.637 38.8091C188.655 38.8276 188.674 38.8461 188.692 38.8646C188.711 38.8831 188.725 38.9016 188.748 38.9201C188.766 38.9386 188.785 38.957 188.803 38.9755C188.822 38.994 188.836 39.0125 188.859 39.031C188.877 39.0495 188.896 39.068 188.914 39.0865C188.933 39.105 188.951 39.1235 188.97 39.142C188.988 39.1605 189.007 39.1789 189.025 39.1974C189.044 39.2159 189.059 39.2344 189.081 39.2529C189.24 39.4267 189.462 39.5451 189.703 39.5451H195.141C195.592 39.5451 196.003 39.1383 196.003 38.687V8.72595C196.003 8.48555 195.885 8.26364 195.711 8.10461C195.692 8.08612 195.674 8.06763 195.655 8.04914Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M223.029 33.0771C223.011 33.0587 222.992 33.0402 222.974 33.0217C222.955 33.0032 222.937 32.9847 222.918 32.9662C222.9 32.9477 222.881 32.9292 222.863 32.9107C222.844 32.8922 222.826 32.8737 222.807 32.8552C222.789 32.8368 222.77 32.8183 222.752 32.7998C222.733 32.7813 222.715 32.7628 222.696 32.7443C222.678 32.7258 222.659 32.7073 222.641 32.6888C222.622 32.6703 222.604 32.6518 222.585 32.6333C222.567 32.6149 222.548 32.5964 222.529 32.5779C222.511 32.5594 222.492 32.5409 222.474 32.5224C222.455 32.5039 222.437 32.4854 222.418 32.4669C222.4 32.4484 222.381 32.4299 222.363 32.4114C222.344 32.3929 222.326 32.3744 222.307 32.356C222.289 32.3375 222.27 32.319 222.252 32.3005C222.233 32.282 222.215 32.2635 222.196 32.245C222.178 32.2265 222.159 32.208 222.141 32.1895C222.122 32.171 222.104 32.1525 222.085 32.134C222.067 32.1156 222.048 32.0971 222.03 32.0786C222.011 32.0601 221.993 32.0416 221.974 32.0231C221.956 32.0046 221.937 31.9861 221.919 31.9676C221.9 31.9491 221.882 31.9306 221.863 31.9121C221.845 31.8936 221.826 31.8752 221.808 31.8567C221.789 31.8382 221.771 31.8197 221.752 31.8012C221.734 31.7827 221.719 31.7642 221.7 31.7494C221.852 31.9084 221.948 32.1193 221.948 32.3449V37.2786C221.948 37.7298 221.586 38.1366 221.09 38.1366H202.337C202.089 38.1366 201.881 38.0331 201.729 37.874C201.748 37.8925 201.763 37.911 201.781 37.9258C201.8 37.9443 201.818 37.9628 201.837 37.9813C201.855 37.9998 201.874 38.0183 201.892 38.0368C201.911 38.0553 201.929 38.0737 201.948 38.0922C201.966 38.1107 201.985 38.1292 202.003 38.1477C202.022 38.1662 202.04 38.1847 202.059 38.2032C202.077 38.2217 202.096 38.2402 202.114 38.2587C202.133 38.2772 202.151 38.2957 202.17 38.3141C202.189 38.3326 202.207 38.3511 202.226 38.3696C202.244 38.3881 202.263 38.4066 202.281 38.4251C202.3 38.4436 202.318 38.4621 202.337 38.4806C202.355 38.4991 202.374 38.5176 202.392 38.5361C202.411 38.5545 202.429 38.573 202.448 38.5915C202.466 38.61 202.485 38.6285 202.503 38.647C202.522 38.6655 202.54 38.684 202.559 38.7025C202.577 38.721 202.596 38.7395 202.614 38.758C202.633 38.7765 202.651 38.795 202.67 38.8134C202.688 38.8319 202.707 38.8504 202.725 38.8689C202.744 38.8874 202.762 38.9059 202.781 38.9244C202.799 38.9429 202.818 38.9614 202.836 38.9799C202.855 38.9984 202.873 39.0169 202.892 39.0354C202.91 39.0538 202.929 39.0723 202.947 39.0908C202.966 39.1093 202.984 39.1278 203.003 39.1463C203.021 39.1648 203.04 39.1833 203.058 39.2018C203.077 39.2203 203.095 39.2388 203.114 39.2573C203.269 39.4311 203.488 39.5494 203.751 39.5494H222.504C223 39.5494 223.362 39.1426 223.362 38.6914V33.7577C223.362 33.5173 223.255 33.2954 223.085 33.1326C223.066 33.1141 223.048 33.0956 223.029 33.0771Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M223.029 8.04625C223.011 8.02775 222.992 8.00926 222.974 7.99077C222.955 7.97228 222.937 7.95379 222.918 7.9353C222.9 7.9168 222.881 7.89831 222.863 7.87981C222.844 7.86132 222.825 7.84283 222.807 7.82434C222.788 7.80585 222.77 7.78735 222.751 7.76886C222.733 7.75037 222.714 7.73188 222.696 7.71339C222.677 7.69489 222.659 7.6764 222.64 7.65791C222.622 7.63942 222.603 7.62092 222.585 7.60243C222.566 7.58394 222.548 7.56545 222.529 7.54696C222.511 7.52847 222.492 7.50997 222.474 7.49147C222.455 7.47298 222.437 7.4545 222.418 7.436C222.4 7.41751 222.381 7.39902 222.363 7.38053C222.344 7.36204 222.326 7.34354 222.307 7.32505C222.289 7.30655 222.27 7.28807 222.252 7.26957C222.233 7.25108 222.215 7.23258 222.196 7.21409C222.178 7.1956 222.159 7.17711 222.141 7.15862C222.122 7.14012 222.104 7.12164 222.085 7.10315C222.067 7.08465 222.048 7.06616 222.03 7.04766C222.011 7.02917 221.993 7.01068 221.974 6.99219C221.956 6.9737 221.937 6.9552 221.919 6.93671C221.9 6.91822 221.882 6.89973 221.863 6.88123C221.845 6.86274 221.826 6.84425 221.808 6.82576C221.789 6.80727 221.77 6.78877 221.752 6.77028C221.733 6.75179 221.719 6.7333 221.7 6.7185C221.852 6.87754 221.948 7.08835 221.948 7.31395V12.2477C221.948 12.6989 221.585 13.1057 221.089 13.1057H208.541V17.174H209.932V14.4963H222.481C222.977 14.4963 223.34 14.0895 223.34 13.6383V8.70456C223.34 8.46416 223.233 8.24226 223.062 8.07953C223.044 8.06104 223.025 8.04255 223.007 8.02406L223.029 8.04625Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M209.955 26.7855H220.282C220.734 26.7855 221.145 26.4231 221.145 25.9275V20.9938C221.145 20.7534 221.026 20.5315 220.852 20.3724C220.834 20.3539 220.819 20.3354 220.797 20.317C220.778 20.2985 220.76 20.28 220.741 20.2615C220.723 20.243 220.708 20.2245 220.686 20.206C220.667 20.1875 220.653 20.169 220.63 20.1505C220.612 20.132 220.593 20.1135 220.575 20.095C220.556 20.0766 220.542 20.0581 220.519 20.0396C220.501 20.0211 220.482 20.0026 220.464 19.9841C220.445 19.9656 220.427 19.9471 220.408 19.9286C220.39 19.9101 220.375 19.8916 220.353 19.8731C220.334 19.8547 220.319 19.8362 220.297 19.8177C220.279 19.7992 220.264 19.7807 220.242 19.7622C220.223 19.7437 220.208 19.7252 220.186 19.7067C220.168 19.6882 220.149 19.6697 220.131 19.6512C220.112 19.6327 220.097 19.6142 220.075 19.5958C220.057 19.5773 220.042 19.5588 220.02 19.5403C220.001 19.5218 219.983 19.5033 219.964 19.4848C219.946 19.4663 219.931 19.4478 219.909 19.4293C219.89 19.4108 219.875 19.3923 219.853 19.3738C219.834 19.3554 219.816 19.3369 219.797 19.3184C219.779 19.2999 219.764 19.2814 219.742 19.2629C219.723 19.2444 219.709 19.2259 219.686 19.2074C219.668 19.1889 219.653 19.1704 219.631 19.1519C219.612 19.1335 219.598 19.115 219.575 19.0965C219.557 19.078 219.538 19.0595 219.52 19.041C219.509 19.0299 219.498 19.0188 219.487 19.0114C219.631 19.1667 219.731 19.3665 219.731 19.581V24.5147C219.731 25.014 219.324 25.3727 218.868 25.3727H208.541V29.9403H209.932V26.767L209.955 26.7855Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M234.246 37.2977C234.246 37.7489 233.883 38.1557 233.387 38.1557H227.997C227.783 38.1557 227.583 38.0596 227.427 37.9153C227.438 37.9264 227.446 37.9375 227.457 37.9449C227.475 37.9634 227.49 37.9819 227.512 38.0004C227.531 38.0189 227.549 38.0374 227.568 38.0558C227.586 38.0743 227.601 38.0928 227.623 38.1113C227.642 38.1298 227.66 38.1483 227.679 38.1668C227.697 38.1853 227.716 38.2038 227.734 38.2223C227.753 38.2408 227.768 38.2593 227.79 38.2777C227.809 38.2962 227.827 38.3147 227.846 38.3332C227.864 38.3517 227.879 38.3702 227.901 38.3887C227.92 38.4072 227.934 38.4257 227.957 38.4442C227.975 38.4627 227.994 38.4812 228.012 38.4997C228.031 38.5181 228.045 38.5366 228.068 38.5551C228.086 38.5736 228.101 38.5921 228.123 38.6106C228.142 38.6291 228.16 38.6476 228.179 38.6661C228.197 38.6846 228.212 38.7031 228.234 38.7216C228.253 38.7401 228.271 38.7585 228.29 38.777C228.308 38.7955 228.327 38.814 228.345 38.8325C228.364 38.851 228.379 38.8695 228.401 38.888C228.419 38.9065 228.438 38.925 228.456 38.9435C228.475 38.962 228.49 38.9805 228.512 38.999C228.53 39.0174 228.545 39.0359 228.567 39.0544C228.586 39.0729 228.604 39.0914 228.623 39.1099C228.641 39.1284 228.656 39.1469 228.678 39.1654C228.697 39.1839 228.712 39.2024 228.734 39.2209C228.752 39.2394 228.771 39.2578 228.789 39.2763C228.949 39.4502 229.171 39.5685 229.411 39.5685H234.801C235.301 39.5685 235.66 39.1617 235.66 38.7105V22.012L234.268 20.614V37.3199L234.246 37.2977Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M255.405 8.04914C255.386 8.03064 255.368 8.01215 255.349 7.99366C255.33 7.97516 255.316 7.95668 255.293 7.93818C255.275 7.91969 255.256 7.90119 255.238 7.8827C255.219 7.86421 255.201 7.84572 255.182 7.82723C255.164 7.80874 255.149 7.79025 255.127 7.77176C255.108 7.75326 255.09 7.73476 255.071 7.71627C255.053 7.69778 255.038 7.67929 255.016 7.6608C254.997 7.64231 254.983 7.62381 254.96 7.60532C254.942 7.58682 254.923 7.56834 254.905 7.54984C254.886 7.53135 254.872 7.51286 254.849 7.49437C254.831 7.47588 254.816 7.45738 254.794 7.43889C254.775 7.4204 254.757 7.40191 254.738 7.38342C254.72 7.36492 254.705 7.34643 254.683 7.32793C254.664 7.30944 254.646 7.29095 254.627 7.27246C254.609 7.25397 254.59 7.23548 254.572 7.21698C254.553 7.19849 254.538 7.18 254.516 7.16151C254.498 7.14301 254.479 7.12452 254.461 7.10603C254.442 7.08754 254.427 7.06904 254.405 7.05055C254.387 7.03206 254.372 7.01357 254.35 6.99508C254.331 6.97658 254.313 6.95809 254.294 6.9396C254.276 6.92111 254.257 6.90262 254.239 6.88412C254.22 6.86563 254.205 6.84714 254.183 6.82865C254.165 6.81016 254.146 6.79166 254.128 6.77317C254.117 6.76208 254.105 6.75098 254.094 6.73988C254.242 6.89522 254.339 7.09494 254.339 7.31314V37.7735C254.339 38.2248 253.931 38.5872 253.48 38.5872H252.754C252.618 38.5872 252.259 38.454 252.166 38.3616L252.636 38.8313L252.688 38.8868L253.076 39.2751L253.128 39.3306L253.572 39.7744C253.665 39.8669 254.024 40 254.161 40H254.886C255.338 40 255.745 39.6376 255.745 39.1864V8.72595C255.745 8.48555 255.627 8.26364 255.453 8.10461C255.434 8.08612 255.419 8.06763 255.397 8.04914H255.405Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M285.659 12.4287C285.659 12.4287 285.622 12.3917 285.604 12.3732C285.585 12.3547 285.567 12.3362 285.548 12.3178C285.53 12.2993 285.511 12.2808 285.493 12.2623C285.474 12.2438 285.456 12.2253 285.437 12.2068C285.419 12.1883 285.4 12.1698 285.382 12.1513C285.363 12.1328 285.345 12.1143 285.326 12.0958C285.308 12.0774 285.289 12.0589 285.271 12.0404C285.252 12.0219 285.233 12.0034 285.215 11.9849C285.196 11.9664 285.178 11.9479 285.159 11.9294C285.141 11.9109 285.122 11.8924 285.104 11.8739C285.085 11.8554 285.067 11.837 285.048 11.8185C285.03 11.8 285.011 11.7815 284.993 11.763C284.974 11.7445 284.956 11.726 284.937 11.7075C284.919 11.689 284.9 11.6705 284.882 11.652C284.863 11.6335 284.845 11.615 284.826 11.5966C284.808 11.5781 284.789 11.5596 284.771 11.5411C284.752 11.5226 284.734 11.5041 284.715 11.4856C284.697 11.4671 284.678 11.4486 284.66 11.4301C284.641 11.4116 284.623 11.3931 284.604 11.3746C284.597 11.3673 284.589 11.3599 284.586 11.3562C284.597 11.371 284.604 11.3857 284.615 11.4005C287.325 14.2372 288.998 18.0614 288.998 22.2555C288.998 31.0356 281.839 38.1403 273.099 38.1403H262.046C261.824 38.1403 261.628 38.0367 261.479 37.8814C261.494 37.8999 261.513 37.9184 261.531 37.9332C261.55 37.9517 261.568 37.9702 261.587 37.9887C261.605 38.0071 261.624 38.0257 261.642 38.0441C261.661 38.0626 261.679 38.0811 261.698 38.0996C261.716 38.1181 261.735 38.1366 261.753 38.1551C261.772 38.1736 261.79 38.1921 261.809 38.2106C261.827 38.2291 261.846 38.2476 261.864 38.266C261.883 38.2845 261.901 38.303 261.92 38.3215C261.938 38.34 261.957 38.3585 261.976 38.377C261.994 38.3955 262.013 38.414 262.031 38.4325C262.05 38.451 262.068 38.4695 262.087 38.488C262.105 38.5064 262.124 38.5249 262.142 38.5434C262.161 38.5619 262.179 38.5804 262.198 38.5989C262.216 38.6174 262.235 38.6359 262.253 38.6544C262.272 38.6729 262.29 38.6914 262.309 38.7099C262.327 38.7284 262.346 38.7468 262.364 38.7653C262.383 38.7838 262.401 38.8023 262.42 38.8208C262.438 38.8393 262.457 38.8578 262.475 38.8763C262.494 38.8948 262.512 38.9133 262.531 38.9318C262.549 38.9503 262.568 38.9688 262.586 38.9872C262.605 39.0057 262.623 39.0242 262.642 39.0427C262.66 39.0612 262.679 39.0797 262.697 39.0982C262.716 39.1167 262.734 39.1352 262.753 39.1537C262.771 39.1722 262.79 39.1907 262.808 39.2092C262.827 39.2276 262.845 39.2461 262.864 39.2646C263.012 39.4385 263.223 39.5531 263.46 39.5531H274.513C283.257 39.5531 290.412 32.4484 290.412 23.6683C290.412 19.3115 288.613 15.3542 285.715 12.4879C285.696 12.4694 285.678 12.4509 285.659 12.4324V12.4287Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M269.708 14.5186L274.058 14.5185C275.683 14.5185 277.16 14.9364 278.429 15.6576C278.185 15.2914 277.915 14.9435 277.619 14.6254C276.231 13.6823 274.547 13.1275 272.662 13.1275L268.312 13.1278V29.9151H269.704V14.5185L269.708 14.5186Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M45.0921 13.7455H57.6409C58.1407 13.7455 58.4997 13.3386 58.4997 12.8837V7.95001C58.4997 7.70961 58.3924 7.4877 58.2221 7.32497C58.2036 7.30648 58.1851 7.28798 58.1666 7.26949C58.1481 7.251 58.1296 7.23251 58.1111 7.21402C58.0925 7.19552 58.074 7.17703 58.0555 7.15854C58.037 7.14005 58.0185 7.12156 58 7.10306C57.9815 7.08457 57.963 7.06608 57.9445 7.04759C57.926 7.02909 57.9075 7.0106 57.8889 6.99211C57.8704 6.97362 57.8519 6.95512 57.8334 6.93663C57.8149 6.91814 57.7964 6.89965 57.7779 6.88115C57.7594 6.86266 57.7409 6.84417 57.7224 6.82568C57.7039 6.80719 57.6853 6.78869 57.6668 6.7702C57.6483 6.75171 57.6298 6.73322 57.6113 6.71473C57.5928 6.69623 57.5743 6.67774 57.5558 6.65925C57.5373 6.64076 57.5188 6.62226 57.5003 6.60377C57.4818 6.58528 57.4633 6.56679 57.4447 6.5483C57.4262 6.5298 57.4077 6.51131 57.3892 6.49282C57.3707 6.47433 57.3522 6.45583 57.3337 6.43734C57.3152 6.41885 57.2967 6.40036 57.2782 6.38186C57.2597 6.36337 57.2411 6.34488 57.2226 6.32639C57.2041 6.3079 57.1856 6.28941 57.1671 6.27091C57.1486 6.25242 57.1301 6.23393 57.1116 6.21544C57.0931 6.19694 57.0746 6.17845 57.0561 6.15996C57.0376 6.14147 57.019 6.12297 57.0005 6.10448C56.982 6.08599 56.9635 6.0675 56.945 6.049C56.9265 6.03051 56.908 6.01202 56.8895 5.99353C56.8747 5.97504 56.8562 5.95655 56.8377 5.94175C56.9894 6.10078 57.0857 6.31159 57.0857 6.5372V11.4709C57.0857 11.9221 56.7229 12.3327 56.2232 12.3327H43.6743V16.401H45.0662V13.7233L45.0921 13.7455Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M45.0921 26.0086H55.4199C55.8715 26.0086 56.2787 25.6461 56.2787 25.1506V20.2168C56.2787 19.9764 56.1602 19.7545 55.9863 19.5955C55.9678 19.577 55.9492 19.5585 55.9307 19.54C55.9122 19.5215 55.8974 19.503 55.8752 19.4845C55.8567 19.466 55.8382 19.4475 55.8197 19.4291C55.8012 19.4106 55.7827 19.3921 55.7642 19.3736C55.7457 19.3551 55.7308 19.3366 55.7086 19.3181C55.6901 19.2996 55.6716 19.2811 55.6531 19.2626C55.6346 19.2441 55.6198 19.2256 55.5976 19.2072C55.5791 19.1887 55.5643 19.1702 55.5421 19.1517C55.5235 19.1332 55.505 19.1147 55.4865 19.0962C55.468 19.0777 55.4532 19.0592 55.431 19.0407C55.4125 19.0222 55.3977 19.0037 55.3755 18.9852C55.357 18.9668 55.3385 18.9483 55.3199 18.9298C55.3014 18.9113 55.2866 18.8928 55.2644 18.8743C55.2459 18.8558 55.2274 18.8373 55.2089 18.8188C55.1904 18.8003 55.1719 18.7818 55.1534 18.7633C55.1349 18.7448 55.1201 18.7264 55.0979 18.7079C55.0793 18.6894 55.0608 18.6709 55.0423 18.6524C55.0238 18.6339 55.009 18.6154 54.9868 18.5969C54.9683 18.5784 54.9535 18.5599 54.9313 18.5414C54.9128 18.5229 54.8943 18.5044 54.8757 18.486C54.8572 18.4675 54.8387 18.449 54.8202 18.4305C54.8017 18.412 54.7869 18.3935 54.7647 18.375C54.7462 18.3565 54.7277 18.338 54.7092 18.3195C54.6907 18.301 54.6759 18.2825 54.6536 18.264C54.6425 18.253 54.6314 18.2419 54.6203 18.2308C54.7647 18.3861 54.8646 18.5858 54.8646 18.8003V23.734C54.8646 24.2333 54.4574 24.5921 54.0021 24.5921H43.6743V29.1597H45.0662V25.9864L45.0921 26.0086Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M56.2458 37.3793H37.4928C37.2448 37.3793 37.0375 37.2758 36.8857 37.1167C36.9043 37.1352 36.9191 37.1537 36.9376 37.1685C36.9561 37.187 36.9746 37.2055 36.9931 37.224C37.0116 37.2425 37.0301 37.261 37.0486 37.2795C37.0671 37.2979 37.0856 37.3164 37.1041 37.3349C37.1226 37.3534 37.1412 37.3719 37.1597 37.3904C37.1782 37.4089 37.1967 37.4274 37.2152 37.4459C37.2337 37.4644 37.2522 37.4829 37.2707 37.5014C37.2892 37.5199 37.3077 37.5383 37.3262 37.5568C37.3448 37.5753 37.3633 37.5938 37.3818 37.6123C37.4003 37.6308 37.4188 37.6493 37.4373 37.6678C37.4558 37.6863 37.4743 37.7048 37.4928 37.7233C37.5113 37.7418 37.5298 37.7602 37.5484 37.7787C37.5669 37.7972 37.5854 37.8157 37.6039 37.8342C37.6224 37.8527 37.6409 37.8712 37.6594 37.8897C37.6779 37.9082 37.6964 37.9267 37.7149 37.9452C37.7334 37.9637 37.7519 37.9822 37.7705 38.0007C37.789 38.0191 37.8075 38.0376 37.826 38.0561C37.8445 38.0746 37.863 38.0931 37.8815 38.1116C37.9 38.1301 37.9185 38.1486 37.937 38.1671C37.9555 38.1856 37.974 38.2041 37.9926 38.2225C38.0111 38.241 38.0296 38.2595 38.0481 38.278C38.0666 38.2965 38.0851 38.315 38.1036 38.3335C38.1221 38.352 38.1406 38.3705 38.1591 38.389C38.1776 38.4075 38.1962 38.426 38.2147 38.4445C38.2332 38.463 38.2517 38.4814 38.2702 38.4999C38.4257 38.6738 38.6441 38.7921 38.9069 38.7921H57.6598C58.1596 38.7921 58.5186 38.3853 58.5186 37.9341V33.0003C58.5186 32.76 58.4113 32.538 58.241 32.3753C58.2225 32.3568 58.204 32.3383 58.1855 32.3198C58.167 32.3013 58.1485 32.2828 58.1299 32.2644C58.1114 32.2459 58.0929 32.2274 58.0744 32.2089C58.0559 32.1904 58.0374 32.1719 58.0189 32.1534C58.0004 32.1349 57.9819 32.1164 57.9634 32.0979C57.9449 32.0794 57.9264 32.0609 57.9079 32.0425C57.8893 32.024 57.8708 32.0055 57.8523 31.987C57.8338 31.9685 57.8153 31.95 57.7968 31.9315C57.7783 31.913 57.7598 31.8945 57.7413 31.876C57.7228 31.8575 57.7043 31.839 57.6857 31.8205C57.6672 31.8021 57.6487 31.7836 57.6302 31.7651C57.6117 31.7466 57.5932 31.7281 57.5747 31.7096C57.5562 31.6911 57.5377 31.6726 57.5192 31.6541C57.5007 31.6356 57.4821 31.6171 57.4636 31.5986C57.4451 31.5801 57.4266 31.5617 57.4081 31.5432C57.3896 31.5247 57.3711 31.5062 57.3526 31.4877C57.3341 31.4692 57.3156 31.4507 57.2971 31.4322C57.2785 31.4137 57.26 31.3952 57.2415 31.3767C57.223 31.3582 57.2045 31.3398 57.186 31.3213C57.1675 31.3028 57.149 31.2843 57.1305 31.2658C57.112 31.2473 57.0935 31.2288 57.075 31.2103C57.0565 31.1918 57.0379 31.1733 57.0194 31.1548C57.0009 31.1363 56.9824 31.1178 56.9639 31.0993C56.9454 31.0809 56.9269 31.0624 56.9084 31.0439C56.8936 31.0254 56.8751 31.0069 56.8566 30.9921C57.0083 31.1511 57.1046 31.3619 57.1046 31.5875V36.5213C57.1046 36.9725 56.7418 37.3793 56.2421 37.3793H56.2458Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M91.1745 36.2022C91.4447 36.7903 91.0857 37.3783 90.4046 37.3783H85.3776C84.8705 37.3783 84.541 37.2711 84.2634 36.9826C84.2819 37.0011 84.3004 37.0196 84.3189 37.0381C84.3374 37.0566 84.3559 37.0751 84.3745 37.0936C84.393 37.1121 84.4115 37.1306 84.43 37.149C84.4485 37.1675 84.467 37.186 84.4855 37.2045C84.504 37.223 84.5225 37.2415 84.541 37.26C84.5595 37.2785 84.578 37.297 84.5965 37.3155C84.6151 37.334 84.6336 37.3525 84.6521 37.371C84.6706 37.3894 84.6891 37.4079 84.7076 37.4264C84.7261 37.4449 84.7446 37.4634 84.7631 37.4819C84.7816 37.5004 84.8001 37.5189 84.8186 37.5374C84.8372 37.5559 84.8557 37.5744 84.8742 37.5929C84.8927 37.6114 84.9112 37.6299 84.9297 37.6483C84.9482 37.6668 84.9667 37.6853 84.9852 37.7038C85.0037 37.7223 85.0222 37.7408 85.0408 37.7593C85.0593 37.7778 85.0778 37.7963 85.0963 37.8148C85.1148 37.8333 85.1333 37.8518 85.1518 37.8702C85.1703 37.8887 85.1888 37.9072 85.2073 37.9257C85.2258 37.9442 85.2444 37.9627 85.2629 37.9812C85.2814 37.9997 85.2999 38.0182 85.3184 38.0367C85.3369 38.0552 85.3554 38.0737 85.3739 38.0922C85.3924 38.1106 85.4109 38.1291 85.4294 38.1476C85.4479 38.1661 85.4665 38.1846 85.485 38.2031C85.5035 38.2216 85.522 38.2401 85.5405 38.2586C85.559 38.2771 85.5775 38.2956 85.596 38.3141C85.6145 38.3325 85.633 38.351 85.6515 38.3695C85.9329 38.6765 86.2697 38.7875 86.7917 38.7875H91.8186C92.4997 38.7875 92.8588 38.1994 92.5886 37.6114L78.411 7.15096C78.3702 7.06589 78.3073 6.99192 78.237 6.92165C78.2185 6.90316 78.2 6.88467 78.1815 6.86618C78.1629 6.84769 78.1444 6.82919 78.1259 6.8107C78.1111 6.79221 78.0889 6.77372 78.0704 6.75522C78.0519 6.73673 78.0334 6.71824 78.0149 6.69975C78.0001 6.68125 77.9779 6.66276 77.9594 6.64427C77.9408 6.62578 77.9223 6.60729 77.9038 6.58879C77.8853 6.5703 77.8668 6.55181 77.8483 6.53332C77.8298 6.51483 77.8113 6.49633 77.7928 6.47784C77.778 6.45935 77.7558 6.44086 77.7372 6.42236C77.7187 6.40387 77.7002 6.38538 77.6817 6.36689C77.6632 6.34839 77.6447 6.3299 77.6262 6.31141C77.6077 6.29292 77.5892 6.27443 77.5707 6.25593C77.5522 6.23744 77.5337 6.21895 77.5152 6.20046C77.4966 6.18196 77.4781 6.16347 77.4596 6.14498C77.4448 6.12649 77.4226 6.10799 77.4041 6.0895C77.3856 6.07101 77.3671 6.05252 77.3486 6.03403C77.3301 6.01554 77.3116 5.99704 77.293 5.97855C77.2745 5.96006 77.256 5.94157 77.2375 5.92307C77.219 5.90458 77.2005 5.88609 77.182 5.8676C77.1672 5.8491 77.145 5.83061 77.1265 5.81212C77.108 5.79363 77.0894 5.77514 77.0709 5.75664C77.0524 5.73815 77.0339 5.71966 77.0154 5.70117C77.0006 5.68268 76.9784 5.66418 76.9599 5.64569C76.9414 5.6272 76.9229 5.60871 76.9044 5.59021C76.8896 5.57172 76.871 5.55323 76.8525 5.53843C76.9118 5.60131 76.9636 5.66788 76.9969 5.73815L91.1745 36.1985V36.2022Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M75.5191 20.0037L73.2577 24.9744L75.2832 24.9744L76.5379 22.2153L75.5191 20.0037Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M69.8381 32.6744L68.2056 36.2951C67.9798 36.8388 67.4801 37.3825 66.5732 37.3825H61.5906C61.3278 37.3825 61.1168 37.29 60.9688 37.1495C60.9873 37.168 61.0021 37.1865 61.0243 37.205C61.0428 37.2235 61.0576 37.2419 61.0798 37.2604C61.0983 37.2789 61.1131 37.2974 61.1353 37.3159C61.1538 37.3344 61.1686 37.3529 61.1909 37.3714C61.2094 37.3899 61.2242 37.4084 61.2464 37.4269C61.2649 37.4454 61.2797 37.4639 61.3019 37.4823C61.3204 37.5008 61.3352 37.5193 61.3574 37.5378C61.3759 37.5563 61.3908 37.5748 61.413 37.5933C61.4315 37.6118 61.4463 37.6303 61.4685 37.6488C61.487 37.6673 61.5018 37.6858 61.524 37.7043C61.5425 37.7227 61.5573 37.7412 61.5795 37.7597C61.598 37.7782 61.6128 37.7967 61.6351 37.8152C61.6536 37.8337 61.6684 37.8522 61.6906 37.8707C61.7091 37.8892 61.7239 37.9077 61.7461 37.9262C61.7646 37.9447 61.7794 37.9631 61.8016 37.9816C61.8201 38.0001 61.835 38.0186 61.8572 38.0371C61.8757 38.0556 61.8905 38.0741 61.9127 38.0926C61.9312 38.1111 61.946 38.1296 61.9682 38.1481C61.9867 38.1666 62.0015 38.1851 62.0237 38.2035C62.0423 38.222 62.0571 38.2405 62.0793 38.259C62.0978 38.2775 62.1126 38.296 62.1348 38.3145C62.1533 38.333 62.1681 38.3515 62.1903 38.37C62.2088 38.3885 62.2236 38.407 62.2458 38.4254C62.2644 38.4439 62.2792 38.4624 62.3014 38.4809C62.3199 38.4994 62.3347 38.5179 62.3569 38.5364C62.5087 38.6917 62.7271 38.7953 63.0047 38.7953H67.9872C68.8941 38.7953 69.3902 38.2516 69.6197 37.708L71.2521 34.0872H81.8909L81.2542 32.6966H69.8566L69.8381 32.6744Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M102.487 13.561H109.191C109.342 13.561 109.487 13.5795 109.631 13.598C109.553 13.1986 109.395 12.8248 109.184 12.4882C108.754 12.2922 108.292 12.1664 107.796 12.1664H101.092V17.6845H102.484V13.5608L102.487 13.561Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M101.095 24.9783V36.5212C101.095 36.9724 100.688 37.3792 100.237 37.3792H94.8468C94.5988 37.3792 94.3915 37.2756 94.2397 37.1166C94.2583 37.1351 94.2768 37.1536 94.2953 37.1721C94.3138 37.1906 94.3323 37.2091 94.3508 37.2276C94.3693 37.246 94.3878 37.2645 94.4063 37.283C94.4248 37.3015 94.4433 37.32 94.4619 37.3385C94.4804 37.357 94.4989 37.3755 94.5174 37.394C94.5359 37.4125 94.5544 37.431 94.5729 37.4495C94.5914 37.468 94.6099 37.4864 94.6284 37.5049C94.6469 37.5234 94.6654 37.5419 94.6839 37.5604C94.7025 37.5789 94.721 37.5974 94.7395 37.6159C94.758 37.6344 94.7765 37.6529 94.795 37.6714C94.8135 37.6899 94.832 37.7084 94.8505 37.7268C94.869 37.7453 94.8875 37.7638 94.9061 37.7823C94.9246 37.8008 94.9431 37.8193 94.9616 37.8378C94.9801 37.8563 94.9986 37.8748 95.0171 37.8933C95.0356 37.9118 95.0541 37.9303 95.0726 37.9488C95.0911 37.9672 95.1096 37.9857 95.1282 38.0042C95.1467 38.0227 95.1652 38.0412 95.1837 38.0597C95.2022 38.0782 95.2207 38.0967 95.2392 38.1152C95.2577 38.1337 95.2762 38.1522 95.2947 38.1707C95.3132 38.1891 95.3318 38.2076 95.3503 38.2261C95.3688 38.2446 95.3873 38.2631 95.4058 38.2816C95.4243 38.3001 95.4428 38.3186 95.4613 38.3371C95.4798 38.3556 95.4983 38.3741 95.5168 38.3926C95.5353 38.4111 95.5539 38.4296 95.5724 38.448C95.5909 38.4665 95.6094 38.485 95.6279 38.5035C95.7834 38.6773 96.0018 38.7957 96.2646 38.7957H101.654C102.106 38.7957 102.513 38.3889 102.513 37.9377V26.3948H104.083L103.383 25.0042H101.121L101.095 24.9783Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M111.556 24.5712L117.764 36.066C118.082 36.6541 117.764 37.3789 116.994 37.3789H110.968C110.712 37.3789 110.505 37.2643 110.372 37.1349C110.383 37.146 110.394 37.157 110.409 37.1718C110.423 37.1903 110.446 37.2088 110.464 37.2273C110.479 37.2458 110.497 37.2643 110.52 37.2828C110.534 37.3013 110.553 37.3198 110.575 37.3383C110.59 37.3568 110.608 37.3753 110.631 37.3937C110.646 37.4122 110.664 37.4307 110.686 37.4492C110.705 37.4677 110.723 37.4862 110.742 37.5047C110.757 37.5232 110.775 37.5417 110.797 37.5602C110.812 37.5787 110.831 37.5972 110.853 37.6157C110.868 37.6341 110.886 37.6526 110.908 37.6711C110.923 37.6896 110.942 37.7081 110.964 37.7266C110.979 37.7451 110.997 37.7636 111.019 37.7821C111.034 37.8006 111.053 37.8191 111.075 37.8376C111.09 37.8561 111.108 37.8745 111.13 37.893C111.145 37.9115 111.164 37.93 111.186 37.9485C111.201 37.967 111.219 37.9855 111.241 38.004C111.256 38.0225 111.275 38.041 111.297 38.0595C111.312 38.078 111.33 38.0964 111.353 38.1149C111.367 38.1334 111.386 38.1519 111.408 38.1704C111.423 38.1889 111.441 38.2074 111.464 38.2259C111.478 38.2444 111.497 38.2629 111.519 38.2814C111.534 38.2999 111.552 38.3184 111.575 38.3369C111.589 38.3553 111.608 38.3738 111.63 38.3923C111.645 38.4108 111.663 38.4293 111.686 38.4478C111.701 38.4663 111.719 38.4848 111.741 38.5033C111.871 38.6512 112.097 38.7955 112.382 38.7955H118.408C119.178 38.7955 119.496 38.0706 119.178 37.4825L112.97 25.9877C116.913 24.4048 119.674 21.054 119.674 16.8896C119.674 14.1823 118.552 11.7302 116.75 9.95868C116.731 9.94018 116.713 9.92169 116.694 9.9032C116.676 9.88471 116.657 9.86622 116.639 9.84772C116.62 9.82923 116.602 9.81074 116.583 9.79225C116.565 9.77376 116.546 9.75526 116.528 9.73677C116.509 9.71828 116.491 9.69979 116.472 9.68129C116.454 9.6628 116.435 9.64431 116.417 9.62582C116.398 9.60733 116.38 9.58883 116.361 9.57034C116.342 9.55185 116.324 9.53336 116.305 9.51486C116.287 9.49637 116.268 9.47788 116.25 9.45939C116.231 9.44089 116.213 9.4224 116.194 9.40391C116.176 9.38542 116.157 9.36693 116.139 9.34844C116.12 9.32994 116.102 9.31145 116.083 9.29296C116.065 9.27447 116.046 9.25597 116.028 9.23748C116.009 9.21899 115.991 9.2005 115.972 9.182C115.954 9.16351 115.935 9.14502 115.917 9.12653C115.898 9.10803 115.88 9.08954 115.861 9.07105C115.843 9.05256 115.824 9.03407 115.806 9.01557C115.787 8.99708 115.769 8.97859 115.75 8.9601C115.732 8.94161 115.713 8.92311 115.695 8.90462C115.676 8.88613 115.658 8.86764 115.639 8.84914C115.621 8.83065 115.602 8.81216 115.584 8.79367C115.565 8.77518 115.547 8.75668 115.528 8.73819C115.51 8.7197 115.491 8.70121 115.473 8.68271C115.454 8.66422 115.436 8.64573 115.417 8.62724C115.399 8.60874 115.384 8.59025 115.365 8.57546C117.153 10.347 118.26 12.788 118.26 15.4768C118.26 19.6412 115.498 22.9883 111.556 24.5749V24.5712Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M14.716 4.45482H3.66261C3.30355 4.45482 3 4.78029 3 5.16493V35.126C3 35.5107 3.30355 35.8361 3.66261 35.8361H14.716C23.4002 35.8361 30.4668 28.7758 30.4668 20.0992C30.4668 11.4227 23.4002 4.45482 14.716 4.45482ZM14.2644 29.4415H9.76306V10.8088H14.2644C19.3875 10.8088 23.2485 14.8031 23.2485 20.1029C23.2485 25.4028 19.3838 29.4415 14.2644 29.4415Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M42.1527 23.0726H52.6323C53.0247 23.0726 53.343 22.7545 53.343 22.3625V17.4288C53.343 17.0589 53.0062 16.7187 52.6323 16.7187H42.1527V10.8049H54.8533C55.2457 10.8049 55.5641 10.4868 55.5641 10.0948V5.16104C55.5641 4.76901 55.2457 4.45094 54.8533 4.45094H36.1004C35.708 4.45094 35.3896 4.76901 35.3896 5.16104V35.1221C35.3896 35.5142 35.708 35.8323 36.1004 35.8323H54.8533C55.2457 35.8323 55.5641 35.5142 55.5641 35.1221V30.1884C55.5641 29.7964 55.2457 29.4783 54.8533 29.4783H42.1527V23.0652V23.0726Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M60.1988 35.8362H65.1813C66.1178 35.8362 66.5176 35.2149 66.6731 34.8413L68.3463 31.1281H80.8618L82.535 34.7933C82.9237 35.6106 83.2346 35.8362 83.9824 35.8362H89.0093C89.2796 35.8362 89.5017 35.729 89.6238 35.5366C89.7423 35.348 89.7497 35.1076 89.6423 34.8709L75.4647 4.41052C75.3499 4.17752 75.076 4 74.8317 4H74.3801C74.1358 4 73.8619 4.17752 73.7434 4.41422L59.5658 34.8709C59.4584 35.1039 59.4621 35.348 59.5843 35.5366C59.7065 35.7253 59.9286 35.8362 60.1988 35.8362ZM74.4615 17.5067H74.7021L78.2854 25.2772H70.9301L74.4652 17.5067H74.4615Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M109.576 35.8359H115.602C115.891 35.8359 116.12 35.7213 116.246 35.5068C116.376 35.2886 116.376 34.9964 116.239 34.7449L109.953 23.0985L110.109 23.0356C114.184 21.3972 116.72 17.9651 116.72 14.078C116.72 8.77072 112.359 4.45094 106.996 4.45094H93.451C93.0586 4.45094 92.7402 4.76901 92.7402 5.16104V35.1221C92.7402 35.5142 93.0586 35.8323 93.451 35.8323H98.8407C99.2109 35.8323 99.5514 35.4957 99.5514 35.1221V23.4314H102.92L102.961 23.5127L108.987 35.5068C109.05 35.6325 109.265 35.8323 109.576 35.8323V35.8359ZM106.403 17.9873H99.5477V10.6236H106.403C108.35 10.6236 109.998 12.2695 109.998 14.2148C109.998 16.1602 108.317 17.9873 106.403 17.9873Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M138.93 11.5816H151.631C152.023 11.5816 152.341 11.2635 152.341 10.8715V5.93779C152.341 5.54575 152.023 5.22769 151.631 5.22769H132.878C132.485 5.22769 132.167 5.54575 132.167 5.93779V35.8989C132.167 36.2909 132.485 36.609 132.878 36.609H138.223C138.593 36.609 138.934 36.2724 138.934 35.8989V24.7481H149.413C149.784 24.7481 150.124 24.4115 150.124 24.038V19.1043C150.124 18.7344 149.787 18.3942 149.413 18.3942H138.934V11.5742L138.93 11.5816Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M173.6 36.6127H179.627C179.915 36.6127 180.145 36.498 180.271 36.2835C180.4 36.0653 180.4 35.7732 180.263 35.5217L173.978 23.8753L174.133 23.8124C178.209 22.174 180.744 18.7418 180.744 14.8547C180.744 9.54747 176.384 5.22769 171.02 5.22769H157.475C157.083 5.22769 156.765 5.54575 156.765 5.93779V35.8989C156.765 36.2909 157.083 36.609 157.475 36.609H162.865C163.235 36.609 163.576 36.2724 163.576 35.8989V24.2081H166.944L166.985 24.2895L173.012 36.2835C173.074 36.4093 173.289 36.609 173.6 36.609V36.6127ZM170.428 18.764H163.572V11.4004H170.428C172.375 11.4004 174.022 13.0462 174.022 14.9916C174.022 16.937 172.342 18.764 170.428 18.764Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M186.919 5.23158H192.357C192.749 5.23158 193.068 5.54964 193.068 5.94168V35.9065C193.068 36.2985 192.749 36.6166 192.357 36.6166H186.923C186.53 36.6166 186.212 36.2985 186.212 35.9065V5.94538C186.212 5.55334 186.53 5.23528 186.923 5.23528L186.919 5.23158Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M207.016 11.5816H219.716C220.109 11.5816 220.427 11.2635 220.427 10.8715V5.93779C220.427 5.54575 220.109 5.22769 219.716 5.22769H200.963C200.571 5.22769 200.252 5.54575 200.252 5.93779V35.8989C200.252 36.2909 200.571 36.609 200.963 36.609H219.716C220.109 36.609 220.427 36.2909 220.427 35.8989V30.9652C220.427 30.5731 220.109 30.2551 219.716 30.2551H207.016V23.842H217.495C217.887 23.842 218.206 23.5239 218.206 23.1319V18.1981C218.206 17.8283 217.869 17.488 217.495 17.488H207.016V11.5742V11.5816Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M251.381 37.0644H252.107C252.491 37.0644 252.817 36.7611 252.817 36.4024V5.94195C252.817 5.57211 252.48 5.23185 252.107 5.23185H246.672C246.28 5.23185 245.962 5.54992 245.962 5.94195V22.1596H245.703L245.658 22.119L227.627 4.78064H226.553C226.169 4.78064 225.843 5.08391 225.843 5.44636L225.887 35.9068C225.887 36.2766 226.224 36.6169 226.598 36.6169H231.988C232.38 36.6169 232.698 36.2988 232.698 35.9068V18.8754H232.957L233.002 18.9198L250.896 36.8869C250.955 36.946 251.277 37.0681 251.377 37.0681L251.381 37.0644Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M271.722 5.23158H260.668C260.309 5.23158 260.002 5.55704 260.002 5.94168V35.9028C260.002 36.2874 260.306 36.6129 260.668 36.6129H271.722C280.406 36.6129 287.472 29.5526 287.472 20.876C287.472 12.1994 280.406 5.23158 271.722 5.23158ZM271.27 30.2146H266.769V11.5818H271.27C276.393 11.5818 280.254 15.5761 280.254 20.876C280.254 26.1759 276.393 30.2146 271.27 30.2146Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,172 @@
|
||||
import { levelVariants } from "../../variants"
|
||||
|
||||
import type { LevelProps } from "../../levels"
|
||||
|
||||
export default function GoodFriend({
|
||||
className,
|
||||
color,
|
||||
height = "44",
|
||||
width = "310",
|
||||
...props
|
||||
}: LevelProps) {
|
||||
const classNames = levelVariants({
|
||||
className,
|
||||
color,
|
||||
})
|
||||
return (
|
||||
<svg
|
||||
className={classNames}
|
||||
fill="none"
|
||||
height={height}
|
||||
viewBox="0 0 310 44"
|
||||
width={width}
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
d="M171.435 8.05803C171.416 8.03955 171.398 8.02106 171.379 8.00257C171.361 7.98409 171.342 7.96561 171.324 7.94712C171.305 7.92864 171.287 7.91015 171.268 7.89167C171.25 7.87319 171.231 7.8547 171.213 7.83621C171.194 7.81773 171.176 7.79924 171.157 7.78076C171.139 7.76227 171.12 7.74379 171.102 7.7253C171.083 7.70682 171.065 7.68834 171.046 7.66985C171.028 7.65137 171.009 7.63288 170.991 7.6144C170.972 7.59591 170.954 7.57743 170.935 7.55894C170.917 7.54046 170.898 7.52198 170.88 7.50349C170.861 7.48501 170.843 7.46652 170.824 7.44803C170.806 7.42955 170.787 7.41106 170.769 7.39258C170.75 7.37409 170.732 7.35561 170.713 7.33713C170.695 7.31864 170.676 7.30015 170.657 7.28167C170.639 7.26318 170.62 7.2447 170.602 7.22622C170.583 7.20773 170.565 7.18925 170.546 7.17076C170.528 7.15228 170.509 7.13379 170.491 7.11531C170.472 7.09682 170.454 7.07834 170.435 7.05986C170.417 7.04137 170.398 7.02289 170.38 7.0044C170.361 6.98592 170.343 6.96743 170.324 6.94894C170.306 6.93046 170.287 6.91197 170.269 6.89349C170.25 6.87501 170.232 6.85652 170.213 6.83804C170.195 6.81955 170.176 6.80107 170.158 6.78259C170.139 6.7641 170.121 6.74561 170.102 6.72713C170.254 6.8861 170.354 7.09682 170.354 7.32234V12.2541C170.354 12.7051 169.991 13.1155 169.495 13.1155H156.946V18.0731H158.357V14.524H170.906C171.402 14.524 171.764 14.1173 171.764 13.6626V8.73087C171.764 8.49057 171.657 8.26875 171.487 8.10609C171.468 8.0876 171.45 8.06912 171.431 8.05064L171.435 8.05803Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M169.199 21.2263C169.181 21.2078 169.162 21.1893 169.144 21.1709C169.125 21.1524 169.107 21.1339 169.088 21.1154C169.07 21.0969 169.051 21.0784 169.033 21.06C169.014 21.0415 168.996 21.023 168.977 21.0045C168.959 20.986 168.94 20.9675 168.922 20.949C168.903 20.9306 168.885 20.9121 168.866 20.8936C168.848 20.8751 168.829 20.8566 168.811 20.8381C168.792 20.8197 168.774 20.8012 168.755 20.7827C168.737 20.7642 168.718 20.7457 168.7 20.7272C168.681 20.7087 168.663 20.6903 168.644 20.6718C168.626 20.6533 168.607 20.6348 168.589 20.6163C168.57 20.5978 168.552 20.5793 168.533 20.5609C168.515 20.5424 168.496 20.5239 168.478 20.5054C168.459 20.4869 168.441 20.4684 168.422 20.45C168.404 20.4315 168.385 20.413 168.367 20.3945C168.348 20.376 168.33 20.3575 168.311 20.3391C168.293 20.3206 168.274 20.3021 168.255 20.2836C168.237 20.2651 168.218 20.2466 168.2 20.2281C168.181 20.2097 168.163 20.1912 168.144 20.1727C168.126 20.1542 168.107 20.1357 168.089 20.1172C168.07 20.0987 168.052 20.0803 168.033 20.0618C168.015 20.0433 167.996 20.0248 167.978 20.0063C167.959 19.9878 167.941 19.9694 167.922 19.9509C167.911 19.9398 167.9 19.9287 167.893 19.9213C168.037 20.0766 168.133 20.2762 168.133 20.4906V25.4224C168.133 25.8734 167.726 26.28 167.271 26.28H156.943V37.2748C156.943 37.7258 156.536 38.1325 156.084 38.1325H150.739C150.491 38.1325 150.284 38.0289 150.132 37.87C150.15 37.8885 150.165 37.9069 150.184 37.9217C150.202 37.9402 150.221 37.9587 150.239 37.9772C150.258 37.9957 150.276 38.0142 150.295 38.0326C150.313 38.0511 150.332 38.0696 150.35 38.0881C150.369 38.1066 150.387 38.1251 150.406 38.1436C150.424 38.162 150.443 38.1805 150.461 38.199C150.48 38.2175 150.498 38.236 150.517 38.2545C150.535 38.2729 150.554 38.2914 150.572 38.3099C150.591 38.3284 150.609 38.3469 150.628 38.3654C150.646 38.3839 150.665 38.4023 150.683 38.4208C150.702 38.4393 150.72 38.4578 150.739 38.4763C150.757 38.4948 150.776 38.5132 150.794 38.5317C150.813 38.5502 150.831 38.5687 150.85 38.5872C150.868 38.6057 150.887 38.6242 150.905 38.6426C150.924 38.6611 150.943 38.6796 150.961 38.6981C150.98 38.7166 150.998 38.7351 151.017 38.7535C151.035 38.772 151.054 38.7905 151.072 38.809C151.091 38.8275 151.109 38.846 151.128 38.8644C151.146 38.8829 151.165 38.9014 151.183 38.9199C151.202 38.9384 151.22 38.9569 151.239 38.9754C151.257 38.9938 151.276 39.0123 151.294 39.0308C151.313 39.0493 151.331 39.0678 151.35 39.0863C151.368 39.1048 151.387 39.1232 151.405 39.1417C151.424 39.1602 151.442 39.1787 151.461 39.1972C151.479 39.2157 151.498 39.2341 151.516 39.2526C151.672 39.4264 151.89 39.5447 152.153 39.5447H157.498C157.95 39.5447 158.357 39.138 158.357 38.687V27.6923H168.685C169.137 27.6923 169.547 27.2856 169.547 26.8346V21.9029C169.547 21.6626 169.429 21.4407 169.255 21.2818C169.236 21.2633 169.218 21.2448 169.199 21.2263Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M181.593 25.7452V37.2834C181.593 37.7344 181.186 38.1411 180.734 38.1411H175.344C175.096 38.1411 174.889 38.0339 174.737 37.8786C174.756 37.8971 174.771 37.9156 174.793 37.9341C174.811 37.9525 174.83 37.971 174.848 37.9895C174.867 38.008 174.885 38.0265 174.904 38.045C174.922 38.0634 174.941 38.0819 174.959 38.1004C174.978 38.1189 174.996 38.1374 175.015 38.1559C175.033 38.1744 175.052 38.1928 175.07 38.2113C175.089 38.2298 175.107 38.2483 175.126 38.2668C175.145 38.2853 175.163 38.3038 175.182 38.3222C175.2 38.3407 175.219 38.3592 175.237 38.3777C175.256 38.3962 175.274 38.4147 175.293 38.4331C175.311 38.4516 175.33 38.4701 175.348 38.4886C175.367 38.5071 175.385 38.5256 175.404 38.544C175.422 38.5625 175.441 38.581 175.459 38.5995C175.478 38.618 175.496 38.6365 175.515 38.655C175.533 38.6735 175.552 38.6919 175.57 38.7104C175.589 38.7289 175.607 38.7474 175.626 38.7659C175.644 38.7844 175.663 38.8028 175.681 38.8213C175.7 38.8398 175.718 38.8583 175.737 38.8768C175.755 38.8953 175.774 38.9138 175.792 38.9322C175.811 38.9507 175.829 38.9692 175.848 38.9877C175.866 39.0062 175.885 39.0247 175.903 39.0431C175.922 39.0616 175.94 39.0801 175.959 39.0986C175.977 39.1171 175.996 39.1356 176.014 39.154C176.033 39.1725 176.051 39.191 176.07 39.2095C176.088 39.228 176.107 39.2465 176.125 39.265C176.281 39.4387 176.499 39.557 176.762 39.557H182.152C182.603 39.557 183.014 39.1504 183.014 38.6993V27.1611H184.565L183.858 25.7526H181.604L181.593 25.7452Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M200.172 17.6524C200.172 14.9463 199.05 12.4952 197.247 10.7243C197.229 10.7059 197.21 10.6874 197.192 10.6689C197.173 10.6504 197.155 10.6319 197.136 10.6134C197.118 10.595 197.099 10.5765 197.081 10.558C197.062 10.5395 197.044 10.521 197.025 10.5025C197.007 10.484 196.988 10.4656 196.97 10.4471C196.951 10.4286 196.933 10.4101 196.914 10.3916C196.896 10.3731 196.877 10.3547 196.859 10.3362C196.84 10.3177 196.822 10.2992 196.803 10.2807C196.785 10.2622 196.766 10.2437 196.748 10.2253C196.729 10.2068 196.711 10.1883 196.692 10.1698C196.674 10.1513 196.655 10.1328 196.637 10.1143C196.618 10.0959 196.6 10.0774 196.581 10.0589C196.563 10.0404 196.544 10.0219 196.526 10.0034C196.507 9.98496 196.489 9.96647 196.47 9.94799C196.452 9.9295 196.433 9.91101 196.415 9.89253C196.396 9.87404 196.378 9.85556 196.359 9.83708C196.34 9.81859 196.322 9.80011 196.303 9.78163C196.285 9.76314 196.266 9.74465 196.248 9.72617C196.229 9.70768 196.211 9.6892 196.192 9.67072C196.174 9.65223 196.155 9.63375 196.137 9.61526C196.118 9.59678 196.1 9.57829 196.081 9.5598C196.063 9.54132 196.044 9.52284 196.026 9.50435C196.007 9.48587 195.989 9.46738 195.97 9.4489C195.952 9.43041 195.933 9.41193 195.915 9.39345C195.896 9.37496 195.878 9.35647 195.859 9.33799C197.647 11.1088 198.758 13.5488 198.758 16.2402C198.758 20.403 195.993 23.7487 192.054 25.3347L198.262 36.8248C198.58 37.4126 198.262 38.1372 197.492 38.1372H191.465C191.21 38.1372 191.006 38.0226 190.873 37.8932C190.884 37.9043 190.895 37.9154 190.906 37.9265C190.921 37.945 190.943 37.9635 190.962 37.9819C190.977 38.0004 190.999 38.0189 191.017 38.0374C191.032 38.0559 191.054 38.0744 191.073 38.0928C191.088 38.1113 191.11 38.1298 191.128 38.1483C191.143 38.1668 191.165 38.1853 191.184 38.2038C191.199 38.2223 191.221 38.2407 191.24 38.2592C191.254 38.2777 191.277 38.2962 191.295 38.3147C191.31 38.3332 191.332 38.3516 191.351 38.3701C191.365 38.3886 191.388 38.4071 191.406 38.4256C191.421 38.4441 191.443 38.4625 191.462 38.481C191.476 38.4995 191.499 38.518 191.517 38.5365C191.532 38.555 191.554 38.5735 191.573 38.5919C191.587 38.6104 191.61 38.6289 191.628 38.6474C191.643 38.6659 191.665 38.6844 191.684 38.7029C191.699 38.7213 191.721 38.7398 191.739 38.7583C191.754 38.7768 191.776 38.7953 191.795 38.8138C191.81 38.8322 191.832 38.8507 191.85 38.8692C191.865 38.8877 191.887 38.9062 191.906 38.9247C191.921 38.9431 191.943 38.9616 191.961 38.9801C191.976 38.9986 191.998 39.0171 192.017 39.0356C192.032 39.0541 192.054 39.0725 192.072 39.091C192.087 39.1095 192.109 39.128 192.128 39.1465C192.143 39.165 192.165 39.1834 192.183 39.2019C192.198 39.2204 192.22 39.2389 192.239 39.2574C192.369 39.4053 192.594 39.5495 192.879 39.5495H198.906C199.676 39.5495 199.994 38.8249 199.676 38.237L193.468 26.7469C197.41 25.1646 200.172 21.8152 200.172 17.6524Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M189.707 14.3509C189.847 14.3509 189.985 14.3658 190.122 14.388C190.044 13.9813 189.892 13.6042 189.678 13.2604C189.252 13.0645 188.789 12.9425 188.301 12.9425H181.597V18.4399H183.007V14.3473H189.711L189.707 14.3509Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M212.146 8.06226C212.128 8.04378 212.109 8.02529 212.091 8.00681C212.072 7.98832 212.054 7.96984 212.035 7.95135C212.017 7.93287 211.998 7.91439 211.98 7.8959C211.961 7.87742 211.943 7.85894 211.924 7.84045C211.906 7.82197 211.887 7.80347 211.869 7.78499C211.85 7.7665 211.832 7.74802 211.813 7.72954C211.795 7.71105 211.776 7.69256 211.758 7.67408C211.739 7.6556 211.721 7.63711 211.702 7.61863C211.684 7.60014 211.665 7.58166 211.647 7.56318C211.628 7.54469 211.61 7.5262 211.591 7.50772C211.573 7.48923 211.554 7.47075 211.536 7.45227C211.517 7.43378 211.499 7.41529 211.48 7.39681C211.462 7.37832 211.443 7.35984 211.425 7.34135C211.406 7.32287 211.388 7.30439 211.369 7.2859C211.351 7.26742 211.332 7.24893 211.314 7.23045C211.295 7.21196 211.277 7.19348 211.258 7.175C211.24 7.15651 211.221 7.13802 211.203 7.11954C211.184 7.10105 211.165 7.08257 211.147 7.06409C211.128 7.0456 211.11 7.02712 211.091 7.00864C211.073 6.99015 211.054 6.97166 211.036 6.95317C211.017 6.93469 210.999 6.91621 210.98 6.89772C210.962 6.87924 210.943 6.86075 210.925 6.84227C210.906 6.82378 210.888 6.8053 210.869 6.78682C210.858 6.77572 210.847 6.76463 210.84 6.75724C210.984 6.91251 211.08 7.11214 211.08 7.32656V37.2756C211.08 37.7266 210.673 38.1332 210.218 38.1332H204.78C204.565 38.1332 204.365 38.0371 204.21 37.8929C204.221 37.904 204.228 37.9151 204.24 37.9225C204.258 37.941 204.277 37.9595 204.295 37.978C204.314 37.9964 204.332 38.0149 204.351 38.0334C204.369 38.0519 204.388 38.0704 204.406 38.0889C204.425 38.1074 204.443 38.1258 204.462 38.1443C204.48 38.1628 204.499 38.1813 204.517 38.1998C204.536 38.2183 204.554 38.2368 204.573 38.2552C204.591 38.2737 204.61 38.2922 204.628 38.3107C204.647 38.3292 204.665 38.3477 204.684 38.3661C204.702 38.3846 204.721 38.4031 204.739 38.4216C204.758 38.4401 204.776 38.4586 204.795 38.4771C204.813 38.4955 204.832 38.514 204.85 38.5325C204.869 38.551 204.887 38.5695 204.906 38.588C204.924 38.6064 204.943 38.6249 204.961 38.6434C204.98 38.6619 204.998 38.6804 205.017 38.6989C205.035 38.7174 205.054 38.7358 205.072 38.7543C205.091 38.7728 205.109 38.7913 205.128 38.8098C205.146 38.8283 205.165 38.8467 205.184 38.8652C205.202 38.8837 205.221 38.9022 205.239 38.9207C205.258 38.9392 205.276 38.9577 205.295 38.9762C205.313 38.9946 205.332 39.0131 205.35 39.0316C205.369 39.0501 205.387 39.0686 205.406 39.0871C205.424 39.1055 205.443 39.124 205.461 39.1425C205.48 39.161 205.498 39.1795 205.517 39.198C205.535 39.2164 205.554 39.2349 205.572 39.2534C205.731 39.4272 205.953 39.5455 206.194 39.5455H211.632C212.084 39.5455 212.494 39.1388 212.494 38.6878V8.7388C212.494 8.4985 212.376 8.27669 212.202 8.11772C212.183 8.09923 212.165 8.08075 212.146 8.06226Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M239.521 33.0799C239.503 33.0614 239.484 33.043 239.466 33.0245C239.447 33.006 239.429 32.9875 239.41 32.969C239.392 32.9505 239.373 32.9321 239.355 32.9136C239.336 32.8951 239.318 32.8766 239.299 32.8581C239.281 32.8396 239.262 32.8211 239.244 32.8027C239.225 32.7842 239.207 32.7657 239.188 32.7472C239.17 32.7287 239.151 32.7102 239.133 32.6917C239.114 32.6733 239.096 32.6548 239.077 32.6363C239.059 32.6178 239.04 32.5993 239.022 32.5808C239.003 32.5623 238.985 32.5439 238.966 32.5254C238.948 32.5069 238.929 32.4884 238.911 32.4699C238.892 32.4514 238.874 32.433 238.855 32.4145C238.837 32.396 238.818 32.3775 238.8 32.359C238.781 32.3405 238.763 32.3221 238.744 32.3036C238.726 32.2851 238.707 32.2666 238.689 32.2481C238.67 32.2296 238.652 32.2111 238.633 32.1927C238.614 32.1742 238.596 32.1557 238.577 32.1372C238.559 32.1187 238.54 32.1002 238.522 32.0818C238.503 32.0633 238.485 32.0448 238.466 32.0263C238.448 32.0078 238.429 31.9893 238.411 31.9708C238.392 31.9524 238.374 31.9339 238.355 31.9154C238.337 31.8969 238.318 31.8784 238.3 31.8599C238.281 31.8415 238.263 31.823 238.244 31.8045C238.23 31.786 238.211 31.7675 238.192 31.7527C238.344 31.9117 238.441 32.1224 238.441 32.3479V37.2797C238.441 37.7307 238.078 38.1373 237.582 38.1373H218.829C218.581 38.1373 218.373 38.0338 218.222 37.8749C218.236 37.8934 218.255 37.9118 218.273 37.9266C218.292 37.9451 218.311 37.9636 218.329 37.9821C218.348 38.0006 218.366 38.019 218.385 38.0375C218.403 38.056 218.422 38.0745 218.44 38.093C218.459 38.1115 218.477 38.13 218.496 38.1484C218.514 38.1669 218.533 38.1854 218.551 38.2039C218.57 38.2224 218.588 38.2409 218.607 38.2594C218.625 38.2778 218.644 38.2963 218.662 38.3148C218.681 38.3333 218.699 38.3518 218.718 38.3703C218.736 38.3887 218.755 38.4072 218.773 38.4257C218.792 38.4442 218.81 38.4627 218.829 38.4812C218.847 38.4997 218.866 38.5181 218.884 38.5366C218.903 38.5551 218.921 38.5736 218.94 38.5921C218.958 38.6106 218.977 38.629 218.995 38.6475C219.014 38.666 219.032 38.6845 219.051 38.703C219.069 38.7215 219.088 38.74 219.106 38.7584C219.125 38.7769 219.143 38.7954 219.162 38.8139C219.18 38.8324 219.199 38.8509 219.217 38.8693C219.236 38.8878 219.254 38.9063 219.273 38.9248C219.291 38.9433 219.31 38.9618 219.328 38.9802C219.347 38.9987 219.366 39.0172 219.384 39.0357C219.403 39.0542 219.421 39.0727 219.44 39.0912C219.458 39.1096 219.477 39.1281 219.495 39.1466C219.514 39.1651 219.532 39.1836 219.551 39.2021C219.569 39.2205 219.588 39.239 219.606 39.2575C219.762 39.4313 219.98 39.5496 220.243 39.5496H238.996C239.492 39.5496 239.855 39.1429 239.855 38.6919V33.7602C239.855 33.5199 239.747 33.298 239.577 33.1354C239.558 33.1169 239.54 33.0984 239.521 33.0799Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M226.447 26.7907H236.775C237.227 26.7907 237.638 26.4284 237.638 25.9293V20.9976C237.638 20.7573 237.519 20.5355 237.345 20.3765C237.327 20.358 237.308 20.3395 237.29 20.3211C237.271 20.3026 237.253 20.2841 237.234 20.2656C237.216 20.2471 237.197 20.2286 237.179 20.2102C237.16 20.1917 237.142 20.1732 237.123 20.1547C237.105 20.1362 237.086 20.1177 237.068 20.0992C237.049 20.0808 237.031 20.0623 237.012 20.0438C236.993 20.0253 236.975 20.0068 236.956 19.9883C236.938 19.9698 236.919 19.9514 236.901 19.9329C236.882 19.9144 236.864 19.8959 236.845 19.8774C236.827 19.8589 236.808 19.8405 236.79 19.822C236.771 19.8035 236.753 19.785 236.734 19.7665C236.716 19.748 236.697 19.7295 236.679 19.7111C236.66 19.6926 236.642 19.6741 236.623 19.6556C236.605 19.6371 236.586 19.6186 236.568 19.6002C236.549 19.5817 236.531 19.5632 236.512 19.5447C236.494 19.5262 236.475 19.5077 236.457 19.4893C236.438 19.4708 236.42 19.4523 236.401 19.4338C236.383 19.4153 236.364 19.3968 236.346 19.3783C236.327 19.3599 236.309 19.3414 236.29 19.3229C236.272 19.3044 236.253 19.2859 236.235 19.2674C236.216 19.2489 236.198 19.2305 236.179 19.212C236.161 19.1935 236.142 19.175 236.124 19.1565C236.105 19.138 236.087 19.1196 236.068 19.1011C236.05 19.0826 236.031 19.0641 236.013 19.0456C236.001 19.0345 235.99 19.0234 235.983 19.016C236.127 19.1713 236.224 19.3709 236.224 19.5854V24.5171C236.224 25.0162 235.816 25.3785 235.361 25.3785H225.033V29.9257H226.444V26.787L226.447 26.7907Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M239.522 8.05919C239.503 8.0407 239.485 8.02222 239.466 8.00373C239.448 7.98525 239.429 7.96677 239.411 7.94828C239.392 7.9298 239.374 7.91131 239.355 7.89283C239.337 7.87434 239.318 7.85585 239.3 7.83737C239.281 7.81888 239.263 7.8004 239.244 7.78192C239.226 7.76343 239.207 7.74494 239.189 7.72646C239.17 7.70797 239.152 7.68949 239.133 7.67101C239.115 7.65252 239.096 7.63404 239.078 7.61555C239.059 7.59707 239.041 7.57859 239.022 7.5601C239.004 7.54162 238.985 7.52313 238.967 7.50464C238.948 7.48616 238.929 7.46767 238.911 7.44919C238.892 7.4307 238.874 7.41222 238.855 7.39374C238.837 7.37525 238.818 7.35677 238.8 7.33829C238.781 7.3198 238.763 7.30131 238.744 7.28283C238.726 7.26434 238.707 7.24586 238.689 7.22738C238.67 7.20889 238.652 7.1904 238.633 7.17192C238.615 7.15343 238.596 7.13495 238.578 7.11647C238.559 7.09798 238.541 7.0795 238.522 7.06101C238.504 7.04253 238.485 7.02404 238.467 7.00555C238.448 6.98707 238.43 6.96859 238.411 6.9501C238.393 6.93162 238.374 6.91313 238.356 6.89465C238.337 6.87616 238.319 6.85768 238.3 6.83919C238.282 6.82071 238.263 6.80223 238.245 6.78374C238.23 6.76526 238.211 6.74677 238.193 6.73198C238.345 6.89095 238.441 7.10167 238.441 7.32719V12.2589C238.441 12.7099 238.078 13.1203 237.582 13.1203H225.033V17.1722H226.444V14.5288H238.992C239.488 14.5288 239.851 14.1222 239.851 13.6675V8.73573C239.851 8.49543 239.744 8.27361 239.574 8.11095C239.555 8.09246 239.537 8.07397 239.518 8.05548L239.522 8.05919Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M271.896 8.06207C271.878 8.04358 271.859 8.0251 271.841 8.00662C271.822 7.98813 271.803 7.96965 271.785 7.95116C271.766 7.93268 271.748 7.91419 271.729 7.89571C271.711 7.87723 271.692 7.85874 271.674 7.84026C271.655 7.82177 271.637 7.80329 271.618 7.7848C271.6 7.76632 271.581 7.74783 271.563 7.72935C271.544 7.71086 271.526 7.69237 271.507 7.67389C271.489 7.6554 271.47 7.63692 271.452 7.61844C271.433 7.59995 271.415 7.58147 271.396 7.56299C271.378 7.5445 271.359 7.52601 271.341 7.50753C271.322 7.48904 271.304 7.47056 271.285 7.45208C271.267 7.43359 271.248 7.4151 271.23 7.39662C271.211 7.37813 271.193 7.35965 271.174 7.34116C271.156 7.32268 271.137 7.3042 271.119 7.28571C271.1 7.26723 271.082 7.24874 271.063 7.23026C271.045 7.21177 271.026 7.19329 271.008 7.1748C270.989 7.15632 270.971 7.13783 270.952 7.11935C270.934 7.10086 270.915 7.08238 270.897 7.0639C270.878 7.04541 270.86 7.02693 270.841 7.00845C270.823 6.98996 270.804 6.97147 270.786 6.95299C270.767 6.9345 270.748 6.91602 270.73 6.89753C270.711 6.87905 270.693 6.86056 270.674 6.84208C270.656 6.82359 270.637 6.80511 270.619 6.78662C270.608 6.77553 270.597 6.76444 270.586 6.75335C270.73 6.90862 270.826 7.10825 270.826 7.32637V37.7744C270.826 38.2255 270.419 38.5878 269.967 38.5878H269.242C269.105 38.5878 268.746 38.451 268.653 38.3623L270.067 39.7745C270.156 39.8632 270.519 40 270.656 40H271.382C271.833 40 272.24 39.6377 272.24 39.1867V8.73861C272.24 8.49831 272.122 8.2765 271.948 8.11753C271.929 8.09904 271.911 8.08055 271.892 8.06207H271.896Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M250.723 37.283C250.723 37.734 250.36 38.1407 249.864 38.1407H244.474C244.259 38.1407 244.056 38.0446 243.9 37.8967C243.911 37.9078 243.923 37.9189 243.934 37.93C243.952 37.9485 243.971 37.967 243.989 37.9854C244.008 38.0039 244.026 38.0224 244.045 38.0409C244.063 38.0594 244.082 38.0779 244.1 38.0964C244.119 38.1148 244.137 38.1333 244.156 38.1518C244.174 38.1703 244.193 38.1888 244.211 38.2073C244.23 38.2257 244.248 38.2442 244.267 38.2627C244.285 38.2812 244.304 38.2997 244.322 38.3182C244.341 38.3367 244.359 38.3551 244.378 38.3736C244.396 38.3921 244.415 38.4106 244.433 38.4291C244.452 38.4476 244.47 38.466 244.489 38.4845C244.507 38.503 244.526 38.5215 244.544 38.54C244.563 38.5585 244.582 38.577 244.6 38.5954C244.619 38.6139 244.637 38.6324 244.656 38.6509C244.674 38.6694 244.693 38.6879 244.711 38.7063C244.73 38.7248 244.748 38.7433 244.767 38.7618C244.785 38.7803 244.804 38.7988 244.822 38.8173C244.841 38.8357 244.859 38.8542 244.878 38.8727C244.896 38.8912 244.915 38.9097 244.933 38.9282C244.952 38.9467 244.97 38.9651 244.989 38.9836C245.007 39.0021 245.026 39.0206 245.044 39.0391C245.063 39.0576 245.081 39.076 245.1 39.0945C245.118 39.113 245.137 39.1315 245.155 39.15C245.174 39.1685 245.192 39.187 245.211 39.2054C245.229 39.2239 245.248 39.2424 245.266 39.2609C245.426 39.4346 245.648 39.5529 245.888 39.5529H251.278C251.778 39.5529 252.137 39.1463 252.137 38.6953V22.0035L250.726 20.5876V37.2867L250.723 37.283Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M302.151 12.4392C302.132 12.4207 302.114 12.4022 302.095 12.3837C302.077 12.3652 302.058 12.3468 302.04 12.3283C302.021 12.3098 302.003 12.2913 301.984 12.2728C301.966 12.2543 301.947 12.2358 301.928 12.2174C301.91 12.1989 301.891 12.1804 301.873 12.1619C301.854 12.1434 301.836 12.1249 301.817 12.1065C301.799 12.088 301.78 12.0695 301.762 12.051C301.743 12.0325 301.725 12.014 301.706 11.9955C301.688 11.9771 301.669 11.9586 301.651 11.9401C301.632 11.9216 301.614 11.9031 301.595 11.8846C301.577 11.8662 301.558 11.8477 301.54 11.8292C301.521 11.8107 301.503 11.7922 301.484 11.7737C301.466 11.7553 301.447 11.7368 301.429 11.7183C301.41 11.6998 301.392 11.6813 301.373 11.6628C301.355 11.6443 301.336 11.6258 301.318 11.6074C301.299 11.5889 301.281 11.5704 301.262 11.5519C301.244 11.5334 301.225 11.5149 301.207 11.4965C301.188 11.478 301.17 11.4595 301.151 11.441C301.133 11.4225 301.114 11.404 301.096 11.3856C301.084 11.3745 301.07 11.3597 301.059 11.3486C301.07 11.3634 301.077 11.3745 301.088 11.3892C303.809 14.2248 305.49 18.0548 305.49 22.2583C305.49 31.0348 298.33 38.1367 289.591 38.1367H278.537C278.315 38.1367 278.119 38.0332 277.975 37.8779C277.989 37.8964 278.008 37.9112 278.026 37.9296C278.045 37.9481 278.063 37.9666 278.082 37.9851C278.1 38.0036 278.119 38.0221 278.137 38.0406C278.156 38.059 278.175 38.0775 278.193 38.096C278.212 38.1145 278.23 38.133 278.249 38.1515C278.267 38.1699 278.286 38.1884 278.304 38.2069C278.323 38.2254 278.341 38.2439 278.36 38.2624C278.378 38.2808 278.397 38.2993 278.415 38.3178C278.434 38.34 278.452 38.3548 278.471 38.3733C278.489 38.3918 278.508 38.4102 278.526 38.4287C278.545 38.4472 278.563 38.4657 278.582 38.4842C278.6 38.5027 278.619 38.5211 278.637 38.5396C278.656 38.5581 278.674 38.5766 278.693 38.5951C278.711 38.6173 278.73 38.6321 278.748 38.6505C278.767 38.669 278.785 38.6875 278.804 38.706C278.822 38.7245 278.841 38.743 278.859 38.7615C278.878 38.7836 278.896 38.7984 278.915 38.8169C278.933 38.8354 278.952 38.8539 278.97 38.8724C278.989 38.8908 279.007 38.9093 279.026 38.9278C279.044 38.95 279.063 38.9648 279.081 38.9833C279.1 39.0018 279.118 39.0202 279.137 39.0387C279.155 39.0609 279.174 39.0757 279.192 39.0942C279.211 39.1127 279.229 39.1312 279.248 39.1496C279.266 39.1681 279.285 39.1866 279.304 39.2051C279.322 39.2236 279.341 39.2421 279.359 39.2605C279.507 39.4343 279.718 39.5489 279.955 39.5489H291.008C299.752 39.5489 306.907 32.4471 306.907 23.6705C306.907 19.3155 305.108 15.3561 302.21 12.4946C302.191 12.4762 302.173 12.4577 302.154 12.4392H302.151Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M289.14 13.1231H284.79V29.8888L286.2 29.8887V14.5315L290.55 14.5317C292.168 14.5317 293.641 14.9457 294.903 15.6593C294.659 15.2896 294.389 14.942 294.092 14.6204C292.704 13.6777 291.02 13.1231 289.14 13.1231Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M23.4412 27.2463H22.1495C21.8979 27.2463 21.6906 27.1502 21.5352 27.0024C21.5537 27.0209 21.5685 27.0393 21.5907 27.0578C21.6092 27.0763 21.6277 27.0948 21.6462 27.1133C21.6647 27.1317 21.6832 27.1502 21.7017 27.1687C21.7202 27.1872 21.735 27.2057 21.7572 27.2241C21.7757 27.2426 21.7905 27.2611 21.8127 27.2796C21.8312 27.2981 21.8498 27.3166 21.8683 27.335C21.8868 27.3535 21.9053 27.372 21.9238 27.3905C21.9423 27.409 21.9608 27.4275 21.9793 27.4459C21.9978 27.4644 22.0126 27.4829 22.0348 27.5014C22.0533 27.5199 22.0681 27.5383 22.0903 27.5568C22.1088 27.5753 22.1273 27.5938 22.1458 27.6123C22.1644 27.6308 22.1829 27.6492 22.2014 27.6677C22.2199 27.6862 22.2384 27.7047 22.2569 27.7232C22.2754 27.7416 22.2939 27.7601 22.3124 27.7786C22.3309 27.7971 22.3494 27.8156 22.3679 27.8341C22.3864 27.8525 22.4012 27.871 22.4234 27.8895C22.4419 27.908 22.4604 27.9265 22.479 27.9449C22.4975 27.9634 22.516 27.9819 22.5345 28.0004C22.553 28.0189 22.5715 28.0374 22.59 28.0558C22.6085 28.0743 22.627 28.0928 22.6455 28.1113C22.664 28.1298 22.6788 28.1482 22.701 28.1667C22.7195 28.1852 22.7343 28.2037 22.7565 28.2222C22.775 28.2407 22.7935 28.2591 22.812 28.2776C22.8306 28.2961 22.8491 28.3146 22.8676 28.3331C22.8861 28.3515 22.9046 28.37 22.9231 28.3885C22.9638 28.4329 23.0082 28.4735 23.0563 28.5068C23.1896 28.4624 23.3191 28.4181 23.4486 28.3663V27.2537L23.4412 27.2463Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M13.41 22.9985C13.41 18.0224 17.3967 13.8597 22.3348 13.8597C24.5559 13.8597 26.5474 14.4475 28.2687 16.0298C28.6315 16.2997 29.1275 16.2997 29.4903 15.9854L33.0698 12.185C33.4326 11.8227 33.3845 11.2792 32.9773 10.965C32.9699 10.9576 32.9625 10.9539 32.9551 10.9465C32.944 10.9354 32.9366 10.9206 32.9218 10.9095C32.9144 10.9021 32.9069 10.8984 32.8995 10.891C32.8884 10.8799 32.881 10.8651 32.8662 10.8541C32.8588 10.8467 32.8514 10.843 32.844 10.8356C32.8329 10.8245 32.8255 10.8097 32.8107 10.7986C32.8033 10.7912 32.7959 10.7875 32.7885 10.7801C32.7774 10.769 32.77 10.7542 32.7552 10.7431C32.7478 10.7357 32.7404 10.732 32.733 10.7247C32.7219 10.7136 32.7145 10.6988 32.6996 10.6877C32.6922 10.6803 32.6848 10.6766 32.6774 10.6692C32.6663 10.6581 32.6589 10.6433 32.6441 10.6322C32.6367 10.6248 32.6293 10.6211 32.6219 10.6137C32.6071 10.6027 32.6034 10.5879 32.5886 10.5768C32.5812 10.5694 32.5738 10.5657 32.5664 10.5583C32.5553 10.5472 32.5479 10.5324 32.5331 10.5213C32.5257 10.5139 32.5183 10.5102 32.5109 10.5028C32.4998 10.4917 32.4924 10.477 32.4775 10.4659C32.4701 10.4585 32.4627 10.4548 32.4553 10.4474C32.4442 10.4363 32.4368 10.4215 32.422 10.4104C32.4146 10.403 32.4072 10.3993 32.3998 10.3919C32.3887 10.3808 32.3813 10.3661 32.3665 10.355C32.3591 10.3476 32.3517 10.3439 32.3443 10.3365C32.3332 10.3254 32.3258 10.3106 32.311 10.2995C32.3036 10.2921 32.2962 10.2884 32.2888 10.281C32.2777 10.2699 32.2703 10.2551 32.2554 10.2441C32.248 10.2367 32.2406 10.233 32.2332 10.2256C32.2221 10.2145 32.2147 10.1997 32.1999 10.1886C32.1925 10.1812 32.1851 10.1775 32.1777 10.1701C32.1666 10.159 32.1592 10.1442 32.1444 10.1331C32.137 10.1258 32.1296 10.1221 32.1222 10.1147C32.1111 10.1036 32.1037 10.0888 32.0889 10.0777C32.0815 10.0703 32.0741 10.0666 32.0667 10.0592C32.0555 10.0481 32.0481 10.0333 32.0333 10.0222C32.0259 10.0148 32.0185 10.0111 32.0111 10.0038C32 9.99266 31.9926 9.97787 31.9778 9.96678C31.9704 9.95939 31.963 9.95569 31.9556 9.9483C31.9408 9.93721 31.9371 9.92242 31.9223 9.91133C31.9149 9.90393 31.9075 9.90024 31.9001 9.89284C31.889 9.88175 31.8816 9.86696 31.8668 9.85587C31.8594 9.84848 31.852 9.84478 31.8446 9.83739C31.8297 9.8263 31.826 9.81151 31.8112 9.80042C31.8038 9.79302 31.7964 9.78933 31.789 9.78194C31.7779 9.77084 31.7705 9.75606 31.7557 9.74497C31.7483 9.73757 31.7409 9.73387 31.7335 9.72648C31.7224 9.71539 31.715 9.7006 31.7002 9.68951C31.7002 9.68951 31.6928 9.68581 31.6928 9.68212C31.9704 10.0038 31.9704 10.4548 31.6521 10.7727L28.0725 14.5732C27.7097 14.8911 27.2137 14.8911 26.8509 14.6175C25.1296 13.0353 23.1381 12.4474 20.9171 12.4474C15.9789 12.4474 11.9922 16.6102 11.9922 21.5863C11.9922 23.4865 12.5956 25.2574 13.6135 26.7177C13.9393 27.0171 14.2873 27.2907 14.6537 27.5347C13.8653 26.1964 13.3988 24.6474 13.3988 22.9911L13.41 22.9985Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M31.585 9.57527C31.585 9.57527 31.5999 9.59388 31.6111 9.60132C31.6074 9.59388 31.6037 9.59016 31.5962 9.58272C31.5962 9.58272 31.5887 9.57527 31.585 9.57527Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M31.6853 9.67869C31.6853 9.67869 31.6965 9.68587 31.7002 9.68951C31.6892 9.6786 31.678 9.66777 31.667 9.65686C31.6743 9.66414 31.678 9.67141 31.6853 9.67869Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M31.6455 9.63355C31.6455 9.63355 31.6605 9.64844 31.668 9.65588C31.6642 9.65216 31.6605 9.64471 31.6567 9.64099C31.6567 9.64099 31.6492 9.63727 31.6455 9.63355Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M31.6302 9.62302C31.6302 9.62302 31.638 9.62983 31.6455 9.63355C31.6343 9.62239 31.6265 9.61185 31.6152 9.60441C31.619 9.61185 31.6265 9.6193 31.6339 9.62302H31.6302Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M9.16824 33.2466C9.16824 33.2466 9.20526 33.2835 9.22376 33.302C9.24227 33.3205 9.26078 33.339 9.27929 33.3575C9.2978 33.3759 9.31631 33.3944 9.33482 33.4129C9.35333 33.4314 9.37183 33.4499 9.39034 33.4684C9.40885 33.4868 9.42736 33.5053 9.44587 33.5238C9.46437 33.5423 9.48289 33.5608 9.50139 33.5793C9.5199 33.5978 9.53841 33.6162 9.55692 33.6347C9.57543 33.6532 9.59394 33.6717 9.61245 33.6902C9.63096 33.7087 9.64946 33.7272 9.66797 33.7456C9.68648 33.7641 9.70499 33.7826 9.7235 33.8011C9.742 33.8196 9.76052 33.8381 9.77902 33.8565C9.79753 33.875 9.81604 33.8935 9.83455 33.912C9.85306 33.9305 9.87157 33.949 9.89008 33.9675C9.90859 33.9859 9.92709 34.0044 9.9456 34.0229C9.96411 34.0414 9.98261 34.0599 10.0011 34.0784C10.0196 34.0969 10.0381 34.1153 10.0567 34.1338C10.0752 34.1523 10.0937 34.1708 10.1122 34.1893C10.1307 34.2078 10.1492 34.2262 10.1677 34.2447C10.1862 34.2632 10.2047 34.2817 10.2232 34.3002C10.2417 34.3187 10.2602 34.3372 10.2788 34.3556C10.2973 34.3741 10.3158 34.3926 10.3343 34.4111C10.3528 34.4296 10.3713 34.4481 10.3898 34.4665C13.3327 37.4019 17.4083 39.2023 21.9318 39.2023C28.4987 39.2023 33.1665 36.2633 33.1665 36.2633C33.3479 36.1265 33.5293 35.7642 33.5293 35.5387L33.4849 23.3683C33.4849 23.1243 33.3775 22.9025 33.211 22.7398C33.1924 22.7213 33.1739 22.7029 33.1554 22.6844C33.1369 22.6659 33.1184 22.6474 33.0999 22.6289C33.0814 22.6104 33.0629 22.5919 33.0444 22.5735C33.0259 22.555 33.0074 22.5365 32.9888 22.518C32.9703 22.4995 32.9518 22.481 32.9333 22.4626C32.9148 22.4441 32.8963 22.4256 32.8778 22.4071C32.8593 22.3886 32.8408 22.3701 32.8223 22.3516C32.8038 22.3332 32.7853 22.3147 32.7667 22.2962C32.7482 22.2777 32.7297 22.2592 32.7112 22.2407C32.6927 22.2222 32.6742 22.2038 32.6557 22.1853C32.6372 22.1668 32.6187 22.1483 32.6002 22.1298C32.5817 22.1113 32.5632 22.0929 32.5446 22.0744C32.5261 22.0522 32.5076 22.0374 32.4891 22.0189C32.4706 22.0004 32.4521 21.9819 32.4336 21.9635C32.4151 21.945 32.3966 21.9265 32.3781 21.908C32.3596 21.8895 32.341 21.871 32.3225 21.8526C32.304 21.8341 32.2855 21.8156 32.267 21.7971C32.2485 21.7749 32.23 21.7601 32.2115 21.7416C32.193 21.7232 32.1745 21.7047 32.156 21.6862C32.1375 21.6677 32.1189 21.6492 32.1004 21.6307C32.0819 21.6086 32.0634 21.5938 32.0449 21.5753C32.0264 21.5568 32.0079 21.5383 31.9894 21.5198C31.9709 21.5013 31.9524 21.4829 31.9339 21.4644C31.9153 21.4422 31.8968 21.4274 31.8783 21.4089C31.8635 21.3904 31.845 21.372 31.8265 21.3572C31.9746 21.5161 32.0708 21.7269 32.0708 21.9561L32.1152 34.1264C32.1152 34.3519 31.9339 34.7142 31.7525 34.851C31.7525 34.851 27.0883 37.7901 20.5177 37.7901C16.0831 37.7901 12.0778 36.0562 9.15343 33.2244C9.14233 33.217 9.13122 33.2059 9.12012 33.1985C9.13492 33.2133 9.15343 33.2318 9.16824 33.2466Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M74.8408 33.2726C74.8408 33.2726 74.8778 33.3095 74.8963 33.328C74.9148 33.3465 74.9333 33.365 74.9518 33.3835C74.9703 33.4019 74.9888 33.4204 75.0074 33.4389C75.0259 33.4574 75.0444 33.4759 75.0629 33.4944C75.0814 33.5129 75.0999 33.5313 75.1184 33.5498C75.1369 33.5683 75.1554 33.5868 75.1739 33.6053C75.1924 33.6238 75.211 33.6423 75.2295 33.6607C75.248 33.6792 75.2665 33.6977 75.285 33.7162C75.3035 33.7347 75.322 33.7532 75.3405 33.7716C75.359 33.7901 75.3775 33.8086 75.396 33.8271C75.4146 33.8456 75.4331 33.8641 75.4516 33.8826C75.4701 33.901 75.4886 33.9195 75.5071 33.938C75.5256 33.9565 75.5441 33.975 75.5626 33.9935C75.5811 34.0119 75.5996 34.0304 75.6181 34.0489C75.6366 34.0674 75.6552 34.0859 75.6737 34.1044C75.6922 34.1229 75.7107 34.1413 75.7292 34.1598C75.7477 34.1783 75.7662 34.1968 75.7847 34.2153C75.8032 34.2338 75.8217 34.2522 75.8402 34.2707C75.8587 34.2892 75.8773 34.3077 75.8958 34.3262C75.9143 34.3447 75.9328 34.3632 75.9513 34.3816C75.9698 34.4001 75.9883 34.4186 76.0068 34.4371C76.0253 34.4556 76.0438 34.4741 76.0623 34.4925C78.9978 37.439 83.0734 39.2468 87.6191 39.2468C96.6773 39.2468 103.925 32.0526 103.925 23.0061C103.925 18.4663 102.1 14.3738 99.1389 11.4162C99.1204 11.3977 99.1019 11.3792 99.0834 11.3607C99.0649 11.3423 99.0464 11.3238 99.0279 11.3053C99.0094 11.2868 98.9909 11.2683 98.9723 11.2498C98.9538 11.2314 98.9353 11.2129 98.9168 11.1944C98.8983 11.1759 98.8798 11.1574 98.8613 11.1389C98.8428 11.1204 98.8243 11.102 98.8058 11.0835C98.7872 11.065 98.7687 11.0465 98.7502 11.028C98.7317 11.0095 98.7132 10.991 98.6947 10.9726C98.6762 10.9541 98.6577 10.9356 98.6392 10.9171C98.6207 10.8986 98.6022 10.8801 98.5836 10.8617C98.5651 10.8432 98.5466 10.8247 98.5281 10.8062C98.5096 10.7877 98.4911 10.7692 98.4726 10.7507C98.4541 10.7323 98.4356 10.7138 98.4171 10.6953C98.3986 10.6768 98.3801 10.6583 98.3615 10.6398C98.343 10.6214 98.3245 10.6029 98.306 10.5844C98.2875 10.5659 98.269 10.5474 98.2505 10.5289C98.232 10.5104 98.2135 10.492 98.195 10.4735C98.1765 10.455 98.158 10.4365 98.1395 10.418C98.1209 10.3995 98.1024 10.3811 98.0839 10.3626C98.0654 10.3441 98.0469 10.3256 98.0284 10.3071C98.0099 10.2886 97.9914 10.2701 97.9729 10.2517C97.9544 10.2332 97.9359 10.2147 97.9173 10.1962C97.8988 10.1777 97.8803 10.1592 97.8618 10.1408C97.8433 10.1223 97.8248 10.1038 97.8063 10.0853C97.7878 10.0668 97.7693 10.0483 97.7508 10.0298C100.697 12.9837 102.511 17.0651 102.511 21.5939C102.511 30.644 95.2632 37.8346 86.2051 37.8346C81.7704 37.8346 77.78 36.1081 74.863 33.2836C74.8482 33.2726 74.8371 33.2615 74.8223 33.2541C74.8297 33.2615 74.8334 33.2652 74.8408 33.2726Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M42.3533 21.5935C42.3533 23.4974 42.9641 25.2682 43.9932 26.7285C44.3152 27.0206 44.6595 27.2904 45.0223 27.5344C44.2301 26.1961 43.76 24.6508 43.76 23.0019C43.76 18.0258 47.8356 13.9074 52.7737 13.9074C54.432 13.9074 55.9831 14.3769 57.3268 15.1681C57.0788 14.8021 56.8049 14.4546 56.505 14.1292C55.0428 13.1052 53.2734 12.4989 51.3633 12.4989C46.4252 12.4989 42.3496 16.6173 42.3496 21.5934L42.3533 21.5935Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M40.0031 33.2727C40.0031 33.2727 40.0401 33.3097 40.0586 33.3282C40.0771 33.3467 40.0956 33.3652 40.1141 33.3836C40.1326 33.4021 40.1512 33.4206 40.1697 33.4391C40.1882 33.4576 40.2067 33.4761 40.2252 33.4946C40.2437 33.513 40.2622 33.5315 40.2807 33.55C40.2992 33.5685 40.3177 33.587 40.3362 33.6055C40.3548 33.624 40.3733 33.6424 40.3918 33.6609C40.4103 33.6794 40.4288 33.6979 40.4473 33.7164C40.4658 33.7349 40.4843 33.7533 40.5028 33.7718C40.5213 33.7903 40.5398 33.8088 40.5583 33.8273C40.5769 33.8458 40.5954 33.8643 40.6139 33.8827C40.6324 33.9012 40.6509 33.9197 40.6694 33.9382C40.6879 33.9567 40.7064 33.9752 40.7249 33.9937C40.7434 34.0121 40.7619 34.0306 40.7804 34.0491C40.799 34.0676 40.8175 34.0861 40.836 34.1046C40.8545 34.123 40.873 34.1415 40.8915 34.16C40.91 34.1785 40.9285 34.197 40.947 34.2155C40.9655 34.2339 40.984 34.2524 41.0026 34.2709C41.0211 34.2894 41.0396 34.3079 41.0581 34.3264C41.0766 34.3449 41.0951 34.3633 41.1136 34.3818C41.1321 34.4003 41.1506 34.4188 41.1691 34.4373C41.1876 34.4558 41.2061 34.4742 41.2247 34.4927C44.1601 37.4392 48.2357 39.2507 52.7814 39.2507C61.2769 39.2507 68.1695 32.9252 68.995 24.6773C68.5952 23.2392 68.3842 21.7346 68.3842 20.1929C68.3842 19.6273 68.4138 19.0691 68.4694 18.5108C67.6994 15.7862 66.2483 13.3573 64.3049 11.4201C64.2864 11.4016 64.2679 11.3831 64.2494 11.3646C64.2309 11.3461 64.2124 11.3277 64.1939 11.3092C64.1754 11.2907 64.1569 11.2722 64.1384 11.2537C64.1198 11.2352 64.1013 11.2168 64.0828 11.1983C64.0643 11.1798 64.0458 11.1613 64.0273 11.1428C64.0088 11.1243 63.9903 11.1058 63.9718 11.0874C63.9533 11.0689 63.9348 11.0504 63.9162 11.0319C63.8977 11.0134 63.8792 10.9949 63.8607 10.9764C63.8422 10.958 63.8237 10.9395 63.8052 10.921C63.7867 10.9025 63.7682 10.884 63.7497 10.8655C63.7312 10.8471 63.7126 10.8286 63.6941 10.8101C63.6756 10.7916 63.6571 10.7731 63.6386 10.7546C63.6201 10.7361 63.6016 10.7177 63.5831 10.6992C63.5646 10.6807 63.5461 10.6622 63.5276 10.6437C63.5091 10.6252 63.4905 10.6068 63.472 10.5883C63.4535 10.5698 63.435 10.5513 63.4165 10.5328C63.398 10.5143 63.3795 10.4958 63.361 10.4774C63.3425 10.4589 63.324 10.4404 63.3055 10.4219C63.2869 10.4034 63.2684 10.3849 63.2499 10.3665C63.2314 10.348 63.2129 10.3295 63.1944 10.311C63.1759 10.2925 63.1574 10.274 63.1389 10.2555C63.1204 10.2371 63.1019 10.2186 63.0834 10.2001C63.0648 10.1816 63.0463 10.1631 63.0278 10.1446C63.0093 10.1261 62.9908 10.1077 62.9723 10.0892C62.9538 10.0707 62.9353 10.0522 62.9168 10.0337C65.8633 12.9839 67.6772 17.069 67.6772 21.5941C67.6772 30.6442 60.4292 37.8348 51.3711 37.8348C46.9364 37.8348 42.946 36.1083 40.029 33.2838C40.0142 33.2727 40.0031 33.2617 39.9883 33.2543C39.9957 33.2617 39.9994 33.2653 40.0068 33.2727H40.0031Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M77.1863 21.5934C77.1863 23.4973 77.7971 25.2681 78.8262 26.7284C79.1482 27.0205 79.4925 27.2904 79.8553 27.5344C79.0631 26.1961 78.593 24.6508 78.593 23.0019C78.593 18.0258 82.6686 13.9074 87.6067 13.9074C89.2651 13.9074 90.8198 14.3769 92.1598 15.1681C91.9118 14.8021 91.6379 14.4546 91.338 14.1292C89.8758 13.1052 88.1027 12.4989 86.1963 12.4989C81.2582 12.4989 77.1826 16.6173 77.1826 21.5934H77.1863Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M134.857 21.5017C134.857 30.2783 127.697 37.3801 118.958 37.3801H107.904C107.682 37.3801 107.486 37.2766 107.338 37.1213C107.353 37.1398 107.371 37.1583 107.39 37.1731C107.408 37.1916 107.427 37.2101 107.445 37.2285C107.464 37.2507 107.482 37.2655 107.501 37.284C107.519 37.3025 107.538 37.321 107.556 37.3395C107.575 37.3579 107.593 37.3764 107.612 37.3949C107.63 37.4134 107.649 37.4319 107.667 37.4504C107.686 37.4725 107.704 37.4873 107.723 37.5058C107.741 37.528 107.76 37.5428 107.778 37.5613C107.797 37.5835 107.815 37.5982 107.834 37.6167C107.852 37.6352 107.871 37.6537 107.889 37.6722C107.908 37.6907 107.926 37.7092 107.945 37.7276C107.963 37.7461 107.982 37.7646 108.001 37.7831C108.019 37.8053 108.038 37.8201 108.056 37.8385C108.075 37.857 108.093 37.8755 108.112 37.894C108.13 37.9162 108.149 37.931 108.167 37.9495C108.186 37.9679 108.204 37.9864 108.223 38.0049C108.241 38.0234 108.26 38.0419 108.278 38.0604C108.297 38.0788 108.315 38.0973 108.334 38.1158C108.352 38.1343 108.371 38.1528 108.389 38.1713C108.408 38.1897 108.426 38.2082 108.445 38.2267C108.463 38.2489 108.482 38.2637 108.5 38.2822C108.519 38.3007 108.537 38.3191 108.556 38.3376C108.574 38.3561 108.593 38.3746 108.611 38.3931C108.63 38.4153 108.648 38.4301 108.667 38.4485C108.685 38.467 108.704 38.4855 108.722 38.504C108.87 38.6778 109.078 38.7924 109.318 38.7924H120.372C129.115 38.7924 136.271 31.6905 136.271 22.914C136.271 18.559 134.472 14.5995 131.573 11.7381C131.555 11.7196 131.536 11.7011 131.518 11.6826C131.499 11.6642 131.481 11.6457 131.462 11.6272C131.444 11.6087 131.425 11.5902 131.407 11.5717C131.388 11.5532 131.37 11.5348 131.351 11.5163C131.332 11.4978 131.314 11.4793 131.295 11.4608C131.277 11.4423 131.258 11.4239 131.24 11.4054C131.221 11.3869 131.203 11.3684 131.184 11.3499C131.166 11.3314 131.147 11.3129 131.129 11.2945C131.11 11.276 131.092 11.2575 131.073 11.239C131.055 11.2205 131.036 11.202 131.018 11.1835C130.999 11.1651 130.981 11.1466 130.962 11.1281C130.944 11.1096 130.925 11.0911 130.907 11.0726C130.888 11.0542 130.87 11.0357 130.851 11.0172C130.833 10.9987 130.814 10.9802 130.796 10.9617C130.777 10.9432 130.759 10.9248 130.74 10.9063C130.722 10.8878 130.703 10.8693 130.685 10.8508C130.666 10.8323 130.648 10.8139 130.629 10.7954C130.611 10.7769 130.592 10.7584 130.574 10.7399C130.555 10.7214 130.537 10.7029 130.518 10.6845C130.5 10.666 130.481 10.6475 130.463 10.629C130.451 10.6142 130.437 10.6031 130.422 10.5883C130.433 10.6031 130.44 10.6142 130.451 10.629C133.172 13.4646 134.853 17.2946 134.853 21.498L134.857 21.5017Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M119.912 13.7713C121.53 13.7713 122.999 14.1854 124.265 14.8989C124.021 14.5292 123.751 14.1809 123.455 13.8593C122.07 12.9166 120.382 12.362 118.502 12.362H114.152V29.1277L115.562 29.1284V13.7713H119.912Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M19.1062 36.2303C25.5509 36.2303 30.2151 33.343 30.2595 33.3134C30.3928 33.2136 30.552 32.8957 30.552 32.7182L30.5075 20.5479C30.5075 20.1634 30.204 19.838 29.8449 19.838H20.7387C20.3204 19.838 20.0279 20.1301 20.0279 20.5479V25.0249C20.0279 25.4019 20.3315 25.6866 20.7387 25.6866H23.7445V28.5628L23.6482 28.5998C22.4119 29.0952 21.0755 29.3355 19.5615 29.3355C14.5309 29.3355 10.4405 25.2282 10.4405 20.1819C10.4405 15.1355 14.5124 10.8914 19.5171 10.8914C21.9602 10.8914 23.937 11.616 25.5546 13.1022C25.8619 13.3314 26.2765 13.3166 26.5763 13.0541L30.1448 9.26477C30.2891 9.12059 30.3595 8.94314 30.3484 8.76199C30.3373 8.57344 30.2373 8.39599 30.0707 8.2666C27.0168 5.62328 22.9227 4.04468 19.1099 4.04468C14.7863 4.04468 10.7366 5.7157 7.70489 8.7509C4.66947 11.7898 3 15.849 3 20.1819C3 24.5147 4.67318 28.5517 7.70489 31.5648C10.7329 34.5704 14.7826 36.2266 19.1099 36.2266L19.1062 36.2303Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M49.9574 36.2744C54.3032 36.2744 58.3677 34.6107 61.4031 31.5903C64.4422 28.5662 66.1154 24.5181 66.1154 20.1815C66.1154 11.2608 58.8674 4 49.9574 4C45.6227 4 41.5656 5.67841 38.5338 8.7284C35.5095 11.771 33.8438 15.8413 33.8438 20.1815C33.8438 24.5218 35.5095 28.5699 38.5338 31.5903C41.5581 34.6107 45.6152 36.2744 49.9574 36.2744ZM49.9574 10.9392C55.0361 10.9392 59.1673 15.0871 59.1673 20.1852C59.1673 25.2833 55.0361 29.3389 49.9574 29.3389C44.8786 29.3389 40.7919 25.2316 40.7919 20.1852C40.7919 15.1389 44.9045 10.9392 49.9574 10.9392Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M84.7943 36.2744C89.1401 36.2744 93.2046 34.6107 96.24 31.5903C99.2791 28.5662 100.952 24.5181 100.952 20.1815C100.952 11.2608 93.7043 4 84.7943 4C80.4596 4 76.4025 5.67841 73.3708 8.7284C70.3464 11.771 68.6807 15.8413 68.6807 20.1815C68.6807 24.5218 70.3464 28.5699 73.3708 31.5903C76.3951 34.6107 80.4522 36.2744 84.7943 36.2744ZM84.7943 10.9392C89.873 10.9392 94.0042 15.0871 94.0042 20.1852C94.0042 25.2833 89.873 29.3389 84.7943 29.3389C79.7155 29.3389 75.6288 25.2316 75.6288 20.1852C75.6288 15.1389 79.7414 10.9392 84.7943 10.9392Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M106.494 35.8232H117.547C126.231 35.8232 133.294 28.7657 133.294 20.0927C133.294 11.4196 126.228 4.45457 117.547 4.45457H106.494C106.135 4.45457 105.831 4.7799 105.831 5.16438V35.1134C105.831 35.4978 106.135 35.8232 106.494 35.8232ZM112.594 10.8022H117.095C122.219 10.8022 126.079 14.7949 126.079 20.0927C126.079 25.3904 122.219 29.4275 117.095 29.4275H112.594V10.8022Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M155.388 11.5633H168.089C168.481 11.5633 168.799 11.2453 168.799 10.8534V5.92171C168.799 5.52983 168.481 5.2119 168.089 5.2119H149.336C148.943 5.2119 148.625 5.52983 148.625 5.92171V35.8707C148.625 36.2626 148.943 36.5805 149.336 36.5805H154.681C155.051 36.5805 155.392 36.2441 155.392 35.8707V24.7244H165.871C166.242 24.7244 166.582 24.388 166.582 24.0146V19.0828C166.582 18.7131 166.245 18.373 165.871 18.373H155.392V11.5559L155.388 11.5633Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M190.059 36.5803H196.085C196.374 36.5803 196.604 36.4657 196.73 36.2513C196.859 36.0332 196.859 35.7411 196.722 35.4897L190.437 23.848L190.592 23.7852C194.668 22.1474 197.203 18.7167 197.203 14.8312C197.203 9.52604 192.843 5.20801 187.479 5.20801H173.934C173.542 5.20801 173.224 5.52595 173.224 5.91782V35.8668C173.224 36.2587 173.542 36.5766 173.934 36.5766H179.324C179.694 36.5766 180.035 36.2402 180.035 35.8668V24.1771H183.403L189.471 36.2476C189.533 36.3733 189.748 36.5729 190.059 36.5729V36.5803ZM186.89 18.7425H180.035V11.3819H186.89C188.838 11.3819 190.485 13.0271 190.485 14.9717C190.485 16.9162 188.804 18.7425 186.89 18.7425Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M203.378 5.21578H208.812C209.204 5.21578 209.522 5.53372 209.522 5.92559V35.8783C209.522 36.2701 209.204 36.5881 208.812 36.5881H203.374C202.981 36.5881 202.663 36.2701 202.663 35.8783V5.92929C202.663 5.53741 202.981 5.21948 203.374 5.21948L203.378 5.21578Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M223.478 11.5633H236.179C236.571 11.5633 236.889 11.2453 236.889 10.8534V5.92171C236.889 5.52983 236.571 5.2119 236.179 5.2119H217.426C217.033 5.2119 216.715 5.52983 216.715 5.92171V35.8707C216.715 36.2626 217.033 36.5805 217.426 36.5805H236.179C236.571 36.5805 236.889 36.2626 236.889 35.8707V30.9389C236.889 30.5471 236.571 30.2291 236.179 30.2291H223.478V23.8186H233.957C234.35 23.8186 234.668 23.5007 234.668 23.1088V18.1771C234.668 17.8074 234.331 17.4673 233.957 17.4673H223.478V11.5559V11.5633Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M268.565 5.21516H263.127C262.735 5.21516 262.416 5.53309 262.416 5.92497V22.1361H262.161L244.085 4.76413H243.015C242.63 4.76413 242.305 5.06728 242.305 5.42588L242.349 35.8739C242.349 36.2436 242.686 36.5838 243.06 36.5838H248.45C248.842 36.5838 249.16 36.2658 249.16 35.8739V18.8458H249.419L249.464 18.8902L267.358 36.8499C267.417 36.9091 267.743 37.0311 267.839 37.0311H268.565C268.95 37.0311 269.275 36.7279 269.275 36.3693V5.92127C269.275 5.55158 268.939 5.21146 268.565 5.21146V5.21516Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M288.185 5.21578H277.131C276.772 5.21578 276.465 5.54111 276.465 5.92559V35.8746C276.465 36.2591 276.768 36.5844 277.131 36.5844H288.185C296.869 36.5844 303.935 29.5269 303.935 20.8539C303.935 12.1808 296.869 5.21578 288.185 5.21578ZM287.729 30.1887H283.228V11.5634H287.729C292.852 11.5634 296.713 15.5561 296.713 20.8539C296.713 26.1516 292.852 30.1887 287.729 30.1887Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,164 @@
|
||||
import { levelVariants } from "../../variants"
|
||||
|
||||
import type { LevelProps } from "../../levels"
|
||||
|
||||
export default function LoyalFriend({
|
||||
className,
|
||||
color,
|
||||
height = "44",
|
||||
width = "305",
|
||||
...props
|
||||
}: LevelProps) {
|
||||
const classNames = levelVariants({
|
||||
className,
|
||||
color,
|
||||
})
|
||||
return (
|
||||
<svg
|
||||
className={classNames}
|
||||
fill="none"
|
||||
height={height}
|
||||
viewBox="0 0 305 44"
|
||||
width={width}
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
d="M53.0469 11.9041C53.0469 11.9041 53.0099 11.867 52.9914 11.8484C52.9729 11.8299 52.9543 11.8114 52.9358 11.7928C52.9173 11.7743 52.8988 11.7557 52.8803 11.7372C52.8618 11.7187 52.8433 11.7001 52.8248 11.6816C52.8063 11.663 52.7878 11.6445 52.7693 11.6259C52.7507 11.6074 52.7322 11.5889 52.7137 11.5703C52.6952 11.5518 52.6767 11.5332 52.6582 11.5147C52.6397 11.4962 52.6212 11.4776 52.6027 11.4591C52.5842 11.4405 52.5657 11.422 52.5471 11.4035C52.5286 11.3849 52.5101 11.3664 52.4916 11.3478C52.4731 11.3293 52.4546 11.3107 52.4361 11.2922C52.4176 11.2737 52.3991 11.2551 52.3806 11.2366C52.3621 11.218 52.3436 11.1995 52.3251 11.181C52.3065 11.1624 52.288 11.1439 52.2695 11.1253C52.251 11.1068 52.2325 11.0883 52.214 11.0697C52.1955 11.0512 52.177 11.0326 52.1585 11.0141C52.14 10.9955 52.1215 10.977 52.103 10.9585C52.0844 10.9399 52.0659 10.9214 52.0474 10.9028C52.0289 10.8843 52.0104 10.8658 51.9919 10.8472C51.9734 10.8287 51.9549 10.8101 51.9364 10.7916C51.9179 10.7731 51.8994 10.7545 51.8808 10.736C51.8623 10.7174 51.8438 10.6989 51.8253 10.6803C51.8068 10.6618 51.7883 10.6433 51.7698 10.6247C51.7513 10.6062 51.7328 10.5876 51.7143 10.5691C51.6995 10.5543 51.6809 10.5357 51.6661 10.5209C54.6016 13.4727 56.4081 17.5554 56.4081 22.0795C56.4081 31.1276 49.1823 38.3216 40.1464 38.3216C35.7228 38.3216 31.7472 36.5936 28.8376 33.7716C28.8228 33.7605 28.8117 33.7493 28.7969 33.7419C28.8006 33.7456 28.808 33.753 28.8117 33.7567C28.8302 33.7753 28.8487 33.7938 28.8672 33.8124C28.8857 33.8309 28.9042 33.8494 28.9227 33.868C28.9412 33.8865 28.9598 33.9051 28.9783 33.9236C28.9968 33.9422 29.0153 33.9607 29.0338 33.9792C29.0523 33.9978 29.0708 34.0163 29.0893 34.0349C29.1078 34.0534 29.1263 34.0719 29.1448 34.0905C29.1633 34.109 29.1819 34.1276 29.2004 34.1461C29.2189 34.1647 29.2374 34.1832 29.2559 34.2017C29.2744 34.2203 29.2929 34.2388 29.3114 34.2574C29.3299 34.2759 29.3484 34.2944 29.3669 34.313C29.3854 34.3315 29.404 34.3501 29.4225 34.3686C29.441 34.3871 29.4595 34.4057 29.478 34.4242C29.4965 34.4428 29.515 34.4613 29.5335 34.4799C29.552 34.4984 29.5705 34.5169 29.589 34.5355C29.6076 34.554 29.6261 34.5726 29.6446 34.5911C29.6631 34.6096 29.6816 34.6282 29.7001 34.6467C29.7186 34.6653 29.7371 34.6838 29.7556 34.7023C29.7741 34.7209 29.7926 34.7394 29.8111 34.758C29.8297 34.7765 29.8482 34.7951 29.8667 34.8136C29.8852 34.8321 29.9037 34.8507 29.9222 34.8692C29.9407 34.8878 29.9592 34.9063 29.9777 34.9248C29.9962 34.9434 30.0147 34.9619 30.0332 34.9805C32.9613 37.9248 37.0258 39.7381 41.553 39.7381C50.5852 39.7381 57.8147 32.5441 57.8147 23.496C57.8147 18.9571 55.9935 14.8595 53.0395 11.9078L53.0469 11.9041Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M40.1616 12.997C35.2383 12.997 31.1738 17.1131 31.1738 22.0933C31.1738 23.9956 31.7846 25.7645 32.81 27.2255C33.132 27.5185 33.4726 27.7862 33.8317 28.0309C33.0395 26.6922 32.5731 25.1459 32.5731 23.4957C32.5731 18.5193 36.6376 14.3994 41.5609 14.3994C43.2155 14.3994 44.7629 14.8666 46.0992 15.6602C45.8512 15.2968 45.5772 14.9482 45.2811 14.6256C43.8226 13.6021 42.0606 12.994 40.1579 12.994L40.1616 12.997Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M86.773 39.2856C87.6763 39.2856 88.1723 38.7442 88.3981 38.1991L90.0232 34.5799H100.614L99.9771 33.1782H88.6239L86.9988 36.7974C86.773 37.3388 86.277 37.8839 85.3738 37.8839H80.4061C80.1432 37.8839 79.936 37.7949 79.7842 37.6503C79.8027 37.6688 79.8175 37.6874 79.836 37.7022C79.8545 37.7208 79.8693 37.7393 79.8915 37.7578C79.91 37.7764 79.9248 37.7949 79.9471 37.8135C79.9656 37.832 79.9804 37.8505 80.0026 37.8691C80.0211 37.8876 80.0359 37.9062 80.0581 37.9247C80.0766 37.9432 80.0914 37.9618 80.1136 37.9803C80.1321 37.9989 80.1469 38.0174 80.1692 38.036C80.1877 38.0545 80.2025 38.073 80.2247 38.0916C80.2432 38.1101 80.258 38.1287 80.2802 38.1472C80.2987 38.1657 80.3135 38.1843 80.3357 38.2028C80.3542 38.2214 80.369 38.2399 80.3913 38.2584C80.4098 38.277 80.4246 38.2955 80.4468 38.3141C80.4653 38.3326 80.4801 38.3512 80.5023 38.3697C80.5208 38.3882 80.5356 38.4068 80.5578 38.4253C80.5763 38.4439 80.5912 38.4624 80.6134 38.4809C80.6319 38.4995 80.6467 38.518 80.6689 38.5366C80.6874 38.5551 80.7022 38.5737 80.7244 38.5922C80.7429 38.6107 80.7577 38.6293 80.7799 38.6478C80.7985 38.6664 80.8133 38.6849 80.8355 38.7034C80.854 38.722 80.8688 38.7405 80.891 38.7591C80.9095 38.7776 80.9243 38.7961 80.9465 38.8147C80.965 38.8332 80.9798 38.8518 81.002 38.8703C81.0205 38.8889 81.0354 38.9074 81.0576 38.9259C81.0761 38.9445 81.0909 38.963 81.1131 38.9816C81.1316 39.0001 81.1464 39.0186 81.1686 39.0372C81.3167 39.1929 81.5388 39.2968 81.8164 39.2968H86.7841L86.773 39.2856Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M109.902 36.7047C110.173 37.2943 109.814 37.8802 109.136 37.8802H104.124C103.617 37.8802 103.287 37.7727 103.013 37.4872C103.032 37.5057 103.05 37.5242 103.065 37.5391C103.084 37.5576 103.102 37.5762 103.121 37.5947C103.139 37.6132 103.158 37.6318 103.176 37.6503C103.195 37.6689 103.213 37.6874 103.232 37.7059C103.25 37.7245 103.269 37.743 103.287 37.7616C103.306 37.7801 103.324 37.7987 103.343 37.8172C103.361 37.8357 103.38 37.8543 103.398 37.8728C103.417 37.8914 103.435 37.9099 103.454 37.9284C103.472 37.947 103.491 37.9655 103.509 37.9841C103.528 38.0026 103.546 38.0211 103.565 38.0397C103.584 38.0582 103.602 38.0768 103.621 38.0953C103.639 38.1139 103.658 38.1324 103.676 38.1509C103.695 38.1695 103.713 38.188 103.732 38.2066C103.75 38.2251 103.769 38.2436 103.787 38.2622C103.806 38.2807 103.824 38.2993 103.843 38.3178C103.861 38.3363 103.88 38.3549 103.898 38.3734C103.917 38.392 103.935 38.4105 103.954 38.4291C103.972 38.4476 103.991 38.4661 104.009 38.4847C104.028 38.5032 104.046 38.5218 104.065 38.5403C104.083 38.5588 104.102 38.5774 104.12 38.5959C104.139 38.6145 104.157 38.633 104.176 38.6516C104.194 38.6701 104.213 38.6886 104.231 38.7072C104.25 38.7257 104.268 38.7443 104.287 38.7628C104.305 38.7813 104.324 38.7999 104.342 38.8184C104.361 38.837 104.379 38.8555 104.398 38.874C104.679 39.1781 105.012 39.2931 105.534 39.2931H110.546C111.224 39.2931 111.587 38.7035 111.313 38.1176L97.1758 7.66918C97.1351 7.58759 97.0722 7.50972 97.0018 7.43926C96.9833 7.42072 96.9648 7.40218 96.9463 7.38364C96.9278 7.3651 96.9093 7.34656 96.8908 7.32802C96.8723 7.30947 96.8538 7.29094 96.8353 7.27239C96.8167 7.25385 96.7982 7.23531 96.7797 7.21677C96.7612 7.19823 96.7427 7.17969 96.7242 7.16115C96.7057 7.1426 96.6872 7.12406 96.6687 7.10552C96.6502 7.08698 96.6317 7.06844 96.6132 7.0499C96.5946 7.03136 96.5761 7.01282 96.5576 6.99428C96.5391 6.97573 96.5206 6.95719 96.5021 6.93865C96.4873 6.92011 96.4651 6.90157 96.4466 6.88303C96.4281 6.86449 96.4096 6.84594 96.391 6.8274C96.3725 6.80886 96.354 6.79032 96.3355 6.77178C96.317 6.75324 96.2985 6.7347 96.28 6.71616C96.2615 6.69762 96.243 6.67907 96.2245 6.66053C96.2097 6.64199 96.1875 6.62345 96.1689 6.60491C96.1504 6.58637 96.1319 6.56783 96.1134 6.54928C96.0949 6.53074 96.0764 6.5122 96.0579 6.49366C96.0394 6.47512 96.0209 6.45658 96.0024 6.43804C95.9839 6.4195 95.9654 6.40096 95.9468 6.38242C95.932 6.36387 95.9098 6.34533 95.8913 6.32679C95.8728 6.30825 95.8543 6.28971 95.8358 6.27117C95.8173 6.25263 95.7988 6.23408 95.7803 6.21554C95.7618 6.197 95.7432 6.17846 95.7247 6.15992C95.7062 6.14138 95.6877 6.12284 95.6692 6.1043C95.6544 6.08576 95.6359 6.07092 95.6211 6.05609C95.6803 6.11913 95.7321 6.18588 95.7655 6.25633L109.902 36.7047Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M95.3135 22.7499L94.2871 20.5215L92.0443 25.4646L94.0811 25.4643L95.3135 22.7499Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M132.797 38.4257V33.4937C132.797 33.2527 132.69 33.0302 132.52 32.8707C132.501 32.8522 132.483 32.8336 132.464 32.8151C132.446 32.7965 132.427 32.778 132.409 32.7595C132.39 32.7409 132.372 32.7224 132.353 32.7038C132.335 32.6853 132.316 32.6668 132.298 32.6482C132.279 32.6297 132.261 32.6111 132.242 32.5926C132.223 32.574 132.205 32.5555 132.186 32.537C132.168 32.5184 132.149 32.4999 132.131 32.4813C132.112 32.4628 132.094 32.4443 132.075 32.4257C132.057 32.4072 132.038 32.3886 132.02 32.3701C132.001 32.3516 131.983 32.333 131.964 32.3145C131.946 32.2959 131.927 32.2774 131.909 32.2588C131.89 32.2403 131.872 32.2218 131.853 32.2032C131.835 32.1847 131.816 32.1661 131.798 32.1476C131.779 32.1291 131.761 32.1105 131.742 32.092C131.724 32.0734 131.705 32.0549 131.687 32.0364C131.668 32.0178 131.65 31.9993 131.631 31.9807C131.613 31.9622 131.594 31.9437 131.576 31.9251C131.557 31.9066 131.539 31.888 131.52 31.8695C131.502 31.8509 131.483 31.8324 131.465 31.8139C131.446 31.7953 131.428 31.7768 131.409 31.7582C131.391 31.7397 131.372 31.7212 131.354 31.7026C131.335 31.6841 131.317 31.6655 131.298 31.647C131.28 31.6284 131.261 31.6099 131.243 31.5914C131.224 31.5728 131.206 31.5543 131.187 31.5357C131.172 31.5172 131.154 31.5024 131.139 31.4875C131.291 31.647 131.387 31.8546 131.387 32.0809V37.0128C131.387 37.4652 131.024 37.8731 130.528 37.8731H113.545C113.297 37.8731 113.089 37.7693 112.938 37.6136C112.952 37.6321 112.971 37.6469 112.986 37.6618C113.004 37.6803 113.023 37.6988 113.041 37.7174C113.06 37.7359 113.078 37.7545 113.097 37.773C113.115 37.7915 113.134 37.8101 113.152 37.8286C113.171 37.8472 113.189 37.8657 113.208 37.8843C113.226 37.9028 113.245 37.9213 113.263 37.9399C113.282 37.9584 113.3 37.977 113.319 37.9955C113.337 38.014 113.356 38.0326 113.374 38.0511C113.393 38.0697 113.411 38.0882 113.43 38.1068C113.448 38.1253 113.467 38.1438 113.485 38.1624C113.504 38.1809 113.522 38.1994 113.541 38.218C113.559 38.2365 113.578 38.2551 113.596 38.2736C113.615 38.2922 113.633 38.3107 113.652 38.3292C113.67 38.3478 113.689 38.3663 113.707 38.3849C113.726 38.4034 113.744 38.4219 113.763 38.4405C113.781 38.459 113.8 38.4776 113.819 38.4961C113.837 38.5147 113.856 38.5332 113.874 38.5517C113.893 38.5703 113.911 38.5888 113.93 38.6074C113.948 38.6259 113.967 38.6444 113.985 38.663C114.004 38.6815 114.022 38.7001 114.041 38.7186C114.059 38.7371 114.078 38.7557 114.096 38.7742C114.115 38.7928 114.133 38.8113 114.152 38.8299C114.17 38.8484 114.189 38.8669 114.207 38.8855C114.226 38.904 114.244 38.9226 114.263 38.9411C114.281 38.9596 114.3 38.9782 114.318 38.9967C114.474 39.171 114.692 39.286 114.955 39.286H131.938C132.434 39.286 132.797 38.8781 132.797 38.4257Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M121.193 8.47343C121.193 8.23239 121.074 8.0099 120.9 7.85044C120.882 7.8319 120.863 7.81336 120.845 7.79482C120.826 7.77628 120.808 7.75773 120.789 7.73919C120.771 7.72065 120.752 7.70211 120.734 7.68357C120.715 7.66503 120.697 7.64649 120.678 7.62795C120.66 7.60941 120.641 7.59087 120.623 7.57232C120.604 7.55378 120.586 7.53524 120.567 7.5167C120.548 7.49816 120.53 7.47962 120.511 7.46107C120.493 7.44253 120.474 7.42399 120.456 7.40545C120.437 7.38691 120.419 7.36837 120.4 7.34983C120.382 7.33129 120.363 7.31275 120.345 7.29421C120.326 7.27566 120.308 7.25712 120.289 7.23858C120.271 7.22004 120.252 7.2015 120.234 7.18296C120.215 7.16442 120.197 7.14587 120.178 7.12733C120.16 7.10879 120.141 7.09025 120.123 7.07171C120.104 7.05317 120.086 7.03463 120.067 7.01609C120.049 6.99755 120.03 6.979 120.012 6.96046C119.993 6.94192 119.975 6.92338 119.956 6.90484C119.938 6.8863 119.919 6.86776 119.901 6.84921C119.882 6.83067 119.864 6.81213 119.845 6.79359C119.827 6.77505 119.808 6.75651 119.79 6.73797C119.771 6.71943 119.753 6.70089 119.734 6.68234C119.716 6.6638 119.697 6.64526 119.679 6.62672C119.66 6.60818 119.642 6.58964 119.623 6.5711C119.605 6.55255 119.586 6.53402 119.568 6.51547C119.557 6.50435 119.549 6.49693 119.538 6.48581C119.682 6.64155 119.779 6.8418 119.779 7.05688V29.6586H121.178V8.45859L121.193 8.47343Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M164.945 20.7225C164.927 20.704 164.908 20.6855 164.89 20.6669C164.871 20.6484 164.853 20.6298 164.834 20.6113C164.816 20.5928 164.797 20.5742 164.779 20.5557C164.76 20.5371 164.742 20.5186 164.723 20.5C164.705 20.4815 164.686 20.463 164.668 20.4444C164.649 20.4259 164.631 20.4073 164.612 20.3888C164.594 20.3703 164.575 20.3517 164.557 20.3332C164.538 20.3146 164.52 20.2961 164.501 20.2775C164.483 20.259 164.464 20.2405 164.446 20.2219C164.427 20.2034 164.409 20.1848 164.39 20.1663C164.372 20.1478 164.353 20.1292 164.335 20.1107C164.316 20.0921 164.298 20.0736 164.279 20.0551C164.261 20.0365 164.242 20.018 164.224 19.9994C164.205 19.9809 164.187 19.9624 164.168 19.9438C164.15 19.9253 164.131 19.9067 164.113 19.8882C164.094 19.8696 164.076 19.8511 164.057 19.8326C164.039 19.814 164.02 19.7955 164.002 19.7769C163.983 19.7584 163.964 19.7399 163.946 19.7213C163.927 19.7028 163.909 19.6842 163.89 19.6657C163.872 19.6472 163.853 19.6286 163.835 19.6101C163.816 19.5915 163.798 19.573 163.779 19.5544C163.761 19.5359 163.742 19.5174 163.724 19.4988C163.705 19.4803 163.687 19.4617 163.668 19.4432C163.654 19.4247 163.635 19.4098 163.62 19.395C163.779 19.5544 163.883 19.7621 163.883 19.9883V24.9203C163.883 25.3727 163.476 25.7806 163.024 25.7806H152.726V36.7755C152.726 37.2279 152.319 37.6358 151.867 37.6358H146.537C146.289 37.6358 146.081 37.532 145.93 37.3726C145.944 37.3911 145.963 37.4059 145.978 37.4208C145.996 37.4393 146.015 37.4578 146.033 37.4764C146.052 37.4949 146.07 37.5135 146.089 37.532C146.107 37.5506 146.126 37.5691 146.144 37.5876C146.163 37.6062 146.181 37.6247 146.2 37.6432C146.218 37.6618 146.237 37.6803 146.255 37.6989C146.274 37.7174 146.292 37.736 146.311 37.7545C146.329 37.773 146.348 37.7916 146.366 37.8101C146.385 37.8287 146.404 37.8472 146.422 37.8658C146.441 37.8843 146.459 37.9028 146.478 37.9214C146.496 37.9399 146.515 37.9584 146.533 37.977C146.552 37.9955 146.57 38.0141 146.589 38.0326C146.607 38.0512 146.626 38.0697 146.644 38.0882C146.663 38.1068 146.681 38.1253 146.7 38.1439C146.718 38.1624 146.737 38.181 146.755 38.1995C146.774 38.218 146.792 38.2366 146.811 38.2551C146.829 38.2737 146.848 38.2922 146.866 38.3107C146.885 38.3293 146.903 38.3478 146.922 38.3664C146.94 38.3849 146.959 38.4034 146.977 38.422C146.996 38.4405 147.014 38.4591 147.033 38.4776C147.051 38.4962 147.07 38.5147 147.088 38.5332C147.107 38.5518 147.125 38.5703 147.144 38.5889C147.162 38.6074 147.181 38.6259 147.199 38.6445C147.218 38.663 147.236 38.6816 147.255 38.7001C147.273 38.7186 147.292 38.7372 147.31 38.7557C147.466 38.93 147.684 39.045 147.947 39.045H153.278C153.729 39.045 154.136 38.6371 154.136 38.1847V27.1897H164.435C164.886 27.1897 165.293 26.7818 165.293 26.3294V21.3974C165.293 21.1564 165.175 20.9376 165.001 20.7745C164.982 20.7559 164.964 20.7374 164.945 20.7188V20.7225Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M167.171 7.55517C167.152 7.53663 167.133 7.51809 167.115 7.49955C167.096 7.481 167.078 7.46246 167.059 7.44392C167.041 7.42538 167.022 7.40684 167.004 7.3883C166.985 7.36976 166.967 7.35121 166.948 7.33267C166.93 7.31413 166.911 7.29559 166.893 7.27705C166.874 7.25851 166.856 7.23997 166.837 7.22143C166.819 7.20289 166.8 7.18434 166.782 7.1658C166.763 7.14726 166.745 7.12872 166.726 7.11018C166.708 7.09164 166.689 7.0731 166.671 7.05455C166.652 7.03601 166.634 7.01747 166.615 6.99893C166.597 6.98039 166.578 6.96185 166.56 6.94331C166.541 6.92477 166.523 6.90623 166.504 6.88769C166.486 6.86915 166.467 6.85061 166.449 6.83207C166.43 6.81352 166.412 6.79498 166.393 6.77644C166.375 6.75789 166.356 6.73936 166.338 6.72082C166.319 6.70228 166.301 6.68374 166.282 6.6652C166.264 6.64665 166.245 6.62811 166.227 6.60957C166.208 6.59102 166.19 6.57249 166.171 6.55395C166.153 6.53541 166.134 6.51686 166.116 6.49832C166.097 6.47978 166.078 6.46124 166.06 6.4427C166.041 6.42415 166.023 6.40562 166.004 6.38708C165.986 6.36854 165.967 6.34999 165.949 6.33145C165.93 6.31291 165.912 6.29437 165.893 6.27583C165.879 6.25728 165.86 6.24245 165.845 6.22762C165.997 6.38707 166.093 6.59474 166.093 6.82094V11.7529C166.093 12.2053 165.731 12.6132 165.234 12.6132H152.723V17.5674H154.122V14.0149H166.634C167.13 14.0149 167.493 13.607 167.493 13.1546V8.22266C167.493 7.98162 167.385 7.75912 167.215 7.59967C167.196 7.58113 167.178 7.56259 167.159 7.54405L167.171 7.55517Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M178.704 13.8437L185.389 13.8444C185.53 13.8444 185.671 13.8592 185.808 13.8815C185.73 13.4773 185.578 13.099 185.363 12.7616C184.938 12.565 184.479 12.4464 183.99 12.4464H177.305V17.9457H178.704V13.8481L178.704 13.8437Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M177.305 25.2464V36.7827C177.305 37.2351 176.897 37.643 176.446 37.643H171.071C170.823 37.643 170.616 37.5392 170.464 37.3798C170.479 37.3983 170.497 37.4131 170.512 37.428C170.531 37.4465 170.549 37.4651 170.568 37.4836C170.586 37.5021 170.605 37.5207 170.623 37.5392C170.642 37.5578 170.66 37.5763 170.679 37.5948C170.697 37.6134 170.716 37.6319 170.734 37.6505C170.753 37.669 170.771 37.6876 170.79 37.7061C170.808 37.7246 170.827 37.7432 170.845 37.7617C170.864 37.7803 170.882 37.7988 170.901 37.8173C170.919 37.8359 170.938 37.8544 170.956 37.873C170.975 37.8915 170.993 37.91 171.012 37.9286C171.03 37.9471 171.049 37.9657 171.067 37.9842C171.086 38.0027 171.104 38.0213 171.123 38.0398C171.141 38.0584 171.16 38.0769 171.178 38.0955C171.197 38.114 171.215 38.1325 171.234 38.1511C171.252 38.1696 171.271 38.1882 171.289 38.2067C171.308 38.2252 171.326 38.2438 171.345 38.2623C171.363 38.2809 171.382 38.2994 171.4 38.3179C171.419 38.3365 171.437 38.355 171.456 38.3736C171.474 38.3921 171.493 38.4107 171.511 38.4292C171.53 38.4477 171.548 38.4663 171.567 38.4848C171.585 38.5034 171.604 38.5219 171.623 38.5405C171.641 38.559 171.66 38.5775 171.678 38.5961C171.697 38.6146 171.715 38.6331 171.734 38.6517C171.752 38.6702 171.771 38.6888 171.789 38.7073C171.808 38.7259 171.826 38.7444 171.845 38.7629C172 38.9372 172.218 39.0522 172.481 39.0522H177.856C178.308 39.0522 178.715 38.6443 178.715 38.1919V26.6555H180.266L179.563 25.2538H177.316L177.305 25.2464Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M195.82 17.1481C195.82 14.4448 194.703 11.9899 192.904 10.2174C192.885 10.1988 192.867 10.1803 192.848 10.1617C192.829 10.1432 192.811 10.1247 192.792 10.1061C192.774 10.0876 192.755 10.069 192.737 10.0505C192.718 10.032 192.7 10.0134 192.681 9.99488C192.663 9.97634 192.644 9.95779 192.626 9.93925C192.607 9.92071 192.589 9.90217 192.57 9.88363C192.552 9.86509 192.533 9.84655 192.515 9.82801C192.496 9.80947 192.478 9.79093 192.459 9.77238C192.441 9.75384 192.422 9.7353 192.404 9.71676C192.385 9.69822 192.367 9.67968 192.348 9.66114C192.33 9.6426 192.311 9.62406 192.293 9.60551C192.274 9.58697 192.256 9.56843 192.237 9.54989C192.219 9.53135 192.2 9.51281 192.182 9.49427C192.163 9.47573 192.145 9.45719 192.126 9.43864C192.108 9.4201 192.089 9.40156 192.071 9.38301C192.052 9.36447 192.034 9.34594 192.015 9.3274C191.997 9.30886 191.978 9.29032 191.96 9.27177C191.941 9.25323 191.923 9.23469 191.904 9.21614C191.886 9.1976 191.867 9.17907 191.849 9.16053C191.83 9.14199 191.812 9.12344 191.793 9.1049C191.774 9.08636 191.756 9.06782 191.737 9.04927C191.719 9.03073 191.7 9.0122 191.682 8.99366C191.663 8.97511 191.645 8.95657 191.626 8.93803C191.608 8.91949 191.589 8.90095 191.571 8.8824C191.556 8.86757 191.538 8.84903 191.523 8.8342C193.303 10.603 194.41 13.0431 194.41 15.7352C194.41 19.8996 191.656 23.2481 187.725 24.8279L193.914 36.3197C194.229 36.9093 193.914 37.6324 193.144 37.6324H187.136C186.881 37.6324 186.677 37.5175 186.544 37.3877C186.555 37.3988 186.566 37.4099 186.577 37.4211C186.596 37.4396 186.614 37.4581 186.633 37.4767C186.648 37.4952 186.666 37.5138 186.688 37.5323C186.707 37.5508 186.725 37.5694 186.744 37.5879C186.759 37.6065 186.777 37.625 186.799 37.6435C186.814 37.6621 186.836 37.6806 186.855 37.6992C186.873 37.7177 186.892 37.7363 186.91 37.7548C186.925 37.7733 186.944 37.7919 186.966 37.8104C186.984 37.829 187.003 37.8475 187.021 37.866C187.036 37.8846 187.055 37.9031 187.077 37.9217C187.092 37.9402 187.114 37.9587 187.133 37.9773C187.151 37.9958 187.17 38.0144 187.188 38.0329C187.203 38.0514 187.225 38.07 187.244 38.0885C187.258 38.1071 187.277 38.1256 187.299 38.1442C187.314 38.1627 187.332 38.1812 187.355 38.1998C187.373 38.2183 187.392 38.2369 187.41 38.2554C187.429 38.2739 187.447 38.2925 187.466 38.311C187.48 38.3296 187.503 38.3481 187.521 38.3667C187.54 38.3852 187.558 38.4037 187.577 38.4223C187.592 38.4408 187.61 38.4594 187.632 38.4779C187.651 38.4964 187.669 38.515 187.688 38.5335C187.706 38.5521 187.725 38.5706 187.743 38.5891C187.758 38.6077 187.78 38.6262 187.799 38.6448C187.817 38.6633 187.836 38.6819 187.854 38.7004C187.869 38.7189 187.888 38.7375 187.91 38.756C188.039 38.9043 188.262 39.0453 188.55 39.0453H194.558C195.328 39.0453 195.643 38.3221 195.328 37.7325L189.139 26.2407C193.066 24.6573 195.824 21.3087 195.824 17.1481H195.82Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M207.763 7.55907C207.744 7.54053 207.726 7.52199 207.707 7.50344C207.689 7.4849 207.67 7.46636 207.652 7.44782C207.633 7.42928 207.615 7.41074 207.596 7.3922C207.578 7.37366 207.559 7.35512 207.541 7.33657C207.522 7.31803 207.504 7.29949 207.485 7.28095C207.467 7.26241 207.448 7.24387 207.43 7.22533C207.411 7.20679 207.393 7.18825 207.374 7.1697C207.356 7.15116 207.337 7.13262 207.319 7.11408C207.3 7.09554 207.282 7.077 207.263 7.05846C207.245 7.03992 207.226 7.02137 207.208 7.00283C207.189 6.98429 207.171 6.96575 207.152 6.94721C207.134 6.92867 207.115 6.91013 207.097 6.89159C207.078 6.87305 207.06 6.8545 207.041 6.83596C207.023 6.81742 207.004 6.79888 206.986 6.78034C206.967 6.7618 206.949 6.74325 206.93 6.72471C206.911 6.70617 206.893 6.68763 206.874 6.66909C206.856 6.65055 206.837 6.63201 206.819 6.61347C206.8 6.59493 206.782 6.57638 206.763 6.55784C206.745 6.5393 206.726 6.52076 206.708 6.50222C206.689 6.48368 206.671 6.46514 206.652 6.44659C206.634 6.42805 206.615 6.40952 206.597 6.39098C206.578 6.37243 206.56 6.3539 206.541 6.33535C206.523 6.31681 206.504 6.29827 206.486 6.27972C206.471 6.26118 206.452 6.24635 206.438 6.23151C206.593 6.39097 206.7 6.59863 206.7 6.82484V36.7763C206.7 37.2287 206.293 37.6366 205.842 37.6366H200.422C200.197 37.6366 199.989 37.5291 199.83 37.3733C199.845 37.3919 199.863 37.4067 199.878 37.4216C199.897 37.4401 199.915 37.4586 199.934 37.4772C199.952 37.4957 199.971 37.5143 199.989 37.5328C200.008 37.5513 200.026 37.5699 200.045 37.5884C200.063 37.607 200.082 37.6255 200.1 37.6441C200.119 37.6626 200.137 37.6811 200.156 37.6997C200.174 37.7182 200.193 37.7368 200.211 37.7553C200.23 37.7738 200.248 37.7924 200.267 37.8109C200.285 37.8295 200.304 37.848 200.322 37.8665C200.341 37.8851 200.359 37.9036 200.378 37.9222C200.396 37.9407 200.415 37.9593 200.433 37.9778C200.452 37.9963 200.47 38.0149 200.489 38.0334C200.507 38.0519 200.526 38.0705 200.545 38.089C200.563 38.1076 200.582 38.1261 200.6 38.1447C200.619 38.1632 200.637 38.1817 200.656 38.2003C200.674 38.2188 200.693 38.2374 200.711 38.2559C200.73 38.2744 200.748 38.293 200.767 38.3115C200.785 38.3301 200.804 38.3486 200.822 38.3672C200.841 38.3857 200.859 38.4042 200.878 38.4228C200.896 38.4413 200.915 38.4599 200.933 38.4784C200.952 38.4969 200.97 38.5155 200.989 38.534C201.007 38.5526 201.026 38.5711 201.044 38.5896C201.063 38.6082 201.081 38.6267 201.1 38.6453C201.118 38.6638 201.137 38.6824 201.155 38.7009C201.174 38.7194 201.192 38.738 201.211 38.7565C201.37 38.9308 201.592 39.0495 201.833 39.0495H207.252C207.704 39.0495 208.111 38.6416 208.111 38.1892V8.23767C208.111 7.99664 207.992 7.77415 207.818 7.61469C207.8 7.59615 207.781 7.57761 207.763 7.55907Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M235.055 7.55517C235.037 7.53663 235.018 7.51809 235 7.49955C234.981 7.481 234.963 7.46246 234.944 7.44392C234.926 7.42538 234.907 7.40684 234.889 7.3883C234.87 7.36976 234.852 7.35121 234.833 7.33267C234.815 7.31413 234.796 7.29559 234.778 7.27705C234.759 7.25851 234.741 7.23997 234.722 7.22143C234.704 7.20289 234.685 7.18434 234.667 7.1658C234.648 7.14726 234.63 7.12872 234.611 7.11018C234.593 7.09164 234.574 7.0731 234.556 7.05455C234.537 7.03601 234.519 7.01747 234.5 6.99893C234.481 6.98039 234.463 6.96185 234.444 6.94331C234.426 6.92477 234.407 6.90623 234.389 6.88769C234.37 6.86915 234.352 6.85061 234.333 6.83207C234.315 6.81352 234.296 6.79498 234.278 6.77644C234.259 6.75789 234.241 6.73936 234.222 6.72082C234.204 6.70228 234.185 6.68374 234.167 6.6652C234.148 6.64665 234.13 6.62811 234.111 6.60957C234.093 6.59102 234.074 6.57249 234.056 6.55395C234.037 6.53541 234.019 6.51686 234 6.49832C233.982 6.47978 233.963 6.46124 233.945 6.4427C233.926 6.42415 233.908 6.40562 233.889 6.38708C233.871 6.36854 233.852 6.34999 233.834 6.33145C233.815 6.31291 233.797 6.29437 233.778 6.27583C233.763 6.25728 233.745 6.24245 233.73 6.22762C233.882 6.38707 233.978 6.59474 233.978 6.82094V11.7529C233.978 12.2053 233.615 12.6132 233.119 12.6132H220.607V16.6626H222.007V14.0149H234.519C235.015 14.0149 235.377 13.607 235.377 13.1546V8.22266C235.377 7.98162 235.27 7.75912 235.1 7.59967C235.081 7.58113 235.063 7.56259 235.044 7.54405L235.055 7.55517Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M235.056 32.5783C235.037 32.5598 235.019 32.5412 235 32.5227C234.982 32.5042 234.963 32.4856 234.945 32.4671C234.926 32.4485 234.908 32.43 234.889 32.4115C234.871 32.3929 234.852 32.3744 234.834 32.3558C234.815 32.3373 234.797 32.3188 234.778 32.3002C234.76 32.2817 234.741 32.2631 234.723 32.2446C234.704 32.226 234.686 32.2075 234.667 32.189C234.649 32.1704 234.63 32.1519 234.612 32.1333C234.593 32.1148 234.575 32.0963 234.556 32.0777C234.538 32.0592 234.519 32.0406 234.501 32.0221C234.482 32.0035 234.464 31.985 234.445 31.9665C234.427 31.9479 234.408 31.9294 234.39 31.9108C234.371 31.8923 234.353 31.8738 234.334 31.8552C234.316 31.8367 234.297 31.8181 234.279 31.7996C234.26 31.781 234.242 31.7625 234.223 31.744C234.205 31.7254 234.186 31.7069 234.168 31.6883C234.149 31.6698 234.131 31.6513 234.112 31.6327C234.093 31.6142 234.075 31.5956 234.056 31.5771C234.038 31.5586 234.019 31.54 234.001 31.5215C233.982 31.5029 233.964 31.4844 233.945 31.4659C233.927 31.4473 233.908 31.4288 233.89 31.4102C233.871 31.3917 233.853 31.3731 233.834 31.3546C233.816 31.3361 233.797 31.3175 233.779 31.299C233.764 31.2804 233.746 31.2656 233.731 31.2508C233.882 31.4102 233.979 31.6179 233.979 31.8441V36.7761C233.979 37.2285 233.616 37.6364 233.12 37.6364H214.423C214.175 37.6364 213.967 37.5325 213.815 37.3731C213.83 37.3916 213.849 37.4065 213.864 37.4213C213.882 37.4398 213.901 37.4584 213.919 37.4769C213.938 37.4955 213.956 37.514 213.975 37.5325C213.993 37.5511 214.012 37.5696 214.03 37.5882C214.049 37.6067 214.067 37.6253 214.086 37.6438C214.104 37.6623 214.123 37.6809 214.141 37.6994C214.16 37.718 214.178 37.7365 214.197 37.755C214.215 37.7736 214.234 37.7921 214.252 37.8107C214.271 37.8292 214.289 37.8477 214.308 37.8663C214.326 37.8848 214.345 37.9034 214.363 37.9219C214.382 37.9404 214.4 37.959 214.419 37.9775C214.437 37.9961 214.456 38.0146 214.474 38.0331C214.493 38.0517 214.511 38.0702 214.53 38.0888C214.548 38.1073 214.567 38.1259 214.585 38.1444C214.604 38.163 214.622 38.1815 214.641 38.2C214.659 38.2186 214.678 38.2371 214.696 38.2556C214.715 38.2742 214.733 38.2927 214.752 38.3113C214.77 38.3298 214.789 38.3484 214.807 38.3669C214.826 38.3854 214.844 38.404 214.863 38.4225C214.882 38.4411 214.9 38.4596 214.919 38.4781C214.937 38.4967 214.956 38.5152 214.974 38.5338C214.993 38.5523 215.011 38.5708 215.03 38.5894C215.048 38.6079 215.067 38.6265 215.085 38.645C215.104 38.6636 215.122 38.6821 215.141 38.7006C215.159 38.7192 215.178 38.7377 215.196 38.7563C215.352 38.9305 215.57 39.0455 215.833 39.0455H234.53C235.026 39.0455 235.389 38.6376 235.389 38.1852V33.2532C235.389 33.0122 235.282 32.7897 235.111 32.6302C235.093 32.6117 235.074 32.5932 235.056 32.5746V32.5783Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M222.018 26.2892H232.316C232.768 26.2892 233.175 25.9257 233.175 25.4288V20.4969C233.175 20.2558 233.056 20.0371 232.882 19.8739C232.864 19.8554 232.845 19.8368 232.827 19.8183C232.808 19.7997 232.79 19.7812 232.771 19.7626C232.753 19.7441 232.734 19.7256 232.716 19.707C232.697 19.6885 232.679 19.6699 232.66 19.6514C232.642 19.6329 232.623 19.6143 232.605 19.5958C232.586 19.5772 232.568 19.5587 232.549 19.5401C232.531 19.5216 232.512 19.5031 232.494 19.4845C232.475 19.466 232.457 19.4474 232.438 19.4289C232.42 19.4104 232.401 19.3918 232.383 19.3733C232.364 19.3547 232.346 19.3362 232.327 19.3177C232.309 19.2991 232.29 19.2806 232.272 19.262C232.253 19.2435 232.235 19.225 232.216 19.2064C232.198 19.1879 232.179 19.1693 232.161 19.1508C232.142 19.1322 232.123 19.1137 232.105 19.0952C232.086 19.0766 232.068 19.0581 232.049 19.0395C232.031 19.021 232.012 19.0025 231.994 18.9839C231.975 18.9654 231.957 18.9468 231.938 18.9283C231.92 18.9098 231.901 18.8912 231.883 18.8727C231.864 18.8541 231.846 18.8356 231.827 18.817C231.809 18.7985 231.79 18.78 231.772 18.7614C231.753 18.7429 231.735 18.7243 231.716 18.7058C231.698 18.6873 231.679 18.6687 231.661 18.6502C231.642 18.6316 231.624 18.6131 231.605 18.5946C231.587 18.576 231.568 18.5575 231.55 18.5389C231.535 18.5204 231.516 18.5056 231.502 18.4907C231.657 18.6502 231.764 18.8578 231.764 19.084V24.016C231.764 24.5129 231.357 24.8763 230.906 24.8763H220.607V29.4226H222.007V26.278L222.018 26.2892Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M246.231 36.7876C246.231 37.24 245.868 37.6479 245.372 37.6479H239.998C239.772 37.6479 239.564 37.5403 239.405 37.3846C239.42 37.4031 239.439 37.418 239.453 37.4328C239.472 37.4513 239.49 37.4699 239.509 37.4884C239.527 37.507 239.546 37.5255 239.564 37.544C239.583 37.5626 239.601 37.5811 239.62 37.5997C239.638 37.6182 239.657 37.6367 239.675 37.6553C239.694 37.6738 239.713 37.6924 239.731 37.7109C239.75 37.7294 239.768 37.748 239.787 37.7665C239.805 37.7851 239.824 37.8036 239.842 37.8222C239.861 37.8407 239.879 37.8592 239.898 37.8778C239.916 37.8963 239.935 37.9149 239.953 37.9334C239.972 37.9519 239.99 37.9705 240.009 37.989C240.027 38.0076 240.046 38.0261 240.064 38.0446C240.083 38.0632 240.101 38.0817 240.12 38.1003C240.138 38.1188 240.157 38.1374 240.175 38.1559C240.194 38.1744 240.212 38.193 240.231 38.2115C240.249 38.2301 240.268 38.2486 240.286 38.2671C240.305 38.2857 240.323 38.3042 240.342 38.3228C240.36 38.3413 240.379 38.3599 240.397 38.3784C240.416 38.3969 240.434 38.4155 240.453 38.434C240.471 38.4526 240.49 38.4711 240.508 38.4896C240.527 38.5082 240.545 38.5267 240.564 38.5453C240.582 38.5638 240.601 38.5823 240.619 38.6009C240.638 38.6194 240.656 38.638 240.675 38.6565C240.693 38.6751 240.712 38.6936 240.73 38.7121C240.749 38.7307 240.768 38.7492 240.786 38.7678C240.945 38.942 241.167 39.0607 241.408 39.0607H246.783C247.279 39.0607 247.642 38.6528 247.642 38.2004V21.5096L246.242 20.1005V36.7987L246.231 36.7876Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M267.334 7.55907C267.315 7.54053 267.297 7.52199 267.278 7.50344C267.26 7.4849 267.241 7.46636 267.223 7.44782C267.204 7.42928 267.186 7.41074 267.167 7.3922C267.149 7.37366 267.13 7.35512 267.112 7.33657C267.093 7.31803 267.075 7.29949 267.056 7.28095C267.038 7.26241 267.019 7.24387 267.001 7.22533C266.982 7.20679 266.964 7.18825 266.945 7.1697C266.927 7.15116 266.908 7.13262 266.889 7.11408C266.871 7.09554 266.852 7.077 266.834 7.05846C266.815 7.03992 266.797 7.02137 266.778 7.00283C266.76 6.98429 266.741 6.96575 266.723 6.94721C266.704 6.92867 266.686 6.91013 266.667 6.89159C266.649 6.87305 266.63 6.8545 266.612 6.83596C266.593 6.81742 266.575 6.79888 266.556 6.78034C266.538 6.7618 266.519 6.74325 266.501 6.72471C266.482 6.70617 266.464 6.68763 266.445 6.66909C266.427 6.65055 266.408 6.63201 266.39 6.61347C266.371 6.59493 266.353 6.57638 266.334 6.55784C266.316 6.5393 266.297 6.52076 266.279 6.50222C266.26 6.48368 266.242 6.46514 266.223 6.44659C266.205 6.42805 266.186 6.40952 266.168 6.39098C266.149 6.37243 266.131 6.3539 266.112 6.33535C266.094 6.31681 266.075 6.29827 266.057 6.27972C266.042 6.26118 266.023 6.24635 266.009 6.23151C266.164 6.39097 266.271 6.59863 266.271 6.82484V37.2732C266.271 37.7256 265.864 38.089 265.413 38.089H264.691C264.554 38.089 264.195 37.9555 264.103 37.8628L265.513 39.2757C265.601 39.3647 265.964 39.5019 266.101 39.5019H266.823C267.274 39.5019 267.682 39.1385 267.682 38.6861V8.23397C267.682 7.99293 267.563 7.77044 267.389 7.61098C267.371 7.59244 267.352 7.5739 267.334 7.55536V7.55907Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M297.5 11.9347C297.5 11.9347 297.463 11.8976 297.445 11.879C297.426 11.8605 297.408 11.8419 297.389 11.8234C297.371 11.8049 297.352 11.7863 297.334 11.7678C297.315 11.7492 297.297 11.7307 297.278 11.7122C297.26 11.6936 297.241 11.6751 297.223 11.6565C297.204 11.638 297.186 11.6195 297.167 11.6009C297.149 11.5824 297.13 11.5638 297.111 11.5453C297.093 11.5267 297.074 11.5082 297.056 11.4897C297.037 11.4711 297.019 11.4526 297 11.434C296.982 11.4155 296.963 11.397 296.945 11.3784C296.926 11.3599 296.908 11.3413 296.889 11.3228C296.871 11.3043 296.852 11.2857 296.834 11.2672C296.815 11.2486 296.797 11.2301 296.778 11.2115C296.76 11.193 296.741 11.1745 296.723 11.1559C296.704 11.1374 296.686 11.1188 296.667 11.1003C296.649 11.0818 296.63 11.0632 296.612 11.0447C296.593 11.0261 296.575 11.0076 296.556 10.9891C296.538 10.9705 296.519 10.952 296.501 10.9334C296.482 10.9149 296.464 10.8963 296.445 10.8778C296.434 10.8667 296.423 10.8556 296.412 10.8444C296.423 10.8593 296.43 10.8704 296.441 10.8852C299.155 13.722 300.832 17.5526 300.832 21.7541C300.832 30.5315 293.695 37.6365 284.977 37.6365H273.957C273.735 37.6365 273.539 37.5327 273.395 37.3806C273.409 37.3992 273.428 37.414 273.443 37.4288C273.461 37.4474 273.48 37.4659 273.498 37.4845C273.517 37.503 273.535 37.5215 273.554 37.5401C273.572 37.5586 273.591 37.5772 273.609 37.5957C273.628 37.6142 273.646 37.6328 273.665 37.6513C273.683 37.6699 273.702 37.6884 273.72 37.707C273.739 37.7255 273.757 37.744 273.776 37.7626C273.794 37.7811 273.813 37.7997 273.831 37.8182C273.85 37.8367 273.868 37.8553 273.887 37.8738C273.905 37.8924 273.924 37.9109 273.942 37.9294C273.961 37.948 273.979 37.9665 273.998 37.9851C274.016 38.0036 274.035 38.0221 274.053 38.0407C274.072 38.0592 274.09 38.0778 274.109 38.0963C274.127 38.1148 274.146 38.1334 274.164 38.1519C274.183 38.1705 274.202 38.189 274.22 38.2076C274.239 38.2261 274.257 38.2446 274.276 38.2632C274.294 38.2817 274.313 38.3003 274.331 38.3188C274.35 38.3374 274.368 38.3559 274.387 38.3744C274.405 38.393 274.424 38.4115 274.442 38.43C274.461 38.4486 274.479 38.4671 274.498 38.4857C274.516 38.5042 274.535 38.5228 274.553 38.5413C274.572 38.5598 274.59 38.5784 274.609 38.5969C274.627 38.6155 274.646 38.634 274.664 38.6525C274.683 38.6711 274.701 38.6896 274.72 38.7082C274.738 38.7267 274.757 38.7452 274.775 38.7638C274.923 38.9344 275.131 39.053 275.368 39.053H286.388C295.105 39.053 302.242 31.948 302.242 23.1706C302.242 18.8134 300.447 14.8568 297.559 11.994C297.541 11.9754 297.522 11.9569 297.504 11.9384L297.5 11.9347Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M281.594 14.0259L285.929 14.0254C287.543 14.0254 289.013 14.4408 290.271 15.1565C290.027 14.7893 289.76 14.4408 289.464 14.1181C288.083 13.1763 286.403 12.6237 284.526 12.6237H280.191V29.3887H281.591V14.0254L281.594 14.0259Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M22.0974 37.8837H5.11392C4.8659 37.8837 4.65861 37.7798 4.50684 37.6204C4.52164 37.6389 4.54015 37.6537 4.55495 37.6686C4.57346 37.6871 4.59197 37.7057 4.61048 37.7242C4.62899 37.7427 4.6475 37.7613 4.66601 37.7798C4.68452 37.7984 4.70302 37.8169 4.72153 37.8354C4.74004 37.854 4.75855 37.8725 4.77706 37.8911C4.79557 37.9096 4.81408 37.9282 4.83258 37.9467C4.85109 37.9652 4.8696 37.9838 4.88811 38.0023C4.90662 38.0209 4.92513 38.0394 4.94364 38.0579C4.96215 38.0765 4.98065 38.095 4.99916 38.1136C5.01767 38.1321 5.03618 38.1507 5.05469 38.1692C5.0732 38.1877 5.09171 38.2063 5.11021 38.2248C5.12872 38.2434 5.14723 38.2619 5.16574 38.2804C5.18425 38.299 5.20276 38.3175 5.22127 38.3361C5.23977 38.3546 5.25828 38.3731 5.27679 38.3917C5.2953 38.4102 5.31381 38.4288 5.33232 38.4473C5.35083 38.4658 5.36934 38.4844 5.38784 38.5029C5.40635 38.5215 5.42486 38.54 5.44337 38.5586C5.46188 38.5771 5.48039 38.5956 5.4989 38.6142C5.5174 38.6327 5.53591 38.6513 5.55442 38.6698C5.57293 38.6883 5.59144 38.7069 5.60995 38.7254C5.62846 38.744 5.64696 38.7625 5.66547 38.781C5.68398 38.7996 5.70249 38.8181 5.721 38.8367C5.73951 38.8552 5.75802 38.8738 5.77653 38.8923C5.79503 38.9108 5.81354 38.9294 5.83205 38.9479C5.85056 38.9665 5.86907 38.985 5.88758 39.0035C6.04305 39.1778 6.26145 39.2928 6.52428 39.2928H23.5078C24.0038 39.2928 24.3666 38.8849 24.3666 38.4325V33.5005C24.3666 33.2595 24.2592 33.037 24.089 32.8775C24.0705 32.859 24.052 32.8404 24.0334 32.8219C24.0149 32.8034 23.9964 32.7848 23.9779 32.7663C23.9594 32.7477 23.9409 32.7292 23.9224 32.7107C23.9039 32.6921 23.8854 32.6736 23.8669 32.655C23.8484 32.6365 23.8298 32.618 23.8113 32.5994C23.7928 32.5809 23.7743 32.5623 23.7558 32.5438C23.7373 32.5252 23.7188 32.5067 23.7003 32.4882C23.6818 32.4696 23.6633 32.4511 23.6448 32.4325C23.6263 32.414 23.6077 32.3955 23.5892 32.3769C23.5707 32.3584 23.5522 32.3398 23.5337 32.3213C23.5152 32.3027 23.4967 32.2842 23.4782 32.2657C23.4597 32.2471 23.4412 32.2286 23.4227 32.21C23.4042 32.1915 23.3856 32.173 23.3671 32.1544C23.3486 32.1359 23.3301 32.1173 23.3116 32.0988C23.2931 32.0803 23.2746 32.0617 23.2561 32.0432C23.2376 32.0246 23.2191 32.0061 23.2006 31.9876C23.182 31.969 23.1635 31.9505 23.145 31.9319C23.1265 31.9134 23.108 31.8948 23.0895 31.8763C23.071 31.8578 23.0525 31.8392 23.034 31.8207C23.0155 31.8021 22.997 31.7836 22.9785 31.7651C22.9599 31.7465 22.9414 31.728 22.9229 31.7094C22.9044 31.6909 22.8859 31.6723 22.8674 31.6538C22.8489 31.6353 22.8304 31.6167 22.8119 31.5982C22.7934 31.5796 22.7749 31.5611 22.7563 31.5426C22.7415 31.524 22.723 31.5092 22.7082 31.4944C22.86 31.6538 22.9562 31.8615 22.9562 32.0877V37.0196C22.9562 37.472 22.5935 37.8799 22.0974 37.8799V37.8837Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M12.7462 8.47343C12.7462 8.23239 12.6278 8.0099 12.4538 7.85044C12.4353 7.8319 12.4168 7.81336 12.3983 7.79482C12.3798 7.77628 12.3613 7.75773 12.3428 7.73919C12.3243 7.72065 12.3058 7.70211 12.2873 7.68357C12.2688 7.66503 12.2503 7.64649 12.2318 7.62795C12.2132 7.60941 12.1947 7.59087 12.1762 7.57232C12.1577 7.55378 12.1392 7.53524 12.1207 7.5167C12.1022 7.49816 12.0837 7.47962 12.0652 7.46107C12.0467 7.44253 12.0282 7.42399 12.0097 7.40545C11.9912 7.38691 11.9727 7.36837 11.9542 7.34983C11.9357 7.33129 11.9171 7.31275 11.8986 7.29421C11.8801 7.27566 11.8616 7.25712 11.8431 7.23858C11.8246 7.22004 11.8061 7.2015 11.7876 7.18296C11.7691 7.16442 11.7506 7.14587 11.7321 7.12733C11.7136 7.10879 11.6951 7.09025 11.6766 7.07171C11.6581 7.05317 11.6396 7.03463 11.6211 7.01609C11.6026 6.99755 11.584 6.979 11.5655 6.96046C11.547 6.94192 11.5285 6.92338 11.51 6.90484C11.4915 6.8863 11.473 6.86776 11.4545 6.84921C11.436 6.83067 11.4175 6.81213 11.399 6.79359C11.3805 6.77505 11.362 6.75651 11.3435 6.73797C11.325 6.71943 11.3065 6.70089 11.288 6.68234C11.2695 6.6638 11.2509 6.64526 11.2324 6.62672C11.2139 6.60818 11.1954 6.58964 11.1769 6.5711C11.1584 6.55255 11.1399 6.53402 11.1214 6.51547C11.1103 6.50435 11.1029 6.49693 11.0918 6.48581C11.2361 6.64155 11.3324 6.8418 11.3324 7.05688V29.6586H12.7314V8.45859L12.7462 8.47343Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M83.4791 7.52415L73.3623 22.5907V37.0232C73.3623 37.4756 72.9551 37.8835 72.5035 37.8835H67.1286C66.8806 37.8835 66.6733 37.7797 66.5215 37.6203C66.5363 37.6388 66.5548 37.6536 66.5696 37.6685C66.5881 37.687 66.6066 37.7055 66.6251 37.7241C66.6436 37.7426 66.6622 37.7612 66.6807 37.7797C66.6992 37.7982 66.7177 37.8168 66.7362 37.8353C66.7547 37.8539 66.7732 37.8724 66.7917 37.891C66.8102 37.9095 66.8287 37.928 66.8472 37.9466C66.8657 37.9651 66.8843 37.9837 66.9028 38.0022C66.9213 38.0207 66.9398 38.0393 66.9583 38.0578C66.9768 38.0764 66.9953 38.0949 67.0138 38.1134C67.0323 38.132 67.0508 38.1505 67.0693 38.1691C67.0879 38.1876 67.1064 38.2062 67.1249 38.2247C67.1434 38.2432 67.1619 38.2618 67.1804 38.2803C67.1989 38.2989 67.2174 38.3174 67.2359 38.3359C67.2544 38.3545 67.2729 38.373 67.2915 38.3916C67.31 38.4101 67.3285 38.4287 67.347 38.4472C67.3655 38.4657 67.384 38.4843 67.4025 38.5028C67.421 38.5214 67.4395 38.5399 67.458 38.5584C67.4765 38.577 67.495 38.5955 67.5136 38.6141C67.5321 38.6326 67.5506 38.6511 67.5691 38.6697C67.5876 38.6882 67.6061 38.7068 67.6246 38.7253C67.6431 38.7438 67.6616 38.7624 67.6801 38.7809C67.6986 38.7995 67.7171 38.818 67.7356 38.8366C67.7542 38.8551 67.7727 38.8736 67.7912 38.8922C67.8097 38.9107 67.8282 38.9293 67.8467 38.9478C67.8652 38.9663 67.8837 38.9849 67.9022 39.0034C68.054 39.1777 68.2761 39.2927 68.5389 39.2927H73.9138C74.3654 39.2927 74.7726 38.8848 74.7726 38.4324V23.9999L84.8895 8.93328C85.1227 8.55133 85.0486 8.11376 84.771 7.85418C84.7525 7.83564 84.734 7.8171 84.7155 7.79856C84.697 7.78001 84.6784 7.76147 84.6599 7.74293C84.6414 7.72439 84.6229 7.70585 84.6044 7.68731C84.5859 7.66877 84.5674 7.65022 84.5489 7.63168C84.5304 7.61314 84.5119 7.5946 84.4934 7.57606C84.4749 7.55752 84.4564 7.53898 84.4379 7.52044C84.4193 7.5019 84.4008 7.48335 84.3823 7.46481C84.3638 7.44627 84.3453 7.42773 84.3268 7.40919C84.3083 7.39065 84.2898 7.37211 84.2713 7.35356C84.2528 7.33502 84.2343 7.31648 84.2157 7.29794C84.1972 7.2794 84.1787 7.26086 84.1602 7.24232C84.1417 7.22378 84.1232 7.20524 84.1047 7.18669C84.0862 7.16815 84.0677 7.14961 84.0492 7.13107C84.0307 7.11253 84.0121 7.09399 83.9936 7.07545C83.9751 7.0569 83.9566 7.03837 83.9381 7.01982C83.9196 7.00128 83.9011 6.98274 83.8826 6.9642C83.8641 6.94566 83.8456 6.92712 83.8271 6.90858C83.8085 6.89003 83.79 6.87149 83.7715 6.85295C83.753 6.83441 83.7345 6.81587 83.716 6.79733C83.6975 6.77879 83.679 6.76025 83.6605 6.74171C83.642 6.72316 83.6235 6.70462 83.605 6.68608C83.5865 6.66754 83.5679 6.649 83.5494 6.63046C83.5309 6.61192 83.5124 6.59337 83.4939 6.57483C83.4754 6.55629 83.4569 6.53775 83.4384 6.51921C83.4236 6.50067 83.4051 6.48584 83.3866 6.46729C83.642 6.73058 83.7049 7.14961 83.4754 7.52044L83.4791 7.52415Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M3.70703 36.323H20.6906C21.0792 36.323 21.3976 36.0041 21.3976 35.6147V30.6828C21.3976 30.2934 21.0792 29.9745 20.6906 29.9745H9.78897V5.66326C9.78897 5.29244 9.45211 4.95499 9.08194 4.95499H3.70703C3.31835 4.95499 3 5.2739 3 5.66326V35.6147C3 36.0041 3.31835 36.323 3.70703 36.323Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M54.8641 20.6847C54.8641 11.7626 47.6383 4.50188 38.7542 4.50188C34.4306 4.50188 30.3883 6.18172 27.3677 9.2299C24.3508 12.2744 22.6924 16.3423 22.6924 20.6847C22.6924 25.027 24.3545 29.0727 27.3677 32.0912C30.3809 35.1134 34.4269 36.7747 38.7542 36.7747C43.0815 36.7747 47.1386 35.1097 50.1629 32.0912C53.1909 29.069 54.8604 25.0159 54.8604 20.6847H54.8641ZM38.7542 29.8366C33.7161 29.8366 29.6146 25.7316 29.6146 20.681C29.6146 15.6303 33.7161 11.4363 38.7542 11.4363C43.7922 11.4363 47.9382 15.5858 47.9382 20.681C47.9382 25.7761 43.8181 29.8366 38.7542 29.8366Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M65.015 21.1821V35.6146C65.015 36.0039 65.3333 36.3228 65.722 36.3228H71.0969C71.4671 36.3228 71.804 35.9854 71.804 35.6146V21.1339L71.8299 21.0968L81.9467 6.03019C82.091 5.79657 82.1021 5.52216 81.9763 5.29967C81.8541 5.08088 81.6246 4.9548 81.347 4.9548H75.4761C75.1577 4.9548 75.017 5.11055 74.8727 5.29967L68.4724 14.752L62.0684 5.29225C61.8981 5.06605 61.7019 4.95109 61.4724 4.95109H55.6015C55.3239 4.95109 55.0944 5.07717 54.9722 5.29596C54.8463 5.51845 54.8611 5.79657 55.0055 6.0339L65.0113 21.1784L65.015 21.1821Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M107.725 36.3223C107.992 36.3223 108.218 36.2148 108.336 36.0257C108.455 35.8402 108.462 35.5955 108.355 35.3619L94.2177 4.9135C94.103 4.67988 93.829 4.50188 93.5884 4.50188H93.1368C92.8925 4.50188 92.6223 4.67988 92.5038 4.91721L78.3706 35.3619C78.2633 35.5955 78.2707 35.8402 78.3891 36.0257C78.5113 36.2148 78.7334 36.3223 78.9999 36.3223H83.9676C84.9005 36.3223 85.3003 35.6993 85.4557 35.3285L87.1215 31.6166H99.6L101.266 35.2803C101.654 36.0998 101.962 36.3223 102.709 36.3223H107.725ZM89.6979 25.765L93.222 17.9962H93.4626L97.0347 25.765H89.6979Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M129.843 35.6147V30.6828C129.843 30.2934 129.525 29.9745 129.136 29.9745H118.234V5.66326C118.234 5.29244 117.897 4.95499 117.527 4.95499H112.152C111.764 4.95499 111.445 5.2739 111.445 5.66326V35.6147C111.445 36.0041 111.764 36.323 112.152 36.323H129.136C129.525 36.323 129.843 36.0041 129.843 35.6147Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M151.178 11.0629H163.842C164.231 11.0629 164.549 10.7439 164.549 10.3546V5.42262C164.549 5.03325 164.231 4.71434 163.842 4.71434H145.145C144.756 4.71434 144.438 5.03325 144.438 5.42262V35.3741C144.438 35.7635 144.756 36.0824 145.145 36.0824H150.475C150.845 36.0824 151.182 35.7449 151.182 35.3741V24.2271H161.632C162.002 24.2271 162.339 23.8897 162.339 23.5188V18.5869C162.339 18.2161 162.002 17.8786 161.632 17.8786H151.182V11.0591L151.178 11.0629Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M185.745 36.0853H191.753C192.042 36.0853 192.268 35.9703 192.394 35.759C192.523 35.5402 192.523 35.2472 192.386 34.9988L186.119 23.3586L186.275 23.2956C190.339 21.6565 192.864 18.2264 192.864 14.3402C192.864 9.03366 188.514 4.71726 183.169 4.71726H169.665C169.276 4.71726 168.958 5.03617 168.958 5.42553V35.377C168.958 35.7664 169.276 36.0853 169.665 36.0853H175.04C175.41 36.0853 175.747 35.7478 175.747 35.377V23.6886H179.108L179.149 23.7702L185.157 35.759C185.22 35.8851 185.434 36.0816 185.745 36.0816V36.0853ZM182.584 18.2449H175.747V10.8841H182.584C184.527 10.8841 186.167 12.5268 186.167 14.4737C186.167 16.4205 184.494 18.2449 182.584 18.2449Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M204.446 4.71434H199.026C198.636 4.71434 198.319 5.03145 198.319 5.42262V35.3741C198.319 35.7653 198.636 36.0824 199.026 36.0824H204.446C204.836 36.0824 205.153 35.7653 205.153 35.3741V5.42262C205.153 5.03145 204.836 4.71434 204.446 4.71434Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M219.064 11.0629H231.728C232.116 11.0629 232.435 10.7439 232.435 10.3546V5.42262C232.435 5.03325 232.116 4.71434 231.728 4.71434H213.03C212.642 4.71434 212.323 5.03325 212.323 5.42262V35.3741C212.323 35.7635 212.642 36.0824 213.03 36.0824H231.728C232.116 36.0824 232.435 35.7635 232.435 35.3741V30.4421C232.435 30.0528 232.116 29.7339 231.728 29.7339H219.064V23.3223H229.514C229.903 23.3223 230.221 23.0034 230.221 22.614V17.6821C230.221 17.3112 229.884 16.9738 229.514 16.9738H219.064V11.0591V11.0629Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M263.297 36.5388H264.018C264.4 36.5388 264.725 36.2347 264.725 35.875V5.42289C264.725 5.05207 264.389 4.71461 264.018 4.71461H258.599C258.21 4.71461 257.892 5.03352 257.892 5.42289V21.6353H257.637L257.592 21.5945L239.617 4.26221H238.547C238.166 4.26221 237.84 4.56629 237.84 4.92599L237.884 35.3744C237.884 35.7452 238.221 36.0826 238.591 36.0826H243.966C244.355 36.0826 244.673 35.7637 244.673 35.3744V18.3461H244.932L244.977 18.3906L262.815 36.3533C262.871 36.409 263.189 36.5351 263.297 36.5351V36.5388Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M283.578 4.71434H272.558C272.199 4.71434 271.896 5.03696 271.896 5.42262V35.3741C271.896 35.7598 272.199 36.0824 272.558 36.0824H283.578C292.236 36.0824 299.281 29.0256 299.281 20.352C299.281 11.6784 292.236 4.71434 283.578 4.71434ZM283.127 29.6894H278.64V11.0629H283.127C288.235 11.0629 292.085 15.0566 292.085 20.352C292.085 25.6474 288.235 29.6894 283.127 29.6894Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
156
apps/scandic-web/components/Levels/Level/SingleRow/NewFriend.tsx
Normal file
156
apps/scandic-web/components/Levels/Level/SingleRow/NewFriend.tsx
Normal file
@@ -0,0 +1,156 @@
|
||||
import { levelVariants } from "../../variants"
|
||||
|
||||
import type { LevelProps } from "../../levels"
|
||||
|
||||
export default function NewFriend({
|
||||
className,
|
||||
color,
|
||||
height = "44",
|
||||
width = "275",
|
||||
...props
|
||||
}: LevelProps) {
|
||||
const classNames = levelVariants({
|
||||
className,
|
||||
color,
|
||||
})
|
||||
return (
|
||||
<svg
|
||||
className={classNames}
|
||||
fill="none"
|
||||
height={height}
|
||||
viewBox="0 0 275 44"
|
||||
width={width}
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
d="M59.4142 38.7724C59.914 38.7724 60.2767 38.3656 60.2767 37.9144V32.9807C60.2767 32.7403 60.1694 32.5184 59.9991 32.3557C59.9806 32.3372 59.9621 32.3187 59.9436 32.3002C59.9251 32.2817 59.9066 32.2632 59.888 32.2447C59.8695 32.2262 59.851 32.2077 59.8325 32.1892C59.814 32.1708 59.7955 32.1523 59.777 32.1338C59.7585 32.1153 59.74 32.0968 59.7215 32.0783C59.703 32.0598 59.6844 32.0413 59.6659 32.0228C59.6474 32.0043 59.6289 31.9858 59.6104 31.9673C59.5919 31.9489 59.5734 31.9304 59.5549 31.9119C59.5364 31.8934 59.5179 31.8749 59.4994 31.8564C59.4809 31.8379 59.4623 31.8194 59.4438 31.8009C59.4253 31.7824 59.4068 31.7639 59.3883 31.7454C59.3698 31.7269 59.3513 31.7085 59.3328 31.69C59.3143 31.6715 59.2958 31.653 59.2773 31.6345C59.2588 31.616 59.2402 31.5975 59.2217 31.579C59.2032 31.5605 59.1847 31.542 59.1662 31.5235C59.1477 31.505 59.1292 31.4866 59.1107 31.4681C59.0922 31.4496 59.0737 31.4311 59.0552 31.4126C59.0367 31.3941 59.0181 31.3756 58.9996 31.3571C58.9811 31.3386 58.9626 31.3201 58.9441 31.3016C58.9256 31.2831 58.9071 31.2646 58.8886 31.2462C58.8701 31.2277 58.8516 31.2092 58.8331 31.1907C58.8145 31.1722 58.796 31.1537 58.7775 31.1352C58.759 31.1167 58.7405 31.0982 58.722 31.0797C58.7035 31.0612 58.685 31.0427 58.6665 31.0243C58.648 31.0058 58.6332 30.9873 58.6147 30.9725C58.7701 31.1315 58.8627 31.3423 58.8627 31.5679V36.5016C58.8627 36.9528 58.4999 37.3596 58.0002 37.3596H39.2472C39.0029 37.3596 38.7919 37.2561 38.6401 37.1007C38.6586 37.1192 38.6734 37.134 38.692 37.1525C38.7105 37.171 38.729 37.1895 38.7475 37.208C38.766 37.2265 38.7845 37.245 38.803 37.2635C38.8215 37.2819 38.84 37.3004 38.8585 37.3189C38.877 37.3374 38.8956 37.3559 38.9141 37.3744C38.9326 37.3929 38.9511 37.4114 38.9696 37.4299C38.9881 37.4484 39.0066 37.4669 39.0251 37.4854C39.0436 37.5039 39.0621 37.5223 39.0806 37.5408C39.0992 37.5593 39.1177 37.5778 39.1362 37.5963C39.1547 37.6148 39.1732 37.6333 39.1917 37.6518C39.2102 37.6703 39.2287 37.6888 39.2472 37.7073C39.2657 37.7258 39.2842 37.7442 39.3027 37.7627C39.3212 37.7812 39.3398 37.7997 39.3583 37.8182C39.3768 37.8367 39.3953 37.8552 39.4138 37.8737C39.4323 37.8922 39.4508 37.9107 39.4693 37.9292C39.4878 37.9477 39.5063 37.9662 39.5248 37.9846C39.5433 38.0031 39.5619 38.0216 39.5804 38.0401C39.5989 38.0586 39.6174 38.0771 39.6359 38.0956C39.6544 38.1141 39.6729 38.1326 39.6914 38.1511C39.7099 38.1696 39.7284 38.1881 39.7469 38.2066C39.7655 38.225 39.784 38.2435 39.8025 38.262C39.821 38.2805 39.8395 38.299 39.858 38.3175C39.8765 38.336 39.895 38.3545 39.9135 38.373C39.932 38.3915 39.9505 38.41 39.9691 38.4285C39.9876 38.4469 40.0061 38.4654 40.0246 38.4839C40.1801 38.6578 40.3985 38.7761 40.6613 38.7761H59.4142V38.7724Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M46.8657 13.7454H59.4146C59.9143 13.7454 60.2771 13.3386 60.2771 12.8837V7.94999C60.2771 7.7096 60.1697 7.48769 59.9994 7.32496C59.9809 7.30647 59.9624 7.28798 59.9439 7.26948C59.9254 7.25099 59.9069 7.2325 59.8884 7.21401C59.8699 7.19551 59.8514 7.17702 59.8329 7.15853C59.8144 7.14004 59.7958 7.12155 59.7773 7.10306C59.7588 7.08456 59.7403 7.06607 59.7218 7.04758C59.7033 7.02909 59.6848 7.0106 59.6663 6.9921C59.6478 6.97361 59.6293 6.95512 59.6108 6.93663C59.5923 6.91814 59.5738 6.89964 59.5552 6.88115C59.5367 6.86266 59.5182 6.84417 59.4997 6.82568C59.4812 6.80718 59.4627 6.78869 59.4442 6.7702C59.4257 6.75171 59.4072 6.73322 59.3887 6.71472C59.3701 6.69623 59.3516 6.67774 59.3331 6.65925C59.3146 6.64075 59.2961 6.62226 59.2776 6.60377C59.2591 6.58528 59.2406 6.56679 59.2221 6.5483C59.2036 6.5298 59.1851 6.51131 59.1666 6.49282C59.148 6.47433 59.1295 6.45584 59.111 6.43734C59.0925 6.41885 59.074 6.40036 59.0555 6.38187C59.037 6.36337 59.0185 6.34488 59 6.32639C58.9815 6.3079 58.963 6.28941 58.9445 6.27092C58.9259 6.25242 58.9074 6.23393 58.8889 6.21544C58.8704 6.19695 58.8519 6.17846 58.8334 6.15996C58.8149 6.14147 58.7964 6.12298 58.7779 6.10449C58.7594 6.08599 58.7409 6.0675 58.7224 6.04901C58.7038 6.03052 58.6853 6.01203 58.6668 5.99354C58.6483 5.97504 58.6335 5.95655 58.615 5.94176C58.7705 6.10079 58.863 6.3116 58.863 6.5372V11.4709C58.863 11.9221 58.5002 12.3326 58.0005 12.3326H45.4517V16.4008H46.8472V13.7269L46.8657 13.7454Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M46.8657 26.0085H57.1935C57.6452 26.0085 58.0523 25.646 58.0523 25.1467V20.2131C58.0523 19.9727 57.9339 19.7508 57.7599 19.5917C57.7414 19.5732 57.7266 19.5548 57.7044 19.5363C57.6859 19.5178 57.6674 19.4993 57.6488 19.4808C57.6303 19.4623 57.6155 19.4438 57.5933 19.4253C57.5748 19.4068 57.5563 19.3883 57.5378 19.3698C57.5193 19.3513 57.5008 19.3328 57.4823 19.3144C57.4638 19.2959 57.449 19.2774 57.4268 19.2589C57.4082 19.2404 57.3897 19.2219 57.3712 19.2034C57.3527 19.1849 57.3379 19.1664 57.3157 19.1479C57.2972 19.1294 57.2787 19.1109 57.2602 19.0924C57.2417 19.074 57.2232 19.0555 57.2046 19.037C57.1861 19.0185 57.1676 19 57.1491 18.9815C57.1306 18.963 57.1121 18.9445 57.0936 18.926C57.0751 18.9075 57.0566 18.889 57.0381 18.8705C57.0196 18.8521 57.001 18.8336 56.9825 18.8151C56.964 18.7966 56.9492 18.7781 56.927 18.7596C56.9085 18.7411 56.89 18.7226 56.8715 18.7041C56.853 18.6856 56.8382 18.6671 56.816 18.6486C56.7974 18.6302 56.7789 18.6117 56.7604 18.5932C56.7419 18.5747 56.7271 18.5562 56.7049 18.5377C56.6864 18.5192 56.6679 18.5007 56.6494 18.4822C56.6309 18.4637 56.6161 18.4452 56.5939 18.4267C56.5753 18.4082 56.5568 18.3898 56.5383 18.3713C56.5198 18.3528 56.5013 18.3343 56.4828 18.3158C56.4643 18.2973 56.4495 18.2788 56.4273 18.2603C56.4162 18.2492 56.4088 18.2381 56.3977 18.2307C56.542 18.3861 56.6383 18.5858 56.6383 18.8003V23.7339C56.6383 24.2332 56.2311 24.5957 55.7795 24.5957H45.4517V29.1632H46.8472V25.99L46.8657 26.0085Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M136.433 8.04559C136.414 8.02709 136.396 8.0086 136.377 7.99011C136.359 7.97162 136.34 7.95313 136.322 7.93464C136.303 7.91615 136.285 7.89765 136.266 7.87916C136.248 7.86067 136.229 7.84218 136.211 7.82369C136.192 7.8052 136.174 7.7867 136.155 7.76821C136.137 7.74972 136.118 7.73123 136.1 7.71273C136.081 7.69424 136.063 7.67575 136.044 7.65726C136.026 7.63877 136.007 7.62028 135.989 7.60178C135.97 7.58329 135.952 7.5648 135.933 7.54631C135.915 7.52781 135.896 7.50932 135.878 7.49083C135.859 7.47233 135.841 7.45384 135.822 7.43535C135.804 7.41686 135.785 7.39837 135.767 7.37988C135.748 7.36139 135.73 7.34289 135.711 7.3244C135.693 7.30591 135.674 7.28742 135.656 7.26893C135.637 7.25044 135.619 7.23194 135.6 7.21345C135.581 7.19496 135.563 7.17647 135.544 7.15797C135.526 7.13948 135.507 7.12099 135.489 7.1025C135.47 7.08401 135.452 7.06552 135.433 7.04702C135.415 7.02853 135.396 7.01004 135.378 6.99155C135.359 6.97306 135.341 6.95456 135.322 6.93607C135.304 6.91757 135.285 6.89908 135.267 6.88059C135.248 6.8621 135.23 6.84361 135.211 6.82512C135.193 6.80663 135.174 6.78813 135.156 6.76964C135.137 6.75115 135.122 6.73266 135.104 6.71786C135.259 6.8769 135.352 7.0877 135.352 7.3133V12.247C135.352 12.6982 134.989 13.1087 134.493 13.1087H121.944V18.083H123.34V14.503H135.889C136.385 14.503 136.748 14.0962 136.748 13.6413V8.7076C136.748 8.46721 136.64 8.24531 136.47 8.08258C136.451 8.06408 136.433 8.0456 136.414 8.0271L136.433 8.04559Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M134.197 21.2189C134.179 21.2004 134.16 21.1819 134.142 21.1634C134.123 21.1449 134.109 21.1265 134.086 21.108C134.068 21.0895 134.049 21.071 134.031 21.0525C134.012 21.034 133.998 21.0155 133.975 20.997C133.957 20.9785 133.942 20.96 133.92 20.9415C133.901 20.923 133.887 20.9045 133.864 20.8861C133.846 20.8676 133.831 20.8491 133.809 20.8306C133.79 20.8121 133.772 20.7936 133.753 20.7751C133.735 20.7566 133.72 20.7381 133.698 20.7196C133.679 20.7011 133.661 20.6826 133.642 20.6642C133.624 20.6457 133.609 20.6272 133.587 20.6087C133.568 20.5902 133.55 20.5717 133.531 20.5532C133.513 20.5347 133.498 20.5162 133.476 20.4977C133.457 20.4792 133.439 20.4607 133.42 20.4422C133.402 20.4238 133.387 20.4053 133.365 20.3868C133.346 20.3683 133.328 20.3498 133.309 20.3313C133.291 20.3128 133.272 20.2943 133.254 20.2758C133.235 20.2573 133.22 20.2388 133.198 20.2203C133.18 20.2018 133.161 20.1834 133.142 20.1649C133.124 20.1464 133.109 20.1279 133.087 20.1094C133.068 20.0909 133.05 20.0724 133.031 20.0539C133.013 20.0354 132.994 20.0169 132.976 19.9984C132.957 19.9799 132.943 19.9615 132.92 19.943C132.909 19.9319 132.898 19.9208 132.891 19.9134C133.035 20.0687 133.131 20.2684 133.131 20.4829V25.4166C133.131 25.8678 132.724 26.2746 132.269 26.2746H121.941V37.2737C121.941 37.7249 121.534 38.1317 121.082 38.1317H115.737C115.489 38.1317 115.282 38.0281 115.13 37.8691C115.148 37.8876 115.163 37.9061 115.182 37.9209C115.2 37.9394 115.219 37.9579 115.237 37.9764C115.256 37.9948 115.274 38.0134 115.293 38.0318C115.311 38.0503 115.33 38.0688 115.348 38.0873C115.367 38.1058 115.385 38.1243 115.404 38.1428C115.422 38.1613 115.441 38.1798 115.459 38.1983C115.478 38.2167 115.496 38.2352 115.515 38.2537C115.533 38.2722 115.552 38.2907 115.57 38.3092C115.589 38.3277 115.607 38.3462 115.626 38.3647C115.644 38.3832 115.663 38.4017 115.681 38.4202C115.7 38.4387 115.718 38.4572 115.737 38.4756C115.755 38.4941 115.774 38.5126 115.792 38.5311C115.811 38.5496 115.83 38.5681 115.848 38.5866C115.867 38.6051 115.885 38.6236 115.904 38.6421C115.922 38.6606 115.941 38.6791 115.959 38.6975C115.978 38.716 115.996 38.7345 116.015 38.753C116.033 38.7715 116.052 38.79 116.07 38.8085C116.089 38.827 116.107 38.8455 116.126 38.864C116.144 38.8825 116.163 38.901 116.181 38.9195C116.2 38.9379 116.218 38.9564 116.237 38.9749C116.255 38.9934 116.274 39.0119 116.292 39.0304C116.311 39.0489 116.329 39.0674 116.348 39.0859C116.366 39.1044 116.385 39.1229 116.403 39.1414C116.422 39.1599 116.44 39.1783 116.459 39.1968C116.477 39.2153 116.496 39.2338 116.514 39.2523C116.67 39.4261 116.888 39.5445 117.151 39.5445H122.496C122.948 39.5445 123.355 39.1377 123.355 38.6865V27.6874H133.683C134.135 27.6874 134.545 27.2806 134.545 26.8294V21.8957C134.545 21.6553 134.427 21.4334 134.253 21.2744C134.234 21.2559 134.22 21.2374 134.197 21.2189Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M146.606 25.7534V37.2961C146.606 37.7473 146.198 38.1541 145.747 38.1541H140.357C140.109 38.1541 139.902 38.0506 139.75 37.8915C139.769 37.91 139.783 37.9285 139.802 37.9433C139.82 37.9618 139.839 37.9803 139.857 37.9988C139.876 38.0173 139.894 38.0358 139.913 38.0543C139.931 38.0728 139.95 38.0913 139.968 38.1097C139.987 38.1282 140.005 38.1467 140.024 38.1652C140.042 38.1837 140.061 38.2022 140.079 38.2207C140.098 38.2392 140.116 38.2577 140.135 38.2762C140.153 38.2947 140.172 38.3132 140.191 38.3316C140.209 38.3501 140.228 38.3686 140.246 38.3871C140.265 38.4056 140.283 38.4241 140.302 38.4426C140.32 38.4611 140.339 38.4796 140.357 38.4981C140.376 38.5166 140.394 38.5351 140.413 38.5535C140.431 38.572 140.45 38.5905 140.468 38.609C140.487 38.6275 140.505 38.646 140.524 38.6645C140.542 38.683 140.561 38.7015 140.579 38.72C140.598 38.7385 140.616 38.757 140.635 38.7755C140.653 38.794 140.672 38.8124 140.69 38.8309C140.709 38.8494 140.727 38.8679 140.746 38.8864C140.764 38.9049 140.783 38.9234 140.801 38.9419C140.82 38.9604 140.838 38.9789 140.857 38.9974C140.875 39.0159 140.894 39.0343 140.912 39.0528C140.931 39.0713 140.949 39.0898 140.968 39.1083C140.986 39.1268 141.005 39.1453 141.023 39.1638C141.042 39.1823 141.06 39.2008 141.079 39.2193C141.097 39.2378 141.116 39.2563 141.134 39.2747C141.29 39.4486 141.508 39.5669 141.771 39.5669H147.161C147.612 39.5669 148.02 39.1601 148.02 38.7089V27.1662H149.589L148.89 25.7719H146.628L146.606 25.7534Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M154.705 14.3366C154.857 14.3366 155.001 14.3547 155.145 14.3732C155.068 13.9738 154.912 13.6002 154.697 13.2637C154.268 13.0676 153.802 12.9419 153.309 12.9419H146.605V18.4599L148.001 18.4603V14.3366H154.705Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M165.17 17.6425C165.17 14.939 164.048 12.4832 162.245 10.7117C162.227 10.6932 162.208 10.6747 162.19 10.6562C162.171 10.6377 162.153 10.6192 162.134 10.6007C162.116 10.5822 162.097 10.5637 162.079 10.5453C162.06 10.5268 162.042 10.5083 162.023 10.4898C162.005 10.4713 161.986 10.4528 161.968 10.4343C161.949 10.4158 161.931 10.3973 161.912 10.3788C161.894 10.3603 161.875 10.3418 161.857 10.3234C161.838 10.3049 161.82 10.2864 161.801 10.2679C161.783 10.2494 161.764 10.2309 161.746 10.2124C161.727 10.1939 161.709 10.1754 161.69 10.1569C161.671 10.1384 161.653 10.1199 161.634 10.1014C161.616 10.083 161.597 10.0645 161.579 10.046C161.56 10.0275 161.542 10.009 161.523 9.9905C161.505 9.97201 161.486 9.95351 161.468 9.93502C161.449 9.91653 161.431 9.89804 161.412 9.87955C161.394 9.86106 161.375 9.84256 161.357 9.82407C161.338 9.80557 161.32 9.78708 161.301 9.76859C161.283 9.7501 161.264 9.73161 161.246 9.71312C161.227 9.69463 161.209 9.67613 161.19 9.65764C161.172 9.63915 161.153 9.62066 161.135 9.60217C161.116 9.58368 161.098 9.56518 161.079 9.54669C161.061 9.5282 161.042 9.50971 161.024 9.49121C161.005 9.47272 160.987 9.45423 160.968 9.43574C160.95 9.41725 160.931 9.39875 160.913 9.38026C160.894 9.36547 160.879 9.34698 160.861 9.32848C162.645 11.1 163.756 13.5373 163.756 16.2297C163.756 20.3941 160.99 23.7412 157.052 25.3278L163.256 36.8224C163.574 37.4104 163.256 38.1353 162.486 38.1353H156.459C156.204 38.1353 156 38.0207 155.867 37.8912C155.878 37.9023 155.889 37.9134 155.901 37.9245C155.915 37.943 155.934 37.9615 155.956 37.98C155.971 37.9985 155.989 38.017 156.012 38.0355C156.026 38.054 156.049 38.0724 156.067 38.0909C156.082 38.1094 156.1 38.1279 156.123 38.1464C156.141 38.1649 156.156 38.1834 156.178 38.2019C156.193 38.2204 156.211 38.2389 156.234 38.2574C156.248 38.2759 156.271 38.2944 156.289 38.3128C156.304 38.3313 156.323 38.3498 156.345 38.3683C156.36 38.3868 156.378 38.4053 156.4 38.4238C156.415 38.4423 156.434 38.4608 156.456 38.4793C156.471 38.4978 156.489 38.5163 156.511 38.5348C156.526 38.5532 156.545 38.5717 156.567 38.5902C156.582 38.6087 156.6 38.6272 156.622 38.6457C156.637 38.6642 156.656 38.6827 156.678 38.7012C156.693 38.7197 156.711 38.7382 156.733 38.7567C156.748 38.7752 156.767 38.7936 156.789 38.8121C156.804 38.8306 156.826 38.8491 156.844 38.8676C156.859 38.8861 156.878 38.9046 156.9 38.9231C156.918 38.9416 156.933 38.9601 156.956 38.9786C156.97 38.9971 156.989 39.0155 157.011 39.034C157.026 39.0525 157.044 39.071 157.067 39.0895C157.081 39.108 157.1 39.1265 157.122 39.145C157.137 39.1635 157.155 39.182 157.178 39.2005C157.192 39.219 157.211 39.2375 157.233 39.256C157.363 39.4039 157.588 39.5481 157.874 39.5481H163.9C164.67 39.5481 164.988 38.8232 164.67 38.2352L158.466 26.7406C162.408 25.1576 165.17 21.8069 165.17 17.6425Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M177.146 8.04871C177.127 8.03022 177.109 8.01172 177.09 7.99323C177.072 7.97474 177.053 7.95625 177.035 7.93776C177.016 7.91926 177.001 7.90077 176.979 7.88228C176.961 7.86379 176.942 7.8453 176.924 7.82681C176.905 7.80831 176.89 7.78982 176.868 7.77133C176.85 7.75284 176.831 7.73434 176.813 7.71585C176.794 7.69735 176.779 7.67887 176.757 7.66037C176.739 7.64188 176.72 7.62339 176.701 7.6049C176.683 7.5864 176.668 7.56791 176.646 7.54942C176.627 7.53093 176.609 7.51244 176.59 7.49395C176.572 7.47545 176.553 7.45696 176.535 7.43847C176.516 7.41998 176.502 7.40149 176.479 7.383C176.461 7.3645 176.442 7.34601 176.424 7.32751C176.405 7.30902 176.391 7.29053 176.368 7.27204C176.35 7.25355 176.331 7.23506 176.313 7.21657C176.294 7.19808 176.279 7.17958 176.257 7.16109C176.239 7.1426 176.22 7.12411 176.202 7.10561C176.183 7.08712 176.168 7.06862 176.146 7.05013C176.128 7.03164 176.113 7.01315 176.091 6.99466C176.072 6.97617 176.054 6.95768 176.035 6.93919C176.017 6.92069 176.002 6.9022 175.98 6.88371C175.961 6.86522 175.943 6.84673 175.924 6.82824C175.906 6.80974 175.891 6.79125 175.869 6.77275C175.857 6.76166 175.846 6.75057 175.835 6.73947C175.983 6.8948 176.08 7.09822 176.08 7.31273V37.2735C176.08 37.7247 175.672 38.1315 175.217 38.1315H169.783C169.568 38.1315 169.368 38.0353 169.213 37.8911C169.224 37.9022 169.231 37.9133 169.242 37.9207C169.261 37.9392 169.276 37.9577 169.298 37.9762C169.317 37.9947 169.335 38.0132 169.354 38.0316C169.372 38.0501 169.387 38.0686 169.409 38.0871C169.428 38.1056 169.442 38.1241 169.465 38.1426C169.483 38.1611 169.498 38.1796 169.52 38.1981C169.539 38.2166 169.553 38.235 169.576 38.2535C169.594 38.272 169.613 38.2905 169.631 38.309C169.65 38.3275 169.664 38.346 169.687 38.3645C169.705 38.383 169.724 38.4015 169.742 38.42C169.761 38.4385 169.776 38.457 169.798 38.4754C169.816 38.4939 169.835 38.5124 169.853 38.5309C169.872 38.5494 169.89 38.5679 169.909 38.5864C169.927 38.6049 169.942 38.6234 169.964 38.6419C169.983 38.6604 170.001 38.6789 170.02 38.6973C170.038 38.7158 170.053 38.7343 170.075 38.7528C170.094 38.7713 170.112 38.7898 170.131 38.8083C170.149 38.8268 170.168 38.8453 170.186 38.8638C170.205 38.8823 170.22 38.9008 170.242 38.9193C170.26 38.9377 170.279 38.9562 170.297 38.9747C170.316 38.9932 170.331 39.0117 170.353 39.0302C170.372 39.0487 170.39 39.0672 170.409 39.0857C170.427 39.1042 170.442 39.1227 170.464 39.1412C170.483 39.1597 170.501 39.1781 170.52 39.1966C170.538 39.2151 170.553 39.2336 170.575 39.2521C170.734 39.4259 170.956 39.5443 171.197 39.5443H176.635C177.086 39.5443 177.497 39.1375 177.497 38.6863V8.72552C177.497 8.48512 177.379 8.26321 177.205 8.10418C177.186 8.08569 177.172 8.0672 177.149 8.04871H177.146Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M204.519 8.04559C204.501 8.02709 204.482 8.0086 204.464 7.99011C204.445 7.97162 204.427 7.95313 204.408 7.93464C204.39 7.91615 204.371 7.89765 204.353 7.87916C204.334 7.86067 204.316 7.84218 204.297 7.82369C204.279 7.8052 204.26 7.7867 204.242 7.76821C204.223 7.74972 204.205 7.73123 204.186 7.71273C204.168 7.69424 204.149 7.67575 204.131 7.65726C204.112 7.63877 204.094 7.62028 204.075 7.60178C204.057 7.58329 204.038 7.5648 204.02 7.54631C204.001 7.52781 203.983 7.50932 203.964 7.49083C203.946 7.47233 203.927 7.45384 203.909 7.43535C203.89 7.41686 203.872 7.39837 203.853 7.37988C203.835 7.36139 203.816 7.34289 203.797 7.3244C203.779 7.30591 203.76 7.28742 203.742 7.26893C203.723 7.25044 203.705 7.23194 203.686 7.21345C203.668 7.19496 203.649 7.17647 203.631 7.15797C203.612 7.13948 203.594 7.12099 203.575 7.1025C203.557 7.08401 203.538 7.06552 203.52 7.04702C203.501 7.02853 203.483 7.01004 203.464 6.99155C203.446 6.97306 203.427 6.95456 203.409 6.93607C203.39 6.91757 203.372 6.89908 203.353 6.88059C203.335 6.8621 203.316 6.84361 203.298 6.82512C203.279 6.80663 203.261 6.78813 203.242 6.76964C203.227 6.75115 203.209 6.73266 203.19 6.71786C203.342 6.8769 203.438 7.0877 203.438 7.3133V12.247C203.438 12.6982 203.076 13.1087 202.58 13.1087H190.031V17.1769H191.426V14.503H203.975C204.475 14.503 204.834 14.0962 204.834 13.6413V8.7076C204.834 8.46721 204.727 8.24531 204.556 8.08258C204.538 8.06408 204.519 8.0456 204.501 8.0271L204.519 8.04559Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M191.445 26.7853H201.773C202.224 26.7853 202.635 26.4229 202.635 25.9236V20.9899C202.635 20.7495 202.517 20.5276 202.343 20.3686C202.324 20.3501 202.306 20.3316 202.287 20.3131C202.269 20.2946 202.25 20.2761 202.232 20.2576C202.213 20.2391 202.195 20.2207 202.176 20.2022C202.158 20.1837 202.143 20.1652 202.121 20.1467C202.102 20.1282 202.084 20.1097 202.065 20.0912C202.047 20.0727 202.032 20.0542 202.01 20.0357C201.991 20.0172 201.973 19.9988 201.954 19.9803C201.936 19.9618 201.917 19.9433 201.898 19.9248C201.88 19.9063 201.865 19.8878 201.843 19.8693C201.824 19.8508 201.806 19.8323 201.787 19.8138C201.769 19.7953 201.754 19.7768 201.732 19.7584C201.713 19.7399 201.695 19.7214 201.676 19.7029C201.658 19.6844 201.643 19.6659 201.621 19.6474C201.602 19.6289 201.584 19.6104 201.565 19.5919C201.547 19.5734 201.532 19.5549 201.51 19.5365C201.491 19.518 201.473 19.4995 201.454 19.481C201.436 19.4625 201.417 19.444 201.399 19.4255C201.38 19.407 201.365 19.3885 201.343 19.37C201.325 19.3515 201.306 19.333 201.288 19.3145C201.269 19.2961 201.254 19.2776 201.232 19.2591C201.214 19.2406 201.195 19.2221 201.177 19.2036C201.158 19.1851 201.14 19.1666 201.121 19.1481C201.103 19.1296 201.084 19.1111 201.066 19.0926C201.047 19.0742 201.029 19.0557 201.01 19.0372C200.999 19.0261 200.988 19.015 200.977 19.0039C201.121 19.1592 201.221 19.3589 201.221 19.5771V24.5108C201.221 25.0101 200.814 25.3725 200.359 25.3725H190.031V29.9401H191.426V26.7668L191.445 26.7853Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M204.519 33.0763C204.501 33.0578 204.482 33.0393 204.464 33.0208C204.445 33.0023 204.427 32.9838 204.408 32.9654C204.39 32.9469 204.371 32.9284 204.353 32.9099C204.334 32.8914 204.316 32.8729 204.297 32.8544C204.279 32.8359 204.26 32.8174 204.242 32.7989C204.223 32.7804 204.205 32.7619 204.186 32.7435C204.168 32.725 204.149 32.7065 204.131 32.688C204.112 32.6695 204.094 32.651 204.075 32.6325C204.057 32.614 204.038 32.5955 204.02 32.577C204.001 32.5585 203.983 32.54 203.964 32.5215C203.946 32.5031 203.927 32.4846 203.909 32.4661C203.89 32.4476 203.872 32.4291 203.853 32.4106C203.835 32.3921 203.816 32.3736 203.798 32.3551C203.779 32.3366 203.761 32.3181 203.742 32.2997C203.724 32.2812 203.705 32.2627 203.687 32.2442C203.668 32.2257 203.65 32.2072 203.631 32.1887C203.613 32.1702 203.594 32.1517 203.576 32.1332C203.557 32.1147 203.538 32.0962 203.52 32.0778C203.501 32.0593 203.483 32.0408 203.464 32.0223C203.446 32.0038 203.427 31.9853 203.409 31.9668C203.39 31.9483 203.372 31.9298 203.353 31.9113C203.335 31.8928 203.316 31.8743 203.298 31.8558C203.279 31.8373 203.261 31.8189 203.242 31.8004C203.228 31.7819 203.209 31.7634 203.191 31.7486C203.342 31.9076 203.439 32.1184 203.439 32.344V37.2777C203.439 37.7289 203.076 38.1357 202.58 38.1357H183.827C183.579 38.1357 183.371 38.0322 183.22 37.8731C183.238 37.8916 183.253 37.9101 183.272 37.9249C183.29 37.9434 183.309 37.9619 183.327 37.9804C183.346 37.9989 183.364 38.0174 183.383 38.0359C183.401 38.0544 183.42 38.0728 183.438 38.0913C183.457 38.1098 183.475 38.1283 183.494 38.1468C183.512 38.1653 183.531 38.1838 183.549 38.2023C183.568 38.2208 183.586 38.2393 183.605 38.2578C183.623 38.2763 183.642 38.2948 183.66 38.3132C183.679 38.3317 183.697 38.3502 183.716 38.3687C183.734 38.3872 183.753 38.4057 183.771 38.4242C183.79 38.4427 183.808 38.4612 183.827 38.4797C183.845 38.4982 183.864 38.5167 183.882 38.5351C183.901 38.5536 183.919 38.5721 183.938 38.5906C183.956 38.6091 183.975 38.6276 183.993 38.6461C184.012 38.6646 184.03 38.6831 184.049 38.7016C184.067 38.7201 184.086 38.7386 184.104 38.7571C184.123 38.7755 184.141 38.794 184.16 38.8125C184.178 38.831 184.197 38.8495 184.215 38.868C184.234 38.8865 184.253 38.905 184.271 38.9235C184.29 38.942 184.308 38.9605 184.327 38.979C184.345 38.9975 184.364 39.0159 184.382 39.0344C184.401 39.0529 184.419 39.0714 184.438 39.0899C184.456 39.1084 184.475 39.1269 184.493 39.1454C184.512 39.1639 184.53 39.1824 184.549 39.2009C184.567 39.2193 184.586 39.2378 184.604 39.2563C184.76 39.4302 184.978 39.5485 185.241 39.5485H203.994C204.494 39.5485 204.853 39.1417 204.853 38.6905V33.7568C204.853 33.5164 204.745 33.2945 204.575 33.1318C204.556 33.1133 204.538 33.0948 204.519 33.0763Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M236.895 8.04952C236.876 8.03103 236.861 8.01253 236.839 7.99404C236.821 7.97555 236.802 7.95706 236.784 7.93857C236.765 7.92008 236.75 7.90158 236.728 7.88309C236.71 7.8646 236.691 7.84611 236.673 7.82762C236.654 7.80913 236.639 7.79064 236.617 7.77214C236.599 7.75365 236.58 7.73516 236.562 7.71666C236.543 7.69817 236.528 7.67968 236.506 7.66119C236.488 7.6427 236.469 7.6242 236.451 7.60571C236.432 7.58722 236.414 7.56873 236.395 7.55024C236.377 7.53174 236.362 7.51325 236.34 7.49476C236.321 7.47627 236.303 7.45777 236.284 7.43928C236.266 7.42079 236.251 7.4023 236.229 7.38381C236.21 7.36532 236.192 7.34682 236.173 7.32833C236.155 7.30984 236.14 7.29135 236.118 7.27286C236.099 7.25437 236.081 7.23588 236.062 7.21738C236.043 7.19889 236.029 7.1804 236.006 7.1619C235.988 7.14341 235.973 7.12492 235.951 7.10643C235.932 7.08794 235.914 7.06944 235.895 7.05095C235.877 7.03246 235.862 7.01397 235.84 6.99548C235.821 6.97698 235.803 6.95849 235.784 6.94C235.766 6.92151 235.751 6.90301 235.729 6.88452C235.71 6.86603 235.692 6.84754 235.673 6.82905C235.655 6.81056 235.636 6.79206 235.618 6.77357C235.599 6.75508 235.585 6.73658 235.566 6.72179C235.725 6.88082 235.829 7.08794 235.829 7.31354V37.7736C235.829 38.2248 235.422 38.5872 234.97 38.5872H234.245C234.108 38.5872 233.749 38.4504 233.656 38.3616L235.07 39.7744C235.159 39.8632 235.522 40 235.659 40H236.384C236.836 40 237.243 39.6376 237.243 39.1864V8.72633C237.243 8.48593 237.124 8.26403 236.95 8.105C236.932 8.0865 236.913 8.06801 236.895 8.04952Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M215.736 37.2959C215.736 37.7471 215.373 38.154 214.877 38.154H209.487C209.273 38.154 209.069 38.0578 208.914 37.9099C208.925 37.921 208.936 37.9321 208.947 37.9432C208.965 37.9616 208.98 37.9801 209.002 37.9986C209.021 38.0171 209.039 38.0356 209.058 38.0541C209.076 38.0726 209.091 38.0911 209.113 38.1096C209.132 38.1281 209.15 38.1466 209.169 38.1651C209.187 38.1836 209.202 38.2021 209.225 38.2205C209.243 38.239 209.262 38.2575 209.28 38.276C209.299 38.2945 209.317 38.313 209.336 38.3315C209.354 38.35 209.369 38.3685 209.391 38.387C209.41 38.4055 209.428 38.424 209.447 38.4424C209.465 38.4609 209.48 38.4794 209.502 38.4979C209.521 38.5164 209.539 38.5349 209.558 38.5534C209.576 38.5719 209.591 38.5904 209.613 38.6089C209.632 38.6274 209.65 38.6459 209.669 38.6644C209.687 38.6828 209.702 38.7013 209.724 38.7198C209.743 38.7383 209.758 38.7568 209.78 38.7753C209.798 38.7938 209.817 38.8123 209.835 38.8308C209.854 38.8493 209.869 38.8678 209.891 38.8863C209.909 38.9048 209.924 38.9232 209.946 38.9417C209.965 38.9602 209.983 38.9787 210.002 38.9972C210.02 39.0157 210.035 39.0342 210.057 39.0527C210.076 39.0712 210.094 39.0897 210.113 39.1082C210.131 39.1266 210.146 39.1451 210.168 39.1636C210.187 39.1821 210.205 39.2006 210.224 39.2191C210.243 39.2376 210.257 39.2561 210.28 39.2746C210.439 39.4484 210.661 39.5668 210.901 39.5668H216.291C216.791 39.5668 217.15 39.1599 217.15 38.7087V22.0105L215.754 20.6088V37.3144L215.736 37.2959Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M254.153 13.1268L249.803 13.1266V29.9136H251.198V14.5209H255.548C257.173 14.5209 258.65 14.9388 259.92 15.66C259.675 15.2938 259.405 14.9462 259.113 14.6281C257.724 13.685 256.04 13.1302 254.156 13.1302L254.153 13.1268Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M267.149 12.4285C267.149 12.4285 267.112 12.3915 267.094 12.373C267.075 12.3545 267.057 12.336 267.038 12.3175C267.019 12.299 267.001 12.2805 266.982 12.262C266.964 12.2435 266.945 12.225 266.927 12.2066C266.908 12.1881 266.89 12.1696 266.871 12.1511C266.853 12.1326 266.834 12.1141 266.816 12.0956C266.797 12.0771 266.779 12.0586 266.76 12.0401C266.742 12.0216 266.723 12.0031 266.705 11.9846C266.686 11.9662 266.668 11.9477 266.649 11.9292C266.631 11.9107 266.612 11.8922 266.594 11.8737C266.575 11.8552 266.557 11.8367 266.538 11.8219C266.52 11.8034 266.501 11.7849 266.483 11.7664C266.464 11.7479 266.446 11.7295 266.427 11.711C266.409 11.6925 266.39 11.674 266.372 11.6555C266.353 11.637 266.335 11.6185 266.32 11.6C266.301 11.5815 266.283 11.563 266.264 11.5445C266.246 11.526 266.227 11.5076 266.213 11.4928C266.194 11.4743 266.175 11.4558 266.157 11.4373C266.138 11.4188 266.12 11.4003 266.101 11.3818C266.094 11.3744 266.087 11.367 266.079 11.3596C266.09 11.3744 266.101 11.3892 266.109 11.404C268.822 14.2407 270.495 18.0648 270.495 22.2588C270.495 31.0388 263.336 38.1434 254.596 38.1434H243.543C243.321 38.1434 243.125 38.0399 242.98 37.8882C242.995 37.9067 243.014 37.9215 243.032 37.94C243.051 37.9585 243.069 37.977 243.088 37.9955C243.106 38.014 243.125 38.0325 243.143 38.051C243.162 38.0695 243.18 38.088 243.199 38.1065C243.217 38.1249 243.236 38.1434 243.254 38.1619C243.273 38.1804 243.291 38.1989 243.31 38.2174C243.328 38.2359 243.347 38.2544 243.365 38.2729C243.384 38.2914 243.402 38.3099 243.421 38.3284C243.439 38.3469 243.458 38.3653 243.477 38.3838C243.495 38.4023 243.514 38.4208 243.532 38.4393C243.551 38.4578 243.569 38.4763 243.588 38.4948C243.606 38.5133 243.625 38.5318 243.643 38.5503C243.662 38.5688 243.68 38.5873 243.699 38.6057C243.717 38.6242 243.736 38.6427 243.754 38.6612C243.773 38.6797 243.791 38.6982 243.81 38.7167C243.828 38.7352 243.847 38.7537 243.865 38.7722C243.884 38.7907 243.902 38.8092 243.921 38.8276C243.939 38.8461 243.958 38.8646 243.976 38.8831C243.995 38.9016 244.013 38.9201 244.032 38.9386C244.05 38.9571 244.069 38.9756 244.087 38.9941C244.106 39.0126 244.124 39.0311 244.143 39.0496C244.161 39.068 244.18 39.0865 244.198 39.105C244.217 39.1235 244.235 39.142 244.254 39.1605C244.272 39.179 244.291 39.1975 244.309 39.216C244.328 39.2345 244.346 39.253 244.365 39.2714C244.513 39.4453 244.724 39.5599 244.961 39.5599H256.014C264.758 39.5599 271.913 32.4553 271.913 23.6753C271.913 19.3186 270.114 15.3613 267.216 12.495C267.197 12.4765 267.179 12.458 267.16 12.4396L267.149 12.4285Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M30.6586 37.8327H29.9332C29.7963 37.8327 29.4373 37.6959 29.3447 37.6071L30.4255 38.687L30.4773 38.7425L30.5328 38.798L30.5846 38.8535L30.7512 39.0199C30.84 39.1087 31.2027 39.2455 31.3396 39.2455H32.0651C32.5166 39.2455 32.9237 38.8831 32.9237 38.4319V7.97183C32.9237 7.73143 32.8053 7.50953 32.6313 7.3505C32.6128 7.332 32.5943 7.31351 32.5758 7.29502C32.5573 7.27653 32.5388 7.25804 32.5203 7.23954C32.5018 7.22105 32.487 7.20256 32.4648 7.18407C32.4463 7.16557 32.4278 7.14709 32.4093 7.12859C32.3908 7.1101 32.376 7.09161 32.3538 7.07312C32.3353 7.05462 32.3168 7.03613 32.2982 7.01764C32.2797 6.99915 32.2649 6.98066 32.2427 6.96216C32.2242 6.94367 32.2057 6.92518 32.1872 6.90669C32.1687 6.88819 32.1539 6.86971 32.1317 6.85121C32.1132 6.83272 32.0947 6.81423 32.0762 6.79574C32.0577 6.77724 32.0392 6.75875 32.0207 6.74026C32.0022 6.72177 31.9874 6.70328 31.9651 6.68478C31.9466 6.66629 31.9281 6.6478 31.9096 6.62931C31.8911 6.61081 31.8763 6.59233 31.8541 6.57383C31.8356 6.55534 31.8171 6.53685 31.7986 6.51836C31.7801 6.49986 31.7616 6.48137 31.7431 6.46288C31.7246 6.44439 31.7098 6.4259 31.6876 6.4074C31.6691 6.38891 31.6505 6.37042 31.632 6.35193C31.6135 6.33343 31.595 6.31495 31.5765 6.29645C31.558 6.27796 31.5395 6.25947 31.521 6.24098C31.5025 6.22248 31.4877 6.20399 31.4655 6.1855C31.447 6.16701 31.4285 6.14852 31.41 6.13002C31.3915 6.11153 31.3767 6.09304 31.3544 6.07455C31.3359 6.05605 31.3174 6.03757 31.2989 6.01907C31.2804 6.00058 31.2656 5.98579 31.2471 5.9673C31.4026 6.12633 31.5099 6.33344 31.5099 6.55904V37.0191C31.5099 37.4703 31.1028 37.8327 30.6512 37.8327H30.6586Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M11.4024 36.5198C11.4024 36.971 11.0396 37.3779 10.5436 37.3779H5.15014C4.93544 37.3779 4.73555 37.2817 4.58008 37.1375C4.59118 37.1486 4.59859 37.156 4.60969 37.1671C4.6282 37.1856 4.643 37.204 4.66521 37.2225C4.68372 37.241 4.70224 37.2595 4.72075 37.278C4.73925 37.2965 4.75406 37.315 4.77627 37.3335C4.79478 37.352 4.80958 37.3705 4.83179 37.389C4.8503 37.4075 4.86881 37.4259 4.88732 37.4444C4.90583 37.4629 4.92063 37.4814 4.94284 37.4999C4.96135 37.5184 4.97987 37.5369 4.99837 37.5554C5.01688 37.5739 5.03169 37.5924 5.0539 37.6109C5.07241 37.6294 5.09091 37.6478 5.10942 37.6663C5.12793 37.6848 5.14644 37.7033 5.16495 37.7218C5.18346 37.7403 5.19826 37.7588 5.22047 37.7773C5.23898 37.7958 5.2575 37.8143 5.276 37.8328C5.29451 37.8513 5.30932 37.8698 5.33153 37.8883C5.35004 37.9067 5.36854 37.9252 5.38705 37.9437C5.40556 37.9622 5.42037 37.9807 5.44258 37.9992C5.46109 38.0177 5.4796 38.0362 5.4981 38.0547C5.51661 38.0732 5.53142 38.0917 5.55363 38.1102C5.57214 38.1286 5.59065 38.1471 5.60916 38.1656C5.62767 38.1841 5.64617 38.2026 5.66468 38.2211C5.68319 38.2396 5.698 38.2581 5.72021 38.2766C5.73872 38.2951 5.75723 38.3136 5.77573 38.3321C5.79424 38.3506 5.80905 38.369 5.83126 38.3875C5.84977 38.406 5.86828 38.4245 5.88679 38.443C5.9053 38.4615 5.9201 38.48 5.94231 38.4985C6.10148 38.6723 6.32359 38.7907 6.56421 38.7907H11.9576C12.4536 38.7907 12.8164 38.3838 12.8164 37.9326V21.2344L11.4209 19.8327V36.5383L11.4024 36.5198Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M72.1074 37.3336C71.9704 37.6036 71.6558 37.8329 71.3374 37.8329H70.6119C70.4194 37.8329 70.2306 37.7515 70.0825 37.6295C70.101 37.648 70.1158 37.6665 70.138 37.685C70.1566 37.7035 70.1714 37.7257 70.1936 37.7405C70.2121 37.7589 70.2269 37.7811 70.2491 37.7959C70.2676 37.8144 70.2824 37.8366 70.3046 37.8514C70.3231 37.8699 70.3379 37.8921 70.3601 37.9069C70.3787 37.9254 70.3935 37.9476 70.4157 37.9624C70.4342 37.9808 70.449 38.003 70.4712 38.0178C70.4897 38.0363 70.5045 38.0585 70.5267 38.0733C70.5452 38.0918 70.56 38.1103 70.5822 38.1288C70.6008 38.1473 70.6156 38.1695 70.6378 38.1843C70.6563 38.2027 70.6711 38.2249 70.6933 38.2397C70.7118 38.2582 70.7266 38.2804 70.7488 38.2952C70.7673 38.3137 70.7821 38.3359 70.8044 38.3507C70.8229 38.3692 70.8377 38.3914 70.8599 38.4062C70.8784 38.4247 70.8932 38.4468 70.9154 38.4616C70.9339 38.4801 70.9487 38.5023 70.9709 38.5171C70.9894 38.5356 71.0042 38.5578 71.0265 38.5726C71.045 38.5911 71.0598 38.6133 71.082 38.6281C71.1005 38.6466 71.1153 38.6687 71.1375 38.6835C71.156 38.702 71.1708 38.7242 71.193 38.739C71.2115 38.7575 71.2263 38.7797 71.2486 38.7945C71.2671 38.813 71.2819 38.8315 71.3041 38.85C71.3226 38.8685 71.3374 38.8907 71.3596 38.9054C71.3781 38.9239 71.3929 38.9461 71.4151 38.9609C71.4336 38.9794 71.4485 39.0016 71.4707 39.0164C71.6261 39.1569 71.826 39.2494 72.0296 39.2494H72.7552C73.0735 39.2494 73.3882 39.0238 73.5251 38.7501L80.9878 21.9964L79.9772 19.7403L72.1296 37.3558L72.1074 37.3336Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M67.8838 5.9231C67.9021 5.93787 67.9168 5.95633 67.9352 5.97479C67.9572 5.98956 67.9719 6.01171 67.9902 6.03017C67.9572 5.99325 67.9242 5.95633 67.8838 5.9231Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M69.5607 7.72362C69.5163 7.56089 69.3979 7.40186 69.2461 7.28351C69.2276 7.26502 69.2128 7.24653 69.1906 7.22803C69.1721 7.20954 69.1573 7.19105 69.1351 7.17256C69.1166 7.15407 69.1018 7.13558 69.0796 7.11708C69.0611 7.09859 69.0463 7.0801 69.0241 7.06161C69.0056 7.04312 68.9908 7.02462 68.9686 7.00613C68.95 6.98764 68.9352 6.96915 68.913 6.95065C68.8945 6.93216 68.8797 6.91367 68.8575 6.89518C68.839 6.87669 68.8242 6.8582 68.802 6.8397C68.7835 6.82121 68.7687 6.80272 68.7465 6.78423C68.728 6.76574 68.7132 6.74724 68.691 6.72875C68.6725 6.71026 68.6577 6.69177 68.6355 6.67328C68.6169 6.65478 68.6021 6.63629 68.5799 6.6178C68.5614 6.59931 68.5466 6.58082 68.5244 6.56232C68.5059 6.54383 68.4911 6.52534 68.4689 6.50685C68.4504 6.48836 68.4356 6.46986 68.4134 6.45137C68.3949 6.43288 68.3801 6.41439 68.3579 6.3959C68.3394 6.3774 68.3245 6.35891 68.3023 6.34042C68.2838 6.32193 68.269 6.30344 68.2468 6.28494C68.2283 6.26645 68.2135 6.24796 68.1913 6.22947C68.1728 6.21098 68.158 6.19248 68.1358 6.17399C68.1173 6.1555 68.1025 6.13701 68.0803 6.11852C68.0618 6.10002 68.047 6.08153 68.0247 6.06304C68.0062 6.04455 67.9914 6.02606 67.9692 6.00756C68.0507 6.10002 68.1173 6.20358 68.1469 6.31083L71.3151 18.7855L71.9739 17.2877L69.5385 7.70143L69.5607 7.72362Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M83.0162 7.13568C82.9866 7.04692 82.9311 6.96556 82.8645 6.89159C82.8497 6.8694 82.8275 6.85461 82.809 6.83611C82.7942 6.81392 82.772 6.79913 82.7534 6.78064C82.7386 6.75845 82.7164 6.74365 82.6979 6.72516C82.6831 6.70297 82.6609 6.68818 82.6424 6.66969C82.6276 6.64749 82.6054 6.6327 82.5869 6.61421C82.5721 6.59202 82.5499 6.57723 82.5314 6.55873C82.5166 6.53654 82.4944 6.52175 82.4759 6.50326C82.4611 6.48107 82.4389 6.46627 82.4203 6.44778C82.4055 6.42929 82.3833 6.4108 82.3648 6.39231C82.35 6.37381 82.3278 6.35532 82.3093 6.33683C82.2945 6.31834 82.2723 6.29985 82.2538 6.28135C82.239 6.25916 82.2168 6.24437 82.1983 6.22588C82.1835 6.20369 82.1613 6.18889 82.1428 6.1704C82.128 6.14821 82.1058 6.13342 82.0872 6.11493C82.0724 6.09273 82.0502 6.07794 82.0317 6.05945C82.0169 6.03726 81.9947 6.02247 81.9762 6.00397C81.9614 5.98178 81.9392 5.96699 81.9207 5.9485C81.9059 5.93001 81.8837 5.91151 81.8652 5.89302C81.8504 5.87083 81.8282 5.85604 81.8097 5.83755C81.7949 5.81905 81.7727 5.80056 81.7542 5.78207C81.7393 5.75988 81.7171 5.74509 81.6986 5.72659C81.6838 5.7044 81.6616 5.68961 81.6431 5.67112C81.6283 5.64893 81.6061 5.63413 81.5876 5.61564C81.5728 5.59345 81.5506 5.57866 81.5321 5.56017C81.5173 5.54167 81.4951 5.52318 81.4766 5.50469C81.5321 5.57126 81.5765 5.64153 81.6024 5.7192L87.5316 19.1703L87.8166 18.046L82.9977 7.1098L83.0162 7.13568Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M99.6521 6.78486L91.09 37.2005C90.9975 37.5629 90.6384 37.8329 90.2756 37.8329H89.5501C89.3317 37.8329 89.1133 37.722 88.9541 37.563C88.9615 37.5703 88.9726 37.5814 88.98 37.5888C88.9985 37.6073 89.017 37.6258 89.0355 37.6443C89.054 37.6628 89.0726 37.6813 89.0911 37.6998C89.1059 37.7183 89.1281 37.7368 89.1466 37.7553C89.1651 37.7738 89.1836 37.7922 89.2021 37.8107C89.2206 37.8292 89.2391 37.8477 89.2576 37.8662C89.2725 37.8847 89.2947 37.9032 89.3132 37.9217C89.328 37.9402 89.3502 37.9587 89.3687 37.9772C89.3835 37.9957 89.4057 38.0142 89.4242 38.0326C89.4427 38.0511 89.4612 38.0696 89.4798 38.0881C89.4983 38.1066 89.5168 38.1251 89.5353 38.1436C89.5538 38.1621 89.5723 38.1806 89.5908 38.1991C89.6093 38.2176 89.6278 38.2361 89.6463 38.2546C89.6648 38.273 89.6833 38.2915 89.7019 38.31C89.7204 38.3285 89.7389 38.347 89.7574 38.3655C89.7759 38.384 89.7944 38.4025 89.8129 38.421C89.8314 38.4395 89.8499 38.458 89.8684 38.4765C89.8869 38.4949 89.9054 38.5134 89.924 38.5319C89.9425 38.5504 89.961 38.5689 89.9795 38.5874C89.998 38.6059 90.0165 38.6244 90.035 38.6429C90.0535 38.6614 90.072 38.6799 90.0905 38.6984C90.109 38.7168 90.1275 38.7353 90.1461 38.7538C90.1646 38.7723 90.1831 38.7908 90.2016 38.8093C90.2201 38.8278 90.2386 38.8463 90.2571 38.8648C90.2756 38.8833 90.2941 38.9018 90.3126 38.9203C90.4755 39.1089 90.7161 39.2457 90.9604 39.2457H91.686C92.0487 39.2457 92.4115 38.9757 92.5004 38.6133L101.062 8.19765C101.173 7.81301 101.081 7.49865 100.851 7.30633C100.844 7.29893 100.84 7.29154 100.833 7.28784C100.807 7.25456 100.777 7.22497 100.744 7.19908C100.737 7.19168 100.733 7.18429 100.726 7.18059C100.714 7.16949 100.703 7.15839 100.692 7.1473C100.674 7.12881 100.659 7.11032 100.637 7.09182C100.629 7.08443 100.626 7.07703 100.618 7.07333C100.607 7.06224 100.596 7.04744 100.585 7.04005C100.578 7.03265 100.574 7.02525 100.566 7.02156C100.555 7.01046 100.544 6.99567 100.533 6.98827C100.526 6.98087 100.522 6.97348 100.515 6.96978C100.503 6.95868 100.492 6.94389 100.481 6.93649C100.474 6.92909 100.47 6.9217 100.463 6.918C100.452 6.90691 100.441 6.89211 100.429 6.88471C100.422 6.87732 100.418 6.86992 100.411 6.86622C100.392 6.84773 100.378 6.82924 100.355 6.81075C100.344 6.79965 100.333 6.78486 100.322 6.77746C100.315 6.77006 100.311 6.76267 100.304 6.75897C100.278 6.72568 100.248 6.69609 100.215 6.67021C100.207 6.66281 100.204 6.65541 100.196 6.65172C100.185 6.64062 100.174 6.62952 100.163 6.61843C100.144 6.59994 100.13 6.58145 100.107 6.56295C100.1 6.55556 100.096 6.54816 100.089 6.54446C100.078 6.53337 100.067 6.51857 100.056 6.51117C100.048 6.50378 100.044 6.49638 100.037 6.49268C100.026 6.48159 100.015 6.46679 100.004 6.4594C99.9964 6.452 99.9927 6.44461 99.9853 6.44091C99.9741 6.42981 99.963 6.41502 99.9519 6.40762C99.9445 6.40022 99.9408 6.39283 99.9334 6.38913C99.9149 6.37064 99.9001 6.35214 99.8779 6.33365C99.8668 6.32256 99.8557 6.30776 99.8446 6.30037C99.8372 6.29297 99.8335 6.28557 99.8261 6.28188C99.8002 6.24859 99.7706 6.219 99.7372 6.19311C99.7298 6.18572 99.7261 6.17832 99.7187 6.17462C99.7076 6.16353 99.6965 6.15243 99.6854 6.14133C99.6669 6.12284 99.6521 6.10435 99.6299 6.08586C99.6225 6.07846 99.6188 6.07107 99.6114 6.06737C99.6003 6.05627 99.5892 6.04148 99.5781 6.03408C99.7446 6.2264 99.8039 6.50748 99.7076 6.84403L99.6521 6.78486Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M3.75886 35.8358H9.14857C9.54095 35.8358 9.8593 35.5178 9.8593 35.1257V18.0909H10.1184L10.1628 18.1353L28.057 36.1021C28.1162 36.1613 28.442 36.2833 28.5382 36.2833H29.2637C29.6487 36.2833 29.9745 35.9801 29.9745 35.6213V5.1613C29.9745 4.79146 29.6376 4.4512 29.2637 4.4512H23.8259C23.4335 4.4512 23.1152 4.76927 23.1152 5.1613V21.3788H22.8598L4.78423 4H3.71073C3.32575 4 3 4.30327 3 4.66201L3.04442 35.122C3.04442 35.4919 3.38128 35.8321 3.75516 35.8321L3.75886 35.8358Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M43.9261 23.0723H54.4057C54.7981 23.0723 55.1165 22.7542 55.1165 22.3622V17.4285C55.1165 17.0587 54.7796 16.7184 54.4057 16.7184H43.9261V10.8047H56.6268C57.0192 10.8047 57.3375 10.4866 57.3375 10.0946V5.16091C57.3375 4.76888 57.0192 4.45082 56.6268 4.45082H37.8738C37.4814 4.45082 37.1631 4.76888 37.1631 5.16091V35.1217C37.1631 35.5137 37.4814 35.8318 37.8738 35.8318H56.6268C57.0192 35.8318 57.3375 35.5137 57.3375 35.1217V30.188C57.3375 29.796 57.0192 29.4779 56.6268 29.4779H43.9261V23.0649V23.0723Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M88.1545 36.2865H88.8801C89.1762 36.2865 89.4761 36.0535 89.5501 35.7687L98.1122 5.34939C98.1862 5.0942 98.1603 4.8649 98.0381 4.70587C97.916 4.54684 97.705 4.45808 97.4422 4.45808H92.1413C91.8452 4.45808 91.5416 4.73546 91.4713 4.98325L87.5475 20.4352H87.1514L80.0922 4.4137C80.0255 4.21029 79.8257 4.00688 79.4592 4.00688H78.6448C78.3783 4.00688 78.1377 4.16221 78.0081 4.4211L70.9489 20.4352H70.5528L66.629 4.97955C66.5587 4.73546 66.2588 4.45808 65.959 4.45808H60.6581C60.3953 4.45808 60.1843 4.54684 60.0621 4.70587C59.94 4.8649 59.9141 5.0942 59.9881 5.34939L68.5502 35.765C68.6242 36.0572 68.9241 36.2902 69.2202 36.2902H69.9457C70.1901 36.2902 70.464 36.1127 70.5824 35.876L78.8632 17.2804H79.1964L87.5253 35.8797C87.64 36.109 87.9139 36.2902 88.1582 36.2902L88.1545 36.2865Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M120.416 11.5808H133.117C133.509 11.5808 133.828 11.2627 133.828 10.8707V5.93702C133.828 5.54499 133.509 5.22692 133.117 5.22692H114.364C113.972 5.22692 113.653 5.54499 113.653 5.93702V35.8978C113.653 36.2898 113.972 36.6079 114.364 36.6079H119.709C120.08 36.6079 120.42 36.2713 120.42 35.8978V24.7471H130.9C131.27 24.7471 131.61 24.4105 131.61 24.037V19.1033C131.61 18.7335 131.274 18.3932 130.9 18.3932H120.42V11.5734L120.416 11.5808Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M155.086 36.6115H161.113C161.402 36.6115 161.631 36.4969 161.757 36.2824C161.887 36.0642 161.887 35.772 161.75 35.5205L155.464 23.8743L155.619 23.8114C159.695 22.173 162.231 18.7409 162.231 14.8539C162.231 9.54665 157.87 5.22692 152.506 5.22692H138.962C138.569 5.22692 138.251 5.54499 138.251 5.93702V35.8978C138.251 36.2898 138.569 36.6078 138.962 36.6078H144.351C144.722 36.6078 145.062 36.2713 145.062 35.8978V24.2034H148.431L154.498 36.2824C154.561 36.4081 154.775 36.6078 155.086 36.6078V36.6115ZM151.918 18.7631H145.062V11.3996H151.918C153.865 11.3996 155.512 13.0453 155.512 14.9907C155.512 16.9361 153.832 18.7631 151.918 18.7631Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M168.41 5.23085H173.844C174.236 5.23085 174.555 5.54891 174.555 5.94094V35.9054C174.555 36.2974 174.236 36.6155 173.844 36.6155H168.406C168.014 36.6155 167.695 36.2974 167.695 35.9054V5.94464C167.695 5.55261 168.014 5.23455 168.406 5.23455L168.41 5.23085Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M188.506 23.8484H198.985C199.378 23.8484 199.696 23.5303 199.696 23.1383V18.2046C199.696 17.8348 199.359 17.4945 198.985 17.4945H188.506V11.5808H201.206C201.599 11.5808 201.917 11.2627 201.917 10.8707V5.93702C201.917 5.54499 201.599 5.22692 201.206 5.22692H182.453C182.061 5.22692 181.743 5.54499 181.743 5.93702V35.8978C181.743 36.2898 182.061 36.6079 182.453 36.6079H201.206C201.599 36.6079 201.917 36.2898 201.917 35.8978V30.9641C201.917 30.5721 201.599 30.254 201.206 30.254H188.506V23.841V23.8484Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M232.871 37.0634H233.596C233.981 37.0634 234.307 36.7601 234.307 36.4014V5.94133C234.307 5.57149 233.97 5.23124 233.596 5.23124H228.159C227.766 5.23124 227.448 5.5493 227.448 5.94133V22.1588H227.193L209.117 4.78003H208.047C207.662 4.78003 207.336 5.08331 207.336 5.44205L207.381 35.9021C207.381 36.2719 207.718 36.6122 208.092 36.6122H213.481C213.874 36.6122 214.192 36.2941 214.192 35.9021V18.8672H214.451L214.496 18.9116L232.39 36.8784C232.449 36.9376 232.775 37.0597 232.871 37.0597V37.0634Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M253.212 5.23085H242.158C241.799 5.23085 241.492 5.55631 241.492 5.94094V35.9017C241.492 36.2863 241.796 36.6118 242.158 36.6118H253.212C261.896 36.6118 268.963 29.5515 268.963 20.8751C268.963 12.1986 261.896 5.23085 253.212 5.23085ZM252.757 30.2135H248.255V11.581H252.757C257.88 11.581 261.741 15.5753 261.741 20.8751C261.741 26.1749 257.88 30.2135 252.757 30.2135Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
import { levelVariants } from "../variants"
|
||||
import { levelVariants } from "../../variants"
|
||||
|
||||
import type { LevelProps } from "../levels"
|
||||
import type { LevelProps } from "../../levels"
|
||||
|
||||
export default function ScandicFamily({ className, color }: LevelProps) {
|
||||
const classNames = levelVariants({
|
||||
@@ -1,6 +1,6 @@
|
||||
import { levelVariants } from "../variants"
|
||||
import { levelVariants } from "../../variants"
|
||||
|
||||
import type { LevelProps } from "../levels"
|
||||
import type { LevelProps } from "../../levels"
|
||||
|
||||
export default function ScandicFriends({ className, color }: LevelProps) {
|
||||
const classNames = levelVariants({
|
||||
@@ -0,0 +1,160 @@
|
||||
import { levelVariants } from "../../variants"
|
||||
|
||||
import type { LevelProps } from "../../levels"
|
||||
|
||||
export default function TrueFriend({
|
||||
className,
|
||||
color,
|
||||
height = "44",
|
||||
width = "284",
|
||||
...props
|
||||
}: LevelProps) {
|
||||
const classNames = levelVariants({
|
||||
className,
|
||||
color,
|
||||
})
|
||||
return (
|
||||
<svg
|
||||
className={classNames}
|
||||
fill="none"
|
||||
height={height}
|
||||
viewBox="0 0 284 44"
|
||||
width={width}
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
d="M54.5262 37.9142L48.3584 26.3421C52.2753 24.7485 55.019 21.3751 55.019 17.1826C55.019 14.4571 53.9046 11.9885 52.1135 10.2051C52.0951 10.1864 52.0767 10.1678 52.0584 10.1492C52.04 10.1306 52.0216 10.112 52.0032 10.0934C51.9848 10.0747 51.9664 10.0561 51.948 10.0375C51.9296 10.0189 51.9112 10.0003 51.8929 9.98166C51.8745 9.96305 51.8561 9.94443 51.8377 9.92581C51.8193 9.90719 51.8009 9.88858 51.7825 9.86996C51.7641 9.85134 51.7457 9.83273 51.7274 9.81411C51.709 9.79549 51.6906 9.77688 51.6722 9.75826C51.6538 9.73965 51.6354 9.72103 51.617 9.70241C51.5986 9.68379 51.5802 9.66518 51.5618 9.64656C51.5435 9.62794 51.5251 9.60933 51.5067 9.59071C51.4883 9.57209 51.4699 9.55347 51.4515 9.53486C51.4331 9.51624 51.4147 9.49763 51.3963 9.47901C51.378 9.46039 51.3596 9.44178 51.3412 9.42316C51.3228 9.40454 51.3044 9.38593 51.286 9.36731C51.2676 9.34869 51.2492 9.33007 51.2308 9.31146C51.2125 9.29284 51.1941 9.27422 51.1757 9.25561C51.1573 9.23699 51.1389 9.21838 51.1205 9.19976C51.1021 9.18114 51.0837 9.16252 51.0653 9.14391C51.047 9.12529 51.0286 9.10667 51.0102 9.08806C50.9918 9.06944 50.9734 9.05082 50.955 9.03221C50.9366 9.01359 50.9182 8.99497 50.8998 8.97636C50.8815 8.95774 50.8631 8.93912 50.8447 8.92051C50.8263 8.90189 50.8079 8.88327 50.7895 8.86466C50.7711 8.84604 50.7564 8.83115 50.738 8.81253C52.5144 10.596 53.6141 13.0534 53.6141 15.7603C53.6141 19.9528 50.8704 23.3224 46.9535 24.9198L53.1213 36.4919C53.4376 37.0839 53.1213 37.8137 52.3563 37.8137H46.3687C46.115 37.8137 45.9127 37.6983 45.7803 37.568C45.7913 37.5792 45.8024 37.5903 45.8134 37.6015C45.8281 37.6201 45.8465 37.6387 45.8685 37.6573C45.8833 37.676 45.9016 37.6946 45.9237 37.7132C45.9384 37.7318 45.9568 37.7504 45.9789 37.769C45.9936 37.7877 46.012 37.8063 46.034 37.8249C46.0488 37.8435 46.0672 37.8621 46.0892 37.8807C46.1039 37.8994 46.1223 37.918 46.1444 37.9366C46.1591 37.9552 46.1775 37.9738 46.1996 37.9924C46.2143 38.0111 46.2326 38.0297 46.2547 38.0483C46.2694 38.0669 46.2878 38.0855 46.3099 38.1041C46.3246 38.1228 46.343 38.1414 46.3651 38.16C46.3798 38.1786 46.3982 38.1972 46.4202 38.2158C46.4349 38.2345 46.4533 38.2531 46.4754 38.2717C46.4901 38.2903 46.5085 38.3089 46.5306 38.3275C46.5453 38.3462 46.5637 38.3648 46.5857 38.3834C46.6004 38.402 46.6188 38.4206 46.6409 38.4393C46.6556 38.4579 46.674 38.4765 46.6961 38.4951C46.7108 38.5137 46.7292 38.5323 46.7512 38.5509C46.7659 38.5696 46.7843 38.5882 46.8064 38.6068C46.8211 38.6254 46.8395 38.644 46.8616 38.6627C46.8763 38.6813 46.8947 38.6999 46.9167 38.7185C46.9315 38.7371 46.9498 38.7557 46.9719 38.7743C46.9866 38.793 47.005 38.8116 47.0271 38.8302C47.0418 38.8488 47.0602 38.8674 47.0822 38.886C47.0969 38.9047 47.1153 38.9233 47.1374 38.9419C47.2661 39.0908 47.4905 39.236 47.7737 39.236H53.7612C54.5262 39.236 54.8425 38.5063 54.5262 37.9142Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M36.5897 25.3591V36.9797C36.5897 37.4339 36.1851 37.8435 35.7364 37.8435H30.3815C30.1351 37.8435 29.9291 37.7393 29.7783 37.5792C29.7967 37.5978 29.8114 37.6127 29.8298 37.6313C29.8482 37.6499 29.8629 37.6685 29.885 37.6871C29.9034 37.7057 29.9218 37.7244 29.9401 37.743C29.9585 37.7616 29.9769 37.7802 29.9953 37.7988C30.0137 37.8174 30.0284 37.8361 30.0505 37.8547C30.0689 37.8733 30.0873 37.8919 30.1056 37.9105C30.124 37.9291 30.1387 37.9478 30.1608 37.9664C30.1792 37.985 30.1939 38.0036 30.216 38.0222C30.2344 38.0408 30.2528 38.0595 30.2711 38.0781C30.2895 38.0967 30.3042 38.1153 30.3263 38.1339C30.3447 38.1525 30.3631 38.1712 30.3815 38.1898C30.3999 38.2084 30.4183 38.227 30.4367 38.2456C30.455 38.2642 30.4734 38.2829 30.4918 38.3015C30.5102 38.3201 30.5249 38.3387 30.547 38.3573C30.5654 38.376 30.5801 38.3946 30.6022 38.4132C30.6205 38.4318 30.6389 38.4504 30.6573 38.469C30.6757 38.4876 30.6904 38.5063 30.7125 38.5249C30.7309 38.5435 30.7456 38.5621 30.7677 38.5807C30.7861 38.5994 30.8044 38.618 30.8228 38.6366C30.8412 38.6552 30.8596 38.6738 30.878 38.6924C30.8964 38.711 30.9111 38.7297 30.9332 38.7483C30.9515 38.7669 30.9663 38.7855 30.9883 38.8041C31.0067 38.8228 31.0251 38.8414 31.0435 38.86C31.0619 38.8786 31.0766 38.8972 31.0987 38.9158C31.1171 38.9344 31.1318 38.9531 31.1538 38.9717C31.3083 39.1467 31.5253 39.2658 31.7864 39.2658H37.1414C37.5901 39.2658 37.9946 38.8563 37.9946 38.402V26.7814H39.5614L38.87 25.3889H36.6154L36.5897 25.3591Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M44.6254 13.8579C44.7799 13.8579 44.9312 13.8762 45.082 13.8985C45.0011 13.5002 44.8466 13.1278 44.6333 12.7927C44.2067 12.5917 43.7433 12.4688 43.2504 12.4688H36.5898V18.0315H37.9654V13.8613H44.6259L44.6254 13.8579Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M85.3573 27.0235V8.20572C85.3573 7.9637 85.2397 7.7403 85.0668 7.5802C85.0484 7.56158 85.0337 7.54297 85.0116 7.52435C84.9932 7.50573 84.9785 7.48712 84.9565 7.4685C84.9381 7.44988 84.9234 7.43126 84.9013 7.41265C84.8829 7.39403 84.8682 7.37541 84.8461 7.3568C84.8277 7.33818 84.813 7.31956 84.791 7.30095C84.7726 7.28233 84.7579 7.26371 84.7358 7.2451C84.7174 7.22648 84.7027 7.20786 84.6806 7.18925C84.6622 7.17063 84.6475 7.15201 84.6255 7.1334C84.6071 7.11478 84.5923 7.09616 84.5703 7.07754C84.5519 7.05893 84.5372 7.04031 84.5151 7.02169C84.4967 7.00308 84.482 6.98446 84.46 6.96585C84.4416 6.94723 84.4269 6.92861 84.4048 6.91C84.3864 6.89138 84.3717 6.87276 84.3496 6.85414C84.3312 6.83553 84.3165 6.81691 84.2944 6.79829C84.2761 6.77968 84.2613 6.76106 84.2393 6.74244C84.2209 6.72383 84.2062 6.70521 84.1841 6.68659C84.1657 6.66798 84.151 6.64936 84.129 6.63074C84.1106 6.61213 84.0958 6.59351 84.0738 6.57489C84.0554 6.55628 84.0407 6.53766 84.0186 6.51904C84.0002 6.50043 83.9855 6.48181 83.9634 6.46319C83.945 6.44457 83.9303 6.42596 83.9083 6.40734C83.8899 6.38873 83.8752 6.37011 83.8531 6.35149C83.8347 6.33288 83.82 6.31426 83.7979 6.29564C83.7796 6.27702 83.7648 6.25841 83.7428 6.23979C83.7317 6.22862 83.7207 6.21745 83.7133 6.21001C83.8568 6.36639 83.9524 6.56745 83.9524 6.78712V25.6049C83.9524 32.5304 78.1929 38.2718 71.0799 38.2718C67.5455 38.2718 64.3495 36.8346 62.0361 34.5298C62.0545 34.5484 62.0729 34.5671 62.0913 34.5857C62.1097 34.6043 62.1281 34.6229 62.1465 34.6415C62.1649 34.6601 62.1832 34.6788 62.2016 34.6974C62.22 34.716 62.2384 34.7346 62.2568 34.7532C62.2752 34.7718 62.2936 34.7905 62.312 34.8091C62.3304 34.8277 62.3487 34.8463 62.3671 34.8649C62.3855 34.8835 62.4039 34.9022 62.4223 34.9208C62.4407 34.9394 62.4591 34.958 62.4775 34.9766C62.4959 34.9952 62.5143 35.0139 62.5326 35.0325C62.551 35.0511 62.5694 35.0697 62.5878 35.0883C62.6062 35.1069 62.6246 35.1256 62.643 35.1442C62.6614 35.1628 62.6798 35.1814 62.6981 35.2C62.7165 35.2186 62.7349 35.2373 62.7533 35.2559C62.7717 35.2745 62.7901 35.2931 62.8085 35.3117C62.8269 35.3303 62.8453 35.349 62.8636 35.3676C62.882 35.3862 62.9004 35.4048 62.9188 35.4234C62.9372 35.442 62.9556 35.4607 62.974 35.4793C62.9924 35.4979 63.0108 35.5165 63.0292 35.5351C63.0475 35.5537 63.0659 35.5724 63.0843 35.591C63.1027 35.6096 63.1211 35.6282 63.1395 35.6468C63.1579 35.6654 63.1763 35.6841 63.1946 35.7027C63.213 35.7213 63.2314 35.7399 63.2498 35.7585C63.2682 35.7772 63.2866 35.7958 63.305 35.8144C63.3234 35.833 63.3418 35.8516 63.3602 35.8702C63.3786 35.8889 63.3969 35.9075 63.4153 35.9261C65.7287 38.2457 68.9358 39.6941 72.4886 39.6941C79.6015 39.6941 85.361 33.9527 85.361 27.0273L85.3573 27.0235Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M66.9499 26.6622V8.20928C66.9499 7.96727 66.8433 7.74386 66.6741 7.58004C66.6557 7.56142 66.6374 7.5428 66.619 7.52419C66.6006 7.50557 66.5822 7.48695 66.5638 7.46834C66.5454 7.44972 66.527 7.4311 66.5087 7.41249C66.4903 7.39387 66.4756 7.37525 66.4535 7.35664C66.4351 7.33802 66.4204 7.3194 66.3983 7.30078C66.38 7.28217 66.3616 7.26355 66.3432 7.24494C66.3248 7.22632 66.3101 7.2077 66.288 7.18909C66.2696 7.17047 66.2512 7.15185 66.2329 7.13323C66.2145 7.11462 66.1961 7.096 66.1777 7.07738C66.1593 7.05877 66.1446 7.04015 66.1225 7.02153C66.1042 7.00292 66.0894 6.9843 66.0674 6.96569C66.049 6.94707 66.0306 6.92845 66.0122 6.90983C65.9938 6.89122 65.9791 6.8726 65.9571 6.85398C65.9387 6.83537 65.924 6.81675 65.9019 6.79813C65.8835 6.77952 65.8651 6.7609 65.8467 6.74228C65.8284 6.72366 65.8136 6.70505 65.7916 6.68643C65.7732 6.66782 65.7585 6.6492 65.7364 6.63058C65.718 6.61197 65.6997 6.59335 65.6813 6.57473C65.6629 6.55612 65.6445 6.5375 65.6261 6.51888C65.6077 6.50026 65.5893 6.48165 65.571 6.46303C65.5526 6.44441 65.5342 6.4258 65.5158 6.40718C65.4974 6.38857 65.479 6.36995 65.4606 6.35133C65.4422 6.33271 65.4275 6.3141 65.4055 6.29548C65.3871 6.27686 65.3687 6.25825 65.3503 6.23963C65.3319 6.22101 65.3172 6.2024 65.2988 6.1875C65.4533 6.34761 65.5452 6.55984 65.5452 6.78696V25.2399C65.5452 26.3606 65.8394 27.3994 66.3542 28.2782C66.6631 28.5239 66.9977 28.7361 67.3618 28.9074C67.0823 28.2111 66.9242 27.4441 66.9242 26.6287L66.9499 26.6622Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M144.208 20.828C144.19 20.8094 144.175 20.7908 144.153 20.7721C144.135 20.7535 144.116 20.7349 144.098 20.7163C144.08 20.6977 144.065 20.6791 144.043 20.6604C144.024 20.6418 144.01 20.6232 143.988 20.6046C143.969 20.586 143.954 20.5674 143.932 20.5487C143.914 20.5301 143.899 20.5115 143.877 20.4929C143.859 20.4743 143.844 20.4557 143.822 20.437C143.804 20.4184 143.789 20.3998 143.767 20.3812C143.749 20.3626 143.734 20.344 143.712 20.3253C143.693 20.3067 143.679 20.2881 143.657 20.2695C143.638 20.2509 143.623 20.2323 143.601 20.2136C143.583 20.195 143.568 20.1764 143.546 20.1578C143.528 20.1392 143.513 20.1206 143.491 20.1019C143.473 20.0833 143.458 20.0647 143.436 20.0461C143.418 20.0275 143.403 20.0089 143.381 19.9902C143.362 19.9716 143.348 19.953 143.326 19.9344C143.307 19.9158 143.292 19.8972 143.27 19.8785C143.252 19.8599 143.237 19.8413 143.215 19.8227C143.197 19.8041 143.182 19.7855 143.16 19.7668C143.142 19.7482 143.127 19.7296 143.105 19.711C143.086 19.6924 143.072 19.6738 143.05 19.6551C143.031 19.6365 143.017 19.6179 142.995 19.5993C142.976 19.5807 142.961 19.5621 142.939 19.5434C142.921 19.5248 142.906 19.5062 142.888 19.4913C143.046 19.6514 143.149 19.8636 143.149 20.0908V25.0577C143.149 25.512 142.744 25.9215 142.296 25.9215H132.035V36.9948C132.035 37.449 131.63 37.8586 131.178 37.8586H125.867C125.62 37.8586 125.414 37.7544 125.264 37.5943C125.282 37.6129 125.297 37.6278 125.315 37.6464C125.334 37.665 125.348 37.6836 125.37 37.7022C125.389 37.7208 125.403 37.7395 125.425 37.7581C125.444 37.7767 125.462 37.7953 125.481 37.8139C125.499 37.8325 125.514 37.8512 125.536 37.8698C125.554 37.8884 125.569 37.907 125.591 37.9256C125.609 37.9442 125.628 37.9629 125.646 37.9815C125.665 38.0001 125.679 38.0187 125.701 38.0373C125.72 38.0559 125.734 38.0746 125.757 38.0932C125.775 38.1118 125.793 38.1304 125.812 38.149C125.83 38.1676 125.848 38.1863 125.867 38.2049C125.885 38.2235 125.9 38.2421 125.922 38.2607C125.94 38.2794 125.959 38.298 125.977 38.3166C125.996 38.3352 126.014 38.3538 126.032 38.3724C126.051 38.3911 126.065 38.4097 126.088 38.4283C126.106 38.4469 126.124 38.4655 126.143 38.4841C126.161 38.5027 126.179 38.5214 126.198 38.54C126.216 38.5586 126.235 38.5772 126.253 38.5958C126.271 38.6144 126.286 38.6331 126.308 38.6517C126.327 38.6703 126.345 38.6889 126.363 38.7075C126.382 38.7262 126.4 38.7448 126.419 38.7634C126.437 38.782 126.452 38.8006 126.474 38.8192C126.492 38.8379 126.507 38.8565 126.529 38.8751C126.547 38.8937 126.566 38.9123 126.584 38.9309C126.602 38.9496 126.617 38.9682 126.639 38.9868C126.794 39.1618 127.011 39.2772 127.272 39.2772H132.583C133.031 39.2772 133.44 38.8676 133.44 38.4134V27.3401H143.701C144.149 27.3401 144.554 26.9306 144.554 26.4763V21.5094C144.554 21.2673 144.436 21.0439 144.263 20.8838C144.245 20.8652 144.23 20.8466 144.208 20.828Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M146.426 7.56882C146.408 7.5502 146.389 7.53158 146.371 7.51297C146.353 7.49435 146.338 7.47573 146.316 7.45712C146.297 7.4385 146.279 7.41988 146.261 7.40126C146.242 7.38265 146.224 7.36403 146.205 7.34542C146.187 7.3268 146.172 7.30818 146.15 7.28957C146.132 7.27095 146.117 7.25233 146.095 7.23372C146.077 7.2151 146.058 7.19648 146.04 7.17787C146.022 7.15925 146.003 7.14063 145.985 7.12201C145.966 7.1034 145.952 7.08478 145.93 7.06617C145.911 7.04755 145.893 7.02893 145.874 7.01031C145.856 6.9917 145.838 6.97308 145.819 6.95446C145.801 6.93585 145.786 6.91723 145.764 6.89862C145.746 6.88 145.731 6.86137 145.709 6.84276C145.691 6.82414 145.672 6.80553 145.654 6.78691C145.635 6.7683 145.617 6.74968 145.599 6.73106C145.58 6.71245 145.565 6.69383 145.543 6.67521C145.525 6.65659 145.507 6.63798 145.488 6.61937C145.47 6.60075 145.455 6.58212 145.433 6.56351C145.415 6.54489 145.4 6.52628 145.378 6.50766C145.36 6.48904 145.341 6.47043 145.323 6.45182C145.304 6.4332 145.29 6.41457 145.268 6.39596C145.249 6.37734 145.231 6.35873 145.212 6.34011C145.194 6.32149 145.176 6.30287 145.157 6.28426C145.143 6.26564 145.124 6.24703 145.106 6.23213C145.257 6.39224 145.352 6.60447 145.352 6.83159V11.7985C145.352 12.2528 144.992 12.6624 144.495 12.6624H132.027V17.6814H133.403V14.0549H145.871C146.367 14.0549 146.728 13.6453 146.728 13.1911V8.22413C146.728 7.98211 146.621 7.75871 146.452 7.59488C146.433 7.57626 146.415 7.55765 146.397 7.53903L146.426 7.56882Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M174.977 17.2263C174.977 14.5008 173.863 12.0322 172.072 10.2487C172.053 10.2301 172.035 10.2115 172.016 10.1929C171.998 10.1742 171.98 10.1556 171.961 10.137C171.943 10.1184 171.924 10.0998 171.906 10.0812C171.888 10.0625 171.869 10.0439 171.851 10.0253C171.832 10.0067 171.814 9.98808 171.796 9.96946C171.777 9.95085 171.759 9.93223 171.741 9.91361C171.722 9.895 171.704 9.87638 171.685 9.85777C171.667 9.83915 171.649 9.82053 171.63 9.80191C171.612 9.7833 171.593 9.76468 171.575 9.74606C171.557 9.72745 171.538 9.70883 171.52 9.69021C171.501 9.6716 171.483 9.65297 171.465 9.63436C171.446 9.61574 171.428 9.59713 171.41 9.57851C171.391 9.5599 171.373 9.54128 171.354 9.52266C171.336 9.50405 171.318 9.48543 171.299 9.46681C171.281 9.44819 171.262 9.42958 171.244 9.41096C171.226 9.39235 171.207 9.37372 171.189 9.35511C171.17 9.33649 171.152 9.31788 171.134 9.29926C171.115 9.28064 171.097 9.26203 171.079 9.24341C171.06 9.2248 171.042 9.20617 171.023 9.18756C171.005 9.16894 170.987 9.15033 170.968 9.13171C170.95 9.11309 170.931 9.09447 170.913 9.07586C170.895 9.05724 170.876 9.03862 170.858 9.02001C170.839 9.00139 170.821 8.98277 170.803 8.96416C170.784 8.94554 170.766 8.92692 170.747 8.90831C170.729 8.88969 170.714 8.8748 170.696 8.85618C172.472 10.6397 173.572 13.0971 173.572 15.804C173.572 19.9965 170.828 23.3698 166.912 24.9634L173.079 36.5356C173.396 37.1276 173.079 37.8574 172.314 37.8574H166.327C166.073 37.8574 165.867 37.742 165.738 37.6116C165.749 37.6228 165.76 37.634 165.771 37.6451C165.786 37.6638 165.804 37.6824 165.827 37.701C165.841 37.7196 165.86 37.7382 165.882 37.7569C165.896 37.7755 165.915 37.7941 165.937 37.8127C165.952 37.8313 165.97 37.8499 165.992 37.8685C166.007 37.8872 166.025 37.9058 166.047 37.9244C166.062 37.943 166.08 37.9616 166.102 37.9802C166.117 37.9989 166.135 38.0175 166.158 38.0361C166.172 38.0547 166.191 38.0733 166.213 38.0919C166.227 38.1106 166.246 38.1292 166.268 38.1478C166.283 38.1664 166.301 38.185 166.323 38.2036C166.338 38.2223 166.356 38.2409 166.378 38.2595C166.393 38.2781 166.411 38.2967 166.433 38.3154C166.448 38.334 166.466 38.3526 166.489 38.3712C166.503 38.3898 166.522 38.4084 166.544 38.427C166.558 38.4457 166.577 38.4643 166.599 38.4829C166.614 38.5015 166.632 38.5201 166.654 38.5387C166.669 38.5574 166.687 38.576 166.709 38.5946C166.724 38.6132 166.742 38.6318 166.764 38.6505C166.779 38.6691 166.797 38.6877 166.82 38.7063C166.834 38.7249 166.853 38.7435 166.875 38.7621C166.889 38.7808 166.908 38.7994 166.93 38.818C166.945 38.8366 166.963 38.8552 166.985 38.8739C167 38.8925 167.018 38.9111 167.04 38.9297C167.055 38.9483 167.073 38.9669 167.095 38.9855C167.224 39.1345 167.448 39.2797 167.732 39.2797H173.719C174.484 39.2797 174.8 38.5499 174.484 37.9579L168.316 26.3857C172.233 24.7921 174.977 21.4188 174.977 17.2263Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M157.92 13.8986L164.58 13.8983C164.735 13.8983 164.885 13.9169 165.036 13.9393C164.955 13.5409 164.801 13.1678 164.587 12.8327C164.161 12.6316 163.697 12.5088 163.205 12.5088H156.544V18.0715L157.919 18.0722V13.902L157.92 13.8986Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M156.544 25.4028V37.0233C156.544 37.4776 156.139 37.8872 155.691 37.8872H150.336C150.089 37.8872 149.883 37.7829 149.732 37.6228C149.751 37.6414 149.766 37.66 149.784 37.6749C149.802 37.6935 149.817 37.7121 149.839 37.7308C149.857 37.7494 149.876 37.768 149.894 37.7866C149.913 37.8052 149.931 37.8239 149.949 37.8425C149.968 37.8611 149.983 37.8797 150.005 37.8983C150.023 37.9169 150.038 37.9356 150.06 37.9542C150.078 37.9728 150.097 37.9914 150.115 38.01C150.133 38.0286 150.148 38.0472 150.17 38.0659C150.188 38.0845 150.203 38.1031 150.225 38.1217C150.244 38.1403 150.262 38.159 150.28 38.1776C150.299 38.1962 150.317 38.2148 150.336 38.2334C150.354 38.252 150.369 38.2707 150.391 38.2893C150.409 38.3079 150.428 38.3265 150.446 38.3451C150.464 38.3637 150.483 38.3824 150.501 38.401C150.519 38.4196 150.534 38.4382 150.556 38.4568C150.575 38.4754 150.593 38.4941 150.611 38.5127C150.63 38.5313 150.645 38.5499 150.667 38.5685C150.685 38.5871 150.703 38.6058 150.722 38.6244C150.74 38.643 150.755 38.6616 150.777 38.6802C150.795 38.6988 150.814 38.7175 150.832 38.7361C150.85 38.7547 150.869 38.7733 150.887 38.7919C150.906 38.8105 150.92 38.8292 150.942 38.8478C150.961 38.8664 150.979 38.885 150.998 38.9036C151.016 38.9222 151.031 38.9409 151.053 38.9595C151.071 38.9781 151.086 38.9967 151.108 39.0153C151.262 39.1903 151.479 39.3095 151.741 39.3095H157.095C157.544 39.3095 157.949 38.8999 157.949 38.4457V26.8251H159.515L158.824 25.4325H156.57L156.544 25.4028Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M186.876 7.56882C186.857 7.5502 186.842 7.53158 186.82 7.51297C186.802 7.49435 186.787 7.47573 186.765 7.45712C186.747 7.4385 186.728 7.41988 186.71 7.40126C186.692 7.38265 186.677 7.36403 186.655 7.34542C186.636 7.3268 186.622 7.30818 186.6 7.28957C186.581 7.27095 186.567 7.25233 186.545 7.23372C186.526 7.2151 186.511 7.19648 186.489 7.17787C186.471 7.15925 186.456 7.14063 186.434 7.12201C186.416 7.1034 186.401 7.08478 186.379 7.06617C186.361 7.04755 186.346 7.02893 186.324 7.01031C186.305 6.9917 186.291 6.97308 186.269 6.95446C186.25 6.93585 186.236 6.91723 186.214 6.89862C186.195 6.88 186.18 6.86138 186.158 6.84276C186.14 6.82415 186.125 6.80553 186.103 6.78691C186.085 6.7683 186.07 6.74968 186.048 6.73106C186.03 6.71245 186.015 6.69383 185.993 6.67521C185.974 6.65659 185.96 6.63798 185.938 6.61937C185.919 6.60075 185.905 6.58212 185.883 6.56351C185.864 6.54489 185.849 6.52628 185.827 6.50766C185.809 6.48904 185.791 6.47043 185.772 6.45182C185.754 6.4332 185.739 6.41457 185.717 6.39596C185.699 6.37734 185.684 6.35873 185.662 6.34011C185.643 6.32149 185.629 6.30287 185.607 6.28426C185.588 6.26564 185.574 6.24703 185.555 6.23213C185.71 6.39224 185.816 6.60074 185.816 6.82787V36.9908C185.816 37.445 185.412 37.8546 184.963 37.8546H179.56C179.347 37.8546 179.145 37.7578 178.99 37.6088C179.001 37.62 179.012 37.6312 179.023 37.6423C179.042 37.661 179.056 37.6796 179.079 37.6982C179.097 37.7168 179.112 37.7354 179.134 37.754C179.152 37.7727 179.167 37.7913 179.189 37.8099C179.207 37.8285 179.222 37.8471 179.244 37.8657C179.262 37.8843 179.281 37.903 179.299 37.9216C179.318 37.9402 179.332 37.9588 179.354 37.9774C179.373 37.9961 179.387 38.0147 179.41 38.0333C179.428 38.0519 179.443 38.0705 179.465 38.0891C179.483 38.1078 179.498 38.1264 179.52 38.145C179.538 38.1636 179.553 38.1822 179.575 38.2009C179.593 38.2195 179.608 38.2381 179.63 38.2567C179.649 38.2753 179.663 38.2939 179.685 38.3125C179.704 38.3312 179.718 38.3498 179.741 38.3684C179.759 38.387 179.774 38.4056 179.796 38.4242C179.814 38.4429 179.829 38.4615 179.851 38.4801C179.869 38.4987 179.884 38.5173 179.906 38.5359C179.924 38.5546 179.939 38.5732 179.961 38.5918C179.98 38.6104 179.994 38.629 180.016 38.6476C180.035 38.6663 180.049 38.6849 180.072 38.7035C180.09 38.7221 180.105 38.7407 180.127 38.7593C180.145 38.778 180.16 38.7966 180.182 38.8152C180.2 38.8338 180.215 38.8524 180.237 38.871C180.255 38.8897 180.27 38.9083 180.292 38.9269C180.311 38.9455 180.325 38.9641 180.347 38.9827C180.505 39.1577 180.726 39.2769 180.965 39.2769H186.368C186.817 39.2769 187.221 38.8673 187.221 38.4131V8.25019C187.221 8.00817 187.104 7.78477 186.931 7.62467C186.912 7.60605 186.898 7.58743 186.876 7.56882Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M214.076 32.7644C214.058 32.7458 214.043 32.7271 214.021 32.7085C214.003 32.6899 213.984 32.6713 213.966 32.6527C213.947 32.6341 213.929 32.6154 213.911 32.5968C213.892 32.5782 213.878 32.5596 213.855 32.541C213.837 32.5224 213.822 32.5037 213.8 32.4851C213.782 32.4665 213.764 32.4479 213.745 32.4293C213.727 32.4107 213.712 32.392 213.69 32.3734C213.672 32.3548 213.657 32.3362 213.635 32.3176C213.616 32.299 213.598 32.2803 213.58 32.2617C213.561 32.2431 213.547 32.2245 213.524 32.2059C213.506 32.1873 213.491 32.1686 213.469 32.15C213.451 32.1314 213.433 32.1128 213.414 32.0942C213.396 32.0755 213.381 32.0569 213.359 32.0383C213.341 32.0197 213.326 32.0011 213.304 31.9825C213.285 31.9639 213.267 31.9452 213.249 31.9266C213.23 31.908 213.212 31.8894 213.193 31.8708C213.175 31.8522 213.16 31.8335 213.138 31.8149C213.12 31.7963 213.102 31.7777 213.083 31.7591C213.065 31.7404 213.046 31.7218 213.028 31.7032C213.01 31.6846 212.995 31.666 212.973 31.6474C212.954 31.6288 212.94 31.6101 212.918 31.5915C212.899 31.5729 212.881 31.5543 212.862 31.5357C212.844 31.517 212.826 31.4984 212.807 31.4798C212.793 31.4612 212.774 31.4426 212.756 31.4277C212.907 31.5878 213.002 31.8 213.002 32.0272V36.9941C213.002 37.4484 212.642 37.8579 212.145 37.8579H193.513C193.267 37.8579 193.061 37.7537 192.91 37.5936C192.925 37.6122 192.943 37.6271 192.962 37.6457C192.98 37.6643 192.998 37.6829 193.017 37.7015C193.035 37.7202 193.05 37.7388 193.072 37.7574C193.09 37.776 193.105 37.7946 193.127 37.8132C193.146 37.8319 193.164 37.8505 193.182 37.8691C193.201 37.8877 193.219 37.9063 193.237 37.9249C193.256 37.9436 193.271 37.9622 193.293 37.9808C193.311 37.9994 193.326 38.018 193.348 38.0366C193.366 38.0553 193.385 38.0739 193.403 38.0925C193.421 38.1111 193.436 38.1297 193.458 38.1483C193.477 38.167 193.491 38.1856 193.513 38.2042C193.532 38.2228 193.55 38.2414 193.568 38.26C193.587 38.2787 193.605 38.2973 193.624 38.3159C193.642 38.3345 193.657 38.3531 193.679 38.3717C193.697 38.3904 193.716 38.409 193.734 38.4276C193.752 38.4462 193.771 38.4648 193.789 38.4834C193.808 38.5021 193.822 38.5207 193.844 38.5393C193.863 38.5579 193.881 38.5765 193.9 38.5951C193.918 38.6138 193.933 38.6324 193.955 38.651C193.973 38.6696 193.991 38.6882 194.01 38.7068C194.028 38.7255 194.047 38.7441 194.065 38.7627C194.083 38.7813 194.102 38.7999 194.12 38.8186C194.139 38.8372 194.157 38.8558 194.175 38.8744C194.194 38.893 194.208 38.9116 194.23 38.9302C194.249 38.9489 194.267 38.9675 194.286 38.9861C194.44 39.1611 194.657 39.2765 194.918 39.2765H213.55C214.047 39.2765 214.407 38.8669 214.407 38.4127V33.4457C214.407 33.2037 214.3 32.9803 214.131 32.8165C214.113 32.7979 214.095 32.7793 214.076 32.7607V32.7644Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M201.083 26.4312H211.344C211.793 26.4312 212.197 26.0663 212.197 25.5674V20.6004C212.197 20.3584 212.079 20.135 211.907 19.9749C211.888 19.9563 211.873 19.9377 211.851 19.9191C211.833 19.9004 211.818 19.8818 211.796 19.8632C211.778 19.8446 211.763 19.826 211.741 19.8074C211.723 19.7887 211.708 19.7701 211.686 19.7515C211.668 19.7329 211.653 19.7143 211.631 19.6957C211.612 19.677 211.598 19.6584 211.576 19.6398C211.557 19.6212 211.542 19.6026 211.52 19.584C211.502 19.5653 211.487 19.5467 211.465 19.5281C211.447 19.5095 211.432 19.4909 211.41 19.4723C211.392 19.4536 211.377 19.435 211.355 19.4164C211.336 19.3978 211.322 19.3792 211.3 19.3606C211.281 19.3419 211.267 19.3233 211.245 19.3047C211.226 19.2861 211.211 19.2675 211.189 19.2489C211.171 19.2302 211.156 19.2116 211.134 19.193C211.116 19.1744 211.101 19.1558 211.079 19.1372C211.061 19.1185 211.046 19.0999 211.024 19.0813C211.006 19.0627 210.991 19.0441 210.969 19.0255C210.95 19.0068 210.936 18.9882 210.914 18.9696C210.895 18.951 210.88 18.9324 210.858 18.9138C210.84 18.8951 210.825 18.8765 210.803 18.8579C210.785 18.8393 210.766 18.8207 210.748 18.8021C210.73 18.7834 210.715 18.7648 210.693 18.7462C210.674 18.7276 210.66 18.709 210.638 18.6904C210.619 18.6717 210.605 18.6531 210.583 18.6345C210.564 18.6159 210.549 18.5973 210.531 18.5824C210.689 18.7425 210.792 18.951 210.792 19.1781V24.1451C210.792 24.6477 210.388 25.0089 209.939 25.0089H199.678V29.6147H201.053V26.3977L201.083 26.4312Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M214.077 7.56882C214.058 7.5502 214.043 7.53158 214.021 7.51297C214.003 7.49435 213.985 7.47573 213.966 7.45712C213.948 7.4385 213.929 7.41988 213.911 7.40126C213.893 7.38265 213.878 7.36403 213.856 7.34542C213.837 7.3268 213.823 7.30818 213.801 7.28957C213.782 7.27095 213.764 7.25233 213.745 7.23372C213.727 7.2151 213.712 7.19648 213.69 7.17787C213.672 7.15925 213.657 7.14063 213.635 7.12201C213.617 7.1034 213.598 7.08478 213.58 7.06617C213.562 7.04755 213.547 7.02893 213.525 7.01031C213.506 6.9917 213.492 6.97308 213.47 6.95446C213.451 6.93585 213.433 6.91723 213.414 6.89862C213.396 6.88 213.378 6.86138 213.359 6.84276C213.341 6.82415 213.326 6.80553 213.304 6.78691C213.286 6.7683 213.267 6.74968 213.249 6.73106C213.231 6.71245 213.212 6.69383 213.194 6.67521C213.175 6.65659 213.161 6.63798 213.139 6.61937C213.12 6.60075 213.102 6.58212 213.083 6.56351C213.065 6.54489 213.047 6.52628 213.028 6.50766C213.01 6.48904 212.992 6.47043 212.973 6.45182C212.955 6.4332 212.94 6.41457 212.918 6.39596C212.9 6.37734 212.881 6.35873 212.863 6.34011C212.844 6.32149 212.826 6.30287 212.808 6.28426C212.793 6.26564 212.775 6.24703 212.756 6.23213C212.907 6.39224 213.003 6.60447 213.003 6.83159V11.7985C213.003 12.2528 212.642 12.6624 212.146 12.6624H199.678V16.7692H201.053V14.0549H213.521C214.018 14.0549 214.378 13.6453 214.378 13.1911V8.22413C214.378 7.98211 214.271 7.75871 214.102 7.59488C214.084 7.57626 214.065 7.55765 214.047 7.53903L214.077 7.56882Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M246.242 7.56879C246.224 7.55017 246.209 7.53156 246.187 7.51294C246.169 7.49432 246.154 7.47571 246.132 7.45709C246.114 7.43847 246.099 7.41985 246.077 7.40123C246.059 7.38262 246.044 7.36401 246.022 7.34539C246.003 7.32677 245.989 7.30816 245.967 7.28954C245.948 7.27092 245.934 7.2523 245.911 7.23368C245.893 7.21507 245.878 7.19646 245.856 7.17784C245.838 7.15922 245.823 7.1406 245.801 7.12198C245.783 7.10337 245.768 7.08475 245.746 7.06614C245.728 7.04752 245.713 7.0289 245.691 7.01029C245.672 6.99167 245.658 6.97305 245.636 6.95443C245.617 6.93582 245.603 6.9172 245.58 6.89859C245.562 6.87997 245.547 6.86135 245.525 6.84273C245.507 6.82411 245.492 6.8055 245.47 6.78688C245.452 6.76827 245.437 6.74965 245.415 6.73103C245.397 6.71242 245.382 6.6938 245.36 6.67518C245.341 6.65657 245.327 6.63795 245.305 6.61934C245.286 6.60072 245.272 6.5821 245.25 6.56348C245.231 6.54486 245.216 6.52625 245.194 6.50763C245.176 6.48902 245.161 6.4704 245.139 6.45179C245.121 6.43317 245.106 6.41455 245.084 6.39593C245.066 6.37731 245.051 6.3587 245.029 6.34008C245.01 6.32147 244.996 6.30285 244.974 6.28423C244.963 6.27306 244.952 6.26189 244.941 6.25072C245.088 6.4071 245.183 6.60816 245.183 6.82784V37.4934C245.183 37.9476 244.779 38.3125 244.33 38.3125H243.609C243.473 38.3125 243.113 38.1748 243.025 38.0854L242.999 38.0593L243.205 38.2827L243.359 38.4391L243.411 38.495L243.514 38.5992L243.565 38.6551L243.617 38.7072L243.72 38.8189L243.775 38.8747L243.826 38.9306L243.878 38.9827L243.929 39.0386L244.032 39.1428L244.084 39.1987L244.135 39.2508L244.341 39.4742C244.429 39.5673 244.79 39.7013 244.926 39.7013H245.647C246.095 39.7013 246.5 39.3364 246.5 38.8822V8.21665C246.5 7.97463 246.382 7.75123 246.209 7.59113C246.191 7.57251 246.176 7.5539 246.154 7.53528L246.242 7.56879Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M225.228 37.0205C225.228 37.4748 224.867 37.8844 224.374 37.8844H219.02C218.806 37.8844 218.608 37.7876 218.453 37.6424C218.464 37.6535 218.472 37.6647 218.483 37.6721C218.501 37.6908 218.516 37.7094 218.538 37.728C218.556 37.7466 218.571 37.7652 218.593 37.7838C218.611 37.8025 218.626 37.8211 218.648 37.8397C218.666 37.8583 218.681 37.8769 218.703 37.8955C218.722 37.9142 218.736 37.9328 218.758 37.9514C218.777 37.97 218.791 37.9886 218.814 38.0072C218.832 38.0258 218.847 38.0445 218.869 38.0631C218.887 38.0817 218.902 38.1003 218.924 38.1189C218.942 38.1376 218.957 38.1562 218.979 38.1748C218.997 38.1934 219.012 38.212 219.034 38.2306C219.053 38.2493 219.067 38.2679 219.089 38.2865C219.108 38.3051 219.122 38.3237 219.145 38.3423C219.163 38.361 219.178 38.3796 219.2 38.3982C219.218 38.4168 219.233 38.4354 219.255 38.454C219.273 38.4727 219.288 38.4913 219.31 38.5099C219.328 38.5285 219.343 38.5471 219.365 38.5657C219.384 38.5844 219.398 38.603 219.42 38.6216C219.439 38.6402 219.453 38.6588 219.476 38.6774C219.494 38.6961 219.509 38.7147 219.531 38.7333C219.549 38.7519 219.564 38.7705 219.586 38.7891C219.604 38.8078 219.619 38.8264 219.641 38.845C219.659 38.8636 219.674 38.8822 219.696 38.9008C219.715 38.9195 219.729 38.9381 219.751 38.9567C219.77 38.9753 219.785 38.9939 219.807 39.0125C219.965 39.1875 220.185 39.3067 220.424 39.3067H225.779C226.276 39.3067 226.633 38.8971 226.633 38.4429V21.6319L225.257 20.2319V37.0503L225.228 37.0205Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M276.302 11.9774C276.302 11.9774 276.266 11.9402 276.247 11.9216C276.229 11.903 276.21 11.8843 276.196 11.8694C276.177 11.8508 276.159 11.8322 276.141 11.8136C276.122 11.795 276.104 11.7764 276.085 11.7577C276.067 11.7391 276.049 11.7205 276.03 11.7019C276.012 11.6833 275.993 11.6647 275.975 11.646C275.957 11.6274 275.938 11.6088 275.924 11.5939C275.905 11.5753 275.887 11.5567 275.868 11.5381C275.85 11.5195 275.832 11.5008 275.817 11.4859C275.799 11.4673 275.78 11.4487 275.762 11.4301C275.743 11.4115 275.725 11.3929 275.707 11.3742C275.688 11.3556 275.67 11.337 275.651 11.3184C275.633 11.2998 275.615 11.2812 275.596 11.2625C275.578 11.2439 275.559 11.2253 275.545 11.2104C275.526 11.1918 275.508 11.1732 275.49 11.1546C275.471 11.1359 275.453 11.1173 275.438 11.1024C275.42 11.0838 275.401 11.0652 275.383 11.0466C275.365 11.028 275.346 11.0094 275.328 10.9907C275.309 10.9721 275.291 10.9535 275.273 10.9349C275.273 10.9349 275.269 10.9312 275.265 10.9274C275.276 10.9423 275.287 10.9572 275.295 10.9721C277.983 13.8242 279.642 17.6704 279.642 21.889C279.642 30.7282 272.529 37.8808 263.846 37.8808H252.863C252.643 37.8808 252.448 37.7765 252.301 37.6202C252.315 37.6388 252.334 37.6537 252.352 37.6723C252.371 37.6909 252.389 37.7095 252.407 37.7281C252.426 37.7468 252.444 37.7654 252.463 37.784C252.481 37.8026 252.499 37.8212 252.518 37.8398C252.536 37.8585 252.555 37.8771 252.573 37.8957C252.591 37.9143 252.61 37.9329 252.628 37.9515C252.647 37.9701 252.665 37.9888 252.683 38.0074C252.702 38.026 252.72 38.0446 252.738 38.0632C252.757 38.0819 252.775 38.1005 252.794 38.1191C252.812 38.1377 252.83 38.1563 252.849 38.1749C252.867 38.1936 252.886 38.2122 252.904 38.2308C252.922 38.2494 252.941 38.268 252.959 38.2866C252.977 38.3053 252.996 38.3239 253.014 38.3425C253.033 38.3611 253.051 38.3797 253.069 38.3983C253.088 38.417 253.106 38.4356 253.125 38.4542C253.143 38.4728 253.161 38.4914 253.18 38.51C253.198 38.5286 253.217 38.5473 253.235 38.5659C253.253 38.5845 253.272 38.6031 253.29 38.6217C253.308 38.6404 253.327 38.659 253.345 38.6776C253.364 38.6962 253.382 38.7148 253.4 38.7334C253.419 38.7521 253.437 38.7707 253.456 38.7893C253.474 38.8079 253.492 38.8265 253.511 38.8451C253.529 38.8638 253.548 38.8824 253.566 38.901C253.584 38.9196 253.603 38.9382 253.621 38.9568C253.64 38.9755 253.658 38.9941 253.676 39.0127C253.823 39.184 254.029 39.3031 254.268 39.3031H265.25C273.938 39.3031 281.047 32.1505 281.047 23.3113C281.047 18.9252 279.259 14.9412 276.38 12.0556C276.361 12.037 276.343 12.0184 276.328 12.0035L276.302 11.9774Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M263.397 12.6878H259.075V29.5993L260.45 29.5997V14.0808L264.772 14.0811C266.394 14.0811 267.862 14.5055 269.123 15.2316C268.88 14.863 268.612 14.516 268.321 14.1958C266.942 13.2426 265.269 12.6878 263.397 12.6878Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M18.6308 12.6479V36.98C18.6308 37.4342 18.2262 37.8438 17.7738 37.8438H12.3748C12.1614 37.8438 11.9592 37.747 11.8047 37.5981C11.8157 37.6092 11.8268 37.6204 11.8378 37.6316C11.8562 37.6502 11.8709 37.6688 11.893 37.6874C11.9113 37.706 11.9261 37.7247 11.9481 37.7433C11.9665 37.7619 11.9812 37.7805 12.0033 37.7991C12.0217 37.8177 12.0364 37.8364 12.0585 37.855C12.0768 37.8736 12.0916 37.8922 12.1136 37.9108C12.132 37.9294 12.1467 37.9481 12.1688 37.9667C12.1872 37.9853 12.2019 38.0039 12.224 38.0225C12.2424 38.0411 12.2571 38.0598 12.2791 38.0784C12.2975 38.097 12.3122 38.1156 12.3343 38.1342C12.3527 38.1528 12.3674 38.1715 12.3895 38.1901C12.4079 38.2087 12.4226 38.2273 12.4446 38.2459C12.463 38.2645 12.4777 38.2832 12.4998 38.3018C12.5182 38.3204 12.5329 38.339 12.555 38.3576C12.5734 38.3762 12.5917 38.3949 12.6101 38.4135C12.6285 38.4321 12.6432 38.4507 12.6653 38.4693C12.6837 38.4879 12.6984 38.5066 12.7205 38.5252C12.7389 38.5438 12.7536 38.5624 12.7756 38.581C12.794 38.5996 12.8087 38.6183 12.8308 38.6369C12.8492 38.6555 12.8639 38.6741 12.886 38.6927C12.9044 38.7113 12.9191 38.73 12.9411 38.7486C12.9595 38.7672 12.9742 38.7858 12.9963 38.8044C13.0147 38.823 13.0294 38.8417 13.0515 38.8603C13.0699 38.8789 13.0846 38.8975 13.1066 38.9161C13.125 38.9347 13.1397 38.9534 13.1618 38.972C13.32 39.147 13.5406 39.2661 13.7797 39.2661H19.1788C19.6275 39.2661 20.0357 38.8566 20.0357 38.4023V14.0702H26.4719C26.9684 14.0702 27.3289 13.6606 27.3289 13.2027V8.2357C27.3289 7.99368 27.2222 7.77028 27.053 7.60646C27.0346 7.58784 27.0163 7.56922 26.9979 7.5506C26.9795 7.53199 26.9648 7.51337 26.9427 7.49475C26.9243 7.47614 26.9059 7.45752 26.8875 7.4389C26.8691 7.42029 26.8508 7.40167 26.8324 7.38305C26.814 7.36444 26.7993 7.34582 26.7772 7.3272C26.7588 7.30859 26.7404 7.28997 26.722 7.27135C26.7036 7.25274 26.6853 7.23412 26.6669 7.2155C26.6485 7.19689 26.6338 7.17827 26.6117 7.15965C26.5933 7.14103 26.5786 7.12242 26.5565 7.1038C26.5381 7.08518 26.5197 7.06657 26.5014 7.04795C26.483 7.02934 26.4683 7.01072 26.4462 6.9921C26.4278 6.97348 26.4131 6.95487 26.391 6.93625C26.3726 6.91763 26.3542 6.89902 26.3359 6.8804C26.3175 6.86178 26.2991 6.84317 26.2807 6.82455C26.2623 6.80593 26.2476 6.78732 26.2255 6.7687C26.2071 6.75008 26.1924 6.73147 26.1703 6.71285C26.152 6.69423 26.1336 6.67562 26.1152 6.657C26.0968 6.63838 26.0821 6.61977 26.06 6.60115C26.0416 6.58253 26.0232 6.56391 26.0048 6.5453C25.9865 6.52668 25.9681 6.50807 25.9497 6.48945C25.9313 6.47083 25.9129 6.45222 25.8945 6.4336C25.8761 6.41498 25.8614 6.39636 25.8393 6.37775C25.821 6.35913 25.8062 6.34051 25.7842 6.3219C25.7658 6.30328 25.7474 6.28466 25.729 6.26605C25.7106 6.24743 25.6959 6.22881 25.6775 6.21392C25.832 6.37402 25.9276 6.58625 25.9276 6.81338V11.7803C25.9276 12.2346 25.5672 12.6479 25.0744 12.6479H18.6308Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M5.01459 12.9263C5.03298 12.9449 5.04768 12.9635 5.06975 12.9821C5.08813 13.0007 5.10652 13.0193 5.12491 13.038C5.14329 13.0566 5.158 13.0752 5.18007 13.0938C5.19845 13.1124 5.21316 13.1311 5.23522 13.1497C5.25361 13.1683 5.272 13.1869 5.29038 13.2055C5.30877 13.2241 5.32715 13.2428 5.34554 13.2614C5.36393 13.28 5.37864 13.2986 5.4007 13.3172C5.41909 13.3358 5.4338 13.3545 5.45586 13.3731C5.47425 13.3917 5.49263 13.4103 5.51102 13.4289C5.5294 13.4475 5.54412 13.4662 5.56618 13.4848C5.58457 13.5034 5.59927 13.522 5.62134 13.5406C5.63972 13.5592 5.65811 13.5779 5.6765 13.5965C5.69488 13.6151 5.71327 13.6337 5.73166 13.6523C5.75004 13.6709 5.76475 13.6896 5.78681 13.7082C5.8052 13.7268 5.82359 13.7454 5.84198 13.764C5.99642 13.939 6.21338 14.0582 6.47447 14.0582H10.0083V12.6656H5.09916C4.85279 12.6656 4.64686 12.5614 4.49609 12.4013C4.51448 12.4199 4.52919 12.4348 4.54757 12.4534C4.56596 12.472 4.58435 12.4906 4.60273 12.5093C4.62112 12.5279 4.63951 12.5465 4.65789 12.5651C4.67628 12.5837 4.69099 12.6023 4.71305 12.621C4.73144 12.6396 4.74983 12.6582 4.76821 12.6768C4.7866 12.6954 4.80131 12.714 4.82337 12.7327C4.84176 12.7513 4.86014 12.7699 4.87853 12.7885C4.89691 12.8071 4.9153 12.8257 4.93369 12.8444C4.95208 12.863 4.97046 12.8816 4.98885 12.9002C5.00723 12.9188 5.02562 12.9374 5.04401 12.9561L5.01459 12.9263Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M109.819 37.8436H91.1872C90.9407 37.8436 90.7348 37.7394 90.584 37.5793C90.6024 37.5979 90.6171 37.6128 90.6355 37.6314C90.6539 37.65 90.6723 37.6686 90.6906 37.6872C90.709 37.7059 90.7274 37.7245 90.7458 37.7431C90.7642 37.7617 90.7826 37.7803 90.801 37.7989C90.8194 37.8176 90.8378 37.8362 90.8562 37.8548C90.8745 37.8734 90.8929 37.892 90.9113 37.9106C90.9297 37.9293 90.9444 37.9479 90.9665 37.9665C90.9849 37.9851 91.0033 38.0037 91.0217 38.0223C91.04 38.041 91.0584 38.0596 91.0768 38.0782C91.0952 38.0968 91.1136 38.1154 91.132 38.134C91.1504 38.1527 91.1651 38.1713 91.1872 38.1899C91.2055 38.2085 91.2239 38.2271 91.2423 38.2457C91.2607 38.2644 91.2791 38.283 91.2975 38.3016C91.3159 38.3202 91.3306 38.3388 91.3527 38.3574C91.371 38.3761 91.3894 38.3947 91.4078 38.4133C91.4262 38.4319 91.4446 38.4505 91.463 38.4692C91.4814 38.4878 91.4961 38.5064 91.5182 38.525C91.5365 38.5436 91.5513 38.5622 91.5733 38.5809C91.5917 38.5995 91.6101 38.6181 91.6285 38.6367C91.6469 38.6553 91.6653 38.6739 91.6837 38.6925C91.7021 38.7112 91.7168 38.7298 91.7388 38.7484C91.7572 38.767 91.7756 38.7856 91.794 38.8043C91.8124 38.8229 91.8271 38.8415 91.8492 38.8601C91.8676 38.8787 91.8823 38.8973 91.9043 38.916C91.9227 38.9346 91.9411 38.9532 91.9595 38.9718C92.114 39.1468 92.331 39.2659 92.5921 39.2659H111.224C111.721 39.2659 112.081 38.8564 112.081 38.4021V33.4352C112.081 33.1932 111.974 32.9698 111.805 32.8059C111.787 32.7873 111.772 32.7687 111.75 32.7501C111.732 32.7315 111.717 32.7128 111.695 32.6942C111.676 32.6756 111.658 32.657 111.64 32.6384C111.621 32.6198 111.607 32.6011 111.584 32.5825C111.566 32.5639 111.551 32.5453 111.529 32.5267C111.511 32.5081 111.493 32.4894 111.474 32.4708C111.456 32.4522 111.441 32.4336 111.419 32.415C111.401 32.3964 111.386 32.3777 111.364 32.3591C111.345 32.3405 111.327 32.3219 111.309 32.3033C111.29 32.2847 111.272 32.266 111.253 32.2474C111.235 32.2288 111.22 32.2102 111.198 32.1916C111.18 32.173 111.165 32.1543 111.143 32.1357C111.125 32.1171 111.106 32.0985 111.088 32.0799C111.07 32.0613 111.055 32.0426 111.033 32.024C111.014 32.0054 111 31.9868 110.978 31.9682C110.959 31.9496 110.941 31.9309 110.922 31.9123C110.904 31.8937 110.886 31.8751 110.867 31.8565C110.849 31.8379 110.834 31.8192 110.812 31.8006C110.794 31.782 110.779 31.7634 110.757 31.7448C110.739 31.7262 110.72 31.7075 110.702 31.6889C110.683 31.6703 110.669 31.6517 110.647 31.6331C110.628 31.6145 110.614 31.5958 110.591 31.5772C110.573 31.5586 110.555 31.54 110.536 31.5214C110.518 31.5028 110.5 31.4841 110.481 31.4655C110.466 31.4469 110.448 31.4283 110.43 31.4134C110.58 31.5735 110.676 31.7857 110.676 32.0129V36.9798C110.676 37.4341 110.316 37.8436 109.819 37.8436Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M98.7262 14.0399H111.194C111.691 14.0399 112.051 13.6303 112.051 13.1723V8.20537C112.051 7.96335 111.944 7.73995 111.775 7.57613C111.757 7.55751 111.742 7.53889 111.72 7.52027C111.702 7.50166 111.683 7.48304 111.665 7.46442C111.646 7.44581 111.628 7.42719 111.61 7.40857C111.591 7.38996 111.577 7.37134 111.555 7.35272C111.536 7.33411 111.518 7.31549 111.499 7.29687C111.481 7.27826 111.463 7.25964 111.444 7.24102C111.426 7.22241 111.411 7.20379 111.389 7.18517C111.371 7.16656 111.356 7.14794 111.334 7.12932C111.315 7.1107 111.297 7.09209 111.279 7.07347C111.26 7.05486 111.242 7.03624 111.224 7.01762C111.205 6.99901 111.19 6.98039 111.168 6.96177C111.15 6.94315 111.132 6.92454 111.113 6.90592C111.095 6.8873 111.076 6.86869 111.058 6.85007C111.04 6.83145 111.025 6.81284 111.003 6.79422C110.984 6.7756 110.966 6.75699 110.948 6.73837C110.929 6.71975 110.911 6.70114 110.893 6.68252C110.874 6.6639 110.856 6.64529 110.837 6.62667C110.819 6.60805 110.801 6.58943 110.782 6.57082C110.764 6.5522 110.745 6.53359 110.727 6.51497C110.709 6.49635 110.69 6.47774 110.672 6.45912C110.653 6.4405 110.639 6.42189 110.617 6.40327C110.598 6.38465 110.58 6.36603 110.562 6.34742C110.543 6.3288 110.525 6.31018 110.506 6.29157C110.488 6.27295 110.473 6.25434 110.451 6.23572C110.433 6.2171 110.418 6.19848 110.4 6.18359C110.554 6.34369 110.646 6.55592 110.646 6.78305V11.75C110.646 12.2043 110.286 12.6175 109.789 12.6175H97.3213V16.7244H98.6968V14.0101L98.7262 14.0399Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M98.7262 26.3866H108.987C109.436 26.3866 109.841 26.0217 109.841 25.5228V20.5558C109.841 20.3138 109.723 20.0904 109.55 19.9303C109.532 19.9117 109.517 19.8931 109.495 19.8744C109.477 19.8558 109.462 19.8372 109.44 19.8186C109.421 19.8 109.407 19.7814 109.385 19.7627C109.366 19.7441 109.352 19.7255 109.329 19.7069C109.311 19.6883 109.296 19.6696 109.274 19.651C109.256 19.6324 109.241 19.6138 109.219 19.5952C109.201 19.5766 109.186 19.558 109.164 19.5393C109.146 19.5207 109.131 19.5021 109.109 19.4835C109.09 19.4649 109.076 19.4463 109.054 19.4276C109.035 19.409 109.021 19.3904 108.998 19.3718C108.98 19.3532 108.962 19.3345 108.943 19.3159C108.925 19.2973 108.91 19.2787 108.888 19.2601C108.87 19.2415 108.855 19.2228 108.833 19.2042C108.815 19.1856 108.8 19.167 108.778 19.1484C108.759 19.1298 108.745 19.1111 108.723 19.0925C108.704 19.0739 108.69 19.0553 108.667 19.0367C108.649 19.0181 108.634 18.9994 108.612 18.9808C108.594 18.9622 108.579 18.9436 108.557 18.925C108.539 18.9064 108.524 18.8877 108.502 18.8691C108.484 18.8505 108.469 18.8319 108.447 18.8133C108.428 18.7947 108.414 18.776 108.392 18.7574C108.373 18.7388 108.359 18.7202 108.336 18.7016C108.318 18.683 108.303 18.6643 108.281 18.6457C108.263 18.6271 108.248 18.6085 108.226 18.5899C108.208 18.5713 108.193 18.5526 108.175 18.5378C108.329 18.6979 108.436 18.9064 108.436 19.1335V24.1004C108.436 24.6031 108.031 24.9643 107.582 24.9643H97.3213V29.57H98.6968V26.3531L98.7262 26.3866Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M10.2932 35.5867C10.2932 35.9591 10.6279 36.3016 10.9993 36.3016H16.3984C16.7662 36.3016 17.1045 35.9628 17.1045 35.5867V11.102H23.6916C24.0814 11.102 24.3977 10.7817 24.3977 10.3871V5.42012C24.3977 5.02545 24.0814 4.70524 23.6916 4.70524H3.70615C3.3163 4.70524 3 5.02545 3 5.42012V10.3871C3 10.7817 3.3163 11.102 3.70615 11.102H10.2932V35.5867Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M51.6468 35.2032L45.4018 23.4784L45.5563 23.4151C49.6056 21.7656 52.1249 18.3104 52.1249 14.3971C52.1249 9.05411 47.7924 4.70524 42.4632 4.70524H29.006C28.6161 4.70524 28.2998 5.02545 28.2998 5.42012V35.583C28.2998 35.9777 28.6161 36.2979 29.006 36.2979H34.3609C34.7287 36.2979 35.067 35.9591 35.067 35.583V23.8135H38.4176L38.458 23.8954L44.4455 35.9702C44.5081 36.0968 44.7214 36.2979 45.0303 36.2979H51.0179C51.3047 36.2979 51.5328 36.1825 51.6578 35.9665C51.7865 35.7468 51.7865 35.4527 51.6504 35.1995L51.6468 35.2032ZM41.8747 18.3327H35.0634V10.9195H41.8747C43.8093 10.9195 45.4459 12.5764 45.4459 14.5349C45.4459 16.4934 43.7762 18.3327 41.8747 18.3327Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M69.7379 36.756C76.7515 36.756 82.4596 31.1412 82.4596 24.2419V5.42404C82.4596 5.0517 82.1249 4.70915 81.7534 4.70915H76.2183C75.8284 4.70915 75.5121 5.02936 75.5121 5.42404V23.877C75.5121 27.2354 73.0296 29.771 69.7379 29.771C66.4462 29.771 64.0519 27.2392 64.0519 23.877V5.42404C64.0519 5.02936 63.7356 4.70915 63.3458 4.70915H57.8106C57.4429 4.70915 57.1045 5.04798 57.1045 5.42404V24.2419C57.1045 31.1412 62.7721 36.756 69.7379 36.756Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M89.8116 36.3014H108.444C108.833 36.3014 109.15 35.9812 109.15 35.5865V30.6196C109.15 30.2249 108.833 29.9047 108.444 29.9047H95.8249V23.4484H106.237C106.627 23.4484 106.943 23.1282 106.943 22.7335V17.7666C106.943 17.3942 106.608 17.0517 106.237 17.0517H95.8249V11.098H108.444C108.833 11.098 109.15 10.7778 109.15 10.3832V5.41621C109.15 5.02153 108.833 4.70132 108.444 4.70132H89.8116C89.4218 4.70132 89.1055 5.02153 89.1055 5.41621V35.5791C89.1055 35.9738 89.4218 36.294 89.8116 36.294V36.3014Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M130.534 11.1466H143.153C143.542 11.1466 143.859 10.8264 143.859 10.4317V5.46475C143.859 5.07008 143.542 4.74987 143.153 4.74987H124.521C124.131 4.74987 123.814 5.07008 123.814 5.46475V35.6276C123.814 36.0223 124.131 36.3425 124.521 36.3425H129.831C130.199 36.3425 130.538 36.0037 130.538 35.6276V24.4017H140.95C141.317 24.4017 141.656 24.0629 141.656 23.6868V18.7199C141.656 18.3476 141.321 18.005 140.95 18.005H130.538V11.1391L130.534 11.1466Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M171.608 36.0109C171.737 35.7913 171.737 35.4971 171.601 35.2439L165.356 23.5191L165.51 23.4558C169.56 21.8064 172.079 18.3511 172.079 14.4378C172.079 9.09483 167.746 4.74595 162.417 4.74595H148.96C148.57 4.74595 148.254 5.06616 148.254 5.46084V35.6237C148.254 36.0184 148.57 36.3386 148.96 36.3386H154.315C154.683 36.3386 155.021 35.9998 155.021 35.6237V23.8542H158.368L158.408 23.9361L164.396 36.0109C164.458 36.1375 164.672 36.3386 164.981 36.3386H170.968C171.255 36.3386 171.483 36.2232 171.608 36.0072V36.0109ZM161.829 18.3771H155.017V10.964H161.829C163.763 10.964 165.4 12.6208 165.4 14.5793C165.4 16.5378 163.73 18.3771 161.829 18.3771Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M178.214 4.75359H183.613C184.003 4.75359 184.319 5.0738 184.319 5.46848V35.6314C184.319 36.026 184.003 36.3462 183.613 36.3462H178.21C177.82 36.3462 177.504 36.026 177.504 35.6314V5.46475C177.504 5.07008 177.82 4.74987 178.21 4.74987L178.214 4.75359Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M198.184 11.1466H210.803C211.193 11.1466 211.509 10.8264 211.509 10.4317V5.46475C211.509 5.07008 211.193 4.74987 210.803 4.74987H192.171C191.781 4.74987 191.465 5.07008 191.465 5.46475V35.6276C191.465 36.0223 191.781 36.3425 192.171 36.3425H210.803C211.193 36.3425 211.509 36.0223 211.509 35.6276V30.6607C211.509 30.266 211.193 29.9458 210.803 29.9458H198.184V23.4895H208.596C208.986 23.4895 209.302 23.1693 209.302 22.7746V17.8077C209.302 17.4353 208.968 17.0928 208.596 17.0928H198.184V11.1391V11.1466Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M242.981 4.75307H237.578C237.188 4.75307 236.872 5.07329 236.872 5.46796V21.7949H236.618L236.574 21.7539L218.659 4.29883H217.593C217.21 4.29883 216.887 4.60414 216.887 4.96531L216.931 35.6308C216.931 36.0032 217.266 36.3457 217.637 36.3457H222.992C223.382 36.3457 223.698 36.0255 223.698 35.6308V18.4848H223.956L224 18.5295L241.778 36.6175C241.834 36.6734 242.15 36.8 242.257 36.8H242.977C243.36 36.8 243.684 36.4947 243.684 36.1335V5.46796C243.684 5.09563 243.349 4.75307 242.977 4.75307H242.981Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
<path
|
||||
d="M262.473 4.75378H251.491C251.135 4.75378 250.833 5.08144 250.833 5.46867V35.6315C250.833 36.0188 251.135 36.3464 251.491 36.3464H262.473C271.102 36.3464 278.123 29.2385 278.123 20.5036C278.123 11.7686 271.102 4.75378 262.473 4.75378ZM262.021 29.905H257.549V11.1468H262.021C267.111 11.1468 270.947 15.168 270.947 20.5036C270.947 25.8391 267.111 29.905 262.021 29.905Z"
|
||||
fill="#CD0921"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
@@ -1,9 +1,18 @@
|
||||
export { default as BestFriend } from "./Level/BestFriend"
|
||||
export { default as CloseFriend } from "./Level/CloseFriend"
|
||||
export { default as DearFriend } from "./Level/DearFriend"
|
||||
export { default as GoodFriend } from "./Level/GoodFriend"
|
||||
export { default as LoyalFriend } from "./Level/LoyalFriend"
|
||||
export { default as NewFriend } from "./Level/NewFriend"
|
||||
export { default as ScandicFamily } from "./Level/ScandicFamily"
|
||||
export { default as ScandicFriends } from "./Level/ScandicFriends"
|
||||
export { default as TrueFriend } from "./Level/TrueFriend"
|
||||
export { default as BestFriend } from "./Level/DoubleRow/BestFriend"
|
||||
export { default as CloseFriend } from "./Level/DoubleRow/CloseFriend"
|
||||
export { default as DearFriend } from "./Level/DoubleRow/DearFriend"
|
||||
export { default as GoodFriend } from "./Level/DoubleRow/GoodFriend"
|
||||
export { default as LoyalFriend } from "./Level/DoubleRow/LoyalFriend"
|
||||
export { default as NewFriend } from "./Level/DoubleRow/NewFriend"
|
||||
export { default as ScandicFamily } from "./Level/DoubleRow/ScandicFamily"
|
||||
export { default as ScandicFriends } from "./Level/DoubleRow/ScandicFriends"
|
||||
export { default as TrueFriend } from "./Level/DoubleRow/TrueFriend"
|
||||
export { default as BestFriendSingle } from "./Level/SingleRow/BestFriend"
|
||||
export { default as CloseFriendSingle } from "./Level/SingleRow/CloseFriend"
|
||||
export { default as DearFriendSingle } from "./Level/SingleRow/DearFriend"
|
||||
export { default as GoodFriendSingle } from "./Level/SingleRow/GoodFriend"
|
||||
export { default as LoyalFriendSingle } from "./Level/SingleRow/LoyalFriend"
|
||||
export { default as NewFriendSingle } from "./Level/SingleRow/NewFriend"
|
||||
export { default as ScandicFamilySingle } from "./Level/SingleRow/ScandicFamily"
|
||||
export { default as ScandicFriendsSingle } from "./Level/SingleRow/ScandicFriends"
|
||||
export { default as TrueFriendSingle } from "./Level/SingleRow/TrueFriend"
|
||||
|
||||
@@ -18,68 +18,51 @@
|
||||
|
||||
.spinner div {
|
||||
transform-origin: 20px 20px;
|
||||
animation: spinnerAnimation 1.2s linear infinite;
|
||||
animation: spinnerAnimation 0.8s linear infinite;
|
||||
}
|
||||
|
||||
.spinner div::after {
|
||||
content: " ";
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 1.5px;
|
||||
left: 18.5px;
|
||||
width: 3px;
|
||||
height: 9px;
|
||||
border-radius: 20%;
|
||||
top: 3px;
|
||||
left: 7px;
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
border-radius: 100%;
|
||||
background: var(--Scandic-Brand-Burgundy);
|
||||
}
|
||||
|
||||
.spinner div:nth-child(1) {
|
||||
transform: rotate(0deg);
|
||||
animation-delay: -1.1s;
|
||||
animation-delay: -0.7s;
|
||||
}
|
||||
|
||||
.spinner div:nth-child(2) {
|
||||
transform: rotate(30deg);
|
||||
animation-delay: -1s;
|
||||
}
|
||||
.spinner div:nth-child(3) {
|
||||
transform: rotate(60deg);
|
||||
animation-delay: -0.9s;
|
||||
}
|
||||
.spinner div:nth-child(4) {
|
||||
transform: rotate(90deg);
|
||||
animation-delay: -0.8s;
|
||||
}
|
||||
.spinner div:nth-child(5) {
|
||||
transform: rotate(120deg);
|
||||
animation-delay: -0.7s;
|
||||
}
|
||||
.spinner div:nth-child(6) {
|
||||
transform: rotate(150deg);
|
||||
transform: rotate(45deg);
|
||||
animation-delay: -0.6s;
|
||||
}
|
||||
.spinner div:nth-child(7) {
|
||||
transform: rotate(180deg);
|
||||
.spinner div:nth-child(3) {
|
||||
transform: rotate(90deg);
|
||||
animation-delay: -0.5s;
|
||||
}
|
||||
.spinner div:nth-child(8) {
|
||||
transform: rotate(210deg);
|
||||
.spinner div:nth-child(4) {
|
||||
transform: rotate(135deg);
|
||||
animation-delay: -0.4s;
|
||||
}
|
||||
.spinner div:nth-child(9) {
|
||||
transform: rotate(240deg);
|
||||
.spinner div:nth-child(5) {
|
||||
transform: rotate(180deg);
|
||||
animation-delay: -0.3s;
|
||||
}
|
||||
.spinner div:nth-child(10) {
|
||||
transform: rotate(270deg);
|
||||
.spinner div:nth-child(6) {
|
||||
transform: rotate(225deg);
|
||||
animation-delay: -0.2s;
|
||||
}
|
||||
.spinner div:nth-child(11) {
|
||||
transform: rotate(300deg);
|
||||
.spinner div:nth-child(7) {
|
||||
transform: rotate(270deg);
|
||||
animation-delay: -0.1s;
|
||||
}
|
||||
.spinner div:nth-child(12) {
|
||||
transform: rotate(330deg);
|
||||
.spinner div:nth-child(8) {
|
||||
transform: rotate(315deg);
|
||||
animation-delay: 0s;
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,83 @@
|
||||
"use client"
|
||||
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import { Typography } from "@scandic-hotels/design-system/Typography"
|
||||
|
||||
import { getBedIcon } from "../RoomSidePeek/bedIcon"
|
||||
import { getFacilityIcon } from "../RoomSidePeek/facilityIcon"
|
||||
|
||||
import styles from "./bookedRoomSidePeek.module.css"
|
||||
|
||||
import type { RoomDetailsProps } from "@/types/components/sidePeeks/bookedRoomSidePeek"
|
||||
|
||||
export default function RoomDetails({
|
||||
roomDescription,
|
||||
roomFacilities,
|
||||
roomTypes,
|
||||
}: RoomDetailsProps) {
|
||||
const intl = useIntl()
|
||||
|
||||
const sortedFacilities = roomFacilities
|
||||
.sort((a, b) => a.sortOrder - b.sortOrder)
|
||||
.map((facility) => {
|
||||
const Icon = getFacilityIcon(facility.icon)
|
||||
return { ...facility, Icon }
|
||||
})
|
||||
|
||||
const bedOptions = roomTypes.map((roomType) => {
|
||||
const BedIcon = getBedIcon(roomType.mainBed.type)
|
||||
return { ...roomType, BedIcon }
|
||||
})
|
||||
|
||||
return (
|
||||
<div className={styles.descriptionContainer}>
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p className={styles.text}>{roomDescription}</p>
|
||||
</Typography>
|
||||
<div className={styles.listContainer}>
|
||||
<Typography variant="Title/Subtitle/md">
|
||||
<p className={styles.text}>
|
||||
{intl.formatMessage({ id: "This room is equipped with" })}
|
||||
</p>
|
||||
</Typography>
|
||||
<ul className={styles.facilityList}>
|
||||
{sortedFacilities.map(({ name, Icon }) => (
|
||||
<li key={name}>
|
||||
{Icon && (
|
||||
<Icon width={24} height={24} color="uiTextMediumContrast" />
|
||||
)}
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<span className={styles.listText}>{name}</span>
|
||||
</Typography>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
<div className={styles.listContainer}>
|
||||
<Typography variant="Title/Subtitle/md">
|
||||
<p className={styles.text}>
|
||||
{intl.formatMessage({ id: "Bed options" })}
|
||||
</p>
|
||||
</Typography>
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p className={styles.text}>
|
||||
{intl.formatMessage({ id: "Based on availability" })}
|
||||
</p>
|
||||
</Typography>
|
||||
<ul className={styles.bedOptions}>
|
||||
{bedOptions.map(({ code, mainBed, BedIcon }) => (
|
||||
<li key={code}>
|
||||
{BedIcon && (
|
||||
<BedIcon color="uiTextMediumContrast" width={24} height={24} />
|
||||
)}
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<span className={styles.listText}>{mainBed.description}</span>
|
||||
</Typography>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,190 @@
|
||||
.button {
|
||||
margin-left: auto;
|
||||
padding: 0 0 0 var(--Spacing-x-half);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--Spacing-x2);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.mainContent {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--Spacing-x3);
|
||||
}
|
||||
|
||||
.listContainer {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--Spacing-x-one-and-half);
|
||||
}
|
||||
|
||||
.roomHeader {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--Spacing-x-one-and-half);
|
||||
}
|
||||
|
||||
.chip {
|
||||
background-color: var(--Scandic-Peach-30);
|
||||
color: var(--Scandic-Red-100);
|
||||
border-radius: var(--Corner-radius-Small);
|
||||
padding: var(--Spacing-x-half) var(--Spacing-x1);
|
||||
height: fit-content;
|
||||
}
|
||||
|
||||
.reference {
|
||||
display: flex;
|
||||
gap: var(--Spacing-x-half);
|
||||
}
|
||||
|
||||
.imageContainer {
|
||||
position: relative;
|
||||
border-radius: var(--Corner-radius-Medium);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.imageContainer img {
|
||||
width: 100%;
|
||||
aspect-ratio: 16/9;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.roomDetails {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--Spacing-x-one-and-half);
|
||||
}
|
||||
|
||||
.row {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.row:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.rowTitle {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: var(--Spacing-x1);
|
||||
}
|
||||
|
||||
.rowTitle svg {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
}
|
||||
|
||||
.rowContent {
|
||||
padding-left: var(--Spacing-x4);
|
||||
}
|
||||
|
||||
.bookingInformation {
|
||||
display: flex;
|
||||
flex-direction: column-reverse;
|
||||
align-items: center;
|
||||
gap: var(--Spacing-x2);
|
||||
background-color: var(--Scandic-Beige-10);
|
||||
border: 1px solid var(--Base-Border-Subtle);
|
||||
border-radius: var(--Corner-radius-Medium);
|
||||
}
|
||||
|
||||
.priceDetails {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: var(--Spacing-x1);
|
||||
padding: var(--Spacing-x-one-and-half) 0;
|
||||
width: calc(100% - var(--Spacing-x4));
|
||||
justify-content: center;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.price {
|
||||
display: flex;
|
||||
gap: var(--Spacing-x1);
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.bookingCode {
|
||||
color: var(--UI-Semantic-Information);
|
||||
}
|
||||
|
||||
.facilityList {
|
||||
column-count: 2;
|
||||
column-gap: var(--Spacing-x2);
|
||||
}
|
||||
|
||||
.facilityList li {
|
||||
display: flex !important; /* Overrides the display none from grids.stackable on Hotel Page */
|
||||
gap: var(--Spacing-x1);
|
||||
margin-bottom: var(--Spacing-x-half);
|
||||
}
|
||||
|
||||
.bedOptions li {
|
||||
display: flex;
|
||||
gap: var(--Spacing-x1);
|
||||
margin-bottom: var(--Spacing-x-half);
|
||||
}
|
||||
|
||||
.facilityList li svg {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.noIcon {
|
||||
margin-left: var(--Spacing-x4);
|
||||
}
|
||||
|
||||
.buttonContainer {
|
||||
background-color: var(--Base-Background-Primary-Normal);
|
||||
border-top: 1px solid var(--Base-Border-Subtle);
|
||||
padding: var(--Spacing-x4) var(--Spacing-x2);
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.roomDetailsContainer {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.roomDetailsContainer.open {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.descriptionContainer {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: var(--Spacing-x3);
|
||||
gap: var(--Spacing-x3);
|
||||
background-color: var(--Main-Grey-White);
|
||||
border: 1px solid var(--Base-Border-Subtle);
|
||||
border-radius: var(--Corner-radius-Small);
|
||||
}
|
||||
|
||||
.text {
|
||||
color: var(--Scandic-Grey-100);
|
||||
}
|
||||
|
||||
.listText {
|
||||
color: var(--Scandic-Grey-80);
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.visible {
|
||||
display: block;
|
||||
}
|
||||
.cancellationNumber {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
@@ -0,0 +1,324 @@
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import { Typography } from "@scandic-hotels/design-system/Typography"
|
||||
|
||||
import { dt } from "@/lib/dt"
|
||||
import { useMyStayRoomDetailsStore } from "@/stores/my-stay/myStayRoomDetailsStore"
|
||||
|
||||
import GuestDetails from "@/components/HotelReservation/MyStay/GuestDetails"
|
||||
import Price from "@/components/HotelReservation/MyStay/Price"
|
||||
import { hasBreakfastPackage } from "@/components/HotelReservation/MyStay/utils/hasBreakfastPackage"
|
||||
import {
|
||||
BedDoubleIcon,
|
||||
BookingCodeIcon,
|
||||
CoffeeIcon,
|
||||
ContractIcon,
|
||||
DoorOpenIcon,
|
||||
PersonIcon,
|
||||
} from "@/components/Icons"
|
||||
import CrossCircleIcon from "@/components/Icons/CrossCircle"
|
||||
import Refresh from "@/components/Icons/Refresh"
|
||||
import ImageGallery from "@/components/ImageGallery"
|
||||
import Accordion from "@/components/TempDesignSystem/Accordion"
|
||||
import AccordionItem from "@/components/TempDesignSystem/Accordion/AccordionItem"
|
||||
import IconChip from "@/components/TempDesignSystem/IconChip"
|
||||
import SidePeek from "@/components/TempDesignSystem/SidePeek"
|
||||
import useLang from "@/hooks/useLang"
|
||||
import { mapApiImagesToGalleryImages } from "@/utils/imageGallery"
|
||||
|
||||
import RoomDetails from "./RoomDetails"
|
||||
|
||||
import styles from "./bookedRoomSidePeek.module.css"
|
||||
|
||||
import { RoomPackageCodeEnum } from "@/types/components/hotelReservation/selectRate/roomFilter"
|
||||
import { SidePeekEnum } from "@/types/components/hotelReservation/sidePeek"
|
||||
import type { BookedRoomSidePeekProps } from "@/types/components/sidePeeks/bookedRoomSidePeek"
|
||||
|
||||
export default function BookedRoomSidePeek({
|
||||
room,
|
||||
activeSidePeek,
|
||||
user,
|
||||
confirmationNumber,
|
||||
close,
|
||||
}: BookedRoomSidePeekProps) {
|
||||
const intl = useIntl()
|
||||
const lang = useLang()
|
||||
const bookedRoom = useMyStayRoomDetailsStore((state) => state.bookedRoom)
|
||||
const linkedReservationRooms = useMyStayRoomDetailsStore(
|
||||
(state) => state.linkedReservationRooms
|
||||
)
|
||||
const updateBookedRoom = useMyStayRoomDetailsStore(
|
||||
(state) => state.actions.updateBookedRoom
|
||||
)
|
||||
const updateLinkedReservationRoom = useMyStayRoomDetailsStore(
|
||||
(state) => state.actions.updateLinkedReservationRoom
|
||||
)
|
||||
|
||||
const allRooms = [bookedRoom, ...linkedReservationRooms]
|
||||
|
||||
const matchingRoomBooking = allRooms.find(
|
||||
(r) => r.confirmationNumber === confirmationNumber
|
||||
)
|
||||
|
||||
if (!matchingRoomBooking) {
|
||||
return null
|
||||
}
|
||||
|
||||
const {
|
||||
roomNumber,
|
||||
cancellationNumber,
|
||||
adults,
|
||||
childrenInRoom,
|
||||
terms,
|
||||
packages,
|
||||
bedType,
|
||||
checkInDate,
|
||||
bookingCode,
|
||||
roomPrice,
|
||||
isCancelled,
|
||||
} = matchingRoomBooking
|
||||
|
||||
const fromDate = dt(checkInDate).locale(lang)
|
||||
|
||||
const roomDescription = room.descriptions.medium
|
||||
const galleryImages = mapApiImagesToGalleryImages(room.images)
|
||||
|
||||
const adultsMsg = intl.formatMessage(
|
||||
{ id: "{adults, plural, one {# adult} other {# adults}}" },
|
||||
{
|
||||
adults: adults,
|
||||
}
|
||||
)
|
||||
|
||||
const childrenMsg = intl.formatMessage(
|
||||
{
|
||||
id: "{children, plural, one {# child} other {# children}}",
|
||||
},
|
||||
{
|
||||
children: childrenInRoom.length,
|
||||
}
|
||||
)
|
||||
|
||||
const adultsOnlyMsg = adultsMsg
|
||||
const adultsAndChildrenMsg = [adultsMsg, childrenMsg].join(", ")
|
||||
|
||||
return (
|
||||
<SidePeek
|
||||
title={room.name}
|
||||
isOpen={activeSidePeek === SidePeekEnum.bookedRoomDetails}
|
||||
handleClose={close}
|
||||
>
|
||||
<div className={styles.wrapper}>
|
||||
<div className={styles.roomHeader}>
|
||||
{isCancelled ? (
|
||||
<IconChip
|
||||
color={"red"}
|
||||
icon={<CrossCircleIcon width={20} height={20} color="red" />}
|
||||
>
|
||||
<Typography variant="Body/Supporting text (caption)/smBold">
|
||||
<span>{intl.formatMessage({ id: "Cancelled" })}</span>
|
||||
</Typography>
|
||||
</IconChip>
|
||||
) : (
|
||||
<div className={styles.chip}>
|
||||
<Typography variant="Tag/sm">
|
||||
<span>
|
||||
{intl.formatMessage(
|
||||
{ id: "Room {roomIndex}" },
|
||||
{ roomIndex: roomNumber }
|
||||
)}
|
||||
</span>
|
||||
</Typography>
|
||||
</div>
|
||||
)}
|
||||
<div className={styles.reference}>
|
||||
<Typography variant="Body/Supporting text (caption)/smBold">
|
||||
{isCancelled ? (
|
||||
<span>{intl.formatMessage({ id: "Cancellation no" })}:</span>
|
||||
) : (
|
||||
<span>{intl.formatMessage({ id: "Reference" })}:</span>
|
||||
)}
|
||||
</Typography>
|
||||
<Typography variant="Body/Supporting text (caption)/smRegular">
|
||||
{isCancelled ? (
|
||||
<span className={styles.cancellationNumber}>
|
||||
{cancellationNumber}
|
||||
</span>
|
||||
) : (
|
||||
<span>{confirmationNumber}</span>
|
||||
)}
|
||||
</Typography>
|
||||
</div>
|
||||
</div>
|
||||
<div className={styles.mainContent}>
|
||||
<div className={styles.imageContainer}>
|
||||
<ImageGallery
|
||||
images={galleryImages}
|
||||
title={room.name}
|
||||
height={280}
|
||||
/>
|
||||
</div>
|
||||
<div className={styles.roomDetails}>
|
||||
<div className={styles.row}>
|
||||
<span className={styles.rowTitle}>
|
||||
<PersonIcon color="grey80" width={20} height={20} />
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>{intl.formatMessage({ id: "Guests" })}</p>
|
||||
</Typography>
|
||||
</span>
|
||||
<div className={styles.rowContent}>
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p color="uiTextHighContrast">
|
||||
{childrenInRoom.length > 0
|
||||
? adultsAndChildrenMsg
|
||||
: adultsOnlyMsg}
|
||||
</p>
|
||||
</Typography>
|
||||
</div>
|
||||
</div>
|
||||
<div className={styles.row}>
|
||||
<span className={styles.rowTitle}>
|
||||
<ContractIcon color="grey80" width={20} height={20} />
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>{intl.formatMessage({ id: "Terms" })}</p>
|
||||
</Typography>
|
||||
</span>
|
||||
<div className={styles.rowContent}>
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p color="uiTextHighContrast">{terms}</p>
|
||||
</Typography>
|
||||
</div>
|
||||
</div>
|
||||
<div className={styles.row}>
|
||||
<span className={styles.rowTitle}>
|
||||
<Refresh color="grey80" width={20} height={20} />
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>{intl.formatMessage({ id: "Modify By" })}</p>
|
||||
</Typography>
|
||||
</span>
|
||||
<div className={styles.rowContent}>
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p color="uiTextHighContrast">
|
||||
{intl.formatMessage(
|
||||
{ id: "Until {time}, {date}" },
|
||||
{ time: "18:00", date: fromDate.format("dddd D MMM") }
|
||||
)}
|
||||
</p>
|
||||
</Typography>
|
||||
</div>
|
||||
</div>
|
||||
<div className={styles.row}>
|
||||
<span className={styles.rowTitle}>
|
||||
<CoffeeIcon color="grey80" width={20} height={20} />
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>{intl.formatMessage({ id: "Breakfast" })}</p>
|
||||
</Typography>
|
||||
</span>
|
||||
<div className={styles.rowContent}>
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p color="uiTextHighContrast">
|
||||
{packages &&
|
||||
hasBreakfastPackage(
|
||||
packages.map((pkg) => ({
|
||||
code: pkg.code,
|
||||
}))
|
||||
)
|
||||
? intl.formatMessage({ id: "Included" })
|
||||
: intl.formatMessage({ id: "Not included" })}
|
||||
</p>
|
||||
</Typography>
|
||||
</div>
|
||||
</div>
|
||||
{packages?.some((item) =>
|
||||
Object.values(RoomPackageCodeEnum).includes(item.code)
|
||||
) && (
|
||||
<div className={styles.row}>
|
||||
<span className={styles.rowTitle}>
|
||||
<DoorOpenIcon color="grey80" width={20} height={20} />
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>{intl.formatMessage({ id: "Room classification" })}</p>
|
||||
</Typography>
|
||||
</span>
|
||||
<div className={styles.rowContent}>
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p color="uiTextHighContrast">
|
||||
{packages
|
||||
?.filter((item) =>
|
||||
Object.values(RoomPackageCodeEnum).includes(item.code)
|
||||
)
|
||||
.map((item) => item.description)
|
||||
.join(", ")}
|
||||
</p>
|
||||
</Typography>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
|
||||
<div className={styles.row}>
|
||||
<span className={styles.rowTitle}>
|
||||
<BedDoubleIcon color="grey80" width={20} height={20} />
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>{intl.formatMessage({ id: "Bed preference" })}</p>
|
||||
</Typography>
|
||||
</span>
|
||||
<div className={styles.rowContent}>
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p color="uiTextHighContrast">{bedType?.description}</p>
|
||||
</Typography>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className={styles.bookingInformation}>
|
||||
<div className={styles.priceDetails}>
|
||||
<div className={styles.price}>
|
||||
<Typography variant="Body/Lead text">
|
||||
<p color="uiTextHighContrast">
|
||||
{intl.formatMessage({ id: "Room total" })}
|
||||
</p>
|
||||
</Typography>
|
||||
|
||||
<Price
|
||||
price={roomPrice.perStay.local.price}
|
||||
variant="Title/Subtitle/md"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{bookingCode && (
|
||||
<IconChip color={"blue"} icon={<BookingCodeIcon color="blue" />}>
|
||||
<Typography variant="Body/Supporting text (caption)/smBold">
|
||||
<p className={styles.bookingCode}>
|
||||
<strong>{intl.formatMessage({ id: "Booking code" })}</strong>
|
||||
{bookingCode}
|
||||
</p>
|
||||
</Typography>
|
||||
</IconChip>
|
||||
)}
|
||||
|
||||
<GuestDetails
|
||||
user={user ?? null}
|
||||
booking={matchingRoomBooking}
|
||||
updateRoom={
|
||||
bookedRoom.confirmationNumber ===
|
||||
matchingRoomBooking.confirmationNumber
|
||||
? updateBookedRoom
|
||||
: updateLinkedReservationRoom
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
<Accordion>
|
||||
<AccordionItem
|
||||
title={intl.formatMessage({ id: "Room details" })}
|
||||
variant="sidepeek"
|
||||
>
|
||||
<RoomDetails
|
||||
roomDescription={roomDescription}
|
||||
roomFacilities={room.roomFacilities}
|
||||
roomTypes={room.roomTypes}
|
||||
/>
|
||||
</AccordionItem>
|
||||
</Accordion>
|
||||
</div>
|
||||
</SidePeek>
|
||||
)
|
||||
}
|
||||
@@ -36,7 +36,7 @@ export default function RoomSidePeek({
|
||||
<div className={styles.wrapper}>
|
||||
<div className={styles.mainContent}>
|
||||
{totalOccupancy && (
|
||||
<Caption color="uiTextMediumContrast" className={styles.guests}>
|
||||
<Caption color="uiTextMediumContrast">
|
||||
{intl.formatMessage(
|
||||
{
|
||||
id: "Max. {max, plural, one {{range} guest} other {{range} guests}}",
|
||||
|
||||
@@ -144,10 +144,13 @@
|
||||
"Cancel": "Afbestille",
|
||||
"Cancel booking": "Cancel booking",
|
||||
"Cancel stay": "Annuller ophold",
|
||||
"Cancellation": "Annulleret",
|
||||
"Cancellation cost": "Annulleret pris",
|
||||
"Cancellation no": "Annulleringsnr",
|
||||
"Cancellation number": "Annulleringsnummer",
|
||||
"Cancellation policy": "Cancellation policy",
|
||||
"Cancelled": "Annulleret",
|
||||
"Card": "Kort",
|
||||
"Category": "Category",
|
||||
"Change room": "Skift værelse",
|
||||
"Changes can be made until {time} on {date}, subject to availability. Room rates may vary.": "Ændringer kan gøres indtil {time} på {date}, under forudsætning af tilgængelighed. Priserne for værelserne kan variere.",
|
||||
@@ -256,6 +259,7 @@
|
||||
"Enter destination or hotel": "Indtast destination eller hotel",
|
||||
"Enter your details": "Indtast dine oplysninger",
|
||||
"Expiration Date: {expirationDate}": "Expiration Date: {expirationDate}",
|
||||
"Explore Scandic hotels": "Udforsk Scandic hoteller",
|
||||
"Explore all levels and benefits": "Udforsk alle niveauer og fordele",
|
||||
"Explore all our hotels": "Udforsk alle vores hoteller",
|
||||
"Explore nearby": "Udforsk i nærheden",
|
||||
@@ -462,6 +466,7 @@
|
||||
"Menu": "Menu",
|
||||
"Menus": "Menukort",
|
||||
"Modify": "Ændre",
|
||||
"Modify By": "Ændre senest",
|
||||
"Modify dates": "Modify dates",
|
||||
"Modify guest details": "Ændre gæstdetaljer",
|
||||
"Monday": "Mandag",
|
||||
@@ -470,6 +475,7 @@
|
||||
"Month": "Måned",
|
||||
"Multi-room booking is not available with reward night.": "Multi-værelse booking er ikke tilgængelig med belønning nat.",
|
||||
"Multi-room booking is not available with this booking code.": "Multi-værelse booking er ikke tilgængelig med denne reservationskode.",
|
||||
"Multi-room stay": "Multi-værelse ophold",
|
||||
"Museum": "Museum",
|
||||
"Museums": "Museer",
|
||||
"My Add-on's": "Mine tilføjelser",
|
||||
@@ -579,6 +585,7 @@
|
||||
"Phone number": "Telefonnummer",
|
||||
"Planning to arrive after 18.00? Secure your room by guaranteeing it with a credit card. Without the guarantee and in case of no-show, the room might be reallocated after 18:00.": "Planlægger du at ankomme efter kl. 18.00? Sikre dit værelse ved at garantere det med et kreditkort. Uden garantien og i tilfælde af udeblivelse kan værelset blive tildelt efter kl. 18.00.",
|
||||
"Please contact <link>customer service</link>.": "Kontakt venligst <link>kundeservice</link>.",
|
||||
"Please contact customer service to update the dates.": "Kontakt kundesupport for at opdatere datoerne.",
|
||||
"Please enter a valid phone number": "Indtast venligst et gyldigt telefonnummer",
|
||||
"Please enter the code sent to <maskedContactInfo></maskedContactInfo> in order to confirm your account linking.": "Please enter the code sent to <maskedContactInfo></maskedContactInfo> in order to confirm your account linking.",
|
||||
"Please enter the code sent to <maskedContactInfo></maskedContactInfo> in order to transfer your points.": "Please enter the code sent to <maskedContactInfo></maskedContactInfo> in order to transfer your points.",
|
||||
@@ -652,6 +659,7 @@
|
||||
"Room": "Værelse",
|
||||
"Room & Terms": "Værelse & Vilkår",
|
||||
"Room amenities": "Værelsesfaciliteter",
|
||||
"Room cancelled": "Værelse annulleret",
|
||||
"Room charge": "Værelsesafgift",
|
||||
"Room classification": "Værelsesklassifikation",
|
||||
"Room details": "Room details",
|
||||
@@ -743,6 +751,7 @@
|
||||
"TUI Points": "TUI Points",
|
||||
"Taking longer than usual": "Tager længere end normalt",
|
||||
"Tell us what information and updates you'd like to receive, and how, by clicking the link below.": "Fortæl os, hvilke oplysninger og opdateringer du gerne vil modtage, og hvordan, ved at klikke på linket nedenfor.",
|
||||
"Terms": "Vilkår",
|
||||
"Terms and conditions": "Vilkår og betingelser",
|
||||
"Thank you": "Tak",
|
||||
"Thank you for booking with us! We look forward to welcoming you and hope you have a pleasant stay. If you have any questions or need to make changes to your reservation, please <emailLink>contact us.</emailLink>": "Tak fordi du bookede hos os! Vi glæder os til at byde dig velkommen og håber du får et behageligt ophold. Hvis du har spørgsmål eller har brug for at foretage ændringer i din reservation, bedes du <emailLink>kontakte os.</emailLink>",
|
||||
@@ -880,7 +889,7 @@
|
||||
"Your booking(s) is confirmed but we could not verify your membership. If you have booked with a member discount, you'll either need to present your existing membership number upon check-in, become a member or pay the price difference at the hotel. Signing up is preferably done online before the stay.": "Din booking er bekræftet, men vi kunne ikke verificere dit medlemskab. Hvis du har booket med et medlemstilbud, skal du enten vise dit eksisterende medlemskab ved check-in, blive medlem eller betale prisdifferencen ved check-in. Tilmelding er foretrukket online før opholdet.",
|
||||
"Your card was successfully removed!": "Dit kort blev fjernet!",
|
||||
"Your card was successfully saved!": "Dit kort blev gemt!",
|
||||
"Your card will only be used for authorisation": "Dit kort vil kun blive brugt til autorisation",
|
||||
"Your card will only be used for authorization": "Dit kort vil kun blive brugt til autorisation",
|
||||
"Your current level": "Dit nuværende niveau",
|
||||
"Your details": "Dine oplysninger",
|
||||
"Your exchanged points will retain their original expiry date with a maximum validity of 12 months.": "Your exchanged points will retain their original expiry date with a maximum validity of 12 months.",
|
||||
@@ -905,6 +914,7 @@
|
||||
"booking.confirmation.text": "Tak fordi du bookede hos os! Vi glæder os til at byde dig velkommen og håber du får et behageligt ophold. Hvis du har spørgsmål eller har brug for at foretage ændringer i din reservation, bedes du <emailLink>kontakte os.</emailLink>",
|
||||
"booking.confirmation.title": "Booking bekræftelse",
|
||||
"booking.guests": "Maks {max, plural, one {{range} gæst} other {{range} gæster}}",
|
||||
"cancelled": "annulleret",
|
||||
"friday": "fredag",
|
||||
"from": "fra",
|
||||
"max {seatings} pers": "max {seatings} pers",
|
||||
@@ -971,6 +981,7 @@
|
||||
"{roomSize} m²": "{roomSize} m²",
|
||||
"{roomSize} m². Accommodates up to {max, plural, one {{range} person} other {{range} people}}": "{roomSize} m². Plads til {max, plural, one {{range} person} other {op til {range} personer}}",
|
||||
"{roomType} <rate>{rateDescription}</rate>": "{roomType} <rate>{rateDescription}</rate>",
|
||||
"{rooms, plural, one {# room} other {# rooms}}": "{rooms, plural, one {# værelse} other {# værelser}}",
|
||||
"{selectedFromDate} - {selectedToDate}": "{selectedFromDate} - {selectedToDate}",
|
||||
"{selectedFromDate} - {selectedToDate} ({totalNights}) {details}": "{selectedFromDate} - {selectedToDate} ({totalNights}) {details}",
|
||||
"{selectedFromDate} <arrow></arrow> {selectedToDate} ({totalNights})": "{selectedFromDate} <arrow></arrow> {selectedToDate} ({totalNights})",
|
||||
|
||||
@@ -145,10 +145,13 @@
|
||||
"Cancel": "Stornieren",
|
||||
"Cancel booking": "Cancel booking",
|
||||
"Cancel stay": "Stornieren",
|
||||
"Cancellation": "Stornierung",
|
||||
"Cancellation cost": "Stornierungskosten",
|
||||
"Cancellation no": "Stornierungsnr",
|
||||
"Cancellation number": "Stornierungsnummer",
|
||||
"Cancellation policy": "Cancellation policy",
|
||||
"Cancelled": "Storniert",
|
||||
"Card": "Karte",
|
||||
"Category": "Category",
|
||||
"Change room": "Zimmer ändern",
|
||||
"Changes can be made until {time} on {date}, subject to availability. Room rates may vary.": "Änderungen können bis {time} am {date} vorgenommen werden, vorausgesetzt, dass die Zimmer noch verfügbar sind. Die Zimmerpreise können variieren.",
|
||||
@@ -257,6 +260,7 @@
|
||||
"Enter destination or hotel": "Reiseziel oder Hotel eingeben",
|
||||
"Enter your details": "Geben Sie Ihre Daten ein",
|
||||
"Expiration Date: {expirationDate}": "Expiration Date: {expirationDate}",
|
||||
"Explore Scandic hotels": "Scandic Hotels erkunden",
|
||||
"Explore all levels and benefits": "Entdecken Sie alle Levels und Vorteile",
|
||||
"Explore all our hotels": "Entdecken Sie alle unsere Hotels",
|
||||
"Explore nearby": "Erkunden Sie die Umgebung",
|
||||
@@ -463,6 +467,7 @@
|
||||
"Menu": "Menü",
|
||||
"Menus": "Menüs",
|
||||
"Modify": "Ändern",
|
||||
"Modify By": "Ändern von",
|
||||
"Modify dates": "Ändra datum",
|
||||
"Modify guest details": "Gastdetails ändern",
|
||||
"Monday": "Montag",
|
||||
@@ -471,6 +476,7 @@
|
||||
"Month": "Monat",
|
||||
"Multi-room booking is not available with reward night.": "Mehrzimmerbuchungen sind mit Prämiennächten nicht möglich.",
|
||||
"Multi-room booking is not available with this booking code.": "Mehrzimmerbuchungen sind mit diesem Buchungscode nicht möglich.",
|
||||
"Multi-room stay": "Mehrzimmeraufenthalt",
|
||||
"Museum": "Museum",
|
||||
"Museums": "Museen",
|
||||
"My Add-on's": "Meine Add-ons",
|
||||
@@ -578,6 +584,7 @@
|
||||
"Phone number": "Telefonnummer",
|
||||
"Planning to arrive after 18.00? Secure your room by guaranteeing it with a credit card. Without the guarantee and in case of no-show, the room might be reallocated after 18:00.": "Sie möchten nach 18:00 Uhr anreisen? Sichern Sie sich Ihr Zimmer, indem Sie es mit einer Kreditkarte garantieren. Ohne Garantie und bei Nichterscheinen kann das Zimmer nach 18:00 Uhr vergeben werden.",
|
||||
"Please contact <link>customer service</link>.": "Bitte wenden Sie sich an den <link>Kundendienst</link>.",
|
||||
"Please contact customer service to update the dates.": "Bitte kontaktieren Sie den Kundensupport, um die Daten zu aktualisieren.",
|
||||
"Please enter a valid phone number": "Bitte geben Sie eine gültige Telefonnummer ein",
|
||||
"Please enter the code sent to <maskedContactInfo></maskedContactInfo> in order to confirm your account linking.": "Please enter the code sent to <maskedContactInfo></maskedContactInfo> in order to confirm your account linking.",
|
||||
"Please enter the code sent to <maskedContactInfo></maskedContactInfo> in order to transfer your points.": "Please enter the code sent to <maskedContactInfo></maskedContactInfo> in order to transfer your points.",
|
||||
@@ -651,6 +658,7 @@
|
||||
"Room": "Zimmer",
|
||||
"Room & Terms": "Zimmer & Bedingungen",
|
||||
"Room amenities": "Zimmerausstattung",
|
||||
"Room cancelled": "Zimmer storniert",
|
||||
"Room charge": "Zimmerpreis",
|
||||
"Room classification": "Zimmerkategorie",
|
||||
"Room details": "Room details",
|
||||
@@ -742,6 +750,7 @@
|
||||
"TUI Points": "TUI Points",
|
||||
"Taking longer than usual": "Länger als normal",
|
||||
"Tell us what information and updates you'd like to receive, and how, by clicking the link below.": "Teilen Sie uns mit, welche Informationen und Updates Sie wie erhalten möchten, indem Sie auf den unten stehenden Link klicken.",
|
||||
"Terms": "Vorwahlen",
|
||||
"Terms and conditions": "Geschäftsbedingungen",
|
||||
"Thank you": "Danke",
|
||||
"Thank you for booking with us! We look forward to welcoming you and hope you have a pleasant stay. If you have any questions or need to make changes to your reservation, please <emailLink>contact us.</emailLink>": "Vielen Dank, dass Sie bei uns gebucht haben! Wir freuen uns, Sie bei uns begrüßen zu dürfen und wünschen Ihnen einen angenehmen Aufenthalt. Wenn Sie Fragen haben oder Änderungen an Ihrer Buchung vornehmen müssen, <emailLink>kontaktieren Sie uns bitte.</emailLink>.",
|
||||
@@ -878,7 +887,7 @@
|
||||
"Your booking(s) is confirmed but we could not verify your membership. If you have booked with a member discount, you'll either need to present your existing membership number upon check-in, become a member or pay the price difference at the hotel. Signing up is preferably done online before the stay.": "Ihre Buchung ist bestätigt, aber wir konnten Ihr Mitglied nicht verifizieren. Wenn Sie mit einem Mitgliederrabatt gebucht haben, müssen Sie entweder Ihr vorhandenes Mitgliedschaftsnummer bei der Anreise präsentieren, ein Mitglied werden oder die Preisdifferenz bei der Anreise bezahlen. Die Anmeldung ist vorzugsweise online vor der Aufenthaltsdauer erfolgreich.",
|
||||
"Your card was successfully removed!": "Ihre Karte wurde erfolgreich entfernt!",
|
||||
"Your card was successfully saved!": "Ihre Karte wurde erfolgreich gespeichert!",
|
||||
"Your card will only be used for authorisation": "Ihre Karte wird nur zur Autorisierung verwendet",
|
||||
"Your card will only be used for authorization": "Ihre Karte wird nur zur Autorisierung verwendet",
|
||||
"Your current level": "Ihr aktuelles Level",
|
||||
"Your details": "Ihre Angaben",
|
||||
"Your exchanged points will retain their original expiry date with a maximum validity of 12 months.": "Your exchanged points will retain their original expiry date with a maximum validity of 12 months.",
|
||||
@@ -903,6 +912,7 @@
|
||||
"booking.confirmation.text": "Vielen Dank, dass Sie bei uns gebucht haben! Wir freuen uns, Sie bei uns begrüßen zu dürfen und wünschen Ihnen einen angenehmen Aufenthalt. Wenn Sie Fragen haben oder Änderungen an Ihrer Buchung vornehmen müssen, <emailLink>kontaktieren Sie uns bitte.</emailLink>.",
|
||||
"booking.confirmation.title": "Buchungsbestätigung",
|
||||
"booking.guests": "Max {max, plural, one {{range} gast} other {{range} gäste}}",
|
||||
"cancelled": "storniert",
|
||||
"friday": "freitag",
|
||||
"from": "von",
|
||||
"max {seatings} pers": "max {seatings} pers",
|
||||
@@ -969,6 +979,7 @@
|
||||
"{roomSize} m²": "{roomSize} m²",
|
||||
"{roomSize} m². Accommodates up to {max, plural, one {{range} person} other {{range} people}}": "{roomSize} m². Bietet Platz für {max, plural, one {{range} Person } other {bis zu {range} Personen}}",
|
||||
"{roomType} <rate>{rateDescription}</rate>": "{roomType} <rate>{rateDescription}</rate>",
|
||||
"{rooms, plural, one {# room} other {# rooms}}": "{rooms, plural, one {# zimmer} other {# zimmer}}",
|
||||
"{selectedFromDate} - {selectedToDate}": "{selectedFromDate} - {selectedToDate}",
|
||||
"{selectedFromDate} - {selectedToDate} ({totalNights}) {details}": "{selectedFromDate} - {selectedToDate} ({totalNights}) {details}",
|
||||
"{selectedFromDate} <arrow></arrow> {selectedToDate} ({totalNights})": "{selectedFromDate} <arrow></arrow> {selectedToDate} ({totalNights})",
|
||||
|
||||
@@ -143,10 +143,13 @@
|
||||
"Cancel": "Cancel",
|
||||
"Cancel booking": "Cancel booking",
|
||||
"Cancel stay": "Cancel stay",
|
||||
"Cancellation": "Cancellation",
|
||||
"Cancellation cost": "Cancellation cost",
|
||||
"Cancellation no": "Cancellation no",
|
||||
"Cancellation number": "Cancellation number",
|
||||
"Cancellation policy": "Cancellation policy",
|
||||
"Cancelled": "Cancelled",
|
||||
"Card": "Card",
|
||||
"Category": "Category",
|
||||
"Change room": "Change room",
|
||||
"Changes can be made until {time} on {date}, subject to availability. Room rates may vary.": "Changes can be made until {time} on {date}, subject to availability. Room rates may vary.",
|
||||
@@ -255,6 +258,7 @@
|
||||
"Enter destination or hotel": "Enter destination or hotel",
|
||||
"Enter your details": "Enter your details",
|
||||
"Expiration Date: {expirationDate}": "Expiration Date: {expirationDate}",
|
||||
"Explore Scandic hotels": "Explore Scandic hotels",
|
||||
"Explore all levels and benefits": "Explore all levels and benefits",
|
||||
"Explore all our hotels": "Explore all our hotels",
|
||||
"Explore nearby": "Explore nearby",
|
||||
@@ -461,6 +465,7 @@
|
||||
"Menu": "Menu",
|
||||
"Menus": "Menus",
|
||||
"Modify": "Modify",
|
||||
"Modify By": "Modify By",
|
||||
"Modify dates": "Modify dates",
|
||||
"Modify guest details": "Modify guest details",
|
||||
"Monday": "Monday",
|
||||
@@ -469,6 +474,7 @@
|
||||
"Month": "Month",
|
||||
"Multi-room booking is not available with reward night.": "Multi-room booking is not available with reward night.",
|
||||
"Multi-room booking is not available with this booking code.": "Multi-room booking is not available with this booking code.",
|
||||
"Multi-room stay": "Multi-room stay",
|
||||
"Museum": "Museum",
|
||||
"Museums": "Museums",
|
||||
"My Add-on's": "My Add-on's",
|
||||
@@ -577,6 +583,7 @@
|
||||
"Phone number": "Phone number",
|
||||
"Planning to arrive after 18.00? Secure your room by guaranteeing it with a credit card. Without the guarantee and in case of no-show, the room might be reallocated after 18:00.": "Planning to arrive after 18.00? Secure your room by guaranteeing it with a credit card. Without the guarantee and in case of no-show, the room might be allocated after 18:00.",
|
||||
"Please contact <link>customer service</link>.": "Please contact <link>customer service</link>.",
|
||||
"Please contact customer service to update the dates.": "Please contact customer service to update the dates.",
|
||||
"Please enter a valid phone number": "Please enter a valid phone number",
|
||||
"Please enter the code sent to <maskedContactInfo></maskedContactInfo> in order to confirm your account linking.": "Please enter the code sent to <maskedContactInfo></maskedContactInfo> in order to confirm your account linking.",
|
||||
"Please enter the code sent to <maskedContactInfo></maskedContactInfo> in order to transfer your points.": "Please enter the code sent to <maskedContactInfo></maskedContactInfo> in order to transfer your points.",
|
||||
@@ -650,6 +657,7 @@
|
||||
"Room": "Room",
|
||||
"Room & Terms": "Room & Terms",
|
||||
"Room amenities": "Room amenities",
|
||||
"Room cancelled": "Room cancelled",
|
||||
"Room charge": "Room charge",
|
||||
"Room classification": "Room classification",
|
||||
"Room details": "Room details",
|
||||
@@ -741,6 +749,7 @@
|
||||
"TUI Points": "TUI Points",
|
||||
"Taking longer than usual": "Taking longer than usual",
|
||||
"Tell us what information and updates you'd like to receive, and how, by clicking the link below.": "Tell us what information and updates you'd like to receive, and how, by clicking the link below.",
|
||||
"Terms": "Terms",
|
||||
"Terms and conditions": "Terms and conditions",
|
||||
"Thank you": "Thank you",
|
||||
"Thank you for booking with us! We look forward to welcoming you and hope you have a pleasant stay. If you have any questions or need to make changes to your reservation, please <emailLink>contact us.</emailLink>": "Thank you for booking with us! We look forward to welcoming you and hope you have a pleasant stay. If you have any questions or need to make changes to your reservation, please <emailLink>contact us.</emailLink>",
|
||||
@@ -876,7 +885,7 @@
|
||||
"Your booking(s) is confirmed but we could not verify your membership. If you have booked with a member discount, you'll either need to present your existing membership number upon check-in, become a member or pay the price difference at the hotel. Signing up is preferably done online before the stay.": "Your booking(s) is confirmed but we could not verify your membership. If you have booked with a member discount, you'll either need to present your existing membership number upon check-in, become a member or pay the price difference at the hotel. Signing up is preferably done online before the stay.",
|
||||
"Your card was successfully removed!": "Your card was successfully removed!",
|
||||
"Your card was successfully saved!": "Your card was successfully saved!",
|
||||
"Your card will only be used for authorisation": "Your card will only be used for authorisation",
|
||||
"Your card will only be used for authorization": "Your card will only be used for authorization",
|
||||
"Your current level": "Your current level",
|
||||
"Your details": "Your details",
|
||||
"Your exchanged points will retain their original expiry date with a maximum validity of 12 months.": "Your exchanged points will retain their original expiry date with a maximum validity of 12 months.",
|
||||
@@ -898,6 +907,7 @@
|
||||
"Zoom in": "Zoom in",
|
||||
"Zoom out": "Zoom out",
|
||||
"as of today": "as of today",
|
||||
"cancelled": "cancelled",
|
||||
"friday": "friday",
|
||||
"from": "from",
|
||||
"max {seatings} pers": "max {seatings} pers",
|
||||
@@ -964,6 +974,7 @@
|
||||
"{roomSize} m²": "{roomSize} m²",
|
||||
"{roomSize} m². Accommodates up to {max, plural, one {{range} person} other {{range} people}}": "{roomSize} m². Accommodates up to {max, plural, one {{range} person} other {{range} people}}",
|
||||
"{roomType} <rate>{rateDescription}</rate>": "{roomType} <rate>{rateDescription}</rate>",
|
||||
"{rooms, plural, one {# room} other {# rooms}}": "{rooms, plural, one {# room} other {# rooms}}",
|
||||
"{selectedFromDate} - {selectedToDate}": "{selectedFromDate} - {selectedToDate}",
|
||||
"{selectedFromDate} - {selectedToDate} ({totalNights}) {details}": "{selectedFromDate} - {selectedToDate} ({totalNights}) {details}",
|
||||
"{selectedFromDate} <arrow></arrow> {selectedToDate} ({totalNights})": "{selectedFromDate} <arrow></arrow> {selectedToDate} ({totalNights})",
|
||||
|
||||
@@ -143,10 +143,13 @@
|
||||
"Cancel": "Peruuttaa",
|
||||
"Cancel booking": "Cancel booking",
|
||||
"Cancel stay": "Peruuta majoitus",
|
||||
"Cancellation": "Peruutus",
|
||||
"Cancellation cost": "Peruutusmaksu",
|
||||
"Cancellation no": "Peruutus nro",
|
||||
"Cancellation number": "Peruutusnumero",
|
||||
"Cancellation policy": "Cancellation policy",
|
||||
"Cancelled": "Peruttu",
|
||||
"Card": "Kortti",
|
||||
"Category": "Category",
|
||||
"Change room": "Vaihda huonetta",
|
||||
"Changes can be made until {time} on {date}, subject to availability. Room rates may vary.": "Muutoksia voi tehdä {time} päivänä {date}, olettaen saatavuuden olemassaolon. Huonehinnat voivat muuttua.",
|
||||
@@ -256,6 +259,7 @@
|
||||
"Enter destination or hotel": "Anna kohde tai hotelli",
|
||||
"Enter your details": "Anna tietosi",
|
||||
"Expiration Date: {expirationDate}": "Expiration Date: {expirationDate}",
|
||||
"Explore Scandic hotels": "Selaa Scandic hotellit",
|
||||
"Explore all levels and benefits": "Tutustu kaikkiin tasoihin ja etuihin",
|
||||
"Explore all our hotels": "Tutustu kaikkiin hotelleihimme",
|
||||
"Explore nearby": "Tutustu lähialueeseen",
|
||||
@@ -462,6 +466,7 @@
|
||||
"Menu": "Valikko",
|
||||
"Menus": "Valikot",
|
||||
"Modify": "Muokkaa",
|
||||
"Modify By": "Muuta viimeksi",
|
||||
"Modify dates": "Muuta päivämääriä",
|
||||
"Modify guest details": "Muuta vierailijoiden tietoja",
|
||||
"Monday": "Maanantai",
|
||||
@@ -470,6 +475,7 @@
|
||||
"Month": "Kuukausi",
|
||||
"Multi-room booking is not available with reward night.": "Usean huoneen varaus ei ole saatavilla palkintoyönä.",
|
||||
"Multi-room booking is not available with this booking code.": "Usean huoneen varaus ei ole käytettävissä tällä varauskoodilla.",
|
||||
"Multi-room stay": "Monen huoneen yöpyminen",
|
||||
"Museum": "Museo",
|
||||
"Museums": "Museot",
|
||||
"My Add-on's": "Omat lisäosat",
|
||||
@@ -577,6 +583,7 @@
|
||||
"Phone number": "Puhelinnumero",
|
||||
"Planning to arrive after 18.00? Secure your room by guaranteeing it with a credit card. Without the guarantee and in case of no-show, the room might be reallocated after 18:00.": "Aiotko saapua klo 18.00 jälkeen? Varmista huoneesi takaamalla se luottokortilla. Ilman takuuta ja saapumatta jättämisen yhteydessä huone voidaan luovuttaa klo 18.00 jälkeen.",
|
||||
"Please contact <link>customer service</link>.": "Ota yhteyttä <link>asiakaspalveluun</link>.",
|
||||
"Please contact customer service to update the dates.": "Ota yhteyttä asiakaspalveluun päivämäärien päivityksen haluamiseksi.",
|
||||
"Please enter a valid phone number": "Ole hyvä ja näppäile voimassaoleva puhelinnumero",
|
||||
"Please enter the code sent to <maskedContactInfo></maskedContactInfo> in order to confirm your account linking.": "Please enter the code sent to <maskedContactInfo></maskedContactInfo> in order to confirm your account linking.",
|
||||
"Please enter the code sent to <maskedContactInfo></maskedContactInfo> in order to transfer your points.": "Please enter the code sent to <maskedContactInfo></maskedContactInfo> in order to transfer your points.",
|
||||
@@ -650,6 +657,7 @@
|
||||
"Room": "Huone",
|
||||
"Room & Terms": "Huone & Ehdot",
|
||||
"Room amenities": "Huoneen mukavuudet",
|
||||
"Room cancelled": "Huone peruutettu",
|
||||
"Room charge": "Huonemaksu",
|
||||
"Room classification": "Huoneluokitus",
|
||||
"Room details": "Room details",
|
||||
@@ -742,6 +750,7 @@
|
||||
"TUI Points": "TUI Points",
|
||||
"Taking longer than usual": "Tällainen kestää pidemmän aikaa kuin normaalisti",
|
||||
"Tell us what information and updates you'd like to receive, and how, by clicking the link below.": "Kerro meille, mitä tietoja ja päivityksiä haluat saada ja miten, napsauttamalla alla olevaa linkkiä.",
|
||||
"Terms": "Vilkår",
|
||||
"Terms and conditions": "Säännöt ja ehdot",
|
||||
"Thank you": "Kiitos",
|
||||
"Thank you for booking with us! We look forward to welcoming you and hope you have a pleasant stay. If you have any questions or need to make changes to your reservation, please <emailLink>contact us.</emailLink>": "Kiitos, että teit varauksen meiltä! Toivotamme sinut tervetulleeksi ja toivomme sinulle miellyttävää oleskelua. Jos sinulla on kysyttävää tai haluat tehdä muutoksia varaukseesi, <emailLink>ota meihin yhteyttä.</emailLink>",
|
||||
@@ -878,7 +887,7 @@
|
||||
"Your booking(s) is confirmed but we could not verify your membership. If you have booked with a member discount, you'll either need to present your existing membership number upon check-in, become a member or pay the price difference at the hotel. Signing up is preferably done online before the stay.": "Varauksesi on vahvistettu, mutta jäsenyytesi ei voitu vahvistaa. Jos olet bookeutunut jäsenyysalennoilla, sinun on joko esitettävä olemassa olevan jäsenyysnumero tarkistukseen, tulla jäseneksi tai maksamaan hinnan eron hotellissa. Jäsenyyden tilittäminen on suositeltavampaa tehdä verkkoon ennen majoittumista.",
|
||||
"Your card was successfully removed!": "Korttisi poistettiin onnistuneesti!",
|
||||
"Your card was successfully saved!": "Korttisi tallennettu onnistuneesti!",
|
||||
"Your card will only be used for authorisation": "Korttiasi käytetään vain valtuutukseen",
|
||||
"Your card will only be used for authorization": "Korttiasi käytetään vain valtuutukseen",
|
||||
"Your current level": "Nykyinen tasosi",
|
||||
"Your details": "Tietosi",
|
||||
"Your exchanged points will retain their original expiry date with a maximum validity of 12 months.": "Your exchanged points will retain their original expiry date with a maximum validity of 12 months.",
|
||||
@@ -903,6 +912,7 @@
|
||||
"booking.confirmation.text": "Kiitos, että teit varauksen meiltä! Toivotamme sinut tervetulleeksi ja toivomme sinulle miellyttävää oleskelua. Jos sinulla on kysyttävää tai haluat tehdä muutoksia varaukseesi, <emailLink>ota meihin yhteyttä.</emailLink>",
|
||||
"booking.confirmation.title": "Varausvahvistus",
|
||||
"booking.guests": "Max {max, plural, one {{range} vieras} other {{range} vieraita}}",
|
||||
"cancelled": "peruttu",
|
||||
"friday": "perjantai",
|
||||
"from": "alkaa",
|
||||
"max {seatings} pers": "max {seatings} pers",
|
||||
@@ -969,6 +979,7 @@
|
||||
"{roomSize} m²": "{roomSize} m²",
|
||||
"{roomSize} m². Accommodates up to {max, plural, one {{range} person} other {{range} people}}": "{roomSize} m². Huoneeseen {max, plural, one {{range} henkilö} other {mahtuu enintään {range} henkilöä}",
|
||||
"{roomType} <rate>{rateDescription}</rate>": "{roomType} <rate>{rateDescription}</rate>",
|
||||
"{rooms, plural, one {# room} other {# rooms}}": "{rooms, plural, one {# huone} other {# huoneet}}",
|
||||
"{selectedFromDate} - {selectedToDate}": "{selectedFromDate} - {selectedToDate}",
|
||||
"{selectedFromDate} - {selectedToDate} ({totalNights}) {details}": "{selectedFromDate} - {selectedToDate} ({totalNights}) {details}",
|
||||
"{selectedFromDate} <arrow></arrow> {selectedToDate} ({totalNights})": "{selectedFromDate} <arrow></arrow> {selectedToDate} ({totalNights})",
|
||||
|
||||
@@ -143,10 +143,13 @@
|
||||
"Cancel": "Avbryt",
|
||||
"Cancel booking": "Cancel booking",
|
||||
"Cancel stay": "Avbryt opphold",
|
||||
"Cancellation": "Avbrutt",
|
||||
"Cancellation cost": "Annulleret pris",
|
||||
"Cancellation no": "Annulleringsnr",
|
||||
"Cancellation number": "Annulleringsnummer",
|
||||
"Cancellation policy": "Cancellation policy",
|
||||
"Cancelled": "Avbrutt",
|
||||
"Card": "Kort",
|
||||
"Category": "Category",
|
||||
"Change room": "Endre rom",
|
||||
"Changes can be made until {time} on {date}, subject to availability. Room rates may vary.": "Endringer kan gjøres til {time} på {date}, under forutsetning av tilgjengelighet. Rompriser kan variere.",
|
||||
@@ -255,6 +258,7 @@
|
||||
"Enter destination or hotel": "Skriv inn destinasjon eller hotell",
|
||||
"Enter your details": "Skriv inn detaljene dine",
|
||||
"Expiration Date: {expirationDate}": "Expiration Date: {expirationDate}",
|
||||
"Explore Scandic hotels": "Utforsk Scandic hoteller",
|
||||
"Explore all levels and benefits": "Utforsk alle nivåer og fordeler",
|
||||
"Explore all our hotels": "Utforsk alle våre hoteller",
|
||||
"Explore nearby": "Utforsk i nærheten",
|
||||
@@ -461,6 +465,7 @@
|
||||
"Menu": "Menu",
|
||||
"Menus": "Menyer",
|
||||
"Modify": "Endre",
|
||||
"Modify By": "Endre senest",
|
||||
"Modify dates": "Endre datoer",
|
||||
"Modify guest details": "Endre gjestdetaljer",
|
||||
"Monday": "Mandag",
|
||||
@@ -469,6 +474,7 @@
|
||||
"Month": "Måned",
|
||||
"Multi-room booking is not available with reward night.": "Multi-rom booking er ikke tilgjengelig med belønning natt.",
|
||||
"Multi-room booking is not available with this booking code.": "Bestilling av flere rom er ikke tilgjengelig med denne bestillingskoden.",
|
||||
"Multi-room stay": "Flerroms opphold",
|
||||
"Museum": "Museum",
|
||||
"Museums": "Museums",
|
||||
"My Add-on's": "Mine tillegg",
|
||||
@@ -576,6 +582,7 @@
|
||||
"Phone number": "Telefonnummer",
|
||||
"Planning to arrive after 18.00? Secure your room by guaranteeing it with a credit card. Without the guarantee and in case of no-show, the room might be reallocated after 18:00.": "Planlegger du å ankomme etter kl 18.00? Sikre rommet ditt ved å garantere det med et kredittkort. Uten garantien og ved manglende oppmøte, kan rommet bli tildelt etter kl. 18.00.",
|
||||
"Please contact <link>customer service</link>.": "Vennligst kontakt <link>kundeservice</link>.",
|
||||
"Please contact customer service to update the dates.": "Kontakt kundesupport for at opdatere datoerne.",
|
||||
"Please enter a valid phone number": "Vennligst oppgi et gyldig telefonnummer",
|
||||
"Please enter the code sent to <maskedContactInfo></maskedContactInfo> in order to confirm your account linking.": "Please enter the code sent to <maskedContactInfo></maskedContactInfo> in order to confirm your account linking.",
|
||||
"Please enter the code sent to <maskedContactInfo></maskedContactInfo> in order to transfer your points.": "Please enter the code sent to <maskedContactInfo></maskedContactInfo> in order to transfer your points.",
|
||||
@@ -649,6 +656,7 @@
|
||||
"Room": "Rom",
|
||||
"Room & Terms": "Rom & Vilkår",
|
||||
"Room amenities": "Romfasiliteter",
|
||||
"Room cancelled": "Rom annulleret",
|
||||
"Room charge": "Pris for rom",
|
||||
"Room classification": "Romklassifisering",
|
||||
"Room details": "Room details",
|
||||
@@ -739,6 +747,7 @@
|
||||
"TUI Points": "TUI Points",
|
||||
"Taking longer than usual": "Tar lenger tid enn normalt",
|
||||
"Tell us what information and updates you'd like to receive, and how, by clicking the link below.": "Fortell oss hvilken informasjon og hvilke oppdateringer du ønsker å motta, og hvordan, ved å klikke på lenken nedenfor.",
|
||||
"Terms": "Vilkår",
|
||||
"Terms and conditions": "Vilkår og betingelser",
|
||||
"Thank you": "Takk",
|
||||
"Thank you for booking with us! We look forward to welcoming you and hope you have a pleasant stay. If you have any questions or need to make changes to your reservation, please <emailLink>contact us.</emailLink>": "Takk for at du booket hos oss! Vi ser frem til å ønske deg velkommen og håper du får et hyggelig opphold. Hvis du har spørsmål eller trenger å gjøre endringer i bestillingen din, vennligst <emailLink>kontakt oss.</emailLink>",
|
||||
@@ -874,7 +883,7 @@
|
||||
"Your booking(s) is confirmed but we could not verify your membership. If you have booked with a member discount, you'll either need to present your existing membership number upon check-in, become a member or pay the price difference at the hotel. Signing up is preferably done online before the stay.": "Din bestilling er bekreftet, men vi kunne ikke verifisere medlemskapet ditt. Hvis du har booke ut med et medlemsrabatt, må du enten presentere eksisterende medlemsnummer ved check-in, bli medlem eller betale prisdifferansen ved hotellet. Registrering er foretrukket gjort online før oppholdet.",
|
||||
"Your card was successfully removed!": "Kortet ditt ble fjernet!",
|
||||
"Your card was successfully saved!": "Kortet ditt ble lagret!",
|
||||
"Your card will only be used for authorisation": "Kortet ditt vil kun bli brukt til autorisasjon",
|
||||
"Your card will only be used for authorization": "Kortet ditt vil kun bli brukt til autorisasjon",
|
||||
"Your current level": "Ditt nåværende nivå",
|
||||
"Your details": "Dine detaljer",
|
||||
"Your exchanged points will retain their original expiry date with a maximum validity of 12 months.": "Your exchanged points will retain their original expiry date with a maximum validity of 12 months.",
|
||||
@@ -899,6 +908,7 @@
|
||||
"booking.confirmation.text": "Takk for at du booket hos oss! Vi ser frem til å ønske deg velkommen og håper du får et hyggelig opphold. Hvis du har spørsmål eller trenger å gjøre endringer i bestillingen din, vennligst <emailLink>kontakt oss.</emailLink>",
|
||||
"booking.confirmation.title": "Bestillingsbekreftelse",
|
||||
"booking.guests": "Maks {max, plural, one {{range} gjest} other {{range} gjester}}",
|
||||
"cancelled": "avbrutt",
|
||||
"friday": "fredag",
|
||||
"from": "fra",
|
||||
"max {seatings} pers": "max {seatings} pers",
|
||||
@@ -965,6 +975,7 @@
|
||||
"{roomSize} m²": "{roomSize} m²",
|
||||
"{roomSize} m². Accommodates up to {max, plural, one {{range} person} other {{range} people}}": "{roomSize} m². Plass til {max, plural, one {{range} person} other {opptil {range} personer}}",
|
||||
"{roomType} <rate>{rateDescription}</rate>": "{roomType} <rate>{rateDescription}</rate>",
|
||||
"{rooms, plural, one {# room} other {# rooms}}": "{rooms, plural, one {# rom} other {# rom}}",
|
||||
"{selectedFromDate} - {selectedToDate}": "{selectedFromDate} - {selectedToDate}",
|
||||
"{selectedFromDate} - {selectedToDate} ({totalNights}) {details}": "{selectedFromDate} - {selectedToDate} ({totalNights}) {details}",
|
||||
"{selectedFromDate} <arrow></arrow> {selectedToDate} ({totalNights})": "{selectedFromDate} <arrow></arrow> {selectedToDate} ({totalNights})",
|
||||
|
||||
@@ -143,10 +143,13 @@
|
||||
"Cancel": "Avbryt",
|
||||
"Cancel booking": "Cancel booking",
|
||||
"Cancel stay": "Avboka vistelse",
|
||||
"Cancellation": "Avbokning",
|
||||
"Cancellation cost": "Avbokningskostnad",
|
||||
"Cancellation no": "Avbokningsnr",
|
||||
"Cancellation number": "Avbokningsnummer",
|
||||
"Cancellation policy": "Cancellation policy",
|
||||
"Cancelled": "Avbokad",
|
||||
"Card": "Kort",
|
||||
"Category": "Category",
|
||||
"Change room": "Ändra rum",
|
||||
"Changes can be made until {time} on {date}, subject to availability. Room rates may vary.": "Ändringar kan göras tills {time} den {date}, under förutsättning av tillgänglighet. Priserna för rummen kan variera.",
|
||||
@@ -255,6 +258,7 @@
|
||||
"Enter destination or hotel": "Ange destination eller hotell",
|
||||
"Enter your details": "Ange dina uppgifter",
|
||||
"Expiration Date: {expirationDate}": "Expiration Date: {expirationDate}",
|
||||
"Explore Scandic hotels": "Utforska Scandic hotell",
|
||||
"Explore all levels and benefits": "Utforska alla nivåer och fördelar",
|
||||
"Explore all our hotels": "Utforska alla våra hotell",
|
||||
"Explore nearby": "Utforska i närheten",
|
||||
@@ -461,6 +465,7 @@
|
||||
"Menu": "Meny",
|
||||
"Menus": "Menyer",
|
||||
"Modify": "Ändra",
|
||||
"Modify By": "Ändra senast",
|
||||
"Modify dates": "Ändra datum",
|
||||
"Modify guest details": "Ändra gästinformation",
|
||||
"Monday": "Måndag",
|
||||
@@ -469,6 +474,7 @@
|
||||
"Month": "Månad",
|
||||
"Multi-room booking is not available with reward night.": "Flerrumsbokning är inte tillgänglig med belöningsnatt.",
|
||||
"Multi-room booking is not available with this booking code.": "Flerrumsbokning är inte tillgänglig med denna bokningskod.",
|
||||
"Multi-room stay": "Flerrumsvistelse",
|
||||
"Museum": "Museum",
|
||||
"Museums": "Museer",
|
||||
"My Add-on's": "Mina tillägg",
|
||||
@@ -576,6 +582,7 @@
|
||||
"Phone number": "Telefonnummer",
|
||||
"Planning to arrive after 18.00? Secure your room by guaranteeing it with a credit card. Without the guarantee and in case of no-show, the room might be reallocated after 18:00.": "Planerar du att anlända efter 18.00? Säkra ditt rum genom att garantera det med ett kreditkort. Utan garantin och vid utebliven ankomst kan rummet komma att omfördelas efter kl. 18.00.",
|
||||
"Please contact <link>customer service</link>.": "Vänligen kontakta <link>kundtjänst</link>.",
|
||||
"Please contact customer service to update the dates.": "Kontakta kundsupport för att uppdatera datum.",
|
||||
"Please enter a valid phone number": "Var vänlig och ange ett giltigt telefonnummer",
|
||||
"Please enter the code sent to <maskedContactInfo></maskedContactInfo> in order to confirm your account linking.": "Please enter the code sent to <maskedContactInfo></maskedContactInfo> in order to confirm your account linking.",
|
||||
"Please enter the code sent to <maskedContactInfo></maskedContactInfo> in order to transfer your points.": "Please enter the code sent to <maskedContactInfo></maskedContactInfo> in order to transfer your points.",
|
||||
@@ -649,6 +656,7 @@
|
||||
"Room": "Rum",
|
||||
"Room & Terms": "Rum & Villkor",
|
||||
"Room amenities": "Bekvämligheter på rummet",
|
||||
"Room cancelled": "Rum avbokat",
|
||||
"Room charge": "Rumspris",
|
||||
"Room classification": "Rumsklassificering",
|
||||
"Room details": "Room details",
|
||||
@@ -740,6 +748,7 @@
|
||||
"TUI Points": "TUI Points",
|
||||
"Taking longer than usual": "Tar längre tid än vanligt",
|
||||
"Tell us what information and updates you'd like to receive, and how, by clicking the link below.": "Berätta för oss vilken information och vilka uppdateringar du vill få och hur genom att klicka på länken nedan.",
|
||||
"Terms": "Vilkår",
|
||||
"Terms and conditions": "Allmänna villkor",
|
||||
"Thank you": "Tack",
|
||||
"Thank you for booking with us! We look forward to welcoming you and hope you have a pleasant stay. If you have any questions or need to make changes to your reservation, please <emailLink>contact us.</emailLink>": "Tack för att du bokar hos oss! Vi ser fram emot att välkomna dig och hoppas att du får en trevlig vistelse. Om du har några frågor eller behöver göra ändringar i din bokning, vänligen <emailLink>kontakta oss.</emailLink>",
|
||||
@@ -876,7 +885,7 @@
|
||||
"Your booking(s) is confirmed but we could not verify your membership. If you have booked with a member discount, you'll either need to present your existing membership number upon check-in, become a member or pay the price difference at the hotel. Signing up is preferably done online before the stay.": "Din bokning är bekräftad, men vi kunde inte verifiera ditt medlemskap. Om du har bokat med ett medlemsrabatt måste du antingen presentera ditt befintliga medlemsnummer vid check-in, bli medlem eller betala prisdifferensen vid hotell. Registrering är föredragen gjord online före vistelsen.",
|
||||
"Your card was successfully removed!": "Ditt kort har tagits bort!",
|
||||
"Your card was successfully saved!": "Ditt kort har sparats!",
|
||||
"Your card will only be used for authorisation": "Ditt kort kommer endast att användas för auktorisering",
|
||||
"Your card will only be used for authorization": "Ditt kort kommer endast att användas för auktorisering",
|
||||
"Your current level": "Din nuvarande nivå",
|
||||
"Your details": "Dina uppgifter",
|
||||
"Your exchanged points will retain their original expiry date with a maximum validity of 12 months.": "Your exchanged points will retain their original expiry date with a maximum validity of 12 months.",
|
||||
@@ -901,6 +910,7 @@
|
||||
"booking.confirmation.text": "Tack för att du bokar hos oss! Vi ser fram emot att välkomna dig och hoppas att du får en trevlig vistelse. Om du har några frågor eller behöver göra ändringar i din bokning, vänligen <emailLink>kontakta oss.</emailLink>",
|
||||
"booking.confirmation.title": "Bokningsbekräftelse",
|
||||
"booking.guests": "Max {max, plural, one {{range} gäst} other {{range} gäster}}",
|
||||
"cancelled": "avbokade",
|
||||
"friday": "fredag",
|
||||
"from": "från",
|
||||
"max {seatings} pers": "max {seatings} pers",
|
||||
@@ -969,6 +979,7 @@
|
||||
"{roomSize} m²": "{roomSize} m²",
|
||||
"{roomSize} m². Accommodates up to {max, plural, one {{range} person} other {{range} people}}": "{roomSize} m². Rymmer {max, plural, one {{range} person} other {upp till {range} personer}}",
|
||||
"{roomType} <rate>{rateDescription}</rate>": "{roomType} <rate>{rateDescription}</rate>",
|
||||
"{rooms, plural, one {# room} other {# rooms}}": "{rooms, plural, one {# rum} other {# rum}}",
|
||||
"{selectedFromDate} - {selectedToDate}": "{selectedFromDate} - {selectedToDate}",
|
||||
"{selectedFromDate} - {selectedToDate} ({totalNights}) {details}": "{selectedFromDate} - {selectedToDate} ({totalNights}) {details}",
|
||||
"{selectedFromDate} <arrow></arrow> {selectedToDate} ({totalNights})": "{selectedFromDate} <arrow></arrow> {selectedToDate} ({totalNights})",
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
<svg width="275" height="44" viewBox="0 0 275 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M59.4142 38.7724C59.914 38.7724 60.2767 38.3656 60.2767 37.9144V32.9807C60.2767 32.7403 60.1694 32.5184 59.9991 32.3557C59.9806 32.3372 59.9621 32.3187 59.9436 32.3002C59.9251 32.2817 59.9066 32.2632 59.888 32.2447C59.8695 32.2262 59.851 32.2077 59.8325 32.1892C59.814 32.1708 59.7955 32.1523 59.777 32.1338C59.7585 32.1153 59.74 32.0968 59.7215 32.0783C59.703 32.0598 59.6844 32.0413 59.6659 32.0228C59.6474 32.0043 59.6289 31.9858 59.6104 31.9673C59.5919 31.9489 59.5734 31.9304 59.5549 31.9119C59.5364 31.8934 59.5179 31.8749 59.4994 31.8564C59.4809 31.8379 59.4623 31.8194 59.4438 31.8009C59.4253 31.7824 59.4068 31.7639 59.3883 31.7454C59.3698 31.7269 59.3513 31.7085 59.3328 31.69C59.3143 31.6715 59.2958 31.653 59.2773 31.6345C59.2588 31.616 59.2402 31.5975 59.2217 31.579C59.2032 31.5605 59.1847 31.542 59.1662 31.5235C59.1477 31.505 59.1292 31.4866 59.1107 31.4681C59.0922 31.4496 59.0737 31.4311 59.0552 31.4126C59.0367 31.3941 59.0181 31.3756 58.9996 31.3571C58.9811 31.3386 58.9626 31.3201 58.9441 31.3016C58.9256 31.2831 58.9071 31.2646 58.8886 31.2462C58.8701 31.2277 58.8516 31.2092 58.8331 31.1907C58.8145 31.1722 58.796 31.1537 58.7775 31.1352C58.759 31.1167 58.7405 31.0982 58.722 31.0797C58.7035 31.0612 58.685 31.0427 58.6665 31.0243C58.648 31.0058 58.6332 30.9873 58.6147 30.9725C58.7701 31.1315 58.8627 31.3423 58.8627 31.5679V36.5016C58.8627 36.9528 58.4999 37.3596 58.0002 37.3596H39.2472C39.0029 37.3596 38.7919 37.2561 38.6401 37.1007C38.6586 37.1192 38.6734 37.134 38.692 37.1525C38.7105 37.171 38.729 37.1895 38.7475 37.208C38.766 37.2265 38.7845 37.245 38.803 37.2635C38.8215 37.2819 38.84 37.3004 38.8585 37.3189C38.877 37.3374 38.8956 37.3559 38.9141 37.3744C38.9326 37.3929 38.9511 37.4114 38.9696 37.4299C38.9881 37.4484 39.0066 37.4669 39.0251 37.4854C39.0436 37.5039 39.0621 37.5223 39.0806 37.5408C39.0992 37.5593 39.1177 37.5778 39.1362 37.5963C39.1547 37.6148 39.1732 37.6333 39.1917 37.6518C39.2102 37.6703 39.2287 37.6888 39.2472 37.7073C39.2657 37.7258 39.2842 37.7442 39.3027 37.7627C39.3212 37.7812 39.3398 37.7997 39.3583 37.8182C39.3768 37.8367 39.3953 37.8552 39.4138 37.8737C39.4323 37.8922 39.4508 37.9107 39.4693 37.9292C39.4878 37.9477 39.5063 37.9662 39.5248 37.9846C39.5433 38.0031 39.5619 38.0216 39.5804 38.0401C39.5989 38.0586 39.6174 38.0771 39.6359 38.0956C39.6544 38.1141 39.6729 38.1326 39.6914 38.1511C39.7099 38.1696 39.7284 38.1881 39.7469 38.2066C39.7655 38.225 39.784 38.2435 39.8025 38.262C39.821 38.2805 39.8395 38.299 39.858 38.3175C39.8765 38.336 39.895 38.3545 39.9135 38.373C39.932 38.3915 39.9505 38.41 39.9691 38.4285C39.9876 38.4469 40.0061 38.4654 40.0246 38.4839C40.1801 38.6578 40.3985 38.7761 40.6613 38.7761H59.4142V38.7724Z" fill="#CD0921"/>
|
||||
<path d="M46.8657 13.7454H59.4146C59.9143 13.7454 60.2771 13.3386 60.2771 12.8837V7.94999C60.2771 7.7096 60.1697 7.48769 59.9994 7.32496C59.9809 7.30647 59.9624 7.28798 59.9439 7.26948C59.9254 7.25099 59.9069 7.2325 59.8884 7.21401C59.8699 7.19551 59.8514 7.17702 59.8329 7.15853C59.8144 7.14004 59.7958 7.12155 59.7773 7.10306C59.7588 7.08456 59.7403 7.06607 59.7218 7.04758C59.7033 7.02909 59.6848 7.0106 59.6663 6.9921C59.6478 6.97361 59.6293 6.95512 59.6108 6.93663C59.5923 6.91814 59.5738 6.89964 59.5552 6.88115C59.5367 6.86266 59.5182 6.84417 59.4997 6.82568C59.4812 6.80718 59.4627 6.78869 59.4442 6.7702C59.4257 6.75171 59.4072 6.73322 59.3887 6.71472C59.3701 6.69623 59.3516 6.67774 59.3331 6.65925C59.3146 6.64075 59.2961 6.62226 59.2776 6.60377C59.2591 6.58528 59.2406 6.56679 59.2221 6.5483C59.2036 6.5298 59.1851 6.51131 59.1666 6.49282C59.148 6.47433 59.1295 6.45584 59.111 6.43734C59.0925 6.41885 59.074 6.40036 59.0555 6.38187C59.037 6.36337 59.0185 6.34488 59 6.32639C58.9815 6.3079 58.963 6.28941 58.9445 6.27092C58.9259 6.25242 58.9074 6.23393 58.8889 6.21544C58.8704 6.19695 58.8519 6.17846 58.8334 6.15996C58.8149 6.14147 58.7964 6.12298 58.7779 6.10449C58.7594 6.08599 58.7409 6.0675 58.7224 6.04901C58.7038 6.03052 58.6853 6.01203 58.6668 5.99354C58.6483 5.97504 58.6335 5.95655 58.615 5.94176C58.7705 6.10079 58.863 6.3116 58.863 6.5372V11.4709C58.863 11.9221 58.5002 12.3326 58.0005 12.3326H45.4517V16.4008H46.8472V13.7269L46.8657 13.7454Z" fill="#CD0921"/>
|
||||
<path d="M46.8657 26.0085H57.1935C57.6452 26.0085 58.0523 25.646 58.0523 25.1467V20.2131C58.0523 19.9727 57.9339 19.7508 57.7599 19.5917C57.7414 19.5732 57.7266 19.5548 57.7044 19.5363C57.6859 19.5178 57.6674 19.4993 57.6488 19.4808C57.6303 19.4623 57.6155 19.4438 57.5933 19.4253C57.5748 19.4068 57.5563 19.3883 57.5378 19.3698C57.5193 19.3513 57.5008 19.3328 57.4823 19.3144C57.4638 19.2959 57.449 19.2774 57.4268 19.2589C57.4082 19.2404 57.3897 19.2219 57.3712 19.2034C57.3527 19.1849 57.3379 19.1664 57.3157 19.1479C57.2972 19.1294 57.2787 19.1109 57.2602 19.0924C57.2417 19.074 57.2232 19.0555 57.2046 19.037C57.1861 19.0185 57.1676 19 57.1491 18.9815C57.1306 18.963 57.1121 18.9445 57.0936 18.926C57.0751 18.9075 57.0566 18.889 57.0381 18.8705C57.0196 18.8521 57.001 18.8336 56.9825 18.8151C56.964 18.7966 56.9492 18.7781 56.927 18.7596C56.9085 18.7411 56.89 18.7226 56.8715 18.7041C56.853 18.6856 56.8382 18.6671 56.816 18.6486C56.7974 18.6302 56.7789 18.6117 56.7604 18.5932C56.7419 18.5747 56.7271 18.5562 56.7049 18.5377C56.6864 18.5192 56.6679 18.5007 56.6494 18.4822C56.6309 18.4637 56.6161 18.4452 56.5939 18.4267C56.5753 18.4082 56.5568 18.3898 56.5383 18.3713C56.5198 18.3528 56.5013 18.3343 56.4828 18.3158C56.4643 18.2973 56.4495 18.2788 56.4273 18.2603C56.4162 18.2492 56.4088 18.2381 56.3977 18.2307C56.542 18.3861 56.6383 18.5858 56.6383 18.8003V23.7339C56.6383 24.2332 56.2311 24.5957 55.7795 24.5957H45.4517V29.1632H46.8472V25.99L46.8657 26.0085Z" fill="#CD0921"/>
|
||||
<path d="M136.433 8.04559C136.414 8.02709 136.396 8.0086 136.377 7.99011C136.359 7.97162 136.34 7.95313 136.322 7.93464C136.303 7.91615 136.285 7.89765 136.266 7.87916C136.248 7.86067 136.229 7.84218 136.211 7.82369C136.192 7.8052 136.174 7.7867 136.155 7.76821C136.137 7.74972 136.118 7.73123 136.1 7.71273C136.081 7.69424 136.063 7.67575 136.044 7.65726C136.026 7.63877 136.007 7.62028 135.989 7.60178C135.97 7.58329 135.952 7.5648 135.933 7.54631C135.915 7.52781 135.896 7.50932 135.878 7.49083C135.859 7.47233 135.841 7.45384 135.822 7.43535C135.804 7.41686 135.785 7.39837 135.767 7.37988C135.748 7.36139 135.73 7.34289 135.711 7.3244C135.693 7.30591 135.674 7.28742 135.656 7.26893C135.637 7.25044 135.619 7.23194 135.6 7.21345C135.581 7.19496 135.563 7.17647 135.544 7.15797C135.526 7.13948 135.507 7.12099 135.489 7.1025C135.47 7.08401 135.452 7.06552 135.433 7.04702C135.415 7.02853 135.396 7.01004 135.378 6.99155C135.359 6.97306 135.341 6.95456 135.322 6.93607C135.304 6.91757 135.285 6.89908 135.267 6.88059C135.248 6.8621 135.23 6.84361 135.211 6.82512C135.193 6.80663 135.174 6.78813 135.156 6.76964C135.137 6.75115 135.122 6.73266 135.104 6.71786C135.259 6.8769 135.352 7.0877 135.352 7.3133V12.247C135.352 12.6982 134.989 13.1087 134.493 13.1087H121.944V18.083H123.34V14.503H135.889C136.385 14.503 136.748 14.0962 136.748 13.6413V8.7076C136.748 8.46721 136.64 8.24531 136.47 8.08258C136.451 8.06408 136.433 8.0456 136.414 8.0271L136.433 8.04559Z" fill="#CD0921"/>
|
||||
<path d="M134.197 21.2189C134.179 21.2004 134.16 21.1819 134.142 21.1634C134.123 21.1449 134.109 21.1265 134.086 21.108C134.068 21.0895 134.049 21.071 134.031 21.0525C134.012 21.034 133.998 21.0155 133.975 20.997C133.957 20.9785 133.942 20.96 133.92 20.9415C133.901 20.923 133.887 20.9045 133.864 20.8861C133.846 20.8676 133.831 20.8491 133.809 20.8306C133.79 20.8121 133.772 20.7936 133.753 20.7751C133.735 20.7566 133.72 20.7381 133.698 20.7196C133.679 20.7011 133.661 20.6826 133.642 20.6642C133.624 20.6457 133.609 20.6272 133.587 20.6087C133.568 20.5902 133.55 20.5717 133.531 20.5532C133.513 20.5347 133.498 20.5162 133.476 20.4977C133.457 20.4792 133.439 20.4607 133.42 20.4422C133.402 20.4238 133.387 20.4053 133.365 20.3868C133.346 20.3683 133.328 20.3498 133.309 20.3313C133.291 20.3128 133.272 20.2943 133.254 20.2758C133.235 20.2573 133.22 20.2388 133.198 20.2203C133.18 20.2018 133.161 20.1834 133.142 20.1649C133.124 20.1464 133.109 20.1279 133.087 20.1094C133.068 20.0909 133.05 20.0724 133.031 20.0539C133.013 20.0354 132.994 20.0169 132.976 19.9984C132.957 19.9799 132.943 19.9615 132.92 19.943C132.909 19.9319 132.898 19.9208 132.891 19.9134C133.035 20.0687 133.131 20.2684 133.131 20.4829V25.4166C133.131 25.8678 132.724 26.2746 132.269 26.2746H121.941V37.2737C121.941 37.7249 121.534 38.1317 121.082 38.1317H115.737C115.489 38.1317 115.282 38.0281 115.13 37.8691C115.148 37.8876 115.163 37.9061 115.182 37.9209C115.2 37.9394 115.219 37.9579 115.237 37.9764C115.256 37.9948 115.274 38.0134 115.293 38.0318C115.311 38.0503 115.33 38.0688 115.348 38.0873C115.367 38.1058 115.385 38.1243 115.404 38.1428C115.422 38.1613 115.441 38.1798 115.459 38.1983C115.478 38.2167 115.496 38.2352 115.515 38.2537C115.533 38.2722 115.552 38.2907 115.57 38.3092C115.589 38.3277 115.607 38.3462 115.626 38.3647C115.644 38.3832 115.663 38.4017 115.681 38.4202C115.7 38.4387 115.718 38.4572 115.737 38.4756C115.755 38.4941 115.774 38.5126 115.792 38.5311C115.811 38.5496 115.83 38.5681 115.848 38.5866C115.867 38.6051 115.885 38.6236 115.904 38.6421C115.922 38.6606 115.941 38.6791 115.959 38.6975C115.978 38.716 115.996 38.7345 116.015 38.753C116.033 38.7715 116.052 38.79 116.07 38.8085C116.089 38.827 116.107 38.8455 116.126 38.864C116.144 38.8825 116.163 38.901 116.181 38.9195C116.2 38.9379 116.218 38.9564 116.237 38.9749C116.255 38.9934 116.274 39.0119 116.292 39.0304C116.311 39.0489 116.329 39.0674 116.348 39.0859C116.366 39.1044 116.385 39.1229 116.403 39.1414C116.422 39.1599 116.44 39.1783 116.459 39.1968C116.477 39.2153 116.496 39.2338 116.514 39.2523C116.67 39.4261 116.888 39.5445 117.151 39.5445H122.496C122.948 39.5445 123.355 39.1377 123.355 38.6865V27.6874H133.683C134.135 27.6874 134.545 27.2806 134.545 26.8294V21.8957C134.545 21.6553 134.427 21.4334 134.253 21.2744C134.234 21.2559 134.22 21.2374 134.197 21.2189Z" fill="#CD0921"/>
|
||||
<path d="M146.606 25.7534V37.2961C146.606 37.7473 146.198 38.1541 145.747 38.1541H140.357C140.109 38.1541 139.902 38.0506 139.75 37.8915C139.769 37.91 139.783 37.9285 139.802 37.9433C139.82 37.9618 139.839 37.9803 139.857 37.9988C139.876 38.0173 139.894 38.0358 139.913 38.0543C139.931 38.0728 139.95 38.0913 139.968 38.1097C139.987 38.1282 140.005 38.1467 140.024 38.1652C140.042 38.1837 140.061 38.2022 140.079 38.2207C140.098 38.2392 140.116 38.2577 140.135 38.2762C140.153 38.2947 140.172 38.3132 140.191 38.3316C140.209 38.3501 140.228 38.3686 140.246 38.3871C140.265 38.4056 140.283 38.4241 140.302 38.4426C140.32 38.4611 140.339 38.4796 140.357 38.4981C140.376 38.5166 140.394 38.5351 140.413 38.5535C140.431 38.572 140.45 38.5905 140.468 38.609C140.487 38.6275 140.505 38.646 140.524 38.6645C140.542 38.683 140.561 38.7015 140.579 38.72C140.598 38.7385 140.616 38.757 140.635 38.7755C140.653 38.794 140.672 38.8124 140.69 38.8309C140.709 38.8494 140.727 38.8679 140.746 38.8864C140.764 38.9049 140.783 38.9234 140.801 38.9419C140.82 38.9604 140.838 38.9789 140.857 38.9974C140.875 39.0159 140.894 39.0343 140.912 39.0528C140.931 39.0713 140.949 39.0898 140.968 39.1083C140.986 39.1268 141.005 39.1453 141.023 39.1638C141.042 39.1823 141.06 39.2008 141.079 39.2193C141.097 39.2378 141.116 39.2563 141.134 39.2747C141.29 39.4486 141.508 39.5669 141.771 39.5669H147.161C147.612 39.5669 148.02 39.1601 148.02 38.7089V27.1662H149.589L148.89 25.7719H146.628L146.606 25.7534Z" fill="#CD0921"/>
|
||||
<path d="M154.705 14.3366C154.857 14.3366 155.001 14.3547 155.145 14.3732C155.068 13.9738 154.912 13.6002 154.697 13.2637C154.268 13.0676 153.802 12.9419 153.309 12.9419H146.605V18.4599L148.001 18.4603V14.3366H154.705Z" fill="#CD0921"/>
|
||||
<path d="M165.17 17.6425C165.17 14.939 164.048 12.4832 162.245 10.7117C162.227 10.6932 162.208 10.6747 162.19 10.6562C162.171 10.6377 162.153 10.6192 162.134 10.6007C162.116 10.5822 162.097 10.5637 162.079 10.5453C162.06 10.5268 162.042 10.5083 162.023 10.4898C162.005 10.4713 161.986 10.4528 161.968 10.4343C161.949 10.4158 161.931 10.3973 161.912 10.3788C161.894 10.3603 161.875 10.3418 161.857 10.3234C161.838 10.3049 161.82 10.2864 161.801 10.2679C161.783 10.2494 161.764 10.2309 161.746 10.2124C161.727 10.1939 161.709 10.1754 161.69 10.1569C161.671 10.1384 161.653 10.1199 161.634 10.1014C161.616 10.083 161.597 10.0645 161.579 10.046C161.56 10.0275 161.542 10.009 161.523 9.9905C161.505 9.97201 161.486 9.95351 161.468 9.93502C161.449 9.91653 161.431 9.89804 161.412 9.87955C161.394 9.86106 161.375 9.84256 161.357 9.82407C161.338 9.80557 161.32 9.78708 161.301 9.76859C161.283 9.7501 161.264 9.73161 161.246 9.71312C161.227 9.69463 161.209 9.67613 161.19 9.65764C161.172 9.63915 161.153 9.62066 161.135 9.60217C161.116 9.58368 161.098 9.56518 161.079 9.54669C161.061 9.5282 161.042 9.50971 161.024 9.49121C161.005 9.47272 160.987 9.45423 160.968 9.43574C160.95 9.41725 160.931 9.39875 160.913 9.38026C160.894 9.36547 160.879 9.34698 160.861 9.32848C162.645 11.1 163.756 13.5373 163.756 16.2297C163.756 20.3941 160.99 23.7412 157.052 25.3278L163.256 36.8224C163.574 37.4104 163.256 38.1353 162.486 38.1353H156.459C156.204 38.1353 156 38.0207 155.867 37.8912C155.878 37.9023 155.889 37.9134 155.901 37.9245C155.915 37.943 155.934 37.9615 155.956 37.98C155.971 37.9985 155.989 38.017 156.012 38.0355C156.026 38.054 156.049 38.0724 156.067 38.0909C156.082 38.1094 156.1 38.1279 156.123 38.1464C156.141 38.1649 156.156 38.1834 156.178 38.2019C156.193 38.2204 156.211 38.2389 156.234 38.2574C156.248 38.2759 156.271 38.2944 156.289 38.3128C156.304 38.3313 156.323 38.3498 156.345 38.3683C156.36 38.3868 156.378 38.4053 156.4 38.4238C156.415 38.4423 156.434 38.4608 156.456 38.4793C156.471 38.4978 156.489 38.5163 156.511 38.5348C156.526 38.5532 156.545 38.5717 156.567 38.5902C156.582 38.6087 156.6 38.6272 156.622 38.6457C156.637 38.6642 156.656 38.6827 156.678 38.7012C156.693 38.7197 156.711 38.7382 156.733 38.7567C156.748 38.7752 156.767 38.7936 156.789 38.8121C156.804 38.8306 156.826 38.8491 156.844 38.8676C156.859 38.8861 156.878 38.9046 156.9 38.9231C156.918 38.9416 156.933 38.9601 156.956 38.9786C156.97 38.9971 156.989 39.0155 157.011 39.034C157.026 39.0525 157.044 39.071 157.067 39.0895C157.081 39.108 157.1 39.1265 157.122 39.145C157.137 39.1635 157.155 39.182 157.178 39.2005C157.192 39.219 157.211 39.2375 157.233 39.256C157.363 39.4039 157.588 39.5481 157.874 39.5481H163.9C164.67 39.5481 164.988 38.8232 164.67 38.2352L158.466 26.7406C162.408 25.1576 165.17 21.8069 165.17 17.6425Z" fill="#CD0921"/>
|
||||
<path d="M177.146 8.04871C177.127 8.03022 177.109 8.01172 177.09 7.99323C177.072 7.97474 177.053 7.95625 177.035 7.93776C177.016 7.91926 177.001 7.90077 176.979 7.88228C176.961 7.86379 176.942 7.8453 176.924 7.82681C176.905 7.80831 176.89 7.78982 176.868 7.77133C176.85 7.75284 176.831 7.73434 176.813 7.71585C176.794 7.69735 176.779 7.67887 176.757 7.66037C176.739 7.64188 176.72 7.62339 176.701 7.6049C176.683 7.5864 176.668 7.56791 176.646 7.54942C176.627 7.53093 176.609 7.51244 176.59 7.49395C176.572 7.47545 176.553 7.45696 176.535 7.43847C176.516 7.41998 176.502 7.40149 176.479 7.383C176.461 7.3645 176.442 7.34601 176.424 7.32751C176.405 7.30902 176.391 7.29053 176.368 7.27204C176.35 7.25355 176.331 7.23506 176.313 7.21657C176.294 7.19808 176.279 7.17958 176.257 7.16109C176.239 7.1426 176.22 7.12411 176.202 7.10561C176.183 7.08712 176.168 7.06862 176.146 7.05013C176.128 7.03164 176.113 7.01315 176.091 6.99466C176.072 6.97617 176.054 6.95768 176.035 6.93919C176.017 6.92069 176.002 6.9022 175.98 6.88371C175.961 6.86522 175.943 6.84673 175.924 6.82824C175.906 6.80974 175.891 6.79125 175.869 6.77275C175.857 6.76166 175.846 6.75057 175.835 6.73947C175.983 6.8948 176.08 7.09822 176.08 7.31273V37.2735C176.08 37.7247 175.672 38.1315 175.217 38.1315H169.783C169.568 38.1315 169.368 38.0353 169.213 37.8911C169.224 37.9022 169.231 37.9133 169.242 37.9207C169.261 37.9392 169.276 37.9577 169.298 37.9762C169.317 37.9947 169.335 38.0132 169.354 38.0316C169.372 38.0501 169.387 38.0686 169.409 38.0871C169.428 38.1056 169.442 38.1241 169.465 38.1426C169.483 38.1611 169.498 38.1796 169.52 38.1981C169.539 38.2166 169.553 38.235 169.576 38.2535C169.594 38.272 169.613 38.2905 169.631 38.309C169.65 38.3275 169.664 38.346 169.687 38.3645C169.705 38.383 169.724 38.4015 169.742 38.42C169.761 38.4385 169.776 38.457 169.798 38.4754C169.816 38.4939 169.835 38.5124 169.853 38.5309C169.872 38.5494 169.89 38.5679 169.909 38.5864C169.927 38.6049 169.942 38.6234 169.964 38.6419C169.983 38.6604 170.001 38.6789 170.02 38.6973C170.038 38.7158 170.053 38.7343 170.075 38.7528C170.094 38.7713 170.112 38.7898 170.131 38.8083C170.149 38.8268 170.168 38.8453 170.186 38.8638C170.205 38.8823 170.22 38.9008 170.242 38.9193C170.26 38.9377 170.279 38.9562 170.297 38.9747C170.316 38.9932 170.331 39.0117 170.353 39.0302C170.372 39.0487 170.39 39.0672 170.409 39.0857C170.427 39.1042 170.442 39.1227 170.464 39.1412C170.483 39.1597 170.501 39.1781 170.52 39.1966C170.538 39.2151 170.553 39.2336 170.575 39.2521C170.734 39.4259 170.956 39.5443 171.197 39.5443H176.635C177.086 39.5443 177.497 39.1375 177.497 38.6863V8.72552C177.497 8.48512 177.379 8.26321 177.205 8.10418C177.186 8.08569 177.172 8.0672 177.149 8.04871H177.146Z" fill="#CD0921"/>
|
||||
<path d="M204.519 8.04559C204.501 8.02709 204.482 8.0086 204.464 7.99011C204.445 7.97162 204.427 7.95313 204.408 7.93464C204.39 7.91615 204.371 7.89765 204.353 7.87916C204.334 7.86067 204.316 7.84218 204.297 7.82369C204.279 7.8052 204.26 7.7867 204.242 7.76821C204.223 7.74972 204.205 7.73123 204.186 7.71273C204.168 7.69424 204.149 7.67575 204.131 7.65726C204.112 7.63877 204.094 7.62028 204.075 7.60178C204.057 7.58329 204.038 7.5648 204.02 7.54631C204.001 7.52781 203.983 7.50932 203.964 7.49083C203.946 7.47233 203.927 7.45384 203.909 7.43535C203.89 7.41686 203.872 7.39837 203.853 7.37988C203.835 7.36139 203.816 7.34289 203.797 7.3244C203.779 7.30591 203.76 7.28742 203.742 7.26893C203.723 7.25044 203.705 7.23194 203.686 7.21345C203.668 7.19496 203.649 7.17647 203.631 7.15797C203.612 7.13948 203.594 7.12099 203.575 7.1025C203.557 7.08401 203.538 7.06552 203.52 7.04702C203.501 7.02853 203.483 7.01004 203.464 6.99155C203.446 6.97306 203.427 6.95456 203.409 6.93607C203.39 6.91757 203.372 6.89908 203.353 6.88059C203.335 6.8621 203.316 6.84361 203.298 6.82512C203.279 6.80663 203.261 6.78813 203.242 6.76964C203.227 6.75115 203.209 6.73266 203.19 6.71786C203.342 6.8769 203.438 7.0877 203.438 7.3133V12.247C203.438 12.6982 203.076 13.1087 202.58 13.1087H190.031V17.1769H191.426V14.503H203.975C204.475 14.503 204.834 14.0962 204.834 13.6413V8.7076C204.834 8.46721 204.727 8.24531 204.556 8.08258C204.538 8.06408 204.519 8.0456 204.501 8.0271L204.519 8.04559Z" fill="#CD0921"/>
|
||||
<path d="M191.445 26.7853H201.773C202.224 26.7853 202.635 26.4229 202.635 25.9236V20.9899C202.635 20.7495 202.517 20.5276 202.343 20.3686C202.324 20.3501 202.306 20.3316 202.287 20.3131C202.269 20.2946 202.25 20.2761 202.232 20.2576C202.213 20.2391 202.195 20.2207 202.176 20.2022C202.158 20.1837 202.143 20.1652 202.121 20.1467C202.102 20.1282 202.084 20.1097 202.065 20.0912C202.047 20.0727 202.032 20.0542 202.01 20.0357C201.991 20.0172 201.973 19.9988 201.954 19.9803C201.936 19.9618 201.917 19.9433 201.898 19.9248C201.88 19.9063 201.865 19.8878 201.843 19.8693C201.824 19.8508 201.806 19.8323 201.787 19.8138C201.769 19.7953 201.754 19.7768 201.732 19.7584C201.713 19.7399 201.695 19.7214 201.676 19.7029C201.658 19.6844 201.643 19.6659 201.621 19.6474C201.602 19.6289 201.584 19.6104 201.565 19.5919C201.547 19.5734 201.532 19.5549 201.51 19.5365C201.491 19.518 201.473 19.4995 201.454 19.481C201.436 19.4625 201.417 19.444 201.399 19.4255C201.38 19.407 201.365 19.3885 201.343 19.37C201.325 19.3515 201.306 19.333 201.288 19.3145C201.269 19.2961 201.254 19.2776 201.232 19.2591C201.214 19.2406 201.195 19.2221 201.177 19.2036C201.158 19.1851 201.14 19.1666 201.121 19.1481C201.103 19.1296 201.084 19.1111 201.066 19.0926C201.047 19.0742 201.029 19.0557 201.01 19.0372C200.999 19.0261 200.988 19.015 200.977 19.0039C201.121 19.1592 201.221 19.3589 201.221 19.5771V24.5108C201.221 25.0101 200.814 25.3725 200.359 25.3725H190.031V29.9401H191.426V26.7668L191.445 26.7853Z" fill="#CD0921"/>
|
||||
<path d="M204.519 33.0763C204.501 33.0578 204.482 33.0393 204.464 33.0208C204.445 33.0023 204.427 32.9838 204.408 32.9654C204.39 32.9469 204.371 32.9284 204.353 32.9099C204.334 32.8914 204.316 32.8729 204.297 32.8544C204.279 32.8359 204.26 32.8174 204.242 32.7989C204.223 32.7804 204.205 32.7619 204.186 32.7435C204.168 32.725 204.149 32.7065 204.131 32.688C204.112 32.6695 204.094 32.651 204.075 32.6325C204.057 32.614 204.038 32.5955 204.02 32.577C204.001 32.5585 203.983 32.54 203.964 32.5215C203.946 32.5031 203.927 32.4846 203.909 32.4661C203.89 32.4476 203.872 32.4291 203.853 32.4106C203.835 32.3921 203.816 32.3736 203.798 32.3551C203.779 32.3366 203.761 32.3181 203.742 32.2997C203.724 32.2812 203.705 32.2627 203.687 32.2442C203.668 32.2257 203.65 32.2072 203.631 32.1887C203.613 32.1702 203.594 32.1517 203.576 32.1332C203.557 32.1147 203.538 32.0962 203.52 32.0778C203.501 32.0593 203.483 32.0408 203.464 32.0223C203.446 32.0038 203.427 31.9853 203.409 31.9668C203.39 31.9483 203.372 31.9298 203.353 31.9113C203.335 31.8928 203.316 31.8743 203.298 31.8558C203.279 31.8373 203.261 31.8189 203.242 31.8004C203.228 31.7819 203.209 31.7634 203.191 31.7486C203.342 31.9076 203.439 32.1184 203.439 32.344V37.2777C203.439 37.7289 203.076 38.1357 202.58 38.1357H183.827C183.579 38.1357 183.371 38.0322 183.22 37.8731C183.238 37.8916 183.253 37.9101 183.272 37.9249C183.29 37.9434 183.309 37.9619 183.327 37.9804C183.346 37.9989 183.364 38.0174 183.383 38.0359C183.401 38.0544 183.42 38.0728 183.438 38.0913C183.457 38.1098 183.475 38.1283 183.494 38.1468C183.512 38.1653 183.531 38.1838 183.549 38.2023C183.568 38.2208 183.586 38.2393 183.605 38.2578C183.623 38.2763 183.642 38.2948 183.66 38.3132C183.679 38.3317 183.697 38.3502 183.716 38.3687C183.734 38.3872 183.753 38.4057 183.771 38.4242C183.79 38.4427 183.808 38.4612 183.827 38.4797C183.845 38.4982 183.864 38.5167 183.882 38.5351C183.901 38.5536 183.919 38.5721 183.938 38.5906C183.956 38.6091 183.975 38.6276 183.993 38.6461C184.012 38.6646 184.03 38.6831 184.049 38.7016C184.067 38.7201 184.086 38.7386 184.104 38.7571C184.123 38.7755 184.141 38.794 184.16 38.8125C184.178 38.831 184.197 38.8495 184.215 38.868C184.234 38.8865 184.253 38.905 184.271 38.9235C184.29 38.942 184.308 38.9605 184.327 38.979C184.345 38.9975 184.364 39.0159 184.382 39.0344C184.401 39.0529 184.419 39.0714 184.438 39.0899C184.456 39.1084 184.475 39.1269 184.493 39.1454C184.512 39.1639 184.53 39.1824 184.549 39.2009C184.567 39.2193 184.586 39.2378 184.604 39.2563C184.76 39.4302 184.978 39.5485 185.241 39.5485H203.994C204.494 39.5485 204.853 39.1417 204.853 38.6905V33.7568C204.853 33.5164 204.745 33.2945 204.575 33.1318C204.556 33.1133 204.538 33.0948 204.519 33.0763Z" fill="#CD0921"/>
|
||||
<path d="M236.895 8.04952C236.876 8.03103 236.861 8.01253 236.839 7.99404C236.821 7.97555 236.802 7.95706 236.784 7.93857C236.765 7.92008 236.75 7.90158 236.728 7.88309C236.71 7.8646 236.691 7.84611 236.673 7.82762C236.654 7.80913 236.639 7.79064 236.617 7.77214C236.599 7.75365 236.58 7.73516 236.562 7.71666C236.543 7.69817 236.528 7.67968 236.506 7.66119C236.488 7.6427 236.469 7.6242 236.451 7.60571C236.432 7.58722 236.414 7.56873 236.395 7.55024C236.377 7.53174 236.362 7.51325 236.34 7.49476C236.321 7.47627 236.303 7.45777 236.284 7.43928C236.266 7.42079 236.251 7.4023 236.229 7.38381C236.21 7.36532 236.192 7.34682 236.173 7.32833C236.155 7.30984 236.14 7.29135 236.118 7.27286C236.099 7.25437 236.081 7.23588 236.062 7.21738C236.043 7.19889 236.029 7.1804 236.006 7.1619C235.988 7.14341 235.973 7.12492 235.951 7.10643C235.932 7.08794 235.914 7.06944 235.895 7.05095C235.877 7.03246 235.862 7.01397 235.84 6.99548C235.821 6.97698 235.803 6.95849 235.784 6.94C235.766 6.92151 235.751 6.90301 235.729 6.88452C235.71 6.86603 235.692 6.84754 235.673 6.82905C235.655 6.81056 235.636 6.79206 235.618 6.77357C235.599 6.75508 235.585 6.73658 235.566 6.72179C235.725 6.88082 235.829 7.08794 235.829 7.31354V37.7736C235.829 38.2248 235.422 38.5872 234.97 38.5872H234.245C234.108 38.5872 233.749 38.4504 233.656 38.3616L235.07 39.7744C235.159 39.8632 235.522 40 235.659 40H236.384C236.836 40 237.243 39.6376 237.243 39.1864V8.72633C237.243 8.48593 237.124 8.26403 236.95 8.105C236.932 8.0865 236.913 8.06801 236.895 8.04952Z" fill="#CD0921"/>
|
||||
<path d="M215.736 37.2959C215.736 37.7471 215.373 38.154 214.877 38.154H209.487C209.273 38.154 209.069 38.0578 208.914 37.9099C208.925 37.921 208.936 37.9321 208.947 37.9432C208.965 37.9616 208.98 37.9801 209.002 37.9986C209.021 38.0171 209.039 38.0356 209.058 38.0541C209.076 38.0726 209.091 38.0911 209.113 38.1096C209.132 38.1281 209.15 38.1466 209.169 38.1651C209.187 38.1836 209.202 38.2021 209.225 38.2205C209.243 38.239 209.262 38.2575 209.28 38.276C209.299 38.2945 209.317 38.313 209.336 38.3315C209.354 38.35 209.369 38.3685 209.391 38.387C209.41 38.4055 209.428 38.424 209.447 38.4424C209.465 38.4609 209.48 38.4794 209.502 38.4979C209.521 38.5164 209.539 38.5349 209.558 38.5534C209.576 38.5719 209.591 38.5904 209.613 38.6089C209.632 38.6274 209.65 38.6459 209.669 38.6644C209.687 38.6828 209.702 38.7013 209.724 38.7198C209.743 38.7383 209.758 38.7568 209.78 38.7753C209.798 38.7938 209.817 38.8123 209.835 38.8308C209.854 38.8493 209.869 38.8678 209.891 38.8863C209.909 38.9048 209.924 38.9232 209.946 38.9417C209.965 38.9602 209.983 38.9787 210.002 38.9972C210.02 39.0157 210.035 39.0342 210.057 39.0527C210.076 39.0712 210.094 39.0897 210.113 39.1082C210.131 39.1266 210.146 39.1451 210.168 39.1636C210.187 39.1821 210.205 39.2006 210.224 39.2191C210.243 39.2376 210.257 39.2561 210.28 39.2746C210.439 39.4484 210.661 39.5668 210.901 39.5668H216.291C216.791 39.5668 217.15 39.1599 217.15 38.7087V22.0105L215.754 20.6088V37.3144L215.736 37.2959Z" fill="#CD0921"/>
|
||||
<path d="M254.153 13.1268L249.803 13.1266V29.9136H251.198V14.5209H255.548C257.173 14.5209 258.65 14.9388 259.92 15.66C259.675 15.2938 259.405 14.9462 259.113 14.6281C257.724 13.685 256.04 13.1302 254.156 13.1302L254.153 13.1268Z" fill="#CD0921"/>
|
||||
<path d="M267.149 12.4285C267.149 12.4285 267.112 12.3915 267.094 12.373C267.075 12.3545 267.057 12.336 267.038 12.3175C267.019 12.299 267.001 12.2805 266.982 12.262C266.964 12.2435 266.945 12.225 266.927 12.2066C266.908 12.1881 266.89 12.1696 266.871 12.1511C266.853 12.1326 266.834 12.1141 266.816 12.0956C266.797 12.0771 266.779 12.0586 266.76 12.0401C266.742 12.0216 266.723 12.0031 266.705 11.9846C266.686 11.9662 266.668 11.9477 266.649 11.9292C266.631 11.9107 266.612 11.8922 266.594 11.8737C266.575 11.8552 266.557 11.8367 266.538 11.8219C266.52 11.8034 266.501 11.7849 266.483 11.7664C266.464 11.7479 266.446 11.7295 266.427 11.711C266.409 11.6925 266.39 11.674 266.372 11.6555C266.353 11.637 266.335 11.6185 266.32 11.6C266.301 11.5815 266.283 11.563 266.264 11.5445C266.246 11.526 266.227 11.5076 266.213 11.4928C266.194 11.4743 266.175 11.4558 266.157 11.4373C266.138 11.4188 266.12 11.4003 266.101 11.3818C266.094 11.3744 266.087 11.367 266.079 11.3596C266.09 11.3744 266.101 11.3892 266.109 11.404C268.822 14.2407 270.495 18.0648 270.495 22.2588C270.495 31.0388 263.336 38.1434 254.596 38.1434H243.543C243.321 38.1434 243.125 38.0399 242.98 37.8882C242.995 37.9067 243.014 37.9215 243.032 37.94C243.051 37.9585 243.069 37.977 243.088 37.9955C243.106 38.014 243.125 38.0325 243.143 38.051C243.162 38.0695 243.18 38.088 243.199 38.1065C243.217 38.1249 243.236 38.1434 243.254 38.1619C243.273 38.1804 243.291 38.1989 243.31 38.2174C243.328 38.2359 243.347 38.2544 243.365 38.2729C243.384 38.2914 243.402 38.3099 243.421 38.3284C243.439 38.3469 243.458 38.3653 243.477 38.3838C243.495 38.4023 243.514 38.4208 243.532 38.4393C243.551 38.4578 243.569 38.4763 243.588 38.4948C243.606 38.5133 243.625 38.5318 243.643 38.5503C243.662 38.5688 243.68 38.5873 243.699 38.6057C243.717 38.6242 243.736 38.6427 243.754 38.6612C243.773 38.6797 243.791 38.6982 243.81 38.7167C243.828 38.7352 243.847 38.7537 243.865 38.7722C243.884 38.7907 243.902 38.8092 243.921 38.8276C243.939 38.8461 243.958 38.8646 243.976 38.8831C243.995 38.9016 244.013 38.9201 244.032 38.9386C244.05 38.9571 244.069 38.9756 244.087 38.9941C244.106 39.0126 244.124 39.0311 244.143 39.0496C244.161 39.068 244.18 39.0865 244.198 39.105C244.217 39.1235 244.235 39.142 244.254 39.1605C244.272 39.179 244.291 39.1975 244.309 39.216C244.328 39.2345 244.346 39.253 244.365 39.2714C244.513 39.4453 244.724 39.5599 244.961 39.5599H256.014C264.758 39.5599 271.913 32.4553 271.913 23.6753C271.913 19.3186 270.114 15.3613 267.216 12.495C267.197 12.4765 267.179 12.458 267.16 12.4396L267.149 12.4285Z" fill="#CD0921"/>
|
||||
<path d="M30.6586 37.8327H29.9332C29.7963 37.8327 29.4373 37.6959 29.3447 37.6071L30.4255 38.687L30.4773 38.7425L30.5328 38.798L30.5846 38.8535L30.7512 39.0199C30.84 39.1087 31.2027 39.2455 31.3396 39.2455H32.0651C32.5166 39.2455 32.9237 38.8831 32.9237 38.4319V7.97183C32.9237 7.73143 32.8053 7.50953 32.6313 7.3505C32.6128 7.332 32.5943 7.31351 32.5758 7.29502C32.5573 7.27653 32.5388 7.25804 32.5203 7.23954C32.5018 7.22105 32.487 7.20256 32.4648 7.18407C32.4463 7.16557 32.4278 7.14709 32.4093 7.12859C32.3908 7.1101 32.376 7.09161 32.3538 7.07312C32.3353 7.05462 32.3168 7.03613 32.2982 7.01764C32.2797 6.99915 32.2649 6.98066 32.2427 6.96216C32.2242 6.94367 32.2057 6.92518 32.1872 6.90669C32.1687 6.88819 32.1539 6.86971 32.1317 6.85121C32.1132 6.83272 32.0947 6.81423 32.0762 6.79574C32.0577 6.77724 32.0392 6.75875 32.0207 6.74026C32.0022 6.72177 31.9874 6.70328 31.9651 6.68478C31.9466 6.66629 31.9281 6.6478 31.9096 6.62931C31.8911 6.61081 31.8763 6.59233 31.8541 6.57383C31.8356 6.55534 31.8171 6.53685 31.7986 6.51836C31.7801 6.49986 31.7616 6.48137 31.7431 6.46288C31.7246 6.44439 31.7098 6.4259 31.6876 6.4074C31.6691 6.38891 31.6505 6.37042 31.632 6.35193C31.6135 6.33343 31.595 6.31495 31.5765 6.29645C31.558 6.27796 31.5395 6.25947 31.521 6.24098C31.5025 6.22248 31.4877 6.20399 31.4655 6.1855C31.447 6.16701 31.4285 6.14852 31.41 6.13002C31.3915 6.11153 31.3767 6.09304 31.3544 6.07455C31.3359 6.05605 31.3174 6.03757 31.2989 6.01907C31.2804 6.00058 31.2656 5.98579 31.2471 5.9673C31.4026 6.12633 31.5099 6.33344 31.5099 6.55904V37.0191C31.5099 37.4703 31.1028 37.8327 30.6512 37.8327H30.6586Z" fill="#CD0921"/>
|
||||
<path d="M11.4024 36.5198C11.4024 36.971 11.0396 37.3779 10.5436 37.3779H5.15014C4.93544 37.3779 4.73555 37.2817 4.58008 37.1375C4.59118 37.1486 4.59859 37.156 4.60969 37.1671C4.6282 37.1856 4.643 37.204 4.66521 37.2225C4.68372 37.241 4.70224 37.2595 4.72075 37.278C4.73925 37.2965 4.75406 37.315 4.77627 37.3335C4.79478 37.352 4.80958 37.3705 4.83179 37.389C4.8503 37.4075 4.86881 37.4259 4.88732 37.4444C4.90583 37.4629 4.92063 37.4814 4.94284 37.4999C4.96135 37.5184 4.97987 37.5369 4.99837 37.5554C5.01688 37.5739 5.03169 37.5924 5.0539 37.6109C5.07241 37.6294 5.09091 37.6478 5.10942 37.6663C5.12793 37.6848 5.14644 37.7033 5.16495 37.7218C5.18346 37.7403 5.19826 37.7588 5.22047 37.7773C5.23898 37.7958 5.2575 37.8143 5.276 37.8328C5.29451 37.8513 5.30932 37.8698 5.33153 37.8883C5.35004 37.9067 5.36854 37.9252 5.38705 37.9437C5.40556 37.9622 5.42037 37.9807 5.44258 37.9992C5.46109 38.0177 5.4796 38.0362 5.4981 38.0547C5.51661 38.0732 5.53142 38.0917 5.55363 38.1102C5.57214 38.1286 5.59065 38.1471 5.60916 38.1656C5.62767 38.1841 5.64617 38.2026 5.66468 38.2211C5.68319 38.2396 5.698 38.2581 5.72021 38.2766C5.73872 38.2951 5.75723 38.3136 5.77573 38.3321C5.79424 38.3506 5.80905 38.369 5.83126 38.3875C5.84977 38.406 5.86828 38.4245 5.88679 38.443C5.9053 38.4615 5.9201 38.48 5.94231 38.4985C6.10148 38.6723 6.32359 38.7907 6.56421 38.7907H11.9576C12.4536 38.7907 12.8164 38.3838 12.8164 37.9326V21.2344L11.4209 19.8327V36.5383L11.4024 36.5198Z" fill="#CD0921"/>
|
||||
<path d="M72.1074 37.3336C71.9704 37.6036 71.6558 37.8329 71.3374 37.8329H70.6119C70.4194 37.8329 70.2306 37.7515 70.0825 37.6295C70.101 37.648 70.1158 37.6665 70.138 37.685C70.1566 37.7035 70.1714 37.7257 70.1936 37.7405C70.2121 37.7589 70.2269 37.7811 70.2491 37.7959C70.2676 37.8144 70.2824 37.8366 70.3046 37.8514C70.3231 37.8699 70.3379 37.8921 70.3601 37.9069C70.3787 37.9254 70.3935 37.9476 70.4157 37.9624C70.4342 37.9808 70.449 38.003 70.4712 38.0178C70.4897 38.0363 70.5045 38.0585 70.5267 38.0733C70.5452 38.0918 70.56 38.1103 70.5822 38.1288C70.6008 38.1473 70.6156 38.1695 70.6378 38.1843C70.6563 38.2027 70.6711 38.2249 70.6933 38.2397C70.7118 38.2582 70.7266 38.2804 70.7488 38.2952C70.7673 38.3137 70.7821 38.3359 70.8044 38.3507C70.8229 38.3692 70.8377 38.3914 70.8599 38.4062C70.8784 38.4247 70.8932 38.4468 70.9154 38.4616C70.9339 38.4801 70.9487 38.5023 70.9709 38.5171C70.9894 38.5356 71.0042 38.5578 71.0265 38.5726C71.045 38.5911 71.0598 38.6133 71.082 38.6281C71.1005 38.6466 71.1153 38.6687 71.1375 38.6835C71.156 38.702 71.1708 38.7242 71.193 38.739C71.2115 38.7575 71.2263 38.7797 71.2486 38.7945C71.2671 38.813 71.2819 38.8315 71.3041 38.85C71.3226 38.8685 71.3374 38.8907 71.3596 38.9054C71.3781 38.9239 71.3929 38.9461 71.4151 38.9609C71.4336 38.9794 71.4485 39.0016 71.4707 39.0164C71.6261 39.1569 71.826 39.2494 72.0296 39.2494H72.7552C73.0735 39.2494 73.3882 39.0238 73.5251 38.7501L80.9878 21.9964L79.9772 19.7403L72.1296 37.3558L72.1074 37.3336Z" fill="#CD0921"/>
|
||||
<path d="M67.8838 5.9231C67.9021 5.93787 67.9168 5.95633 67.9352 5.97479C67.9572 5.98956 67.9719 6.01171 67.9902 6.03017C67.9572 5.99325 67.9242 5.95633 67.8838 5.9231Z" fill="#CD0921"/>
|
||||
<path d="M69.5607 7.72362C69.5163 7.56089 69.3979 7.40186 69.2461 7.28351C69.2276 7.26502 69.2128 7.24653 69.1906 7.22803C69.1721 7.20954 69.1573 7.19105 69.1351 7.17256C69.1166 7.15407 69.1018 7.13558 69.0796 7.11708C69.0611 7.09859 69.0463 7.0801 69.0241 7.06161C69.0056 7.04312 68.9908 7.02462 68.9686 7.00613C68.95 6.98764 68.9352 6.96915 68.913 6.95065C68.8945 6.93216 68.8797 6.91367 68.8575 6.89518C68.839 6.87669 68.8242 6.8582 68.802 6.8397C68.7835 6.82121 68.7687 6.80272 68.7465 6.78423C68.728 6.76574 68.7132 6.74724 68.691 6.72875C68.6725 6.71026 68.6577 6.69177 68.6355 6.67328C68.6169 6.65478 68.6021 6.63629 68.5799 6.6178C68.5614 6.59931 68.5466 6.58082 68.5244 6.56232C68.5059 6.54383 68.4911 6.52534 68.4689 6.50685C68.4504 6.48836 68.4356 6.46986 68.4134 6.45137C68.3949 6.43288 68.3801 6.41439 68.3579 6.3959C68.3394 6.3774 68.3245 6.35891 68.3023 6.34042C68.2838 6.32193 68.269 6.30344 68.2468 6.28494C68.2283 6.26645 68.2135 6.24796 68.1913 6.22947C68.1728 6.21098 68.158 6.19248 68.1358 6.17399C68.1173 6.1555 68.1025 6.13701 68.0803 6.11852C68.0618 6.10002 68.047 6.08153 68.0247 6.06304C68.0062 6.04455 67.9914 6.02606 67.9692 6.00756C68.0507 6.10002 68.1173 6.20358 68.1469 6.31083L71.3151 18.7855L71.9739 17.2877L69.5385 7.70143L69.5607 7.72362Z" fill="#CD0921"/>
|
||||
<path d="M83.0162 7.13568C82.9866 7.04692 82.9311 6.96556 82.8645 6.89159C82.8497 6.8694 82.8275 6.85461 82.809 6.83611C82.7942 6.81392 82.772 6.79913 82.7534 6.78064C82.7386 6.75845 82.7164 6.74365 82.6979 6.72516C82.6831 6.70297 82.6609 6.68818 82.6424 6.66969C82.6276 6.64749 82.6054 6.6327 82.5869 6.61421C82.5721 6.59202 82.5499 6.57723 82.5314 6.55873C82.5166 6.53654 82.4944 6.52175 82.4759 6.50326C82.4611 6.48107 82.4389 6.46627 82.4203 6.44778C82.4055 6.42929 82.3833 6.4108 82.3648 6.39231C82.35 6.37381 82.3278 6.35532 82.3093 6.33683C82.2945 6.31834 82.2723 6.29985 82.2538 6.28135C82.239 6.25916 82.2168 6.24437 82.1983 6.22588C82.1835 6.20369 82.1613 6.18889 82.1428 6.1704C82.128 6.14821 82.1058 6.13342 82.0872 6.11493C82.0724 6.09273 82.0502 6.07794 82.0317 6.05945C82.0169 6.03726 81.9947 6.02247 81.9762 6.00397C81.9614 5.98178 81.9392 5.96699 81.9207 5.9485C81.9059 5.93001 81.8837 5.91151 81.8652 5.89302C81.8504 5.87083 81.8282 5.85604 81.8097 5.83755C81.7949 5.81905 81.7727 5.80056 81.7542 5.78207C81.7393 5.75988 81.7171 5.74509 81.6986 5.72659C81.6838 5.7044 81.6616 5.68961 81.6431 5.67112C81.6283 5.64893 81.6061 5.63413 81.5876 5.61564C81.5728 5.59345 81.5506 5.57866 81.5321 5.56017C81.5173 5.54167 81.4951 5.52318 81.4766 5.50469C81.5321 5.57126 81.5765 5.64153 81.6024 5.7192L87.5316 19.1703L87.8166 18.046L82.9977 7.1098L83.0162 7.13568Z" fill="#CD0921"/>
|
||||
<path d="M99.6521 6.78486L91.09 37.2005C90.9975 37.5629 90.6384 37.8329 90.2756 37.8329H89.5501C89.3317 37.8329 89.1133 37.722 88.9541 37.563C88.9615 37.5703 88.9726 37.5814 88.98 37.5888C88.9985 37.6073 89.017 37.6258 89.0355 37.6443C89.054 37.6628 89.0726 37.6813 89.0911 37.6998C89.1059 37.7183 89.1281 37.7368 89.1466 37.7553C89.1651 37.7738 89.1836 37.7922 89.2021 37.8107C89.2206 37.8292 89.2391 37.8477 89.2576 37.8662C89.2725 37.8847 89.2947 37.9032 89.3132 37.9217C89.328 37.9402 89.3502 37.9587 89.3687 37.9772C89.3835 37.9957 89.4057 38.0142 89.4242 38.0326C89.4427 38.0511 89.4612 38.0696 89.4798 38.0881C89.4983 38.1066 89.5168 38.1251 89.5353 38.1436C89.5538 38.1621 89.5723 38.1806 89.5908 38.1991C89.6093 38.2176 89.6278 38.2361 89.6463 38.2546C89.6648 38.273 89.6833 38.2915 89.7019 38.31C89.7204 38.3285 89.7389 38.347 89.7574 38.3655C89.7759 38.384 89.7944 38.4025 89.8129 38.421C89.8314 38.4395 89.8499 38.458 89.8684 38.4765C89.8869 38.4949 89.9054 38.5134 89.924 38.5319C89.9425 38.5504 89.961 38.5689 89.9795 38.5874C89.998 38.6059 90.0165 38.6244 90.035 38.6429C90.0535 38.6614 90.072 38.6799 90.0905 38.6984C90.109 38.7168 90.1275 38.7353 90.1461 38.7538C90.1646 38.7723 90.1831 38.7908 90.2016 38.8093C90.2201 38.8278 90.2386 38.8463 90.2571 38.8648C90.2756 38.8833 90.2941 38.9018 90.3126 38.9203C90.4755 39.1089 90.7161 39.2457 90.9604 39.2457H91.686C92.0487 39.2457 92.4115 38.9757 92.5004 38.6133L101.062 8.19765C101.173 7.81301 101.081 7.49865 100.851 7.30633C100.844 7.29893 100.84 7.29154 100.833 7.28784C100.807 7.25456 100.777 7.22497 100.744 7.19908C100.737 7.19168 100.733 7.18429 100.726 7.18059C100.714 7.16949 100.703 7.15839 100.692 7.1473C100.674 7.12881 100.659 7.11032 100.637 7.09182C100.629 7.08443 100.626 7.07703 100.618 7.07333C100.607 7.06224 100.596 7.04744 100.585 7.04005C100.578 7.03265 100.574 7.02525 100.566 7.02156C100.555 7.01046 100.544 6.99567 100.533 6.98827C100.526 6.98087 100.522 6.97348 100.515 6.96978C100.503 6.95868 100.492 6.94389 100.481 6.93649C100.474 6.92909 100.47 6.9217 100.463 6.918C100.452 6.90691 100.441 6.89211 100.429 6.88471C100.422 6.87732 100.418 6.86992 100.411 6.86622C100.392 6.84773 100.378 6.82924 100.355 6.81075C100.344 6.79965 100.333 6.78486 100.322 6.77746C100.315 6.77006 100.311 6.76267 100.304 6.75897C100.278 6.72568 100.248 6.69609 100.215 6.67021C100.207 6.66281 100.204 6.65541 100.196 6.65172C100.185 6.64062 100.174 6.62952 100.163 6.61843C100.144 6.59994 100.13 6.58145 100.107 6.56295C100.1 6.55556 100.096 6.54816 100.089 6.54446C100.078 6.53337 100.067 6.51857 100.056 6.51117C100.048 6.50378 100.044 6.49638 100.037 6.49268C100.026 6.48159 100.015 6.46679 100.004 6.4594C99.9964 6.452 99.9927 6.44461 99.9853 6.44091C99.9741 6.42981 99.963 6.41502 99.9519 6.40762C99.9445 6.40022 99.9408 6.39283 99.9334 6.38913C99.9149 6.37064 99.9001 6.35214 99.8779 6.33365C99.8668 6.32256 99.8557 6.30776 99.8446 6.30037C99.8372 6.29297 99.8335 6.28557 99.8261 6.28188C99.8002 6.24859 99.7706 6.219 99.7372 6.19311C99.7298 6.18572 99.7261 6.17832 99.7187 6.17462C99.7076 6.16353 99.6965 6.15243 99.6854 6.14133C99.6669 6.12284 99.6521 6.10435 99.6299 6.08586C99.6225 6.07846 99.6188 6.07107 99.6114 6.06737C99.6003 6.05627 99.5892 6.04148 99.5781 6.03408C99.7446 6.2264 99.8039 6.50748 99.7076 6.84403L99.6521 6.78486Z" fill="#CD0921"/>
|
||||
<path d="M3.75886 35.8358H9.14857C9.54095 35.8358 9.8593 35.5178 9.8593 35.1257V18.0909H10.1184L10.1628 18.1353L28.057 36.1021C28.1162 36.1613 28.442 36.2833 28.5382 36.2833H29.2637C29.6487 36.2833 29.9745 35.9801 29.9745 35.6213V5.1613C29.9745 4.79146 29.6376 4.4512 29.2637 4.4512H23.8259C23.4335 4.4512 23.1152 4.76927 23.1152 5.1613V21.3788H22.8598L4.78423 4H3.71073C3.32575 4 3 4.30327 3 4.66201L3.04442 35.122C3.04442 35.4919 3.38128 35.8321 3.75516 35.8321L3.75886 35.8358Z" fill="#CD0921"/>
|
||||
<path d="M43.9261 23.0723H54.4057C54.7981 23.0723 55.1165 22.7542 55.1165 22.3622V17.4285C55.1165 17.0587 54.7796 16.7184 54.4057 16.7184H43.9261V10.8047H56.6268C57.0192 10.8047 57.3375 10.4866 57.3375 10.0946V5.16091C57.3375 4.76888 57.0192 4.45082 56.6268 4.45082H37.8738C37.4814 4.45082 37.1631 4.76888 37.1631 5.16091V35.1217C37.1631 35.5137 37.4814 35.8318 37.8738 35.8318H56.6268C57.0192 35.8318 57.3375 35.5137 57.3375 35.1217V30.188C57.3375 29.796 57.0192 29.4779 56.6268 29.4779H43.9261V23.0649V23.0723Z" fill="#CD0921"/>
|
||||
<path d="M88.1545 36.2865H88.8801C89.1762 36.2865 89.4761 36.0535 89.5501 35.7687L98.1122 5.34939C98.1862 5.0942 98.1603 4.8649 98.0381 4.70587C97.916 4.54684 97.705 4.45808 97.4422 4.45808H92.1413C91.8452 4.45808 91.5416 4.73546 91.4713 4.98325L87.5475 20.4352H87.1514L80.0922 4.4137C80.0255 4.21029 79.8257 4.00688 79.4592 4.00688H78.6448C78.3783 4.00688 78.1377 4.16221 78.0081 4.4211L70.9489 20.4352H70.5528L66.629 4.97955C66.5587 4.73546 66.2588 4.45808 65.959 4.45808H60.6581C60.3953 4.45808 60.1843 4.54684 60.0621 4.70587C59.94 4.8649 59.9141 5.0942 59.9881 5.34939L68.5502 35.765C68.6242 36.0572 68.9241 36.2902 69.2202 36.2902H69.9457C70.1901 36.2902 70.464 36.1127 70.5824 35.876L78.8632 17.2804H79.1964L87.5253 35.8797C87.64 36.109 87.9139 36.2902 88.1582 36.2902L88.1545 36.2865Z" fill="#CD0921"/>
|
||||
<path d="M120.416 11.5808H133.117C133.509 11.5808 133.828 11.2627 133.828 10.8707V5.93702C133.828 5.54499 133.509 5.22692 133.117 5.22692H114.364C113.972 5.22692 113.653 5.54499 113.653 5.93702V35.8978C113.653 36.2898 113.972 36.6079 114.364 36.6079H119.709C120.08 36.6079 120.42 36.2713 120.42 35.8978V24.7471H130.9C131.27 24.7471 131.61 24.4105 131.61 24.037V19.1033C131.61 18.7335 131.274 18.3932 130.9 18.3932H120.42V11.5734L120.416 11.5808Z" fill="#CD0921"/>
|
||||
<path d="M155.086 36.6115H161.113C161.402 36.6115 161.631 36.4969 161.757 36.2824C161.887 36.0642 161.887 35.772 161.75 35.5205L155.464 23.8743L155.619 23.8114C159.695 22.173 162.231 18.7409 162.231 14.8539C162.231 9.54665 157.87 5.22692 152.506 5.22692H138.962C138.569 5.22692 138.251 5.54499 138.251 5.93702V35.8978C138.251 36.2898 138.569 36.6078 138.962 36.6078H144.351C144.722 36.6078 145.062 36.2713 145.062 35.8978V24.2034H148.431L154.498 36.2824C154.561 36.4081 154.775 36.6078 155.086 36.6078V36.6115ZM151.918 18.7631H145.062V11.3996H151.918C153.865 11.3996 155.512 13.0453 155.512 14.9907C155.512 16.9361 153.832 18.7631 151.918 18.7631Z" fill="#CD0921"/>
|
||||
<path d="M168.41 5.23085H173.844C174.236 5.23085 174.555 5.54891 174.555 5.94094V35.9054C174.555 36.2974 174.236 36.6155 173.844 36.6155H168.406C168.014 36.6155 167.695 36.2974 167.695 35.9054V5.94464C167.695 5.55261 168.014 5.23455 168.406 5.23455L168.41 5.23085Z" fill="#CD0921"/>
|
||||
<path d="M188.506 23.8484H198.985C199.378 23.8484 199.696 23.5303 199.696 23.1383V18.2046C199.696 17.8348 199.359 17.4945 198.985 17.4945H188.506V11.5808H201.206C201.599 11.5808 201.917 11.2627 201.917 10.8707V5.93702C201.917 5.54499 201.599 5.22692 201.206 5.22692H182.453C182.061 5.22692 181.743 5.54499 181.743 5.93702V35.8978C181.743 36.2898 182.061 36.6079 182.453 36.6079H201.206C201.599 36.6079 201.917 36.2898 201.917 35.8978V30.9641C201.917 30.5721 201.599 30.254 201.206 30.254H188.506V23.841V23.8484Z" fill="#CD0921"/>
|
||||
<path d="M232.871 37.0634H233.596C233.981 37.0634 234.307 36.7601 234.307 36.4014V5.94133C234.307 5.57149 233.97 5.23124 233.596 5.23124H228.159C227.766 5.23124 227.448 5.5493 227.448 5.94133V22.1588H227.193L209.117 4.78003H208.047C207.662 4.78003 207.336 5.08331 207.336 5.44205L207.381 35.9021C207.381 36.2719 207.718 36.6122 208.092 36.6122H213.481C213.874 36.6122 214.192 36.2941 214.192 35.9021V18.8672H214.451L214.496 18.9116L232.39 36.8784C232.449 36.9376 232.775 37.0597 232.871 37.0597V37.0634Z" fill="#CD0921"/>
|
||||
<path d="M253.212 5.23085H242.158C241.799 5.23085 241.492 5.55631 241.492 5.94094V35.9017C241.492 36.2863 241.796 36.6118 242.158 36.6118H253.212C261.896 36.6118 268.963 29.5515 268.963 20.8751C268.963 12.1986 261.896 5.23085 253.212 5.23085ZM252.757 30.2135H248.255V11.581H252.757C257.88 11.581 261.741 15.5753 261.741 20.8751C261.741 26.1749 257.88 30.2135 252.757 30.2135Z" fill="#CD0921"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 44 KiB |
@@ -0,0 +1,38 @@
|
||||
<svg width="310" height="44" viewBox="0 0 310 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M171.435 8.05803C171.416 8.03955 171.398 8.02106 171.379 8.00257C171.361 7.98409 171.342 7.96561 171.324 7.94712C171.305 7.92864 171.287 7.91015 171.268 7.89167C171.25 7.87319 171.231 7.8547 171.213 7.83621C171.194 7.81773 171.176 7.79924 171.157 7.78076C171.139 7.76227 171.12 7.74379 171.102 7.7253C171.083 7.70682 171.065 7.68834 171.046 7.66985C171.028 7.65137 171.009 7.63288 170.991 7.6144C170.972 7.59591 170.954 7.57743 170.935 7.55894C170.917 7.54046 170.898 7.52198 170.88 7.50349C170.861 7.48501 170.843 7.46652 170.824 7.44803C170.806 7.42955 170.787 7.41106 170.769 7.39258C170.75 7.37409 170.732 7.35561 170.713 7.33713C170.695 7.31864 170.676 7.30015 170.657 7.28167C170.639 7.26318 170.62 7.2447 170.602 7.22622C170.583 7.20773 170.565 7.18925 170.546 7.17076C170.528 7.15228 170.509 7.13379 170.491 7.11531C170.472 7.09682 170.454 7.07834 170.435 7.05986C170.417 7.04137 170.398 7.02289 170.38 7.0044C170.361 6.98592 170.343 6.96743 170.324 6.94894C170.306 6.93046 170.287 6.91197 170.269 6.89349C170.25 6.87501 170.232 6.85652 170.213 6.83804C170.195 6.81955 170.176 6.80107 170.158 6.78259C170.139 6.7641 170.121 6.74561 170.102 6.72713C170.254 6.8861 170.354 7.09682 170.354 7.32234V12.2541C170.354 12.7051 169.991 13.1155 169.495 13.1155H156.946V18.0731H158.357V14.524H170.906C171.402 14.524 171.764 14.1173 171.764 13.6626V8.73087C171.764 8.49057 171.657 8.26875 171.487 8.10609C171.468 8.0876 171.45 8.06912 171.431 8.05064L171.435 8.05803Z" fill="#CD0921"/>
|
||||
<path d="M169.199 21.2263C169.181 21.2078 169.162 21.1893 169.144 21.1709C169.125 21.1524 169.107 21.1339 169.088 21.1154C169.07 21.0969 169.051 21.0784 169.033 21.06C169.014 21.0415 168.996 21.023 168.977 21.0045C168.959 20.986 168.94 20.9675 168.922 20.949C168.903 20.9306 168.885 20.9121 168.866 20.8936C168.848 20.8751 168.829 20.8566 168.811 20.8381C168.792 20.8197 168.774 20.8012 168.755 20.7827C168.737 20.7642 168.718 20.7457 168.7 20.7272C168.681 20.7087 168.663 20.6903 168.644 20.6718C168.626 20.6533 168.607 20.6348 168.589 20.6163C168.57 20.5978 168.552 20.5793 168.533 20.5609C168.515 20.5424 168.496 20.5239 168.478 20.5054C168.459 20.4869 168.441 20.4684 168.422 20.45C168.404 20.4315 168.385 20.413 168.367 20.3945C168.348 20.376 168.33 20.3575 168.311 20.3391C168.293 20.3206 168.274 20.3021 168.255 20.2836C168.237 20.2651 168.218 20.2466 168.2 20.2281C168.181 20.2097 168.163 20.1912 168.144 20.1727C168.126 20.1542 168.107 20.1357 168.089 20.1172C168.07 20.0987 168.052 20.0803 168.033 20.0618C168.015 20.0433 167.996 20.0248 167.978 20.0063C167.959 19.9878 167.941 19.9694 167.922 19.9509C167.911 19.9398 167.9 19.9287 167.893 19.9213C168.037 20.0766 168.133 20.2762 168.133 20.4906V25.4224C168.133 25.8734 167.726 26.28 167.271 26.28H156.943V37.2748C156.943 37.7258 156.536 38.1325 156.084 38.1325H150.739C150.491 38.1325 150.284 38.0289 150.132 37.87C150.15 37.8885 150.165 37.9069 150.184 37.9217C150.202 37.9402 150.221 37.9587 150.239 37.9772C150.258 37.9957 150.276 38.0142 150.295 38.0326C150.313 38.0511 150.332 38.0696 150.35 38.0881C150.369 38.1066 150.387 38.1251 150.406 38.1436C150.424 38.162 150.443 38.1805 150.461 38.199C150.48 38.2175 150.498 38.236 150.517 38.2545C150.535 38.2729 150.554 38.2914 150.572 38.3099C150.591 38.3284 150.609 38.3469 150.628 38.3654C150.646 38.3839 150.665 38.4023 150.683 38.4208C150.702 38.4393 150.72 38.4578 150.739 38.4763C150.757 38.4948 150.776 38.5132 150.794 38.5317C150.813 38.5502 150.831 38.5687 150.85 38.5872C150.868 38.6057 150.887 38.6242 150.905 38.6426C150.924 38.6611 150.943 38.6796 150.961 38.6981C150.98 38.7166 150.998 38.7351 151.017 38.7535C151.035 38.772 151.054 38.7905 151.072 38.809C151.091 38.8275 151.109 38.846 151.128 38.8644C151.146 38.8829 151.165 38.9014 151.183 38.9199C151.202 38.9384 151.22 38.9569 151.239 38.9754C151.257 38.9938 151.276 39.0123 151.294 39.0308C151.313 39.0493 151.331 39.0678 151.35 39.0863C151.368 39.1048 151.387 39.1232 151.405 39.1417C151.424 39.1602 151.442 39.1787 151.461 39.1972C151.479 39.2157 151.498 39.2341 151.516 39.2526C151.672 39.4264 151.89 39.5447 152.153 39.5447H157.498C157.95 39.5447 158.357 39.138 158.357 38.687V27.6923H168.685C169.137 27.6923 169.547 27.2856 169.547 26.8346V21.9029C169.547 21.6626 169.429 21.4407 169.255 21.2818C169.236 21.2633 169.218 21.2448 169.199 21.2263Z" fill="#CD0921"/>
|
||||
<path d="M181.593 25.7452V37.2834C181.593 37.7344 181.186 38.1411 180.734 38.1411H175.344C175.096 38.1411 174.889 38.0339 174.737 37.8786C174.756 37.8971 174.771 37.9156 174.793 37.9341C174.811 37.9525 174.83 37.971 174.848 37.9895C174.867 38.008 174.885 38.0265 174.904 38.045C174.922 38.0634 174.941 38.0819 174.959 38.1004C174.978 38.1189 174.996 38.1374 175.015 38.1559C175.033 38.1744 175.052 38.1928 175.07 38.2113C175.089 38.2298 175.107 38.2483 175.126 38.2668C175.145 38.2853 175.163 38.3038 175.182 38.3222C175.2 38.3407 175.219 38.3592 175.237 38.3777C175.256 38.3962 175.274 38.4147 175.293 38.4331C175.311 38.4516 175.33 38.4701 175.348 38.4886C175.367 38.5071 175.385 38.5256 175.404 38.544C175.422 38.5625 175.441 38.581 175.459 38.5995C175.478 38.618 175.496 38.6365 175.515 38.655C175.533 38.6735 175.552 38.6919 175.57 38.7104C175.589 38.7289 175.607 38.7474 175.626 38.7659C175.644 38.7844 175.663 38.8028 175.681 38.8213C175.7 38.8398 175.718 38.8583 175.737 38.8768C175.755 38.8953 175.774 38.9138 175.792 38.9322C175.811 38.9507 175.829 38.9692 175.848 38.9877C175.866 39.0062 175.885 39.0247 175.903 39.0431C175.922 39.0616 175.94 39.0801 175.959 39.0986C175.977 39.1171 175.996 39.1356 176.014 39.154C176.033 39.1725 176.051 39.191 176.07 39.2095C176.088 39.228 176.107 39.2465 176.125 39.265C176.281 39.4387 176.499 39.557 176.762 39.557H182.152C182.603 39.557 183.014 39.1504 183.014 38.6993V27.1611H184.565L183.858 25.7526H181.604L181.593 25.7452Z" fill="#CD0921"/>
|
||||
<path d="M200.172 17.6524C200.172 14.9463 199.05 12.4952 197.247 10.7243C197.229 10.7059 197.21 10.6874 197.192 10.6689C197.173 10.6504 197.155 10.6319 197.136 10.6134C197.118 10.595 197.099 10.5765 197.081 10.558C197.062 10.5395 197.044 10.521 197.025 10.5025C197.007 10.484 196.988 10.4656 196.97 10.4471C196.951 10.4286 196.933 10.4101 196.914 10.3916C196.896 10.3731 196.877 10.3547 196.859 10.3362C196.84 10.3177 196.822 10.2992 196.803 10.2807C196.785 10.2622 196.766 10.2437 196.748 10.2253C196.729 10.2068 196.711 10.1883 196.692 10.1698C196.674 10.1513 196.655 10.1328 196.637 10.1143C196.618 10.0959 196.6 10.0774 196.581 10.0589C196.563 10.0404 196.544 10.0219 196.526 10.0034C196.507 9.98496 196.489 9.96647 196.47 9.94799C196.452 9.9295 196.433 9.91101 196.415 9.89253C196.396 9.87404 196.378 9.85556 196.359 9.83708C196.34 9.81859 196.322 9.80011 196.303 9.78163C196.285 9.76314 196.266 9.74465 196.248 9.72617C196.229 9.70768 196.211 9.6892 196.192 9.67072C196.174 9.65223 196.155 9.63375 196.137 9.61526C196.118 9.59678 196.1 9.57829 196.081 9.5598C196.063 9.54132 196.044 9.52284 196.026 9.50435C196.007 9.48587 195.989 9.46738 195.97 9.4489C195.952 9.43041 195.933 9.41193 195.915 9.39345C195.896 9.37496 195.878 9.35647 195.859 9.33799C197.647 11.1088 198.758 13.5488 198.758 16.2402C198.758 20.403 195.993 23.7487 192.054 25.3347L198.262 36.8248C198.58 37.4126 198.262 38.1372 197.492 38.1372H191.465C191.21 38.1372 191.006 38.0226 190.873 37.8932C190.884 37.9043 190.895 37.9154 190.906 37.9265C190.921 37.945 190.943 37.9635 190.962 37.9819C190.977 38.0004 190.999 38.0189 191.017 38.0374C191.032 38.0559 191.054 38.0744 191.073 38.0928C191.088 38.1113 191.11 38.1298 191.128 38.1483C191.143 38.1668 191.165 38.1853 191.184 38.2038C191.199 38.2223 191.221 38.2407 191.24 38.2592C191.254 38.2777 191.277 38.2962 191.295 38.3147C191.31 38.3332 191.332 38.3516 191.351 38.3701C191.365 38.3886 191.388 38.4071 191.406 38.4256C191.421 38.4441 191.443 38.4625 191.462 38.481C191.476 38.4995 191.499 38.518 191.517 38.5365C191.532 38.555 191.554 38.5735 191.573 38.5919C191.587 38.6104 191.61 38.6289 191.628 38.6474C191.643 38.6659 191.665 38.6844 191.684 38.7029C191.699 38.7213 191.721 38.7398 191.739 38.7583C191.754 38.7768 191.776 38.7953 191.795 38.8138C191.81 38.8322 191.832 38.8507 191.85 38.8692C191.865 38.8877 191.887 38.9062 191.906 38.9247C191.921 38.9431 191.943 38.9616 191.961 38.9801C191.976 38.9986 191.998 39.0171 192.017 39.0356C192.032 39.0541 192.054 39.0725 192.072 39.091C192.087 39.1095 192.109 39.128 192.128 39.1465C192.143 39.165 192.165 39.1834 192.183 39.2019C192.198 39.2204 192.22 39.2389 192.239 39.2574C192.369 39.4053 192.594 39.5495 192.879 39.5495H198.906C199.676 39.5495 199.994 38.8249 199.676 38.237L193.468 26.7469C197.41 25.1646 200.172 21.8152 200.172 17.6524Z" fill="#CD0921"/>
|
||||
<path d="M189.707 14.3509C189.847 14.3509 189.985 14.3658 190.122 14.388C190.044 13.9813 189.892 13.6042 189.678 13.2604C189.252 13.0645 188.789 12.9425 188.301 12.9425H181.597V18.4399H183.007V14.3473H189.711L189.707 14.3509Z" fill="#CD0921"/>
|
||||
<path d="M212.146 8.06226C212.128 8.04378 212.109 8.02529 212.091 8.00681C212.072 7.98832 212.054 7.96984 212.035 7.95135C212.017 7.93287 211.998 7.91439 211.98 7.8959C211.961 7.87742 211.943 7.85894 211.924 7.84045C211.906 7.82197 211.887 7.80347 211.869 7.78499C211.85 7.7665 211.832 7.74802 211.813 7.72954C211.795 7.71105 211.776 7.69256 211.758 7.67408C211.739 7.6556 211.721 7.63711 211.702 7.61863C211.684 7.60014 211.665 7.58166 211.647 7.56318C211.628 7.54469 211.61 7.5262 211.591 7.50772C211.573 7.48923 211.554 7.47075 211.536 7.45227C211.517 7.43378 211.499 7.41529 211.48 7.39681C211.462 7.37832 211.443 7.35984 211.425 7.34135C211.406 7.32287 211.388 7.30439 211.369 7.2859C211.351 7.26742 211.332 7.24893 211.314 7.23045C211.295 7.21196 211.277 7.19348 211.258 7.175C211.24 7.15651 211.221 7.13802 211.203 7.11954C211.184 7.10105 211.165 7.08257 211.147 7.06409C211.128 7.0456 211.11 7.02712 211.091 7.00864C211.073 6.99015 211.054 6.97166 211.036 6.95317C211.017 6.93469 210.999 6.91621 210.98 6.89772C210.962 6.87924 210.943 6.86075 210.925 6.84227C210.906 6.82378 210.888 6.8053 210.869 6.78682C210.858 6.77572 210.847 6.76463 210.84 6.75724C210.984 6.91251 211.08 7.11214 211.08 7.32656V37.2756C211.08 37.7266 210.673 38.1332 210.218 38.1332H204.78C204.565 38.1332 204.365 38.0371 204.21 37.8929C204.221 37.904 204.228 37.9151 204.24 37.9225C204.258 37.941 204.277 37.9595 204.295 37.978C204.314 37.9964 204.332 38.0149 204.351 38.0334C204.369 38.0519 204.388 38.0704 204.406 38.0889C204.425 38.1074 204.443 38.1258 204.462 38.1443C204.48 38.1628 204.499 38.1813 204.517 38.1998C204.536 38.2183 204.554 38.2368 204.573 38.2552C204.591 38.2737 204.61 38.2922 204.628 38.3107C204.647 38.3292 204.665 38.3477 204.684 38.3661C204.702 38.3846 204.721 38.4031 204.739 38.4216C204.758 38.4401 204.776 38.4586 204.795 38.4771C204.813 38.4955 204.832 38.514 204.85 38.5325C204.869 38.551 204.887 38.5695 204.906 38.588C204.924 38.6064 204.943 38.6249 204.961 38.6434C204.98 38.6619 204.998 38.6804 205.017 38.6989C205.035 38.7174 205.054 38.7358 205.072 38.7543C205.091 38.7728 205.109 38.7913 205.128 38.8098C205.146 38.8283 205.165 38.8467 205.184 38.8652C205.202 38.8837 205.221 38.9022 205.239 38.9207C205.258 38.9392 205.276 38.9577 205.295 38.9762C205.313 38.9946 205.332 39.0131 205.35 39.0316C205.369 39.0501 205.387 39.0686 205.406 39.0871C205.424 39.1055 205.443 39.124 205.461 39.1425C205.48 39.161 205.498 39.1795 205.517 39.198C205.535 39.2164 205.554 39.2349 205.572 39.2534C205.731 39.4272 205.953 39.5455 206.194 39.5455H211.632C212.084 39.5455 212.494 39.1388 212.494 38.6878V8.7388C212.494 8.4985 212.376 8.27669 212.202 8.11772C212.183 8.09923 212.165 8.08075 212.146 8.06226Z" fill="#CD0921"/>
|
||||
<path d="M239.521 33.0799C239.503 33.0614 239.484 33.043 239.466 33.0245C239.447 33.006 239.429 32.9875 239.41 32.969C239.392 32.9505 239.373 32.9321 239.355 32.9136C239.336 32.8951 239.318 32.8766 239.299 32.8581C239.281 32.8396 239.262 32.8211 239.244 32.8027C239.225 32.7842 239.207 32.7657 239.188 32.7472C239.17 32.7287 239.151 32.7102 239.133 32.6917C239.114 32.6733 239.096 32.6548 239.077 32.6363C239.059 32.6178 239.04 32.5993 239.022 32.5808C239.003 32.5623 238.985 32.5439 238.966 32.5254C238.948 32.5069 238.929 32.4884 238.911 32.4699C238.892 32.4514 238.874 32.433 238.855 32.4145C238.837 32.396 238.818 32.3775 238.8 32.359C238.781 32.3405 238.763 32.3221 238.744 32.3036C238.726 32.2851 238.707 32.2666 238.689 32.2481C238.67 32.2296 238.652 32.2111 238.633 32.1927C238.614 32.1742 238.596 32.1557 238.577 32.1372C238.559 32.1187 238.54 32.1002 238.522 32.0818C238.503 32.0633 238.485 32.0448 238.466 32.0263C238.448 32.0078 238.429 31.9893 238.411 31.9708C238.392 31.9524 238.374 31.9339 238.355 31.9154C238.337 31.8969 238.318 31.8784 238.3 31.8599C238.281 31.8415 238.263 31.823 238.244 31.8045C238.23 31.786 238.211 31.7675 238.192 31.7527C238.344 31.9117 238.441 32.1224 238.441 32.3479V37.2797C238.441 37.7307 238.078 38.1373 237.582 38.1373H218.829C218.581 38.1373 218.373 38.0338 218.222 37.8749C218.236 37.8934 218.255 37.9118 218.273 37.9266C218.292 37.9451 218.311 37.9636 218.329 37.9821C218.348 38.0006 218.366 38.019 218.385 38.0375C218.403 38.056 218.422 38.0745 218.44 38.093C218.459 38.1115 218.477 38.13 218.496 38.1484C218.514 38.1669 218.533 38.1854 218.551 38.2039C218.57 38.2224 218.588 38.2409 218.607 38.2594C218.625 38.2778 218.644 38.2963 218.662 38.3148C218.681 38.3333 218.699 38.3518 218.718 38.3703C218.736 38.3887 218.755 38.4072 218.773 38.4257C218.792 38.4442 218.81 38.4627 218.829 38.4812C218.847 38.4997 218.866 38.5181 218.884 38.5366C218.903 38.5551 218.921 38.5736 218.94 38.5921C218.958 38.6106 218.977 38.629 218.995 38.6475C219.014 38.666 219.032 38.6845 219.051 38.703C219.069 38.7215 219.088 38.74 219.106 38.7584C219.125 38.7769 219.143 38.7954 219.162 38.8139C219.18 38.8324 219.199 38.8509 219.217 38.8693C219.236 38.8878 219.254 38.9063 219.273 38.9248C219.291 38.9433 219.31 38.9618 219.328 38.9802C219.347 38.9987 219.366 39.0172 219.384 39.0357C219.403 39.0542 219.421 39.0727 219.44 39.0912C219.458 39.1096 219.477 39.1281 219.495 39.1466C219.514 39.1651 219.532 39.1836 219.551 39.2021C219.569 39.2205 219.588 39.239 219.606 39.2575C219.762 39.4313 219.98 39.5496 220.243 39.5496H238.996C239.492 39.5496 239.855 39.1429 239.855 38.6919V33.7602C239.855 33.5199 239.747 33.298 239.577 33.1354C239.558 33.1169 239.54 33.0984 239.521 33.0799Z" fill="#CD0921"/>
|
||||
<path d="M226.447 26.7907H236.775C237.227 26.7907 237.638 26.4284 237.638 25.9293V20.9976C237.638 20.7573 237.519 20.5355 237.345 20.3765C237.327 20.358 237.308 20.3395 237.29 20.3211C237.271 20.3026 237.253 20.2841 237.234 20.2656C237.216 20.2471 237.197 20.2286 237.179 20.2102C237.16 20.1917 237.142 20.1732 237.123 20.1547C237.105 20.1362 237.086 20.1177 237.068 20.0992C237.049 20.0808 237.031 20.0623 237.012 20.0438C236.993 20.0253 236.975 20.0068 236.956 19.9883C236.938 19.9698 236.919 19.9514 236.901 19.9329C236.882 19.9144 236.864 19.8959 236.845 19.8774C236.827 19.8589 236.808 19.8405 236.79 19.822C236.771 19.8035 236.753 19.785 236.734 19.7665C236.716 19.748 236.697 19.7295 236.679 19.7111C236.66 19.6926 236.642 19.6741 236.623 19.6556C236.605 19.6371 236.586 19.6186 236.568 19.6002C236.549 19.5817 236.531 19.5632 236.512 19.5447C236.494 19.5262 236.475 19.5077 236.457 19.4893C236.438 19.4708 236.42 19.4523 236.401 19.4338C236.383 19.4153 236.364 19.3968 236.346 19.3783C236.327 19.3599 236.309 19.3414 236.29 19.3229C236.272 19.3044 236.253 19.2859 236.235 19.2674C236.216 19.2489 236.198 19.2305 236.179 19.212C236.161 19.1935 236.142 19.175 236.124 19.1565C236.105 19.138 236.087 19.1196 236.068 19.1011C236.05 19.0826 236.031 19.0641 236.013 19.0456C236.001 19.0345 235.99 19.0234 235.983 19.016C236.127 19.1713 236.224 19.3709 236.224 19.5854V24.5171C236.224 25.0162 235.816 25.3785 235.361 25.3785H225.033V29.9257H226.444V26.787L226.447 26.7907Z" fill="#CD0921"/>
|
||||
<path d="M239.522 8.05919C239.503 8.0407 239.485 8.02222 239.466 8.00373C239.448 7.98525 239.429 7.96677 239.411 7.94828C239.392 7.9298 239.374 7.91131 239.355 7.89283C239.337 7.87434 239.318 7.85585 239.3 7.83737C239.281 7.81888 239.263 7.8004 239.244 7.78192C239.226 7.76343 239.207 7.74494 239.189 7.72646C239.17 7.70797 239.152 7.68949 239.133 7.67101C239.115 7.65252 239.096 7.63404 239.078 7.61555C239.059 7.59707 239.041 7.57859 239.022 7.5601C239.004 7.54162 238.985 7.52313 238.967 7.50464C238.948 7.48616 238.929 7.46767 238.911 7.44919C238.892 7.4307 238.874 7.41222 238.855 7.39374C238.837 7.37525 238.818 7.35677 238.8 7.33829C238.781 7.3198 238.763 7.30131 238.744 7.28283C238.726 7.26434 238.707 7.24586 238.689 7.22738C238.67 7.20889 238.652 7.1904 238.633 7.17192C238.615 7.15343 238.596 7.13495 238.578 7.11647C238.559 7.09798 238.541 7.0795 238.522 7.06101C238.504 7.04253 238.485 7.02404 238.467 7.00555C238.448 6.98707 238.43 6.96859 238.411 6.9501C238.393 6.93162 238.374 6.91313 238.356 6.89465C238.337 6.87616 238.319 6.85768 238.3 6.83919C238.282 6.82071 238.263 6.80223 238.245 6.78374C238.23 6.76526 238.211 6.74677 238.193 6.73198C238.345 6.89095 238.441 7.10167 238.441 7.32719V12.2589C238.441 12.7099 238.078 13.1203 237.582 13.1203H225.033V17.1722H226.444V14.5288H238.992C239.488 14.5288 239.851 14.1222 239.851 13.6675V8.73573C239.851 8.49543 239.744 8.27361 239.574 8.11095C239.555 8.09246 239.537 8.07397 239.518 8.05548L239.522 8.05919Z" fill="#CD0921"/>
|
||||
<path d="M271.896 8.06207C271.878 8.04358 271.859 8.0251 271.841 8.00662C271.822 7.98813 271.803 7.96965 271.785 7.95116C271.766 7.93268 271.748 7.91419 271.729 7.89571C271.711 7.87723 271.692 7.85874 271.674 7.84026C271.655 7.82177 271.637 7.80329 271.618 7.7848C271.6 7.76632 271.581 7.74783 271.563 7.72935C271.544 7.71086 271.526 7.69237 271.507 7.67389C271.489 7.6554 271.47 7.63692 271.452 7.61844C271.433 7.59995 271.415 7.58147 271.396 7.56299C271.378 7.5445 271.359 7.52601 271.341 7.50753C271.322 7.48904 271.304 7.47056 271.285 7.45208C271.267 7.43359 271.248 7.4151 271.23 7.39662C271.211 7.37813 271.193 7.35965 271.174 7.34116C271.156 7.32268 271.137 7.3042 271.119 7.28571C271.1 7.26723 271.082 7.24874 271.063 7.23026C271.045 7.21177 271.026 7.19329 271.008 7.1748C270.989 7.15632 270.971 7.13783 270.952 7.11935C270.934 7.10086 270.915 7.08238 270.897 7.0639C270.878 7.04541 270.86 7.02693 270.841 7.00845C270.823 6.98996 270.804 6.97147 270.786 6.95299C270.767 6.9345 270.748 6.91602 270.73 6.89753C270.711 6.87905 270.693 6.86056 270.674 6.84208C270.656 6.82359 270.637 6.80511 270.619 6.78662C270.608 6.77553 270.597 6.76444 270.586 6.75335C270.73 6.90862 270.826 7.10825 270.826 7.32637V37.7744C270.826 38.2255 270.419 38.5878 269.967 38.5878H269.242C269.105 38.5878 268.746 38.451 268.653 38.3623L270.067 39.7745C270.156 39.8632 270.519 40 270.656 40H271.382C271.833 40 272.24 39.6377 272.24 39.1867V8.73861C272.24 8.49831 272.122 8.2765 271.948 8.11753C271.929 8.09904 271.911 8.08055 271.892 8.06207H271.896Z" fill="#CD0921"/>
|
||||
<path d="M250.723 37.283C250.723 37.734 250.36 38.1407 249.864 38.1407H244.474C244.259 38.1407 244.056 38.0446 243.9 37.8967C243.911 37.9078 243.923 37.9189 243.934 37.93C243.952 37.9485 243.971 37.967 243.989 37.9854C244.008 38.0039 244.026 38.0224 244.045 38.0409C244.063 38.0594 244.082 38.0779 244.1 38.0964C244.119 38.1148 244.137 38.1333 244.156 38.1518C244.174 38.1703 244.193 38.1888 244.211 38.2073C244.23 38.2257 244.248 38.2442 244.267 38.2627C244.285 38.2812 244.304 38.2997 244.322 38.3182C244.341 38.3367 244.359 38.3551 244.378 38.3736C244.396 38.3921 244.415 38.4106 244.433 38.4291C244.452 38.4476 244.47 38.466 244.489 38.4845C244.507 38.503 244.526 38.5215 244.544 38.54C244.563 38.5585 244.582 38.577 244.6 38.5954C244.619 38.6139 244.637 38.6324 244.656 38.6509C244.674 38.6694 244.693 38.6879 244.711 38.7063C244.73 38.7248 244.748 38.7433 244.767 38.7618C244.785 38.7803 244.804 38.7988 244.822 38.8173C244.841 38.8357 244.859 38.8542 244.878 38.8727C244.896 38.8912 244.915 38.9097 244.933 38.9282C244.952 38.9467 244.97 38.9651 244.989 38.9836C245.007 39.0021 245.026 39.0206 245.044 39.0391C245.063 39.0576 245.081 39.076 245.1 39.0945C245.118 39.113 245.137 39.1315 245.155 39.15C245.174 39.1685 245.192 39.187 245.211 39.2054C245.229 39.2239 245.248 39.2424 245.266 39.2609C245.426 39.4346 245.648 39.5529 245.888 39.5529H251.278C251.778 39.5529 252.137 39.1463 252.137 38.6953V22.0035L250.726 20.5876V37.2867L250.723 37.283Z" fill="#CD0921"/>
|
||||
<path d="M302.151 12.4392C302.132 12.4207 302.114 12.4022 302.095 12.3837C302.077 12.3652 302.058 12.3468 302.04 12.3283C302.021 12.3098 302.003 12.2913 301.984 12.2728C301.966 12.2543 301.947 12.2358 301.928 12.2174C301.91 12.1989 301.891 12.1804 301.873 12.1619C301.854 12.1434 301.836 12.1249 301.817 12.1065C301.799 12.088 301.78 12.0695 301.762 12.051C301.743 12.0325 301.725 12.014 301.706 11.9955C301.688 11.9771 301.669 11.9586 301.651 11.9401C301.632 11.9216 301.614 11.9031 301.595 11.8846C301.577 11.8662 301.558 11.8477 301.54 11.8292C301.521 11.8107 301.503 11.7922 301.484 11.7737C301.466 11.7553 301.447 11.7368 301.429 11.7183C301.41 11.6998 301.392 11.6813 301.373 11.6628C301.355 11.6443 301.336 11.6258 301.318 11.6074C301.299 11.5889 301.281 11.5704 301.262 11.5519C301.244 11.5334 301.225 11.5149 301.207 11.4965C301.188 11.478 301.17 11.4595 301.151 11.441C301.133 11.4225 301.114 11.404 301.096 11.3856C301.084 11.3745 301.07 11.3597 301.059 11.3486C301.07 11.3634 301.077 11.3745 301.088 11.3892C303.809 14.2248 305.49 18.0548 305.49 22.2583C305.49 31.0348 298.33 38.1367 289.591 38.1367H278.537C278.315 38.1367 278.119 38.0332 277.975 37.8779C277.989 37.8964 278.008 37.9112 278.026 37.9296C278.045 37.9481 278.063 37.9666 278.082 37.9851C278.1 38.0036 278.119 38.0221 278.137 38.0406C278.156 38.059 278.175 38.0775 278.193 38.096C278.212 38.1145 278.23 38.133 278.249 38.1515C278.267 38.1699 278.286 38.1884 278.304 38.2069C278.323 38.2254 278.341 38.2439 278.36 38.2624C278.378 38.2808 278.397 38.2993 278.415 38.3178C278.434 38.34 278.452 38.3548 278.471 38.3733C278.489 38.3918 278.508 38.4102 278.526 38.4287C278.545 38.4472 278.563 38.4657 278.582 38.4842C278.6 38.5027 278.619 38.5211 278.637 38.5396C278.656 38.5581 278.674 38.5766 278.693 38.5951C278.711 38.6173 278.73 38.6321 278.748 38.6505C278.767 38.669 278.785 38.6875 278.804 38.706C278.822 38.7245 278.841 38.743 278.859 38.7615C278.878 38.7836 278.896 38.7984 278.915 38.8169C278.933 38.8354 278.952 38.8539 278.97 38.8724C278.989 38.8908 279.007 38.9093 279.026 38.9278C279.044 38.95 279.063 38.9648 279.081 38.9833C279.1 39.0018 279.118 39.0202 279.137 39.0387C279.155 39.0609 279.174 39.0757 279.192 39.0942C279.211 39.1127 279.229 39.1312 279.248 39.1496C279.266 39.1681 279.285 39.1866 279.304 39.2051C279.322 39.2236 279.341 39.2421 279.359 39.2605C279.507 39.4343 279.718 39.5489 279.955 39.5489H291.008C299.752 39.5489 306.907 32.4471 306.907 23.6705C306.907 19.3155 305.108 15.3561 302.21 12.4946C302.191 12.4762 302.173 12.4577 302.154 12.4392H302.151Z" fill="#CD0921"/>
|
||||
<path d="M289.14 13.1231H284.79V29.8888L286.2 29.8887V14.5315L290.55 14.5317C292.168 14.5317 293.641 14.9457 294.903 15.6593C294.659 15.2896 294.389 14.942 294.092 14.6204C292.704 13.6777 291.02 13.1231 289.14 13.1231Z" fill="#CD0921"/>
|
||||
<path d="M23.4412 27.2463H22.1495C21.8979 27.2463 21.6906 27.1502 21.5352 27.0024C21.5537 27.0209 21.5685 27.0393 21.5907 27.0578C21.6092 27.0763 21.6277 27.0948 21.6462 27.1133C21.6647 27.1317 21.6832 27.1502 21.7017 27.1687C21.7202 27.1872 21.735 27.2057 21.7572 27.2241C21.7757 27.2426 21.7905 27.2611 21.8127 27.2796C21.8312 27.2981 21.8498 27.3166 21.8683 27.335C21.8868 27.3535 21.9053 27.372 21.9238 27.3905C21.9423 27.409 21.9608 27.4275 21.9793 27.4459C21.9978 27.4644 22.0126 27.4829 22.0348 27.5014C22.0533 27.5199 22.0681 27.5383 22.0903 27.5568C22.1088 27.5753 22.1273 27.5938 22.1458 27.6123C22.1644 27.6308 22.1829 27.6492 22.2014 27.6677C22.2199 27.6862 22.2384 27.7047 22.2569 27.7232C22.2754 27.7416 22.2939 27.7601 22.3124 27.7786C22.3309 27.7971 22.3494 27.8156 22.3679 27.8341C22.3864 27.8525 22.4012 27.871 22.4234 27.8895C22.4419 27.908 22.4604 27.9265 22.479 27.9449C22.4975 27.9634 22.516 27.9819 22.5345 28.0004C22.553 28.0189 22.5715 28.0374 22.59 28.0558C22.6085 28.0743 22.627 28.0928 22.6455 28.1113C22.664 28.1298 22.6788 28.1482 22.701 28.1667C22.7195 28.1852 22.7343 28.2037 22.7565 28.2222C22.775 28.2407 22.7935 28.2591 22.812 28.2776C22.8306 28.2961 22.8491 28.3146 22.8676 28.3331C22.8861 28.3515 22.9046 28.37 22.9231 28.3885C22.9638 28.4329 23.0082 28.4735 23.0563 28.5068C23.1896 28.4624 23.3191 28.4181 23.4486 28.3663V27.2537L23.4412 27.2463Z" fill="#CD0921"/>
|
||||
<path d="M13.41 22.9985C13.41 18.0224 17.3967 13.8597 22.3348 13.8597C24.5559 13.8597 26.5474 14.4475 28.2687 16.0298C28.6315 16.2997 29.1275 16.2997 29.4903 15.9854L33.0698 12.185C33.4326 11.8227 33.3845 11.2792 32.9773 10.965C32.9699 10.9576 32.9625 10.9539 32.9551 10.9465C32.944 10.9354 32.9366 10.9206 32.9218 10.9095C32.9144 10.9021 32.9069 10.8984 32.8995 10.891C32.8884 10.8799 32.881 10.8651 32.8662 10.8541C32.8588 10.8467 32.8514 10.843 32.844 10.8356C32.8329 10.8245 32.8255 10.8097 32.8107 10.7986C32.8033 10.7912 32.7959 10.7875 32.7885 10.7801C32.7774 10.769 32.77 10.7542 32.7552 10.7431C32.7478 10.7357 32.7404 10.732 32.733 10.7247C32.7219 10.7136 32.7145 10.6988 32.6996 10.6877C32.6922 10.6803 32.6848 10.6766 32.6774 10.6692C32.6663 10.6581 32.6589 10.6433 32.6441 10.6322C32.6367 10.6248 32.6293 10.6211 32.6219 10.6137C32.6071 10.6027 32.6034 10.5879 32.5886 10.5768C32.5812 10.5694 32.5738 10.5657 32.5664 10.5583C32.5553 10.5472 32.5479 10.5324 32.5331 10.5213C32.5257 10.5139 32.5183 10.5102 32.5109 10.5028C32.4998 10.4917 32.4924 10.477 32.4775 10.4659C32.4701 10.4585 32.4627 10.4548 32.4553 10.4474C32.4442 10.4363 32.4368 10.4215 32.422 10.4104C32.4146 10.403 32.4072 10.3993 32.3998 10.3919C32.3887 10.3808 32.3813 10.3661 32.3665 10.355C32.3591 10.3476 32.3517 10.3439 32.3443 10.3365C32.3332 10.3254 32.3258 10.3106 32.311 10.2995C32.3036 10.2921 32.2962 10.2884 32.2888 10.281C32.2777 10.2699 32.2703 10.2551 32.2554 10.2441C32.248 10.2367 32.2406 10.233 32.2332 10.2256C32.2221 10.2145 32.2147 10.1997 32.1999 10.1886C32.1925 10.1812 32.1851 10.1775 32.1777 10.1701C32.1666 10.159 32.1592 10.1442 32.1444 10.1331C32.137 10.1258 32.1296 10.1221 32.1222 10.1147C32.1111 10.1036 32.1037 10.0888 32.0889 10.0777C32.0815 10.0703 32.0741 10.0666 32.0667 10.0592C32.0555 10.0481 32.0481 10.0333 32.0333 10.0222C32.0259 10.0148 32.0185 10.0111 32.0111 10.0038C32 9.99266 31.9926 9.97787 31.9778 9.96678C31.9704 9.95939 31.963 9.95569 31.9556 9.9483C31.9408 9.93721 31.9371 9.92242 31.9223 9.91133C31.9149 9.90393 31.9075 9.90024 31.9001 9.89284C31.889 9.88175 31.8816 9.86696 31.8668 9.85587C31.8594 9.84848 31.852 9.84478 31.8446 9.83739C31.8297 9.8263 31.826 9.81151 31.8112 9.80042C31.8038 9.79302 31.7964 9.78933 31.789 9.78194C31.7779 9.77084 31.7705 9.75606 31.7557 9.74497C31.7483 9.73757 31.7409 9.73387 31.7335 9.72648C31.7224 9.71539 31.715 9.7006 31.7002 9.68951C31.7002 9.68951 31.6928 9.68581 31.6928 9.68212C31.9704 10.0038 31.9704 10.4548 31.6521 10.7727L28.0725 14.5732C27.7097 14.8911 27.2137 14.8911 26.8509 14.6175C25.1296 13.0353 23.1381 12.4474 20.9171 12.4474C15.9789 12.4474 11.9922 16.6102 11.9922 21.5863C11.9922 23.4865 12.5956 25.2574 13.6135 26.7177C13.9393 27.0171 14.2873 27.2907 14.6537 27.5347C13.8653 26.1964 13.3988 24.6474 13.3988 22.9911L13.41 22.9985Z" fill="#CD0921"/>
|
||||
<path d="M31.585 9.57527C31.585 9.57527 31.5999 9.59388 31.6111 9.60132C31.6074 9.59388 31.6037 9.59016 31.5962 9.58272C31.5962 9.58272 31.5887 9.57527 31.585 9.57527Z" fill="#CD0921"/>
|
||||
<path d="M31.6853 9.67869C31.6853 9.67869 31.6965 9.68587 31.7002 9.68951C31.6892 9.6786 31.678 9.66777 31.667 9.65686C31.6743 9.66414 31.678 9.67141 31.6853 9.67869Z" fill="#CD0921"/>
|
||||
<path d="M31.6455 9.63355C31.6455 9.63355 31.6605 9.64844 31.668 9.65588C31.6642 9.65216 31.6605 9.64471 31.6567 9.64099C31.6567 9.64099 31.6492 9.63727 31.6455 9.63355Z" fill="#CD0921"/>
|
||||
<path d="M31.6302 9.62302C31.6302 9.62302 31.638 9.62983 31.6455 9.63355C31.6343 9.62239 31.6265 9.61185 31.6152 9.60441C31.619 9.61185 31.6265 9.6193 31.6339 9.62302H31.6302Z" fill="#CD0921"/>
|
||||
<path d="M9.16824 33.2466C9.16824 33.2466 9.20526 33.2835 9.22376 33.302C9.24227 33.3205 9.26078 33.339 9.27929 33.3575C9.2978 33.3759 9.31631 33.3944 9.33482 33.4129C9.35333 33.4314 9.37183 33.4499 9.39034 33.4684C9.40885 33.4868 9.42736 33.5053 9.44587 33.5238C9.46437 33.5423 9.48289 33.5608 9.50139 33.5793C9.5199 33.5978 9.53841 33.6162 9.55692 33.6347C9.57543 33.6532 9.59394 33.6717 9.61245 33.6902C9.63096 33.7087 9.64946 33.7272 9.66797 33.7456C9.68648 33.7641 9.70499 33.7826 9.7235 33.8011C9.742 33.8196 9.76052 33.8381 9.77902 33.8565C9.79753 33.875 9.81604 33.8935 9.83455 33.912C9.85306 33.9305 9.87157 33.949 9.89008 33.9675C9.90859 33.9859 9.92709 34.0044 9.9456 34.0229C9.96411 34.0414 9.98261 34.0599 10.0011 34.0784C10.0196 34.0969 10.0381 34.1153 10.0567 34.1338C10.0752 34.1523 10.0937 34.1708 10.1122 34.1893C10.1307 34.2078 10.1492 34.2262 10.1677 34.2447C10.1862 34.2632 10.2047 34.2817 10.2232 34.3002C10.2417 34.3187 10.2602 34.3372 10.2788 34.3556C10.2973 34.3741 10.3158 34.3926 10.3343 34.4111C10.3528 34.4296 10.3713 34.4481 10.3898 34.4665C13.3327 37.4019 17.4083 39.2023 21.9318 39.2023C28.4987 39.2023 33.1665 36.2633 33.1665 36.2633C33.3479 36.1265 33.5293 35.7642 33.5293 35.5387L33.4849 23.3683C33.4849 23.1243 33.3775 22.9025 33.211 22.7398C33.1924 22.7213 33.1739 22.7029 33.1554 22.6844C33.1369 22.6659 33.1184 22.6474 33.0999 22.6289C33.0814 22.6104 33.0629 22.5919 33.0444 22.5735C33.0259 22.555 33.0074 22.5365 32.9888 22.518C32.9703 22.4995 32.9518 22.481 32.9333 22.4626C32.9148 22.4441 32.8963 22.4256 32.8778 22.4071C32.8593 22.3886 32.8408 22.3701 32.8223 22.3516C32.8038 22.3332 32.7853 22.3147 32.7667 22.2962C32.7482 22.2777 32.7297 22.2592 32.7112 22.2407C32.6927 22.2222 32.6742 22.2038 32.6557 22.1853C32.6372 22.1668 32.6187 22.1483 32.6002 22.1298C32.5817 22.1113 32.5632 22.0929 32.5446 22.0744C32.5261 22.0522 32.5076 22.0374 32.4891 22.0189C32.4706 22.0004 32.4521 21.9819 32.4336 21.9635C32.4151 21.945 32.3966 21.9265 32.3781 21.908C32.3596 21.8895 32.341 21.871 32.3225 21.8526C32.304 21.8341 32.2855 21.8156 32.267 21.7971C32.2485 21.7749 32.23 21.7601 32.2115 21.7416C32.193 21.7232 32.1745 21.7047 32.156 21.6862C32.1375 21.6677 32.1189 21.6492 32.1004 21.6307C32.0819 21.6086 32.0634 21.5938 32.0449 21.5753C32.0264 21.5568 32.0079 21.5383 31.9894 21.5198C31.9709 21.5013 31.9524 21.4829 31.9339 21.4644C31.9153 21.4422 31.8968 21.4274 31.8783 21.4089C31.8635 21.3904 31.845 21.372 31.8265 21.3572C31.9746 21.5161 32.0708 21.7269 32.0708 21.9561L32.1152 34.1264C32.1152 34.3519 31.9339 34.7142 31.7525 34.851C31.7525 34.851 27.0883 37.7901 20.5177 37.7901C16.0831 37.7901 12.0778 36.0562 9.15343 33.2244C9.14233 33.217 9.13122 33.2059 9.12012 33.1985C9.13492 33.2133 9.15343 33.2318 9.16824 33.2466Z" fill="#CD0921"/>
|
||||
<path d="M74.8408 33.2726C74.8408 33.2726 74.8778 33.3095 74.8963 33.328C74.9148 33.3465 74.9333 33.365 74.9518 33.3835C74.9703 33.4019 74.9888 33.4204 75.0074 33.4389C75.0259 33.4574 75.0444 33.4759 75.0629 33.4944C75.0814 33.5129 75.0999 33.5313 75.1184 33.5498C75.1369 33.5683 75.1554 33.5868 75.1739 33.6053C75.1924 33.6238 75.211 33.6423 75.2295 33.6607C75.248 33.6792 75.2665 33.6977 75.285 33.7162C75.3035 33.7347 75.322 33.7532 75.3405 33.7716C75.359 33.7901 75.3775 33.8086 75.396 33.8271C75.4146 33.8456 75.4331 33.8641 75.4516 33.8826C75.4701 33.901 75.4886 33.9195 75.5071 33.938C75.5256 33.9565 75.5441 33.975 75.5626 33.9935C75.5811 34.0119 75.5996 34.0304 75.6181 34.0489C75.6366 34.0674 75.6552 34.0859 75.6737 34.1044C75.6922 34.1229 75.7107 34.1413 75.7292 34.1598C75.7477 34.1783 75.7662 34.1968 75.7847 34.2153C75.8032 34.2338 75.8217 34.2522 75.8402 34.2707C75.8587 34.2892 75.8773 34.3077 75.8958 34.3262C75.9143 34.3447 75.9328 34.3632 75.9513 34.3816C75.9698 34.4001 75.9883 34.4186 76.0068 34.4371C76.0253 34.4556 76.0438 34.4741 76.0623 34.4925C78.9978 37.439 83.0734 39.2468 87.6191 39.2468C96.6773 39.2468 103.925 32.0526 103.925 23.0061C103.925 18.4663 102.1 14.3738 99.1389 11.4162C99.1204 11.3977 99.1019 11.3792 99.0834 11.3607C99.0649 11.3423 99.0464 11.3238 99.0279 11.3053C99.0094 11.2868 98.9909 11.2683 98.9723 11.2498C98.9538 11.2314 98.9353 11.2129 98.9168 11.1944C98.8983 11.1759 98.8798 11.1574 98.8613 11.1389C98.8428 11.1204 98.8243 11.102 98.8058 11.0835C98.7872 11.065 98.7687 11.0465 98.7502 11.028C98.7317 11.0095 98.7132 10.991 98.6947 10.9726C98.6762 10.9541 98.6577 10.9356 98.6392 10.9171C98.6207 10.8986 98.6022 10.8801 98.5836 10.8617C98.5651 10.8432 98.5466 10.8247 98.5281 10.8062C98.5096 10.7877 98.4911 10.7692 98.4726 10.7507C98.4541 10.7323 98.4356 10.7138 98.4171 10.6953C98.3986 10.6768 98.3801 10.6583 98.3615 10.6398C98.343 10.6214 98.3245 10.6029 98.306 10.5844C98.2875 10.5659 98.269 10.5474 98.2505 10.5289C98.232 10.5104 98.2135 10.492 98.195 10.4735C98.1765 10.455 98.158 10.4365 98.1395 10.418C98.1209 10.3995 98.1024 10.3811 98.0839 10.3626C98.0654 10.3441 98.0469 10.3256 98.0284 10.3071C98.0099 10.2886 97.9914 10.2701 97.9729 10.2517C97.9544 10.2332 97.9359 10.2147 97.9173 10.1962C97.8988 10.1777 97.8803 10.1592 97.8618 10.1408C97.8433 10.1223 97.8248 10.1038 97.8063 10.0853C97.7878 10.0668 97.7693 10.0483 97.7508 10.0298C100.697 12.9837 102.511 17.0651 102.511 21.5939C102.511 30.644 95.2632 37.8346 86.2051 37.8346C81.7704 37.8346 77.78 36.1081 74.863 33.2836C74.8482 33.2726 74.8371 33.2615 74.8223 33.2541C74.8297 33.2615 74.8334 33.2652 74.8408 33.2726Z" fill="#CD0921"/>
|
||||
<path d="M42.3533 21.5935C42.3533 23.4974 42.9641 25.2682 43.9932 26.7285C44.3152 27.0206 44.6595 27.2904 45.0223 27.5344C44.2301 26.1961 43.76 24.6508 43.76 23.0019C43.76 18.0258 47.8356 13.9074 52.7737 13.9074C54.432 13.9074 55.9831 14.3769 57.3268 15.1681C57.0788 14.8021 56.8049 14.4546 56.505 14.1292C55.0428 13.1052 53.2734 12.4989 51.3633 12.4989C46.4252 12.4989 42.3496 16.6173 42.3496 21.5934L42.3533 21.5935Z" fill="#CD0921"/>
|
||||
<path d="M40.0031 33.2727C40.0031 33.2727 40.0401 33.3097 40.0586 33.3282C40.0771 33.3467 40.0956 33.3652 40.1141 33.3836C40.1326 33.4021 40.1512 33.4206 40.1697 33.4391C40.1882 33.4576 40.2067 33.4761 40.2252 33.4946C40.2437 33.513 40.2622 33.5315 40.2807 33.55C40.2992 33.5685 40.3177 33.587 40.3362 33.6055C40.3548 33.624 40.3733 33.6424 40.3918 33.6609C40.4103 33.6794 40.4288 33.6979 40.4473 33.7164C40.4658 33.7349 40.4843 33.7533 40.5028 33.7718C40.5213 33.7903 40.5398 33.8088 40.5583 33.8273C40.5769 33.8458 40.5954 33.8643 40.6139 33.8827C40.6324 33.9012 40.6509 33.9197 40.6694 33.9382C40.6879 33.9567 40.7064 33.9752 40.7249 33.9937C40.7434 34.0121 40.7619 34.0306 40.7804 34.0491C40.799 34.0676 40.8175 34.0861 40.836 34.1046C40.8545 34.123 40.873 34.1415 40.8915 34.16C40.91 34.1785 40.9285 34.197 40.947 34.2155C40.9655 34.2339 40.984 34.2524 41.0026 34.2709C41.0211 34.2894 41.0396 34.3079 41.0581 34.3264C41.0766 34.3449 41.0951 34.3633 41.1136 34.3818C41.1321 34.4003 41.1506 34.4188 41.1691 34.4373C41.1876 34.4558 41.2061 34.4742 41.2247 34.4927C44.1601 37.4392 48.2357 39.2507 52.7814 39.2507C61.2769 39.2507 68.1695 32.9252 68.995 24.6773C68.5952 23.2392 68.3842 21.7346 68.3842 20.1929C68.3842 19.6273 68.4138 19.0691 68.4694 18.5108C67.6994 15.7862 66.2483 13.3573 64.3049 11.4201C64.2864 11.4016 64.2679 11.3831 64.2494 11.3646C64.2309 11.3461 64.2124 11.3277 64.1939 11.3092C64.1754 11.2907 64.1569 11.2722 64.1384 11.2537C64.1198 11.2352 64.1013 11.2168 64.0828 11.1983C64.0643 11.1798 64.0458 11.1613 64.0273 11.1428C64.0088 11.1243 63.9903 11.1058 63.9718 11.0874C63.9533 11.0689 63.9348 11.0504 63.9162 11.0319C63.8977 11.0134 63.8792 10.9949 63.8607 10.9764C63.8422 10.958 63.8237 10.9395 63.8052 10.921C63.7867 10.9025 63.7682 10.884 63.7497 10.8655C63.7312 10.8471 63.7126 10.8286 63.6941 10.8101C63.6756 10.7916 63.6571 10.7731 63.6386 10.7546C63.6201 10.7361 63.6016 10.7177 63.5831 10.6992C63.5646 10.6807 63.5461 10.6622 63.5276 10.6437C63.5091 10.6252 63.4905 10.6068 63.472 10.5883C63.4535 10.5698 63.435 10.5513 63.4165 10.5328C63.398 10.5143 63.3795 10.4958 63.361 10.4774C63.3425 10.4589 63.324 10.4404 63.3055 10.4219C63.2869 10.4034 63.2684 10.3849 63.2499 10.3665C63.2314 10.348 63.2129 10.3295 63.1944 10.311C63.1759 10.2925 63.1574 10.274 63.1389 10.2555C63.1204 10.2371 63.1019 10.2186 63.0834 10.2001C63.0648 10.1816 63.0463 10.1631 63.0278 10.1446C63.0093 10.1261 62.9908 10.1077 62.9723 10.0892C62.9538 10.0707 62.9353 10.0522 62.9168 10.0337C65.8633 12.9839 67.6772 17.069 67.6772 21.5941C67.6772 30.6442 60.4292 37.8348 51.3711 37.8348C46.9364 37.8348 42.946 36.1083 40.029 33.2838C40.0142 33.2727 40.0031 33.2617 39.9883 33.2543C39.9957 33.2617 39.9994 33.2653 40.0068 33.2727H40.0031Z" fill="#CD0921"/>
|
||||
<path d="M77.1863 21.5934C77.1863 23.4973 77.7971 25.2681 78.8262 26.7284C79.1482 27.0205 79.4925 27.2904 79.8553 27.5344C79.0631 26.1961 78.593 24.6508 78.593 23.0019C78.593 18.0258 82.6686 13.9074 87.6067 13.9074C89.2651 13.9074 90.8198 14.3769 92.1598 15.1681C91.9118 14.8021 91.6379 14.4546 91.338 14.1292C89.8758 13.1052 88.1027 12.4989 86.1963 12.4989C81.2582 12.4989 77.1826 16.6173 77.1826 21.5934H77.1863Z" fill="#CD0921"/>
|
||||
<path d="M134.857 21.5017C134.857 30.2783 127.697 37.3801 118.958 37.3801H107.904C107.682 37.3801 107.486 37.2766 107.338 37.1213C107.353 37.1398 107.371 37.1583 107.39 37.1731C107.408 37.1916 107.427 37.2101 107.445 37.2285C107.464 37.2507 107.482 37.2655 107.501 37.284C107.519 37.3025 107.538 37.321 107.556 37.3395C107.575 37.3579 107.593 37.3764 107.612 37.3949C107.63 37.4134 107.649 37.4319 107.667 37.4504C107.686 37.4725 107.704 37.4873 107.723 37.5058C107.741 37.528 107.76 37.5428 107.778 37.5613C107.797 37.5835 107.815 37.5982 107.834 37.6167C107.852 37.6352 107.871 37.6537 107.889 37.6722C107.908 37.6907 107.926 37.7092 107.945 37.7276C107.963 37.7461 107.982 37.7646 108.001 37.7831C108.019 37.8053 108.038 37.8201 108.056 37.8385C108.075 37.857 108.093 37.8755 108.112 37.894C108.13 37.9162 108.149 37.931 108.167 37.9495C108.186 37.9679 108.204 37.9864 108.223 38.0049C108.241 38.0234 108.26 38.0419 108.278 38.0604C108.297 38.0788 108.315 38.0973 108.334 38.1158C108.352 38.1343 108.371 38.1528 108.389 38.1713C108.408 38.1897 108.426 38.2082 108.445 38.2267C108.463 38.2489 108.482 38.2637 108.5 38.2822C108.519 38.3007 108.537 38.3191 108.556 38.3376C108.574 38.3561 108.593 38.3746 108.611 38.3931C108.63 38.4153 108.648 38.4301 108.667 38.4485C108.685 38.467 108.704 38.4855 108.722 38.504C108.87 38.6778 109.078 38.7924 109.318 38.7924H120.372C129.115 38.7924 136.271 31.6905 136.271 22.914C136.271 18.559 134.472 14.5995 131.573 11.7381C131.555 11.7196 131.536 11.7011 131.518 11.6826C131.499 11.6642 131.481 11.6457 131.462 11.6272C131.444 11.6087 131.425 11.5902 131.407 11.5717C131.388 11.5532 131.37 11.5348 131.351 11.5163C131.332 11.4978 131.314 11.4793 131.295 11.4608C131.277 11.4423 131.258 11.4239 131.24 11.4054C131.221 11.3869 131.203 11.3684 131.184 11.3499C131.166 11.3314 131.147 11.3129 131.129 11.2945C131.11 11.276 131.092 11.2575 131.073 11.239C131.055 11.2205 131.036 11.202 131.018 11.1835C130.999 11.1651 130.981 11.1466 130.962 11.1281C130.944 11.1096 130.925 11.0911 130.907 11.0726C130.888 11.0542 130.87 11.0357 130.851 11.0172C130.833 10.9987 130.814 10.9802 130.796 10.9617C130.777 10.9432 130.759 10.9248 130.74 10.9063C130.722 10.8878 130.703 10.8693 130.685 10.8508C130.666 10.8323 130.648 10.8139 130.629 10.7954C130.611 10.7769 130.592 10.7584 130.574 10.7399C130.555 10.7214 130.537 10.7029 130.518 10.6845C130.5 10.666 130.481 10.6475 130.463 10.629C130.451 10.6142 130.437 10.6031 130.422 10.5883C130.433 10.6031 130.44 10.6142 130.451 10.629C133.172 13.4646 134.853 17.2946 134.853 21.498L134.857 21.5017Z" fill="#CD0921"/>
|
||||
<path d="M119.912 13.7713C121.53 13.7713 122.999 14.1854 124.265 14.8989C124.021 14.5292 123.751 14.1809 123.455 13.8593C122.07 12.9166 120.382 12.362 118.502 12.362H114.152V29.1277L115.562 29.1284V13.7713H119.912Z" fill="#CD0921"/>
|
||||
<path d="M19.1062 36.2303C25.5509 36.2303 30.2151 33.343 30.2595 33.3134C30.3928 33.2136 30.552 32.8957 30.552 32.7182L30.5075 20.5479C30.5075 20.1634 30.204 19.838 29.8449 19.838H20.7387C20.3204 19.838 20.0279 20.1301 20.0279 20.5479V25.0249C20.0279 25.4019 20.3315 25.6866 20.7387 25.6866H23.7445V28.5628L23.6482 28.5998C22.4119 29.0952 21.0755 29.3355 19.5615 29.3355C14.5309 29.3355 10.4405 25.2282 10.4405 20.1819C10.4405 15.1355 14.5124 10.8914 19.5171 10.8914C21.9602 10.8914 23.937 11.616 25.5546 13.1022C25.8619 13.3314 26.2765 13.3166 26.5763 13.0541L30.1448 9.26477C30.2891 9.12059 30.3595 8.94314 30.3484 8.76199C30.3373 8.57344 30.2373 8.39599 30.0707 8.2666C27.0168 5.62328 22.9227 4.04468 19.1099 4.04468C14.7863 4.04468 10.7366 5.7157 7.70489 8.7509C4.66947 11.7898 3 15.849 3 20.1819C3 24.5147 4.67318 28.5517 7.70489 31.5648C10.7329 34.5704 14.7826 36.2266 19.1099 36.2266L19.1062 36.2303Z" fill="#CD0921"/>
|
||||
<path d="M49.9574 36.2744C54.3032 36.2744 58.3677 34.6107 61.4031 31.5903C64.4422 28.5662 66.1154 24.5181 66.1154 20.1815C66.1154 11.2608 58.8674 4 49.9574 4C45.6227 4 41.5656 5.67841 38.5338 8.7284C35.5095 11.771 33.8438 15.8413 33.8438 20.1815C33.8438 24.5218 35.5095 28.5699 38.5338 31.5903C41.5581 34.6107 45.6152 36.2744 49.9574 36.2744ZM49.9574 10.9392C55.0361 10.9392 59.1673 15.0871 59.1673 20.1852C59.1673 25.2833 55.0361 29.3389 49.9574 29.3389C44.8786 29.3389 40.7919 25.2316 40.7919 20.1852C40.7919 15.1389 44.9045 10.9392 49.9574 10.9392Z" fill="#CD0921"/>
|
||||
<path d="M84.7943 36.2744C89.1401 36.2744 93.2046 34.6107 96.24 31.5903C99.2791 28.5662 100.952 24.5181 100.952 20.1815C100.952 11.2608 93.7043 4 84.7943 4C80.4596 4 76.4025 5.67841 73.3708 8.7284C70.3464 11.771 68.6807 15.8413 68.6807 20.1815C68.6807 24.5218 70.3464 28.5699 73.3708 31.5903C76.3951 34.6107 80.4522 36.2744 84.7943 36.2744ZM84.7943 10.9392C89.873 10.9392 94.0042 15.0871 94.0042 20.1852C94.0042 25.2833 89.873 29.3389 84.7943 29.3389C79.7155 29.3389 75.6288 25.2316 75.6288 20.1852C75.6288 15.1389 79.7414 10.9392 84.7943 10.9392Z" fill="#CD0921"/>
|
||||
<path d="M106.494 35.8232H117.547C126.231 35.8232 133.294 28.7657 133.294 20.0927C133.294 11.4196 126.228 4.45457 117.547 4.45457H106.494C106.135 4.45457 105.831 4.7799 105.831 5.16438V35.1134C105.831 35.4978 106.135 35.8232 106.494 35.8232ZM112.594 10.8022H117.095C122.219 10.8022 126.079 14.7949 126.079 20.0927C126.079 25.3904 122.219 29.4275 117.095 29.4275H112.594V10.8022Z" fill="#CD0921"/>
|
||||
<path d="M155.388 11.5633H168.089C168.481 11.5633 168.799 11.2453 168.799 10.8534V5.92171C168.799 5.52983 168.481 5.2119 168.089 5.2119H149.336C148.943 5.2119 148.625 5.52983 148.625 5.92171V35.8707C148.625 36.2626 148.943 36.5805 149.336 36.5805H154.681C155.051 36.5805 155.392 36.2441 155.392 35.8707V24.7244H165.871C166.242 24.7244 166.582 24.388 166.582 24.0146V19.0828C166.582 18.7131 166.245 18.373 165.871 18.373H155.392V11.5559L155.388 11.5633Z" fill="#CD0921"/>
|
||||
<path d="M190.059 36.5803H196.085C196.374 36.5803 196.604 36.4657 196.73 36.2513C196.859 36.0332 196.859 35.7411 196.722 35.4897L190.437 23.848L190.592 23.7852C194.668 22.1474 197.203 18.7167 197.203 14.8312C197.203 9.52604 192.843 5.20801 187.479 5.20801H173.934C173.542 5.20801 173.224 5.52595 173.224 5.91782V35.8668C173.224 36.2587 173.542 36.5766 173.934 36.5766H179.324C179.694 36.5766 180.035 36.2402 180.035 35.8668V24.1771H183.403L189.471 36.2476C189.533 36.3733 189.748 36.5729 190.059 36.5729V36.5803ZM186.89 18.7425H180.035V11.3819H186.89C188.838 11.3819 190.485 13.0271 190.485 14.9717C190.485 16.9162 188.804 18.7425 186.89 18.7425Z" fill="#CD0921"/>
|
||||
<path d="M203.378 5.21578H208.812C209.204 5.21578 209.522 5.53372 209.522 5.92559V35.8783C209.522 36.2701 209.204 36.5881 208.812 36.5881H203.374C202.981 36.5881 202.663 36.2701 202.663 35.8783V5.92929C202.663 5.53741 202.981 5.21948 203.374 5.21948L203.378 5.21578Z" fill="#CD0921"/>
|
||||
<path d="M223.478 11.5633H236.179C236.571 11.5633 236.889 11.2453 236.889 10.8534V5.92171C236.889 5.52983 236.571 5.2119 236.179 5.2119H217.426C217.033 5.2119 216.715 5.52983 216.715 5.92171V35.8707C216.715 36.2626 217.033 36.5805 217.426 36.5805H236.179C236.571 36.5805 236.889 36.2626 236.889 35.8707V30.9389C236.889 30.5471 236.571 30.2291 236.179 30.2291H223.478V23.8186H233.957C234.35 23.8186 234.668 23.5007 234.668 23.1088V18.1771C234.668 17.8074 234.331 17.4673 233.957 17.4673H223.478V11.5559V11.5633Z" fill="#CD0921"/>
|
||||
<path d="M268.565 5.21516H263.127C262.735 5.21516 262.416 5.53309 262.416 5.92497V22.1361H262.161L244.085 4.76413H243.015C242.63 4.76413 242.305 5.06728 242.305 5.42588L242.349 35.8739C242.349 36.2436 242.686 36.5838 243.06 36.5838H248.45C248.842 36.5838 249.16 36.2658 249.16 35.8739V18.8458H249.419L249.464 18.8902L267.358 36.8499C267.417 36.9091 267.743 37.0311 267.839 37.0311H268.565C268.95 37.0311 269.275 36.7279 269.275 36.3693V5.92127C269.275 5.55158 268.939 5.21146 268.565 5.21146V5.21516Z" fill="#CD0921"/>
|
||||
<path d="M288.185 5.21578H277.131C276.772 5.21578 276.465 5.54111 276.465 5.92559V35.8746C276.465 36.2591 276.768 36.5844 277.131 36.5844H288.185C296.869 36.5844 303.935 29.5269 303.935 20.8539C303.935 12.1808 296.869 5.21578 288.185 5.21578ZM287.729 30.1887H283.228V11.5634H287.729C292.852 11.5634 296.713 15.5561 296.713 20.8539C296.713 26.1516 292.852 30.1887 287.729 30.1887Z" fill="#CD0921"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 44 KiB |
@@ -0,0 +1,39 @@
|
||||
<svg width="310" height="44" viewBox="0 0 310 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M83.8796 11.8851C83.8796 11.8851 83.8428 11.8474 83.8244 11.8286C83.806 11.8098 83.7876 11.791 83.7692 11.7721C83.7508 11.7533 83.7324 11.7345 83.7141 11.7156C83.6957 11.6968 83.6773 11.678 83.6589 11.6591C83.6405 11.6403 83.6221 11.6215 83.6037 11.6026C83.5853 11.5838 83.5669 11.565 83.5486 11.5461C83.5302 11.5273 83.5118 11.5085 83.4934 11.4897C83.475 11.4708 83.4566 11.452 83.4382 11.4332C83.4198 11.4143 83.4014 11.3955 83.383 11.3767C83.3647 11.3578 83.3463 11.339 83.3279 11.3202C83.3095 11.3013 83.2911 11.2825 83.2727 11.2637C83.2543 11.2448 83.2359 11.226 83.2176 11.2072C83.1992 11.1884 83.1808 11.1695 83.1624 11.1507C83.144 11.1319 83.1256 11.113 83.1072 11.0942C83.0888 11.0754 83.0704 11.0565 83.052 11.0377C83.0337 11.0189 83.0153 11 82.9969 10.9812C82.9785 10.9624 82.9601 10.9436 82.9417 10.9247C82.9233 10.9059 82.9049 10.8871 82.8865 10.8682C82.8681 10.8494 82.8498 10.8306 82.8314 10.8117C82.813 10.7929 82.7946 10.7741 82.7762 10.7552C82.7578 10.7364 82.7394 10.7176 82.721 10.6987C82.7027 10.6799 82.6843 10.6611 82.6659 10.6423C82.6659 10.6423 82.6585 10.6347 82.6585 10.631C85.4978 13.546 87.2448 17.5796 87.2448 22.0464C87.2448 30.9761 80.2679 38.0792 71.5478 38.0792C67.1822 38.0792 63.2652 36.3015 60.4443 33.4053C60.448 33.4091 60.4517 33.4128 60.4554 33.4166C60.4738 33.4354 60.4921 33.4543 60.5105 33.4731C60.5289 33.4919 60.5473 33.5108 60.5657 33.5296C60.5841 33.5484 60.6025 33.5672 60.6209 33.5861C60.6393 33.6049 60.6577 33.6237 60.676 33.6426C60.6944 33.6614 60.7128 33.6802 60.7312 33.6991C60.7496 33.7179 60.768 33.7367 60.7864 33.7556C60.8048 33.7744 60.8231 33.7932 60.8415 33.8121C60.8599 33.8309 60.8783 33.8497 60.8967 33.8685C60.9151 33.8874 60.9335 33.9062 60.9519 33.925C60.9703 33.9439 60.9887 33.9627 61.007 33.9815C61.0254 34.0004 61.0438 34.0192 61.0622 34.038C61.0806 34.0569 61.099 34.0757 61.1174 34.0945C61.1358 34.1134 61.1542 34.1322 61.1726 34.151C61.1909 34.1698 61.2093 34.1887 61.2277 34.2075C61.2461 34.2263 61.2645 34.2452 61.2829 34.264C61.3013 34.2828 61.3197 34.3017 61.3381 34.3205C61.3564 34.3393 61.3748 34.3582 61.3932 34.377C61.4116 34.3958 61.43 34.4146 61.4484 34.4335C61.4668 34.4523 61.4852 34.4711 61.5036 34.49C61.5219 34.5088 61.5403 34.5276 61.5587 34.5465C61.5771 34.5653 61.5955 34.5841 61.6139 34.603C61.6323 34.6218 61.6507 34.6406 61.6691 34.6595C64.4936 37.567 68.4179 39.3559 72.7945 39.3559C81.5147 39.3559 88.4916 32.2566 88.4916 23.3231C88.4916 18.8413 86.7336 14.8002 83.8832 11.8851H83.8796Z" fill="#CD0921"/>
|
||||
<path d="M71.5553 13.0829C66.7999 13.0829 62.876 17.1465 62.876 22.0577C62.876 23.9031 63.446 25.6205 64.4023 27.0479C64.6818 27.2965 64.9723 27.5262 65.2813 27.7371C64.542 26.4302 64.108 24.9238 64.108 23.3193C64.108 18.4082 68.0323 14.3444 72.7878 14.3444C74.3582 14.3444 75.8367 14.7851 77.1129 15.5459C76.9033 15.2295 76.6752 14.9244 76.4288 14.6382C75.0349 13.659 73.3575 13.0791 71.5553 13.0791V13.0829Z" fill="#CD0921"/>
|
||||
<path d="M124.461 14.2124H136.539C137.017 14.2124 137.366 13.8094 137.366 13.365V8.49905C137.366 8.25801 137.263 8.03581 137.098 7.87762C137.08 7.85879 137.061 7.83996 137.043 7.82113C137.024 7.8023 137.006 7.78347 136.988 7.76464C136.969 7.74581 136.951 7.72698 136.932 7.70815C136.914 7.68931 136.896 7.67048 136.877 7.65165C136.859 7.63282 136.841 7.61399 136.822 7.59516C136.804 7.57633 136.785 7.55749 136.767 7.53866C136.749 7.51983 136.73 7.501 136.712 7.48217C136.693 7.46334 136.675 7.44451 136.657 7.42568C136.638 7.40685 136.62 7.38802 136.601 7.36918C136.583 7.35035 136.565 7.33152 136.546 7.31269C136.528 7.29386 136.51 7.27503 136.491 7.2562C136.473 7.23737 136.454 7.21854 136.436 7.19971C136.418 7.18087 136.399 7.16204 136.381 7.14321C136.362 7.12438 136.344 7.10555 136.326 7.08672C136.307 7.06789 136.289 7.04906 136.27 7.03022C136.252 7.01139 136.234 6.99256 136.215 6.97373C136.197 6.9549 136.179 6.93607 136.16 6.91724C136.142 6.89841 136.123 6.87958 136.105 6.86075C136.087 6.84191 136.068 6.82308 136.05 6.80425C136.031 6.78542 136.013 6.76659 135.995 6.74776C135.976 6.72893 135.958 6.71009 135.939 6.69126C135.921 6.67243 135.903 6.6536 135.884 6.63477C135.884 6.63101 135.877 6.62724 135.873 6.62347C136.028 6.78165 136.123 6.99633 136.123 7.22607V12.092C136.123 12.5402 135.774 12.9394 135.296 12.9394H123.218V16.732H124.45V14.2011L124.461 14.2124Z" fill="#CD0921"/>
|
||||
<path d="M137.37 38.06V33.1941C137.37 32.953 137.267 32.7308 137.102 32.5726C137.084 32.5538 137.065 32.535 137.047 32.5161C137.028 32.4973 137.01 32.4785 136.992 32.4596C136.973 32.4408 136.955 32.422 136.936 32.4031C136.918 32.3843 136.9 32.3655 136.881 32.3467C136.863 32.3278 136.844 32.309 136.826 32.2902C136.808 32.2713 136.789 32.2525 136.771 32.2337C136.753 32.2148 136.734 32.196 136.716 32.1772C136.697 32.1583 136.679 32.1395 136.661 32.1207C136.642 32.1018 136.624 32.083 136.605 32.0642C136.587 32.0454 136.569 32.0265 136.55 32.0077C136.532 31.9889 136.513 31.97 136.495 31.9512C136.477 31.9324 136.458 31.9135 136.44 31.8947C136.422 31.8759 136.403 31.857 136.385 31.8382C136.366 31.8194 136.348 31.8006 136.33 31.7817C136.311 31.7629 136.293 31.7441 136.274 31.7252C136.256 31.7064 136.238 31.6876 136.219 31.6687C136.201 31.6499 136.182 31.6311 136.164 31.6122C136.146 31.5934 136.127 31.5746 136.109 31.5557C136.09 31.5369 136.072 31.5181 136.054 31.4993C136.035 31.4804 136.017 31.4616 135.999 31.4428C135.98 31.4239 135.962 31.4051 135.943 31.3863C135.925 31.3674 135.907 31.3486 135.888 31.3298C135.888 31.326 135.881 31.3222 135.877 31.3185C136.032 31.4767 136.127 31.6913 136.127 31.9211V36.787C136.127 37.2352 135.778 37.6344 135.3 37.6344H117.245C117.002 37.6344 116.797 37.529 116.649 37.3708C116.653 37.3746 116.657 37.3783 116.664 37.3859C116.683 37.4047 116.701 37.4235 116.719 37.4424C116.738 37.4612 116.756 37.48 116.774 37.4988C116.793 37.5177 116.811 37.5365 116.83 37.5553C116.848 37.5742 116.866 37.593 116.885 37.6118C116.903 37.6307 116.922 37.6495 116.94 37.6683C116.958 37.6872 116.977 37.706 116.995 37.7248C117.014 37.7437 117.032 37.7625 117.05 37.7813C117.069 37.8001 117.087 37.819 117.105 37.8378C117.124 37.8566 117.142 37.8755 117.161 37.8943C117.179 37.9131 117.197 37.932 117.216 37.9508C117.234 37.9696 117.253 37.9885 117.271 38.0073C117.289 38.0261 117.308 38.0449 117.326 38.0638C117.345 38.0826 117.363 38.1014 117.381 38.1203C117.4 38.1391 117.418 38.1579 117.436 38.1768C117.455 38.1956 117.473 38.2144 117.492 38.2333C117.51 38.2521 117.528 38.2709 117.547 38.2898C117.565 38.3086 117.584 38.3274 117.602 38.3462C117.62 38.3651 117.639 38.3839 117.657 38.4027C117.676 38.4216 117.694 38.4404 117.712 38.4592C117.731 38.4781 117.749 38.4969 117.767 38.5157C117.786 38.5346 117.804 38.5534 117.823 38.5722C117.841 38.5911 117.859 38.6099 117.878 38.6287C118.025 38.7982 118.242 38.9112 118.492 38.9112H136.547C137.025 38.9112 137.374 38.5082 137.374 38.0638L137.37 38.06Z" fill="#CD0921"/>
|
||||
<path d="M124.461 26.3132H134.402C134.84 26.3132 135.23 25.9554 135.23 25.4658V20.5999C135.23 20.3626 135.116 20.1404 134.95 19.9822C134.932 19.9634 134.913 19.9445 134.895 19.9257C134.877 19.9069 134.858 19.888 134.84 19.8692C134.821 19.8504 134.803 19.8316 134.785 19.8127C134.766 19.7939 134.748 19.7751 134.729 19.7562C134.711 19.7374 134.693 19.7186 134.674 19.6997C134.656 19.6809 134.637 19.6621 134.619 19.6432C134.601 19.6244 134.582 19.6056 134.564 19.5868C134.546 19.5679 134.527 19.5491 134.509 19.5303C134.49 19.5114 134.472 19.4926 134.454 19.4738C134.435 19.4549 134.417 19.4361 134.398 19.4173C134.38 19.3984 134.362 19.3796 134.343 19.3608C134.325 19.3419 134.306 19.3231 134.288 19.3043C134.27 19.2855 134.251 19.2666 134.233 19.2478C134.215 19.229 134.196 19.2101 134.178 19.1913C134.159 19.1725 134.141 19.1536 134.123 19.1348C134.104 19.116 134.086 19.0971 134.067 19.0783C134.049 19.0595 134.031 19.0406 134.012 19.0218C133.994 19.003 133.975 18.9842 133.957 18.9653C133.939 18.9465 133.92 18.9277 133.902 18.9088C133.884 18.89 133.865 18.8712 133.847 18.8523C133.828 18.8335 133.81 18.8147 133.792 18.7958C133.773 18.777 133.755 18.7582 133.736 18.7394C133.733 18.7356 133.729 18.7318 133.725 18.7281C133.884 18.8862 133.986 19.0971 133.986 19.3269V24.1928C133.986 24.6825 133.593 25.0402 133.159 25.0402H123.218V29.3224H124.45V26.3019L124.461 26.3132Z" fill="#CD0921"/>
|
||||
<path d="M172.167 7.96128C172.148 7.94245 172.13 7.92362 172.112 7.90479C172.093 7.88595 172.075 7.86712 172.056 7.84829C172.038 7.82946 172.02 7.81062 172.001 7.79179C171.983 7.77296 171.965 7.75414 171.946 7.73531C171.928 7.71647 171.909 7.69765 171.891 7.67881C171.873 7.65998 171.854 7.64115 171.836 7.62231C171.817 7.60348 171.799 7.58466 171.781 7.56583C171.762 7.547 171.744 7.52816 171.725 7.50933C171.707 7.4905 171.689 7.47167 171.67 7.45284C171.652 7.434 171.634 7.41518 171.615 7.39635C171.597 7.37752 171.578 7.35868 171.56 7.33985C171.542 7.32102 171.523 7.30219 171.505 7.28336C171.486 7.26452 171.468 7.24569 171.45 7.22686C171.431 7.20803 171.413 7.1892 171.394 7.17037C171.376 7.15154 171.358 7.13271 171.339 7.11388C171.321 7.09505 171.303 7.07622 171.284 7.05738C171.266 7.03855 171.247 7.01972 171.229 7.00089C171.211 6.98206 171.192 6.96322 171.174 6.94439C171.155 6.92556 171.137 6.90674 171.119 6.88791C171.1 6.86907 171.082 6.85024 171.063 6.83141C171.045 6.81258 171.027 6.79374 171.008 6.77491C171.008 6.77115 171.001 6.76738 170.997 6.76362C171.152 6.9218 171.247 7.13648 171.247 7.36621V12.2322C171.247 12.6804 170.898 13.0796 170.42 13.0796H158.342V17.7648H159.574V14.3413H171.652C172.13 14.3413 172.479 13.9383 172.479 13.4939V8.6279C172.479 8.39062 172.376 8.16465 172.211 8.00647C172.193 7.98764 172.174 7.96881 172.156 7.94998L172.167 7.96128Z" fill="#CD0921"/>
|
||||
<path d="M170.019 20.9633C170.001 20.9445 169.982 20.9257 169.964 20.9068C169.946 20.888 169.927 20.8692 169.909 20.8503C169.89 20.8315 169.872 20.8127 169.854 20.7939C169.835 20.775 169.817 20.7562 169.799 20.7374C169.78 20.7185 169.762 20.6997 169.743 20.6809C169.725 20.662 169.707 20.6432 169.688 20.6244C169.67 20.6055 169.651 20.5867 169.633 20.5679C169.615 20.549 169.596 20.5302 169.578 20.5114C169.559 20.4926 169.541 20.4737 169.523 20.4549C169.504 20.4361 169.486 20.4172 169.468 20.3984C169.449 20.3796 169.431 20.3607 169.412 20.3419C169.394 20.3231 169.376 20.3042 169.357 20.2854C169.339 20.2666 169.32 20.2478 169.302 20.2289C169.284 20.2101 169.265 20.1913 169.247 20.1724C169.228 20.1536 169.21 20.1348 169.192 20.1159C169.173 20.0971 169.155 20.0783 169.137 20.0594C169.118 20.0406 169.1 20.0218 169.081 20.0029C169.063 19.9841 169.045 19.9653 169.026 19.9465C169.008 19.9276 168.989 19.9088 168.971 19.89C168.953 19.8711 168.934 19.8523 168.916 19.8335C168.897 19.8146 168.879 19.7958 168.861 19.777C168.857 19.7732 168.853 19.7694 168.85 19.7657C169.008 19.9239 169.111 20.1348 169.111 20.3645V25.2305C169.111 25.6786 168.717 26.0779 168.283 26.0779H158.342V36.9283C158.342 37.3765 157.949 37.7757 157.515 37.7757H152.369C152.127 37.7757 151.921 37.6703 151.773 37.5121C151.777 37.5159 151.781 37.5196 151.788 37.5272C151.807 37.546 151.825 37.5648 151.843 37.5837C151.862 37.6025 151.88 37.6213 151.898 37.6402C151.917 37.659 151.935 37.6778 151.954 37.6967C151.972 37.7155 151.99 37.7343 152.009 37.7532C152.027 37.772 152.046 37.7908 152.064 37.8096C152.082 37.8285 152.101 37.8473 152.119 37.8661C152.138 37.885 152.156 37.9038 152.174 37.9226C152.193 37.9415 152.211 37.9603 152.229 37.9791C152.248 37.998 152.266 38.0168 152.285 38.0356C152.303 38.0544 152.321 38.0733 152.34 38.0921C152.358 38.1109 152.377 38.1298 152.395 38.1486C152.413 38.1674 152.432 38.1863 152.45 38.2051C152.469 38.2239 152.487 38.2428 152.505 38.2616C152.524 38.2804 152.542 38.2993 152.561 38.3181C152.579 38.3369 152.597 38.3557 152.616 38.3746C152.634 38.3934 152.652 38.4122 152.671 38.4311C152.689 38.4499 152.708 38.4687 152.726 38.4876C152.744 38.5064 152.763 38.5252 152.781 38.5441C152.8 38.5629 152.818 38.5817 152.836 38.6005C152.855 38.6194 152.873 38.6382 152.892 38.657C152.91 38.6759 152.928 38.6947 152.947 38.7135C152.965 38.7324 152.983 38.7512 153.002 38.77C153.149 38.9395 153.362 39.0525 153.616 39.0525H158.761C159.195 39.0525 159.589 38.6495 159.589 38.2051V27.3546H169.53C169.968 27.3546 170.358 26.9516 170.358 26.5072V21.6413C170.358 21.404 170.244 21.1818 170.078 21.0236C170.06 21.0048 170.041 20.9859 170.023 20.9671L170.019 20.9633Z" fill="#CD0921"/>
|
||||
<path d="M182.943 25.5533V36.9423C182.943 37.3905 182.549 37.7897 182.115 37.7897H176.926C176.683 37.7897 176.477 37.6843 176.33 37.5261C176.334 37.5298 176.337 37.5336 176.345 37.5412C176.363 37.56 176.382 37.5788 176.4 37.5976C176.418 37.6165 176.437 37.6353 176.455 37.6541C176.474 37.673 176.492 37.6918 176.51 37.7106C176.529 37.7295 176.547 37.7483 176.565 37.7671C176.584 37.786 176.602 37.8048 176.621 37.8236C176.639 37.8424 176.657 37.8613 176.676 37.8801C176.694 37.8989 176.713 37.9178 176.731 37.9366C176.749 37.9554 176.768 37.9743 176.786 37.9931C176.805 38.0119 176.823 38.0308 176.841 38.0496C176.86 38.0684 176.878 38.0873 176.896 38.1061C176.915 38.1249 176.933 38.1437 176.952 38.1626C176.97 38.1814 176.988 38.2002 177.007 38.2191C177.025 38.2379 177.044 38.2567 177.062 38.2756C177.08 38.2944 177.099 38.3132 177.117 38.3321C177.136 38.3509 177.154 38.3697 177.172 38.3886C177.191 38.4074 177.209 38.4262 177.227 38.445C177.246 38.4639 177.264 38.4827 177.283 38.5015C177.301 38.5204 177.319 38.5392 177.338 38.558C177.356 38.5769 177.375 38.5957 177.393 38.6145C177.411 38.6334 177.43 38.6522 177.448 38.671C177.467 38.6899 177.485 38.7087 177.503 38.7275C177.522 38.7463 177.54 38.7652 177.558 38.784C177.706 38.9535 177.919 39.0665 178.173 39.0665H183.362C183.796 39.0665 184.19 38.6635 184.19 38.2191V26.83H185.642L185.025 25.5683H182.958L182.943 25.5533Z" fill="#CD0921"/>
|
||||
<path d="M189.398 12.9143H182.943V18.1343L184.174 18.1343V14.176H190.629C190.739 14.176 190.85 14.1873 190.96 14.1986C190.898 13.8296 190.781 13.4793 190.604 13.1629C190.229 13.0085 189.821 12.9143 189.398 12.9143Z" fill="#CD0921"/>
|
||||
<path d="M200.703 17.4378C200.703 14.7714 199.625 12.3497 197.889 10.6022C197.871 10.5833 197.853 10.5645 197.834 10.5457C197.816 10.5268 197.797 10.508 197.779 10.4892C197.761 10.4703 197.742 10.4515 197.724 10.4327C197.705 10.4138 197.687 10.395 197.669 10.3762C197.65 10.3574 197.632 10.3385 197.613 10.3197C197.595 10.3009 197.577 10.282 197.558 10.2632C197.54 10.2444 197.522 10.2255 197.503 10.2067C197.485 10.1879 197.466 10.169 197.448 10.1502C197.43 10.1314 197.411 10.1125 197.393 10.0937C197.374 10.0749 197.356 10.0561 197.338 10.0372C197.319 10.0184 197.301 9.99956 197.282 9.98073C197.264 9.9619 197.246 9.94306 197.227 9.92423C197.209 9.9054 197.191 9.88658 197.172 9.86774C197.154 9.84891 197.135 9.83008 197.117 9.81124C197.099 9.79241 197.08 9.77358 197.062 9.75475C197.043 9.73592 197.025 9.7171 197.007 9.69827C196.988 9.67943 196.97 9.6606 196.951 9.64177C196.933 9.62294 196.915 9.6041 196.896 9.58527C196.878 9.56644 196.86 9.54761 196.841 9.52878C196.823 9.50995 196.804 9.49112 196.786 9.47229C196.768 9.45346 196.749 9.43463 196.731 9.41579C196.712 9.39696 196.694 9.37813 196.676 9.3593C196.672 9.35554 196.665 9.348 196.661 9.34424C198.39 11.0918 199.46 13.5059 199.46 16.1649C199.46 20.2738 196.801 23.5768 193.005 25.1398L198.978 36.4836C199.283 37.0636 198.978 37.7792 198.235 37.7792H192.435C192.189 37.7792 191.99 37.6662 191.861 37.5382C191.872 37.5532 191.887 37.5645 191.902 37.5796C191.916 37.5984 191.935 37.6173 191.957 37.6361C191.972 37.6549 191.99 37.6738 192.012 37.6926C192.027 37.7114 192.049 37.7303 192.067 37.7491C192.082 37.7679 192.1 37.7867 192.122 37.8056C192.137 37.8244 192.159 37.8432 192.178 37.8621C192.192 37.8809 192.214 37.8997 192.233 37.9186C192.247 37.9374 192.266 37.9562 192.288 37.9751C192.303 37.9939 192.325 38.0127 192.343 38.0315C192.358 38.0504 192.38 38.0692 192.398 38.0881C192.413 38.1069 192.431 38.1257 192.453 38.1445C192.468 38.1634 192.49 38.1822 192.509 38.201C192.523 38.2199 192.542 38.2387 192.564 38.2575C192.579 38.2764 192.601 38.2952 192.619 38.314C192.634 38.3328 192.656 38.3517 192.674 38.3705C192.689 38.3893 192.707 38.4082 192.729 38.427C192.744 38.4458 192.766 38.4647 192.784 38.4835C192.799 38.5023 192.821 38.5212 192.84 38.54C192.854 38.5588 192.873 38.5776 192.895 38.5965C192.91 38.6153 192.932 38.6342 192.95 38.653C192.965 38.6718 192.983 38.6906 193.005 38.7095C193.02 38.7283 193.038 38.7471 193.06 38.766C193.185 38.9129 193.402 39.0522 193.678 39.0522H199.478C200.221 39.0522 200.526 38.3366 200.221 37.7566L194.248 26.4128C198.044 24.8498 200.703 21.5468 200.703 17.4378Z" fill="#CD0921"/>
|
||||
<path d="M213.101 7.96919C213.083 7.95036 213.064 7.93153 213.046 7.9127C213.028 7.89387 213.009 7.87503 212.991 7.8562C212.972 7.83737 212.954 7.81854 212.936 7.79971C212.917 7.78088 212.899 7.76205 212.88 7.74322C212.862 7.72439 212.844 7.70555 212.825 7.68672C212.807 7.66789 212.789 7.64906 212.77 7.63023C212.752 7.6114 212.733 7.59257 212.715 7.57373C212.697 7.5549 212.678 7.53607 212.66 7.51724C212.641 7.49841 212.623 7.47958 212.605 7.46075C212.586 7.44192 212.568 7.42309 212.549 7.40425C212.531 7.38542 212.513 7.36659 212.494 7.34776C212.476 7.32893 212.458 7.3101 212.439 7.29127C212.421 7.27244 212.402 7.25361 212.384 7.23478C212.366 7.21595 212.347 7.19711 212.329 7.17828C212.31 7.15945 212.292 7.14062 212.274 7.12179C212.255 7.10296 212.237 7.08413 212.218 7.0653C212.2 7.04647 212.182 7.02763 212.163 7.0088C212.145 6.98997 212.127 6.97114 212.108 6.95231C212.09 6.93348 212.071 6.91465 212.053 6.89582C212.035 6.87699 212.016 6.85815 211.998 6.83932C211.979 6.82049 211.961 6.80166 211.943 6.78283C211.939 6.77907 211.935 6.7753 211.932 6.77153C212.09 6.92972 212.193 7.14062 212.193 7.37036V36.9314C212.193 37.3796 211.799 37.7788 211.365 37.7788H206.132C205.911 37.7788 205.701 37.6734 205.547 37.5114C205.551 37.5114 205.554 37.519 205.558 37.5227C205.576 37.5416 205.595 37.5604 205.613 37.5792C205.631 37.5981 205.65 37.6169 205.668 37.6357C205.687 37.6545 205.705 37.6734 205.723 37.6922C205.742 37.711 205.76 37.7299 205.779 37.7487C205.797 37.7675 205.815 37.7864 205.834 37.8052C205.852 37.824 205.871 37.8429 205.889 37.8617C205.907 37.8805 205.926 37.8994 205.944 37.9182C205.962 37.937 205.981 37.9558 205.999 37.9747C206.018 37.9935 206.036 38.0123 206.054 38.0312C206.073 38.05 206.091 38.0688 206.11 38.0877C206.128 38.1065 206.146 38.1253 206.165 38.1442C206.183 38.163 206.202 38.1818 206.22 38.2007C206.238 38.2195 206.257 38.2383 206.275 38.2571C206.293 38.276 206.312 38.2948 206.33 38.3136C206.349 38.3325 206.367 38.3513 206.385 38.3701C206.404 38.389 206.422 38.4078 206.441 38.4266C206.459 38.4455 206.477 38.4643 206.496 38.4831C206.514 38.5019 206.533 38.5208 206.551 38.5396C206.569 38.5584 206.588 38.5773 206.606 38.5961C206.624 38.6149 206.643 38.6338 206.661 38.6526C206.68 38.6714 206.698 38.6903 206.716 38.7091C206.735 38.7279 206.753 38.7468 206.772 38.7656C206.926 38.9388 207.143 39.0518 207.375 39.0518H212.608C213.046 39.0518 213.436 38.6488 213.436 38.2044V8.64334C213.436 8.40607 213.326 8.18387 213.156 8.02568C213.138 8.00685 213.12 7.98802 213.101 7.96919Z" fill="#CD0921"/>
|
||||
<path d="M240.321 32.6573C240.303 32.6384 240.284 32.6196 240.266 32.6008C240.248 32.5819 240.229 32.5631 240.211 32.5443C240.192 32.5254 240.174 32.5066 240.156 32.4878C240.137 32.469 240.119 32.4501 240.1 32.4313C240.082 32.4125 240.064 32.3936 240.045 32.3748C240.027 32.356 240.009 32.3371 239.99 32.3183C239.972 32.2995 239.953 32.2806 239.935 32.2618C239.917 32.243 239.898 32.2241 239.88 32.2053C239.861 32.1865 239.843 32.1677 239.825 32.1488C239.806 32.13 239.788 32.1112 239.769 32.0923C239.751 32.0735 239.733 32.0547 239.714 32.0358C239.696 32.017 239.678 31.9982 239.659 31.9794C239.641 31.9605 239.622 31.9417 239.604 31.9229C239.586 31.904 239.567 31.8852 239.549 31.8664C239.53 31.8475 239.512 31.8287 239.494 31.8099C239.475 31.791 239.457 31.7722 239.438 31.7534C239.42 31.7345 239.402 31.7157 239.383 31.6969C239.365 31.6781 239.347 31.6592 239.328 31.6404C239.31 31.6215 239.291 31.6027 239.273 31.5839C239.255 31.5651 239.236 31.5462 239.218 31.5274C239.199 31.5086 239.181 31.4897 239.163 31.4709C239.163 31.4672 239.155 31.4634 239.152 31.4596C239.306 31.6178 239.402 31.8325 239.402 32.0622V36.9282C239.402 37.3763 239.052 37.7756 238.574 37.7756H220.52C220.277 37.7756 220.071 37.6701 219.924 37.5119C219.928 37.5157 219.931 37.5195 219.939 37.527C219.957 37.5458 219.975 37.5646 219.994 37.5835C220.012 37.6023 220.03 37.6212 220.049 37.64C220.067 37.6588 220.086 37.6776 220.104 37.6965C220.122 37.7153 220.141 37.7341 220.159 37.753C220.178 37.7718 220.196 37.7906 220.214 37.8095C220.233 37.8283 220.251 37.8471 220.27 37.866C220.288 37.8848 220.306 37.9036 220.325 37.9225C220.343 37.9413 220.361 37.9601 220.38 37.9789C220.398 37.9978 220.417 38.0166 220.435 38.0354C220.453 38.0543 220.472 38.0731 220.49 38.0919C220.509 38.1108 220.527 38.1296 220.545 38.1484C220.564 38.1672 220.582 38.1861 220.601 38.2049C220.619 38.2237 220.637 38.2426 220.656 38.2614C220.674 38.2802 220.693 38.2991 220.711 38.3179C220.729 38.3367 220.748 38.3556 220.766 38.3744C220.784 38.3932 220.803 38.412 220.821 38.4309C220.84 38.4497 220.858 38.4686 220.876 38.4874C220.895 38.5062 220.913 38.525 220.932 38.5439C220.95 38.5627 220.968 38.5815 220.987 38.6004C221.005 38.6192 221.024 38.638 221.042 38.6569C221.06 38.6757 221.079 38.6945 221.097 38.7133C221.115 38.7322 221.134 38.751 221.152 38.7699C221.299 38.9393 221.513 39.0523 221.766 39.0523H239.821C240.299 39.0523 240.648 38.6493 240.648 38.2049V33.339C240.648 33.0979 240.546 32.8757 240.38 32.7175C240.362 32.6987 240.343 32.6799 240.325 32.661L240.321 32.6573Z" fill="#CD0921"/>
|
||||
<path d="M240.321 7.96128C240.303 7.94245 240.284 7.92362 240.266 7.90479C240.248 7.88595 240.229 7.86712 240.211 7.84829C240.192 7.82946 240.174 7.81062 240.156 7.79179C240.137 7.77296 240.119 7.75414 240.1 7.73531C240.082 7.71647 240.064 7.69765 240.045 7.67881C240.027 7.65998 240.008 7.64115 239.99 7.62231C239.972 7.60348 239.953 7.58466 239.935 7.56583C239.917 7.547 239.898 7.52816 239.88 7.50933C239.861 7.4905 239.843 7.47167 239.825 7.45284C239.806 7.434 239.788 7.41518 239.769 7.39635C239.751 7.37752 239.733 7.35868 239.714 7.33985C239.696 7.32102 239.677 7.30219 239.659 7.28336C239.641 7.26452 239.622 7.24569 239.604 7.22686C239.586 7.20803 239.567 7.1892 239.549 7.17037C239.53 7.15154 239.512 7.13271 239.494 7.11388C239.475 7.09505 239.457 7.07622 239.438 7.05738C239.42 7.03855 239.402 7.01972 239.383 7.00089C239.365 6.98206 239.346 6.96322 239.328 6.94439C239.31 6.92556 239.291 6.90674 239.273 6.88791C239.255 6.86907 239.236 6.85024 239.218 6.83141C239.199 6.81258 239.181 6.79374 239.163 6.77491C239.163 6.77115 239.155 6.76738 239.152 6.76362C239.306 6.9218 239.402 7.13648 239.402 7.36621V12.2322C239.402 12.6804 239.052 13.0796 238.574 13.0796H226.496V16.8722H227.728V14.3413H239.806C240.284 14.3413 240.634 13.9383 240.634 13.4939V8.6279C240.634 8.39062 240.531 8.16465 240.365 8.00647C240.347 7.98764 240.328 7.96881 240.31 7.94998L240.321 7.96128Z" fill="#CD0921"/>
|
||||
<path d="M227.739 26.4573H237.684C238.118 26.4573 238.512 26.0995 238.512 25.6099V20.744C238.512 20.5067 238.401 20.2845 238.232 20.1263C238.214 20.1075 238.195 20.0886 238.177 20.0698C238.159 20.051 238.14 20.0322 238.122 20.0133C238.103 19.9945 238.085 19.9757 238.067 19.9568C238.048 19.938 238.03 19.9192 238.011 19.9003C237.993 19.8815 237.975 19.8627 237.956 19.8438C237.938 19.825 237.919 19.8062 237.901 19.7874C237.883 19.7685 237.864 19.7497 237.846 19.7309C237.828 19.712 237.809 19.6932 237.791 19.6744C237.772 19.6555 237.754 19.6367 237.736 19.6179C237.717 19.599 237.699 19.5802 237.68 19.5614C237.662 19.5425 237.644 19.5237 237.625 19.5049C237.607 19.4861 237.588 19.4672 237.57 19.4484C237.552 19.4296 237.533 19.4107 237.515 19.3919C237.497 19.3731 237.478 19.3542 237.46 19.3354C237.441 19.3166 237.423 19.2977 237.405 19.2789C237.386 19.2601 237.368 19.2412 237.349 19.2224C237.331 19.2036 237.313 19.1848 237.294 19.1659C237.276 19.1471 237.257 19.1283 237.239 19.1094C237.221 19.0906 237.202 19.0718 237.184 19.0529C237.166 19.0341 237.147 19.0153 237.129 18.9964C237.11 18.9776 237.092 18.9588 237.074 18.94C237.055 18.9211 237.037 18.9023 237.018 18.8835C237.015 18.8797 237.011 18.8759 237.007 18.8722C237.166 19.0303 237.268 19.245 237.268 19.471V24.3369C237.268 24.8303 236.875 25.1843 236.441 25.1843H226.496V29.4665H227.728V26.446L227.739 26.4573Z" fill="#CD0921"/>
|
||||
<path d="M272.362 7.96919C272.344 7.95036 272.326 7.93153 272.307 7.9127C272.289 7.89387 272.27 7.87503 272.252 7.8562C272.234 7.83737 272.215 7.81854 272.197 7.79971C272.179 7.78088 272.16 7.76205 272.142 7.74322C272.123 7.72439 272.105 7.70555 272.087 7.68672C272.068 7.66789 272.05 7.64906 272.031 7.63023C272.013 7.6114 271.995 7.59257 271.976 7.57373C271.958 7.5549 271.94 7.53607 271.921 7.51724C271.903 7.49841 271.884 7.47958 271.866 7.46075C271.848 7.44192 271.829 7.42309 271.811 7.40425C271.792 7.38542 271.774 7.36659 271.756 7.34776C271.737 7.32893 271.719 7.3101 271.7 7.29127C271.682 7.27244 271.664 7.25361 271.645 7.23478C271.627 7.21595 271.608 7.19711 271.59 7.17828C271.572 7.15945 271.553 7.14062 271.535 7.12179C271.517 7.10296 271.498 7.08413 271.48 7.0653C271.461 7.04647 271.443 7.02763 271.425 7.0088C271.406 6.98997 271.388 6.97114 271.369 6.95231C271.351 6.93348 271.333 6.91465 271.314 6.89582C271.296 6.87699 271.277 6.85815 271.259 6.83932C271.241 6.82049 271.222 6.80166 271.204 6.78283C271.2 6.77907 271.197 6.7753 271.193 6.77153C271.351 6.92972 271.454 7.14062 271.454 7.37036V37.4248C271.454 37.873 271.061 38.227 270.627 38.227H269.928C269.795 38.227 269.45 38.0952 269.361 38.0048L269.446 38.0914L269.497 38.1479L269.553 38.2044L269.604 38.2609L269.714 38.3739L269.766 38.4304L270.483 39.1648L270.535 39.2213L270.59 39.2778C270.678 39.3682 271.024 39.5 271.156 39.5H271.855C272.289 39.5 272.682 39.1422 272.682 38.6978V8.64334C272.682 8.40607 272.568 8.18387 272.403 8.02568C272.385 8.00685 272.366 7.98802 272.348 7.96919H272.362Z" fill="#CD0921"/>
|
||||
<path d="M252.101 36.9391C252.101 37.3873 251.751 37.7865 251.273 37.7865H246.084C245.863 37.7865 245.653 37.681 245.499 37.5191C245.503 37.5191 245.506 37.5266 245.51 37.5304C245.528 37.5492 245.547 37.5681 245.565 37.5869C245.584 37.6057 245.602 37.6245 245.62 37.6434C245.639 37.6622 245.657 37.681 245.676 37.6999C245.694 37.7187 245.712 37.7375 245.731 37.7564C245.749 37.7752 245.767 37.794 245.786 37.8129C245.804 37.8317 245.823 37.8505 245.841 37.8694C245.859 37.8882 245.878 37.907 245.896 37.9258C245.915 37.9447 245.933 37.9635 245.951 37.9823C245.97 38.0012 245.988 38.02 246.007 38.0388C246.025 38.0577 246.043 38.0765 246.062 38.0953C246.08 38.1142 246.099 38.133 246.117 38.1518C246.135 38.1706 246.154 38.1895 246.172 38.2083C246.19 38.2271 246.209 38.246 246.227 38.2648C246.246 38.2836 246.264 38.3025 246.282 38.3213C246.301 38.3401 246.319 38.359 246.338 38.3778C246.356 38.3966 246.374 38.4154 246.393 38.4343C246.411 38.4531 246.43 38.4719 246.448 38.4908C246.466 38.5096 246.485 38.5284 246.503 38.5473C246.521 38.5661 246.54 38.5849 246.558 38.6038C246.577 38.6226 246.595 38.6414 246.613 38.6603C246.632 38.6791 246.65 38.6979 246.669 38.7168C246.687 38.7356 246.705 38.7544 246.724 38.7732C246.878 38.9465 247.095 39.0595 247.327 39.0595H252.516C252.994 39.0595 253.344 38.6565 253.344 38.2121V21.7424L252.112 20.4732V36.9504L252.101 36.9391Z" fill="#CD0921"/>
|
||||
<path d="M285.768 13.0954V29.4371H287V14.3609H291.185C292.719 14.3609 294.116 14.7526 295.319 15.4343C295.113 15.1104 294.885 14.8015 294.642 14.5153C293.322 13.6189 291.726 13.103 289.953 13.103H285.768V13.0954Z" fill="#CD0921"/>
|
||||
<path d="M302.351 12.2895C302.351 12.2895 302.314 12.2518 302.296 12.233C302.278 12.2141 302.259 12.1953 302.241 12.1765C302.222 12.1576 302.204 12.1388 302.186 12.12C302.167 12.1012 302.149 12.0823 302.13 12.0635C302.112 12.0447 302.094 12.0258 302.075 12.007C302.057 11.9882 302.038 11.9693 302.02 11.9505C302.002 11.9317 301.983 11.9128 301.965 11.894C301.947 11.8752 301.928 11.8563 301.91 11.8375C301.891 11.8187 301.873 11.7999 301.855 11.781C301.836 11.7622 301.818 11.7434 301.799 11.7245C301.781 11.7057 301.763 11.6869 301.744 11.668C301.726 11.6492 301.707 11.6304 301.689 11.6115C301.671 11.5927 301.652 11.5739 301.634 11.555C301.616 11.5362 301.597 11.5174 301.579 11.4986C301.56 11.4797 301.542 11.4609 301.524 11.4421C301.505 11.4232 301.487 11.4044 301.468 11.3856C301.45 11.3667 301.432 11.3479 301.413 11.3291C301.395 11.3102 301.376 11.2914 301.358 11.2726C301.34 11.2538 301.321 11.2349 301.303 11.2161C301.284 11.1973 301.266 11.1784 301.248 11.1596C301.248 11.1596 301.244 11.1558 301.24 11.1521C301.24 11.1521 301.244 11.1596 301.248 11.1596C303.984 13.9805 305.683 17.8446 305.683 22.1005C305.683 30.7628 298.795 37.7755 290.376 37.7755H279.736C279.515 37.7755 279.32 37.67 279.181 37.5156C279.188 37.5194 279.192 37.5269 279.195 37.5307C279.214 37.5495 279.232 37.5683 279.251 37.5872C279.269 37.606 279.287 37.6248 279.306 37.6437C279.324 37.6625 279.342 37.6813 279.361 37.7002C279.379 37.719 279.398 37.7378 279.416 37.7567C279.434 37.7755 279.453 37.7943 279.471 37.8131C279.49 37.832 279.508 37.8508 279.526 37.8696C279.545 37.8885 279.563 37.9073 279.582 37.9261C279.6 37.945 279.618 37.9638 279.637 37.9826C279.655 38.0015 279.674 38.0203 279.692 38.0391C279.71 38.058 279.729 38.0768 279.747 38.0956C279.765 38.1145 279.784 38.1333 279.802 38.1521C279.821 38.1709 279.839 38.1898 279.857 38.2086C279.876 38.2274 279.894 38.2463 279.913 38.2651C279.931 38.2839 279.949 38.3028 279.968 38.3216C279.986 38.3404 280.004 38.3593 280.023 38.3781C280.041 38.3969 280.06 38.4157 280.078 38.4346C280.096 38.4534 280.115 38.4722 280.133 38.4911C280.152 38.5099 280.17 38.5287 280.188 38.5476C280.207 38.5664 280.225 38.5852 280.244 38.604C280.262 38.6229 280.28 38.6417 280.299 38.6605C280.317 38.6794 280.335 38.6982 280.354 38.717C280.372 38.7359 280.391 38.7547 280.409 38.7735C280.552 38.9392 280.755 39.0485 280.979 39.0485H291.619C300.034 39.0485 306.926 32.0358 306.926 23.3735C306.926 19.0762 305.194 15.1669 302.406 12.3422C302.388 12.3234 302.369 12.3045 302.351 12.2857V12.2895Z" fill="#CD0921"/>
|
||||
<path d="M30.7863 32.5542C31.0916 32.8668 31.0475 33.4468 30.7422 33.7594C27.7779 36.7046 24.0265 38.0906 20.1463 38.0906C15.7807 38.0906 11.8418 36.3091 8.99512 33.4129C8.99512 33.4129 9.00247 33.4205 9.00615 33.4242C9.02454 33.4431 9.04293 33.4619 9.06132 33.4807C9.07971 33.4995 9.0981 33.5184 9.11649 33.5372C9.13488 33.556 9.15326 33.5749 9.17165 33.5937C9.19004 33.6125 9.20843 33.6314 9.22682 33.6502C9.24521 33.669 9.2636 33.6879 9.28199 33.7067C9.30038 33.7255 9.31877 33.7443 9.33716 33.7632C9.35555 33.782 9.37394 33.8008 9.39232 33.8197C9.41071 33.8385 9.4291 33.8573 9.44749 33.8762C9.46588 33.895 9.48427 33.9138 9.50266 33.9327C9.52105 33.9515 9.53944 33.9703 9.55783 33.9892C9.57622 34.008 9.59461 34.0268 9.613 34.0456C9.63139 34.0645 9.64977 34.0833 9.66816 34.1021C9.68655 34.121 9.70494 34.1398 9.72333 34.1586C9.74172 34.1775 9.76011 34.1963 9.7785 34.2151C9.79689 34.234 9.81528 34.2528 9.83367 34.2716C9.85206 34.2905 9.87045 34.3093 9.88884 34.3281C9.90723 34.3469 9.92561 34.3658 9.944 34.3846C9.96239 34.4034 9.98078 34.4223 9.99917 34.4411C10.0176 34.4599 10.0359 34.4788 10.0543 34.4976C10.0727 34.5164 10.0911 34.5353 10.1095 34.5541C10.1279 34.5729 10.1463 34.5917 10.1647 34.6106C10.1831 34.6294 10.2015 34.6482 10.2198 34.6671C13.0665 37.5784 17.0165 39.3673 21.3931 39.3673C25.2733 39.3673 29.0247 37.9813 31.989 35.0362C32.2943 34.7236 32.3384 34.1436 32.0331 33.831L29.4844 31.0553C29.5101 31.1042 29.5359 31.157 29.5506 31.2097L30.7974 32.5693L30.7863 32.5542Z" fill="#CD0921"/>
|
||||
<path d="M13.0478 23.1418C13.0478 18.1403 16.6668 13.9447 21.5951 13.9447C23.7319 13.9447 25.8688 14.7469 27.4833 16.2233C27.7886 16.5359 28.2667 16.5359 28.572 16.2233L31.974 12.6077C32.3234 12.2499 32.3234 11.7151 31.9299 11.3573C31.9225 11.3498 31.9151 11.346 31.9078 11.3385C31.8968 11.3272 31.8857 11.3121 31.8747 11.3008C31.8673 11.2933 31.86 11.2895 31.8526 11.282C31.8416 11.2707 31.8306 11.2556 31.8195 11.2443C31.8122 11.2368 31.8048 11.233 31.7975 11.2255C31.7864 11.2142 31.7754 11.1991 31.7644 11.1878C31.757 11.1803 31.7496 11.1765 31.7423 11.169C31.7313 11.1577 31.7202 11.1426 31.7092 11.1313C31.7018 11.1238 31.6945 11.12 31.6871 11.1125C31.6761 11.1012 31.665 11.0862 31.654 11.0749C31.6467 11.0673 31.6393 11.0636 31.632 11.056C31.6209 11.0447 31.6099 11.0297 31.5989 11.0184C31.5915 11.0108 31.5841 11.0071 31.5768 10.9995C31.5657 10.9882 31.5547 10.9732 31.5437 10.9619C31.5363 10.9543 31.529 10.9506 31.5216 10.943C31.5106 10.9317 31.4995 10.9167 31.4885 10.9054C31.4812 10.8978 31.4738 10.8941 31.4664 10.8865C31.4554 10.8752 31.4444 10.8602 31.4333 10.8489C31.426 10.8413 31.4186 10.8376 31.4113 10.83C31.4002 10.8188 31.3892 10.8037 31.3782 10.7924C31.3708 10.7849 31.3635 10.7811 31.3561 10.7736C31.3451 10.7623 31.334 10.7472 31.323 10.7359C31.3157 10.7284 31.3083 10.7246 31.3009 10.7171C31.2899 10.7058 31.2789 10.6907 31.2678 10.6794C31.2605 10.6719 31.2531 10.6681 31.2458 10.6606C31.2347 10.6493 31.2237 10.6342 31.2127 10.6229C31.2053 10.6154 31.198 10.6116 31.1906 10.6041C31.1796 10.5928 31.1685 10.5777 31.1575 10.5664C31.1501 10.5589 31.1428 10.5551 31.1354 10.5476C31.1244 10.5363 31.1134 10.5212 31.1023 10.5099C31.095 10.5024 31.0876 10.4986 31.0803 10.4911C31.0692 10.4798 31.0582 10.4647 31.0472 10.4534C31.0398 10.4459 31.0325 10.4421 31.0251 10.4346C31.0141 10.4233 31.003 10.4082 30.992 10.3969C30.9846 10.3894 30.9773 10.3856 30.9699 10.3781C30.9589 10.3668 30.9479 10.3517 30.9368 10.3404C30.9295 10.3329 30.9221 10.3291 30.9148 10.3216C30.9037 10.3103 30.8927 10.2952 30.8817 10.2839C30.8743 10.2764 30.867 10.2726 30.8596 10.2651C30.8486 10.2538 30.8375 10.2388 30.8265 10.2275C30.8191 10.2199 30.8118 10.2162 30.8044 10.2086C30.7934 10.1973 30.7824 10.1823 30.7713 10.171C30.764 10.1634 30.7566 10.1597 30.7493 10.1521C30.7382 10.1408 30.7272 10.1258 30.7162 10.1145C30.7088 10.1069 30.7015 10.1032 30.6941 10.0956C31.0766 10.4534 31.0766 10.9807 30.7309 11.3385L27.3289 14.9541C27.0236 15.2667 26.5455 15.2667 26.2402 14.9541C24.6257 13.4815 22.4888 12.6755 20.352 12.6755C15.4237 12.6755 11.8047 16.8711 11.8047 21.8726C11.8047 23.8047 12.3674 25.6049 13.3383 27.0851C13.6215 27.3374 13.9195 27.5709 14.2321 27.7818C13.4708 26.4147 13.0368 24.8253 13.0368 23.1305L13.0478 23.1418Z" fill="#CD0921"/>
|
||||
<path d="M44.0521 8.49528C44.0521 8.25801 43.9418 8.03581 43.7726 7.87762C43.7542 7.85879 43.7358 7.83996 43.7174 7.82113C43.699 7.8023 43.6806 7.78347 43.6622 7.76464C43.6438 7.74581 43.6255 7.72698 43.6071 7.70815C43.5887 7.68931 43.5703 7.67048 43.5519 7.65165C43.5335 7.63282 43.5151 7.61399 43.4967 7.59516C43.4784 7.57633 43.46 7.55749 43.4416 7.53866C43.4232 7.51983 43.4048 7.501 43.3864 7.48217C43.368 7.46334 43.3496 7.44451 43.3312 7.42568C43.3128 7.40685 43.2945 7.38802 43.2761 7.36918C43.2577 7.35035 43.2393 7.33152 43.2209 7.31269C43.2025 7.29386 43.1841 7.27503 43.1657 7.2562C43.1473 7.23737 43.129 7.21854 43.1106 7.19971C43.0922 7.18087 43.0738 7.16204 43.0554 7.14321C43.037 7.12438 43.0186 7.10555 43.0002 7.08672C42.9818 7.06789 42.9635 7.04906 42.9451 7.03022C42.9267 7.01139 42.9083 6.99256 42.8899 6.97373C42.8715 6.9549 42.8531 6.93607 42.8347 6.91724C42.8163 6.89841 42.7979 6.87958 42.7796 6.86075C42.7612 6.84191 42.7428 6.82308 42.7244 6.80425C42.706 6.78542 42.6876 6.76659 42.6692 6.74776C42.6508 6.72893 42.6324 6.71009 42.6141 6.69126C42.5957 6.67243 42.5773 6.6536 42.5589 6.63477C42.5552 6.63101 42.5515 6.62724 42.5479 6.62347C42.706 6.78165 42.809 6.99256 42.809 7.2223V29.3225H44.0411V8.48399L44.0521 8.49528Z" fill="#CD0921"/>
|
||||
<path d="M53.1987 37.6465H36.8028C36.5601 37.6465 36.3541 37.541 36.207 37.3829C36.2107 37.3866 36.2144 37.3904 36.2217 37.3979C36.2401 37.4168 36.2585 37.4356 36.2769 37.4544C36.2953 37.4732 36.3137 37.4921 36.3321 37.5109C36.3505 37.5297 36.3689 37.5486 36.3872 37.5674C36.4056 37.5862 36.424 37.6051 36.4424 37.6239C36.4608 37.6427 36.4792 37.6616 36.4976 37.6804C36.516 37.6992 36.5344 37.7181 36.5527 37.7369C36.5711 37.7557 36.5895 37.7746 36.6079 37.7934C36.6263 37.8122 36.6447 37.831 36.6631 37.8499C36.6815 37.8687 36.6999 37.8875 36.7183 37.9064C36.7366 37.9252 36.755 37.944 36.7734 37.9629C36.7918 37.9817 36.8102 38.0005 36.8286 38.0194C36.847 38.0382 36.8654 38.057 36.8838 38.0759C36.9021 38.0947 36.9205 38.1135 36.9389 38.1323C36.9573 38.1512 36.9757 38.17 36.9941 38.1888C37.0125 38.2077 37.0309 38.2265 37.0493 38.2453C37.0676 38.2642 37.086 38.283 37.1044 38.3018C37.1228 38.3207 37.1412 38.3395 37.1596 38.3583C37.178 38.3771 37.1964 38.396 37.2148 38.4148C37.2331 38.4336 37.2515 38.4525 37.2699 38.4713C37.2883 38.4901 37.3067 38.509 37.3251 38.5278C37.3435 38.5466 37.3619 38.5655 37.3803 38.5843C37.3987 38.6031 37.417 38.622 37.4354 38.6408C37.5825 38.8103 37.7995 38.9232 38.0496 38.9232H54.4455C54.9273 38.9232 55.273 38.5203 55.273 38.0759V33.2099C55.273 32.9688 55.17 32.7466 55.0045 32.5885C54.9861 32.5696 54.9677 32.5508 54.9493 32.532C54.9309 32.5131 54.9125 32.4943 54.8942 32.4755C54.8758 32.4566 54.8574 32.4378 54.839 32.419C54.8206 32.4002 54.8022 32.3813 54.7838 32.3625C54.7654 32.3437 54.747 32.3248 54.7287 32.306C54.7103 32.2872 54.6919 32.2683 54.6735 32.2495C54.6551 32.2307 54.6367 32.2118 54.6183 32.193C54.5999 32.1742 54.5815 32.1553 54.5632 32.1365C54.5448 32.1177 54.5264 32.0989 54.508 32.08C54.4896 32.0612 54.4712 32.0424 54.4528 32.0235C54.4344 32.0047 54.416 31.9859 54.3977 31.967C54.3793 31.9482 54.3609 31.9294 54.3425 31.9105C54.3241 31.8917 54.3057 31.8729 54.2873 31.854C54.2689 31.8352 54.2505 31.8164 54.2322 31.7976C54.2138 31.7787 54.1954 31.7599 54.177 31.7411C54.1586 31.7222 54.1402 31.7034 54.1218 31.6846C54.1034 31.6657 54.085 31.6469 54.0666 31.6281C54.0483 31.6092 54.0299 31.5904 54.0115 31.5716C53.9931 31.5528 53.9747 31.5339 53.9563 31.5151C53.9379 31.4963 53.9195 31.4774 53.9011 31.4586C53.8827 31.4398 53.8644 31.4209 53.846 31.4021C53.8276 31.3833 53.8092 31.3644 53.7908 31.3456C53.7908 31.3456 53.7835 31.3381 53.7798 31.3343C53.9342 31.4925 54.0299 31.7072 54.0299 31.9369V36.8029C54.0299 37.251 53.6805 37.6503 53.2024 37.6503L53.1987 37.6465Z" fill="#CD0921"/>
|
||||
<path d="M98.7785 15.5986C98.7785 14.3934 99.9554 13.32 101.526 13.32C104.185 13.32 107.37 15.7756 107.763 15.9978C108.157 16.3104 108.94 15.9074 109.246 15.4178L111.471 11.9793C111.629 11.6968 111.71 11.0189 111.342 10.6573C111.327 10.6385 111.305 10.6197 111.287 10.6008C111.272 10.582 111.25 10.5632 111.232 10.5443C111.217 10.5255 111.195 10.5067 111.177 10.4878C111.162 10.469 111.14 10.4502 111.121 10.4314C111.107 10.4125 111.085 10.3937 111.066 10.3749C111.051 10.356 111.029 10.3372 111.011 10.3184C110.996 10.2995 110.974 10.2807 110.956 10.2619C110.941 10.243 110.919 10.2242 110.901 10.2054C110.886 10.1865 110.864 10.1677 110.846 10.1489C110.831 10.1301 110.809 10.1112 110.79 10.0924C110.776 10.0736 110.754 10.0547 110.735 10.0359C110.72 10.0171 110.698 9.99824 110.68 9.97941C110.665 9.96058 110.643 9.94175 110.625 9.92291C110.61 9.90408 110.588 9.88525 110.57 9.86642C110.555 9.84759 110.533 9.82876 110.514 9.80993C110.5 9.7911 110.478 9.77227 110.459 9.75344C110.445 9.7346 110.423 9.71577 110.404 9.69694C110.389 9.67811 110.367 9.65928 110.349 9.64045C110.334 9.62162 110.312 9.60278 110.294 9.58395C110.279 9.56512 110.257 9.54629 110.239 9.52746C110.224 9.50863 110.202 9.4898 110.183 9.47097C110.169 9.45214 110.147 9.43331 110.128 9.41447L110.121 9.40694C110.467 9.77226 110.386 10.4314 110.231 10.7063L108.006 14.1448C107.701 14.6345 106.918 15.0374 106.524 14.7249C106.131 14.5026 102.949 12.0471 100.286 12.0471C98.716 12.0471 97.5391 13.1204 97.5391 14.3256C97.5391 14.6684 97.6016 14.996 97.723 15.3124C98.0319 15.5384 98.3923 15.7606 98.8042 15.9865C98.7858 15.8547 98.7748 15.7229 98.7748 15.5873L98.7785 15.5986Z" fill="#CD0921"/>
|
||||
<path d="M99.0288 24.6942C97.0354 23.8882 94.7735 22.6642 93.0928 20.8941C93.1001 20.9016 93.1075 20.9091 93.1148 20.9167C93.1332 20.9355 93.1516 20.9543 93.17 20.9732C93.1884 20.992 93.2068 21.0108 93.2252 21.0297C93.2436 21.0485 93.262 21.0673 93.2803 21.0862C93.2987 21.105 93.3171 21.1238 93.3355 21.1426C93.3539 21.1615 93.3723 21.1803 93.3907 21.1991C93.4091 21.218 93.4275 21.2368 93.4459 21.2556C93.4642 21.2745 93.4826 21.2933 93.501 21.3121C93.5194 21.331 93.5378 21.3498 93.5562 21.3686C93.5746 21.3875 93.593 21.4063 93.6114 21.4251C93.6297 21.4439 93.6481 21.4628 93.6665 21.4816C93.6849 21.5004 93.7033 21.5193 93.7217 21.5381C93.7401 21.5569 93.7585 21.5758 93.7769 21.5946C93.7952 21.6134 93.8136 21.6323 93.832 21.6511C93.8504 21.6699 93.8688 21.6887 93.8872 21.7076C93.9056 21.7264 93.924 21.7452 93.9424 21.7641C93.9607 21.7829 93.9791 21.8017 93.9975 21.8206C94.0159 21.8394 94.0343 21.8582 94.0527 21.8771C94.0711 21.8959 94.0895 21.9147 94.1079 21.9336C94.1263 21.9524 94.1446 21.9712 94.163 21.99C94.1814 22.0089 94.1998 22.0277 94.2182 22.0465C94.2366 22.0654 94.255 22.0842 94.2734 22.103C94.2918 22.1219 94.3101 22.1407 94.3285 22.1595C96.013 23.9372 98.2785 25.1612 100.276 25.9672C100.776 26.1705 101.236 26.3815 101.655 26.5999C101.559 26.3325 101.427 26.0689 101.25 25.8203C100.636 25.4286 99.9041 25.0558 99.0435 24.7055L99.0288 24.6942Z" fill="#CD0921"/>
|
||||
<path d="M108.272 22.2761C108.272 22.2761 108.308 22.3137 108.327 22.3326C108.345 22.3514 108.364 22.3702 108.382 22.389C108.4 22.4079 108.419 22.4267 108.437 22.4455C108.456 22.4644 108.474 22.4832 108.492 22.502C108.511 22.5208 108.529 22.5397 108.547 22.5585C108.566 22.5773 108.584 22.5962 108.603 22.615C108.617 22.63 108.632 22.6451 108.647 22.6602C108.518 22.5246 108.389 22.389 108.257 22.261C108.25 22.2535 108.239 22.2422 108.231 22.2347C108.231 22.2347 108.231 22.2347 108.228 22.2309C108.246 22.2497 108.261 22.2648 108.279 22.2836L108.272 22.2761Z" fill="#CD0921"/>
|
||||
<path d="M100.816 38.0907C95.1672 38.0907 92.03 35.6992 91.0186 34.6635C91.0259 34.671 91.0296 34.6748 91.0369 34.6823C91.0443 34.6898 91.0517 34.6936 91.0553 34.7011C91.0664 34.7124 91.0774 34.7237 91.0921 34.7388C91.0958 34.7426 91.1068 34.7501 91.1105 34.7576C91.1215 34.7689 91.1326 34.7802 91.1473 34.7953C91.1546 34.7991 91.162 34.8066 91.1657 34.8141C91.1767 34.8254 91.1877 34.8367 91.2024 34.8518C91.2098 34.8556 91.2172 34.8631 91.2208 34.8706C91.2319 34.8819 91.2429 34.8932 91.2576 34.9083C91.265 34.9158 91.2723 34.9196 91.276 34.9271C91.287 34.9384 91.2981 34.9497 91.3128 34.9648C91.3201 34.9685 91.3275 34.9761 91.3312 34.9836C91.3422 34.9949 91.3532 35.0062 91.3679 35.0213C91.3753 35.025 91.3827 35.0326 91.3863 35.0401C91.3974 35.0514 91.4084 35.0627 91.4231 35.0778C91.4305 35.0853 91.4378 35.0891 91.4415 35.0966C91.4525 35.1079 91.4636 35.1192 91.4783 35.1343C91.4856 35.138 91.493 35.1456 91.4967 35.1531C91.5077 35.1644 91.5187 35.1757 91.5334 35.1908C91.5371 35.1945 91.5482 35.2021 91.5518 35.2096C91.5629 35.2209 91.5739 35.2359 91.5886 35.2472C91.596 35.2548 91.6033 35.2585 91.607 35.2661C91.618 35.2774 91.6291 35.2887 91.6438 35.3037C91.6511 35.3113 91.6585 35.315 91.6622 35.3226C91.6732 35.3339 91.6842 35.3452 91.699 35.3602C91.7026 35.3678 91.7137 35.3715 91.7173 35.3791C91.7284 35.3904 91.7394 35.4017 91.7541 35.4167C91.7615 35.4205 91.7688 35.428 91.7725 35.4356C91.7835 35.4469 91.7946 35.4582 91.8093 35.4732C91.8166 35.477 91.824 35.4845 91.8277 35.492C91.8387 35.5033 91.8497 35.5146 91.8645 35.5297C91.8681 35.5372 91.8792 35.541 91.8829 35.5485C91.8939 35.5598 91.9049 35.5711 91.9196 35.5862C91.927 35.5937 91.9343 35.5975 91.938 35.605C91.9491 35.6163 91.9601 35.6276 91.9748 35.6427C91.9785 35.6465 91.9895 35.654 91.9932 35.6615C92.0042 35.6728 92.0152 35.6841 92.03 35.6992C92.0336 35.7067 92.0447 35.7105 92.0483 35.718C92.0594 35.7293 92.0704 35.7406 92.0851 35.7557C92.0925 35.7632 92.0998 35.767 92.1035 35.7745C92.1145 35.7858 92.1256 35.7971 92.1403 35.8122C92.1476 35.8197 92.155 35.8235 92.1587 35.831C92.1697 35.8423 92.1807 35.8536 92.1955 35.8687C92.2028 35.8762 92.2102 35.88 92.2139 35.8875C92.2249 35.8988 92.2359 35.9101 92.2506 35.9252C93.2547 36.9533 96.3919 39.3637 102.063 39.3637C108.474 39.3637 112.354 34.72 112.354 30.1214C112.354 27.2403 111.136 25.1161 109.496 23.5305L109.489 23.523C109.47 23.5042 109.452 23.4853 109.434 23.4665C109.415 23.4477 109.397 23.4288 109.378 23.41C109.36 23.3912 109.342 23.3723 109.323 23.3535C109.305 23.3347 109.286 23.3159 109.268 23.297C109.25 23.2782 109.231 23.2594 109.213 23.2405C109.194 23.2217 109.176 23.2029 109.158 23.184C109.139 23.1652 109.121 23.1464 109.103 23.1275C109.084 23.1087 109.066 23.0899 109.047 23.071C109.029 23.0522 109.011 23.0334 108.992 23.0146C108.974 22.9957 108.955 22.9769 108.937 22.9581C108.919 22.9392 108.9 22.9204 108.882 22.9016C108.863 22.8827 108.845 22.8639 108.827 22.8451C108.808 22.8262 108.79 22.8074 108.772 22.7886C108.753 22.7697 108.735 22.7509 108.716 22.7321C108.698 22.7133 108.68 22.6944 108.661 22.6756C108.661 22.6756 108.654 22.6681 108.65 22.6643C110.088 24.2047 111.114 26.2121 111.114 28.8522C111.114 33.4508 107.234 38.0945 100.824 38.0945L100.816 38.0907Z" fill="#CD0921"/>
|
||||
<path d="M10.1129 20.2922C10.1129 15.0496 13.9342 10.9406 18.8111 10.9406C21.0031 10.9406 23.1877 11.7843 24.7986 13.2568C25.0524 13.513 25.4349 13.513 25.6813 13.2644L29.0796 9.64881C29.223 9.50193 29.3003 9.31738 29.2929 9.13284C29.2892 8.94453 29.1973 8.76375 29.0428 8.62063C25.9939 5.77337 22.7721 4.50792 18.5904 4.50792C9.99158 4.50792 3 11.6713 3 20.4729C3 24.7438 4.61825 28.7436 7.55685 31.7302C10.4881 34.7092 14.4087 36.3513 18.5941 36.3513C22.7795 36.3513 26.2624 34.8674 29.087 32.0654C29.3444 31.8017 29.3665 31.3196 29.1274 31.0786L25.7217 27.3689C25.6224 27.2484 25.4606 27.1806 25.2767 27.1768C25.0928 27.1693 24.9126 27.2333 24.7949 27.335C23.2465 28.6984 21.0251 29.5156 18.8552 29.5156C13.9526 29.5156 10.1129 25.4669 10.1129 20.2959V20.2922Z" fill="#CD0921"/>
|
||||
<path d="M35.248 35.8994H51.6438C52.019 35.8994 52.3206 35.5868 52.3206 35.2065V30.3405C52.3206 29.9563 52.0153 29.6475 51.6438 29.6475H41.1142V5.64915C41.1142 5.28382 40.7905 4.95616 40.4375 4.95616H35.248C34.8729 4.95616 34.5713 5.26876 34.5713 5.64915V35.2102C34.5713 35.5944 34.8766 35.9032 35.248 35.9032V35.8994Z" fill="#CD0921"/>
|
||||
<path d="M70.0029 4.50396C65.8322 4.50396 61.9263 6.1611 59.0098 9.17031C56.1006 12.172 54.4971 16.1868 54.4971 20.4727C54.4971 29.3761 61.3084 36.3511 70.0029 36.3511C74.1846 36.3511 78.0941 34.7091 81.018 31.73C83.9419 28.7471 85.5528 24.7512 85.5528 20.4727C85.5528 11.6673 78.5796 4.50773 70.0029 4.50773V4.50396ZM70.0029 29.5079C65.1334 29.5079 61.176 25.4517 61.176 20.469C61.176 15.4863 65.1371 11.3397 70.0029 11.3397C74.8687 11.3397 78.8738 15.4335 78.8738 20.469C78.8738 25.5044 74.8944 29.5079 70.0029 29.5079Z" fill="#CD0921"/>
|
||||
<path d="M95.8401 12.7443C95.8401 11.4035 97.1384 10.3113 98.7382 10.3113C101.085 10.3113 103.847 12.1944 104.752 12.8158C104.895 12.9137 104.994 12.9815 105.046 13.0117C105.178 13.1171 105.333 13.1134 105.447 13.0908C105.77 13.0343 106.149 12.7706 106.329 12.4844L108.554 9.04207C108.687 8.80479 108.782 8.09298 108.341 7.82934C106.679 6.57896 103.28 4.5 99.084 4.5C92.2652 4.5 89.1611 9.027 89.1611 13.2339C89.1611 18.4727 93.7106 21.4141 97.5246 22.9583C100.654 24.2312 102.111 25.7076 102.111 27.6133C102.111 29.2554 100.783 30.4455 98.9516 30.4455C97.7599 30.4455 95.7334 30.0312 92.8353 28.069C92.7617 28.0201 92.7103 27.9862 92.6919 27.9749C92.5705 27.8882 92.3572 27.8204 92.1328 27.8204C92.0593 27.8204 91.9857 27.828 91.9122 27.843C91.754 27.8769 91.5407 27.9598 91.4046 28.1858L89.3597 31.888C89.0618 32.4228 89.1391 32.5282 89.5547 32.9538C90.1063 33.5187 93.1774 36.3472 99.2605 36.3472C105.344 36.3472 109.4 31.726 109.4 27.2555C109.4 21.4367 104.428 18.7401 100.688 17.2185C97.245 15.7911 95.8401 14.4956 95.8401 12.7443Z" fill="#CD0921"/>
|
||||
<path d="M121.526 11.2041H133.755C134.13 11.2041 134.431 10.8915 134.431 10.5111V5.64519C134.431 5.26103 134.126 4.9522 133.755 4.9522H115.7C115.325 4.9522 115.023 5.2648 115.023 5.64519V35.2063C115.023 35.5904 115.329 35.8992 115.7 35.8992H133.755C134.13 35.8992 134.431 35.5866 134.431 35.2063V30.3403C134.431 29.9561 134.126 29.6473 133.755 29.6473H121.526V23.3125H131.618C131.993 23.3125 132.295 22.9999 132.295 22.6195V17.7536C132.295 17.3883 131.971 17.0606 131.618 17.0606H121.526V11.2041Z" fill="#CD0921"/>
|
||||
<path d="M156.646 11.3482H168.875C169.25 11.3482 169.552 11.0356 169.552 10.6552V5.78929C169.552 5.40514 169.246 5.09631 168.875 5.09631H150.82C150.445 5.09631 150.144 5.4089 150.144 5.78929V35.3504C150.144 35.7345 150.449 36.0433 150.82 36.0433H155.966C156.322 36.0433 156.642 35.7119 156.642 35.3504V24.3455H166.734C167.091 24.3455 167.411 24.014 167.411 23.6525V18.7865C167.411 18.4212 167.087 18.0935 166.734 18.0935H156.642V11.3558L156.646 11.3482Z" fill="#CD0921"/>
|
||||
<path d="M196.694 36.0433C196.97 36.0433 197.191 35.9304 197.308 35.7232C197.433 35.5085 197.43 35.2223 197.301 34.9775L191.247 23.483L191.402 23.419C195.326 21.8033 197.761 18.4174 197.761 14.5872C197.761 9.35214 193.564 5.09631 188.404 5.09631H175.366C174.991 5.09631 174.689 5.4089 174.689 5.78929V35.3504C174.689 35.7345 174.995 36.0433 175.366 36.0433H180.556C180.912 36.0433 181.232 35.7119 181.232 35.3504V23.8107H184.484L190.324 35.727C190.383 35.8513 190.589 36.0433 190.887 36.0433H196.694ZM187.845 18.4438H181.24V11.1712H187.845C189.724 11.1712 191.31 12.7945 191.31 14.719C191.31 16.6435 189.691 18.4438 187.845 18.4438Z" fill="#CD0921"/>
|
||||
<path d="M204.587 5.09235H209.82C210.196 5.09235 210.497 5.40494 210.497 5.78533V35.3464C210.497 35.7306 210.192 36.0394 209.82 36.0394H204.587C204.212 36.0394 203.91 35.7268 203.91 35.3464V5.78533C203.91 5.40118 204.215 5.09235 204.587 5.09235Z" fill="#CD0921"/>
|
||||
<path d="M224.8 11.3482H237.029C237.404 11.3482 237.706 11.0356 237.706 10.6552V5.78929C237.706 5.40514 237.401 5.09631 237.029 5.09631H218.975C218.599 5.09631 218.298 5.4089 218.298 5.78929V35.3504C218.298 35.7345 218.603 36.0433 218.975 36.0433H237.029C237.404 36.0433 237.706 35.7307 237.706 35.3504V30.4844C237.706 30.1003 237.401 29.7914 237.029 29.7914H224.8V23.4566H234.892C235.267 23.4566 235.569 23.144 235.569 22.7636V17.8977C235.569 17.5324 235.245 17.2047 234.892 17.2047H224.8V11.3482Z" fill="#CD0921"/>
|
||||
<path d="M268.383 36.4913H269.082C269.45 36.4913 269.759 36.1937 269.759 35.8397V5.78527C269.759 5.41995 269.435 5.09229 269.082 5.09229H263.848C263.473 5.09229 263.172 5.40488 263.172 5.78527V21.7917H262.918L262.874 21.7503L245.518 4.6441H244.488C244.12 4.6441 243.812 4.94164 243.812 5.29566L243.856 35.3501C243.856 35.7154 244.179 36.0431 244.532 36.0431H249.722C250.097 36.0431 250.399 35.7305 250.399 35.3501V18.5415H250.656L250.7 18.5867L267.927 36.3143C267.979 36.367 268.288 36.4913 268.387 36.4913H268.383Z" fill="#CD0921"/>
|
||||
<path d="M288.835 5.09216H278.195C277.849 5.09216 277.559 5.40852 277.559 5.78514V35.3462C277.559 35.7228 277.849 36.0392 278.195 36.0392H288.835C297.191 36.0392 303.991 29.0755 303.991 20.5186C303.991 11.9617 297.191 5.08839 288.835 5.08839V5.09216ZM288.397 29.7421H284.061V11.3479H288.397C293.329 11.3479 297.051 15.2911 297.051 20.5224C297.051 25.7536 293.333 29.7421 288.397 29.7421Z" fill="#CD0921"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 50 KiB |
@@ -0,0 +1,36 @@
|
||||
<svg width="294" height="44" viewBox="0 0 294 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M28.6533 11.6529C28.6533 11.6529 28.6163 11.6159 28.5978 11.5975C28.5793 11.579 28.5608 11.5605 28.5423 11.542C28.5238 11.5235 28.5052 11.505 28.4867 11.4865C28.4682 11.468 28.4497 11.4495 28.4312 11.431C28.4127 11.4125 28.3942 11.394 28.3757 11.3755C28.3572 11.3571 28.3387 11.3386 28.3202 11.3201C28.3017 11.3016 28.2831 11.2831 28.2646 11.2646C28.2461 11.2461 28.2276 11.2276 28.2091 11.2091C28.1906 11.1906 28.1721 11.1721 28.1536 11.1536C28.1351 11.1351 28.1166 11.1167 28.0981 11.0982C28.0795 11.0797 28.061 11.0612 28.0425 11.0427C28.024 11.0242 28.0055 11.0057 27.987 10.9872C27.9685 10.9687 27.95 10.9502 27.9315 10.9317C27.913 10.9132 27.8945 10.8947 27.876 10.8763C27.8574 10.8578 27.8389 10.8393 27.8204 10.8208C27.8019 10.8023 27.7834 10.7838 27.7649 10.7653C27.7464 10.7468 27.7279 10.7283 27.7094 10.7098C27.6909 10.6913 27.6724 10.6728 27.6538 10.6544C27.6353 10.6359 27.6168 10.6174 27.5983 10.5989C27.5909 10.5915 27.5835 10.5841 27.5798 10.5804C27.5909 10.5952 27.5983 10.61 27.6094 10.6248C30.3191 13.4615 31.9923 17.2857 31.9923 21.4797C31.9923 30.2598 24.8331 37.3645 16.0934 37.3645H5.04C4.81789 37.3645 4.6217 37.261 4.47363 37.1056C4.48844 37.1241 4.50695 37.1426 4.52546 37.1574C4.54397 37.1759 4.56247 37.1944 4.58098 37.2129C4.59949 37.2314 4.618 37.2499 4.63651 37.2684C4.65502 37.2869 4.67353 37.3053 4.69203 37.3238C4.71054 37.3423 4.72905 37.3608 4.74756 37.3793C4.76607 37.3978 4.78458 37.4163 4.80309 37.4348C4.8216 37.4533 4.8401 37.4718 4.85861 37.4903C4.87712 37.5088 4.89563 37.5273 4.91414 37.5457C4.93265 37.5642 4.95116 37.5827 4.96966 37.6012C4.98817 37.6197 5.00668 37.6382 5.02519 37.6567C5.0437 37.6752 5.06221 37.6937 5.08072 37.7122C5.09922 37.7307 5.11773 37.7492 5.13624 37.7677C5.15475 37.7861 5.17326 37.8046 5.19177 37.8231C5.21028 37.8416 5.22878 37.8601 5.24729 37.8786C5.2658 37.8971 5.28431 37.9156 5.30282 37.9341C5.32133 37.9526 5.33984 37.9711 5.35835 37.9896C5.37685 38.0081 5.39536 38.0265 5.41387 38.045C5.43238 38.0635 5.45089 38.082 5.4694 38.1005C5.48791 38.119 5.50641 38.1375 5.52492 38.156C5.54343 38.1745 5.56194 38.193 5.58045 38.2115C5.59895 38.23 5.61747 38.2485 5.63597 38.2669C5.65448 38.2854 5.67299 38.3039 5.6915 38.3224C5.71001 38.3409 5.72852 38.3594 5.74703 38.3779C5.76554 38.3964 5.78404 38.4149 5.80255 38.4334C5.82106 38.4519 5.83957 38.4704 5.85807 38.4889C6.00614 38.6627 6.21344 38.7773 6.45405 38.7773H17.5074C26.2509 38.7773 33.4063 31.6726 33.4063 22.8925C33.4063 18.5357 31.6073 14.5784 28.7088 11.7121C28.6903 11.6936 28.6718 11.6751 28.6533 11.6566V11.6529Z" fill="#CD0921"/>
|
||||
<path d="M15.6562 12.3511H11.3066V29.1383H12.6985V13.7454H17.048C18.6731 13.7454 20.1501 14.1633 21.4198 14.8845C21.1754 14.5184 20.9052 14.1744 20.6128 13.8527C19.2246 12.9059 17.5403 12.3548 15.6562 12.3548V12.3511Z" fill="#CD0921"/>
|
||||
<path d="M154.943 8.04625C154.924 8.02775 154.906 8.00926 154.887 7.99077C154.869 7.97228 154.85 7.95379 154.832 7.9353C154.813 7.9168 154.795 7.89831 154.776 7.87981C154.758 7.86132 154.739 7.84283 154.721 7.82434C154.702 7.80585 154.684 7.78735 154.665 7.76886C154.647 7.75037 154.628 7.73188 154.61 7.71339C154.591 7.69489 154.572 7.6764 154.554 7.65791C154.535 7.63942 154.517 7.62092 154.498 7.60243C154.48 7.58394 154.461 7.56545 154.443 7.54696C154.424 7.52847 154.406 7.50997 154.387 7.49148C154.369 7.47299 154.35 7.4545 154.332 7.436C154.313 7.41751 154.295 7.39902 154.276 7.38053C154.258 7.36204 154.239 7.34354 154.221 7.32505C154.202 7.30656 154.184 7.28807 154.165 7.26957C154.147 7.25108 154.128 7.23258 154.11 7.21409C154.091 7.1956 154.073 7.17711 154.054 7.15862C154.036 7.14012 154.017 7.12164 153.999 7.10315C153.98 7.08465 153.962 7.06616 153.943 7.04766C153.925 7.02917 153.906 7.01068 153.888 6.99219C153.869 6.9737 153.851 6.9552 153.832 6.93671C153.814 6.91822 153.795 6.89973 153.777 6.88123C153.758 6.86274 153.74 6.84425 153.721 6.82576C153.703 6.80727 153.684 6.78877 153.666 6.77028C153.647 6.75179 153.632 6.7333 153.614 6.7185C153.766 6.87754 153.862 7.08835 153.862 7.31395V12.2477C153.862 12.6989 153.499 13.1057 153.003 13.1057H140.454V18.0801H141.846V14.4963H154.395C154.895 14.4963 155.254 14.0895 155.254 13.6383V8.70456C155.254 8.46416 155.146 8.24226 154.976 8.07953C154.957 8.06104 154.939 8.04255 154.92 8.02406L154.943 8.04625Z" fill="#CD0921"/>
|
||||
<path d="M152.707 21.2206C152.689 21.2021 152.674 21.1836 152.652 21.1651C152.633 21.1466 152.615 21.1281 152.596 21.1096C152.578 21.0911 152.559 21.0726 152.541 21.0541C152.522 21.0357 152.507 21.0172 152.485 20.9987C152.467 20.9802 152.448 20.9617 152.43 20.9432C152.411 20.9247 152.396 20.9062 152.374 20.8877C152.356 20.8692 152.341 20.8507 152.319 20.8323C152.3 20.8138 152.282 20.7953 152.263 20.7768C152.245 20.7583 152.23 20.7398 152.208 20.7213C152.189 20.7028 152.174 20.6843 152.152 20.6658C152.133 20.6473 152.115 20.6288 152.096 20.6103C152.078 20.5918 152.063 20.5734 152.041 20.5549C152.022 20.5364 152.004 20.5179 151.985 20.4994C151.967 20.4809 151.948 20.4624 151.93 20.4439C151.911 20.4254 151.897 20.4069 151.874 20.3884C151.856 20.3699 151.837 20.3515 151.819 20.333C151.8 20.3145 151.786 20.296 151.763 20.2775C151.745 20.259 151.73 20.2405 151.708 20.222C151.689 20.2035 151.671 20.185 151.652 20.1665C151.634 20.148 151.619 20.1295 151.597 20.1111C151.578 20.0926 151.563 20.0741 151.541 20.0556C151.523 20.0371 151.504 20.0186 151.486 20.0001C151.467 19.9816 151.452 19.9631 151.43 19.9446C151.419 19.9335 151.408 19.9224 151.397 19.9113C151.545 20.0667 151.641 20.2664 151.641 20.4846V25.4183C151.641 25.8695 151.234 26.2801 150.779 26.2801H140.451V37.2792C140.451 37.7304 140.044 38.1373 139.592 38.1373H134.247C133.999 38.1373 133.791 38.0337 133.64 37.8784C133.654 37.8969 133.673 37.9117 133.691 37.9302C133.71 37.9487 133.728 37.9671 133.747 37.9856C133.766 38.0041 133.784 38.0226 133.803 38.0411C133.821 38.0596 133.84 38.0781 133.858 38.0966C133.877 38.1151 133.895 38.1336 133.914 38.1521C133.932 38.1706 133.951 38.1891 133.969 38.2076C133.988 38.226 134.006 38.2445 134.025 38.263C134.043 38.2815 134.062 38.3 134.08 38.3185C134.099 38.337 134.117 38.3555 134.136 38.374C134.154 38.3925 134.173 38.411 134.191 38.4295C134.21 38.4479 134.228 38.4664 134.247 38.4849C134.265 38.5034 134.284 38.5219 134.302 38.5404C134.321 38.5589 134.339 38.5774 134.358 38.5959C134.376 38.6144 134.395 38.6329 134.413 38.6514C134.432 38.6699 134.45 38.6883 134.469 38.7068C134.487 38.7253 134.506 38.7438 134.524 38.7623C134.543 38.7808 134.561 38.7993 134.58 38.8178C134.598 38.8363 134.617 38.8548 134.635 38.8733C134.654 38.8918 134.672 38.9102 134.691 38.9287C134.709 38.9472 134.728 38.9657 134.746 38.9842C134.765 39.0027 134.783 39.0212 134.802 39.0397C134.82 39.0582 134.839 39.0767 134.858 39.0952C134.876 39.1137 134.895 39.1322 134.913 39.1507C134.932 39.1691 134.95 39.1876 134.969 39.2061C134.987 39.2246 135.006 39.2431 135.024 39.2616C135.18 39.4354 135.398 39.5538 135.661 39.5538H141.006C141.458 39.5538 141.865 39.147 141.865 38.6957V27.6966H152.193C152.644 27.6966 153.055 27.2897 153.055 26.8385V21.9048C153.055 21.6644 152.937 21.4425 152.763 21.2835C152.744 21.265 152.729 21.2465 152.707 21.228V21.2206Z" fill="#CD0921"/>
|
||||
<path d="M173.215 14.3378C173.366 14.3378 173.511 14.3563 173.655 14.3748C173.577 13.9753 173.422 13.6015 173.207 13.2649C172.778 13.0652 172.311 12.9432 171.819 12.9432H165.115V18.4613H166.507V14.3375H173.211L173.215 14.3378Z" fill="#CD0921"/>
|
||||
<path d="M183.679 17.6401C183.679 14.9365 182.558 12.4807 180.755 10.7092C180.736 10.6907 180.718 10.6722 180.699 10.6537C180.681 10.6352 180.662 10.6167 180.644 10.5982C180.625 10.5797 180.607 10.5613 180.588 10.5428C180.57 10.5243 180.551 10.5058 180.533 10.4873C180.514 10.4688 180.496 10.4503 180.477 10.4318C180.459 10.4133 180.44 10.3948 180.422 10.3763C180.403 10.3578 180.385 10.3393 180.366 10.3209C180.348 10.3024 180.329 10.2839 180.311 10.2654C180.292 10.2469 180.274 10.2284 180.255 10.2099C180.237 10.1914 180.218 10.1729 180.2 10.1544C180.181 10.1359 180.163 10.1174 180.144 10.0989C180.126 10.0804 180.107 10.062 180.089 10.0435C180.07 10.025 180.051 10.0065 180.033 9.98799C180.014 9.9695 179.996 9.95101 179.977 9.93251C179.959 9.91402 179.94 9.89553 179.922 9.87704C179.903 9.85855 179.885 9.84005 179.866 9.82156C179.848 9.80307 179.829 9.78458 179.811 9.76608C179.792 9.74759 179.774 9.7291 179.755 9.71061C179.737 9.69211 179.718 9.67362 179.7 9.65513C179.681 9.63664 179.663 9.61815 179.644 9.59966C179.626 9.58116 179.607 9.56267 179.589 9.54418C179.57 9.52569 179.552 9.50719 179.533 9.4887C179.515 9.47021 179.496 9.45172 179.478 9.43322C179.459 9.41473 179.441 9.39624 179.422 9.37775C179.404 9.35925 179.389 9.34076 179.37 9.32597C181.158 11.0975 182.265 13.5385 182.265 16.2273C182.265 20.3917 179.5 23.7425 175.561 25.3254L181.765 36.8202C182.084 37.4083 181.765 38.1332 180.995 38.1332H174.969C174.71 38.1332 174.503 38.0185 174.373 37.8854C174.384 37.8965 174.399 37.9112 174.41 37.9223C174.425 37.9408 174.443 37.9593 174.466 37.9778C174.48 37.9963 174.499 38.0148 174.521 38.0333C174.536 38.0518 174.554 38.0703 174.577 38.0888C174.591 38.1073 174.61 38.1258 174.632 38.1443C174.647 38.1627 174.665 38.1812 174.688 38.1997C174.703 38.2182 174.721 38.2367 174.743 38.2552C174.758 38.2737 174.777 38.2922 174.799 38.3107C174.814 38.3292 174.832 38.3477 174.854 38.3662C174.869 38.3847 174.888 38.4031 174.91 38.4216C174.925 38.4401 174.943 38.4586 174.965 38.4771C174.98 38.4956 174.999 38.5141 175.021 38.5326C175.036 38.5511 175.054 38.5696 175.076 38.5881C175.091 38.6066 175.11 38.6251 175.132 38.6435C175.147 38.662 175.165 38.6805 175.187 38.699C175.202 38.7175 175.221 38.736 175.243 38.7545C175.258 38.773 175.276 38.7915 175.298 38.81C175.313 38.8285 175.332 38.847 175.354 38.8655C175.369 38.884 175.387 38.9024 175.41 38.9209C175.424 38.9394 175.443 38.9579 175.465 38.9764C175.48 38.9949 175.498 39.0134 175.521 39.0319C175.535 39.0504 175.554 39.0689 175.576 39.0874C175.591 39.1059 175.609 39.1243 175.632 39.1428C175.646 39.1613 175.665 39.1798 175.687 39.1983C175.702 39.2168 175.72 39.2353 175.743 39.2538C175.872 39.4017 176.098 39.546 176.383 39.546H182.409C183.179 39.546 183.498 38.8211 183.179 38.233L176.975 26.7383C180.918 25.1553 183.679 21.8045 183.679 17.6401Z" fill="#CD0921"/>
|
||||
<path d="M165.115 25.7541V37.2969C165.115 37.7481 164.708 38.155 164.257 38.155H158.867C158.619 38.155 158.412 38.0514 158.26 37.8924C158.275 37.9109 158.293 37.9294 158.312 37.9442C158.33 37.9627 158.349 37.9811 158.367 37.9996C158.386 38.0181 158.404 38.0366 158.423 38.0551C158.441 38.0736 158.46 38.0921 158.478 38.1106C158.497 38.1291 158.515 38.1476 158.534 38.1661C158.552 38.1846 158.571 38.203 158.589 38.2215C158.608 38.24 158.626 38.2585 158.645 38.277C158.663 38.2955 158.682 38.314 158.7 38.3325C158.719 38.351 158.737 38.3695 158.756 38.388C158.774 38.4065 158.793 38.425 158.811 38.4435C158.83 38.4619 158.848 38.4804 158.867 38.4989C158.885 38.5174 158.904 38.5359 158.922 38.5544C158.941 38.5729 158.959 38.5914 158.978 38.6099C158.996 38.6284 159.015 38.6469 159.033 38.6654C159.052 38.6839 159.07 38.7023 159.089 38.7208C159.107 38.7393 159.126 38.7578 159.144 38.7763C159.163 38.7948 159.181 38.8133 159.2 38.8318C159.219 38.8503 159.237 38.8688 159.256 38.8873C159.274 38.9058 159.293 38.9242 159.311 38.9427C159.33 38.9612 159.348 38.9797 159.367 38.9982C159.385 39.0167 159.404 39.0352 159.422 39.0537C159.441 39.0722 159.459 39.0907 159.478 39.1092C159.496 39.1277 159.515 39.1462 159.533 39.1646C159.552 39.1831 159.57 39.2016 159.589 39.2201C159.607 39.2386 159.626 39.2571 159.644 39.2756C159.8 39.4494 160.018 39.5678 160.281 39.5678H165.671C166.122 39.5678 166.529 39.161 166.529 38.7097V27.1669H168.099L167.399 25.7763H165.138L165.115 25.7541Z" fill="#CD0921"/>
|
||||
<path d="M195.655 8.04914C195.637 8.03064 195.618 8.01215 195.6 7.99366C195.581 7.97516 195.566 7.95667 195.544 7.93818C195.525 7.91969 195.511 7.90119 195.488 7.8827C195.47 7.86421 195.455 7.84572 195.433 7.82723C195.414 7.80874 195.4 7.79025 195.377 7.77176C195.359 7.75326 195.34 7.73476 195.322 7.71627C195.303 7.69778 195.289 7.67929 195.266 7.6608C195.248 7.64231 195.233 7.62381 195.211 7.60532C195.192 7.58682 195.174 7.56834 195.155 7.54984C195.137 7.53135 195.122 7.51286 195.1 7.49437C195.081 7.47588 195.066 7.45738 195.044 7.43889C195.026 7.4204 195.007 7.40191 194.989 7.38342C194.97 7.36492 194.955 7.34643 194.933 7.32793C194.915 7.30944 194.896 7.29095 194.878 7.27246C194.859 7.25397 194.844 7.23548 194.822 7.21698C194.804 7.19849 194.789 7.18 194.767 7.16151C194.748 7.14301 194.73 7.12452 194.711 7.10603C194.693 7.08754 194.674 7.06904 194.656 7.05055C194.637 7.03206 194.622 7.01357 194.6 6.99508C194.582 6.97658 194.563 6.95809 194.545 6.9396C194.526 6.92111 194.511 6.90262 194.489 6.88412C194.47 6.86563 194.452 6.84714 194.433 6.82865C194.415 6.81016 194.396 6.79166 194.378 6.77317C194.367 6.76208 194.356 6.75098 194.345 6.73988C194.489 6.89522 194.589 7.09494 194.589 7.31314V37.2742C194.589 37.7255 194.182 38.1323 193.726 38.1323H188.289C188.074 38.1323 187.87 38.0361 187.715 37.8882C187.726 37.8993 187.737 37.9104 187.748 37.9215C187.767 37.94 187.781 37.9585 187.804 37.977C187.822 37.9954 187.841 38.0139 187.859 38.0324C187.878 38.0509 187.893 38.0694 187.915 38.0879C187.933 38.1064 187.948 38.1249 187.97 38.1434C187.989 38.1619 188.007 38.1804 188.026 38.1989C188.044 38.2174 188.059 38.2358 188.081 38.2543C188.1 38.2728 188.115 38.2913 188.137 38.3098C188.155 38.3283 188.174 38.3468 188.192 38.3653C188.211 38.3838 188.226 38.4023 188.248 38.4208C188.266 38.4393 188.285 38.4577 188.303 38.4762C188.322 38.4947 188.34 38.5132 188.359 38.5317C188.377 38.5502 188.392 38.5687 188.414 38.5872C188.433 38.6057 188.451 38.6242 188.47 38.6427C188.488 38.6612 188.503 38.6797 188.526 38.6982C188.544 38.7166 188.559 38.7351 188.581 38.7536C188.6 38.7721 188.618 38.7906 188.637 38.8091C188.655 38.8276 188.674 38.8461 188.692 38.8646C188.711 38.8831 188.725 38.9016 188.748 38.9201C188.766 38.9386 188.785 38.957 188.803 38.9755C188.822 38.994 188.836 39.0125 188.859 39.031C188.877 39.0495 188.896 39.068 188.914 39.0865C188.933 39.105 188.951 39.1235 188.97 39.142C188.988 39.1605 189.007 39.1789 189.025 39.1974C189.044 39.2159 189.059 39.2344 189.081 39.2529C189.24 39.4267 189.462 39.5451 189.703 39.5451H195.141C195.592 39.5451 196.003 39.1383 196.003 38.687V8.72595C196.003 8.48555 195.885 8.26364 195.711 8.10461C195.692 8.08612 195.674 8.06763 195.655 8.04914Z" fill="#CD0921"/>
|
||||
<path d="M223.029 33.0771C223.011 33.0587 222.992 33.0402 222.974 33.0217C222.955 33.0032 222.937 32.9847 222.918 32.9662C222.9 32.9477 222.881 32.9292 222.863 32.9107C222.844 32.8922 222.826 32.8737 222.807 32.8552C222.789 32.8368 222.77 32.8183 222.752 32.7998C222.733 32.7813 222.715 32.7628 222.696 32.7443C222.678 32.7258 222.659 32.7073 222.641 32.6888C222.622 32.6703 222.604 32.6518 222.585 32.6333C222.567 32.6149 222.548 32.5964 222.529 32.5779C222.511 32.5594 222.492 32.5409 222.474 32.5224C222.455 32.5039 222.437 32.4854 222.418 32.4669C222.4 32.4484 222.381 32.4299 222.363 32.4114C222.344 32.3929 222.326 32.3744 222.307 32.356C222.289 32.3375 222.27 32.319 222.252 32.3005C222.233 32.282 222.215 32.2635 222.196 32.245C222.178 32.2265 222.159 32.208 222.141 32.1895C222.122 32.171 222.104 32.1525 222.085 32.134C222.067 32.1156 222.048 32.0971 222.03 32.0786C222.011 32.0601 221.993 32.0416 221.974 32.0231C221.956 32.0046 221.937 31.9861 221.919 31.9676C221.9 31.9491 221.882 31.9306 221.863 31.9121C221.845 31.8936 221.826 31.8752 221.808 31.8567C221.789 31.8382 221.771 31.8197 221.752 31.8012C221.734 31.7827 221.719 31.7642 221.7 31.7494C221.852 31.9084 221.948 32.1193 221.948 32.3449V37.2786C221.948 37.7298 221.586 38.1366 221.09 38.1366H202.337C202.089 38.1366 201.881 38.0331 201.729 37.874C201.748 37.8925 201.763 37.911 201.781 37.9258C201.8 37.9443 201.818 37.9628 201.837 37.9813C201.855 37.9998 201.874 38.0183 201.892 38.0368C201.911 38.0553 201.929 38.0737 201.948 38.0922C201.966 38.1107 201.985 38.1292 202.003 38.1477C202.022 38.1662 202.04 38.1847 202.059 38.2032C202.077 38.2217 202.096 38.2402 202.114 38.2587C202.133 38.2772 202.151 38.2957 202.17 38.3141C202.189 38.3326 202.207 38.3511 202.226 38.3696C202.244 38.3881 202.263 38.4066 202.281 38.4251C202.3 38.4436 202.318 38.4621 202.337 38.4806C202.355 38.4991 202.374 38.5176 202.392 38.5361C202.411 38.5545 202.429 38.573 202.448 38.5915C202.466 38.61 202.485 38.6285 202.503 38.647C202.522 38.6655 202.54 38.684 202.559 38.7025C202.577 38.721 202.596 38.7395 202.614 38.758C202.633 38.7765 202.651 38.795 202.67 38.8134C202.688 38.8319 202.707 38.8504 202.725 38.8689C202.744 38.8874 202.762 38.9059 202.781 38.9244C202.799 38.9429 202.818 38.9614 202.836 38.9799C202.855 38.9984 202.873 39.0169 202.892 39.0354C202.91 39.0538 202.929 39.0723 202.947 39.0908C202.966 39.1093 202.984 39.1278 203.003 39.1463C203.021 39.1648 203.04 39.1833 203.058 39.2018C203.077 39.2203 203.095 39.2388 203.114 39.2573C203.269 39.4311 203.488 39.5494 203.751 39.5494H222.504C223 39.5494 223.362 39.1426 223.362 38.6914V33.7577C223.362 33.5173 223.255 33.2954 223.085 33.1326C223.066 33.1141 223.048 33.0956 223.029 33.0771Z" fill="#CD0921"/>
|
||||
<path d="M223.029 8.04625C223.011 8.02775 222.992 8.00926 222.974 7.99077C222.955 7.97228 222.937 7.95379 222.918 7.9353C222.9 7.9168 222.881 7.89831 222.863 7.87981C222.844 7.86132 222.825 7.84283 222.807 7.82434C222.788 7.80585 222.77 7.78735 222.751 7.76886C222.733 7.75037 222.714 7.73188 222.696 7.71339C222.677 7.69489 222.659 7.6764 222.64 7.65791C222.622 7.63942 222.603 7.62092 222.585 7.60243C222.566 7.58394 222.548 7.56545 222.529 7.54696C222.511 7.52847 222.492 7.50997 222.474 7.49147C222.455 7.47298 222.437 7.4545 222.418 7.436C222.4 7.41751 222.381 7.39902 222.363 7.38053C222.344 7.36204 222.326 7.34354 222.307 7.32505C222.289 7.30655 222.27 7.28807 222.252 7.26957C222.233 7.25108 222.215 7.23258 222.196 7.21409C222.178 7.1956 222.159 7.17711 222.141 7.15862C222.122 7.14012 222.104 7.12164 222.085 7.10315C222.067 7.08465 222.048 7.06616 222.03 7.04766C222.011 7.02917 221.993 7.01068 221.974 6.99219C221.956 6.9737 221.937 6.9552 221.919 6.93671C221.9 6.91822 221.882 6.89973 221.863 6.88123C221.845 6.86274 221.826 6.84425 221.808 6.82576C221.789 6.80727 221.77 6.78877 221.752 6.77028C221.733 6.75179 221.719 6.7333 221.7 6.7185C221.852 6.87754 221.948 7.08835 221.948 7.31395V12.2477C221.948 12.6989 221.585 13.1057 221.089 13.1057H208.541V17.174H209.932V14.4963H222.481C222.977 14.4963 223.34 14.0895 223.34 13.6383V8.70456C223.34 8.46416 223.233 8.24226 223.062 8.07953C223.044 8.06104 223.025 8.04255 223.007 8.02406L223.029 8.04625Z" fill="#CD0921"/>
|
||||
<path d="M209.955 26.7855H220.282C220.734 26.7855 221.145 26.4231 221.145 25.9275V20.9938C221.145 20.7534 221.026 20.5315 220.852 20.3724C220.834 20.3539 220.819 20.3354 220.797 20.317C220.778 20.2985 220.76 20.28 220.741 20.2615C220.723 20.243 220.708 20.2245 220.686 20.206C220.667 20.1875 220.653 20.169 220.63 20.1505C220.612 20.132 220.593 20.1135 220.575 20.095C220.556 20.0766 220.542 20.0581 220.519 20.0396C220.501 20.0211 220.482 20.0026 220.464 19.9841C220.445 19.9656 220.427 19.9471 220.408 19.9286C220.39 19.9101 220.375 19.8916 220.353 19.8731C220.334 19.8547 220.319 19.8362 220.297 19.8177C220.279 19.7992 220.264 19.7807 220.242 19.7622C220.223 19.7437 220.208 19.7252 220.186 19.7067C220.168 19.6882 220.149 19.6697 220.131 19.6512C220.112 19.6327 220.097 19.6142 220.075 19.5958C220.057 19.5773 220.042 19.5588 220.02 19.5403C220.001 19.5218 219.983 19.5033 219.964 19.4848C219.946 19.4663 219.931 19.4478 219.909 19.4293C219.89 19.4108 219.875 19.3923 219.853 19.3738C219.834 19.3554 219.816 19.3369 219.797 19.3184C219.779 19.2999 219.764 19.2814 219.742 19.2629C219.723 19.2444 219.709 19.2259 219.686 19.2074C219.668 19.1889 219.653 19.1704 219.631 19.1519C219.612 19.1335 219.598 19.115 219.575 19.0965C219.557 19.078 219.538 19.0595 219.52 19.041C219.509 19.0299 219.498 19.0188 219.487 19.0114C219.631 19.1667 219.731 19.3665 219.731 19.581V24.5147C219.731 25.014 219.324 25.3727 218.868 25.3727H208.541V29.9403H209.932V26.767L209.955 26.7855Z" fill="#CD0921"/>
|
||||
<path d="M234.246 37.2977C234.246 37.7489 233.883 38.1557 233.387 38.1557H227.997C227.783 38.1557 227.583 38.0596 227.427 37.9153C227.438 37.9264 227.446 37.9375 227.457 37.9449C227.475 37.9634 227.49 37.9819 227.512 38.0004C227.531 38.0189 227.549 38.0374 227.568 38.0558C227.586 38.0743 227.601 38.0928 227.623 38.1113C227.642 38.1298 227.66 38.1483 227.679 38.1668C227.697 38.1853 227.716 38.2038 227.734 38.2223C227.753 38.2408 227.768 38.2593 227.79 38.2777C227.809 38.2962 227.827 38.3147 227.846 38.3332C227.864 38.3517 227.879 38.3702 227.901 38.3887C227.92 38.4072 227.934 38.4257 227.957 38.4442C227.975 38.4627 227.994 38.4812 228.012 38.4997C228.031 38.5181 228.045 38.5366 228.068 38.5551C228.086 38.5736 228.101 38.5921 228.123 38.6106C228.142 38.6291 228.16 38.6476 228.179 38.6661C228.197 38.6846 228.212 38.7031 228.234 38.7216C228.253 38.7401 228.271 38.7585 228.29 38.777C228.308 38.7955 228.327 38.814 228.345 38.8325C228.364 38.851 228.379 38.8695 228.401 38.888C228.419 38.9065 228.438 38.925 228.456 38.9435C228.475 38.962 228.49 38.9805 228.512 38.999C228.53 39.0174 228.545 39.0359 228.567 39.0544C228.586 39.0729 228.604 39.0914 228.623 39.1099C228.641 39.1284 228.656 39.1469 228.678 39.1654C228.697 39.1839 228.712 39.2024 228.734 39.2209C228.752 39.2394 228.771 39.2578 228.789 39.2763C228.949 39.4502 229.171 39.5685 229.411 39.5685H234.801C235.301 39.5685 235.66 39.1617 235.66 38.7105V22.012L234.268 20.614V37.3199L234.246 37.2977Z" fill="#CD0921"/>
|
||||
<path d="M255.405 8.04914C255.386 8.03064 255.368 8.01215 255.349 7.99366C255.33 7.97516 255.316 7.95668 255.293 7.93818C255.275 7.91969 255.256 7.90119 255.238 7.8827C255.219 7.86421 255.201 7.84572 255.182 7.82723C255.164 7.80874 255.149 7.79025 255.127 7.77176C255.108 7.75326 255.09 7.73476 255.071 7.71627C255.053 7.69778 255.038 7.67929 255.016 7.6608C254.997 7.64231 254.983 7.62381 254.96 7.60532C254.942 7.58682 254.923 7.56834 254.905 7.54984C254.886 7.53135 254.872 7.51286 254.849 7.49437C254.831 7.47588 254.816 7.45738 254.794 7.43889C254.775 7.4204 254.757 7.40191 254.738 7.38342C254.72 7.36492 254.705 7.34643 254.683 7.32793C254.664 7.30944 254.646 7.29095 254.627 7.27246C254.609 7.25397 254.59 7.23548 254.572 7.21698C254.553 7.19849 254.538 7.18 254.516 7.16151C254.498 7.14301 254.479 7.12452 254.461 7.10603C254.442 7.08754 254.427 7.06904 254.405 7.05055C254.387 7.03206 254.372 7.01357 254.35 6.99508C254.331 6.97658 254.313 6.95809 254.294 6.9396C254.276 6.92111 254.257 6.90262 254.239 6.88412C254.22 6.86563 254.205 6.84714 254.183 6.82865C254.165 6.81016 254.146 6.79166 254.128 6.77317C254.117 6.76208 254.105 6.75098 254.094 6.73988C254.242 6.89522 254.339 7.09494 254.339 7.31314V37.7735C254.339 38.2248 253.931 38.5872 253.48 38.5872H252.754C252.618 38.5872 252.259 38.454 252.166 38.3616L252.636 38.8313L252.688 38.8868L253.076 39.2751L253.128 39.3306L253.572 39.7744C253.665 39.8669 254.024 40 254.161 40H254.886C255.338 40 255.745 39.6376 255.745 39.1864V8.72595C255.745 8.48555 255.627 8.26364 255.453 8.10461C255.434 8.08612 255.419 8.06763 255.397 8.04914H255.405Z" fill="#CD0921"/>
|
||||
<path d="M285.659 12.4287C285.659 12.4287 285.622 12.3917 285.604 12.3732C285.585 12.3547 285.567 12.3362 285.548 12.3178C285.53 12.2993 285.511 12.2808 285.493 12.2623C285.474 12.2438 285.456 12.2253 285.437 12.2068C285.419 12.1883 285.4 12.1698 285.382 12.1513C285.363 12.1328 285.345 12.1143 285.326 12.0958C285.308 12.0774 285.289 12.0589 285.271 12.0404C285.252 12.0219 285.233 12.0034 285.215 11.9849C285.196 11.9664 285.178 11.9479 285.159 11.9294C285.141 11.9109 285.122 11.8924 285.104 11.8739C285.085 11.8554 285.067 11.837 285.048 11.8185C285.03 11.8 285.011 11.7815 284.993 11.763C284.974 11.7445 284.956 11.726 284.937 11.7075C284.919 11.689 284.9 11.6705 284.882 11.652C284.863 11.6335 284.845 11.615 284.826 11.5966C284.808 11.5781 284.789 11.5596 284.771 11.5411C284.752 11.5226 284.734 11.5041 284.715 11.4856C284.697 11.4671 284.678 11.4486 284.66 11.4301C284.641 11.4116 284.623 11.3931 284.604 11.3746C284.597 11.3673 284.589 11.3599 284.586 11.3562C284.597 11.371 284.604 11.3857 284.615 11.4005C287.325 14.2372 288.998 18.0614 288.998 22.2555C288.998 31.0356 281.839 38.1403 273.099 38.1403H262.046C261.824 38.1403 261.628 38.0367 261.479 37.8814C261.494 37.8999 261.513 37.9184 261.531 37.9332C261.55 37.9517 261.568 37.9702 261.587 37.9887C261.605 38.0071 261.624 38.0257 261.642 38.0441C261.661 38.0626 261.679 38.0811 261.698 38.0996C261.716 38.1181 261.735 38.1366 261.753 38.1551C261.772 38.1736 261.79 38.1921 261.809 38.2106C261.827 38.2291 261.846 38.2476 261.864 38.266C261.883 38.2845 261.901 38.303 261.92 38.3215C261.938 38.34 261.957 38.3585 261.976 38.377C261.994 38.3955 262.013 38.414 262.031 38.4325C262.05 38.451 262.068 38.4695 262.087 38.488C262.105 38.5064 262.124 38.5249 262.142 38.5434C262.161 38.5619 262.179 38.5804 262.198 38.5989C262.216 38.6174 262.235 38.6359 262.253 38.6544C262.272 38.6729 262.29 38.6914 262.309 38.7099C262.327 38.7284 262.346 38.7468 262.364 38.7653C262.383 38.7838 262.401 38.8023 262.42 38.8208C262.438 38.8393 262.457 38.8578 262.475 38.8763C262.494 38.8948 262.512 38.9133 262.531 38.9318C262.549 38.9503 262.568 38.9688 262.586 38.9872C262.605 39.0057 262.623 39.0242 262.642 39.0427C262.66 39.0612 262.679 39.0797 262.697 39.0982C262.716 39.1167 262.734 39.1352 262.753 39.1537C262.771 39.1722 262.79 39.1907 262.808 39.2092C262.827 39.2276 262.845 39.2461 262.864 39.2646C263.012 39.4385 263.223 39.5531 263.46 39.5531H274.513C283.257 39.5531 290.412 32.4484 290.412 23.6683C290.412 19.3115 288.613 15.3542 285.715 12.4879C285.696 12.4694 285.678 12.4509 285.659 12.4324V12.4287Z" fill="#CD0921"/>
|
||||
<path d="M269.708 14.5186L274.058 14.5185C275.683 14.5185 277.16 14.9364 278.429 15.6576C278.185 15.2914 277.915 14.9435 277.619 14.6254C276.231 13.6823 274.547 13.1275 272.662 13.1275L268.312 13.1278V29.9151H269.704V14.5185L269.708 14.5186Z" fill="#CD0921"/>
|
||||
<path d="M45.0921 13.7455H57.6409C58.1407 13.7455 58.4997 13.3386 58.4997 12.8837V7.95001C58.4997 7.70961 58.3924 7.4877 58.2221 7.32497C58.2036 7.30648 58.1851 7.28798 58.1666 7.26949C58.1481 7.251 58.1296 7.23251 58.1111 7.21402C58.0925 7.19552 58.074 7.17703 58.0555 7.15854C58.037 7.14005 58.0185 7.12156 58 7.10306C57.9815 7.08457 57.963 7.06608 57.9445 7.04759C57.926 7.02909 57.9075 7.0106 57.8889 6.99211C57.8704 6.97362 57.8519 6.95512 57.8334 6.93663C57.8149 6.91814 57.7964 6.89965 57.7779 6.88115C57.7594 6.86266 57.7409 6.84417 57.7224 6.82568C57.7039 6.80719 57.6853 6.78869 57.6668 6.7702C57.6483 6.75171 57.6298 6.73322 57.6113 6.71473C57.5928 6.69623 57.5743 6.67774 57.5558 6.65925C57.5373 6.64076 57.5188 6.62226 57.5003 6.60377C57.4818 6.58528 57.4633 6.56679 57.4447 6.5483C57.4262 6.5298 57.4077 6.51131 57.3892 6.49282C57.3707 6.47433 57.3522 6.45583 57.3337 6.43734C57.3152 6.41885 57.2967 6.40036 57.2782 6.38186C57.2597 6.36337 57.2411 6.34488 57.2226 6.32639C57.2041 6.3079 57.1856 6.28941 57.1671 6.27091C57.1486 6.25242 57.1301 6.23393 57.1116 6.21544C57.0931 6.19694 57.0746 6.17845 57.0561 6.15996C57.0376 6.14147 57.019 6.12297 57.0005 6.10448C56.982 6.08599 56.9635 6.0675 56.945 6.049C56.9265 6.03051 56.908 6.01202 56.8895 5.99353C56.8747 5.97504 56.8562 5.95655 56.8377 5.94175C56.9894 6.10078 57.0857 6.31159 57.0857 6.5372V11.4709C57.0857 11.9221 56.7229 12.3327 56.2232 12.3327H43.6743V16.401H45.0662V13.7233L45.0921 13.7455Z" fill="#CD0921"/>
|
||||
<path d="M45.0921 26.0086H55.4199C55.8715 26.0086 56.2787 25.6461 56.2787 25.1506V20.2168C56.2787 19.9764 56.1602 19.7545 55.9863 19.5955C55.9678 19.577 55.9492 19.5585 55.9307 19.54C55.9122 19.5215 55.8974 19.503 55.8752 19.4845C55.8567 19.466 55.8382 19.4475 55.8197 19.4291C55.8012 19.4106 55.7827 19.3921 55.7642 19.3736C55.7457 19.3551 55.7308 19.3366 55.7086 19.3181C55.6901 19.2996 55.6716 19.2811 55.6531 19.2626C55.6346 19.2441 55.6198 19.2256 55.5976 19.2072C55.5791 19.1887 55.5643 19.1702 55.5421 19.1517C55.5235 19.1332 55.505 19.1147 55.4865 19.0962C55.468 19.0777 55.4532 19.0592 55.431 19.0407C55.4125 19.0222 55.3977 19.0037 55.3755 18.9852C55.357 18.9668 55.3385 18.9483 55.3199 18.9298C55.3014 18.9113 55.2866 18.8928 55.2644 18.8743C55.2459 18.8558 55.2274 18.8373 55.2089 18.8188C55.1904 18.8003 55.1719 18.7818 55.1534 18.7633C55.1349 18.7448 55.1201 18.7264 55.0979 18.7079C55.0793 18.6894 55.0608 18.6709 55.0423 18.6524C55.0238 18.6339 55.009 18.6154 54.9868 18.5969C54.9683 18.5784 54.9535 18.5599 54.9313 18.5414C54.9128 18.5229 54.8943 18.5044 54.8757 18.486C54.8572 18.4675 54.8387 18.449 54.8202 18.4305C54.8017 18.412 54.7869 18.3935 54.7647 18.375C54.7462 18.3565 54.7277 18.338 54.7092 18.3195C54.6907 18.301 54.6759 18.2825 54.6536 18.264C54.6425 18.253 54.6314 18.2419 54.6203 18.2308C54.7647 18.3861 54.8646 18.5858 54.8646 18.8003V23.734C54.8646 24.2333 54.4574 24.5921 54.0021 24.5921H43.6743V29.1597H45.0662V25.9864L45.0921 26.0086Z" fill="#CD0921"/>
|
||||
<path d="M56.2458 37.3793H37.4928C37.2448 37.3793 37.0375 37.2758 36.8857 37.1167C36.9043 37.1352 36.9191 37.1537 36.9376 37.1685C36.9561 37.187 36.9746 37.2055 36.9931 37.224C37.0116 37.2425 37.0301 37.261 37.0486 37.2795C37.0671 37.2979 37.0856 37.3164 37.1041 37.3349C37.1226 37.3534 37.1412 37.3719 37.1597 37.3904C37.1782 37.4089 37.1967 37.4274 37.2152 37.4459C37.2337 37.4644 37.2522 37.4829 37.2707 37.5014C37.2892 37.5199 37.3077 37.5383 37.3262 37.5568C37.3448 37.5753 37.3633 37.5938 37.3818 37.6123C37.4003 37.6308 37.4188 37.6493 37.4373 37.6678C37.4558 37.6863 37.4743 37.7048 37.4928 37.7233C37.5113 37.7418 37.5298 37.7602 37.5484 37.7787C37.5669 37.7972 37.5854 37.8157 37.6039 37.8342C37.6224 37.8527 37.6409 37.8712 37.6594 37.8897C37.6779 37.9082 37.6964 37.9267 37.7149 37.9452C37.7334 37.9637 37.7519 37.9822 37.7705 38.0007C37.789 38.0191 37.8075 38.0376 37.826 38.0561C37.8445 38.0746 37.863 38.0931 37.8815 38.1116C37.9 38.1301 37.9185 38.1486 37.937 38.1671C37.9555 38.1856 37.974 38.2041 37.9926 38.2225C38.0111 38.241 38.0296 38.2595 38.0481 38.278C38.0666 38.2965 38.0851 38.315 38.1036 38.3335C38.1221 38.352 38.1406 38.3705 38.1591 38.389C38.1776 38.4075 38.1962 38.426 38.2147 38.4445C38.2332 38.463 38.2517 38.4814 38.2702 38.4999C38.4257 38.6738 38.6441 38.7921 38.9069 38.7921H57.6598C58.1596 38.7921 58.5186 38.3853 58.5186 37.9341V33.0003C58.5186 32.76 58.4113 32.538 58.241 32.3753C58.2225 32.3568 58.204 32.3383 58.1855 32.3198C58.167 32.3013 58.1485 32.2828 58.1299 32.2644C58.1114 32.2459 58.0929 32.2274 58.0744 32.2089C58.0559 32.1904 58.0374 32.1719 58.0189 32.1534C58.0004 32.1349 57.9819 32.1164 57.9634 32.0979C57.9449 32.0794 57.9264 32.0609 57.9079 32.0425C57.8893 32.024 57.8708 32.0055 57.8523 31.987C57.8338 31.9685 57.8153 31.95 57.7968 31.9315C57.7783 31.913 57.7598 31.8945 57.7413 31.876C57.7228 31.8575 57.7043 31.839 57.6857 31.8205C57.6672 31.8021 57.6487 31.7836 57.6302 31.7651C57.6117 31.7466 57.5932 31.7281 57.5747 31.7096C57.5562 31.6911 57.5377 31.6726 57.5192 31.6541C57.5007 31.6356 57.4821 31.6171 57.4636 31.5986C57.4451 31.5801 57.4266 31.5617 57.4081 31.5432C57.3896 31.5247 57.3711 31.5062 57.3526 31.4877C57.3341 31.4692 57.3156 31.4507 57.2971 31.4322C57.2785 31.4137 57.26 31.3952 57.2415 31.3767C57.223 31.3582 57.2045 31.3398 57.186 31.3213C57.1675 31.3028 57.149 31.2843 57.1305 31.2658C57.112 31.2473 57.0935 31.2288 57.075 31.2103C57.0565 31.1918 57.0379 31.1733 57.0194 31.1548C57.0009 31.1363 56.9824 31.1178 56.9639 31.0993C56.9454 31.0809 56.9269 31.0624 56.9084 31.0439C56.8936 31.0254 56.8751 31.0069 56.8566 30.9921C57.0083 31.1511 57.1046 31.3619 57.1046 31.5875V36.5213C57.1046 36.9725 56.7418 37.3793 56.2421 37.3793H56.2458Z" fill="#CD0921"/>
|
||||
<path d="M91.1745 36.2022C91.4447 36.7903 91.0857 37.3783 90.4046 37.3783H85.3776C84.8705 37.3783 84.541 37.2711 84.2634 36.9826C84.2819 37.0011 84.3004 37.0196 84.3189 37.0381C84.3374 37.0566 84.3559 37.0751 84.3745 37.0936C84.393 37.1121 84.4115 37.1306 84.43 37.149C84.4485 37.1675 84.467 37.186 84.4855 37.2045C84.504 37.223 84.5225 37.2415 84.541 37.26C84.5595 37.2785 84.578 37.297 84.5965 37.3155C84.6151 37.334 84.6336 37.3525 84.6521 37.371C84.6706 37.3894 84.6891 37.4079 84.7076 37.4264C84.7261 37.4449 84.7446 37.4634 84.7631 37.4819C84.7816 37.5004 84.8001 37.5189 84.8186 37.5374C84.8372 37.5559 84.8557 37.5744 84.8742 37.5929C84.8927 37.6114 84.9112 37.6299 84.9297 37.6483C84.9482 37.6668 84.9667 37.6853 84.9852 37.7038C85.0037 37.7223 85.0222 37.7408 85.0408 37.7593C85.0593 37.7778 85.0778 37.7963 85.0963 37.8148C85.1148 37.8333 85.1333 37.8518 85.1518 37.8702C85.1703 37.8887 85.1888 37.9072 85.2073 37.9257C85.2258 37.9442 85.2444 37.9627 85.2629 37.9812C85.2814 37.9997 85.2999 38.0182 85.3184 38.0367C85.3369 38.0552 85.3554 38.0737 85.3739 38.0922C85.3924 38.1106 85.4109 38.1291 85.4294 38.1476C85.4479 38.1661 85.4665 38.1846 85.485 38.2031C85.5035 38.2216 85.522 38.2401 85.5405 38.2586C85.559 38.2771 85.5775 38.2956 85.596 38.3141C85.6145 38.3325 85.633 38.351 85.6515 38.3695C85.9329 38.6765 86.2697 38.7875 86.7917 38.7875H91.8186C92.4997 38.7875 92.8588 38.1994 92.5886 37.6114L78.411 7.15096C78.3702 7.06589 78.3073 6.99192 78.237 6.92165C78.2185 6.90316 78.2 6.88467 78.1815 6.86618C78.1629 6.84769 78.1444 6.82919 78.1259 6.8107C78.1111 6.79221 78.0889 6.77372 78.0704 6.75522C78.0519 6.73673 78.0334 6.71824 78.0149 6.69975C78.0001 6.68125 77.9779 6.66276 77.9594 6.64427C77.9408 6.62578 77.9223 6.60729 77.9038 6.58879C77.8853 6.5703 77.8668 6.55181 77.8483 6.53332C77.8298 6.51483 77.8113 6.49633 77.7928 6.47784C77.778 6.45935 77.7558 6.44086 77.7372 6.42236C77.7187 6.40387 77.7002 6.38538 77.6817 6.36689C77.6632 6.34839 77.6447 6.3299 77.6262 6.31141C77.6077 6.29292 77.5892 6.27443 77.5707 6.25593C77.5522 6.23744 77.5337 6.21895 77.5152 6.20046C77.4966 6.18196 77.4781 6.16347 77.4596 6.14498C77.4448 6.12649 77.4226 6.10799 77.4041 6.0895C77.3856 6.07101 77.3671 6.05252 77.3486 6.03403C77.3301 6.01554 77.3116 5.99704 77.293 5.97855C77.2745 5.96006 77.256 5.94157 77.2375 5.92307C77.219 5.90458 77.2005 5.88609 77.182 5.8676C77.1672 5.8491 77.145 5.83061 77.1265 5.81212C77.108 5.79363 77.0894 5.77514 77.0709 5.75664C77.0524 5.73815 77.0339 5.71966 77.0154 5.70117C77.0006 5.68268 76.9784 5.66418 76.9599 5.64569C76.9414 5.6272 76.9229 5.60871 76.9044 5.59021C76.8896 5.57172 76.871 5.55323 76.8525 5.53843C76.9118 5.60131 76.9636 5.66788 76.9969 5.73815L91.1745 36.1985V36.2022Z" fill="#CD0921"/>
|
||||
<path d="M75.5191 20.0037L73.2577 24.9744L75.2832 24.9744L76.5379 22.2153L75.5191 20.0037Z" fill="#CD0921"/>
|
||||
<path d="M69.8381 32.6744L68.2056 36.2951C67.9798 36.8388 67.4801 37.3825 66.5732 37.3825H61.5906C61.3278 37.3825 61.1168 37.29 60.9688 37.1495C60.9873 37.168 61.0021 37.1865 61.0243 37.205C61.0428 37.2235 61.0576 37.2419 61.0798 37.2604C61.0983 37.2789 61.1131 37.2974 61.1353 37.3159C61.1538 37.3344 61.1686 37.3529 61.1909 37.3714C61.2094 37.3899 61.2242 37.4084 61.2464 37.4269C61.2649 37.4454 61.2797 37.4639 61.3019 37.4823C61.3204 37.5008 61.3352 37.5193 61.3574 37.5378C61.3759 37.5563 61.3908 37.5748 61.413 37.5933C61.4315 37.6118 61.4463 37.6303 61.4685 37.6488C61.487 37.6673 61.5018 37.6858 61.524 37.7043C61.5425 37.7227 61.5573 37.7412 61.5795 37.7597C61.598 37.7782 61.6128 37.7967 61.6351 37.8152C61.6536 37.8337 61.6684 37.8522 61.6906 37.8707C61.7091 37.8892 61.7239 37.9077 61.7461 37.9262C61.7646 37.9447 61.7794 37.9631 61.8016 37.9816C61.8201 38.0001 61.835 38.0186 61.8572 38.0371C61.8757 38.0556 61.8905 38.0741 61.9127 38.0926C61.9312 38.1111 61.946 38.1296 61.9682 38.1481C61.9867 38.1666 62.0015 38.1851 62.0237 38.2035C62.0423 38.222 62.0571 38.2405 62.0793 38.259C62.0978 38.2775 62.1126 38.296 62.1348 38.3145C62.1533 38.333 62.1681 38.3515 62.1903 38.37C62.2088 38.3885 62.2236 38.407 62.2458 38.4254C62.2644 38.4439 62.2792 38.4624 62.3014 38.4809C62.3199 38.4994 62.3347 38.5179 62.3569 38.5364C62.5087 38.6917 62.7271 38.7953 63.0047 38.7953H67.9872C68.8941 38.7953 69.3902 38.2516 69.6197 37.708L71.2521 34.0872H81.8909L81.2542 32.6966H69.8566L69.8381 32.6744Z" fill="#CD0921"/>
|
||||
<path d="M102.487 13.561H109.191C109.342 13.561 109.487 13.5795 109.631 13.598C109.553 13.1986 109.395 12.8248 109.184 12.4882C108.754 12.2922 108.292 12.1664 107.796 12.1664H101.092V17.6845H102.484V13.5608L102.487 13.561Z" fill="#CD0921"/>
|
||||
<path d="M101.095 24.9783V36.5212C101.095 36.9724 100.688 37.3792 100.237 37.3792H94.8468C94.5988 37.3792 94.3915 37.2756 94.2397 37.1166C94.2583 37.1351 94.2768 37.1536 94.2953 37.1721C94.3138 37.1906 94.3323 37.2091 94.3508 37.2276C94.3693 37.246 94.3878 37.2645 94.4063 37.283C94.4248 37.3015 94.4433 37.32 94.4619 37.3385C94.4804 37.357 94.4989 37.3755 94.5174 37.394C94.5359 37.4125 94.5544 37.431 94.5729 37.4495C94.5914 37.468 94.6099 37.4864 94.6284 37.5049C94.6469 37.5234 94.6654 37.5419 94.6839 37.5604C94.7025 37.5789 94.721 37.5974 94.7395 37.6159C94.758 37.6344 94.7765 37.6529 94.795 37.6714C94.8135 37.6899 94.832 37.7084 94.8505 37.7268C94.869 37.7453 94.8875 37.7638 94.9061 37.7823C94.9246 37.8008 94.9431 37.8193 94.9616 37.8378C94.9801 37.8563 94.9986 37.8748 95.0171 37.8933C95.0356 37.9118 95.0541 37.9303 95.0726 37.9488C95.0911 37.9672 95.1096 37.9857 95.1282 38.0042C95.1467 38.0227 95.1652 38.0412 95.1837 38.0597C95.2022 38.0782 95.2207 38.0967 95.2392 38.1152C95.2577 38.1337 95.2762 38.1522 95.2947 38.1707C95.3132 38.1891 95.3318 38.2076 95.3503 38.2261C95.3688 38.2446 95.3873 38.2631 95.4058 38.2816C95.4243 38.3001 95.4428 38.3186 95.4613 38.3371C95.4798 38.3556 95.4983 38.3741 95.5168 38.3926C95.5353 38.4111 95.5539 38.4296 95.5724 38.448C95.5909 38.4665 95.6094 38.485 95.6279 38.5035C95.7834 38.6773 96.0018 38.7957 96.2646 38.7957H101.654C102.106 38.7957 102.513 38.3889 102.513 37.9377V26.3948H104.083L103.383 25.0042H101.121L101.095 24.9783Z" fill="#CD0921"/>
|
||||
<path d="M111.556 24.5712L117.764 36.066C118.082 36.6541 117.764 37.3789 116.994 37.3789H110.968C110.712 37.3789 110.505 37.2643 110.372 37.1349C110.383 37.146 110.394 37.157 110.409 37.1718C110.423 37.1903 110.446 37.2088 110.464 37.2273C110.479 37.2458 110.497 37.2643 110.52 37.2828C110.534 37.3013 110.553 37.3198 110.575 37.3383C110.59 37.3568 110.608 37.3753 110.631 37.3937C110.646 37.4122 110.664 37.4307 110.686 37.4492C110.705 37.4677 110.723 37.4862 110.742 37.5047C110.757 37.5232 110.775 37.5417 110.797 37.5602C110.812 37.5787 110.831 37.5972 110.853 37.6157C110.868 37.6341 110.886 37.6526 110.908 37.6711C110.923 37.6896 110.942 37.7081 110.964 37.7266C110.979 37.7451 110.997 37.7636 111.019 37.7821C111.034 37.8006 111.053 37.8191 111.075 37.8376C111.09 37.8561 111.108 37.8745 111.13 37.893C111.145 37.9115 111.164 37.93 111.186 37.9485C111.201 37.967 111.219 37.9855 111.241 38.004C111.256 38.0225 111.275 38.041 111.297 38.0595C111.312 38.078 111.33 38.0964 111.353 38.1149C111.367 38.1334 111.386 38.1519 111.408 38.1704C111.423 38.1889 111.441 38.2074 111.464 38.2259C111.478 38.2444 111.497 38.2629 111.519 38.2814C111.534 38.2999 111.552 38.3184 111.575 38.3369C111.589 38.3553 111.608 38.3738 111.63 38.3923C111.645 38.4108 111.663 38.4293 111.686 38.4478C111.701 38.4663 111.719 38.4848 111.741 38.5033C111.871 38.6512 112.097 38.7955 112.382 38.7955H118.408C119.178 38.7955 119.496 38.0706 119.178 37.4825L112.97 25.9877C116.913 24.4048 119.674 21.054 119.674 16.8896C119.674 14.1823 118.552 11.7302 116.75 9.95868C116.731 9.94018 116.713 9.92169 116.694 9.9032C116.676 9.88471 116.657 9.86622 116.639 9.84772C116.62 9.82923 116.602 9.81074 116.583 9.79225C116.565 9.77376 116.546 9.75526 116.528 9.73677C116.509 9.71828 116.491 9.69979 116.472 9.68129C116.454 9.6628 116.435 9.64431 116.417 9.62582C116.398 9.60733 116.38 9.58883 116.361 9.57034C116.342 9.55185 116.324 9.53336 116.305 9.51486C116.287 9.49637 116.268 9.47788 116.25 9.45939C116.231 9.44089 116.213 9.4224 116.194 9.40391C116.176 9.38542 116.157 9.36693 116.139 9.34844C116.12 9.32994 116.102 9.31145 116.083 9.29296C116.065 9.27447 116.046 9.25597 116.028 9.23748C116.009 9.21899 115.991 9.2005 115.972 9.182C115.954 9.16351 115.935 9.14502 115.917 9.12653C115.898 9.10803 115.88 9.08954 115.861 9.07105C115.843 9.05256 115.824 9.03407 115.806 9.01557C115.787 8.99708 115.769 8.97859 115.75 8.9601C115.732 8.94161 115.713 8.92311 115.695 8.90462C115.676 8.88613 115.658 8.86764 115.639 8.84914C115.621 8.83065 115.602 8.81216 115.584 8.79367C115.565 8.77518 115.547 8.75668 115.528 8.73819C115.51 8.7197 115.491 8.70121 115.473 8.68271C115.454 8.66422 115.436 8.64573 115.417 8.62724C115.399 8.60874 115.384 8.59025 115.365 8.57546C117.153 10.347 118.26 12.788 118.26 15.4768C118.26 19.6412 115.498 22.9883 111.556 24.5749V24.5712Z" fill="#CD0921"/>
|
||||
<path d="M14.716 4.45482H3.66261C3.30355 4.45482 3 4.78029 3 5.16493V35.126C3 35.5107 3.30355 35.8361 3.66261 35.8361H14.716C23.4002 35.8361 30.4668 28.7758 30.4668 20.0992C30.4668 11.4227 23.4002 4.45482 14.716 4.45482ZM14.2644 29.4415H9.76306V10.8088H14.2644C19.3875 10.8088 23.2485 14.8031 23.2485 20.1029C23.2485 25.4028 19.3838 29.4415 14.2644 29.4415Z" fill="#CD0921"/>
|
||||
<path d="M42.1527 23.0726H52.6323C53.0247 23.0726 53.343 22.7545 53.343 22.3625V17.4288C53.343 17.0589 53.0062 16.7187 52.6323 16.7187H42.1527V10.8049H54.8533C55.2457 10.8049 55.5641 10.4868 55.5641 10.0948V5.16104C55.5641 4.76901 55.2457 4.45094 54.8533 4.45094H36.1004C35.708 4.45094 35.3896 4.76901 35.3896 5.16104V35.1221C35.3896 35.5142 35.708 35.8323 36.1004 35.8323H54.8533C55.2457 35.8323 55.5641 35.5142 55.5641 35.1221V30.1884C55.5641 29.7964 55.2457 29.4783 54.8533 29.4783H42.1527V23.0652V23.0726Z" fill="#CD0921"/>
|
||||
<path d="M60.1988 35.8362H65.1813C66.1178 35.8362 66.5176 35.2149 66.6731 34.8413L68.3463 31.1281H80.8618L82.535 34.7933C82.9237 35.6106 83.2346 35.8362 83.9824 35.8362H89.0093C89.2796 35.8362 89.5017 35.729 89.6238 35.5366C89.7423 35.348 89.7497 35.1076 89.6423 34.8709L75.4647 4.41052C75.3499 4.17752 75.076 4 74.8317 4H74.3801C74.1358 4 73.8619 4.17752 73.7434 4.41422L59.5658 34.8709C59.4584 35.1039 59.4621 35.348 59.5843 35.5366C59.7065 35.7253 59.9286 35.8362 60.1988 35.8362ZM74.4615 17.5067H74.7021L78.2854 25.2772H70.9301L74.4652 17.5067H74.4615Z" fill="#CD0921"/>
|
||||
<path d="M109.576 35.8359H115.602C115.891 35.8359 116.12 35.7213 116.246 35.5068C116.376 35.2886 116.376 34.9964 116.239 34.7449L109.953 23.0985L110.109 23.0356C114.184 21.3972 116.72 17.9651 116.72 14.078C116.72 8.77072 112.359 4.45094 106.996 4.45094H93.451C93.0586 4.45094 92.7402 4.76901 92.7402 5.16104V35.1221C92.7402 35.5142 93.0586 35.8323 93.451 35.8323H98.8407C99.2109 35.8323 99.5514 35.4957 99.5514 35.1221V23.4314H102.92L102.961 23.5127L108.987 35.5068C109.05 35.6325 109.265 35.8323 109.576 35.8323V35.8359ZM106.403 17.9873H99.5477V10.6236H106.403C108.35 10.6236 109.998 12.2695 109.998 14.2148C109.998 16.1602 108.317 17.9873 106.403 17.9873Z" fill="#CD0921"/>
|
||||
<path d="M138.93 11.5816H151.631C152.023 11.5816 152.341 11.2635 152.341 10.8715V5.93779C152.341 5.54575 152.023 5.22769 151.631 5.22769H132.878C132.485 5.22769 132.167 5.54575 132.167 5.93779V35.8989C132.167 36.2909 132.485 36.609 132.878 36.609H138.223C138.593 36.609 138.934 36.2724 138.934 35.8989V24.7481H149.413C149.784 24.7481 150.124 24.4115 150.124 24.038V19.1043C150.124 18.7344 149.787 18.3942 149.413 18.3942H138.934V11.5742L138.93 11.5816Z" fill="#CD0921"/>
|
||||
<path d="M173.6 36.6127H179.627C179.915 36.6127 180.145 36.498 180.271 36.2835C180.4 36.0653 180.4 35.7732 180.263 35.5217L173.978 23.8753L174.133 23.8124C178.209 22.174 180.744 18.7418 180.744 14.8547C180.744 9.54747 176.384 5.22769 171.02 5.22769H157.475C157.083 5.22769 156.765 5.54575 156.765 5.93779V35.8989C156.765 36.2909 157.083 36.609 157.475 36.609H162.865C163.235 36.609 163.576 36.2724 163.576 35.8989V24.2081H166.944L166.985 24.2895L173.012 36.2835C173.074 36.4093 173.289 36.609 173.6 36.609V36.6127ZM170.428 18.764H163.572V11.4004H170.428C172.375 11.4004 174.022 13.0462 174.022 14.9916C174.022 16.937 172.342 18.764 170.428 18.764Z" fill="#CD0921"/>
|
||||
<path d="M186.919 5.23158H192.357C192.749 5.23158 193.068 5.54964 193.068 5.94168V35.9065C193.068 36.2985 192.749 36.6166 192.357 36.6166H186.923C186.53 36.6166 186.212 36.2985 186.212 35.9065V5.94538C186.212 5.55334 186.53 5.23528 186.923 5.23528L186.919 5.23158Z" fill="#CD0921"/>
|
||||
<path d="M207.016 11.5816H219.716C220.109 11.5816 220.427 11.2635 220.427 10.8715V5.93779C220.427 5.54575 220.109 5.22769 219.716 5.22769H200.963C200.571 5.22769 200.252 5.54575 200.252 5.93779V35.8989C200.252 36.2909 200.571 36.609 200.963 36.609H219.716C220.109 36.609 220.427 36.2909 220.427 35.8989V30.9652C220.427 30.5731 220.109 30.2551 219.716 30.2551H207.016V23.842H217.495C217.887 23.842 218.206 23.5239 218.206 23.1319V18.1981C218.206 17.8283 217.869 17.488 217.495 17.488H207.016V11.5742V11.5816Z" fill="#CD0921"/>
|
||||
<path d="M251.381 37.0644H252.107C252.491 37.0644 252.817 36.7611 252.817 36.4024V5.94195C252.817 5.57211 252.48 5.23185 252.107 5.23185H246.672C246.28 5.23185 245.962 5.54992 245.962 5.94195V22.1596H245.703L245.658 22.119L227.627 4.78064H226.553C226.169 4.78064 225.843 5.08391 225.843 5.44636L225.887 35.9068C225.887 36.2766 226.224 36.6169 226.598 36.6169H231.988C232.38 36.6169 232.698 36.2988 232.698 35.9068V18.8754H232.957L233.002 18.9198L250.896 36.8869C250.955 36.946 251.277 37.0681 251.377 37.0681L251.381 37.0644Z" fill="#CD0921"/>
|
||||
<path d="M271.722 5.23158H260.668C260.309 5.23158 260.002 5.55704 260.002 5.94168V35.9028C260.002 36.2874 260.306 36.6129 260.668 36.6129H271.722C280.406 36.6129 287.472 29.5526 287.472 20.876C287.472 12.1994 280.406 5.23158 271.722 5.23158ZM271.27 30.2146H266.769V11.5818H271.27C276.393 11.5818 280.254 15.5761 280.254 20.876C280.254 26.1759 276.393 30.2146 271.27 30.2146Z" fill="#CD0921"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 45 KiB |
@@ -0,0 +1,36 @@
|
||||
<svg width="305" height="44" viewBox="0 0 305 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M53.0469 11.9041C53.0469 11.9041 53.0099 11.867 52.9914 11.8484C52.9729 11.8299 52.9543 11.8114 52.9358 11.7928C52.9173 11.7743 52.8988 11.7557 52.8803 11.7372C52.8618 11.7187 52.8433 11.7001 52.8248 11.6816C52.8063 11.663 52.7878 11.6445 52.7693 11.6259C52.7507 11.6074 52.7322 11.5889 52.7137 11.5703C52.6952 11.5518 52.6767 11.5332 52.6582 11.5147C52.6397 11.4962 52.6212 11.4776 52.6027 11.4591C52.5842 11.4405 52.5657 11.422 52.5471 11.4035C52.5286 11.3849 52.5101 11.3664 52.4916 11.3478C52.4731 11.3293 52.4546 11.3107 52.4361 11.2922C52.4176 11.2737 52.3991 11.2551 52.3806 11.2366C52.3621 11.218 52.3436 11.1995 52.3251 11.181C52.3065 11.1624 52.288 11.1439 52.2695 11.1253C52.251 11.1068 52.2325 11.0883 52.214 11.0697C52.1955 11.0512 52.177 11.0326 52.1585 11.0141C52.14 10.9955 52.1215 10.977 52.103 10.9585C52.0844 10.9399 52.0659 10.9214 52.0474 10.9028C52.0289 10.8843 52.0104 10.8658 51.9919 10.8472C51.9734 10.8287 51.9549 10.8101 51.9364 10.7916C51.9179 10.7731 51.8994 10.7545 51.8808 10.736C51.8623 10.7174 51.8438 10.6989 51.8253 10.6803C51.8068 10.6618 51.7883 10.6433 51.7698 10.6247C51.7513 10.6062 51.7328 10.5876 51.7143 10.5691C51.6995 10.5543 51.6809 10.5357 51.6661 10.5209C54.6016 13.4727 56.4081 17.5554 56.4081 22.0795C56.4081 31.1276 49.1823 38.3216 40.1464 38.3216C35.7228 38.3216 31.7472 36.5936 28.8376 33.7716C28.8228 33.7605 28.8117 33.7493 28.7969 33.7419C28.8006 33.7456 28.808 33.753 28.8117 33.7567C28.8302 33.7753 28.8487 33.7938 28.8672 33.8124C28.8857 33.8309 28.9042 33.8494 28.9227 33.868C28.9412 33.8865 28.9598 33.9051 28.9783 33.9236C28.9968 33.9422 29.0153 33.9607 29.0338 33.9792C29.0523 33.9978 29.0708 34.0163 29.0893 34.0349C29.1078 34.0534 29.1263 34.0719 29.1448 34.0905C29.1633 34.109 29.1819 34.1276 29.2004 34.1461C29.2189 34.1647 29.2374 34.1832 29.2559 34.2017C29.2744 34.2203 29.2929 34.2388 29.3114 34.2574C29.3299 34.2759 29.3484 34.2944 29.3669 34.313C29.3854 34.3315 29.404 34.3501 29.4225 34.3686C29.441 34.3871 29.4595 34.4057 29.478 34.4242C29.4965 34.4428 29.515 34.4613 29.5335 34.4799C29.552 34.4984 29.5705 34.5169 29.589 34.5355C29.6076 34.554 29.6261 34.5726 29.6446 34.5911C29.6631 34.6096 29.6816 34.6282 29.7001 34.6467C29.7186 34.6653 29.7371 34.6838 29.7556 34.7023C29.7741 34.7209 29.7926 34.7394 29.8111 34.758C29.8297 34.7765 29.8482 34.7951 29.8667 34.8136C29.8852 34.8321 29.9037 34.8507 29.9222 34.8692C29.9407 34.8878 29.9592 34.9063 29.9777 34.9248C29.9962 34.9434 30.0147 34.9619 30.0332 34.9805C32.9613 37.9248 37.0258 39.7381 41.553 39.7381C50.5852 39.7381 57.8147 32.5441 57.8147 23.496C57.8147 18.9571 55.9935 14.8595 53.0395 11.9078L53.0469 11.9041Z" fill="#CD0921"/>
|
||||
<path d="M40.1616 12.997C35.2383 12.997 31.1738 17.1131 31.1738 22.0933C31.1738 23.9956 31.7846 25.7645 32.81 27.2255C33.132 27.5185 33.4726 27.7862 33.8317 28.0309C33.0395 26.6922 32.5731 25.1459 32.5731 23.4957C32.5731 18.5193 36.6376 14.3994 41.5609 14.3994C43.2155 14.3994 44.7629 14.8666 46.0992 15.6602C45.8512 15.2968 45.5772 14.9482 45.2811 14.6256C43.8226 13.6021 42.0606 12.994 40.1579 12.994L40.1616 12.997Z" fill="#CD0921"/>
|
||||
<path d="M86.773 39.2856C87.6763 39.2856 88.1723 38.7442 88.3981 38.1991L90.0232 34.5799H100.614L99.9771 33.1782H88.6239L86.9988 36.7974C86.773 37.3388 86.277 37.8839 85.3738 37.8839H80.4061C80.1432 37.8839 79.936 37.7949 79.7842 37.6503C79.8027 37.6688 79.8175 37.6874 79.836 37.7022C79.8545 37.7208 79.8693 37.7393 79.8915 37.7578C79.91 37.7764 79.9248 37.7949 79.9471 37.8135C79.9656 37.832 79.9804 37.8505 80.0026 37.8691C80.0211 37.8876 80.0359 37.9062 80.0581 37.9247C80.0766 37.9432 80.0914 37.9618 80.1136 37.9803C80.1321 37.9989 80.1469 38.0174 80.1692 38.036C80.1877 38.0545 80.2025 38.073 80.2247 38.0916C80.2432 38.1101 80.258 38.1287 80.2802 38.1472C80.2987 38.1657 80.3135 38.1843 80.3357 38.2028C80.3542 38.2214 80.369 38.2399 80.3913 38.2584C80.4098 38.277 80.4246 38.2955 80.4468 38.3141C80.4653 38.3326 80.4801 38.3512 80.5023 38.3697C80.5208 38.3882 80.5356 38.4068 80.5578 38.4253C80.5763 38.4439 80.5912 38.4624 80.6134 38.4809C80.6319 38.4995 80.6467 38.518 80.6689 38.5366C80.6874 38.5551 80.7022 38.5737 80.7244 38.5922C80.7429 38.6107 80.7577 38.6293 80.7799 38.6478C80.7985 38.6664 80.8133 38.6849 80.8355 38.7034C80.854 38.722 80.8688 38.7405 80.891 38.7591C80.9095 38.7776 80.9243 38.7961 80.9465 38.8147C80.965 38.8332 80.9798 38.8518 81.002 38.8703C81.0205 38.8889 81.0354 38.9074 81.0576 38.9259C81.0761 38.9445 81.0909 38.963 81.1131 38.9816C81.1316 39.0001 81.1464 39.0186 81.1686 39.0372C81.3167 39.1929 81.5388 39.2968 81.8164 39.2968H86.7841L86.773 39.2856Z" fill="#CD0921"/>
|
||||
<path d="M109.902 36.7047C110.173 37.2943 109.814 37.8802 109.136 37.8802H104.124C103.617 37.8802 103.287 37.7727 103.013 37.4872C103.032 37.5057 103.05 37.5242 103.065 37.5391C103.084 37.5576 103.102 37.5762 103.121 37.5947C103.139 37.6132 103.158 37.6318 103.176 37.6503C103.195 37.6689 103.213 37.6874 103.232 37.7059C103.25 37.7245 103.269 37.743 103.287 37.7616C103.306 37.7801 103.324 37.7987 103.343 37.8172C103.361 37.8357 103.38 37.8543 103.398 37.8728C103.417 37.8914 103.435 37.9099 103.454 37.9284C103.472 37.947 103.491 37.9655 103.509 37.9841C103.528 38.0026 103.546 38.0211 103.565 38.0397C103.584 38.0582 103.602 38.0768 103.621 38.0953C103.639 38.1139 103.658 38.1324 103.676 38.1509C103.695 38.1695 103.713 38.188 103.732 38.2066C103.75 38.2251 103.769 38.2436 103.787 38.2622C103.806 38.2807 103.824 38.2993 103.843 38.3178C103.861 38.3363 103.88 38.3549 103.898 38.3734C103.917 38.392 103.935 38.4105 103.954 38.4291C103.972 38.4476 103.991 38.4661 104.009 38.4847C104.028 38.5032 104.046 38.5218 104.065 38.5403C104.083 38.5588 104.102 38.5774 104.12 38.5959C104.139 38.6145 104.157 38.633 104.176 38.6516C104.194 38.6701 104.213 38.6886 104.231 38.7072C104.25 38.7257 104.268 38.7443 104.287 38.7628C104.305 38.7813 104.324 38.7999 104.342 38.8184C104.361 38.837 104.379 38.8555 104.398 38.874C104.679 39.1781 105.012 39.2931 105.534 39.2931H110.546C111.224 39.2931 111.587 38.7035 111.313 38.1176L97.1758 7.66918C97.1351 7.58759 97.0722 7.50972 97.0018 7.43926C96.9833 7.42072 96.9648 7.40218 96.9463 7.38364C96.9278 7.3651 96.9093 7.34656 96.8908 7.32802C96.8723 7.30947 96.8538 7.29094 96.8353 7.27239C96.8167 7.25385 96.7982 7.23531 96.7797 7.21677C96.7612 7.19823 96.7427 7.17969 96.7242 7.16115C96.7057 7.1426 96.6872 7.12406 96.6687 7.10552C96.6502 7.08698 96.6317 7.06844 96.6132 7.0499C96.5946 7.03136 96.5761 7.01282 96.5576 6.99428C96.5391 6.97573 96.5206 6.95719 96.5021 6.93865C96.4873 6.92011 96.4651 6.90157 96.4466 6.88303C96.4281 6.86449 96.4096 6.84594 96.391 6.8274C96.3725 6.80886 96.354 6.79032 96.3355 6.77178C96.317 6.75324 96.2985 6.7347 96.28 6.71616C96.2615 6.69762 96.243 6.67907 96.2245 6.66053C96.2097 6.64199 96.1875 6.62345 96.1689 6.60491C96.1504 6.58637 96.1319 6.56783 96.1134 6.54928C96.0949 6.53074 96.0764 6.5122 96.0579 6.49366C96.0394 6.47512 96.0209 6.45658 96.0024 6.43804C95.9839 6.4195 95.9654 6.40096 95.9468 6.38242C95.932 6.36387 95.9098 6.34533 95.8913 6.32679C95.8728 6.30825 95.8543 6.28971 95.8358 6.27117C95.8173 6.25263 95.7988 6.23408 95.7803 6.21554C95.7618 6.197 95.7432 6.17846 95.7247 6.15992C95.7062 6.14138 95.6877 6.12284 95.6692 6.1043C95.6544 6.08576 95.6359 6.07092 95.6211 6.05609C95.6803 6.11913 95.7321 6.18588 95.7655 6.25633L109.902 36.7047Z" fill="#CD0921"/>
|
||||
<path d="M95.3135 22.7499L94.2871 20.5215L92.0443 25.4646L94.0811 25.4643L95.3135 22.7499Z" fill="#CD0921"/>
|
||||
<path d="M132.797 38.4257V33.4937C132.797 33.2527 132.69 33.0302 132.52 32.8707C132.501 32.8522 132.483 32.8336 132.464 32.8151C132.446 32.7965 132.427 32.778 132.409 32.7595C132.39 32.7409 132.372 32.7224 132.353 32.7038C132.335 32.6853 132.316 32.6668 132.298 32.6482C132.279 32.6297 132.261 32.6111 132.242 32.5926C132.223 32.574 132.205 32.5555 132.186 32.537C132.168 32.5184 132.149 32.4999 132.131 32.4813C132.112 32.4628 132.094 32.4443 132.075 32.4257C132.057 32.4072 132.038 32.3886 132.02 32.3701C132.001 32.3516 131.983 32.333 131.964 32.3145C131.946 32.2959 131.927 32.2774 131.909 32.2588C131.89 32.2403 131.872 32.2218 131.853 32.2032C131.835 32.1847 131.816 32.1661 131.798 32.1476C131.779 32.1291 131.761 32.1105 131.742 32.092C131.724 32.0734 131.705 32.0549 131.687 32.0364C131.668 32.0178 131.65 31.9993 131.631 31.9807C131.613 31.9622 131.594 31.9437 131.576 31.9251C131.557 31.9066 131.539 31.888 131.52 31.8695C131.502 31.8509 131.483 31.8324 131.465 31.8139C131.446 31.7953 131.428 31.7768 131.409 31.7582C131.391 31.7397 131.372 31.7212 131.354 31.7026C131.335 31.6841 131.317 31.6655 131.298 31.647C131.28 31.6284 131.261 31.6099 131.243 31.5914C131.224 31.5728 131.206 31.5543 131.187 31.5357C131.172 31.5172 131.154 31.5024 131.139 31.4875C131.291 31.647 131.387 31.8546 131.387 32.0809V37.0128C131.387 37.4652 131.024 37.8731 130.528 37.8731H113.545C113.297 37.8731 113.089 37.7693 112.938 37.6136C112.952 37.6321 112.971 37.6469 112.986 37.6618C113.004 37.6803 113.023 37.6988 113.041 37.7174C113.06 37.7359 113.078 37.7545 113.097 37.773C113.115 37.7915 113.134 37.8101 113.152 37.8286C113.171 37.8472 113.189 37.8657 113.208 37.8843C113.226 37.9028 113.245 37.9213 113.263 37.9399C113.282 37.9584 113.3 37.977 113.319 37.9955C113.337 38.014 113.356 38.0326 113.374 38.0511C113.393 38.0697 113.411 38.0882 113.43 38.1068C113.448 38.1253 113.467 38.1438 113.485 38.1624C113.504 38.1809 113.522 38.1994 113.541 38.218C113.559 38.2365 113.578 38.2551 113.596 38.2736C113.615 38.2922 113.633 38.3107 113.652 38.3292C113.67 38.3478 113.689 38.3663 113.707 38.3849C113.726 38.4034 113.744 38.4219 113.763 38.4405C113.781 38.459 113.8 38.4776 113.819 38.4961C113.837 38.5147 113.856 38.5332 113.874 38.5517C113.893 38.5703 113.911 38.5888 113.93 38.6074C113.948 38.6259 113.967 38.6444 113.985 38.663C114.004 38.6815 114.022 38.7001 114.041 38.7186C114.059 38.7371 114.078 38.7557 114.096 38.7742C114.115 38.7928 114.133 38.8113 114.152 38.8299C114.17 38.8484 114.189 38.8669 114.207 38.8855C114.226 38.904 114.244 38.9226 114.263 38.9411C114.281 38.9596 114.3 38.9782 114.318 38.9967C114.474 39.171 114.692 39.286 114.955 39.286H131.938C132.434 39.286 132.797 38.8781 132.797 38.4257Z" fill="#CD0921"/>
|
||||
<path d="M121.193 8.47343C121.193 8.23239 121.074 8.0099 120.9 7.85044C120.882 7.8319 120.863 7.81336 120.845 7.79482C120.826 7.77628 120.808 7.75773 120.789 7.73919C120.771 7.72065 120.752 7.70211 120.734 7.68357C120.715 7.66503 120.697 7.64649 120.678 7.62795C120.66 7.60941 120.641 7.59087 120.623 7.57232C120.604 7.55378 120.586 7.53524 120.567 7.5167C120.548 7.49816 120.53 7.47962 120.511 7.46107C120.493 7.44253 120.474 7.42399 120.456 7.40545C120.437 7.38691 120.419 7.36837 120.4 7.34983C120.382 7.33129 120.363 7.31275 120.345 7.29421C120.326 7.27566 120.308 7.25712 120.289 7.23858C120.271 7.22004 120.252 7.2015 120.234 7.18296C120.215 7.16442 120.197 7.14587 120.178 7.12733C120.16 7.10879 120.141 7.09025 120.123 7.07171C120.104 7.05317 120.086 7.03463 120.067 7.01609C120.049 6.99755 120.03 6.979 120.012 6.96046C119.993 6.94192 119.975 6.92338 119.956 6.90484C119.938 6.8863 119.919 6.86776 119.901 6.84921C119.882 6.83067 119.864 6.81213 119.845 6.79359C119.827 6.77505 119.808 6.75651 119.79 6.73797C119.771 6.71943 119.753 6.70089 119.734 6.68234C119.716 6.6638 119.697 6.64526 119.679 6.62672C119.66 6.60818 119.642 6.58964 119.623 6.5711C119.605 6.55255 119.586 6.53402 119.568 6.51547C119.557 6.50435 119.549 6.49693 119.538 6.48581C119.682 6.64155 119.779 6.8418 119.779 7.05688V29.6586H121.178V8.45859L121.193 8.47343Z" fill="#CD0921"/>
|
||||
<path d="M164.945 20.7225C164.927 20.704 164.908 20.6855 164.89 20.6669C164.871 20.6484 164.853 20.6298 164.834 20.6113C164.816 20.5928 164.797 20.5742 164.779 20.5557C164.76 20.5371 164.742 20.5186 164.723 20.5C164.705 20.4815 164.686 20.463 164.668 20.4444C164.649 20.4259 164.631 20.4073 164.612 20.3888C164.594 20.3703 164.575 20.3517 164.557 20.3332C164.538 20.3146 164.52 20.2961 164.501 20.2775C164.483 20.259 164.464 20.2405 164.446 20.2219C164.427 20.2034 164.409 20.1848 164.39 20.1663C164.372 20.1478 164.353 20.1292 164.335 20.1107C164.316 20.0921 164.298 20.0736 164.279 20.0551C164.261 20.0365 164.242 20.018 164.224 19.9994C164.205 19.9809 164.187 19.9624 164.168 19.9438C164.15 19.9253 164.131 19.9067 164.113 19.8882C164.094 19.8696 164.076 19.8511 164.057 19.8326C164.039 19.814 164.02 19.7955 164.002 19.7769C163.983 19.7584 163.964 19.7399 163.946 19.7213C163.927 19.7028 163.909 19.6842 163.89 19.6657C163.872 19.6472 163.853 19.6286 163.835 19.6101C163.816 19.5915 163.798 19.573 163.779 19.5544C163.761 19.5359 163.742 19.5174 163.724 19.4988C163.705 19.4803 163.687 19.4617 163.668 19.4432C163.654 19.4247 163.635 19.4098 163.62 19.395C163.779 19.5544 163.883 19.7621 163.883 19.9883V24.9203C163.883 25.3727 163.476 25.7806 163.024 25.7806H152.726V36.7755C152.726 37.2279 152.319 37.6358 151.867 37.6358H146.537C146.289 37.6358 146.081 37.532 145.93 37.3726C145.944 37.3911 145.963 37.4059 145.978 37.4208C145.996 37.4393 146.015 37.4578 146.033 37.4764C146.052 37.4949 146.07 37.5135 146.089 37.532C146.107 37.5506 146.126 37.5691 146.144 37.5876C146.163 37.6062 146.181 37.6247 146.2 37.6432C146.218 37.6618 146.237 37.6803 146.255 37.6989C146.274 37.7174 146.292 37.736 146.311 37.7545C146.329 37.773 146.348 37.7916 146.366 37.8101C146.385 37.8287 146.404 37.8472 146.422 37.8658C146.441 37.8843 146.459 37.9028 146.478 37.9214C146.496 37.9399 146.515 37.9584 146.533 37.977C146.552 37.9955 146.57 38.0141 146.589 38.0326C146.607 38.0512 146.626 38.0697 146.644 38.0882C146.663 38.1068 146.681 38.1253 146.7 38.1439C146.718 38.1624 146.737 38.181 146.755 38.1995C146.774 38.218 146.792 38.2366 146.811 38.2551C146.829 38.2737 146.848 38.2922 146.866 38.3107C146.885 38.3293 146.903 38.3478 146.922 38.3664C146.94 38.3849 146.959 38.4034 146.977 38.422C146.996 38.4405 147.014 38.4591 147.033 38.4776C147.051 38.4962 147.07 38.5147 147.088 38.5332C147.107 38.5518 147.125 38.5703 147.144 38.5889C147.162 38.6074 147.181 38.6259 147.199 38.6445C147.218 38.663 147.236 38.6816 147.255 38.7001C147.273 38.7186 147.292 38.7372 147.31 38.7557C147.466 38.93 147.684 39.045 147.947 39.045H153.278C153.729 39.045 154.136 38.6371 154.136 38.1847V27.1897H164.435C164.886 27.1897 165.293 26.7818 165.293 26.3294V21.3974C165.293 21.1564 165.175 20.9376 165.001 20.7745C164.982 20.7559 164.964 20.7374 164.945 20.7188V20.7225Z" fill="#CD0921"/>
|
||||
<path d="M167.171 7.55517C167.152 7.53663 167.133 7.51809 167.115 7.49955C167.096 7.481 167.078 7.46246 167.059 7.44392C167.041 7.42538 167.022 7.40684 167.004 7.3883C166.985 7.36976 166.967 7.35121 166.948 7.33267C166.93 7.31413 166.911 7.29559 166.893 7.27705C166.874 7.25851 166.856 7.23997 166.837 7.22143C166.819 7.20289 166.8 7.18434 166.782 7.1658C166.763 7.14726 166.745 7.12872 166.726 7.11018C166.708 7.09164 166.689 7.0731 166.671 7.05455C166.652 7.03601 166.634 7.01747 166.615 6.99893C166.597 6.98039 166.578 6.96185 166.56 6.94331C166.541 6.92477 166.523 6.90623 166.504 6.88769C166.486 6.86915 166.467 6.85061 166.449 6.83207C166.43 6.81352 166.412 6.79498 166.393 6.77644C166.375 6.75789 166.356 6.73936 166.338 6.72082C166.319 6.70228 166.301 6.68374 166.282 6.6652C166.264 6.64665 166.245 6.62811 166.227 6.60957C166.208 6.59102 166.19 6.57249 166.171 6.55395C166.153 6.53541 166.134 6.51686 166.116 6.49832C166.097 6.47978 166.078 6.46124 166.06 6.4427C166.041 6.42415 166.023 6.40562 166.004 6.38708C165.986 6.36854 165.967 6.34999 165.949 6.33145C165.93 6.31291 165.912 6.29437 165.893 6.27583C165.879 6.25728 165.86 6.24245 165.845 6.22762C165.997 6.38707 166.093 6.59474 166.093 6.82094V11.7529C166.093 12.2053 165.731 12.6132 165.234 12.6132H152.723V17.5674H154.122V14.0149H166.634C167.13 14.0149 167.493 13.607 167.493 13.1546V8.22266C167.493 7.98162 167.385 7.75912 167.215 7.59967C167.196 7.58113 167.178 7.56259 167.159 7.54405L167.171 7.55517Z" fill="#CD0921"/>
|
||||
<path d="M178.704 13.8437L185.389 13.8444C185.53 13.8444 185.671 13.8592 185.808 13.8815C185.73 13.4773 185.578 13.099 185.363 12.7616C184.938 12.565 184.479 12.4464 183.99 12.4464H177.305V17.9457H178.704V13.8481L178.704 13.8437Z" fill="#CD0921"/>
|
||||
<path d="M177.305 25.2464V36.7827C177.305 37.2351 176.897 37.643 176.446 37.643H171.071C170.823 37.643 170.616 37.5392 170.464 37.3798C170.479 37.3983 170.497 37.4131 170.512 37.428C170.531 37.4465 170.549 37.4651 170.568 37.4836C170.586 37.5021 170.605 37.5207 170.623 37.5392C170.642 37.5578 170.66 37.5763 170.679 37.5948C170.697 37.6134 170.716 37.6319 170.734 37.6505C170.753 37.669 170.771 37.6876 170.79 37.7061C170.808 37.7246 170.827 37.7432 170.845 37.7617C170.864 37.7803 170.882 37.7988 170.901 37.8173C170.919 37.8359 170.938 37.8544 170.956 37.873C170.975 37.8915 170.993 37.91 171.012 37.9286C171.03 37.9471 171.049 37.9657 171.067 37.9842C171.086 38.0027 171.104 38.0213 171.123 38.0398C171.141 38.0584 171.16 38.0769 171.178 38.0955C171.197 38.114 171.215 38.1325 171.234 38.1511C171.252 38.1696 171.271 38.1882 171.289 38.2067C171.308 38.2252 171.326 38.2438 171.345 38.2623C171.363 38.2809 171.382 38.2994 171.4 38.3179C171.419 38.3365 171.437 38.355 171.456 38.3736C171.474 38.3921 171.493 38.4107 171.511 38.4292C171.53 38.4477 171.548 38.4663 171.567 38.4848C171.585 38.5034 171.604 38.5219 171.623 38.5405C171.641 38.559 171.66 38.5775 171.678 38.5961C171.697 38.6146 171.715 38.6331 171.734 38.6517C171.752 38.6702 171.771 38.6888 171.789 38.7073C171.808 38.7259 171.826 38.7444 171.845 38.7629C172 38.9372 172.218 39.0522 172.481 39.0522H177.856C178.308 39.0522 178.715 38.6443 178.715 38.1919V26.6555H180.266L179.563 25.2538H177.316L177.305 25.2464Z" fill="#CD0921"/>
|
||||
<path d="M195.82 17.1481C195.82 14.4448 194.703 11.9899 192.904 10.2174C192.885 10.1988 192.867 10.1803 192.848 10.1617C192.829 10.1432 192.811 10.1247 192.792 10.1061C192.774 10.0876 192.755 10.069 192.737 10.0505C192.718 10.032 192.7 10.0134 192.681 9.99488C192.663 9.97634 192.644 9.95779 192.626 9.93925C192.607 9.92071 192.589 9.90217 192.57 9.88363C192.552 9.86509 192.533 9.84655 192.515 9.82801C192.496 9.80947 192.478 9.79093 192.459 9.77238C192.441 9.75384 192.422 9.7353 192.404 9.71676C192.385 9.69822 192.367 9.67968 192.348 9.66114C192.33 9.6426 192.311 9.62406 192.293 9.60551C192.274 9.58697 192.256 9.56843 192.237 9.54989C192.219 9.53135 192.2 9.51281 192.182 9.49427C192.163 9.47573 192.145 9.45719 192.126 9.43864C192.108 9.4201 192.089 9.40156 192.071 9.38301C192.052 9.36447 192.034 9.34594 192.015 9.3274C191.997 9.30886 191.978 9.29032 191.96 9.27177C191.941 9.25323 191.923 9.23469 191.904 9.21614C191.886 9.1976 191.867 9.17907 191.849 9.16053C191.83 9.14199 191.812 9.12344 191.793 9.1049C191.774 9.08636 191.756 9.06782 191.737 9.04927C191.719 9.03073 191.7 9.0122 191.682 8.99366C191.663 8.97511 191.645 8.95657 191.626 8.93803C191.608 8.91949 191.589 8.90095 191.571 8.8824C191.556 8.86757 191.538 8.84903 191.523 8.8342C193.303 10.603 194.41 13.0431 194.41 15.7352C194.41 19.8996 191.656 23.2481 187.725 24.8279L193.914 36.3197C194.229 36.9093 193.914 37.6324 193.144 37.6324H187.136C186.881 37.6324 186.677 37.5175 186.544 37.3877C186.555 37.3988 186.566 37.4099 186.577 37.4211C186.596 37.4396 186.614 37.4581 186.633 37.4767C186.648 37.4952 186.666 37.5138 186.688 37.5323C186.707 37.5508 186.725 37.5694 186.744 37.5879C186.759 37.6065 186.777 37.625 186.799 37.6435C186.814 37.6621 186.836 37.6806 186.855 37.6992C186.873 37.7177 186.892 37.7363 186.91 37.7548C186.925 37.7733 186.944 37.7919 186.966 37.8104C186.984 37.829 187.003 37.8475 187.021 37.866C187.036 37.8846 187.055 37.9031 187.077 37.9217C187.092 37.9402 187.114 37.9587 187.133 37.9773C187.151 37.9958 187.17 38.0144 187.188 38.0329C187.203 38.0514 187.225 38.07 187.244 38.0885C187.258 38.1071 187.277 38.1256 187.299 38.1442C187.314 38.1627 187.332 38.1812 187.355 38.1998C187.373 38.2183 187.392 38.2369 187.41 38.2554C187.429 38.2739 187.447 38.2925 187.466 38.311C187.48 38.3296 187.503 38.3481 187.521 38.3667C187.54 38.3852 187.558 38.4037 187.577 38.4223C187.592 38.4408 187.61 38.4594 187.632 38.4779C187.651 38.4964 187.669 38.515 187.688 38.5335C187.706 38.5521 187.725 38.5706 187.743 38.5891C187.758 38.6077 187.78 38.6262 187.799 38.6448C187.817 38.6633 187.836 38.6819 187.854 38.7004C187.869 38.7189 187.888 38.7375 187.91 38.756C188.039 38.9043 188.262 39.0453 188.55 39.0453H194.558C195.328 39.0453 195.643 38.3221 195.328 37.7325L189.139 26.2407C193.066 24.6573 195.824 21.3087 195.824 17.1481H195.82Z" fill="#CD0921"/>
|
||||
<path d="M207.763 7.55907C207.744 7.54053 207.726 7.52199 207.707 7.50344C207.689 7.4849 207.67 7.46636 207.652 7.44782C207.633 7.42928 207.615 7.41074 207.596 7.3922C207.578 7.37366 207.559 7.35512 207.541 7.33657C207.522 7.31803 207.504 7.29949 207.485 7.28095C207.467 7.26241 207.448 7.24387 207.43 7.22533C207.411 7.20679 207.393 7.18825 207.374 7.1697C207.356 7.15116 207.337 7.13262 207.319 7.11408C207.3 7.09554 207.282 7.077 207.263 7.05846C207.245 7.03992 207.226 7.02137 207.208 7.00283C207.189 6.98429 207.171 6.96575 207.152 6.94721C207.134 6.92867 207.115 6.91013 207.097 6.89159C207.078 6.87305 207.06 6.8545 207.041 6.83596C207.023 6.81742 207.004 6.79888 206.986 6.78034C206.967 6.7618 206.949 6.74325 206.93 6.72471C206.911 6.70617 206.893 6.68763 206.874 6.66909C206.856 6.65055 206.837 6.63201 206.819 6.61347C206.8 6.59493 206.782 6.57638 206.763 6.55784C206.745 6.5393 206.726 6.52076 206.708 6.50222C206.689 6.48368 206.671 6.46514 206.652 6.44659C206.634 6.42805 206.615 6.40952 206.597 6.39098C206.578 6.37243 206.56 6.3539 206.541 6.33535C206.523 6.31681 206.504 6.29827 206.486 6.27972C206.471 6.26118 206.452 6.24635 206.438 6.23151C206.593 6.39097 206.7 6.59863 206.7 6.82484V36.7763C206.7 37.2287 206.293 37.6366 205.842 37.6366H200.422C200.197 37.6366 199.989 37.5291 199.83 37.3733C199.845 37.3919 199.863 37.4067 199.878 37.4216C199.897 37.4401 199.915 37.4586 199.934 37.4772C199.952 37.4957 199.971 37.5143 199.989 37.5328C200.008 37.5513 200.026 37.5699 200.045 37.5884C200.063 37.607 200.082 37.6255 200.1 37.6441C200.119 37.6626 200.137 37.6811 200.156 37.6997C200.174 37.7182 200.193 37.7368 200.211 37.7553C200.23 37.7738 200.248 37.7924 200.267 37.8109C200.285 37.8295 200.304 37.848 200.322 37.8665C200.341 37.8851 200.359 37.9036 200.378 37.9222C200.396 37.9407 200.415 37.9593 200.433 37.9778C200.452 37.9963 200.47 38.0149 200.489 38.0334C200.507 38.0519 200.526 38.0705 200.545 38.089C200.563 38.1076 200.582 38.1261 200.6 38.1447C200.619 38.1632 200.637 38.1817 200.656 38.2003C200.674 38.2188 200.693 38.2374 200.711 38.2559C200.73 38.2744 200.748 38.293 200.767 38.3115C200.785 38.3301 200.804 38.3486 200.822 38.3672C200.841 38.3857 200.859 38.4042 200.878 38.4228C200.896 38.4413 200.915 38.4599 200.933 38.4784C200.952 38.4969 200.97 38.5155 200.989 38.534C201.007 38.5526 201.026 38.5711 201.044 38.5896C201.063 38.6082 201.081 38.6267 201.1 38.6453C201.118 38.6638 201.137 38.6824 201.155 38.7009C201.174 38.7194 201.192 38.738 201.211 38.7565C201.37 38.9308 201.592 39.0495 201.833 39.0495H207.252C207.704 39.0495 208.111 38.6416 208.111 38.1892V8.23767C208.111 7.99664 207.992 7.77415 207.818 7.61469C207.8 7.59615 207.781 7.57761 207.763 7.55907Z" fill="#CD0921"/>
|
||||
<path d="M235.055 7.55517C235.037 7.53663 235.018 7.51809 235 7.49955C234.981 7.481 234.963 7.46246 234.944 7.44392C234.926 7.42538 234.907 7.40684 234.889 7.3883C234.87 7.36976 234.852 7.35121 234.833 7.33267C234.815 7.31413 234.796 7.29559 234.778 7.27705C234.759 7.25851 234.741 7.23997 234.722 7.22143C234.704 7.20289 234.685 7.18434 234.667 7.1658C234.648 7.14726 234.63 7.12872 234.611 7.11018C234.593 7.09164 234.574 7.0731 234.556 7.05455C234.537 7.03601 234.519 7.01747 234.5 6.99893C234.481 6.98039 234.463 6.96185 234.444 6.94331C234.426 6.92477 234.407 6.90623 234.389 6.88769C234.37 6.86915 234.352 6.85061 234.333 6.83207C234.315 6.81352 234.296 6.79498 234.278 6.77644C234.259 6.75789 234.241 6.73936 234.222 6.72082C234.204 6.70228 234.185 6.68374 234.167 6.6652C234.148 6.64665 234.13 6.62811 234.111 6.60957C234.093 6.59102 234.074 6.57249 234.056 6.55395C234.037 6.53541 234.019 6.51686 234 6.49832C233.982 6.47978 233.963 6.46124 233.945 6.4427C233.926 6.42415 233.908 6.40562 233.889 6.38708C233.871 6.36854 233.852 6.34999 233.834 6.33145C233.815 6.31291 233.797 6.29437 233.778 6.27583C233.763 6.25728 233.745 6.24245 233.73 6.22762C233.882 6.38707 233.978 6.59474 233.978 6.82094V11.7529C233.978 12.2053 233.615 12.6132 233.119 12.6132H220.607V16.6626H222.007V14.0149H234.519C235.015 14.0149 235.377 13.607 235.377 13.1546V8.22266C235.377 7.98162 235.27 7.75912 235.1 7.59967C235.081 7.58113 235.063 7.56259 235.044 7.54405L235.055 7.55517Z" fill="#CD0921"/>
|
||||
<path d="M235.056 32.5783C235.037 32.5598 235.019 32.5412 235 32.5227C234.982 32.5042 234.963 32.4856 234.945 32.4671C234.926 32.4485 234.908 32.43 234.889 32.4115C234.871 32.3929 234.852 32.3744 234.834 32.3558C234.815 32.3373 234.797 32.3188 234.778 32.3002C234.76 32.2817 234.741 32.2631 234.723 32.2446C234.704 32.226 234.686 32.2075 234.667 32.189C234.649 32.1704 234.63 32.1519 234.612 32.1333C234.593 32.1148 234.575 32.0963 234.556 32.0777C234.538 32.0592 234.519 32.0406 234.501 32.0221C234.482 32.0035 234.464 31.985 234.445 31.9665C234.427 31.9479 234.408 31.9294 234.39 31.9108C234.371 31.8923 234.353 31.8738 234.334 31.8552C234.316 31.8367 234.297 31.8181 234.279 31.7996C234.26 31.781 234.242 31.7625 234.223 31.744C234.205 31.7254 234.186 31.7069 234.168 31.6883C234.149 31.6698 234.131 31.6513 234.112 31.6327C234.093 31.6142 234.075 31.5956 234.056 31.5771C234.038 31.5586 234.019 31.54 234.001 31.5215C233.982 31.5029 233.964 31.4844 233.945 31.4659C233.927 31.4473 233.908 31.4288 233.89 31.4102C233.871 31.3917 233.853 31.3731 233.834 31.3546C233.816 31.3361 233.797 31.3175 233.779 31.299C233.764 31.2804 233.746 31.2656 233.731 31.2508C233.882 31.4102 233.979 31.6179 233.979 31.8441V36.7761C233.979 37.2285 233.616 37.6364 233.12 37.6364H214.423C214.175 37.6364 213.967 37.5325 213.815 37.3731C213.83 37.3916 213.849 37.4065 213.864 37.4213C213.882 37.4398 213.901 37.4584 213.919 37.4769C213.938 37.4955 213.956 37.514 213.975 37.5325C213.993 37.5511 214.012 37.5696 214.03 37.5882C214.049 37.6067 214.067 37.6253 214.086 37.6438C214.104 37.6623 214.123 37.6809 214.141 37.6994C214.16 37.718 214.178 37.7365 214.197 37.755C214.215 37.7736 214.234 37.7921 214.252 37.8107C214.271 37.8292 214.289 37.8477 214.308 37.8663C214.326 37.8848 214.345 37.9034 214.363 37.9219C214.382 37.9404 214.4 37.959 214.419 37.9775C214.437 37.9961 214.456 38.0146 214.474 38.0331C214.493 38.0517 214.511 38.0702 214.53 38.0888C214.548 38.1073 214.567 38.1259 214.585 38.1444C214.604 38.163 214.622 38.1815 214.641 38.2C214.659 38.2186 214.678 38.2371 214.696 38.2556C214.715 38.2742 214.733 38.2927 214.752 38.3113C214.77 38.3298 214.789 38.3484 214.807 38.3669C214.826 38.3854 214.844 38.404 214.863 38.4225C214.882 38.4411 214.9 38.4596 214.919 38.4781C214.937 38.4967 214.956 38.5152 214.974 38.5338C214.993 38.5523 215.011 38.5708 215.03 38.5894C215.048 38.6079 215.067 38.6265 215.085 38.645C215.104 38.6636 215.122 38.6821 215.141 38.7006C215.159 38.7192 215.178 38.7377 215.196 38.7563C215.352 38.9305 215.57 39.0455 215.833 39.0455H234.53C235.026 39.0455 235.389 38.6376 235.389 38.1852V33.2532C235.389 33.0122 235.282 32.7897 235.111 32.6302C235.093 32.6117 235.074 32.5932 235.056 32.5746V32.5783Z" fill="#CD0921"/>
|
||||
<path d="M222.018 26.2892H232.316C232.768 26.2892 233.175 25.9257 233.175 25.4288V20.4969C233.175 20.2558 233.056 20.0371 232.882 19.8739C232.864 19.8554 232.845 19.8368 232.827 19.8183C232.808 19.7997 232.79 19.7812 232.771 19.7626C232.753 19.7441 232.734 19.7256 232.716 19.707C232.697 19.6885 232.679 19.6699 232.66 19.6514C232.642 19.6329 232.623 19.6143 232.605 19.5958C232.586 19.5772 232.568 19.5587 232.549 19.5401C232.531 19.5216 232.512 19.5031 232.494 19.4845C232.475 19.466 232.457 19.4474 232.438 19.4289C232.42 19.4104 232.401 19.3918 232.383 19.3733C232.364 19.3547 232.346 19.3362 232.327 19.3177C232.309 19.2991 232.29 19.2806 232.272 19.262C232.253 19.2435 232.235 19.225 232.216 19.2064C232.198 19.1879 232.179 19.1693 232.161 19.1508C232.142 19.1322 232.123 19.1137 232.105 19.0952C232.086 19.0766 232.068 19.0581 232.049 19.0395C232.031 19.021 232.012 19.0025 231.994 18.9839C231.975 18.9654 231.957 18.9468 231.938 18.9283C231.92 18.9098 231.901 18.8912 231.883 18.8727C231.864 18.8541 231.846 18.8356 231.827 18.817C231.809 18.7985 231.79 18.78 231.772 18.7614C231.753 18.7429 231.735 18.7243 231.716 18.7058C231.698 18.6873 231.679 18.6687 231.661 18.6502C231.642 18.6316 231.624 18.6131 231.605 18.5946C231.587 18.576 231.568 18.5575 231.55 18.5389C231.535 18.5204 231.516 18.5056 231.502 18.4907C231.657 18.6502 231.764 18.8578 231.764 19.084V24.016C231.764 24.5129 231.357 24.8763 230.906 24.8763H220.607V29.4226H222.007V26.278L222.018 26.2892Z" fill="#CD0921"/>
|
||||
<path d="M246.231 36.7876C246.231 37.24 245.868 37.6479 245.372 37.6479H239.998C239.772 37.6479 239.564 37.5403 239.405 37.3846C239.42 37.4031 239.439 37.418 239.453 37.4328C239.472 37.4513 239.49 37.4699 239.509 37.4884C239.527 37.507 239.546 37.5255 239.564 37.544C239.583 37.5626 239.601 37.5811 239.62 37.5997C239.638 37.6182 239.657 37.6367 239.675 37.6553C239.694 37.6738 239.713 37.6924 239.731 37.7109C239.75 37.7294 239.768 37.748 239.787 37.7665C239.805 37.7851 239.824 37.8036 239.842 37.8222C239.861 37.8407 239.879 37.8592 239.898 37.8778C239.916 37.8963 239.935 37.9149 239.953 37.9334C239.972 37.9519 239.99 37.9705 240.009 37.989C240.027 38.0076 240.046 38.0261 240.064 38.0446C240.083 38.0632 240.101 38.0817 240.12 38.1003C240.138 38.1188 240.157 38.1374 240.175 38.1559C240.194 38.1744 240.212 38.193 240.231 38.2115C240.249 38.2301 240.268 38.2486 240.286 38.2671C240.305 38.2857 240.323 38.3042 240.342 38.3228C240.36 38.3413 240.379 38.3599 240.397 38.3784C240.416 38.3969 240.434 38.4155 240.453 38.434C240.471 38.4526 240.49 38.4711 240.508 38.4896C240.527 38.5082 240.545 38.5267 240.564 38.5453C240.582 38.5638 240.601 38.5823 240.619 38.6009C240.638 38.6194 240.656 38.638 240.675 38.6565C240.693 38.6751 240.712 38.6936 240.73 38.7121C240.749 38.7307 240.768 38.7492 240.786 38.7678C240.945 38.942 241.167 39.0607 241.408 39.0607H246.783C247.279 39.0607 247.642 38.6528 247.642 38.2004V21.5096L246.242 20.1005V36.7987L246.231 36.7876Z" fill="#CD0921"/>
|
||||
<path d="M267.334 7.55907C267.315 7.54053 267.297 7.52199 267.278 7.50344C267.26 7.4849 267.241 7.46636 267.223 7.44782C267.204 7.42928 267.186 7.41074 267.167 7.3922C267.149 7.37366 267.13 7.35512 267.112 7.33657C267.093 7.31803 267.075 7.29949 267.056 7.28095C267.038 7.26241 267.019 7.24387 267.001 7.22533C266.982 7.20679 266.964 7.18825 266.945 7.1697C266.927 7.15116 266.908 7.13262 266.889 7.11408C266.871 7.09554 266.852 7.077 266.834 7.05846C266.815 7.03992 266.797 7.02137 266.778 7.00283C266.76 6.98429 266.741 6.96575 266.723 6.94721C266.704 6.92867 266.686 6.91013 266.667 6.89159C266.649 6.87305 266.63 6.8545 266.612 6.83596C266.593 6.81742 266.575 6.79888 266.556 6.78034C266.538 6.7618 266.519 6.74325 266.501 6.72471C266.482 6.70617 266.464 6.68763 266.445 6.66909C266.427 6.65055 266.408 6.63201 266.39 6.61347C266.371 6.59493 266.353 6.57638 266.334 6.55784C266.316 6.5393 266.297 6.52076 266.279 6.50222C266.26 6.48368 266.242 6.46514 266.223 6.44659C266.205 6.42805 266.186 6.40952 266.168 6.39098C266.149 6.37243 266.131 6.3539 266.112 6.33535C266.094 6.31681 266.075 6.29827 266.057 6.27972C266.042 6.26118 266.023 6.24635 266.009 6.23151C266.164 6.39097 266.271 6.59863 266.271 6.82484V37.2732C266.271 37.7256 265.864 38.089 265.413 38.089H264.691C264.554 38.089 264.195 37.9555 264.103 37.8628L265.513 39.2757C265.601 39.3647 265.964 39.5019 266.101 39.5019H266.823C267.274 39.5019 267.682 39.1385 267.682 38.6861V8.23397C267.682 7.99293 267.563 7.77044 267.389 7.61098C267.371 7.59244 267.352 7.5739 267.334 7.55536V7.55907Z" fill="#CD0921"/>
|
||||
<path d="M297.5 11.9347C297.5 11.9347 297.463 11.8976 297.445 11.879C297.426 11.8605 297.408 11.8419 297.389 11.8234C297.371 11.8049 297.352 11.7863 297.334 11.7678C297.315 11.7492 297.297 11.7307 297.278 11.7122C297.26 11.6936 297.241 11.6751 297.223 11.6565C297.204 11.638 297.186 11.6195 297.167 11.6009C297.149 11.5824 297.13 11.5638 297.111 11.5453C297.093 11.5267 297.074 11.5082 297.056 11.4897C297.037 11.4711 297.019 11.4526 297 11.434C296.982 11.4155 296.963 11.397 296.945 11.3784C296.926 11.3599 296.908 11.3413 296.889 11.3228C296.871 11.3043 296.852 11.2857 296.834 11.2672C296.815 11.2486 296.797 11.2301 296.778 11.2115C296.76 11.193 296.741 11.1745 296.723 11.1559C296.704 11.1374 296.686 11.1188 296.667 11.1003C296.649 11.0818 296.63 11.0632 296.612 11.0447C296.593 11.0261 296.575 11.0076 296.556 10.9891C296.538 10.9705 296.519 10.952 296.501 10.9334C296.482 10.9149 296.464 10.8963 296.445 10.8778C296.434 10.8667 296.423 10.8556 296.412 10.8444C296.423 10.8593 296.43 10.8704 296.441 10.8852C299.155 13.722 300.832 17.5526 300.832 21.7541C300.832 30.5315 293.695 37.6365 284.977 37.6365H273.957C273.735 37.6365 273.539 37.5327 273.395 37.3806C273.409 37.3992 273.428 37.414 273.443 37.4288C273.461 37.4474 273.48 37.4659 273.498 37.4845C273.517 37.503 273.535 37.5215 273.554 37.5401C273.572 37.5586 273.591 37.5772 273.609 37.5957C273.628 37.6142 273.646 37.6328 273.665 37.6513C273.683 37.6699 273.702 37.6884 273.72 37.707C273.739 37.7255 273.757 37.744 273.776 37.7626C273.794 37.7811 273.813 37.7997 273.831 37.8182C273.85 37.8367 273.868 37.8553 273.887 37.8738C273.905 37.8924 273.924 37.9109 273.942 37.9294C273.961 37.948 273.979 37.9665 273.998 37.9851C274.016 38.0036 274.035 38.0221 274.053 38.0407C274.072 38.0592 274.09 38.0778 274.109 38.0963C274.127 38.1148 274.146 38.1334 274.164 38.1519C274.183 38.1705 274.202 38.189 274.22 38.2076C274.239 38.2261 274.257 38.2446 274.276 38.2632C274.294 38.2817 274.313 38.3003 274.331 38.3188C274.35 38.3374 274.368 38.3559 274.387 38.3744C274.405 38.393 274.424 38.4115 274.442 38.43C274.461 38.4486 274.479 38.4671 274.498 38.4857C274.516 38.5042 274.535 38.5228 274.553 38.5413C274.572 38.5598 274.59 38.5784 274.609 38.5969C274.627 38.6155 274.646 38.634 274.664 38.6525C274.683 38.6711 274.701 38.6896 274.72 38.7082C274.738 38.7267 274.757 38.7452 274.775 38.7638C274.923 38.9344 275.131 39.053 275.368 39.053H286.388C295.105 39.053 302.242 31.948 302.242 23.1706C302.242 18.8134 300.447 14.8568 297.559 11.994C297.541 11.9754 297.522 11.9569 297.504 11.9384L297.5 11.9347Z" fill="#CD0921"/>
|
||||
<path d="M281.594 14.0259L285.929 14.0254C287.543 14.0254 289.013 14.4408 290.271 15.1565C290.027 14.7893 289.76 14.4408 289.464 14.1181C288.083 13.1763 286.403 12.6237 284.526 12.6237H280.191V29.3887H281.591V14.0254L281.594 14.0259Z" fill="#CD0921"/>
|
||||
<path d="M22.0974 37.8837H5.11392C4.8659 37.8837 4.65861 37.7798 4.50684 37.6204C4.52164 37.6389 4.54015 37.6537 4.55495 37.6686C4.57346 37.6871 4.59197 37.7057 4.61048 37.7242C4.62899 37.7427 4.6475 37.7613 4.66601 37.7798C4.68452 37.7984 4.70302 37.8169 4.72153 37.8354C4.74004 37.854 4.75855 37.8725 4.77706 37.8911C4.79557 37.9096 4.81408 37.9282 4.83258 37.9467C4.85109 37.9652 4.8696 37.9838 4.88811 38.0023C4.90662 38.0209 4.92513 38.0394 4.94364 38.0579C4.96215 38.0765 4.98065 38.095 4.99916 38.1136C5.01767 38.1321 5.03618 38.1507 5.05469 38.1692C5.0732 38.1877 5.09171 38.2063 5.11021 38.2248C5.12872 38.2434 5.14723 38.2619 5.16574 38.2804C5.18425 38.299 5.20276 38.3175 5.22127 38.3361C5.23977 38.3546 5.25828 38.3731 5.27679 38.3917C5.2953 38.4102 5.31381 38.4288 5.33232 38.4473C5.35083 38.4658 5.36934 38.4844 5.38784 38.5029C5.40635 38.5215 5.42486 38.54 5.44337 38.5586C5.46188 38.5771 5.48039 38.5956 5.4989 38.6142C5.5174 38.6327 5.53591 38.6513 5.55442 38.6698C5.57293 38.6883 5.59144 38.7069 5.60995 38.7254C5.62846 38.744 5.64696 38.7625 5.66547 38.781C5.68398 38.7996 5.70249 38.8181 5.721 38.8367C5.73951 38.8552 5.75802 38.8738 5.77653 38.8923C5.79503 38.9108 5.81354 38.9294 5.83205 38.9479C5.85056 38.9665 5.86907 38.985 5.88758 39.0035C6.04305 39.1778 6.26145 39.2928 6.52428 39.2928H23.5078C24.0038 39.2928 24.3666 38.8849 24.3666 38.4325V33.5005C24.3666 33.2595 24.2592 33.037 24.089 32.8775C24.0705 32.859 24.052 32.8404 24.0334 32.8219C24.0149 32.8034 23.9964 32.7848 23.9779 32.7663C23.9594 32.7477 23.9409 32.7292 23.9224 32.7107C23.9039 32.6921 23.8854 32.6736 23.8669 32.655C23.8484 32.6365 23.8298 32.618 23.8113 32.5994C23.7928 32.5809 23.7743 32.5623 23.7558 32.5438C23.7373 32.5252 23.7188 32.5067 23.7003 32.4882C23.6818 32.4696 23.6633 32.4511 23.6448 32.4325C23.6263 32.414 23.6077 32.3955 23.5892 32.3769C23.5707 32.3584 23.5522 32.3398 23.5337 32.3213C23.5152 32.3027 23.4967 32.2842 23.4782 32.2657C23.4597 32.2471 23.4412 32.2286 23.4227 32.21C23.4042 32.1915 23.3856 32.173 23.3671 32.1544C23.3486 32.1359 23.3301 32.1173 23.3116 32.0988C23.2931 32.0803 23.2746 32.0617 23.2561 32.0432C23.2376 32.0246 23.2191 32.0061 23.2006 31.9876C23.182 31.969 23.1635 31.9505 23.145 31.9319C23.1265 31.9134 23.108 31.8948 23.0895 31.8763C23.071 31.8578 23.0525 31.8392 23.034 31.8207C23.0155 31.8021 22.997 31.7836 22.9785 31.7651C22.9599 31.7465 22.9414 31.728 22.9229 31.7094C22.9044 31.6909 22.8859 31.6723 22.8674 31.6538C22.8489 31.6353 22.8304 31.6167 22.8119 31.5982C22.7934 31.5796 22.7749 31.5611 22.7563 31.5426C22.7415 31.524 22.723 31.5092 22.7082 31.4944C22.86 31.6538 22.9562 31.8615 22.9562 32.0877V37.0196C22.9562 37.472 22.5935 37.8799 22.0974 37.8799V37.8837Z" fill="#CD0921"/>
|
||||
<path d="M12.7462 8.47343C12.7462 8.23239 12.6278 8.0099 12.4538 7.85044C12.4353 7.8319 12.4168 7.81336 12.3983 7.79482C12.3798 7.77628 12.3613 7.75773 12.3428 7.73919C12.3243 7.72065 12.3058 7.70211 12.2873 7.68357C12.2688 7.66503 12.2503 7.64649 12.2318 7.62795C12.2132 7.60941 12.1947 7.59087 12.1762 7.57232C12.1577 7.55378 12.1392 7.53524 12.1207 7.5167C12.1022 7.49816 12.0837 7.47962 12.0652 7.46107C12.0467 7.44253 12.0282 7.42399 12.0097 7.40545C11.9912 7.38691 11.9727 7.36837 11.9542 7.34983C11.9357 7.33129 11.9171 7.31275 11.8986 7.29421C11.8801 7.27566 11.8616 7.25712 11.8431 7.23858C11.8246 7.22004 11.8061 7.2015 11.7876 7.18296C11.7691 7.16442 11.7506 7.14587 11.7321 7.12733C11.7136 7.10879 11.6951 7.09025 11.6766 7.07171C11.6581 7.05317 11.6396 7.03463 11.6211 7.01609C11.6026 6.99755 11.584 6.979 11.5655 6.96046C11.547 6.94192 11.5285 6.92338 11.51 6.90484C11.4915 6.8863 11.473 6.86776 11.4545 6.84921C11.436 6.83067 11.4175 6.81213 11.399 6.79359C11.3805 6.77505 11.362 6.75651 11.3435 6.73797C11.325 6.71943 11.3065 6.70089 11.288 6.68234C11.2695 6.6638 11.2509 6.64526 11.2324 6.62672C11.2139 6.60818 11.1954 6.58964 11.1769 6.5711C11.1584 6.55255 11.1399 6.53402 11.1214 6.51547C11.1103 6.50435 11.1029 6.49693 11.0918 6.48581C11.2361 6.64155 11.3324 6.8418 11.3324 7.05688V29.6586H12.7314V8.45859L12.7462 8.47343Z" fill="#CD0921"/>
|
||||
<path d="M83.4791 7.52415L73.3623 22.5907V37.0232C73.3623 37.4756 72.9551 37.8835 72.5035 37.8835H67.1286C66.8806 37.8835 66.6733 37.7797 66.5215 37.6203C66.5363 37.6388 66.5548 37.6536 66.5696 37.6685C66.5881 37.687 66.6066 37.7055 66.6251 37.7241C66.6436 37.7426 66.6622 37.7612 66.6807 37.7797C66.6992 37.7982 66.7177 37.8168 66.7362 37.8353C66.7547 37.8539 66.7732 37.8724 66.7917 37.891C66.8102 37.9095 66.8287 37.928 66.8472 37.9466C66.8657 37.9651 66.8843 37.9837 66.9028 38.0022C66.9213 38.0207 66.9398 38.0393 66.9583 38.0578C66.9768 38.0764 66.9953 38.0949 67.0138 38.1134C67.0323 38.132 67.0508 38.1505 67.0693 38.1691C67.0879 38.1876 67.1064 38.2062 67.1249 38.2247C67.1434 38.2432 67.1619 38.2618 67.1804 38.2803C67.1989 38.2989 67.2174 38.3174 67.2359 38.3359C67.2544 38.3545 67.2729 38.373 67.2915 38.3916C67.31 38.4101 67.3285 38.4287 67.347 38.4472C67.3655 38.4657 67.384 38.4843 67.4025 38.5028C67.421 38.5214 67.4395 38.5399 67.458 38.5584C67.4765 38.577 67.495 38.5955 67.5136 38.6141C67.5321 38.6326 67.5506 38.6511 67.5691 38.6697C67.5876 38.6882 67.6061 38.7068 67.6246 38.7253C67.6431 38.7438 67.6616 38.7624 67.6801 38.7809C67.6986 38.7995 67.7171 38.818 67.7356 38.8366C67.7542 38.8551 67.7727 38.8736 67.7912 38.8922C67.8097 38.9107 67.8282 38.9293 67.8467 38.9478C67.8652 38.9663 67.8837 38.9849 67.9022 39.0034C68.054 39.1777 68.2761 39.2927 68.5389 39.2927H73.9138C74.3654 39.2927 74.7726 38.8848 74.7726 38.4324V23.9999L84.8895 8.93328C85.1227 8.55133 85.0486 8.11376 84.771 7.85418C84.7525 7.83564 84.734 7.8171 84.7155 7.79856C84.697 7.78001 84.6784 7.76147 84.6599 7.74293C84.6414 7.72439 84.6229 7.70585 84.6044 7.68731C84.5859 7.66877 84.5674 7.65022 84.5489 7.63168C84.5304 7.61314 84.5119 7.5946 84.4934 7.57606C84.4749 7.55752 84.4564 7.53898 84.4379 7.52044C84.4193 7.5019 84.4008 7.48335 84.3823 7.46481C84.3638 7.44627 84.3453 7.42773 84.3268 7.40919C84.3083 7.39065 84.2898 7.37211 84.2713 7.35356C84.2528 7.33502 84.2343 7.31648 84.2157 7.29794C84.1972 7.2794 84.1787 7.26086 84.1602 7.24232C84.1417 7.22378 84.1232 7.20524 84.1047 7.18669C84.0862 7.16815 84.0677 7.14961 84.0492 7.13107C84.0307 7.11253 84.0121 7.09399 83.9936 7.07545C83.9751 7.0569 83.9566 7.03837 83.9381 7.01982C83.9196 7.00128 83.9011 6.98274 83.8826 6.9642C83.8641 6.94566 83.8456 6.92712 83.8271 6.90858C83.8085 6.89003 83.79 6.87149 83.7715 6.85295C83.753 6.83441 83.7345 6.81587 83.716 6.79733C83.6975 6.77879 83.679 6.76025 83.6605 6.74171C83.642 6.72316 83.6235 6.70462 83.605 6.68608C83.5865 6.66754 83.5679 6.649 83.5494 6.63046C83.5309 6.61192 83.5124 6.59337 83.4939 6.57483C83.4754 6.55629 83.4569 6.53775 83.4384 6.51921C83.4236 6.50067 83.4051 6.48584 83.3866 6.46729C83.642 6.73058 83.7049 7.14961 83.4754 7.52044L83.4791 7.52415Z" fill="#CD0921"/>
|
||||
<path d="M3.70703 36.323H20.6906C21.0792 36.323 21.3976 36.0041 21.3976 35.6147V30.6828C21.3976 30.2934 21.0792 29.9745 20.6906 29.9745H9.78897V5.66326C9.78897 5.29244 9.45211 4.95499 9.08194 4.95499H3.70703C3.31835 4.95499 3 5.2739 3 5.66326V35.6147C3 36.0041 3.31835 36.323 3.70703 36.323Z" fill="#CD0921"/>
|
||||
<path d="M54.8641 20.6847C54.8641 11.7626 47.6383 4.50188 38.7542 4.50188C34.4306 4.50188 30.3883 6.18172 27.3677 9.2299C24.3508 12.2744 22.6924 16.3423 22.6924 20.6847C22.6924 25.027 24.3545 29.0727 27.3677 32.0912C30.3809 35.1134 34.4269 36.7747 38.7542 36.7747C43.0815 36.7747 47.1386 35.1097 50.1629 32.0912C53.1909 29.069 54.8604 25.0159 54.8604 20.6847H54.8641ZM38.7542 29.8366C33.7161 29.8366 29.6146 25.7316 29.6146 20.681C29.6146 15.6303 33.7161 11.4363 38.7542 11.4363C43.7922 11.4363 47.9382 15.5858 47.9382 20.681C47.9382 25.7761 43.8181 29.8366 38.7542 29.8366Z" fill="#CD0921"/>
|
||||
<path d="M65.015 21.1821V35.6146C65.015 36.0039 65.3333 36.3228 65.722 36.3228H71.0969C71.4671 36.3228 71.804 35.9854 71.804 35.6146V21.1339L71.8299 21.0968L81.9467 6.03019C82.091 5.79657 82.1021 5.52216 81.9763 5.29967C81.8541 5.08088 81.6246 4.9548 81.347 4.9548H75.4761C75.1577 4.9548 75.017 5.11055 74.8727 5.29967L68.4724 14.752L62.0684 5.29225C61.8981 5.06605 61.7019 4.95109 61.4724 4.95109H55.6015C55.3239 4.95109 55.0944 5.07717 54.9722 5.29596C54.8463 5.51845 54.8611 5.79657 55.0055 6.0339L65.0113 21.1784L65.015 21.1821Z" fill="#CD0921"/>
|
||||
<path d="M107.725 36.3223C107.992 36.3223 108.218 36.2148 108.336 36.0257C108.455 35.8402 108.462 35.5955 108.355 35.3619L94.2177 4.9135C94.103 4.67988 93.829 4.50188 93.5884 4.50188H93.1368C92.8925 4.50188 92.6223 4.67988 92.5038 4.91721L78.3706 35.3619C78.2633 35.5955 78.2707 35.8402 78.3891 36.0257C78.5113 36.2148 78.7334 36.3223 78.9999 36.3223H83.9676C84.9005 36.3223 85.3003 35.6993 85.4557 35.3285L87.1215 31.6166H99.6L101.266 35.2803C101.654 36.0998 101.962 36.3223 102.709 36.3223H107.725ZM89.6979 25.765L93.222 17.9962H93.4626L97.0347 25.765H89.6979Z" fill="#CD0921"/>
|
||||
<path d="M129.843 35.6147V30.6828C129.843 30.2934 129.525 29.9745 129.136 29.9745H118.234V5.66326C118.234 5.29244 117.897 4.95499 117.527 4.95499H112.152C111.764 4.95499 111.445 5.2739 111.445 5.66326V35.6147C111.445 36.0041 111.764 36.323 112.152 36.323H129.136C129.525 36.323 129.843 36.0041 129.843 35.6147Z" fill="#CD0921"/>
|
||||
<path d="M151.178 11.0629H163.842C164.231 11.0629 164.549 10.7439 164.549 10.3546V5.42262C164.549 5.03325 164.231 4.71434 163.842 4.71434H145.145C144.756 4.71434 144.438 5.03325 144.438 5.42262V35.3741C144.438 35.7635 144.756 36.0824 145.145 36.0824H150.475C150.845 36.0824 151.182 35.7449 151.182 35.3741V24.2271H161.632C162.002 24.2271 162.339 23.8897 162.339 23.5188V18.5869C162.339 18.2161 162.002 17.8786 161.632 17.8786H151.182V11.0591L151.178 11.0629Z" fill="#CD0921"/>
|
||||
<path d="M185.745 36.0853H191.753C192.042 36.0853 192.268 35.9703 192.394 35.759C192.523 35.5402 192.523 35.2472 192.386 34.9988L186.119 23.3586L186.275 23.2956C190.339 21.6565 192.864 18.2264 192.864 14.3402C192.864 9.03366 188.514 4.71726 183.169 4.71726H169.665C169.276 4.71726 168.958 5.03617 168.958 5.42553V35.377C168.958 35.7664 169.276 36.0853 169.665 36.0853H175.04C175.41 36.0853 175.747 35.7478 175.747 35.377V23.6886H179.108L179.149 23.7702L185.157 35.759C185.22 35.8851 185.434 36.0816 185.745 36.0816V36.0853ZM182.584 18.2449H175.747V10.8841H182.584C184.527 10.8841 186.167 12.5268 186.167 14.4737C186.167 16.4205 184.494 18.2449 182.584 18.2449Z" fill="#CD0921"/>
|
||||
<path d="M204.446 4.71434H199.026C198.636 4.71434 198.319 5.03145 198.319 5.42262V35.3741C198.319 35.7653 198.636 36.0824 199.026 36.0824H204.446C204.836 36.0824 205.153 35.7653 205.153 35.3741V5.42262C205.153 5.03145 204.836 4.71434 204.446 4.71434Z" fill="#CD0921"/>
|
||||
<path d="M219.064 11.0629H231.728C232.116 11.0629 232.435 10.7439 232.435 10.3546V5.42262C232.435 5.03325 232.116 4.71434 231.728 4.71434H213.03C212.642 4.71434 212.323 5.03325 212.323 5.42262V35.3741C212.323 35.7635 212.642 36.0824 213.03 36.0824H231.728C232.116 36.0824 232.435 35.7635 232.435 35.3741V30.4421C232.435 30.0528 232.116 29.7339 231.728 29.7339H219.064V23.3223H229.514C229.903 23.3223 230.221 23.0034 230.221 22.614V17.6821C230.221 17.3112 229.884 16.9738 229.514 16.9738H219.064V11.0591V11.0629Z" fill="#CD0921"/>
|
||||
<path d="M263.297 36.5388H264.018C264.4 36.5388 264.725 36.2347 264.725 35.875V5.42289C264.725 5.05207 264.389 4.71461 264.018 4.71461H258.599C258.21 4.71461 257.892 5.03352 257.892 5.42289V21.6353H257.637L257.592 21.5945L239.617 4.26221H238.547C238.166 4.26221 237.84 4.56629 237.84 4.92599L237.884 35.3744C237.884 35.7452 238.221 36.0826 238.591 36.0826H243.966C244.355 36.0826 244.673 35.7637 244.673 35.3744V18.3461H244.932L244.977 18.3906L262.815 36.3533C262.871 36.409 263.189 36.5351 263.297 36.5351V36.5388Z" fill="#CD0921"/>
|
||||
<path d="M283.578 4.71434H272.558C272.199 4.71434 271.896 5.03696 271.896 5.42262V35.3741C271.896 35.7598 272.199 36.0824 272.558 36.0824H283.578C292.236 36.0824 299.281 29.0256 299.281 20.352C299.281 11.6784 292.236 4.71434 283.578 4.71434ZM283.127 29.6894H278.64V11.0629H283.127C288.235 11.0629 292.085 15.0566 292.085 20.352C292.085 25.6474 288.235 29.6894 283.127 29.6894Z" fill="#CD0921"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 46 KiB |
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user