fix about page
@@ -211,7 +211,7 @@ button {
|
||||
}
|
||||
|
||||
.marquee-track {
|
||||
animation: marquee 15s linear infinite;
|
||||
animation: marquee 80s linear infinite;
|
||||
will-change: transform;
|
||||
}
|
||||
|
||||
|
||||
26
app/page.tsx
@@ -5,6 +5,15 @@ import { PossibilitiesSection } from "@/components/aiero/PossibilitiesSection";
|
||||
import { TinkerSection } from "@/components/aiero/TinkerSection";
|
||||
import { MarqueeStrip } from "@/components/aiero/MarqueeStrip";
|
||||
import { FeaturesSection } from "@/components/aiero/FeaturesSection";
|
||||
import { WOWSection } from "@/components/aiero/WOWSection";
|
||||
import { BenefitsGridSection } from "@/components/aiero/BenefitsGridSection";
|
||||
import { MetricsSection } from "@/components/aiero/MetricsSection";
|
||||
import { HowItWorksSection } from "@/components/aiero/HowItWorksSection";
|
||||
import { TeamSection } from "@/components/aiero/about/TeamSection";
|
||||
import { TestimonialsSection } from "@/components/aiero/services/TestimonialsSection";
|
||||
import { BlogSection } from "@/components/aiero/BlogSection";
|
||||
import { PartnerLogosSection } from "@/components/shared/PartnerLogosSection";
|
||||
import { PreFooterCTA } from "@/components/shared/PreFooterCTA";
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
@@ -16,8 +25,23 @@ export default function Home() {
|
||||
<CardsGrid />
|
||||
<PossibilitiesSection />
|
||||
<TinkerSection />
|
||||
<MarqueeStrip />
|
||||
<MarqueeStrip text="/ Join ChatGPT in shaping the future of technology for whole world." />
|
||||
<section
|
||||
className="relative z-[15] mt-[40px] mb-[-90px] px-[20px] pb-[40px]"
|
||||
style={{ transform: "rotate(-2.07deg)" }}
|
||||
>
|
||||
<div className="h-[130px] w-full rounded-[20px] bg-aiero-dark" />
|
||||
</section>
|
||||
<WOWSection />
|
||||
<FeaturesSection />
|
||||
<BenefitsGridSection />
|
||||
<MetricsSection />
|
||||
<HowItWorksSection />
|
||||
<TeamSection />
|
||||
<TestimonialsSection />
|
||||
<BlogSection />
|
||||
<PartnerLogosSection />
|
||||
<PreFooterCTA />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
|
||||
51
components/aiero/BenefitsGridSection.tsx
Normal file
@@ -0,0 +1,51 @@
|
||||
import { CheckCircle2 } from "lucide-react";
|
||||
|
||||
export function BenefitsGridSection() {
|
||||
return (
|
||||
<section className="relative overflow-hidden bg-white px-[20px] pb-[60px] md:pb-[100px]">
|
||||
<div className="mx-auto max-w-[1260px]">
|
||||
|
||||
<div className="grid grid-cols-1 gap-[30px] md:grid-cols-3">
|
||||
|
||||
{/* Card 1 */}
|
||||
<div className="flex flex-col gap-[20px] rounded-[25px] border border-aiero-card-border p-[40px] transition-transform duration-300 hover:-translate-y-2">
|
||||
<h4 className="text-[22px] font-bold leading-[1.3] text-aiero-dark font-[var(--font-sora)]">
|
||||
AI-Powered Marketing & Personalization
|
||||
</h4>
|
||||
<ul className="flex flex-col gap-[15px] mt-[10px]">
|
||||
<li className="flex items-start gap-[10px] text-[16px] text-aiero-text-muted">
|
||||
<span className="mt-[5px] h-[6px] w-[6px] rounded-full bg-aiero-accent-teal shrink-0"></span>
|
||||
Hyper-personalized recommendations
|
||||
</li>
|
||||
<li className="flex items-start gap-[10px] text-[16px] text-aiero-text-muted">
|
||||
<span className="mt-[5px] h-[6px] w-[6px] rounded-full bg-aiero-accent-teal shrink-0"></span>
|
||||
AI-driven ad targeting & optimization
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
{/* Card 2 */}
|
||||
<div className="flex flex-col gap-[20px] rounded-[25px] border border-aiero-card-border p-[40px] transition-transform duration-300 hover:-translate-y-2">
|
||||
<h4 className="text-[22px] font-bold leading-[1.3] text-aiero-dark font-[var(--font-sora)]">
|
||||
Seamless AI integration for your business success
|
||||
</h4>
|
||||
<p className="text-[16px] leading-[1.6] text-aiero-text-muted mt-[10px]">
|
||||
Seamless integration with existing systems and platforms & Scalable and flexible architecture
|
||||
</p>
|
||||
</div>
|
||||
|
||||
{/* Card 3 (OpenAI Logo) */}
|
||||
<div className="flex items-center justify-center rounded-[25px] border border-aiero-card-border bg-[#F8F9FA] p-[40px] transition-transform duration-300 hover:-translate-y-2">
|
||||
<img
|
||||
src="https://8ded8880.delivery.rocketcdn.me/themes/aiero/wp-content/uploads/2024/12/openai-logo-1.png"
|
||||
alt="OpenAI Logo"
|
||||
className="w-[180px] h-auto object-contain"
|
||||
/>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
77
components/aiero/BlogSection.tsx
Normal file
@@ -0,0 +1,77 @@
|
||||
import Link from "next/link";
|
||||
import { ArrowUpRight } from "lucide-react";
|
||||
import { SectionHeading } from "@/components/shared/SectionHeading";
|
||||
|
||||
const blogPosts = [
|
||||
{
|
||||
title: "How to Build a Custom AI Model for Your Business",
|
||||
image: "https://8ded8880.delivery.rocketcdn.me/themes/aiero/wp-content/uploads/2024/12/portrait-confident-man.jpg", // Placeholder
|
||||
category: "AI Technology",
|
||||
date: "March 15, 2025",
|
||||
link: "/blog/custom-ai-model",
|
||||
},
|
||||
{
|
||||
title: "The Future of Machine Learning in Enterprise",
|
||||
image: "https://8ded8880.delivery.rocketcdn.me/themes/aiero/wp-content/uploads/2025/02/Group-18301.jpg", // Placeholder
|
||||
category: "Machine Learning",
|
||||
date: "April 2, 2025",
|
||||
link: "/blog/machine-learning-enterprise",
|
||||
},
|
||||
{
|
||||
title: "Ethics in AI: What You Need to Know",
|
||||
image: "https://8ded8880.delivery.rocketcdn.me/themes/aiero/wp-content/uploads/2024/12/3d-woman-shape-glowing-with-bright-holographic-colors-1-min.png", // Placeholder
|
||||
category: "AI Ethics",
|
||||
date: "April 10, 2025",
|
||||
link: "/blog/ethics-in-ai",
|
||||
},
|
||||
];
|
||||
|
||||
export function BlogSection() {
|
||||
return (
|
||||
<section className="bg-[#F8F9FA] px-[20px] py-[80px] md:py-[120px]">
|
||||
<div className="mx-auto max-w-[1260px]">
|
||||
<div className="mb-[60px] flex flex-col items-center text-center">
|
||||
<SectionHeading
|
||||
subtitle="blog"
|
||||
title="Exploring the world of artificial intelligence with Aiero blogging"
|
||||
titleClassName="max-w-[800px] text-aiero-dark"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="grid grid-cols-1 gap-[30px] md:grid-cols-2 lg:grid-cols-3">
|
||||
{blogPosts.map((post, index) => (
|
||||
<div key={index} className="group flex flex-col overflow-hidden rounded-[25px] border border-aiero-card-border bg-white transition-shadow duration-300 hover:shadow-xl">
|
||||
<div className="relative h-[250px] w-full overflow-hidden">
|
||||
<img
|
||||
src={post.image}
|
||||
alt={post.title}
|
||||
className="h-full w-full object-cover transition-transform duration-500 group-hover:scale-110"
|
||||
/>
|
||||
<div className="absolute left-[20px] top-[20px] rounded-full bg-white px-[15px] py-[5px] text-[12px] font-bold tracking-wide text-aiero-dark uppercase font-[var(--font-sora)]">
|
||||
{post.category}
|
||||
</div>
|
||||
</div>
|
||||
<div className="flex flex-col p-[30px]">
|
||||
<div className="mb-[15px] text-[14px] text-aiero-text-muted">
|
||||
{post.date}
|
||||
</div>
|
||||
<h4 className="mb-[20px] text-[22px] font-bold leading-[1.3] text-aiero-dark font-[var(--font-sora)] transition-colors group-hover:text-aiero-accent-teal">
|
||||
<Link href={post.link}>{post.title}</Link>
|
||||
</h4>
|
||||
<div className="mt-auto">
|
||||
<Link
|
||||
href={post.link}
|
||||
className="inline-flex items-center gap-[10px] text-[15px] font-bold text-aiero-dark font-[var(--font-sora)] hover:text-aiero-accent-teal"
|
||||
>
|
||||
Read more
|
||||
<ArrowUpRight className="h-[18px] w-[18px]" />
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
65
components/aiero/HowItWorksSection.tsx
Normal file
@@ -0,0 +1,65 @@
|
||||
import { SectionHeading } from "@/components/shared/SectionHeading";
|
||||
import { ArrowLeft, ArrowRight } from "lucide-react";
|
||||
|
||||
export function HowItWorksSection() {
|
||||
const steps = [
|
||||
{
|
||||
number: "01",
|
||||
title: "Neurons and Layers",
|
||||
description: "A neural network consists of interconnected nodes called neurons. Neurons are organized into layers.",
|
||||
},
|
||||
{
|
||||
number: "02",
|
||||
title: "Activation Function",
|
||||
description: "Each neuron applies an activation function to the weighted sum of its inputs and produces an output",
|
||||
},
|
||||
{
|
||||
number: "03",
|
||||
title: "Feedforward Process",
|
||||
description: "The inputs are multiplied by their respective weights, summed up, and passed through the activation function.",
|
||||
},
|
||||
{
|
||||
number: "04",
|
||||
title: "Activation Function",
|
||||
description: "The inputs are multiplied by their respective weights, summed up, and passed through the activation function.",
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<section className="bg-white px-[20px] py-[60px] md:py-[100px]">
|
||||
<div className="mx-auto max-w-[1260px]">
|
||||
<div className="flex flex-col md:flex-row md:items-end justify-between gap-[30px] mb-[60px]">
|
||||
<SectionHeading
|
||||
subtitle="how it works"
|
||||
title="Neural networks are a fundamental component of Artificial Intelligence (AI) systems"
|
||||
titleClassName="max-w-[700px] text-aiero-dark"
|
||||
/>
|
||||
<div className="flex gap-[15px]">
|
||||
<button className="flex h-[50px] w-[50px] items-center justify-center rounded-full border border-aiero-card-border text-aiero-dark transition-colors hover:bg-aiero-card-border">
|
||||
<ArrowLeft size={20} />
|
||||
</button>
|
||||
<button className="flex h-[50px] w-[50px] items-center justify-center rounded-full border border-aiero-card-border text-aiero-dark transition-colors hover:bg-aiero-card-border">
|
||||
<ArrowRight size={20} />
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-[30px]">
|
||||
{steps.map((step, index) => (
|
||||
<div key={index} className="flex flex-col border-t border-aiero-card-border pt-[30px]">
|
||||
<div className="text-[50px] font-bold text-transparent font-[var(--font-sora)]" style={{ WebkitTextStroke: "1px #3F3F3F" }}>
|
||||
{step.number}
|
||||
</div>
|
||||
<h6 className="mt-[20px] mb-[15px] text-[20px] font-bold text-aiero-dark font-[var(--font-sora)]">
|
||||
{step.title}
|
||||
</h6>
|
||||
<p className="text-[16px] leading-[1.6] text-aiero-text-muted">
|
||||
{step.description}
|
||||
</p>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
@@ -10,7 +10,7 @@ export function MarqueeStrip({
|
||||
const marqueeItems = Array.from({ length: 6 });
|
||||
|
||||
return (
|
||||
<div className={`relative z-10 mx-[-5px] mb-[-90px] mt-[20px] overflow-hidden bg-gradient-to-r from-aiero-teal to-aiero-blue py-[42px] ${className}`} style={{ transform: "rotate(-2.07deg)" }}>
|
||||
<div className={`relative z-10 mx-[-5px] mb-[-20px] mt-0 overflow-hidden bg-gradient-to-r from-aiero-teal to-aiero-blue py-[42px] ${className}`} style={{ transform: "rotate(-2.07deg)" }}>
|
||||
<div className="marquee-track flex w-max whitespace-nowrap">
|
||||
{[0, 1].map((track) => (
|
||||
<div key={track} className="flex shrink-0 items-center">
|
||||
|
||||
46
components/aiero/MetricsSection.tsx
Normal file
@@ -0,0 +1,46 @@
|
||||
import { Counter } from "@/components/shared/Counter";
|
||||
|
||||
export function MetricsSection() {
|
||||
return (
|
||||
<section className="bg-white px-[20px] py-[60px] md:py-[100px]">
|
||||
<div className="mx-auto max-w-[1260px]">
|
||||
<div className="grid grid-cols-1 gap-[50px] md:grid-cols-2 md:gap-[80px]">
|
||||
|
||||
{/* Left Metric */}
|
||||
<div className="flex flex-col gap-[20px]">
|
||||
<Counter
|
||||
target={125}
|
||||
suffix="k"
|
||||
numberClassName="text-[60px] md:text-[80px] font-bold leading-none text-transparent gradient-text-purple font-[var(--font-sora)]"
|
||||
title=""
|
||||
/>
|
||||
<h3 className="text-[28px] font-bold leading-[1.3] text-aiero-dark font-[var(--font-sora)]">
|
||||
Happy & satisfied customers
|
||||
</h3>
|
||||
<p className="text-[16px] leading-[1.8] text-aiero-text-muted mt-[10px]">
|
||||
Achieved a 95% customer satisfaction rate across all AI solutions.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
{/* Right Metric */}
|
||||
<div className="flex flex-col gap-[20px]">
|
||||
<Counter
|
||||
prefix="$"
|
||||
target={150}
|
||||
suffix="b"
|
||||
numberClassName="text-[60px] md:text-[80px] font-bold leading-none text-transparent gradient-text-purple font-[var(--font-sora)]"
|
||||
title=""
|
||||
/>
|
||||
<h3 className="text-[28px] font-bold leading-[1.3] text-aiero-dark font-[var(--font-sora)]">
|
||||
Earns with our Aiero product
|
||||
</h3>
|
||||
<p className="text-[16px] leading-[1.8] text-aiero-text-muted mt-[10px]">
|
||||
Delivered over $150 billion in cost savings for clients through optimized AI solutions.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
@@ -1,42 +1,50 @@
|
||||
export function TinkerSection() {
|
||||
return (
|
||||
<section className="relative px-[20px] py-[60px] md:py-[100px] overflow-hidden">
|
||||
<div className="mx-auto flex max-w-[1260px] flex-col gap-[50px] lg:flex-row lg:items-center">
|
||||
<div className="mx-auto flex max-w-[1340px] flex-col gap-[50px] lg:flex-row lg:items-center lg:gap-0">
|
||||
|
||||
{/* Left Column - Images */}
|
||||
<div className="relative flex w-full flex-col items-center justify-center lg:w-1/2">
|
||||
{/* Background Glow */}
|
||||
<div className="absolute inset-0 z-0 flex items-center justify-center pointer-events-none">
|
||||
<div className="relative flex w-full flex-col lg:mt-[30px] lg:w-[22%]">
|
||||
|
||||
{/* Background Glow (elementor-absolute) */}
|
||||
<div className="absolute left-0 top-0 z-0 pointer-events-none min-[576px]:left-[-40vw] min-[576px]:top-[-19.252vw]">
|
||||
<img
|
||||
src="https://8ded8880.delivery.rocketcdn.me/themes/aiero/wp-content/uploads/2025/02/Group-18433.svg"
|
||||
alt=""
|
||||
className="w-[120%] max-w-[800px] h-auto object-contain opacity-80"
|
||||
width={1283}
|
||||
height={1471}
|
||||
className="h-auto w-auto max-w-[100vw] object-contain opacity-80"
|
||||
aria-hidden="true"
|
||||
/>
|
||||
</div>
|
||||
{/* Big X Image */}
|
||||
<div className="relative z-10 w-full max-w-[450px]">
|
||||
|
||||
{/* Main Vector Image */}
|
||||
<div className="relative z-10 min-[576px]:ml-[-26vw]">
|
||||
<img
|
||||
src="https://8ded8880.delivery.rocketcdn.me/themes/aiero/wp-content/uploads/2025/01/Vector-13.png"
|
||||
alt="Neural Network Visualization"
|
||||
className="w-full h-auto"
|
||||
width={670}
|
||||
height={694}
|
||||
className="w-full h-auto max-w-[800px] object-contain"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Right Column - Text & Partners */}
|
||||
<div className="relative z-10 flex w-full flex-col lg:w-1/2 lg:pl-[5%]">
|
||||
<div className="relative z-10 flex w-full flex-col lg:w-[78%]">
|
||||
<div className="min-[576px]:mr-[-4%]">
|
||||
<h2
|
||||
className="mb-[60px] text-aiero-dark tracking-[-0.03em]"
|
||||
style={{
|
||||
fontFamily: "var(--font-dm-sans)",
|
||||
fontSize: "clamp(36px, 4.5vw, 65px)",
|
||||
fontSize: "clamp(36px, 4.5vw, 58px)",
|
||||
fontWeight: 500,
|
||||
lineHeight: 1.1,
|
||||
}}
|
||||
>
|
||||
Tinker with a <span className="gradient-text-purple">Neural Network right here</span> in your browser. Don’t worry, you can’t break it. We Promise.
|
||||
</h2>
|
||||
</div>
|
||||
|
||||
{/* Partners row */}
|
||||
<div className="flex flex-wrap items-center justify-start gap-x-[40px] gap-y-[30px]">
|
||||
|
||||
75
components/aiero/WOWSection.tsx
Normal file
@@ -0,0 +1,75 @@
|
||||
import Link from "next/link";
|
||||
import { ArrowIcon } from "@/components/shared/icons/ArrowIcon";
|
||||
import { PageContainer } from "@/components/shared/PageContainer";
|
||||
|
||||
export function WOWSection() {
|
||||
return (
|
||||
<section className="relative z-20 px-[20px]">
|
||||
<div className="relative z-20 mx-auto max-w-[1340px] overflow-hidden rounded-t-[20px] bg-aiero-dark pt-[30px] pb-[60px] md:pt-[40px] md:pb-[80px]">
|
||||
<PageContainer>
|
||||
<div className="grid grid-cols-1 gap-[40px] lg:grid-cols-2 lg:gap-[60px]">
|
||||
<div className="flex flex-col justify-between">
|
||||
<div className="mb-[35px] md:mb-[70px] md:pr-[10%]">
|
||||
<span
|
||||
className="mb-[18px] block text-[12px] font-semibold uppercase tracking-[0.1em] text-white"
|
||||
style={{ fontFamily: "var(--font-sora)" }}
|
||||
>
|
||||
[ about ]
|
||||
</span>
|
||||
<h2
|
||||
className="tracking-[-0.03em] text-white"
|
||||
style={{
|
||||
fontFamily: "var(--font-dm-sans)",
|
||||
fontSize: "clamp(44px, 5vw, 80px)",
|
||||
fontWeight: 500,
|
||||
lineHeight: 1.1,
|
||||
}}
|
||||
>
|
||||
WOW! Meet the next evolution of neural networks
|
||||
</h2>
|
||||
</div>
|
||||
|
||||
<img
|
||||
src="/images/aiero/home-9-img.png"
|
||||
alt="Aiiero"
|
||||
width={632}
|
||||
height={158}
|
||||
className="h-auto w-full max-w-[632px] object-contain"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="flex flex-col justify-between">
|
||||
<div className="max-w-[560px] text-white">
|
||||
<p className="text-[16px] font-bold leading-[1.7]">
|
||||
Artificial Intelligence refers to the development of computer
|
||||
systems that can perform tasks that would typically require
|
||||
human intelligence. It involves the creation of algorithms and
|
||||
models that enable machines to learn, reason, perceive, and
|
||||
make decisions.
|
||||
</p>
|
||||
<p className="mt-[27px] text-[16px] font-medium leading-[1.7]">
|
||||
There are generally two types of AI: Narrow or Weak AI, which
|
||||
is designed to perform specific tasks, and General or Strong
|
||||
AI, which possesses human-level intelligence and can handle a
|
||||
wide range of tasks. AI strategies that drive innovation,
|
||||
optimize processes, and unlock new opportunities for growth.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div className="mt-[40px] md:mt-[60px]">
|
||||
<Link
|
||||
href="/services"
|
||||
className="aiero-button aiero-button-gradient-border group rounded-full px-[35px] py-[15px] font-[var(--font-sora)] text-[15px] font-semibold tracking-wide text-white transition-all"
|
||||
>
|
||||
<span className="button-inner" />
|
||||
Explore more
|
||||
<ArrowIcon className="ml-2 h-[12px] w-[12px] transition-transform duration-300 group-hover:translate-x-1 group-hover:-translate-y-1" />
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</PageContainer>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
10
package-lock.json
generated
@@ -8,6 +8,7 @@
|
||||
"name": "tenext-new-site",
|
||||
"version": "0.1.0",
|
||||
"dependencies": {
|
||||
"lucide-react": "^1.21.0",
|
||||
"next": "16.2.9",
|
||||
"ogl": "^1.0.11",
|
||||
"react": "19.2.4",
|
||||
@@ -4970,6 +4971,15 @@
|
||||
"yallist": "^3.0.2"
|
||||
}
|
||||
},
|
||||
"node_modules/lucide-react": {
|
||||
"version": "1.21.0",
|
||||
"resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-1.21.0.tgz",
|
||||
"integrity": "sha512-reEZMXq8Qdd5jg5XYkQ5TR1fB/GiQ7ih4vcrthYDtgjSDwh0i6/YLiGjsWsIwgN49gpAnd4J2elSNzncMEEUUQ==",
|
||||
"license": "ISC",
|
||||
"peerDependencies": {
|
||||
"react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/magic-string": {
|
||||
"version": "0.30.21",
|
||||
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"lint": "eslint"
|
||||
},
|
||||
"dependencies": {
|
||||
"lucide-react": "^1.21.0",
|
||||
"next": "16.2.9",
|
||||
"ogl": "^1.0.11",
|
||||
"react": "19.2.4",
|
||||
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 80 KiB |
|
After Width: | Height: | Size: 193 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 57 KiB |
|
After Width: | Height: | Size: 108 KiB |
|
After Width: | Height: | Size: 161 KiB |
|
After Width: | Height: | Size: 86 KiB |
|
After Width: | Height: | Size: 21 KiB |
@@ -0,0 +1,49 @@
|
||||
function flowmap_deformation(){jQuery('.flowmap-deformation-wrapper').each(function(){let box=jQuery(this);setTimeout(function(){box.addClass('active')},300);const imgSize=[box.data('bg-width'),box.data('bg-height')];const vertex=`
|
||||
attribute vec2 uv;
|
||||
attribute vec2 position;
|
||||
varying vec2 vUv;
|
||||
void main() {
|
||||
vUv = uv;
|
||||
gl_Position = vec4(position, 0, 1);
|
||||
}
|
||||
`;const fragment=`
|
||||
precision highp float;
|
||||
precision highp int;
|
||||
uniform sampler2D tWater;
|
||||
uniform sampler2D tFlow;
|
||||
uniform float uTime;
|
||||
varying vec2 vUv;
|
||||
uniform vec4 res;
|
||||
|
||||
void main() {
|
||||
|
||||
// R and G values are velocity in the x and y direction
|
||||
// B value is the velocity length
|
||||
vec3 flow = texture2D(tFlow, vUv).rgb;
|
||||
|
||||
vec2 uv = .5 * gl_FragCoord.xy / res.xy ;
|
||||
vec2 myUV = (uv - vec2(0.5))*res.zw + vec2(0.5);
|
||||
myUV -= flow.xy * (0.15 * 0.7);
|
||||
|
||||
vec3 tex = texture2D(tWater, myUV).rgb;
|
||||
|
||||
gl_FragColor = vec4(tex.r, tex.g, tex.b, 1.0);
|
||||
}
|
||||
`;{const renderer=new ogl.Renderer({dpr:2});const gl=renderer.gl;box.append(gl.canvas);let aspect=1;const mouse=new ogl.Vec2(-1);const velocity=new ogl.Vec2();function resize(){let a1,a2;var imageAspect=imgSize[1]/imgSize[0];if(box.outerHeight()/box.outerWidth()<imageAspect){a1=1;a2=box.outerHeight()/box.outerWidth()/imageAspect}else{a1=(box.outerWidth()/box.outerHeight())*imageAspect;a2=1}
|
||||
mesh.program.uniforms.res.value=new ogl.Vec4(box.outerWidth(),box.outerHeight(),a1,a2);renderer.setSize(box.outerWidth(),box.outerHeight());aspect=box.outerWidth()/box.outerHeight()}
|
||||
const flowmap=new ogl.Flowmap(gl,{falloff:0.6});const geometry=new ogl.Geometry(gl,{position:{size:2,data:new Float32Array([-1,-1,3,-1,-1,3])},uv:{size:2,data:new Float32Array([0,0,2,0,0,2])}});const texture=new ogl.Texture(gl,{minFilter:gl.LINEAR,magFilter:gl.LINEAR});const img=new Image();img.onload=()=>(texture.image=img);img.crossOrigin="Anonymous";img.src=box.data('bg');let a1,a2;var imageAspect=imgSize[1]/imgSize[0];if(box.outerHeight()/box.outerWidth()<imageAspect){a1=1;a2=box.outerHeight()/box.outerWidth()/imageAspect}else{a1=(box.outerWidth()/box.outerHeight())*imageAspect;a2=1}
|
||||
const program=new ogl.Program(gl,{vertex,fragment,uniforms:{uTime:{value:0},tWater:{value:texture},res:{value:new ogl.Vec4(box.outerWidth(),box.outerHeight(),a1,a2)},img:{value:new ogl.Vec2(imgSize[0],imgSize[1])},tFlow:flowmap.uniform}});const mesh=new ogl.Mesh(gl,{geometry,program});window.addEventListener("resize",resize,!1);resize();const isTouchCapable="ontouchstart" in window;const section=box.closest('section')[0];if(isTouchCapable){section.addEventListener("touchstart",updateMouse,!1);section.addEventListener("touchmove",updateMouse,{passive:!1})}else{section.addEventListener("mousemove",updateMouse,!1)}
|
||||
let lastTime;const lastMouse=new ogl.Vec2();function updateMouse(e){if(e.changedTouches&&e.changedTouches.length){e.x=e.changedTouches[0].pageX;e.y=e.changedTouches[0].pageY}
|
||||
if(e.x===undefined){e.x=e.pageX;e.y=e.pageY}
|
||||
mouse.set(e.x/gl.renderer.width,1.0-e.y/gl.renderer.height);if(!lastTime){lastTime=performance.now();lastMouse.set(e.x,e.y)}
|
||||
const deltaX=e.x-lastMouse.x;const deltaY=e.y-lastMouse.y;lastMouse.set(e.x,e.y);let time=performance.now();let delta=Math.max(10.4,time-lastTime);lastTime=time;velocity.x=deltaX/delta;velocity.y=deltaY/delta;velocity.needsUpdate=!0}
|
||||
requestAnimationFrame(update);function update(t){requestAnimationFrame(update);if(!velocity.needsUpdate){mouse.set(-1);velocity.set(0)}
|
||||
velocity.needsUpdate=!1;flowmap.aspect=aspect;flowmap.mouse.copy(mouse);flowmap.velocity.lerp(velocity,velocity.len?0.15:0.1);flowmap.update();program.uniforms.uTime.value=t*0.01;renderer.render({scene:mesh})}}})}
|
||||
jQuery(window).on('elementor/frontend/init',function(){elementorFrontend.hooks.addAction('frontend/element_ready/icon.default',function($scope){if($scope.hasClass('aiero-icon-decoration-on')){$scope.find('.elementor-icon-wrapper').wrapInner('<div class="elementor-icon-inner"></div>')}
|
||||
if($scope.find('.elementor-icon').hasClass('elementor-animation-slide-aslant')){$scope.find('.elementor-icon i, .elementor-icon svg').clone().appendTo($scope.find('.elementor-icon'));$scope.find('.elementor-animation-slide-aslant').wrapInner('<span class="elementor-icon-slide-aslant-inner"></span>')}});elementorFrontend.hooks.addAction('frontend/element_ready/global',function($scope){if(jQuery('body').hasClass('elementor-editor-active')){if($scope.hasClass('elementor-section')&&!$scope.children('.elementor-container').children('.elementor-row').length){$scope.children('.elementor-container').wrapInner('<div class="elementor-row ui-sortable"></div>')}else if($scope.hasClass('elementor-column')&&!$scope.parent('.elementor-row').length){$scope.siblings('.elementor-row').children().unwrap();$scope.parent('.elementor-container').wrapInner('<div class="elementor-row ui-sortable"></div>')}}});elementorFrontend.hooks.addAction('frontend/element_ready/section',function($scope){if(!jQuery('body').hasClass('elementor-editor-active')){if(!$scope.children('.elementor-container').children('.elementor-row').length){$scope.children('.elementor-container').wrapInner('<div class="elementor-row"></div>');if($scope.data('parallax')=='scroll'){background_image_parallax($scope,0.7)}}else{if($scope.data('parallax')=='scroll'){background_image_parallax($scope,0.7)}}
|
||||
if($scope.hasClass('elementor-section-scroll-animation-on')){jQuery('.body-container').css('overflow','visible');$scope.css({position:'sticky',top:jQuery('.sticky-header').length>0?'140px':'0px'});$scope.closest('.elementor-widget-wrap').height(1.2*$scope.height());jQuery(window).on('resize',function(){$scope.closest('.elementor-widget-wrap').height(1.2*$scope.height())});const{ScrollObserver,valueAtPercentage}=aat;$scope.each(function(index){ScrollObserver.Element(jQuery(this)[0],{offsetTop:jQuery('.sticky-header').length>0?140:0,offsetBottom:0}).onScroll(({percentageY})=>{const clipPath=`inset(${valueAtPercentage({
|
||||
from: 350,
|
||||
to: 0,
|
||||
percentage: percentageY
|
||||
})}px round ${jQuery(this).css('border-radius')})`;jQuery(this).css('will-change','clip-path');jQuery(this).css('clip-path',clipPath)})})}}
|
||||
if($scope.data('flowmap')==='on'&&$scope.data('flowmap-url')!==''){$scope.prepend('<div class="flowmap-deformation-wrapper"></div>');$scope.find('.flowmap-deformation-wrapper').attr({'data-bg':$scope.data('flowmap-url'),'data-bg-width':$scope.data('flowmap-width'),'data-bg-height':$scope.data('flowmap-height')});$scope.find('.flowmap-deformation-wrapper').css('background-image','url('+$scope.data('flowmap-url')+')');$scope.one('mouseover',flowmap_deformation)}})})
|
||||
@@ -0,0 +1,39 @@
|
||||
'use strict';function animateHeading($scope){if($scope.data('settings')&&$scope.data('settings')._animation&&$scope.data('settings')._animation=='aiero_heading_animation'){$scope.find('.aiero-heading-content').html($scope.find('.aiero-heading-content').html().replace(/(^|<\/?[^>]+>|\s+)([^\s<]+)/g,'$1<span class="word">$2</span>'));$scope.find('.aiero-heading-content .word').contents().each(function(){if(this.nodeType===3){jQuery(this).parent().html(jQuery(this).text().replace(/\S/g,'<span class="letter">$&</span>'))}});$scope.find('.aiero-heading-content .letter').each(function(index){jQuery(this).css('animation-delay',index/50+'s')})}}
|
||||
function initModernProjects($el){$el.find('.project-modern-listing .project-item-wrapper').first().addClass('active');$el.find('.project-modern-listing .project-item-modern-header').on('click',function(){var $projectItem=jQuery(this).closest('.project-item-wrapper');$projectItem.addClass('active');$projectItem.find('.project-item-modern-content').slideDown(400);$projectItem.siblings().removeClass('active');$projectItem.siblings().find('.project-item-modern-content').slideUp(400)})}
|
||||
function playProjectsSliderAudio($el){$el.find('.project-listing-wrapper.project-slider-listing.content-type-audio').on('click','.play-audio',function(){jQuery(this).closest('.owl-item').siblings().find('.project-audio-wrapper audio').each(function(){jQuery(this)[0].pause();jQuery(this)[0].currentTime=0;jQuery(this).siblings('.play-audio').removeClass('active')});var audioElement=jQuery(this).siblings('audio')[0];if(audioElement.paused){jQuery(this).addClass('active');audioElement.play()}else{audioElement.pause();audioElement.currentTime=0;jQuery(this).removeClass('active')}
|
||||
var $this=jQuery(this);audioElement.addEventListener('ended',function(){$this.removeClass('active')})})}
|
||||
function playListingAudio($el){$el.find('.aiero-audio-listing').on('click','.audio-item',function(){jQuery(this).closest('.audio-item-wrapper').siblings().find('.audio-item').each(function(){jQuery(this).removeClass('active');jQuery(this).find('audio')[0].pause();jQuery(this).find('audio')[0].currentTime=0});var audioElement=jQuery(this).find('audio')[0];if(audioElement.paused){jQuery(this).addClass('active');audioElement.play()}else{audioElement.pause();audioElement.currentTime=0;jQuery(this).removeClass('active')}
|
||||
var $this=jQuery(this);audioElement.addEventListener('ended',function(){$this.removeClass('active')})})}
|
||||
function handleProjectsExcerptHeight(){jQuery('.project-listing-wrapper.project-slider-listing:not(.content-type-audio) .project-item').each(function(){const item=jQuery(this);const excerpt=jQuery(this).find('.post-excerpt-wrapper');excerpt.hide();item.on('mouseenter',function(){excerpt.delay(300).slideDown(300)});item.on('mouseleave',function(){excerpt.slideUp(300)})})}
|
||||
function handleProjectsGridExcerptHeight($scope){if(!$scope.find('.project-grid-listing').hasClass('text-position-inside')){return}
|
||||
$scope.find('.project-item').each(function(){const item=jQuery(this);const excerpt=jQuery(this).find('.project-item-content');excerpt.hide();item.on('mouseenter',function(){excerpt.delay(100).slideDown(300)});item.on('mouseleave',function(){excerpt.slideUp(300)})})}
|
||||
function initCardsProjects($scope){jQuery('.body-container').css({overflow:'visible'});const{ScrollObserver,valueAtPercentage}=aat;const cardsContainer=$scope.find('.project-cards-listing');const cards=$scope.find('.project-cards-listing .project-item-wrapper');cards.each(function(index){if(index===cards.length-1){return}
|
||||
const card=jQuery(this);const toScale=1-(cards.length-1-index)*0.05;const nextCard=cards[index+1];const cardInner=card.find('.project-item');ScrollObserver.Element(nextCard,{offsetTop:0,offsetBottom:window.innerHeight-card.height()}).onScroll(({percentageY})=>{const scale=valueAtPercentage({from:1,to:toScale,percentage:percentageY});cardInner.css('scale',scale);const filter=`brightness(${valueAtPercentage({
|
||||
from: 1,
|
||||
to: 0.6,
|
||||
percentage: percentageY
|
||||
})})`;cardInner.css('filter',filter)})})}
|
||||
function initMovingList($scope){gsap.defaults({overwrite:"auto"});gsap.registerPlugin(ScrollTrigger);gsap.config({nullTargetWarn:!1});$scope.find('.aiero-moving-list-widget').each(function(index){const movingList=jQuery(this).find('.moving-list');const[x,xEnd]=(index%2)?[(jQuery(this)[0].offsetWidth-movingList[0].scrollWidth)/3,5/2]:[5/2,(jQuery(this)[0].offsetWidth-movingList[0].scrollWidth)/3];gsap.fromTo(movingList[0],{x},{x:xEnd,scrollTrigger:{trigger:jQuery(this)[0],scrub:0.5,}})})}
|
||||
function initServicesButton($scope){const items=$scope.find('.service-item');items.each(function(){const item=jQuery(this);item.on('mouseenter',function(){item.find('.button-container').slideDown(300)});item.on('mouseleave',function(){item.find('.button-container').slideUp(300)})})}
|
||||
function initParallaxButton($scope){let adv_button_wrapper=$scope.find('.aiero_adv_button_wrapper');adv_button_wrapper.mouseleave(function(e){TweenMax.to(this,0.6,{scale:1});TweenMax.to(adv_button_wrapper.find('.aiero_adv_button'),0.6,{scale:1,x:0,y:0});TweenMax.to(adv_button_wrapper.find('.aiero_adv_button_circle'),0.6,{scale:1,x:0,y:0,delay:0.1});TweenMax.to(adv_button_wrapper.find('.aiero_adv_button_text'),0.6,{scale:1,x:0,y:0})});adv_button_wrapper.mouseenter(function(e){TweenMax.to(this,0.6,{transformOrigin:'0 0',scale:1});TweenMax.to(adv_button_wrapper.find('.aiero_adv_button'),0.6,{scale:1});TweenMax.to(adv_button_wrapper.find('.aiero_adv_button_circle'),0.6,{scale:1});TweenMax.to(adv_button_wrapper.find('.aiero_adv_button_text'),0.6,{scale:1})});adv_button_wrapper.mousemove(function(e){callParallax(e)});function callParallax(e){parallaxIt(e,'.aiero_adv_button',40);parallaxIt2(e,'.aiero_adv_button_circle',40);parallaxIt(e,'.aiero_adv_button_text',10)}
|
||||
function parallaxIt(e,target,movement){var boundingRect=adv_button_wrapper[0].getBoundingClientRect();var relX=e.pageX-boundingRect.left;var relY=e.pageY-boundingRect.top;var scrollTop=window.pageYOffset||document.documentElement.scrollTop;var targetEl=adv_button_wrapper.find(target);TweenMax.to(targetEl,0.5,{x:(relX-boundingRect.width/2)/boundingRect.width*movement,y:(relY-boundingRect.height/2-scrollTop)/boundingRect.width*movement,ease:Power3.easeOut})}
|
||||
function parallaxIt2(e,target,movement){var boundingRect=adv_button_wrapper[0].getBoundingClientRect();var relX=e.pageX-boundingRect.left;var relY=e.pageY-boundingRect.top;var scrollTop=window.pageYOffset||document.documentElement.scrollTop;var targetEl=adv_button_wrapper.find(target);TweenMax.to(targetEl,0.5,{x:(relX-boundingRect.width/2)/boundingRect.width*movement,y:(relY-boundingRect.height/2-scrollTop)/boundingRect.width*movement,ease:Power3.easeOut,delay:0.1})}}
|
||||
jQuery(window).on('elementor/frontend/init',function(){elementorFrontend.hooks.addAction('frontend/element_ready/aiero_button.default',function($scope){if($scope.find('.button-widget').hasClass('aiero-button-type-parallax')){initParallaxButton($scope)}});elementorFrontend.hooks.addAction('frontend/element_ready/aiero_audio_listing.default',function($scope){playListingAudio($scope)});elementorFrontend.hooks.addAction('frontend/element_ready/aiero_blog_listing.default',function($scope){setTimeout(function(){elements_slider_init(jQuery('.owl-carousel',$scope))},300);if(jQuery('body').hasClass('elementor-editor-active')){setTimeout(fix_responsive_iframe,600);setTimeout(custom_video_play_button,800)}});elementorFrontend.hooks.addAction('frontend/element_ready/aiero_gallery.default',function($scope){setTimeout(function(){elements_slider_init(jQuery('.owl-carousel',$scope))},300);if(jQuery('body').hasClass('elementor-editor-active')){setTimeout(isotope_init,2500)}
|
||||
if(jQuery('.cursor_drag',$scope).length>0&&jQuery(window).width()>=992){const $slider=$scope.find('.gallery-wrapper');const cursor=jQuery('.cursor_drag',$scope);function showCustomCursor(event){cursor.css('left',event.clientX-5).css('top',event.clientY-5)}
|
||||
$slider.mousemove(showCustomCursor);$slider.mouseleave(function(e){if(!jQuery('body').hasClass('elementor-editor-active')){jQuery('.owl-stage',$scope).css({cursor:'auto'});jQuery('.gallery-item-link',$scope).css({cursor:'auto'});cursor.removeClass('active');setTimeout(function(){if(!cursor.hasClass('active')){cursor.hide()}},300)}});$slider.mouseenter(function(e){if(!jQuery('body').hasClass('elementor-editor-active')){jQuery('.owl-stage',$scope).css({cursor:'none'});jQuery('.gallery-item-link',$scope).css({cursor:'none'});cursor.show();setTimeout(function(){cursor.addClass('active')},10)}})}});elementorFrontend.hooks.addAction('frontend/element_ready/aiero_projects_listing.default',function($scope){animateHeading($scope);setTimeout(function(){elements_slider_init(jQuery('.owl-carousel',$scope))},300);if(jQuery('body').hasClass('elementor-editor-active')){setTimeout(isotope_init,2500)}
|
||||
setTimeout(handleProjectsExcerptHeight,500);if($scope.find('.project-grid-listing').length>0){setTimeout(function(){handleProjectsGridExcerptHeight($scope)},500)}
|
||||
if($scope.find('.project-modern-listing').length>0){var scopeID=$scope.attr('data-id');initModernProjects($scope);jQuery('body').on('genre_get_posts_success',function(e,classes,id){if(classes.indexOf('project-modern-listing')!==-1&&id===scopeID){initModernProjects($scope)}})}
|
||||
if($scope.find('.content-type-audio').length>0){playProjectsSliderAudio($scope)}
|
||||
if($scope.find('.project-cards-listing').length>0){initCardsProjects($scope);var scopeID=$scope.attr('data-id');jQuery('body').on('genre_get_posts_success',function(e,classes,id){if(classes.indexOf('project-cards-listing')!==-1&&id===scopeID){initCardsProjects($scope)}})}
|
||||
if($scope.find('.project-grid-listing').length>0){var scopeID=$scope.attr('data-id');jQuery('body').on('genre_get_posts_success',function(e,classes,id){if(classes.indexOf('project-grid-listing')!==-1&&id===scopeID){handleProjectsGridExcerptHeight($scope)}})}});elementorFrontend.hooks.addAction('frontend/element_ready/aiero_services_listing.default',function($scope){setTimeout(function(){elements_slider_init(jQuery('.owl-carousel',$scope))},300);animateHeading($scope);initServicesButton($scope);var scopeID=$scope.attr('data-id');jQuery('body').on('genre_get_posts_success',function(e,classes,id){if(classes.indexOf('service-grid-listing')!==-1&&id===scopeID){initServicesButton($scope)}})});elementorFrontend.hooks.addAction('frontend/element_ready/aiero_testimonial_carousel.default',function($scope){setTimeout(function(){elements_slider_init(jQuery('.owl-carousel',$scope))},300);if(jQuery('.cursor_drag',$scope).length>0&&jQuery(window).width()>=992){const $slider=$scope.find('.testimonials-slider-container');const cursor=jQuery('.cursor_drag',$scope);function showCustomCursor(event){cursor.css('left',event.clientX-5).css('top',event.clientY-5)}
|
||||
$slider.mousemove(showCustomCursor);$slider.mouseleave(function(e){if(!jQuery('body').hasClass('elementor-editor-active')){jQuery('.owl-stage',$scope).css({cursor:'auto'});cursor.removeClass('active');setTimeout(function(){if(!cursor.hasClass('active')){cursor.hide()}},300)}});$slider.mouseenter(function(e){if(!jQuery('body').hasClass('elementor-editor-active')){jQuery('.owl-stage',$scope).css({cursor:'none'});cursor.show();setTimeout(function(){cursor.addClass('active')},10)}})}});elementorFrontend.hooks.addAction('frontend/element_ready/aiero_image_carousel.default',function($scope){animateHeading($scope);setTimeout(function(){elements_slider_init(jQuery('.owl-carousel',$scope))},300);if(jQuery('.cursor_drag',$scope).length>0&&jQuery(window).width()>=992){const $slider=$scope.find('.slider-wrapper');const cursor=jQuery('.cursor_drag',$scope);function showCustomCursor(event){cursor.css('left',event.clientX-5).css('top',event.clientY-5)}
|
||||
$slider.mousemove(showCustomCursor);$slider.mouseleave(function(e){if(!jQuery('body').hasClass('elementor-editor-active')){jQuery('.owl-stage',$scope).css({cursor:'auto'});cursor.removeClass('active');setTimeout(function(){if(!cursor.hasClass('active')){cursor.hide()}},300)}});$slider.mouseenter(function(e){if(!jQuery('body').hasClass('elementor-editor-active')){jQuery('.owl-stage',$scope).css({cursor:'none'});cursor.show();setTimeout(function(){cursor.addClass('active')},10)}})}});elementorFrontend.hooks.addAction('frontend/element_ready/aiero_content_slider.default',function($scope){setTimeout(function(){elements_slider_init(jQuery('.owl-carousel',$scope))},300)});elementorFrontend.hooks.addAction('frontend/element_ready/aiero_wpforms.default',function(){if(jQuery('body').hasClass('elementor-editor-active')){initFloatPlaceholderInput();initWPFormsSubmitButton()}});elementorFrontend.hooks.addAction('frontend/element_ready/aiero_mailchimp.default',function(){if(jQuery('body').hasClass('elementor-editor-active')){initFloatPlaceholderInput();initWPFormsSubmitButton()}});elementorFrontend.hooks.addAction('frontend/element_ready/section.default',function(){if(jQuery('body').hasClass('elementor-editor-active')){background_image_parallax(jQuery('[data-parallax="scroll"]'),0.7)}});elementorFrontend.hooks.addAction('frontend/element_ready/aiero_heading.default',function($scope){animateHeading($scope)});elementorFrontend.hooks.addAction('frontend/element_ready/aiero_step_carousel.default',function($scope){animateHeading($scope);setTimeout(function(){elements_slider_init(jQuery('.owl-carousel',$scope))},300)});elementorFrontend.hooks.addAction('frontend/element_ready/image.default',function($scope){if(jQuery(window).width()>=1025){const cursor=jQuery('.hovered-text',$scope);function showCustomCursor(event){cursor.css('left',event.clientX).css('top',event.clientY)}
|
||||
if(cursor.length>0){$scope.find('img').mousemove(showCustomCursor);$scope.find('img').mouseleave(function(e){if(!jQuery('body').hasClass('elementor-editor-active')){jQuery('a',$scope).css({cursor:'auto'});$scope.css({cursor:'auto'});cursor.removeClass('active')}});$scope.find('img').mouseenter(function(e){if(!jQuery('body').hasClass('elementor-editor-active')){jQuery('a',$scope).css({cursor:'none'});$scope.css({cursor:'none'});cursor.addClass('active')}})}}
|
||||
if($scope.hasClass('elementor-image-scroll-animation-on')){const{ScrollObserver,valueAtPercentage}=aat;const image=$scope.find('img');image.each(function(index){ScrollObserver.Element(jQuery(this)[0],{offsetTop:250,offsetBottom:0}).onScroll(({percentageY})=>{const transform=`perspective(1200px) rotateX(${valueAtPercentage({
|
||||
from: 15,
|
||||
to: 0,
|
||||
percentage: percentageY
|
||||
})}deg)`;jQuery(this).css('transform',transform)})})}});elementorFrontend.hooks.addAction("frontend/element_ready/tabs.default",function($scope){var image_ids=$scope.data('image-ids');if(image_ids&&image_ids.length){image_ids.forEach(function(e){jQuery('#'+e).addClass('hidden')});jQuery('#'+image_ids[0]).removeClass('hidden');jQuery('.elementor-tab-title.elementor-tab-desktop-title',$scope).each(function(index,el){jQuery(this).on('click',function(e){if(image_ids[index]){image_ids.forEach(function(e){jQuery('#'+e).addClass('hidden')});jQuery('#'+image_ids[index]).removeClass('hidden')}})});jQuery('.elementor-tab-title.elementor-tab-mobile-title',$scope).each(function(index,el){jQuery(this).on('click',function(e){if(image_ids[index]){image_ids.forEach(function(e){jQuery('#'+e).addClass('hidden')});jQuery('#'+image_ids[index]).removeClass('hidden')}})})}});elementorFrontend.hooks.addAction("frontend/element_ready/aiero_tabs.default",function(e){let d=e.find(".aiero_tabs_titles_container"),s=e.find(".aiero_tabs_content_container");jQuery(d).find(".aiero_tab_title_item").first().addClass("active");if(jQuery('body').hasClass('elementor-editor-active')){return}
|
||||
var tab_content_first_class=jQuery(d).find(".aiero_tab_title_item").first().attr("data-id");jQuery(d).find(".aiero_tab_title_item").each(function(){let e=jQuery(this).attr("data-id");if(e){jQuery('.elementor #'+e).removeClass("active").addClass("hidden")}});if(tab_content_first_class){jQuery('.elementor #'+tab_content_first_class).addClass("active").removeClass("hidden")}
|
||||
jQuery(s).find(".aiero_tab_content_item").first().addClass("active");e.find(".aiero_tab_title_item a").on("click",function(){let e=jQuery(this).parent().attr("data-id");if(!jQuery(this).parent().is(".active")){d.find(".active").removeClass("active");s.find(".active").removeClass("active");if(e){var all_ids=[];jQuery(d).find(".aiero_tab_title_item").each(function(){let e=jQuery(this).attr("data-id");if(e){all_ids.push('.elementor #'+e);var swiper=jQuery('.elementor #'+e).find('.swiper-container');if(swiper.length){setTimeout(function(){window.dispatchEvent(new Event('resize'))},500)}}});var all_ids_str=all_ids.join();jQuery(all_ids_str).removeClass("active").addClass("hidden")}
|
||||
jQuery(this).parent().addClass("active");if(e){jQuery('.elementor #'+e).addClass("active").removeClass("hidden");s.find("#"+e).addClass("active")}}})});elementorFrontend.hooks.addAction("frontend/element_ready/aiero_moving_list.default",function(e){initMovingList(e)});elementorFrontend.hooks.addAction('frontend/element_ready/aiero_case_study_listing.default',function(){setTimeout(function(){elements_slider_init(jQuery('.owl-carousel',$scope))},300);if(jQuery('body').hasClass('elementor-editor-active')){setTimeout(isotope_init,500)}})})
|
||||
@@ -0,0 +1,5 @@
|
||||
/*!
|
||||
* Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
|
||||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||
*/
|
||||
@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:swap;src:url(../../../../../../../../../../../../plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.eot);src:url(../../../../../../../../../../../../plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.eot#iefix) format("embedded-opentype"),url(../../../../../../../../../../../../plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff2) format("woff2"),url(../../../../../../../../../../../../plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff) format("woff"),url(../../../../../../../../../../../../plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.ttf) format("truetype"),url(../../../../../../../../../../../../plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:"Font Awesome 5 Free";font-weight:900}
|
||||
@@ -0,0 +1,69 @@
|
||||
|
||||
/*! Max Mega Menu jQuery Plugin */
|
||||
(function($){"use strict";$.maxmegamenu=function(menu,options){var plugin=this;var $menu=$(menu);var $wrap=$(menu).parent();var $toggle_bar=$menu.siblings(".mega-menu-toggle");var html_body_class_timeout;var defaults={event:$menu.attr("data-event"),effect:$menu.attr("data-effect"),effect_speed:parseInt($menu.attr("data-effect-speed")),effect_mobile:$menu.attr("data-effect-mobile"),effect_speed_mobile:parseInt($menu.attr("data-effect-speed-mobile")),panel_width:$menu.attr("data-panel-width"),panel_inner_width:$menu.attr("data-panel-inner-width"),mobile_force_width:$menu.attr("data-mobile-force-width"),mobile_overlay:$menu.attr("data-mobile-overlay"),mobile_state:$menu.attr("data-mobile-state"),mobile_direction:$menu.attr("data-mobile-direction"),second_click:$menu.attr("data-second-click"),vertical_behaviour:$menu.attr("data-vertical-behaviour"),document_click:$menu.attr("data-document-click"),breakpoint:$menu.attr("data-breakpoint"),unbind_events:$menu.attr("data-unbind"),hover_intent_timeout:$menu.attr("data-hover-intent-timeout"),hover_intent_interval:$menu.attr("data-hover-intent-interval")};plugin.settings={};var items_with_submenus=$("li.mega-menu-megamenu.mega-menu-item-has-children,"+"li.mega-menu-flyout.mega-menu-item-has-children,"+"li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item-has-children,"+"li.mega-menu-flyout li.mega-menu-item-has-children",$menu);var collapse_children_parents=$("li.mega-menu-megamenu li.mega-menu-item-has-children.mega-collapse-children > a.mega-menu-link",$menu);plugin.addAnimatingClass=function(element){if(plugin.settings.effect==="disabled"){return}
|
||||
$(".mega-animating").removeClass("mega-animating");var timeout=plugin.settings.effect_speed+parseInt(plugin.settings.hover_intent_timeout,10);element.addClass("mega-animating");setTimeout(function(){element.removeClass("mega-animating")},timeout)};plugin.hideAllPanels=function(){$(".mega-toggle-on > a.mega-menu-link",$menu).each(function(){plugin.hidePanel($(this),!1)})};plugin.expandMobileSubMenus=function(){if(plugin.settings.mobile_direction!=='vertical'){return}
|
||||
$(".mega-menu-item-has-children.mega-expand-on-mobile > a.mega-menu-link",$menu).each(function(){plugin.showPanel($(this),!0)});if(plugin.settings.mobile_state=='expand_all'){$(".mega-menu-item-has-children:not(.mega-toggle-on) > a.mega-menu-link",$menu).each(function(){plugin.showPanel($(this),!0)})}
|
||||
if(plugin.settings.mobile_state=='expand_active'){const activeItemSelectors=["li.mega-current-menu-ancestor.mega-menu-item-has-children > a.mega-menu-link","li.mega-current-menu-item.mega-menu-item-has-children > a.mega-menu-link","li.mega-current-menu-parent.mega-menu-item-has-children > a.mega-menu-link","li.mega-current_page_ancestor.mega-menu-item-has-children > a.mega-menu-link","li.mega-current_page_item.mega-menu-item-has-children > a.mega-menu-link"];$menu.find(activeItemSelectors.join(', ')).each(function(){plugin.showPanel($(this),!0)})}}
|
||||
plugin.hideSiblingPanels=function(anchor,immediate){anchor.parent().parent().find(".mega-toggle-on").children("a.mega-menu-link").each(function(){plugin.hidePanel($(this),immediate)})};plugin.isDesktopView=function(){var width=Math.max(document.documentElement.clientWidth||0,window.innerWidth||0);return width>plugin.settings.breakpoint};plugin.isMobileView=function(){return!plugin.isDesktopView()};plugin.showPanel=function(anchor,immediate){if($.isNumeric(anchor)){anchor=$("li.mega-menu-item-"+anchor,$menu).find("a.mega-menu-link").first()}else if(anchor.is("li.mega-menu-item")){anchor=anchor.find("a.mega-menu-link").first()}
|
||||
anchor.parent().triggerHandler("before_open_panel");anchor.parent().find("[aria-expanded]").first().attr("aria-expanded","true");$(".mega-animating").removeClass("mega-animating");if(plugin.isMobileView()&&anchor.parent().hasClass("mega-hide-sub-menu-on-mobile")){return}
|
||||
if(plugin.isDesktopView()&&($menu.hasClass("mega-menu-horizontal")||$menu.hasClass("mega-menu-vertical"))&&!anchor.parent().hasClass("mega-collapse-children")){plugin.hideSiblingPanels(anchor,!0)}
|
||||
if((plugin.isMobileView()&&$menu.hasClass("mega-keyboard-navigation"))||plugin.settings.vertical_behaviour==="accordion"){plugin.hideSiblingPanels(anchor,!1)}
|
||||
plugin.calculateDynamicSubmenuWidths(anchor);if(plugin.shouldUseSlideAnimation(anchor,immediate)){var speed=plugin.isMobileView()?plugin.settings.effect_speed_mobile:plugin.settings.effect_speed;anchor.siblings(".mega-sub-menu").css("display","none").animate({"height":"show","paddingTop":"show","paddingBottom":"show","minHeight":"show"},speed,function(){$(this).css("display","")})}
|
||||
anchor.parent().addClass("mega-toggle-on").triggerHandler("open_panel")};plugin.shouldUseSlideAnimation=function(anchor,immediate){if(immediate==!0){return!1}
|
||||
if(anchor.parent().hasClass("mega-collapse-children")){return!0}
|
||||
if(plugin.isDesktopView()&&plugin.settings.effect==="slide"){return!0}
|
||||
if(plugin.isMobileView()){if(plugin.settings.effect_mobile==="slide"){return!0}
|
||||
if(plugin.settings.effect_mobile==="slide_left"||plugin.settings.effect_mobile==="slide_right"){return plugin.settings.mobile_direction!=="horizontal"}}
|
||||
return!1};plugin.hidePanel=function(anchor,immediate){if($.isNumeric(anchor)){anchor=$("li.mega-menu-item-"+anchor,$menu).find("a.mega-menu-link").first()}else if(anchor.is("li.mega-menu-item")){anchor=anchor.find("a.mega-menu-link").first()}
|
||||
anchor.parent().triggerHandler("before_close_panel");anchor.parent().find("[aria-expanded]").first().attr("aria-expanded","false");if(plugin.shouldUseSlideAnimation(anchor)){var speed=plugin.isMobileView()?plugin.settings.effect_speed_mobile:plugin.settings.effect_speed;anchor.siblings(".mega-sub-menu").animate({"height":"hide","paddingTop":"hide","paddingBottom":"hide","minHeight":"hide"},speed,function(){anchor.siblings(".mega-sub-menu").css("display","");anchor.parent().removeClass("mega-toggle-on").triggerHandler("close_panel")});return}
|
||||
if(immediate){anchor.siblings(".mega-sub-menu").css("display","none").delay(plugin.settings.effect_speed).queue(function(){$(this).css("display","").dequeue()})}
|
||||
anchor.siblings(".mega-sub-menu").find(".widget_media_video video").each(function(){this.player.pause()});anchor.parent().removeClass("mega-toggle-on").triggerHandler("close_panel");plugin.addAnimatingClass(anchor.parent())};plugin.calculateDynamicSubmenuWidths=function(anchor){if(anchor.parent().hasClass("mega-menu-megamenu")&&anchor.parent().parent().hasClass("max-mega-menu")&&plugin.settings.panel_width){if(plugin.isDesktopView()){var submenu_offset=$menu.offset();var target_offset=$(plugin.settings.panel_width).offset();if(plugin.settings.panel_width=='100vw'){target_offset=$('body').offset();anchor.siblings(".mega-sub-menu").css({left:(target_offset.left-submenu_offset.left)+"px"})}else if($(plugin.settings.panel_width).length>0){anchor.siblings(".mega-sub-menu").css({width:$(plugin.settings.panel_width).outerWidth(),left:(target_offset.left-submenu_offset.left)+"px"})}}else{anchor.siblings(".mega-sub-menu").css({width:"",left:""})}}
|
||||
if(anchor.parent().hasClass("mega-menu-megamenu")&&anchor.parent().parent().hasClass("max-mega-menu")&&plugin.settings.panel_inner_width&&$(plugin.settings.panel_inner_width).length>0){var target_width=0;if($(plugin.settings.panel_inner_width).length){target_width=parseInt($(plugin.settings.panel_inner_width).width(),10)}else{target_width=parseInt(plugin.settings.panel_inner_width,10)}
|
||||
anchor.siblings(".mega-sub-menu").css({"paddingLeft":"","paddingRight":""});var submenu_width=parseInt(anchor.siblings(".mega-sub-menu").innerWidth(),10);if(plugin.isDesktopView()&&target_width>0&&target_width<submenu_width){anchor.siblings(".mega-sub-menu").css({"paddingLeft":(submenu_width-target_width)/2+"px","paddingRight":(submenu_width-target_width)/2+"px"})}}};plugin.bindClickEvents=function(){var dragging=!1;$(document).on({"touchmove":function(e){dragging=!0},"touchstart":function(e){dragging=!1}});$(document).on("click touchend",function(e){if(!dragging&&plugin.settings.document_click==="collapse"&&!$(e.target).closest(".mega-menu-wrap").length){plugin.hideAllPanels();plugin.hideMobileMenu()}
|
||||
dragging=!1});var clickable_parents=$("> a.mega-menu-link",items_with_submenus).add(collapse_children_parents);clickable_parents.on("touchend.megamenu",function(e){if(plugin.settings.event==="hover_intent"){plugin.unbindHoverIntentEvents()}
|
||||
if(plugin.settings.event==="hover"){plugin.unbindHoverEvents()}});clickable_parents.on("click.megamenu",function(e){if($(e.target).hasClass('mega-indicator')){return}
|
||||
if(plugin.isDesktopView()&&$(this).parent().hasClass("mega-toggle-on")&&$(this).closest("ul.mega-sub-menu").parent().hasClass("mega-menu-tabbed")){if(plugin.settings.second_click==="go"){return}else{e.preventDefault();return}}
|
||||
if(dragging){return}
|
||||
if(plugin.isMobileView()&&$(this).parent().hasClass("mega-hide-sub-menu-on-mobile")){return}
|
||||
if((plugin.settings.second_click==="go"||$(this).parent().hasClass("mega-click-click-go"))&&$(this).attr("href")!==undefined){if(!$(this).parent().hasClass("mega-toggle-on")){e.preventDefault();plugin.showPanel($(this))}}else{e.preventDefault();if($(this).parent().hasClass("mega-toggle-on")){plugin.hidePanel($(this),!1)}else{plugin.showPanel($(this))}}});if(plugin.settings.second_click==="disabled"){clickable_parents.off("click.megamenu")}
|
||||
$(".mega-close-after-click:not(.mega-menu-item-has-children) > a.mega-menu-link",$menu).on("click",function(){plugin.hideAllPanels();plugin.hideMobileMenu()});$("button.mega-close",$wrap).on("click",function(e){plugin.hideMobileMenu()})};plugin.bindHoverEvents=function(){items_with_submenus.on({"mouseenter.megamenu":function(){plugin.unbindClickEvents();if(!$(this).hasClass("mega-toggle-on")){plugin.showPanel($(this).children("a.mega-menu-link"))}},"mouseleave.megamenu":function(){if($(this).hasClass("mega-toggle-on")&&!$(this).hasClass("mega-disable-collapse")&&!$(this).parent().parent().hasClass("mega-menu-tabbed")){plugin.hidePanel($(this).children("a.mega-menu-link"),!1)}}})};plugin.bindHoverIntentEvents=function(){items_with_submenus.hoverIntent({over:function(){plugin.unbindClickEvents();if(!$(this).hasClass("mega-toggle-on")){plugin.showPanel($(this).children("a.mega-menu-link"))}},out:function(){if($(this).hasClass("mega-toggle-on")&&!$(this).hasClass("mega-disable-collapse")&&!$(this).parent().parent().hasClass("mega-menu-tabbed")){plugin.hidePanel($(this).children("a.mega-menu-link"),!1)}},timeout:plugin.settings.hover_intent_timeout,interval:plugin.settings.hover_intent_interval})};plugin.bindKeyboardEvents=function(){var tab_key=9;var escape_key=27;var enter_key=13;var left_arrow_key=37;var up_arrow_key=38;var right_arrow_key=39;var down_arrow_key=40;var space_key=32;var isMobileOffCanvasHorizontal=function(){return plugin.isMobileView()&&(plugin.settings.effect_mobile==='slide_right'||plugin.settings.effect_mobile==='')&&plugin.settings.mobile_direction==='horizontal'}
|
||||
var shouldTrapFocusInCurrentSubMenu=function(){return isMobileOffCanvasHorizontal()&&(keyCode===up_arrow_key||keyCode===down_arrow_key||keyCode===tab_key)}
|
||||
$wrap.on("keyup.megamenu",".max-mega-menu, .mega-menu-toggle",function(e){var keyCode=e.keyCode||e.which;var active_link=$(e.target);if(keyCode===tab_key){$wrap.addClass("mega-keyboard-navigation")}});$wrap.on("keydown.megamenu","a.mega-menu-link, .mega-indicator, .mega-menu-toggle-block, .mega-menu-toggle-animated-block button",function(e){if(!$wrap.hasClass("mega-keyboard-navigation")){return}
|
||||
var keyCode=e.keyCode||e.which;var active_link=$(e.target);if(keyCode===space_key&&active_link.is(".mega-menu-link")){e.preventDefault();if(active_link.parent().is(items_with_submenus)){if(active_link.parent().hasClass("mega-toggle-on")&&!active_link.closest("ul.mega-sub-menu").parent().hasClass("mega-menu-tabbed")){plugin.hidePanel(active_link)}else{plugin.showPanel(active_link)}}}
|
||||
if(keyCode===space_key&&active_link.is("mega-indicator")){e.preventDefault();if(active_link.parent().parent().hasClass("mega-toggle-on")&&!active_link.closest("ul.mega-sub-menu").parent().hasClass("mega-menu-tabbed")){plugin.hidePanel(active_link.parent())}else{plugin.showPanel(active_link.parent())}}
|
||||
if(keyCode===escape_key){var submenu_open=$(".mega-toggle-on",$menu).length!==0;if(submenu_open){var focused_menu_item=$menu.find(":focus");if(focused_menu_item.closest('.mega-menu-flyout.mega-toggle-on').length!==0){var nearest_parent_of_focused_item_li=focused_menu_item.closest('.mega-toggle-on');var nearest_parent_of_focused_item_a=$("> a.mega-menu-link",nearest_parent_of_focused_item_li);plugin.hidePanel(nearest_parent_of_focused_item_a);nearest_parent_of_focused_item_a.focus()}
|
||||
if(focused_menu_item.closest('.mega-menu-megamenu.mega-toggle-on').length!==0){var nearest_parent_of_focused_item_li=focused_menu_item.closest('.mega-menu-megamenu.mega-toggle-on');var nearest_parent_of_focused_item_a=$("> a.mega-menu-link",nearest_parent_of_focused_item_li);plugin.hidePanel(nearest_parent_of_focused_item_a);nearest_parent_of_focused_item_a.focus()}}
|
||||
if(plugin.isMobileView()&&!submenu_open){plugin.hideMobileMenu();$(".mega-menu-toggle-block, button.mega-toggle-animated",$toggle_bar).first().focus()}}
|
||||
if(keyCode===space_key||keyCode===enter_key){if(active_link.is(".mega-menu-toggle-block, .mega-menu-toggle-animated-block button")){e.preventDefault();if($toggle_bar.hasClass("mega-menu-open")){plugin.hideMobileMenu()}else{plugin.showMobileMenu()}}}
|
||||
if(keyCode===enter_key){if(active_link.is(".mega-indicator")){if(active_link.closest("li.mega-menu-item").hasClass("mega-toggle-on")&&!active_link.closest("ul.mega-sub-menu").parent().hasClass("mega-menu-tabbed")){plugin.hidePanel(active_link.parent())}else{plugin.showPanel(active_link.parent())}
|
||||
return}
|
||||
if(active_link.parent().is(items_with_submenus)){if(plugin.isMobileView()&&active_link.parent().is(".mega-hide-sub-menu-on-mobile")){return}
|
||||
if(active_link.is("[href]")&&active_link.siblings(".mega-indicator[tabindex]:visible").length!==0){return}
|
||||
if(active_link.is("[href]")===!1){if(active_link.parent().hasClass("mega-toggle-on")&&!active_link.closest("ul.mega-sub-menu").parent().hasClass("mega-menu-tabbed")){plugin.hidePanel(active_link)}else{plugin.showPanel(active_link)}
|
||||
return}
|
||||
if(active_link.parent().hasClass("mega-toggle-on")&&!active_link.closest("ul.mega-sub-menu").parent().hasClass("mega-menu-tabbed")){return}else{e.preventDefault();plugin.showPanel(active_link)}}}
|
||||
if(shouldTrapFocusInCurrentSubMenu()){var focused_item=$(":focus",$menu);if(focused_item.length===0){e.preventDefault();$("> li.mega-menu-item:visible",$menu).find("> a.mega-menu-link, .mega-search span[role=button]").first().focus();return}
|
||||
var next_item_to_focus=focused_item.parent().nextAll("li.mega-menu-item:visible").find("> a.mega-menu-link, .mega-search span[role=button]").first();if(next_item_to_focus.length===0&&focused_item.closest(".mega-menu-megamenu").length!==0){var all_li_parents=focused_item.parentsUntil(".mega-menu-megamenu");if(focused_item.is(all_li_parents.find("a.mega-menu-link").last())){next_item_to_focus=all_li_parents.find(".mega-back-button:visible > a.mega-menu-link").first()}}
|
||||
if(next_item_to_focus.length===0){next_item_to_focus=focused_item.parent().prevAll("li.mega-menu-item:visible").find("> a.mega-menu-link, .mega-search span[role=button]").first()}
|
||||
if(next_item_to_focus.length!==0){e.preventDefault();next_item_to_focus.focus()}}
|
||||
var shouldGoToNextTopLevelItem=function(){return((keyCode===right_arrow_key&&plugin.isDesktopView())||(keyCode===down_arrow_key&&plugin.isMobileView()))&&$menu.hasClass("mega-menu-horizontal")}
|
||||
var shouldGoToPreviousTopLevelItem=function(){return((keyCode===left_arrow_key&&plugin.isDesktopView())||(keyCode===up_arrow_key&&plugin.isMobileView()))&&$menu.hasClass("mega-menu-horizontal")}
|
||||
if(shouldGoToNextTopLevelItem()){e.preventDefault();var next_top_level_item=$("> .mega-toggle-on",$menu).nextAll("li.mega-menu-item:visible").find("> a.mega-menu-link, .mega-search span[role=button]").first();if(next_top_level_item.length===0){next_top_level_item=$(":focus",$menu).parent().nextAll("li.mega-menu-item:visible").find("> a.mega-menu-link, .mega-search span[role=button]").first()}
|
||||
if(next_top_level_item.length===0){next_top_level_item=$(":focus",$menu).parent().parent().parent().nextAll("li.mega-menu-item:visible").find("> a.mega-menu-link, .mega-search span[role=button]").first()}
|
||||
plugin.hideAllPanels();next_top_level_item.focus()}
|
||||
if(shouldGoToPreviousTopLevelItem()){e.preventDefault();var prev_top_level_item=$("> .mega-toggle-on",$menu).prevAll("li.mega-menu-item:visible").find("> a.mega-menu-link, .mega-search span[role=button]").last();if(prev_top_level_item.length===0){prev_top_level_item=$(":focus",$menu).parent().prevAll("li.mega-menu-item:visible").find("> a.mega-menu-link, .mega-search span[role=button]").last()}
|
||||
if(prev_top_level_item.length===0){prev_top_level_item=$(":focus",$menu).parent().parent().parent().prevAll("li.mega-menu-item:visible").find("> a.mega-menu-link, .mega-search span[role=button]").last()}
|
||||
plugin.hideAllPanels();prev_top_level_item.focus()}});$wrap.on("focusout.megamenu",function(e){if($wrap.hasClass("mega-keyboard-navigation")){setTimeout(function(){var menu_has_focus=$wrap.find(":focus").length>0;if(!menu_has_focus){$wrap.removeClass("mega-keyboard-navigation");plugin.hideAllPanels();plugin.hideMobileMenu()}},10)}})};plugin.unbindAllEvents=function(){$("ul.mega-sub-menu, li.mega-menu-item, li.mega-menu-row, li.mega-menu-column, a.mega-menu-link, .mega-indicator",$menu).off().unbind()};plugin.unbindClickEvents=function(){$("> a.mega-menu-link",items_with_submenus).not(collapse_children_parents).off("click.megamenu touchend.megamenu")};plugin.unbindHoverEvents=function(){items_with_submenus.off("mouseenter.megamenu mouseleave.megamenu")};plugin.unbindHoverIntentEvents=function(){items_with_submenus.off("mouseenter mouseleave").removeProp("hoverIntent_t").removeProp("hoverIntent_s")};plugin.unbindKeyboardEvents=function(){$wrap.off("keyup.megamenu keydown.megamenu focusout.megamenu")};plugin.unbindMegaMenuEvents=function(){if(plugin.settings.event==="hover_intent"){plugin.unbindHoverIntentEvents()}
|
||||
if(plugin.settings.event==="hover"){plugin.unbindHoverEvents()}
|
||||
plugin.unbindClickEvents();plugin.unbindKeyboardEvents()};plugin.bindMegaMenuEvents=function(){plugin.unbindMegaMenuEvents();if(plugin.isDesktopView()&&plugin.settings.event==="hover_intent"){plugin.bindHoverIntentEvents()}
|
||||
if(plugin.isDesktopView()&&plugin.settings.event==="hover"){plugin.bindHoverEvents()}
|
||||
plugin.bindClickEvents();plugin.bindKeyboardEvents()};plugin.checkWidth=function(){if(plugin.isMobileView()&&$menu.data("view")==="desktop"){plugin.switchToMobile()}
|
||||
if(plugin.isDesktopView()&&$menu.data("view")==="mobile"){plugin.switchToDesktop()}
|
||||
plugin.calculateDynamicSubmenuWidths($("> li.mega-menu-megamenu > a.mega-menu-link",$menu))};plugin.reverseRightAlignedItems=function(){if(!$("body").hasClass("rtl")&&$menu.hasClass("mega-menu-horizontal")&&$menu.css("display")!=='flex'){$menu.append($menu.children("li.mega-item-align-right").get().reverse())}};plugin.addClearClassesToMobileItems=function(){$(".mega-menu-row",$menu).each(function(){$("> .mega-sub-menu > .mega-menu-column:not(.mega-hide-on-mobile)",$(this)).filter(":even").addClass("mega-menu-clear")})};plugin.initDesktop=function(){$menu.data("view","desktop");plugin.bindMegaMenuEvents();plugin.initIndicators()};plugin.initMobile=function(){plugin.switchToMobile()};plugin.switchToDesktop=function(){$menu.data("view","desktop");plugin.bindMegaMenuEvents();plugin.reverseRightAlignedItems();plugin.hideAllPanels();plugin.hideMobileMenu(!0)};plugin.switchToMobile=function(){$menu.data("view","mobile");plugin.bindMegaMenuEvents();plugin.initIndicators();plugin.reverseRightAlignedItems();plugin.addClearClassesToMobileItems();plugin.hideAllPanels();plugin.expandMobileSubMenus()};plugin.initToggleBar=function(){$toggle_bar.on("click",function(e){if($(e.target).is(".mega-menu-toggle, .mega-menu-toggle-custom-block *, .mega-menu-toggle-block, .mega-menu-toggle-animated-block, .mega-menu-toggle-animated-block *, .mega-toggle-blocks-left, .mega-toggle-blocks-center, .mega-toggle-blocks-right, .mega-toggle-label, .mega-toggle-label span")){e.preventDefault();if($(this).hasClass("mega-menu-open")){plugin.hideMobileMenu()}else{plugin.showMobileMenu()}}})};plugin.initIndicators=function(){$menu.off('click.megamenu','.mega-indicator');$menu.on('click.megamenu','.mega-indicator',function(e){e.preventDefault();e.stopPropagation();if($(this).closest(".mega-menu-item").hasClass("mega-toggle-on")){if(!$(this).closest("ul.mega-sub-menu").parent().hasClass("mega-menu-tabbed")||plugin.isMobileView()){plugin.hidePanel($(this).parent(),!1)}}else{plugin.showPanel($(this).parent(),!1)}})};plugin.hideMobileMenu=function(force){force=force||!1;if(!$toggle_bar.is(":visible")&&!force){return}
|
||||
html_body_class_timeout=setTimeout(function(){$("body").removeClass($menu.attr("id")+"-mobile-open");$("html").removeClass($menu.attr("id")+"-off-canvas-open")},plugin.settings.effect_speed_mobile);$(".mega-toggle-label, .mega-toggle-animated",$toggle_bar).attr("aria-expanded","false");if(plugin.settings.effect_mobile==="slide"&&!force){$menu.animate({"height":"hide"},plugin.settings.effect_speed_mobile,function(){$menu.css({width:"",left:"",display:""});$toggle_bar.removeClass("mega-menu-open")})}else{$menu.css({width:"",left:"",display:""});$toggle_bar.removeClass("mega-menu-open")}
|
||||
$menu.triggerHandler("mmm:hideMobileMenu")};plugin.showMobileMenu=function(){if(!$toggle_bar.is(":visible")){return}
|
||||
clearTimeout(html_body_class_timeout);$("body").addClass($menu.attr("id")+"-mobile-open");plugin.expandMobileSubMenus();if(plugin.settings.effect_mobile==="slide_left"||plugin.settings.effect_mobile==="slide_right"){$("html").addClass($menu.attr("id")+"-off-canvas-open")}
|
||||
$(".mega-toggle-label, .mega-toggle-animated",$toggle_bar).attr("aria-expanded","true");if(plugin.settings.effect_mobile==="slide"){$menu.animate({"height":"show"},plugin.settings.effect_speed_mobile,function(){$(this).css("display","")})}
|
||||
$toggle_bar.addClass("mega-menu-open");plugin.toggleBarForceWidth();$menu.triggerHandler("mmm:showMobileMenu")};plugin.toggleBarForceWidth=function(){if($(plugin.settings.mobile_force_width).length&&(plugin.settings.effect_mobile==="slide"||plugin.settings.effect_mobile==="disabled")){var submenu_offset=$toggle_bar.offset();var target_offset=$(plugin.settings.mobile_force_width).offset();$menu.css({width:$(plugin.settings.mobile_force_width).outerWidth(),left:(target_offset.left-submenu_offset.left)+"px"})}};plugin.init=function(){$menu.triggerHandler("before_mega_menu_init");plugin.settings=$.extend({},defaults,options);$menu.removeClass("mega-no-js");plugin.initToggleBar();if(plugin.settings.unbind_events==="true"){plugin.unbindAllEvents()}
|
||||
$(window).on("load",function(){plugin.calculateDynamicSubmenuWidths($("> li.mega-menu-megamenu > a.mega-menu-link",$menu))});if(plugin.isDesktopView()){plugin.initDesktop()}else{plugin.initMobile()}
|
||||
$(window).on("resize",function(){plugin.checkWidth()});$menu.triggerHandler("after_mega_menu_init")};plugin.init()};$.fn.maxmegamenu=function(options){return this.each(function(){if(undefined===$(this).data("maxmegamenu")){var plugin=new $.maxmegamenu(this,options);$(this).data("maxmegamenu",plugin)}})};$(function(){$(".max-mega-menu").maxmegamenu()})}(jQuery))
|
||||
@@ -0,0 +1 @@
|
||||
.tax-product_brand .brand-description{overflow:hidden;zoom:1}.tax-product_brand .brand-description img.brand-thumbnail{width:25%;float:right}.tax-product_brand .brand-description .text{width:72%;float:left}.widget_brand_description img{box-sizing:border-box;width:100%;max-width:none;height:auto;margin:0 0 1em}ul.brand-thumbnails{margin-left:0;margin-bottom:0;clear:both;list-style:none}ul.brand-thumbnails:before{clear:both;content:"";display:table}ul.brand-thumbnails:after{clear:both;content:"";display:table}ul.brand-thumbnails li{float:left;margin:0 3.8% 1em 0;padding:0;position:relative;width:22.05%}ul.brand-thumbnails.fluid-columns li{width:auto}ul.brand-thumbnails:not(.fluid-columns) li.first{clear:both}ul.brand-thumbnails:not(.fluid-columns) li.last{margin-right:0}ul.brand-thumbnails.columns-1 li{width:100%;margin-right:0}ul.brand-thumbnails.columns-2 li{width:48%}ul.brand-thumbnails.columns-3 li{width:30.75%}ul.brand-thumbnails.columns-5 li{width:16.95%}ul.brand-thumbnails.columns-6 li{width:13.5%}.brand-thumbnails li img{box-sizing:border-box;width:100%;max-width:none;height:auto;margin:0}@media screen and (max-width:768px){ul.brand-thumbnails:not(.fluid-columns) li{width:48%!important}ul.brand-thumbnails:not(.fluid-columns) li.first{clear:none}ul.brand-thumbnails:not(.fluid-columns) li.last{margin-right:3.8%}ul.brand-thumbnails:not(.fluid-columns) li:nth-of-type(odd){clear:both}ul.brand-thumbnails:not(.fluid-columns) li:nth-of-type(even){margin-right:0}}.brand-thumbnails-description li{text-align:center}.brand-thumbnails-description li .term-thumbnail img{display:inline}.brand-thumbnails-description li .term-description{margin-top:1em;text-align:left}#brands_a_z h3:target{text-decoration:underline}ul.brands_index{list-style:none outside;overflow:hidden;zoom:1}ul.brands_index li{float:left;margin:0 2px 2px 0}ul.brands_index li a,ul.brands_index li span{border:1px solid #ccc;padding:6px;line-height:1em;float:left;text-decoration:none}ul.brands_index li span{border-color:#eee;color:#ddd}ul.brands_index li a:hover{border-width:2px;padding:5px;text-decoration:none}ul.brands_index li a.active{border-width:2px;padding:5px}div#brands_a_z a.top{border:1px solid #ccc;padding:4px;line-height:1em;float:right;text-decoration:none;font-size:.8em}
|
||||
@@ -0,0 +1 @@
|
||||
@font-face{font-display:swap;font-family:'fontello';src:url(../../../../../../../../../themes/aiero/fonts/fontello.eot);src:url('../../../../../../../../../themes/aiero/fonts/fontello.eot#iefix') format('embedded-opentype'),url(../../../../../../../../../themes/aiero/fonts/fontello.woff2) format('woff2'),url(../../../../../../../../../themes/aiero/fonts/fontello.woff) format('woff'),url(../../../../../../../../../themes/aiero/fonts/fontello.ttf) format('truetype'),url('../../../../../../../../../themes/aiero/fonts/fontello.svg#fontello') format('svg');font-weight:400;font-style:normal}
|
||||
@@ -0,0 +1 @@
|
||||
[class^="icon-"]:before,[class*=" icon-"]:before{font-family:'fontello';font-style:normal;font-weight:400;speak:never;display:inline-block;text-decoration:inherit;text-align:center;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-artificial-intelligence:before{content:'\e800'}.icon-chevron-down:before{content:'\e801'}.icon-coding:before{content:'\e802'}.icon-close:before{content:'\e803'}.icon-phone-stroke:before{content:'\e804'}.icon-menu:before{content:'\e805'}.icon-smartphone:before{content:'\e806'}.icon-phone-call-alter:before{content:'\e807'}.icon-at-symbol:before{content:'\e808'}.icon-location:before{content:'\e809'}.icon-burger-menu:before{content:'\e80a'}.icon-call:before{content:'\e80b'}.icon-check:before{content:'\e80c'}.icon-chevron-left:before{content:'\e80d'}.icon-edit:before{content:'\e80e'}.icon-computer-code:before{content:'\e80f'}.icon-pencil:before{content:'\e810'}.icon-quote-left:before{content:'\e811'}.icon-layers:before{content:'\e812'}.icon-play:before{content:'\e813'}.icon-chevron-up:before{content:'\e814'}.icon-send:before{content:'\e815'}.icon-vector:before{content:'\e816'}.icon-phone-settings:before{content:'\e817'}.icon-phone:before{content:'\e818'}.icon-verified:before{content:'\e819'}.icon-file:before{content:'\e81a'}.icon-search:before{content:'\e81b'}.icon-phone-call:before{content:'\e81c'}.icon-web-page:before{content:'\e81d'}.icon-web:before{content:'\e81e'}.icon-plus:before{content:'\e81f'}.icon-mac:before{content:'\e820'}.icon-text:before{content:'\e821'}.icon-debug:before{content:'\e822'}.icon-computer-success:before{content:'\e823'}.icon-chevron-right:before{content:'\e824'}.icon-sidebar:before{content:'\e825'}.icon-shopping-bag:before{content:'\e826'}.icon-menu-alter:before{content:'\e827'}.icon-eye:before{content:'\e828'}.icon-star-filled:before{content:'\e829'}.icon-burger:before{content:'\e82a'}.icon-menu-arrow:before{content:'\e82b'}.icon-basket:before{content:'\e82c'}.icon-button-arrow:before{content:'\e82d'}.icon-burger-active:before{content:'\e82e'}.icon-blockquote:before{content:'\e82f'}.icon-arrow-top:before{content:'\e830'}.icon-chevron-left-1:before{content:'\e831'}.icon-chevron-right-1:before{content:'\e832'}.icon-arrow-left:before{content:'\e833'}.icon-video-button-play:before{content:'\e834'}.icon-accordion-arrow-right:before{content:'\e835'}.icon-accordion-arrow-right-alt:before{content:'\e836'}.icon-menu-arrow-top:before{content:'\e837'}.icon-volume:before{content:'\e838'}.icon-check-circle:before{content:'\e839'}.icon-volume-muted:before{content:'\e83a'}.icon-openai-lockup:before{content:'\e83b'}.icon-openai-logomark:before{content:'\e83c'}.icon-origami-bird:before{content:'\e83d'}.icon-multiple-arrows:before{content:'\e83e'}.icon-chart-pin:before{content:'\e83f'}.icon-translate:before{content:'\e840'}.icon-button-arrow-down:before{content:'\e841'}.icon-team-socials:before{content:'\e842'}.icon-login:before{content:'\e843'}.icon-arrow-right:before{content:'\e844'}.icon-button-arrow-down-1:before{content:'\e845'}
|
||||
@@ -0,0 +1,47 @@
|
||||
"use strict";function initFloatPlaceholderInput(selector){if(selector){jQuery(selector).each(function(){if(!jQuery(this).parent('.input-floating-wrap').length){jQuery(this).wrap('<span class="input-floating-wrap"></span>');let placeholder=jQuery(this).attr('placeholder');if(!placeholder){placeholder='Select'}
|
||||
if(jQuery(this).prop("tagName").toLowerCase()=='select'&&jQuery(this).closest('.form-row').length){placeholder=jQuery(this).attr('data-placeholder')}
|
||||
jQuery(this).after('<span class="floating-placeholder">'+placeholder+'</span>')}})}else{const inputs=['.wpforms-form input[placeholder]:not([placeholder=""])','.wpforms-form textarea[placeholder]:not([placeholder=""])','.woocommerce input[placeholder]:not([placeholder=""]):not(.qty):not(.woocommerce-Input[type="password"]):not(.search-form-field)','.woocommerce textarea[placeholder]:not([placeholder=""])','.post-comments-wrapper input[placeholder]:not([placeholder=""])','.post-comments-wrapper textarea[placeholder]:not([placeholder=""])','.mc4wp-form input[placeholder]:not([placeholder=""])','.mc4wp-form textarea[placeholder]:not([placeholder=""])','.wpforms-form select:has(option.placeholder)','.woocommerce form .form-row select'];const $inputs=jQuery(inputs.join(', '));$inputs.each(function(){if(!jQuery(this).parent('.input-floating-wrap').length){jQuery(this).wrap('<span class="input-floating-wrap"></span>');let placeholder=jQuery(this).attr('placeholder');if(!placeholder){placeholder='Select'}
|
||||
if(jQuery(this).prop("tagName").toLowerCase()=='select'&&jQuery(this).closest('.form-row').length){placeholder=jQuery(this).attr('data-placeholder')}
|
||||
jQuery(this).after('<span class="floating-placeholder">'+placeholder+'</span>')}})}}
|
||||
function side_panel_open(){jQuery('.dropdown-trigger').on('click',function(){jQuery('.slide-sidebar-wrapper, .body-overlay').addClass('active');jQuery('.dropdown-trigger-item',this).addClass('active')});jQuery('.slide-sidebar-close, .body-overlay').on('click',function(){jQuery('.slide-sidebar-wrapper, .body-overlay').removeClass('active');jQuery('.dropdown-trigger .dropdown-trigger-item').removeClass('active')})}
|
||||
function extra_panel_open(){jQuery('.extra-trigger').on('click',function(){jQuery('.slide-extra-wrapper, .body-overlay').addClass('active')});jQuery('.slide-extra-close, .body-overlay').on('click',function(){jQuery('.slide-extra-wrapper, .body-overlay').removeClass('active')})}
|
||||
function search_panel_open(){jQuery('.search-trigger').on('click',function(){jQuery('.site-search, .body-overlay').addClass('active');jQuery('.site-search .search-form .search-form-field').focus()});jQuery('.site-search-close, .body-overlay').on('click',function(){jQuery('.site-search, .body-overlay, .mobile-header-menu-container').removeClass('active')})}
|
||||
function switch_form_columns(){jQuery('.tab-columns-switcher').on('click',function(){jQuery('.tab-column',jQuery(this).parents('.tab-columns')).toggleClass('hidden')})}
|
||||
function sticky_menu_active(once){if(jQuery('.sticky-header').length){jQuery('.sticky-header').each(function(){const obj=jQuery(this);const header=obj.next('.sticky-header-on');const el_offset=header.offset().top+header.innerHeight();if(once){const st=jQuery(window).scrollTop();if(st<=el_offset){obj.removeClass('sticky-active')}else{obj.addClass('sticky-active')}}
|
||||
jQuery(window).scroll(function(){const st=jQuery(this).scrollTop();if(st<=el_offset){obj.removeClass('sticky-active')}else{obj.addClass('sticky-active')}})})}}
|
||||
function menu_text_animate(){jQuery('.header .main-menu > li > a').wrapInner('<span class="text-active"></span>');jQuery('.header .main-menu > li > a > span.text-active').each(function(){jQuery(this).clone().removeClass('text-active').appendTo(jQuery(this).parent())});jQuery('.header .mega-menu-wrap > ul > li.mega-menu-item > a.mega-menu-link').contents().filter(function(){return this.nodeType==3&&jQuery.trim(this.nodeValue).length}).wrap('<span class="text-active" />');jQuery('.header .mega-menu-wrap > ul > li.mega-menu-item > a.mega-menu-link > span.text-active').each(function(){jQuery(this).clone().removeClass('text-active').appendTo(jQuery(this).parent())})}
|
||||
function mobile_menu_open(){jQuery('.menu-trigger').on('click',function(){jQuery('.mobile-header-menu-container, .body-overlay').addClass('active')});jQuery('.menu-close, .body-overlay').on('click',function(){jQuery('.mobile-header-menu-container, .body-overlay').removeClass('active')})}
|
||||
function compact_menu_open(){jQuery('.compact-menu-trigger').on('click',function(){jQuery('.alter-menu-wrapper, .body-overlay').addClass('active')});jQuery('.alter-menu-close, .body-overlay').on('click',function(){jQuery('.alter-menu-wrapper, .body-overlay').removeClass('active')})}
|
||||
function simple_sidebar_open(){jQuery('.simple-sidebar-trigger').on('click',function(){if(jQuery(window).width()<992){jQuery('.simple-sidebar, .body-overlay').addClass('active')}});jQuery('.shop-hidden-sidebar-close, .body-overlay').on('click',function(){jQuery('.simple-sidebar, .body-overlay').removeClass('active')})}
|
||||
function widget_list_hierarchy_init(){widget_archives_hierarchy_controller('.widget .wp-block-page-list li','ul.wp-block-navigation__submenu-container','parent-archive','widget-archive-trigger');widget_archives_hierarchy_controller('.widget ul li','ul.children','parent-archive','widget-archive-trigger');widget_archives_hierarchy_controller('.widget_nav_menu .menu li','ul.sub-menu','parent-archive','widget-menu-trigger');widget_archives_hierarchy_controller('.widget_aiero_nav_menu_widget .menu li','ul.sub-menu','parent-archive','widget-menu-trigger')}
|
||||
function widget_archives_hierarchy_controller(list_item_selector,sublist_item_selector,parent_class,trigger_class){jQuery(list_item_selector).has(sublist_item_selector).each(function(){jQuery(this).addClass(parent_class);jQuery(this).append("<span class='"+trigger_class+"'></span>")});jQuery(list_item_selector+">"+sublist_item_selector).css("display","none");jQuery(list_item_selector+">.item-wrapper>"+sublist_item_selector).css("display","none");jQuery(document).on("click",list_item_selector+" ."+trigger_class,function(){var el=jQuery(this);var sublist=el.siblings(sublist_item_selector);var sublist_alt=el.siblings('.item-wrapper').children(sublist_item_selector);if(!sublist.length&&!sublist_alt.length)return;sublist=sublist.first();sublist_alt=sublist_alt.first();if(!el.hasClass('active')){var currentParents=el.parents('.menu-item');el.parents().siblings('.menu-item').find("."+trigger_class).removeClass('active');el.parents().siblings('.menu-item').find('.sub-menu').slideUp(300)}
|
||||
el.toggleClass('active');sublist.slideToggle(300);sublist_alt.slideToggle(300)})}
|
||||
function fix_responsive_iframe(){jQuery('.video-embed > div').each(function(){jQuery(this).unwrap('.video-embed')})}
|
||||
function elements_slider_init($slider){var $sliders=($slider&&$slider.length>0)?$slider:jQuery('.content-inner > .archive-listing .owl-carousel, .single-post .owl-carousel');$sliders.each(function(){let slider=jQuery(this),slider_options=slider.data('slider-options'),itemsMobile=1,itemsTablet=1,itemsDesktop=1,dotsContainer=slider_options.dotsContainer,dotsContainerMobile='',navContainer=slider_options.navContainer,navContainerMobile='';slider_options.rtl=!!theme.rtl;if(slider_options.dotsContainerMobile){dotsContainerMobile=slider_options.dotsContainerMobile}else{dotsContainerMobile=slider_options.dotsContainer}
|
||||
if(slider_options.navContainerMobile){navContainerMobile=slider_options.navContainerMobile}else{navContainerMobile=slider_options.navContainer}
|
||||
if(!slider_options.navText){slider_options.navText=['','']}
|
||||
switch(slider_options.items){case 2:itemsMobile=1;itemsTablet=2;itemsDesktop=2;break;case 3:itemsMobile=1;itemsTablet=2;itemsDesktop=3;break;case 4:itemsMobile=1;itemsTablet=2;itemsDesktop=4;break;case 5:itemsMobile=1;itemsTablet=2;itemsDesktop=5;break;case 6:itemsMobile=1;itemsTablet=3;itemsDesktop=6;break;default:break}
|
||||
slider_options.responsive={0:{items:itemsMobile,dotsContainer:dotsContainerMobile,navContainer:navContainerMobile?navContainerMobile:!1},576:{items:slider_options.items>5?2:itemsTablet,dotsContainer:dotsContainerMobile},768:{items:itemsTablet,dotsContainer:dotsContainerMobile},992:{items:itemsDesktop,dotsContainer:dotsContainer}};if((slider.hasClass('project-listing-wrapper')||slider.hasClass('service-slider-listing')||slider.hasClass('steps-slider'))&&slider_options.items>3){slider_options.responsive[992]={items:3,dotsContainer:dotsContainer};slider_options.responsive[1440]={items:itemsDesktop,dotsContainer:dotsContainer}}
|
||||
if(slider.hasClass('content-slider')){slider_options={...slider_options,onInitialized:function(){const counters=slider.find('.elementor-counter-number');if(counters.length){counters.each(function(){jQuery(this).numerator({duration:jQuery(this).data('duration'),delimiter:jQuery(this).data('delimiter'),toValue:jQuery(this).data('toValue'),fromValue:jQuery(this).data('fromValue')})})}}}}
|
||||
slider.owlCarousel(slider_options);slider.on('changed.owl.carousel',function(e){if(slider_options.autoplay){slider.trigger('stop.owl.autoplay');slider.trigger('play.owl.autoplay')}})})}
|
||||
function isotope_init(){if(jQuery('.isotope').length>0){jQuery('.isotope-trigger').isotope({itemSelector:'.isotope-item',gutter:0,layoutMode:'masonry',masonry:{columnWidth:'.grid-sizer'}});jQuery('.gallery-filter-control-list').on('click','.gallery-filter-control-item',function(){var filterValue=jQuery(this).addClass('active').attr('data-filter');jQuery(this).siblings().removeClass('active')
|
||||
jQuery(this).closest('.isotope-filter').find('.isotope-trigger').isotope({filter:filterValue})})}}
|
||||
function help_item_acardeon(){jQuery('.help-item').each(function(){jQuery('.help-item-title',this).on('click',function(){jQuery(this).siblings('.help-item-content').slideToggle(300).parents('.help-item').toggleClass('active')})})}
|
||||
function custom_video_play_button(){jQuery('.mejs-overlay-button').each(function(){jQuery(this).html('<svg aria-hidden="true" class="progress" width="70" height="70" viewbox="0 0 70 70"><path class="progress__circle" d="m35,2.5c17.955803,0 32.5,14.544199 32.5,32.5c0,17.955803 -14.544197,32.5 -32.5,32.5c-17.955803,0 -32.5,-14.544197 -32.5,-32.5c0,-17.955801 14.544197,-32.5 32.5,-32.5z" /><path class="progress__path" d="m35,2.5c17.955803,0 32.5,14.544199 32.5,32.5c0,17.955803 -14.544197,32.5 -32.5,32.5c-17.955803,0 -32.5,-14.544197 -32.5,-32.5c0,-17.955801 14.544197,-32.5 32.5,-32.5z" pathLength="1" /></svg>')})}
|
||||
function background_image_parallax(object,multiplier){if(object.length>0){multiplier=typeof multiplier!=='undefined'?multiplier:0.5;multiplier=1-multiplier;var doc=jQuery(document);if(jQuery(window).width()>=992){var from_top=doc.scrollTop()-object.offset().top,bg_css=(multiplier*from_top)+'px';object.css({'background-position-y':bg_css})}else{object.css({'background-position-y':''})}
|
||||
jQuery(window).scroll(function(){if(jQuery(window).width()>=992){var from_top=doc.scrollTop()-object.offset().top,bg_css=(multiplier*from_top)+'px';object.css({'background-position-y':bg_css})}else{object.css({'background-position-y':''})}})}}
|
||||
function initWPFormsSubmitButton(){jQuery('.wpforms-submit, .wpforms-page-button, .mc4wp-form-fields button').each(function(){if(!jQuery(this).find('.icon-button-arrow').length){jQuery(this).append('<span class="icon-button-arrow"></span></span>')}
|
||||
if(!jQuery(this).find('.button-inner').length){jQuery(this).append('<span class="button-inner"></span>')}})}
|
||||
function scroll_to_top_init(){var scrollTop=jQuery(window).scrollTop();if(scrollTop>600){jQuery('.footer-scroll-top').addClass('show')}else{jQuery('.footer-scroll-top').removeClass('show')}}
|
||||
function footer_scroll_top(){jQuery('.footer-scroll-top button','.body-container').on('click',function(){jQuery('html').css('scroll-behavior','auto');jQuery('html, body').animate({scrollTop:0},500,function(){jQuery('html').css('scroll-behavior','')})})}
|
||||
function mobile_menu(){jQuery('.mobile-header-menu-container .main-menu, .extra-menu').find('.menu-item').each(function(i,el){if(jQuery(el).find('.sub-menu').length!=0&&jQuery(el).find('.sub-menu-trigger').length==0){jQuery(el).append('<span class="sub-menu-trigger"></span>')}});jQuery('.sub-menu-trigger').off();jQuery('.sub-menu-trigger').on('click',function(){if(jQuery(this).parent().hasClass('active')){jQuery(this).prev().slideUp();jQuery(this).parent().removeClass('active')}else{var currentParents=jQuery(this).parents('.menu-item');jQuery('.sub-menu-trigger').parent().not(currentParents).removeClass('active');jQuery('.sub-menu-trigger').parent().not(currentParents).find('.sub-menu').slideUp(300);jQuery(this).prev().slideDown();jQuery(this).parent().addClass('active')}})}
|
||||
function alter_menu(){jQuery('.alter-menu-wrapper .main-menu').find('.menu-item').each(function(i,el){if(jQuery(el).find('.sub-menu').length!=0&&jQuery(el).find('.sub-menu-trigger').length==0){jQuery(el).append('<span class="sub-menu-trigger"></span>')}});jQuery('.sub-menu-trigger').off();jQuery('.sub-menu-trigger').on('click',function(){if(jQuery(this).parent().hasClass('active')){jQuery(this).prev().slideUp();jQuery(this).parent().removeClass('active')}else{var currentParents=jQuery(this).parents('.menu-item');jQuery('.sub-menu-trigger').parent().not(currentParents).removeClass('active');jQuery('.sub-menu-trigger').parent().not(currentParents).find('.sub-menu').slideUp(300);jQuery(this).prev().slideDown();jQuery(this).parent().addClass('active')}});jQuery('.alter-menu-wrapper .main-menu a').on('click',function(){jQuery('.site-search, .body-overlay, .alter-menu-wrapper').removeClass('active')})}
|
||||
jQuery(document).ready(function(){side_panel_open();extra_panel_open();search_panel_open();switch_form_columns();sticky_menu_active(!0);mobile_menu_open();compact_menu_open();simple_sidebar_open();help_item_acardeon();scroll_to_top_init();footer_scroll_top();background_image_parallax(jQuery('[data-parallax="scroll"]'),0.7);initFloatPlaceholderInput();mobile_menu();alter_menu();menu_text_animate();initWPFormsSubmitButton();setTimeout(custom_video_play_button,800);widget_list_hierarchy_init();setTimeout(fix_responsive_iframe,800);setTimeout(elements_slider_init,500);setTimeout(isotope_init,500)});jQuery(window).on('resize',function(){sticky_menu_active();mobile_menu_open();compact_menu_open();background_image_parallax(jQuery('[data-parallax="scroll"]'),0.7)});jQuery(window).on('scroll',function(){scroll_to_top_init()});(function($){var loader;$.fn.start_loader=start_loader;$.fn.stop_loader=stop_loader;$(document).ready(function(){page_loader_controller();$('.elementor-widget').on('click','.content-pagination a',function(e){e.preventDefault();var paged=null;var id=$(this).parents('.elementor-widget').attr('data-id');if($(this).hasClass('prev')){paged=parseInt($(this).siblings('.current').text())-1}else if($(this).hasClass('next')){paged=parseInt($(this).siblings('.current').text())+1}else{paged=parseInt($(this).text())}
|
||||
var filter_term=$('.filter-control-list .dot.active',$(this).parents('.archive-listing').siblings('.filter-control-wrapper')).attr('data-value');var filter_taxonomy=$('.filter-control-list',$(this).parents('.archive-listing').siblings('.filter-control-wrapper')).attr('data-taxonomy');genre_get_posts(paged,id,filter_term,filter_taxonomy)});$('.elementor-widget').on('click','.filter-control-list .filter-control-item',function(e){e.preventDefault();var paged=1;var id=$(this).parents('.elementor-widget').attr('data-id');var filter_term=$(this).attr('data-value');var filter_taxonomy=$(this).parents('.filter-control-list').attr('data-taxonomy');if(filter_term==='all'){filter_term=null}
|
||||
$(this).addClass('active').siblings('.filter-control-item').removeClass('active');genre_get_posts(paged,id,filter_term,filter_taxonomy)})});function page_loader_controller(){var page_loader,interval,timeLaps;page_loader=$('.page-loader');timeLaps=0;interval=setInterval(function(){var page_loaded=check_if_page_loaded();timeLaps ++;if(page_loaded||timeLaps==12){clearInterval(interval);page_loader.stop_loader()}},10)}
|
||||
function check_if_page_loaded(){var keys,key,i,r;if(window.modules_state==undefined)return!1;r=!0;keys=Object.keys(window.modules_state);for(i=0;i<keys.length;i++){key=keys[i];if(!window.modules_state[key]){r=!1;break}}
|
||||
return r}
|
||||
function start_loader(){var loader_container;loader=jQuery(this);if(!loader.length)return;loader_container=loader[0].parentNode;if(loader_container!=null){loader_container.style.opacity=1;setTimeout(function(){loader_container.style.display="block"},10)}}
|
||||
function stop_loader(){var loader_container;loader=jQuery(this);if(!loader.length)return;loader_container=loader[0].parentNode;if(loader_container!=null){setTimeout(function(){loader_container.style.opacity=0;setTimeout(function(){loader_container.style.display="none"},300)},300)}}
|
||||
function genre_get_posts(paged=1,id=null,filter_term=null,filter_taxonomy=null){var ajax_url=ajax_params.ajax_url;var args=$('.archive-listing','.elementor-element-'+id).attr('data-ajax');var widget=$('.archive-listing','.elementor-element-'+id).attr('data-widget');var classes=$('.archive-listing-wrapper','.elementor-element-'+id).attr('class');$.ajax({type:'POST',url:ajax_url,data:{action:'pagination',args:args,widget:widget,paged:paged,classes:classes,id:id,filter_term:filter_term,filter_taxonomy:filter_taxonomy,security:ajax_params.ajax_nonce},beforeSend:function(){var height=$('.archive-listing','.elementor-element-'+id).outerHeight();$('.archive-listing','.elementor-element-'+id).height(height).addClass('loading')},success:function(data){$('.archive-listing','.elementor-element-'+id).html(data);if($(window.wp.mediaelement).length>0){$(window.wp.mediaelement.initialize)}
|
||||
setTimeout(function(){$('.archive-listing','.elementor-element-'+id).removeAttr('style').removeClass('loading')},500);setTimeout(function(){elements_slider_init(jQuery('.owl-carousel',jQuery('.elementor-element-'+id)))},300);setTimeout(fix_responsive_iframe,600);setTimeout(custom_video_play_button,800);setTimeout(isotope_init,500);jQuery('body').trigger('genre_get_posts_success',[classes,id])},error:function(){$('.archive-listing','.elementor-element-'+id).html('<p class="error">AJAX ERROR</p>')}})}}(jQuery))
|
||||
@@ -0,0 +1,24 @@
|
||||
(function(jQuery){"use strict";function product_filters_open(){jQuery('.product-filters-trigger').on('click',function(){if(jQuery(window).width()<992){jQuery('.shop-hidden-sidebar, .body-overlay').addClass('active')}});jQuery('.shop-hidden-sidebar-close, .body-overlay').on('click',function(){jQuery('.shop-hidden-sidebar, .body-overlay').removeClass('active')})}
|
||||
function custom_quantity(){jQuery('.quantity-wrapper').each(function(){if(!jQuery(this).hasClass('styled')){if(!jQuery('.quantity',this).hasClass('hidden')){jQuery(this).addClass('styled').prepend('<div class="btn-minus"><i class="icon"></i></div>').append('<div class="btn-plus"><i class="icon"></i></div>')}else{jQuery(this).addClass('hidden')}
|
||||
var spinner=jQuery(this),input=spinner.find('input[type="number"]'),btnUp=spinner.find('.btn-plus'),btnDown=spinner.find('.btn-minus'),min=input.attr('min'),max=input.attr('max');if(typeof min!==typeof undefined&&min!==!1&&min!==''&&min>=1){min=parseInt(min)}else{min=0}
|
||||
if(typeof max!==typeof undefined&&max!==!1&&max!==''&&max>min){max=parseInt(max)}else{max=0}
|
||||
btnUp.on('click',function(){if(input.val()==''){var oldValue=0}else{var oldValue=parseInt(input.val())}
|
||||
if(oldValue>=max&&max!==0){var newVal=oldValue}else{var newVal=oldValue+1}
|
||||
input.val(newVal);input.trigger('change')});btnDown.on('click',function(){if(input.val()==''){var oldValue=0}else{var oldValue=parseInt(input.val())}
|
||||
if(oldValue<=min){var newVal=oldValue}else{var newVal=oldValue-1}
|
||||
input.val(newVal);input.trigger('change')})}})}
|
||||
function single_product_thumb_slider(){jQuery('.woocommerce-product-gallery--with-images').find('.flex-control-nav').slick({mobileFirst:!0,prevArrow:'<div class="slick-button slick-prev"></div>',nextArrow:'<div class="slick-button slick-next"></div>',infinite:!1,responsive:[{breakpoint:120,settings:{slidesToShow:3,vertical:!1,verticalSwiping:!1}},{breakpoint:400,settings:{slidesToShow:4,vertical:!1,verticalSwiping:!1}},{breakpoint:576,settings:{slidesToShow:5,vertical:!1,verticalSwiping:!1}},{breakpoint:768,settings:{slidesToShow:4,vertical:!1,verticalSwiping:!1}},{breakpoint:992,settings:{slidesToShow:4,vertical:!0,verticalSwiping:!0}}]})}
|
||||
function initWoocommerceAieroButton(){if(jQuery('#payment #place_order').find('.icon-button-arrow').length<1){jQuery('#payment #place_order').append('<span class="icon-button-arrow"></span>')}
|
||||
if(jQuery('#payment #place_order').find('.button-inner').length<1){jQuery('#payment #place_order').append('<span class="button-inner"></span>')}}
|
||||
jQuery(document).ready(function(){product_filters_open();custom_quantity();setTimeout(single_product_thumb_slider,500);if(jQuery(document.body).hasClass('woocommerce-account')){setTimeout(function(){initFloatPlaceholderInput('.woocommerce form .woocommerce-Input[type="password"][placeholder]:not([placeholder=""])');jQuery('.input-floating-wrap ~ .show-password-input').on('click',function(){if(jQuery(this).hasClass('display-password')){jQuery(this).siblings('.input-floating-wrap').find('input[type="password"]').prop('type','text')}else{jQuery(this).siblings('.input-floating-wrap').find('input[type="text"]').prop('type','password')}})},300)}
|
||||
jQuery('.sidebar .wc-block-grid__product-add-to-cart .add_to_cart_button, .slide-sidebar-wrapper .wc-block-grid__product-add-to-cart .add_to_cart_button, .footer .wc-block-grid__product-add-to-cart .add_to_cart_button').append('<span class="button-inner"></span>');jQuery('.woocommerce-cart-form .actions .button').append('<span class="icon-button-arrow"></span><span class="button-inner"></span>');jQuery(document.body).on('updated_shipping_method',function(){initFloatPlaceholderInput();initWoocommerceAieroButton()});jQuery(document.body).on('updated_wc_div',function(){initFloatPlaceholderInput();initWoocommerceAieroButton();if(jQuery('.woocommerce-cart-form .actions .button').find('.icon-button-arrow').length<1){jQuery('.woocommerce-cart-form .actions .button').append('<span class="icon-button-arrow"></span>')}
|
||||
if(jQuery('.woocommerce-cart-form .actions .button').find('.button-inner').length<1){jQuery('.woocommerce-cart-form .actions .button').append('<span class="button-inner"></span>')}});jQuery(document.body).on('country_to_state_changed',function(){initFloatPlaceholderInput();initWoocommerceAieroButton()});jQuery(document.body).on('init_checkout',function(){initWoocommerceAieroButton()});jQuery(document.body).on('updated_checkout',function(){initFloatPlaceholderInput();initWoocommerceAieroButton()});jQuery(document.body).on('payment_method_selected',function(){initWoocommerceAieroButton()});jQuery('.single-product .single_add_to_cart_button').append('<span class="button-inner"></span>');jQuery('.single-product .added_to_cart').append('<span class="button-inner"></span>');jQuery(document.body).on('wc_cart_button_updated',function(){if(jQuery('.single-product .added_to_cart').find('.button-inner').length<1){jQuery('.single-product .added_to_cart').append('<span class="button-inner"></span>')}})});function is_mobile(){if(window.innerWidth<768){return!0}else{return!1}}
|
||||
function is_mobile_device(){if(navigator.userAgent.match(/(Android|iPhone|iPod|iPad|Phone|DROID|webOS|BlackBerry|Windows Phone|ZuneWP7|IEMobile|Tablet|Kindle|Playbook|Nexus|Xoom|SM-N900T|GT-N7100|SAMSUNG-SGH-I717|SM-T330NU)/)){return!0}else{return!1}}
|
||||
function not_desktop(){if((window.innerWidth<1367&&is_mobile_device())||window.innerWidth<1200){return!0}else{return!1}}
|
||||
jQuery(document.body).on('updated_cart_totals',function(){custom_quantity()});jQuery('.woocommerce,.woocommerce-page').on('click','.shop-mode-buttons a',function(e){var mode=jQuery(this).hasClass('woocommerce-grid')?'grid':'list';var mode_old=jQuery(this).siblings('input').val();if(mode!=mode_old){jQuery.cookie('shop_mode',mode,{expires:365,path:'/'});jQuery(this).siblings('input').val(mode).parents('form').get(0).submit()}
|
||||
e.preventDefault();return!1});window.addEventListener("load",function(){aiero_ajax_add_to_cart();aiero_trigger_mini_cart()});function aiero_trigger_mini_cart(){var cart=jQuery('.mini-cart-panel');cart.off();if(window.innerWidth>=992){jQuery('.header .mini-cart-trigger').on('click',function(e){e.preventDefault();cart.addClass('active');jQuery('.close-mini-cart').off();aiero_close_mini_cart()})}}
|
||||
function aiero_close_mini_cart(){jQuery('.close-mini-cart').on('click',function(){jQuery('.mini-cart').removeClass('active')})}
|
||||
function aiero_ajax_add_to_cart(){if(typeof wc_add_to_cart_params!=='undefined'){if(jQuery('.single_add_to_cart_button').closest('.product').hasClass('product-type-external')){return}
|
||||
jQuery('.single_add_to_cart_button').off().on('click',function(e){if(!(jQuery(this).hasClass('single_add_to_cart_button')&&wc_add_to_cart_params.cart_redirect_after_add==='yes')){e.preventDefault();var button=jQuery(this);var form=button.closest('form.cart');var product_id=form.find('input[name=add-to-cart]').val()||button.val()||form.find('.variation_id').val();if(!product_id)
|
||||
return;if(button.is('.disabled'))
|
||||
return;var data={action:'aiero_ajax_add_to_cart','add-to-cart':product_id,};form.serializeArray().forEach(function(element){data[element.name]=element.value});jQuery(document.body).trigger('adding_to_cart',[button,data]);jQuery.ajax({type:'POST','url':wc_add_to_cart_params.ajax_url,data:data,beforeSend:function(response){button.removeClass('added').addClass('loading')},complete:function(response){button.addClass('added').removeClass('loading')},success:function(response){if(response.error&response.product_url){window.location=response.product_url;return}else{jQuery(document.body).trigger('added_to_cart',[response.fragments,response.cart_hash,button])}}});return!1}})}}}).call(this,jQuery)
|
||||
@@ -0,0 +1,2 @@
|
||||
/*! elementor - v3.30.0 - 09-07-2025 */
|
||||
.elementor-counter{align-items:stretch;display:flex;flex-direction:column-reverse;justify-content:center}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{display:flex;flex:1;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{flex-grow:var(--counter-prefix-grow,1);text-align:end;white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{flex-grow:var(--counter-suffix-grow,1);text-align:start;white-space:pre-wrap}.elementor-counter .elementor-counter-title{align-items:center;display:flex;flex:1;font-size:19px;font-weight:400;justify-content:center;line-height:2.5;margin:0;padding:0}
|
||||
@@ -0,0 +1,2 @@
|
||||
/*! elementor - v3.30.0 - 09-07-2025 */
|
||||
.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{flex-shrink:0;margin:0 var(--divider-element-spacing)}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{direction:ltr;display:flex;margin:0}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{border-block-end:0;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color);content:"";display:block;flex-grow:1}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url);-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;min-height:var(--divider-pattern-height);width:100%}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var( --container-widget-flex-grow )}
|
||||
@@ -0,0 +1,2 @@
|
||||
/*! elementor - v3.30.0 - 09-07-2025 */
|
||||
.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=".svg"]{width:48px}.elementor-widget-image img{display:inline-block;vertical-align:middle}
|
||||
@@ -0,0 +1,2 @@
|
||||
/*! elementor - v3.30.0 - 09-07-2025 */
|
||||
body.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}
|
||||
@@ -0,0 +1,988 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata>Copyright (C) 2025 by original authors @ fontello.com</metadata>
|
||||
<defs>
|
||||
<font id="eicons" horiz-adv-x="1000" >
|
||||
<font-face font-family="eicons" font-weight="400" font-stretch="normal" units-per-em="1000" ascent="850" descent="-150" />
|
||||
<missing-glyph horiz-adv-x="1000" />
|
||||
<glyph glyph-name="editor-link" unicode="" d="M691 233c0 8-3 15-8 20l-64 64c-6 6-13 9-21 9-9 0-16-3-22-10 0-1 2-3 6-6 3-3 5-5 6-7 2-1 3-3 5-5 2-3 3-6 4-8s1-6 1-9c0-8-3-15-8-21-6-5-13-8-21-8-3 0-6 0-9 1s-5 2-7 4c-3 2-5 3-6 5-2 1-4 3-7 6-3 4-5 5-6 6-6-6-10-14-10-22 0-9 3-15 9-21l63-63c5-6 12-9 21-9 8 0 15 3 21 8l45 45c5 6 8 13 8 21z m-215 215c0 9-3 15-9 21l-63 64c-6 5-12 8-21 8-8 0-15-3-20-8l-45-45c-6-5-9-12-9-20 0-8 3-15 9-21l63-64c6-5 13-8 21-8 9 0 16 3 22 10 0 0-2 2-6 5-3 4-5 6-6 7-2 1-3 3-5 6-2 2-3 5-4 8-1 2-1 5-1 8 0 9 3 15 8 21s13 9 21 9c3 0 6-1 9-1 2-1 5-3 8-5 2-2 4-3 5-4 2-1 4-4 7-7 3-3 5-5 6-6 7 7 10 14 10 22z m274-215c0-25-9-46-26-63l-45-44c-17-17-37-26-62-26-24 0-45 9-62 26l-63 64c-17 17-26 37-26 62 0 25 9 46 27 64l-27 27c-17-18-38-27-63-27-25 0-46 9-63 26l-64 63c-17 18-26 38-26 63 0 25 9 45 26 62l45 45c17 17 38 25 62 25 25 0 46-9 63-26l63-63c17-17 25-38 25-62 0-25-9-47-27-64l27-27c18 17 39 27 64 27 25 0 45-9 62-26l64-64c17-17 26-38 26-62z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-unlink" unicode="" d="M383 222l-78-78c-2-1-4-3-7-3-3 0-5 1-7 3-2 2-3 4-3 7s1 5 3 7l77 78c2 2 5 3 7 3s5-1 8-3c1-2 2-4 2-7s0-5-2-7z m51-12v-97c0-3-1-5-3-8-2-1-4-2-7-2s-5 0-7 2-3 5-3 8v96c0 3 1 5 3 7 1 2 4 3 7 3s5-1 7-3c2-1 3-4 3-6z m-68 67c0-3-1-5-3-7-1-2-4-3-7-3h-96c-3 0-5 1-7 3-2 2-3 4-3 7s0 5 3 7c1 2 4 3 7 3h96c3 0 5-1 7-3 2-2 3-4 3-7z m382-39c0-24-8-44-25-61l-45-44c-17-17-37-25-61-25-25 0-45 9-62 26l-101 101c-4 4-8 10-12 17l72 5 82-83c6-5 13-8 21-8 8 0 15 2 20 8l45 44c6 6 8 12 8 20 0 8-3 15-8 21l-83 83 5 72c7-4 13-9 17-13l102-101c17-17 25-38 25-62z m-186 219l-72-5-83 83c-6 5-12 8-20 8-8 0-15-3-21-8l-45-44c-6-6-8-13-8-21 0-7 3-15 8-20l83-83-5-72c-7 4-13 8-17 12l-102 102c-17 17-25 38-25 61 0 25 8 45 25 62l45 44c17 17 37 25 61 25 25 0 45-9 62-26l101-101c4-4 9-10 13-17z m191-25c0-3-1-5-3-7-2-2-4-3-7-3h-97c-3 0-5 1-7 3-1 1-3 4-3 7 0 3 1 5 3 7 2 1 4 3 7 3h97c3 0 5-1 7-3 2-2 3-4 3-7z m-165 164v-96c0-3 0-5-3-7-1-2-4-3-7-3-3 0-5 0-7 3-1 1-3 4-3 7v96c0 3 1 5 3 7 2 2 4 3 7 3 3 0 5-1 7-3 3-2 3-4 3-7z m124-45l-78-78c-2-1-4-3-7-3-2 0-4 1-7 3-2 2-3 5-3 7s1 5 3 8l78 77c2 2 4 3 7 3s5-1 7-3c1-2 3-4 3-7s-2-5-3-7z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-external-link" unicode="" d="M742 481l61-61c3-3 8-5 13-5 5 0 10 2 13 5 4 4 6 9 6 14v189c0 5-2 10-6 13-4 4-8 6-13 6h-189c-5 0-10-2-13-6s-6-8-6-13 2-10 6-13l65-65-225-225c-17-18-17-46 0-63s46-18 63 0l225 224z m8-189v-123c0-30-11-56-32-78-22-22-48-33-79-33h-320c-30 0-56 11-78 33-22 22-33 48-33 78v320c0 31 11 57 33 79s48 32 78 32h226c4 0 7-1 9-3 2-3 3-6 3-9v-25c0-3-1-6-3-8-3-3-6-4-9-4h-226c-17 0-31-6-43-18s-18-26-18-43v-320c0-17 6-31 18-43s27-18 43-18h320c17 0 31 6 44 18s17 26 17 43v123c0 4 2 7 4 9 2 2 5 3 9 3h24c4 0 7-1 9-3 3-3 4-6 4-10z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-close" unicode="" d="M580 329l158 158c16 16 16 43 0 59-17 16-43 16-59 0l-158-158-158 158c-16 17-43 17-59 0-8-8-12-18-12-29s4-22 12-30l158-158-158-158c-16-16-16-42 0-58 9-9 19-13 30-13s21 5 29 13l158 157 158-157c9-9 19-13 30-13s21 5 29 13c9 8 12 18 12 29s-4 21-12 30l-158 157z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-list-ol" unicode="" d="M182 576l26-3v-15h-83v15l27 3v84h-27v15l57 8v-107z m7-249h-31l0 1 22 23c9 10 15 19 19 25 4 6 6 13 6 21 0 11-3 20-10 26s-17 10-30 10c-12 0-22-4-29-12-8-7-11-17-11-28l0 0h24c0 6 1 11 4 15 3 4 7 6 12 6 5 0 9-2 12-5 3-4 4-8 4-13 0-4-1-8-3-13-3-4-6-10-12-16l-39-43v-16h81v31h-18l-1-12z m-1-225c6 4 10 8 14 15s5 13 5 20c0 15-4 26-12 34-7 8-17 12-30 12-11 0-20-4-28-12s-11-19-11-31l0-1h24c0 6 2 10 5 14 3 4 7 5 11 5 5 0 9-2 12-5s4-10 4-16c0-7-1-13-4-17-3-4-7-6-13-6h-14v-24h14c6 0 11-2 14-6 4-4 5-11 5-19 0-7-2-13-5-17-4-4-8-6-14-6-5 0-9 2-12 6-3 4-5 9-5 15h-23l0 0c0-15 4-26 12-34 8-8 17-12 28-12 13 0 23 4 31 13s12 20 12 35c0 8-1 16-5 23-3 6-8 11-15 14z m620 290h-475c-23 0-41-19-41-42 0-23 18-42 41-42h475c23 0 42 19 42 42 0 23-19 42-42 42z m0-250h-475c-23 0-41-19-41-42s18-42 41-42h475c23 0 42 19 42 42s-19 42-42 42z m-475 416h475c23 0 42 19 42 42s-19 42-42 42h-475c-23 0-41-19-41-42s18-42 41-42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-list-ul" unicode="" d="M892 350c0-23-19-42-42-42h-475c-23 0-42 19-42 42 0 23 19 42 42 42h475c23 0 42-19 42-42z m-42-208h-475c-23 0-42-19-42-42s19-42 42-42h475c23 0 42 19 42 42s-19 42-42 42z m-475 416h475c23 0 42 19 42 42s-19 42-42 42h-475c-23 0-42-19-42-42s19-42 42-42z m-187 105c-35 0-63-28-63-63 0-35 28-62 63-62 34 0 62 27 62 62 0 35-28 63-62 63z m0-500c-35 0-63-28-63-63 0-35 28-62 63-62 34 0 62 27 62 62 0 35-28 63-62 63z m0 252c-35 0-63-28-63-62 0-35 28-63 63-63 34 0 62 28 62 63 0 34-28 62-62 62z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-bold" unicode="" d="M469 140c16-7 31-11 45-11 81 0 121 39 121 117 0 27-5 48-13 63-6 11-13 19-20 26s-15 13-22 16c-7 4-16 7-26 9-10 2-19 3-27 4-8 0-18 1-30 1-16 0-27-2-33-4 0-12 0-31 0-55 0-25 0-43 0-56 0-1 0-9 0-23s-1-25 0-34c0-9 0-18 1-29s2-19 4-24z m-2 256c10-1 23-2 40-2 20 0 37 1 52 4 15 3 29 8 41 15 12 6 20 16 27 28 6 13 9 28 9 46 0 15-3 28-11 39-7 11-16 20-28 26-12 6-26 11-40 14s-29 4-45 4c-12 0-28-1-48-4 0-11 1-26 2-48 1-22 2-38 2-49 0-6 0-14 0-25 0-11 0-20 0-26-2-9-2-17-1-22z m-175-296l1 30c3 1 12 3 27 5s27 6 35 9c1 3 3 6 4 9s2 7 3 11 1 7 1 10 1 7 1 12 0 9 0 12v21c0 213-2 324-7 334-1 1-3 3-7 4s-9 3-15 4-11 2-16 2-10 1-16 2-8 0-10 0l-1 28c21 0 58 1 111 3s93 4 122 4c5 0 12 0 22 0s17 0 22 0c15 0 30-1 45-4s28-8 41-14c14-6 25-14 35-23s18-20 25-34 9-28 9-45c0-11-2-21-6-31s-8-17-12-23-12-13-21-19-17-11-24-14-16-8-27-13c33-8 61-22 83-44 22-22 33-48 33-81 0-22-3-41-11-58s-18-32-30-43-28-20-45-28-35-13-54-16-37-4-57-4c-10 0-24 0-43 1s-33 1-43 1c-23 0-56-2-100-4s-69-4-75-4z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-italic" unicode="" d="M333 101l6 27c1 1 10 3 26 7s29 9 37 13c6 7 10 18 13 32 0 2 7 33 20 95s25 120 37 177 17 88 17 96v9c-5 3-11 5-18 6s-14 2-22 2-15 1-19 2l6 33c7 0 20-1 39-2s35-2 49-2c14-1 27-1 39-1 11 0 22 0 32 1s25 1 40 2 26 2 32 2c-1-8-3-18-6-29-7-2-18-6-33-9s-27-8-35-11c-2-4-4-9-5-14s-2-9-3-13-2-8-2-15-2-11-3-14c-5-32-15-77-28-136s-22-98-25-116c-1-2-2-8-4-19s-5-20-7-29-4-18-5-27-2-15-2-19l0-6c4 0 24-4 61-10-1-9-3-20-5-32-3 0-6 0-11 0s-8-1-10-1c-6 0-16 2-29 4s-22 3-27 3c-30 1-53 1-68 1-11 0-26-1-46-3s-34-4-41-4z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-underline" unicode="" d="M266 570c-8 0-13 0-15 1l-1 28c3 1 7 1 13 1 13 0 25-1 37-2 28-1 46-2 54-2 19 0 37 1 54 1 25 1 41 1 48 2 12 0 22 0 28 1l-1-5 1-20v-3c-13-2-26-3-40-3-13 0-22-3-26-8-3-3-4-17-4-43 0-3 0-6 0-10 0-4 0-7 0-8l0-74 5-90c1-27 6-48 16-65 8-13 18-23 32-30 19-10 38-15 57-15 23 0 44 3 62 9 12 4 23 10 32 17 11 8 18 14 22 20 8 12 13 24 17 37 4 16 6 40 6 74 0 17 0 30-1 41s-2 24-4 39c-1 16-3 33-4 52l-1 19c-2 14-4 24-8 28-8 8-16 11-25 11l-33-1-4 1 0 27h28l67-3c16-1 37 1 63 3l6 0c1-9 2-14 2-17 0-1 0-5-1-10-10-2-19-4-28-4-15-2-24-4-25-5-4-4-5-8-5-14 0-1 0-4 0-8 0-4 0-8 0-10 2-4 5-47 8-128 1-41-1-74-5-98-4-16-8-29-14-39-8-14-20-27-36-39-17-13-36-22-60-29-23-7-51-11-83-11-36 0-67 5-92 15-26 10-45 24-58 40-14 16-22 37-27 62-4 18-5 43-5 77v106c0 41-2 64-6 69-4 8-20 12-46 13z m484-462c0-3-1-4-3-6s-4-2-7-2h-480c-2 0-5 1-7 2s-3 3-3 6v14c0 2 1 4 3 6s5 2 7 2h480c3 0 5-1 7-2s3-4 3-6v-14z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-paragraph" unicode="" d="M437 328c-92 0-165 53-165 145s73 147 165 147h250l0 0c23 0 41-19 41-42l0 0 0 0c0-23-18-41-41-41h-42v-415l0 0c0-23-19-42-42-42l0 0 0 0c-23 0-41 19-41 42v415h-42v-415l0 0c0-23-19-42-42-42l0 0 0 0c-23 0-41 19-41 42v206z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-h1" unicode="" d="M673 142c-10 0-24 0-44 1s-34 1-43 1c-10 0-24 0-43-1s-33-1-43-1c-5 0-9 2-12 6s-4 10-4 15c0 7 1 12 5 15s8 5 13 6 10 1 16 2 12 3 15 5c7 4 11 19 11 45l-1 127c0 5 0 8 0 10-3 1-8 2-16 2h-219c-9 0-14-1-17-2-1-2-1-5-1-10l0-120c0-31 4-49 12-54 3-2 9-4 16-4s13-1 19-1 10-2 14-5 7-8 7-15c0-6-1-11-4-16s-7-6-12-6c-10 0-26 0-46 1s-35 1-45 1c-9 0-23 0-41-1s-32-1-42-1c-5 0-8 2-11 6s-4 10-4 15c0 7 1 11 5 15s7 5 11 5 10 2 16 3 10 3 13 5c7 5 11 20 11 47l0 18v264c0 1 0 4 0 9s0 9 0 12-1 7-1 12 0 10-1 14-1 8-2 12-2 8-4 11-3 4-5 5c-3 3-8 4-14 4s-12 1-17 1-10 2-14 5-6 8-6 14c0 6 2 11 4 16s7 7 12 7c10 0 25 0 45-1s35-1 45-1c9 0 23 0 41 1s32 1 41 1c6 0 10-3 12-7s5-10 5-16c0-7-2-11-6-14s-8-5-12-5-10-1-17-1-10-2-14-4c-7-5-11-22-11-52l0-105c0-4 0-8 1-10 3-1 7-1 12-1h228c5 0 9 1 12 1 1 2 1 6 1 10l0 105c0 30-4 47-11 52-4 2-10 3-19 4s-16 1-22 4-8 8-8 16c0 6 1 11 4 16s7 7 12 7c10 0 24 0 43-1s33-1 43-1c9 0 23 0 42 1s32 1 42 1c5 0 10-2 12-7s4-10 4-16c0-6-2-11-6-14s-8-5-12-5-11 0-17 0-11-2-14-5c-8-5-12-22-12-52l1-307c0-26 4-41 11-46 3-2 8-3 15-4s13-1 18-2 9-2 13-5 6-8 6-14c0-6-1-11-4-16s-7-7-12-7z m40 244l-18 30 114 84h31v-276c0-5 0-9 0-14s0-8-1-12 0-8 0-11-1-6-1-8l37 2v-39h-143v33c5 0 10 1 15 2 4 1 8 2 11 5s5 7 7 13 3 14 3 24v200l-55-33z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-h2" unicode="" d="M631 142c-10 0-24 0-43 1s-34 1-44 1c-9 0-24 0-43-1s-33-1-43-1c-5 0-9 2-12 6s-4 10-4 15c0 7 2 12 6 15s7 5 12 6 10 1 17 2 11 3 14 5c7 4 11 19 11 45l0 127c0 5 0 8-1 10-3 1-8 2-16 2h-219c-8 0-14-1-17-2 0-2 0-5 0-10l-1-120c0-31 5-49 12-54 4-2 9-4 16-4s14-1 19-1 10-2 15-5 6-8 6-15c0-6-1-11-4-16s-7-6-12-6c-10 0-25 0-45 1s-35 1-45 1c-10 0-24 0-42-1s-32-1-41-1c-5 0-9 2-12 6s-4 10-4 15c0 7 2 11 5 15s7 5 12 5 9 2 15 3 10 3 14 5c7 5 11 20 11 47l-1 18v264c0 1 0 4 0 9s0 9 0 12 0 7 0 12-1 10-2 14-1 8-2 12-2 8-3 11-4 4-5 5c-4 3-9 4-15 4s-12 1-17 1-10 2-13 5-6 8-6 14c0 6 1 11 4 16s6 7 11 7c10 0 25 0 45-1s35-1 45-1c9 0 23 0 41 1s33 1 42 1c5 0 9-3 12-7s4-10 4-16c0-7-2-11-5-14s-8-5-13-5-10-1-16-1-11-2-14-4c-8-5-12-22-12-52l1-105c0-4 0-8 0-10 3-1 7-1 13-1h227c6 0 10 1 13 1 0 2 0 6 0 10l1 105c0 30-4 47-12 52-3 2-10 3-19 4s-16 1-22 4-8 8-8 16c0 6 1 11 4 16s7 7 12 7c10 0 24 0 43-1s34-1 43-1c9 0 24 0 42 1s33 1 42 1c6 0 10-2 12-7s5-10 5-16c0-6-2-11-6-14s-9-5-13-5-11 0-17 0-11-2-14-5c-7-5-11-22-11-52l0-307c0-26 4-41 11-46 4-2 9-3 15-4s13-1 18-2 10-2 13-5 6-8 6-14c0-6-1-11-4-16s-7-7-12-7z m152 322c-9 0-17-2-24-6s-13-9-16-15c3-3 6-8 7-13s2-9 2-12c0-3 0-7-2-11s-3-7-5-10c-3-4-7-6-11-8s-9-4-16-4c-5 0-9 2-13 4s-7 4-10 8c-3 3-5 7-7 11s-2 10-2 14c0 5 2 11 4 16s5 12 9 18 9 11 16 17c6 5 13 10 21 14s17 7 27 10 21 3 32 3c14 0 27-1 40-5s26-8 37-16 19-17 26-29 10-27 10-44c0-8-2-17-5-26s-9-20-17-31-19-24-33-38-33-30-56-48c-9-8-17-15-24-22s-12-13-16-20-8-11-11-16-4-9-4-12l98-3h3c5 0 10 1 14 2s8 2 11 5 5 6 7 10 2 9 2 16h32l-4-81h-219c0 17 2 32 7 46s10 26 17 37 16 21 25 31 19 18 29 27c12 12 22 22 31 32s15 20 20 30c6 9 10 18 12 27s4 18 4 27c0 8-1 16-2 24s-4 15-8 21-8 11-14 15c-7 3-14 5-24 5z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-h3" unicode="" d="M631 142c-10 0-24 0-43 1-20 1-34 1-44 1-9 0-24 0-43-1-19-1-33-1-43-1-5 0-9 2-12 6-3 5-4 10-4 15 0 7 2 12 6 15 3 4 7 5 12 6 5 0 10 1 17 2 6 1 11 3 14 5 7 4 11 19 11 45l0 127c0 5 0 8-1 10-3 1-8 2-16 2h-219c-8 0-14-1-17-2 0-2 0-5 0-10l-1-120c0-31 5-49 12-54 4-2 9-4 16-4 7-1 14-1 19-1 5 0 10-2 15-5 4-4 6-8 6-15 0-6-1-11-4-16-3-5-7-7-12-7-10 0-25 0-45 1-20 1-35 1-45 1-10 0-24 0-42-1-18-1-32-1-41-1-5 0-9 2-12 7-3 4-4 9-4 14 0 7 2 11 5 15 3 3 7 5 12 6 4 0 9 1 15 2 6 1 10 3 14 5 7 5 11 20 11 47l-1 18v265c0 1 0 4 0 9 0 5 0 9 0 12 0 3 0 7 0 12-1 6-1 10-2 14 0 4-1 8-2 12 0 4-2 8-3 11-2 2-4 4-5 5-4 3-9 4-15 4-7 1-12 1-17 1-5 0-10 2-13 5-4 3-6 8-6 14 0 6 1 11 4 16 2 5 6 7 11 7 10 0 25 0 45-1 20-1 35-1 45-1 9 0 23 0 41 1 19 1 33 1 42 1 5 0 9-2 12-7 3-5 4-10 4-16 0-6-2-11-5-14-4-3-8-5-13-5-5 0-10 0-16-1-6-1-11-2-14-4-8-5-12-22-12-52l1-104c0-5 0-8 0-11 3 0 7 0 13 0h227c6 0 10 0 13 0 0 3 0 6 0 11l1 104c0 30-4 47-12 52-3 3-10 4-19 4s-16 2-22 4c-5 3-8 8-8 17 0 5 1 10 4 15 3 5 7 8 12 8 10 0 24-1 43-2 19-1 34-1 43-1 9 0 24 0 42 1 19 1 33 2 42 2 6 0 10-3 12-8 3-4 5-10 5-15 0-7-2-12-6-15-4-2-9-4-13-4-5 0-11-1-17-1-6 0-11-2-14-4-7-5-11-23-11-53l0-307c0-26 4-41 11-45 4-2 9-4 15-5 7-1 13-1 18-1 5-1 10-2 13-5 4-4 6-8 6-15 0-6-1-11-4-16-3-5-7-7-12-7z m53 61c0 5 1 10 3 15 1 5 4 9 7 12 3 3 6 6 11 8 4 2 9 3 14 3 6 0 11-1 15-3 4-2 7-5 9-8s5-7 6-10c1-4 1-8 1-11 0-3 0-7-1-11-1-5-4-9-6-12 2-3 4-6 7-8 3-3 7-5 11-7 4-1 8-3 13-3 4-1 9-2 14-2 10 0 20 2 27 5 8 4 15 8 20 14 5 6 9 13 12 21s4 17 4 26c0 9-1 18-3 26-2 9-6 17-12 24-6 7-13 12-23 16-10 5-21 7-36 7-1 0-3 0-5 0-2 0-4 0-7 0-3 0-5-1-8-1-2 0-4 0-6 0v36c2-1 4-1 5-1 1 0 2 0 4 0 24 0 43 5 56 16 13 12 20 28 20 49 0 9-1 16-3 23-1 7-4 13-8 18-4 5-9 8-15 11s-12 4-21 4c-4 0-9 0-13-1s-8-3-11-5-6-4-9-6c-3-3-5-5-6-8 3-4 5-8 6-13 1-4 2-9 2-12 0-3-1-7-2-10s-3-7-6-10c-2-4-6-6-10-9-5-2-10-3-16-3-6 0-10 1-14 3s-7 5-10 8c-2 4-5 7-6 12-1 4-2 9-2 14 0 7 2 15 6 24 5 9 11 17 20 25 9 8 20 14 33 19 13 5 28 8 46 8 15 0 30-1 43-4 14-3 26-9 36-16s18-16 24-27c5-11 8-25 8-41 0-7-1-14-4-22-2-8-7-16-13-23-6-8-13-14-23-20s-21-11-35-14v-1c16-3 30-7 42-13 11-6 21-13 29-21 7-9 13-18 17-27 4-10 5-20 5-31 0-17-3-32-10-46s-16-24-28-33c-12-9-25-16-42-20s-34-7-54-7c-19 0-35 2-49 6s-25 10-33 17-16 15-20 24c-4 9-6 18-6 26z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-h4" unicode="" d="M631 142c-10 0-24 0-43 1s-34 1-44 1c-9 0-24 0-43-1s-33-1-43-1c-5 0-9 2-12 6s-4 10-4 15c0 7 2 12 6 15s7 5 12 6 10 1 17 2 11 3 14 5c7 4 11 19 11 45l0 127c0 5 0 8-1 10-3 1-8 2-16 2h-219c-8 0-14-1-17-2 0-2 0-5 0-10l-1-120c0-31 5-49 12-54 4-2 9-4 16-4s14-1 19-1 10-2 15-5 6-8 6-15c0-6-1-11-4-16s-7-6-12-6c-10 0-25 0-45 1s-35 1-45 1c-10 0-24 0-42-1s-32-1-41-1c-5 0-9 2-12 6s-4 10-4 15c0 7 2 11 5 15s7 5 12 5 9 2 15 3 10 3 14 5c7 5 11 20 11 47l-1 18v264c0 1 0 4 0 9s0 9 0 12 0 7 0 12-1 10-2 14-1 8-2 12-2 8-3 11-4 4-5 5c-4 3-9 4-15 4s-12 1-17 1-10 2-13 5-6 8-6 14c0 6 1 11 4 16s6 7 11 7c10 0 25 0 45-1s35-1 45-1c9 0 23 0 41 1s33 1 42 1c5 0 9-3 12-7s4-10 4-16c0-7-2-11-5-14s-8-5-13-5-10-1-16-1-11-2-14-4c-8-5-12-22-12-52l1-105c0-4 0-8 0-10 3-1 7-1 13-1h227c6 0 10 1 13 1 0 2 0 6 0 10l1 105c0 30-4 47-12 52-3 2-10 3-19 4s-16 1-22 4-8 8-8 16c0 6 1 11 4 16s7 7 12 7c10 0 24 0 43-1s34-1 43-1c9 0 24 0 42 1s33 1 42 1c6 0 10-2 12-7s5-10 5-16c0-6-2-11-6-14s-9-5-13-5-11 0-17 0-11-2-14-5c-7-5-11-22-11-52l0-307c0-26 4-41 11-46 4-2 9-3 15-4s13-1 18-2 10-2 13-5 6-8 6-14c0-6-1-11-4-16s-7-7-12-7z m244 90v-8c0-5 0-9 0-14s0-8-1-12 0-8 0-11-1-6-1-8l37 2v-39h-142v33c5 0 10 1 15 2s8 2 11 5 5 7 7 13 2 14 2 24v14h-130v46l172 221h30v-222h49v-46h-49z m-156 47h84v110l-84-110z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-h5" unicode="" d="M631 142c-10 0-24 0-43 1s-34 1-44 1c-9 0-24 0-43-1s-33-1-43-1c-5 0-9 2-12 6s-4 10-4 15c0 7 2 12 6 15s7 5 12 6 10 1 17 2 11 3 14 5c7 4 11 19 11 45l0 127c0 5 0 8-1 10-3 1-8 2-16 2h-219c-8 0-14-1-17-2 0-2 0-5 0-10l-1-120c0-31 5-49 12-54 4-2 9-4 16-4s14-1 19-1 10-2 15-5 6-8 6-15c0-6-1-11-4-16s-7-6-12-6c-10 0-25 0-45 1s-35 1-45 1c-10 0-24 0-42-1s-32-1-41-1c-5 0-9 2-12 6s-4 10-4 15c0 7 2 11 5 15s7 5 12 5 9 2 15 3 10 3 14 5c7 5 11 20 11 47l-1 18v264c0 1 0 4 0 9s0 9 0 12 0 7 0 12-1 10-2 14-1 8-2 12-2 8-3 11-4 4-5 5c-4 3-9 4-15 4s-12 1-17 1-10 2-13 5-6 8-6 14c0 6 1 11 4 16s6 7 11 7c10 0 25 0 45-1s35-1 45-1c9 0 23 0 41 1s33 1 42 1c5 0 9-3 12-7s4-10 4-16c0-7-2-11-5-14s-8-5-13-5-10-1-16-1-11-2-14-4c-8-5-12-22-12-52l1-105c0-4 0-8 0-10 3-1 7-1 13-1h227c6 0 10 1 13 1 0 2 0 6 0 10l1 105c0 30-4 47-12 52-3 2-10 3-19 4s-16 1-22 4-8 8-8 16c0 6 1 11 4 16s7 7 12 7c10 0 24 0 43-1s34-1 43-1c9 0 24 0 42 1s33 1 42 1c6 0 10-2 12-7s5-10 5-16c0-6-2-11-6-14s-9-5-13-5-11 0-17 0-11-2-14-5c-7-5-11-22-11-52l0-307c0-26 4-41 11-46 4-2 9-3 15-4s13-1 18-2 10-2 13-5 6-8 6-14c0-6-1-11-4-16s-7-7-12-7z m118 46c1-3 4-6 6-8s7-4 10-6 8-3 12-4 8-1 11-1c10 0 19 2 26 6s12 10 17 17 7 14 9 22 3 17 3 26c0 5 0 11 0 17s-1 12-3 18c-1 7-3 13-5 19s-7 12-11 16-10 9-16 12-15 5-25 5c-7 0-16-2-26-4s-22-8-34-15l-21 17-2 167h130c6 0 11 0 15 1s9 2 13 5 5 5 7 10 3 10 3 16h31l-4-81-157-3v-89c4 2 8 4 13 5s10 3 16 4 11 2 16 2 11 1 16 1c21 0 39-3 54-9s27-14 37-25 18-22 23-36 7-28 7-42c0-19-3-36-10-51s-17-27-30-37-25-17-41-22-31-7-47-7c-17 0-32 2-44 6s-24 10-33 16-15 14-20 22-7 16-7 24c0 5 1 10 3 15s4 8 7 12 7 6 11 9 9 3 14 3c6 0 11-1 15-3s7-5 10-8 4-7 5-11 2-7 2-11c0-3 0-6-1-10s-3-7-5-10z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-h6" unicode="" d="M631 142c-10 0-24 0-43 1s-34 1-44 1c-9 0-24 0-43-1s-33-1-43-1c-5 0-9 2-12 6s-4 10-4 15c0 7 2 12 6 15s7 5 12 6 10 1 17 2 11 3 14 5c7 4 11 19 11 45l0 127c0 5 0 8-1 10-3 1-8 2-16 2h-219c-8 0-14-1-17-2 0-2 0-5 0-10l-1-120c0-31 5-49 12-54 4-2 9-4 16-4s14-1 19-1 10-2 15-5 6-8 6-15c0-6-1-11-4-16s-7-6-12-6c-10 0-25 0-45 1s-35 1-45 1c-10 0-24 0-42-1s-32-1-41-1c-5 0-9 2-12 6s-4 10-4 15c0 7 2 11 5 15s7 5 12 5 9 2 15 3 10 3 14 5c7 5 11 20 11 47l-1 18v264c0 1 0 4 0 9s0 9 0 12 0 7 0 12-1 10-2 14-1 8-2 12-2 8-3 11-4 4-5 5c-4 3-9 4-15 4s-12 1-17 1-10 2-13 5-6 8-6 14c0 6 1 11 4 16s6 7 11 7c10 0 25 0 45-1s35-1 45-1c9 0 23 0 41 1s33 1 42 1c5 0 9-3 12-7s4-10 4-16c0-7-2-11-5-14s-8-5-13-5-10-1-16-1-11-2-14-4c-8-5-12-22-12-52l1-105c0-4 0-8 0-10 3-1 7-1 13-1h227c6 0 10 1 13 1 0 2 0 6 0 10l1 105c0 30-4 47-12 52-3 2-10 3-19 4s-16 1-22 4-8 8-8 16c0 6 1 11 4 16s7 7 12 7c10 0 24 0 43-1s34-1 43-1c9 0 24 0 42 1s33 1 42 1c6 0 10-2 12-7s5-10 5-16c0-6-2-11-6-14s-9-5-13-5-11 0-17 0-11-2-14-5c-7-5-11-22-11-52l0-307c0-26 4-41 11-46 4-2 9-3 15-4s13-1 18-2 10-2 13-5 6-8 6-14c0-6-1-11-4-16s-7-7-12-7z m164 183c-5 0-10-1-15-3-5-2-10-4-14-7-5-3-8-7-12-10-3-5-6-9-8-13 0-8 0-17 1-26s1-18 3-27 4-18 6-26 6-16 10-23c4-7 8-12 13-16 5-4 11-6 18-6 8 0 16 2 21 6 6 4 11 9 14 16 3 6 6 13 7 21s2 17 2 25c0 5 0 11 0 17s-1 13-2 20-3 12-5 19c-2 6-4 11-8 16s-7 9-12 12c-6 3-11 5-19 5z m106 108c0-5-1-9-2-13s-3-9-6-12c-3-3-6-6-10-8-4-2-8-3-14-3-6 0-11 1-16 3-4 2-7 5-10 8-3 3-5 7-5 10s-2 7-2 11c0 3 0 6 2 10s2 8 5 11c-3 4-7 8-12 10-5 3-12 5-19 5-9 0-16-2-23-6-6-4-12-9-17-15-5-6-9-14-12-23-4-8-7-17-9-27s-3-19-4-29-2-20-2-29c3 4 7 7 11 10 5 4 11 7 17 9 6 3 13 5 20 7 6 2 13 3 20 3 17 0 32-3 45-9s24-14 32-24c8-10 15-22 19-37 4-14 6-29 6-46 0-16-3-31-10-44-6-15-14-27-25-37s-24-19-39-25-31-9-49-9c-22 0-41 4-56 11s-28 20-37 34-16 33-21 54c-4 20-6 44-6 70 0 9 1 21 3 34s4 28 8 42c3 15 9 29 15 44 7 14 15 27 25 38s23 21 37 28 30 11 49 11c16 0 30-2 41-7s21-9 28-15c8-7 13-14 17-22 5-8 6-16 6-23z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-quote" unicode="" d="M482 584v-213c0-21-4-41-12-60-8-19-19-36-33-50-14-13-30-25-49-33-20-8-40-12-60-12h-20c-5 0-9 2-13 6s-6 8-6 14v39c0 5 2 9 6 13 3 4 8 6 13 6h20c21 0 39 8 54 23 15 15 23 33 23 54v10c0 8-3 15-9 20-6 6-12 9-20 9h-68c-16 0-30 5-41 17-12 11-17 25-17 41v116c0 16 5 30 17 41 11 11 25 17 41 17h116c16 0 30-6 41-17 12-12 17-25 17-41z m271 0v-213c0-21-4-41-12-60-8-19-19-36-33-50-14-13-30-25-50-33-19-8-39-12-60-12h-19c-5 0-9 2-14 6s-5 8-5 14v39c0 5 2 9 5 13 4 4 9 6 14 6h19c22 0 40 8 55 23 15 15 22 33 22 54v10c0 8-2 15-8 20s-12 9-20 9h-68c-16 0-30 5-41 17-11 11-17 25-17 41v116c0 16 6 30 17 41s25 17 41 17h116c17 0 30-6 42-17 11-12 16-25 16-41z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-code" unicode="" d="M770 139c-8 0-17 3-24 9-13 13-14 35-1 49l141 149-139 137c-13 14-14 35 0 49 13 13 35 14 48 1l163-162c14-13 14-35 1-48l-164-173c-7-8-16-11-25-11z m-356-126l274 615c8 17 0 37-18 45-17 8-37 0-45-18l-274-614c-8-18 0-38 18-46 4-2 9-3 14-3 13 0 25 8 31 21z m-143 135c14 13 14 35 2 49l-142 148 139 138c14 14 14 35 1 49-13 13-35 14-49 1l-163-162c-13-13-14-35-1-48l165-173c7-7 16-11 25-11 8 0 17 3 23 9z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="elementor" unicode="" d="M0 850h200v-1000h-200v1000z m400-800h600v-200h-600v200z m0 400h600v-200h-600v200z m0 400h600v-200h-600v200z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="elementor-circle" unicode="" d="M500 850c-276 0-500-224-500-500s224-500 500-500 500 224 500 500-224 500-500 500z m-125-708h-83v416h83z m333 0h-250v83h250z m0 166h-250v84h250z m0 167h-250v83h250z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="pojome" unicode="" d="M500-150a474 474 0 0 0-188 37l-12 6v272l32-22a407 407 0 0 1 80-44 292 292 0 0 1 191 6 286 286 0 0 1 87 59 299 299 0 0 1 58 83 292 292 0 0 1 19 105 284 284 0 0 1-19 103 298 298 0 0 1-58 83 229 229 0 0 1-87 58h0a210 210 0 0 1-103 21 214 214 0 0 1-103-20 231 231 0 0 1-87-58 256 256 0 0 1-54-83 251 251 0 0 1-22-103v-429l-34 26a559 559 0 0 0-53 46 484 484 0 0 0-147 354 487 487 0 0 0 147 356 489 489 0 0 0 353 144 488 488 0 0 0 353-144 487 487 0 0 0 147-356 484 484 0 0 0-147-353 484 484 0 0 0-353-147z m-159 71a435 435 0 0 1 159-29 443 443 0 0 1 324 134 444 444 0 0 1 134 324 447 447 0 0 1-134 327 448 448 0 0 1-324 130 448 448 0 0 1-324-130 447 447 0 0 1-134-327 444 444 0 0 1 135-324l15-15v342a292 292 0 0 0 25 119 295 295 0 0 0 66 95 268 268 0 0 0 100 68 252 252 0 0 0 117 23 251 251 0 0 0 118-22 270 270 0 0 0 99-69 340 340 0 0 0 67-95 325 325 0 0 0 23-119 333 333 0 0 0-23-122 341 341 0 0 0-67-98 328 328 0 0 0-99-68 330 330 0 0 0-221-7 462 462 0 0 0-56 31v-167z m159 232a222 222 0 0 0-76 13 214 214 0 0 0-64 43 287 287 0 0 0-44 62 194 194 0 0 0-17 82 187 187 0 0 0 17 77 210 210 0 0 0 106 106 223 223 0 0 0 154 0 215 215 0 0 0 64-43 159 159 0 0 0 44-65 184 184 0 0 0 16-76 194 194 0 0 0-17-80 190 190 0 0 0-44-63 212 212 0 0 0-63-44 222 222 0 0 0-76-12z m0 356a180 180 0 0 1-62-11 168 168 0 0 1-84-87 145 145 0 0 1-13-60 152 152 0 0 1 13-63 243 243 0 0 1 36-52 171 171 0 0 1 50-34 188 188 0 0 1 122 0 170 170 0 0 1 49 34 151 151 0 0 1 35 50 154 154 0 0 1 13 64 145 145 0 0 1-13 60 119 119 0 0 1-34 50 174 174 0 0 1-52 36 180 180 0 0 1-60 13z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="plus" unicode="" d="M454 704c-12-12-16-25-16-41v-246h-250c-42 0-63-21-63-63s21-62 63-62h250v-246c0-17 4-33 16-46 13-13 29-17 46-17 17 0 33 4 42 17 12 13 21 25 21 46v246h245c42 0 63 21 63 62s-21 63-63 63h-245v246c0 16-5 29-21 41-13 13-25 17-42 17-17 0-33-4-46-17z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="menu-bar" unicode="" d="M104 517h792c33 0 62 29 62 62s-29 63-62 63h-792c-33 0-62-29-62-63s29-62 62-62z m0-250h792c33 0 62 29 62 62s-29 63-62 63h-792c-33 0-62-29-62-63s29-62 62-62z m0-250h792c33 0 62 29 62 62s-29 63-62 63h-792c-33 0-62-29-62-63s29-62 62-62z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="apps" unicode="" d="M167 517h166v166h-166v-166z m250-500h166v166h-166v-166z m-250 0h166v166h-166v-166z m0 250h166v166h-166v-166z m250 0h166v166h-166v-166z m250 416v-166h166v166h-166z m-250-166h166v166h-166v-166z m250-250h166v166h-166v-166z m0-250h166v166h-166v-166z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="accordion" unicode="" d="M938 600h-875c-35 0-63-28-63-62v-375c0-35 28-63 63-63h875c34 0 62 28 62 63v375c0 34-28 62-62 62z m20-437c0-12-9-21-20-21h-875c-12 0-21 9-21 21v375c0 11 9 20 21 20h875c11 0 20-9 20-20v-375z m-854 520h792c11 0 21 10 21 21s-10 21-21 21h-792c-11 0-21-9-21-21s10-21 21-21z m0 125h792c11 0 21 10 21 21s-10 21-21 21h-792c-11 0-21-9-21-21s10-21 21-21z m792-916h-792c-11 0-21-10-21-21s10-21 21-21h792c11 0 21 9 21 21s-10 21-21 21z m0 125h-792c-11 0-21-10-21-21s10-21 21-21h792c11 0 21 9 21 21s-10 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="alert" unicode="" d="M500 829c-264 0-479-215-479-479s215-479 479-479 479 215 479 479-215 479-479 479z m0-917c-241 0-437 197-437 438s196 438 437 438 438-197 438-438-197-438-438-438z m0 542c-34 0-62-28-62-62v-250c0-35 28-63 62-63s63 28 63 63v250c0 34-28 62-63 62z m21-312c0-12-9-21-21-21s-21 9-21 21v250c0 11 10 21 21 21s21-10 21-21v-250z m-21 479c-34 0-62-28-62-63s28-62 62-62 63 28 63 62-28 63-63 63z m0-83c-11 0-21 9-21 20s10 21 21 21 21-9 21-21-9-20-21-20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="animation-text" unicode="" d="M165 545c-6 16-33 16-39 0l-125-333c-4-11 2-23 13-27 10-4 22 1 26 12l42 112c1 0 1-1 1-1h125c1 0 1 1 1 1l42-112c4-8 11-14 20-14 2 0 5 1 7 2 11 4 16 16 12 27l-125 333z m-67-195l48 128 48-128h-96z m590 83c34 0 62-28 62-62 0-12 9-21 21-21s21 9 21 21c0 57-47 104-104 104s-105-47-105-104v-83c0-58 47-105 105-105s104 47 104 105c0 11-10 20-21 20s-21-9-21-20c0-35-28-63-62-63s-63 28-63 63v83c0 34 28 62 63 62z m-250 42c-24 0-45-8-63-21v84c0 11-9 20-21 20s-21-9-21-20v-167-21-42-20-84c0-11 10-21 21-21s21 10 21 21v1c18-13 39-22 63-22 57 0 104 47 104 105v83c0 57-47 104-104 104z m62-187c0-35-28-63-62-63s-63 28-63 63v20 42 21c0 34 28 62 63 62s62-28 62-62v-83z m497-239c-1 2-27 41-80 49v210h21c11 0 20 10 20 21s-9 21-20 21h-21v252c53 9 79 48 80 49 6 10 3 23-7 29-9 6-22 3-28-6-1-2-22-32-66-32s-65 30-66 32c-6 9-19 12-28 6-10-6-13-19-7-28 1-2 26-41 80-50v-252h-21c-11 0-21-9-21-21s10-21 21-21h21v-210c-54-8-79-48-80-49-6-10-3-23 6-29 10-6 23-3 29 6 1 2 22 32 66 32s65-30 66-31c4-7 10-10 17-10 4 0 8 1 11 3 10 6 13 19 7 29z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="animation" unicode="" d="M973 365l-208 208c-2 2-4 4-7 5-1 0-2 0-3 0-2 1-3 1-5 1-1 0-2 0-3 0-2-1-3-1-5-1-2-1-5-3-7-5l0 0-208-208c-8-8-8-22 0-30l208-208c1-1 2-1 3-2 1-1 2-2 4-2 3-2 5-2 8-2s5 0 8 2c2 0 4 2 6 4 0 0 1 0 1 0l208 208c8 8 8 22 0 30z m-339-77l95 95v-66l-62-62-33 33z m95-30v-66l-33 33 33 33z m0 250v-66l-125-125-33 33 158 158z m42-316v316l158-158-158-158z m-423 298c-8 8-21 8-29 0l-125-125c-8-8-8-22 0-30l125-125c4-4 9-6 14-6 6 0 11 2 15 6 8 8 8 22 0 30l-110 110 110 110c8 8 8 22 0 30z m57-140l151 152c9 8 9 21 0 29s-21 9-29 0l-167-166c-8-8-8-22 0-30l167-166c4-4 9-6 15-6s10 2 14 6c9 8 9 21 0 29l-151 152z m-265 98c-8 8-22 8-30 0l-83-83c-8-8-8-22 0-30l83-83c4-4 10-6 15-6s11 2 15 6c8 8 8 21 0 29l-69 69 69 69c8 8 8 21 0 29z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="banner" unicode="" d="M999 378c-2 6-7 11-13 13l-113 37 22 105c2 6 1 11-3 16-3 5-7 8-13 9-9 2-220 42-379 42s-370-40-379-42c-5-1-10-4-13-9s-4-10-3-16l22-105-113-37c-6-2-10-7-13-13-2-6-1-12 2-18l59-98-20-138c-1-7 2-15 7-19 4-3 9-5 14-5 2 0 4 0 7 1 1 1 169 62 243 62 6 0 12 3 16 8 4 5 5 11 4 18l-16 62c54 8 118 16 183 16 65 0 129-8 183-16l-16-63c-1-6 0-12 4-17s10-8 17-8c73 0 241-61 242-62 3-1 5-1 8-1 4 0 9 2 13 5 5 4 8 12 7 19l-20 138 59 98c3 6 4 12 2 18z m-713-175c-62-7-151-35-198-51l16 112c1 5 0 9-3 14l-49 81 84 28 31-145c1-6 5-11 10-14 3-2 7-3 11-3 1 0 3 0 5 1 1 0 33 9 83 18l10-41z m214 105c-125 0-248-25-297-37l-53 250c58 10 223 37 350 37 127 0 292-27 350-37l-53-250c-49 12-172 37-297 37z m399-31c-3-4-4-8-3-13l16-112c-47 16-136 44-198 51l10 41c50-9 82-18 83-18 6-2 12-1 16 2 5 3 9 8 10 14l31 145 84-28-49-82z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="blockquote" unicode="" d="M396 683h-292c-34 0-62-28-62-62v-292c0-34 28-62 62-62h104v-69c0-40-22-75-57-93l-98-49c-8-4-13-14-11-23 2-10 11-16 21-16h141c99 0 186 63 217 156 25 74 37 150 37 228v220c0 34-28 62-62 62z m21-282c0-73-12-145-35-214-26-77-97-129-178-129h-53l18 10c50 25 81 75 81 130v90c0 11-9 20-21 20h-125c-11 0-21 10-21 21v292c0 11 10 21 21 21h292c11 0 21-10 21-21 0 0 0-220 0-220z m479 282h-292c-34 0-62-28-62-62v-292c0-34 28-62 62-62h104v-69c0-40-22-75-57-93l-98-49c-8-4-13-14-11-23 2-10 11-16 21-16h141c99 0 186 63 217 156 25 74 37 150 37 228v220c0 34-28 62-62 62z m21-282c0-73-12-145-35-214-26-77-97-129-178-129h-53l18 10c50 25 81 75 81 130v90c0 11-9 20-21 20h-125c-11 0-21 10-21 21v292c0 11 10 21 21 21h292c11 0 21-10 21-21v-220z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="button" unicode="" d="M451 470c-6 5-15 7-22 3-8-3-12-11-12-19v-375c0-8 5-16 13-19 7-3 16-1 22 4l63 63 71-141c2-5 7-9 12-10 2-1 4-1 6-1 4 0 8 1 11 3l93 54c5 3 8 8 10 13 1 6 0 11-3 16l-74 122h88c9 0 17 6 20 14 3 8 0 17-6 23l-292 250z m153-245c-7 0-14-4-18-11-4-6-4-14 0-21l83-135-56-33-73 147c-3 6-9 10-16 11-1 0-2 0-3 0-6 0-11-2-15-6l-48-47v279l215-184c0 0-69 0-69 0z m292 500h-792c-57 0-104-47-104-104v-250c0-58 47-104 104-104h250c12 0 21 9 21 21s-9 20-21 20h-250c-34 0-62 28-62 63v250c0 34 28 62 62 62h792c34 0 62-28 62-62v-250c0-35-28-63-62-63h-146c-11 0-21-9-21-20s10-21 21-21h146c57 0 104 46 104 104v250c0 57-47 104-104 104z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="call-to-action" unicode="" d="M938 621h-875c-35 0-63-28-63-63v-416c0-35 28-63 63-63h875c34 0 62 28 62 63v416c0 35-28 63-62 63z m20-479c0-12-9-21-20-21h-875c-12 0-21 9-21 21v416c0 12 9 21 21 21h875c11 0 20-9 20-21v-416z m-229 354c-80 0-146-66-146-146s66-146 146-146 146 66 146 146-65 146-146 146z m0-250c-57 0-104 47-104 104s47 104 104 104 104-47 104-104-46-104-104-104z m-250 0h-333c-12 0-21-9-21-21s9-21 21-21h333c12 0 21 10 21 21s-9 21-21 21z m0 125h-333c-12 0-21-9-21-21s9-21 21-21h333c12 0 21 10 21 21s-9 21-21 21z m0 125h-333c-12 0-21-9-21-21s9-21 21-21h333c12 0 21 10 21 21s-9 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="captcha" unicode="" d="M104 246c-11 0-21-9-21-21s-9-21-20-21-21 10-21 21v83c0 12 9 21 21 21s20-9 20-21 10-20 21-20 21 9 21 20c0 35-28 63-62 63s-63-28-63-63v-83c0-34 28-62 63-62s62 28 62 62c0 12-9 21-21 21z m417 104c11 0 21-9 21-21s9-21 21-21 20 10 20 21c0 35-28 63-62 63s-63-28-63-63v-83c0-35 28-63 63-63s62 28 62 63c0 11-9 21-20 21s-21-10-21-21-10-21-21-21-21 9-21 21v83c0 12 9 21 21 21z m478-159l-63 166c-6 17-33 17-39 0l-62-166c-4-11 1-23 12-27 11-4 23 1 27 12l10 28h65l11-28c3-8 11-13 19-13 3 0 5 0 8 1 10 4 16 16 12 27z m-99 55l17 45 17-45h-34z m-672 28c-6 16-33 16-39 0l-63-167c-4-10 2-22 13-26 10-4 22 1 26 12l11 28h65l10-28c4-9 11-14 20-14 2 0 5 1 7 2 11 4 16 16 12 26l-62 167z m-36-111l16 44 17-44h-33z m162 291h-41c-12 0-21-9-21-21v-166c0-12 9-21 21-21s20 9 20 21v62h21c35 0 63 28 63 63s-28 62-63 62z m0-83h-21v42h21c12 0 21-10 21-21s-9-21-21-21z m417-83c-12 0-21-10-21-21v-63h-83v63c0 11-10 21-21 21s-21-10-21-21v-167c0-11 9-21 21-21s21 10 21 21v63h83v-63c0-11 9-21 21-21s21 10 21 21v167c0 11-10 21-21 21z m-313 145c0-11 10-20 21-20s21 9 21 20v146h42c11 0 21 10 21 21s-10 21-21 21h-125c-12 0-21-9-21-21s9-21 21-21h41v-146z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="carousel" unicode="" d="M98 406c-8 9-21 9-29 0l-42-41c-8-8-8-22 0-30l42-41c4-4 9-6 14-6s11 2 15 6c8 8 8 21 0 29l-27 27 27 27c8 8 8 21 0 29z m875-41l-42 41c-8 9-21 9-29 0s-8-21 0-29l27-27-27-27c-8-8-8-21 0-29 4-4 9-6 15-6s10 2 14 6l42 41c8 8 8 22 0 30z m-640 68h-166c-12 0-21-9-21-20v-125c0-12 9-21 21-21h166c12 0 21 9 21 21v125c0 11-9 20-21 20z m-20-125h-125v84h125v-84z m270 125h-166c-12 0-21-9-21-20v-125c0-12 9-21 21-21h166c12 0 21 9 21 21v125c0 11-9 20-21 20z m-20-125h-125v84h125v-84z m270 125h-166c-12 0-21-9-21-20v-125c0-12 9-21 21-21h166c12 0 21 9 21 21v125c0 11-9 20-21 20z m-20-125h-125v84h125v-84z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="checkbox" unicode="" d="M229 142h-166c-35 0-63-28-63-63v-167c0-34 28-62 63-62h166c35 0 63 28 63 62v167c0 35-28 63-63 63z m21-230c0-11-9-20-21-20h-166c-12 0-21 9-21 20v167c0 12 9 21 21 21h166c12 0 21-9 21-21v-167z m146 730h583c12 0 21 9 21 21s-9 20-21 20h-583c-12 0-21-9-21-20s9-21 21-21z m583-292h-583c-12 0-21-9-21-21s9-21 21-21h583c12 0 21 10 21 21s-9 21-21 21z m0-333h-583c-12 0-21-10-21-21s9-21 21-21h583c12 0 21 9 21 21s-9 21-21 21z m-684 824l-30-44c-10 7-23 11-36 11h-166c-35 0-63-28-63-62v-167c0-34 28-62 63-62h166c35 0 63 28 63 62v167c0 5-1 10-2 14l40 57c6 10 4 23-6 29-9 7-22 5-29-5z m-45-262c0-11-9-21-21-21h-166c-12 0-21 10-21 21v167c0 11 9 21 21 21h166c5 0 8-2 12-4l-77-110-45 45c-8 8-21 8-30 0s-8-21 0-29l63-63c4-4 9-6 15-6 0 0 1 0 2 0 6 1 11 4 15 9l66 95v-125z m45-71l-30-44c-10 7-23 11-36 11h-166c-35 0-63-28-63-62v-167c0-35 28-63 63-63h166c35 0 63 28 63 63v167c0 5-1 9-2 14l40 57c6 9 4 22-6 29-9 7-22 4-29-5z m-45-262c0-12-9-21-21-21h-166c-12 0-21 9-21 21v167c0 11 9 20 21 20h166c5 0 8-1 12-3l-77-110-45 45c-8 8-21 8-30 0s-8-22 0-30l63-62c4-4 9-6 15-6 0 0 1 0 2 0 6 0 11 4 15 9l66 94v-124z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="columns" unicode="" d="M438 683h-417c-12 0-21-9-21-20s9-21 21-21h417c11 0 20 9 20 21s-9 20-20 20z m0-125h-417c-12 0-21-9-21-20s9-21 21-21h417c11 0 20 9 20 21s-9 20-20 20z m0-125h-417c-12 0-21-9-21-20s9-21 21-21h417c11 0 20 9 20 21s-9 20-20 20z m0-125h-417c-12 0-21-9-21-20s9-21 21-21h417c11 0 20 9 20 21s-9 20-20 20z m0-125h-417c-12 0-21-9-21-20s9-21 21-21h417c11 0 20 9 20 21s-9 20-20 20z m-125-125h-292c-12 0-21-9-21-20s9-21 21-21h292c11 0 20 9 20 21s-9 20-20 20z m250 584h416c12 0 21 9 21 21s-9 20-21 20h-416c-12 0-21-9-21-20s9-21 21-21z m416-84h-416c-12 0-21-9-21-20s9-21 21-21h416c12 0 21 9 21 21s-9 20-21 20z m0-125h-416c-12 0-21-9-21-20s9-21 21-21h416c12 0 21 9 21 21s-9 20-21 20z m0-125h-416c-12 0-21-9-21-20s9-21 21-21h416c12 0 21 9 21 21s-9 20-21 20z m0-125h-416c-12 0-21-9-21-20s9-21 21-21h416c12 0 21 9 21 21s-9 20-21 20z m-125-125h-291c-12 0-21-9-21-20s9-21 21-21h291c12 0 21 9 21 21s-9 20-21 20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="countdown" unicode="" d="M779 624l50 68c7 9 5 22-4 29-9 7-22 5-29-4l-50-68c-54 37-116 61-183 71v88h20c12 0 21 10 21 21s-9 21-21 21h-41-84-41c-12 0-21-9-21-21s9-21 21-21h21v-88c-67-10-130-34-183-70l-51 67c-7 9-20 11-29 4s-11-20-4-29l50-68c-97-80-158-201-158-336 0-242 196-438 437-438s438 196 438 438c0 135-62 256-159 336z m-300 184h42v-84c-7 0-14 1-21 1s-14-1-21-1v84z m21-916c-218 0-396 177-396 396s178 395 396 395 396-177 396-395-178-396-396-396z m0 750c-11 0-21-10-21-21v-333c0-12 10-21 21-21h333c12 0 21 9 21 21 0 195-159 354-354 354z m21-334v291c156-10 281-135 291-291h-291z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="counter" unicode="" d="M994 584l-125 125 0 0c-2 1-4 3-7 4-1 1-3 1-4 1-2 0-3 1-4 1-1 0-3-1-4-1-1-1-3-1-4-1-2-1-5-3-7-5l-124-124c-9-9-9-22 0-30s21-8 29 0l89 89v-637c0-11 10-21 21-21s21 10 21 21v637l89-89c5-4 10-6 15-6s11 2 15 6c8 8 8 21 0 30z m-884-79c-8 3-18 0-23-8l-83-125c-7-10-4-22 5-29 10-6 23-4 29 6l45 68v-265c0-11 10-21 21-21s21 10 21 21v333c0 10-6 18-15 20z m203 1c-58 0-105-46-105-104 0-11 10-21 21-21s21 10 21 21c0 35 28 63 63 63s62-28 62-63v-12c0-14-5-28-14-39l-148-186c-5-6-6-15-3-22 4-7 11-12 19-12h167c11 0 21 10 21 21s-10 21-21 21h-123l121 152c15 18 23 41 23 65v12c0 58-47 104-104 104z m395-104c0 58-46 104-104 104s-104-46-104-104c0-11 9-21 21-21s21 10 21 21c0 35 28 63 62 63s63-28 63-63-28-62-63-62c-11 0-21-10-21-21s10-21 21-21c35 0 63-28 63-63s-28-62-63-62-62 28-62 62c0 12-10 21-21 21s-21-9-21-21c0-57 47-104 104-104s104 47 104 104c0 35-16 65-41 84 25 19 41 49 41 83z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="date" unicode="" d="M938 663h-875c-35 0-63-28-63-63v-500c0-34 28-62 63-62h875c34 0 62 28 62 62v500c0 35-28 63-62 63z m20-563c0-11-9-21-20-21h-875c-12 0-21 10-21 21v500c0 12 9 21 21 21h875c11 0 20-9 20-21v-500z m-555 436c-11 4-23-1-27-12l-125-333c-4-11 2-23 13-27 2-1 4-1 7-1 8 0 16 5 19 13l125 333c4 11-1 23-12 27z m334 0c-11 4-23-1-27-12l-125-333c-4-11 1-23 12-27 2-1 5-1 7-1 9 0 17 5 20 13l125 333c4 11-2 23-12 27z m-549-332h-84c-11 0-21-9-21-21 0-11 10-20 21-20h84c11 0 20 9 20 20s-9 21-20 21z m333 0h-167c-11 0-21-9-21-21 0-11 10-20 21-20h167c11 0 21 9 21 20s-10 21-21 21z m375 0h-208c-12 0-21-9-21-21 0-11 9-20 21-20h208c11 0 21 9 21 20s-10 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="divider-shape" unicode="" d="M991 409c-9 6-22 4-29-5-15-21-62-75-103-75-40 0-88 54-103 75-8 11-26 11-34 0-15-21-62-75-103-75s-87 54-102 75c-4 5-11 9-17 9-7 0-13-4-17-9-15-21-63-75-103-75-40 0-88 54-103 75-4 5-10 9-17 9-6 0-13-4-17-9-15-21-62-75-102-75-41 0-88 54-103 75-7 9-20 11-29 5-10-7-12-20-5-29 7-10 68-92 137-92 49 0 95 43 119 70 24-27 70-70 120-70 50 0 96 43 120 71 24-28 70-71 119-71 50 0 96 43 120 71 24-28 70-71 120-71 69 0 130 82 137 92 7 9 5 22-5 29z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="divider" unicode="" d="M42 454h916c12 0 21 10 21 21s-9 21-21 21h-916c-12 0-21-9-21-21s9-21 21-21z m333 167h250c8 0 15 5 19 12s2 15-2 21l-125 167c-8 11-26 11-34 0l-125-167c-4-6-5-14-2-21 4-7 11-12 19-12z m125 153l83-111h-166l83 111z m125-695h-250c-8 0-15-4-19-11-3-7-2-16 2-22l125-167c4-5 11-8 17-8s13 3 17 8l125 167c4 6 5 15 2 22-4 7-11 11-19 11z m-125-152l-83 111h166l-83-111z m458 319h-916c-12 0-21-9-21-21s9-21 21-21h916c12 0 21 10 21 21s-9 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="download-button" unicode="" d="M875 704h-750c-57 0-104-47-104-104v-250c0-57 47-104 104-104h292c11 0 21 9 21 21s-10 21-21 21h-292c-34 0-62 28-62 62v250c0 35 28 63 62 63h750c35 0 63-28 63-63v-250c0-34-28-62-63-62h-292c-11 0-20-10-20-21s9-21 20-21h292c57 0 104 47 104 104v250c0 57-47 104-104 104z m-265-548l-89-89v366c0 12-9 21-21 21s-21-9-21-21v-366l-89 89c-8 9-22 9-30 0s-8-21 0-29l125-125c4-4 10-6 15-6s11 2 15 6l125 125c8 8 8 21 0 29-8 9-22 9-30 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="dual-button" unicode="" d="M326 470c-6 5-15 7-22 3-8-3-12-11-12-19v-375c0-8 5-16 13-19 7-3 16-1 22 4l63 63 71-141c2-5 7-9 12-10 2-1 4-1 6-1 4 0 8 1 11 3l93 54c5 3 9 8 10 13 1 6 0 11-3 16l-74 122h88c9 0 17 6 20 14 3 8 0 17-6 23l-292 250z m153-245c-7 0-14-4-18-11-4-6-4-14 0-21l83-135-56-33-73 147c-3 6-9 10-16 11-1 0-2 0-3 0-6 0-11-2-15-6l-48-47v279l215-184c0 0-69 0-69 0z m417 500h-792c-57 0-104-47-104-104v-250c0-58 47-104 104-104h125c12 0 21 9 21 21s-9 20-21 20h-125c-34 0-62 28-62 63v250c0 34 28 62 62 62h396v-104c0 0 0 0 0 0v-125c0 0 0 0 0 0v-62c0-12 9-21 21-21s21 9 21 21v54l238 237h66l-298-297c-8-9-8-22 0-30 4-4 9-6 15-6s10 2 14 6l327 327c17-3 32-12 42-25-1-1-2-1-2-2l-334-333c-7-7-7-17-3-25-1-3-3-7-3-10 0-12 10-21 21-21h271c57 0 104 47 104 104v250c0 57-47 104-104 104z m-300-42l-54-53v53h54z m-54-178v66l113 112h66l-179-178z m304-197h-66l178 179v-66l-112-113z m112 304v-66l-237-238h-66l303 304z m-53-303l52 52c-4-26-25-47-52-52z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="email-field" unicode="" d="M938 663h-875c-35 0-63-28-63-63v-500c0-34 28-62 63-62h875c34 0 62 28 62 62v500c0 35-28 63-62 63z m20-563c0-11-9-21-20-21h-875c-12 0-21 10-21 21v500c0 12 9 21 21 21h875c11 0 20-9 20-21v-500z m-645 479c-127 0-230-103-230-229s103-229 230-229c59 0 116 23 159 64 8 8 8 22 0 30s-21 8-29 0c-35-34-81-52-130-52-104 0-188 84-188 187s84 188 188 188c102 0 185-83 187-185 0-1-1-2-1-3 0-23-19-42-42-42-21 0-39 17-41 39 0 1 1 2 1 3 0 57-47 104-104 104s-105-47-105-104 47-104 105-104c35 0 67 18 85 45 16-15 36-24 59-24 43 0 79 33 83 75 1 2 2 5 2 8 0 126-103 229-229 229z m0-291c-35 0-63 28-63 62s28 63 63 63c33 0 60-27 62-60 0-1-1-2-1-3 0-2 0-3 1-5-3-32-30-57-62-57z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="facebook-comments" unicode="" d="M896 725h-792c-57 0-104-47-104-104v-417c0-57 47-104 104-104h262l119-119c4-4 10-6 15-6s11 2 15 6l119 119h262c57 0 104 47 104 104v417c0 57-47 104-104 104z m62-521c0-34-28-62-62-62h-271c-5 0-11-2-15-6l-110-111-110 111c-4 4-9 6-15 6h-271c-34 0-62 28-62 62v417c0 34 28 62 62 62h792c34 0 62-28 62-62v-417z m-645 396h-42c-58 0-104-47-104-104v-21h-21c-12 0-21-9-21-21s9-21 21-21h21v-187c0-12 9-21 21-21s20 9 20 21v187h63c11 0 21 10 21 21s-10 21-21 21h-63v21c0 34 28 62 63 62h42c11 0 20 10 20 21s-9 21-20 21z m416-292h-291c-12 0-21-9-21-20s9-21 21-21h291c12 0 21 9 21 21s-9 20-21 20z m125 125h-416c-12 0-21-9-21-20s9-21 21-21h416c12 0 21 9 21 21s-9 20-21 20z m0 125h-416c-12 0-21-9-21-20s9-21 21-21h416c12 0 21 9 21 21s-9 20-21 20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="facebook-like-box" unicode="" d="M896 850h-792c-57 0-104-47-104-104v-792c0-57 47-104 104-104h792c57 0 104 47 104 104v792c0 57-47 104-104 104z m62-896c0-34-28-62-62-62h-792c-34 0-62 28-62 62v792c0 34 28 62 62 62h792c34 0 62-28 62-62v-792z m-197 479h-156l1 20c13 27 19 56 19 85 0 30-7 61-21 88l-11 23c-11 21-32 34-56 34h-16c-34 0-63-28-63-62v-75c0-3 0-6-1-8l-75-188h-7v21c0 11-9 21-21 21h-208c-12 0-21-10-21-21v-375c0-12 9-21 21-21h208c12 0 21 9 21 21v50l53-27c3-2 6-2 10-2h300c53 0 98 40 104 92l23 209c3 29-6 59-26 81-20 22-48 34-78 34z m-428-416h-166v333h166v-333z m490 305l-23-208c-3-32-30-56-62-56h-296l-67 34v216h21c8 0 16 6 19 14l81 200c3 8 4 16 4 24v75c0 11 9 21 21 21h16c8 0 15-5 18-12l12-23c11-21 16-45 16-69s-5-48-16-70c-1-3-2-5-2-8l-2-46c-1-6 1-12 5-16s10-6 15-6h178c18 0 35-8 47-21 12-13 17-31 15-49z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="form-horizontal" unicode="" d="M21 808h958c12 0 21 10 21 21s-9 21-21 21h-958c-12 0-21-9-21-21s9-21 21-21z m958-83h-958c-12 0-21-9-21-21s9-21 21-21h958c12 0 21 10 21 21s-9 21-21 21z m0-125h-958c-12 0-21-9-21-21v-500c0-11 9-21 21-21h958c12 0 21 10 21 21v500c0 12-9 21-21 21z m-937-42h916v-345l-112-113h-804v458z m863-458l53 54v-54h-53z m-613-83h-209c-46 0-83-38-83-84s37-83 83-83h209c46 0 83 37 83 83s-37 84-83 84z m0-125h-209c-23 0-41 18-41 41s18 42 41 42h209c23 0 41-19 41-42s-18-41-41-41z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="form-vertical" unicode="" d="M271 433h-250c-12 0-21-9-21-20v-125c0-12 9-21 21-21h250c11 0 21 9 21 21v125c0 11-10 20-21 20z m-21-125h-208v84h208v-84z m354 125h-250c-11 0-21-9-21-20v-125c0-12 10-21 21-21h250c12 0 21 9 21 21v125c0 11-9 20-21 20z m-21-125h-208v84h208v-84z m334 125h-167c-46 0-83-37-83-83s37-83 83-83h167c46 0 83 37 83 83s-37 83-83 83z m0-125h-167c-23 0-42 19-42 42s19 42 42 42h167c23 0 41-19 41-42s-18-42-41-42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="gallery-grid" unicode="" d="M292 663h-250c-12 0-21-10-21-21v-250c0-12 9-21 21-21h250c11 0 21 9 21 21v250c0 11-10 21-21 21z m-21-250h-208v208h208v-208z m354 250h-250c-11 0-21-10-21-21v-250c0-12 10-21 21-21h250c12 0 21 9 21 21v250c0 11-9 21-21 21z m-21-250h-208v208h208v-208z m354 250h-250c-11 0-20-10-20-21v-250c0-12 9-21 20-21h250c12 0 21 9 21 21v250c0 11-9 21-21 21z m-20-250h-209v208h209v-208z m-646-84h-250c-12 0-21-9-21-21v-250c0-11 9-20 21-20h250c11 0 21 9 21 20v250c0 12-10 21-21 21z m-21-250h-208v209h208v-209z m354 250h-250c-11 0-21-9-21-21v-250c0-11 10-20 21-20h250c12 0 21 9 21 20v250c0 12-9 21-21 21z m-21-250h-208v209h208v-209z m354 250h-250c-11 0-20-9-20-21v-250c0-11 9-20 20-20h250c12 0 21 9 21 20v250c0 12-9 21-21 21z m-20-250h-209v209h209v-209z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="gallery-group" unicode="" d="M979 621h-208c-12 0-21-9-21-21v-208c0-12 9-21 21-21h208c12 0 21 9 21 21v208c0 12-9 21-21 21z m-21-208h-166v166h166v-166z m21-84h-208c-12 0-21-9-21-21v-208c0-11 9-21 21-21h208c12 0 21 10 21 21v208c0 12-9 21-21 21z m-21-208h-166v167h166v-167z m-270 500h-667c-12 0-21-9-21-21v-500c0-11 9-21 21-21h667c11 0 20 10 20 21v500c0 12-9 21-20 21z m-21-500h-625v458h625v-458z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="gallery-justified" unicode="" d="M21 517h208c12 0 21 9 21 21v208c0 11-9 21-21 21h-208c-12 0-21-10-21-21v-208c0-12 9-21 21-21z m21 208h166v-167h-166v167z m271-208h375c11 0 20 9 20 21v208c0 11-9 21-20 21h-375c-12 0-21-10-21-21v-208c0-12 9-21 21-21z m20 208h334v-167h-334v167z m646 42h-208c-12 0-21-10-21-21v-208c0-12 9-21 21-21h208c12 0 21 9 21 21v208c0 11-9 21-21 21z m-21-209h-166v167h166v-167z m-270-83h-209c-11 0-21-9-21-21v-208c0-12 10-21 21-21h209c11 0 20 9 20 21v208c0 12-9 21-20 21z m-21-208h-167v166h167v-166z m-646-42h375c11 0 21 9 21 21v208c0 12-10 21-21 21h-375c-12 0-21-9-21-21v-208c0-12 9-21 21-21z m21 208h333v-166h-333v166z m937 42h-208c-12 0-21-9-21-21v-208c0-12 9-21 21-21h208c12 0 21 9 21 21v208c0 12-9 21-21 21z m-21-208h-166v166h166v-166z m-770-84h-167c-12 0-21-9-21-20v-209c0-11 9-21 21-21h167c11 0 20 10 20 21v209c0 11-9 20-20 20z m-21-208h-125v167h125v-167z m437 208h-333c-12 0-21-9-21-20v-209c0-11 9-21 21-21h333c12 0 21 10 21 21v209c0 11-9 20-21 20z m-21-208h-291v167h291v-167z m396 208h-291c-12 0-21-9-21-20v-209c0-11 9-21 21-21h291c12 0 21 10 21 21v209c0 11-9 20-21 20z m-21-208h-250v167h250v-167z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="gallery-masonry" unicode="" d="M292 746h-250c-12 0-21-9-21-21v-250c0-11 9-21 21-21h250c11 0 21 10 21 21v250c0 12-10 21-21 21z m-21-250h-208v208h208v-208z m354 250h-250c-11 0-21-9-21-21v-417c0-11 10-20 21-20h250c12 0 21 9 21 20v417c0 12-9 21-21 21z m-21-417h-208v375h208v-375z m354 417h-250c-11 0-20-9-20-21v-333c0-12 9-21 20-21h250c12 0 21 9 21 21v333c0 12-9 21-21 21z m-20-333h-209v291h209v-291z m-646 0h-250c-12 0-21-10-21-21v-250c0-12 9-21 21-21h250c11 0 21 9 21 21v250c0 11-10 21-21 21z m-21-250h-208v208h208v-208z m354 83h-250c-11 0-21-9-21-21v-250c0-12 10-21 21-21h250c12 0 21 9 21 21v250c0 12-9 21-21 21z m-21-250h-208v208h208v-208z m354 333h-250c-11 0-20-9-20-21v-250c0-11 9-20 20-20h250c12 0 21 9 21 20v250c0 12-9 21-21 21z m-20-250h-209v209h209v-209z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="icon-box" unicode="" d="M854-108c13 0 21-9 21-21 0-9-8-17-17-21l-4 0h-708c-13 0-21 8-21 21 0 8 8 16 17 21l4 0h708z m0 104c13 0 21-9 21-21s-8-21-21-21h-708c-13 0-21 8-21 21s8 21 21 21h708z m-166 146c12 0 20-9 20-21s-8-21-20-21h-375c-13 0-21 8-21 21s8 21 21 21h375z m-188 708c171 0 313-142 313-312 0-171-142-313-313-313-171 0-312 142-312 313 0 170 141 312 312 312z m0-42c-150 0-271-120-271-270 0-150 121-271 271-271 150 0 271 121 271 271 0 150-121 270-271 270z m0-83c8 0 17-4 17-12l46-88 100-12c8 0 12-9 16-13 4-8 0-17-4-21l-71-71 17-100c0-8 0-16-8-20-9-5-17-5-21 0l-92 41-87-46c-9-4-17-4-21 0-9 5-9 13-9 21l17 100-75 71c-4 4-4 13-4 21 4 8 8 12 17 12l100 13 45 87c0 13 9 17 17 17z m0-67l-29-62c-4-4-8-8-17-13l-66-8 50-46c4-4 8-12 4-16l-13-67 63 33c4 4 12 4 21 0l62-33-12 67c0 8 0 12 4 16l50 46-67 8c-8 0-12 5-17 13l-33 62z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="image-before-after" unicode="" d="M229 392c58 0 104 46 104 104s-46 104-104 104-104-47-104-104 47-104 104-104z m0 166c35 0 63-28 63-62s-28-63-63-63-62 28-62 63 28 62 62 62z m750 167h-479v83h21c11 0 21 10 21 21s-10 21-21 21h-83c-12 0-21-9-21-21s9-21 21-21h20v-83h-437c-12 0-21-9-21-21v-708c0-12 9-21 21-21h437v-83h-20c-12 0-21-10-21-21s9-21 21-21h83c11 0 21 9 21 21s-10 21-21 21h-21v83h479c12 0 21 9 21 21v708c0 12-9 21-21 21z m-521-42v-285l-127-201-128 146c-4 5-11 7-18 7-6-1-12-5-16-10l-127-224v567h416z m-416-666v15l149 262 127-145c4-5 11-8 17-7 7 0 12 4 16 9l107 169v-303h-416z m916 0h-458v666h458v-666z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="image-box" unicode="" d="M875 829c0 12-9 21-21 21h-708c-12 0-21-9-21-21v-458c0-3 1-5 2-8 0-1 0-1 0-1 1-2 2-4 4-6 4-4 10-6 15-6l0 0h708c5 0 9 2 12 4 0 0 1 0 1 1 0 0 1 0 1 0 1 1 2 3 3 4 1 1 1 2 2 3 0 1 1 2 1 4 0 1 1 2 1 4 0 0 0 0 0 1v458z m-42-21v-377l-192 244c-3 5-9 8-15 8-7 1-12-2-16-7l-155-172-110 70c-9 5-19 4-26-3l-152-150v387h666z m-22-416h-614l139 138 111-71c9-5 20-4 27 4l150 167 187-238z m-40-125h-542c-11 0-21-10-21-21s10-21 21-21h542c11 0 21 9 21 21s-10 21-21 21z m0-125h-542c-11 0-21-10-21-21s10-21 21-21h542c11 0 21 9 21 21s-10 21-21 21z m0-125h-542c-11 0-21-10-21-21s10-21 21-21h542c11 0 21 9 21 21s-10 21-21 21z m0-125h-542c-11 0-21-10-21-21s10-21 21-21h542c11 0 21 9 21 21s-10 21-21 21z m-438 708c46 0 84 37 84 83s-38 84-84 84-83-38-83-84 37-83 83-83z m0 125c23 0 42-19 42-42s-19-41-42-41-41 18-41 41 18 42 41 42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="image-hotspot" unicode="" d="M229 308c58 0 104 47 104 105s-46 104-104 104-104-47-104-104 47-105 104-105z m0 167c35 0 63-28 63-62s-28-63-63-63-62 28-62 63 28 62 62 62z m750 167h-147c1 7 1 14 1 21 0 80-65 145-145 145s-146-65-146-145c0-7 0-14 1-21h-522c-12 0-21-10-21-21v-709c0-11 9-20 21-20h958c12 0 21 9 21 20v709c0 11-9 21-21 21z m-291 125c57 0 104-47 104-104 0-75-71-199-104-253-34 54-105 178-105 253 0 57 47 104 105 104z m-136-167c29-106 114-234 118-241 4-5 11-9 18-9s13 4 17 9c4 7 89 135 118 241h135v-547l-171 206c-8 10-24 10-32 0l-85-102-131 224c-4 7-10 11-18 11-6-1-14-4-18-10l-172-268-128 146c-4 5-11 7-18 7-6-1-12-5-16-11l-127-223v567h510z m-510-667v16l149 261 127-145c4-4 10-7 17-7 6 1 12 4 16 10l169 263 129-221c3-6 9-9 16-10 7 0 13 2 18 8l88 105 187-225v-55h-916z m708 730c0 34-28 62-62 62s-63-28-63-62 28-63 63-63 62 28 62 63z m-83 0c0 11 9 20 21 20s20-9 20-20-9-21-20-21-21 9-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="image-rollover" unicode="" d="M125 621c0-58 47-104 104-104s104 46 104 104-46 104-104 104-104-47-104-104z m167 0c0-35-28-63-63-63s-62 28-62 63 28 62 62 62 63-28 63-62z m687 229h-958c-12 0-21-9-21-21v-708c0-12 9-21 21-21h458c12 0 21 9 21 21s-9 21-21 21h-437v15l149 262 127-145c4-5 11-8 17-7 7 0 13 4 16 10l104 166c6 10 3 23-6 29-10 6-23 3-29-7l-89-143-128 146c-4 5-11 8-18 7-6-1-12-5-16-10l-127-224v567h916v-562c0-12 10-21 21-21s21 9 21 21v583c0 12-9 21-21 21z m-402-298c-6 6-15 8-22 5-8-3-13-11-13-19v-578c0-7 4-15 11-18 8-4 16-3 22 2l106 83 92-166c4-7 11-11 19-11 3 0 6 1 9 2l125 63c5 2 9 7 11 12 1 6 1 11-2 16l-87 157h131c9 0 16 5 19 13 4 8 2 17-4 23l-417 416z m236-410c-8 0-15-4-18-11-4-6-4-14-1-20l94-169-88-44-94 170c-3 6-8 10-14 11-2 0-3 0-4 0-5 0-10-1-13-4l-92-72v484l346-345h-116z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="info-box" unicode="" d="M854 850h-708c-12 0-21-9-21-21v-458c0 0 0 0 0 0v-500c0-12 9-21 21-21h708c12 0 21 9 21 21v958c0 12-9 21-21 21z m-21-42v-377l-192 244c-3 5-9 8-15 8-6 1-12-2-16-7l-155-172-110 70c-9 5-19 4-26-3l-152-150v387h666z m-22-416h-614l139 138 111-71c9-5 20-4 27 4l150 167 187-238z m-644-500v458h666v-458h-666z m562 375h-458c-12 0-21-10-21-21s9-21 21-21h458c12 0 21 9 21 21s-9 21-21 21z m-83-167h-292c-11 0-21-9-21-21v-83c0-12 10-21 21-21h292c11 0 21 9 21 21v83c0 12-10 21-21 21z m-21-83h-250v41h250v-41z m-292 583c46 0 84 37 84 83s-38 84-84 84-83-38-83-84 37-83 83-83z m0 125c23 0 42-19 42-42s-19-41-42-41-41 18-41 41 18 42 41 42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="inner-section" unicode="" d="M979 850h-958c-12 0-21-9-21-21v-958c0-12 9-21 21-21h958c12 0 21 9 21 21v958c0 12-9 21-21 21z m-521-500h500v-208h-500v208z m500 42h-250v416h250v-416z m-291 416v-416h-625v416h625z m-625-458h375v-458h-375v458z m416-458v208h500v-208h-500z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="mailchimp" unicode="" d="M917 175v21c8 10 21 28 21 50 0 31-63 96-105 118v90c0 35-18 80-42 115 22 19 84 80 84 135 0 87-64 104-167 104-25 0-57-7-94-20-16 20-54 62-93 62-46 0-198-44-307-152-105-105-172-239-172-285 0-35 35-70 56-89-9-17-15-36-15-57 0-71 60-129 131-125 57-175 200-292 359-292 96 0 188 44 258 118 1 2 3 3 4 5 25 27 47 59 66 94 21 7 57 23 57 54 0 26-25 45-41 54z m-21 71c0-9-7-18-12-23-24-8-135-40-196-40-12 0-23 1-33 1-46 1-80 1-99-18-10-9-14-21-14-39-1-15-1-38 19-58 22-23 63-33 128-33 69 0 120 7 154 14-12-17-25-33-38-48-16-7-74-27-159-27-92 0-167 91-167 167 0 64 81 101 90 105 28 2 66 18 109 38 46 20 97 43 132 44 27-10 82-68 86-83z m-104 208v-86c-8-1-15-2-22-4 0 2 1 5 1 7v21c0 11-9 21-21 21s-21-10-21-21v-21c0-7 4-13 9-16-25-9-51-21-77-32-9-4-18-9-27-12 7 3 12 10 12 18v21c0 12-9 21-21 21s-21-9-21-21v-21c0-11 10-21 21-21 3 0 5 1 7 2-27-12-51-21-67-22-17 7-86 36-86 83 0 31 8 83 63 83 23 0 46-5 68-11 19-5 38-10 57-10 27 0 52 18 69 31 6 5 14 10 14 11l6 0c9 0 25 1 31-5 3-3 5-8 5-16z m41 250c0-31-40-77-69-103-9 8-18 15-27 18-43 19-270 94-484-236-10 4-21 6-32 8 119 230 382 376 487 376 125 0 125-31 125-63z m-750-291c0 27 57 151 161 256 97 96 239 139 277 139 14 0 36-18 52-36-137-62-313-197-401-386-19-6-35-15-49-28-19 17-40 41-40 55z m172-262c5 2 11 5 16 8 10 6 13 19 8 28-6 10-19 14-29 8-13-8-27-12-42-12-46 0-83 38-83 84s37 83 83 83c15 0 29-4 42-12 10-5 22-2 28 7 200 320 404 253 443 236 16-7 37-34 52-65-7 1-13 1-18 1l-5 0c-13 0-24-9-39-19-13-10-30-23-44-23-14 0-30 4-47 9-23 5-49 12-78 12-51 0-104-33-104-125 0-52 44-87 78-106-34-22-78-63-78-123 0-97 91-209 208-209 33 0 61 3 86 7-49-31-103-48-159-48-140 0-266 103-318 259z m626-46c0 0-1-1-1-1-1 0-1 0-2 0-1-1-62-27-189-27-65 0-89 12-99 21-6 7-7 15-7 28 0 0 0 4 0 4 0 3 1 5 2 6 7 7 40 7 69 6 11 0 22 0 34 0 55 0 143 22 187 34v-13c0-9 5-16 13-20 15-6 28-18 29-20-3-5-20-14-36-18z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="menu-card" unicode="" d="M750 725h-62v104c0 7-4 13-9 17-5 4-12 5-18 3l-417-125c0 0-1 0-1 0-1-1-3-2-4-2-1-1-2-2-3-2-1-1-2-3-2-4-1-1-2-2-3-3 0-1 0-2-1-4 0-1 0-2-1-4 0 0 0 0 0-1v-833c0-12 10-21 21-21h500c12 0 21 9 21 21v833c0 12-9 21-21 21z m-104 0h-254l254 76v-76z m83-833h-458v791h458v-791z m-229 416c-11 0-21-9-21-20v-42c0-36-10-51-21-57v99c0 11-9 20-20 20s-21-9-21-20v-99c-11 6-21 21-21 57v42c0 11-9 20-21 20s-21-9-21-20v-42c0-56 23-92 63-102v-148c0-12 9-21 21-21s20 9 20 21v148c40 10 63 46 63 102v42c0 11-9 20-21 20z m125 0c-26 0-50-23-69-70-13-32-22-72-22-98 0-37 22-40 29-40h41v-104c0-12 10-21 21-21s21 9 21 21v292c0 11-9 20-21 20z m-21-166h-28c0 21 11 68 28 100v-100z m21 333h-250c-11 0-21-9-21-21s10-21 21-21h250c12 0 21 10 21 21s-9 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="navigation-horizontal" unicode="" d="M125 454c-57 0-104-47-104-104s47-104 104-104 104 47 104 104-46 104-104 104z m0-166c-34 0-62 28-62 62s28 63 62 63 63-28 63-63-28-62-63-62z m375 166c-57 0-104-47-104-104s47-104 104-104 104 47 104 104-46 104-104 104z m0-166c-34 0-62 28-62 62s28 63 62 63 63-28 63-63-28-62-63-62z m375 166c-57 0-104-47-104-104s47-104 104-104 104 47 104 104-46 104-104 104z m0-166c-34 0-62 28-62 62s28 63 62 63 63-28 63-63-28-62-63-62z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="nav-menu" unicode="" d="M958 683h-291-334-291c-12 0-21-9-21-20v-125c0-12 9-21 21-21h271v-479c0-12 9-21 20-21h417c12 0 21 9 21 21v479h187c12 0 21 9 21 21v125c0 11-9 20-21 20z m-312-125h-292v84h292v-84z m-583 84h250v-84h-250v84z m666-584h-375v459h313 62v-459z m209 500h-188-62v84h250v-84z m-521-125c-12 0-21-9-21-20s9-21 21-21h250c11 0 21 9 21 21s-10 20-21 20h-250z m250-125h-250c-12 0-21-9-21-20s9-21 21-21h250c11 0 21 9 21 21s-10 20-21 20z m0-125h-250c-12 0-21-9-21-20s9-21 21-21h250c11 0 21 9 21 21s-10 20-21 20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="navigation-vertical" unicode="" d="M500 621c58 0 104 47 104 104s-46 104-104 104-104-47-104-104 47-104 104-104z m0 167c35 0 63-28 63-63s-28-62-63-62-62 28-62 62 28 63 62 63z m0-334c-57 0-104-47-104-104s47-104 104-104 104 47 104 104-46 104-104 104z m0-166c-34 0-62 28-62 62s28 63 62 63 63-28 63-63-28-62-63-62z m0-209c-57 0-104-47-104-104s47-104 104-104 104 47 104 104-46 104-104 104z m0-167c-34 0-62 28-62 63s28 63 62 63 63-28 63-63-28-63-63-63z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="number-field" unicode="" d="M938 663h-875c-35 0-63-28-63-63v-500c0-34 28-62 63-62h875c34 0 62 28 62 62v500c0 35-28 63-62 63z m20-563c0-11-9-21-20-21h-875c-12 0-21 10-21 21v500c0 12 9 21 21 21h875c11 0 20-9 20-21v-500z m-723 437c-8 2-18-1-23-9l-83-125c-7-9-4-22 5-29 10-6 23-3 29 6l45 68v-265c0-11 10-20 21-20s21 9 21 20v334c0 9-6 17-15 20z m203 1c-58 0-105-47-105-105 0-11 10-20 21-20s21 9 21 20c0 35 28 63 63 63s62-28 62-63v-12c0-14-5-28-14-39l-148-186c-5-6-6-14-3-22 4-7 11-11 19-11h167c11 0 21 9 21 20s-10 21-21 21h-123l121 152c15 18 23 41 23 65v12c0 58-47 105-104 105z m395-105c0 58-46 105-104 105s-104-47-104-105c0-11 9-20 21-20s21 9 21 20c0 35 28 63 62 63s63-28 63-63-28-62-63-62c-11 0-21-9-21-21s10-21 21-21c35 0 63-28 63-62s-28-63-63-63-62 28-62 63c0 11-10 21-21 21s-21-10-21-21c0-58 47-104 104-104s104 46 104 104c0 34-16 64-41 83 25 19 41 49 41 83z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="parallax" unicode="" d="M1000 350c0 7-4 14-10 18l-120 68 119 62c7 4 11 11 11 19s-4 15-11 18l-479 250c-6 3-13 3-20 0l-479-250c-7-3-11-10-11-18 0-8 4-15 11-19l119-62-119-68c-7-4-11-11-11-18 0-8 5-15 11-18l119-62-119-68c-7-4-11-11-11-19 0-8 5-15 11-18l479-250c3-2 7-3 10-3s7 1 10 3l479 250c7 3 11 10 11 18s-4 15-10 18l-120 69 119 62c7 3 11 10 11 18z m-500 393l434-226-434-227-434 227 434 226z m436-559l-436-227-436 227 110 63 316-165c3-2 7-3 10-3s7 1 10 3l316 165 110-63z m-436-60l-436 227 110 62 316-165c3-1 7-2 10-2s7 1 10 2l316 165 110-62-436-227z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="php7" unicode="" d="M170 454h-87c-9 0-18-6-20-16l-41-166c0 0-1 0-1-1l-20-83c-3-11 4-22 15-25 2 0 3 0 5 0 9 0 18 6 20 15l17 68h85c48 0 90 32 101 79l7 26c6 25 1 51-15 71-16 21-40 32-66 32z m40-93l-6-26c-7-28-32-47-61-47h-75l32 125h70c13 0 25-6 33-16 8-11 11-24 7-36z m460 93h-87c-9 0-18-6-20-16l-41-166c0 0-1 0-1-1l-20-83c-3-11 4-22 15-25 2 0 3 0 5 0 9 0 18 6 20 15l17 68h85c48 0 90 32 101 79l7 26c6 25 1 51-15 71-16 21-40 32-66 32z m40-93l-6-26c-7-28-32-47-61-47h-75l32 125h70c13 0 25-6 33-16 8-11 11-24 7-36z m-224 61c-16 21-40 32-66 32h-60l14 58c3 11-4 22-15 25-11 3-22-4-25-15l-62-250c-3-11 3-23 15-25 1-1 3-1 5-1 9 0 18 6 20 16l38 151h70c13 0 25-6 33-16 8-11 11-24 7-36l-22-89c-3-11 4-23 15-25 2-1 4-1 5-1 10 0 18 6 21 16l22 89c6 25 1 51-15 71z m512 105c-4 6-11 11-19 11h-166c-12 0-21-10-21-21s9-21 21-21h127l-145-218c-6-9-4-22 6-29 4-2 8-3 12-3 6 0 13 3 17 9l167 250c4 7 4 15 1 22z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="post-list" unicode="" d="M271 829h-250c-12 0-21-9-21-21v-250c0-11 9-20 21-20h250c11 0 21 9 21 20v250c0 12-10 21-21 21z m-21-250h-208v209h208v-209z m146 84h583c12 0 21 9 21 20s-9 21-21 21h-583c-12 0-21-9-21-21s9-20 21-20z m0 83h250c11 0 21 9 21 21s-10 21-21 21h-250c-12 0-21-10-21-21s9-21 21-21z m583-125h-583c-12 0-21-9-21-21s9-21 21-21h583c12 0 21 10 21 21s-9 21-21 21z m-708-125h-250c-12 0-21-9-21-21v-250c0-11 9-21 21-21h250c11 0 21 10 21 21v250c0 12-10 21-21 21z m-21-250h-208v208h208v-208z m729 125h-583c-12 0-21-9-21-21s9-21 21-21h583c12 0 21 10 21 21s-9 21-21 21z m-583 42h250c11 0 21 9 21 20s-10 21-21 21h-250c-12 0-21-9-21-21s9-20 21-20z m583-125h-583c-12 0-21-10-21-21s9-21 21-21h583c12 0 21 9 21 21s-9 21-21 21z m-708-125h-250c-12 0-21-10-21-21v-250c0-12 9-21 21-21h250c11 0 21 9 21 21v250c0 11-10 21-21 21z m-21-251h-208v209h208v-209z m729 126h-583c-12 0-21-10-21-21s9-21 21-21h583c12 0 21 9 21 21s-9 21-21 21z m-583 41h250c11 0 21 10 21 21s-10 21-21 21h-250c-12 0-21-9-21-21s9-21 21-21z m583-125h-583c-12 0-21-9-21-21s9-21 21-21h583c12 0 21 10 21 21s-9 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="post-slider" unicode="" d="M813 621h-625c-12 0-21-9-21-21v-500c0-11 9-21 21-21h625c11 0 20 10 20 21v500c0 12-9 21-20 21z m-21-500h-584v458h584v-458z m-521 42h167c11 0 20 9 20 20s-9 21-20 21h-167c-12 0-21-9-21-21 0-11 9-20 21-20z m0 83h458c12 0 21 9 21 21s-9 21-21 21h-458c-12 0-21-10-21-21s9-21 21-21z m0 83h458c12 0 21 10 21 21s-9 21-21 21h-458c-12 0-21-9-21-21s9-21 21-21z m-152 119c-8 8-21 8-29 0l-84-83c-8-8-8-22 0-30l84-83c4-4 9-6 14-6s11 2 15 6c8 8 8 21 0 29l-69 69 69 69c8 8 8 21 0 29z m875-83l-83 83c-8 8-22 8-30 0s-8-21 0-29l69-69-69-69c-8-8-8-21 0-29 4-4 10-6 15-6s11 2 15 6l83 83c8 8 8 22 0 30z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="post" unicode="" d="M998 467c1 3 2 5 2 8 0 76-43 156-131 244s-168 131-244 131c-3 0-5-1-8-2-2 0-4-2-6-3 0-1 0-1-1-1l0 0c0 0 0 0 0 0-53-53-83-130-66-212l-150-150c-57 34-185 44-263-34-69-69 30-202 131-306l-256-257c-8-8-8-21 0-29 4-4 10-6 15-6s11 2 15 6l256 256c80-78 177-154 249-154 22 0 41 7 57 23 78 78 68 205 34 263l150 150c15-3 31-5 46-5 64 0 123 28 166 71 1 1 2 3 2 4 1 1 2 2 2 3z m-42 32c-50 12-131 56-191 116-60 60-104 141-116 191 58-9 121-47 191-117 69-69 108-132 116-190z m-387-488c-36-36-137 20-263 145-125 126-181 227-145 263 65 65 168 51 208 29-10-32 5-85 75-154 57-57 102-78 135-78 7 0 13 1 19 3 22-40 36-143-29-208z m21 250c0 0 0 0-1 0 0 0 0 0 0 0-8-9-49-5-116 62-67 67-71 108-62 116l147 148c15-35 38-71 73-106 35-35 71-58 106-73l-147-147z m71 250c-102 101-93 202-48 270 18-61 66-139 122-196 57-56 135-104 197-122-69-45-170-54-271 48z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="posts-carousel" unicode="" d="M119 427c-8 8-21 8-29 0l-84-83c-8-8-8-21 0-30l84-83c4-4 9-6 14-6s11 2 15 6c8 8 8 22 0 30l-69 68 69 69c8 8 8 21 0 29z m875-83l-83 83c-8 8-22 8-30 0s-8-21 0-29l69-69-69-68c-8-9-8-22 0-30 4-4 10-6 15-6s11 2 15 6l83 83c8 9 8 22 0 30z m-681 173h-125c-12 0-21-10-21-21v-125c0-12 9-21 21-21h125c11 0 20 9 20 21v125c0 11-9 21-20 21z m-21-125h-84v83h84v-83z m271 125h-125c-12 0-21-10-21-21v-125c0-12 9-21 21-21h125c11 0 20 9 20 21v125c0 11-9 21-20 21z m-21-125h-84v83h84v-83z m271 125h-125c-12 0-21-10-21-21v-125c0-12 9-21 21-21h125c11 0 20 9 20 21v125c0 11-9 21-20 21z m-21-125h-84v83h84v-83z m-479-84h-125c-12 0-21-9-21-20s9-21 21-21h125c11 0 20 9 20 21s-9 20-20 20z m250 0h-125c-12 0-21-9-21-20s9-21 21-21h125c11 0 20 9 20 21s-9 20-20 20z m250 0h-125c-12 0-21-9-21-20s9-21 21-21h125c11 0 20 9 20 21s-9 20-20 20z m-542-83h-83c-12 0-21-9-21-21s9-21 21-21h83c11 0 21 10 21 21s-10 21-21 21z m250 0h-83c-12 0-21-9-21-21s9-21 21-21h83c11 0 21 10 21 21s-10 21-21 21z m250 0h-83c-12 0-21-9-21-21s9-21 21-21h83c11 0 21 10 21 21s-10 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="posts-grid" unicode="" d="M292 767h-250c-12 0-21-10-21-21v-250c0-12 9-21 21-21h250c11 0 21 9 21 21v250c0 11-10 21-21 21z m-21-250h-208v208h208v-208z m-21-125c12 0 21 9 21 21s-9 20-21 20h-167c-11 0-20-9-20-20s9-21 20-21h167z m375 375h-250c-11 0-21-10-21-21v-250c0-12 10-21 21-21h250c12 0 21 9 21 21v250c0 11-9 21-21 21z m-21-250h-208v208h208v-208z m-21-125c12 0 21 9 21 21s-9 20-21 20h-166c-12 0-21-9-21-20s9-21 21-21h166z m375 375h-250c-11 0-20-10-20-21v-250c0-12 9-21 20-21h250c12 0 21 9 21 21v250c0 11-9 21-21 21z m-20-250h-209v208h209v-208z m-21-125c11 0 21 9 21 21s-10 20-21 20h-167c-11 0-21-9-21-20s10-21 21-21h167z m-625-84h-250c-12 0-21-9-21-20v-250c0-12 9-21 21-21h250c11 0 21 9 21 21v250c0 11-10 20-21 20z m-21-250h-208v209h208v-209z m-21-83h-167c-11 0-20-9-20-21s9-21 20-21h167c12 0 21 10 21 21s-9 21-21 21z m375 333h-250c-11 0-21-9-21-20v-250c0-12 10-21 21-21h250c12 0 21 9 21 21v250c0 11-9 20-21 20z m-21-250h-208v209h208v-209z m-21-83h-166c-12 0-21-9-21-21s9-21 21-21h166c12 0 21 10 21 21s-9 21-21 21z m375 333h-250c-11 0-20-9-20-20v-250c0-12 9-21 20-21h250c12 0 21 9 21 21v250c0 11-9 20-21 20z m-20-250h-209v209h209v-209z m-21-83h-167c-11 0-21-9-21-21s10-21 21-21h167c11 0 21 10 21 21s-10 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="posts-group" unicode="" d="M979 767h-250c-11 0-21-10-21-21v-250c0-12 10-21 21-21h250c12 0 21 9 21 21v250c0 11-9 21-21 21z m-21-250h-208v208h208v-208z m-20-125c11 0 20 9 20 21s-9 20-20 20h-167c-12 0-21-9-21-20s9-21 21-21h167z m41-84h-250c-11 0-21-9-21-20v-250c0-12 10-21 21-21h250c12 0 21 9 21 21v250c0 11-9 20-21 20z m-21-250h-208v209h208v-209z m-20-83h-167c-12 0-21-9-21-21s9-21 21-21h167c11 0 20 10 20 21s-9 21-20 21z m-292 792h-625c-12 0-21-10-21-21v-792c0-11 9-21 21-21h625c11 0 21 10 21 21v792c0 11-10 21-21 21z m-21-792h-583v750h583v-750z m-479 83h250c11 0 21 10 21 21s-10 21-21 21h-250c-12 0-21-9-21-21s9-21 21-21z m0 125h375c11 0 21 10 21 21s-10 21-21 21h-375c-12 0-21-9-21-21s9-21 21-21z m0 125h375c11 0 21 10 21 21s-10 21-21 21h-375c-12 0-21-9-21-21s9-21 21-21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="posts-justified" unicode="" d="M21 600h208c12 0 21 9 21 21v208c0 12-9 21-21 21h-208c-12 0-21-9-21-21v-208c0-12 9-21 21-21z m21 208h166v-166h-166v166z m271-208h375c11 0 20 9 20 21v208c0 12-9 21-20 21h-375c-12 0-21-9-21-21v-208c0-12 9-21 21-21z m20 208h334v-166h-334v166z m646 42h-208c-12 0-21-9-21-21v-208c0-12 9-21 21-21h208c12 0 21 9 21 21v208c0 12-9 21-21 21z m-21-208h-166v166h166v-166z m-895-84c-12 0-21-9-21-20s9-21 21-21h125c11 0 20 9 20 21s-9 20-20 20h-125z m520-20c0 11-9 20-20 20h-125c-12 0-21-9-21-20s9-21 21-21h125c11 0 20 9 20 21z m355-21c11 0 20 9 20 21s-9 20-20 20h-125c-12 0-21-9-21-20s9-21 21-21h125z m-459-292h209c11 0 20 9 20 21v208c0 12-9 21-20 21h-209c-11 0-21-9-21-21v-208c0-12 10-21 21-21z m21 208h167v-166h-167v166z m-479-208h375c11 0 21 9 21 21v208c0 12-10 21-21 21h-375c-12 0-21-9-21-21v-208c0-12 9-21 21-21z m21 208h333v-166h-333v166z m937 42h-208c-12 0-21-9-21-21v-208c0-12 9-21 21-21h208c12 0 21 9 21 21v208c0 12-9 21-21 21z m-21-208h-166v166h166v-166z m-312-84h-125c-12 0-21-9-21-20s9-21 21-21h125c11 0 21 9 21 21s-10 20-21 20z m-500 0c-12 0-21-9-21-20s9-21 21-21h125c11 0 21 9 21 21s-10 20-21 20h-125z m792-41c11 0 20 9 20 21s-9 20-20 20h-125c-12 0-21-9-21-20s9-21 21-21h125z m-750-42h-167c-12 0-21-9-21-21v-208c0-12 9-21 21-21h167c11 0 20 9 20 21v208c0 12-9 21-20 21z m-21-208h-125v166h125v-166z m437 208h-333c-12 0-21-9-21-21v-208c0-12 9-21 21-21h333c12 0 21 9 21 21v208c0 12-9 21-21 21z m-21-208h-291v166h291v-166z m396 208h-291c-12 0-21-9-21-21v-208c0-12 9-21 21-21h291c12 0 21 9 21 21v208c0 12-9 21-21 21z m-21-208h-250v166h250v-166z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="posts-masonry" unicode="" d="M292 850h-250c-12 0-21-9-21-21v-250c0-11 9-21 21-21h250c11 0 21 10 21 21v250c0 12-10 21-21 21z m-21-250h-208v208h208v-208z m-21-125c12 0 21 9 21 21s-9 21-21 21h-167c-11 0-20-10-20-21s9-21 20-21h167z m375 375h-250c-11 0-21-9-21-21v-416c0-12 10-21 21-21h250c12 0 21 9 21 21v416c0 12-9 21-21 21z m-21-417h-208v375h208v-375z m-21-125c12 0 21 10 21 21s-9 21-21 21h-166c-12 0-21-9-21-21s9-21 21-21h166z m375 542h-250c-11 0-20-9-20-21v-333c0-12 9-21 20-21h250c12 0 21 9 21 21v333c0 12-9 21-21 21z m-20-333h-209v291h209v-291z m-21-125c11 0 21 9 21 21s-10 20-21 20h-167c-11 0-21-9-21-20s10-21 21-21h167z m-625 0h-250c-12 0-21-10-21-21v-250c0-12 9-21 21-21h250c11 0 21 9 21 21v250c0 11-10 21-21 21z m-21-250h-208v208h208v-208z m-21-84h-167c-11 0-20-9-20-20s9-21 20-21h167c12 0 21 9 21 21s-9 20-21 20z m375 167h-250c-11 0-21-9-21-21v-250c0-11 10-21 21-21h250c12 0 21 10 21 21v250c0 12-9 21-21 21z m-21-250h-208v208h208v-208z m-21-83h-166c-12 0-21-10-21-21s9-21 21-21h166c12 0 21 9 21 21s-9 21-21 21z m375 416h-250c-11 0-20-9-20-20v-250c0-12 9-21 20-21h250c12 0 21 9 21 21v250c0 11-9 20-21 20z m-20-250h-209v209h209v-209z m-21-83h-167c-11 0-21-9-21-21s10-21 21-21h167c11 0 21 10 21 21s-10 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="posts-ticker" unicode="" d="M471 788c-41 0-75-18-97-51-2-3-4-7-6-10-1-1-2-2-2-3l-5-9c0-1 0-2-1-3l-126-264-171-109c-40-25-63-68-63-114v-7c0-42 19-80 51-106 24-20 54-29 84-29 21 0 41 5 60 14l83-15 40-81c14-28 39-48 69-57l107-31c2 0 4-1 6-1 4 0 8 1 11 3 5 4 8 8 9 14l4 20c11 55-19 108-71 126l-46 125 266-36c1 0 1 0 2 0l10-1c1 0 3 0 4 0 2 0 4 0 6 0 42 0 75 17 98 50 41 59 39 160-3 270-65 171-205 305-319 305z m-394-643c-22 17-35 44-35 73v7c0 32 16 61 43 79l145 92c5-67 25-136 98-174l-146-85c-33-19-75-16-105 8z m356-107c35-9 57-43 51-78l-86 24c-19 5-34 18-43 36l-45 89c-3 6-8 10-14 12l-44 8 112 66 54-144c2-6 8-11 15-13z m-53 207c-94 28-109 104-109 184l75 157c4-37 14-77 30-118 39-102 105-190 175-245l-171 22z m379-8c-15-22-36-33-64-33-5 0-10 1-16 2l-3 0c-91 15-207 136-261 277-32 83-38 161-17 211l0 1c3 7 6 13 10 19 15 21 36 32 63 32 94 0 222-128 280-278 37-96 40-184 8-231z m-187 338c-32 9-66 4-95-14-9-6-13-18-7-28 6-10 19-13 29-7 19 11 41 14 63 9 22-5 40-19 51-38 12-19 15-41 10-63-6-22-19-40-38-51-10-6-13-19-8-29 4-6 11-10 18-10 4 0 8 1 11 3 29 17 49 44 57 77 8 32 3 66-14 94-17 29-45 49-77 57z m221-3c3-8 11-14 20-14 2 0 4 1 7 2l167 62c10 4 16 16 12 27-4 11-16 16-27 12l-167-62c-11-4-16-16-12-27z m-22 91c5 0 11 2 15 6l83 83c8 8 8 21 0 29s-21 9-30 0l-83-83c-8-8-8-21 0-29 4-4 10-6 15-6z m208-167h-125c-11 0-21-9-21-21s10-21 21-21h125c12 0 21 10 21 21s-9 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="price-list" unicode="" d="M646-25h-521v583h229c12 0 21 10 21 21v229h417v-562c0-12 9-21 21-21s20 9 20 21v583c0 12-9 21-20 21h-459c-3 0-5-1-8-2-1 0-1-1-2-1-2-1-3-2-5-3l-250-250c0-1-1-2-2-3-1-2-1-2-2-4-1-2-2-5-2-8v-625c0-11 10-21 21-21h542c11 0 21 10 21 21s-10 21-21 21z m-491 625l178 179v-179h-178z m762-635c0 47-51 63-84 69v64c24-5 41-17 42-28 1-11 12-19 23-19 11 2 20 12 19 23-4 34-38 60-84 66v23c0 11-9 20-20 20s-21-9-21-20v-23c-48-6-84-35-84-71 0-48 51-63 84-70v-63c-24 4-41 16-42 27-1 12-12 20-23 19-11-1-20-11-18-23 3-33 37-60 83-66v-22c0-12 9-21 21-21s20 9 20 21v22c49 7 84 36 84 72z m-167 104c0 11 17 24 42 29v-56c-34 8-42 19-42 27z m83-134v57c34-8 42-19 42-27 0-12-17-25-42-30z m-562 540c-35 0-63-28-63-62s28-63 63-63 62 28 62 63-28 62-62 62z m0-83c-12 0-21 9-21 21s9 20 21 20 21-9 21-20-10-21-21-21z m0-84c-35 0-63-28-63-62s28-63 63-63 62 28 62 63-28 62-62 62z m0-83c-12 0-21 9-21 21s9 21 21 21 21-10 21-21-10-21-21-21z m0-83c-35 0-63-28-63-63s28-62 63-62 62 28 62 62-28 63-62 63z m0-84c-12 0-21 10-21 21s9 21 21 21 21-9 21-21-10-21-21-21z m167 375c-12 0-21-9-21-20s9-21 21-21h250c11 0 20 9 20 21s-9 20-20 20h-250z m250-166h-250c-12 0-21-10-21-21s9-21 21-21h250c11 0 20 9 20 21s-9 21-20 21z m-42-167h-208c-12 0-21-9-21-21s9-21 21-21h208c11 0 21 10 21 21s-10 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="price-table" unicode="" d="M958 663h-187v62c0 12-9 21-21 21h-500c-11 0-21-9-21-21v-62h-187c-12 0-21-10-21-21v-584c0-11 9-20 21-20h187v-63c0-12 10-21 21-21h500c12 0 21 9 21 21v63h187c12 0 21 9 21 20v584c0 11-9 21-21 21z m-20-42v-83h-167v83h167z m-667 83h458v-125h-458v125z m-42-83v-83h-166v83h166z m-166-542v417h166v-417h-166z m666-83h-458v542h458v-542z m42 83v417h167v-417h-167z m-250 204v85c23-5 40-20 42-37 1-11 11-19 22-19 12 1 20 12 19 23-3 39-38 69-83 76v22c0 12-9 21-21 21s-21-9-21-21v-22c-47-8-83-42-83-82 0-39 27-65 83-79v-85c-23 6-40 20-42 37 0 11-12 20-22 19-11-1-20-11-19-23 3-38 38-68 83-75v-23c0-11 10-21 21-21s21 10 21 21v23c47 7 83 41 83 81 0 39-27 66-83 79z m-83 46c0 18 17 33 41 39v-75c-28 8-41 20-41 36z m83-164v75c28-8 42-19 42-36 0-17-18-33-42-39z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="radio" unicode="" d="M146 829c-81 0-146-65-146-146s65-145 146-145 146 65 146 145-66 146-146 146z m0-250c-58 0-104 47-104 104s46 105 104 105 104-47 104-105-47-104-104-104z m0-83c-81 0-146-66-146-146s65-146 146-146 146 66 146 146-66 146-146 146z m0-250c-58 0-104 47-104 104s46 104 104 104 104-47 104-104-47-104-104-104z m0-83c-81 0-146-66-146-146s65-146 146-146 146 65 146 146-66 146-146 146z m0-251c-58 0-104 47-104 105s46 104 104 104 104-47 104-104-47-105-104-105z m250 751h583c12 0 21 9 21 20s-9 21-21 21h-583c-12 0-21-9-21-21s9-20 21-20z m583-292h-583c-12 0-21-9-21-21s9-21 21-21h583c12 0 21 10 21 21s-9 21-21 21z m0-333h-583c-12 0-21-10-21-21s9-21 21-21h583c12 0 21 9 21 21s-9 21-21 21z m-833 375c-35 0-63-28-63-63s28-62 63-62 62 28 62 62-28 63-62 63z m0-84c-12 0-21 10-21 21s9 21 21 21 21-9 21-21-10-21-21-21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="rtl" unicode="" d="M229 308c12 0 21 10 21 21v104h93l77-115c4-6 11-10 18-10 4 0 8 2 11 4 10 6 12 19 6 29l-66 99c40 14 69 52 69 98v41c0 58-46 104-104 104h-125c-11 0-21-9-21-20v-334c0-11 10-21 21-21z m21 334h104c35 0 63-28 63-63v-41c0-35-28-63-63-63h-104v167z m229 0h104v-313c0-11 10-21 21-21s21 10 21 21v313h104c12 0 21 9 21 21s-9 20-21 20h-250c-11 0-21-9-21-20s10-21 21-21z m334-334h166c12 0 21 10 21 21s-9 21-21 21h-146v313c0 11-9 20-20 20s-21-9-21-20v-334c0-11 9-21 21-21z m166-125h-908l90 90c8 8 8 21 0 29s-22 8-30 0l-125-125c0 0 0 0 0 0-2-2-3-4-4-6-3-6-3-11 0-16 0-2 1-3 2-4 1-1 1-2 2-3l125-125c4-4 10-6 15-6s11 2 15 6c8 8 8 21 0 29l-90 90h908c12 0 21 9 21 21s-9 20-21 20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="scroll" unicode="" d="M583 850h-166c-150 0-271-121-271-271v-375c0-195 159-354 354-354s354 159 354 354v375c0 150-121 271-271 271z m-83-167c12 0 21-9 21-20v-125c0-12-9-21-21-21s-21 9-21 21v125c0 11 10 20 21 20z m313-479c0-172-141-312-313-312s-312 140-312 312v375c0 127 102 229 229 229h62v-87c-24-8-41-31-41-58v-125c0-35 28-63 62-63s63 28 63 63v125c0 27-18 50-42 58v87h62c127 0 230-102 230-229v-375z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="search" unicode="" d="M994-115l-304 305c63 70 102 163 102 264 0 218-178 396-396 396s-396-178-396-396 178-396 396-396c102 0 194 39 264 102l304-304c5-4 10-6 15-6s11 2 15 6c8 8 8 21 0 29z m-952 569c0 196 159 354 354 354s354-158 354-354-159-354-354-354-354 159-354 354z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="select" unicode="" d="M938 663h-875c-35 0-63-28-63-63v-500c0-34 28-62 63-62h875c34 0 62 28 62 62v500c0 35-28 63-62 63z m20-563c0-11-9-21-20-21h-875c-12 0-21 10-21 21v500c0 12 9 21 21 21h875c11 0 20-9 20-21v-500z m-119 306l-151-151-152 151c-9 9-22 9-30 0s-8-21 0-29l167-167c4-4 9-6 15-6s10 2 14 6l167 167c8 8 8 21 0 29-8 9-21 9-30 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="share" unicode="" d="M833 183c-57 0-108-29-138-74l-372 186c6 17 10 36 10 55s-4 38-10 55l372 186c30-45 81-74 138-74 92 0 167 74 167 166s-75 167-167 167-166-75-166-167c0-19 4-37 10-55l-372-185c-30 44-81 74-138 74-92 0-167-75-167-167s75-167 167-167c57 0 108 30 138 75l372-186c-6-18-10-36-10-55 0-92 74-167 166-167s167 75 167 167-75 166-167 166z m0 625c69 0 125-56 125-125s-56-125-125-125c-48 0-90 29-111 69 0 1 0 1 0 1 0 0 0 0 0 0-8 17-14 35-14 55 0 69 56 125 125 125z m-666-583c-69 0-125 56-125 125s56 125 125 125c48 0 90-28 111-69 0 0 0 0 0 0 0 0 0 0 0 0 9-17 14-36 14-56 0-20-5-38-14-55 0 0 0 0 0-1 0 0 0 0 0 0-21-41-63-69-111-69z m666-333c-69 0-125 56-125 125 0 20 6 38 14 55 0 0 0 0 0 0 0 0 0 0 0 1 21 40 63 69 111 69 69 0 125-56 125-125s-56-125-125-125z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="sidebar" unicode="" d="M979 850h-958c-12 0-21-9-21-21v-958c0-12 9-21 21-21h958c12 0 21 9 21 21v958c0 12-9 21-21 21z m-21-42v-166h-916v166h916z m-916-208h541v-708h-541v708z m583-708v708h333v-708h-333z m229 125h-125c-11 0-21-10-21-21s10-21 21-21h125c12 0 21 9 21 21s-9 21-21 21z m0 125h-125c-11 0-21-10-21-21s10-21 21-21h125c12 0 21 9 21 21s-9 21-21 21z m0 125h-125c-11 0-21-10-21-21s10-21 21-21h125c12 0 21 9 21 21s-9 21-21 21z m0 125h-125c-11 0-21-10-21-21s10-21 21-21h125c12 0 21 9 21 21s-9 21-21 21z m0 125h-125c-11 0-21-10-21-21s10-21 21-21h125c12 0 21 9 21 21s-9 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="skill-bar" unicode="" d="M938 829h-875c-35 0-63-28-63-62v-84c0-34 28-62 63-62h749c0 0 0 0 1 0s0 0 0 0h125c34 0 62 28 62 62v84c0 34-28 62-62 62z m-146-166h-96l96 95v-95z m-155 0h-66l125 125h66l-125-125z m-191 0l125 125h66l-125-125h-66z m-125 0l125 125h66l-125-125h-66z m-125 0l125 125h66l-125-125h-66z m-125 0l125 125h66l-125-125h-66z m-8 125h74l-95-96v75c0 11 9 21 21 21z m895-105c0-11-9-20-20-20h-105v125h105c11 0 20-10 20-21v-84z m-20-104h-875c-35 0-63-28-63-62v-84c0-34 28-62 63-62h499c0 0 0 0 1 0s0 0 0 0h375c34 0 62 28 62 62v84c0 34-28 62-62 62z m-396-166h-96l96 95v-95z m-155 0h-66l125 125h66l-125-125z m-191 0l125 125h66l-125-125h-66z m-125 0l125 125h66l-125-125h-66z m-8 125h74l-95-96v75c0 11 9 21 21 21z m895-105c0-11-9-20-20-20h-355v125h355c11 0 20-10 20-21v-84z m-20-354h-875c-35 0-63-28-63-62v-84c0-34 28-62 63-62h249c0 0 0 0 1 0s0 0 0 0h625c34 0 62 28 62 62v84c0 34-28 62-62 62z m-646-167h-96l96 96v-96z m-155 0h-66l125 126h66l-125-126z m-74 126h74l-95-96v75c0 11 9 21 21 21z m895-105c0-11-9-21-20-21h-605v126h605c11 0 20-10 20-21v-84z m-20 396h-875c-35 0-63-28-63-62v-84c0-34 28-62 63-62h624c0 0 0 0 1 0s0 0 0 0h250c34 0 62 28 62 62v84c0 34-28 62-62 62z m-271-166h-96l96 95v-95z m-155 0h-66l125 125h66l-125-125z m-191 0l125 125h66l-125-125h-66z m-125 0l125 125h66l-125-125h-66z m-125 0l125 125h66l-125-125h-66z m-8 125h74l-95-96v75c0 11 9 21 21 21z m895-105c0-11-9-20-20-20h-230v125h230c11 0 20-10 20-21v-84z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="slider-3d" unicode="" d="M792 621h-584c-11 0-20-9-20-21v-417c0-11 9-20 20-20h584c11 0 21 9 21 20v417c0 12-10 21-21 21z m-21-417h-542v375h542v-375z m-655 373l-84-42c-10-5-14-17-9-28 5-10 18-14 28-9l53 27v-266l-53 26c-10 5-23 1-28-9-5-10-1-23 9-28l84-42c3-1 6-2 9-2 4 0 8 1 11 3 6 4 10 11 10 18v333c0 8-4 14-10 18-6 4-14 4-20 1z m833-292l-53-26v266l53-27c10-5 23-1 28 9 5 11 1 23-9 28l-84 42c-6 3-14 3-20-1-6-4-10-10-10-18v-333c0-7 4-14 10-18 3-2 7-3 11-3 3 0 6 1 9 2l84 42c10 5 14 18 9 28-5 10-18 14-28 9z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="slider-album" unicode="" d="M971 533c-5 4-11 5-18 4l-140-35v56c0 12-10 21-21 21h-584c-11 0-20-9-20-21v-56l-141 35c-6 1-13 0-18-4s-8-10-8-16v-334c0-6 3-12 8-16 4-3 8-4 13-4 1 0 3 0 5 0l141 35v-56c0-12 9-21 20-21h584c11 0 21 9 21 21v56l140-35c2 0 4 0 5 0 5 0 10 1 13 4 5 4 8 10 8 16v334c0 6-3 12-8 16z m-908-323v280l125-31v-218l-125-31z m708-47h-542v375h542v-375z m167 47l-125 31v218l125 31v-280z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="slider-device" unicode="" d="M125 288c5 0 11 2 15 6 8 8 8 21 0 29l-69 69 69 68c8 8 8 22 0 30s-22 8-30 0l-83-84c-8-8-8-21 0-29l83-83c4-4 10-6 15-6z m848 118l-83 84c-8 8-22 8-30 0-8-8-8-22 0-30l69-68-69-69c-8-8-8-21 0-29 4-4 10-6 15-6s11 2 15 6l83 83c8 8 8 21 0 29z m-98-160h-62v354c0 35-28 63-63 63h-500c-34 0-62-28-62-63v-354h-63c-11 0-21-9-21-21v-42c0-34 28-62 63-62h666c35 0 63 28 63 62v42c0 12-9 21-21 21z m-646 354c0 12 10 21 21 21h500c12 0 21-9 21-21v-354h-542v354z m625-417c0-11-9-20-21-20h-666c-12 0-21 9-21 20v21h62 584 62v-21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="slider-full-screen" unicode="" d="M958 704h-916c-12 0-21-9-21-21v-666c0-12 9-21 21-21h916c12 0 21 9 21 21v666c0 12-9 21-21 21z m-20-666h-875v625h875v-625z m-744 214c4-4 9-6 14-6s11 2 15 6c8 8 8 21 0 29l-68 69 68 69c8 8 8 21 0 29s-21 8-29 0l-84-83c-8-8-8-22 0-30l84-83z m583 0c4-4 9-6 15-6s10 2 14 6l84 83c8 8 8 22 0 30l-84 83c-8 8-21 8-29 0s-8-21 0-29l69-69-69-69c-8-8-8-21 0-29z m-460-80c0-1 1-2 2-3 0-1 1-1 2-2 1-1 3-2 4-3 3-1 6-1 8-1h84c11 0 21 9 21 20s-10 21-21 21h-33l68 69c8 8 8 21 0 29s-21 8-29 0l-69-68v33c0 11-9 21-21 21s-20-10-20-21v-84c0-2 0-5 1-8 1-1 2-2 3-3z m-4 345v-84c0-11 9-20 20-20s21 9 21 20v33l69-68c4-4 9-6 15-6s10 2 14 6c8 8 8 21 0 29l-68 69h33c11 0 21 9 21 21s-10 21-21 21h-84c-1 0-2-1-3-1-2 0-3 0-5-1-2-1-4-3-6-5l0 0c-1 0-1 0-1 0-1-2-3-4-4-6-1-3-1-6-1-8z m250-125c5 0 10 2 14 6l69 68v-33c0-11 9-20 21-20 11 0 21 9 21 20v84c0 1-1 3-1 4-1 1-1 3-1 4-2 5-6 9-11 11-2 0-3 0-4 1-1 0-3 1-4 1h-84c-11 0-20-10-20-21s9-21 20-21h33l-68-69c-8-8-8-21 0-29 4-4 9-6 15-6z m53-188h-33c-11 0-20-9-20-21 0-11 9-20 20-20h84c2 0 5 0 8 1 2 1 4 3 6 4 0 0 0 0 0 1l0 0c2 2 4 4 5 6 1 2 1 3 1 5 0 1 1 2 1 3v84c0 11-10 21-21 21s-21-10-21-21v-33l-69 68c-8 8-21 8-29 0s-8-21 0-29l68-69z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="slider-push" unicode="" d="M792 621h-584c-11 0-20-9-20-21v-417c0-11 9-20 20-20h584c11 0 21 9 21 20v417c0 12-10 21-21 21z m-21-417h-542v375h542v-375z m-646 417h-83c-12 0-21-9-21-21s9-21 21-21h62v-375h-62c-12 0-21-9-21-21 0-11 9-20 21-20h83c12 0 21 9 21 20v417c0 12-9 21-21 21z m833-417h-62v375h62c12 0 21 10 21 21s-9 21-21 21h-83c-11 0-21-9-21-21v-417c0-11 10-20 21-20h83c12 0 21 9 21 20s-9 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="slider-vertical" unicode="" d="M958 663h-916c-12 0-21-10-21-21v-584c0-11 9-20 21-20h916c12 0 21 9 21 20v584c0 11-9 21-21 21z m-20-584h-875v542h875v-542z m-369-89l-69-69-69 69c-8 8-21 8-29 0s-8-22 0-30l83-83c4-4 10-6 15-6s11 2 15 6l83 83c8 8 8 22 0 30-8 8-21 8-29 0z m-138 720l69 69 69-69c4-4 9-6 14-6s11 2 15 6c8 8 8 22 0 30l-83 83c-8 8-22 8-30 0l-83-83c-8-8-8-22 0-30s21-8 29 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="slider-video" unicode="" d="M792 579h-584c-11 0-20-9-20-21v-416c0-12 9-21 20-21h584c11 0 21 9 21 21v416c0 12-10 21-21 21z m-21-416h-542v375h542v-375z m-631 285c-8 8-22 8-30 0l-83-83c-8-8-8-22 0-30l83-83c4-4 10-6 15-6s11 2 15 6c8 8 8 21 0 29l-69 69 69 69c8 8 8 21 0 29z m833-83l-83 83c-8 8-22 8-30 0s-8-21 0-29l69-69-69-69c-8-8-8-21 0-29 4-4 10-6 15-6s11 2 15 6l83 83c8 8 8 22 0 30z m-524-117c3-1 6-2 9-2 4 0 8 1 12 3l125 84c6 4 9 10 9 17s-3 14-9 17l-125 84c-7 4-15 4-21 1-7-4-11-11-11-19v-166c0-8 4-15 11-19z m30 146l67-44-67-44v88z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="slides" unicode="" d="M792 621h-584c-11 0-20-9-20-21v-417c0-11 9-20 20-20h584c11 0 21 9 21 20v417c0 12-10 21-21 21z m-21-417h-542v375h542v-375z m-631 286c-8 8-22 8-30 0l-83-84c-8-8-8-21 0-29l83-83c4-4 10-6 15-6s11 2 15 6c8 8 8 21 0 29l-69 69 69 68c8 8 8 22 0 30z m833-84l-83 84c-8 8-22 8-30 0s-8-22 0-30l69-68-69-69c-8-8-8-21 0-29 4-4 10-6 15-6s11 2 15 6l83 83c8 8 8 21 0 29z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="social-icons" unicode="" d="M926 796l-105 9c-47 4-95 4-142 0l-105-9c-42-4-74-38-74-80v-190c0-42 32-77 74-80l105-10c24-2 47-3 71-3s47 1 71 3l105 10c42 3 74 38 74 80v190c0 42-32 76-74 80z m32-270c0-20-15-37-35-39l-106-9c-44-4-90-4-134 0l-106 9c-20 2-35 19-35 39v190c0 20 15 37 35 39l106 9c22 2 45 3 67 3s45-1 67-3l106-9c20-2 35-19 35-39v-190z m-259 196c-6 4-15 4-21 1-7-4-11-11-11-19v-166c0-8 4-15 11-19 3-1 6-2 10-2 4 0 8 1 11 3l125 84c6 3 9 10 9 17s-3 13-9 17l-125 84z m9-146v89l67-44-67-45z m-264-308c1 2 2 5 2 8 3 8-1 17-8 22-7 5-16 5-23 1-5-3-23-11-37-15-38 30-83 32-128 7-34-20-45-55-46-83-69 10-112 47-137 78-5 5-11 8-18 7-7 0-13-4-16-10-15-24-19-51-12-78 1-5 2-9 4-13 0-1-1-1-1-1-7-4-12-11-12-19 0-32 14-57 32-74 0 0-1-1-1-1-5-6-7-15-3-23 11-24 29-42 52-54-22-7-46-10-69-7-10 1-19-5-22-15-3-9 1-20 10-24 48-27 98-41 146-40 50 0 98 14 141 43 75 50 122 138 118 218 12 9 28 24 39 41 5 8 4 19-2 26-3 3-6 5-9 6z m-169-257c-32-21-92-48-170-30 21 7 40 18 56 31 6 6 8 15 5 23s-10 13-19 14c-17 0-32 5-44 13 6 2 11 5 16 9 7 5 9 14 7 22s-10 14-18 15c-7 0-30 10-44 31 5 0 11 0 16 1 8 2 15 8 16 17 2 9-2 17-10 21-7 5-20 18-25 37-1 6-2 12-2 18 36-33 89-65 166-69 6-1 13 3 17 8 4 5 6 12 4 18-3 11-2 49 25 64 33 19 61 16 87-8 3-3 7-4 11-5-1-3-1-6 0-9 1-6 5-11 9-14-3-4-5-10-4-15 8-69-33-147-99-192z m121 797h-333c-35 0-63-28-63-62v-333c0-35 28-63 63-63h333c34 0 62 28 62 63v333c0 34-28 62-62 62z m21-395c0-12-10-21-21-21h-146v166h42c11 0 21 10 21 21s-10 21-21 21h-42c0 23 19 42 42 42h21c11 0 20 9 20 21s-9 20-20 20h-21c-46 0-84-37-84-83h-20c-12 0-21-9-21-21s9-21 21-21h20v-166h-145c-12 0-21 9-21 21v333c0 11 9 21 21 21h333c11 0 21-10 21-21v-333z m437-21h-208c-81 0-146-66-146-146v-208c0-81 65-146 146-146h208c81 0 146 65 146 146v208c0 80-65 146-146 146z m104-354c0-58-46-105-104-105h-208c-58 0-104 47-104 105v208c0 57 46 104 104 104h208c58 0 104-47 104-104v-208z m-208 229c-69 0-125-56-125-125s56-125 125-125 125 56 125 125-56 125-125 125z m0-209c-46 0-83 38-83 84s37 83 83 83 83-37 83-83-37-84-83-84z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="spacer" unicode="" d="M42 663h916c12 0 21 9 21 20s-9 21-21 21h-916c-12 0-21-9-21-21s9-20 21-20z m583-250c8 0 15 4 19 11s2 16-2 22l-125 167c-8 10-26 10-34 0l-125-167c-4-6-5-15-2-22 4-7 11-11 19-11h104v-125h-104c-8 0-15-5-19-12-3-7-2-15 2-22l125-166c4-6 11-9 17-9s13 3 17 9l125 166c4 7 5 15 2 22-4 7-11 12-19 12h-104v125h104z m-125-278l-83 111h166l-83-111z m0 430l83-111h-166l83 111z m458-527h-916c-12 0-21-10-21-21s9-21 21-21h916c12 0 21 9 21 21s-9 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="table" unicode="" d="M979 725h-958c-12 0-21-9-21-21v-708c0-12 9-21 21-21h958c12 0 21 9 21 21v708c0 12-9 21-21 21z m-602-542v125h248v-125h-248z m248-41v-125h-248v125h248z m0 333v-125h-248v125h248z m42 0h291v-125h-291v125z m-332-125h-293v125h293v-125z m-293-42h293v-125h-293v125z m625 0h291v-125h-291v125z m291 375v-166h-916v166h916z m-916-541h293v-125h-293v125z m625-125v125h291v-125h-291z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="tabs" unicode="" d="M988 574l-42 111c-9 24-32 40-58 40h-191c-21 0-40-10-51-26-12 16-30 26-51 26h-190c-21 0-39-10-51-26-11 16-30 26-51 26h-191c-26 0-49-16-58-40l-45-120c-6-16-9-32-9-49v-478c0-35 28-63 63-63h875c34 0 62 28 62 63v500c0 13-5 26-12 36z m-291 109h191c9 0 16-5 20-13l26-70h-252l-14 42 9 27c3 9 11 14 20 14z m-292 0h190c9 0 17-5 20-14l23-69h-248l-14 42 9 27c3 9 11 14 20 14z m553-645c0-12-9-21-20-21h-875c-12 0-21 9-21 21v478c0 12 2 23 6 34l45 120c3 8 10 13 19 13h191c9 0 17-5 20-14l32-96c3-9 11-15 20-15h563c5 0 10-2 13-5l1-3c1-2 3-4 5-6 1-2 1-4 1-6v-500z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="tel-field" unicode="" d="M938 663h-875c-35 0-63-28-63-63v-500c0-34 28-62 63-62h875c34 0 62 28 62 62v500c0 35-28 63-62 63z m20-563c0-11-9-21-20-21h-875c-12 0-21 10-21 21v500c0 12 9 21 21 21h875c11 0 20-9 20-21v-500z m-460 190c-26 0-52 4-76 12-16 5-34 1-43-9l-45-34c-52 28-85 61-113 112l33 43c11 12 16 29 11 45-9 24-13 50-13 76 0 24-19 44-44 44h-81c-24 0-44-20-44-44 0-228 186-414 415-414 24 0 44 20 44 44v81c0 24-20 44-44 44z m0-127c-206 0-373 167-371 375l84-3c0-30 5-60 14-89l20 7-23-11-42-56c-5-7-5-15-2-22 36-70 78-112 148-148 7-4 16-3 22 2l56 42c1 0 4 2 5 2 28-9 58-14 91-16l-2-83z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="text-area" unicode="" d="M938 767h-875c-35 0-63-28-63-63v-708c0-35 28-63 63-63h875c34 0 62 28 62 63v708c0 35-28 63-62 63z m-896-771v708c0 12 9 21 21 21h875c11 0 20-9 20-21v-616l-112-113h-783c-12 0-21 9-21 21z m896-21h-33l53 54v-33c0-12-9-21-20-21z m-689 653c-6 16-33 16-39 0l-125-333c-4-11 1-23 12-27 11-4 23 1 27 12l42 112c0 0 0 0 1 0h125c0 0 0 0 1 0l42-112c3-8 11-13 19-13 3 0 5 0 8 1 10 4 16 16 12 27l-125 333z m-68-195l48 129 48-129h-96z m694-62c0 11-9 21-21 21s-21-10-21-21c0-35-28-63-62-63s-63 28-63 63v83c0 35 28 63 63 63s62-28 62-63c0-11 10-21 21-21s21 10 21 21c0 58-47 104-104 104s-104-46-104-104v-83c0-58 46-104 104-104s104 46 104 104z m-354 187c-24 0-45-8-63-21v84c0 11-9 21-20 21s-21-10-21-21v-167-21-41-21-83c0-12 9-21 21-21s20 9 20 21v0c18-13 39-21 63-21 57 0 104 46 104 104v83c0 58-47 104-104 104z m62-187c0-35-28-63-62-63s-63 28-63 63v21 41 21c0 35 28 63 63 63s62-28 62-63v-83z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="text-field" unicode="" d="M938 663h-875c-35 0-63-28-63-63v-500c0-34 28-62 63-62h875c34 0 62 28 62 62v500c0 35-28 63-62 63z m20-563c0-11-9-21-20-21h-875c-12 0-21 10-21 21v500c0 12 9 21 21 21h875c11 0 20-9 20-21v-500z m-729 438c12 0 21 9 21 20s-9 21-21 21h-83c-12 0-21-9-21-21s9-20 21-20h21v-375h-21c-12 0-21-10-21-21s9-21 21-21h83c12 0 21 9 21 21s-9 21-21 21h-21v375h21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="thumbnails-down" unicode="" d="M792 663h-584c-11 0-20-10-20-21v-417c0-11 9-21 20-21h584c11 0 21 10 21 21v417c0 11-10 21-21 21z m-21-417h-542v375h542v-375z m-631 244c-8 8-22 8-30 0l-83-84c-8-8-8-21 0-29l83-83c4-4 10-6 15-6s11 2 15 6c8 8 8 21 0 29l-69 69 69 68c8 8 8 22 0 30z m833-84l-83 84c-8 8-22 8-30 0s-8-22 0-30l69-68-69-69c-8-8-8-21 0-29 4-4 10-6 15-6s11 2 15 6l83 83c8 8 8 21 0 29z m-681-243h-84c-11 0-20-10-20-21v-84c0-11 9-20 20-20h84c11 0 21 9 21 20v84c0 11-10 21-21 21z m-21-84h-42v42h42v-42z m187 84h-83c-11 0-21-10-21-21v-84c0-11 10-20 21-20h83c12 0 21 9 21 20v84c0 11-9 21-21 21z m-20-84h-42v42h42v-42z m187 84h-83c-12 0-21-10-21-21v-84c0-11 9-20 21-20h83c12 0 21 9 21 20v84c0 11-9 21-21 21z m-21-84h-41v42h41v-42z m188 84h-84c-11 0-20-10-20-21v-84c0-11 9-20 20-20h84c11 0 21 9 21 20v84c0 11-10 21-21 21z m-21-84h-42v42h42v-42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="thumbnails-half" unicode="" d="M479 663h-458c-12 0-21-10-21-21v-584c0-11 9-20 21-20h458c12 0 21 9 21 20v584c0 11-9 21-21 21z m-21-584h-416v542h416v-542z m521 584h-83c-12 0-21-10-21-21v-84c0-11 9-20 21-20h83c12 0 21 9 21 20v84c0 11-9 21-21 21z m-21-84h-41v42h41v-42z m21-83h-83c-12 0-21-9-21-21v-83c0-12 9-21 21-21h83c12 0 21 9 21 21v83c0 12-9 21-21 21z m-21-83h-41v41h41v-41z m21-84h-83c-12 0-21-9-21-21v-83c0-11 9-21 21-21h83c12 0 21 10 21 21v83c0 12-9 21-21 21z m-21-83h-41v42h41v-42z m21-83h-83c-12 0-21-10-21-21v-84c0-11 9-20 21-20h83c12 0 21 9 21 20v84c0 11-9 21-21 21z m-21-84h-41v42h41v-42z m-145 584h-84c-11 0-21-10-21-21v-84c0-11 10-20 21-20h84c11 0 20 9 20 20v84c0 11-9 21-20 21z m-21-84h-42v42h42v-42z m21-83h-84c-11 0-21-9-21-21v-83c0-12 10-21 21-21h84c11 0 20 9 20 21v83c0 12-9 21-20 21z m-21-83h-42v41h42v-41z m21-84h-84c-11 0-21-9-21-21v-83c0-11 10-21 21-21h84c11 0 20 10 20 21v83c0 12-9 21-20 21z m-21-83h-42v42h42v-42z m21-83h-84c-11 0-21-10-21-21v-84c0-11 10-20 21-20h84c11 0 20 9 20 20v84c0 11-9 21-20 21z m-21-84h-42v42h42v-42z m-146 584h-83c-12 0-21-10-21-21v-84c0-11 9-20 21-20h83c11 0 21 9 21 20v84c0 11-10 21-21 21z m-21-84h-42v42h42v-42z m21-83h-83c-12 0-21-9-21-21v-83c0-12 9-21 21-21h83c11 0 21 9 21 21v83c0 12-10 21-21 21z m-21-83h-42v41h42v-41z m21-84h-83c-12 0-21-9-21-21v-83c0-11 9-21 21-21h83c11 0 21 10 21 21v83c0 12-10 21-21 21z m-21-83h-42v42h42v-42z m21-83h-83c-12 0-21-10-21-21v-84c0-11 9-20 21-20h83c11 0 21 9 21 20v84c0 11-10 21-21 21z m-21-84h-42v42h42v-42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="thumbnails-right" unicode="" d="M813 663h-792c-12 0-21-10-21-21v-584c0-11 9-20 21-20h792c11 0 20 9 20 20v584c0 11-9 21-20 21z m-21-584h-750v542h750v-542z m187 584h-83c-12 0-21-10-21-21v-84c0-11 9-20 21-20h83c12 0 21 9 21 20v84c0 11-9 21-21 21z m-21-84h-41v42h41v-42z m21-83h-83c-12 0-21-9-21-21v-83c0-12 9-21 21-21h83c12 0 21 9 21 21v83c0 12-9 21-21 21z m-21-83h-41v41h41v-41z m21-84h-83c-12 0-21-9-21-21v-83c0-11 9-21 21-21h83c12 0 21 10 21 21v83c0 12-9 21-21 21z m-21-83h-41v42h41v-42z m21-83h-83c-12 0-21-10-21-21v-84c0-11 9-20 21-20h83c12 0 21 9 21 20v84c0 11-9 21-21 21z m-21-84h-41v42h41v-42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="time-line" unicode="" d="M667 454h250c34 0 62 28 62 63v250c0 34-28 62-62 62h-250c-35 0-63-28-63-62v-33l-54-55c-8 10-18 17-29 21v108c0 12-9 21-21 21s-21-9-21-21v-108c-24-8-41-31-41-58s17-50 41-59v-174c-11-4-21-12-29-21l-54 54v33c0 34-28 63-63 63h-250c-34 0-62-29-62-63v-250c0-34 28-62 62-62h250c35 0 63 28 63 62v33l54 55c8-10 18-18 29-22v-174c-24-9-41-32-41-59s17-50 41-58v-108c0-12 10-21 21-21s21 9 21 21v108c11 4 21 11 29 21l54-55v-33c0-34 28-62 63-62h250c34 0 62 28 62 62v250c0 35-28 63-62 63h-250c-35 0-63-28-63-63v-33l-54-54c-8 10-18 17-29 21v174c24 9 42 32 42 59s-18 50-42 59v174c11 4 21 12 29 21l54-54v-33c0-35 28-63 63-63z m-167 209c12 0 21-10 21-21v0c0-12-9-21-21-21s-21 9-21 21 10 21 21 21z m-140-382c-4-3-6-9-6-14v-42c0-11-9-21-21-21h-250c-11 0-20 10-20 21v250c0 12 9 21 20 21h250c12 0 21-9 21-21v-42c0-5 2-10 6-14l69-69-69-69z m140-202c12 0 21-9 21-21v0c0-11-9-20-21-20s-21 9-21 20 10 21 21 21z m140 48c4 4 6 9 6 15v41c0 12 9 21 21 21h250c11 0 21-9 21-21v-250c0-11-10-21-21-21h-250c-12 0-21 10-21 21v42c0 5-2 11-6 15l-69 68 69 69z m-140 202c-11 0-21 10-21 21v0c0 12 10 21 21 21s21-9 21-21-9-21-21-21z m71 313l69 68c4 4 6 9 6 15v42c0 11 9 21 21 21h250c11 0 21-10 21-21v-250c0-12-10-21-21-21h-250c-12 0-21 9-21 21v41c0 6-2 11-6 15l-69 69z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="toggle" unicode="" d="M229 829h-166c-35 0-63-28-63-62v-167c0-34 28-62 63-62h166c35 0 63 28 63 62v167c0 34-28 62-63 62z m21-229c0-11-9-21-21-21h-166c-12 0-21 10-21 21v167c0 11 9 21 21 21h166c12 0 21-10 21-21v-167z m-62 104h-21v21c0 12-10 21-21 21s-21-9-21-21v-21h-21c-11 0-21-9-21-21s10-20 21-20h21v-21c0-12 9-21 21-21s21 9 21 21v21h21c11 0 20 9 20 20s-9 21-20 21z m41-208h-166c-35 0-63-28-63-63v-166c0-35 28-63 63-63h166c35 0 63 28 63 63v166c0 35-28 63-63 63z m21-229c0-12-9-21-21-21h-166c-12 0-21 9-21 21v166c0 12 9 21 21 21h166c12 0 21-9 21-21v-166z m-62 104h-21v21c0 11-10 21-21 21s-21-10-21-21v-21h-21c-11 0-21-9-21-21s10-21 21-21h21v-21c0-11 9-20 21-20s21 9 21 20v21h21c11 0 20 10 20 21s-9 21-20 21z m41-208h-166c-35 0-63-28-63-63v-167c0-34 28-62 63-62h166c35 0 63 28 63 62v167c0 35-28 63-63 63z m21-230c0-11-9-21-21-21h-166c-12 0-21 10-21 21v167c0 12 9 21 21 21h166c12 0 21-9 21-21v-167z m-62 105h-21v20c0 12-10 21-21 21s-21-9-21-21v-20h-21c-11 0-21-10-21-21s10-21 21-21h21v-21c0-12 9-21 21-21s21 9 21 21v21h21c11 0 20 9 20 21s-9 21-20 21z m208 625h583c12 0 21 9 21 20s-9 21-21 21h-583c-12 0-21-9-21-21s9-20 21-20z m583-292h-583c-12 0-21-9-21-21s9-21 21-21h583c12 0 21 10 21 21s-9 21-21 21z m0-333h-583c-12 0-21-10-21-21s9-21 21-21h583c12 0 21 9 21 21s-9 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="url" unicode="" d="M938 621h-875c-35 0-63-28-63-63v-416c0-35 28-63 63-63h875c34 0 62 28 62 63v416c0 35-28 63-62 63z m20-479c0-12-9-21-20-21h-875c-12 0-21 9-21 21v416c0 12 9 21 21 21h875c11 0 20-9 20-21v-416z m-640 312c-12 2-23-4-26-16l-26-106-38 89c-7 15-32 15-39 0l-38-89-27 106c-2 12-14 18-25 16-11-3-18-15-15-26l42-166c2-9 9-15 18-16 10-1 18 4 21 13l43 101 44-101c3-8 11-13 19-13 0 0 1 0 2 0 8 1 16 7 18 16l42 166c3 11-4 23-15 26z m291 0c-11 2-22-4-25-16l-27-106-38 89c-6 15-32 15-38 0l-38-89-27 106c-3 12-14 18-25 16-11-3-18-15-15-26l41-166c3-9 10-15 19-16 9-1 17 4 21 13l43 101 43-101c4-8 11-13 20-13 0 0 1 0 1 0 9 1 17 7 19 16l41 166c3 11-4 23-15 26z m292 0c-11 2-23-4-25-16l-27-106-38 89c-7 15-32 15-38 0l-39-89-26 106c-3 12-14 18-25 16-12-3-18-15-16-26l42-166c2-9 10-15 19-16 9-1 17 4 20 13l44 101 43-101c3-8 11-13 19-13 1 0 1 0 2 0 9 1 16 7 18 16l42 166c3 11-4 23-15 26z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="t-letter" unicode="" d="M647-108c0 0-1 0-1 0h-292c-11 0-21 9-21 20s10 21 21 21c35 0 63 28 63 63v646h-271c-35 0-63-28-63-63 0-11-9-21-20-21s-21 10-21 21v209c0 11 9 20 21 20h875c11 0 20-9 20-20v-209c0-11-9-21-20-21s-21 10-21 21c0 35-28 63-63 63h-271v-646c0-35 28-63 63-63 0 0 0 0 0 0h1c11 0 21-9 21-21s-10-20-21-20z m-209 41h125c-13 18-21 39-21 63v667c0 11 9 20 21 20h291c24 0 45-7 63-20v104h-834v-104c18 13 39 20 63 20h292c11 0 20-9 20-20v-667c0-24-7-45-20-63z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="wordpress" unicode="" d="M108 346c0 54 13 108 34 158l187-512c-66 29-121 79-162 141-42 63-59 134-59 213z m659 17c0-9 0-13 0-21s-4-17-4-25c-5-9-5-17-5-21s-8-13-12-29c-4-17-8-25-8-29l-38-130-146 421c17 0 29 4 46 4 8 0 13 5 13 9 4 4 0 12 0 16-5 5-9 9-13 9l-108-9c-25 0-59 0-104 5-5 0-9 0-13-5 0 0 0 0-4-4 0-4 0-4 0-8 0-4 0-4 4-8s4-5 8-5l42-4 63-166-88-259-142 425c17 0 30 4 46 4 9 0 13 5 13 9 4 4 0 12 0 16-4 5-9 9-17 5l-104-5c0 0-4 0-13 0s-8 0-12 0c37 55 83 96 142 130s120 45 187 45c50 0 100-8 142-29s87-41 121-75h-5c-20 0-33-8-45-21-13-12-21-29-21-50 0-4 0-8 0-12s0-8 0-13c0-4 0-8 4-12 0-4 4-8 4-13s4-8 4-12c4-4 4-8 9-13 0 0 4-4 8-12 4-4 4-8 8-13 25-20 38-58 38-95z m-259-55l121-329c0 0 0-4 4-4-41-17-87-21-129-21-37 0-75 4-112 17l116 337z m338 225c33-58 50-120 50-187 0-71-17-138-54-196s-84-108-142-142l121 346c21 59 29 104 29 142-4 12-4 25-4 37z m-525 234c58 25 117 37 179 37s121-12 179-37 104-59 146-96c42-42 75-92 96-146 25-58 37-117 37-179s-12-121-37-179c-25-59-58-104-96-146-42-42-92-75-146-96s-116-38-179-38-121 13-179 38-104 58-146 96c-42 42-75 92-96 146-25 54-37 116-37 179s12 121 37 179 59 104 96 146 92 71 146 96z m8-825c54-25 113-34 171-34s117 13 171 34c54 25 100 54 142 91 37 38 70 88 91 142 25 54 34 113 34 171s-13 117-34 171c-25 54-54 100-91 141-38 38-88 71-142 92-54 25-113 33-171 33s-117-12-171-37-100-54-137-92-71-87-96-141-33-113-33-171 12-117 33-171 54-100 92-142c41-33 87-62 141-87z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="text" unicode="" d="M979 642h-958c-12 0-21 9-21 21s9 20 21 20h958c12 0 21-9 21-20s-9-21-21-21z m-291-125h-667c-12 0-21 9-21 21s9 20 21 20h667c11 0 20-9 20-20s-9-21-20-21z m291-125h-958c-12 0-21 9-21 21s9 20 21 20h958c12 0 21-9 21-20s-9-21-21-21z m-291-125h-667c-12 0-21 9-21 21s9 20 21 20h667c11 0 20-9 20-20s-9-21-20-21z m291-125h-958c-12 0-21 9-21 21s9 20 21 20h958c12 0 21-9 21-20s-9-21-21-21z m-291-125h-667c-12 0-21 9-21 21s9 20 21 20h667c11 0 20-9 20-20s-9-21-20-21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="anchor" unicode="" d="M500-154c-10 0-19 8-20 17-8 7-38 16-61 24-79 24-196 61-245 167h-28c-3 0-6 1-9 2-10 5-95 50-95 269 0 9 5 16 13 20 7 3 16 1 22-5 102-101 204-163 205-164 9-5 12-17 8-27l-14-28c65-62 108-67 120-67 16 0 21 24 21 25l0 392h-63c-20-26-51-42-83-42-58 0-104 47-104 105s46 104 104 104c32 0 63-16 83-42h63v32c-27 24-42 57-42 93 0 69 56 125 125 125s125-56 125-125c0-36-15-69-42-93v-32h63c20 26 51 42 83 42 58 0 104-47 104-104s-46-105-104-105c-32 0-63 16-83 42h-63v-396c0 0 0 0 0 0 1 0 6-21 21-21 12 0 55 5 121 67l-14 28c-5 10-2 22 7 27 2 1 104 63 205 164 6 6 15 8 23 5 7-4 12-11 12-20 0-219-85-264-95-269-3-1-6-2-9-2h-28c-49-106-166-143-244-167-24-8-54-17-61-24-2-9-11-17-21-17z m-348 250h36c8 0 16-5 19-13 38-98 150-133 224-157 29-9 53-16 69-26 16 10 40 17 69 26 74 24 186 59 224 157 3 8 11 13 20 13h35c12 9 57 50 67 179-68-62-130-105-159-124l13-25c4-8 2-17-4-24-58-57-115-89-161-89-41 0-59 38-62 59l0 420c0 11 9 21 21 21h94c8 0 15-4 18-11 12-19 32-31 54-31 35 0 63 28 63 63s-28 62-63 62c-22 0-42-12-54-31-3-7-10-11-18-11h-94c-12 0-21 10-21 21v63c0 7 3 13 8 17 21 16 33 40 33 66 0 46-37 83-83 83s-83-37-83-83c0-26 12-50 33-66 5-4 8-10 8-17v-63c0-11-9-21-20-21h-95c-8 0-15 4-18 11-12 19-32 31-54 31-35 0-63-28-63-62s28-63 63-63c22 0 42 12 54 31 3 7 10 11 18 11h95c11 0 20-10 20-21v-417c-3-24-21-62-62-62-46 0-103 32-161 89-6 7-8 16-4 24l13 25c-29 19-91 62-159 124 10-129 54-170 67-179z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="bullet-list" unicode="" d="M979 663h-708c-12 0-21 9-21 20s9 21 21 21h708c12 0 21-9 21-21s-9-20-21-20z m0-334h-708c-12 0-21 10-21 21s9 21 21 21h708c12 0 21-9 21-21s-9-21-21-21z m0-333h-708c-12 0-21 9-21 21s9 21 21 21h708c12 0 21-10 21-21s-9-21-21-21z m-875 250c-57 0-104 47-104 104s47 104 104 104 104-47 104-104-46-104-104-104z m0 167c-34 0-62-28-62-63s28-62 62-62 63 28 63 62-28 63-63 63z m0-501c-57 0-104 47-104 105s47 104 104 104 104-47 104-104-46-105-104-105z m0 167c-34 0-62-28-62-62s28-63 62-63 63 28 63 63-28 62-63 62z m0 500c-57 0-104 47-104 104s47 105 104 105 104-47 104-105-46-104-104-104z m0 167c-34 0-62-28-62-63s28-62 62-62 63 28 63 62-28 63-63 63z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="code" unicode="" d="M313-129c-3 0-6 0-8 1-11 5-16 17-12 27l375 917c5 11 17 16 27 12 11-5 16-17 12-28l-375-916c-3-8-11-13-19-13z m416 167c-5 0-9 1-13 5-9 7-10 20-3 29l239 278-239 278c-7 9-6 22 3 30 8 7 22 6 29-3l250-291c7-8 7-20 0-27l-250-292c-4-5-10-7-16-7z m-458 0c-6 0-12 2-16 7l-250 292c-7 7-7 19 0 27l250 291c8 9 21 10 29 3 9-8 10-21 3-30l-239-278 239-278c7-9 6-22-3-29-3-4-8-5-13-5z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="favorite" unicode="" d="M500-150c-276 0-500 224-500 500s224 500 500 500 500-224 500-500-224-500-500-500z m0 958c-253 0-458-205-458-458s205-458 458-458 458 205 458 458-205 458-458 458z m188-750c-4 0-8 2-12 4l-176 117-176-117c-7-5-17-5-24 0-7 5-10 14-8 23l59 215-176 138c-7 5-10 15-7 23 3 8 11 14 20 14h215l78 195c6 16 32 16 38 0l78-195h216c8 0 16-6 19-14 3-8 0-18-7-23l-176-138 59-215c2-9-1-18-8-23-4-2-8-4-12-4z m-188 167c4 0 8-1 12-3l141-95-48 176c-2 8 1 17 7 22l140 108h-169c-8 0-16 6-19 13l-64 160-64-159c-3-8-11-14-19-14h-169l140-108c6-5 9-14 7-22l-48-176 141 95c4 2 8 3 12 3z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="google-maps" unicode="" d="M750 100c-10 0-18 7-20 17-33 162-91 252-137 324-12 18-23 35-33 52-18 26-30 57-35 90-3 14-4 26-4 38 0 126 103 229 229 229s229-103 229-229c0-12-1-24-4-38-5-33-17-64-36-91-8-16-20-33-31-51-47-72-105-162-138-324-1-10-10-17-20-17z m0 708c-103 0-187-84-187-187 0-9 1-19 3-30 4-29 14-54 29-76 10-17 21-34 33-52 39-61 87-136 122-255 35 119 83 193 123 255 11 18 22 35 31 51 16 23 26 48 30 76 3 12 4 22 4 31 0 103-85 187-188 187z m0-291c-57 0-104 46-104 104s47 104 104 104 104-47 104-104-47-104-104-104z m0 166c-34 0-62-28-62-62s28-63 62-63 63 28 63 63-28 62-63 62z m83-833h-708c-57 0-104 47-104 104v667c0 57 47 104 104 104h417c11 0 21-9 21-21s-10-21-21-21h-417c-34 0-62-28-62-62v-667c0-34 28-62 62-62h708c35 0 63 28 63 62v521c0 12 9 21 21 21s21-9 21-21v-521c0-57-47-104-105-104z m-750 42c-5 0-10 2-14 6-8 8-8 21 0 29l520 521c9 8 22 8 30 0s8-21 0-29l-521-521c-4-4-9-6-15-6z m792 0c-5 0-11 2-15 6l-396 396c-8 8-8 21 0 29s22 8 30 0l396-396c8-8 8-21 0-29-4-4-10-6-15-6z m-667 583c-46 0-83 37-83 83s37 84 83 84 84-38 84-84-38-83-84-83z m0 125c-23 0-41-19-41-42s18-41 41-41 42 18 42 41-19 42-42 42z m84 0h-84c-11 0-20 9-20 21s9 21 20 21h84c11 0 21-10 21-21s-10-21-21-21z m-84-292c-71 0-104 49-104 84 0 39 37 65 110 78-3 8-6 16-6 26 0 11 10 21 21 21s21-10 21-21c0-10 9-19 23-32 18-17 40-39 40-72 0-74-51-84-105-84z m37 125c-73-10-99-28-99-41 0-9 11-42 62-42 60 0 63 14 63 42 0 14-10 25-26 41z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="image" unicode="" d="M42 83l212 300c9 9 21 13 34 5l137-96 192 233c8 13 29 13 37 0l304-454v608h-916v-596z m896-66l-309 458-183-225c-8-8-21-12-29-4l-134 96-229-325h884z m-917-46c-13 0-25 8-25 21v708c0 17 12 25 25 25h958c13 0 21-8 21-21v-708c0-13-8-21-21-21h-958z m246 571c0 25-21 50-46 50s-50-21-50-50 21-50 46-50 50 25 50 50z m46 0c0-50-42-96-92-96s-96 46-96 96 42 96 92 96 96-42 96-96z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="photo-library" unicode="" d="M729 142h-708c-12 0-21 9-21 21v625c0 11 9 20 21 20h708c12 0 21-9 21-20v-625c0-12-9-21-21-21z m-687 41h666v584h-666v-584z m687-41c-7 0-15 4-18 11l-212 424-148-258c-3-6-8-10-15-10-6-1-13 1-17 5l-107 107-174-270c-6-9-19-12-28-6-10 6-13 19-7 29l188 291c3 6 9 9 15 10 6 1 13-2 17-6l106-106 153 268c4 7 11 11 19 11 7 0 14-5 18-12l229-458c5-10 1-23-9-28-3-2-7-2-10-2z m-500 375c-57 0-104 46-104 104s47 104 104 104 104-47 104-104-46-104-104-104z m0 166c-34 0-62-28-62-62s28-63 62-63 63 28 63 63-28 62-63 62z m584-625h-709c-11 0-21 10-21 21v84c0 11 10 20 21 20s21-9 21-20v-63h667v583h-42c-11 0-21 10-21 21s10 21 21 21h63c11 0 20-9 20-21v-625c0-11-9-21-20-21z m83-83h-708c-12 0-21 9-21 21v83c0 12 9 21 21 21s20-9 20-21v-62h667v583h-62c-12 0-21 9-21 21s9 21 21 21h83c11 0 21-10 21-21v-625c0-12-10-21-21-21z m83-83h-708c-12 0-21 9-21 20v84c0 11 9 21 21 21s21-10 21-21v-63h666v542h-62c-12 0-21 9-21 21s9 21 21 21h83c12 0 21-10 21-21v-584c0-11-9-20-21-20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="woocommerce" unicode="" d="M896 642h-792c-57 0-104-47-104-104v-292c0-58 47-104 104-104h403l128-80c3-3 7-4 11-4 5 0 11 3 15 7 7 7 8 18 2 26l-34 51h267c57 0 104 46 104 104v292c0 57-47 104-104 104z m62-396c0-35-28-63-62-63h-306c-7 0-14-4-18-11s-3-15 1-21l2-3-51 32c-4 2-8 3-11 3h-409c-34 0-62 28-62 63v292c0 34 28 62 62 62h792c34 0 62-28 62-62v-292z m-537 325c-47-60-61-198-65-273-23 43-41 115-51 156-11 49-15 63-34 63-17 0-19 0-85-144-10-21-22-47-32-68-6 41-12 99-18 142-4 36-8 69-11 93-2 12-12 20-24 18-11-1-19-12-17-23 3-24 7-57 11-93 26-217 27-217 51-217 17 0 18 0 78 131 13 28 29 62 41 88 23-96 50-192 101-217 3-1 6-2 9-2 4 0 8 1 11 3 6 4 10 11 10 18 0 87 16 245 58 300 7 9 5 22-4 29-9 7-22 5-29-4z m166-54c-54 0-109-63-125-142-9-50-1-96 22-123 14-18 33-27 54-27 55 0 109 62 125 142 9 49 1 95-22 123-14 17-33 27-54 27z m35-142c-13-64-54-108-84-108-9 0-16 3-22 11-15 18-20 52-13 89 13 64 54 108 84 108 9 0 16-4 22-11 15-18 20-52 13-89z m215 142c-54 0-109-63-125-142-9-50-1-96 22-123 14-18 33-27 54-27 55 0 109 62 125 142 9 49 1 95-22 123-14 17-33 27-54 27z m35-142c-13-64-54-108-84-108-9 0-16 3-22 11-15 18-20 52-13 89 13 64 54 108 84 108 9 0 16-4 22-11 15-18 20-52 13-89z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="youtube" unicode="" d="M500-19c-49 0-98 2-146 6l-221 20c-76 6-133 69-133 145v396c0 76 57 139 133 145l221 19c97 9 195 9 292 0l221-19c76-6 133-69 133-145v-396c0-76-57-139-133-145l-221-20c-48-4-97-6-146-6z m0 696c-48 0-95-2-143-6l-220-19c-54-5-95-50-95-104v-396c0-54 41-99 95-104l220-19c95-8 191-8 286 0l220 19 0 0c54 5 95 50 95 104v396c0 54-41 99-95 104l-220 19c-48 4-95 6-143 6z m-104-535c-4 0-7 0-10 2-7 4-11 11-11 18v375c0 8 4 15 11 19 7 3 15 3 21-1l292-188c6-3 9-10 9-17s-3-14-9-18l-292-187c-3-2-7-3-11-3z m21 357v-298l232 149-232 149z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="flip-box" unicode="" d="M813 788h-625c-12 0-21-10-21-21v-834c0-11 9-21 21-21h625c11 0 20 10 20 21v834c0 11-9 21-20 21z m-21-834h-584v792h584v-792z m207 264c-4 11-15 17-26 13l-35-11c42 86 44 194-32 271-8 8-22 8-30 0-8-8-8-21 0-29 64-65 60-159 21-232l-16 47c-4 11-15 17-26 13-11-4-17-15-13-26l29-89c0 0 1-1 1-1 1-2 1-3 2-4 1-1 2-2 3-3 0-1 1-1 1-2 0 0 1 0 1 0 1-1 2-1 3-2 2-1 6-2 9-2 2 0 4 0 6 1l89 30c11 3 17 15 13 26z m-870 265c0 1-1 1-1 2 0 1-1 2-2 4-1 1-2 1-2 2-1 1-1 2-2 2-1 1-1 1-2 1-1 0-1 1-1 1-1 0-2 0-2 1-2 0-3 1-5 1-1 0-2 0-3 0-2 0-3 0-4 0-1-1-2-1-2-1l-89-29c-11-4-17-16-13-27 4-10 16-16 27-13l34 12c-42-86-44-195 33-272 4-4 9-6 14-6 6 0 11 2 15 6 8 8 8 21 0 30-64 64-59 158-21 231l16-46c3-9 11-15 20-15 2 0 4 1 6 1 11 4 17 16 14 27l-30 88z m184 13h375c11 0 20 9 20 21s-9 21-20 21h-375c-12 0-21-10-21-21s9-21 21-21z m0-125h375c11 0 20 9 20 21s-9 21-20 21h-375c-12 0-21-10-21-21s9-21 21-21z m0-125h375c11 0 20 9 20 21s-9 21-20 21h-375c-12 0-21-10-21-21s9-21 21-21z m0-125h166c12 0 21 9 21 21s-9 21-21 21h-166c-12 0-21-10-21-21s9-21 21-21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="settings" unicode="" d="M662-117c-14 0-27 3-40 10-21 12-36 33-40 57-4 21-23 35-45 33-24-3-50-3-74 0-22 2-41-12-45-33-4-24-19-45-40-57-22-12-48-13-72-3-38 16-75 37-108 62-20 15-32 38-32 64-1 24 10 48 29 64 16 13 18 36 6 54-15 20-27 42-38 65-8 20-30 29-50 22-23-9-49-6-70 6-21 13-36 35-39 60-3 21-4 42-4 63s1 42 4 63c3 25 18 47 39 60 21 12 47 15 70 6 20-7 42 3 50 22 11 23 23 45 38 65 13 18 10 41-6 55-19 15-30 39-29 63 0 26 12 49 32 64 33 25 70 46 108 62 23 10 50 9 72-3 21-12 36-33 40-57 4-21 23-35 45-33 24 3 50 3 74 0 22-2 41 12 45 33 4 24 19 45 40 57 22 12 49 13 72 3 38-16 75-37 108-62 20-15 32-38 33-64 0-24-11-48-30-63-16-14-18-37-5-55 14-20 27-42 37-65 9-19 31-29 50-22 23 9 49 6 70-6 22-13 36-35 39-60 3-21 4-42 4-63s-1-42-4-63c-3-25-17-47-39-60-21-12-47-15-70-6l0 0c-19 7-42-2-50-22-11-23-23-45-38-65-12-18-10-41 6-54 19-16 30-40 29-64 0-26-12-49-32-64-33-25-70-46-108-62-10-5-21-7-32-7z m-120 142c40 0 74-28 81-68 2-12 9-22 19-27 11-6 24-7 36-2 35 15 68 34 99 57 10 8 16 19 16 31 0 12-5 24-14 31-34 28-39 75-13 111 13 18 24 38 33 58 17 39 62 59 102 44l0 0c12-4 24-3 35 3 10 7 17 17 19 30 2 19 3 38 3 57s-1 38-3 57c-2 13-9 24-19 30-11 6-23 7-34 3-40-15-86 5-103 44-9 20-20 40-33 58-26 36-21 83 13 111 9 7 14 19 14 31 0 12-6 23-16 31-31 23-64 42-99 57-12 5-25 4-36-2-10-5-17-16-19-27-7-43-46-72-90-67-22 2-44 2-66 0-44-5-83 24-90 67-2 11-9 22-19 27-11 6-24 7-36 2-35-15-68-34-99-57-10-8-15-19-16-31 0-12 5-24 14-31 34-28 39-75 13-111-12-18-24-38-33-58-17-39-62-59-102-44-12 4-24 3-34-3-11-6-18-17-20-30-2-19-3-38-3-57s1-38 3-57c2-13 9-23 20-30 10-6 22-7 33-3 41 15 86-4 103-44 9-20 21-40 33-57 26-36 21-84-13-112-9-7-14-18-14-30 1-13 6-24 16-32 31-23 64-42 99-57 12-5 25-4 36 2 10 6 17 16 19 27 7 43 46 72 90 67 22-2 44-2 66 0 3 0 6 1 9 1z m-42 117c-115 0-208 93-208 208s93 208 208 208 208-93 208-208-93-208-208-208z m0 375c-92 0-167-75-167-167s75-167 167-167 167 75 167 167-75 167-167 167z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="headphones" unicode="" d="M1036 189v143c0 275-232 518-500 518s-500-243-500-518v-143a175 175 0 0 1-36-107 247 247 0 0 1 232-232 55 55 0 0 1 54 54v321a55 55 0 0 1-54 54 256 256 0 0 1-161-54v107a503 503 0 0 0 179 375v-89a20 20 0 0 1 11-18 16 16 0 0 1 18 4 334 334 0 0 0 253 100 329 329 0 0 0 254-100 19 19 0 0 1 14-8h7a20 20 0 0 1 11 18v93a491 491 0 0 0 178-375v-107a256 256 0 0 1-160 54 55 55 0 0 1-54-54v-321a55 55 0 0 1 54-54 247 247 0 0 1 232 232 154 154 0 0 1-32 107z m-786-285a18 18 0 0 0-36 0v321a18 18 0 0 0 36 0v-321z m-71 335v-343a210 210 0 0 0-143 186c0 86 68 139 143 157z m607 486v-68a390 390 0 0 1-250 82 390 390 0 0 1-250-82v75a454 454 0 0 0 250 82 445 445 0 0 0 250-82v-7z m35-500a18 18 0 0 0 36 0v-321a18 18 0 0 0-36 0v321z m72-329v343c78-18 143-68 143-157a214 214 0 0 0-143-186z" horiz-adv-x="1069" />
|
||||
|
||||
<glyph glyph-name="testimonial" unicode="" d="M155-150a13 13 0 0 0-10 3 17 17 0 0 0-7 21l93 252h-83a149 149 0 0 0-148 148v428a149 149 0 0 0 148 148h707a149 149 0 0 0 148-148v-431a149 149 0 0 0-148-149h-348l-341-272h-11z m-7 966a115 115 0 0 1-113-114v-431a115 115 0 0 1 113-114h111a18 18 0 0 0 13-7 26 26 0 0 0 4-17l-83-218 297 238a13 13 0 0 0 10 4h355a115 115 0 0 1 114 114v434a115 115 0 0 1-114 114l-707-3h0z" horiz-adv-x="1003" />
|
||||
|
||||
<glyph glyph-name="counter-circle" unicode="" d="M321 488c-8 0-13 0-17-5l-62-91c-4-9-4-17 4-21 8-4 17-4 21 4l33 50v-196c0-8 8-16 17-16 8 0 16 8 16 16v242c0 8-4 12-12 17z m150 0c-42 0-75-34-75-75 0-9 8-17 17-17s16 8 16 17c0 25 21 45 46 45s46-20 46-45v-9c0-8-4-21-8-29l-109-137c-4-5-4-13 0-17 4-4 9-8 13-8h121c8 0 16 8 16 16s-8 17-16 17h-92l87 112c13 13 17 30 17 46v9c-4 41-37 75-79 75z m287-75c0 41-33 75-75 75s-75-34-75-75c0-9 9-17 17-17s17 8 17 17c0 25 21 45 46 45 25 0 45-20 45-45s-20-46-45-46c-9 0-17-9-17-17s8-17 17-17c25 0 45-20 45-45s-20-46-45-46c-25 0-46 21-46 46 0 8-9 16-17 16s-17-8-17-16c0-42 34-75 75-75s75 33 75 75c0 25-12 45-29 62 17 13 29 38 29 63z m-258 416c263 0 479-216 479-479s-216-479-479-479-479 217-479 479c0 92 25 183 79 263 8 8 21 12 29 4 9-4 13-17 4-29-45-71-70-150-70-238 0-242 195-438 437-438s438 196 438 438-196 438-438 438c-12 0-21 8-21 20s9 21 21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="person" unicode="" d="M500 142c-103 0-194 83-232 208-34 2-60 46-60 104 0 17 3 33 7 47-5 21-7 40-7 57 0 161 131 292 292 292s292-131 292-292c0-17-2-36-7-57 5-14 7-30 7-47 0-58-26-102-60-104-38-125-129-208-232-208z m-217 253c3 0 5 0 7-1 7-3 12-7 13-14 30-118 109-197 197-197s168 79 197 197c1 7 6 12 12 14 6 3 13 2 19-1 7-2 22 21 22 61 0 14-2 28-6 40-1 3-1 7 0 11 4 20 6 37 6 53 0 138-112 250-250 250s-250-112-250-250c0-16 2-33 7-53 0-4 0-8-1-11-4-12-6-26-6-40 0-40 16-62 21-62 3 2 8 3 12 3z m425 80c-8 0-15 5-19 12 0 2-16 37-21 72-87 6-178 48-222 93-4-7-9-13-14-18-34-34-87-34-114-34-6-14-9-59-5-103 0-6-2-12-7-16-5-5-11-7-17-6-1 0-29 5-53 5-11 0-21 9-21 20s10 21 21 21c12 0 24-1 34-1-2 37 0 91 19 111 8 8 18 11 29 11 25 0 64 1 84 21 10 10 15 23 15 41 0 12 9 21 21 21s20-9 20-21c3-21 107-104 230-104 11 0 20-9 20-21 0-20 8-46 14-61l40 3c12 1 22-7 23-19 1-11-8-21-19-22l-56-5c0 0-1 0-2 0z m-270-42h-42c-12 0-21 10-21 21s9 21 21 21h42c11 0 20-9 20-21s-9-21-20-21z m166 0h-41c-12 0-21 10-21 21s9 21 21 21h41c12 0 21-9 21-21s-9-21-21-21z m375-583h-958c-7 0-13 3-17 8-4 5-5 12-3 18l32 129c7 30 27 55 55 68l215 108c5 3 11 3 17 1 5-2 9-6 12-11l107-251 16 32c-14 19-38 56-38 86 0 38 32 62 83 62s83-24 83-62c0-30-24-67-38-86l16-32 107 251c3 5 7 9 12 11 6 2 12 2 17-1l216-108c27-13 47-38 54-68l32-129c2-6 1-13-3-18-4-5-10-8-17-8z m-385 42h359l-26 103c-5 18-17 33-33 41l-196 98-104-242z m-123 0h58l-27 53c-3 7-2 16 3 22 15 19 37 54 37 71 0 18-29 20-42 20s-42-2-42-20c0-17 23-52 38-71 5-6 6-15 2-22l-27-53z m-423 0h358l-104 242-196-98c-16-8-28-23-32-41l-26-103z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="chevron-right" unicode="" d="M696 317c12 12 17 29 17 46 0 16-5 33-17 41l-296 300c-12 13-25 21-46 21-16 0-29-4-41-17-13-12-21-29-21-45 0-17 4-34 16-46l255-259-259-279c-12-12-16-29-16-46 0-16 8-33 20-46 13-8 30-12 46-12 17 0 34 8 46 21l296 321z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="chevron-left" unicode="" d="M646 725c-17 0-33-8-42-17l-296-300c-12-12-16-29-16-45 0-17 4-34 16-46l296-321c13-13 25-21 42-21 17 0 33 4 46 17 12 12 21 29 21 46 0 16-5 33-21 45l-254 280 254 262c8 8 16 21 16 38 0 16-4 33-16 45-17 13-29 17-46 17z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="close" unicode="" d="M742 683l-242-241-242 241c-12 13-25 17-41 17-21 0-38-8-50-17-13-12-17-29-17-45 0-17 4-30 21-42l237-246-241-242c-29-29-29-58 0-87 29-29 58-29 87 0l242 242 242-242c12-13 29-17 45-17 17 0 34 4 46 17 13 12 17 25 17 46 0 16-4 33-17 46l-241 237 245 242c30 29 30 58 0 87-29 34-58 34-91 4z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="file-download" unicode="" d="M792 475h-167v250h-250v-250h-167l292-292 292 292z m-584-375v-83h584v83h-584z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="save" unicode="" d="M772 850a247 247 0 0 0 156-98 315 315 0 0 0 60-108 217 217 0 0 0 12-67v-636a93 93 0 0 0-94-91h-813a93 93 0 0 0-93 91v815a93 93 0 0 0 93 94h679z m-15-59h-516a52 52 0 0 1-52-52v-281a52 52 0 0 1 52-53h517a52 52 0 0 1 53 53v281a52 52 0 0 1-53 52z m-60 0h-143v-231h0a22 22 0 0 1 23-22h99a22 22 0 0 1 23 22z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="zoom-in" unicode="" d="M646 267h-33l-13 12c42 46 67 109 67 175 0 150-121 271-271 271s-271-121-271-271c0-150 121-271 271-271 67 0 129 25 175 67l12-12v-34l209-208 62 62-208 209z m-250 0c-104 0-188 83-188 187s84 188 188 188 187-84 187-188-83-187-187-187z m21 208h83v-42h-83v-83h-42v83h-83v42h83v83h42v-83z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="shortcode" unicode="" d="M917 646v-583c0-13-9-21-21-21h-83c-13 0-21 8-21 21 0 12 8 20 21 20h62v542h-62c-13 0-21 8-21 21 0 12 8 21 21 21h83c12 0 21-9 21-21z m-729-21c12 0 20 4 20 21 0 12-8 21-20 21h-84c-12 0-21-9-21-21v-583c0-13 9-21 21-21h84c12 0 20 8 20 21 0 12-8 20-20 20h-63v542h63z m125-383c-25 0-42-17-42-42s17-42 42-42 41 17 41 42-16 42-41 42z m187 0c-25 0-42-17-42-42s17-42 42-42c25 0 42 17 42 42s-17 42-42 42z m188 0c-25 0-42-17-42-42s17-42 42-42 41 17 41 42-16 42-41 42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="nerd" unicode="" d="M958 350c0 253-205 458-458 458s-458-205-458-458 205-458 458-458 458 205 458 458z m42 0c0-276-224-500-500-500s-500 224-500 500 224 500 500 500 500-224 500-500z m-768-135c53-93 146-136 268-136s215 43 268 136c6 10 2 23-8 28-10 6-22 2-28-8-45-78-123-114-232-114s-187 36-232 114c-6 10-18 14-28 8-10-5-14-18-8-28z m466 447c-95 0-172-74-176-168-6 1-14 2-22 2-8 0-16-1-22-2-4 94-81 168-176 168-97 0-176-79-176-177s79-176 176-176c71 0 133 43 161 104 9 2 16 10 16 20 0 21 1 21 21 21 20 0 21 0 21-21 0-10 7-18 17-20 27-61 89-104 160-104 97 0 176 79 176 176s-79 177-176 177z m-396-313c-75 0-136 61-136 136 0 76 61 137 136 137 76 0 136-62 136-137 0-75-60-136-136-136z m396 0c-75 0-136 61-136 136 0 76 61 137 136 137 75 0 136-62 136-137 0-75-61-136-136-136z m23 134c0 12-9 21-21 21s-21-9-21-21 9-20 21-20 21 9 21 20z m42 0c0-34-28-62-63-62-35 0-62 28-62 62s27 63 62 63c35 0 63-28 63-63z m-438 0c0 12-9 21-21 21s-21-9-21-21 10-20 21-20 21 9 21 20z m42 0c0-34-28-62-63-62s-62 28-62 62 28 63 62 63 63-28 63-63z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="device-desktop" unicode="" d="M558 21c26 0 46-21 46-46v-24c0-7-6-14-14-14h-180c-8 0-14 7-14 14v24c0 25 20 46 46 46h116z m306 741c52 0 94-43 94-95v-509c0-53-42-95-94-95h-728c-52 0-94 42-94 95v509c0 52 42 95 94 95h728z m0-84h-728c-5 0-10-3-11-8l0-3v-425h750v425c0 6-4 10-9 11l-2 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="device-tablet" unicode="" d="M788 808c48 0 87-39 87-87v-742c0-48-39-87-87-87h-575c-49 0-88 39-88 87v742c0 48 39 87 88 87h575z m0-83h-575c-3 0-4-2-5-4l0 0v-742c0-2 2-4 4-4l1 0h575c2 0 3 2 4 4l0 0v742c0 2-2 4-4 4l0 0z m-205-646c23 0 42-19 42-41v-8c0-7-6-13-14-13h-222c-8 0-14 6-14 13v8c0 22 19 41 42 41h166z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="device-mobile" unicode="" d="M700 808c48 0 88-39 88-87v-742c0-48-40-87-88-87h-400c-48 0-87 39-87 87v742c0 48 39 87 87 87h400z m0-83h-400c-2 0-4-2-4-4l0 0v-742c0-2 2-4 4-4l0 0h400c2 0 4 2 4 4l0 0v742c0 2-1 4-4 4l0 0z m-164-646c23 0 42-19 42-41v-8c0-7-6-13-14-13h-118c-8 0-14 6-14 13v8c0 22 19 41 42 41h62z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="document-file" unicode="" d="M379 842c4 4 13 8 17 8h417c33 0 62-29 62-62v-876c0-33-29-62-62-62h-625c-34 0-63 29-63 62v667c0 4 4 13 8 17l246 246z m-4-63l-179-179h158c13 0 21 8 21 21v158z m438 29h-396v-187c0-33-29-63-63-63h-187v-646c0-12 8-20 21-20h625c12 0 20 8 20 20v876c0 12-8 20-20 20z m-542-729c-13 0-21 9-21 21s8 21 21 21h458c13 0 21-8 21-21s-8-21-21-21h-458z m0-125c-13 0-21 8-21 21s8 21 21 21h458c13 0 21-9 21-21s-8-21-21-21h-458z m0 375c-13 0-21 9-21 21s8 21 21 21h458c13 0 21-8 21-21s-8-21-21-21h-458z m0-125c-13 0-21 9-21 21s8 21 21 21h458c13 0 21-8 21-21s-8-21-21-21h-458z m242 375c-13 0-21 9-21 21s8 21 21 21h216c13 0 21-8 21-21s-8-21-21-21h-216z m-242-125c-13 0-21 9-21 21s8 21 21 21h458c13 0 21-8 21-21s-8-21-21-21h-458z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="folder-o" unicode="" d="M896-46h-792c-57 0-104 47-104 104v500c0 58 47 105 104 105h149c44 0 84-29 98-72l4-11c9-25 32-42 59-42h482c57 0 104-47 104-105v-375c0-57-47-104-104-104z m-792 667c-34 0-62-28-62-63v-500c0-34 28-62 62-62h792c34 0 62 28 62 62v375c0 35-28 63-62 63h-482c-45 0-84 29-99 71l-3 11c-9 26-33 43-59 43h-149z m834-125c-12 0-21 9-21 21v125c0 34-28 62-63 62h-708c-35 0-63-28-63-62 0-12-9-21-20-21s-21 9-21 21c0 57 46 104 104 104h708c58 0 104-47 104-104v-125c0-12-9-21-20-21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="hypster" unicode="" d="M750 267c-129 0-177 68-194 109-19 48-17 105 3 151-46-12-71-12-118 0 21-46 23-103 3-151-17-41-65-109-194-109-164 0-208 91-208 146 0 7 0 15 1 25 2 23 4 59-7 72-3 3-7 6-16 7-10 0-18 8-20 17-1 10 4 19 13 23 5 2 113 43 237 43 78 0 142-17 188-29 25-7 48-13 62-13s37 6 62 13c47 12 110 29 188 29 124 0 232-41 237-43 9-4 14-13 13-23-2-9-10-17-20-17-9-1-13-4-15-7-12-13-10-49-8-72 1-10 1-18 1-25 0-55-43-146-208-146z m-133 275c-28-30-45-95-22-150 16-38 55-84 155-84 162 0 167 94 167 105 0 6-1 13-1 22-3 31-6 70 13 97-42 12-108 26-179 26-51 0-95-7-133-16z m-545-10c18-27 15-66 13-97-1-9-2-16-2-22 0-11 5-105 167-105 100 0 139 46 155 84 23 55 6 120-22 150-38 9-82 16-133 16-71 0-137-14-178-26z m491-119c-12 0-21 9-21 20 0 11-13 21-42 21s-42-10-42-21c0-11-9-20-20-20s-21 9-21 20c0 32 26 63 83 63s83-31 83-63c0-11-9-20-20-20z m-63-563c-276 0-500 224-500 500s224 500 500 500 500-224 500-500-224-500-500-500z m0 958c-253 0-458-205-458-458s205-458 458-458 458 205 458 458-205 458-458 458z m-229-416c-35 0-63 28-63 62s28 63 63 63 62-28 62-63-28-62-62-62z m0 83c-12 0-21-9-21-21s9-21 21-21 21 10 21 21-10 21-21 21z m458-83c-34 0-62 28-62 62s28 63 62 63 63-28 63-63-28-62-63-62z m0 83c-11 0-21-9-21-21s10-21 21-21 21 10 21 21-9 21-21 21z m-87-417c-40 0-163 0-163 84s62 83 92 83c14 0 31-5 54-12 49-15 122-37 228-30 10 1 18-5 21-14s0-18-8-24c-40-27-153-87-224-87z m-71 125c-38 0-50-3-50-41 0-35 66-42 121-42 34 0 86 19 133 42-72 4-126 20-162 31-18 6-34 10-42 10z m-213-125c-71 0-184 60-224 87-8 6-11 15-8 24s12 15 21 14c106-7 179 15 228 30 23 7 40 12 54 12 30 0 92 0 92-83s-122-84-163-84z m-133 84c47-23 99-42 133-42 56 0 121 7 121 42 0 38-12 41-50 41-8 0-24-4-42-10-36-11-90-27-162-31z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="h-align-left" unicode="" d="M83 821c30 0 55-24 55-54v-834c0-30-25-54-55-54s-54 24-54 54v834c0 30 24 54 54 54z m264-333c17 17 46 5 46-20l0-85 503 0 6 0c31-3 56-26 56-54l0-5c-3-28-30-49-62-49l-503 0 0-85c0-24-29-37-46-19l-137 139c-11 10-11 28 0 39l137 139z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="h-align-right" unicode="" d="M917 821c30 0 54-24 54-54v-834c0-30-24-54-54-54s-54 24-54 54v834c0 30 24 54 54 54z m-264-333l137-139c11-11 11-29 0-39l-137-139c-17-18-46-5-46 19l0 85-503 0c-32 0-59 22-62 49l0 5c0 29 24 51 56 54l6 0 503 0 0 85c0 25 29 37 46 20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="h-align-center" unicode="" d="M500 821c30 0 54-24 54-54v-834c0-30-24-54-54-54s-54 24-54 54v834c0 30 24 54 54 54z m310-332l0-85 86 0c32 0 59-21 62-49l0-5c0-28-24-51-56-54l-6 0-86 0 0-85c0-24-30-37-47-19l-137 138c-11 11-11 29 0 40l137 138c17 18 47 5 47-19z m-575 22l3-3 137-138c10-10 11-25 3-36l-3-4-137-138c-16-17-43-7-47 15l0 4 0 85-86 0-6 0c-29 3-53 23-56 49l0 5 0 6c3 26 27 46 56 49l6 0 86 0 0 85c0 22 27 35 44 21l0 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="h-align-stretch" unicode="" d="M500 821c30 0 54-24 54-54v-834c0-30-24-54-54-54s-54 24-54 54v834c0 30 24 54 54 54z m310-310l3-3 137-138c10-10 11-25 3-36l-3-4-137-138c-16-17-43-7-47 15l0 4 0 85-86 0-6 0c-29 3-53 23-56 49l0 5 0 6c3 26 27 46 56 49l6 0 86 0 0 85c0 22 27 35 44 21z m-575-22l0-85 86 0c32 0 59-21 62-49l0-5c0-28-24-51-56-54l-6 0-86 0 0-85c0-24-30-37-47-19l-137 138c-11 11-11 29 0 40l137 138c17 18 47 5 47-19z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="v-align-top" unicode="" d="M480 641c11 11 29 11 40 0l138-138c18-17 5-46-19-46l-85 0 0-503 0-6c-3-31-26-56-54-56l-5 0c-28 3-49 30-49 62l0 503-85 0c-24 0-37 29-19 46l138 138z m437 180c30 0 54-24 54-54s-24-54-54-54h-834c-30 0-54 24-54 54s24 54 54 54h834z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="v-align-bottom" unicode="" d="M917-13c30 0 54-24 54-54s-24-54-54-54h-834c-30 0-54 24-54 54s24 54 54 54h834z m-422 821l5 0c28 0 51-24 54-56l0-6 0-503 85 0c24 0 37-29 19-46l-138-137c-11-11-29-11-40 0l-138 137c-18 17-5 46 19 46l85 0 0 503c0 32 22 59 49 62l5 0-5 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="v-align-middle" unicode="" d="M516 228l4-3 138-137c17-16 7-43-15-46l-4-1-85 0 0-86 0-5c-3-30-23-54-49-57l-5 0-6 0c-26 3-46 27-49 57l0 5 0 86-85 0c-23 0-35 27-22 44l3 3 139 137c10 10 25 11 36 3l0 0z m401 176c30 0 54-24 54-54s-24-54-54-54h-834c-30 0-54 24-54 54s24 54 54 54h834z m-417 404c28 0 51-24 54-56l0-6 0-86 85 0c24 0 37-30 19-47l-138-137c-11-11-29-11-40 0l-138 137c-18 17-5 47 19 47l85 0 0 86c0 30 19 56 44 61l5 1 5 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="v-align-stretch" unicode="" d="M500 233c28 0 51-24 54-56l0-6 0-86 85 0c24 0 37-30 19-47l-138-137c-11-11-29-11-40 0l-138 137c-18 17-5 47 19 47l85 0 0 86c0 30 19 56 44 61l5 1 5 0z m417 171c30 0 54-24 54-54s-24-54-54-54h-834c-30 0-54 24-54 54s24 54 54 54h834z m-401 399l4-3 138-137c17-16 7-43-15-47l-4 0-85 0 0-86 0-6c-3-29-23-53-49-56l-5 0-6 0c-26 3-46 27-49 56l0 6 0 86-85 0c-23 0-35 26-22 44l3 3 139 137c10 10 25 11 36 3l0 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="pro-icon" unicode="" d="M0 710c0 77 63 140 140 140l1434 0c78 0 140-63 140-140l0-720c0-77-63-140-140-140l-1434 0c-77 0-140 63-140 140l0 720z m262-576l65 0 0 170 117 0c88 0 138 62 138 135 0 74-49 136-138 136l-182 0 0-441z m254 305c0-46-34-77-80-77l-109 0 0 155 109 0c46 0 80-31 80-78z m381-305l75 0-110 177c55 7 107 49 107 128 0 82-56 136-138 136l-182 0 0-441 65 0 0 170 80 0 103-170z m6 305c0-46-34-77-81-77l-108 0 0 155 108 0c47 0 81-31 81-78z m128-85c0-131 88-228 217-228 129 0 218 97 218 228 0 131-89 228-218 228-129 0-217-97-217-228z m368 0c0-96-60-169-151-169-92 0-151 73-151 169 0 97 59 169 151 169 91 0 151-72 151-169z" horiz-adv-x="1714" />
|
||||
|
||||
<glyph glyph-name="mail" unicode="" d="M896 17h-792c-57 0-104 46-104 104v458c0 58 47 104 104 104h792c57 0 104-46 104-104v-458c0-58-47-104-104-104z m-792 625c-34 0-62-28-62-63v-458c0-35 28-63 62-63h792c34 0 62 28 62 63v458c0 35-28 63-62 63h-792z m396-334c-23 0-46 7-66 20l-342 234c-9 7-11 19-5 29s19 12 29 5l342-233c25-18 59-18 84 0l342 233c10 7 23 4 29-5 7-10 4-22-5-29l-342-234c-20-13-43-20-66-20z m-396-208c-6 0-12 3-16 8-7 8-6 22 3 29l250 208c9 8 22 6 29-2 8-9 6-22-2-30l-250-208c-4-3-9-5-14-5z m792 0c-5 0-10 2-13 5l-250 208c-9 8-10 21-3 30 7 8 20 10 29 2l250-208c9-7 10-21 3-29-4-5-10-8-16-8z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="lock-user" unicode="" d="M459 767c4 0 8 1 12 4 46 33 96 37 139 37 58 0 100-18 123-53 27-42 15-64 2-78l-20-21c-4-3-6-8-7-13l-5-105c0-5 2-11 6-15s9-6 15-6c6 0 11-3 15-8 4-4 6-10 5-16l-10-83c-1-10-10-18-23-18-10 0-19-8-20-18-4-23-21-54-22-55-5-10-2-22 8-28 10-6 23-2 29 8 0 1 14 27 22 53 25 6 44 27 47 53l11 83c2 18-4 35-15 49-7 8-16 14-25 17l4 79 15 15c24 25 43 68 2 130-31 48-84 72-157 72-29 0-96 0-158-42-178-3-202-86-202-166 0-19 5-61 8-87-11-3-21-9-28-18-12-13-18-31-16-49l11-83c3-27 24-49 50-54 9-57 36-113 77-155l-15-58-160-40c-104-26-177-120-177-227 0-6 2-11 6-15 4-4 9-6 15-6l542 1c11 0 20 9 20 21 0 11-9 20-20 20 0 0 0 0 0 0l-520 0c8 79 66 146 145 166l171 43c8 1 14 7 15 15l21 81c2 8-1 16-6 21-42 39-70 97-75 154 0 11-10 20-20 20h-7c-11 0-20 7-21 18l-10 83c-1 6 1 12 5 17 4 4 9 7 15 7h5c6 0 11 2 15 7 4 4 6 10 5 16-2 21-9 81-9 102 0 65 13 123 167 125z m520-624h-21v20c0 81-65 146-145 146s-146-65-146-146v-20h-21c-12 0-21-10-21-21v-250c0-12 9-21 21-21h333c12 0 21 9 21 21v250c0 11-9 21-21 21z m-271 20c0 58 47 105 105 105s104-47 104-105v-20h-209v20z m250-271h-291v209h291v-209z m-166 90v-27c0-12 9-21 21-21s20 9 20 21v27c13 7 21 20 21 36 0 23-18 41-41 41s-42-18-42-41c0-16 8-29 21-36z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="testimonial-carousel" unicode="" d="M25 450c-8-12-8-21 0-33l83-84c13-8 21-8 34 0 8 9 8 21 0 34l-71 66 71 67c8 8 8 21 0 33-9 9-21 9-34 0l-83-83m950-33c8 8 8 21 0 33l-83 83c-9 9-21 9-34 0-8-12-8-20 0-33l67-67-67-66c-8-13-8-21 0-34 13-8 21-8 34 0l83 84m-229 179c-17 17-38 25-63 25h-366c-25 0-46-8-63-25-16-21-25-42-25-63v-225c0-25 9-45 29-66 17-17 38-25 63-25h33l-54-104c-4-9-4-17 4-25 9-9 17-9 25 0l175 129h175c25 0 46 8 63 25 16 16 25 41 25 66v225c4 21-4 42-21 63m-29-29c8-9 12-21 12-34v-225c0-12-4-25-12-33-9-8-21-17-34-17h-183l-12-4-109-83 25 54c4 8 4 13 0 21s-8 8-16 8h-71c-13 0-25 4-34 17-8 8-16 21-16 33v229c0 13 4 25 16 34 9 8 21 12 34 12h366c13 0 21-4 34-12z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="media-carousel" unicode="" d="M500 121c-12 0-21-8-21-21 0-12 9-21 21-21 13 0 21 9 21 21 0 13-8 21-21 21m83 0c-12 0-20-8-20-21 0-12 8-21 20-21 13 0 21 9 21 21 0 13-8 21-21 21m-187-21c0-12 8-21 21-21 12 0 21 9 21 21 0 13-9 21-21 21-13 0-21-8-21-21m-279 475l-84-42c-12-4-16-16-8-25 4-12 17-16 25-8l54 25v-262l-54 25c-12 8-21 4-25-9-8-12-4-21 8-25l84-41 8-9 8 4c9 5 13 9 9 17v333c0 9-4 13-9 17-4 4-12 4-16 0m696 25c0 13-9 21-21 21h-584c-12 0-20-8-20-21v-417c0-12 8-20 20-20h584c12 0 21 8 21 20v417m-42-396h-542v375h542v-375m-308 279l-5 0c-8 0-12-4-12-8v-171l0-4c4-4 12-8 17-4l133 83 4 4c4 5 0 13-4 17l-133 83m433 38l50-25c12-8 21-4 25 8 8 13 4 21-8 25l-84 42c-8 4-12 4-21 0-4-4-8-8-8-17v-333c0-8 4-17 8-17l13-4 8 4 84 42c12 4 16 12 8 25-4 12-17 17-25 8l-50-25v267z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="section" unicode="" d="M58 783c-16-16-20-37-20-62v-742c0-25 8-46 25-62s37-25 62-25h750c25 0 46 8 63 25 16 16 25 37 25 62v742c0 25-9 46-25 62-21 17-42 25-63 25h-750c-29 5-50-8-67-25m67-154h733v-275h-733v275m738-366v-276h-738v276h738z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="column" unicode="" d="M958 721c0 25-8 46-25 62-16 17-37 25-62 25h-746c-21 0-42-8-58-25-17-16-25-37-25-62v-746c0-25 8-42 25-58 16-17 37-25 58-25h746c25 0 46 8 62 25 17 16 25 37 25 58v746m-825-96h321v-642h-321v642m413-642v642h317v-642h-317z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="edit" unicode="" d="M725 526l-196 197 67 67c55 53 109 83 155 38l79-80c53-52 15-101-38-155z m-256 137l196-196-459-459h-193l0 196z m-434-813a35 35 0 0 0 0 70h792a35 35 0 0 0 0-70z" horiz-adv-x="862" />
|
||||
|
||||
<glyph glyph-name="clone" unicode="" d="M288 563c-17-13-25-30-25-55v-558c0-21 8-38 20-54 13-17 34-25 55-25h558c21 0 37 8 54 25s21 33 21 54v558c0 21-8 42-21 55-17 16-33 25-54 25h-554c-25 0-42-9-54-25m-163 145c0 13 4 17 17 17h504c17 0 21-4 21-17v-37c0-13 4-25 16-33 9-9 21-13 34-13s25 4 33 13c8 8 17 20 17 33v37c0 34-13 59-34 84-25 21-50 33-83 33h-508c-34 0-59-12-84-33-20-25-33-54-33-84v-504c0-33 13-58 33-83 25-21 50-33 84-33h37c13 0 25 4 34 16 8 9 16 21 16 34 0 12-4 25-16 33-9 8-21 12-34 12h-37c-13 0-17 5-17 21v504z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="trash" unicode="" d="M212 782h-191a21 21 0 0 1-21-21h0v-52a21 21 0 0 1 21-20h763a21 21 0 0 1 21 21v51a21 21 0 0 1-21 21h-191l-13 52a21 21 0 0 1-21 16h-314a21 21 0 0 1-21-16z m-148-178h678a21 21 0 0 0 21-21v-606h0a127 127 0 0 0-127-127h-466a127 127 0 0 0-128 127v607a21 21 0 0 0 22 20z" horiz-adv-x="805" />
|
||||
|
||||
<glyph glyph-name="play" unicode="" d="M838 688c-92 91-205 137-338 137-129 0-242-46-337-137-92-92-138-205-138-338 0-133 46-246 138-337 91-92 204-142 337-142 133 0 246 46 338 142 91 91 137 204 137 337 0 133-46 246-137 338m-30-30c84-87 125-187 125-308 0-121-41-225-125-308-83-84-187-130-308-130-121 0-221 42-304 130-83 83-129 187-129 308 0 121 41 221 129 308 83 84 187 130 304 130 121 0 221-46 308-130m-370-200v-250l204 125-204 125z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="angle-right" unicode="" d="M417 600l-59-58 192-192-192-192 59-58 250 250-250 250z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="angle-left" unicode="" d="M642 541l-59 59-250-250 250-250 59 59-191 191z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="animated-headline" unicode="" d="M246 613c-8 16-38 16-42 0l-137-367c-4-13 0-25 12-29 13-4 25 0 29 12l46 121c0 0 0 0 0 0h138c0 0 0 0 0 0l46-121c4-8 12-16 20-16 5 0 5 0 9 0 12 4 16 16 12 29l-133 371z m-75-213l54 142 54-142h-108z m646 92c37 0 66-29 66-67 0-12 9-21 21-21 13 0 21 9 21 21 0 63-50 113-112 113-63 0-113-50-113-113v-92c0-62 50-112 113-112 62 0 112 50 112 112 0 13-8 21-21 21-12 0-21-8-21-21 0-37-29-66-66-66s-67 29-67 66v92c-4 33 29 67 67 67z m-275 46c-25 0-50-9-67-25v91c0 13-8 21-21 21-12 0-21-8-21-21v-183-21-46-21-91c0-13 9-21 21-21 13 0 21 8 21 21v0c21-13 42-25 67-25 62 0 112 50 112 112v92c4 67-50 117-112 117z m71-205c0-37-30-66-67-66s-67 29-67 66v21 46 21c0 37 29 67 67 67s67-30 67-67v-88z m-550-250c366 55 633 71 808 46 54-8 75-25 42-46" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="menu-toggle" unicode="" d="M250 475h500c13 0 21 8 21 21s-8 21-21 21h-500c-12 0-21-9-21-21s9-21 21-21z m0-167h500c13 0 21 9 21 21s-8 21-21 21h-500c-12 0-21-8-21-21s9-21 21-21z m0-166h500c13 0 21 8 21 21s-8 20-21 20h-500c-12 0-21-8-21-20s9-21 21-21z m667-142v700c0 38-25 67-54 67h-725c-30 0-55-29-55-67v-700c0-38 25-67 55-67h720c34 0 59 29 59 67z m41 0c0-58-41-108-95-108h-725c-55 0-96 50-96 108v700c0 58 41 108 96 108h720c59 0 100-50 100-108v-700z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="fb-embed" unicode="" d="M696 150c-8 8-21 8-29 0l-79-83c-9-9-9-21 0-29l79-84c4-4 8-4 12-4 4 0 9 0 13 4 8 8 8 21 0 29l-63 67 63 67c12 12 12 25 4 33z m192 0c8 8 20 8 29 0l79-83c8-9 8-21 0-29l-79-84c-4-4-9-4-13-4-4 0-8 0-12 4-9 8-9 21 0 29l62 67-62 67c-13 12-13 25-4 33z m-71 71l-67-275c-4-13 4-21 17-25 12-4 21 4 25 16l66 280c5 12-4 21-16 25s-25-9-25-21z m-338-234h-391c-25 0-50 26-50 59v633c0 34 20 59 50 59h654c25 0 50-25 50-59v-337c0-13 8-21 21-21s20 8 20 21v337c0 54-37 100-91 100h-654c-50 0-88-46-88-100v-633c0-54 38-100 92-100h387c13 0 21 8 21 21s-8 20-21 20z m42 584c-96 0-146-50-146-150v-246c0-12 8-21 21-21s21 9 21 21v246c0 75 33 108 104 108 12 0 21 9 21 21s-9 21-21 21z m-221-208h217c12 0 21 8 21 20s-9 21-21 21h-217c-12 0-21-8-21-21s9-20 21-20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="fb-feed" unicode="" d="M63 371c-13 0-21 8-21 21v416c0 13 8 21 21 21h875c12 0 20-8 20-21v-416c0-13-8-21-20-21h-875z m854 42v375h-834v-375h834z m-854-167h875c12 0 20 8 20 21s-8 21-20 21h-875c-13 0-21-9-21-21s8-21 21-21z m0-125h583c12 0 21 8 21 21s-9 21-21 21h-583c-13 0-21-9-21-21s8-21 21-21z m0-125h583c12 0 21 8 21 21s-9 21-21 21h-583c-13 0-21-9-21-21s8-21 21-21z m0-125h583c12 0 21 8 21 21s-9 20-21 20h-583c-13 0-21-8-21-20s8-21 21-21z m833 292c-67 0-104-38-104-105v-166c0-13 8-21 21-21s20 8 20 21v166c0 46 17 63 63 63 12 0 21 8 21 21s-9 21-21 21z m-146-167h146c12 0 21 8 21 21s-9 21-21 21h-146c-12 0-21-9-21-21s9-21 21-21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="twitter-embed" unicode="" d="M696 150c-8 8-21 8-29 0l-79-83c-9-9-9-21 0-29l79-84c4-4 8-4 12-4 4 0 9 0 13 4 8 8 8 21 0 29l-63 67 63 67c12 12 12 25 4 33z m192 0c8 8 20 8 29 0l79-83c8-9 8-21 0-29l-79-84c-4-4-9-4-13-4-4 0-8 0-12 4-9 8-9 21 0 29l62 67-62 67c-13 12-13 25-4 33z m-71 71l-67-275c-4-13 4-21 17-25 12-4 21 4 25 16l66 280c5 12-4 21-16 25s-25-9-25-21z m-546 192c12-9 8-30-4-34-4 0-13 0-21 0 12-21 29-37 46-41 16 0 21-21 12-34-4-4-12-8-21-12 13-13 30-17 50-21 17 0 25-21 13-33-17-17-38-30-63-38 146-42 284 88 267 233 0 9 4 13 8 17-16 13-20 25-16 33-4 0-9 5-13 5-25 25-54 29-83 8-21-13-29-50-25-71 4-12-8-25-21-21-62 4-117 29-154 71-4-25 8-54 25-62z m-50 112c4 8 21 13 29 0 33-46 75-75 133-83 0 33 17 71 46 87 42 25 84 25 121-8 13 4 29 12 33 17 13 12 34-5 30-21 0-4-5-9-5-13 13 0 21-16 13-29-8-12-21-29-38-42 13-191-191-354-387-233-17 13-8 38 12 33 25-4 50 0 71 13-25 12-46 33-54 58-4 9 0 17 8 21-20 21-33 46-33 79 0 9 4 17 13 17-9 33-9 71 8 104z m258-538h-391c-25 0-50 26-50 59v633c0 34 20 59 50 59h654c25 0 50-25 50-59v-337c0-13 8-21 21-21s20 8 20 21v337c0 54-37 100-91 100h-654c-50 0-88-46-88-100v-633c0-54 38-100 92-100h387c13 0 21 8 21 21s-8 20-21 20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="twitter-feed" unicode="" d="M63 371c-13 0-21 8-21 21v416c0 13 8 21 21 21h875c12 0 20-8 20-21v-416c0-13-8-21-20-21h-875z m854 42v375h-834v-375h834z m-854-167h875c12 0 20 8 20 21s-8 21-20 21h-875c-13 0-21-9-21-21s8-21 21-21z m0-125h458c12 0 21 8 21 21s-9 21-21 21h-458c-13 0-21-9-21-21s8-21 21-21z m0-125h458c12 0 21 8 21 21s-9 21-21 21h-458c-13 0-21-9-21-21s8-21 21-21z m0-125h458c12 0 21 8 21 21s-9 20-21 20h-458c-13 0-21-8-21-20s8-21 21-21z m583 279c25-33 71-67 133-71-4 17 0 54 25 71 29 17 59 17 88-8 12 0 37 12 41 16-4-12-16-33-29-37 9 0 29 4 38 8-9-16-25-29-34-33 13-117-120-275-287-175 37-4 75 8 96 29-29 0-54 17-67 46 13-4 29-4 38 4-13 0-55 25-55 71 9-8 21-13 34-8-17 8-42 45-21 87l0 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="sync" unicode="" d="M500 141c49-1 94 15 136 49 59 48 82 126 61 229-4 23 13 44 36 47s40-14 47-36c33-110-8-237-92-305-57-46-120-68-188-67v-105c0-6-2-10-5-14-4-4-8-7-13-7s-9 3-13 7l-130 146c-4 4-5 9-5 14s1 11 5 15l130 146c4 4 8 6 13 6s9-2 13-6c3-5 5-10 5-15v-104z m0 417c-49 1-94-15-136-49-59-48-82-126-61-229 5-22-13-44-36-47s-40 14-47 36c-33 111 8 237 92 305 57 46 120 69 188 68v104c0 6 2 10 5 14s8 7 13 7 10-2 13-7l130-145c4-5 5-10 5-15s-1-10-5-15l-130-145c-3-5-8-7-13-7s-9 2-13 7-5 8-5 14v104z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="import-export" unicode="" d="M417 600v-345c0-17-19-30-42-30s-42 13-42 30v345h-104c-6 0-10 2-14 5-5 4-7 8-7 13 0 5 2 10 7 13l145 130c5 4 10 5 15 5s10-1 15-5l145-130c5-3 7-8 7-13 0-5-2-9-7-13-4-3-9-5-14-5h-104z m208-500v345c0 17 19 30 42 30s41-13 41-30v-345h105c5 0 10-2 14-5s6-8 6-13-2-9-6-13l-146-130c-4-4-9-5-14-5s-11 1-15 5l-146 130c-4 4-6 8-6 13s2 9 6 13 9 5 15 5h104z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="check-circle" unicode="" d="M496 804c-250 0-454-204-454-458s204-454 454-454 454 204 454 454-200 458-454 458m0-954c-271 0-496 225-496 496s225 500 496 500 496-225 496-496-221-500-496-500m-79 288l-217 216c-8 9-8 21 0 29 8 9 25 9 33 0l200-200 330 330c8 8 20 8 29 0 8-9 8-21 0-30l-346-345c-4-5-8-9-17-9s-8 4-12 9z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="library-save" unicode="" d="M331 267h338c21 0 39-18 39-40v-337c0-22-17-40-39-40h-338c-21 0-39 17-39 40v337c0 22 17 40 39 40z m2-42v-333h334v333h-334z m73-95c0 11 9 20 21 20s21-9 21-20v-143c0-12-9-21-21-21s-21 9-21 21v143z m91-21c-12 0-21 9-21 21 0 11 9 20 21 20h86c12 0 21-9 21-20 0-12-9-21-21-21h-86z m0-71c-12 0-21 9-21 20s9 21 21 21h86c12 0 21-9 21-21s-9-20-21-20h-86z m0-72c-12 0-21 9-21 21 0 12 9 21 21 21h86c12 0 21-9 21-21 0-12-9-21-21-21h-86z m-455 778c0 1 0 1 0 2 0 57 47 104 105 104h706c58 0 105-47 105-104v-129c26-20 42-52 42-87v-384c0-61-47-109-106-109h-120c-12 0-21 9-21 21s9 20 21 20h120c35 0 64 30 64 68v384c0 38-29 68-64 68h-501c-45 0-85 29-100 72l-3 3-2 6c-9 28-34 46-62 46h-120c-35 0-64-30-64-67v-512c0-38 29-68 64-68h120c12 0 21-9 21-20s-9-21-21-21h-120c-58 0-106 48-106 109v512c0 35 16 66 42 86z m44 21c7 1 14 2 20 2h120c44 0 84-29 100-72l2-3 4-7c8-27 33-46 61-46h501c8 0 16-1 23-2v109c0 34-29 62-64 62h-706c-29 0-53-18-61-43z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="folder-plus" unicode="" d="M215 672c-14 0-28-5-38-16-10-10-16-23-16-38v-419c0-15 6-28 16-39 10-10 24-15 38-15h267c12 0 22-10 22-23s-10-22-22-22h-267c-26 0-51 10-70 29-18 18-29 43-29 70v419c0 26 11 51 29 70 19 18 44 29 70 29h153c6 0 11-2 15-7l108-108h258c26 0 51-10 70-28 18-19 29-44 29-70v-134c0-12-10-22-22-22s-23 10-23 22v134c0 14-5 28-16 38-10 10-23 16-38 16h-267c-6 0-11 2-16 6l-107 108h-144z m534-413c12 0 22-10 22-22v-92h93c12 0 22-10 22-23s-10-22-22-22h-93v-92c0-13-10-23-22-23s-22 10-22 23v92h-92c-13 0-23 10-23 22s10 23 23 23h92v92c0 12 10 22 22 22z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="insert" unicode="" d="M375 433h-127c-11 0-20-3-28-10-8-8-12-16-12-26 0-10 4-19 12-26l273-259c8-8 17-11 28-11s19 4 27 11l274 259c8 7 11 16 11 26 0 10-3 18-11 26-8 7-17 10-28 10h-127v292c0 23-19 42-42 42h-208c-23 0-42-19-42-42l0 0v-292z m-122-500c-25 0-45 19-45 42s20 42 45 42h536c24 0 44-19 44-42s-20-42-44-42h-536z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="preview-medium" unicode="" d="M893 347c-52 81-117 141-195 181 21-36 31-74 31-115 0-63-22-118-67-163-45-44-99-67-162-67s-117 23-162 67c-45 45-67 100-67 163 0 41 10 79 31 115-78-40-143-100-195-181 46-70 102-125 171-167s142-62 222-62 153 21 222 62 126 97 171 167z m-368 196c0 7-3 13-7 18-5 4-11 7-18 7-42 0-79-15-110-46-30-30-45-67-45-109 0-7 2-13 7-18 4-5 10-7 17-7 7 0 13 2 18 7 4 5 7 10 7 18 0 29 10 54 31 75s46 31 75 31c7 0 13 2 18 7 4 5 7 11 7 17z m433-196c0-12-3-23-10-35-48-79-112-142-193-189-80-47-165-70-255-70s-175 23-255 71c-81 47-145 110-193 188-7 12-10 24-10 36s3 23 10 35c48 78 112 141 193 188s165 71 255 71 175-24 255-72 145-110 193-188c7-12 10-23 10-35z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="sort-down" unicode="" d="M208 480c0-10 4-19 12-26l273-259c8-8 17-11 28-11s19 4 27 11l274 259c8 7 11 16 11 26 0 10-3 18-11 25-8 8-17 11-28 11h-546c-11 0-20-3-28-11-8-7-12-15-12-25z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="sort-up" unicode="" d="M208 220c0 10 4 19 12 26l273 259c8 8 17 11 28 11s19-3 27-11l274-259c8-7 11-16 11-26 0-10-3-18-11-25-8-8-17-11-28-11h-546c-11 0-20 4-28 11-8 7-12 15-12 25z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="heading" unicode="" d="M606-67l0 0c0 0 0 0 0 0z m12 870c0 0 0 0 0 0 0 0-1 1-1 1 0 0 0 0 1-1 0 0 0 0 0 0z m-221-36c0 0 0 0 0 0l0 0z m-280 36c1 0 1 0 0 0 0 0 0 1-1 1 0 0 1 0 1-1 0 0 0 0 0 0z m-11-870c0 0 0 0 0 0l0 0z m644 0l60 1c-3 4-6 9-8 15-8 19-9 35-8 69 0 7 0 10 0 14v651c0 36 7 64 21 84l-63 0-65-1c14-20 21-48 21-84v-247c0-24-19-44-43-44h-327c-25 0-44 20-44 44v248c0 36 7 64 21 84l-63 0-65-1c14-20 21-48 21-84v-651c0-4 0-7 0-14 1-35 0-50-8-70-2-5-5-10-7-14l57 0 60 0c-3 5-6 10-8 15-8 20-9 35-8 70 0 7 0 10 0 14v232c0 24 20 44 44 44h327c24 0 43-20 43-44v-233c0-4 0-7 1-14 1-35 0-50-9-70-2-5-4-10-7-14l57 0z m-415 332v-233c0-42-9-90 49-96 6 0 12-1 18-3 9-3 15-11 15-20 0-12-9-21-21-21l-146 0-144 0c-12 0-21 9-21 20 0 10 6 18 15 20 6 2 11 3 17 3 58 6 49 54 49 96v651c0 94-56 77-71 86-1 1-2 1-3 2-9 7-12 20-5 29 4 6 10 9 17 9l147 0 146 0c6 0 13-3 17-8 6-10 4-23-5-30-18-11-74 7-74-87v-248c0-1 1-2 3-2h326c1 0 2 1 2 2v247c0 94-56 77-71 86 0 1-1 1-2 2-10 7-12 20-5 29 3 6 10 9 17 9l147 0 145 0c7 0 13-3 17-8 7-10 4-23-5-30-17-11-73 7-73-87v-651c0-42-9-90 49-96 6 0 12-1 17-3 9-3 16-11 16-20 0-12-10-21-21-21l-147 0-144 0c-11 0-21 9-21 20 0 10 7 18 16 20 5 2 11 3 17 3 57 6 48 54 48 96v234c0 1-1 2-2 2h-326c-2 0-3-1-3-2z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="logo" unicode="" d="M937 350c0 242-196 437-437 437s-437-195-437-437 195-437 437-437 437 195 437 437z m42 0c0-265-214-479-479-479s-479 214-479 479 214 479 479 479 479-214 479-479z m-773 75h9l0 0c7 0 12-5 12-11v-99l0 0c0-7 5-12 11-12h28l0 0c7 0 12-5 12-11v-10l0 0c0-7-5-12-12-12h-60l0 0c-6 0-11 5-11 12v132l0 0c0 6 5 11 11 11z m214-76c0 15-5 27-13 36-9 10-21 14-35 14s-27-4-35-14-14-21-14-36c0-16 5-28 14-37 9-9 21-14 35-14s26 5 35 14c8 9 13 21 13 37z m-106-57c-16 15-24 33-24 57 0 23 8 42 24 57 16 15 35 22 58 22 23 0 42-7 58-22 15-15 23-34 23-57 0-23-8-42-23-57-16-15-35-23-58-23s-42 8-58 23z m155 57c0 23 8 41 24 56 16 15 35 23 57 23 18 0 33-4 47-13 13-9 23-22 26-34 0-7-8-8-21-8-4 0-7 2-10 6-7 14-25 20-42 20-15 0-26-4-35-14s-13-21-13-36c0-16 4-28 13-37 9-9 20-14 33-14 13 0 23 4 31 10 8 6 11 11 13 19h-41l0 0c-6 0-11 5-11 11 0 0 0 0 0 0l0 8 0 0c0 7 5 11 11 11l64-1 0 0c6 0 11-5 11-11v-11c-3-16-9-32-24-44-14-13-32-20-54-20s-40 8-55 23c-16 14-24 33-24 56z m305 0c0 15-5 27-14 36s-20 14-35 14-26-4-35-14-13-21-13-36c0-16 5-28 13-37 10-9 21-14 35-14s27 5 35 14c10 9 14 21 14 37z m-106-57c-16 15-24 33-24 57 0 23 8 42 24 57 16 15 35 22 58 22s42-7 57-22c16-15 24-34 24-57 0-23-8-42-24-57-15-15-35-23-58-23-22 0-42 8-57 23z m-509 187c-9 0-17 8-17 17 0 9 8 17 17 17h674c10 0 17-8 17-17 0-9-7-17-17-17h-674z m0-291c-9 0-17 7-17 16s8 17 17 17h674c10 0 17-8 17-17s-7-16-17-16h-674z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="meta-data" unicode="" d="M422-68l-316 296c-13 12-14 33-2 47l446 479c6 7 15 11 25 11l293-2c17 0 32-14 33-31l23-293c1-9-3-18-9-25l-446-480c-12-13-34-14-47-2z m460 508l-22 281-282 2-438-471 305-283 437 471z m-504-286c-43 17-64 66-47 109 17 42 66 63 109 46 42-17 63-66 46-109-17-42-66-63-108-46z m30 36c23 0 42 18 42 41 0 23-19 42-42 42s-41-19-41-42c0-23 18-41 41-41z m109 119c-43 17-64 66-47 108 18 43 66 63 109 46 42-17 63-65 46-108s-65-63-108-46z m31 36c23 0 42 18 42 41 0 23-19 42-42 42-23 0-42-19-42-42 0-23 19-41 42-41z m108 119c-42 17-63 66-46 108 17 43 66 63 108 46s64-65 47-108c-17-43-66-63-109-46z m32 35c22 0 41 19 41 42 0 23-19 42-41 42s-42-19-42-42c0-23 18-42 42-42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="post-content" unicode="" d="M435 267h-120l-25-70c-3-11-15-17-26-12-11 3-17 15-13 26l104 292c7 18 33 18 40 0l104-292c4-11-2-23-13-26s-23 1-26 12l-25 70z m-15 41l-45 126-45-126h90z m-40 535c4 5 10 7 16 7h417c34 0 62-28 62-62v-876c0-34-28-62-62-62h-625c-35 0-63 28-63 62v667c0 6 3 12 7 16l248 248z m-5-64l-179-179h158c12 0 21 9 21 21v158z m438 29h-396v-187c0-35-28-63-63-63h-187v-646c0-11 9-20 21-20h625c11 0 20 9 20 20v876c0 11-9 20-20 20z m-250-333c-12 0-21 9-21 21s9 21 21 21h166c12 0 21-9 21-21s-9-21-21-21h-166z m0-125c-12 0-21 9-21 21s9 21 21 21h166c12 0 21-9 21-21s-9-21-21-21h-166z m0-125c-12 0-21 9-21 21s9 21 21 21h166c12 0 21-9 21-21s-9-21-21-21h-166z m-271-146c-12 0-21 9-21 21s9 21 21 21h458c12 0 21-9 21-21s-9-21-21-21h-458z m0-125c-12 0-21 9-21 21s9 21 21 21h458c12 0 21-9 21-21s-9-21-21-21h-458z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="post-excerpt" unicode="" d="M380 843c4 5 10 7 16 7h417c34 0 62-28 62-62v-876c0-34-28-62-62-62h-625c-35 0-63 28-63 62v667c0 6 3 12 7 16l248 248z m-5-64l-179-179h158c12 0 21 9 21 21v158z m438 29h-396v-187c0-35-28-63-63-63h-187v-646c0-11 9-20 21-20h625c11 0 20 9 20 20v876c0 11-9 20-20 20z m-459-812c0-23-19-42-41-42s-42 19-42 42 19 42 42 42 41-19 41-42z m125 0c0-23-19-42-41-42s-42 19-42 42 19 42 42 42 41-19 41-42z m125 0c0-23-19-42-41-42s-42 19-42 42 19 42 42 42 41-19 41-42z m-312 250c-12 0-21 9-21 21s9 21 21 21h458c12 0 21-10 21-21s-9-21-21-21h-458z m0 125c-12 0-21 9-21 21s9 21 21 21h333c12 0 21-10 21-21s-9-21-21-21h-333z m0-250c-12 0-21 9-21 21s9 21 21 21h375c11 0 21-10 21-21s-10-21-21-21h-375z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="post-navigation" unicode="" d="M783 329h-158c-12 0-21 9-21 21s9 21 21 21h158l-29 25c-8 8-8 21 0 29 9 8 21 8 29 0l63-58c8-9 8-21 0-29l-63-67c-8-8-20-8-29 0-8 8-8 21 0 29l29 29z m-283 292h417c33 0 62-29 62-63v-416c0-34-29-63-62-63h-417-417c-33 0-62 29-62 63v416c0 34 29 63 62 63h417z m-283-250h158c13 0 21-8 21-21s-8-21-21-21h-158l25-29c8-8 8-21 0-29-9-8-21-8-29 0l-63 67c-8 8-8 20 0 29l63 58c8 8 20 8 29 0s8-21 0-29l-25-25z m262 208h-396c-12 0-20-8-20-21v-416c0-13 8-21 20-21h396v458z m21 42h21v-542h-21-21v542h21z m21-42v-458h396c12 0 21 8 21 21v416c0 13-9 21-21 21h-396z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="yoast" unicode="" d="M300 542c0 0 38-109 117-329 16-59 12-105-9-138-16-29-45-50-87-67 0 0 0-25 0-75 42 4 75 21 104 50 38 38 63 80 75 125l242 659c0 0-29 0-88 0 0 0-54-159-162-479-4-17-34-17-38 0l-79 250c0 0-25 4-75 4z m313 237c8 17 20 29 41 29h88c21 0 41-16 41-41 0-4 0-9-4-13l-237-658c-17-50-46-96-84-138-37-37-79-58-125-62-20-4-41 12-45 37 0 4 0 4 0 4v76c0 16 12 33 25 37 33 13 54 29 66 50 13 21 17 58 4 104l-120 321c-9 21 4 46 25 54 4 0 8 4 12 4h75c17 0 33-12 38-29l58-191 142 416z m262-762l0 587c0 42-33 79-58 79 0 0-17 0-17 21s17 21 17 21c58 0 100-54 100-121l0-625-367 0c-12 0-21 8-21 21s9 21 21 21l325-4z m-342 708c13-4 17-8 17-21s-4-16-17-21l-220 0c-105 0-188-62-188-166l0-334c0-79 25-166 104-166 17 0 21-9 21-25 0-9-8-17-21-17-104 0-146 104-146 208l0 334c0 125 105 208 230 208l220 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="nerd-chuckle" unicode="" d="M958 350c0 253-205 458-458 458s-458-205-458-458 205-458 458-458 458 205 458 458z m42 0c0-276-224-500-500-500s-500 224-500 500 224 500 500 500 500-224 500-500z m-240-107c-10 6-22 2-28-8-45-78-123-114-232-114-109 0-187 36-232 114-6 10-18 14-28 8-10-6-14-18-8-28 30-52 71-88 123-110 0-1-1-3-1-5v-83c0-12 9-21 21-21h125c12 0 21 9 21 21v63c112 4 197 47 247 135 6 10 2 23-8 28z m-364-205v54c26-7 54-11 83-12v-42h-83z m302 624c-95 0-172-74-176-168-6 1-14 2-22 2-8 0-16-1-22-2-4 94-81 168-176 168-97 0-176-79-176-177s79-176 176-176c71 0 133 43 161 104 9 2 16 10 16 20 0 21 1 21 21 21 20 0 21 0 21-21 0-10 7-18 17-20 27-61 89-104 160-104 97 0 176 79 176 176s-79 177-176 177z m-396-313c-75 0-136 61-136 136 0 76 61 137 136 137 76 0 136-62 136-137 0-75-60-136-136-136z m396 0c-75 0-136 61-136 136 0 76 61 137 136 137 75 0 136-62 136-137 0-75-61-136-136-136z m23 134c0 12-9 21-21 21s-21-9-21-21 9-20 21-20 21 9 21 20z m42 0c0-34-28-62-63-62-35 0-62 28-62 62s27 63 62 63c35 0 63-28 63-63z m-438 0c0 12-9 21-21 21s-21-9-21-21 10-20 21-20 21 9 21 20z m42 0c0-34-28-62-63-62s-62 28-62 62 28 63 62 63 63-28 63-63z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="nerd-wink" unicode="" d="M958 350c0 253-205 458-458 458s-458-205-458-458 205-458 458-458 458 205 458 458z m42 0c0-276-224-500-500-500s-500 224-500 500 224 500 500 500 500-224 500-500z m-768-135c53-93 146-136 268-136s215 43 268 136c6 10 2 23-8 28-10 6-22 2-28-8-45-78-123-114-232-114s-187 36-232 114c-6 10-18 14-28 8-10-5-14-18-8-28z m466 447c-95 0-172-74-176-168-6 1-14 2-22 2-8 0-16-1-22-2-4 94-81 168-176 168-97 0-176-79-176-177s79-176 176-176c71 0 133 43 161 104 9 2 16 10 16 20 0 21 1 21 21 21 20 0 21 0 21-21 0-10 7-18 17-20 27-61 89-104 160-104 97 0 176 79 176 176s-79 177-176 177z m-396-313c-75 0-136 61-136 136 0 76 61 137 136 137 76 0 136-62 136-137 0-75-60-136-136-136z m396 0c-75 0-136 61-136 136 0 76 61 137 136 137 75 0 136-62 136-137 0-75-61-136-136-136z m-373 134c0 12-9 21-21 21s-21-9-21-21 10-20 21-20 21 9 21 20z m42 0c0-34-28-62-63-62s-62 28-62 62 28 63 62 63 63-28 63-63z m279-8h125c12 0 21 9 21 21s-9 21-21 21h-125c-12 0-21-9-21-21s9-21 21-21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="comments" unicode="" d="M217 183c-3 0-7 1-9 3-6 4-9 11-7 18l28 113h-12c-65 0-117 52-117 116v234c0 64 52 116 117 116h400c64 0 116-52 116-116 0-9-7-17-16-17h-134c-46 0-83-37-83-83v-200c0-9 2-18 5-28 2-5 1-11-2-15-3-5-8-7-13-7h-101l-162-130c-3-2-7-4-10-4z m0 567c-46 0-84-37-84-83v-234c0-46 38-83 84-83h33c5 0 10-2 13-6s4-10 3-15l-21-85 128 102c3 3 7 4 10 4h85c-1 6-1 11-1 17v200c0 64 52 116 116 116h115c-7 38-41 67-81 67h-400z m766-633c-3 0-7 1-10 3l-162 130h-228c-64 0-116 52-116 117v200c0 64 52 116 116 116h400c65 0 117-52 117-116v-200c0-65-52-117-117-117h-12l29-113c1-7-2-14-8-18-2-1-5-2-9-2z m-400 533c-46 0-83-37-83-83v-200c0-46 37-84 83-84h234c3 0 7-1 10-3l128-103-21 86c-1 5 0 10 3 14s8 6 13 6h33c46 0 84 38 84 84v200c0 46-38 83-84 83h-400z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="download-circle-o" unicode="" d="M167 350c0-184 149-333 333-333s333 149 333 333-149 333-333 333-333-149-333-333z m-84 0c0 230 187 417 417 417s417-187 417-417-187-417-417-417-417 187-417 417z m375-83h-104c-6 0-10-2-14-6s-7-8-7-13 2-9 7-13l145-129c5-4 10-6 15-6s10 2 15 6l145 129c5 4 7 8 7 13s-2 10-7 13-9 6-14 6h-104v293c0 16-19 40-42 40s-42-23-42-40v-293z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="library-upload" unicode="" d="M479 113v-138c0-13 9-21 21-21s21 8 21 21v138l25-25c8-9 21-9 29 0 8 8 8 20 0 29l-62 62c-9 9-21 9-30 0l-62-62c-8-9-8-21 0-29 8-9 21-9 29 0l29 25z m-146-55c0-91 75-166 167-166s167 75 167 166-75 167-167 167-167-75-167-167z m-291 688c0 0 0 0 0 0 0 58 46 104 104 104h708c59 0 104-46 104-104v-129c25-21 42-50 42-88v-383c0-58-46-108-108-108h-121c-13 0-21 8-21 20s8 21 21 21h121c37 0 66 29 66 67v383c0 38-29 71-66 71h-500c-42 0-84 25-100 71l0 0-4 8c-9 29-34 46-63 46h-117c-37 0-66-29-66-67v-512c0-38 29-67 66-67h121c13 0 21-8 21-21s-8-20-21-20h-121c-58 0-108 50-108 108v512c0 34 17 67 42 88z m46 21c8 0 12 0 20 0h121c46 0 84-29 100-71l4-4 0-4c9-30 34-46 59-46h500c8 0 16 0 25-4v108c0 33-29 62-63 62h-708c-29 0-50-16-58-41z m204-709c0 117 91 209 208 209s208-92 208-209-91-208-208-208-208 92-208 208z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="save-o" unicode="" d="M683 725c-4 0-12 0-16 0h0-63-83-271-42c-45 0-83-37-83-83v-584c0-45 38-83 83-83h584c46 0 83 38 83 83v459c0 108-83 196-192 208z m-183-83v-146c0-13 8-21 21-21h83c13 0 21 8 21 21v146h42c0 0 0 0 0 0v-209h-334v209h167z m292-584h-584v584h42v-250c0-25 17-42 42-42h416c25 0 42 17 42 42v216c25-25 42-54 42-91v-459z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="upload-circle-o" unicode="" d="M833 350c0 184-149 333-333 333s-333-149-333-333 149-333 333-333 333 149 333 333z m84 0c0-230-187-417-417-417s-417 187-417 417 187 417 417 417 417-187 417-417z m-375 83h104c6 0 10 2 14 6s7 8 7 13-2 9-7 13l-145 129c-5 4-10 6-15 6s-10-2-15-6l-145-129c-5-4-7-8-7-13s2-9 7-13 9-6 14-6h104v-293c0-16 19-40 42-40s42 23 42 40v293z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="ellipsis-h" unicode="" d="M208 267c-45 0-83 37-83 83s38 83 83 83 84-37 84-83-38-83-84-83z m292 0c-46 0-83 37-83 83s37 83 83 83 83-37 83-83-37-83-83-83z m292 0c-46 0-84 37-84 83s38 83 84 83 83-37 83-83-37-83-83-83z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="ellipsis-v" unicode="" d="M417 642c0 46 37 83 83 83s83-37 83-83-37-84-83-84-83 38-83 84z m0-292c0 46 37 83 83 83s83-37 83-83-37-83-83-83-83 37-83 83z m0-292c0 46 37 84 83 84s83-38 83-84-37-83-83-83-83 38-83 83z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="arrow-left" unicode="" d="M263 304l158-162c25-25 25-63 0-88-25-25-63-25-88 0l-270 279c-25 25-25 63 0 88l266 262c25 30 63 25 88 0 25-25 25-62 0-87l-171-167 650 4c33 0 62-29 62-62 0-33-29-63-62-63l-633-4z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="arrow-right" unicode="" d="M738 304l-159-162c-25-25-25-63 0-88s63-25 88 0l271 279c25 25 25 63 0 88l-267 262c-25 25-63 25-88 0-25-25-25-62 0-87l171-167-650 4c-33 0-62-29-62-62 0-33 29-63 62-63l634-4z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="arrow-up" unicode="" d="M413 588l-163-159c-25-25-62-25-87 0s-21 67 4 92l279 271c25 25 62 25 87 0l263-267c25-25 25-62 0-87-25-25-63-25-88 0l-166 170 0-654c0-33-29-62-63-62-33 0-62 29-62 62l-4 634z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="arrow-down" unicode="" d="M413 113l-163 158c-25 25-62 25-87 0s-25-63 0-88l279-271c25-25 62-25 87 0l263 267c25 25 25 63 0 88-25 25-63 25-88 0l-166-171 4 650c0 33-29 62-63 62-33 0-62-29-62-62l-4-633z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="play-o" unicode="" d="M498-124c-264 0-477 213-477 477s213 476 477 476 476-213 476-476-213-477-476-477z m151 487l-238 141v-281l238 140z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="archive-posts" unicode="" d="M958 600h-916v-646c0-34 28-62 62-62h792c34 0 62 28 62 62v646z m0 42v62c0 35-28 63-62 63h-792c-34 0-62-28-62-63v-62h916z m42-688c0-57-47-104-104-104h-792c-57 0-104 47-104 104v750c0 58 47 104 104 104h792c57 0 104-46 104-104v-750z m-854 438c-12 0-21 9-21 21v83c0 12 9 21 21 21h83c12 0 21-9 21-21v-83c0-12-9-21-21-21h-83z m21 41h41v42h-41v-42z m-21-250c-12 0-21 10-21 21v84c0 11 9 20 21 20h83c12 0 21-9 21-20v-84c0-11-9-21-21-21h-83z m21 42h41v42h-41v-42z m-21-250c-12 0-21 9-21 21v83c0 12 9 21 21 21h83c12 0 21-9 21-21v-83c0-12-9-21-21-21h-83z m21 42h41v41h-41v-41z m146 458c-12 0-21 9-21 21s9 21 21 21h125c11 0 20-9 20-21s-9-21-20-21h-125z m0-83c-12 0-21 9-21 21s9 20 21 20h125c11 0 20-9 20-20s-9-21-20-21h-125z m0-125c-12 0-21 9-21 21s9 20 21 20h125c11 0 20-9 20-20s-9-21-20-21h-125z m0-84c-12 0-21 10-21 21s9 21 21 21h125c11 0 20-9 20-21s-9-21-20-21h-125z m0-125c-12 0-21 10-21 21s9 21 21 21h125c11 0 20-9 20-21s-9-21-20-21h-125z m0-83c-12 0-21 9-21 21s9 21 21 21h125c11 0 20-9 20-21s-9-21-20-21h-125z m250 417c-12 0-21 9-21 21v83c0 12 9 21 21 21h83c12 0 21-9 21-21v-83c0-12-9-21-21-21h-83z m20 41h42v42h-42v-42z m-20-250c-12 0-21 10-21 21v84c0 11 9 20 21 20h83c12 0 21-9 21-20v-84c0-11-9-21-21-21h-83z m20 42h42v42h-42v-42z m-20-250c-12 0-21 9-21 21v83c0 12 9 21 21 21h83c12 0 21-9 21-21v-83c0-12-9-21-21-21h-83z m20 42h42v41h-42v-41z m146 458c-11 0-21 9-21 21s10 21 21 21h125c12 0 21-9 21-21s-9-21-21-21h-125z m0-83c-11 0-21 9-21 21s10 20 21 20h125c12 0 21-9 21-20s-9-21-21-21h-125z m0-125c-11 0-21 9-21 21s10 20 21 20h125c12 0 21-9 21-20s-9-21-21-21h-125z m0-84c-11 0-21 10-21 21s10 21 21 21h125c12 0 21-9 21-21s-9-21-21-21h-125z m0-125c-11 0-21 10-21 21s10 21 21 21h125c12 0 21-9 21-21s-9-21-21-21h-125z m0-83c-11 0-21 9-21 21s10 21 21 21h125c12 0 21-9 21-21s-9-21-21-21h-125z m-604 729c0-11-9-21-21-21s-21 10-21 21 10 21 21 21 21-9 21-21m83 0c0-11-9-21-20-21s-21 10-21 21 9 21 21 21 20-9 20-21m84 0c0-11-9-21-21-21-12 0-21 10-21 21s9 21 21 21c12 0 21-9 21-21" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="archive-title" unicode="" d="M958 600h-916v-646c0-34 28-62 62-62h792c34 0 62 28 62 62v646z m0 42v62c0 35-28 63-62 63h-792c-34 0-62-28-62-63v-62h916z m42-688c0-57-47-104-104-104h-792c-57 0-104 47-104 104v750c0 58 47 104 104 104h792c57 0 104-46 104-104v-750z m-875 750c0-11-9-21-21-21s-21 10-21 21 10 21 21 21 21-9 21-21z m83 0c0-11-9-21-20-21s-21 10-21 21 9 21 21 21 20-9 20-21z m84 0c0-11-9-21-21-21-12 0-21 10-21 21s9 21 21 21c12 0 21-9 21-21z m-146-729c-12 0-21 9-21 21v83c0 12 9 21 21 21h83c12 0 21-9 21-21v-83c0-12-9-21-21-21h-83z m21 42h41v41h-41v-41z m146 41c-12 0-21 10-21 21s9 21 21 21h125c11 0 20-9 20-21s-9-21-20-21h-125z m0-83c-12 0-21 9-21 21s9 21 21 21h125c11 0 20-9 20-21s-9-21-20-21h-125z m250 0c-12 0-21 9-21 21v83c0 12 9 21 21 21h83c12 0 21-9 21-21v-83c0-12-9-21-21-21h-83z m20 42h42v41h-42v-41z m146 41c-11 0-21 10-21 21s10 21 21 21h125c12 0 21-9 21-21s-9-21-21-21h-125z m0-83c-11 0-21 9-21 21s10 21 21 21h125c12 0 21-9 21-21s-9-21-21-21h-125z m-250 292v208h-83v-22c0-12-9-21-21-21s-21 9-21 21v43c0 12 9 21 21 21h250c12 0 21-9 21-21v-43c0-12-9-21-21-21s-21 9-21 21v22h-83v-208h42c11 0 20-9 20-21s-9-21-20-21h-125c-12 0-21 9-21 21s9 21 21 21h41z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="featured-image" unicode="" d="M104 183c-11 0-21 10-21 21v542c0 12 10 21 21 21h792c12 0 21-9 21-21v-542c0-11-9-21-21-21h-792z m21 42h750v500h-750v-500z m-21-167c-11 0-21 10-21 21s10 21 21 21h334c11 0 20-9 20-21s-9-21-20-21h-334z m459 0c-12 0-21 10-21 21s9 21 21 21h333c12 0 21-9 21-21s-9-21-21-21h-333z m-459-125c-11 0-21 9-21 21s10 21 21 21h334c11 0 20-9 20-21s-9-21-20-21h-334z m459 0c-12 0-21 9-21 21s9 21 21 21h333c12 0 21-9 21-21s-9-21-21-21h-333z m-246 477l-197-220c-8-9-21-9-30-2-9 8-9 21-2 30l210 233c7 8 19 9 27 3l124-88 174 218c9 11 25 10 33-1l257-367c6-10 4-23-5-29-10-7-23-4-30 5l-240 343-168-211c-7-9-20-11-29-4l-124 90z m-11 186c0 25-19 46-43 46s-43-21-43-46 20-46 43-46 43 20 43 46z m42 0c0-48-38-88-85-88s-84 40-84 88 37 87 84 87 85-39 85-87z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="post-info" unicode="" d="M380 843c4 5 10 7 16 7h417c34 0 62-28 62-62v-876c0-34-28-62-62-62h-625c-35 0-63 28-63 62v667c0 6 3 12 7 16l248 248z m-5-64l-179-179h158c12 0 21 9 21 21v158z m438 29h-396v-187c0-35-28-63-63-63h-187v-646c0-11 9-20 21-20h625c11 0 20 9 20 20v876c0 11-9 20-20 20z m-459-708c0 12-9 21-21 21s-20-9-20-21 9-21 20-21 21 9 21 21z m42 0c0-35-28-62-63-62s-62 27-62 62 28 63 62 63 63-28 63-63z m125 0c0 12-9 21-21 21s-21-9-21-21 9-21 21-21 21 9 21 21z m42 0c0-35-28-62-63-62s-62 27-62 62 27 63 62 63 63-28 63-63z m125 0c0 12-10 21-21 21s-21-9-21-21 9-21 21-21 21 9 21 21z m41 0c0-35-28-62-62-62s-63 27-63 62 28 63 63 63 62-28 62-63z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="post-title" unicode="" d="M479 100c0 0 0 0 0 1v291h-125v-33c0-12-9-21-21-21s-20 9-20 21v54c0 11 9 20 20 20h334c11 0 21-9 21-20v-54c0-12-10-21-21-21s-21 9-21 21v33h-125v-291c0-1 0-1 0-1h42c11 0 20-9 20-21s-9-21-20-21h-125c-12 0-21 10-21 21s9 21 21 21h41z m-99 743c4 5 10 7 16 7h417c34 0 62-28 62-62v-876c0-34-28-62-62-62h-625c-35 0-63 28-63 62v667c0 6 3 12 7 16l248 248z m-5-64l-179-179h158c12 0 21 9 21 21v158z m438 29h-396v-187c0-35-28-63-63-63h-187v-646c0-11 9-20 21-20h625c11 0 20 9 20 20v876c0 11-9 20-20 20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="site-logo" unicode="" d="M958 600h-916v-642c0-37 28-66 62-66h792c34 0 62 29 62 66v642z m0 42v58c0 37-28 67-62 67h-792c-34 0-62-30-62-67v-58h916z m42-684c0-59-46-108-104-108h-792c-58 0-104 49-104 108v742c0 60 46 108 104 108h792c58 0 104-48 104-108v-742z m-875 746c0-11-9-21-21-21s-21 10-21 21 10 21 21 21 21-9 21-21m83 0c0-11-9-21-20-21s-21 10-21 21 9 21 21 21 20-9 20-21m84 0c0-11-9-21-21-21-12 0-21 10-21 21s9 21 21 21c12 0 21-9 21-21m-113-398h11c6 0 12-6 12-13v-103c0-7 6-12 13-12h30c7 0 13-6 13-13l0-10c0-7-5-12-13-12 0 0 0 0 0 0l-65 0c-7 0-13 5-13 12v138c0 7 5 13 12 13z m233-81c0 16-5 29-14 39-10 9-23 14-39 14s-28-5-38-14c-10-10-15-23-15-39 0-16 5-29 15-39 10-9 22-14 38-14s29 5 39 14c10 10 14 23 14 39z m-115-60c-17 16-26 36-26 60 0 24 9 44 26 60s38 23 63 23 46-8 63-23c17-16 25-36 25-60 0-24-8-44-25-60-17-15-38-23-63-23-25 0-46 8-63 23z m169 60c0 24 9 44 26 60 17 15 38 23 63 23 18 0 35-4 50-13 14-9 25-23 28-35 1-8-8-10-22-10-4 0-8 3-11 7-8 14-27 22-46 22-16 0-28-5-38-15-10-9-15-22-15-39 0-16 5-29 15-38 10-10 22-15 36-15s25 4 34 10c9 6 12 12 14 20h-45c-6 0-12 5-12 12 0 0 0 1 0 1l0 7c1 6 6 12 13 12l69-1c7 0 12-5 12-13v-10c-3-18-10-34-26-47-16-14-35-20-59-20s-44 7-61 23c-17 15-25 35-25 59z m332 0c0 16-5 29-15 39-10 9-23 14-38 14-16 0-29-5-39-14-10-10-14-23-14-39 0-16 5-29 14-39 10-9 23-14 39-14 15 0 28 5 38 14 10 10 15 23 15 39z m-116-60c-17 16-25 36-25 60 0 24 8 44 26 60s37 23 62 23c25 0 46-8 63-23 17-16 26-36 26-60 0-24-9-44-26-60-17-15-38-23-63-23-25 0-46 8-63 23z m172-107h-708c-12 0-21 10-21 21s9 21 21 21h708c12 0 21-9 21-21s-9-21-21-21z m0 292h-708c-12 0-21 9-21 21s9 21 21 21h708c12 0 21-9 21-21s-9-21-21-21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="site-search" unicode="" d="M958 600h-916v-642c0-37 28-66 62-66h792c34 0 62 29 62 66v642z m0 42v58c0 37-28 67-62 67h-792c-34 0-62-30-62-67v-58h916z m42-684c0-59-46-108-104-108h-792c-58 0-104 49-104 108v742c0 60 46 108 104 108h792c58 0 104-48 104-108v-742z m-875 746c0-11-9-21-21-21s-21 10-21 21 10 21 21 21 21-9 21-21z m83 0c0-11-9-21-20-21s-21 10-21 21 9 21 21 21 20-9 20-21z m84 0c0-11-9-21-21-21-12 0-21 10-21 21s9 21 21 21c12 0 21-9 21-21z m141-491c0-1-1-2-2-3l-146-145c-8-9-21-9-29 0s-8 21 0 29l146 146c1 1 1 1 2 2-19 24-29 55-29 88 0 80 65 145 145 145s146-65 146-145-65-146-146-146c-32-1-62 10-87 29z m192 116c0 58-47 104-104 104s-104-46-104-104 46-104 104-104 104 47 104 104z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="site-title" unicode="" d="M958 600h-916v-642c0-37 28-66 62-66h792c34 0 62 29 62 66v642z m0 42v58c0 37-28 67-62 67h-792c-34 0-62-30-62-67v-58h916z m42-684c0-59-46-108-104-108h-792c-58 0-104 49-104 108v742c0 60 46 108 104 108h792c58 0 104-48 104-108v-742z m-875 746c0-11-9-21-21-21s-21 10-21 21 10 21 21 21 21-9 21-21m83 0c0-11-9-21-20-21s-21 10-21 21 9 21 21 21 20-9 20-21m84 0c0-11-9-21-21-21-12 0-21 10-21 21s9 21 21 21c12 0 21-9 21-21m375-366c-12 0-21 9-21 21v33h-292v-33c0-12-9-21-21-21s-20 9-20 21v54c0 11 9 20 20 20h334c11 0 21-9 21-20v-54c0-11-10-21-21-21z m-167-258c-12 0-21 9-21 21v307c0 12 9 21 21 21 12 0 21-9 21-21v-307c0-12-9-21-21-21z m63-22h-125c-12 0-21 10-21 21s9 21 21 21h125c11 0 20-9 20-21s-9-21-20-21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="plus-square" unicode="" d="M958 638v-575c0-46-16-88-50-121s-75-50-120-50h-575c-46 0-88 16-121 50s-50 75-50 121v575c0 45 16 87 50 120s75 50 121 50h575c45 0 87-16 120-50s50-75 50-120z m-508-242h-175c-25 0-46-21-46-46s21-46 46-46h175v-175c0-25 21-46 46-46 25 0 46 21 46 46v175h175c25 0 46 21 46 46s-21 46-46 46h-175v175c0 25-21 46-46 46-25 0-46-21-46-46v-175z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="minus-square" unicode="" d="M958 638v-575c0-46-16-88-50-121s-75-50-120-50h-575c-46 0-88 16-121 50s-50 75-50 121v575c0 45 16 87 50 120s75 50 121 50h575c45 0 87-16 120-50s50-75 50-120z m-679-334h446c25 0 46 21 46 46s-21 46-46 46h-446c-25 0-46-21-46-46s17-46 46-46z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="cloud-check" unicode="" d="M392 675c133 33 241-17 308-146 13-21 4-50-17-62-20-13-45-4-58 16-50 92-117 125-212 100-96-25-146-95-159-225l-4-33-29-8c-92-21-133-71-133-150-5-96 37-134 125-138l525 0c129-12 179 29 179 134 0 62-25 104-75 133-21 12-29 37-21 62 12 21 37 34 58 21 84-46 125-116 125-212 0-163-96-242-266-225l-521 0c-138 4-217 87-213 233 0 113 63 192 171 229 17 146 92 238 217 271z m496-54c12 12 29 12 41 0s13-33 0-46l-329-375c0 0 0 0 0 0-17-17-42-17-54 0l-158 175c-13 13-13 33 0 46 12 12 29 12 41 0l142-158 317 358z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="drag-n-drop" unicode="" d="M46 779c0-13-10-24-23-24s-23 11-23 24v48c0 13 10 23 23 23h49c13 0 23-10 23-23s-10-24-23-24h-25v-24z m122 25c-13 0-23 10-23 23s10 23 23 23h92c13 0 24-10 24-23s-11-24-24-24h-92z m185 0c-13 0-23 10-23 23s10 23 23 23h93c13 0 23-10 23-23s-10-24-23-24h-93z m186 0c-13 0-24 10-24 23s11 23 24 23h92c13 0 24-10 24-23s-11-23-24-23h-92z m209 0c-13 0-24 10-24 23s11 23 24 23h48c13 0 23-10 23-23v-48c0-13-10-24-23-24-13 0-23 11-23 24v25h-25z m25-122c0 13 10 23 23 23 13 0 23-10 23-23v-92c0-13-10-24-23-24-13 0-23 11-23 24v92z m0-193c0 13 10 23 23 23 13 0 23-10 23-23v-49c0-12-10-23-23-23-13 0-23 11-23 23v49z m-315-363c12 0 23-11 23-23 0-13-11-24-23-24h-93c-13 0-23 11-23 24 0 12 10 23 23 23h93z m-186 0c13 0 23-11 23-23 0-13-10-24-23-24h-92c-13 0-24 11-24 24 0 12 11 23 24 23h92z m-201 0c13 0 24-11 24-23 0-13-11-24-24-24h-48c-13 0-23 11-23 24v48c0 13 10 23 23 23s24-10 24-23v-25h24z m-25 122c0-13-10-24-23-24s-23 11-23 24v92c0 13 10 23 23 23s24-10 24-23v-92z m0 185c0-13-10-23-23-23s-23 10-23 23v92c0 13 10 24 23 24s24-11 24-24v-92z m0 185c0-13-10-23-23-23s-23 10-23 23v93c0 13 10 23 23 23s24-10 24-23v-93z m503-654c-29-22-70-2-70 34v621c0 39 48 58 75 30l434-448c27-28 7-74-31-74h-98l70-145c11-21 2-46-19-57l-134-69c-21-11-48-3-59 19l-77 159-91-70z m17 123l64 49c22 17 54 9 66-16l81-166 56 29-82 169c-14 28 7 62 39 62h65l-288 298v-425z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="welcome" unicode="" d="M180 511v-559h676v559l-335 216-341-216z m-75 63l390 248c16 10 37 10 53 0l383-247c14-9 22-23 22-39v-630c0-26-22-46-49-46h-772c-27 0-49 20-49 46v629c0 16 8 30 22 39z m421-201c38 52 82 71 134 54 77-24 67-121 38-163-28-39-85-95-172-169v0c-86 74-143 130-171 169-30 42-39 139 38 163 51 17 96-1 133-54l0 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="handle" unicode="" d="M167 138c-46 0-84 37-84 83s38 83 84 83 83-37 83-83-37-83-83-83z m329 0c-46 0-83 37-83 83s37 83 83 83 83-37 83-83-37-83-83-83z m333 0c-46 0-83 37-83 83s37 83 83 83c46 0 84-37 84-83s-38-83-84-83z m-662 254c-46 0-84 37-84 83s38 83 84 83 83-37 83-83-37-83-83-83z m329 0c-46 0-83 37-83 83s37 83 83 83 83-37 83-83-37-83-83-83z m333 0c-46 0-83 37-83 83s37 83 83 83c46 0 84-37 84-83s-38-83-84-83z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="cart" unicode="" d="M460 58c35 0 63-28 63-62s-28-63-63-63-64 28-64 63 29 62 64 62z m250 0c35 0 63-28 63-62s-28-63-63-63-64 28-64 63 29 62 64 62z m-476 541l139-450c2-5 7-9 12-9h380c6 0 11 4 13 9l138 433c0 1 0 2 0 3 0 8-6 13-13 13l-669 1 0 0z m-13 41h682c30 0 55-24 55-54 0-6-1-11-3-17l-138-433c-7-22-28-38-52-38h-380c-23 0-45 16-52 39l-147 476c-10 35-26 67-48 97-20 27-44 40-75 40-12 0-21 9-21 21s9 21 21 21c45 0 82-20 109-58 21-30 38-61 49-94z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-add-to-cart" unicode="" d="M741 192c-7-9-20-11-29-4-9 6-12 19-5 29 6 8 12 17 17 26 54 90 61 200 22 297-3 7-6 15-10 22-3 6-7 13-11 20-23 39-54 73-92 101-148 108-357 75-465-74s-75-358 74-466c66-48 146-69 226-62 5 1 9 1 13 2 5 0 11 1 16 2 12 2 24 5 36 8 10 4 22-3 25-14 4-11-3-22-14-26-13-3-26-7-40-9-6-1-12-2-18-3-4-1-9-1-14-2-90-8-180 16-255 70-167 122-204 356-83 524s356 205 524 83c42-31 77-69 103-113 4-8 8-15 12-23 4-8 8-16 11-25 45-108 36-232-24-334-6-10-12-19-19-29z m-324 241v125c0 12 9 21 21 21s20-9 20-21v-125h125c12 0 21-9 21-20s-9-21-21-21h-125v-125c0-12-9-21-20-21s-21 9-21 21v125h-125c-12 0-21 9-21 21s9 20 21 20h125z m237-458h126l45 147h-215l44-147z m183 188c18 0 33-15 33-33 0-3 0-7-1-10l-51-164c-4-14-17-23-32-23h-138c-15 0-28 9-33 24l-53 179c0 0 0 1-1 1-3 11-8 22-16 32-4 7-9 10-16 10-12 0-21 9-21 21s9 20 21 20c21 0 39-9 51-27 6-10 12-20 16-30h241z m-174-301c-16 0-29 13-29 30s13 29 29 29 30-13 30-29-14-30-30-30z m105 0c-17 0-30 13-30 30s13 29 30 29 29-13 29-29-14-30-29-30z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-breadcrumbs" unicode="" d="M490 100c12 0 21-9 21-21s-9-21-21-21h-390c-54 0-100 37-100 86v579c0 48 46 85 100 85h758c55 0 100-37 100-85v-580c0-33-23-63-57-77-7-3-15-5-22-6-3 0-6-1-9-1-5-1-9-1-11-1-12 0-21 8-22 20 0 12 8 21 20 22 2 0 6 0 9 0 3 0 4 0 6 0 5 1 9 3 14 5 19 8 31 23 31 38v580c0 23-25 44-59 44h-758c-33 0-58-21-58-44v-580c0-23 25-43 58-43h390z m122-125h126l46 147h-216l44-147z m183 188c19 0 34-15 34-33 0-3-1-7-2-10l-51-164c-4-14-17-23-31-23h-139c-15 0-28 9-32 24l-54 179c0 0 0 1 0 1-4 11-9 22-16 32-5 7-10 10-17 10-12 0-21 9-21 21s9 20 21 20c21 0 39-9 51-27 7-10 12-20 16-30h241z m-173-301c-17 0-29 13-29 30s12 29 29 29 29-13 29-29-13-30-29-30z m104 0c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z m-580 738c-12 0-21 9-21 21s9 21 21 21h167c11 0 20-9 20-21s-9-21-20-21h-167z m500 0c-12 0-21 9-21 21s9 21 21 21h167c11 0 20-9 20-21s-9-21-20-21h-167z m-241 67c-9 6-11 20-5 29 7 9 20 11 30 4l82-60c11-8 11-25 1-33l-84-65c-9-7-22-5-29 4-7 9-5 22 4 29l61 48-60 44z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-categories" unicode="" d="M479 671c0 7 9 12 21 12s21-5 21-12v-100c0-7-9-13-21-13s-21 6-21 13v100z m-208-92c0-11-9-21-21-21s-21 10-21 21v42c0 34 28 62 63 62h416c35 0 63-28 63-62v-42c0-11-9-21-21-21s-21 10-21 21v42c0 12-9 21-21 21h-416c-12 0-21-9-21-21v-42z m-83-21v-41h125v41h-125z m-30 42h184c7 0 12-5 12-12v-100c0-8-5-13-12-13h-184c-7 0-12 5-12 13v100c0 7 5 12 12 12z m280-42v-41h125v41h-125z m-30 42h184c7 0 12-5 12-12v-100c0-8-5-13-12-13h-184c-7 0-12 5-12 13v100c0 7 5 12 12 12z m280-42v-41h125v41h-125z m-30 42h184c7 0 12-5 12-12v-100c0-8-5-13-12-13h-184c-7 0-12 5-12 13v100c0 7 5 12 12 12z m-168-500c12 0 21-9 21-21s-9-21-21-21h-390c-54 0-100 37-100 86v579c0 48 46 85 100 85h758c55 0 100-37 100-85v-580c0-33-23-63-57-77-7-3-15-5-22-6-3 0-6-1-9-1-5-1-9-1-11-1-12 0-21 8-22 20 0 12 8 21 20 22 2 0 6 0 9 0 3 0 4 0 6 0 5 1 9 3 14 5 19 8 31 23 31 38v580c0 23-25 44-59 44h-758c-33 0-58-21-58-44v-580c0-23 25-43 58-43h390z m122-125h126l46 147h-216l44-147z m183 188c19 0 34-15 34-33 0-3-1-7-2-10l-51-164c-4-14-17-23-31-23h-139c-15 0-28 9-32 24l-54 179c0 0 0 1 0 1-4 11-9 22-16 32-5 7-10 10-17 10-12 0-21 9-21 21s9 20 21 20c21 0 39-9 51-27 7-10 12-20 16-30h241z m-173-301c-17 0-29 13-29 30s12 29 29 29 29-13 29-29-13-30-29-30z m104 0c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-description" unicode="" d="M188 642c-12 0-21 9-21 21s9 20 21 20h626c11 0 21-9 21-20s-10-21-21-21h-626z m0-167c-12 0-21 9-21 21s9 21 21 21h626c11 0 21-9 21-21s-10-21-21-21h-626z m0 83c-12 0-21 10-21 21 0 12 9 21 21 21h527c12 0 21-9 21-21 0-11-9-21-21-21h-527z m0-166c-12 0-21 9-21 21s9 20 21 20h405c12 0 21-9 21-20s-9-21-21-21h-405z m302-292c12 0 21-9 21-21s-9-21-21-21h-390c-54 0-100 37-100 86v579c0 48 46 85 100 85h758c55 0 100-37 100-85v-580c0-33-23-63-57-77-7-3-15-5-22-6-3 0-6-1-9-1-5-1-9-1-11-1-12 0-21 8-22 20 0 12 8 21 20 22 2 0 6 0 9 0 3 0 4 0 6 0 5 1 9 3 14 5 19 8 31 23 31 38v580c0 23-25 44-59 44h-758c-33 0-58-21-58-44v-580c0-23 25-43 58-43h390z m122-125h126l46 147h-216l44-147z m183 188c19 0 34-15 34-33 0-3-1-7-2-10l-51-164c-4-14-17-23-31-23h-139c-15 0-28 9-32 24l-54 179c0 0 0 1 0 1-4 11-9 22-16 32-5 7-10 10-17 10-12 0-21 9-21 21s9 20 21 20c21 0 39-9 51-27 7-10 12-20 16-30h241z m-173-301c-17 0-29 13-29 30s12 29 29 29 29-13 29-29-13-30-29-30z m104 0c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-images" unicode="" d="M416 437h127l45 147h-216l44-147z m184 189c18 0 33-15 33-33 0-4 0-7-2-10l-51-164c-4-14-17-24-31-24h-139c-15 0-27 10-32 24l-54 179c0 1 0 1 0 1-4 11-9 22-16 33-5 6-10 9-17 9-11 0-21 9-21 21s10 21 21 21c21 0 39-10 51-28 7-9 12-19 16-30h242z m-174-301c-16 0-29 13-29 29 0 16 13 29 29 29s29-13 29-29c0-16-13-29-29-29z m104 0c-16 0-29 13-29 29 0 16 13 29 29 29 16 0 29-13 29-29 0-16-13-29-29-29z m-488 483v-625h875v625h-875z m-21 42h917c11 0 20-9 20-21v-666c0-12-9-21-20-21h-917c-12 0-21 9-21 21v666c0 12 9 21 21 21z m21-792v-83h125v83h-125z m-21 42h167c11 0 20-9 20-21v-125c0-12-9-21-20-21h-167c-12 0-21 9-21 21v125c0 12 9 21 21 21z m271-42v-83h125v83h-125z m-21 42h167c11 0 20-9 20-21v-125c0-12-9-21-20-21h-167c-12 0-21 9-21 21v125c0 12 9 21 21 21z m271-42v-83h125v83h-125z m-21 42h167c11 0 20-9 20-21v-125c0-12-9-21-20-21h-167c-12 0-21 9-21 21v125c0 12 9 21 21 21z m271-42v-83h125v83h-125z m-21 42h167c11 0 20-9 20-21v-125c0-12-9-21-20-21h-167c-12 0-21 9-21 21v125c0 12 9 21 21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-info" unicode="" d="M490 100c12 0 21-9 21-21s-9-21-21-21h-390c-54 0-100 37-100 86v579c0 48 46 85 100 85h758c55 0 100-37 100-85v-580c0-33-23-63-57-77-7-3-15-5-22-6-3 0-6-1-9-1-5-1-9-1-11-1-12 0-21 8-22 20 0 12 8 21 20 22 2 0 6 0 9 0 3 0 4 0 6 0 5 1 9 3 14 5 19 8 31 23 31 38v580c0 23-25 44-59 44h-758c-33 0-58-21-58-44v-580c0-23 25-43 58-43h390v0z m122-125h126l46 147h-216l44-147z m183 188c19 0 34-15 34-33 0-3-1-7-2-10l-51-164c-4-14-17-23-31-23h-139c-15 0-28 9-32 24l-54 179c0 0 0 1 0 1-4 11-9 22-16 32-5 7-10 10-17 10-12 0-21 9-21 21s9 20 21 20c21 0 39-9 51-27 7-10 12-20 16-30h241v0z m-173-301c-17 0-29 13-29 30s12 29 29 29 29-13 29-29-13-30-29-30z m104 0c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z m-188 552l-4-12c-11-3-21-6-28-8-7-1-16-3-25-3-14 0-25 3-33 8-8 5-12 12-12 20 0 3 0 6 1 9s1 7 3 11l15 39c1 4 2 7 3 10 1 4 1 7 1 10 0 5-1 8-4 10s-8 3-16 3c-4 0-8-1-11-1-5-1-8-2-11-3l4 12c10 3 19 6 28 8s17 3 25 3c14 0 26-3 33-8 8-5 12-12 12-19 0-2-1-5-1-9s-2-8-3-12l-15-38c-1-3-2-7-3-11-1-3-1-7-1-9 0-5 2-9 4-10 4-2 9-3 17-3 3 0 7 0 12 1 4 1 7 1 9 2z m4 162c0-7-4-13-11-17s-15-7-25-7c-9 0-18 2-25 7s-10 10-10 17 3 12 10 17 16 7 25 7 18-2 25-7c7-5 11-10 11-17z m-63-288c-115 0-208 93-208 208s93 208 208 208 209-93 209-208-94-208-209-208z m0 41c92 0 167 75 167 167s-75 167-167 167-166-75-166-167 74-167 166-167z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-meta" unicode="" d="M229 350c0 12-9 21-21 21s-20-9-20-21 9-21 20-21 21 9 21 21z m42 0c0-35-28-62-63-62s-62 27-62 62 28 63 62 63 63-28 63-63z m125 0c0 12-9 21-21 21s-21-9-21-21 9-21 21-21 21 9 21 21z m42 0c0-35-28-62-63-62s-62 27-62 62 27 63 62 63 63-28 63-63z m125 0c0 12-10 21-21 21s-21-9-21-21 9-21 21-21 21 9 21 21z m41 0c0-35-28-62-62-62s-63 27-63 62 28 63 63 63 62-28 62-63z m-114-250c12 0 21-9 21-21s-9-21-21-21h-390c-54 0-100 37-100 86v579c0 48 46 85 100 85h758c55 0 100-37 100-85v-580c0-33-23-63-57-77-7-3-15-5-22-6-3 0-6-1-9-1-5-1-9-1-11-1-12 0-21 8-22 20 0 12 8 21 20 22 2 0 6 0 9 0 3 0 4 0 6 0 5 1 9 3 14 5 19 8 31 23 31 38v580c0 23-25 44-59 44h-758c-33 0-58-21-58-44v-580c0-23 25-43 58-43h390z m122-125h126l46 147h-216l44-147z m183 188c19 0 34-15 34-33 0-3-1-7-2-10l-51-164c-4-14-17-23-31-23h-139c-15 0-28 9-32 24l-54 179c0 0 0 1 0 1-4 11-9 22-16 32-5 7-10 10-17 10-12 0-21 9-21 21s9 20 21 20c21 0 39-9 51-27 7-10 12-20 16-30h241z m-173-301c-17 0-29 13-29 30s12 29 29 29 29-13 29-29-13-30-29-30z m104 0c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-pages" unicode="" d="M270 37h-21c-12 0-21 9-21 21v45h-45c-12 0-21 9-21 20v429c0 6 2 11 6 15l198 198c4 3 9 6 14 6h264c11 0 21-9 21-21v-45h45c11 0 20-9 20-21v-21h48c12 0 21-9 21-20v-433c0-12-9-21-21-21-11 0-20 9-20 21v412h-28v-412c0-12-9-21-20-21-12 0-21 9-21 21v453h-24v-439c0-12-10-21-21-21-12 0-21 9-21 21v505h-234l-185-185v-399h350c11 0 21-10 21-21s-10-21-21-21h-284v-24h308c12 0 21-9 21-21 0-12-9-21-21-21h-267v-27h293c12 0 21-10 21-21 0-12-9-21-21-21h-314c-11 0-20 9-20 21v48z m425-62h127l45 147h-216l44-147z m184 188c18 0 33-15 33-33 0-3 0-7-2-10l-50-164c-5-14-17-23-32-23h-139c-14 0-27 9-32 24l-54 179c0 0 0 1 0 1-3 11-9 22-16 32-4 7-9 10-17 10-11 0-20 9-20 21s9 20 20 20c21 0 39-9 51-27 7-10 12-20 17-30h241z m-174-301c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z m104 0c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z m-449 711v127l29 30h12v-177c0-12-9-21-21-21h-176v12l29 29h127z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-price" unicode="" d="M755 320c-57 0-102 34-106 78-1 12 8 22 19 22 12 1 22-7 23-19 2-21 31-39 64-39 35 0 64 19 64 41 0 21-20 34-64 42l-4 0c-69 13-102 40-102 83 0 46 48 84 106 84 57 0 103-34 106-78 1-11-7-21-19-22-11-2-22 7-23 19-1 22-30 39-64 39-34 0-63-19-63-41 0-21 20-34 63-41l5-1c68-13 101-40 101-83 0-46-47-84-106-84z m0-41c-12 0-21 9-21 21v333c0 12 9 21 21 21s21-9 21-21v-333c0-12-9-21-21-21z m-265-179c12 0 21-9 21-21s-9-21-21-21h-390c-54 0-100 37-100 86v579c0 48 46 85 100 85h758c55 0 100-37 100-85v-580c0-33-23-63-57-77-7-3-15-5-22-6-3 0-6-1-9-1-5-1-9-1-11-1-12 0-21 8-22 20 0 12 8 21 20 22 2 0 6 0 9 0 3 0 4 0 6 0 5 1 9 3 14 5 19 8 31 23 31 38v580c0 23-25 44-59 44h-758c-33 0-58-21-58-44v-580c0-23 25-43 58-43h390z m122-125h126l46 147h-216l44-147z m183 188c19 0 34-15 34-33 0-3-1-7-2-10l-51-164c-4-14-17-23-31-23h-139c-15 0-28 9-32 24l-54 179c0 0 0 1 0 1-4 11-9 22-16 32-5 7-10 10-17 10-12 0-21 9-21 21s9 20 21 20c21 0 39-9 51-27 7-10 12-20 16-30h241z m-173-301c-17 0-29 13-29 30s12 29 29 29 29-13 29-29-13-30-29-30z m104 0c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z m-198 509c15 0 29 14 29 33v107c0 18-13 33-29 33s-28-15-28-33v-107c0-19 13-33 28-33z m0-42c-39 0-70 34-70 75v107c0 41 31 74 70 74s70-33 70-74v-107c0-41-30-75-70-75z m-182 107c-6 0-12-6-12-15v-36c0-8 6-15 12-15h33c6 0 12 7 12 15v36c0 9-6 15-12 15h-33z m-54-15v54c0 60 46 110 103 110 11 0 20-9 20-21 0-11-9-21-20-21-33 0-61-29-61-66 4 1 8 1 12 1h33c30 0 54-26 54-57v-36c0-30-24-56-54-56h-33c-30 0-54 26-54 56v36z m-101 59c15 0 28 15 28 33s-13 33-28 33c-16 0-28-9-28-15 0-12-10-21-21-21s-21 9-21 21c0 32 33 57 70 57 39 0 70-34 70-75 0-21-8-40-21-54 13-14 21-32 21-54 0-40-31-74-70-74-37 0-70 24-70 57 0 11 9 20 21 20s21-9 21-20c0-6 12-15 28-15 15 0 28 14 28 32 0 19-13 33-28 33h-16c-12 0-21 10-21 21s9 21 21 21h16z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-rating" unicode="" d="M490 100c12 0 21-9 21-21s-9-21-21-21h-390c-54 0-100 37-100 86v579c0 48 46 85 100 85h758c55 0 100-37 100-85v-580c0-33-23-63-57-77-7-3-15-5-22-6-3 0-6-1-9-1-5-1-9-1-11-1-12 0-21 8-22 20 0 12 8 21 20 22 2 0 6 0 9 0 3 0 4 0 6 0 5 1 9 3 14 5 19 8 31 23 31 38v580c0 23-25 44-59 44h-758c-33 0-58-21-58-44v-580c0-23 25-43 58-43h390z m122-125h126l46 147h-216l44-147z m183 188c19 0 34-15 34-33 0-3-1-7-2-10l-51-164c-4-14-17-23-31-23h-139c-15 0-28 9-32 24l-54 179c0 0 0 1 0 1-4 11-9 22-16 32-5 7-10 10-17 10-12 0-21 9-21 21s9 20 21 20c21 0 39-9 51-27 7-10 12-20 16-30h241z m-173-301c-17 0-29 13-29 30s12 29 29 29 29-13 29-29-13-30-29-30z m104 0c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z m-258 709c-6-8-6-8-15-10h-17l12-11c5-7 5-7 5-15l-5-27 23 13c8 4 8 4 17 0l22-13-5 27c0 9 0 9 5 15l12 11h-16c-10 2-10 2-15 10l-12 29-11-29z m-4 77c8 10 8 10 21 9 6-4 6-4 9-9l23-55h46c12-3 12-3 16-16-1-7-1-7-5-12l-36-33 10-54c-1-13-1-13-13-19-5 0-5 0-11 2l-45 27-44-27c-13-3-13-3-22 6-3 5-3 5-3 11l10 54-35 33c-7 12-7 12-1 23 5 5 5 5 12 5h46l22 55z m254-77c-6-8-6-8-15-10h-17l12-11c5-7 5-7 5-15l-5-27 23 13c8 4 8 4 17 0l22-13-5 27c0 9 0 9 5 15l12 11h-16c-10 2-10 2-15 10l-12 29-11-29z m-4 77c8 10 8 10 21 9 6-4 6-4 9-9l23-55h46c12-3 12-3 16-16-1-7-1-7-5-12l-36-33 10-54c-1-13-1-13-13-19-5 0-5 0-11 2l-45 27-44-27c-13-3-13-3-22 6-3 5-3 5-3 11l10 54-35 33c-7 12-7 12-1 23 5 5 5 5 12 5h46l22 55z m-496-77c-6-8-6-8-15-10h-17l12-11c5-7 5-7 5-15l-5-27 23 13c8 4 8 4 17 0l22-13-5 27c0 9 0 9 5 15l12 11h-16c-10 2-10 2-15 10l-12 28-11-28z m-4 77c8 10 8 10 21 9 6-4 6-4 9-9l23-55h46c12-3 12-3 16-16-1-7-1-7-5-12l-36-33 10-54c-1-13-1-13-13-19-5 0-5 0-11 2l-45 27-44-27c-13-3-13-3-22 6-3 5-3 5-3 11l10 54-35 33c-7 12-7 12-1 23 5 5 5 5 12 5h46l22 55z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-related" unicode="" d="M42 350h625v63c0 34-28 62-63 62h-500c-34 0-62-28-62-62v-63z m625-42h-625v-354c0-34 28-62 62-62h500c35 0 63 28 63 62v354z m41-354c0-57-46-104-104-104h-500c-57 0-104 47-104 104v459c0 57 47 104 104 104h500c58 0 104-47 104-104v-459z m-583 459c0-12-9-21-21-21s-21 9-21 21 10 20 21 20 21-9 21-20m83 0c0-12-9-21-20-21s-21 9-21 21 9 20 21 20 20-9 20-20m84 0c0-12-9-21-21-21-12 0-21 9-21 21s9 20 21 20c12 0 21-9 21-20m6 235c-4 4-6 9-6 15v83c0 57 46 104 104 104h500c57 0 104-47 104-104v-458c0-58-47-105-104-105h-83c-12 0-21 10-21 21s9 21 21 21h83c34 0 62 28 62 63v354h-645c-6 0-11 2-15 6z m660 35v63c0 34-28 62-62 62h-500c-35 0-63-28-63-62v-63h625z m-541 63c0-12-9-21-21-21s-21 9-21 21 9 21 21 21 21-9 21-21m83 0c0-12-9-21-21-21s-21 9-21 21 10 21 21 21 21-9 21-21m83 0c0-12-9-21-20-21s-21 9-21 21 9 21 21 21 20-9 20-21m-452-265c-3 4-6 9-6 15v83c0 58 47 104 104 104h500c58 0 104-46 104-104v-458c0-58-46-104-104-104h-41c-12 0-21 9-21 21s9 20 21 20h41c35 0 63 28 63 63v354h-646c-6 0-11 3-15 6z m661 36v62c0 35-28 63-63 63h-500c-34 0-62-28-62-63v-62h625z m-542 62c0-11-9-21-21-21s-21 10-21 21c0 12 10 21 21 21s21-9 21-21m83 0c0-11-9-21-20-21s-21 10-21 21c0 12 9 21 21 21s20-9 20-21m84 0c0-11-9-21-21-21s-21 10-21 21c0 12 9 21 21 21s21-9 21-21m-105-538h126l46 147h-216l44-147z m183 189c19 0 34-15 34-33 0-4-1-7-2-10l-51-164c-4-14-17-23-31-23h-139c-15 0-28 9-32 23l-54 180c0 0 0 0 0 0-4 12-9 22-16 33-5 7-10 9-17 9-12 0-21 10-21 21s9 21 21 21c21 0 39-9 51-27 7-10 12-20 16-30h241z m-173-301c-17 0-29 13-29 29s12 29 29 29 29-12 29-29-13-29-29-29z m104 0c-16 0-29 13-29 29s13 29 29 29 29-12 29-29-13-29-29-29z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-stock" unicode="" d="M389 435l71 245c7 24 41 19 41-5v-672c0-13-12-23-25-20l-343 75c-9 2-16 10-16 20v335c0 12 9 21 21 21h251z m35-27c-2-9-11-15-20-15h-245v-298l301-65v499l-36-121z m28 243l-299-33-62-183h297l64 216z m-48-258h-342c-14 0-24 14-19 27l76 224c2 8 9 14 17 14l343 37c14 2 26-12 22-26l-76-261c-3-9-12-15-21-15z m429 42c12 0 21-10 21-21v-200c0-12-9-21-21-21s-21 9-21 21v179h-256c-9 0-17 6-20 15l-35 121v-499l130 28c11 2 22-5 24-16 3-11-4-22-15-24l-156-34c-13-3-25 7-25 20v671c0 24 34 29 41 5l71-245h262z m-277-42c-9 0-17 6-20 15l-76 261c-4 14 8 28 22 26l343-37c8 0 15-6 18-14l76-224c4-13-6-27-20-27h-343z m16 42h298l-63 183-298 33 63-216z m169-460h127l45 147h-216l44-147z m184 188c18 0 33-15 33-33 0-3 0-7-2-10l-51-164c-4-14-17-23-31-23h-139c-15 0-27 9-32 24l-54 179c0 0 0 1 0 1-4 11-9 22-16 32-5 7-10 10-17 10-11 0-21 9-21 21s10 20 21 20c21 0 39-9 51-27 7-10 12-20 16-30h242z m-174-301c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z m104 0c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-tabs" unicode="" d="M737-25h126l46 147h-216l44-147z m183 188c19 0 34-15 34-33 0-3-1-7-2-10l-51-164c-4-14-17-23-31-23h-139c-15 0-28 9-32 24l-54 179c0 0 0 1 0 1-4 11-9 22-16 32-5 7-10 10-17 10-12 0-21 9-21 21s9 20 21 20c21 0 39-9 51-27 7-10 12-20 16-30h241z m-173-301c-17 0-29 13-29 30s12 29 29 29 29-13 29-29-13-30-29-30z m104 0c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z m-516 738h478c35 0 62-28 62-62v-328c0-11-9-20-20-20s-21 9-21 20v328c0 11-9 20-21 20h-486c-12 0-22 7-27 19l-37 93c-4 8-11 13-20 13h-140c-8 0-16-5-19-14l-40-109c-1-5-2-9-2-14v-468c0-11 9-20 21-20h555c12 0 21-10 21-21s-9-21-21-21h-555c-35 0-63 28-63 62v468c0 9 2 19 5 28l40 110c8 25 32 41 58 41h140c26 0 49-15 58-39l34-86z m219-3l-26 73c-3 8-11 13-20 13h-145c-9 0-18-6-20-15l-12-43c-3-11-14-17-26-14-11 3-17 14-14 26l12 42c7 27 32 46 60 46h145c26 0 49-16 58-41l31-84c5-15-2-32-18-37-5-2-10-3-15-2-11 2-19 13-17 25 1 4 3 8 7 11z m39 29c-3-11-15-18-26-15-11 3-17 15-14 26l11 43c8 27 32 45 60 45h145c26 0 50-16 59-42l44-126c4-11-2-23-13-27s-23 2-26 13l-45 127c-3 8-10 14-19 14h-144c-9 0-17-6-20-16l-12-42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-title" unicode="" d="M458 308c0 1 0 1 0 1v291h-125v-33c0-12-9-21-20-21s-21 9-21 21v54c0 12 9 21 21 21h333c12 0 21-9 21-21v-54c0-12-9-21-21-21s-21 9-21 21v33h-125v-291c0 0 0 0 0-1h42c11 0 21-9 21-20s-10-21-21-21h-125c-12 0-21 9-21 21s9 20 21 20h41z m32-208c12 0 21-9 21-21s-9-21-21-21h-390c-54 0-100 37-100 86v579c0 48 46 85 100 85h758c55 0 100-37 100-85v-580c0-33-23-63-57-77-7-3-15-5-22-6-3 0-6-1-9-1-5-1-9-1-11-1-12 0-21 8-22 20 0 12 8 21 20 22 2 0 6 0 9 0 3 0 4 0 6 0 5 1 9 3 14 5 19 8 31 23 31 38v580c0 23-25 44-59 44h-758c-33 0-58-21-58-44v-580c0-23 25-43 58-43h390z m122-125h126l46 147h-216l44-147z m183 188c19 0 34-15 34-33 0-3-1-7-2-10l-51-164c-4-14-17-23-31-23h-139c-15 0-28 9-32 24l-54 179c0 0 0 1 0 1-4 11-9 22-16 32-5 7-10 10-17 10-12 0-21 9-21 21s9 20 21 20c21 0 39-9 51-27 7-10 12-20 16-30h241z m-173-301c-17 0-29 13-29 30s12 29 29 29 29-13 29-29-13-30-29-30z m104 0c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-upsell" unicode="" d="M741-25h127l45 147h-216l44-147z m184 188c18 0 33-15 33-33 0-3 0-7-2-10l-51-164c-4-14-17-23-31-23h-139c-15 0-27 9-32 24l-54 179c0 0 0 1 0 1-4 11-9 22-16 32-5 7-10 10-17 10-11 0-21 9-21 21s10 20 21 20c21 0 39-9 51-27 7-10 12-20 16-30h242z m-174-301c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z m104 0c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z m-378 418c-9-6-22-4-29 6-7 9-4 22 5 29 67 46 108 123 108 207 0 137-109 249-243 249-134 0-243-112-243-249 0-101 58-190 147-229 10-5 15-17 10-28-4-10-17-15-27-10-104 46-172 150-172 267 0 160 127 291 285 291 157 0 285-131 285-291 0-98-48-188-126-242z m238 172c8 8 22 8 30 0 8-8 8-21 0-29l-247-253c-8-9-22-9-30 0l-117 119-183-187c-8-8-21-8-29 0-9 8-9 21-1 29l198 203c9 8 22 8 30 0l117-120 232 238z m98 91c11 0 20-10 20-21v-169c0-19-22-28-35-15l-165 169c-13 13-4 36 15 36h165z m-116-42l95-97v97h-95z m-466-35c-1 12 8 22 19 23 12 1 22-8 23-19 1-15 20-29 45-29 26 0 45 15 45 30 0 10-7 17-21 23-5 2-10 3-16 5-3 1-13 2-12 2 1 0-9 2-14 3-7 1-15 4-22 6-28 12-47 32-47 62 0 41 40 72 87 72 45 0 83-28 87-67 0-12-8-22-20-22s-21 7-22 19c-1 14-20 28-45 28-26 0-45-14-45-30 0-10 7-17 21-23 5-2 10-3 16-5 3-1 13-2 12-2-1 0 9-2 13-3 8-1 15-4 23-6 28-12 47-32 47-62 0-41-40-71-87-71-45 0-84 28-87 66z m66 191c0 11 9 21 21 21 12 0 21-10 21-21v-270c0-12-9-21-21-21-12 0-21 9-21 21v270z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="products" unicode="" d="M542 808v-375h375v375h-375z m-21 42h417c11 0 20-9 20-21v-416c0-12-9-21-20-21h-417c-12 0-21 9-21 21v416c0 12 9 21 21 21z m-479-42v-375h375v375h-375z m-21 42h417c11 0 20-9 20-21v-416c0-12-9-21-20-21h-417c-12 0-21 9-21 21v416c0 12 9 21 21 21z m521-542v-375h375v375h-375z m-21 42h417c11 0 20-9 20-21v-417c0-11-9-20-20-20h-417c-12 0-21 9-21 20v417c0 12 9 21 21 21z m-479-42v-375h375v375h-375z m-21 42h417c11 0 20-9 20-21v-417c0-11-9-20-20-20h-417c-12 0-21 9-21 20v417c0 12 9 21 21 21z m185 219h89l33 111h-154l32-111z m134 149c16 0 29-13 29-29 0-3-1-5-1-8l-38-128c-4-13-15-21-28-21h-102c-13 0-25 8-28 21l-41 140c0 1 0 1 0 1-3 9-6 17-12 25-3 5-6 6-9 6-11 0-19 9-19 19s8 19 19 19c17 0 31-8 40-23 5-7 9-15 12-22h178z m-130-246c-12 0-21 11-21 23s10 23 21 23 22-10 22-23-9-23-22-23z m78 0c-12 0-21 11-21 23s10 23 21 23 22-10 22-23-10-23-22-23z m418 97h89l33 111h-154l32-111z m134 149c16 0 29-13 29-29 0-3-1-5-1-8l-38-128c-4-13-15-21-28-21h-102c-13 0-25 8-28 21l-41 140c0 1 0 1 0 1-3 9-6 17-12 25-3 5-6 6-9 6-11 0-19 9-19 19s8 19 19 19c17 0 31-8 40-23 5-7 9-15 12-22h178z m-130-246c-12 0-21 11-21 23s10 23 21 23 22-10 22-23-9-23-22-23z m78 0c-12 0-21 11-21 23s10 23 21 23 22-10 22-23-10-23-22-23z m-582-403h89l33 111h-154l32-111z m134 149c16 0 29-13 29-29 0-3-1-5-1-8l-38-128c-4-13-15-21-28-21h-102c-13 0-25 8-28 21l-41 140c0 1 0 1 0 1-3 9-6 17-12 25-3 5-6 6-9 6-11 0-19 9-19 19 0 11 8 19 19 19 17 0 31-8 40-23 5-7 9-15 12-22h178z m-130-246c-12 0-21 10-21 23 0 13 10 23 21 23s22-10 22-23c0-13-9-23-22-23z m78 0c-12 0-21 10-21 23 0 13 10 23 21 23s22-10 22-23c0-13-10-23-22-23z m418 97h89l33 111h-154l32-111z m134 149c16 0 29-13 29-29 0-3-1-5-1-8l-38-128c-4-13-15-21-28-21h-102c-13 0-25 8-28 21l-41 140c0 1 0 1 0 1-3 9-6 17-12 25-3 5-6 6-9 6-11 0-19 9-19 19 0 11 8 19 19 19 17 0 31-8 40-23 5-7 9-15 12-22h178z m-130-246c-12 0-21 10-21 23 0 13 10 23 21 23s22-10 22-23c0-13-9-23-22-23z m78 0c-12 0-21 10-21 23 0 13 10 23 21 23s22-10 22-23c0-13-10-23-22-23z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="bag-light" unicode="" d="M333 558l0 84c6 108 64 165 168 165 104 0 161-57 166-166v-83h83c46 0 83-37 83-83v-500c0-46-37-83-83-83h-500c-46 0-83 37-83 83v500c0 46 37 83 83 83h83z m42 0h250l0 82c-3 85-43 125-124 125-81 0-121-40-126-124l0-83z m-42-41h-83c-23 0-42-19-42-42v-500c0-23 19-42 42-42h500c23 0 42 19 42 42v500c0 23-19 42-42 42h-83v-121c0-12-9-21-21-21s-21 9-21 21l0 121h-250l0-121c0-12-9-21-21-21-11 0-21 9-21 21l0 121z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="bag-medium" unicode="" d="M323 558l0 85c6 112 68 174 178 174 109 0 172-62 176-176v-83h73c46 0 83-37 83-83v-500c0-46-37-83-83-83h-500c-46 0-83 37-83 83v500c0 46 37 83 83 83h73z m62 0h230l0 82c-4 80-38 115-114 115-76 0-111-35-116-114l0-83z m-62-62h-73c-12 0-21-9-21-21v-500c0-12 9-21 21-21h500c12 0 21 9 21 21v500c0 12-9 21-21 21h-73v-100c0-17-14-31-31-31s-31 14-31 31l0 100h-230l0-100c0-17-14-31-31-31-17 0-31 14-31 31l0 100z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="bag-solid" unicode="" d="M333 558l0 84c6 108 64 165 168 165 104 0 161-57 166-166v-83h83c46 0 83-37 83-83v-500c0-46-37-83-83-83h-500c-46 0-83 37-83 83v500c0 46 37 83 83 83h83z m42 0h250l0 82c-3 85-43 125-124 125-81 0-121-40-126-124l0-83z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="basket-light" unicode="" d="M125 475c0 0 0 0 0 0h131l68 203c8 27 34 47 63 47h268c30 0 56-20 63-48l68-202h130c1 0 1 0 1 0h62c12 0 21-9 21-21s-9-21-21-21h-44l-62-381c-13-46-53-77-100-77h-503c-47 0-88 31-101 79l-62 379h-44c-12 0-21 10-21 21s9 21 21 21h62z m25-42l60-370c7-27 32-46 60-46h503c28 0 52 18 60 43l60 373h-743z m592 42l-63 190c-3 11-13 18-24 18h-268c-11 0-20-7-23-17l-64-191h442z m-242-146c0 12 9 21 21 21s21-9 21-21v-208c0-12-9-21-21-21s-21 9-21 21v208z m187-211c-2-11-12-19-24-18-11 2-19 13-17 24l29 206c2 12 13 20 24 18 11-2 19-12 18-24l-30-206z m-292 6c2-11-6-22-17-24-11-2-22 6-24 18l-29 206c-2 11 6 22 18 24 11 2 22-6 23-18l29-206z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="basket-medium" unicode="" d="M104 485c0 0 1 0 1 0h103l71 197c9 31 41 53 76 53h291c35 0 67-22 77-55l70-195h103c0 0 1 0 1 0h61c17 0 32-14 32-31s-15-31-32-31h-35l-61-374c-14-50-59-84-110-84h-503c-51 0-97 34-111 87l-60 371h-36c-17 0-32 14-32 31s15 31 32 31h62z m37-62l58-358c6-22 26-38 50-38h503c23 0 44 16 49 35l59 361h-719z m585 62l-63 176c-3 7-9 12-18 12h-290c-9 0-15-5-17-10l-64-178h452z m-257-156c0 17 14 31 31 31s31-14 31-31v-208c0-17-14-31-31-31s-31 14-31 31v208z m208-213c-3-17-19-28-36-26-17 2-28 18-26 35l29 206c3 17 19 29 36 27s28-18 26-35l-29-207z m-292 9c3-17-10-32-27-35-17-2-33 10-35 27l-30 206c-2 17 10 33 27 35 17 3 33-9 35-26l30-207z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="basket-solid" unicode="" d="M128 433h-65c-12 0-21 10-21 21s9 21 21 21h193l68 203c8 27 34 47 63 47h268c30 0 56-20 63-48l68-202h193c12 0 21-9 21-21s-9-21-21-21h-66l-60-376c-10-36-43-61-81-61h-502c-37 0-70 25-80 61l-62 376z m614 42l-63 190c-3 11-13 18-24 18h-268c-11 0-20-7-23-17l-64-191h442z m-242-146v-208c0-12 9-21 21-21s21 9 21 21v208c0 12-9 21-21 21s-21-9-21-21z m187-211l30 206c1 11-7 22-18 24-11 2-22-6-24-18l-29-206c-2-11 6-22 17-24 12-1 23 7 24 18z m-292 6l-29 206c-2 11-12 19-24 18-11-2-19-13-17-24l29-206c2-12 12-20 24-18 11 2 19 13 17 24z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="cart-light" unicode="" d="M708-4c0-35 28-63 63-63 34 0 62 28 62 63 0 34-28 62-62 62-35 0-63-28-63-62z m-520 687l750 0c12 0 22-11 20-23l-32-260c-7-52-51-92-104-92l-559 0 8-41c10-49 53-84 102-84l481 0c12 0 21-9 21-20 0-12-9-21-21-21l-481 0c-69 0-129 49-143 117l-101 508-108 0c-12 0-21 9-21 21 0 11 9 20 21 20l125 0c10 0 18-7 20-16l22-109z m8-41l59-292 567 0c32 0 58 24 62 55l30 237-718 0z m471-646c0 57 46 104 104 104 57 0 104-47 104-104 0-58-47-104-104-104-58 0-104 46-104 104z m-417 0c0 57 47 104 104 104 58 0 104-47 104-104 0-58-46-104-104-104-57 0-104 46-104 104z m42 0c0-35 28-63 62-63 35 0 63 28 63 63 0 34-28 62-63 62-34 0-62-28-62-62z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="cart-medium" unicode="" d="M740-4c0-29 23-52 52-52s52 23 52 52-24 52-52 52-52-23-52-52z m-523 698h741c19 0 34-17 31-35l-32-261c-7-57-56-100-114-100h-546l6-29c8-44 47-75 92-75h480c17 0 31-14 31-31s-14-32-31-32h-481c-74 0-139 53-153 126l-100 499h-99c-17 0-32 14-32 32s15 31 32 31h125c15 0 28-11 31-25l19-100z m13-63l54-271h559c26 0 48 20 52 46l28 225h-693z m447-635c0 63 51 114 115 114s114-51 114-114-51-115-114-115-115 51-115 115z m-417 0c0 63 52 114 115 114s115-51 115-114-52-115-115-115-115 51-115 115z m63 0c0-29 23-52 52-52s52 23 52 52-23 52-52 52-52-23-52-52z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="cart-solid" unicode="" d="M188 683h750c5 0 11-2 15-7 4-4 6-10 5-16l-32-260c-7-52-51-92-103-92h-560l8-41c10-48 53-84 102-84h481c12 0 21-9 21-20s-9-21-21-21h-481c-69 0-129 49-143 117l-101 508h-108c-12 0-21 9-21 21s9 20 21 20h125c10 0 18-7 20-16l22-109z m583-583c57 0 104-47 104-104s-47-104-104-104-104 46-104 104 46 104 104 104z m-417 0c58 0 104-47 104-104s-46-104-104-104-104 46-104 104 47 104 104 104z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="exchange" unicode="" d="M392 600v-345c0-17-19-30-42-30s-42 13-42 30v345h-104c-6 0-10 2-14 5-5 4-7 8-7 13 0 5 2 10 7 13l145 130c5 4 10 5 15 5s10-1 15-5l145-130c5-3 7-8 7-13 0-5-2-9-7-13-4-3-9-5-14-5h-104z m208-500v345c0 17 19 30 42 30s41-13 41-30v-345h105c5 0 10-2 14-5s6-8 6-13-2-9-6-13l-146-130c-4-4-9-5-14-5s-11 1-15 5l-146 130c-4 4-6 8-6 13s2 9 6 13 9 5 15 5h104z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="preview-thin" unicode="" d="M500 663c117 0 233-50 338-134 79-62 141-146 141-179s-62-112-141-179c-105-83-221-133-338-133s-233 50-337 133c-80 67-142 146-142 179s62 113 142 179c104 84 220 134 337 134z m192-92l0 0c37-46 58-100 58-158 0-138-112-250-250-250s-250 112-250 250c0 62 21 116 58 158-41-21-79-46-120-79-71-59-125-129-125-146s58-88 125-146c95-79 204-125 312-125s217 46 313 125c70 58 125 129 125 146s-59 87-125 146c-42 33-80 62-121 79z m-192 50l-8 0c-113-4-200-96-200-208 0-117 91-209 208-209s208 92 208 209c0 112-87 204-200 208l-8 0z m0-108c54 0 100-46 100-100 0-55-46-100-100-100s-100 45-100 100c0 4 0 4 0 8 8-4 17-4 25-4 42 0 75 33 75 75 4 8 4 12 0 21l0 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="device-laptop" unicode="" d="M797 646c41 0 75-34 75-75v-390c0-13-3-25-9-35h82c7 0 13-6 13-14v-31c0-26-20-46-45-46h-825c-26 0-46 20-46 46v31c0 8 6 14 13 14h77c-5 10-9 22-9 35v390c0 41 34 75 75 75h599z m-8-83h-582v-374h582v374z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="collapse" unicode="" d="M826-108h-652c-73 0-132 59-132 132v652c0 73 59 132 132 132h652c73 0 132-59 132-132v-652c0-73-59-132-132-132z m-652 823c-21 0-39-17-39-39v-652c0-21 18-39 39-39h652c21 0 39 18 39 39v652c0 22-18 39-39 39h-652z m76-457c0 8 3 16 9 22l219 227c6 6 13 10 22 10s16-4 22-10l219-227c6-6 9-14 9-22s-3-17-9-23c-6-7-13-10-22-10h-438c-8 0-16 3-22 10-6 6-9 14-9 23z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="expand" unicode="" d="M865 715v-730h-730v730h730z m8 93h-746c-47 0-85-38-85-85v-746c0-47 38-85 85-85h746c47 0 85 38 85 85v746c0 47-38 85-85 85z m-623-365c0-9 3-17 9-23l219-227c6-6 13-10 22-10s16 4 22 10l219 227c6 6 9 14 9 23s-3 16-9 22-13 10-22 10h-438c-8 0-16-3-22-10s-9-14-9-22z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="navigator" unicode="" d="M936 613l-418 192c-11 5-24 5-35 0l-419-192c-14-7-22-20-22-34s8-27 22-33l418-192c6-3 12-4 18-4s12 1 18 4l418 192c14 6 22 19 22 33s-8 27-22 34z m-46-205c23 11 52 1 63-23 12-23 2-52-22-63l-411-195c-12-7-28-7-41 0l-410 195c-24 11-34 40-23 63s40 35 64 23l390-185 390 185z m0-229c23 11 52 1 63-23s2-52-22-63l-411-196c-12-6-28-6-41 0l-410 196c-24 11-34 40-23 63s40 34 64 23l390-186 390 186z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="plug" unicode="" d="M404 625l179 183c30 30 75 30 105 0l0 0c29-29 29-75 0-104l-180-179 125-125 180 179c29 29 75 29 104 0l0 0c29-29 29-75 0-104l-179-179 41-42c9-8 9-21 0-29l-75-83c-8-9-21-9-29 0l-25 25-117-117c-79-79-200-83-283-17l-121-121c-8-8-21-8-29 0s-8 21 0 30l121 121-46 45-121-121c-8-8-21-8-29 0-8 9-8 21 0 30l121 125c-67 83-63 204 17 283l116 117-25 21c-4 8-4 20 0 29l79 75c9 8 21 8 30 0l41-42z m75-75l179 179c13 13 13 34 0 46l0 0c-12 13-33 13-45 0l-180-179 46-46z m229-229l180 179c12 13 12 33 0 46l0 0c-13 12-34 12-46 0l-179-179 45-46z m-362 304l-46-46 25-25c8-8 8-21 0-29l-133-133c-67-67-67-175 0-242l75-75c66-67 175-67 241 0l134 133c8 9 21 9 29 0l25-25 46 46-396 396z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="dashboard" unicode="" d="M500 558c25 0 42-16 42-41s-17-42-42-42-42 17-42 42 17 41 42 41z m208-83c25 0 42-17 42-42s-17-41-42-41-41 16-41 41 16 42 41 42z m-416 0c25 0 41-17 41-42s-16-41-41-41-42 16-42 41 17 42 42 42z m-84-167c25 0 42-16 42-41s-17-42-42-42-41 17-41 42 16 41 41 41z m584 0c25 0 41-16 41-41s-16-42-41-42-42 17-42 42 17 41 42 41z m-217-154c-4 34-21 63-50 79-29 17-62 17-92 5l-12 4 208 166-41-262-13 8z m-92-100c-16 0-37 4-50 13-25 12-41 37-50 62-8 25-4 54 9 79s37 42 62 50 54 5 79-8c25-12 42-37 50-62 9-25 5-55-8-80s-37-41-62-50c-13 0-21-4-30-4z m0 167c-4 0-12 0-16-4-17-4-29-17-38-29-8-13-12-34-4-46 4-17 17-29 29-38 13-8 34-12 46-8 17 4 29 17 38 29 8 13 12 33 4 46-4 17-17 29-29 37v0c-9 13-17 13-30 13z m409-267h-784l-4 8c-66 88-104 192-104 305 0 275 225 500 500 500 275 0 500-225 500-500 0-113-37-217-104-305l-4-8z m-763 42h742c58 79 87 171 87 271 0 254-204 458-458 458s-458-204-458-458c0-100 29-192 87-271z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="typography" unicode="" d="M146 504v-583c0-4 4-13 12-13h663v867c0 4-4 13-13 13h-379v-230c0-29-25-54-54-54h-229z m246 284l0 0-238-242h225c4 0 13 4 13 12v230z m-234-921c-29 0-54 25-54 54v625c0 4 4 12 4 12l255 263c4 4 8 8 16 8h434c29 0 54-25 54-54v-888c0-12-9-20-21-20h-271-417z m255 316l-59 142-58-142h117z m45-125l-37 92h-138l-37-92h-42l129 330h46l129-330h-50z m230 30c-25-25-50-38-75-38-21 0-38 8-50 21s-21 29-21 46c0 25 12 46 33 62 21 13 54 21 96 21h12v29c0 29-12 42-41 42-25 0-50-8-75-21v38c29 12 58 16 83 16 29 0 46-4 58-16 13-13 21-34 21-59v-108c0-25 9-38 25-38 0 0 4 0 9 0l4-25c-9-4-21-8-34-8-29 4-41 17-45 38z m-9 25v62l-16 0c-25 0-42-4-59-12-12-9-21-21-21-38 0-12 5-21 13-25 8-8 17-12 29-12 17 0 33 8 54 25z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="info-circle-o" unicode="" d="M479 483c0 34 29 59 63 59 33 0 62-25 62-59 0-33-29-58-62-58-34 0-63 25-63 58z m125-320c0-5-4-9-8-13-21-21-50-29-83-33-13 0-30 0-42 0-38 8-58 33-54 66 8 38 16 75 21 113 4 12 4 21 8 33 0 4 0 9 0 13 0 8-8 12-17 12-4 0-8 0-12 0-4 0-13 4-17 4-8 5-8 17 4 17 4 0 9 4 17 4 21 0 42 0 62 0h59c12 0 21-8 25-16 0-13-4-25-4-38-9-37-17-71-21-104-4-13-4-25-9-38 0-4 0-8 0-12 5-17 13-21 30-17 4 0 8 4 16 4 4 0 9 5 17 9 4 8 8 4 8-4z m-104-313c-275 0-500 225-500 500s225 500 500 500 500-225 500-500-225-500-500-500z m0 42c254 0 458 204 458 458s-204 458-458 458-458-204-458-458 204-458 458-458z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="integration" unicode="" d="M275 679l417-241c8-5 12-17 8-30s-17-12-29-8l-417 242c-33-42-91-50-141-25-50 33-71 100-38 154s100 71 154 42c46-30 63-84 46-134z m475-412l-417-242c-8-4-20-4-29 8-4 9-4 21 9 30l416 241c-16 50 4 104 50 134 54 29 121 12 154-42 30-54 13-121-41-154-46-25-104-13-142 25z m-617-184v459c0 12 9 21 21 21s21-9 21-21v-459c50-8 92-54 92-108 0-63-50-113-113-113s-112 50-112 113c0 54 37 100 91 108z m-50-108c0-38 30-71 71-71s71 29 71 71-29 71-71 71-71-33-71-71z m788 304c33 21 46 63 25 96-21 33-63 46-96 25-33-21-46-62-25-96 21-33 63-46 96-25z m-733 375c33-21 75-8 95 25s9 75-25 96-79 8-100-25-4-75 30-96z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="plus-circle-o" unicode="" d="M500-113c-254 0-462 209-462 463s208 463 462 463 463-209 463-463-209-463-463-463z m0 92c204 0 371 167 371 371s-167 371-371 371-371-167-371-371 167-371 371-371z m-46 417v175c0 25 21 46 46 46 25 0 46-21 46-46v-175h175c25 0 46-21 46-46s-21-46-46-46h-175v-175c0-25-21-46-46-46-25 0-46 21-46 46v175h-175c-25 0-46 21-46 46s21 46 46 46h175z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="rating" unicode="" d="M325 446l83 12 75 150c9 17 30 17 38 0l75-150 79-12 71 125c8 17 29 12 37 0l50-125 130-25c16-4 20-25 8-38l-96-87 17-133c0-17-17-30-34-21l-112 66-71-33c0 0-4 0-4 0l12-67c5-16-16-29-29-20l-154 83-150-79c-17-9-33 4-29 21l12 66c-4 0-4 0-8 0l-71 34-112-67c-17-8-34 4-34 21l17 129-100 87c-12 13-8 34 8 38l130 25 54 121c8 16 29 16 37 0l71-121z m-46-8l-41 75-42-92c-4-8-8-13-17-13l-96-20 75-67c5-4 9-13 9-17l-13-100 88 50c4 4 12 4 21 0l79-37 8 58-121 117c-12 12-4 33 13 37l37 9z m438 4l41-4c17-5 25-25 13-38l-121-117 8-58 75 33c5 5 13 5 21 0l88-50-9 96c0 9 0 13 9 17l75 67-100 20c-9 0-13 5-17 13l-42 92-41-71z m-350-292l121 63c4 4 12 4 20 0l121-63-25 138c0 8 0 12 4 16l100 96-137 21c-8 0-13 4-17 12l-62 125-63-125c-4-4-8-8-16-12l-138-21 100-96c4-4 8-12 4-16l-12-138z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="review" unicode="" d="M254 113c-58 0-108 50-108 108v292c0 58 46 108 108 108h492c58 0 108-50 108-108v-292c0-58-46-108-108-108h-283l-200-113c-17-8-38 8-30 25l42 88h-21z m192 37c4 0 8 4 8 4h292c37 0 67 29 67 67v292c0 37-30 66-67 66h-492c-37 0-66-29-66-66v-292c0-38 29-67 66-67h59c16 0 25-16 16-29l-29-58 146 83z m46 154c4 4 12 4 21 0l50-25-9 54c0 9 0 13 4 17l38 38-54 8c-9 0-13 4-17 12l-25 50-25-50c-4-4-8-8-17-12l-54-8 38-38c4-4 8-12 4-17l-8-54 54 25z m-67-83c-17-8-33 4-29 21l12 83-62 58c-13 13-4 34 12 38l84 12 37 75c9 17 29 17 38 0l37-75 84-12c16-4 25-25 12-38l-62-58 12-83c4-17-17-29-29-21l-75 42-71-42z m458 217c-8 8-8 20 0 29 9 8 21 8 30 0l75-75c8-9 8-21 0-29l-75-75c-9-9-21-9-30 0-8 8-8 20 0 29l59 58-59 63z m-762 0l-58-59 58-58c8-8 8-21 0-29-8-9-21-9-29 0l-75 75c-9 8-9 21 0 29l75 75c8 8 21 8 29 0 8-8 8-25 0-33z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="tools" unicode="" d="M246-79c-8 0-17 0-25 0 0 0 0 0 0 0l-79 12 87 92-29 33-92-91-12 79c-4 17-4 33 0 50 4 29 21 58 42 79 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0l0 0c0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0l0 0 0 0c25 25 54 38 83 42 17 8 29 8 46 4h0l137 137-91 96-63-66-21 20-16-16c12-17 12-42-5-59l-29-25c-16-16-46-16-62 0l-92 92c-8 8-12 21-12 29s4 21 12 29l29 30c9 8 21 12 29 12 0 0 0 0 0 0 13 0 21-4 30-12l4-5 16 17-29 33 84 84c0 0 0 0 0 0 0 0 4 4 4 4 0 0 0 0 0 0 54 50 100 83 141 104 50 29 100 42 146 42 0 0 0 0 0 0 9 0 17 0 25 0 9 0 17 0 25-4l75-17-137-138 91-91 88 83c-4 17-4 29 0 46 4 29 17 58 42 83 0 0 0 0 0 0l0 0 0 0c0 0 0 0 0 0 0 0 0 0 0 0l0 0c0 0 0 0 0 0 0 0 0 0 0 0 20 21 45 34 75 42 16 4 37 4 58 0l79-13-92-87 30-33 91 87 13-79c0 0 0 0 0 0 4-17 4-33 0-50-4-29-17-54-38-75 0 0 0 0-4-4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0-37-38-87-50-137-42l-84-83 284-284c33-33 33-87 0-121l-30-29c-16-16-37-25-62-25 0 0 0 0 0 0-25 0-46 9-63 25l-283 284-133-134c4-20 4-41 0-62-4-29-21-54-42-75l0 0c0 0 0 0 0 0 0 0 0 0 0 0l0 0 0 0c0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0-21-21-50-34-79-42-8-8-17-8-25-8z m-13 41c9 0 17 0 25 0 21 5 46 13 63 30l0 0c0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 12 21 29 29 46 4 16 4 37 0 54l0 0c0 4 0 4 0 8l-4 13c-4 12-13 20-17 29 0 4-4 4-4 4 0 0 0 0 0 0-4 4-8 8-12 8-42 34-105 29-142-8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0l0 0c-17-17-25-38-29-63 0-12 0-20 0-33l25 38c8 8 21 12 33 12 0 0 0 0 0 0 13 0 21-4 29-12l29-30c9-8 13-16 13-29s-4-21-13-29l-33-33c4-5 4-5 8-5z m321 305l284-284c16-16 45-16 62 0l29 30c17 16 17 45 0 62l-283 283 0 0 0 0-92-91z m-191-100c4-9 8-13 12-21h0l275 275 0 0 71 71c-13 8-21 16-33 25-13 12-21 25-30 41l-350-350c9-4 13-8 21-12 9-4 13-8 17-17 0 0 0 0 0 0 0 0 0 0 0 0l0 0c8-4 12-8 17-12z m-275 296l-34-30 92-95 33 29-12 12-79 84z m254 20l91-91 92 91-92 92-91-92z m-175 50l83-83 271 271c-8 0-17 4-29 4-4 0-9 0-13 0-33 0-79-8-133-37-42-21-83-55-125-96 0 0-4-4-4-4 0 0 0 0 0 0l-50-55z m550 13c41-42 112-42 154 0l0 0c0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 17 25 37 29 58 0 9 0 21 0 29 0 0 0 5 0 5v0l-33-34c-17-16-46-16-59 0l-29 38c-8 8-12 21-12 29 0 12 4 21 12 29l34 33c-13 0-25 0-38 0-21-4-42-12-54-29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0-46-46-46-116-4-158l0 0 0 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="loading" unicode="" d="M500-125v117c196 0 358 162 358 358s-162 358-358 358-358-162-358-358h-117c0 263 213 475 475 475s475-212 475-475-212-475-475-475z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="sitemap" unicode="" d="M479 417v154h-75c-12 0-21 8-21 21v191c0 13 9 21 21 21h192c12 0 21-8 21-21v-195c0-13-9-21-21-21h-75v-154h267c37 0 70-30 70-71v-175h75c13 0 21-9 21-21v-196c0-13-8-21-21-21h-191c-13 0-21 8-21 21v196c0 12 8 21 21 21h75v175c0 16-13 29-29 29h-267v-200h75c12 0 21-8 21-21v-196c0-12-9-21-21-21h-192c-12 0-21 9-21 21v196c0 13 9 21 21 21h75v200h-266c-17 0-30-13-30-29v-175h75c13 0 21-9 21-21v-196c0-13-8-21-21-21h-191c-13 0-21 8-21 21v196c0 12 8 21 21 21h75v175c0 37 29 71 71 71h266z m-54 346v-155h150v155h-150z m-337-784h150v154h-150v-154z m675 154v-154h150v154h-150z m-338-154h150v154h-150v-154z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="click" unicode="" d="M326 458v178c0 66 53 119 118 119s118-53 118-119v-178c57 39 94 104 94 178 0 119-95 214-212 214s-213-96-213-214c0-75 38-140 95-178z m396-165c-53 12-184 48-198 62s-9 103-9 116c0 54 0 109 0 164 0 40-32 72-71 72s-71-32-71-72c0-187 0-328 0-422 0-29-3-70-14-87s-28-23-54 1-32 34-62 42-65-19-73-35-10-30 0-53c15-31 52-73 66-87 27-27 68-68 122-123 13-13 31-21 50-21h321c36 0 63 26 68 61l36 251c0 3 0 6 0 9 0 30-13 99-111 122z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="clock" unicode="" d="M500-67c-230 0-417 187-417 417s187 417 417 417 417-187 417-417-187-417-417-417z m198 310l-160 105v192c0 20-17 38-38 38s-38-18-38-38v-212c0-13 6-25 17-32l177-117c17-11 41-6 52 11 12 18 7 41-10 53z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="library-open" unicode="" d="M958 300c0-8-4-21-16-33l-163-192c-12-17-33-29-58-42s-50-16-71-16h-529c-13 0-21 4-29 8s-13 13-13 21c0 8 4 21 17 33l162 192c13 17 34 29 59 42s50 16 71 16h529c12 0 21-4 29-8s12-8 12-21z m-166 171v-79h-409c-29 0-62-9-95-25s-59-34-80-59l-162-191-4-4c0 0 0 4 0 4s0 4 0 4v475c0 29 12 54 33 79s46 33 79 33h159c29 0 54-12 79-33s25-50 25-79v-17h266c30 0 55-12 80-33s29-46 29-75z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="warning" unicode="" d="M538 663c-5 8-9 12-17 16-21 9-46 4-58-16l-371-646c-4-9-4-13-4-21 0-25 16-42 41-42h742c8 0 12 0 21 4 21 13 25 38 16 59l-370 646z m33 20l371-645c25-42 8-92-29-113-13-8-25-13-42-13h-742c-46 0-83 38-83 84 0 12 4 29 12 42l371 645c25 42 75 55 113 30 12-9 25-17 29-30z m-121-450l-8 142c0 29-4 46-4 58 0 21 4 34 16 46 13 13 25 17 42 17 25 0 37-13 46-25 8-13 8-29 8-54 0-13 0-25-4-42l-13-146c0-16-4-33-8-41-8-13-17-21-33-21-17 0-25 8-34 21-4 12-8 25-8 45z m42-112c16 0 29-4 41-17 13-12 17-25 17-37 0-17-4-29-17-42-12-8-25-12-37-12-17 0-29 4-38 12-12 8-16 25-16 42 0 16 4 29 16 37 5 13 21 17 34 17z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="flow" unicode="" d="M542 392h237c42 0 75-34 75-75v-125h113c21 0 33-17 33-34v-233c0-21-17-33-33-33h-304c-21 0-34 16-34 33v233c0 21 17 34 34 34h108v116h-542v-116h109c20 0 33-17 33-34v-233c4-17-13-33-33-33h-305c-16 0-33 16-33 33v233c0 21 17 34 33 34h113v125c0 41 33 75 75 75h237v116h-112c-21 0-33 17-33 34v233c0 17 16 33 33 33h304c21 0 33-16 33-33v-233c0-21-16-34-33-34h-108v-116z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="cursor-move" unicode="" d="M208 296v-71c0-4 0-8-4-12-4-5-8-5-12-5-4 0-9 0-13 5l-129 137c-8 0-8 4-8 13s0 8 4 12l129 138c4 4 8 4 17 4 4 0 8 0 12-4 4-5 4-9 4-17v-75h221v221h-75c-8 0-12 0-16 4-5 4-5 8-5 12 0 5 0 9 5 13l137 129c4 8 8 8 17 8s8 0 12-4l138-129c4-4 4-8 4-12 0-5 0-9-4-13-4-8-9-8-17-8h-75v-221h242v75c0 4 0 8 4 12s8 9 12 9 9 0 13-4l129-138c4-4 4-8 4-12s0-9-4-13l-129-137c-4-5-8-5-13-5s-8 0-12 5c-4 0-4 4-4 12v75h-238v-242h71c4 0 8 0 13-4 4-4 4-8 4-12s0-9-4-13l-138-129c0-8-4-8-8-8s-9 0-13 4l-137 129c-9 4-9 8-9 17s0 8 5 12 8 4 16 4h75v238h-221z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="arrow-circle-left" unicode="" d="M896 579c42-71 62-146 62-229s-20-158-62-229c-42-71-96-125-167-167-71-42-146-62-229-62s-158 20-229 62c-71 42-125 96-167 167-41 71-62 146-62 229s21 158 62 229 96 125 167 167 146 62 229 62 158-20 229-62 125-96 167-167z m-354-229l-175-175c-17-17-17-46 0-62 16-17 41-17 58 0l204 208c17 17 17 46 0 62l-204 205c-17 16-46 16-58 0-17-17-17-46 0-63l175-175z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="flash" unicode="" d="M150 321l188 446c4 12 16 21 29 21l304-5c17 0 33-16 33-33 0-4 0-8-4-12l-83-192 216 0c17 0 34-17 34-33 0-9-4-17-9-21l-537-571c-13-13-33-13-46 0-8 8-12 21-8 33l91 321-175 0c-16 0-33 17-33 33 0 5 0 9 0 13z m113 42l212 0-62-217 295 317-220 0 100 237-184 0-141-337z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="redo" unicode="" d="M679 592c-4 0-8 4-8 4-138 79-317 33-396-104s-33-313 104-392 313-33 396 104c17 29 50 38 79 21 29-17 38-50 21-79-112-192-358-259-550-146s-262 358-150 554 358 259 550 146c17-8 25-17 38-25l4 4 58 59c17 16 46 4 46-21l0-196c0-17-13-29-29-29l-196 0c-25 0-38 29-21 46l54 54z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="ban" unicode="" d="M208 550c-41-58-62-125-62-200 0-192 154-350 350-350 79 0 150 25 212 71 0 0-4 4-4 4l-487 467c-4 4-9 4-9 8z m75 75c5 0 5-4 9-8l483-467c0 0 4-4 4-4 42 58 63 125 63 200 0 192-154 350-350 350-79 4-150-25-209-71z m209-733c-254 0-459 204-459 458s205 458 459 458 458-204 458-458-204-458-458-458z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="barcode" unicode="" d="M125 725v-750h-42v750h42z m42 0v-750h-42v750h42z m41 0v-750h-37v750h37z m42 0v-750h-33v750h33z m42 0v-750h-34v750h34z m41 0v-750h-29v750h29z m42 0v-750h-29v750h29z m42 0v-750h-25v750h25z m41 0v-750h-25v750h25z m42 0v-750h-21v750h21z m46 0v-750h-21v750h21z m42 0v-750h-17v750h17z m41 0v-750h-16v750h16z m42 0v-750h-13v750h13z m42 0v-750h-13v750h13z m41 0v-750h-8v750h8z m42 0v-750h-8v750h8z m42 0v-750h-5v750h5z m41 0v-750h-4v750h4z m42 0v-750h-4v750h4z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="calendar" unicode="" d="M917 604v-637c0-50-42-88-88-88h-658c-46 4-88 42-88 92v633c0 50 42 88 88 88h87v96c5 12 13 20 25 20h75c13 0 21-8 21-20v-96h238v96c0 12 8 20 21 20h75c12 0 20-8 20-20v-96h88c54 0 96-38 96-88z m-88-625v542h-658v-538c0-4 4-12 12-12h634c4 0 12 4 12 8z m-471 367h-75c-12 0-20 8-20 21v75c0 12 8 21 20 21h75c13 0 21-9 21-21v-71c0-13-8-25-21-25z m200 21c0-13-8-21-20-21h-75c-13 0-21 8-21 21v75c0 12 8 21 21 21h75c12 0 20-9 20-21v-75z m180 0c0-13-9-21-21-21h-75c-13 0-21 8-21 21v75c0 12 8 21 21 21h75c12 0 21-9 21-21v-75z m-180-159c0-12-8-20-20-20h-75c-13 0-21 8-21 20v71c0 13 8 21 21 21h75c12 0 20-8 20-21v-71z m-179 0c0-12-8-20-21-20h-75c-12 0-20 8-20 20v71c0 13 8 21 20 21h75c13 0 21-8 21-21v-71z m359 0c0-12-9-20-21-20h-75c-13 0-21 8-21 20v71c0 13 8 21 21 21h75c12 0 21-8 21-21v-71z m-180-158c0-12-8-21-20-21h-75c-13 0-21 9-21 21v71c0 12 8 21 21 21h75c12 0 20-9 20-21v-71z m-179 0c0-12-8-21-21-21h-75c-12 0-20 9-20 21v71c0 12 8 21 20 21h75c13 0 21-9 21-21v-71z m359 0c0-12-9-21-21-21h-75c-13 0-21 9-21 21v71c0 12 8 21 21 21h75c12 0 21-9 21-21v-71z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="caret-left" unicode="" d="M592 604c8 9 12 9 25 9 8 0 16-5 25-9 8-8 8-12 8-25v-458c0-8-4-17-8-25-9-8-13-8-25-8-9 0-17 4-25 8l-229 229c-9 8-9 13-9 25 0 8 4 17 9 25l229 229z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="caret-right" unicode="" d="M408 604c-8 4-16 9-25 9-8 0-16-5-20-9-9-8-13-16-13-25v-458c0-8 4-17 8-25 9-8 13-8 25-8 9 0 17 4 25 8l230 229c8 8 8 13 8 25 0 8-4 17-8 25l-230 229z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="caret-up" unicode="" d="M763 279c8-8 8-12 8-25 0-8-4-16-8-25-9-8-13-8-25-8h-459c-8 0-16 4-25 8 0 9-4 17-4 25 0 9 4 17 8 25l230 229c8 5 16 9 25 9 8 0 16-4 25-9l225-229z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="chain-broken" unicode="" d="M500 492c-21-21-50-21-71 0-21 21-21 50 0 71l142 141c79 79 208 79 287 0 80-79 80-208 0-287l-141-142c-21-21-50-21-71 0-21 21-21 50 0 71l142 142c37 37 37 104 0 141s-105 38-142 0l-146-137z m0-284c21 21 50 21 71 0 21-20 21-50 0-70l-142-142c-79-79-208-79-287 0-79 79-79 208 0 287l141 142c21 21 50 21 71 0 21-25 21-54 4-75l-141-142c-38-37-38-104 0-141s104-38 141 0l142 141z m142 284c21-21 21-50 0-71l-213-213c-21-20-50-20-71 0-20 21-20 50 0 71l213 213c21 21 54 21 71 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="check-circle-o" unicode="" d="M896 579c42-71 62-146 62-229s-20-158-62-229c-42-71-96-125-167-167-71-42-146-62-229-62s-158 20-229 62c-71 42-125 96-167 167-41 71-62 146-62 229s21 158 62 229 96 125 167 167 146 62 229 62 158-20 229-62 125-96 167-167z m-504-337l-109 108c-16 17-45 17-66 0-17-17-17-46 0-67l141-141c17-17 46-17 63 0l358 346c17 16 17 45 0 66-16 17-46 17-66 0l-321-312z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="check" unicode="" d="M813 625c25 25 62 25 87 0 25-25 25-62 0-87l-487-467c-25-25-63-25-88 0l-225 225c-25 25-25 62 0 87 25 25 63 25 88 0l183-183 442 425z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="chevron-double-left" unicode="" d="M304 350l254-250c25-25 25-62 0-87-25-26-62-26-87 0l-300 295c-25 25-25 67 0 88l300 296c25 25 62 25 87 0 25-25 25-63 0-88l-254-254z m250 0l254-250c25-25 25-62 0-87s-62-26-87 0l-300 295c-25 25-25 67 0 88l300 296c25 25 62 25 87 0s25-63 0-88l-254-254z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="chevron-double-right" unicode="" d="M679 350l-254-250c-25-25-25-62 0-87 25-26 63-26 88 0l300 295c25 25 25 67 0 88l-300 296c-25 25-63 25-88 0-25-25-25-63 0-88l254-254z m-250 0l-254-250c-25-25-25-62 0-87s63-26 88 0l300 295c25 25 25 67 0 88l-305 292c-25 25-62 25-87 0s-21-63 4-88l254-250z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="undo" unicode="" d="M325 592c0 4 4 4 8 8 138 79 317 33 396-104s34-313-104-396-312-33-396 104c-16 29-50 38-79 21-29-17-37-50-21-79 113-192 359-259 550-146s259 358 146 550-354 263-550 150c-12-8-25-17-33-25l-4 4-59 59c-16 16-46 4-46-17l0-196c0-17 13-29 30-29l195 0c25 0 38 29 21 46l-54 50z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="filter" unicode="" d="M96 492c-29 0-54 25-54 54s25 54 54 54h812c25 0 50-25 50-54s-25-54-54-54h-808z m121-209c-29 0-54 25-54 55 0 29 25 54 54 54h566c30 0 55-25 55-54 0-30-25-55-55-55h-566z m121-208c-30 0-55 25-55 54 0 29 25 54 55 54h325c29 0 54-25 54-54 0-29-25-54-54-54h-325z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="circle-o" unicode="" d="M500-108c254 0 458 204 458 458s-204 458-458 458-458-204-458-458 204-458 458-458z m0 108c-192 0-350 154-350 350s158 350 350 350 350-154 350-350-158-350-350-350z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="circle" unicode="" d="M896 579c42-71 62-146 62-229s-20-158-62-229c-42-71-96-125-167-167-71-42-146-62-229-62s-158 20-229 62c-71 42-125 96-167 167-41 71-62 146-62 229s21 158 62 229 96 125 167 167 146 62 229 62 158-20 229-62 125-96 167-167z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="clock-o" unicode="" d="M500 721c-204 0-371-167-371-371 0-204 167-371 371-371 204 0 371 167 371 371 0 204-167 371-371 371z m0 87c254 0 458-204 458-458s-204-458-458-458-458 204-458 458 204 458 458 458z m100-600l-17-20c-12-17-37-21-58-9l-108 88v225c0 21 16 41 41 41h25c21 0 42-16 42-41v-175l67-54c16-13 21-38 8-55z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="cog" unicode="" d="M904 246l-75 42c9 41 9 83 0 120l75 42c9 8 13 21 13 29-21 63-54 117-96 167-8 8-17 8-25 4l-75-42c-33 25-67 46-108 63v83c0 9-9 17-17 21-63 13-129 13-192 0-8-4-16-12-16-21v-87c-38-13-75-34-105-63l-75 46c-8 4-20 0-29-4-41-46-75-104-96-167 0-8 5-21 13-25l75-41c-8-42-8-84 0-121l-75-42c-8-4-13-17-8-25 20-62 54-117 95-167 9-8 17-8 25-4l75 42c34-25 67-46 109-63v-87c0-9 8-17 16-21 63-13 130-13 192 0 8 4 17 12 17 21v87c37 13 75 34 108 63l75-42c8-4 21-4 25 4 42 46 75 105 96 167-4 4-8 17-17 21z m-404-33c-79 0-142 62-142 141s63 142 142 142 142-63 142-142-63-141-142-141z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="cogs" unicode="" d="M775 454l-12-21c-5-8-13-12-21-8-17 8-34 17-46 29-8 4-8 17-4 21l12 21c-8 12-16 25-21 37h-25c-8 0-16 5-16 17-4 17-4 33 0 54 0 9 8 17 16 17h25c5 12 13 29 21 37l-12 21c-4 9-4 17 4 21 12 8 29 17 46 25 8 0 16 0 21-8l12-21c17 4 29 4 46 0l12 21c5 8 13 8 21 8 17-4 34-17 46-25 8-4 8-17 4-21l-12-21c12-16 16-29 25-41h25c8 0 16-4 16-17 5-17 5-33 0-54 0-8-8-17-16-17h-25c-4-12-13-29-21-37l8-17c4-8 4-17-4-21-12-12-29-21-46-25-8-4-16 0-21 9l-12 20c-17-8-29-8-46-4l0 0z m-17 84c55-42 117 20 75 75-54 41-116-21-75-75l0 0z m-162-217l50-25c12-8 21-25 17-42-13-33-38-66-63-91-12-13-29-17-42-9l-41 25c-25-21-50-33-79-46v-45c0-17-13-30-30-34-33-4-70-4-108 0-17 4-29 17-29 34v45c-29 9-54 25-79 46l-42-25c-12-8-33-4-42 9-25 29-45 58-62 91-4 17 0 34 17 42l45 25c-4 29-4 58 0 92l-50 20c-12 9-20 25-12 42 12 33 37 67 62 92 13 12 30 16 42 8l42-25c25 21 50 33 79 46v50c0 17 12 29 29 33 33 4 67 4 104 0 17-4 29-16 29-33v-46c30-8 55-25 80-46l41 25c13 9 34 4 42-8 25-29 46-58 58-92 4-16 0-33-12-41l-50-25c8-34 8-63 4-92z m-171-33c83 108-42 233-150 150-83-109 42-234 150-150z m350-259l-12-21c-5-8-13-12-21-8-17 4-34 17-46 25-8 4-8 17-4 21l12 21c-8 12-16 25-21 37h-25c-8 0-16 4-16 17-4 17-4 33 0 54 0 8 8 17 16 17h25c5 12 13 29 21 37l-12 21c-4 8-4 17 4 21 12 12 29 21 46 25 8 4 16 0 21-8l12-21c17 4 29 4 46 0l12 21c5 8 13 12 21 8 17-4 34-17 46-25 8-4 8-17 4-21l-12-21c8-12 16-25 21-37h25c8 0 16-4 16-17 4-17 4-33 0-54 0-8-8-17-16-17h-21c-4-12-13-29-21-37l12-21c5-8 5-17-4-21-12-12-29-21-46-25-8-4-16 0-20 8l-13 21c-21 0-33 0-50 0z m-17 84c55-42 117 20 75 75-54 41-116-21-75-75l0 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="commenting-o" unicode="" d="M300 433c-33 0-58-25-58-54 0-29 25-54 58-54s58 25 58 54c0 29-25 54-58 54z m200 0c-33 0-58-25-58-54 0-29 25-54 58-54s58 25 58 54c0 29-25 54-58 54z m200 0c-33 0-58-25-58-54 0-29 25-54 58-54 33 0 58 25 58 54 0 29-25 54-58 54z m-200 309c-250 0-458-163-458-367 0-83 37-158 96-221-25-71-84-129-84-129-12-8-12-29-8-42s21-25 37-25c109 0 196 46 250 80 50-17 109-25 167-25 254 0 458 162 458 366s-204 363-458 363z m0-646c-46 0-96 8-142 21l-41 12-34-25c-25-16-62-37-104-50 17 21 29 46 38 71l21 50-38 38c-33 33-71 91-71 162 0 154 167 279 371 279s371-125 371-279-167-279-371-279z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="copy" unicode="" d="M875 692l-92 91c-12 17-33 25-54 25h-300c-46 0-83-37-83-87v-88h-138c-45 5-83-33-83-83v-575c0-46 38-83 83-83h388c46 0 83 37 83 87v88h138c46 0 83 37 83 87v475c0 25-8 46-25 63z m-287-713h-371c-4 0-9 4-9 13v550c0 4 5 12 9 12h129v-400c0-46 37-87 83-87h167v-75c0-9-4-13-8-13z m220 171h-366c-4 0-9 4-9 13v550c0 4 5 12 9 12h183v-158c0-25 17-42 42-42h154v-362c-4-9-8-13-13-13l0 0z m9 458h-109v113h17c4 0 4 0 8-4l84-88c0 0 4-4 4-8v-13l-4 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="database" unicode="" d="M275 429c63-12 133-21 204-21s142 9 204 21c63 13 113 34 150 59v-80c0-20-16-41-45-58s-75-33-130-42-112-16-179-16-125 4-179 16-100 25-129 42-46 38-46 58v80c38-25 88-46 150-59z m0-358c63-13 133-21 204-21s142 8 204 21 113 33 150 58v-79c0-21-16-42-45-58-34-17-75-34-130-42-54-13-112-17-179-17s-125 4-179 17c-54 12-100 25-129 42-29 21-46 37-46 62v79c38-29 88-45 150-62z m0 179c63-12 133-21 204-21s142 9 204 21c63 13 113 33 150 58v-79c0-21-16-41-45-58-34-17-75-33-130-42-54-12-112-16-179-16s-125 4-179 16c-54 13-100 25-129 42-29 21-46 37-46 58v79c38-25 88-45 150-58z m29 500c54 13 113 17 179 17s125-4 180-17 100-25 129-42 46-37 46-58v-58c0-21-17-42-46-59-34-16-75-33-129-41s-113-17-180-17-125 0-179 8-100 25-129 42c-33 21-50 42-50 63v58c0 21 17 42 46 58s79 38 133 46z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="dot-circle-o" unicode="" d="M500-108c-254 0-458 204-458 458s204 458 458 458 458-204 458-458-204-458-458-458z m0 108c192 0 350 154 350 350s-158 350-350 350-350-158-350-350 158-350 350-350z m125 425c13-21 21-46 21-75s-8-50-21-75c-12-21-29-42-54-54-21-13-46-21-75-21s-50 8-75 21c-21 12-42 29-54 54-13 21-21 46-21 75s8 50 21 75c12 21 29 42 54 54 21 13 46 21 75 21s50-8 75-21c25-16 42-33 54-54z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="envelope" unicode="" d="M942 467c8 4 16 0 16-9v-366c0-46-37-88-87-88h-742c-46 0-87 38-87 88v362c0 9 8 13 16 9 42-30 92-71 275-205 38-29 100-87 167-83 63 0 129 58 167 83 179 138 233 175 275 209z m-442-234c42 0 100 55 133 75 238 171 255 188 313 230 8 8 12 20 12 33v33c0 46-37 88-87 88h-742c-50 0-87-38-87-88v-33c0-13 4-25 16-33 55-42 71-59 313-230 29-20 87-75 129-75z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="external-link-square" unicode="" d="M125 808h750c46 0 83-37 83-83v-750c0-46-37-83-83-83h-750c-46 0-83 37-83 83v750c0 46 37 83 83 83z m458-287l-395-396c-25-25-25-62 0-87s62-25 87 0l396 395 79-79c21-21 58-4 63 25l4 250c0 21-17 34-34 34l-250-5c-33 0-45-37-25-62l75-75z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="eyedropper" unicode="" d="M767 771c41 0 75-13 104-42 29-29 42-62 42-104s-9-79-38-108l-104-104 50-50c4-5 4-9 4-13 0-4 0-8-4-12l-96-96c-4-4-8-4-12-4s-9 0-13 4l-50 50-283-275c-13-13-25-17-42-17h-92l-112-58c-4 0-8 0-8 0l-21 20c-9 5-9 9-4 13l58 113v95c0 17 4 30 17 42l279 279-50 50c-4 4-4 4-4 9 0 4 0 8 4 12l96 96c4 4 8 4 12 4s8 0 13-4l50-50 104 104c25 33 58 46 100 46z m-442-679l267 266-92 88-262-263c-5-4-5-8-5-12v-75c0-4 5-8 9-8h79c0 0 0 0 4 4z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="folder" unicode="" d="M958 454v-396c0-33-12-62-37-87s-54-38-88-38h-666c-34 0-63 13-88 38s-37 54-37 87v542c0 33 12 63 37 88s54 37 88 37h175c33 0 62-12 87-37s38-55 38-88v-17h366c34 0 63-12 88-37s37-54 37-92z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="font" unicode="" d="M454 517l-87-229c12 0 33 0 71 0 33 0 62 0 83 0 8 0 17 0 29 0-33 83-62 162-96 229z m-371-567l0 42c9 4 17 4 30 8s20 4 29 4c8 0 16 4 25 9 8 4 16 8 21 16 8 9 12 17 16 25l121 317 142 371h66c5-9 9-13 9-17l104-246c12-25 29-71 54-133s46-108 58-142c5-12 17-37 30-75s25-66 37-87c8-17 13-25 17-29 8-5 21-9 46-17 25-4 37-9 41-13 0-12 4-21 4-29 0 0 0-4 0-8 0-4 0-4 0-9-20 0-54 0-95 5-42 4-75 4-96 4-25 0-63 0-109-4s-79-5-91-5c0 17 0 30 0 42l66 13c0 0 5 0 9 0 4 0 8 0 8 0 0 0 4 0 8 4 5 0 5 4 9 4s4 4 4 4c4 0 4 4 4 4 0 0 0 5 0 9 0 4-4 21-17 50-12 29-20 58-37 91-13 34-21 50-21 50l-229 0c-8-20-21-54-38-100s-25-75-25-83c0-8 5-12 9-21 0 13 8 9 16 4 9-4 17-4 25-8 9 0 17-4 30-4s20 0 20 0c0-9 0-17 0-29 0-5 0-9 0-13-20 0-50 0-87 4-42 4-71 4-88 4-4 0-8 0-12 0s-8 0-13 0c-29-8-62-12-100-12z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="adjust" unicode="" d="M42 350c0-254 204-458 458-458s458 204 458 458-204 458-458 458-458-204-458-458z m458-342v684c188 0 342-154 342-342 0-187-154-342-342-342z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="lightbox" unicode="" d="M871 808h-571c-50 0-87-37-87-87v-88h-84c-50 5-87-33-87-83v-575c0-46 37-83 87-83h575c46 0 88 37 88 87v88h87c46 0 88 37 88 87v567c-9 50-46 87-96 87z m-171-829h-571v371h575v-371z m171 171h-88v400c0 46-37 88-87 88h-396v83h575v-571z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="heart-o" unicode="" d="M863 667c-105 87-263 75-363-25-100 100-258 112-362 25-134-113-117-292-21-388l312-312c17-17 42-30 67-30 25 0 50 9 67 30l312 312c104 96 121 279-12 388z m-42-329l-313-313c-4-4-8-4-12 0l-313 313c-66 66-79 187 13 266 71 59 175 50 246-16l58-67 63 62c66 67 175 75 245 17 92-71 75-196 13-262l0 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="history" unicode="" d="M200 633c25 30 54 50 88 67 191 113 441 46 550-146s45-441-146-550-442-50-554 146c-17 29-9 63 20 79 30 17 63 9 80-21 79-137 254-183 395-104s184 254 105 396-255 179-396 100c-21-12-42-29-59-46l67-66c0 0 4-5 4-5 0-4-4-8-8-8l-233-17c0 0 0 0 0 0-5 0-9 5-9 9l13 229c0 0 0 4 4 4 4 4 8 4 12 0l67-67z m383-420c-12-17-37-21-58-9l-108 88v225c0 21 16 41 41 41h25c21 0 42-16 42-41v-175l67-54c16-13 21-38 8-59l-17-16z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="image-bold" unicode="" d="M871 725h-742c-50 0-87-37-87-87v-559c0-46 37-87 87-87h746c46 0 88 37 88 87v559c-5 50-42 87-92 87z m-733-642c-5 0-13 5-13 13v533c0 4 4 13 13 13h725c4 0 12-4 12-13v-537c0-4-4-13-12-13h-725z m129 484c-38 0-71-34-71-71s33-71 71-71 71 33 71 71-30 71-71 71z m-71-417h608v196l-166 167c-9 8-25 8-34 0l-229-230-75 75c-8 9-25 9-33 0l-75-75v-133z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="info-circle" unicode="" d="M500-108c254 0 458 204 458 458s-204 458-458 458-458-204-458-458c0-254 204-458 458-458z m0 762c25 0 50-21 50-50s-25-46-50-46c-25 0-50 21-50 50 0 13 4 25 13 34s25 12 37 12z m-87-229c-13 4-21 17-21 29 0 9 4 17 8 21 4 4 13 8 21 8h121c4 0 8-4 8-8v-296c0-46 21-62 38-66 12-5 20-17 20-30 0-16-12-29-29-29h-154c-8 4-17 4-25 13-4 4-8 12-8 21 0 12 8 25 21 29 16 4 37 21 37 66v180c0 41-21 58-37 62z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="link" unicode="" d="M479 325c38-37 109-37 154 8l117 121c46 46 50 113 8 154s-104 38-150-8l-50-50c-20-21-54-21-75 0-20 21-20 54 0 75l50 50c84 88 221 92 305 8s79-220-9-308l-121-117c-87-87-225-91-308-8-21 21-21 54 0 75 21 21 58 21 79 0z m46 46c-37 37-108 37-154-8l-121-121c-46-46-50-113-8-154 37-38 108-38 154 8l54 54c21 21 54 21 75 0 21-21 21-54 0-75l-54-54c-83-84-221-92-304-8s-79 220 8 308l121 121c87 87 225 91 308 8 21-21 21-54 0-75-25-25-58-25-79-4z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="long-arrow-left" unicode="" d="M292 179c0-29-38-46-63-25l-179 175c-12 13-12 38 0 50l179 175c25 17 63 0 63-29v-112h604c33 0 62-30 62-63 0-33-29-62-62-62h-604v-109z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="long-arrow-right" unicode="" d="M708 179c0-29 38-46 63-25l179 175c13 13 13 38 0 50l-179 175c-25 17-63 0-63-29v-112h-604c-33 0-62-30-62-63 0-33 29-62 62-62h604v-109z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="caret-down" unicode="" d="M571 457q0-14-10-25l-250-250q-11-11-25-11t-25 11l-250 250q-11 11-11 25t11 25 25 11h500q14 0 25-11t10-25z" horiz-adv-x="571.4" />
|
||||
|
||||
<glyph glyph-name="paint-brush" unicode="" d="M883 608c-91-175-154-270-187-304-17-16-42-41-79-50-13-4-9 25-50 63-34 33-67 25-67 46 0 8 8 50 42 91 33 38 116 121 254 246 8 8 71 75 108 42 38-34-16-121-21-134z m-370-591c-46-46-105-67-180-67-41 0-79 8-112 25s-58 38-79 67-34 58-46 91c-8 34-13 71-13 113 0 0 46-46 88-54 150-21 179 187 337 116 34-16 80-62 75-158-4-54-50-112-70-133z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="pencil" unicode="" d="M892 525l-75-79c-9-8-21-8-29 0l-180 187c-8 9-8 21 0 30l75 79c30 33 80 33 113 0l96-100c33-34 33-84 0-117z m-346 71l-429-446-34-208c-4-30 17-55 46-46l196 37 429 446c9 9 9 21 0 29l-179 188c-8 8-21 8-29 0z m-263-408c-8 8-8 25 0 33l250 262c9 9 25 9 34 0 8-8 8-25 0-33l-250-262c-9-9-21-9-34 0l0 0z m-58-146h79v-63l-104-21-50 59 17 108h58v-83z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="plus-circle" unicode="" d="M104 579c42 71 96 125 167 167s146 62 229 62 158-20 229-62 125-96 167-167c42-71 62-146 62-229s-20-158-62-229c-42-71-96-125-167-167-71-42-146-62-229-62s-158 20-229 62c-71 42-125 96-167 167-41 71-62 146-62 229s21 158 62 229z m350-183h-175c-25 0-46-21-46-46s21-46 46-46h175v-175c0-25 21-46 46-46 25 0 46 21 46 46v175h175c25 0 46 21 46 46s-21 46-46 46h-175v175c0 25-21 46-46 46-25 0-46-21-46-46v-175z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="zoom-in-bold" unicode="" d="M388 467v71c0 29 25 54 54 54 29 0 54-25 54-54v-71h71c29 0 54-25 54-54s-25-55-54-55h-71v-70c0-30-25-55-54-55-29 0-54 25-54 55v70h-71c-29 0-54 25-54 55s25 54 54 54h71z m266-350c-62-46-137-71-216-71-205 0-367 162-367 367s162 366 367 366 366-162 366-366c0-84-25-159-71-217l163-163c21-20 21-54 0-75-21-21-54-21-75 0l-167 159z m-216 37c141 0 258 117 258 259s-117 258-258 258-259-117-259-258 117-259 259-259z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="sort-amount-desc" unicode="" d="M263 129l0 0h83c25 0 37-29 21-46l-138-137c-12-13-29-13-37 0l-138 137c-16 17-4 46 21 46h83 0v588c0 33 25 62 55 62s54-29 54-62v-588z m225 284c-34 0-63 25-63 54s29 54 63 54h287c33 0 63-25 63-54s-30-54-63-54h-287z m0-209c-34 0-63 25-63 54s29 55 63 55h170c34 0 63-25 63-55s-29-54-63-54h-170z m0-208c-34 0-63 25-63 54s29 54 63 54h58c33 0 62-25 62-54s-29-54-62-54h-58z m0 625c-34 0-63 25-63 54s29 54 63 54h400c33 0 62-25 62-54s-29-54-62-54h-400z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="sign-out" unicode="" d="M946 317l-304-300c-29-25-75-9-75 29v175h-250c-25 0-42 21-42 42v175c0 25 21 41 42 41h246v175c0 38 45 59 75 29l304-304c21-16 21-41 4-62z m-567 287h-166c-42 0-80-37-80-79v-350c0-42 38-79 80-79h166c25 0 46-21 46-46 0-25-21-46-46-46h-166c-96 0-171 75-171 171v350c0 96 75 171 171 171h166c25 0 46-21 46-46s-21-46-46-46z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="spinner" unicode="" d="M588 721c0-46-38-88-88-88s-87 42-87 88 41 87 87 87 88-37 88-87z m-88-658c-46 0-87-38-87-88s41-83 87-83 88 37 88 87-42 84-88 84z m371 375c-46 0-88-38-88-88s38-87 88-87 87 41 87 87-37 88-87 88z m-658-88c0 46-38 88-88 88s-83-42-83-88 37-87 87-87 84 41 84 87z m25-179c-46 0-88-38-88-88s38-87 88-87 87 37 87 87c-4 50-42 88-87 88z m525 0c-46 0-88-38-88-88s38-87 88-87 87 37 87 87c0 50-37 88-87 88z m-525 529c-46 0-88-37-88-87s38-88 88-88 87 38 87 88-42 87-87 87z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="square" unicode="" d="M958 638v-575c0-46-16-88-50-121s-75-50-120-50h-575c-46 0-88 16-121 50s-50 75-50 121v575c0 45 16 87 50 120s75 50 121 50h575c45 0 87-16 120-50s50-75 50-120z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="star-o" unicode="" d="M913 500l-250 38-113 237c-21 42-79 42-100 0l-112-237-250-38c-46-8-63-62-30-96l180-183-42-259c-8-45 42-83 79-58l225 121 225-121c42-21 88 13 79 58l-41 259 179 183c33 34 12 92-29 96l0 0z m-242-250l42-246-213 117-212-117 41 246-171 175 238 38 104 220 108-225 238-37-175-171z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="star" unicode="" d="M450 775l-112-237-250-38c-42-4-63-67-30-100l180-183-42-263c-8-46 42-79 79-58l225 117 225-117c42-21 88 12 79 58l-41 263 179 183c33 33 12 92-29 100l-250 38-113 237c-21 42-79 42-100 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="text-align-justify" unicode="" d="M104-17c-33 0-62 25-62 55s29 54 62 54h792c33 0 62-25 62-54s-29-55-62-55h-792z m0 209c-33 0-62 25-62 54s29 54 62 54h792c33 0 62-25 62-54s-29-54-62-54h-792z m0 208c-33 0-62 25-62 54s29 54 62 54h792c33 0 62-25 62-54s-29-54-62-54h-792z m0 208c-33 0-62 25-62 55s29 54 62 54h792c33 0 62-25 62-54s-29-55-62-55h-792z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="text-align-center" unicode="" d="M188 400c-34 0-63 25-63 54s29 54 63 54h620c38 0 63-25 63-54s-29-54-63-54h-620z m83-208c-33 0-63 25-63 54s30 54 63 54h458c34 0 63-25 63-54s-29-54-63-54h-458z m-167-209c-33 0-62 25-62 55s29 54 62 54h792c33 0 62-25 62-54s-29-55-62-55h-792z m254 625c-37 0-66 25-66 55s29 54 66 54h284c37 0 66-25 66-54s-29-55-66-55h-284z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="tags" unicode="" d="M238 517c12 12 20 29 20 46 0 16-4 33-16 41s-25 17-42 17-33-4-42-17-16-25-16-41c0-17 4-34 16-42 13-13 25-17 42-17s29 4 38 13z m537-234c0-16-4-33-17-41l-237-238c-13-12-29-17-46-17-17 0-33 5-42 17l-345 346c-13 13-21 29-30 50s-16 38-16 54v200c0 17 4 29 16 42s25 17 42 17h200c17 0 38-5 58-13 25-4 38-17 50-29l346-346c13-8 21-25 21-42z m183 0c0-16-4-33-16-41l-238-238c-12-12-29-17-46-17-12 0-20 5-29 9-8 4-16 12-25 21l225 225c13 12 17 25 17 41 0 17-4 34-17 46l-346 346c-8 8-25 21-45 29-21 9-38 13-55 13h109c16 0 37-4 58-13 17-8 33-21 46-33l346-346c12-8 16-25 16-42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="text-align-left" unicode="" d="M104 400c-33 0-62 25-62 54s29 54 62 54h750c34 0 63-25 63-54s-29-54-63-54h-750z m0-208c-33 0-62 25-62 54s29 54 62 54h625c34 0 63-25 63-54s-29-54-63-54h-625z m0-209c-33 0-62 25-62 55s29 54 62 54h792c33 0 62-25 62-54s-29-55-62-55h-792z m0 625c-33 0-62 25-62 55s29 54 62 54h542c33 0 62-25 62-54s-29-55-62-55h-542z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="text-align-right" unicode="" d="M896 400h-750c-33 0-63 25-63 54s30 54 63 54h750c33 0 62-25 62-54s-29-54-62-54z m0-208h-625c-33 0-63 25-63 54s30 54 63 54h625c33 0 62-25 62-54s-29-54-62-54z m0-209h-792c-33 0-62 25-62 55s29 54 62 54h792c33 0 62-25 62-54s-29-55-62-55z m0 625h-542c-33 0-62 25-62 55s29 54 62 54h542c33 0 62-25 62-54s-29-55-62-55z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="close-circle" unicode="" d="M896 579c42-71 62-146 62-229s-20-158-62-229c-42-71-96-125-167-167-71-42-146-62-229-62s-158 20-229 62c-71 42-125 96-167 167-41 71-62 146-62 229s21 158 62 229 96 125 167 167 146 62 229 62 158-20 229-62 125-96 167-167z m-333-229l125 125c16 17 16 46 0 63-17 20-46 20-63 4l-125-125-125 125c-46 41-108-25-67-67l125-125-125-125c-16-17-16-46 0-62 17-21 46-21 67-5l125 125 125-125c42-41 104 21 63 63l-125 129z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="trash-o" unicode="" d="M588 63h41c13 0 21 8 21 20v388c0 12-8 21-21 21h-41c-13 0-21-9-21-21v-388c0-8 12-20 21-20z m287 604h-142l-62 100c-17 25-42 41-71 41h-175c-29 0-54-16-71-41l-58-100h-142c-16 0-29-13-29-29v-30c0-16 13-29 29-29h29v-600c0-46 38-87 84-87h500c46 0 83 37 83 87v600h25c17 0 29 13 29 29v30c-4 16-16 29-29 29z m-454 50c0 4 4 4 8 4h163c4 0 8 0 8-4l29-50h-237l29 50z m342-738h-500v600h500v-600z m-367 84h42c12 0 20 8 20 20v388c0 12-8 21-20 21h-42c-13 0-21-9-21-21v-388c0-8 8-20 21-20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="font-awesome" unicode="" d="M777 788h-679c-54 0-98-45-98-98v-679c0-54 44-99 98-99h679c54 0 98 45 98 99v679c0 53-44 98-98 98z m-89-556c0-8-7-11-15-15-33-14-67-27-105-27-53 0-77 33-140 33-46 0-93-17-132-34-2-1-5-1-7-2v-89c0-3 0-7-1-9v-3c-5-16-20-28-37-28-22 0-40 18-40 40v427c-15 12-26 30-26 51 0 37 30 66 66 66 36 0 65-29 65-66 0-21-9-39-25-51v-36c3 1 7 2 10 5 36 15 80 28 120 28 45 0 80-12 119-27 8-4 17-5 26-5 44 0 93 32 105 32 9 0 18-7 18-16v-274z" horiz-adv-x="875" />
|
||||
|
||||
<glyph glyph-name="user-circle-o" unicode="" d="M313 58c54-33 120-54 187-54 71 0 133 21 188 54-21 25-46 46-71 63-34 21-75 29-117 29-75 0-146-33-187-92z m-84 71c67 79 163 129 271 129 58 0 117-16 171-45 37-21 71-50 100-84 50 59 79 138 79 221 0 192-154 350-350 350s-350-158-350-350c0-83 33-162 79-221z m271-237c-254 0-458 204-458 458s204 458 458 458 458-204 458-458-204-458-458-458z m0 383c-100 0-179 79-179 179s79 179 179 179 179-79 179-179-79-179-179-179z m0 108c38 0 71 34 71 71s-33 71-71 71-71-33-71-71 34-71 71-71z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="video-camera" unicode="" d="M575 642h-458c-42 0-75-34-75-71v-438c0-41 33-70 75-70h458c42 0 75 33 75 70v438c4 37-33 71-75 71z m304-59l-175-116v-238l175-116c34-21 79 0 79 37v396c0 37-45 62-79 37z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="heart" unicode="" d="M871 671c-100 83-242 67-333-25l-38-38-33 38c-92 92-238 104-334 25-112-96-116-263-16-367l346-354c20-21 58-21 79 0l346 354c100 100 95 271-17 367z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="wrench" unicode="" d="M629 329l-375-375c-41-42-108-42-146 0s-41 109 0 146l375 375c-25 79-8 171 55 233 66 67 162 84 241 55 4 0 13-5 9-9-5-4-5-4-5-4-29-29-75-75-133-133 17-59 25-92 29-92s34-12 92-29c58 62 100 104 129 133 4 4 4 4 4 4s4-4 9-8c33-83 12-179-50-246-63-58-155-75-234-50z m-475-329c17-17 42-17 59 0 16 17 16 42 0 58s-42 17-59 0c-16-12-16-41 0-58z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="help" unicode="" d="M104 579c42 71 96 125 167 167s146 62 229 62 158-20 229-62 125-96 167-167c42-71 62-146 62-229s-20-158-62-229c-42-71-96-125-167-167-71-42-146-62-229-62s-158 20-229 62c-71 42-125 96-167 167-41 71-62 146-62 229s21 158 62 229z m350-321h84l0 21c4 21 12 42 29 54l25 25c21 21 33 38 41 55s13 33 13 54c0 41-13 71-38 96s-62 33-108 33c-46 0-83-13-108-33s-42-55-42-96h96c0 16 4 29 17 41s25 9 41 9c34 0 50-17 50-54 0-13-4-25-8-34s-21-25-38-41c-20-17-33-34-41-55s-13-45-13-75z m-12-100c0-12 4-25 12-37 9-8 21-13 38-13s29 5 37 13c9 8 13 21 13 37 0 13-4 25-17 38-8 8-21 12-37 12s-30-4-38-12c0-13-8-25-8-38z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="help-o" unicode="" d="M500-113c-254 0-462 209-462 463s208 463 462 463 463-209 463-463-209-463-463-463z m0 92c204 0 371 167 371 371s-167 371-371 371-371-167-371-371 167-371 371-371z m-46 279c0 30 4 55 13 71s21 38 41 54c21 17 34 34 38 42s8 21 8 33c0 38-16 55-50 55-16 0-29-5-37-17s-17-25-17-42h-96c0 42 13 75 42 96s62 33 108 33c46 0 84-12 109-33s37-54 37-96c0-16-4-37-12-54s-21-33-42-54l-25-25c-17-17-25-33-29-54l0-21h-88z m-12-100c0 13 4 25 16 38 9 8 21 12 38 12s29-4 37-12c9-8 17-21 17-38 0-12-4-25-12-37-9-8-21-13-38-13s-29 5-37 13c-17 8-21 21-21 37z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="zoom-out-bold" unicode="" d="M750 167l196-196c17-17 17-50 0-67-17-17-50-21-67 0l-196 196c-66-54-150-83-245-83-217 0-396 179-396 396s179 395 396 395 395-179 395-395c0-92-33-175-83-246z m-454 291h279c25 0 46-20 46-50 0-25-21-45-46-45h-279c-25 0-46 20-46 45 0 30 21 50 46 50z m142-345c166 0 300 133 300 300s-134 300-300 300-300-134-300-300 133-300 300-300z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="plus-square-o" unicode="" d="M867 717h-734v-730h730v730z m4 91c50 0 87-37 87-87v-746c0-46-37-88-87-88h-742c-50 5-87 42-87 92v742c0 50 37 87 87 87h742z m-421-412v175c0 25 21 46 46 46 29 0 46-17 46-46v-175h175c25 0 46-21 46-46s-21-46-46-46h-175v-175c0-25-21-46-46-46-25 0-46 21-46 46v175h-175c-25 0-46 21-46 46s21 46 46 46h175z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="minus-square-o" unicode="" d="M867 717h-734v-730h730v730z m4 91c50 0 87-37 87-87v-746c0-46-37-88-87-88h-742c-50 5-87 42-87 92v742c0 50 37 87 87 87h742z m-592-504c-25 0-46 21-46 46s21 46 46 46h446c25 0 46-21 46-46s-21-46-46-46h-446z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="minus-circle" unicode="" d="M104 579c42 71 96 125 167 167s146 62 229 62 158-20 229-62 125-96 167-167c42-71 62-146 62-229s-20-158-62-229c-42-71-96-125-167-167-71-42-146-62-229-62s-158 20-229 62c-71 42-125 96-167 167-41 71-62 146-62 229s21 158 62 229z m171-275h446c25 0 46 21 46 46s-21 46-46 46h-446c-25 0-46-21-46-46s21-46 46-46z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="minus-circle-o" unicode="" d="M500-113c-254 0-462 209-462 463s208 463 462 463 463-209 463-463-209-463-463-463z m0 92c204 0 371 167 371 371s-167 371-371 371-371-167-371-371 167-371 371-371z m-221 325c-25 0-46 21-46 46s21 46 46 46h446c25 0 46-21 46-46s-21-46-46-46h-446z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="code-bold" unicode="" d="M842 313l-125 125c-21 20-21 54 0 75 21 20 54 20 75 0l166-163c21-21 21-54 0-75l-166-171c-21-21-54-21-75 0s-21 54 0 75l125 134z m-388-359c-8-29-37-46-66-37-30 8-46 37-38 66l196 725c8 30 37 46 67 38 29-8 45-38 37-67l-196-725z m-166 225c20-21 20-54 0-75s-55-21-75 0l-167 171c-21 21-21 54 0 75l167 163c20 20 54 20 75 0 20-21 20-55 0-75l-125-125 125-134z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="cloud-upload" unicode="" d="M779 425c100-8 179-92 179-192 0-108-87-195-191-195h-496c-125 0-229 104-229 233 0 121 87 221 204 233 50 96 146 159 254 159 138 0 254-100 279-238z m-366-96v-183c0-13 12-25 25-25h125c12 0 25 12 25 25v183h75c8 0 12 4 16 9 4 4 9 8 9 16 0 9-5 13-9 17l-162 162c-4 5-9 9-17 9s-12-4-17-9l-162-162c-4-4-8-8-8-17 0-8 4-12 8-16 4-5 8-9 17-9h75z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="search-bold" unicode="" d="M654 117c-62-46-137-71-216-71-205 0-367 162-367 367s162 366 367 366 366-162 366-366c0-84-25-159-71-217l163-163c21-20 21-54 0-75-21-21-54-21-75 0l-167 159z m-216 37c141 0 258 117 258 259s-117 258-258 258-259-117-259-258 117-259 259-259z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="map-pin" unicode="" d="M104 413c0 218 177 395 396 395s396-177 396-395c0-129-107-273-321-431-37-62-62-93-75-93s-37 31-75 93c-214 158-321 302-321 431z m396-125c69 0 125 55 125 125s-56 125-125 125-125-56-125-125 56-125 125-125z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="meetup" unicode="" d="M588 805c163 47 324-75 321-243 94-39 120-164 50-238 56-107 26-242-74-312-39-27-83-42-129-44-38-107-169-147-260-81-100-66-233-40-302 60-21 31-34 66-37 103-152 37-209 229-102 344-57 115 10 256 135 281 68 158 263 225 398 130z m-365-155l-4-11-11-1c-110-16-168-141-110-237l8-13-11-12c-102-94-51-267 85-289l16-3 0-16c2-35 12-69 32-98 56-82 166-103 248-48 2 2 3 3 5 5l3 2 0 0 14 11 12-11c73-64 188-29 212 66l4 15 16 0c43-2 84 10 120 35 87 62 111 182 55 273l-9 15 13 11c65 55 42 161-38 186l-16 5 1 15c12 151-133 262-278 214l-10-3-8 7c-116 89-294 27-349-118z m330-29c38 0 53-32 59-31 13 1 53 20 99 5 59-20 87-88 78-140s-26-92-69-171c-15-27-10-46 27-29 28 14 65-10 65-40 1-44-72-81-110-90-45-10-114-1-134 55-12 33-7 68 0 88 7 29 60 131 48 148-13 27-48-73-79-158-11-30-22-74-74-70-14 1-29 12-38 24-31 45 29 156 38 194 6 28-21 32-34 0-13-32-17-66-55-168-6-16-20-41-35-59-26-31-66-36-91-28-53 17-73 75-56 125 7 22 59 190 80 235 18 39 50 125 145 95 17-6 48-21 55-24 16-7 39 41 81 39z m-3-42c-4 1-9-2-19-10-2-2-15-13-20-16-17-13-35-18-56-8-16 8-39 18-50 22-36 11-56 0-76-35-3-6-6-12-10-19-2-5-8-18-9-20-6-14-18-48-34-94-2-7-2-7-4-15-8-24-17-49-25-76-5-16-9-30-14-45-10-33 2-64 29-73 14-4 35 1 46 15 11 13 23 34 28 47 13 36 23 64 31 91 4 13 14 48 16 54 3 9 5 16 8 24 12 29 36 50 66 49 38-3 56-38 47-74-2-8-5-18-10-32-2-4-11-29-14-36-5-13-9-24-12-35-10-32-11-53-8-58 3-4 8-7 7-7 13 0 17 3 25 23 1 4 8 22 7 20 2 6 5 13 9 26l4 9c18 51 30 79 41 102 7 17 15 29 23 37 23 23 59 22 77-8 17-27 10-48-17-114-2-5-2-5-4-10-24-58-22-50-24-59-6-19-7-41 0-60 9-26 47-38 85-29 37 8 79 38 78 49 0 0-5 4-5 4-35-17-66-19-86 12-15 23-10 47 5 74 40 74 55 111 63 159 7 36-16 81-50 92-16 5-33 5-53 0-3-1-14-4-13-4-7-1-12-2-17-3-14-1-23 3-32 11-3 2-4 4-7 7-5 5-6 6-8 7-5 5-9 6-18 6z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="slideshow" unicode="" d="M128 600h745c45 0 82-35 85-80l1-6v-557c0-46-35-83-80-86l-6-1h-745c-46 0-83 35-86 80l-1 6v558c0 46 35 83 80 86l7 0h745-745z m734-86h-724c-5 0-9-3-10-8l0-3v-536c0-5 3-9 8-10l2 0h724c5 0 9 3 10 8l1 2v536c0 6-5 11-11 11z m-227-124l3-2 166-166v-197h-608v135l75 75c8 8 20 9 29 3l3-3 75-75 227 228c8 8 21 9 30 2l0 0z m-367 53c39 0 71-33 71-72s-32-72-71-72-72 32-72 72 32 72 72 72z m565 274c23 0 42-19 42-42v-42h-750v42c0 23 19 42 42 42h666z m-125 116c23 0 42-18 42-41v-42h-500v42c0 23 19 41 42 41h416z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="t-letter-bold" unicode="" d="M925 808c18 0 33-14 33-33v-196c0-18-14-33-33-33h-65c-18 0-33 15-33 33v66h-245v-622h81c18 0 33-15 33-33v-66c0-18-14-33-33-33h-327c-18 0-33 15-33 33v66c0 18 15 33 33 33h82v622h-245v-66c0-18-15-33-33-33h-65c-18 0-33 15-33 33v196c0 18 14 33 33 33h850z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="preferences" unicode="" d="M246 333c67-29 142-33 208-4l13 4h25c4 0 12 0 16 0l-4-12 0 0c-8-25 0-50 21-67l4-4 13-8 0-4 0 0 0-5-13-8c-25-12-33-42-25-67 13-37 34-75 59-104 16-21 45-25 66-12l4 4 13 8 4-4 0 0 4-4v-13c0-4 0-12 4-16-8-9-20-13-33-13l-8 0h-525c-38 0-67 29-71 67l0 4v63c0 108 87 195 192 200l8 0h25z m471 125c33 9 66 9 100 0 4 0 8-4 8-8l0-4v-46c17-4 33-12 46-25l8-8 38 21c4 4 8 0 12-5 21-25 42-54 50-87 0-4 0-8-4-13l-4 0-38-20c5-17 5-38 0-55l0-12 38-21c4-4 8-8 4-12-8-34-25-63-50-88-4-4-8-4-12-4l-5 0-37 21c-13-13-29-21-46-29l-8-5v-45c0-5-4-9-9-13-33-8-66-8-100 0-4 0-8 4-8 8l0 5v45c-17 5-33 13-46 25l-8 9-38-21c-4-4-8 0-12 4-21 25-42 54-50 88 0 4 0 8 4 12l4 0 38 21c-4 17-4 37 0 54l0 13-38 20c-4 5-8 9-4 13 8 33 25 62 50 87 4 5 8 5 13 5l4 0 37-21c13 12 29 21 46 29l8 4v50c0 4 0 8 9 8z m75-154c-29 13-59 4-79-16-21-21-25-55-17-80 12-29 37-45 67-45 41 0 70 33 70 70 5 34-12 63-41 71z m-434 463c105 0 192-88 192-192s-87-192-192-192-191 84-191 192 83 192 191 192z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="table-of-contents" unicode="" d="M854 850c34 0 63-29 63-62v-876c0-33-29-62-63-62h-708c-33 0-63 29-63 62v876c0 33 30 62 63 62h708z m21-208h-750v-730c0-8 8-16 17-20l4 0h708c9 0 17 8 21 16l0 4v730z m-604-584c12 0 21-8 21-20v-42c0-13-9-21-21-21h-42c-12 0-21 8-21 21v42c0 12 9 20 21 20h42z m500-20c12 0 21-9 21-21s-9-21-21-21h-417c-12 0-21 8-21 21s9 21 21 21h417z m-500 187c8 0 17-8 21-17l0-4v-41c0-9-9-17-17-21l-4 0h-42c-8 0-16 8-21 16l0 5v41c0 9 9 17 17 21l4 0h42z m500-21c12 0 21-8 21-21 0-8-9-16-17-20l-4 0h-417c-12 0-21 8-21 20 0 9 9 17 17 21l4 0h417z m-500 188c12 0 21-9 21-21v-42c0-12-9-21-21-21h-42c-12 0-21 9-21 21v42c0 12 9 21 21 21h42z m500-21c12 0 21-8 21-21s-9-21-21-21h-417c-12 0-21 9-21 21s9 21 21 21h417z m-500 187c8 0 17-8 21-16l0-4v-42c0-8-9-17-17-21l-4 0h-42c-8 0-16 8-21 17l0 4v42c0 8 9 16 17 20l4 0h42z m500-20c12 0 21-9 21-21 0-9-9-17-17-21l-4 0h-417c-12 0-21 8-21 21 0 8 9 16 17 21l4 0h417z m83 270h-708c-8 0-17-8-21-16l0-4v-105h750v105c0 8-8 16-21 20l0 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="tv" unicode="" d="M875 725c46 0 79-33 83-79l0-4v-417c0-46-33-79-79-83l-4 0h-333v-75h250c25 0 41-17 41-42 0-21-16-38-37-42l-4 0h-584c-25 0-41 17-41 42 0 21 16 38 37 42l4 0h250v75h-333c-46 0-79 33-83 79l0 4v417c0 46 33 79 79 83l4 0h750z m0-83h-750v-417h750v417z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="upload" unicode="" d="M883 308h-229v50h100c67 0 104 84 54 130l-254 254c-29 29-79 29-108 0l-254-250c-46-46-13-129 54-129h100v-55h-229c-42 0-75-33-75-75v-204c0-42 33-75 75-75h762c42 0 75 33 75 75v204c4 42-29 75-71 75z m-637 130l254 254 254-254h-179v-255h-154v255h-175z m637-409h-766v204h229v-50c0-41 33-75 75-75h154c42 0 75 34 75 75v50h229v-204z m-66 100c0-21-17-37-38-37-21 0-37 16-37 37 0 21 16 38 37 38 21 0 38-17 38-38z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="instagram-comments" unicode="" d="M804 258c21 42 29 88 29 134 0 183-158 333-354 333-196 0-354-150-354-333 0-184 158-334 354-334 50 0 100 13 146 30l50-9 175-41c0 0 4 0 4 4l-50 216z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="instagram-nested-gallery" unicode="" d="M792 642c50-38 83-100 83-167v-292c0-116-92-208-208-208h-292c-67 0-129 33-167 83h417c92 0 167 75 167 167v417z m-209 83c67 0 121-50 125-117l0-8v-333c0-67-50-121-116-125l-9 0h-333c-67 0-121 50-125 116l0 9v333c0 67 50 121 117 125l8 0h333z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="instagram-post" unicode="" d="M838 225l0 0c12-4 20-12 20-21l0-4-66-279c-4-13-13-17-25-17-9 4-17 13-17 21l0 4 67 279c0 13 8 17 21 17z m-96 542c54 0 91-46 91-100v-338c0-12-8-21-20-21s-21 9-21 21v338c0 33-21 58-50 58h-650c-29 0-50-25-50-58v-634c0-33 21-58 50-58h387c13 0 21-8 21-21s-8-21-21-21h-387c-54 0-92 46-92 100v634c0 54 38 100 92 100h650z m-75-629c8 8 21 8 29 0 8-9 8-17 4-25l-4-5-63-66 63-67c8-8 8-21 0-29-4-4-8-4-13-4-4 0-8 0-12 4l-4 0-79 83c-9 9-9 17-5 25l5 4 79 80z m221 0c8 8 16 8 25 4l4-4 79-84c8-8 8-16 4-25l-4-4-79-83c-4-5-9-5-13-5-4 0-8 0-12 5-9 8-9 16-4 25l4 4 62 67-62 66c-9 13-9 25-4 34z m-384 441c79 0 142-62 142-141v-180c0-79-63-141-142-141h-175c-79 0-141 62-141 141v180c0 79 62 141 141 141h175z m0-41h-175c-54 0-100-46-100-100v-180c0-54 46-100 100-100h179c55 0 100 46 100 100v180c-4 54-50 100-104 100z m-87-67c66 0 121-54 121-121s-55-121-121-121c-67 0-121 54-121 121s54 121 121 121z m0-42c-42 0-79-33-79-79s37-79 79-79c41 0 79 33 79 79s-38 79-79 79z m129 63c17 0 29-13 29-29 0-17-12-30-29-30-17 0-29 13-29 30 0 16 12 29 29 29z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="instagram-video" unicode="" d="M625 683c46 0 79-33 83-79l0-4v-500c0-46-33-79-79-83l-4 0h-500c-46 0-79 33-83 79l0 4v500c0 46 33 79 79 83l4 0h500z m-250-104c-125 0-229-104-229-229 0-125 104-229 229-229 125 0 229 104 229 229 0 125-104 229-229 229z m583 21v-479h-16c-75 0-129 46-146 67l-4 8v329l4 4c17 25 71 71 146 71h16z m-583-125c71 0 125-54 125-125s-54-125-125-125c-71 0-125 54-125 125s54 125 125 125z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="instagram-gallery" unicode="" d="M817 350c75 0 137-58 141-133l0-9v-179c0-75-58-137-133-142l-8 0h-179c-75 0-138 59-142 134l0 8v179c0 75 58 138 133 142l9 0h179z m0-42h-179c-50 0-96-41-100-91l0-9v-179c0-50 41-96 91-100l9 0h179c50 0 96 42 100 92l0 8v179c0 50-42 96-92 100l-8 0z m-88-66c67 0 121-54 121-121s-54-121-121-121-121 54-121 121 55 121 121 121z m-521 25c25 0 42-17 42-42v-167c0-25-17-41-42-41h-166c-25 0-42 16-42 41v167c0 25 17 42 42 42h166z m242 0c13 0 21-9 21-21 0-8-8-17-17-21l-4 0h-117v-167h117c13 0 21-8 21-20 0-9-8-17-17-21l-4 0h-117c-20 0-37 16-41 37l0 4v167c0 21 16 38 37 42l4 0h117z m279-67c-41 0-79-33-79-79 0-42 33-79 79-79s79 33 79 79c0 42-37 79-79 79z m-521 25h-166v-167h166v167z m650 38c17 0 30-13 30-30 0-16-13-29-30-29s-29 13-29 29c0 17 13 30 29 30z m-650 295c25 0 42-16 42-41v-167c0-25-17-42-42-42h-166c-25 0-42 17-42 42v167c0 25 17 41 42 41h166z m292 0c25 0 42-16 42-41v-134c0-12-9-20-21-20s-21 12-21 20v134h-167v-167h125c13 0 21-8 21-21s-8-21-21-21h-125c-25 0-41 17-41 42v167c0 25 16 41 41 41h167z m-292-41h-166v-167h166v167z m584 41c25 0 41-16 41-41v-109c0-12-8-20-20-20s-21 8-21 20v109h-167v-109c0-12-8-20-21-20s-21 8-21 20v109c0 25 17 41 42 41h167z m-584 292c25 0 42-17 42-42v-166c0-25-17-42-42-42h-166c-25 0-42 17-42 42v166c0 25 17 42 42 42h166z m292 0c21 0 38-17 42-37l0-5v-166c0-21-17-38-38-42l-4 0h-167c-20 0-37 17-41 38l0 4v166c0 21 16 38 37 42l4 0h167z m292 0c21 0 37-17 41-37l0-5v-166c0-21-16-38-37-42l-4 0h-167c-21 0-37 17-42 38l0 4v166c0 21 17 38 38 42l4 0h167z m-584-42h-166v-166h166v166z m292 0h-167v-166h167v166z m292 0h-167v-166h167v166z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="instagram-likes" unicode="" d="M846 538c-71 208-300 166-346 41-42 125-271 167-346-41-62-188 188-417 346-521 158 104 408 333 346 521z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="facebook" unicode="" d="M858 808h-716c-54 0-100-45-100-100v-721c0-50 46-95 100-95h279v312h-129v146h129v113c0 129 75 195 192 195 54 0 112-8 112-8v-125h-62c-63 0-84-37-84-79v-96h142l-21-146h-117v-312h280c54 0 100 45 100 100v716c-5 55-50 100-105 100l0 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="twitter" unicode="" d="M863 538c0-9 0-17 0-25 0-250-188-534-534-534-108 0-204 29-287 84 16 0 29-5 46-5 87 0 166 30 233 80-83 0-150 54-175 129 12 0 25-4 37-4 17 0 34 4 50 8-87 17-150 92-150 183v9c25-13 55-21 84-25-50 33-84 91-84 158 0 33 9 67 25 96 92-113 234-188 388-196-4 12-4 29-4 42 0 104 83 187 187 187 54 0 104-21 138-58 41 8 83 25 121 46-13-42-42-80-84-105 38 5 75 13 109 30-30-38-63-71-100-100z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="pinterest" unicode="" d="M950 354c0-250-204-454-454-454-46 0-92 8-133 21 16 29 45 79 58 121 4 21 29 108 29 108 17-29 58-54 104-54 138 0 238 125 238 283 0 150-121 263-279 263-196 0-300-134-300-275 0-67 37-150 91-175 9-4 13-4 17 4 0 4 8 37 12 50 0 4 0 8-4 12-16 25-33 67-33 105-8 100 71 195 200 195 112 0 192-75 192-183 0-125-63-208-142-208-46 0-79 37-67 83 13 54 38 113 38 150 0 33-17 63-59 63-45 0-83-46-83-109 0-41 13-66 13-66s-46-192-55-225c-8-38-4-96 0-130-170 63-291 230-291 421 0 250 204 454 454 454s454-204 454-454z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="frame-expand" unicode="" d="M863 267c27 0 51-22 53-49l1-5v-226l-1-5c-2-25-23-46-48-48l-5-1h-225l-6 1c-25 2-46 23-48 48l-1 5 1 6c2 25 23 46 48 48l6 1h170v171l1 5c2 27 26 49 54 49z m-725 0c27 0 51-22 53-49l1-5v-171h171c27 0 51-22 53-49l1-6c0-27-22-51-49-53l-5-1h-225c-28 0-52 22-54 49l-1 5v226c0 30 25 54 55 54z m725 500c27 0 51-22 53-49l1-5v-225c0-30-24-55-54-55-28 0-52 22-54 49l-1 6v170h-170c-28 0-52 22-54 49l-1 6c0 27 22 51 49 53l6 1h225z m-500 0l5-1c25-2 46-23 48-48l1-5-1-6c-2-25-23-46-48-48l-5-1h-171v-170l-1-6c-2-27-26-49-53-49s-52 22-54 49l-1 6v225l1 5c2 25 23 46 48 48l6 1h225z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="frame-minimize" unicode="" d="M363 267c29 0 50-21 54-50l0-4v-226c0-29-25-54-54-54-30 0-50 21-55 50l0 4v171h-170c-30 0-50 21-55 50l0 5c0 29 21 50 50 54l5 0h225z m275 0c-30 0-50-21-55-50l0-4v-226c0-29 25-54 55-54 29 0 50 21 54 50l0 4v171h171c29 0 50 21 54 50l0 5c0 29-21 50-50 54l-4 0h-225z m-275 166c29 0 50 21 54 50l0 5v225c0 29-25 54-54 54-30 0-50-21-55-50l0-4v-171h-170c-30 0-50-21-55-50l0-4c0-30 21-50 50-55l5 0h225z m275 0c-30 0-50 21-55 50l0 5v225c0 29 25 54 55 54 29 0 50-21 54-50l0-4v-171h171c29 0 50-21 54-50l0-4c0-30-21-50-50-55l-4 0h-225z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="archive" unicode="" d="M896 788c54 0 100-38 104-88l0-8v-688c0-50-42-92-96-92l-8 0h-792c-54 0-100 38-104 88l0 8v688c0 50 42 92 96 92l8 0h792z m0-42h-792c-33 0-58-21-62-46l0-4v-688c0-25 25-50 58-50l4 0h792c33 0 58 21 62 46l0 4v688c0 25-25 50-58 50l-4 0z m-667-554c13 0 21-9 21-21v-83c0-13-8-21-21-21h-83c-13 0-21 8-21 21v83c0 12 8 21 21 21h83z m209-84c12 0 20-8 20-20 0-13-8-21-20-21h-125c-13 0-21 8-21 21 0 12 8 20 21 20h125z m208 84c12 0 21-9 21-21v-83c0-13-9-21-21-21h-83c-13 0-21 8-21 21v83c0 12 8 21 21 21h83z m208-84c13 0 21-8 21-20 0-13-8-21-21-21h-125c-12 0-21 8-21 21 0 12 9 20 21 20h125z m-646 42h-41v-42h41v42z m417 0h-42v-42h42v42z m-187 42c12 0 20-9 20-21 0-13-8-21-20-21h-125c-13 0-21 8-21 21 0 12 8 21 21 21h125z m416 0c13 0 21-9 21-21 0-13-8-21-21-21h-125c-12 0-21 8-21 21 0 12 9 21 21 21h125z m-625 208c13 0 21-8 21-21v-83c0-13-8-21-21-21h-83c-13 0-21 8-21 21v83c0 13 8 21 21 21h83z m209-83c12 0 20-9 20-21s-8-21-20-21h-125c-13 0-21 8-21 21s8 21 21 21h125z m208 83c12 0 21-8 21-21v-83c0-13-9-21-21-21h-83c-13 0-21 8-21 21v83c0 13 8 21 21 21h83z m208-83c13 0 21-9 21-21s-8-21-21-21h-125c-12 0-21 8-21 21s9 21 21 21h125z m-646 41h-41v-41h41v41z m417 0h-42v-41h42v41z m-187 42c12 0 20-8 20-21s-8-21-20-21h-125c-13 0-21 9-21 21s8 21 21 21h125z m416 0c13 0 21-8 21-21s-8-21-21-21h-125c-12 0-21 9-21 21s9 21 21 21h125z m-625 208c13 0 21-8 21-20v-84c0-12-8-21-21-21h-83c-13 0-21 9-21 21v84c0 12 8 20 21 20h83z m209-83c12 0 20-8 20-21s-8-21-20-21h-125c-13 0-21 9-21 21s8 21 21 21h125z m208 83c12 0 21-8 21-20v-84c0-12-9-21-21-21h-83c-13 0-21 9-21 21v84c0 12 8 20 21 20h83z m208-83c13 0 21-8 21-21s-8-21-21-21h-125c-12 0-21 9-21 21s9 21 21 21h125z m-646 42h-41v-42h41v42z m417 0h-42v-42h42v42z m-187 41c12 0 20-8 20-20 0-13-8-21-20-21h-125c-13 0-21 8-21 21 0 12 8 20 21 20h125z m416 0c13 0 21-8 21-20 0-13-8-21-21-21h-125c-12 0-21 8-21 21 0 12 9 20 21 20h125z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="colors-typography" unicode="" d="M896 808c55 0 100-41 104-93l0-7v-757c0-54-43-97-97-101l-7 0h-792c-55 0-100 41-104 94l0 6v758c0 53 43 97 98 100l6 0h792z m62-208h-916v-650c0-30 24-55 56-58l6 0h792c32 0 59 23 62 53l0 6v649z m-333-642c-5 0-9 2-13 5l-2 2-2 2-1-2c-2-3-5-5-8-5l-4-1-3-1h-84c-10 0-18 8-20 17l0 4v167c0 46 35 84 81 87l6 0 59 0-13 80c0 35 25 64 59 70l5 0 7 1c37 0 67-29 70-68l0-6-12-76 58 0c45 0 81-33 87-75l1-6 0-7v-166c0-11-7-19-17-21l-4-1h-250z m229 134h-325v-92h46l13 51c5 18 28 21 37 7l2-3 1-4 13-51h47v46c0 12 9 21 20 21 11 0 19-8 21-17l0-4v-46h42v46c0 12 9 21 21 21 10 0 18-8 20-17l1-4v-46h41v92z m-312 425c10 0 18-8 20-17l1-4v-99c0-27-38-28-42-4l-1 7c-1 8-7 14-15 15l-3 1-118 0 0-297c0-8 5-15 12-17l4-1 8-1c20-4 21-33 3-40l-3-1-5-1h-139l-4 1c-22 4-22 37 0 41l8 0c7 2 13 8 15 15l0 4 0 296-118 0c-8 0-15-5-17-12l-1-3-1-8c-4-22-37-22-41 0l0 4v100c0 10 7 19 17 20l3 1h417z m-21-42h-375v-21l2 1 5 1 0 0 6 1 6 0h138c11 0 19-7 21-17l0-4v-317c0-4 0-8-1-12l-1-5-1-2h24l0 2-2 5 0 0 0 6-1 6v317c0 11 8 19 17 21l4 0h139c3 0 8 0 11-1l6-1 2-1v21z m171-133c-15 0-27-11-29-22l-1-4 17-100c2-11-6-22-17-23l-4-1h-83c-24 0-43-18-45-41l-1-5v-13h325v13c0 22-15 40-36 44l-5 1-5 1h-83c-12 0-21 9-21 20l1 4 16 97c0 16-13 29-29 29z m204 425h-792c-32 0-59-24-62-54l0-5v-66h916v66c0 30-24 56-56 59l-6 0z m-771-63c0-11-9-21-21-21s-21 10-21 21 10 21 21 21 21-9 21-21m83 0c0-11-9-21-20-21s-21 10-21 21 9 21 21 21 20-9 20-21m84 0c0-11-9-21-21-21-12 0-21 10-21 21s9 21 21 21c12 0 21-9 21-21" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="custom" unicode="" d="M896 788c54 0 100-38 104-87l0-7v-688c0-50-43-90-97-93l-7-1h-792c-54 0-100 38-104 87l0 7v688c0 50 43 90 97 93l7 1h792z m0-42h-792c-33 0-59-21-62-47l0-5v-688c0-26 24-49 56-51l6-1h792c33 0 59 21 62 47l0 5v688c0 26-24 49-56 51l-6 1z m-549-87l3-3 150-150 135 136c14 13 30 20 48 21l7 0c15-1 30-7 42-17l5-4 55-56c26-26 28-68 4-96l-4-5-136-135 150-150c7-7 8-18 3-27l-3-3-126-126c-7-7-19-8-27-3l-3 3-150 150-100-100c-1-1-2-2-4-3l-3-1 0 0-1-1-178-51c-14-4-28 8-26 23l1 3 51 179 0 0 1 3 0 0 2 2 0 0 2 2 99 100-150 150c-7 7-8 18-3 27l3 3 126 126c8 8 19 9 27 3z m280-339l-98-97 136-135 97 97-9 9-23-24c-8-8-21-8-30 0-7 8-7 19-2 27l2 3 24 23-9 9-10-11c-9-8-22-8-30 0-7 7-8 19-2 27l2 3 10 11-8 8-24-23c-8-8-21-8-29 0-7 7-8 18-3 27l3 3 23 23-20 20z m-358-124l-31-107 108 31-77 76z m417 425l-5-1c-4 0-9-2-13-5l-3-3-377-377 98-97 376 376c5 5 8 11 8 17l1 4c0 7-2 13-6 18l-3 4-55 55c-4 4-10 7-17 8l-4 1z m44-41c8-7 8-18 3-26l-3-3-355-355c-8-8-21-8-29 0-7 7-8 18-3 27l3 2 355 355c8 8 21 8 29 0z m-395 32l-97-97 135-135 98 97-21 21-24-23c-8-8-21-8-29 0-7 7-8 18-3 27l3 3 23 23-9 9-10-11c-8-8-21-8-30 0-7 7-8 18-2 27l2 2 11 11-9 9-23-24c-8-8-21-8-30 0-7 7-7 18-2 27l2 2 24 24-9 8z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="footer" unicode="" d="M896 788c58 0 104-42 104-92v-688c0-54-46-91-104-91h-792c-58 0-104 41-104 91v688c0 54 46 92 104 92h792z m62-667h-916v-117c0-29 29-50 62-50h792c33 0 62 25 62 50v117z m-62 625h-792c-33 0-62-25-62-50v-533h916v533c0 25-29 50-62 50z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="header" unicode="" d="M896 788c54 0 100-38 104-88l0-8v-688c0-50-42-92-96-92l-8 0h-792c-54 0-100 38-104 88l0 8v688c0 50 42 92 96 92l8 0h792z m62-209h-916v-575c0-25 25-50 58-50l4 0h792c33 0 58 21 62 46l0 4v575z m-62 167h-792c-33 0-58-21-62-46l0-4v-75h916v75c0 25-25 50-58 50l-4 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="layout-settings" unicode="" d="M896 808c55 0 100-43 104-97l0-7v-750c0-55-43-100-97-104l-7 0h-792c-55 0-100 43-104 97l0 7v750c0 56 43 101 98 104l6 0h792z m-750-354h-104v-500c0-32 24-59 56-62l6 0h42v83h-42c-11 0-21 9-21 21 0 10 8 19 17 20l4 1h42v83h-42c-11 0-21 9-21 21 0 10 8 19 17 20l4 1h42v83h-42c-11 0-21 9-21 21 0 10 8 19 17 20l4 1h42v83h-42c-11 0-21 9-21 21 0 10 8 19 17 20l4 1h42v62z m812 0h-770v-562h708c32 0 59 24 62 56l0 6v500z m-687-312c12 0 21-9 21-21 0-11-8-19-17-21l-4 0h-42c-11 0-21 9-21 21 0 10 8 19 17 20l4 1h42z m125 0c12 0 21-9 21-21 0-11-8-19-17-21l-4 0h-42c-11 0-21 9-21 21 0 10 8 19 17 20l4 1h42z m125 41c10 0 19-7 20-17l1-3v-42c0-11-8-19-17-21l-4 0h-42c-11 0-21 9-21 21 0 10 8 19 17 20l4 1h21v21c0 10 8 18 17 20l4 0z m0 125c10 0 19-7 20-17l1-3v-42c0-12-9-21-21-21-11 0-19 8-21 17l0 4v42c0 11 9 20 21 20z m0 125c10 0 19-7 20-17l1-3v-42c0-12-9-21-21-21-11 0-19 8-21 17l0 4v42c0 11 9 20 21 20z m-375 167h-104v-104h104v104z m812 0h-770v-104h62v42c0 11 9 20 21 20 10 0 19-7 20-17l1-3v-42h83v42c0 11 9 20 21 20 10 0 19-7 20-17l1-3v-42h83v42c0 11 9 20 21 20 10 0 19-7 20-17l1-3v-42h83v42c0 11 9 20 21 20 10 0 19-7 20-17l1-3v-42h83v42c0 11 9 20 21 20 10 0 19-7 20-17l1-3v-42h83v42c0 11 9 20 21 20 10 0 19-7 20-17l1-3v-42h41v104z m-62 167h-792c-32 0-59-25-62-57l0-6v-62h916v62c0 33-24 59-56 62l-6 1z m-792-42c12 0 21-9 21-21s-9-21-21-21-21 10-21 21 10 21 21 21z m84 0c11 0 20-9 20-21s-9-21-20-21-21 10-21 21 9 21 21 21z m83 0c12 0 21-9 21-21s-9-21-21-21c-12 0-21 10-21 21s9 21 21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="lightbox-expand" unicode="" d="M896 808c55 0 100-41 104-93l0-7v-757c0-54-43-97-97-101l-7 0h-792c-55 0-100 41-104 94l0 6v758c0 53 43 97 98 100l6 0h792z m62-208h-916v-650c0-30 24-55 56-58l6 0h792c32 0 59 23 62 53l0 6v649z m-545-146c12 0 21-9 21-21 0-10-7-18-17-20l-4 0h-71l149-150 149 150h-71c-10 0-19 7-20 17l-1 3c0 11 8 19 17 21l4 0 122 0c1 0 2 0 3 0l-3 0 2 0 0 0 3 0 0 0 3-1 0 0 2-1 0 0 2-2 0 0 2-1 2-2 0 0 2-3 0 0 1-4 0 0 1-2 0 0 1-2 0 0 0-2v-121c0-12-9-21-21-21-11 0-19 7-21 17l0 4 0 71-149-150 149-149 0 71c0 10 8 19 17 20l4 1c10 0 19-8 20-17l1-4v-122c0-1 0-3-1-4l-1-4 0 0-1-2 0 0-1-3 0 0-3-2-1-1 0 0-3-2 0 0-2-1 0 0-3-1 0 0-2-1-3 0h-122c-11 0-21 10-21 21 0 11 8 19 17 21l4 0 71 0-149 149-149-149 71 0c10 0 19-8 20-17l1-4c0-11-8-19-17-21l-4 0-124 0 0 0-4 1 0 0-3 1 0 0-3 2 0 0-2 2-2 1 0 0-2 3 0 0-1 4 0 0-1 3 0 2 0 0 0 123c0 12 9 21 21 21 10 0 18-8 20-17l1-4v-71l149 149-149 150v-71c0-11-8-19-18-21l-3 0c-11 0-19 7-21 17l0 4 0 122c0 1 0 1 0 2l0-3 0 2 0 0 0 3 0 0 1 3 0 0 2 3 0 0 1 3 0 0 2 1 1 2 0 0 3 1 0 0 2 2 0 0 3 0 0 0 4 1 0 0 123 0z m483 313h-792c-32 0-59-24-62-54l0-5v-66h916v66c0 30-24 56-56 59l-6 0z m-771-63c0-11-9-21-21-21s-21 10-21 21 10 21 21 21 21-9 21-21m83 0c0-11-9-21-20-21s-21 10-21 21 9 21 21 21 20-9 20-21m84 0c0-11-9-21-21-21-12 0-21 10-21 21s9 21 21 21c12 0 21-9 21-21" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="error-404" unicode="" d="M896 788c57 0 104-42 104-94v-688c0-52-47-94-104-94h-792c-57 0-104 42-104 94v688c0 52 47 94 104 94h792z m0-42h-792c-35 0-62-24-62-52v-688c0-28 27-52 62-52h792c35 0 62 24 62 52v688c0 28-27 52-62 52z m-596-266c5 0 9-2 13-5 3-3 5-8 5-14 0-3 0-6-3-9l-86-149 0 0 22-1 0 0 29 0 0 0 18-1v52l1 4c2 4 4 7 6 9 3 3 7 4 11 4 4 0 9-1 12-4 2-2 5-5 6-8l1-5v-53h28l4-1c4-2 7-4 9-7 3-3 4-7 4-11 0-4-2-8-5-12-2-2-6-4-10-6l-4-1-19 0-7 0v-49l0-4c-1-5-3-9-6-12-4-4-8-6-13-6-4 0-8 2-11 5-3 3-5 7-6 12l-1 4v51l-85 1c-5 0-10 0-15 0-13 2-20 9-20 20 0 2 0 4 1 6 11 20 22 40 34 60l17 30c17 29 35 59 52 89 2 4 5 7 8 9 4 1 7 2 10 2z m450 0c4 0 8-2 12-5 4-3 6-8 6-14 0-3-1-6-3-9l-86-149 0 0 21-1 0 0 29 0 0 0 19-1v52l1 4c1 4 3 7 6 9 3 3 7 4 11 4 4 0 8-1 12-4 2-2 4-5 6-8l1-5v-53h27l4-1c4-2 7-4 9-7 3-3 5-7 5-11 0-4-2-8-5-12-3-2-6-4-10-6l-4-1-19 0-7 0v-49l0-4c-1-5-3-9-6-12-4-4-9-6-13-6-4 0-8 2-12 5-3 3-5 7-6 12l0 4v51l-85 1c-5 0-10 0-15 0-14 2-20 9-20 20 0 2 0 4 0 6l17 30 0 0 18 30 42 74 26 45c3 4 6 7 9 9 3 1 6 2 10 2z m-242 5l10-1c7 0 13-2 20-5 6-3 12-6 18-10s12-9 17-14c8-9 15-20 20-32 5-11 9-24 11-36s3-26 3-39-1-25-2-38c-3-11-7-23-12-36-6-13-13-26-20-37-8-11-18-21-28-29-11-8-23-13-36-15-9-1-17-1-25-1-9 1-16 3-25 7-6 4-12 7-19 10-5 4-11 9-15 14-7 10-13 21-18 32s-7 23-9 35-3 25-3 37c0 13 1 25 3 37 1 13 5 26 10 40s12 26 20 38c8 12 18 21 30 29 12 8 25 12 40 13l10 1 0 0z m7-39c-8 2-16 1-24-1-8-2-16-7-23-13-10-9-18-22-24-38s-10-34-11-52-1-36 2-53 10-30 19-41c5-6 11-10 16-12 6-3 13-4 21-6 12 1 22 4 30 9s16 11 22 19 10 15 14 25c3 6 5 13 7 20l2 10 1 3 1 14 1 13c1 10 0 19-1 28-2 8-3 16-5 24s-5 15-10 23c-5 7-10 14-17 19-6 5-14 8-21 9z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="theme-style" unicode="" d="M945 741c40-24 55-75 34-117l-4-7-183-292v-275l-1-7c-3-52-45-93-97-97l-6 0h-584l-6 0c-53 4-94 45-98 97l0 7v583l0 7c4 53 45 94 98 98l6 0h584l6-1c47-3 86-37 95-82l32 55c26 43 81 57 124 31z m-257-45h-584l-6 0c-29-3-53-27-56-56l0-7v-583l0-6c3-29 27-53 56-56l6-1h584l5 1c30 3 54 27 57 56l0 6v209l-33-53c18-51 1-115-47-159l-7-6c-75-63-202-69-273 6-10 10-7 26 5 33l3 1 2 1c4 2 10 5 17 11l0 3v267c0 10 7 18 17 20l4 0 196 0 24 42-533 0c-10 0-19 8-20 17l-1 4v167c0 10 8 18 17 20l4 0h542c10 0 18-7 20-17l1-3v-136l62 109v47l0 6c-3 30-27 54-57 56l-5 1z m-25-479c-35 36-81 38-118 2-10-9-16-19-22-31-3-5-4-9-6-14l-2-6-9-25c-8-26-16-40-31-55-10-9-18-17-26-23l-6-5-2-1 5-4c52-31 125-26 177 8l7 5 7 5c49 42 60 108 26 144z m-309 166c11 0 19-7 21-17l0-3v-292c0-11-7-19-17-21l-4 0h-229c-10 0-19 8-20 17l-1 4v292c0 10 8 18 17 20l4 0h229z m-21-41h-187v-250h187v250z m125 0l0-207c2 4 5 9 7 15l5 14 4 13 4 12c1 2 1 4 2 5l2 5 4 7c7 16 17 30 30 42 18 18 38 29 59 35l3 0 33 58-153 1z m217 31l-50-88c21-5 42-15 60-32l7-7 53 85-70 42z m185 321l-3-4-161-282 72-43 172 274c13 23 6 53-17 66-21 13-48 8-63-11z m-214-102h-500v-125h500v125z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="search-results" unicode="" d="M896 788c57 0 104-42 104-94v-688c0-52-47-94-104-94h-792c-57 0-104 42-104 94v688c0 52 47 94 104 94h792z m0-42h-792c-35 0-62-24-62-52v-688c0-28 27-52 62-52h792c35 0 62 24 62 52v688c0 28-27 52-62 52z m-228-354c82 0 148-66 148-148 0-34-11-64-30-89l71-73c8-8 8-21 0-29-8-8-19-8-27-3l-3 3-71 72c-25-17-55-28-88-28-81 0-147 66-147 147s66 148 147 148z m-168-271c12 0 21-9 21-21 0-10-8-19-17-20l-4-1h-333c-12 0-21 9-21 21 0 10 7 19 17 20l4 1h333z m168 229c-58 0-105-47-105-106s47-106 105-106 106 48 106 106-47 106-106 106z m-251-104c11 0 21-9 21-21 0-10-8-19-18-20l-3-1h-250c-12 0-21 9-21 21 0 10 7 19 17 20l4 1h250z m41 125c12 0 21-9 21-21 0-10-7-19-17-20l-4-1h-291c-12 0-21 9-21 21 0 10 7 19 17 20l4 1h291z m-83 125c12 0 21-9 21-21 0-10-8-19-17-20l-4-1h-208c-12 0-21 9-21 21 0 10 7 19 17 20l4 1h208z m250 0c12 0 21-9 21-21 0-10-8-19-17-20l-4-1h-167c-11 0-20 9-20 21 0 10 7 19 17 20l3 1h167z m208 0c12 0 21-9 21-21 0-10-7-19-17-20l-4-1h-125c-11 0-20 9-20 21 0 10 7 19 17 20l3 1h125z m-416 125c11 0 21-9 21-21 0-10-8-19-18-20l-3-1h-250c-12 0-21 9-21 21 0 10 7 19 17 20l4 1h250z m416 0c12 0 21-9 21-21 0-10-7-19-17-20l-4-1h-333c-12 0-21 9-21 21 0 10 8 19 17 20l4 1h333z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="single-post" unicode="" d="M896 788c54 0 100-38 104-87l0-7v-688c0-50-43-90-97-93l-7-1h-792c-54 0-100 38-104 87l0 7v688c0 50 43 90 97 93l7 1h792z m0-42h-792c-33 0-59-21-62-47l0-5v-688c0-26 24-49 56-51l6-1h792c33 0 59 21 62 47l0 5v688c0 26-24 49-56 51l-6 1z m-63-625c12 0 21-9 21-21 0-10-7-19-17-20l-4-1h-666c-12 0-21 9-21 21 0 10 7 19 17 20l4 1h666z m0 125c12 0 21-9 21-21 0-10-7-19-17-20l-4-1h-666c-12 0-21 9-21 21 0 10 7 19 17 20l4 1h666z m-544 365l1-4 105-292c3-10-2-22-13-26-9-4-20 1-25 9l-2 3-25 70h-119l-25-70c-3-9-13-15-23-13l-3 0c-10 4-15 14-14 23l1 4 104 292c7 17 29 18 38 4z m544-240c12 0 21-9 21-21 0-10-7-19-17-20l-4-1h-333c-12 0-21 9-21 21 0 10 8 19 17 20l4 1h333z m-562 167l-45-125h89l-44 125z m562-42c12 0 21-9 21-21 0-10-7-19-17-20l-4-1h-333c-12 0-21 9-21 21 0 10 8 19 17 20l4 1h333z m0 125c12 0 21-9 21-21 0-10-7-19-17-20l-4-1h-333c-12 0-21 9-21 21 0 10 8 19 17 20l4 1h333z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="site-identity" unicode="" d="M896 808c55 0 100-45 104-101l0-7v-742c0-57-43-104-97-108l-7 0h-792c-55 0-100 45-104 101l0 7v742c0 57 43 104 97 108l7 0h792z m62-208h-916v-642c0-35 25-63 56-66l6 0h792c32 0 59 26 62 60l0 6v642z m-604-125c127 0 229-102 229-229 0-68-29-128-75-170l-9-8 0 0c-9-7-17-13-26-19l-11-6 0 0-10-5 0 0-10-4-12-5 0 0-9-3 0 0-5-1 0 0-6-2 0 0-10-2 0 0-13-2 0 0-11-1 0 0-7-1 0 0-5 0c-3 0-6-1-10-1l-14 1 0 0-14 1 0 0-6 1 0 0-11 1 0 0-11 3 0 0-5 1 0 0-10 3 0 0-6 3 0 0-4 1 0 0-8 3 0 0-9 4 0 0-9 5 0 0c-10 5-19 11-28 17l-10 8 0 0c-51 42-83 106-83 177-1 128 102 230 228 230z m0-292c-50 0-94-27-117-69l-4-8-1-2 5-4 9-7 0 0 7-5 8-5c4-2 9-5 14-7l8-3 7-3c5-2 10-4 15-5l9-2 11-2c6-1 13-2 20-2l9-1 5 0 0 0 7 1 8 1 11 1 7 2 0 0 5 1 9 2 9 3 9 4c5 2 9 3 14 6l10 5 0 0 8 5c3 1 6 4 8 6l8 5 4 5-1 2c-19 41-59 70-105 76l-8 1-8-1z m500 0c11 0 19-7 21-17l0-3v-84c0-10-7-19-17-20l-4-1h-208c-11 0-19 8-21 17l0 4v84c0 10 8 18 17 20l4 0h208z m-21-41h-166v-42h166v42z m-479 291c-103 0-187-84-187-187 0-41 13-78 35-109 19 33 48 58 82 73-21 20-34 47-34 78 0 57 47 104 104 104s104-47 104-104c0-31-13-58-34-78 35-15 64-40 83-73 22 31 35 68 35 109 0 103-84 187-188 187z m0-83c-34 0-62-28-62-62s28-63 62-63 63 28 63 63-28 62-63 62z m500 83c11 0 19-7 21-17l0-3v-84c0-10-7-19-17-20l-4-1h-208c-11 0-19 8-21 17l0 4v84c0 10 8 18 17 20l4 0h208z m-21-41h-166v-42h166v42z m63 375h-792c-32 0-59-27-62-61l0-6v-58h916v58c0 35-25 63-56 66l-6 1z m-792-42c12 0 21-9 21-21s-9-21-21-21-21 10-21 21 10 21 21 21z m84 0c11 0 20-9 20-21s-9-21-20-21-21 10-21 21 9 21 21 21z m83 0c12 0 21-9 21-21s-9-21-21-21c-12 0-21 10-21 21s9 21 21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="theme-builder" unicode="" d="M550 79c29 0 50-21 54-50l0-4v-100c0-29-21-50-50-54l-4 0h-100c-29 0-50 21-54 50l0 4v100c0 29 21 50 50 54l4 0h100z m375 0c29 0 50-21 54-50l0-4v-100c0-29-21-50-50-54l-4 0h-100c-29 0-50 21-54 50l0 4v100c0 29 21 50 50 54l4 0h100z m-750 0c29 0 50-21 54-50l0-4v-100c0-29-21-50-50-54l-4 0h-100c-29 0-50 21-54 50l0 4v100c0 29 21 50 50 54l4 0h100z m375-41h-100c-4 0-12-5-12-9l0-4v-100c0-4 4-13 8-13l4 0h100c4 0 13 5 13 9l0 4v100c0 4-5 13-13 13l0 0z m375 0h-100c-4 0-12-5-12-9l0-4v-100c0-4 4-13 8-13l4 0h100c4 0 13 5 13 9l0 4v100c0 4-5 13-13 13l0 0z m-750 0h-100c-4 0-12-5-12-9l0-4v-100c0-4 4-13 8-13l4 0h100c4 0 13 5 13 9l0 4v100c0 4-5 13-13 13l0 0z m325 375c8 0 17-9 21-17l0-4v-104h229c79 0 146-67 146-146 0-13-8-21-21-21s-21 8-21 21c0 54-41 100-96 104l-8 0h-229v-104c0-13-8-21-21-21-8 0-17 8-21 17l0 4v104h-229c-58 0-104-46-104-104 0-13-8-21-21-21s-21 8-21 21c0 79 63 141 138 146l8 0h229v104c0 12 9 21 21 21z m83 416c55 0 100-41 105-96l0-8v-167c0-54-42-100-96-104l-9 0h-166c-54 0-100 42-104 96l0 8v167c0 54 41 100 95 104l9 0h166z m0-41h-166c-34 0-59-25-63-59l0-4v-167c0-33 25-58 59-62l4 0h166c34 0 59 25 63 58l0 4v167c0 33-25 58-58 63l-5 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="download-bold" unicode="" d="M572 808h-144c-23 0-43-19-43-43v-300h-157c-31 0-48-39-25-62l272-272c14-13 36-13 49 0l273 272c22 23 6 62-26 62h-157v300c1 24-19 43-42 43z m386-873v200c0 24-19 43-43 43h-262l-88-88c-36-36-94-36-130 0l-88 88h-262c-24 0-43-19-43-43v-200c0-24 19-43 43-43h830c24 0 43 19 43 43z m-222 42c0 20-16 36-36 36-19 0-35-16-35-36 0-19 16-35 35-35 20 0 36 16 36 35z m79 36c20 0 36-16 36-36 0-19-16-35-36-35-20 0-36 16-36 35 0 20 16 36 36 36z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="share-arrow" unicode="" d="M946 467l-279 250c-25 21-63 4-63-29v-130c-366-4-533-345-562-520 196 225 321 291 562 295v-141c0-34 38-50 63-29l279 245c17 17 17 42 0 59z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="global-settings" unicode="" d="M816 302c49-10 92-36 127-74 3-4 5-10 5-16-1-4-3-9-6-12l-2-2c-9-7-12-18-6-27 4-8 13-11 22-9l4 1c5 2 11 2 16 0 6-3 9-7 12-12 8-26 12-50 12-73 0-24-4-48-12-74-2-5-6-10-12-12-4-2-8-2-13-1l-3 1c-10 4-21 1-26-8-5-8-4-17 3-24l3-2c4-3 7-9 8-15 0-6-1-11-5-16-34-38-78-64-127-73-1-1-2-1-4-1-4 0-9 2-12 4-4 3-7 7-8 12l-1 3c-1 11-10 19-20 19-9 0-17-6-20-16l-1-3c0-6-3-11-8-15s-11-4-16-3c-49 9-93 35-127 73-4 5-6 10-5 16 1 5 3 9 6 12l2 3c9 7 11 17 6 27-5 7-13 11-22 9l-4-2c-5-2-11-2-17 0-5 3-9 7-11 13-9 25-13 49-13 73 0 24 4 47 13 73 2 6 6 10 11 12 5 2 9 3 14 2l3-2c10-4 21 0 26 8 5 8 3 18-3 24l-3 3c-4 3-7 8-8 14-1 6 1 12 5 16 34 39 78 64 126 74 6 1 12 0 17-4 3-3 6-7 8-11l0-4c2-10 10-18 20-18 10 0 18 6 20 15l1 3c0 6 4 12 8 15 5 4 11 5 17 4z m-337 546c264 0 479-215 479-479 0-17 0-34-3-53-1-11-12-19-22-18-12 1-20 12-19 23 1 9 2 18 2 27l-416 0 0-416c9 0 18 1 27 2 11 1 22-7 23-19 1-11-7-21-18-23-19-2-36-2-53-2-264 0-479 215-479 479s215 479 479 479z m346-592c-10-20-31-33-54-33s-44 13-55 33c-27-8-51-23-73-43 12-19 13-43 2-63-12-20-34-31-56-30-4-15-6-29-6-43 0-14 2-27 6-42 22 1 44-10 56-31 11-20 10-44-2-63 22-20 46-35 73-43 11 20 32 33 55 33s44-13 54-33c28 8 52 23 73 43-10 17-12 39-4 58l3 5c12 20 33 32 56 31 4 15 5 29 5 43 0 13-1 27-5 42-23 0-44 10-56 30-12 20-10 45 1 64-20 19-45 34-73 42z m-367-158l-157 0c38-91 94-153 157-165l0 165z m-203 0l-119 0c52-67 124-118 207-145-36 36-66 85-88 145z m516 83c57 0 104-46 104-104s-47-104-104-104-104 47-104 104 46 104 104 104z m0-41c-35 0-63-28-63-63 0-34 28-62 63-62s62 28 62 62c0 35-28 63-62 63z m-562 208l-166 0c3-76 26-147 64-208l134 0c-17 55-28 118-31 185l-1 23z m249 0l-208 0c3-75 15-147 35-208l174 0v208z m-218 250l-133 0c-38-61-61-132-65-208l166 0c2 75 14 146 32 208z m218 0l-173 0c-20-62-33-133-35-208l208 0v208z m215 0l-173 0v-208l208 0c-2 68-13 133-30 191l-5 17z m179 0l-134 0c19-62 30-133 32-208l166 0c-3 70-23 137-57 195l-7 13z m-509 187l-10-4c-79-28-147-77-197-141l119 0c22 59 52 109 88 145z m-42-145l157 0 0 164c-60-11-114-69-153-154l-4-10z m199 165l0-165 158 0c-37 87-90 148-150 163l-8 2z m116-20l1-1c35-36 64-85 87-144l119 0c-53 66-125 117-207 145z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="user-preferences" unicode="" d="M167 829c11 0 21-9 21-21v-62h20c58 0 105-47 105-104v-84c0-57-47-104-105-104h-20v-562c0-12-10-21-21-21s-21 9-21 21v562h-21c-57 0-104 47-104 104v84c0 57 47 104 104 104h21v62c0 12 9 21 21 21z m333 0c12 0 21-9 21-21v-312h21c57 0 104-47 104-104v-84c0-57-47-104-104-104h-21v-312c0-12-9-21-21-21s-21 9-21 21v312h-21c-57 0-104 47-104 104v84c0 57 47 104 104 104h21v312c0 12 9 21 21 21z m333 0c12 0 21-9 21-21v-562h21c58 0 104-47 104-104v-84c0-57-46-104-104-104h-21v-62c0-12-9-21-21-21s-20 9-20 21v62h-21c-58 0-104 47-104 104v84c0 57 46 104 104 104h21v562c0 12 9 21 20 21z m42-625h-83c-35 0-63-28-63-62v-84c0-34 28-62 63-62h83c35 0 63 28 63 62v84c0 34-28 62-63 62z m-333 250h-84c-34 0-62-28-62-62v-84c0-34 28-62 62-62h84c34 0 62 28 62 62v84c0 34-28 62-62 62z m-334 250h-83c-35 0-62-28-62-62v-84c0-34 27-62 62-62h83c35 0 63 28 63 62v84c0 34-28 62-63 62z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="lock" unicode="" d="M500 842c149 0 272-115 283-264l0-10 0-10v-125h79c53 0 96-43 96-96v-392c0-53-43-95-96-95h-724c-53 0-96 42-96 95v392c0 53 43 96 96 96h79l0 126 0 11c6 151 131 272 283 272z m0-575c-42 0-76-31-82-71l-1-6 0-7v-93l0 0c5-41 40-73 83-73 40 0 74 28 82 67l1 6 0 0v93c0 46-37 84-83 84z m0 466c-91 0-167-70-174-158l-1-8 0-9 0-125h350l0 124 0 8c-4 94-81 168-175 168z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="export-kit" unicode="" d="M838 767c64 0 117-51 120-115l0-7v-235c0-23-18-42-41-42-22 0-39 16-42 37l0 5v32h-750v-404c0-20 15-35 33-38l4 0h676c19 0 35 15 37 34l0 4c0 23 19 42 42 42s41-19 41-42c0-64-50-118-113-121l-7 0h-676c-64 0-117 50-120 114l0 7v607c0 65 50 118 113 122l7 0h676z m-5-427c6 0 11-2 15-6l104-98c8-8 8-21 1-30l-105-98c-9-8-22-8-30 0-4 4-6 10-6 15l0 56h-271c-23 0-41 19-41 41 0 22 16 40 36 42l5 0h271l0 56c1 12 10 22 21 22z m5 343h-676c-19 0-35-14-37-33l0-5v-120h750v120c0 20-15 36-33 38l-4 0z m-633-38c23 0 42-19 42-42s-19-41-42-41-42 18-42 41 19 42 42 42z m122 0c23 0 41-19 41-42s-18-41-41-41-42 18-42 41 19 42 42 42z m121 0c23 0 42-19 42-42s-19-41-42-41c-23 0-41 18-41 41s18 42 41 42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="import-kit" unicode="" d="M838 767c64 0 117-51 120-115l0-7v-235c0-23-18-42-41-42-22 0-39 16-42 37l0 5v32h-750v-404c0-20 15-35 33-38l4 0h676c19 0 35 15 37 34l0 4c0 23 19 42 42 42s41-19 41-42c0-64-50-118-113-121l-7 0h-676c-64 0-117 50-120 114l0 7v607c0 65 50 118 113 122l7 0h676z m-213-427c-5 0-10-2-14-6l-104-98c-9-8-9-21-1-30l105-98c8-8 22-8 29 0 4 4 6 10 6 15l0 56h271c23 0 42 19 42 41 0 22-16 40-37 42l-5 1h-271l0 56c0 11-9 21-21 21z m213 343h-676c-19 0-35-14-37-33l0-5v-120h750v120c0 20-15 36-33 38l-4 0z m-633-38c23 0 42-19 42-42s-19-41-42-41-42 18-42 41 19 42 42 42z m122 0c23 0 41-19 41-42s-18-41-41-41-42 18-42 41 19 42 42 42z m121 0c23 0 42-19 42-42s-19-41-42-41c-23 0-41 18-41 41s18 42 41 42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="lottie" unicode="" d="M200 767c13 0 23-11 23-24s-10-23-23-23-23 10-23 23 10 24 23 24z m47-64c7 11 21 14 32 7 36-24 64-55 86-86 8-11 5-25-5-33s-25-5-33 6c-19 27-44 54-74 73-10 8-13 22-6 33z m137-146c11 6 25 2 31-10 24-44 43-93 52-146 0-3 1-8 1-12l1-9 64 0c11 0 21-8 22-19l1-4c0-12-8-21-20-23l-3 0-62 0 0-14 0-15-1-19c-1-16-2-30-3-40-12-103-50-190-117-246-63-55-172-73-249-4-38 35-63 88-58 159 5 70 35 118 85 157 59 47 152 67 269 68l25 0 0 3-2 11c-7 46-25 91-46 131-6 11-1 25 10 32z m41-223l-12 0c-115 0-205-17-256-58-41-33-64-68-68-124-4-56 15-95 44-121 56-51 140-36 187 4 57 49 90 124 101 217l1 13c1 9 2 21 2 33l1 16 0 20z m377 42l130-3c13-1 23-12 23-25-1-11-10-20-20-22l-4 0-130 4c-13 0-23 11-23 24 1 11 10 21 20 22l4 0z m-155 5l67-2c13-1 23-11 22-24 0-12-9-21-20-23l-3 0-67 2h-25c-13 0-23 10-23 23 0 12 8 21 19 23l4 0 26 1z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="products-archive" unicode="" d="M896 788c54 0 100-38 104-87l0-7v-688c0-50-43-90-97-93l-7-1h-792c-54 0-100 38-104 87l0 7v688c0 50 43 90 97 93l7 1h792z m0-42h-792c-33 0-59-21-62-47l0-5v-688c0-26 24-49 56-51l6-1h792c33 0 59 21 62 47l0 5v688c0 26-24 49-56 51l-6 1z m7-417c7 0 14-6 14-14v-305c0-8-7-14-14-14h-368c-8 0-14 6-14 14v305c0 8 6 14 14 14h368z m-438 0c8 0 14-6 14-14v-305c0-8-6-14-14-14h-368c-7 0-14 6-14 14v305c0 8 7 14 14 14h368z m410-41h-312v-250h312v250z m-437 0h-313v-250h313v250z m-171-192c11 0 21-9 21-21s-10-21-21-21c-12 0-21 9-21 21s9 21 21 21z m64 0c12 0 21-9 21-21s-9-21-21-21c-11 0-21 9-21 21s10 21 21 21z m373 0c12 0 21-9 21-21s-9-21-21-21-21 9-21 21 10 21 21 21z m65 0c11 0 21-9 21-21s-10-21-21-21c-12 0-21 9-21 21s9 21 21 21z m-554 175c8 0 15-4 18-11l2-3 7-22 121 0c15 0 28-11 30-25l0-5c0-2 0-4 0-6l-1-3-24-71c-4-11-13-18-25-20l-4 0h-76c-11 0-22 6-27 16l-1 4-35 104-12 0c-11 0-19 8-21 17l0 4c0 10 7 19 17 20l4 1h27z m438 0c7 0 14-4 18-11l2-3 7-22 121 0c15 0 27-11 29-25l1-5c0-2-1-4-1-6l-1-3-24-71c-3-11-12-18-24-20l-4 0h-76c-11 0-22 6-27 16l-1 4-35 104-13 0c-10 0-18 7-20 17l-1 4c0 10 8 19 17 20l4 1h28z m-306-77h-92l16-48h59l17 48z m437 0h-91l16-48h59l16 48z m119 510c7 0 14-6 14-14v-305c0-8-7-14-14-14h-368c-8 0-14 6-14 14v305c0 8 6 14 14 14h368z m-438 0c8 0 14-6 14-14v-305c0-8-6-14-14-14h-368c-7 0-14 6-14 14v305c0 8 7 14 14 14h368z m410-41h-312v-250h312v250z m-437 0h-313v-250h313v250z m-171-192c11 0 21-9 21-21s-10-21-21-21c-12 0-21 9-21 21s9 21 21 21z m64 0c12 0 21-9 21-21s-9-21-21-21c-11 0-21 9-21 21s10 21 21 21z m373 0c12 0 21-9 21-21s-9-21-21-21-21 9-21 21 10 21 21 21z m65 0c11 0 21-9 21-21s-10-21-21-21c-12 0-21 9-21 21s9 21 21 21z m-554 175c8 0 15-4 18-11l2-3 7-22 121 0c15 0 28-11 30-25l0-5c0-2 0-4 0-6l-1-3-24-71c-4-11-13-18-25-20l-4 0h-76c-11 0-22 6-27 16l-1 4-35 104-12 0c-11 0-19 8-21 17l0 4c0 10 7 19 17 20l4 1h27z m438 0c7 0 14-4 18-11l2-3 7-22 121 0c15 0 27-11 29-25l1-5c0-2-1-4-1-6l-1-3-24-71c-4-11-13-18-24-20l-4 0h-77c-11 0-21 6-26 16l-2 4-34 104-13 0c-10 0-19 8-20 17l-1 4c0 10 8 19 17 20l4 1h28z m-306-77h-92l16-48h59l17 48z m437 0h-91l16-48h59l16 48z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="single-product" unicode="" d="M896 788c54 0 100-38 104-87l0-7v-688c0-50-43-90-97-93l-7-1h-792c-54 0-100 38-104 87l0 7v688c0 50 43 90 97 93l7 1h792z m0-42h-792c-33 0-59-21-62-47l0-5v-688c0-26 24-49 56-51l6-1h792c33 0 59 21 62 47l0 5v688c0 26-24 49-56 51l-6 1z m-647-625c7 0 14-6 14-14v-97c0-8-7-14-14-14h-152c-7 0-14 6-14 14v97c0 8 7 14 14 14h152z m216 0c8 0 14-6 14-14v-97c0-8-6-14-14-14h-147c-8 0-14 6-14 14v97c0 8 6 14 14 14h147z m221 0c8 0 14-6 14-14v-97c0-8-6-14-14-14h-151c-8 0-14 6-14 14v97c0 8 6 14 14 14h151z m217 0c7 0 14-6 14-14v-97c0-8-7-14-14-14h-148c-7 0-13 6-13 14v97c0 8 6 14 13 14h148z m-682-42h-96v-41h96v41z m217 0h-92v-41h92v41z m220 0h-95v-41h95v41z m217 0h-92v-41h92v41z m28 625c7 0 14-6 14-14v-514c0-7-7-13-14-13h-806c-7 0-14 6-14 13v514c0 8 7 14 14 14h806z m-28-41h-750v-459h750v459z m-437-340c11 0 20-10 20-21 0-12-9-21-20-21s-21 9-21 21c0 11 9 21 21 21z m104 0c11 0 21-10 21-21 0-12-10-21-21-21-12 0-21 9-21 21 0 11 9 21 21 21z m-201 298c8 0 15-4 19-11l1-3 17-49 230 0c19 0 35-15 37-33l0-4c0-3 0-6 0-8l-2-4-43-129c-5-14-16-23-30-25l-5 0h-137c-15 0-28 8-34 20l-1 5-60 177 0 0-7 22h-34c-11 0-19 8-21 17l0 4c0 10 7 19 17 20l4 1h49z m260-105h-210l39-119h131l40 119z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="disable-trash-o" unicode="" d="M600 808c27 0 52-13 68-35l3-6 59-102h143c13 0 25-10 27-25l0-4v-28c0-15-10-27-23-29l-4 0h-28l0-516 107-93c8-8 9-21 2-30l-28-31c-7-9-21-9-29-2l-55 48c-9-35-38-61-74-64l-6 0h-499c-43 0-79 35-83 79l0 7 0 553-132 116c-8 7-9 21-2 29l28 32c7 8 21 9 29 2l51-44 142 0 58 102c14 23 38 39 65 41l6 0h175z m-337-349l0-482h499l0 48-111 96 0-36c0-11-7-20-17-22l-4 0h-41c-10 0-19 7-21 17l0 4 0 109-111 96 0-205c0-10-7-19-17-21l-4 0h-41c-10 0-19 7-21 17l0 4 0 277-111 98z m499 120h-499l0-10 111-96c1 10 8 18 17 20l4 0h42c10 0 18-7 20-17l1-4 0-71 110-96 0 167c0 11 8 19 17 21l4 1h42c10 0 19-8 20-18l1-3 0-240 111-96-1 442z m-168 144h-163c-3 0-5-2-7-3l-1-2-31-53h241l-30 53c-1 2-4 4-6 5l-3 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="single-page" unicode="" d="M896 788c54 0 100-38 104-87l0-7v-688c0-50-43-90-97-93l-7-1h-792c-54 0-100 38-104 87l0 7v688c0 50 43 90 97 93l7 1h792z m0-42h-792c-33 0-59-21-62-47l0-5v-688c0-26 24-49 56-51l6-1h792c33 0 59 21 62 47l0 5v688c0 26-24 49-56 51l-6 1z m-410-542c8 0 14-6 14-14v-180c0-8-6-14-14-14h-389c-7 0-14 6-14 14v180c0 8 7 14 14 14h389z m410-166c12 0 21-10 21-21 0-11-8-19-17-21l-4 0h-333c-12 0-21 9-21 21 0 10 7 18 17 20l4 1h333z m-438 125h-333v-125h333v125z m438-42c12 0 21-9 21-21 0-10-8-19-17-20l-4-1h-333c-12 0-21 9-21 21 0 10 7 19 17 20l4 1h333z m0 83c12 0 21-9 21-21 0-10-8-18-17-20l-4 0h-333c-12 0-21 9-21 20 0 11 7 19 17 21l4 0h333z m7 500c7 0 14-6 14-14v-430c0-8-7-14-14-14h-806c-7 0-14 6-14 14v430c0 8 7 14 14 14h806z m-258-176l-165-170c-6-5-14-8-22-5l-3 2-123 72-153-139h671l-205 240z m230 135h-750v-368l190 173c6 5 14 7 21 4l4-2 122-71 170 174c7 8 19 8 28 2l3-3 212-249v340z m-625-42c35 0 63-28 63-63s-28-62-63-62-62 28-62 62 27 63 62 63z m0-42c-12 0-21-9-21-21s9-20 21-20 21 9 21 20-9 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="wordpress-light" unicode="" d="M500 850c276 0 500-224 500-500s-224-500-500-500-500 224-500 500 224 500 500 500z m8-541l-137-399c41-12 84-18 129-18 53 0 104 9 151 25l-143 392z m-466 41c0-177 100-331 247-407l-212 582c-23-54-35-113-35-175z m873 195l0-5 0-13c0-44-7-94-30-154l-5-14-138-398c130 81 216 225 216 389 0 70-15 135-43 195z m-415 263c-157 0-297-79-379-200l11 0 0 0 5 0c49 0 126 5 126 5 23 2 27-31 7-38l-4 0c0 0-22-2-48-4l-6-1 171-509 103 309-73 200-17 2c-18 1-32 3-32 3-24 1-23 36-1 39l4 0c0 0 71-6 118-6h13l20 0c46 2 98 6 98 6 24 1 28-32 7-38l-4-1c0 0-22-2-48-4l-6-1 170-505 48 157 15 52c12 39 20 71 20 100 0 58-20 99-38 130l-12 19c-19 30-35 59-35 91 0 39 28 77 68 82-81 70-186 112-301 112z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="cogs-check" unicode="" d="M736 312c116 0 210-94 210-210s-94-210-210-210-210 94-210 210 94 210 210 210z m-183 496c20 0 37-14 40-34l15-100c19-9 38-20 56-33l94 38c20 7 41-1 50-18l84-145c9-18 5-39-10-51l-80-63c1-10 1-21 1-33l0-5 0 0c0-5-3-11-8-14s-10-5-15-5c-41 8-77 5-115-6-6-1-12 0-17 4s-8 10-7 15l1 7 0 0c0 98-77 175-172 175s-172-77-172-172c0-95 77-173 172-173l9 1 0 0c6 0 12-2 16-7s5-11 3-17c-7-23-10-47-10-71 0-51 15-100 44-141 4-6 5-14 1-20-3-6-9-10-17-10h-131c-20 0-37 15-39 34l-15 101c-19 8-38 20-56 33l-95-38c-19-7-40 0-49 18l-84 145c-9 17-5 39 10 51l80 63c-1 12-2 23-2 33 0 10 1 20 2 33l-80 62c-16 12-20 34-9 51l83 145c10 17 31 25 49 18l95-38c19 13 38 24 56 33l15 100c2 19 19 34 39 34h168z m183-534c-94 0-171-77-171-172s77-172 171-172 172 78 172 172-77 172-172 172z m-351 496l-17-112c-1-7-5-13-12-15-22-10-44-22-66-39-6-4-13-5-19-3l-105 42-86-146 89-72c5-4 8-10 7-17-2-15-3-28-3-39 0-11 1-24 3-39 1-6-2-13-7-17l-89-69 84-148 107 41c2 1 4 1 7 1 4 0 8-1 12-4 20-16 43-29 66-39 7-2 11-8 12-15l16-111 99-1c-22 41-33 87-33 133 0 19 2 38 6 57-110 7-196 99-196 210 0 116 94 210 210 210 111 0 203-86 210-196 28 6 56 7 85 4 0 8-1 15-2 22-1 6 2 13 7 17l89 69-84 148-107-41c-6-3-13-2-18 2-21 17-44 30-67 39-6 3-11 8-12 15l-16 111-170 2z m460-597c8-8 8-20 0-28l-133-133c-4-4-9-6-14-6s-9 2-13 6l-77 76c-7 8-7 20 0 27 8 8 20 8 27 0l63-62 120 120c8 7 20 7 27 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="custom-css" unicode="" d="M896 808c55 0 100-45 104-101l0-7v-742c0-29-11-56-30-76-18-18-41-29-66-31l-8-1h-792c-55 0-100 45-104 102l0 6v742c0 57 43 104 97 108l7 0h792z m62-208h-916v-642c0-35 25-63 56-66l6 0h792c17 0 32 6 44 18 10 11 17 25 18 41l0 7v642z m-404-174c10-3 15-13 13-23l-1-4-127-323c-4-11-16-16-27-11-10 3-15 13-13 23l1 4 127 323c4 10 17 15 27 11z m-215-15c7-7 8-18 3-27l-3-3-120-120 120-120c7-7 8-18 3-26l-3-3c-7-7-18-8-26-3l-3 3-135 135c-7 7-8 18-2 26l2 3 135 135c8 8 21 8 29 0z m320 0c7 7 18 8 26 2l3-2 135-135 2-3c5-7 5-16 0-23l-2-3-135-135-3-2c-7-5-16-5-23 0l-3 2-3 3c-5 7-5 17 0 24l3 3 120 120-120 120-3 3c-5 8-4 19 3 26z m237 356h-792c-32 0-59-27-62-61l0-6v-58h916v58c0 35-25 63-56 66l-6 1z m-792-42c12 0 21-9 21-21s-9-21-21-21-21 10-21 21 10 21 21 21z m84 0c11 0 20-9 20-21s-9-21-20-21-21 10-21 21 9 21 21 21z m83 0c12 0 21-9 21-21s-9-21-21-21c-12 0-21 10-21 21s9 21 21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="global-colors" unicode="" d="M465 469c198 216 427 328 481 270 52-56-65-266-282-444l-12-10-16-12c-37-28-88-63-153-103l-21-14c3-100-64-203-163-210-15-1-48-1-84 1l-40 3-32 2-25 3c-19 2-36 4-49 7l-9 1c-9 2-17 5-22 8l-5 2c-1 2-3 3-4 4l-2 2c-7 8-9 19-2 29l2 2 2 2c7 8 15 19 24 38l6 13 9 24 26 67 10 23c17 39 34 70 54 95 46 60 125 73 190 49l21 29c28 38 53 70 74 95l8 9 14 15z m-330-321l-13-34c-12-32-22-56-31-74l-3-7c-5-11-10-20-14-27l-4-5 5-1c9-2 21-3 34-5l21-1 12-1c26-2 55-3 81-3l19 0 24 0-3 2c-3 4-6 7-9 11l-4 5-4 7-3 5c0 3-2 5-3 9l-15 42-2 8c-7 18-14 31-20 38l-3 3-2 1c-22 17-36 24-55 26l-8 1z m199 137c-50 18-111 9-146-36-14-17-26-38-38-63 25-3 45-13 72-34l4-4c13-12 22-30 32-55l3-9c2-5 15-47 18-52 5-10 18-19 35-25l7-2 20-6 1 0c76 42 111 170 47 247l-7 8-6 6 2-2c-8 7-15 12-24 17l-9 5-11 5z m582 429c-10 5-62-4-125-34-87-42-184-116-282-220l-22-24-16-17c-16-19-33-41-53-67l-10-14-26-34c6-4 12-9 18-13l5-5 7-7c19-20 33-44 41-69l3-11 37 24 29 19c18 12 35 23 51 33l11 8 20 15 9 6 15 12c117 94 200 189 249 276 33 59 46 109 41 120l-1 1-1 1z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="globe" unicode="" d="M500 808c-253 0-458-205-458-458 0-253 205-458 458-458 253 0 458 205 458 458 0 253-205 458-458 458z m331-295h-124c-12 67-32 127-57 175 79-35 143-98 181-175l0 0z m-331 207c34 0 90-77 117-207h-234c27 130 83 207 117 207z m-370-370c0 25 3 50 8 74h144c-2-24-4-49-4-74s2-50 4-74h-144c-5 24-8 49-8 74z m39-162h124c12-68 32-128 57-175-79 35-143 97-181 175l0 0z m124 325h-124c38 77 102 140 181 175-25-48-45-108-57-175l0 0z m207-533c-34 0-90 77-117 208h234c-27-131-83-208-117-208z m130 296h-260c-2 24-3 48-3 74s2 50 3 74h260c2-24 3-48 3-74s-1-50-3-74z m20-263c25 47 45 107 57 175h124c-38-78-102-140-181-175l0 0z m69 263c1 24 3 49 3 74s-1 50-3 74h144c5-24 7-49 7-74s-2-50-7-74h-144z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="typography-1" unicode="" d="M230 663c28 0 28-41 1-42-17-1-30-3-36-6-3-1-5-3-7-7l0-3c-3-8-3-21-3-38l0-151h256l0 151c0 20-2 33-4 41-2 4-3 7-7 8-6 2-18 4-36 5-27 2-26 42 1 42h209c27 0 28-40 1-42-17-1-30-2-36-5-4-1-5-3-7-8-2-8-4-21-4-41v-434c0-20 2-33 4-41 2-4 3-7 7-8 6-2 18-4 36-5 27-1 26-42-1-42h-209c-27 0-28 41-1 42 17 1 30 2 36 5 3 1 5 4 7 8l1 3c2 8 2 21 2 38l0 155h-255l0-155c0-20 1-34 3-41 2-4 4-7 7-8 6-3 18-5 36-6 27-1 27-41-1-41h-209c-27 0-28 40-1 41 18 1 30 3 36 6 4 1 5 3 7 8 2 7 4 21 4 41v434c0 20-2 33-4 41-2 4-3 7-7 8-6 2-18 4-36 5l-4 0c-23 5-21 42 5 42h209z m648-4c13 9 30 1 32-14l1-3v-489c0-21 3-37 8-48 5-8 12-15 23-19l13-5 2-1c1 0 3 0 5 0l7-1 10 0 4 0c20-4 22-33 4-40l-4-1-4-1h-264l-4 1c-22 3-22 37 0 40l4 1 8 0c26 0 36 4 55 16 12 9 19 25 20 50l0 8v280c0 34-3 59-9 73-7 15-21 32-32 37-7 4-23 9-47 14l-8 1-19 4c-24 4-21 41 4 41 54 1 98 6 133 14 12 3 18 6 25 12l4 4 11 11c6 6 12 10 18 15z m-729-38h-47c4-13 6-31 6-54v-434l0-10c0-15-1-28-4-38l-1-6h46c-4 13-6 31-6 54v176c0 11 9 21 21 21h297c12 0 21-10 21-21v-176l0-10c0-15-2-28-4-38l-2-6h47c-4 13-6 31-6 54v434l0 10c0 16 1 28 4 38l2 6h-47c4-13 6-31 6-54v-172c0-12-9-21-21-21h-297c-12 0-21 9-21 21v172l0 10c0 16 2 28 4 38l2 6z m720-25l-1-2c-11-8-22-13-38-16-7-2-15-4-24-5l-13-3-1 0 3-2c9-8 18-18 24-29l5-9 3-7c8-18 12-44 13-78l0-12v-280c0-26-5-49-15-66l-5-6-1-1h67l-4 6c-8 15-12 34-13 57l0 11 0 442z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="background" unicode="" d="M896 808c55 0 100-45 104-101l0-7v-742c0-29-11-56-30-76-18-18-41-29-66-31l-8-1h-792c-55 0-100 45-104 102l0 6v742c0 57 43 104 97 108l7 0h792z m62-208h-916v-153l601-555h253c14 0 28 5 39 14l5 4c10 11 17 25 18 41l0 7v642z m-640-465l-238-238c2-1 4-2 7-3 1 0 3-1 5-1l6-1 6 0 89 0 186 186-61 57z m92-85l-158-158h118l101 101-61 57z m92-85l-73-73h118l16 16-61 57z m-276 255l-184-185v-77l0-7 0 0 1-7 2-7 2-4 1-3 0 0 2-4 238 237-62 57z m-92 85l-92-93v-118l153 154-61 57z m-91 85l-1-1v-118l62 62-61 57z m853 377h-792c-32 0-59-27-62-61l0-6v-58h916v58c0 35-25 63-56 66l-6 1z m-792-42c12 0 21-9 21-21s-9-21-21-21-21 10-21 21 10 21 21 21z m84 0c11 0 20-9 20-21s-9-21-20-21-21 10-21 21 9 21 21 21z m83 0c12 0 21-9 21-21s-9-21-21-21c-12 0-21 10-21 21s9 21 21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="device-responsive" unicode="" d="M883 588c42 0 75-34 75-75v-442c0-41-33-75-75-75h-225c-41 0-75 34-75 75v442c0 41 34 75 75 75h225z m-8-84h-208v-425h208v425z m-85 209c40 0 73-33 74-73l0-2v-9h-658v-368h336v-139h-454c-25 0-45 20-46 44l0 2v31c0 7 6 13 13 14l0 0h79c-7 10-11 23-11 37l0 3v385c0 41 32 74 72 75l2 0h593z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="device-wide" unicode="" d="M632 79c8 0 14-6 14-14v-23c0-26-21-46-46-46h-200c-25 0-46 20-46 46v23c0 8 6 14 14 14h264z m245 625c44 0 81-36 81-80l0-1v-420c0-45-35-81-80-82l-1 0h-754c-44 0-81 36-81 81l0 1v420c0 44 36 81 80 81l1 0h754z m-2-83h-750v-417h750v417z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="code-highlight" unicode="" d="M169 487c7-7 8-18 2-27l-3-2-118-118 120-127c7-7 8-18 2-26l-3-3c-7-7-19-8-26-2l-3 3-134 141c-7 7-8 18-2 26l2 3 133 132c9 8 21 8 30 0z m689 3l3-3 133-132c7-7 8-17 3-25l-3-4-134-141c-8-8-21-9-30-1-7 7-8 19-2 27l2 3 120 126-118 118c-7 7-9 18-3 27l3 3c6 6 18 7 26 2z m-169-355c10 0 19-9 19-19v-4c0-11-9-19-19-19h-378c-10 0-18 8-18 19v4c0 10 8 19 18 19h378z m-96 111c10 0 19-8 19-19v-4c0-10-9-19-19-19h-282c-10 0-18 9-18 19v4c0 11 8 19 18 19h282z m96 111c10 0 19-9 19-19v-4c0-11-9-19-19-19h-378c-10 0-18 8-18 19v4c0 10 8 19 18 19h378z m-96 111c10 0 19-8 19-19v-4c0-10-9-19-19-19h-282c-10 0-18 9-18 19v4c0 11 8 19 18 19h282z m96 111c10 0 19-8 19-19v-4c0-10-9-18-19-18h-378c-10 0-18 8-18 18v4c0 11 8 19 18 19h378z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="video-playlist" unicode="" d="M407 473c5 2 12 3 18 0l3-1 292-188c5-4 9-10 9-17 0-6-2-12-6-16l-3-2-292-187c-3-2-8-4-11-4-4 0-7 1-10 3-6 3-9 8-11 14l0 4v375c0 8 4 15 11 19z m31-57v-299l232 149-232 150z m466 288c14 0 25-11 25-25v-17h-858v17c0 14 12 25 25 25h808z m-72 84c14 0 25-12 25-25v-17h-714v17c0 13 11 25 25 25h664z m147-876h-958c-12 0-21 10-21 21v667c0 12 9 21 21 21h958c12 0 21-9 21-21v-667c0-11-9-21-21-21z m-937 42h916v625h-916v-625z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="download-kit" unicode="" d="M887-101h-775c-62 0-112 51-112 113v663c0 62 50 113 112 113h774c62 0 112-51 112-113v-663c1-62-50-113-111-113z m-775 846c-38 0-70-31-70-70v-663c0-39 32-70 70-70h774c39 0 70 32 70 70v663c0 39-31 70-70 70h-774z m389-527l0 0c2 0 3 0 4 1l0 0 0 0c1 1 1 1 2 1 2 1 3 2 5 3l147 127c9 7 9 21 2 30-8 8-21 9-30 2l-112-97v270c0 12-9 22-21 22-12 0-22-9-22-22v-270l-112 97c-9 7-23 6-30-2-8-9-7-23 2-30l147-127c1-1 3-2 5-3 0 0 1-1 2-1l0 0 0 0c1 0 2 0 3-1l0 0c2 0 2 0 4 0l0 0c2 0 3 0 4 0z m166-63c0 11-9 21-22 21h-295c-11 0-21-9-21-21 0-12 9-22 21-22h296c12 0 21 10 21 22z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="kit-details" unicode="" d="M887-101h-775c-62 0-112 51-112 113v663c0 62 50 113 112 113h774c62 0 112-51 112-113v-663c1-62-50-113-111-113z m-775 846c-38 0-70-31-70-70v-663c0-39 32-70 70-70h774c39 0 70 32 70 70v663c0 39-31 70-70 70h-774z m259-126c12 0 22-9 22-21v-85c0-12-10-21-22-21h-84c-12 0-21 9-21 21v85c0 11 9 21 21 21h84z m254-85c11 0 21-9 21-21s-9-21-21-21h-169c-12 0-21 9-21 21s9 21 21 21h169z m-275 43h-42v-42h42v42z m359 42c11 0 21-9 21-21 0-12-9-22-21-22h-254c-11 0-21 9-21 22 0 11 9 21 21 21h254z m-338-211c12 0 22-9 22-21v-85c0-12-10-21-22-21h-84c-12 0-21 9-21 21v85c0 11 9 21 21 21h84z m254-85c11 0 21-9 21-21 0-12-9-21-21-21h-169c-12 0-21 9-21 21 0 12 9 21 21 21h169z m-275 42h-42v-42h42v42z m359 43c11 0 21-9 21-21s-9-22-21-22h-254c-11 0-21 10-21 22s9 21 21 21h254z m-338-211c12 0 22-9 22-22v-84c0-12-10-21-22-21h-84c-12 0-21 9-21 21v84c0 12 9 22 21 22h84z m254-84c11 0 21-10 21-22s-9-21-21-21h-169c-12 0-21 9-21 21s9 22 21 22h169z m-275 42h-42v-42h42v42z m359 42c11 0 21-9 21-22 0-11-9-21-21-21h-254c-11 0-21 9-21 21 0 12 9 22 21 22h254z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="kit-parts" unicode="" d="M887 788c59 0 108-47 112-105l0-8v-663c0-60-46-108-105-112l-7 0h-775c-59 0-108 46-112 105v7 663c0 60 46 109 105 112l7 1h775z m-555-225h-290v-551c0-37 28-67 64-70l6-1h220v622z m625-443h-583v-178h512c37 0 67 28 70 64l1 6 0 108z m0 443h-583v-400h582v400z m-87-293c11 0 21-9 21-20 0-11-8-19-18-21l-3 0h-410c-11 0-21 9-21 21 0 10 8 18 18 20l3 0h410z m0 111c11 0 21-9 21-21 0-10-8-18-18-20l-3 0h-410c-11 0-21 9-21 20 0 11 8 19 18 21l3 0h410z m0 111c11 0 21-9 21-21 0-11-8-19-18-21l-3 0h-410c-11 0-21 9-21 21 0 10 8 19 18 20l3 1h410z m17 253h-775c-37 0-67-28-70-64v-6-70h914v70l0 6-1 4 0 0 0 4 0 0-1 4-2 6-1 2-2 5-3 6-1 3-4 4-3 4-5 5-5 3-5 4-4 2-3 2-5 2-3 1-3 1c-4 0-7 1-12 2h-6z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="kit-upload" unicode="" d="M887-101h-775c-62 0-112 51-112 113v663c0 62 50 113 112 113h774c62 0 112-51 112-113v-663c1-62-50-113-111-113z m-775 846c-38 0-70-31-70-70v-663c0-39 32-70 70-70h774c39 0 70 32 70 70v663c0 39-31 70-70 70h-774z m407-506v271l113-97c8-8 22-7 29 2 8 9 7 23-2 30l-147 126c-1 2-3 3-4 4-1 0-2 0-3 0l0 0 0 0c-1 1-2 1-3 1l0 0c-2 0-2 1-4 1l0 0c0 0-2 0-3 0l0 0c-1 0-2-1-4-2l0 0 0 0c-1 0-1 0-2 0-1-1-3-2-4-4l-149-126c-8-7-9-21-2-30 8-9 21-10 30-2l113 97v-271c0-11 9-21 21-21 12 0 21 9 21 21z m148-84c0 11-9 21-22 21h-295c-11 0-21-9-21-21 0-12 9-22 21-22h296c12 0 21 10 21 22z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="kit-plugins" unicode="" d="M730 262h-127v161h127c12 0 21 9 21 21s-9 21-21 21h-127v124c0 2-1 4-3 4l-20-2c-117-10-210-108-221-228h-89c-12 0-21-9-21-21 0-12 9-22 21-22h90c10-120 103-218 221-227l19-2c2 0 4 2 4 4v124h126c12 0 22 9 22 21-1 13-10 22-22 22z m-169-123c-91 19-160 104-160 204s69 184 160 203v-407z m326-240h-775c-62 0-112 51-112 113v663c0 62 50 113 112 113h774c62 0 112-51 112-113v-663c1-62-50-113-111-113z m-775 846c-38 0-70-31-70-70v-663c0-39 32-70 70-70h774c39 0 70 32 70 70v663c0 39-31 70-70 70h-774z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="kit-upload-alt" unicode="" d="M887 788h-775c-62 0-112-51-112-113v-663c0-62 50-112 112-112h774c62 0 112 50 112 112v663c1 62-50 113-111 113z m70-776c0-39-32-70-70-70h-775c-39 0-70 31-70 70v663c0 39 32 70 70 70h774c39 0 70-31 70-70v-663z m-122 345l-2 3-65 100c-2 5-6 9-11 12l-96 37c-11 4-23-1-27-12-4-10 1-23 11-27l47-19-200-73-201 74 46 18c11 4 16 16 12 28s-16 15-27 11l-96-37c-6-2-9-7-11-12l-65-100-2-3-1-5v-2c0-3 0-6 1-8l1-5 6-7 56-20v-148c0-9 6-18 14-21l258-93c0-1 1-1 2-1l0 0 0 0c2-1 3-1 5-1 0 0 1 0 1 0s1 0 2 0c1 0 3 0 5 1l0 0 0 0c0 0 1 0 2 1l257 93c8 3 14 12 14 21v148l56 20 6 7 2 5c1 2 1 5 1 8v2l-1 5z m-635 2l42 66 218-80-42-65-218 79z m270-262l-216 79v119l166-60c2-1 4-2 7-2 7 0 13 4 18 10l25 39v-185h0z m259 79l-215-78v185l25-39c4-6 11-10 19-10 2 0 5 1 7 1l165 61v-120h-1z m-164 104l-42 65 218 79 42-65-218-79z m-171 296c-7 9-6 22 2 30l84 72c0 0 0 0 0 0 1 0 1 0 1 1 1 0 1 0 2 1 0 0 0 0 1 0 0 0 1 1 1 1 0 0 0 0 1 0s1 1 1 1c1 0 1 0 1 0 1 0 1 0 2 1 0 0 1 0 1 0 1 0 1 0 2 0s0 0 0 0 1 0 1 0 1 0 1 0 1 0 2 0c0 0 1 0 1-1 1 0 1 0 2 0 0 0 0-1 1-1s1 0 1 0c1 0 1-1 1-1 0 0 1 0 1 0 1-1 1-1 1-1 1-1 1-1 1-1 0 0 1 0 1 0l83-72c9-8 10-21 3-30-5-5-10-7-16-7-5 0-10 1-14 5l-48 41v-144c0-11-9-21-21-21-11 0-21 9-21 21v144l-49-42c-4-3-9-5-14-5-6 0-12 2-16 8z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="hotspot" unicode="" d="M104 641c11 0 19-8 21-17l0-4c0-12-9-21-21-21h-62v-616l217 237c6 7 16 9 24 5l3-2 138-96 193 236c7 9 21 10 29 2l3-3 309-387v624h-354c-12 0-21 9-21 21 0 10 7 19 17 20l4 1 375 0c10 0 19-8 20-17l1-4v-708c0-11-8-19-17-21l-4 0h-958c-11 0-19 7-21 17l0 4v708c0 10 8 19 17 20l4 1 83 0z m529-325l-189-230c-6-7-16-9-24-6l-4 3-138 96-226-246h888l-307 383z m-279 493c104 0 188-84 188-187s-84-188-188-188-187 84-187 188 83 187 187 187z m0-41c-80 0-146-66-146-146s66-146 146-146 146 65 146 146-65 146-146 146z m0-42c11 0 19-8 21-17l0-4v-62h63c11 0 20-10 20-21 0-11-7-19-17-21l-3 0h-63v-63c0-11-9-20-21-20-10 0-19 7-20 17l-1 3v63h-62c-12 0-21 9-21 21 0 10 8 18 17 20l4 1h62v62c0 11 10 21 21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="paypal-button" unicode="" d="M535 428l291-250c7-5 9-15 6-23-3-8-11-13-19-13h-88l74-122c3-5 4-11 2-16-1-6-5-10-9-13l-94-55c-3-1-6-3-10-3-2 0-4 1-6 1-5 2-10 6-12 11l-71 141-63-63c-6-6-15-8-22-5-8 4-13 11-13 20v375c0 8 4 15 12 18 7 4 15 3 22-3z m7-61v-279l48 47c3 4 9 7 14 7 1 0 2 0 4-1 6-1 12-5 15-11l73-147 56 33-82 136c-4 6-5 14-1 21 4 7 11 11 19 11h68l-214 183z m354 400c57 0 104-47 104-104v-250c0-58-47-105-104-105h-167c-11 0-21 10-21 21s10 21 21 21h167c32 0 59 25 62 57l0 6v250c0 32-24 59-56 62l-6 0h-792c-32 0-59-25-62-57l0-5v-250c0-33 24-60 56-63l6 0h334c11 0 20-9 20-21s-9-21-20-21h-334c-57 0-104 47-104 105v250c0 57 47 104 104 104h792z m-358-185c5 0 7-3 5-7l-1-2-103-148c-1-2-4-3-6-4l-3 0h-30c-3 0-5 3-4 6l1 2 33 46-34 98c-1 4 0 7 4 9l2 0h27c4 0 6-1 8-4l1-2 19-62 43 62c2 4 4 5 7 6l3 1h28z m-238 4c15 0 28-4 33-13l2-4c2-2 3-3 3-1l1 2 1 6c0 3 2 4 3 5l2 0h29c3 0 4-1 4-5l0-3-16-102c-1-6-3-8-6-8l-2 0h-27c-3 0-4 1-4 3l0 2 0 8c1 2-1 2-3 0l-2-1c-10-10-20-16-40-16-30 0-51 24-49 55 3 40 30 71 71 72z m460 0c15 0 27-4 33-13l2-4c1-2 3-3 3-1l0 2 2 6c0 3 1 4 3 5l1 0h29c3 0 5-1 5-5l0-3-17-101c-1-6-3-8-6-9l-2 0h-27c-3 0-4 2-4 4l0 2 1 8c0 2-2 2-4 0l-1-1c-11-10-20-16-41-16-29 0-51 24-49 55 3 39 31 70 72 71z m146 55c2 0 4-1 4-3l0-1-27-170c0-2-1-3-3-4l-2 0h-30c-2 0-4 1-4 3l0 1 27 170c0 3 2 4 5 4h30z m-717 1c27 0 52-15 49-52-5-43-28-67-65-67h-31c-5 0-7-4-8-11l-6-39c-1-6-5-9-9-9h-29c-5 0-7 3-6 10l24 157c2 8 5 11 10 11h71z m460 0c27 0 51-15 48-52-4-43-27-67-64-67h-32c-5 0-7-4-8-11l-6-39c-1-6-4-9-9-9h-29c-5 0-6 3-6 10l25 158c1 8 4 11 10 11h71z m-344-88c-17 0-34-14-36-31-3-18 9-32 27-32 17 0 34 14 37 32 2 17-10 31-28 31z m460 0c-17 0-34-14-37-31-2-18 10-32 27-32 18 0 35 14 37 32 3 17-9 31-27 31z m-594 53l-23 0-8-50h25l4 1c13 2 21 12 22 29 1 12-7 20-20 20z m460 0l-23 0-8-50h24c15 1 26 11 26 30 1 12-7 20-19 20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="shape" unicode="" d="M740 317c115 0 208-94 208-209s-93-208-208-208-209 93-209 208 94 209 209 209z m-461-7l174-127c12-8 17-23 12-36l-66-222c-4-14-17-23-32-23h-215c-14 0-27 9-32 23l-67 222c-4 13 1 28 12 36l175 127c12 9 28 9 39 0z m461-35c-92 0-167-75-167-167s75-166 167-166 166 74 166 166-74 167-166 167z m-480-2l-165-120 63-210h203l63 210-164 120z m155 502c18 0 33-14 33-32l0-1v-309c0-18-14-33-33-33l0 0h-309c-18 0-33 14-33 33l0 0v309c0 18 14 33 32 33l1 0h309z m353 7l0-1 174-332c12-22-4-48-28-49l-1 0h-348c-25 0-41 26-30 48l0 1 174 332c12 23 45 24 58 2l1-1z m-362-49h-291v-291h291v291z m333 15l-161-306h321l-160 306z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="wordart" unicode="" d="M208 303l9-5 588-337c41-24 66-21 79-14 13 7 20 22 19 39-1 12 8 22 20 23 12 1 22-8 23-20 2-30-11-63-41-79-31-17-73-13-121 14l-588 337c-41 24-66 21-79 14-13-7-20-22-19-39 1-12-8-22-20-23-12-1-22 8-23 20-2 30 11 63 41 80 27 14 63 13 104-6l8-4z m655 493l41-23c11-7 16-19 14-32l-107-605c-3-12-4-22-5-31 0-8 1-14 3-19 1-1 1-3 3-5 4-6 11-13 22-20 8-6 11-17 6-26-5-9-17-12-26-7l-201 116c-9 6-12 17-7 26 5 10 17 13 26 8l21-13c8-5 15-6 20-5 5 2 10 5 13 11 4 6 6 12 7 19l33 180c1 4-1 8-4 10l-182 105c-4 2-7 2-10-1l-142-121c-7-7-11-12-13-15-3-5-4-10-2-13 1-5 5-10 14-15l19-12c9-5 12-17 7-26-5-9-17-12-26-7l-133 77c-9 6-12 17-7 26 5 10 17 12 26 8 10-5 17-8 24-9l3 0 0 0c7-1 13 0 18 2l5 2c8 4 17 10 29 19l7 6 469 388c10 8 24 9 35 2z m-19-48l-15-13c-1 0-1 0 0-1 5-3 8-9 6-14l-66-370-1 0-31-172c-2-10-7-20-12-30-2-4-5-8-9-12l44-26c1 11 3 23 5 35l105 588c0 3-2 7-5 9l-12 7c-2 2-6 1-9-1z m-57-46l-207-177c-5-4-4-11 1-14l144-83c6-3 13 0 13 6l49 268z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="checkout" unicode="" d="M601-75c16 0 29-13 29-29s-13-29-29-29-29 13-29 29 13 29 29 29z m104 0c16 0 29-13 29-29s-13-29-29-29-29 13-29 29 13 29 29 29z m-238 300c21 0 38-10 51-27 6-10 12-20 16-30h241c18 0 33-15 33-34 0-3 0-6-2-10l-51-164c-4-13-17-23-31-23h-139c-15 0-27 10-32 24l-54 180c-4 12-9 22-16 33-5 6-10 9-17 9-11 0-21 10-21 21s10 21 22 21z m296-99h-215l44-147h126l45 147z m95 682c55 0 100-37 100-85v-580c0-33-23-63-57-77-7-3-15-5-22-6l-6-1-14-1 0 0c-12 0-21 9-22 20 0 12 8 22 20 22l9 0 6 1c5 1 9 2 14 4 19 8 31 23 31 38v580c0 23-25 44-59 44h-716c-33 0-59-21-59-44v-580c0-23 26-43 59-43h306c12 0 21-10 21-21s-9-21-21-21h-306c-54 0-100 37-100 86v579c0 48 46 85 100 85h716z m-129-125c33 0 59-24 62-56l1-6v-250c0-33-25-59-57-62l-6-1h-458c-33 0-59 25-62 57l-1 6v250c0 32 25 59 57 62l6 0h458z m21-166h-500v-146c0-11 8-19 17-21l4 0h458c11 0 19 8 21 17l0 4v146z m-354-84c12 0 21-9 21-20 0-11-8-19-17-21l-4 0h-83c-12 0-21 9-21 21 0 10 7 18 17 20l4 0h83z m333 209h-458c-11 0-19-8-21-17l0-4v-63h500v63c0 12-9 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="container" unicode="" d="M917 663c23 0 41-19 41-42v-542c0-23-18-41-41-41h-834c-23 0-41 18-41 41v542c0 23 18 42 41 42h834z m0-42h-834v-542h834v542z m-750-417v-41h83v-42h-125v83h42z m291-41v-42h-125v42h125z m209 0v-42h-125v42h125z m208 41v-83h-125v42h83v41h42z m0 209v-125h-42v125h42z m-708 0v-125h-42v125h42z m708 166v-83h-42v42h-83v41h125z m-625 0v-41h-83v-42h-42v83h125z m208 0v-41h-125v41h125z m209 0v-41h-125v41h125z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="flip" unicode="" d="M513 404c-17-21-46-21-63 0l-292 329c-25 30-8 75 30 75h579c37 0 58-45 33-75l-287-329z m258-512h-583c-17 0-30 8-38 25s-4 33 8 45l292 334c17 17 46 17 63 0l291-334c13-12 13-29 9-45-13-17-25-25-42-25z m-492 83h400l-200 229-200-229z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="info" unicode="" d="M500-108c-254 0-458 204-458 458s204 458 458 458 458-204 458-458-204-458-458-458z m0 833c-208 0-375-167-375-375s167-375 375-375 375 167 375 375-167 375-375 375z m125-583c0 25-17 41-42 41h-41v292c0 25-17 42-42 42h-83c-25 0-42-17-42-42s17-42 42-42h41v-250h-41c-25 0-42-16-42-41s17-42 42-42h166c25 0 42 17 42 42z m-125 500c25 0 42-17 42-42s-17-42-42-42-42 17-42 42 17 42 42 42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="my-account" unicode="" d="M601-75c16 0 29-13 29-29s-13-29-29-29-29 13-29 29 13 29 29 29z m104 0c16 0 29-13 29-29s-13-29-29-29-29 13-29 29 13 29 29 29z m-238 300c21 0 38-10 51-27 6-10 12-20 16-30h241c18 0 33-15 33-34 0-3 0-6-2-10l-51-164c-4-13-17-23-31-23h-139c-15 0-27 10-32 24l-54 180 0 0c-4 12-9 22-16 33-5 6-10 9-17 9-11 0-21 10-21 21s10 21 22 21z m296-99h-215l44-147h126l45 147z m95 682c55 0 100-37 100-85v-580c0-33-23-63-57-77-7-3-15-5-22-6l-6-1 0 0-11-1c-2 0-2 0-4 0-11 0-21 9-21 20-1 12 8 22 20 22l9 0 0 0 5 1 0 0c5 1 10 2 14 4 20 8 32 23 32 38v580c0 23-26 44-59 44h-716c-33 0-59-21-59-44v-580c0-23 26-43 59-43h306c12 0 21-10 21-21s-9-21-21-21h-306c-54 0-100 37-100 86v579c0 48 46 85 100 85h716z m-504-166c58 0 104-47 104-104 0-31-13-58-34-78 44-19 79-56 96-103 3-11-2-23-13-27-11-4-23 2-27 13-18 54-68 90-126 90-57 0-107-36-126-90-4-10-15-16-27-13-11 4-16 16-13 27 17 47 52 84 96 104-21 19-34 46-34 77 0 57 47 104 104 104z m438-209c11 0 21-9 21-20 0-11-8-19-18-21l-3 0h-209c-11 0-20 9-20 21 0 10 7 18 17 20l3 0h209z m0 84c11 0 21-9 21-21 0-11-8-19-18-21l-3 0h-209c-11 0-20 9-20 21 0 10 7 19 17 20l3 1h209z m-438 83c-34 0-62-28-62-62 0-33 24-60 56-63l6 0 1 0c34 0 62 28 62 63 0 34-28 62-63 62z m438 0c11 0 21-9 21-21 0-10-8-19-18-20l-3-1h-209c-11 0-20 10-20 21 0 11 7 19 17 21l3 0h209z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="purchase-summary" unicode="" d="M601-75c16 0 29-13 29-29s-13-29-29-29-29 13-29 29 13 29 29 29z m104 0c16 0 29-13 29-29s-13-29-29-29-29 13-29 29 13 29 29 29z m-238 300c21 0 38-10 51-27 6-10 12-20 16-30h241c18 0 33-15 33-34 0-3 0-6-2-10l-51-164c-4-13-17-23-31-23h-139c-15 0-27 10-32 24l-54 180 0 0c-4 12-9 22-16 33-5 6-10 9-17 9-11 0-21 10-21 21s10 21 22 21z m296-99h-215l44-147h126l45 147z m95 682c55 0 100-37 100-85v-580c0-33-23-63-57-77-7-3-15-5-22-6l-6-1 0 0-11-1c-2 0-2 0-4 0-11 0-21 9-21 20-1 12 8 22 20 22l9 0 0 0 5 1 0 0c5 1 10 2 14 4 20 8 32 23 32 38v580c0 23-26 44-59 44h-716c-33 0-59-21-59-44v-580c0-23 26-43 59-43h306c12 0 21-10 21-21s-9-21-21-21h-306c-54 0-100 37-100 86v579c0 48 46 85 100 85h716z m-358-125c104 0 188-83 188-187 0-104-84-188-188-188-104 0-187 84-187 188 0 104 83 187 187 187z m0-41c-80 0-146-66-146-146 0-81 66-146 146-146 80 0 146 65 146 146 0 80-66 146-146 146z m103-63c7-7 8-18 2-26l-2-3-133-133-73 74c-8 8-8 21 0 29 7 8 18 8 27 3l3-3 44-44 102 103c9 9 22 9 30 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="page-transition" unicode="" d="M854 808c56 0 101-45 104-101l0-7v-700c0-57-43-104-97-108l-7 0h-708c-56 0-101 45-104 101l0 7v700c0 57 43 104 97 108l7 0h708z m63-208h-834v-600c0-35 25-63 57-66l6-1h708c33 0 59 27 62 61l1 6v600z m-584-458v-84c0-23-18-41-41-41h-167v41h167v84h41z m125 0v-84h417v-41h-417c-23 0-41 18-41 41v84h41z m12 193c7 8 18 8 26 3l3-3 59-58c7-7 8-19 2-27l-2-3-59-59c-8-8-21-8-29 0-7 7-8 19-3 27l3 3 44 44-44 44c-7 7-8 19-3 27l3 2z m-96 0l59-58c8-9 8-22 0-30l-59-59c-9-8-21-8-30 0-8 9-8 22 0 30l44 44-44 44c-8 9-8 22 0 30 9 7 22 7 30-1z m-125 0l59-58c8-9 8-22 0-30l-59-59c-9-8-21-8-30 0-8 9-8 22 0 30l44 44-44 44c-8 9-8 22 0 30 9 7 22 7 30-1z m43 182c23 0 41-19 41-42v-83h-41v83h-167v42h167z m583 0v-42h-417v-83h-41v83c0 23 18 42 41 42h417z m-21 250h-708c-33 0-59-27-62-61l-1-6v-58h834v58c0 35-25 63-57 66l-6 1z m-708-42c12 0 21-9 21-21s-9-21-21-21-21 10-21 21 9 21 21 21z m83 0c12 0 21-9 21-21s-9-21-21-21-21 10-21 21 10 21 21 21z m84 0c11 0 20-9 20-21s-9-21-20-21-21 10-21 21 9 21 21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="spotify" unicode="" d="M813 225c103 0 187-84 187-187s-84-188-187-188-188 84-188 188 84 187 188 187z m-313 583c254 0 458-204 458-458 0-43-5-84-16-123-12 8-25 15-38 21 8 32 13 67 13 102 0 229-188 416-417 416s-417-187-417-416 188-417 417-417c35 0 70 5 102 13 6-13 13-26 21-38-39-11-80-16-123-16-255 0-459 204-459 458s205 458 459 458z m313-625c-81 0-146-65-146-145s65-146 146-146 145 65 145 146-65 145-145 145z m-15-55l4-3 85-53c26-16 26-52 0-68l-85-54c-27-17-62 2-62 34v107c0 30 31 49 58 37z m-18-37v-107l85 54-85 53z m-526 147c156 37 293 24 406-29-15-14-28-29-39-45-98 43-216 48-354 19-17-4-29 5-34 21s5 29 21 34z m487 91l13-8c17-8 21-33 13-50-3-5-7-8-11-11-6-2-12-4-18-6-8 0-15 1-21 4-125 75-313 96-459 55-20-5-37 4-45 25-5 20 4 37 25 45 161 49 362 27 503-54l0 0z m-528 209c162 50 433 37 604-63 21-12 29-37 16-58-16-21-41-25-62-17-146 92-392 96-533 54-21-4-46 9-55 29-4 25 9 46 30 55z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="stripe-button" unicode="" d="M468 345l292-250c6-6 9-15 5-23-2-8-10-14-19-14h-88l74-122c3-4 4-10 3-16-2-5-5-10-10-13l-93-54c-4-2-7-3-11-3-2 0-4 0-6 1-5 1-10 5-12 11l-70 141-63-63c-6-6-15-8-23-5-8 3-13 11-13 19v375c0 9 5 16 12 19 7 4 16 2 22-3z m7-61v-280l48 48c4 4 9 6 15 6 1 0 2 0 3 0 7-1 12-5 15-11l74-147 55 32-82 136c-4 7-4 15 0 22 3 6 10 10 18 10h69l-215 184z m421 399c57 0 104-46 104-104v-250c0-57-47-104-104-104h-233c-12 0-21 9-21 21s9 21 21 21h233c32 0 59 24 62 56l0 6v250c0 33-24 59-56 62l-6 1h-792c-32 0-59-25-62-57l0-6v-250c0-32 24-59 56-62l6 0h267c12 0 21-9 21-21s-9-21-21-21h-267c-57 0-104 47-104 104v250c0 58 47 104 104 104h792z m-261-130c35 0 68-31 69-89 0-64-33-93-69-93-13 0-22 4-30 9l-6 4 0-57-50-10v233h44l2-12c8 6 20 15 40 15z m-310 40l0-43h38v-42h-39v-72c0-22 19-22 31-20l4 2 0 0 4 1v-41c-7-4-19-7-36-7-28 0-49 19-52 46l0 6 0 160 50 10z m-120-40c17 0 34-2 50-9v-47c-15 8-34 13-50 13-10 0-17-3-17-11 0-6 5-9 13-12l8-3 0 0 13-5 0 0 9-3c18-8 34-21 34-48 0-36-28-57-70-57-18 0-37 4-55 12v47c17-9 38-16 55-16 11 0 19 3 19 12 0 8-7 12-18 16l-17 6 0 0-9 4c-17 8-32 20-32 45 0 35 27 56 67 56z m585 0c45 0 70-36 73-85l0-9 0 0-1-16h-98c2-23 19-30 39-30 17 0 31 3 43 8l6 3v-40c-14-7-32-13-56-13-49 0-83 31-83 91 0 51 29 91 77 91z m-260-3v-175h-50v175h50z m-63 0v-46c-6 2-26 5-38-11v-118h-50v175h43l3-15c12 22 36 18 42 15z m156-41c-10 0-17-3-22-8l-2-2 0-74c5-5 12-10 24-10 18 0 30 20 30 47 1 26-12 47-30 47z m167 4c-12 0-25-8-27-27l0-5h52c0 22-13 32-25 32z m-260 104v-41l-50-11v41l50 11z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="woo-settings" unicode="" d="M771 496h-542c-21 0-41-8-58-25s-25-38-25-63v-216c0-46 37-88 83-88h250l113-66c4 0 8-5 12-5s9 0 13 5c8 4 8 16 4 25l-17 41h163c46 0 83 38 83 88v216c4 50-33 88-79 88z m42-304c0-25-17-46-42-46h-196c-8 0-12-4-17-8s-4-13-4-21l4-13-66 38c-4 0-9 4-13 4h-250c-21 0-41 21-41 46v216c0 13 4 25 12 34s17 12 29 12h542c21 0 42-21 42-46v-216z m-363 108c-8-46-8-83-8-108 0-9 0-13-4-21s-9-8-13-8c-8 0-12 4-21 12-25 25-46 67-58 121-17-38-29-63-38-83-16-34-29-50-41-50-9 0-13 4-21 20-13 38-29 109-46 217 0 8 0 13 4 21 4 4 9 8 17 8 12 0 21-4 25-21 8-58 17-108 29-150l58 113c5 12 13 17 21 17 13 0 21-9 21-25 8-38 17-71 25-96 8 71 21 125 38 158 4 8 8 13 16 13 4 0 13 0 17-5s8-8 8-16c0-4 0-9-4-13-8-25-17-58-25-104z m292 104c-4 0-9 0-17 0-25 0-46-12-62-41-13-25-21-50-21-80 0-20 4-41 12-58s25-29 42-33c4 0 8 0 17 0 25 0 45 12 62 41 13 25 21 50 21 80 0 20-4 41-13 54-4 21-20 33-41 37z m12-112c-4-21-12-34-21-42s-16-12-20-8c-9 0-13 8-17 16s-4 17-4 25 0 13 0 21c4 13 8 25 12 34 9 12 17 20 29 16 9 0 13-8 17-16s4-17 4-25 0-13 0-21z m-179 112c-4 0-8 0-17 0-25 0-45-12-62-41-13-25-21-50-21-80 0-20 4-41 13-58s25-29 41-33c4 0 9 0 17 0 25 0 46 12 62 41 13 25 21 50 21 80 0 20-4 41-12 54-9 21-25 33-42 37z m8-112c-4-21-12-34-20-42s-17-12-21-8c-9 0-13 8-17 16s-4 17-4 25 0 13 0 21c4 13 8 25 12 34 9 12 17 20 30 16 8 0 12-8 16-16s4-17 4-25 0-13 0-21z m271 516h-708c-58 0-104-50-104-108v-700c0-58 46-108 104-108h708c59 0 104 50 104 108v700c0 58-45 108-104 108z m-708-41h708c34 0 63-29 63-67v-58h-834v58c0 38 30 67 63 67z m708-834h-708c-33 0-63 29-63 67v600h834v-600c0-38-29-67-63-67z m-729 771c0 13 8 21 21 21s21-8 21-21-9-21-21-21-21 9-21 21z m83 0c0 13 9 21 21 21s21-8 21-21-8-21-21-21-21 9-21 21z m84 0c0 13 8 21 21 21s20-8 20-21-8-21-20-21-21 9-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="woo-cart" unicode="" d="M601-75c16 0 29-13 29-29s-13-29-29-29-29 13-29 29 13 29 29 29z m104 0c16 0 29-13 29-29s-13-29-29-29-29 13-29 29 13 29 29 29z m-238 300c21 0 38-10 51-27 6-10 12-20 16-30h241c18 0 33-15 33-34 0-3 0-6-2-10l-51-164c-4-13-17-23-31-23h-139c-15 0-27 10-32 24l-54 180 0 0c-4 12-9 22-16 33-5 6-10 9-17 9-11 0-21 10-21 21s10 21 22 21z m296-99h-215l44-147h126l45 147z m95 682c55 0 100-37 100-85v-580c0-33-23-63-57-77-7-3-15-5-22-6l-6-1 0 0-11-1c-2 0-2 0-4 0-11 0-21 9-21 20-1 12 8 22 20 22l9 0 0 0 5 1 0 0c5 1 10 2 14 4 20 8 32 23 32 38v580c0 23-26 44-59 44h-716c-33 0-59-21-59-44v-580c0-23 26-43 59-43h306c12 0 21-10 21-21s-9-21-21-21h-306c-54 0-100 37-100 86v579c0 48 46 85 100 85h716z m-484-145l0 0h4 393c21 0 39-17 41-37l1-5v-208c0-4-1-7-2-10l0-115c0-22-16-40-36-42l-5 0h-145c-21 0-39 16-41 37l-1 5v83h-205l-4 0 0 0 0 0h-145c-21 0-39 16-41 37l0 5v208c0 21 16 39 36 41l5 1h145z m396-292h-145v-83h145l0 83z m1 125h-393v-83h393v83z m-439 0h-103v-83l103 0v83z m439 125h-393v-83l393 0v83z m-439 0l-103 0v-83h103v83z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="grow" unicode="" d="M42 850c23 0 41-19 41-42v-916c0-23-18-42-41-42s-42 19-42 42v916c0 23 19 42 42 42z m916 0c23 0 42-19 42-42v-916c0-23-19-42-42-42s-41 19-41 42v916c0 23 18 42 41 42z m-303-271c7 1 14-1 20-5l3-3 167-193c5-7 9-15 10-25 0-8-1-14-4-20l-2-5-4-5-164-190c-6-7-13-11-21-12-8 0-16 3-23 8-5 5-9 11-11 19l-1 6v113h-250l0-113c-2-10-5-19-12-25-7-5-15-8-23-8-7 1-15 5-21 12l-164 190-3 5c-5 7-7 15-6 25 1 10 4 18 9 24l168 194c6 6 13 9 22 8 8-1 15-5 22-12 5-7 8-15 8-25l0-109h250v109c0 8 2 15 5 21l3 4c7 7 14 11 22 12z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="order-end" unicode="" d="M958 850c22 0 40-16 42-37l0-5v-916c0-22-16-40-37-42l-5 0-5 0c-19 2-34 18-37 37l0 5v916c0 22 16 40 37 42l5 0z m-375-250c9 1 17-1 24-6l4-3 209-211c8-7 11-16 13-27 0-8-1-15-5-22l-3-5-5-6-205-207c-7-8-17-12-27-13-10 0-19 3-28 9-6 6-11 13-13 21l-2 6 0 131-486 0c-33 0-59 26-59 58v50c0 32 26 58 59 58l486 0 0 127c0 9 3 17 7 23l3 4c8 7 18 12 28 13z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="nowrap" unicode="" d="M42 850c23 0 42-19 42-42v-916c0-22-16-40-37-42l-5 0c-23 0-42 19-42 42v916c0 22 16 40 37 42l5 0z m708-250c9 1 17-1 24-6l4-3 210-211c7-7 11-16 12-27 1-8-1-15-4-22l-3-5-5-6-205-207c-8-8-17-12-27-13-10 0-20 3-28 9-7 6-11 13-14 21l-1 6 0 131h-488c-32 0-58 26-58 58v50c0 32 26 58 58 58h488l0 127c0 9 2 17 7 23l3 4c8 7 17 12 27 13z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="order-start" unicode="" d="M42 850c23 0 42-19 42-42v-916c0-22-16-40-37-42l-5 0c-23 0-42 19-42 42v916c0 22 16 40 37 42l5 0z m375-250c10-1 18-5 27-13 7-7 10-16 10-27l0-127 486 0c31 0 56-23 59-53l0-5v-50c0-30-23-55-53-58l-6 0-486 0 0-131c-2-11-7-20-15-27-9-6-18-9-28-9-10 0-19 5-27 13l-205 207-5 5c-6 8-8 18-7 28 1 10 5 20 12 27l209 210c8 8 18 11 29 10z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="progress-tracker" unicode="" d="M854 808c56 0 101-45 104-101l0-7v-700c0-57-43-104-97-108l-7 0h-708c-56 0-101 45-104 101l0 7v700c0 57 43 104 97 108l7 0h708z m63-208h-834v-600c0-35 25-63 57-66l6-1h708c33 0 59 27 62 61l1 6v600z m-83-42c21 0 39-15 41-36l0-5v-126c0-21-16-38-36-41l-5 0h-668c-21 0-38 16-41 36l0 5v126c0 21 16 39 36 41l5 0h668z m-1-41h-666v-125h666v125z m-187-42v-42h-438v42h438z m208 292h-708c-33 0-59-27-62-61l-1-6v-58h834v58c0 35-25 63-57 66l-6 1z m-708-42c12 0 21-9 21-21s-9-21-21-21-21 10-21 21 9 21 21 21z m83 0c12 0 21-9 21-21s-9-21-21-21-21 10-21 21 10 21 21 21z m84 0c11 0 20-9 20-21s-9-21-20-21-21 10-21 21 9 21 21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="shrink" unicode="" d="M500 850c23 0 42-19 42-42v-916c0-23-19-42-42-42s-42 19-42 42v916c0 23 19 42 42 42z m324-271c8-1 15-5 22-12 5-7 8-15 8-25l0-109h88c32 0 58-26 58-58v-50c0-32-26-58-58-58h-88l0-113c-1-10-5-19-12-25-7-5-14-8-22-8-8 1-15 5-22 12l-163 190-4 5c-5 7-7 15-6 25 1 10 4 18 10 24l167 194c6 6 13 9 22 8z m-648 0c7 1 14-1 19-5l4-3 167-193c5-7 9-15 9-25 1-8 0-14-3-20l-2-5-4-5-164-190c-6-7-13-11-22-12-7 0-15 3-22 8-5 5-9 11-11 19l-1 6 0 113h-88c-32 0-58 26-58 58v50c0 32 26 58 58 58h88l0 109c0 8 2 15 5 21l3 4c6 7 14 11 22 12z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="wrap" unicode="" d="M42 850c23 0 41-19 41-42v-916c0-23-18-42-41-42s-42 19-42 42v916c0 23 19 42 42 42z m637-167c208 0 321-114 321-291 0-174-109-287-309-292l-13 0h-226l0-126c0-9-2-17-7-24l-3-3c-8-8-17-13-27-14-9-1-17 2-24 6l-4 3-209 211c-7 7-10 16-12 27-1 8 1 16 4 23l4 5 4 5 204 207c8 8 17 13 27 13 10 0 19-3 28-9 6-5 11-12 13-20l2-6 0-131h226c116 0 155 39 155 125 0 82-37 122-144 125l-11 0h-511v166h512z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="align-center-h" unicode="" d="M500 850c21 0 39-16 41-37l1-5v-250l316 0c32 0 59-26 59-58v-50c0-32-27-58-59-58h-316v-84h191c32 0 59-26 59-58v-50c0-32-27-58-59-58h-191v-250c0-22-17-40-37-42l-5 0c-21 0-39 16-41 37l-1 5v250h-191c-32 0-59 26-59 58v50c0 32 27 58 59 58h191v84h-316c-32 0-59 26-59 58v50c0 32 27 58 59 58l316 0v250c0 22 17 40 37 42l5 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="align-center-v" unicode="" d="M400 767c32 0 58-27 58-59l0-316h84l0 191c0 32 26 59 58 59h50c32 0 58-27 58-59l0-191 250 0c22 0 40-17 42-37l0-5c0-21-16-39-37-41l-5-1-250 0 0-191c0-32-26-59-58-59h-50c-32 0-58 27-58 59l0 191h-84l0-316c0-32-26-59-58-59h-50c-32 0-58 27-58 59l0 316-250 0c-22 0-39 17-42 37l0 5c0 21 16 39 37 41l5 1 250 0 0 316c0 32 26 59 58 59h50z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="align-end-h" unicode="" d="M875 850c21 0 39-16 41-37l1-5v-916c0-23-19-42-42-42-21 0-39 16-41 37l-1 5v916c0 23 19 42 42 42z m-183-542c30 0 55-23 58-53l0-5v-50c0-30-23-55-53-58l-5 0h-300c-31 0-56 23-58 53l-1 5v50c0 30 24 55 53 58l6 0h300z m0 250c30 0 55-23 58-53l0-5v-50c0-30-23-55-53-58l-5 0h-550c-31 0-56 23-58 53l-1 5v50c0 30 24 55 53 58l6 0h550z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="align-end-v" unicode="" d="M958 17c23 0 42-19 42-42s-19-42-42-42h-916c-23 0-42 19-42 42s19 42 42 42h916z m-558 750c32 0 58-27 58-59v-550c0-32-26-58-58-58h-50c-32 0-58 26-58 58v550c0 32 26 59 58 59h50z m250-250c32 0 58-27 58-59v-300c0-32-26-58-58-58h-50c-32 0-58 26-58 58v300c0 32 26 59 58 59h50z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="align-start-h" unicode="" d="M250 450v50c0 32 26 58 58 58h550c32 0 59-26 59-58v-50c0-32-27-58-59-58h-550c-32 0-58 26-58 58z m0-250v50c0 32 26 58 58 58h300c32 0 59-26 59-58v-50c0-32-27-58-59-58h-300c-32 0-58 26-58 58z m-125 650l0 0c23 0 42-19 42-42v-916c0-23-19-42-42-42l0 0c-23 0-42 19-42 42v916c0 23 19 42 42 42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="align-start-v" unicode="" d="M400 600c32 0 58-26 58-58l0 0v-550c0-32-26-59-58-59l0 0h-50c-32 0-58 27-58 59l0 0v550c0 32 26 58 58 58l0 0h50z m250 0c32 0 58-26 58-58l0 0v-300c0-32-26-59-58-59l0 0h-50c-32 0-58 27-58 59l0 0v300c0 32 26 58 58 58l0 0h50z m308 167c23 0 42-19 42-42 0-23-19-42-42-42l0 0h-916c-23 0-42 19-42 42s19 42 42 42l0 0h916z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="align-stretch-h" unicode="" d="M42 850c23 0 41-19 41-42v-916c0-23-18-42-41-42s-42 19-42 42v916c0 23 19 42 42 42z m916 0c23 0 42-19 42-42v-916c0-23-19-42-42-42s-41 19-41 42v916c0 23 18 42 41 42z m-183-542c30 0 55-23 58-53l0-5v-50c0-30-23-55-53-58l-5 0h-550c-30 0-55 23-58 53l0 5v50c0 30 23 55 53 58l5 0h550z m0 250c30 0 55-23 58-53l0-5v-50c0-30-23-55-53-58l-5 0h-550c-30 0-55 23-58 53l0 5v50c0 30 23 55 53 58l5 0h550z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="align-stretch-v" unicode="" d="M958-67c23 0 42-18 42-41s-19-42-42-42h-916c-23 0-42 19-42 42s19 41 42 41h916z m-558 750c30 0 55-23 58-53l0-5v-550c0-30-23-55-53-58l-5 0h-50c-30 0-55 23-58 53l0 5v550c0 30 23 55 53 58l5 0h50z m250 0c30 0 55-23 58-53l0-5v-550c0-30-23-55-53-58l-5 0h-50c-30 0-55 23-58 53l0 5v550c0 30 23 55 53 58l5 0h50z m308 167c23 0 42-19 42-42s-19-41-42-41h-916c-23 0-42 18-42 41s19 42 42 42h916z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="justify-center-h" unicode="" d="M500 850c21 0 39-16 41-37l1-5v-916c0-23-19-42-42-42-21 0-39 16-41 37l-1 5v916c0 23 19 42 42 42z m238-167c30 0 54-24 54-54v-558c0-30-24-54-54-54h-59c-30 0-54 24-54 54v558c0 30 24 54 54 54h59z m-417 0c30 0 54-24 54-54v-558c0-30-24-54-54-54h-58c-30 0-55 24-55 54v558c0 30 25 54 55 54h58z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="justify-center-v" unicode="" d="M779 225c30 0 54-24 54-54v-58c0-30-24-55-54-55h-558c-30 0-54 25-54 55v58c0 30 24 54 54 54h558z m179 167c23 0 42-19 42-42 0-21-16-39-37-41l-5-1h-916c-23 0-42 19-42 42 0 21 16 39 37 41l5 1h916z m-179 250c30 0 54-24 54-54v-59c0-30-24-54-54-54h-558c-30 0-54 24-54 54v59c0 30 24 54 54 54h558z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="justify-end-h" unicode="" d="M750 850c21 0 39-16 41-37l1-5v-916c0-23-19-42-42-42-21 0-39 16-41 37l-1 5v916c0 23 19 42 42 42z m-179-167c30 0 54-24 54-54v-558c0-30-24-54-54-54h-58c-30 0-55 24-55 54v558c0 30 25 54 55 54h58z m-250 0c30 0 54-24 54-54v-558c0-30-24-54-54-54h-58c-30 0-55 24-55 54v558c0 30 25 54 55 54h58z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="justify-end-v" unicode="" d="M958 142c23 0 42-19 42-42 0-21-16-39-37-41l-5-1h-916c-23 0-42 19-42 42 0 21 16 39 37 41l5 1h916z m-179 250c30 0 54-24 54-54v-59c0-30-24-54-54-54h-558c-30 0-54 24-54 54v59c0 30 24 54 54 54h558z m0 250c30 0 54-24 54-54v-59c0-30-24-54-54-54h-558c-30 0-54 24-54 54v59c0 30 24 54 54 54h558z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="justify-space-around-h" unicode="" d="M958 850c22 0 40-16 42-37l0-5v-916c0-23-19-42-42-42-21 0-39 16-41 37l0 5v916c0 23 18 42 41 42z m-916 0c21 0 39-16 41-37l0-5v-916c0-23-18-42-41-42-22 0-39 16-42 37l0 5v916c0 23 19 42 42 42z m608-167c32 0 58-26 58-58v-550c0-32-26-58-58-58h-50c-32 0-58 26-58 58v550c0 32 26 58 58 58h50z m-250 0c32 0 58-26 58-58v-550c0-32-26-58-58-58h-50c-32 0-58 26-58 58v550c0 32 26 58 58 58h50z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="justify-space-around-v" unicode="" d="M958-67c23 0 42-18 42-41 0-22-16-40-37-42l-5 0h-916c-23 0-42 19-42 42 0 21 16 39 37 41l5 0h916z m-183 375c32 0 58-26 58-58v-50c0-32-26-58-58-58h-550c-32 0-58 26-58 58v50c0 32 26 58 58 58h550z m0 250c32 0 58-26 58-58v-50c0-32-26-58-58-58h-550c-32 0-58 26-58 58v50c0 32 26 58 58 58h550z m183 292c23 0 42-19 42-42 0-21-16-39-37-41l-5 0h-916c-23 0-42 18-42 41 0 22 16 40 37 42l5 0h916z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="justify-space-between-h" unicode="" d="M42 850c21 0 39-16 41-37l0-5v-916c0-23-18-42-41-42-22 0-39 16-42 37l0 5v916c0 23 19 42 42 42z m916 0c22 0 40-16 42-37l0-5v-916c0-23-19-42-42-42-21 0-39 16-41 37l0 5v916c0 23 18 42 41 42z m-683-167c32 0 58-26 58-58v-550c0-32-26-58-58-58h-108v666h108z m558 0v-666h-108c-32 0-58 26-58 58v550c0 32 26 58 58 58h108z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="justify-space-between-v" unicode="" d="M958-67c23 0 42-18 42-41 0-22-16-40-37-42l-5 0h-916c-23 0-42 19-42 42 0 21 16 39 37 41l5 0h916z m-183 250c32 0 58-26 58-58v-108h-666v108c0 32 26 58 58 58h550z m58 500v-108c0-32-26-58-58-58h-550c-32 0-58 26-58 58v108h666z m125 167c23 0 42-19 42-42 0-21-16-39-37-41l-5 0h-916c-23 0-42 18-42 41 0 22 16 40 37 42l5 0h916z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="justify-space-evenly-h" unicode="" d="M958 850c22 0 40-16 42-37l0-5v-916c0-23-19-42-42-42-21 0-39 16-41 37l0 5v916c0 23 18 42 41 42z m-916 0c21 0 39-16 41-37l0-5v-916c0-23-18-42-41-42-22 0-39 16-42 37l0 5v916c0 23 19 42 42 42z m650-167c32 0 58-26 58-58v-550c0-32-26-58-58-58h-50c-32 0-59 26-59 58v550c0 32 27 58 59 58h50z m-334 0c32 0 59-26 59-58v-550c0-32-27-58-59-58h-50c-32 0-58 26-58 58v550c0 32 26 58 58 58h50z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="justify-space-evenly-v" unicode="" d="M958-67c23 0 42-18 42-41 0-22-16-40-37-42l-5 0h-916c-23 0-42 19-42 42 0 21 16 39 37 41l5 0h916z m-183 334c32 0 58-27 58-59v-50c0-32-26-58-58-58h-550c-32 0-58 26-58 58v50c0 32 26 59 58 59h550z m0 333c32 0 58-26 58-58v-50c0-32-26-59-58-59h-550c-32 0-58 27-58 59v50c0 32 26 58 58 58h550z m183 250c23 0 42-19 42-42 0-21-16-39-37-41l-5 0h-916c-23 0-42 18-42 41 0 22 16 40 37 42l5 0h916z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="justify-start-h" unicode="" d="M250 850c21 0 39-16 41-37l1-5v-916c0-23-19-42-42-42-21 0-39 16-41 37l-1 5v916c0 23 19 42 42 42z m238-167c30 0 54-24 54-54v-558c0-30-24-54-54-54h-59c-30 0-54 24-54 54v558c0 30 24 54 54 54h59z m250 0c30 0 54-24 54-54v-558c0-30-24-54-54-54h-59c-30 0-54 24-54 54v558c0 30 24 54 54 54h59z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="justify-start-v" unicode="" d="M779 225c30 0 54-24 54-54v-58c0-30-24-55-54-55h-558c-30 0-54 25-54 55v58c0 30 24 54 54 54h558z m0 250c30 0 54-24 54-54v-58c0-30-24-55-54-55h-558c-30 0-54 25-54 55v58c0 30 24 54 54 54h558z m179 167c23 0 42-19 42-42 0-21-16-39-37-41l-5-1h-916c-23 0-42 19-42 42 0 21 16 39 37 41l5 1h916z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="woocommerce-cross-sells" unicode="" d="M697-79c16 0 29-13 29-29s-13-30-29-30-29 13-29 30 13 29 29 29z m104 0c17 0 29-13 29-29s-12-30-29-30-29 13-29 30 13 29 29 29z m-289 862l4-3 122-115c19-17 5-41-15-44l-4-1h-106v-235c54 45 125 65 208 68v86c0 21 23 36 41 22l3-3 115-118c10-10 11-25 3-36l-3-3-115-118c-17-18-40-5-43 15l-1 4v110c-90-3-161-29-208-85v-394c0-11-9-21-21-21-10 0-19 8-20 18l-1 3v392l-4 5c-47 53-117 79-204 82v-109c0-21-23-37-41-23l-3 3-115 118c-9 10-11 25-3 36l3 3 115 119c17 17 41 4 44-16l0-4v-85c84-3 155-25 208-70v237h-97c-21 0-37 23-23 41l3 3 123 115c8 8 21 10 31 5l4-2z m51-562c21 0 39-10 51-28 6-9 12-19 16-30h241c18 0 33-15 33-33 0-3 0-7-1-10l-51-164c-4-14-17-23-32-23h-139c-14 0-27 9-32 24l-54 180 0 0c-3 11-9 22-16 33-4 5-8 8-13 9l-3 0c-12 0-21 9-21 21s9 21 21 21z m297-99h-216l44-147h126l46 147z m-639 379l-78-80 78-81v161z m542 0v-161l78 80-78 81z m-267 240l-83-78h167l-84 78z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="woocommerce-notices" unicode="" d="M718-79c16 0 29-13 29-29s-13-30-29-30-30 13-30 30 14 29 30 29z m104 0c16 0 29-13 29-29s-13-30-29-30-29 13-29 30 13 29 29 29z m-238 300c21 0 39-10 51-28 6-9 12-19 16-30h241c18 0 33-15 33-33 0-3 0-7-2-10l-50-164c-5-14-18-23-32-23h-139c-14 0-27 9-32 24l-54 180 0 0c-3 11-9 22-16 33-4 5-8 8-13 9l-4 0c-11 0-20 9-20 21s9 21 21 21z m296-99h-216l44-147h127l45 147z m-409 666c11 0 19-8 21-18l0-3 0-64c64-5 125-32 171-78 51-51 79-120 79-192 0-80 11-155 30-215 3-11-3-23-14-26-11-4-23 3-26 13-20 65-32 144-32 228 0 61-24 120-67 162-43 43-101 68-162 68-61 0-119-25-162-68s-67-101-67-162c0-130-24-232-65-306-9-17-18-31-27-43l-3-5h443c11 0 19-7 21-17l0-4c0-10-7-18-17-20l-4 0-25 0c0-4-1-8-3-11-9-16-23-29-38-38-16-9-34-14-52-14s-37 5-52 14c-16 9-30 22-38 38-2 3-3 7-3 11l-282 0c-21 0-29 26-12 38l2 1 4 4 3 2 0 0 7 7c14 15 27 33 40 57 38 68 60 162 60 287 0 71 29 141 79 191 46 46 107 74 171 79l0 63c-1 11 9 21 20 21z m47-750l-93 0c4-5 9-10 15-13 10-5 20-8 31-8s22 3 32 8c3 2 7 5 10 8l5 5z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="inner-container" unicode="" d="M729 538h-458c-23 0-42-19-42-42v-292c0-23 19-41 42-41h458c23 0 42 18 42 41v292c0 23-19 42-42 42z m-458-42h458v-292h-458v292z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="warning-full" unicode="" d="M500 767c11 0 23-3 33-9 7-5 14-10 20-18l3-6 393-659c25-42-3-96-51-100l-5 0h-786c-49 0-80 52-59 95l3 5 393 659c6 10 14 18 24 24 10 6 21 9 32 9z m0-566c-15 0-30-6-40-16-11-11-17-25-17-40s6-30 17-40c10-11 25-17 40-17s30 6 40 17c11 10 17 25 17 40s-6 29-17 40c-10 10-25 16-40 16z m0 339c-7 0-15-1-21-4-6-3-12-7-17-13-5-5-9-11-11-18-2-7-3-14-3-21l20-199c1-7 5-15 10-20 6-5 14-8 22-8s15 3 21 8c6 5 9 13 10 20l20 199c1 7 0 14-3 21-2 7-5 13-10 18-5 6-11 10-18 13-6 3-13 4-20 4z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="exit" unicode="" d="M500 808c69 0 125-55 125-125v-187c0-12-9-21-21-21s-21 9-21 21v187c0 44-34 80-77 83l-6 1h-333c-44 0-80-34-83-77l-1-7v-666c0-44 35-80 77-83l7-1h333c44 0 80 34 83 77l0 7v187c0 12 10 21 21 21s21-9 21-21v-187c0-70-56-125-125-125h-333c-69 0-125 55-125 125v666c0 70 56 125 125 125h333z m326-296l2-2 125-146 2-2 1-2 2-3 0-3 1-4-1-4-1-4-1-2-1-2-2-2-125-146c-7-8-20-9-29-2-8 7-10 18-5 27l2 3 96 111h-559c-11 0-20 9-20 21 0 10 7 18 17 20l3 1h559l-95 111c-8 9-7 22 2 30 8 6 19 6 27 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="loop-builder" unicode="" d="M604 829c11 0 19-7 21-17l0-4v-375c0-10-7-18-17-20l-4 0h-541c-11 0-19 7-21 17l0 3v375c0 11 7 19 17 21l4 0h541z m-21-41h-500v-334h500v334z m21-542c12 0 21-9 21-21 0-10-7-19-17-20l-4-1h-541c-12 0-21 9-21 21 0 10 7 19 17 20l4 1h541z m0 104c12 0 21-9 21-21 0-10-7-19-17-20l-4-1h-541c-12 0-21 10-21 21 0 11 7 19 17 21l4 0h541z m363 263l1 3 0 4 0 4-1 4-1 3-2 3-84 104c-7 10-20 11-29 4-8-7-10-18-5-27l2-3 57-70h-186c-12 0-21-9-21-21 0-11 7-19 17-21l4 0h186l-57-70c-7-10-5-22 4-30 8-6 19-5 26 1l3 3 83 104 2 2 1 3z m-642-751l4-1 4 0 3 0 5 1 2 1 4 2 104 84c9 7 10 20 3 29-6 8-17 10-26 5l-3-2-71-56v185c0 12-9 21-21 21-10 0-18-7-20-17l0-4v-185l-71 56c-9 7-22 6-29-4-6-7-6-19 0-26l3-3 104-83 3-2 2-1z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="notes" unicode="" d="M917 850c44 0 79-35 83-80l1-7v-611c0-46-35-84-77-87l-7 0h-588c-8 0-17-3-24-7l-5-4-232-195c-26-21-64-5-67 29l-1 6v869c0 46 34 83 77 87l6 0h834z m0-45h-834c-18 0-35-16-37-37l0-5v-863l225 189c12 11 26 17 42 20l8 1 8 1h588c19 0 35 15 38 36l0 5v611c0 22-15 39-33 41l-5 1z m-303-409c12 0 22-10 22-23 0-12-8-21-18-22l-4-1h-409c-13 0-23 10-23 23 0 11 8 20 19 22l4 1h409z m182 181c12 0 22-10 22-22 0-12-8-21-18-23l-4 0h-591c-13 0-23 10-23 23 0 11 8 20 19 22l4 0h591z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="read" unicode="" d="M532 841l443-295c16-11 25-29 25-48v-492c0-42-16-81-45-110-29-29-69-46-110-46h-689c-41 0-81 17-110 46-29 29-45 69-45 110v491c0 19 9 38 25 48l442 296c19 12 45 12 64 0z m108-614l-108-72c-20-13-45-13-64 0l-108 72-240-240c2-4 4-7 7-10 8-8 19-12 29-12h688c11 0 22 4 29 12 3 3 5 7 7 10l-240 240z m-525 163v-245l147 147-147 98z m770 0l-147-98 147-147v245z m-385 333l-339-226 223-148c0 0 1-1 1-1l0 0 115-76 115 76c1 1 1 1 1 1l0 0 223 148-339 226z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="unread" unicode="" d="M821 725c77 0 139-60 143-136l1-8v-458c0-77-60-140-136-143l-8-1h-642c-76 0-139 60-143 136l-1 8 0 462 0-4c0 77 60 140 136 144l8 0h642z m-681-241l0-361c0-20 15-37 35-39l4-1h642c20 0 37 16 39 35l0 5 0 361-331-221c-16-10-36-12-53-3l-5 3-331 221z m681 137h-642c-13 0-25-7-32-17l353-235 353 235c-7 10-19 17-32 17z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="carousel-loop" unicode="" d="M400 33c0-25-20-46-45-46s-45 21-45 46 20 45 45 45 45-20 45-45z m99 45c-25 0-45-20-45-45s20-46 45-46 45 21 45 46-20 45-45 45z m144 0c-25 0-45-20-45-45s20-46 45-46 45 21 45 46-20 45-45 45z m340 552v-353c0-11-8-20-18-22h-3c0 0-101 0-101 0v-42c0-10-8-19-18-21h-3c0 0-682 0-682 0-10 0-19 8-21 18v3c0 0 0 42 0 42h-101c-11 0-20 8-21 18v4c-1 0-1 353-1 353 0 11 8 20 18 22h4c0 0 100 0 100 0v42c0 11 8 19 18 21h4c0 0 681 0 681 0 11 0 20-7 21-17v-4c1 0 1-42 1-42h100c11 0 20-8 22-18v-4z m-847-332v311h-78v-310h79z m682-21v395h-638v-437h638v42z m122 331h-79v-310h79v311z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="ehp-forms" unicode="" d="M453 483h-323c-12 0-22 10-22 22v75c0 12 10 21 22 21h323c12 0 22-9 22-21v-75c0-12-10-22-22-22z m-312 33h301v52h-301v-52z m735-279h-746c-12 0-22 10-22 22v165c0 12 10 22 22 22h746c12 0 22-10 22-22v-165c0-12-10-22-22-22z m-735 33h724v143h-724v-143z m179-191h-157c-31 0-55 25-55 55s24 55 55 55h157c30 0 55-25 55-55s-25-55-55-55z m-157 76c-12 0-22-9-22-21s10-21 22-21h157c12 0 22 9 22 21s-10 21-22 21h-157z m713 328h-323c-12 0-22 10-22 22v75c0 12 10 21 22 21h323c12 0 22-9 22-21v-75c0-12-10-22-22-22z m-312 33h301v52h-301v-52z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="nested-carousel" unicode="" d="M914 251h-68c-11 0-20 8-22 17v4c0 0 0 349 0 349 0 11 8 20 18 22h4c0 0 69 0 69 0 0 0 0-1 0-2v-41h-46v-307h46v-43z m-829 349h45v-306h-45v-42c0 0 0-1 0-2h72c10 3 18 11 18 22v353c-2 10-11 18-22 18h-68v-43z m263-521c0-22 17-39 39-39s38 18 38 39-17 39-38 39-39-18-39-39z m113 0c0-22 18-39 39-39s39 18 39 39-18 39-39 39-39-18-39-39z m114 0c0-22 17-39 38-39s39 18 39 39-17 39-39 39-38-18-38-39z m-312 617h-4c-10-2-17-11-17-22v-458c2-10 10-18 21-18h478c10 2 17 11 17 22v458c-2 10-10 18-20 18h-475z m454-455h-434v412h434v-412z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="ai" unicode="" d="M825 788a38 38 0 0 0 38-38 63 63 0 0 1 62-62 38 38 0 0 0 0-75 63 63 0 0 1-62-63 38 38 0 0 0-75 0 63 63 0 0 1-63 63 38 38 0 0 0 0 75 63 63 0 0 1 63 62 38 38 0 0 0 37 38z m0-132a137 137 0 0 0-6-6 135 135 0 0 0 6-6 137 137 0 0 0 6 6 134 134 0 0 0-6 6z m-450 32a38 38 0 0 0 38-38 263 263 0 0 1 262-262 38 38 0 0 0 0-75 263 263 0 0 1-262-263 38 38 0 0 0-75 0 263 263 0 0 1-263 263 38 38 0 0 0 0 75 263 263 0 0 1 263 262 38 38 0 0 0 37 38z m0-193a337 337 0 0 0-145-145 338 338 0 0 0 145-145 337 337 0 0 0 145 145 337 337 0 0 0-145 145z m450-307a38 38 0 0 0 38-38 63 63 0 0 1 62-62 38 38 0 0 0 0-75 63 63 0 0 1-62-63 38 38 0 0 0-75 0 63 63 0 0 1-63 63 38 38 0 0 0 0 75 63 63 0 0 1 63 62 38 38 0 0 0 37 38z m0-132a136 136 0 0 0-6-6 136 136 0 0 0 6-6 136 136 0 0 0 6 6 136 136 0 0 0-6 6z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="accessibility" unicode="" d="M566 692c0 32-28 61-66 61-38 0-67-29-67-61 0-33 28-62 67-62v-34l-6 0c-51 3-92 42-95 91l0 5c0 53 45 96 100 96l6 0c53-3 95-45 95-96l0-5c-3-51-47-91-101-91v34c38 0 66 29 66 62z m-504-145c0 32 27 57 60 56l224-34c95-9 190-9 282-1l19 1 230 34v0c33 1 60-24 60-56l0-5c-3-27-22-45-57-51l-186-32-6 0c-30-4-54-29-54-59l19-436 0-6c-3-25-26-45-54-45v34c12 0 19 9 19 16l-18 436c0 0 0 1 0 1 0 51 41 90 89 94l186 31h0s5 1 5 1c10 3 16 6 18 9 3 2 5 5 5 12 0 11-10 22-24 22l-227-34c-1 0-1 0-2 0-88-9-178-10-268-3l-39 3c-1 0-1 0-2 0l-221 34c-15-1-24-12-24-22 0-8 3-12 5-14 2-2 7-5 17-7l4 0h1s168-22 168-22l229-23 4 0c16-4 28-18 27-35 0-17-14-32-32-33l-114-8-19-442c1-7 8-16 20-16v-34l-6 0c-25 2-45 21-48 45l0 6 20 473 145 10-230 23-168 21c-35 4-54 22-57 50l0 6z m446-317c27-2 50-21 55-49l1-6 16-212 1-3c2-7 9-13 18-13v-34l-5 0c-24 2-43 19-47 42l-1 5-17 213c-1 13-12 23-27 23-14 0-25-10-26-23l-17-213c-2-27-26-47-54-47v34c12 0 19 8 19 15v1s17 212 17 212l1 6c5 30 32 50 60 50l6-1z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="upgrade" unicode="" d="M226 822h2723c79 0 144-65 144-144v-645c0-79-65-143-144-143h-2723c-79 0-143 64-143 143v645c0 79 64 144 143 144z m683-282c-22 12-49 18-81 18h-149v-417h63v146h86c32 0 59 6 80 18 22 12 38 28 48 49 11 20 16 43 16 69s-5 48-16 69c-10 20-26 36-47 48z m-9-159c-6-13-15-22-28-30-13-7-30-10-50-10h-80v163h79c21 0 38-4 51-11 13-7 22-16 28-28 6-13 9-27 9-42s-3-30-9-42z m1823-186v128h185v54h-185v127h198v54h-261v-417h264v54h-201z m-760 363l-150-417h67l38 110h163l38-110h67l-150 417h-73z m-26-254l61 178h3l62-178h-126z m-1412-15c0-19-4-36-13-51-8-14-20-26-35-34-15-8-34-13-55-13s-39 4-54 13c-16 8-28 20-36 34-8 15-12 32-12 51v269h-63v-274c0-30 7-55 20-78 14-22 33-40 58-53 25-13 54-19 87-19s63 6 88 19c24 13 44 31 57 53 14 22 21 48 21 78v274h-63v-269z m1179 26c22 10 38 25 48 45 11 19 16 42 16 67s-5 48-16 68c-10 20-26 35-48 46-21 11-48 17-80 17h-149v-417h63v158h86c1 0 2 0 4 0l84-158h72l-92 168c4 2 8 4 12 6z m-166 189h79c21 0 38-3 51-10 12-6 22-14 28-26 6-12 9-25 9-41s-3-29-9-40c-6-11-15-20-28-26-13-5-30-8-50-8h-80v151z m-306-202h103c-1-21-5-40-14-57-10-16-23-29-40-39-16-9-36-13-59-13-24 0-46 6-65 18-19 12-34 29-45 53-11 23-17 52-17 85s5 63 16 86c11 23 26 41 45 53 19 12 40 18 64 18 13 0 26-2 38-6 11-3 22-9 31-16 9-7 17-15 23-25 7-10 12-21 16-33h65c-4 20-11 39-21 55-10 17-22 32-38 44-15 12-32 22-52 28-19 7-40 10-63 10-27 0-52-5-74-15-23-9-43-23-60-42-16-19-29-41-39-67-9-27-13-57-13-90 0-44 7-82 23-114 16-32 38-57 67-74 28-17 61-26 99-26 34 0 64 7 90 21 26 14 46 34 61 59 15 26 22 57 22 92v47h-163v-52z m1259 231c-30 16-65 25-106 25h-139v-417h135c42 0 79 8 108 25 30 17 53 41 69 72 16 31 24 69 24 112s-8 80-24 111c-16 31-38 55-67 72z m13-267c-10-23-26-40-47-52-21-12-48-18-79-18h-69v307h73c30 0 55-6 76-18s36-29 46-52c11-23 16-50 16-83s-5-61-16-84z" horiz-adv-x="3176" />
|
||||
|
||||
<glyph glyph-name="notification" unicode="" d="M765-150h-523c-16 0-30 2-43 6-55 19-92 70-92 128v339h-25c-22 0-42 9-58 24-15 15-24 36-24 58v103c0 22 9 43 24 58 16 15 36 24 58 24h59c-23 28-35 63-35 100 0 43 17 83 47 113s70 47 113 47c59 1 116-27 164-80 28-31 52-71 71-116 20 45 44 85 72 116 48 53 105 81 164 80h0c43 0 83-17 113-47 30-30 47-70 47-113 0-37-12-72-35-100h56c22 0 42-9 58-24 15-15 24-36 24-58v-103c0-22-9-43-24-58-16-15-36-24-58-24h-19v-338c0-18-3-35-9-50-21-52-70-85-125-85h0z m-232 59h232c31 0 59 19 70 48 4 8 5 18 5 28v338h-307v-414z m-367 414v-339c0-33 20-61 52-72 7-2 15-3 24-3h231v414h-307z m367 60h385c6 0 12 2 16 6 5 4 7 10 7 16v103c0 6-2 12-7 16-4 4-10 7-16 7h-163c-6-1-12-1-18-1v1h-204v-148z m-451 148c-6 0-12-3-16-7-4-4-7-10-7-16v-103c0-6 2-12 7-16 4-4 10-6 16-6h391v148h-207v-1c-6 0-12 0-18 1h-166z m459 59h210c22 3 42 13 57 28 19 19 30 45 30 72s-11 52-30 71c-19 19-44 30-71 30-43 1-84-20-120-61-32-35-58-83-76-140h0z m-289 0h210c-18 57-44 105-76 140-36 41-77 61-119 61-28 0-53-11-72-30-19-19-30-44-30-71s11-53 30-72c16-15 35-25 57-28h0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="light-mode" unicode="" d="M501 704c15 0 28-12 28-27v-37c0-15-13-27-28-27s-27 12-27 27v37c0 15 12 27 27 27z m-253-103c11 11 28 11 39 0l25-26c11-10 11-28 0-38-10-11-28-11-38 0l-26 25c-11 11-11 28 0 39z m506 0c11-11 11-28 0-39l-25-25c-11-11-28-11-39 0s-11 28 0 38l26 26c10 11 28 11 38 0z m-375-130c32 32 76 50 122 50s90-18 123-50c32-33 51-77 51-123s-19-90-51-123c-33-32-77-51-123-51s-90 19-122 51c-33 33-51 77-51 123s18 90 51 123z m122-4c-31 0-61-13-84-35-22-22-34-53-34-84s12-62 34-84c23-22 53-35 84-35s62 13 84 35c22 22 35 52 35 84s-13 62-35 84c-22 22-52 35-84 35z m-356-119c0 15 12 27 27 27h37c15 0 27-12 27-27s-12-27-27-27h-37c-15 0-27 12-27 27z m621 0c0 15 12 27 27 27h37c15 0 27-12 27-27s-12-27-27-27h-37c-15 0-27 12-27 27z m-454-189c11-11 11-28 0-39l-25-25c-11-11-28-11-39 0-11 10-11 28 0 39l26 25c10 11 28 11 38 0z m378 0c11 11 28 11 39 0l25-25c11-11 11-29 0-39s-28-11-38 0l-26 25c-11 11-11 28 0 39z m-189-76c15 0 28-12 28-27v-37c0-15-13-27-28-27s-27 12-27 27v37c0 15 12 27 27 27z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="dark-mode" unicode="" d="M465 639c-37-6-72-19-104-38-45-27-83-67-108-113-25-47-36-100-34-153 3-52 20-104 49-148 29-44 70-79 118-102 48-23 101-32 154-27 53 6 103 25 146 56 26 20 49 44 67 71-45-7-91-4-136 10-65 21-121 64-157 122-37 57-53 126-44 194 6 46 23 90 49 128z m50 57h10c8 0 16-3 21-10 9-11 8-27-3-36-41-38-67-90-74-145-7-56 5-112 35-159 31-48 76-83 130-100 53-17 110-15 162 6 7 3 15 3 22-1 13-6 18-21 13-34-24-58-63-108-114-145-50-37-110-60-172-66-62-6-125 5-182 31-56 27-105 69-139 121-35 52-55 113-58 175-3 63 11 125 40 180 30 55 74 102 128 134 53 32 115 49 177 49 2 0 3 0 4 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="upgrade-crown" unicode="" d="M500 646c11 0 21-6 27-15l155-233 191 153c11 9 26 10 38 2 11-7 18-21 15-34l-88-437c-3-16-16-27-32-27h-612c-16 0-29 11-32 27l-88 437c-2 13 4 27 15 34 12 8 27 7 38-2l191-153 155 233c6 9 16 15 27 15z m0-92l-148-222c-5-7-13-13-22-14-9-1-18 1-25 7l-149 118 65-322h558l65 322-148-118c-8-6-17-8-26-7-9 1-17 7-22 14l-148 222z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="off-canvas" unicode="" d="M919 718c-23 20-53 31-85 31h-190s-1 0-1 0h-477c-32 0-62-11-85-31-23-20-37-48-37-78v-578c0-30 14-59 37-79 23-20 53-30 85-30h668c32 0 62 10 85 30 24 20 38 49 38 79v413s0 0 0 0v165c0 30-14 58-38 78z m-315-161v-551h-438c-20 0-38 7-51 18-12 10-18 24-18 38v578c0 13 6 27 18 38 13 11 31 18 51 18h438v-139z m54-551v72l67-72h-67z m227 18c-13-11-31-18-51-18h-36l-140 149v133l244-236c-2-10-8-20-17-28z m18 100l-245 238v133l245-238v-133z m0 207l-245 238v106l245-212v-132z m0 202l-188 163h119c20 0 38-7 51-18 12-11 18-25 18-38v-107z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="speakerphone" unicode="" d="M946 439c18 46 17 98-3 143-20 46-58 82-104 100-34 14-72 17-108 9l-48 110c-7 14-17 26-30 36-13 8-28 13-44 13-16 0-32-3-45-12-14-8-25-20-32-34l-125-252-355-156c-21-10-38-27-47-49-9-21-8-45 2-67l80-183c10-21 27-38 49-47 21-8 46-8 67 2l103 45 86-195c10-21 27-39 49-47 21-9 45-8 67 1l46 21c21 9 38 26 47 48 8 22 8 46-2 67l-86 195 45 20 271-78c15-5 31-5 46 0 15 4 29 13 39 25 11 12 17 26 20 42 2 15 0 31-6 46l-49 110c30 21 53 50 67 85z m-773-318c-3-1-6-1-9 0-3 1-6 4-7 7l-81 183c-1 3-1 7 0 10 1 3 4 5 7 7l241 106 91-207-242-106z m357-158c2-3 2-7 0-10-1-3-3-5-6-7l-46-20c-3-1-7-1-10 0-3 1-5 4-7 7l-86 195 69 30 86-195z m328 241s-2-2-4-2c-1 0-3 0-4 0l-284 82c-8 2-17 2-25-2l-57-25-91 207 57 25c8 3 15 10 19 17l132 264s1 3 3 3c1 1 2 1 4 1 1 0 3 0 4-1 1-1 2-2 2-3l245-558s1-3 1-4c0-2-1-3-2-4z m18 262c-6-16-16-30-28-42l-86 195c16 1 34-1 49-8 28-11 50-32 62-59 12-28 13-59 2-86z" horiz-adv-x="958" />
|
||||
|
||||
<glyph glyph-name="ehp-hero" unicode="" d="M862 670h-733c-28 0-50-22-50-50v-554c0-15 7-29 18-38 0 0 0-1 1-1 2-2 4-3 6-4 7-4 16-7 25-7h733c29 0 54 24 54 50v554c0 27-25 50-54 50z m-750-50c0 9 8 17 17 17h733c10 0 21-9 21-17v-549l-206 225c-7 9-19 15-31 16-13 0-25-4-34-13l-205-179-1-1c-3-3-9-4-14-1l-114 66c-17 10-40 7-55-7l-111-112c0 0 0 1 0 1v554z m745-570h-713l103 104c3 3 10 4 14 1l114-66c17-10 40-7 54 7l205 178 1 1c2 3 5 4 9 3 3 0 6-1 8-3l205-225z m-594 515h469c9 0 16 7 16 16s-7 17-16 17h-469c-9 0-16-7-16-17s7-16 16-16z m291-105h-113c-30 0-54-25-54-55s24-55 54-55h113c30 0 54 25 54 55s-24 55-54 55z m0-77h-113c-12 0-21 10-21 22s9 21 21 21h113c12 0 21-9 21-21s-9-22-21-22z m-340-165c32 0 59 26 59 59s-27 58-59 58-58-26-58-58 26-59 58-59z m0 84c14 0 25-12 25-25s-11-25-25-25-25 11-25 25 11 25 25 25z m407 230h-251c-9 0-16-7-16-17s7-16 16-16h251c9 0 16 7 16 16s-7 17-16 17z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="ehp-cta" unicode="" d="M861 16h-734c-27 0-49 23-49 50v554c0 28 22 50 49 50h734c29 0 54-23 54-50v-554c0-26-25-50-54-50z m-734 621c-9 0-16-8-16-17v-554c0-9 7-16 16-16h734c10 0 20 8 20 16v554c0 8-10 17-20 17h-734z m598-92h-457c-9 0-17 7-17 16s8 17 17 17h457c9 0 16-8 16-17s-7-16-16-16z m-103-72h-251c-9 0-17 8-17 17s8 16 17 16h251c9 0 16-7 16-16s-7-17-16-17z m-61-71h-130c-9 0-16 7-16 16s7 17 16 17h130c9 0 17-7 17-17s-8-16-17-16z m40-252h-209c-30 0-55 25-55 55s25 55 55 55h209c30 0 54-25 54-55s-24-55-54-55z m-209 76c-12 0-22-9-22-21s10-22 22-22h208c12 0 22 10 22 22s-10 21-22 21h-208z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="ehp-zigzag" unicode="" d="M390 310h-261c-27 0-50 22-50 50v260c0 28 23 50 50 50h261c27 0 49-22 49-50v-260c0-28-22-50-49-50z m-261 327c-9 0-16-8-16-17v-260c0-9 7-17 16-17h261c9 0 16 8 16 17v260c0 9-7 17-16 17h-261z m736-603h-261c-27 0-50 22-50 49v261c0 27 23 50 50 50h261c27 0 49-23 49-50v-261c0-27-22-49-49-49z m-261 326c-9 0-16-7-16-16v-261c0-9 7-16 16-16h261c9 0 16 7 16 16v261c0 9-7 16-16 16h-261z m292 193h-326c-10 0-17 7-17 17s7 16 17 16h326c9 0 16-7 16-16s-7-17-16-17z m-117-72h-209c-10 0-17 8-17 17s7 17 17 17h209c9 0 16-8 16-17s-7-17-16-17z m-344-292h-326c-9 0-17 7-17 16s8 17 17 17h326c9 0 16-7 16-17s-7-16-16-16z m-117-72h-209c-9 0-17 8-17 17s8 17 17 17h209c9 0 17-8 17-17s-8-17-17-17z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="e-button" unicode="" d="M59 432c0 90 73 162 162 162h558c89 0 162-72 162-162v-170c0-90-73-162-162-162h-18v51h18c61 0 111 50 111 111v170c0 61-50 111-111 111h-558c-61 0-110-50-110-111v-170c0-61 49-111 110-111h264v-51h-264c-89 0-162 72-162 162v170z m378-152c7 7 17 9 26 7l300-87c10-2 19-7 26-15 7-8 12-18 13-28 2-11 0-22-5-31-4-9-12-17-20-22l-43-28 54-54c5-5 8-11 8-18 0-7-3-14-8-18l-57-57c-10-9-26-9-36 1l-53 53-29-42c-5-9-12-16-21-20-10-5-21-7-31-5-11 1-21 6-28 13-8 7-13 16-16 26l-86 300c-3 9 0 19 6 25z m56-55l74-257c0 0 0-1 0-1 0 0 0 0 0-1 0 0 1 0 1 0 0 0 0 0 0 0 1 0 1 1 1 1 0 0 1 1 1 2l46 69c5 6 12 10 19 11 8 0 15-2 21-8l57-57 21 20-58 58c-5 5-8 13-7 20 1 8 5 15 11 19l69 46c1 1 1 1 2 2 0 0 0 0 1 0 0 0 0 0 0 1 0 0-1 0-1 0 0 0 0 0 0 1-1 0-1 0-2 0l-256 74z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="flexbox" unicode="" d="M283 616c-13 0-25-5-35-14-9-10-14-22-14-35v-434c0-13 5-25 14-35 10-9 22-14 35-14h434c13 0 25 5 35 14 9 10 14 22 14 35v434c0 13-5 25-14 35-10 9-22 14-35 14h-434z m-67 19c17 17 42 28 67 28h434c25 0 50-11 68-28 18-18 28-43 28-68v-434c0-25-10-50-28-67-18-18-43-28-68-28h-434c-25 0-50 10-67 28-18 17-28 42-28 67v434c0 25 10 50 28 68z m139-117c13 0 24-10 24-23v-1c0-13-11-23-24-23s-23 10-23 23v1c0 13 11 23 23 23z m145 0c13 0 23-10 23-23v-1c0-13-10-23-23-23s-23 10-23 23v1c0 13 10 23 23 23z m145 0c13 0 23-10 23-23v-1c0-13-10-23-23-23s-24 10-24 23v1c0 13 11 23 24 23z m-290-145c13 0 24-10 24-23v0c0-13-11-24-24-24s-23 11-23 24v0c0 13 11 23 23 23z m290 0c13 0 23-10 23-23v0c0-13-10-24-23-24s-24 11-24 24v0c0 13 11 23 24 23z m-290-144c13 0 24-11 24-24v0c0-13-11-23-24-23s-23 10-23 23v0c0 13 11 24 23 24z m145 0c13 0 23-11 23-24v0c0-13-10-23-23-23s-23 10-23 23v0c0 13 10 24 23 24z m145 0c13 0 23-11 23-24v0c0-13-10-23-23-23s-24 10-24 23v0c0 13 11 24 24 24z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="paragraph" unicode="" d="M162 583c0 14 11 26 25 26h626c14 0 25-12 25-26s-11-25-25-25h-626c-14 0-25 11-25 25z m0-234c0 13 11 25 25 25h626c14 0 25-12 25-25s-11-26-25-26h-626c-14 0-25 12-25 26z m0-235c0 14 11 25 25 25h470c13 0 25-11 25-25s-11-25-25-25h-470c-14 0-25 11-25 25z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="icon" unicode="" d="M492 708c10 0 19-6 23-15l103-206 228-33c10-1 18-8 21-17 3-10 1-20-6-27l-166-161 39-226c2-10-2-20-10-26-8-6-19-7-28-2l-204 107-204-107c-9-5-20-4-28 2-8 6-12 16-11 26l40 226-166 161c-7 7-10 17-7 27 3 9 12 16 22 17l228 33 102 206c5 9 14 15 24 15z m0-85l-85-171c-4-8-11-13-20-15l-189-27 137-133c6-6 9-15 8-23l-33-188 170 89c7 4 17 4 24 0l169-89-32 188c-2 8 1 17 7 23l138 133-190 27c-8 2-16 7-20 15l-84 171z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="e-image" unicode="" d="M630 543h-1c-14 0-26-12-26-27s12-26 26-26h1c15 0 27 12 27 26s-12 27-27 27z m232 164c-29 29-67 45-108 45h-500c-40 0-79-16-107-45-29-28-45-67-45-107v-500c0-41 16-79 45-108 28-28 67-44 107-44h500c41 0 79 16 108 44 28 29 44 67 44 108v500c0 40-16 79-44 107z m-9-607c0-27-11-52-29-70-19-18-44-29-70-29h-500c-26 0-51 11-69 29-19 18-29 43-29 70v72l200 200c15 15 31 20 44 20s28-5 44-20l208-208c10-11 27-11 38 0s10 27 0 38l-64 64 22 23c15 14 30 20 44 20s28-6 44-20l117-117v-72z m0 148l-80 79 0 0c-23 23-51 36-81 36s-58-13-81-36l-1 0-22-23-107 106 0 1c-23 22-51 35-81 35s-58-13-81-35l-1-1-162-162v352c0 26 10 51 29 69 18 19 43 29 69 29h500c26 0 51-10 70-29 18-18 29-43 29-69v-352z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="video" unicode="" d="M327 600c-6 3-13-1-13-8v-547c0-8 7-12 13-8l445 273c6 4 6 12 0 16l-445 274z m-68-8c0 49 55 80 97 54l445-274c40-25 40-83 0-108l-445-274c-42-26-97 5-97 55v547z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="svg" unicode="" d="M502 772c10 0 19-6 24-14l201-351c4-9 4-19 0-27-5-9-14-14-24-14h-401c-10 0-19 5-24 14-4 8-5 18 0 27l201 351c5 8 14 14 23 14z m0-82l-154-270h309l-154 270z m-323-471c-6 0-12-2-16-7-4-4-7-10-7-16v-201c0-6 3-12 7-16 4-5 10-7 16-7h201c6 0 12 2 16 7 5 4 7 10 7 16v201c0 6-2 12-7 16-4 5-10 7-16 7h-201z m-54 32c14 14 34 22 54 22h201c20 0 40-8 55-22 14-15 22-35 22-55v-201c0-20-8-40-22-54-15-15-35-23-55-23h-201c-20 0-40 8-54 23-15 14-23 34-23 54v201c0 20 8 40 23 55z m480-30c34 33 79 52 126 52s92-19 125-52c34-33 52-78 52-125s-18-93-52-126c-33-33-78-52-125-52s-92 19-126 52c-33 33-52 78-52 126s19 92 52 125z m126-2c-33 0-64-13-87-36-24-23-37-55-37-87s13-65 37-88c23-23 54-36 87-36s64 13 87 36c23 23 36 55 36 88s-13 64-36 87c-23 23-54 36-87 36z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="e-divider" unicode="" d="M902 330h-789c-12 0-21 9-21 20s9 21 21 21h789c11 0 21-9 21-21s-10-20-21-20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="e-heading" unicode="" d="M209 349c0 15 12 27 27 27h529c15 0 27-12 27-27s-12-27-27-27h-529c-15 0-27 12-27 27z m27 398c15 0 27-12 27-27v-742c0-15-12-27-27-27s-27 12-27 27v742c0 15 12 27 27 27z m529 0c15 0 27-12 27-27v-742c0-15-12-27-27-27s-27 12-27 27v742c0 15 12 27 27 27z m-133-769c0 15 12 28 27 28h212c15 0 27-13 27-28s-12-27-27-27h-212c-15 0-27 12-27 27z m0 742c0 15 12 27 27 27h212c15 0 27-12 27-27s-12-28-27-28h-212c-15 0-27 13-27 28z m-529-742c0 15 12 28 27 28h212c15 0 27-13 27-28s-12-27-27-27h-212c-15 0-27 12-27 27z m0 742c0 15 12 27 27 27h212c15 0 27-12 27-27s-12-28-27-28h-212c-15 0-27 13-27 28z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="library-delete" unicode="" d="M404 147v231c0 11 9 20 20 20s19-9 19-20v-231c0-11-8-20-19-20s-20 9-20 20z m174-20c11 0 19 9 19 20v231c0 11-8 20-19 20s-19-9-19-20v-231c0-11 8-20 19-20z m251 406c0-11-9-20-19-20h-21l-37-444c0-26-11-50-28-68-19-18-43-28-69-28h-308c-26 0-51 10-69 28-17 18-28 42-28 68l-37 444h-21c-11 0-19 9-19 20s8 19 19 19h174v96c0 32 26 58 58 58 0 0 0 0 0 0h154c32 0 58-26 58-58v-96h174c10 0 19-9 19-19z m-425 19h193v96c0 5-2 10-5 14-4 3-9 6-14 6h-154c-5 0-10-2-14-6-3-4-5-9-6-14v-96z m346-39h-498l36-442v-1c0-32 26-58 58-58h309c32 0 58 26 58 57v2l36 442h1z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="library-copy" unicode="" d="M870 604c-20 20-46 31-74 31h-202l-77 78c-4 4-10 6-15 6h-126c-28 0-55-11-74-31s-31-46-31-74v-63h-63c-28 0-55-11-75-31s-30-46-30-74v-378c0-28 11-55 30-75s47-30 75-30h420c28 0 55 10 74 30s31 47 31 75v63h63c28 0 55 11 74 30 20 20 31 47 31 75v294c0 28-11 54-31 74h0z m-179-536c0-35-29-63-63-63h-421c-34 0-63 28-63 63 0 0 0 0 0 0v378c0 35 29 63 63 63 0 0 0 0 0 0h63v-273c0-28 11-55 31-75 20-19 46-30 74-30h316v-63z m168 168c0-35-29-63-63-63h-421c-34 0-63 28-63 63 0 0 0 0 0 0v378c0 35 29 63 63 63 0 0 0 0 0 0h118l77-78c4-4 10-6 15-6h210c35 0 63-28 63-63v-294h1z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="library-folder-empty" unicode="" d="M802 534l-210 210s-8 8-16 8h-293c-30 0-55-13-76-29-21-21-29-46-29-76v-586c0-29 12-54 29-75 21-21 46-29 76-29h418c29 0 55 12 75 29 21 17 30 46 30 75v461c0 4 0 12-4 12z m-206 147l139-138h-118c-4 0-12 0-16 8 0 0-5 9-5 13v117z m168-620c0-16-9-33-17-46-8-12-29-16-46-16h-418c-17 0-34 8-47 16-12 9-16 30-16 46v586c0 17 8 34 16 46 9 13 30 17 47 17h272v-146c0-17 8-34 16-46 9-13 30-17 46-17h147v-440z m-176 231h-75v75c0 13-9 21-21 21s-21-8-21-21v-75h-75c-13 0-21-9-21-21s8-21 21-21h75v-76c0-12 8-20 21-20s21 8 21 20v76h75c13 0 21 8 21 21s-8 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="library-move" unicode="" d="M228 678c-15 0-30-6-41-17s-17-25-17-41v-424c0-16 6-30 17-41 11-11 26-17 41-17h309c11 0 19-9 19-19s-8-20-19-20h-309c-25 0-50 10-68 29-18 18-28 42-28 68v424c0 26 10 50 28 68 18 18 43 29 68 29h155c5 0 10-2 13-6l110-110h262c26 0 51-10 69-28 18-18 28-43 28-69v-154c0-11-9-19-19-19s-20 8-20 19v154c0 16-6 30-17 41s-25 17-41 17h-270c-5 0-10 2-13 6l-110 110h-147z m425-482c0 10 8 19 19 19h174c10 0 19-9 19-19v-174c0-11-9-19-19-19s-20 8-20 19v127l-160-160c-7-8-19-8-27 0-7 8-7 20 0 27l160 160h-127c-11 0-19 9-19 20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="library-edit" unicode="" d="M343-5h-174c-12 0-22 10-22 22v173c0 6 3 11 7 15l455 456c14 13 29 24 47 31 35 15 75 15 110 0 18-7 34-18 47-31 14-14 24-30 32-47 7-18 11-36 11-55s-4-38-11-56c-8-17-18-33-32-46l-455-456c-4-4-10-6-15-6z m-152 43h143l390 391-143 142-390-390v-143z m421 564l143-143 28 28c9 10 16 21 21 33 6 12 8 25 8 39s-2 26-8 38c-5 13-12 24-21 33s-21 17-33 22c-25 10-53 10-77 0-13-5-24-12-33-22l-28-28z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="library-download" unicode="" d="M500 724c12 0 21-9 21-20v-449l172 172c8 8 22 8 30 0 8-8 8-21 0-29l-208-208c-8-8-22-8-30 0l-208 208c-8 8-8 21 0 29 9 8 22 8 30 0l172-172v449c0 11 10 20 21 20z m-333-540c12 0 21-10 21-21v-83c0-17 7-33 18-44 12-12 28-19 45-19h499c16 0 32 7 44 19s18 27 18 44v83c0 11 9 21 21 21s21-10 21-21v-83c0-28-11-54-31-74-19-19-46-30-73-30h-499c-28 0-55 11-74 30-20 20-30 46-30 74v83c0 11 9 21 20 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="library-subscription-upgrade" unicode="" d="M432 95h-117c-115 0-209 91-209 202s86 195 195 202c21 72 82 131 160 155 83 25 175 8 240-44 54-43 84-105 84-170 0-10-8-18-18-18s-18 8-18 18c0 54-26 105-71 141-56 45-135 60-206 38-71-22-124-76-139-142-2-8-9-14-18-14-95 0-173-74-173-166s78-166 173-166h117c10 0 18-8 18-18s-8-18-18-18z m272 202c6 0 12-3 15-8l65-97 78 63c6 5 15 6 21 2 7-4 10-12 8-20l-37-188c-2-8-9-15-18-15h-264c-8 0-16 7-17 15l-38 188c-2 8 2 16 8 20 7 4 15 3 21-2l79-63 64 97c3 5 9 8 15 8z m0-51l-60-91c-3-4-7-7-12-7-5-1-11 0-15 3l-54 44 24-124h234l25 124-55-44c-4-3-9-4-14-3s-10 3-13 7l-60 91z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="library-folder-view" unicode="" d="M220 620c-15 0-30-6-41-17-11-10-17-25-17-41v-423c0-16 6-30 17-41 8-8 18-13 28-16l101 270s0 0 0 0c4 11 12 20 21 27 10 6 21 10 33 10h455v58c0 15-6 30-17 41-11 11-25 17-41 17h-269c-5 0-10 2-14 5l-110 110h-146z m616-269h-474s0 0 0 0c-4 0-8-2-11-4-3-2-5-5-7-9l-96-257h512s0 0 0 0c14 0 27 4 37 13 11 9 18 21 20 34l38 200c1 3 1 6 0 8-1 3-2 6-4 8-2 2-4 4-6 5-3 1-6 2-9 2z m20 35c1-1 3-2 5-2 7-4 14-9 20-15 5-7 9-14 11-22 2-8 3-17 1-25l0-1-38-200c-4-22-16-42-33-57-17-14-39-22-62-22h-540c-26 0-50 10-68 28-18 19-28 43-28 69v423c0 26 10 51 28 69 18 18 42 28 68 28h154c5 0 10-2 14-6l110-110h261c26 0 50-10 69-28 18-18 28-43 28-68v-61z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="library-grid" unicode="" d="M255 614c-3 0-7-1-9-4-2-2-4-5-4-9v-143c0-3 1-7 4-9 2-3 6-4 9-4h143c4 0 7 1 9 4 3 2 4 6 4 9v143c0 4-1 7-4 9-2 3-5 4-9 4h-143z m-41 28c11 11 26 17 41 17h143c15 0 30-6 41-17s17-26 17-41v-143c0-15-6-30-17-41s-26-17-41-17h-143c-15 0-30 6-41 17-11 11-17 26-17 41v143c0 15 6 30 17 41z m398-28c-3 0-7-1-9-4-3-2-4-5-4-9v-143c0-3 1-7 4-9 2-3 6-4 9-4h143c3 0 7 1 9 4 3 2 4 6 4 9v143c0 4-1 7-4 9-2 3-6 4-9 4h-143z m-41 28c11 11 26 17 41 17h143c15 0 30-6 41-17 11-11 17-26 17-41v-143c0-15-6-30-17-41s-26-17-41-17h-143c-15 0-30 6-41 17-11 11-17 26-17 41v143c0 15 6 30 17 41z m-316-385c-3 0-7-1-9-4-2-2-4-5-4-9v-143c0-3 1-6 4-9 2-2 6-4 9-4h143c4 0 7 2 9 4 3 3 4 6 4 9v143c0 4-1 7-4 9-2 3-5 4-9 4h-143z m-41 28c11 11 26 17 41 17h143c15 0 30-6 41-17 11-11 17-25 17-41v-143c0-15-6-30-17-41s-26-17-41-17h-143c-15 0-30 6-41 17-11 11-17 26-17 41v143c0 16 6 30 17 41z m398-28c-3 0-7-1-9-4-3-2-4-5-4-9v-143c0-3 1-6 4-9 2-2 6-4 9-4h143c3 0 7 2 9 4 3 3 4 6 4 9v143c0 4-1 7-4 9-2 3-6 4-9 4h-143z m-41 28c11 11 26 17 41 17h143c15 0 30-6 41-17 11-11 17-25 17-41v-143c0-15-6-30-17-41s-26-17-41-17h-143c-15 0-30 6-41 17-11 11-17 26-17 41v143c0 16 6 30 17 41z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="library-cloud-connect" unicode="" d="M619 156c-7-16-16-31-29-43-12-13-26-23-43-30-10-4-21-7-32-9v-92c0-11-9-20-21-20s-20 9-20 20v93c-10 2-20 5-29 8-16 7-31 17-43 30-12 12-22 27-28 43h-97c-57 0-112 21-152 60-41 39-64 92-64 147s23 108 64 147c37 35 85 56 136 60 17 54 54 100 105 131 56 33 124 45 189 33 66-12 124-46 161-97 33-44 47-97 42-149h17c44 0 87-18 118-49 31-31 48-73 48-117s-17-87-48-118c-31-31-74-48-118-48h-156z m-71 537c-56 11-114 0-161-28-47-28-79-71-90-120-2-9-10-16-20-16-46 0-91-18-124-49-32-31-50-73-50-117s18-86 50-117c33-31 78-49 124-49h87c0 3 0 7 0 10v67c0 11 9 21 21 21h24v68c0 12 9 21 20 21s21-9 21-21v-68h92v68c0 12 10 21 21 21s21-9 21-21v-68h24c11 0 20-10 20-21v-67c0-3 0-7 0-10h147c33 0 65 13 88 37 24 23 37 55 37 88s-13 64-37 88c-23 23-55 36-88 36h-41c-7 0-13 3-16 8-4 5-6 11-5 17 11 49 0 99-30 141-31 42-79 71-135 81z m-142-440v-46c-1-12 2-24 6-35 4-12 11-22 20-30 8-9 18-16 29-20 11-5 23-7 35-7s24 2 35 7c11 4 21 11 30 20 8 8 15 18 19 30 5 11 7 23 7 35v0s0 46 0 46h-182z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="library-import" unicode="" d="M785-18c-11 0-20 9-20 21v196l-88-88c-8-8-21-8-29 0s-8 21 0 29l123 123c2 2 4 4 6 5h0c2 1 5 1 7 2h2c2-1 4-1 7-2h0c2-1 4-3 6-5l123-123c8-8 8-21 0-29-8-8-21-8-29 0l-88 88v-196c0-12-9-21-20-21z m-287 164h-219c-117 0-212 92-212 205s87 196 196 204c22 72 82 130 161 154 83 25 176 8 242-45 60-48 90-119 83-191h17c62 0 120-36 147-93 5-10 0-22-10-27-10-5-22-1-27 10-20 42-63 69-110 69h-41c-6 0-12 3-16 8-4 5-5 11-4 17 15 65-10 132-65 175-56 45-134 59-205 38-69-21-122-75-136-140-2-9-11-16-20-16-94 0-171-73-171-163s77-163 171-164h219c11 0 20-9 20-20s-9-21-20-21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="library-list" unicode="" d="M126 64c0 13 11 23 24 23h174c13 0 24-10 24-23s-11-24-24-24h-174c-13 0-24 10-24 24z m0 285c0 13 11 24 24 24h174c13 0 24-11 24-24s-11-24-24-24h-174c-13 0-24 11-24 24z m0 286c0 13 11 24 24 24h174c13 0 24-11 24-24s-11-24-24-24h-174c-13 0-24 11-24 24z m338 0c0 13 10 24 23 24h367c13 0 24-11 24-24s-11-24-24-24h-367c-13 0-23 11-23 24z m0-286c0 13 10 24 23 24h367c13 0 24-11 24-24s-11-24-24-24h-367c-13 0-23 11-23 24z m0-285c0 13 10 23 23 23h367c13 0 24-10 24-23s-11-24-24-24h-367c-13 0-23 10-23 24z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="library-cloud-empty" unicode="" d="M546 681c-56 10-114 0-161-28-47-29-79-72-90-121-2-9-10-16-20-16-47 0-91-18-124-49-33-31-51-73-51-117s18-86 51-118c33-31 77-49 124-49h499c33 0 65 13 88 37 24 23 37 55 37 88s-13 65-37 88c-23 24-55 37-88 37h-41c-7 0-13 3-17 8-4 5-5 11-4 17 11 49 0 99-31 141-30 42-79 72-135 82z m-182 7c56 34 124 46 190 34 65-12 123-47 161-98 32-44 47-97 42-149h17c44 0 87-18 118-49 31-31 49-74 49-118s-18-86-49-118c-31-31-74-48-118-48h-499c-57 0-112 21-153 60-41 39-64 92-64 148s23 108 64 147c37 35 85 56 137 60 16 54 54 101 105 131z m-193-692c0 12 9 21 21 21h582c12 0 21-10 21-21s-9-21-21-21h-582c-12 0-21 9-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="library-folder" unicode="" d="M231 619c-15 0-30-6-41-17-11-11-17-25-17-41v-424c0-15 6-30 17-41 11-11 26-17 41-17h540c15 0 30 6 41 17 11 11 17 26 17 41v309c0 15-6 30-17 41-11 10-26 17-41 17h-270c-5 0-10 2-14 5l-110 110h-146z m-68 11c18 18 42 28 68 28h154c5 0 10-2 14-6l110-110h262c26 0 50-10 68-28 18-18 28-43 28-68v-309c0-25-10-50-28-68-18-18-42-28-68-28h-540c-26 0-50 10-68 28-18 18-28 43-28 68v424c0 26 10 50 28 68z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="lock-outline" unicode="" d="M739 311c0 16-6 30-16 41-10 10-24 16-38 16h-371c-13 0-27-6-37-16-10-11-16-25-16-41v-234c0-16 6-31 16-41 10-11 24-17 37-17h371c14 0 28 6 38 17 10 11 16 25 16 41v234z m-223-117c0 5-2 10-5 13-3 3-7 5-11 5-4 0-8-2-11-5-3-3-5-8-5-13s2-10 5-13c3-4 7-5 11-5 4 0 8 1 11 5 3 3 5 8 5 13z m42 0c0-16-6-31-17-42-11-11-25-18-41-18-16 0-31 7-41 18-11 11-17 26-17 42s6 31 17 42c10 11 25 18 41 18 16 0 30-7 41-18 11-11 17-27 17-42z m69 358c-1 34-15 66-37 89-23 24-53 38-84 39l-6 1c-34 0-66-14-90-40-24-25-38-59-38-96v-135h255v135l0 7z m42-142h16c26 0 50-11 68-29 18-19 27-44 27-70v-234c0-26-9-51-27-70-18-19-42-29-68-29h-371c-25 0-49 10-67 29-18 19-28 44-28 70v234c0 26 10 51 28 70 18 18 42 29 67 29h17v135c0 47 17 92 49 125 32 33 75 52 120 52l8 0c42-2 82-21 112-52 32-33 49-78 49-125v-135z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="e-youtube" unicode="" d="M273 634c-34 0-67-14-91-38-24-24-38-57-38-91v-307c0-34 14-67 38-91 24-25 57-38 91-38h461c34 0 67 13 91 38 24 24 38 57 38 91v307c0 34-14 67-38 91-24 24-57 38-91 38h-461z m-126-3c33 33 79 52 126 52h461c47 0 93-19 126-52 33-33 52-79 52-126v-307c0-48-19-93-52-126-33-34-79-53-126-53h-461c-47 0-93 19-126 53-33 33-52 78-52 126v307c0 47 19 93 52 126z m268-143c7 4 17 4 24 0l192-115c8-5 12-13 12-22s-4-16-12-21l-192-115c-7-5-17-5-24 0-8 4-13 12-13 21v231c0 8 5 17 13 21z m36-65v-143l120 71-120 72z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="mega-menu" unicode="" d="M917 439c11 0 19-7 21-17l0-4v-342c0-11-8-20-17-22l-4 0h-842c-10 0-18 8-20 18l0 4v342c0 11 7 19 17 21l3 0h842z m-21-43h-800v-299h800v299z m-458-48c10 0 19-8 20-18l1-4v-159c0-10-8-19-17-21l-4 0h-258c-11 0-19 8-21 18l0 3v159c0 11 7 20 17 21l4 1h258z m-21-44h-217v-115h217v115z m146 377c10 0 19-8 20-18l1-3v-130c0-11-8-20-17-21l-4-1h-488c-10 0-18 8-20 18l0 4v130c0 10 7 19 17 21l3 0h488z m-21-43h-446v-86h446v86z m231-335c12 0 21-9 21-21 0-10-7-19-17-20l-4-1h-250c-11 0-20 9-20 21 0 11 7 19 17 21l3 0h250z m-100-71c12 0 21-9 21-21 0-10-7-18-17-20l-4-1h-150c-11 0-20 10-20 21 0 11 7 19 17 21l3 0h150z m-333 300c0-11-9-21-21-21-10 0-19 8-20 17l-1 4v125c0 12 10 21 21 21 11 0 19-7 21-17l0-4v-125z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="taxonomy-filter" unicode="" d="M471 29l-46-15v318c0 7-4 14-7 18l-186 204c-11 10-14 21-14 35v68h614v-64c0-14-7-29-18-39l-182-183c-3-3-7-10-7-17v-65c0-14 11-28 29-28s28 10 28 28v50l175 175c22 22 32 50 32 79v89c0 14-10 29-28 29h-672c-14 0-28-11-28-29v-93c0-28 10-53 28-75l179-196v-343c0-7 3-18 11-21 3-4 10-4 14-4 3 0 7 0 7 0l82 29c14 3 22 21 18 32s-14 21-29 18z m490 153c-7 14-15 25-25 36-11 11-22 18-36 25-29 11-61 11-86 0-14-7-25-14-35-25l-143-143c-4-4-7-11-7-18v-125c0-14 10-28 28-28h125c7 0 14 3 18 7l143 143c11 10 18 21 25 35 7 15 7 29 7 43s-11 36-14 50z m-50-68c-4-7-7-14-15-21l-132-136h-85v86l135 132c0 0 0 0 0 0 7 7 11 11 18 14 14 7 32 7 47 0 7-3 14-7 21-14 7-7 11-11 14-21 4-8 4-15 4-25s-4-8-7-15z" horiz-adv-x="1036" />
|
||||
|
||||
<glyph glyph-name="advanced" unicode="" d="M2946 807h-2722c-79 0-144-64-144-143v-645c0-79 65-144 144-144h2722c80 0 144 65 144 144v645c0 79-64 143-144 143z m-2345-679l-51 132h-181l-48-132h-60l166 433h62l177-433h-65z m357 0h-49v40c-20-31-49-47-88-47-25 0-48 7-69 21-21 14-37 33-49 58-11 24-17 53-17 85s5 60 16 85c10 26 26 45 46 59 21 13 45 20 71 20 18 0 35-4 50-12 15-8 27-18 36-31v156h53v-434z m220 0h-49l-120 314h57l67-188c7-20 14-41 20-63 5 17 11 36 20 60l69 191h55l-119-314z m382 0c-6 11-9 24-11 39-20-17-39-29-57-35-18-7-38-11-59-11-34 0-60 9-79 25-18 17-28 39-28 65 0 15 4 29 11 42 7 13 16 23 27 31 12 7 24 13 38 17 11 3 27 6 48 8 43 5 74 11 95 18 0 8 0 12 0 14 0 22-5 37-15 46-14 12-34 18-61 18-25 0-43-4-55-13-12-9-21-24-27-46l-52 7c5 22 13 40 24 54s26 24 47 31c20 8 44 11 71 11s49-3 65-9c17-7 29-14 37-24 8-10 14-22 17-36 2-9 2-26 2-49v-71c0-50 2-81 4-94 2-13 7-26 13-38h-55z m376 0h-53v191c0 22-2 38-7 49s-11 19-22 25-23 10-37 10c-22 0-42-7-58-22-17-14-25-41-25-81v-172h-53v314h48v-45c23 35 56 52 99 52 19 0 37-3 53-10 16-7 27-16 35-27 8-11 14-24 17-39 2-10 3-27 3-52v-193z m295 24c-24-21-53-31-87-31-43 0-78 14-104 42-26 28-39 69-39 121 0 34 6 64 17 89 11 25 28 44 51 57 23 13 48 19 75 19 34 0 62-8 84-26 21-17 35-41 41-73l-51-8c-5 21-14 37-26 47-13 11-28 16-46 16-27 0-48-9-65-28s-25-50-25-92 8-72 24-91c16-20 37-29 63-29 21 0 39 6 53 19 14 13 22 33 26 59l53-7c-6-36-21-64-44-84z m360 120h-234c2-35 12-61 29-80 18-18 40-27 66-27 20 0 36 5 50 15 14 11 25 27 33 49l55-7c-9-32-25-57-49-74-23-18-53-27-89-27-46 0-83 14-110 43-26 28-40 67-40 118s14 94 41 123c27 30 62 44 106 44s76-14 103-43c26-28 39-69 39-120 0-3 0-8 0-14z m318-144h-49v40c-20-31-49-47-88-47-25 0-48 7-69 21-21 14-37 33-48 58-12 24-18 53-18 85s5 60 16 85c10 26 26 45 47 59 21 13 44 20 70 20 19 0 36-4 51-12 14-8 26-18 36-31v156h52v-434z m-1451 138c38 5 67 12 87 20v-20c0-23-3-41-9-53-8-15-19-28-35-37-16-9-34-13-55-13s-36 5-47 14-16 21-16 35c0 10 2 18 7 26 5 7 12 13 21 17 9 4 25 8 47 11z m1057 109c11-13 18-33 20-60h-175c2 28 11 50 28 66 16 16 37 25 61 25 27 0 49-11 66-31z m-1630 0c16-20 24-52 24-94 0-39-8-69-24-88-16-18-36-28-59-28s-43 10-60 30c-17 20-26 50-26 90s8 72 24 91c16 20 36 29 59 29s45-10 62-30z m1951 0c17-20 25-52 25-94 0-39-8-69-25-88-16-18-36-28-59-28s-43 10-60 30c-17 20-25 50-25 90s8 72 24 91c15 20 35 29 59 29s44-10 61-30z m-2349 51l45-120h-147l48 127c10 28 18 55 23 83 7-23 17-53 31-90z" horiz-adv-x="3176" />
|
||||
|
||||
<glyph glyph-name="div-block" unicode="" d="M283 617c-13 0-25-5-35-14-9-9-14-22-14-35v-434c0-13 5-25 14-34 10-10 22-15 35-15h434c13 0 25 5 35 15 9 9 14 21 14 34v434c0 13-5 26-14 35-10 9-22 14-35 14h-434z m-67 19c17 18 42 28 67 28h434c25 0 50-10 68-28 18-18 28-42 28-68v-434c0-25-10-49-28-67-18-18-43-28-68-28h-434c-25 0-50 10-67 28-18 18-28 42-28 67v434c0 26 10 50 28 68z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="atomic" unicode="" d="M233-42c-39 0-70 11-93 33-44 45-45 125-2 225 19 44 45 89 77 135-32 46-58 92-77 136-43 100-42 180 2 224t0 0c45 44 124 45 225 2 43-19 89-45 135-77 46 32 92 58 135 77 101 43 180 42 225-2t0 0c44-44 45-124 2-224-19-44-45-90-77-136 32-45 58-91 77-135 43-100 42-180-2-224-44-45-124-45-225-2-43 18-89 44-135 76-46-31-92-58-135-76-50-22-94-32-132-32z m14 351c-26-39-47-76-63-113-34-79-37-141-8-169 28-29 90-25 169 9 36 15 74 36 112 62-37 29-75 63-111 99-37 36-70 74-99 112z m296-211c38-26 76-47 112-62 79-34 141-38 170-9 28 28 25 90-9 169-16 37-37 75-62 113-30-38-63-76-99-112-37-36-74-70-112-99z m-266 253c30-40 65-80 104-119 39-38 79-74 119-104 40 30 81 66 119 104 39 39 74 79 104 119-30 41-65 81-104 120-38 38-79 73-119 104-40-31-80-66-119-105-39-38-74-78-104-119z m-101 325c-29-29-26-91 8-170 16-36 37-74 63-112 29 38 62 76 99 112 36 36 73 69 111 99-38 25-76 46-112 62-79 34-141 37-169 9z m367-71c38-30 75-63 112-99 36-36 69-74 99-112 25 38 46 76 62 112 34 80 37 141 8 170-28 28-90 25-169-9-36-16-74-37-112-62z m-43-280c-14 0-25 11-25 25s11 25 25 25h0c14 0 25-11 25-25s-11-25-25-25z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="container-grid" unicode="" d="M925 654h-814c-18 0-36-15-36-36v-536c0-18 18-36 36-36h814c18 0 36 18 36 36v536c0 18-18 36-36 36z m-7-283h-379v240h379v-240z m-422 240v-240h-378v240h378z m-378-282h378v-240h-378v240z m421-240v240h379v-240h-379z" horiz-adv-x="1036" />
|
||||
</font>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 345 KiB |
|
After Width: | Height: | Size: 898 KiB |
@@ -0,0 +1 @@
|
||||
!function(t){"use strict";if("function"==typeof define&&define.amd)define(["jquery"],t);else if("object"==typeof exports)t(require("jquery"));else{if("undefined"==typeof jQuery)throw"jquery-numerator requires jQuery to be loaded first";t(jQuery)}}(function(t){function e(e,s){this.element=e,this.settings=t.extend({},i,s),this._defaults=i,this._name=n,this.init()}var n="numerator",i={easing:"swing",duration:500,delimiter:void 0,rounding:0,toValue:void 0,fromValue:void 0,queue:!1,onStart:function(){},onStep:function(){},onProgress:function(){},onComplete:function(){}};e.prototype={init:function(){this.parseElement(),this.setValue()},parseElement:function(){var e=t.trim(t(this.element).text());this.settings.fromValue=this.settings.fromValue||this.format(e)},setValue:function(){var e=this;t({value:e.settings.fromValue}).animate({value:e.settings.toValue},{duration:parseInt(e.settings.duration,10),easing:e.settings.easing,start:e.settings.onStart,step:function(n,i){t(e.element).text(e.format(n)),e.settings.onStep(n,i)},progress:e.settings.onProgress,complete:e.settings.onComplete})},format:function(t){var e=this;return t=parseInt(this.settings.rounding)<1?parseInt(t,10):parseFloat(t).toFixed(parseInt(this.settings.rounding)),e.settings.delimiter?this.delimit(t):t},delimit:function(t){var e=this;if(t=t.toString(),e.settings.rounding&&parseInt(e.settings.rounding,10)>0){var n=t.substring(t.length-(e.settings.rounding+1),t.length),i=t.substring(0,t.length-(e.settings.rounding+1));return e.addDelimiter(i)+n}return e.addDelimiter(t)},addDelimiter:function(t){return t.toString().replace(/\B(?=(\d{3})+(?!\d))/g,this.settings.delimiter)}},t.fn[n]=function(i){return this.each(function(){t.data(this,"plugin_"+n)&&t.data(this,"plugin_"+n,null),t.data(this,"plugin_"+n,new e(this,i))})}});
|
||||
@@ -0,0 +1 @@
|
||||
<svg height="471" width="752" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><rect fill="#2557d6" height="471" rx="40" width="750" x="1"/><path d="M1.003 221.185h36.024l8.123-19.51h18.185l8.101 19.51h70.88V206.27l6.327 14.98h36.796l6.327-15.202v15.138h176.151l-.082-32.026h3.408c2.386.083 3.083.302 3.083 4.226v27.8h91.106v-7.455c7.349 3.92 18.779 7.455 33.819 7.455h38.328l8.203-19.51h18.185l8.021 19.51h73.86v-18.532l11.186 18.532h59.187V98.678h-58.576v14.468l-8.202-14.468h-60.105v14.468l-7.532-14.468h-81.188c-13.59 0-25.536 1.889-35.186 7.153v-7.153h-56.026v7.153c-6.14-5.426-14.508-7.153-23.812-7.153H180.908l-13.734 31.641-14.104-31.641H88.6v14.468l-7.083-14.468H26.534L1 156.924v64.261zm227.396-17.67h-21.614l-.08-68.794-30.573 68.793H157.62l-30.652-68.854v68.854H84.084l-8.101-19.592h-43.9L23.9 203.514H1l37.756-87.837h31.326l35.859 83.164v-83.164h34.412l27.593 59.587 25.347-59.587h35.104v87.837h.003zM68.777 165.692l-14.43-35.017-14.35 35.017zm245.642 37.821h-70.433v-87.837h70.433v18.291h-49.348V149.8h48.165v18.005H265.07v17.542h49.348v18.166zm99.256-64.18c0 14.004-9.386 21.24-14.856 23.412 4.613 1.748 8.553 4.838 10.43 7.397 2.976 4.369 3.49 8.271 3.49 16.116v17.255h-21.266l-.08-11.077c0-5.285.508-12.886-3.328-17.112-3.081-3.09-7.777-3.76-15.368-3.76h-22.633v31.95H328.98v-87.838h48.495c10.775 0 18.714.283 25.53 4.207 6.67 3.924 10.67 9.652 10.67 19.45zm-26.652 13.042c-2.898 1.752-6.324 1.81-10.43 1.81H350.98v-19.51h25.962c3.674 0 7.508.164 9.998 1.584 2.735 1.28 4.427 4.003 4.427 7.765 0 3.84-1.61 6.929-4.344 8.351zm60.466 51.138h-21.513v-87.837h21.513zm249.74 0H667.35l-39.964-65.927v65.927h-42.94l-8.204-19.592h-43.799l-7.96 19.592H499.81c-10.248 0-23.224-2.257-30.572-9.715-7.41-7.458-11.265-17.56-11.265-33.533 0-13.027 2.304-24.936 11.366-34.347 6.816-7.01 17.49-10.242 32.02-10.242h20.412v18.821h-19.984c-7.694 0-12.039 1.14-16.224 5.203-3.594 3.699-6.06 10.69-6.06 19.897 0 9.41 1.878 16.196 5.797 20.628 3.245 3.476 9.144 4.53 14.694 4.53h9.469l29.716-69.076h31.592l35.696 83.081v-83.08h32.103l37.062 61.174V115.68h21.596v87.834zm-128.159-37.82l-14.591-35.017-14.51 35.017h29.1zm181.885 178.074c-5.121 7.458-15.101 11.239-28.611 11.239h-40.718v-18.84h40.553c4.022 0 6.837-.527 8.532-2.175a7.71 7.71 0 0 0 2.493-5.73c0-2.56-1.024-4.592-2.575-5.81-1.53-1.341-3.757-1.95-7.429-1.95-19.797-.67-44.495.609-44.495-27.194 0-12.743 8.125-26.157 30.25-26.157h41.998v-17.48h-39.02c-11.776 0-20.33 2.808-26.388 7.174v-7.175H627.83c-9.23 0-20.063 2.279-25.187 7.175v-7.175H499.578v7.175c-8.203-5.892-22.043-7.175-28.431-7.175h-67.983v7.175c-6.49-6.258-20.92-7.175-29.716-7.175h-76.085l-17.41 18.763-16.307-18.763H149.99v122.592h111.516l17.94-19.06 16.9 19.06 68.739.061v-28.838h6.757c9.12.14 19.878-.226 29.368-4.31v33.085h56.697v-31.952h2.735c3.49 0 3.834.143 3.834 3.616v28.333H636.71c10.935 0 22.365-2.787 28.695-7.845v7.845h54.632c11.369 0 22.471-1.587 30.918-5.651zm-341.503-47.154c0 24.406-18.286 29.445-36.716 29.445H346.43v29.469h-40.98l-25.962-29.085-26.981 29.085H168.99v-87.859h84.8l25.941 28.799 26.819-28.799h67.371c16.732 0 35.532 4.613 35.532 28.945zm-167.625 40.434h-51.839v-17.481h46.289V301.64h-46.289v-15.973h52.86l23.062 25.604zm83.526 10.06l-32.37-35.788 32.37-34.651zm47.873-39.066H345.98v-22.374h27.492c7.612 0 12.896 3.09 12.896 10.773 0 7.598-5.04 11.601-13.14 11.601zm142.744-40.373h70.369v18.17h-49.372v15.973h48.167v17.925h-48.167v17.481l49.372.08v18.23h-70.37v-87.859zm-27.054 47.03c4.693 1.724 8.53 4.816 10.329 7.375 2.977 4.29 3.408 8.293 3.493 16.037v17.417H481.57v-10.992c0-5.286.511-13.112-3.408-17.198-3.08-3.147-7.777-3.9-15.468-3.9h-22.533v32.09h-21.186v-87.859h48.678c10.674 0 18.448.47 25.369 4.146 6.654 4.004 10.839 9.488 10.839 19.51-.003 14.024-9.395 21.18-14.945 23.373zM477 303.59c-2.82 1.667-6.308 1.81-10.41 1.81h-25.614v-19.733h25.962c3.754 0 7.51.08 10.062 1.587 2.732 1.423 4.366 4.144 4.366 7.903 0 3.76-1.634 6.788-4.366 8.433zm190.336 5.597c4.106 4.23 6.306 9.572 6.306 18.614 0 18.9-11.858 27.723-33.122 27.723h-41.065v-18.84h40.9c4 0 6.836-.527 8.613-2.175 1.45-1.359 2.49-3.333 2.49-5.73 0-2.56-1.125-4.592-2.573-5.81-1.612-1.34-3.836-1.95-7.508-1.95-19.717-.67-44.41.61-44.41-27.193 0-12.744 8.04-26.158 30.144-26.158h42.269v18.7h-38.677c-3.834 0-6.327.143-8.447 1.587-2.31 1.422-3.166 3.534-3.166 6.32 0 3.315 1.96 5.57 4.613 6.545 2.224.77 4.613.996 8.205.996l11.35.305c11.446.278 19.303 2.249 24.078 7.066zM751 285.667h-38.427c-3.836 0-6.385.143-8.532 1.587-2.224 1.423-3.081 3.534-3.081 6.322 0 3.314 1.878 5.569 4.61 6.544 2.225.77 4.614.996 8.126.996l11.427.304c11.531.284 19.228 2.258 23.921 7.072.855.67 1.368 1.422 1.956 2.175z" fill="#fff"/></g></svg>
|
||||
|
After Width: | Height: | Size: 4.6 KiB |
@@ -0,0 +1 @@
|
||||
<svg width="750" height="471" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><rect fill="#0079BE" width="750" height="471" rx="40"/><path d="M584.934 237.947c0-99.415-82.981-168.133-173.895-168.1h-78.242c-92.003-.033-167.73 68.705-167.73 168.1 0 90.93 75.727 165.64 167.73 165.204h78.242c90.914.436 173.895-74.293 173.895-165.204z" fill="#FFF"/><path d="M333.28 83.93c-84.07.027-152.194 68.308-152.214 152.58.02 84.258 68.144 152.533 152.214 152.56 84.09-.027 152.228-68.302 152.24-152.56-.012-84.272-68.15-152.553-152.24-152.58z" fill="#0079BE"/><path d="M237.066 236.098c.08-41.18 25.746-76.296 61.94-90.25v180.48c-36.194-13.947-61.861-49.044-61.94-90.23zm131 90.275V145.847c36.207 13.92 61.914 49.057 61.98 90.257-.066 41.212-25.773 76.322-61.98 90.269z" fill="#FFF"/></g></svg>
|
||||
|
After Width: | Height: | Size: 804 B |
@@ -0,0 +1 @@
|
||||
<svg height="501" width="780" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M54.992 0C24.627 0 0 24.63 0 55.004v390.992C0 476.376 24.619 501 54.992 501h670.016C755.373 501 780 476.37 780 445.996V55.004C780 24.624 755.381 0 725.008 0z" fill="#4d4d4d"/><path d="M415.13 161.213c30.941 0 56.022 23.58 56.022 52.709v.033c0 29.13-25.081 52.742-56.021 52.742s-56.022-23.613-56.022-52.742v-.033c0-29.13 25.082-52.71 56.022-52.71zm-87.978.68c8.837 0 16.248 1.784 25.268 6.09v22.751c-8.544-7.863-15.955-11.154-25.756-11.154-19.264 0-34.414 15.015-34.414 34.05 0 20.075 14.681 34.196 35.37 34.196 9.312 0 16.586-3.12 24.8-10.857v22.763c-9.341 4.14-16.911 5.776-25.756 5.776-31.278 0-55.582-22.596-55.582-51.737 0-28.826 24.951-51.878 56.07-51.878zm-97.113.627c11.546 0 22.11 3.72 30.943 10.994l-10.748 13.248c-5.35-5.646-10.41-8.028-16.564-8.028-8.853 0-15.3 4.745-15.3 10.989 0 5.354 3.619 8.188 15.944 12.482 23.365 8.044 30.29 15.176 30.29 30.926 0 19.193-14.976 32.553-36.32 32.553-15.63 0-26.994-5.795-36.458-18.872l13.268-12.03c4.73 8.61 12.622 13.222 22.42 13.222 9.163 0 15.947-5.952 15.947-13.984 0-4.164-2.055-7.734-6.158-10.258-2.066-1.195-6.158-2.977-14.2-5.647-19.291-6.538-25.91-13.527-25.91-27.185 0-16.225 14.214-28.41 32.846-28.41zm234.723 1.728h22.437l28.084 66.592 28.446-66.592h22.267l-45.494 101.686h-11.053zm-397.348.152h30.15c33.312 0 56.534 20.382 56.534 49.641 0 14.59-7.104 28.696-19.118 38.057-10.108 7.901-21.626 11.445-37.574 11.445H67.414zm96.135 0h20.54v99.143h-20.54zm411.734 0h58.252v16.8H595.81v22.005h36.336v16.791H595.81v26.762h37.726v16.785h-58.252V164.4zm71.858 0h30.455c23.69 0 37.265 10.71 37.265 29.272 0 15.18-8.514 25.14-23.986 28.105l33.148 41.766h-25.26l-28.429-39.828h-2.678v39.828h-20.515zm20.515 15.616v30.025h6.002c13.117 0 20.069-5.362 20.069-15.328 0-9.648-6.954-14.697-19.745-14.697zM87.94 181.199v65.559h5.512c13.273 0 21.656-2.394 28.11-7.88 7.103-5.955 11.376-15.465 11.376-24.98 0-9.499-4.273-18.725-11.376-24.681-6.785-5.78-14.837-8.018-28.11-8.018z" fill="#fff"/><path d="M779.982 288.361c-26.05 18.33-221.077 149.34-558.754 212.623H724.99c30.365 0 54.992-24.63 54.992-55.004z" fill="#f47216"/></g></svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1 @@
|
||||
<svg width="750" height="471" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient x1=".032%" y1="50%" x2="99.974%" y2="50%" id="a"><stop stop-color="#007B40" offset="0%"/><stop stop-color="#55B330" offset="100%"/></linearGradient><linearGradient x1=".472%" y1="50%" x2="99.986%" y2="50%" id="b"><stop stop-color="#1D2970" offset="0%"/><stop stop-color="#006DBA" offset="100%"/></linearGradient><linearGradient x1=".114%" y1="50.001%" x2="99.986%" y2="50.001%" id="c"><stop stop-color="#6E2B2F" offset="0%"/><stop stop-color="#E30138" offset="100%"/></linearGradient></defs><g fill="none" fill-rule="evenodd"><rect fill="#0E4C96" width="750" height="471" rx="40"/><path d="M617.243 346.766c0 41.615-33.728 75.36-75.36 75.36H132.757V124.245c0-41.626 33.733-75.37 75.365-75.37l409.12-.001v297.892h.001z" fill="#FFF"/><path d="M483.859 242.045c11.684.253 23.437-.516 35.077.4 11.787 2.2 14.628 20.043 4.156 25.888-7.141 3.85-15.633 1.432-23.379 2.113H483.86v-28.401zm41.833-32.145c2.596 9.165-6.238 17.392-15.066 16.13h-26.767c.185-8.642-.368-18.021.272-26.208 10.724.301 21.549-.616 32.21.48 4.58 1.15 8.413 4.916 9.35 9.598zM590.12 73.997c.498 17.501.071 35.927.214 53.783-.035 72.596.072 145.194-.055 217.79-.469 27.207-24.582 50.844-51.6 51.387-27.046.111-54.095.016-81.142.047v-109.75c29.47-.154 58.959.307 88.417-.232 13.667-.86 28.632-9.876 29.27-24.915 1.61-15.102-12.632-25.55-26.153-27.201-5.198-.135-5.044-1.515 0-2.117 12.892-2.787 23.02-16.133 19.226-29.499-3.236-14.058-18.773-19.499-31.697-19.472-26.351-.18-52.709-.026-79.063-.077.172-20.489-.354-41 .286-61.474 2.087-26.716 26.806-48.747 53.447-48.27h78.85z" fill="url(#a)"/><path d="M159.74 125.04c.674-27.163 24.889-50.611 51.875-51.007 26.944-.083 53.891-.012 80.837-.036-.074 90.885.148 181.777-.112 272.658-1.038 26.834-24.99 49.834-51.679 50.307-26.996.099-53.995.014-80.992.042V283.551c26.223 6.194 53.722 8.832 80.473 4.721 15.993-2.575 33.488-10.424 38.902-27.014 3.986-14.192 1.742-29.126 2.334-43.692v-33.824h-46.297c-.208 22.37.426 44.78-.335 67.125-1.248 13.734-14.846 22.46-27.8 21.995-16.066.169-47.898-11.64-47.898-11.64-.08-41.917.466-94.408.692-136.182z" fill="url(#b)"/><path d="M309.72 197.39c-2.434.517-.49-8.3-1.114-11.646.166-21.15-.346-42.323.284-63.458 2.083-26.829 26.991-48.916 53.739-48.288h78.766c-.074 90.884.147 181.775-.112 272.656-1.039 26.834-24.992 49.833-51.68 50.308-26.998.1-53.998.015-80.997.043V272.708c18.44 15.128 43.5 17.484 66.472 17.525 17.317-.006 34.534-2.675 51.35-6.67V260.79c-18.953 9.447-41.233 15.446-62.243 10.018-14.656-3.65-25.294-17.811-25.056-32.936-1.699-15.728 7.524-32.335 22.981-37.011 19.19-6.008 40.108-1.413 58.096 6.398 3.855 2.018 7.765 4.521 6.222-1.921v-17.9c-30.084-7.157-62.101-9.792-92.329-2.004-8.748 2.468-17.27 6.21-24.379 11.956z" fill="url(#c)"/></g></svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="-45 62.3 750 471"><style>.st0{fill:#283a97}.st1{fill:#ee4799}.st2{fill:none;stroke:#ee4799;stroke-width:1.0006;stroke-miterlimit:2.6131}.st3{fill:#fff}</style><path id="Rectangle-1" class="st0" d="M-5 62.3h670c22.1 0 40 17.9 40 40v391c0 22.1-17.9 40-40 40H-5c-22.1 0-40-17.9-40-40v-391c0-22.1 17.9-40 40-40z"/><path class="st0" d="M160.2 477.3h340v-359h-340z"/><path class="st1" d="M500.3 127.6l-10.1 17.1-330.5-7.6v-1.7zm-11.2 19.3l-10.4 17-313.2-7.9-.8-1.2zm-11.7 19.4l-10.2 16.9-290.2-7.9-.7-1.1zm-11.7 19.3l-9.9 17-266.6-7.9-.8-1.2zm-11.2 19.2l-10.1 17.1-243.7-7.9-.8-1.3zm-11.7 19.5l-10.1 16.9-220-7.9-.7-1.1zm-11.5 19.2l-10.1 17.1-196.1-7.9-.8-1.3zm-11.4 19.3l-10.2 17.1-173.1-7.9-.8-1.3zm-11.3 19.3l-10.5 17-150-7.9-.8-1.1zM397 301.5l-10.2 17-126.5-8-.8-1.1zm-11.5 19.3l-10.3 17-102.9-7.9-.8-1.2zM374 340l-10.3 17.1-79.4-7.9-.8-1.3zm-11.5 19.5l-10.2 16.8-56.3-7.8-.8-1.2zm-11.4 19.2l-10.4 17.1-33.2-7.9-.8-1.3zm-12 19.9l-10.4 17.7-11.1-9.2-.3-1.2zm-179.4 7.9h340.6-340.6z"/><path class="st2" d="M159.7 406.5h340.6"/><path class="st1" d="M159.7 387.2h340.6-340.6z"/><path class="st2" d="M159.7 387.2h340.6"/><path class="st1" d="M159.7 368h340.6-340.6z"/><path class="st2" d="M159.7 368h340.6"/><path class="st1" d="M159.7 348.6h340.6-340.6z"/><path class="st2" d="M159.7 348.6h340.6"/><path class="st1" d="M159.7 329.3h340.6-340.6z"/><path class="st2" d="M159.7 329.3h340.6"/><path class="st1" d="M159.7 310h340.6-340.6z"/><path class="st2" d="M159.7 310h340.6"/><path class="st1" d="M159.7 290.8h340.6-340.6z"/><path class="st2" d="M159.7 290.8h340.6"/><path class="st1" d="M159.7 271.3h340.6-340.6z"/><path class="st2" d="M159.7 271.3h340.6"/><path class="st1" d="M159.7 252.1h340.6-340.6z"/><path class="st2" d="M159.7 252.1h340.6"/><path class="st1" d="M159.7 232.8h340.6-340.6z"/><path class="st2" d="M159.7 232.8h340.6"/><path class="st1" d="M159.7 213.5h340.6-340.6z"/><path class="st2" d="M159.7 213.5h340.6"/><path class="st1" d="M159.7 194.1h340.6-340.6z"/><path class="st2" d="M159.7 194.1h340.6"/><path class="st1" d="M159.7 174.8h340.6-340.6z"/><path class="st2" d="M159.7 174.8h340.6"/><path class="st1" d="M159.7 155.6h340.6-340.6z"/><path class="st2" d="M159.7 155.6h340.6"/><path class="st3" d="M364.5 427.4v37.4h25.4l3.2-7.1c-4.6.2-7.9.3-12.6.3h-5.4v-9.3h.6c2.7 0 5.7.2 8.8.3l3.2-7.3c-1.6.2-1.9.2-4.1.2-3.9.2-4.9.2-8.5.2v-7.7h1.3c3.2 0 7.3.2 12.8.3l3-7.3h-27.7zm-97.1 0l2.7 4-14.4 33.5h10.4l2.4-5.7h14.8l2.4 5.7h10.9l-16.4-37.4-12.8-.1zm12.9 24.9h-9l4.4-10.7 4.6 10.7zM221.4 425h-10.6v39.8h25.6l3-7.1c-3.3.2-7.6.3-12.2.3h-5.8v-33zm118.5 4.3c-4.1-1.9-7.7-2.7-11.4-2.7-8.1 0-13.6 4.4-13.6 10.7 0 4 1.7 6.6 6.3 9.6l5.4 3.6c2.5 1.7 3.5 3 3.5 4.9 0 2.4-2.2 3.8-5.5 3.8-2.8 0-4.6-.8-7.7-3.3l-2.8 6.6c4.7 2.5 7.1 3.2 11.2 3.2 9.3 0 15.2-4.6 15.2-11.7 0-4.1-1.9-6.8-6.6-10.1l-5.5-4c-2.4-1.6-3-2.4-3-3.6 0-2.1 1.6-3.3 4.3-3.3 2.4 0 4.4.8 7.6 2.8l2.6-6.5zm75.6-1.9v37.4h10.6v-30.5h2.3c4.7 0 7.3 1.9 7.3 5.4 0 3.6-3 6-7.7 6-.5 0-.8 0-1.6-.2l12.8 19.3h11.7l-10.6-15.5c4.6-2.7 6.5-5.7 6.5-10.3 0-7.9-5.5-11.7-16.7-11.7l-14.6.1z"/></svg>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 6.6 KiB |
@@ -0,0 +1 @@
|
||||
<svg height="471" width="750" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><rect fill="#f4f4f4" height="471" rx="40" width="750"/><path d="M618.579 422.143c-1.213.03-2.213.432-2.998 1.207-.785.776-1.192 1.746-1.22 2.911.028 1.157.435 2.125 1.22 2.904.785.78 1.785 1.184 2.998 1.215 1.185-.03 2.171-.436 2.96-1.215.787-.78 1.196-1.747 1.226-2.904-.03-1.165-.437-2.135-1.223-2.91-.786-.776-1.774-1.179-2.963-1.208zm0 7.329c-.925-.023-1.687-.336-2.287-.94-.6-.602-.91-1.36-.932-2.27.021-.916.332-1.672.932-2.27.6-.599 1.362-.909 2.287-.93.904.021 1.655.331 2.25.93.596.598.905 1.354.927 2.27-.022.91-.33 1.668-.926 2.27-.596.604-1.347.917-2.251.94zm.242-5.139h-1.766v3.826h.817v-1.433h.374l1.16 1.433h.978l-1.25-1.443c.39-.05.69-.176.901-.38.21-.204.317-.465.32-.781-.004-.378-.137-.675-.4-.891-.264-.216-.642-.326-1.134-.33zm-.01.717c.219 0 .39.043.515.127a.434.434 0 0 1 .19.378.446.446 0 0 1-.19.386c-.124.086-.296.129-.515.129h-.939v-1.02zm-458.605 2.703h-8.755V386.87h8.584v4.982s7.539-6.089 12.017-6.013c8.706.148 13.905 7.559 13.905 7.559s4.217-7.559 13.733-7.559c14.073 0 16.137 12.884 16.137 12.884v28.857h-8.412v-25.422s.03-7.73-9.098-7.73c-9.44 0-10.3 7.73-10.3 7.73v25.423h-8.755v-25.595s-.841-8.073-8.756-8.073c-10.278 0-10.471 8.245-10.471 8.245zm266.254-41.92c-4.478-.075-12.016 6.013-12.016 6.013v-4.971h-8.593v40.874h8.76l-.167-25.593s.193-8.228 10.472-8.228c1.909 0 3.391.463 4.565 1.175v-.033l2.853-7.96c-1.722-.725-3.68-1.239-5.874-1.276zm123.33 0c-4.477-.075-12.015 6.013-12.015 6.013v-4.971h-8.593v40.874h8.76l-.167-25.593s.193-8.228 10.472-8.228c1.909 0 3.391.463 4.565 1.175v-.033l2.853-7.96c-1.722-.725-3.68-1.239-5.874-1.276zm-305.653-.167c-13.103 0-20.037 11.784-20.072 21.629-.036 10.091 7.894 21.73 20.44 21.73 7.32 0 13.334-5.407 13.334-5.407l-.016 4.164h8.618V386.86h-8.648v5.155s-5.647-6.348-13.656-6.348zm1.678 8.33c7.04 0 12.754 6.126 12.754 13.668 0 7.543-5.715 13.636-12.754 13.636-7.04 0-12.721-6.093-12.721-13.636 0-7.542 5.681-13.669 12.72-13.669zm249.646-8.33c-13.103 0-20.037 11.784-20.072 21.629-.036 10.091 7.894 21.73 20.44 21.73 7.32 0 13.334-5.407 13.334-5.407l-.016 4.164h8.618V386.86h-8.648v5.155s-5.647-6.348-13.656-6.348zm1.678 8.33c7.04 0 12.754 6.126 12.754 13.668 0 7.543-5.715 13.636-12.754 13.636-7.04 0-12.721-6.093-12.721-13.636 0-7.542 5.681-13.669 12.72-13.669zm81.066-8.33c-13.102 0-20.036 11.784-20.071 21.629-.036 10.091 7.893 21.73 20.44 21.73 7.32 0 13.334-5.407 13.334-5.407l-.016 4.164h8.618v-57.078h-8.648v21.31s-5.648-6.348-13.657-6.348zm1.678 8.33c7.04 0 12.755 6.126 12.755 13.668 0 7.543-5.715 13.636-12.755 13.636s-12.72-6.093-12.72-13.636c0-7.542 5.68-13.669 12.72-13.669zm-287.148 35.13c-8.926 0-17.167-5.497-17.167-5.497l3.777-5.84s7.797 3.607 13.39 3.607c3.634 0 9.712-1.174 9.785-4.81.078-3.842-10.214-4.981-10.214-4.981s-15.364-.21-15.364-12.883c0-7.97 7.673-13.055 17.51-13.055 5.684 0 16.308 4.981 16.308 4.981l-4.291 6.7s-8.204-3.28-12.532-3.436c-3.655-.132-8.069 1.62-8.069 4.81 0 8.668 25.58-.676 25.58 16.834 0 11.487-10.418 13.57-18.713 13.57zm32.93-54.108v11.892h-7.619v8.597h7.62v20.555s-.675 13.904 14.264 13.904c4.13 0 12.218-3.056 12.218-3.056l-3.457-8.934s-3.217 2.745-6.848 2.653c-6.904-.174-6.713-4.6-6.713-4.6v-20.524h14.233v-8.595h-14.232v-11.891h-9.465zm51.858 11.15c-14.05 0-21.07 11.58-21.012 21.63.06 10.335 6.392 21.965 21.85 21.965 6.617 0 15.91-5.81 15.91-5.81L390.277 417s-6.341 4.5-11.915 4.5c-11.16 0-11.882-10.915-11.882-10.915h29.872s2.229-24.416-18.83-24.416zm-1.276 8.028c.331-.02.687 0 1.04 0 10.514 0 10.44 9.94 10.44 9.94H366.48s-.503-9.356 9.767-9.94zm90.132 22.699l4.006 8.017s-6.349 4.13-13.474 4.13c-14.751 0-22.943-11.11-22.943-21.621 0-16.52 13.036-21.378 21.85-21.378 8.001 0 14.931 4.616 14.931 4.616l-4.491 8.016s-2.723-4.25-10.682-4.25c-7.946 0-12.14 6.854-12.14 13.36 0 7.291 4.881 13.483 12.261 13.483 5.79 0 10.682-4.373 10.682-4.373z" fill="#000"/><path d="M624.508 278.631v-5.52h-1.44l-1.658 3.796-1.657-3.796h-1.44v5.52h1.017v-4.164l1.553 3.59h1.055l1.553-3.6v4.174zm-9.123 0v-4.578h1.845v-.933h-4.698v.933h1.845v4.578zm9.412-82.071c0 85.425-69.077 154.676-154.288 154.676-85.21 0-154.288-69.25-154.288-154.676S385.298 41.883 470.51 41.883c85.21 0 154.288 69.251 154.288 154.677z" fill="#f79f1a"/><path d="M434.46 196.56c0 85.425-69.078 154.676-154.288 154.676-85.212 0-154.288-69.25-154.288-154.676S194.96 41.883 280.172 41.883c85.21 0 154.287 69.251 154.287 154.677z" fill="#ea001b"/><path d="M375.34 74.797c-35.999 28.317-59.107 72.318-59.107 121.748s23.108 93.466 59.108 121.782c35.999-28.316 59.107-72.352 59.107-121.782s-23.108-93.431-59.107-121.748z" fill="#ff5f01"/></g></svg>
|
||||
|
After Width: | Height: | Size: 4.5 KiB |
@@ -0,0 +1 @@
|
||||
<svg height="471" width="750" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><rect fill="#0e4595" height="471" rx="40" width="750"/><path d="M278.197 334.228l33.361-195.763h53.36l-33.385 195.763zm246.11-191.54c-10.572-3.966-27.136-8.222-47.822-8.222-52.725 0-89.865 26.55-90.18 64.603-.298 28.13 26.513 43.822 46.753 53.186 20.77 9.594 27.752 15.714 27.654 24.283-.132 13.121-16.587 19.116-31.923 19.116-21.357 0-32.703-2.966-50.226-10.276l-6.876-3.111-7.49 43.824c12.464 5.464 35.51 10.198 59.438 10.443 56.09 0 92.501-26.246 92.916-66.882.2-22.268-14.016-39.216-44.8-53.188-18.65-9.055-30.072-15.099-29.951-24.268 0-8.137 9.667-16.839 30.556-16.839 17.45-.27 30.089 3.535 39.937 7.5l4.781 2.26 7.234-42.43m137.307-4.222h-41.231c-12.774 0-22.332 3.487-27.942 16.234l-79.245 179.404h56.032s9.161-24.123 11.233-29.418c6.124 0 60.554.084 68.337.084 1.596 6.853 6.491 29.334 6.491 29.334h49.513zm-65.418 126.407c4.413-11.279 21.26-54.723 21.26-54.723-.316.522 4.38-11.334 7.075-18.684l3.606 16.879s10.217 46.728 12.352 56.528zM232.904 138.466l-52.24 133.496-5.567-27.13c-9.725-31.273-40.025-65.155-73.898-82.118l47.766 171.203 56.456-.065 84.004-195.386z" fill="#fff"/><path d="M131.92 138.465H45.879l-.681 4.073c66.938 16.204 111.231 55.363 129.618 102.414l-18.71-89.96c-3.23-12.395-12.597-16.094-24.186-16.526" fill="#f2ae14"/></g></svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 91.3 91.1"><circle cx="45.7" cy="45.7" r="45.7"/><circle fill="#FFF" cx="45.7" cy="24.4" r="12.5"/></svg>
|
||||
|
After Width: | Height: | Size: 158 B |
@@ -0,0 +1 @@
|
||||
jQuery(function(t){if("undefined"==typeof wc_add_to_cart_params)return!1;var a=function(){this.requests=[],this.addRequest=this.addRequest.bind(this),this.run=this.run.bind(this),this.$liveRegion=this.createLiveRegion(),t(document.body).on("click",".add_to_cart_button:not(.wc-interactive)",{addToCartHandler:this},this.onAddToCart).on("click",".remove_from_cart_button",{addToCartHandler:this},this.onRemoveFromCart).on("added_to_cart",{addToCartHandler:this},this.onAddedToCart).on("removed_from_cart",{addToCartHandler:this},this.onRemovedFromCart).on("ajax_request_not_sent.adding_to_cart",this.updateButton)};a.prototype.addRequest=function(t){this.requests.push(t),1===this.requests.length&&this.run()},a.prototype.run=function(){var a=this,e=a.requests[0].complete;a.requests[0].complete=function(){"function"==typeof e&&e(),a.requests.shift(),a.requests.length>0&&a.run()},t.ajax(this.requests[0])},a.prototype.onAddToCart=function(a){var e=t(this);if(e.is(".ajax_add_to_cart")){if(!e.attr("data-product_id"))return!0;if(a.data.addToCartHandler.$liveRegion.text("").removeAttr("aria-relevant"),a.preventDefault(),e.removeClass("added"),e.addClass("loading"),!1===t(document.body).triggerHandler("should_send_ajax_request.adding_to_cart",[e]))return t(document.body).trigger("ajax_request_not_sent.adding_to_cart",[!1,!1,e]),!0;var r={};t.each(e.data(),function(t,a){r[t]=a}),t.each(e[0].dataset,function(t,a){r[t]=a}),t(document.body).trigger("adding_to_cart",[e,r]),a.data.addToCartHandler.addRequest({type:"POST",url:wc_add_to_cart_params.wc_ajax_url.toString().replace("%%endpoint%%","add_to_cart"),data:r,success:function(a){a&&(a.error&&a.product_url?window.location=a.product_url:"yes"!==wc_add_to_cart_params.cart_redirect_after_add?t(document.body).trigger("added_to_cart",[a.fragments,a.cart_hash,e]):window.location=wc_add_to_cart_params.cart_url)},dataType:"json"})}},a.prototype.onRemoveFromCart=function(a){var e=t(this),r=e.closest(".woocommerce-mini-cart-item");a.data.addToCartHandler.$liveRegion.text("").removeAttr("aria-relevant"),a.preventDefault(),r.block({message:null,overlayCSS:{opacity:.6}}),a.data.addToCartHandler.addRequest({type:"POST",url:wc_add_to_cart_params.wc_ajax_url.toString().replace("%%endpoint%%","remove_from_cart"),data:{cart_item_key:e.data("cart_item_key")},success:function(a){a&&a.fragments?t(document.body).trigger("removed_from_cart",[a.fragments,a.cart_hash,e]):window.location=e.attr("href")},error:function(){window.location=e.attr("href")},dataType:"json"})},a.prototype.updateButton=function(a,e,r,d){if(d=void 0!==d&&d){if(d.removeClass("loading"),e&&d.addClass("added"),e&&!wc_add_to_cart_params.is_cart&&0===d.parent().find(".added_to_cart").length){var o=document.createElement("a");o.href=wc_add_to_cart_params.cart_url,o.className="added_to_cart wc-forward",o.title=wc_add_to_cart_params.i18n_view_cart,o.textContent=wc_add_to_cart_params.i18n_view_cart,d.after(o)}t(document.body).trigger("wc_cart_button_updated",[d])}},a.prototype.updateFragments=function(a,e){e&&(t.each(e,function(a){t(a).addClass("updating").fadeTo("400","0.6").block({message:null,overlayCSS:{opacity:.6}})}),t.each(e,function(a,e){t(a).replaceWith(e),t(a).stop(!0).css("opacity","1").unblock()}),t(document.body).trigger("wc_fragments_loaded"))},a.prototype.alertCartUpdated=function(t,a,e,r){if(r=void 0!==r&&r){var d=r.data("success_message");if(!d)return;t.data.addToCartHandler.$liveRegion.delay(1e3).text(d).attr("aria-relevant","all")}},a.prototype.createLiveRegion=function(){var a=t(".widget_shopping_cart_live_region");return a.length?a:t('<div class="widget_shopping_cart_live_region screen-reader-text" role="status"></div>').appendTo("body")},a.prototype.onAddedToCart=function(t,a,e,r){t.data.addToCartHandler.updateButton(t,a,e,r),t.data.addToCartHandler.updateFragments(t,a),t.data.addToCartHandler.alertCartUpdated(t,a,e,r)},a.prototype.onRemovedFromCart=function(t,a,e,r){t.data.addToCartHandler.updateFragments(t,a),t.data.addToCartHandler.alertCartUpdated(t,a,e,r)},new a});
|
||||
@@ -0,0 +1 @@
|
||||
!function(t){"use strict";const e=t.params,n=(document.querySelector.bind(document),(t,e)=>e.split(".").reduce((t,e)=>t&&t[e],t)),s=()=>null,i=t=>null===t||t===undefined?"":t,o="wc/store/checkout";function a(t){window.wp&&window.wp.data&&window.wp.data.dispatch&&window.wc&&window.wc.wcBlocksData&&window.wp.data.dispatch(window.wc.wcBlocksData.CHECKOUT_STORE_KEY).setExtensionData("woocommerce/order-attribution",t,!0)}function r(){return"undefined"!=typeof sbjs}function c(){if(window.wp&&window.wp.data&&"function"==typeof window.wp.data.subscribe){const e=window.wp.data.subscribe(function(){e(),a(t.getAttributionData())},o)}}t.getAttributionData=function(){const i=e.allowTracking&&r()?n:s,o=r()?sbjs.get:{},a=Object.entries(t.fields).map(([t,e])=>[t,i(o,e)]);return Object.fromEntries(a)},t.setOrderTracking=function(n){if(e.allowTracking=n,n){if(!r())return;sbjs.init({lifetime:Number(e.lifetime),session_length:Number(e.session),base64:Boolean(e.base64),timezone_offset:"0"})}else!function(){const t=window.location.hostname;["sbjs_current","sbjs_current_add","sbjs_first","sbjs_first_add","sbjs_session","sbjs_udata","sbjs_migrations","sbjs_promo"].forEach(e=>{document.cookie=`${e}=; path=/; max-age=-999; domain=.${t};`})}();const s=t.getAttributionData();!function(t){for(const e of document.querySelectorAll("wc-order-attribution-inputs"))e.values=t}(s),a(s)},t.setOrderTracking(e.allowTracking),"loading"===document.readyState?document.addEventListener("DOMContentLoaded",c):c(),window.customElements.define("wc-order-attribution-inputs",class extends HTMLElement{constructor(){if(super(),this._fieldNames=Object.keys(t.fields),this.hasOwnProperty("_values")){let t=this.values;delete this.values,this.values=t||{}}}connectedCallback(){this.innerHTML="";const t=new DocumentFragment;for(const n of this._fieldNames){const s=document.createElement("input");s.type="hidden",s.name=`${e.prefix}${n}`,s.value=i(this.values&&this.values[n]||""),t.appendChild(s)}this.appendChild(t)}set values(t){if(this._values=t,this.isConnected)for(const t of this._fieldNames){const n=this.querySelector(`input[name="${e.prefix}${t}"]`);n?n.value=i(this.values[t]):console.warn(`Field "${t}" not found. `+"Most likely, the '<wc-order-attribution-inputs>' element was manipulated.")}}get values(){return this._values}})}(window.wc_order_attribution);
|
||||
@@ -0,0 +1 @@
|
||||
function focus_populate_live_region(){var e=["woocommerce-message","woocommerce-error","wc-block-components-notice-banner"].map(function(e){return"."+e+'[role="alert"]'}).join(", "),o=document.querySelectorAll(e);if(0!==o.length){var t=o[0];t.setAttribute("tabindex","-1");var n=setTimeout(function(){t.focus(),clearTimeout(n)},500)}}function refresh_sorted_by_live_region(){var e=document.querySelector(".woocommerce-result-count");if(e){var o=e.innerHTML;e.setAttribute("aria-hidden","true");var t=setTimeout(function(){e.setAttribute("aria-hidden","false"),e.innerHTML="",e.innerHTML=o,clearTimeout(t)},2e3)}}function on_document_ready(){focus_populate_live_region(),refresh_sorted_by_live_region()}jQuery(function(e){e(".woocommerce-ordering").on("change","select.orderby",function(){e(this).closest("form").trigger("submit")}),e("input.qty:not(.product-quantity input.qty)").each(function(){var o=parseFloat(e(this).attr("min"));o>=0&&parseFloat(e(this).val())<o&&e(this).val(o)});var o="store_notice"+(e(".woocommerce-store-notice").data("noticeId")||"");if("hidden"===Cookies.get(o))e(".woocommerce-store-notice").hide();else{function t(o){["Enter"," "].includes(o.key)&&(o.preventDefault(),e(".woocommerce-store-notice__dismiss-link").click())}e(".woocommerce-store-notice").show(),e(".woocommerce-store-notice__dismiss-link").on("click",function n(i){Cookies.set(o,"hidden",{path:"/"}),e(".woocommerce-store-notice").hide(),i.preventDefault(),e(".woocommerce-store-notice__dismiss-link").off("click",n).off("keydown",t)}).on("keydown",t)}e(".woocommerce-input-wrapper span.description").length&&e(document.body).on("click",function(){e(".woocommerce-input-wrapper span.description:visible").prop("aria-hidden",!0).slideUp(250)}),e(".woocommerce-input-wrapper").on("click",function(e){e.stopPropagation()}),e(".woocommerce-input-wrapper :input").on("keydown",function(o){var t=e(this).parent().find("span.description");if(27===o.which&&t.length&&t.is(":visible"))return t.prop("aria-hidden",!0).slideUp(250),o.preventDefault(),!1}).on("click focus",function(){var o=e(this).parent(),t=o.find("span.description");o.addClass("currentTarget"),e(".woocommerce-input-wrapper:not(.currentTarget) span.description:visible").prop("aria-hidden",!0).slideUp(250),t.length&&t.is(":hidden")&&t.prop("aria-hidden",!1).slideDown(250),o.removeClass("currentTarget")}),e.scroll_to_notices=function(o){o.length&&e("html, body").animate({scrollTop:o.offset().top-100},1e3)},e('.woocommerce form .woocommerce-Input[type="password"]').wrap('<span class="password-input"></span>'),e(".woocommerce form input").filter(":password").parent("span").addClass("password-input"),e(".password-input").each(function(){const o=e(this).find("input").attr("id");e(this).append('<button type="button" class="show-password-input" aria-label="'+woocommerce_params.i18n_password_show+'" aria-describedBy="'+o+'"></button>')}),e(".show-password-input").on("click",function(o){o.preventDefault(),e(this).hasClass("display-password")?(e(this).removeClass("display-password"),e(this).attr("aria-label",woocommerce_params.i18n_password_show)):(e(this).addClass("display-password"),e(this).attr("aria-label",woocommerce_params.i18n_password_hide)),e(this).hasClass("display-password")?e(this).siblings(['input[type="password"]']).prop("type","text"):e(this).siblings('input[type="text"]').prop("type","password"),e(this).siblings("input").focus()}),e("a.coming-soon-footer-banner-dismiss").on("click",function(o){var t=e(o.target);e.ajax({type:"post",url:t.data("rest-url"),data:{woocommerce_meta:{coming_soon_banner_dismissed:"yes"}},beforeSend:function(e){e.setRequestHeader("X-WP-Nonce",t.data("rest-nonce"))},complete:function(){e("#coming-soon-footer-banner").hide()}})}),e(document.body).on("item_removed_from_classic_cart",focus_populate_live_region)}),document.addEventListener("DOMContentLoaded",on_document_ready);
|
||||
@@ -0,0 +1,8 @@
|
||||
/*!
|
||||
* jQuery Cookie Plugin v1.4.1
|
||||
* https://github.com/carhartl/jquery-cookie
|
||||
*
|
||||
* Copyright 2013 Klaus Hartl
|
||||
* Released under the MIT license
|
||||
*/
|
||||
!function(e){"function"==typeof define&&define.amd?define(["jquery"],e):"object"==typeof exports?e(require("jquery")):e(jQuery)}(function(e){var n=/\+/g;function o(e){return r.raw?e:encodeURIComponent(e)}function i(e,o){var i=r.raw?e:function(e){0===e.indexOf('"')&&(e=e.slice(1,-1).replace(/\\"/g,'"').replace(/\\\\/g,"\\"));try{return e=decodeURIComponent(e.replace(n," ")),r.json?JSON.parse(e):e}catch(o){}}(e);return"function"==typeof o?o(i):i}var r=e.cookie=function(n,t,u){if(t!==undefined&&"function"!=typeof t){if("number"==typeof(u=e.extend({},r.defaults,u)).expires){var c=u.expires,f=u.expires=new Date;f.setTime(+f+864e5*c)}return document.cookie=[o(n),"=",function(e){return o(r.json?JSON.stringify(e):String(e))}(t),u.expires?"; expires="+u.expires.toUTCString():"",u.path?"; path="+u.path:"",u.domain?"; domain="+u.domain:"",u.secure?"; secure":""].join("")}for(var d,a=n?undefined:{},p=document.cookie?document.cookie.split("; "):[],s=0,m=p.length;s<m;s++){var x=p[s].split("="),y=(d=x.shift(),r.raw?d:decodeURIComponent(d)),k=x.join("=");if(n&&n===y){a=i(k,t);break}n||(k=i(k))===undefined||(a[y]=k)}return a};r.defaults={},e.removeCookie=function(n,o){return e.cookie(n)!==undefined&&(e.cookie(n,"",e.extend({},o,{expires:-1})),!e.cookie(n))}});
|
||||
@@ -0,0 +1,2 @@
|
||||
/*! js-cookie v3.0.5 | MIT */
|
||||
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self,function(){var n=e.Cookies,o=e.Cookies=t();o.noConflict=function(){return e.Cookies=n,o}}())}(this,function(){"use strict";function e(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)e[o]=n[o]}return e}return function t(n,o){function r(t,r,i){if("undefined"!=typeof document){"number"==typeof(i=e({},o,i)).expires&&(i.expires=new Date(Date.now()+864e5*i.expires)),i.expires&&(i.expires=i.expires.toUTCString()),t=encodeURIComponent(t).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var c="";for(var u in i)i[u]&&(c+="; "+u,!0!==i[u]&&(c+="="+i[u].split(";")[0]));return document.cookie=t+"="+n.write(r,t)+c}}return Object.create({set:r,get:function(e){if("undefined"!=typeof document&&(!arguments.length||e)){for(var t=document.cookie?document.cookie.split("; "):[],o={},r=0;r<t.length;r++){var i=t[r].split("="),c=i.slice(1).join("=");try{var u=decodeURIComponent(i[0]);if(o[u]=n.read(c,u),e===u)break}catch(f){}}return e?o[e]:o}},remove:function(t,n){r(t,"",e({},n,{expires:-1}))},withAttributes:function(n){return t(this.converter,e({},this.attributes,n))},withConverter:function(n){return t(e({},this.converter,n),this.attributes)}},{attributes:{value:Object.freeze(o)},converter:{value:Object.freeze(n)}})}({read:function(e){return'"'===e[0]&&(e=e.slice(1,-1)),e.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)},write:function(e){return encodeURIComponent(e).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}},{path:"/"})});
|
||||
|
After Width: | Height: | Size: 434 KiB |
@@ -0,0 +1,801 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
|
||||
<metadata>
|
||||
Created by FontForge 20201107 at Tue Mar 16 10:15:04 2021
|
||||
By Robert Madole
|
||||
Copyright (c) Font Awesome
|
||||
</metadata>
|
||||
<!-- Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><defs>
|
||||
<font id="FontAwesome5Free-Regular" horiz-adv-x="512" >
|
||||
<font-face
|
||||
font-family="Font Awesome 5 Free Regular"
|
||||
font-weight="400"
|
||||
font-stretch="normal"
|
||||
units-per-em="512"
|
||||
panose-1="2 0 5 3 0 0 0 0 0 0"
|
||||
ascent="448"
|
||||
descent="-64"
|
||||
bbox="-0.0663408 -64.0662 640.004 448.1"
|
||||
underline-thickness="25"
|
||||
underline-position="-50"
|
||||
unicode-range="U+0020-F5C8"
|
||||
/>
|
||||
<missing-glyph />
|
||||
<glyph glyph-name="heart" unicode=""
|
||||
d="M458.4 383.7c75.2998 -63.4004 64.0996 -166.601 10.5996 -221.3l-175.4 -178.7c-10 -10.2002 -23.2998 -15.7998 -37.5996 -15.7998c-14.2002 0 -27.5996 5.69922 -37.5996 15.8994l-175.4 178.7c-53.5996 54.7002 -64.5996 157.9 10.5996 221.2
|
||||
c57.8008 48.7002 147.101 41.2998 202.4 -15c55.2998 56.2998 144.6 63.5996 202.4 15zM434.8 196.2c36.2002 36.8994 43.7998 107.7 -7.2998 150.8c-38.7002 32.5996 -98.7002 27.9004 -136.5 -10.5996l-35 -35.7002l-35 35.7002
|
||||
c-37.5996 38.2998 -97.5996 43.1992 -136.5 10.5c-51.2002 -43.1006 -43.7998 -113.5 -7.2998 -150.7l175.399 -178.7c2.40039 -2.40039 4.40039 -2.40039 6.80078 0z" />
|
||||
<glyph glyph-name="star" unicode="" horiz-adv-x="576"
|
||||
d="M528.1 276.5c26.2002 -3.7998 36.7002 -36.0996 17.7002 -54.5996l-105.7 -103l25 -145.5c4.5 -26.3008 -23.1992 -45.9004 -46.3994 -33.7002l-130.7 68.7002l-130.7 -68.7002c-23.2002 -12.2998 -50.8994 7.39941 -46.3994 33.7002l25 145.5l-105.7 103
|
||||
c-19 18.5 -8.5 50.7998 17.7002 54.5996l146.1 21.2998l65.2998 132.4c11.7998 23.8994 45.7002 23.5996 57.4004 0l65.2998 -132.4zM388.6 135.7l100.601 98l-139 20.2002l-62.2002 126l-62.2002 -126l-139 -20.2002l100.601 -98l-23.7002 -138.4l124.3 65.2998
|
||||
l124.3 -65.2998z" />
|
||||
<glyph glyph-name="user" unicode="" horiz-adv-x="448"
|
||||
d="M313.6 144c74.2002 0 134.4 -60.2002 134.4 -134.4v-25.5996c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v25.5996c0 74.2002 60.2002 134.4 134.4 134.4c28.7998 0 42.5 -16 89.5996 -16s60.9004 16 89.5996 16zM400 -16v25.5996
|
||||
c0 47.6006 -38.7998 86.4004 -86.4004 86.4004c-14.6992 0 -37.8994 -16 -89.5996 -16c-51.2998 0 -75 16 -89.5996 16c-47.6006 0 -86.4004 -38.7998 -86.4004 -86.4004v-25.5996h352zM224 160c-79.5 0 -144 64.5 -144 144s64.5 144 144 144s144 -64.5 144 -144
|
||||
s-64.5 -144 -144 -144zM224 400c-52.9004 0 -96 -43.0996 -96 -96s43.0996 -96 96 -96s96 43.0996 96 96s-43.0996 96 -96 96z" />
|
||||
<glyph glyph-name="clock" unicode=""
|
||||
d="M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM256 -8c110.5 0 200 89.5 200 200s-89.5 200 -200 200s-200 -89.5 -200 -200s89.5 -200 200 -200zM317.8 96.4004l-84.8994 61.6992
|
||||
c-3.10059 2.30078 -4.90039 5.90039 -4.90039 9.7002v164.2c0 6.59961 5.40039 12 12 12h32c6.59961 0 12 -5.40039 12 -12v-141.7l66.7998 -48.5996c5.40039 -3.90039 6.5 -11.4004 2.60059 -16.7998l-18.8008 -25.9004c-3.89941 -5.2998 -11.3994 -6.5 -16.7998 -2.59961z
|
||||
" />
|
||||
<glyph glyph-name="list-alt" unicode=""
|
||||
d="M464 416c26.5098 0 48 -21.4902 48 -48v-352c0 -26.5098 -21.4902 -48 -48 -48h-416c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h416zM458 16c3.31152 0 6 2.68848 6 6v340c0 3.31152 -2.68848 6 -6 6h-404c-3.31152 0 -6 -2.68848 -6 -6v-340
|
||||
c0 -3.31152 2.68848 -6 6 -6h404zM416 108v-24c0 -6.62695 -5.37305 -12 -12 -12h-200c-6.62695 0 -12 5.37305 -12 12v24c0 6.62695 5.37305 12 12 12h200c6.62695 0 12 -5.37305 12 -12zM416 204v-24c0 -6.62695 -5.37305 -12 -12 -12h-200c-6.62695 0 -12 5.37305 -12 12
|
||||
v24c0 6.62695 5.37305 12 12 12h200c6.62695 0 12 -5.37305 12 -12zM416 300v-24c0 -6.62695 -5.37305 -12 -12 -12h-200c-6.62695 0 -12 5.37305 -12 12v24c0 6.62695 5.37305 12 12 12h200c6.62695 0 12 -5.37305 12 -12zM164 288c0 -19.8818 -16.1182 -36 -36 -36
|
||||
s-36 16.1182 -36 36s16.1182 36 36 36s36 -16.1182 36 -36zM164 192c0 -19.8818 -16.1182 -36 -36 -36s-36 16.1182 -36 36s16.1182 36 36 36s36 -16.1182 36 -36zM164 96c0 -19.8818 -16.1182 -36 -36 -36s-36 16.1182 -36 36s16.1182 36 36 36s36 -16.1182 36 -36z" />
|
||||
<glyph glyph-name="flag" unicode=""
|
||||
d="M336.174 368c35.4668 0 73.0195 12.6914 108.922 28.1797c31.6406 13.6514 66.9043 -9.65723 66.9043 -44.1162v-239.919c0 -16.1953 -8.1543 -31.3057 -21.7129 -40.1631c-26.5762 -17.3643 -70.0693 -39.9814 -128.548 -39.9814c-68.6084 0 -112.781 32 -161.913 32
|
||||
c-56.5674 0 -89.957 -11.2803 -127.826 -28.5566v-83.4434c0 -8.83691 -7.16309 -16 -16 -16h-16c-8.83691 0 -16 7.16309 -16 16v406.438c-14.3428 8.2998 -24 23.7979 -24 41.5615c0 27.5693 23.2422 49.71 51.2012 47.8965
|
||||
c22.9658 -1.49023 41.8662 -19.4717 44.4805 -42.3379c0.213867 -1.83398 0.308594 -3.65918 0.308594 -5.5498c0 -5.30273 -0.860352 -10.4053 -2.4502 -15.1768c22.418 8.68555 49.4199 15.168 80.7207 15.168c68.6084 0 112.781 -32 161.913 -32zM464 112v240
|
||||
c-31.5059 -14.6338 -84.5547 -32 -127.826 -32c-59.9111 0 -101.968 32 -161.913 32c-41.4365 0 -80.4766 -16.5879 -102.261 -32v-232c31.4473 14.5967 84.4648 24 127.826 24c59.9111 0 101.968 -32 161.913 -32c41.4365 0 80.4775 16.5879 102.261 32z" />
|
||||
<glyph glyph-name="bookmark" unicode="" horiz-adv-x="384"
|
||||
d="M336 448c26.5098 0 48 -21.4902 48 -48v-464l-192 112l-192 -112v464c0 26.5098 21.4902 48 48 48h288zM336 19.5703v374.434c0 3.31348 -2.68555 5.99609 -6 5.99609h-276c-3.31152 0 -6 -2.68848 -6 -6v-374.43l144 84z" />
|
||||
<glyph glyph-name="image" unicode=""
|
||||
d="M464 384c26.5098 0 48 -21.4902 48 -48v-288c0 -26.5098 -21.4902 -48 -48 -48h-416c-26.5098 0 -48 21.4902 -48 48v288c0 26.5098 21.4902 48 48 48h416zM458 48c3.31152 0 6 2.68848 6 6v276c0 3.31152 -2.68848 6 -6 6h-404c-3.31152 0 -6 -2.68848 -6 -6v-276
|
||||
c0 -3.31152 2.68848 -6 6 -6h404zM128 296c22.0908 0 40 -17.9092 40 -40s-17.9092 -40 -40 -40s-40 17.9092 -40 40s17.9092 40 40 40zM96 96v48l39.5137 39.5146c4.6875 4.68652 12.2852 4.68652 16.9717 0l39.5146 -39.5146l119.514 119.515
|
||||
c4.6875 4.68652 12.2852 4.68652 16.9717 0l87.5146 -87.5146v-80h-320z" />
|
||||
<glyph glyph-name="edit" unicode="" horiz-adv-x="576"
|
||||
d="M402.3 103.1l32 32c5 5 13.7002 1.5 13.7002 -5.69922v-145.4c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h273.5c7.09961 0 10.7002 -8.59961 5.7002 -13.7002l-32 -32c-1.5 -1.5 -3.5 -2.2998 -5.7002 -2.2998h-241.5v-352h352
|
||||
v113.5c0 2.09961 0.799805 4.09961 2.2998 5.59961zM558.9 304.9l-262.601 -262.601l-90.3994 -10c-26.2002 -2.89941 -48.5 19.2002 -45.6006 45.6006l10 90.3994l262.601 262.601c22.8994 22.8994 59.8994 22.8994 82.6992 0l43.2002 -43.2002
|
||||
c22.9004 -22.9004 22.9004 -60 0.100586 -82.7998zM460.1 274l-58.0996 58.0996l-185.8 -185.899l-7.2998 -65.2998l65.2998 7.2998zM524.9 353.7l-43.2002 43.2002c-4.10059 4.09961 -10.7998 4.09961 -14.7998 0l-30.9004 -30.9004l58.0996 -58.0996l30.9004 30.8994
|
||||
c4 4.2002 4 10.7998 -0.0996094 14.9004z" />
|
||||
<glyph glyph-name="times-circle" unicode=""
|
||||
d="M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM256 -8c110.5 0 200 89.5 200 200s-89.5 200 -200 200s-200 -89.5 -200 -200s89.5 -200 200 -200zM357.8 254.2l-62.2002 -62.2002l62.2002 -62.2002
|
||||
c4.7002 -4.7002 4.7002 -12.2998 0 -17l-22.5996 -22.5996c-4.7002 -4.7002 -12.2998 -4.7002 -17 0l-62.2002 62.2002l-62.2002 -62.2002c-4.7002 -4.7002 -12.2998 -4.7002 -17 0l-22.5996 22.5996c-4.7002 4.7002 -4.7002 12.2998 0 17l62.2002 62.2002l-62.2002 62.2002
|
||||
c-4.7002 4.7002 -4.7002 12.2998 0 17l22.5996 22.5996c4.7002 4.7002 12.2998 4.7002 17 0l62.2002 -62.2002l62.2002 62.2002c4.7002 4.7002 12.2998 4.7002 17 0l22.5996 -22.5996c4.7002 -4.7002 4.7002 -12.2998 0 -17z" />
|
||||
<glyph glyph-name="check-circle" unicode=""
|
||||
d="M256 440c136.967 0 248 -111.033 248 -248s-111.033 -248 -248 -248s-248 111.033 -248 248s111.033 248 248 248zM256 392c-110.549 0 -200 -89.4678 -200 -200c0 -110.549 89.4678 -200 200 -200c110.549 0 200 89.4678 200 200c0 110.549 -89.4678 200 -200 200z
|
||||
M396.204 261.733c4.66699 -4.70508 4.63672 -12.3037 -0.0673828 -16.9717l-172.589 -171.204c-4.70508 -4.66797 -12.3027 -4.63672 -16.9697 0.0683594l-90.7812 91.5156c-4.66797 4.70605 -4.63672 12.3047 0.0683594 16.9717l22.7188 22.5361
|
||||
c4.70508 4.66699 12.3027 4.63574 16.9697 -0.0693359l59.792 -60.2773l141.353 140.216c4.70508 4.66797 12.3027 4.6377 16.9697 -0.0673828z" />
|
||||
<glyph glyph-name="question-circle" unicode=""
|
||||
d="M256 440c136.957 0 248 -111.083 248 -248c0 -136.997 -111.043 -248 -248 -248s-248 111.003 -248 248c0 136.917 111.043 248 248 248zM256 -8c110.569 0 200 89.4697 200 200c0 110.529 -89.5088 200 -200 200c-110.528 0 -200 -89.5049 -200 -200
|
||||
c0 -110.569 89.4678 -200 200 -200zM363.244 247.2c0 -67.0518 -72.4209 -68.084 -72.4209 -92.8633v-6.33691c0 -6.62695 -5.37305 -12 -12 -12h-45.6475c-6.62695 0 -12 5.37305 -12 12v8.65918c0 35.7451 27.1006 50.0342 47.5791 61.5156
|
||||
c17.5615 9.84473 28.3242 16.541 28.3242 29.5791c0 17.2461 -21.999 28.6934 -39.7842 28.6934c-23.1885 0 -33.8936 -10.9775 -48.9424 -29.9697c-4.05664 -5.11914 -11.46 -6.07031 -16.666 -2.12402l-27.8232 21.0986
|
||||
c-5.10742 3.87207 -6.25098 11.0654 -2.64453 16.3633c23.627 34.6934 53.7217 54.1846 100.575 54.1846c49.0713 0 101.45 -38.3037 101.45 -88.7998zM298 80c0 -23.1592 -18.8408 -42 -42 -42s-42 18.8408 -42 42s18.8408 42 42 42s42 -18.8408 42 -42z" />
|
||||
<glyph glyph-name="eye" unicode="" horiz-adv-x="576"
|
||||
d="M288 304c0.114258 0 0.240234 -0.0175781 0.354492 -0.0175781c61.6543 0 111.71 -50.0557 111.71 -111.71s-50.0557 -111.71 -111.71 -111.71s-111.71 50.0557 -111.71 111.71c0 10.7422 1.51953 21.1328 4.35547 30.9678
|
||||
c7.95898 -4.52637 17.2129 -7.17188 27 -7.24023c30.9072 0 56 25.0928 56 56c-0.0683594 9.78711 -2.71387 19.041 -7.24023 27c9.88379 3.07617 20.3896 4.83008 31.2402 5zM572.52 206.6c2.21387 -4.37793 3.46094 -9.38965 3.46094 -14.626
|
||||
c0 -5.2373 -1.24707 -10.1855 -3.46094 -14.5635c-54.1992 -105.771 -161.59 -177.41 -284.52 -177.41s-230.29 71.5898 -284.52 177.4c-2.21387 4.37793 -3.46094 9.38965 -3.46094 14.626c0 5.2373 1.24707 10.1855 3.46094 14.5635
|
||||
c54.1992 105.771 161.59 177.41 284.52 177.41s230.29 -71.5898 284.52 -177.4zM288 48c98.6602 0 189.1 55 237.93 144c-48.8398 89 -139.27 144 -237.93 144s-189.09 -55 -237.93 -144c48.8398 -89 139.279 -144 237.93 -144z" />
|
||||
<glyph glyph-name="eye-slash" unicode="" horiz-adv-x="640"
|
||||
d="M634 -23c3.66895 -2.93262 6.00391 -7.45117 6.00391 -12.5088c0 -3.7832 -1.31543 -7.26074 -3.51367 -10.001l-10 -12.4902c-2.93359 -3.66309 -7.44824 -5.99414 -12.502 -5.99414c-3.77637 0 -7.25 1.31152 -9.98828 3.50391l-598 467.49
|
||||
c-3.66895 2.93262 -6.00391 7.45117 -6.00391 12.5088c0 3.7832 1.31543 7.26074 3.51367 10.001l10 12.4902c2.93359 3.66309 7.44824 5.99414 12.502 5.99414c3.77637 0 7.25 -1.31152 9.98828 -3.50391zM296.79 301.53c7.51172 1.60254 15.2266 2.45508 23.21 2.46973
|
||||
c60.4805 0 109.36 -47.9102 111.58 -107.85zM343.21 82.46c-7.51367 -1.59375 -15.2285 -2.44336 -23.21 -2.45996c-60.4697 0 -109.35 47.9102 -111.58 107.84zM320 336c-19.8799 0 -39.2803 -2.7998 -58.2197 -7.09961l-46.4102 36.29
|
||||
c32.9199 11.8096 67.9297 18.8096 104.63 18.8096c122.93 0 230.29 -71.5898 284.57 -177.4c2.21289 -4.37793 3.45996 -9.38965 3.45996 -14.626c0 -5.2373 -1.24707 -10.1855 -3.45996 -14.5635c-14.1924 -27.5625 -31.9229 -52.6689 -52.9004 -75.1104l-37.7402 29.5
|
||||
c17.2305 18.0527 31.9385 38.1318 44 60.2002c-48.8398 89 -139.279 144 -237.93 144zM320 48c19.8896 0 39.2803 2.7998 58.2197 7.08984l46.4102 -36.2803c-32.9199 -11.7598 -67.9297 -18.8096 -104.63 -18.8096c-122.92 0 -230.28 71.5898 -284.51 177.4
|
||||
c-2.21387 4.37793 -3.46094 9.38965 -3.46094 14.626c0 5.2373 1.24707 10.1855 3.46094 14.5635c14.1885 27.5586 31.916 52.6621 52.8896 75.1006l37.7402 -29.5c-17.249 -18.0469 -31.9727 -38.1221 -44.0498 -60.1904c48.8496 -89 139.279 -144 237.93 -144z" />
|
||||
<glyph glyph-name="calendar-alt" unicode="" horiz-adv-x="448"
|
||||
d="M148 160h-40c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12zM256 172c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40
|
||||
c6.59961 0 12 -5.40039 12 -12v-40zM352 172c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40zM256 76c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v40
|
||||
c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40zM160 76c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40zM352 76c0 -6.59961 -5.40039 -12 -12 -12h-40
|
||||
c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40zM448 336v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h48v52c0 6.59961 5.40039 12 12 12h40
|
||||
c6.59961 0 12 -5.40039 12 -12v-52h128v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h48c26.5 0 48 -21.5 48 -48zM400 -10v298h-352v-298c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z" />
|
||||
<glyph glyph-name="comment" unicode=""
|
||||
d="M256 416c141.4 0 256 -93.0996 256 -208s-114.6 -208 -256 -208c-32.7998 0 -64 5.2002 -92.9004 14.2998c-29.0996 -20.5996 -77.5996 -46.2998 -139.1 -46.2998c-9.59961 0 -18.2998 5.7002 -22.0996 14.5c-3.80078 8.7998 -2 19 4.59961 26
|
||||
c0.5 0.400391 31.5 33.7998 46.4004 73.2002c-33 35.0996 -52.9004 78.7002 -52.9004 126.3c0 114.9 114.6 208 256 208zM256 48c114.7 0 208 71.7998 208 160s-93.2998 160 -208 160s-208 -71.7998 -208 -160c0 -42.2002 21.7002 -74.0996 39.7998 -93.4004
|
||||
l20.6006 -21.7998l-10.6006 -28.0996c-5.5 -14.5 -12.5996 -28.1006 -19.8994 -40.2002c23.5996 7.59961 43.1992 18.9004 57.5 29l19.5 13.7998l22.6992 -7.2002c25.3008 -8 51.7002 -12.0996 78.4004 -12.0996z" />
|
||||
<glyph glyph-name="folder" unicode=""
|
||||
d="M464 320c26.5098 0 48 -21.4902 48 -48v-224c0 -26.5098 -21.4902 -48 -48 -48h-416c-26.5098 0 -48 21.4902 -48 48v288c0 26.5098 21.4902 48 48 48h146.74c8.49023 0 16.6299 -3.37012 22.6299 -9.37012l54.6299 -54.6299h192zM464 48v224h-198.62
|
||||
c-8.49023 0 -16.6299 3.37012 -22.6299 9.37012l-54.6299 54.6299h-140.12v-288h416z" />
|
||||
<glyph glyph-name="folder-open" unicode="" horiz-adv-x="576"
|
||||
d="M527.9 224c37.6992 0 60.6992 -41.5 40.6992 -73.4004l-79.8994 -128c-8.7998 -14.0996 -24.2002 -22.5996 -40.7002 -22.5996h-400c-26.5 0 -48 21.5 -48 48v288c0 26.5 21.5 48 48 48h160l64 -64h160c26.5 0 48 -21.5 48 -48v-48h47.9004zM48 330v-233.4l62.9004 104.2
|
||||
c8.69922 14.4004 24.2998 23.2002 41.0996 23.2002h280v42c0 3.2998 -2.7002 6 -6 6h-173.9l-64 64h-134.1c-3.2998 0 -6 -2.7002 -6 -6zM448 48l80 128h-378.8l-77.2002 -128h376z" />
|
||||
<glyph glyph-name="chart-bar" unicode=""
|
||||
d="M396.8 96c-6.39941 0 -12.7998 6.40039 -12.7998 12.7998v230.4c0 6.39941 6.40039 12.7998 12.7998 12.7998h22.4004c6.39941 0 12.7998 -6.40039 12.7998 -12.7998v-230.4c0 -6.39941 -6.40039 -12.7998 -12.7998 -12.7998h-22.4004zM204.8 96
|
||||
c-6.39941 0 -12.7998 6.40039 -12.7998 12.7998v198.4c0 6.39941 6.40039 12.7998 12.7998 12.7998h22.4004c6.39941 0 12.7998 -6.40039 12.7998 -12.7998v-198.4c0 -6.39941 -6.40039 -12.7998 -12.7998 -12.7998h-22.4004zM300.8 96
|
||||
c-6.39941 0 -12.7998 6.40039 -12.7998 12.7998v134.4c0 6.39941 6.40039 12.7998 12.7998 12.7998h22.4004c6.39941 0 12.7998 -6.40039 12.7998 -12.7998v-134.4c0 -6.39941 -6.40039 -12.7998 -12.7998 -12.7998h-22.4004zM496 48c8.83984 0 16 -7.16016 16 -16v-16
|
||||
c0 -8.83984 -7.16016 -16 -16 -16h-464c-17.6699 0 -32 14.3301 -32 32v336c0 8.83984 7.16016 16 16 16h16c8.83984 0 16 -7.16016 16 -16v-320h448zM108.8 96c-6.39941 0 -12.7998 6.40039 -12.7998 12.7998v70.4004c0 6.39941 6.40039 12.7998 12.7998 12.7998h22.4004
|
||||
c6.39941 0 12.7998 -6.40039 12.7998 -12.7998v-70.4004c0 -6.39941 -6.40039 -12.7998 -12.7998 -12.7998h-22.4004z" />
|
||||
<glyph glyph-name="comments" unicode="" horiz-adv-x="576"
|
||||
d="M532 61.7998c15.2998 -30.7002 37.4004 -54.5 37.7998 -54.7998c6.2998 -6.7002 8 -16.5 4.40039 -25c-3.7002 -8.5 -12 -14 -21.2002 -14c-53.5996 0 -96.7002 20.2998 -125.2 38.7998c-19 -4.39941 -39 -6.7998 -59.7998 -6.7998
|
||||
c-86.2002 0 -159.9 40.4004 -191.3 97.7998c-9.7002 1.2002 -19.2002 2.7998 -28.4004 4.90039c-28.5 -18.6006 -71.7002 -38.7998 -125.2 -38.7998c-9.19922 0 -17.5996 5.5 -21.1992 14c-3.7002 8.5 -1.90039 18.2998 4.39941 25
|
||||
c0.400391 0.399414 22.4004 24.1992 37.7002 54.8994c-27.5 27.2002 -44 61.2002 -44 98.2002c0 88.4004 93.0996 160 208 160c86.2998 0 160.3 -40.5 191.8 -98.0996c99.7002 -11.8008 176.2 -77.9004 176.2 -157.9c0 -37.0996 -16.5 -71.0996 -44 -98.2002zM139.2 154.1
|
||||
l19.7998 -4.5c16 -3.69922 32.5 -5.59961 49 -5.59961c86.7002 0 160 51.2998 160 112s-73.2998 112 -160 112s-160 -51.2998 -160 -112c0 -28.7002 16.2002 -50.5996 29.7002 -64l24.7998 -24.5l-15.5 -31.0996c-2.59961 -5.10059 -5.2998 -10.1006 -8 -14.8008
|
||||
c14.5996 5.10059 29 12.3008 43.0996 21.4004zM498.3 96c13.5 13.4004 29.7002 35.2998 29.7002 64c0 49.2002 -48.2998 91.5 -112.7 106c0.299805 -3.2998 0.700195 -6.59961 0.700195 -10c0 -80.9004 -78 -147.5 -179.3 -158.3
|
||||
c29.0996 -29.6006 77.2998 -49.7002 131.3 -49.7002c16.5 0 33 1.90039 49 5.59961l19.9004 4.60059l17.0996 -11.1006c14.0996 -9.09961 28.5 -16.2998 43.0996 -21.3994c-2.69922 4.7002 -5.39941 9.7002 -8 14.7998l-15.5 31.0996z" />
|
||||
<glyph glyph-name="star-half" unicode="" horiz-adv-x="576"
|
||||
d="M288 62.7002v-54.2998l-130.7 -68.6006c-23.3994 -12.2998 -50.8994 7.60059 -46.3994 33.7002l25 145.5l-105.7 103c-19 18.5 -8.5 50.7998 17.7002 54.5996l146.1 21.2002l65.2998 132.4c5.90039 11.8994 17.2998 17.7998 28.7002 17.7998v-68.0996l-62.2002 -126
|
||||
l-139 -20.2002l100.601 -98l-23.7002 -138.4z" />
|
||||
<glyph glyph-name="lemon" unicode=""
|
||||
d="M484.112 420.111c28.1221 -28.123 35.9434 -68.0039 19.0215 -97.0547c-23.0576 -39.584 50.1436 -163.384 -82.3311 -295.86c-132.301 -132.298 -256.435 -59.3594 -295.857 -82.3291c-29.0459 -16.917 -68.9219 -9.11426 -97.0576 19.0205
|
||||
c-28.1221 28.1221 -35.9434 68.0029 -19.0215 97.0547c23.0566 39.5859 -50.1436 163.386 82.3301 295.86c132.308 132.309 256.407 59.3496 295.862 82.332c29.0498 16.9219 68.9307 9.09863 97.0537 -19.0234zM461.707 347.217
|
||||
c13.5166 23.2031 -27.7578 63.7314 -50.4883 50.4912c-66.6025 -38.7939 -165.646 45.5898 -286.081 -74.8457c-120.444 -120.445 -36.0449 -219.472 -74.8447 -286.08c-13.542 -23.2471 27.8145 -63.6953 50.4932 -50.4883
|
||||
c66.6006 38.7949 165.636 -45.5996 286.076 74.8428c120.444 120.445 36.0449 219.472 74.8447 286.08zM291.846 338.481c1.37012 -10.96 -6.40332 -20.957 -17.3643 -22.3271c-54.8467 -6.85547 -135.779 -87.7871 -142.636 -142.636
|
||||
c-1.37305 -10.9883 -11.3984 -18.7334 -22.3262 -17.3643c-10.9609 1.37012 -18.7344 11.3652 -17.3643 22.3262c9.16211 73.2852 104.167 168.215 177.364 177.364c10.9531 1.36816 20.9561 -6.40234 22.3262 -17.3633z" />
|
||||
<glyph glyph-name="credit-card" unicode="" horiz-adv-x="576"
|
||||
d="M527.9 416c26.5996 0 48.0996 -21.5 48.0996 -48v-352c0 -26.5 -21.5 -48 -48.0996 -48h-479.801c-26.5996 0 -48.0996 21.5 -48.0996 48v352c0 26.5 21.5 48 48.0996 48h479.801zM54.0996 368c-3.2998 0 -6 -2.7002 -6 -6v-42h479.801v42c0 3.2998 -2.7002 6 -6 6
|
||||
h-467.801zM521.9 16c3.2998 0 6 2.7002 6 6v170h-479.801v-170c0 -3.2998 2.7002 -6 6 -6h467.801zM192 116v-40c0 -6.59961 -5.40039 -12 -12 -12h-72c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h72c6.59961 0 12 -5.40039 12 -12zM384 116v-40
|
||||
c0 -6.59961 -5.40039 -12 -12 -12h-136c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h136c6.59961 0 12 -5.40039 12 -12z" />
|
||||
<glyph glyph-name="hdd" unicode="" horiz-adv-x="576"
|
||||
d="M567.403 212.358c5.59668 -8.04688 8.59668 -17.6113 8.59668 -27.4121v-136.946c0 -26.5098 -21.4902 -48 -48 -48h-480c-26.5098 0 -48 21.4902 -48 48v136.946c0 10.167 3.19531 19.6465 8.59668 27.4121l105.08 151.053
|
||||
c8.67383 12.4678 23.0791 20.5889 39.4043 20.5889h269.838c16.3252 0 30.7305 -8.12109 39.4043 -20.5889zM153.081 336l-77.9131 -112h425.664l-77.9131 112h-269.838zM528 48v128h-480v-128h480zM496 112c0 -17.6729 -14.3271 -32 -32 -32s-32 14.3271 -32 32
|
||||
s14.3271 32 32 32s32 -14.3271 32 -32zM400 112c0 -17.6729 -14.3271 -32 -32 -32s-32 14.3271 -32 32s14.3271 32 32 32s32 -14.3271 32 -32z" />
|
||||
<glyph glyph-name="hand-point-right" unicode=""
|
||||
d="M428.8 310.4c45.0996 0 83.2002 -38.1016 83.2002 -83.2002c0 -45.6162 -37.7646 -83.2002 -83.2002 -83.2002h-35.6475c-1.71387 -7.70605 -4.43555 -15.2051 -7.92969 -22.0645c2.50586 -22.0059 -3.50293 -44.9775 -15.9844 -62.791
|
||||
c-1.14062 -52.4863 -37.3984 -91.1445 -99.9404 -91.1445h-21.2988c-60.0635 0 -98.5117 40 -127.2 40h-2.67871c-5.74707 -4.95215 -13.5361 -8 -22.1201 -8h-64c-17.6729 0 -32 12.8936 -32 28.7998v230.4c0 15.9062 14.3271 28.7998 32 28.7998h64.001
|
||||
c8.58398 0 16.373 -3.04785 22.1201 -8h2.67871c6.96387 0 14.8623 6.19336 30.1816 23.6689l0.128906 0.148438l0.130859 0.145508c8.85645 9.93652 18.1162 20.8398 25.8506 33.2529c18.7051 30.2471 30.3936 78.7842 75.707 78.7842c56.9277 0 92 -35.2861 92 -83.2002
|
||||
c0 -0.0283203 0 0.0361328 0 0.0078125c0 -7.66602 -0.748047 -15.1582 -2.17578 -22.4072h86.1768zM428.8 192c18.9756 0 35.2002 16.2246 35.2002 35.2002c0 18.7002 -16.7754 35.2002 -35.2002 35.2002h-158.399c0 17.3242 26.3994 35.1992 26.3994 70.3994
|
||||
c0 26.4004 -20.625 35.2002 -44 35.2002c-8.79395 0 -20.4443 -32.7119 -34.9258 -56.0996c-9.07422 -14.5752 -19.5244 -27.2256 -30.7988 -39.875c-16.1094 -18.374 -33.8359 -36.6328 -59.0752 -39.5967v-176.753c42.79 -3.7627 74.5088 -39.6758 120 -39.6758h21.2988
|
||||
c40.5244 0 57.124 22.1973 50.6006 61.3252c14.6113 8.00098 24.1514 33.9785 12.9248 53.625c19.3652 18.2246 17.7871 46.3809 4.9502 61.0498h91.0254zM88 64c0 13.2549 -10.7451 24 -24 24s-24 -10.7451 -24 -24s10.7451 -24 24 -24s24 10.7451 24 24z" />
|
||||
<glyph glyph-name="hand-point-left" unicode=""
|
||||
d="M0 227.2c0 45.0986 38.1006 83.2002 83.2002 83.2002h86.1758c-1.3623 6.91016 -2.17578 14.374 -2.17578 22.3994c0 47.9141 35.0723 83.2002 92 83.2002c45.3135 0 57.002 -48.5371 75.7061 -78.7852c7.73438 -12.4121 16.9951 -23.3154 25.8506 -33.2529
|
||||
l0.130859 -0.145508l0.128906 -0.148438c15.3213 -17.4746 23.2197 -23.668 30.1836 -23.668h2.67871c5.74707 4.95215 13.5361 8 22.1201 8h64c17.6729 0 32 -12.8936 32 -28.7998v-230.4c0 -15.9062 -14.3271 -28.7998 -32 -28.7998h-64
|
||||
c-8.58398 0 -16.373 3.04785 -22.1201 8h-2.67871c-28.6885 0 -67.1367 -40 -127.2 -40h-21.2988c-62.542 0 -98.8008 38.6582 -99.9404 91.1445c-12.4814 17.8135 -18.4922 40.7852 -15.9844 62.791c-3.49414 6.85938 -6.21582 14.3584 -7.92969 22.0645h-35.6465
|
||||
c-45.4355 0 -83.2002 37.584 -83.2002 83.2002zM48 227.2c0 -18.9756 16.2246 -35.2002 35.2002 -35.2002h91.0244c-12.8369 -14.6689 -14.415 -42.8252 4.9502 -61.0498c-11.2256 -19.6465 -1.68652 -45.624 12.9248 -53.625
|
||||
c-6.52246 -39.1279 10.0771 -61.3252 50.6016 -61.3252h21.2988c45.4912 0 77.21 35.9131 120 39.6768v176.752c-25.2393 2.96289 -42.9658 21.2227 -59.0752 39.5967c-11.2744 12.6494 -21.7246 25.2998 -30.7988 39.875
|
||||
c-14.4814 23.3877 -26.1318 56.0996 -34.9258 56.0996c-23.375 0 -44 -8.7998 -44 -35.2002c0 -35.2002 26.3994 -53.0752 26.3994 -70.3994h-158.399c-18.4248 0 -35.2002 -16.5 -35.2002 -35.2002zM448 88c-13.2549 0 -24 -10.7451 -24 -24s10.7451 -24 24 -24
|
||||
s24 10.7451 24 24s-10.7451 24 -24 24z" />
|
||||
<glyph glyph-name="hand-point-up" unicode="" horiz-adv-x="448"
|
||||
d="M105.6 364.8c0 45.0996 38.1016 83.2002 83.2002 83.2002c45.6162 0 83.2002 -37.7646 83.2002 -83.2002v-35.6465c7.70605 -1.71387 15.2051 -4.43555 22.0645 -7.92969c22.0059 2.50684 44.9775 -3.50293 62.791 -15.9844
|
||||
c52.4863 -1.14062 91.1445 -37.3984 91.1445 -99.9404v-21.2988c0 -60.0635 -40 -98.5117 -40 -127.2v-2.67871c4.95215 -5.74707 8 -13.5361 8 -22.1201v-64c0 -17.6729 -12.8936 -32 -28.7998 -32h-230.4c-15.9062 0 -28.7998 14.3271 -28.7998 32v64
|
||||
c0 8.58398 3.04785 16.373 8 22.1201v2.67871c0 6.96387 -6.19336 14.8623 -23.6689 30.1816l-0.148438 0.128906l-0.145508 0.130859c-9.93652 8.85645 -20.8398 18.1162 -33.2529 25.8506c-30.2471 18.7051 -78.7842 30.3936 -78.7842 75.707
|
||||
c0 56.9277 35.2861 92 83.2002 92c0.0283203 0 -0.0361328 0 -0.0078125 0c7.66602 0 15.1582 -0.748047 22.4072 -2.17578v86.1768zM224 364.8c0 18.9756 -16.2246 35.2002 -35.2002 35.2002c-18.7002 0 -35.2002 -16.7754 -35.2002 -35.2002v-158.399
|
||||
c-17.3242 0 -35.1992 26.3994 -70.3994 26.3994c-26.4004 0 -35.2002 -20.625 -35.2002 -44c0 -8.79395 32.7119 -20.4443 56.0996 -34.9258c14.5752 -9.07422 27.2256 -19.5244 39.875 -30.7988c18.374 -16.1094 36.6328 -33.8359 39.5967 -59.0752h176.753
|
||||
c3.7627 42.79 39.6758 74.5088 39.6758 120v21.2988c0 40.5244 -22.1973 57.124 -61.3252 50.6006c-8.00098 14.6113 -33.9785 24.1514 -53.625 12.9248c-18.2246 19.3652 -46.3809 17.7871 -61.0498 4.9502v91.0254zM352 24c-13.2549 0 -24 -10.7451 -24 -24
|
||||
s10.7451 -24 24 -24s24 10.7451 24 24s-10.7451 24 -24 24z" />
|
||||
<glyph glyph-name="hand-point-down" unicode="" horiz-adv-x="448"
|
||||
d="M188.8 -64c-45.0986 0 -83.2002 38.1006 -83.2002 83.2002v86.1758c-6.91016 -1.3623 -14.374 -2.17578 -22.3994 -2.17578c-47.9141 0 -83.2002 35.0723 -83.2002 92c0 45.3135 48.5371 57.002 78.7852 75.707c12.4121 7.73438 23.3154 16.9951 33.2529 25.8506
|
||||
l0.145508 0.130859l0.148438 0.128906c17.4746 15.3213 23.668 23.2197 23.668 30.1836v2.67871c-4.95215 5.74707 -8 13.5361 -8 22.1201v64c0 17.6729 12.8936 32 28.7998 32h230.4c15.9062 0 28.7998 -14.3271 28.7998 -32v-64.001
|
||||
c0 -8.58398 -3.04785 -16.373 -8 -22.1201v-2.67871c0 -28.6885 40 -67.1367 40 -127.2v-21.2988c0 -62.542 -38.6582 -98.8008 -91.1445 -99.9404c-17.8135 -12.4814 -40.7852 -18.4922 -62.791 -15.9844c-6.85938 -3.49414 -14.3584 -6.21582 -22.0645 -7.92969v-35.6465
|
||||
c0 -45.4355 -37.584 -83.2002 -83.2002 -83.2002zM188.8 -16c18.9756 0 35.2002 16.2246 35.2002 35.2002v91.0244c14.6689 -12.8369 42.8252 -14.415 61.0498 4.9502c19.6465 -11.2256 45.624 -1.68652 53.625 12.9248c39.1279 -6.52246 61.3252 10.0771 61.3252 50.6016
|
||||
v21.2988c0 45.4912 -35.9131 77.21 -39.6768 120h-176.752c-2.96289 -25.2393 -21.2227 -42.9658 -39.5967 -59.0752c-12.6494 -11.2744 -25.2998 -21.7246 -39.875 -30.7988c-23.3877 -14.4814 -56.0996 -26.1318 -56.0996 -34.9258c0 -23.375 8.7998 -44 35.2002 -44
|
||||
c35.2002 0 53.0752 26.3994 70.3994 26.3994v-158.399c0 -18.4248 16.5 -35.2002 35.2002 -35.2002zM328 384c0 -13.2549 10.7451 -24 24 -24s24 10.7451 24 24s-10.7451 24 -24 24s-24 -10.7451 -24 -24z" />
|
||||
<glyph glyph-name="copy" unicode="" horiz-adv-x="448"
|
||||
d="M433.941 382.059c8.68848 -8.68848 14.0586 -20.6943 14.0586 -33.9404v-268.118c0 -26.5098 -21.4902 -48 -48 -48h-80v-48c0 -26.5098 -21.4902 -48 -48 -48h-224c-26.5098 0 -48 21.4902 -48 48v320c0 26.5098 21.4902 48 48 48h80v48c0 26.5098 21.4902 48 48 48
|
||||
h172.118c13.2461 0 25.252 -5.37012 33.9404 -14.0586zM266 -16c3.31152 0 6 2.68848 6 6v42h-96c-26.5098 0 -48 21.4902 -48 48v224h-74c-3.31152 0 -6 -2.68848 -6 -6v-308c0 -3.31152 2.68848 -6 6 -6h212zM394 80c3.31152 0 6 2.68848 6 6v202h-88
|
||||
c-13.2549 0 -24 10.7451 -24 24v88h-106c-3.31152 0 -6 -2.68848 -6 -6v-308c0 -3.31152 2.68848 -6 6 -6h212zM400 336v9.63184c0 1.65527 -0.670898 3.15723 -1.75684 4.24316l-48.3682 48.3682c-1.12598 1.125 -2.65234 1.75684 -4.24316 1.75684h-9.63184v-64h64z" />
|
||||
<glyph glyph-name="save" unicode="" horiz-adv-x="448"
|
||||
d="M433.941 318.059c8.68848 -8.68848 14.0586 -20.6943 14.0586 -33.9404v-268.118c0 -26.5098 -21.4902 -48 -48 -48h-352c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h268.118c13.2461 0 25.252 -5.37012 33.9404 -14.0586zM272 368h-128v-80h128v80z
|
||||
M394 16c3.31152 0 6 2.68848 6 6v259.632c0 1.65527 -0.670898 3.15723 -1.75684 4.24316l-78.2432 78.2432v-100.118c0 -13.2549 -10.7451 -24 -24 -24h-176c-13.2549 0 -24 10.7451 -24 24v104h-42c-3.31152 0 -6 -2.68848 -6 -6v-340c0 -3.31152 2.68848 -6 6 -6h340z
|
||||
M224 216c48.5234 0 88 -39.4766 88 -88s-39.4766 -88 -88 -88s-88 39.4766 -88 88s39.4766 88 88 88zM224 88c22.0557 0 40 17.9443 40 40s-17.9443 40 -40 40s-40 -17.9443 -40 -40s17.9443 -40 40 -40z" />
|
||||
<glyph glyph-name="square" unicode="" horiz-adv-x="448"
|
||||
d="M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM394 16c3.2998 0 6 2.7002 6 6v340c0 3.2998 -2.7002 6 -6 6h-340c-3.2998 0 -6 -2.7002 -6 -6v-340c0 -3.2998 2.7002 -6 6 -6h340z" />
|
||||
<glyph glyph-name="envelope" unicode=""
|
||||
d="M464 384c26.5098 0 48 -21.4902 48 -48v-288c0 -26.5098 -21.4902 -48 -48 -48h-416c-26.5098 0 -48 21.4902 -48 48v288c0 26.5098 21.4902 48 48 48h416zM464 336h-416v-40.8047c22.4248 -18.2627 58.1797 -46.6602 134.587 -106.49
|
||||
c16.834 -13.2422 50.2051 -45.0762 73.4131 -44.7012c23.2119 -0.371094 56.5723 31.4541 73.4131 44.7012c76.4189 59.8389 112.165 88.2305 134.587 106.49v40.8047zM48 48h416v185.601c-22.915 -18.252 -55.4189 -43.8691 -104.947 -82.6523
|
||||
c-22.5439 -17.748 -60.3359 -55.1787 -103.053 -54.9473c-42.9277 -0.231445 -81.2051 37.75 -103.062 54.9551c-49.5293 38.7842 -82.0244 64.3945 -104.938 82.6455v-185.602z" />
|
||||
<glyph glyph-name="lightbulb" unicode="" horiz-adv-x="352"
|
||||
d="M176 368c8.83984 0 16 -7.16016 16 -16s-7.16016 -16 -16 -16c-35.2803 0 -64 -28.7002 -64 -64c0 -8.83984 -7.16016 -16 -16 -16s-16 7.16016 -16 16c0 52.9404 43.0596 96 96 96zM96.0596 -11.1699l-0.0400391 43.1797h159.961l-0.0507812 -43.1797
|
||||
c-0.00976562 -3.13965 -0.939453 -6.21973 -2.67969 -8.83984l-24.5098 -36.8398c-2.95996 -4.45996 -7.95996 -7.14062 -13.3203 -7.14062h-78.8496c-5.35059 0 -10.3506 2.68066 -13.3203 7.14062l-24.5098 36.8398c-1.75 2.62012 -2.68066 5.68945 -2.68066 8.83984z
|
||||
M176 448c97.2002 0 176 -78.7998 176 -176c0 -44.3701 -16.4502 -84.8496 -43.5498 -115.79c-16.6406 -18.9795 -42.7402 -58.79 -52.4199 -92.1602v-0.0498047h-48v0.0996094c0.00488281 4.98145 0.790039 9.78809 2.21973 14.3008
|
||||
c5.67969 17.9893 22.9902 64.8496 62.0996 109.46c20.4102 23.29 31.6504 53.1699 31.6504 84.1396c0 70.5801 -57.4199 128 -128 128c-68.2803 0 -128.15 -54.3604 -127.95 -128c0.0898438 -30.9902 11.0703 -60.71 31.6104 -84.1396
|
||||
c39.3496 -44.9004 56.5801 -91.8604 62.1699 -109.67c1.42969 -4.56055 2.13965 -9.30078 2.15039 -14.0703v-0.120117h-48v0.0595703c-9.68066 33.3604 -35.7803 73.1709 -52.4209 92.1602c-27.1094 30.9307 -43.5596 71.4102 -43.5596 115.78
|
||||
c0 93.0303 73.7197 176 176 176z" />
|
||||
<glyph glyph-name="bell" unicode="" horiz-adv-x="448"
|
||||
d="M439.39 85.71c6 -6.44043 8.66016 -14.1602 8.61035 -21.71c-0.0996094 -16.4004 -12.9805 -32 -32.0996 -32h-383.801c-19.1191 0 -31.9893 15.5996 -32.0996 32c-0.0498047 7.5498 2.61035 15.2598 8.61035 21.71c19.3193 20.7598 55.4697 51.9902 55.4697 154.29
|
||||
c0 77.7002 54.4795 139.9 127.939 155.16v20.8398c0 17.6699 14.3203 32 31.9805 32s31.9805 -14.3301 31.9805 -32v-20.8398c73.46 -15.2598 127.939 -77.46 127.939 -155.16c0 -102.3 36.1504 -133.53 55.4697 -154.29zM67.5303 80h312.939
|
||||
c-21.2197 27.96 -44.4199 74.3203 -44.5293 159.42c0 0.200195 0.0595703 0.379883 0.0595703 0.580078c0 61.8604 -50.1396 112 -112 112s-112 -50.1396 -112 -112c0 -0.200195 0.0595703 -0.379883 0.0595703 -0.580078
|
||||
c-0.109375 -85.0898 -23.3096 -131.45 -44.5293 -159.42zM224 -64c-35.3203 0 -63.9697 28.6504 -63.9697 64h127.939c0 -35.3496 -28.6494 -64 -63.9697 -64z" />
|
||||
<glyph glyph-name="hospital" unicode="" horiz-adv-x="448"
|
||||
d="M128 204v40c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-40c0 -6.62695 -5.37305 -12 -12 -12h-40c-6.62695 0 -12 5.37305 -12 12zM268 192c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-40
|
||||
c0 -6.62695 -5.37305 -12 -12 -12h-40zM192 108c0 -6.62695 -5.37305 -12 -12 -12h-40c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-40zM268 96c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h40
|
||||
c6.62695 0 12 -5.37305 12 -12v-40c0 -6.62695 -5.37305 -12 -12 -12h-40zM448 -28v-36h-448v36c0 6.62695 5.37305 12 12 12h19.5v378.965c0 11.6172 10.7451 21.0352 24 21.0352h88.5v40c0 13.2549 10.7451 24 24 24h112c13.2549 0 24 -10.7451 24 -24v-40h88.5
|
||||
c13.2549 0 24 -9.41797 24 -21.0352v-378.965h19.5c6.62695 0 12 -5.37305 12 -12zM79.5 -15h112.5v67c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-67h112.5v351h-64.5v-24c0 -13.2549 -10.7451 -24 -24 -24h-112c-13.2549 0 -24 10.7451 -24 24v24
|
||||
h-64.5v-351zM266 384h-26v26c0 3.31152 -2.68848 6 -6 6h-20c-3.31152 0 -6 -2.68848 -6 -6v-26h-26c-3.31152 0 -6 -2.68848 -6 -6v-20c0 -3.31152 2.68848 -6 6 -6h26v-26c0 -3.31152 2.68848 -6 6 -6h20c3.31152 0 6 2.68848 6 6v26h26c3.31152 0 6 2.68848 6 6v20
|
||||
c0 3.31152 -2.68848 6 -6 6z" />
|
||||
<glyph glyph-name="plus-square" unicode="" horiz-adv-x="448"
|
||||
d="M352 208v-32c0 -6.59961 -5.40039 -12 -12 -12h-88v-88c0 -6.59961 -5.40039 -12 -12 -12h-32c-6.59961 0 -12 5.40039 -12 12v88h-88c-6.59961 0 -12 5.40039 -12 12v32c0 6.59961 5.40039 12 12 12h88v88c0 6.59961 5.40039 12 12 12h32c6.59961 0 12 -5.40039 12 -12
|
||||
v-88h88c6.59961 0 12 -5.40039 12 -12zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM400 22v340c0 3.2998 -2.7002 6 -6 6h-340c-3.2998 0 -6 -2.7002 -6 -6v-340
|
||||
c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z" />
|
||||
<glyph glyph-name="circle" unicode=""
|
||||
d="M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM256 -8c110.5 0 200 89.5 200 200s-89.5 200 -200 200s-200 -89.5 -200 -200s89.5 -200 200 -200z" />
|
||||
<glyph glyph-name="smile" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM168 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32
|
||||
s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM328 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM332 135.4c8.5 10.1992 23.7002 11.5 33.7998 3.09961c10.2002 -8.5 11.6006 -23.5996 3.10059 -33.7998
|
||||
c-30 -36 -74.1006 -56.6006 -120.9 -56.6006s-90.9004 20.6006 -120.9 56.6006c-8.39941 10.2002 -7.09961 25.2998 3.10059 33.7998c10.0996 8.40039 25.2998 7.09961 33.7998 -3.09961c20.7998 -25.1006 51.5 -39.4004 84 -39.4004s63.2002 14.4004 84 39.4004z" />
|
||||
<glyph glyph-name="frown" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM168 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32
|
||||
s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM328 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32zM248 144c40.2002 0 78 -17.7002 103.8 -48.5996c8.40039 -10.2002 7.10059 -25.3008 -3.09961 -33.8008
|
||||
c-10.7002 -8.7998 -25.7002 -6.59961 -33.7998 3.10059c-16.6006 20 -41 31.3994 -66.9004 31.3994s-50.2998 -11.5 -66.9004 -31.3994c-8.5 -10.2002 -23.5996 -11.5 -33.7998 -3.10059c-10.2002 8.5 -11.5996 23.6006 -3.09961 33.8008
|
||||
c25.7998 30.8994 63.5996 48.5996 103.8 48.5996z" />
|
||||
<glyph glyph-name="meh" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM168 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32
|
||||
s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM328 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32zM336 128c13.2002 0 24 -10.7998 24 -24s-10.7998 -24 -24 -24h-176c-13.2002 0 -24 10.7998 -24 24s10.7998 24 24 24h176z
|
||||
" />
|
||||
<glyph glyph-name="keyboard" unicode="" horiz-adv-x="576"
|
||||
d="M528 384c26.5098 0 48 -21.4902 48 -48v-288c0 -26.5098 -21.4902 -48 -48 -48h-480c-26.5098 0 -48 21.4902 -48 48v288c0 26.5098 21.4902 48 48 48h480zM536 48v288c0 4.41113 -3.58887 8 -8 8h-480c-4.41113 0 -8 -3.58887 -8 -8v-288c0 -4.41113 3.58887 -8 8 -8
|
||||
h480c4.41113 0 8 3.58887 8 8zM170 178c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM266 178c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28
|
||||
c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM362 178c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM458 178c0 -6.62695 -5.37305 -12 -12 -12h-28
|
||||
c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM122 96c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM506 96
|
||||
c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM122 260c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28
|
||||
c6.62695 0 12 -5.37305 12 -12v-28zM218 260c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM314 260c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28
|
||||
c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM410 260c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM506 260c0 -6.62695 -5.37305 -12 -12 -12h-28
|
||||
c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM408 102c0 -6.62695 -5.37305 -12 -12 -12h-216c-6.62695 0 -12 5.37305 -12 12v16c0 6.62695 5.37305 12 12 12h216c6.62695 0 12 -5.37305 12 -12v-16z" />
|
||||
<glyph glyph-name="calendar" unicode="" horiz-adv-x="448"
|
||||
d="M400 384c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h48v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h128v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12
|
||||
v-52h48zM394 -16c3.2998 0 6 2.7002 6 6v298h-352v-298c0 -3.2998 2.7002 -6 6 -6h340z" />
|
||||
<glyph glyph-name="play-circle" unicode=""
|
||||
d="M371.7 210c16.3994 -9.2002 16.3994 -32.9004 0 -42l-176 -101c-15.9004 -8.7998 -35.7002 2.59961 -35.7002 21v208c0 18.5 19.9004 29.7998 35.7002 21zM504 192c0 -137 -111 -248 -248 -248s-248 111 -248 248s111 248 248 248s248 -111 248 -248zM56 192
|
||||
c0 -110.5 89.5 -200 200 -200s200 89.5 200 200s-89.5 200 -200 200s-200 -89.5 -200 -200z" />
|
||||
<glyph glyph-name="minus-square" unicode="" horiz-adv-x="448"
|
||||
d="M108 164c-6.59961 0 -12 5.40039 -12 12v32c0 6.59961 5.40039 12 12 12h232c6.59961 0 12 -5.40039 12 -12v-32c0 -6.59961 -5.40039 -12 -12 -12h-232zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352
|
||||
c26.5 0 48 -21.5 48 -48zM400 22v340c0 3.2998 -2.7002 6 -6 6h-340c-3.2998 0 -6 -2.7002 -6 -6v-340c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z" />
|
||||
<glyph glyph-name="check-square" unicode="" horiz-adv-x="448"
|
||||
d="M400 416c26.5098 0 48 -21.4902 48 -48v-352c0 -26.5098 -21.4902 -48 -48 -48h-352c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h352zM400 16v352h-352v-352h352zM364.136 257.724l-172.589 -171.204
|
||||
c-4.70508 -4.66699 -12.3027 -4.63672 -16.9697 0.0683594l-90.7812 91.5156c-4.66699 4.70508 -4.63672 12.3037 0.0693359 16.9717l22.7188 22.5361c4.70508 4.66699 12.3027 4.63672 16.9697 -0.0693359l59.792 -60.2773l141.353 140.217
|
||||
c4.70508 4.66699 12.3027 4.63672 16.9697 -0.0683594l22.5361 -22.7178c4.66699 -4.70605 4.63672 -12.3047 -0.0683594 -16.9717z" />
|
||||
<glyph glyph-name="share-square" unicode="" horiz-adv-x="576"
|
||||
d="M561.938 289.94c18.75 -18.7402 18.75 -49.1406 0 -67.8809l-143.998 -144c-29.9727 -29.9727 -81.9404 -9.05273 -81.9404 33.9404v53.7998c-101.266 -7.83691 -99.625 -31.6406 -84.1104 -78.7598c14.2285 -43.0889 -33.4736 -79.248 -71.0195 -55.7402
|
||||
c-51.6924 32.3057 -84.8701 83.0635 -84.8701 144.76c0 39.3408 12.2197 72.7402 36.3301 99.3008c19.8398 21.8398 47.7402 38.4697 82.9102 49.4199c36.7295 11.4395 78.3096 16.1094 120.76 17.9893v57.1982c0 42.9355 51.9258 63.9541 81.9404 33.9404zM384 112l144 144
|
||||
l-144 144v-104.09c-110.86 -0.90332 -240 -10.5166 -240 -119.851c0 -52.1396 32.79 -85.6094 62.3096 -104.06c-39.8174 120.65 48.999 141.918 177.69 143.84v-103.84zM408.74 27.5068c7.4375 2.125 14.5508 5.30566 20.9736 9.30273
|
||||
c7.97656 4.95215 18.2861 -0.825195 18.2861 -10.2139v-42.5957c0 -26.5098 -21.4902 -48 -48 -48h-352c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h132c6.62695 0 12 -5.37305 12 -12v-4.48633c0 -4.91699 -2.9873 -9.36914 -7.56934 -11.1514
|
||||
c-13.7021 -5.33105 -26.3955 -11.5371 -38.0498 -18.585c-1.82715 -1.11523 -3.98633 -1.76953 -6.28027 -1.77734h-86.1006c-3.31152 0 -6 -2.68848 -6 -6v-340c0 -3.31152 2.68848 -6 6 -6h340c3.31152 0 6 2.68848 6 6v25.9658c0 5.37012 3.5791 10.0596 8.74023 11.541z
|
||||
" />
|
||||
<glyph glyph-name="compass" unicode="" horiz-adv-x="496"
|
||||
d="M347.94 318.14c16.6592 7.61035 33.8096 -9.54004 26.1992 -26.1992l-65.9697 -144.341c-3.19238 -6.9834 -8.78613 -12.5771 -15.7695 -15.7695l-144.341 -65.9697c-16.6592 -7.61035 -33.8096 9.5498 -26.1992 26.1992l65.9697 144.341
|
||||
c3.19238 6.9834 8.78613 12.5771 15.7695 15.7695zM270.58 169.42c12.4697 12.4697 12.4697 32.6904 0 45.1602s-32.6904 12.4697 -45.1602 0s-12.4697 -32.6904 0 -45.1602s32.6904 -12.4697 45.1602 0zM248 440c136.97 0 248 -111.03 248 -248s-111.03 -248 -248 -248
|
||||
s-248 111.03 -248 248s111.03 248 248 248zM248 -8c110.28 0 200 89.7197 200 200s-89.7197 200 -200 200s-200 -89.7197 -200 -200s89.7197 -200 200 -200z" />
|
||||
<glyph glyph-name="caret-square-down" unicode="" horiz-adv-x="448"
|
||||
d="M125.1 240h197.801c10.6992 0 16.0996 -13 8.5 -20.5l-98.9004 -98.2998c-4.7002 -4.7002 -12.2002 -4.7002 -16.9004 0l-98.8994 98.2998c-7.7002 7.5 -2.2998 20.5 8.39941 20.5zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352
|
||||
c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM400 22v340c0 3.2998 -2.7002 6 -6 6h-340c-3.2998 0 -6 -2.7002 -6 -6v-340c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z" />
|
||||
<glyph glyph-name="caret-square-up" unicode="" horiz-adv-x="448"
|
||||
d="M322.9 144h-197.801c-10.6992 0 -16.0996 13 -8.5 20.5l98.9004 98.2998c4.7002 4.7002 12.2002 4.7002 16.9004 0l98.8994 -98.2998c7.7002 -7.5 2.2998 -20.5 -8.39941 -20.5zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352
|
||||
c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM400 22v340c0 3.2998 -2.7002 6 -6 6h-340c-3.2998 0 -6 -2.7002 -6 -6v-340c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z" />
|
||||
<glyph glyph-name="caret-square-right" unicode="" horiz-adv-x="448"
|
||||
d="M176 93.0996v197.801c0 10.6992 13 16.0996 20.5 8.5l98.2998 -98.9004c4.7002 -4.7002 4.7002 -12.2002 0 -16.9004l-98.2998 -98.8994c-7.5 -7.7002 -20.5 -2.2998 -20.5 8.39941zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352
|
||||
c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM400 22v340c0 3.2998 -2.7002 6 -6 6h-340c-3.2998 0 -6 -2.7002 -6 -6v-340c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z" />
|
||||
<glyph glyph-name="file" unicode="" horiz-adv-x="384"
|
||||
d="M369.9 350.1c9 -9 14.0996 -21.2998 14.0996 -34v-332.1c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48.0996h204.1c12.7002 0 24.9004 -5.09961 33.9004 -14.0996zM332.1 320l-76.0996 76.0996v-76.0996h76.0996zM48 -16h288v288
|
||||
h-104c-13.2998 0 -24 10.7002 -24 24v104h-160v-416z" />
|
||||
<glyph glyph-name="file-alt" unicode="" horiz-adv-x="384"
|
||||
d="M288 200v-28c0 -6.59961 -5.40039 -12 -12 -12h-168c-6.59961 0 -12 5.40039 -12 12v28c0 6.59961 5.40039 12 12 12h168c6.59961 0 12 -5.40039 12 -12zM276 128c6.59961 0 12 -5.40039 12 -12v-28c0 -6.59961 -5.40039 -12 -12 -12h-168c-6.59961 0 -12 5.40039 -12 12
|
||||
v28c0 6.59961 5.40039 12 12 12h168zM384 316.1v-332.1c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48h204.1c12.7002 0 24.9004 -5.09961 33.9004 -14.0996l83.9004 -83.9004c9 -8.90039 14.0996 -21.2002 14.0996 -33.9004z
|
||||
M256 396.1v-76.0996h76.0996zM336 -16v288h-104c-13.2998 0 -24 10.7002 -24 24v104h-160v-416h288z" />
|
||||
<glyph glyph-name="thumbs-up" unicode=""
|
||||
d="M466.27 161.31c4.6748 -22.6465 0.864258 -44.5371 -8.98926 -62.9893c2.95898 -23.8682 -4.02148 -48.5654 -17.3398 -66.9902c-0.954102 -55.9072 -35.8232 -95.3301 -112.94 -95.3301c-7 0 -15 0.00976562 -22.2197 0.00976562
|
||||
c-102.742 0 -133.293 38.9395 -177.803 39.9404c-3.56934 -13.7764 -16.085 -23.9502 -30.9775 -23.9502h-64c-17.6729 0 -32 14.3271 -32 32v240c0 17.6729 14.3271 32 32 32h98.7598c19.1455 16.9531 46.0137 60.6533 68.7598 83.4004
|
||||
c13.667 13.667 10.1533 108.6 71.7607 108.6c57.5801 0 95.2695 -31.9355 95.2695 -104.73c0 -18.4092 -3.92969 -33.7295 -8.84961 -46.5391h36.4795c48.6025 0 85.8203 -41.5654 85.8203 -85.5801c0 -19.1504 -4.95996 -34.9902 -13.7305 -49.8408zM404.52 107.48
|
||||
c21.5811 20.3838 18.6992 51.0645 5.21094 65.6191c9.44922 0 22.3594 18.9102 22.2695 37.8105c-0.0898438 18.9102 -16.71 37.8203 -37.8203 37.8203h-103.989c0 37.8193 28.3594 55.3691 28.3594 94.5391c0 23.75 0 56.7305 -47.2695 56.7305
|
||||
c-18.9102 -18.9102 -9.45996 -66.1797 -37.8203 -94.54c-26.5596 -26.5703 -66.1797 -97.46 -94.54 -97.46h-10.9199v-186.17c53.6113 0 100.001 -37.8203 171.64 -37.8203h37.8203c35.5117 0 60.8203 17.1201 53.1201 65.9004
|
||||
c15.2002 8.16016 26.5 36.4395 13.9395 57.5703zM88 16c0 13.2549 -10.7451 24 -24 24s-24 -10.7451 -24 -24s10.7451 -24 24 -24s24 10.7451 24 24z" />
|
||||
<glyph glyph-name="thumbs-down" unicode=""
|
||||
d="M466.27 222.69c8.77051 -14.8506 13.7305 -30.6904 13.7305 -49.8408c0 -44.0146 -37.2178 -85.5801 -85.8203 -85.5801h-36.4795c4.91992 -12.8096 8.84961 -28.1299 8.84961 -46.5391c0 -72.7949 -37.6895 -104.73 -95.2695 -104.73
|
||||
c-61.6074 0 -58.0938 94.9326 -71.7607 108.6c-22.7461 22.7471 -49.6133 66.4473 -68.7598 83.4004h-7.05176c-5.5332 -9.56152 -15.8662 -16 -27.708 -16h-64c-17.6729 0 -32 14.3271 -32 32v240c0 17.6729 14.3271 32 32 32h64c8.11328 0 15.5146 -3.02539 21.1553 -8
|
||||
h10.8447c40.9971 0 73.1953 39.9902 176.78 39.9902c7.21973 0 15.2197 0.00976562 22.2197 0.00976562c77.1172 0 111.986 -39.4229 112.94 -95.3301c13.3184 -18.4248 20.2979 -43.1221 17.3398 -66.9902c9.85352 -18.4521 13.6641 -40.3428 8.98926 -62.9893zM64 152
|
||||
c13.2549 0 24 10.7451 24 24s-10.7451 24 -24 24s-24 -10.7451 -24 -24s10.7451 -24 24 -24zM394.18 135.27c21.1104 0 37.7305 18.9102 37.8203 37.8203c0.0898438 18.9004 -12.8203 37.8105 -22.2695 37.8105c13.4883 14.5547 16.3701 45.2354 -5.21094 65.6191
|
||||
c12.5605 21.1309 1.26074 49.4102 -13.9395 57.5703c7.7002 48.7803 -17.6084 65.9004 -53.1201 65.9004h-37.8203c-71.6387 0 -118.028 -37.8203 -171.64 -37.8203v-186.17h10.9199c28.3604 0 67.9805 -70.8896 94.54 -97.46
|
||||
c28.3604 -28.3604 18.9102 -75.6299 37.8203 -94.54c47.2695 0 47.2695 32.9805 47.2695 56.7305c0 39.1699 -28.3594 56.7197 -28.3594 94.5391h103.989z" />
|
||||
<glyph glyph-name="sun" unicode=""
|
||||
d="M494.2 226.1c11.2002 -7.59961 17.7998 -20.0996 17.8994 -33.6992c0 -13.4004 -6.69922 -26 -17.7998 -33.5l-59.7998 -40.5l13.7002 -71c2.5 -13.2002 -1.60059 -26.8008 -11.1006 -36.3008s-22.8994 -13.7998 -36.2998 -11.0996l-70.8994 13.7002l-40.4004 -59.9004
|
||||
c-7.5 -11.0996 -20.0996 -17.7998 -33.5 -17.7998s-26 6.7002 -33.5 17.9004l-40.4004 59.8994l-70.7998 -13.7002c-13.3994 -2.59961 -26.7998 1.60059 -36.2998 11.1006s-13.7002 23.0996 -11.0996 36.2998l13.6992 71l-59.7998 40.5
|
||||
c-11.0996 7.5 -17.7998 20 -17.7998 33.5s6.59961 26 17.7998 33.5996l59.7998 40.5l-13.6992 71c-2.60059 13.2002 1.59961 26.7002 11.0996 36.3008c9.5 9.59961 23 13.6992 36.2998 11.1992l70.7998 -13.6992l40.4004 59.8994c15.0996 22.2998 51.9004 22.2998 67 0
|
||||
l40.4004 -59.8994l70.8994 13.6992c13 2.60059 26.6006 -1.59961 36.2002 -11.0996c9.5 -9.59961 13.7002 -23.2002 11.0996 -36.4004l-13.6992 -71zM381.3 140.5l76.7998 52.0996l-76.7998 52l17.6006 91.1006l-91 -17.6006l-51.9004 76.9004l-51.7998 -76.7998
|
||||
l-91 17.5996l17.5996 -91.2002l-76.7998 -52l76.7998 -52l-17.5996 -91.1992l90.8994 17.5996l51.9004 -77l51.9004 76.9004l91 -17.6006zM256 296c57.2998 0 104 -46.7002 104 -104s-46.7002 -104 -104 -104s-104 46.7002 -104 104s46.7002 104 104 104zM256 136
|
||||
c30.9004 0 56 25.0996 56 56s-25.0996 56 -56 56s-56 -25.0996 -56 -56s25.0996 -56 56 -56z" />
|
||||
<glyph glyph-name="moon" unicode=""
|
||||
d="M279.135 -64c-141.424 0 -256 114.64 -256 256c0 141.425 114.641 256 256 256c16.0342 -0.00292969 31.5078 -1.46875 46.7354 -4.27734c44.0205 -8.13086 53.7666 -66.8691 15.0215 -88.9189c-41.374 -23.5439 -67.4336 -67.4121 -67.4336 -115.836
|
||||
c0 -83.5234 75.9238 -146.475 158.272 -130.792c43.6904 8.32129 74.5186 -42.5693 46.248 -77.4004c-47.8613 -58.9717 -120.088 -94.7754 -198.844 -94.7754zM279.135 400c-114.875 0 -208 -93.125 -208 -208s93.125 -208 208 -208
|
||||
c65.2314 0 123.439 30.0361 161.575 77.0244c-111.611 -21.2568 -215.252 64.0957 -215.252 177.943c0 67.5127 36.9326 126.392 91.6934 157.555c-12.3271 2.27637 -25.0312 3.47754 -38.0166 3.47754z" />
|
||||
<glyph glyph-name="caret-square-left" unicode="" horiz-adv-x="448"
|
||||
d="M272 290.9v-197.801c0 -10.6992 -13 -16.0996 -20.5 -8.5l-98.2998 98.9004c-4.7002 4.7002 -4.7002 12.2002 0 16.9004l98.2998 98.8994c7.5 7.7002 20.5 2.2998 20.5 -8.39941zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352
|
||||
c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM400 22v340c0 3.2998 -2.7002 6 -6 6h-340c-3.2998 0 -6 -2.7002 -6 -6v-340c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z" />
|
||||
<glyph glyph-name="dot-circle" unicode=""
|
||||
d="M256 392c-110.549 0 -200 -89.4678 -200 -200c0 -110.549 89.4678 -200 200 -200c110.549 0 200 89.4678 200 200c0 110.549 -89.4678 200 -200 200zM256 440c136.967 0 248 -111.033 248 -248s-111.033 -248 -248 -248s-248 111.033 -248 248s111.033 248 248 248z
|
||||
M256 272c44.1826 0 80 -35.8174 80 -80s-35.8174 -80 -80 -80s-80 35.8174 -80 80s35.8174 80 80 80z" />
|
||||
<glyph glyph-name="building" unicode="" horiz-adv-x="448"
|
||||
d="M128 300v40c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12zM268 288c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40
|
||||
c0 -6.59961 -5.40039 -12 -12 -12h-40zM140 192c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-40zM268 192c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40
|
||||
c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-40zM192 108c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40zM268 96c-6.59961 0 -12 5.40039 -12 12v40
|
||||
c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-40zM448 -28v-36h-448v36c0 6.59961 5.40039 12 12 12h19.5v440c0 13.2998 10.7002 24 24 24h337c13.2998 0 24 -10.7002 24 -24v-440h19.5
|
||||
c6.59961 0 12 -5.40039 12 -12zM79.5 -15h112.5v67c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-67h112.5v414l-288.5 1z" />
|
||||
<glyph glyph-name="file-pdf" unicode="" horiz-adv-x="384"
|
||||
d="M369.9 350.1c9 -9 14.0996 -21.2998 14.0996 -34v-332.1c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48.0996h204.1c12.7002 0 24.9004 -5.09961 33.9004 -14.0996zM332.1 320l-76.0996 76.0996v-76.0996h76.0996zM48 -16h288v288
|
||||
h-104c-13.2998 0 -24 10.7002 -24 24v104h-160v-416zM298.2 127.7c10.5 -10.5 8 -38.7002 -17.5 -38.7002c-14.7998 0 -36.9004 6.7998 -55.7998 17c-21.6006 -3.59961 -46 -12.7002 -68.4004 -20.0996c-50.0996 -86.4004 -79.4004 -47 -76.0996 -31.2002
|
||||
c4 20 31 35.8994 51 46.2002c10.5 18.3994 25.3994 50.5 35.3994 74.3994c-7.39941 28.6006 -11.3994 51 -7 67.1006c4.7998 17.6992 38.4004 20.2998 42.6006 -5.90039c4.69922 -15.4004 -1.5 -39.9004 -5.40039 -56c8.09961 -21.2998 19.5996 -35.7998 36.7998 -46.2998
|
||||
c17.4004 2.2002 52.2002 5.5 64.4004 -6.5zM100.1 49.9004c0 -0.700195 11.4004 4.69922 30.4004 35c-5.90039 -5.5 -25.2998 -21.3008 -30.4004 -35zM181.7 240.5c-2.5 0 -2.60059 -26.9004 1.7998 -40.7998c4.90039 8.7002 5.59961 40.7998 -1.7998 40.7998zM157.3 103.9
|
||||
c15.9004 6.09961 34 14.8994 54.7998 19.1992c-11.1992 8.30078 -21.7998 20.4004 -30.0996 35.5c-6.7002 -17.6992 -15 -37.7998 -24.7002 -54.6992zM288.9 108.9c3.59961 2.39941 -2.2002 10.3994 -37.3008 7.7998c32.3008 -13.7998 37.3008 -7.7998 37.3008 -7.7998z" />
|
||||
<glyph glyph-name="file-word" unicode="" horiz-adv-x="384"
|
||||
d="M369.9 350.1c9 -9 14.0996 -21.2998 14.0996 -34v-332.1c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48.0996h204.1c12.7002 0 24.9004 -5.09961 33.9004 -14.0996zM332.1 320l-76.0996 76.0996v-76.0996h76.0996zM48 -16h288v288
|
||||
h-104c-13.2998 0 -24 10.7002 -24 24v104h-160v-416zM268.1 192v0.200195h15.8008c7.7998 0 13.5 -7.2998 11.5996 -14.9004c-4.2998 -17 -13.7002 -54.0996 -34.5 -136c-1.2998 -5.39941 -6.09961 -9.09961 -11.5996 -9.09961h-24.7002
|
||||
c-5.5 0 -10.2998 3.7998 -11.6006 9.09961c-5.2998 20.9004 -17.7998 71 -17.8994 71.4004l-2.90039 17.2998c-0.5 -5.2998 -1.5 -11.0996 -3 -17.2998l-17.8994 -71.4004c-1.30078 -5.39941 -6.10059 -9.09961 -11.6006 -9.09961h-25.2002
|
||||
c-5.59961 0 -10.3994 3.7002 -11.6992 9.09961c-6.5 26.5 -25.2002 103.4 -33.2002 136c-1.7998 7.5 3.89941 14.7998 11.7002 14.7998h16.7998c5.7998 0 10.7002 -4.09961 11.7998 -9.69922c5 -25.7002 18.4004 -93.8008 19.0996 -99
|
||||
c0.300781 -1.7002 0.400391 -3.10059 0.5 -4.2002c0.800781 7.5 0.400391 4.7002 24.8008 103.7c1.39941 5.2998 6.19922 9.09961 11.6992 9.09961h13.3008c5.59961 0 10.3994 -3.7998 11.6992 -9.2002c23.9004 -99.7002 22.8008 -94.3994 23.6006 -99.5
|
||||
c0.299805 -1.7002 0.5 -3.09961 0.700195 -4.2998c0.599609 8.09961 0.399414 5.7998 21 103.5c1.09961 5.5 6 9.5 11.6992 9.5z" />
|
||||
<glyph glyph-name="file-excel" unicode="" horiz-adv-x="384"
|
||||
d="M369.9 350.1c9 -9 14.0996 -21.2998 14.0996 -34v-332.1c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48.0996h204.1c12.7002 0 24.9004 -5.09961 33.9004 -14.0996zM332.1 320l-76.0996 76.0996v-76.0996h76.0996zM48 -16h288v288
|
||||
h-104c-13.2998 0 -24 10.7002 -24 24v104h-160v-416zM260 224c9.2002 0 15 -10 10.2998 -18c-16 -27.5 -45.5996 -76.9004 -46.2998 -78l46.4004 -78c4.59961 -8 -1.10059 -18 -10.4004 -18h-28.7998c-4.40039 0 -8.5 2.40039 -10.6006 6.2998
|
||||
c-22.6992 41.7998 -13.6992 27.5 -28.5996 57.7002c-5.59961 -12.7002 -6.90039 -17.7002 -28.5996 -57.7002c-2.10059 -3.89941 -6.10059 -6.2998 -10.5 -6.2998h-28.9004c-9.2998 0 -15.0996 10 -10.4004 18l46.3008 78l-46.3008 78c-4.59961 8 1.10059 18 10.4004 18
|
||||
h28.9004c4.39941 0 8.5 -2.40039 10.5996 -6.2998c21.7002 -40.4004 14.7002 -28.6006 28.5996 -57.7002c6.40039 15.2998 10.6006 24.5996 28.6006 57.7002c2.09961 3.89941 6.09961 6.2998 10.5 6.2998h28.7998z" />
|
||||
<glyph glyph-name="file-powerpoint" unicode="" horiz-adv-x="384"
|
||||
d="M369.9 350.1c9 -9 14.0996 -21.2998 14.0996 -34v-332.1c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48.0996h204.1c12.7002 0 24.9004 -5.09961 33.9004 -14.0996zM332.1 320l-76.0996 76.0996v-76.0996h76.0996zM48 -16h288v288
|
||||
h-104c-13.2998 0 -24 10.7002 -24 24v104h-160v-416zM120 44v168c0 6.59961 5.40039 12 12 12h69.2002c36.7002 0 62.7998 -27 62.7998 -66.2998c0 -74.2998 -68.7002 -66.5 -95.5 -66.5v-47.2002c0 -6.59961 -5.40039 -12 -12 -12h-24.5c-6.59961 0 -12 5.40039 -12 12z
|
||||
M168.5 131.4h23c7.90039 0 13.9004 2.39941 18.0996 7.19922c8.5 9.80078 8.40039 28.5 0.100586 37.8008c-4.10059 4.59961 -9.90039 7 -17.4004 7h-23.8994v-52h0.0996094z" />
|
||||
<glyph glyph-name="file-image" unicode="" horiz-adv-x="384"
|
||||
d="M369.9 350.1c9 -9 14.0996 -21.2998 14.0996 -34v-332.1c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48.0996h204.1c12.7002 0 24.9004 -5.09961 33.9004 -14.0996zM332.1 320l-76.0996 76.0996v-76.0996h76.0996zM48 -16h288v288
|
||||
h-104c-13.2998 0 -24 10.7002 -24 24v104h-160v-416zM80 32v64l39.5 39.5c4.7002 4.7002 12.2998 4.7002 17 0l39.5 -39.5l87.5 87.5c4.7002 4.7002 12.2998 4.7002 17 0l23.5 -23.5v-128h-224zM128 272c26.5 0 48 -21.5 48 -48s-21.5 -48 -48 -48s-48 21.5 -48 48
|
||||
s21.5 48 48 48z" />
|
||||
<glyph glyph-name="file-archive" unicode="" horiz-adv-x="384"
|
||||
d="M128.3 288h32v-32h-32v32zM192.3 384v-32h-32v32h32zM128.3 352h32v-32h-32v32zM192.3 320v-32h-32v32h32zM369.9 350.1c9 -9 14.0996 -21.2998 14.0996 -34v-332.1c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48.0996h204.1
|
||||
c12.7002 0 24.9004 -5.09961 33.9004 -14.0996zM256 396.1v-76.0996h76.0996zM336 -16v288h-104c-13.2998 0 -24 10.7002 -24 24v104h-48.2998v-16h-32v16h-79.7002v-416h288zM194.2 182.3l17.2998 -87.7002c6.40039 -32.3994 -18.4004 -62.5996 -51.5 -62.5996
|
||||
c-33.2002 0 -58 30.4004 -51.4004 62.9004l19.7002 97.0996v32h32v-32h22.1006c5.7998 0 10.6992 -4.09961 11.7998 -9.7002zM160.3 57.9004c17.9004 0 32.4004 12.0996 32.4004 27c0 14.8994 -14.5 27 -32.4004 27c-17.8994 0 -32.3994 -12.1006 -32.3994 -27
|
||||
c0 -14.9004 14.5 -27 32.3994 -27zM192.3 256v-32h-32v32h32z" />
|
||||
<glyph glyph-name="file-audio" unicode="" horiz-adv-x="384"
|
||||
d="M369.941 350.059c8.68848 -8.68848 14.0586 -20.6943 14.0586 -33.9404v-332.118c0 -26.5098 -21.4902 -48 -48 -48h-288c-26.5098 0 -48 21.4902 -48 48v416c0 26.5098 21.4902 48 48 48h204.118c13.2461 0 25.252 -5.37012 33.9404 -14.0586zM332.118 320
|
||||
l-76.1182 76.1182v-76.1182h76.1182zM48 -16h288v288h-104c-13.2549 0 -24 10.7451 -24 24v104h-160v-416zM192 60.0244c0 -10.6914 -12.9258 -16.0459 -20.4854 -8.48535l-35.5146 35.9746h-28c-6.62695 0 -12 5.37305 -12 12v56c0 6.62695 5.37305 12 12 12h28
|
||||
l35.5146 36.9473c7.56055 7.56055 20.4854 2.20605 20.4854 -8.48535v-135.951zM233.201 107.154c9.05078 9.29688 9.05957 24.1328 0.000976562 33.4385c-22.1494 22.752 12.2344 56.2461 34.3945 33.4814c27.1982 -27.9404 27.2119 -72.4443 0.000976562 -100.401
|
||||
c-21.793 -22.3857 -56.9463 10.3154 -34.3965 33.4814z" />
|
||||
<glyph glyph-name="file-video" unicode="" horiz-adv-x="384"
|
||||
d="M369.941 350.059c8.68848 -8.68848 14.0586 -20.6943 14.0586 -33.9404v-332.118c0 -26.5098 -21.4902 -48 -48 -48h-288c-26.5098 0 -48 21.4902 -48 48v416c0 26.5098 21.4902 48 48 48h204.118c13.2461 0 25.252 -5.37012 33.9404 -14.0586zM332.118 320
|
||||
l-76.1182 76.1182v-76.1182h76.1182zM48 -16h288v288h-104c-13.2549 0 -24 10.7451 -24 24v104h-160v-416zM276.687 195.303c10.0049 10.0049 27.3135 2.99707 27.3135 -11.3135v-111.976c0 -14.2939 -17.2959 -21.332 -27.3135 -11.3135l-52.6865 52.6738v-37.374
|
||||
c0 -11.0459 -8.9541 -20 -20 -20h-104c-11.0459 0 -20 8.9541 -20 20v104c0 11.0459 8.9541 20 20 20h104c11.0459 0 20 -8.9541 20 -20v-37.374z" />
|
||||
<glyph glyph-name="file-code" unicode="" horiz-adv-x="384"
|
||||
d="M149.9 98.9004c3.5 -3.30078 3.69922 -8.90039 0.399414 -12.4004l-17.3994 -18.5996c-1.60059 -1.80078 -4 -2.80078 -6.40039 -2.80078c-2.2002 0 -4.40039 0.900391 -6 2.40039l-57.7002 54.0996c-3.7002 3.40039 -3.7002 9.30078 0 12.8008l57.7002 54.0996
|
||||
c3.40039 3.2998 9 3.2002 12.4004 -0.400391l17.3994 -18.5996l0.200195 -0.200195c3.2002 -3.59961 2.7998 -9.2002 -0.799805 -12.3994l-32.7998 -28.9004l32.7998 -28.9004zM369.9 350.1c9 -9 14.0996 -21.2998 14.0996 -34v-332.1c0 -26.5 -21.5 -48 -48 -48h-288
|
||||
c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48.0996h204.1c12.7002 0 24.9004 -5.09961 33.9004 -14.0996zM256 396.1v-76.0996h76.0996zM336 -16v288h-104c-13.2998 0 -24 10.7002 -24 24v104h-160v-416h288zM209.6 234l24.4004 -7
|
||||
c4.7002 -1.2998 7.40039 -6.2002 6 -10.9004l-54.7002 -188.199c-1.2998 -4.60059 -6.2002 -7.40039 -10.8994 -6l-24.4004 7.09961c-4.7002 1.2998 -7.40039 6.2002 -6 10.9004l54.7002 188.1c1.39941 4.7002 6.2002 7.40039 10.8994 6zM234.1 157.1
|
||||
c-3.5 3.30078 -3.69922 8.90039 -0.399414 12.4004l17.3994 18.5996c3.30078 3.60059 8.90039 3.7002 12.4004 0.400391l57.7002 -54.0996c3.7002 -3.40039 3.7002 -9.30078 0 -12.8008l-57.7002 -54.0996c-3.5 -3.2998 -9.09961 -3.09961 -12.4004 0.400391
|
||||
l-17.3994 18.5996l-0.200195 0.200195c-3.2002 3.59961 -2.7998 9.2002 0.799805 12.3994l32.7998 28.9004l-32.7998 28.9004z" />
|
||||
<glyph glyph-name="life-ring" unicode=""
|
||||
d="M256 -56c-136.967 0 -248 111.033 -248 248s111.033 248 248 248s248 -111.033 248 -248s-111.033 -248 -248 -248zM152.602 20.7197c63.2178 -38.3184 143.579 -38.3184 206.797 0l-53.4111 53.4111c-31.8467 -13.5215 -68.168 -13.5059 -99.9746 0zM336 192
|
||||
c0 44.1123 -35.8877 80 -80 80s-80 -35.8877 -80 -80s35.8877 -80 80 -80s80 35.8877 80 80zM427.28 88.6016c38.3184 63.2178 38.3184 143.579 0 206.797l-53.4111 -53.4111c13.5215 -31.8467 13.5049 -68.168 0 -99.9746zM359.397 363.28
|
||||
c-63.2168 38.3184 -143.578 38.3184 -206.796 0l53.4111 -53.4111c31.8457 13.5215 68.167 13.5049 99.9736 0zM84.7197 295.398c-38.3184 -63.2178 -38.3184 -143.579 0 -206.797l53.4111 53.4111c-13.5215 31.8467 -13.5059 68.168 0 99.9746z" />
|
||||
<glyph glyph-name="paper-plane" unicode=""
|
||||
d="M440 441.5c34.5996 19.9004 77.5996 -8.7998 71.5 -48.9004l-59.4004 -387.199c-2.2998 -14.5 -11.0996 -27.3008 -23.8994 -34.5c-7.2998 -4.10059 -15.4004 -6.2002 -23.6006 -6.2002c-6.19922 0 -12.3994 1.2002 -18.2998 3.59961l-111.899 46.2002l-43.8008 -59.0996
|
||||
c-27.3994 -36.9004 -86.5996 -17.8008 -86.5996 28.5996v84.4004l-114.3 47.2998c-36.7998 15.0996 -40.1006 66 -5.7002 85.8994zM192 -16l36.5996 49.5l-36.5996 15.0996v-64.5996zM404.6 12.7002l59.4004 387.3l-416 -240l107.8 -44.5996l211.5 184.3
|
||||
c14.2002 12.2998 34.4004 -5.7002 23.7002 -21.2002l-140.2 -202.3z" />
|
||||
<glyph glyph-name="futbol" unicode="" horiz-adv-x="496"
|
||||
d="M483.8 268.6c42.2998 -130.199 -29 -270.1 -159.2 -312.399c-25.5 -8.2998 -51.2998 -12.2002 -76.6992 -12.2002c-104.5 0 -201.7 66.5996 -235.7 171.4c-42.2998 130.199 29 270.1 159.2 312.399c25.5 8.2998 51.2998 12.2002 76.6992 12.2002
|
||||
c104.5 0 201.7 -66.5996 235.7 -171.4zM409.3 74.9004c6.10059 8.39941 12.1006 16.8994 16.7998 26.1992c14.3008 28.1006 21.5 58.5 21.7002 89.2002l-38.8994 36.4004l-71.1006 -22.1006l-24.3994 -75.1992l43.6992 -60.9004zM409.3 310.3
|
||||
c-24.5 33.4004 -58.7002 58.4004 -97.8994 71.4004l-47.4004 -26.2002v-73.7998l64.2002 -46.5l70.7002 22zM184.9 381.6c-39.9004 -13.2998 -73.5 -38.5 -97.8008 -71.8994l10.1006 -52.5l70.5996 -22l64.2002 46.5v73.7998zM139 68.5l43.5 61.7002l-24.2998 74.2998
|
||||
l-71.1006 22.2002l-39 -36.4004c0.5 -55.7002 23.4004 -95.2002 37.8008 -115.3zM187.2 1.5c64.0996 -20.4004 115.5 -1.7998 121.7 0l22.3994 48.0996l-44.2998 61.7002h-78.5996l-43.6006 -61.7002z" />
|
||||
<glyph glyph-name="newspaper" unicode="" horiz-adv-x="576"
|
||||
d="M552 384c13.2549 0 24 -10.7451 24 -24v-336c0 -13.2549 -10.7451 -24 -24 -24h-496c-30.9277 0 -56 25.0723 -56 56v272c0 13.2549 10.7451 24 24 24h42.752c6.60547 18.623 24.3896 32 45.248 32h440zM48 56c0 -4.41113 3.58887 -8 8 -8s8 3.58887 8 8v248h-16v-248z
|
||||
M528 48v288h-416v-280c0 -2.7168 -0.204102 -5.38574 -0.578125 -8h416.578zM172 168c-6.62695 0 -12 5.37305 -12 12v96c0 6.62695 5.37305 12 12 12h136c6.62695 0 12 -5.37305 12 -12v-96c0 -6.62695 -5.37305 -12 -12 -12h-136zM200 248v-40h80v40h-80zM160 108v24
|
||||
c0 6.62695 5.37305 12 12 12h136c6.62695 0 12 -5.37305 12 -12v-24c0 -6.62695 -5.37305 -12 -12 -12h-136c-6.62695 0 -12 5.37305 -12 12zM352 108v24c0 6.62695 5.37305 12 12 12h104c6.62695 0 12 -5.37305 12 -12v-24c0 -6.62695 -5.37305 -12 -12 -12h-104
|
||||
c-6.62695 0 -12 5.37305 -12 12zM352 252v24c0 6.62695 5.37305 12 12 12h104c6.62695 0 12 -5.37305 12 -12v-24c0 -6.62695 -5.37305 -12 -12 -12h-104c-6.62695 0 -12 5.37305 -12 12zM352 180v24c0 6.62695 5.37305 12 12 12h104c6.62695 0 12 -5.37305 12 -12v-24
|
||||
c0 -6.62695 -5.37305 -12 -12 -12h-104c-6.62695 0 -12 5.37305 -12 12z" />
|
||||
<glyph glyph-name="bell-slash" unicode="" horiz-adv-x="640"
|
||||
d="M633.99 -23.0195c6.91016 -5.52051 8.01953 -15.5908 2.5 -22.4902l-10 -12.4902c-5.53027 -6.88965 -15.5898 -8.00977 -22.4902 -2.49023l-598 467.51c-6.90039 5.52051 -8.01953 15.5908 -2.49023 22.4902l10 12.4902
|
||||
c5.52051 6.90039 15.5898 8.00977 22.4902 2.49023zM163.53 80h182.84l61.3994 -48h-279.659c-19.1201 0 -31.9902 15.5996 -32.1006 32c-0.0498047 7.5498 2.61035 15.2598 8.61035 21.71c18.3701 19.7402 51.5703 49.6904 54.8398 140.42l45.4697 -35.5498
|
||||
c-6.91992 -54.7803 -24.6895 -88.5498 -41.3994 -110.58zM320 352c-23.3496 0 -45 -7.17969 -62.9404 -19.4004l-38.1699 29.8408c19.6807 15.7793 43.1104 27.3096 69.1299 32.7197v20.8398c0 17.6699 14.3203 32 31.9805 32s31.9805 -14.3301 31.9805 -32v-20.8398
|
||||
c73.46 -15.2598 127.939 -77.46 127.939 -155.16c0 -41.3604 6.03027 -70.7197 14.3398 -92.8496l-59.5293 46.54c-1.63086 13.96 -2.77051 28.8896 -2.79004 45.7295c0 0.200195 0.0595703 0.379883 0.0595703 0.580078c0 61.8604 -50.1396 112 -112 112zM320 -64
|
||||
c-35.3203 0 -63.9697 28.6504 -63.9697 64h127.939c0 -35.3496 -28.6494 -64 -63.9697 -64z" />
|
||||
<glyph glyph-name="copyright" unicode=""
|
||||
d="M256 440c136.967 0 248 -111.033 248 -248s-111.033 -248 -248 -248s-248 111.033 -248 248s111.033 248 248 248zM256 -8c110.549 0 200 89.4678 200 200c0 110.549 -89.4678 200 -200 200c-110.549 0 -200 -89.4688 -200 -200c0 -110.549 89.4678 -200 200 -200z
|
||||
M363.351 93.0645c-9.61328 -9.71289 -45.5293 -41.3965 -104.064 -41.3965c-82.4297 0 -140.484 61.4248 -140.484 141.567c0 79.1514 60.2754 139.4 139.763 139.4c55.5303 0 88.7373 -26.6201 97.5928 -34.7783c2.37793 -2.1875 3.86914 -5.3252 3.86914 -8.80762
|
||||
c0 -2.39746 -0.717773 -4.64258 -1.93359 -6.51465l-18.1543 -28.1133c-3.8418 -5.9502 -11.9668 -7.28223 -17.499 -2.9209c-8.5957 6.77637 -31.8145 22.5381 -61.708 22.5381c-48.3037 0 -77.916 -35.3301 -77.916 -80.082c0 -41.5889 26.8877 -83.6924 78.2764 -83.6924
|
||||
c32.6572 0 56.8428 19.0391 65.7266 27.2256c5.26953 4.85645 13.5957 4.03906 17.8193 -1.73828l19.8652 -27.1699c1.45996 -1.98145 2.32422 -4.42969 2.32422 -7.07715c0 -3.28809 -1.32422 -6.2793 -3.47656 -8.44043z" />
|
||||
<glyph glyph-name="closed-captioning" unicode=""
|
||||
d="M464 384c26.5 0 48 -21.5 48 -48v-288c0 -26.5 -21.5 -48 -48 -48h-416c-26.5 0 -48 21.5 -48 48v288c0 26.5 21.5 48 48 48h416zM458 48c3.2998 0 6 2.7002 6 6v276c0 3.2998 -2.7002 6 -6 6h-404c-3.2998 0 -6 -2.7002 -6 -6v-276c0 -3.2998 2.7002 -6 6 -6h404z
|
||||
M246.9 133.7c1.69922 -2.40039 1.5 -5.60059 -0.5 -7.7002c-53.6006 -56.7998 -172.801 -32.0996 -172.801 67.9004c0 97.2998 121.7 119.5 172.5 70.0996c2.10059 -2 2.5 -3.2002 1 -5.7002l-17.5 -30.5c-1.89941 -3.09961 -6.19922 -4 -9.09961 -1.7002
|
||||
c-40.7998 32 -94.5996 14.9004 -94.5996 -31.1992c0 -48 51 -70.5 92.1992 -32.6006c2.80078 2.5 7.10059 2.10059 9.2002 -0.899414zM437.3 133.7c1.7002 -2.40039 1.5 -5.60059 -0.5 -7.7002c-53.5996 -56.9004 -172.8 -32.0996 -172.8 67.9004
|
||||
c0 97.2998 121.7 119.5 172.5 70.0996c2.09961 -2 2.5 -3.2002 1 -5.7002l-17.5 -30.5c-1.90039 -3.09961 -6.2002 -4 -9.09961 -1.7002c-40.8008 32 -94.6006 14.9004 -94.6006 -31.1992c0 -48 51 -70.5 92.2002 -32.6006c2.7998 2.5 7.09961 2.10059 9.2002 -0.899414z
|
||||
" />
|
||||
<glyph glyph-name="object-group" unicode=""
|
||||
d="M500 320h-12v-256h12c6.62695 0 12 -5.37305 12 -12v-72c0 -6.62695 -5.37305 -12 -12 -12h-72c-6.62695 0 -12 5.37305 -12 12v12h-320v-12c0 -6.62695 -5.37305 -12 -12 -12h-72c-6.62695 0 -12 5.37305 -12 12v72c0 6.62695 5.37305 12 12 12h12v256h-12
|
||||
c-6.62695 0 -12 5.37305 -12 12v72c0 6.62695 5.37305 12 12 12h72c6.62695 0 12 -5.37305 12 -12v-12h320v12c0 6.62695 5.37305 12 12 12h72c6.62695 0 12 -5.37305 12 -12v-72c0 -6.62695 -5.37305 -12 -12 -12zM448 384v-32h32v32h-32zM32 384v-32h32v32h-32zM64 0v32
|
||||
h-32v-32h32zM480 0v32h-32v-32h32zM440 64v256h-12c-6.62695 0 -12 5.37305 -12 12v12h-320v-12c0 -6.62695 -5.37305 -12 -12 -12h-12v-256h12c6.62695 0 12 -5.37305 12 -12v-12h320v12c0 6.62695 5.37305 12 12 12h12zM404 256c6.62695 0 12 -5.37207 12 -12v-168
|
||||
c0 -6.62793 -5.37305 -12 -12 -12h-200c-6.62695 0 -12 5.37207 -12 12v52h-84c-6.62695 0 -12 5.37207 -12 12v168c0 6.62793 5.37305 12 12 12h200c6.62695 0 12 -5.37207 12 -12v-52h84zM136 280v-112h144v112h-144zM376 104v112h-56v-76
|
||||
c0 -6.62793 -5.37305 -12 -12 -12h-76v-24h144z" />
|
||||
<glyph glyph-name="object-ungroup" unicode="" horiz-adv-x="576"
|
||||
d="M564 224h-12v-160h12c6.62695 0 12 -5.37305 12 -12v-72c0 -6.62695 -5.37305 -12 -12 -12h-72c-6.62695 0 -12 5.37305 -12 12v12h-224v-12c0 -6.62695 -5.37305 -12 -12 -12h-72c-6.62695 0 -12 5.37305 -12 12v72c0 6.62695 5.37305 12 12 12h12v24h-88v-12
|
||||
c0 -6.62695 -5.37305 -12 -12 -12h-72c-6.62695 0 -12 5.37305 -12 12v72c0 6.62695 5.37305 12 12 12h12v160h-12c-6.62695 0 -12 5.37305 -12 12v72c0 6.62695 5.37305 12 12 12h72c6.62695 0 12 -5.37305 12 -12v-12h224v12c0 6.62695 5.37305 12 12 12h72
|
||||
c6.62695 0 12 -5.37305 12 -12v-72c0 -6.62695 -5.37305 -12 -12 -12h-12v-24h88v12c0 6.62695 5.37305 12 12 12h72c6.62695 0 12 -5.37305 12 -12v-72c0 -6.62695 -5.37305 -12 -12 -12zM352 384v-32h32v32h-32zM352 128v-32h32v32h-32zM64 96v32h-32v-32h32zM64 352v32
|
||||
h-32v-32h32zM96 136h224v12c0 6.62695 5.37305 12 12 12h12v160h-12c-6.62695 0 -12 5.37305 -12 12v12h-224v-12c0 -6.62695 -5.37305 -12 -12 -12h-12v-160h12c6.62695 0 12 -5.37305 12 -12v-12zM224 0v32h-32v-32h32zM504 64v160h-12c-6.62695 0 -12 5.37305 -12 12v12
|
||||
h-88v-88h12c6.62695 0 12 -5.37305 12 -12v-72c0 -6.62695 -5.37305 -12 -12 -12h-72c-6.62695 0 -12 5.37305 -12 12v12h-88v-24h12c6.62695 0 12 -5.37305 12 -12v-12h224v12c0 6.62695 5.37305 12 12 12h12zM544 0v32h-32v-32h32zM544 256v32h-32v-32h32z" />
|
||||
<glyph glyph-name="sticky-note" unicode="" horiz-adv-x="448"
|
||||
d="M448 99.8936c0 -13.2451 -5.37012 -25.252 -14.0586 -33.9404l-83.8828 -83.8818c-8.68848 -8.68848 -20.6943 -14.0596 -33.9404 -14.0596h-268.118c-26.5098 0 -48 21.4902 -48 48v351.988c0 26.5098 21.4902 48 48 48h352c26.5098 0 48 -21.4902 48 -48v-268.106z
|
||||
M320 19.8936l76.1182 76.1182h-76.1182v-76.1182zM400 368h-352v-351.988h224v104c0 13.2549 10.7451 24 24 24h104v223.988z" />
|
||||
<glyph glyph-name="clone" unicode=""
|
||||
d="M464 448c26.5098 0 48 -21.4902 48 -48v-320c0 -26.5098 -21.4902 -48 -48 -48h-48v-48c0 -26.5098 -21.4902 -48 -48 -48h-320c-26.5098 0 -48 21.4902 -48 48v320c0 26.5098 21.4902 48 48 48h48v48c0 26.5098 21.4902 48 48 48h320zM362 -16c3.31152 0 6 2.68848 6 6
|
||||
v42h-224c-26.5098 0 -48 21.4902 -48 48v224h-42c-3.31152 0 -6 -2.68848 -6 -6v-308c0 -3.31152 2.68848 -6 6 -6h308zM458 80c3.31152 0 6 2.68848 6 6v308c0 3.31152 -2.68848 6 -6 6h-308c-3.31152 0 -6 -2.68848 -6 -6v-308c0 -3.31152 2.68848 -6 6 -6h308z" />
|
||||
<glyph glyph-name="hourglass" unicode="" horiz-adv-x="384"
|
||||
d="M368 400c0 -80.0996 -31.8984 -165.619 -97.1797 -208c64.9912 -42.1934 97.1797 -127.436 97.1797 -208h4c6.62695 0 12 -5.37305 12 -12v-24c0 -6.62695 -5.37305 -12 -12 -12h-360c-6.62695 0 -12 5.37305 -12 12v24c0 6.62695 5.37305 12 12 12h4
|
||||
c0 80.0996 31.8994 165.619 97.1797 208c-64.9912 42.1934 -97.1797 127.436 -97.1797 208h-4c-6.62695 0 -12 5.37305 -12 12v24c0 6.62695 5.37305 12 12 12h360c6.62695 0 12 -5.37305 12 -12v-24c0 -6.62695 -5.37305 -12 -12 -12h-4zM64 400
|
||||
c0 -101.621 57.3066 -184 128 -184s128 82.3799 128 184h-256zM320 -16c0 101.62 -57.3076 184 -128 184s-128 -82.3799 -128 -184h256z" />
|
||||
<glyph glyph-name="hand-rock" unicode=""
|
||||
d="M408.864 368.948c48.8213 20.751 103.136 -15.0723 103.136 -67.9111v-114.443c0 -15.3955 -3.08887 -30.3906 -9.18262 -44.5674l-42.835 -99.6562c-4.99707 -11.625 -3.98242 -18.8574 -3.98242 -42.3701c0 -17.6729 -14.3271 -32 -32 -32h-252
|
||||
c-17.6729 0 -32 14.3271 -32 32c0 27.3301 1.1416 29.2012 -3.11035 32.9033l-97.71 85.0811c-24.8994 21.6797 -39.1797 52.8926 -39.1797 85.6338v56.9531c0 47.4277 44.8457 82.0215 91.0459 71.1807c1.96094 55.751 63.5107 87.8262 110.671 60.8057
|
||||
c29.1895 31.0713 78.8604 31.4473 108.334 -0.0214844c32.7051 18.6846 76.4121 10.3096 98.8135 -23.5879zM464 186.594v114.445c0 34.29 -52 33.8232 -52 0.676758c0 -8.83594 -7.16309 -16 -16 -16h-7c-8.83691 0 -16 7.16406 -16 16v26.751
|
||||
c0 34.457 -52 33.707 -52 0.676758v-27.4287c0 -8.83594 -7.16309 -16 -16 -16h-7c-8.83691 0 -16 7.16406 -16 16v40.4658c0 34.3525 -52 33.8115 -52 0.677734v-41.1436c0 -8.83594 -7.16406 -16 -16 -16h-7c-8.83594 0 -16 7.16406 -16 16v26.751
|
||||
c0 34.4023 -52 33.7744 -52 0.676758v-116.571c0 -8.83105 -7.17773 -15.9961 -16.0078 -15.9961c-4.0166 0 -7.68848 1.48242 -10.499 3.92969l-7 6.09473c-3.37012 2.93457 -5.49316 7.25293 -5.49316 12.0674v41.2275c0 34.2148 -52 33.8857 -52 0.677734v-56.9531
|
||||
c0 -18.8555 8.27441 -36.874 22.7002 -49.4365l97.71 -85.0801c12.4502 -10.8398 19.5898 -26.4463 19.5898 -42.8164v-10.2861h220v7.07617c0 13.21 2.65332 26.0791 7.88281 38.25l42.835 99.6553c3.37891 7.82715 5.28223 16.501 5.28223 25.5625v0.0498047z" />
|
||||
<glyph glyph-name="hand-paper" unicode="" horiz-adv-x="448"
|
||||
d="M372.57 335.359c39.9062 5.63281 75.4297 -25.7393 75.4297 -66.3594v-131.564c-0.00292969 -15.7393 -1.80566 -30.9482 -5.19531 -45.666l-30.1836 -130.958c-3.34668 -14.5234 -16.2783 -24.8125 -31.1816 -24.8125h-222.897
|
||||
c-10.7539 0 -20.2588 5.28613 -26.0615 13.4316l-119.97 168.415c-21.2441 29.8203 -14.8047 71.3574 14.5498 93.1533c18.7754 13.9395 42.1309 16.2979 62.083 8.87109v126.13c0 44.0547 41.125 75.5439 82.4053 64.9834c23.8926 48.1963 92.3535 50.2471 117.982 0.74707
|
||||
c42.5186 11.1445 83.0391 -21.9346 83.0391 -65.5469v-10.8242zM399.997 137.437l-0.00195312 131.563c0 24.9492 -36.5703 25.5508 -36.5703 -0.691406v-76.3086c0 -8.83691 -7.16309 -16 -16 -16h-6.85645c-8.83691 0 -16 7.16309 -16 16v154.184
|
||||
c0 25.501 -36.5703 26.3633 -36.5703 0.691406v-154.875c0 -8.83691 -7.16309 -16 -16 -16h-6.85645c-8.83691 0 -16 7.16309 -16 16v188.309c0 25.501 -36.5703 26.3545 -36.5703 0.691406v-189c0 -8.83691 -7.16309 -16 -16 -16h-6.85645c-8.83691 0 -16 7.16309 -16 16
|
||||
v153.309c0 25.501 -36.5713 26.3359 -36.5713 0.691406v-206.494c0 -15.5703 -20.0352 -21.9092 -29.0303 -9.2832l-27.1279 38.0791c-14.3711 20.1709 -43.833 -2.33496 -29.3945 -22.6045l115.196 -161.697h201.92l27.3252 118.551
|
||||
c2.63086 11.417 3.96484 23.1553 3.96484 34.8857z" />
|
||||
<glyph glyph-name="hand-scissors" unicode=""
|
||||
d="M256 -32c-44.9561 0 -77.3428 43.2627 -64.0244 85.8535c-21.6484 13.71 -34.0156 38.7617 -30.3408 65.0068h-87.6348c-40.8037 0 -74 32.8105 -74 73.1406c0 40.3291 33.1963 73.1396 74 73.1396l94 -9.14062l-78.8496 18.6787
|
||||
c-38.3076 14.7422 -57.04 57.4707 -41.9424 95.1123c15.0303 37.4736 57.7549 55.7803 95.6416 41.2012l144.929 -55.7568c24.9551 30.5566 57.8086 43.9932 92.2178 24.7324l97.999 -54.8525c20.9746 -11.7393 34.0049 -33.8457 34.0049 -57.6904v-205.702
|
||||
c0 -30.7422 -21.4404 -57.5576 -51.7979 -64.5537l-118.999 -27.4268c-4.97168 -1.14648 -10.0889 -1.72949 -15.2031 -1.72949zM256 16.0127l70 -0.000976562c1.52441 0 2.99707 0.174805 4.42285 0.501953l119.001 27.4277
|
||||
c8.58203 1.97754 14.5762 9.29102 14.5762 17.7812v205.701c0 6.4873 -3.62109 12.542 -9.44922 15.8047l-98 54.8545c-8.13965 4.55566 -18.668 2.61914 -24.4873 -4.50781l-21.7646 -26.6475c-2.93457 -3.59375 -7.40332 -5.87305 -12.4004 -5.87305
|
||||
c-2.02246 0 -3.95703 0.375977 -5.73828 1.06152l-166.549 64.0908c-32.6543 12.5664 -50.7744 -34.5771 -19.2227 -46.7168l155.357 -59.7852c6 -2.30859 10.2539 -8.12402 10.2539 -14.9326v-11.6328c0 -8.83691 -7.16309 -16 -16 -16h-182
|
||||
c-34.375 0 -34.4297 -50.2803 0 -50.2803h182c8.83691 0 16 -7.16309 16 -16v-6.85645c0 -8.83691 -7.16309 -16 -16 -16h-28c-25.1221 0 -25.1592 -36.5674 0 -36.5674h28c8.83691 0 16 -7.16211 16 -16v-6.85547c0 -8.83691 -7.16309 -16 -16 -16
|
||||
c-25.1201 0 -25.1602 -36.5674 0 -36.5674z" />
|
||||
<glyph glyph-name="hand-lizard" unicode="" horiz-adv-x="576"
|
||||
d="M556.686 157.458c12.6357 -19.4863 19.3145 -42.0615 19.3145 -65.2871v-124.171h-224v71.582l-99.751 38.7871c-2.7832 1.08203 -5.70996 1.63086 -8.69727 1.63086h-131.552c-30.8789 0 -56 25.1211 -56 56c0 48.5234 39.4766 88 88 88h113.709l18.333 48h-196.042
|
||||
c-44.1123 0 -80 35.8877 -80 80v8c0 30.8779 25.1211 56 56 56h293.917c24.5 0 47.084 -12.2725 60.4111 -32.8291zM528 16v76.1709c0 0.0166016 -0.0439453 0.106445 -0.0439453 0.12207c0 14.3945 -4.24219 27.8057 -11.5439 39.0498l-146.358 225.715
|
||||
c-4.44336 6.85254 -11.9707 10.9424 -20.1367 10.9424h-293.917c-4.41113 0 -8 -3.58887 -8 -8v-8c0 -17.6445 14.3555 -32 32 -32h213.471c25.2021 0 42.626 -25.293 33.6299 -48.8457l-24.5518 -64.2812c-7.05371 -18.4658 -25.0732 -30.873 -44.8398 -30.873h-113.709
|
||||
c-22.0557 0 -40 -17.9443 -40 -40c0 -4.41113 3.58887 -8 8 -8h131.552c0.0175781 0 0.0712891 -0.0273438 0.0888672 -0.0273438c9.16992 0 17.9404 -1.72461 26.0039 -4.86621l99.752 -38.7881c18.5898 -7.22852 30.6035 -24.7881 30.6035 -44.7363v-23.582h128z" />
|
||||
<glyph glyph-name="hand-spock" unicode=""
|
||||
d="M501.03 331.824c6.92773 -11.1826 10.9697 -24.4053 10.9697 -38.5146c0 -5.92676 -0.706055 -11.6885 -2.03809 -17.208l-57.623 -241.963c-13.2236 -56.1904 -63.707 -98.1387 -123.908 -98.1387h-0.352539h-107.455
|
||||
c-0.0761719 0 -0.193359 0.00195312 -0.270508 0.00195312c-40.9248 0 -78.1475 15.9814 -105.761 42.0391l-91.3652 85.9766c-14.3076 13.4434 -23.2246 32.5547 -23.2246 53.7168c0 19.5254 7.61035 37.2861 20.0254 50.4766
|
||||
c5.31836 5.66406 29.875 29.3926 68.1152 21.8477l-24.3594 82.1973c-1.97363 6.64844 -2.97656 13.6836 -2.97656 20.9688c0 38.6953 29.8926 70.4639 67.8262 73.4531c-0.246094 2.45117 -0.34082 4.85547 -0.34082 7.37207c0 34.4199 23.585 63.376 55.4619 71.5752
|
||||
c43.248 10.9785 80.5645 -17.7012 89.6602 -53.0723l13.6836 -53.207l4.64648 22.6602c6.99023 33.5186 36.6826 58.8037 72.2373 58.916c8.73438 0 56.625 -3.26953 70.7383 -54.0801c15.0664 0.710938 46.9199 -3.50977 66.3105 -35.0176zM463.271 287.219
|
||||
c7.86914 32.9844 -42.1211 45.2695 -50.0859 11.9219l-24.8008 -104.146c-4.38867 -18.4141 -31.7783 -11.8926 -28.0557 6.2168l28.5479 139.166c7.39844 36.0703 -43.3076 45.0703 -50.1182 11.9629l-31.791 -154.971
|
||||
c-3.54883 -17.3086 -28.2832 -18.0469 -32.7109 -0.804688l-47.3262 184.035c-8.43359 32.8105 -58.3691 20.2676 -49.8652 -12.8359l42.4414 -165.039c4.81641 -18.7207 -23.3711 -26.9121 -28.9648 -8.00781l-31.3438 105.779
|
||||
c-9.6875 32.6465 -59.1191 18.2578 -49.3867 -14.625l36.0137 -121.539c6.59375 -22.2441 10.1777 -45.7803 10.1777 -70.1523c0 -6.54297 -8.05664 -10.9355 -13.4824 -5.82617l-51.123 48.1074c-24.7852 23.4082 -60.0527 -14.1875 -35.2793 -37.4902l91.3691 -85.9805
|
||||
c19.0469 -17.9736 44.75 -28.998 72.9795 -28.998h0.157227h107.455c0.0732422 0 0.138672 0.0429688 0.212891 0.0429688c37.5791 0 69.1016 26.1416 77.3564 61.2168z" />
|
||||
<glyph glyph-name="hand-pointer" unicode="" horiz-adv-x="448"
|
||||
d="M358.182 268.639c43.1934 16.6348 89.8184 -15.7949 89.8184 -62.6387v-84c-0.000976562 -5.24023 -0.600586 -10.3037 -1.72754 -15.2041l-27.4297 -118.999c-6.98242 -30.2969 -33.7549 -51.7969 -64.5566 -51.7969h-178.286
|
||||
c-21.2588 0 -41.3682 10.4102 -53.791 27.8457l-109.699 154.001c-21.2432 29.8193 -14.8047 71.3574 14.5498 93.1523c18.8115 13.9658 42.1748 16.2822 62.083 8.87207v161.129c0 36.9443 29.7363 67 66.2861 67s66.2861 -30.0557 66.2861 -67v-73.6338
|
||||
c20.4131 2.85742 41.4678 -3.94238 56.5947 -19.6289c27.1934 12.8467 60.3799 5.66992 79.8721 -19.0986zM80.9854 168.303c-14.4004 20.2119 -43.8008 -2.38281 -29.3945 -22.6055l109.712 -154c3.43457 -4.81934 8.92871 -7.69727 14.6973 -7.69727h178.285
|
||||
c8.49219 0 15.8037 5.99414 17.7822 14.5762l27.4297 119.001c0.333008 1.44629 0.501953 2.93457 0.501953 4.42285v84c0 25.1602 -36.5713 25.1211 -36.5713 0c0 -8.83594 -7.16309 -16 -16 -16h-6.85645c-8.83691 0 -16 7.16406 -16 16v21
|
||||
c0 25.1602 -36.5713 25.1201 -36.5713 0v-21c0 -8.83594 -7.16309 -16 -16 -16h-6.85938c-8.83691 0 -16 7.16406 -16 16v35c0 25.1602 -36.5703 25.1201 -36.5703 0v-35c0 -8.83594 -7.16309 -16 -16 -16h-6.85742c-8.83691 0 -16 7.16406 -16 16v175
|
||||
c0 25.1602 -36.5713 25.1201 -36.5713 0v-241.493c0 -15.5703 -20.0352 -21.9092 -29.0303 -9.2832zM176.143 48v96c0 8.83691 6.26855 16 14 16h6c7.73242 0 14 -7.16309 14 -16v-96c0 -8.83691 -6.26758 -16 -14 -16h-6c-7.73242 0 -14 7.16309 -14 16zM251.571 48v96
|
||||
c0 8.83691 6.26758 16 14 16h6c7.73145 0 14 -7.16309 14 -16v-96c0 -8.83691 -6.26855 -16 -14 -16h-6c-7.73242 0 -14 7.16309 -14 16zM327 48v96c0 8.83691 6.26758 16 14 16h6c7.73242 0 14 -7.16309 14 -16v-96c0 -8.83691 -6.26758 -16 -14 -16h-6
|
||||
c-7.73242 0 -14 7.16309 -14 16z" />
|
||||
<glyph glyph-name="hand-peace" unicode="" horiz-adv-x="448"
|
||||
d="M362.146 256.024c42.5908 13.3184 85.8535 -19.0684 85.8535 -64.0244l-0.0117188 -70.001c-0.000976562 -5.24023 -0.600586 -10.3027 -1.72949 -15.2031l-27.4268 -118.999c-6.99707 -30.3564 -33.8105 -51.7969 -64.5547 -51.7969h-205.702
|
||||
c-23.8447 0 -45.9502 13.0303 -57.6904 34.0059l-54.8525 97.999c-19.2607 34.4092 -5.82422 67.2617 24.7324 92.2178l-55.7568 144.928c-14.5791 37.8867 3.72754 80.6113 41.2012 95.6416c37.6406 15.0977 80.3691 -3.63477 95.1123 -41.9424l18.6787 -78.8496
|
||||
l-9.14062 94c0 40.8037 32.8096 74 73.1396 74s73.1406 -33.1963 73.1406 -74v-87.6348c26.2451 3.6748 51.2959 -8.69238 65.0068 -30.3408zM399.987 122l-0.000976562 70c0 25.1602 -36.5674 25.1201 -36.5674 0c0 -8.83691 -7.16309 -16 -16 -16h-6.85547
|
||||
c-8.83789 0 -16 7.16309 -16 16v28c0 25.1592 -36.5674 25.1221 -36.5674 0v-28c0 -8.83691 -7.16309 -16 -16 -16h-6.85645c-8.83691 0 -16 7.16309 -16 16v182c0 34.4297 -50.2803 34.375 -50.2803 0v-182c0 -8.83691 -7.16309 -16 -16 -16h-11.6328
|
||||
c-6.80859 0 -12.624 4.25391 -14.9326 10.2539l-59.7842 155.357c-12.1396 31.5518 -59.2842 13.4326 -46.7168 -19.2227l64.0898 -166.549c0.685547 -1.78125 1.07812 -3.71875 1.07812 -5.74121c0 -4.99707 -2.2959 -9.46289 -5.88965 -12.3975l-26.6475 -21.7646
|
||||
c-7.12695 -5.81934 -9.06445 -16.3467 -4.50781 -24.4873l54.8535 -98c3.26367 -5.82812 9.31934 -9.44922 15.8057 -9.44922h205.701c8.49121 0 15.8037 5.99414 17.7812 14.5762l27.4277 119.001c0.333008 1.44629 0.501953 2.93457 0.501953 4.42285z" />
|
||||
<glyph glyph-name="registered" unicode=""
|
||||
d="M256 440c136.967 0 248 -111.033 248 -248s-111.033 -248 -248 -248s-248 111.033 -248 248s111.033 248 248 248zM256 -8c110.549 0 200 89.4678 200 200c0 110.549 -89.4678 200 -200 200c-110.549 0 -200 -89.4688 -200 -200c0 -110.549 89.4678 -200 200 -200z
|
||||
M366.442 73.791c4.40332 -7.99219 -1.37012 -17.791 -10.5107 -17.791h-42.8096c-0.00488281 0 -0.000976562 -0.0126953 -0.00585938 -0.0126953c-4.58594 0 -8.57422 2.58301 -10.5869 6.37305l-47.5156 89.3027h-31.958v-83.6631c0 -6.61719 -5.38281 -12 -12 -12
|
||||
h-38.5674c-6.61719 0 -12 5.38281 -12 12v248.304c0 6.61719 5.38281 12 12 12h78.667c71.251 0 101.498 -32.749 101.498 -85.252c0 -31.6123 -15.2148 -59.2969 -39.4824 -73.1758c3.02148 -4.61719 0.225586 0.199219 53.2715 -96.085zM256.933 208.094
|
||||
c20.9131 0 32.4307 11.5186 32.4316 32.4316c0 19.5752 -6.5127 31.709 -38.9297 31.709h-27.377v-64.1406h33.875z" />
|
||||
<glyph glyph-name="calendar-plus" unicode="" horiz-adv-x="448"
|
||||
d="M336 156v-24c0 -6.59961 -5.40039 -12 -12 -12h-76v-76c0 -6.59961 -5.40039 -12 -12 -12h-24c-6.59961 0 -12 5.40039 -12 12v76h-76c-6.59961 0 -12 5.40039 -12 12v24c0 6.59961 5.40039 12 12 12h76v76c0 6.59961 5.40039 12 12 12h24c6.59961 0 12 -5.40039 12 -12
|
||||
v-76h76c6.59961 0 12 -5.40039 12 -12zM448 336v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h48v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h128v52c0 6.59961 5.40039 12 12 12h40
|
||||
c6.59961 0 12 -5.40039 12 -12v-52h48c26.5 0 48 -21.5 48 -48zM400 -10v298h-352v-298c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z" />
|
||||
<glyph glyph-name="calendar-minus" unicode="" horiz-adv-x="448"
|
||||
d="M124 120c-6.59961 0 -12 5.40039 -12 12v24c0 6.59961 5.40039 12 12 12h200c6.59961 0 12 -5.40039 12 -12v-24c0 -6.59961 -5.40039 -12 -12 -12h-200zM448 336v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h48v52
|
||||
c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h128v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h48c26.5 0 48 -21.5 48 -48zM400 -10v298h-352v-298c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z" />
|
||||
<glyph glyph-name="calendar-times" unicode="" horiz-adv-x="448"
|
||||
d="M311.7 73.2998l-17 -17c-4.7002 -4.7002 -12.2998 -4.7002 -17 0l-53.7002 53.7998l-53.7002 -53.6992c-4.7002 -4.7002 -12.2998 -4.7002 -17 0l-17 17c-4.7002 4.69922 -4.7002 12.2998 0 17l53.7002 53.6992l-53.7002 53.7002c-4.7002 4.7002 -4.7002 12.2998 0 17
|
||||
l17 17c4.7002 4.7002 12.2998 4.7002 17 0l53.7002 -53.7002l53.7002 53.7002c4.7002 4.7002 12.2998 4.7002 17 0l17 -17c4.7002 -4.7002 4.7002 -12.2998 0 -17l-53.7998 -53.7998l53.6992 -53.7002c4.80078 -4.7002 4.80078 -12.2998 0.100586 -17zM448 336v-352
|
||||
c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h48v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h128v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h48c26.5 0 48 -21.5 48 -48zM400 -10
|
||||
v298h-352v-298c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z" />
|
||||
<glyph glyph-name="calendar-check" unicode="" horiz-adv-x="448"
|
||||
d="M400 384c26.5098 0 48 -21.4902 48 -48v-352c0 -26.5098 -21.4902 -48 -48 -48h-352c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h48v52c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-52h128v52c0 6.62695 5.37305 12 12 12h40
|
||||
c6.62695 0 12 -5.37305 12 -12v-52h48zM394 -16c3.31152 0 6 2.68848 6 6v298h-352v-298c0 -3.31152 2.68848 -6 6 -6h340zM341.151 184.65l-142.31 -141.169c-4.70508 -4.66699 -12.3027 -4.6377 -16.9707 0.0673828l-75.0908 75.6992
|
||||
c-4.66699 4.70508 -4.6377 12.3027 0.0673828 16.9707l22.7197 22.5361c4.70508 4.66699 12.3027 4.63672 16.9697 -0.0693359l44.1035 -44.4609l111.072 110.182c4.70508 4.66699 12.3027 4.63672 16.9707 -0.0683594l22.5361 -22.7178
|
||||
c4.66699 -4.70508 4.63672 -12.3027 -0.0683594 -16.9697z" />
|
||||
<glyph glyph-name="map" unicode="" horiz-adv-x="576"
|
||||
d="M560.02 416c8.4502 0 15.9805 -6.83008 15.9805 -16.0195v-346.32c0 -13.4707 -8.32422 -24.9951 -20.1201 -29.71l-151.83 -52.8105c-6.23242 -2.02832 -12.9023 -3.12305 -19.8076 -3.12305c-7.07324 0 -13.8799 1.15039 -20.2422 3.27344l-172 60.71l-170.05 -62.8398
|
||||
c-1.99023 -0.790039 -4 -1.16016 -5.95996 -1.16016c-8.45996 0 -15.9902 6.83008 -15.9902 16.0195v346.32c0.00292969 13.4697 8.32617 24.9932 20.1201 29.71l151.83 52.8105c6.43945 2.08984 13.1201 3.13965 19.8096 3.13965
|
||||
c7.06641 -0.00292969 13.8789 -1.16602 20.2402 -3.28027l172 -60.7197h0.00976562l170.05 62.8398c1.98047 0.790039 4 1.16016 5.95996 1.16016zM224 357.58v-285.97l128 -45.1904v285.97zM48 29.9502l127.36 47.0801l0.639648 0.229492v286.2l-128 -44.5303v-288.979z
|
||||
M528 65.0801v288.97l-127.36 -47.0693l-0.639648 -0.240234v-286.19z" />
|
||||
<glyph glyph-name="comment-alt" unicode=""
|
||||
d="M448 448c35.2998 0 64 -28.7002 64 -64v-288c0 -35.2998 -28.7002 -64 -64 -64h-144l-124.9 -93.5996c-2.19922 -1.7002 -4.69922 -2.40039 -7.09961 -2.40039c-6.2002 0 -12 4.90039 -12 12v84h-96c-35.2998 0 -64 28.7002 -64 64v288c0 35.2998 28.7002 64 64 64h384z
|
||||
M464 96v288c0 8.7998 -7.2002 16 -16 16h-384c-8.7998 0 -16 -7.2002 -16 -16v-288c0 -8.7998 7.2002 -16 16 -16h144v-60l67.2002 50.4004l12.7998 9.59961h160c8.7998 0 16 7.2002 16 16z" />
|
||||
<glyph glyph-name="pause-circle" unicode=""
|
||||
d="M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM256 -8c110.5 0 200 89.5 200 200s-89.5 200 -200 200s-200 -89.5 -200 -200s89.5 -200 200 -200zM352 272v-160c0 -8.7998 -7.2002 -16 -16 -16h-48
|
||||
c-8.7998 0 -16 7.2002 -16 16v160c0 8.7998 7.2002 16 16 16h48c8.7998 0 16 -7.2002 16 -16zM240 272v-160c0 -8.7998 -7.2002 -16 -16 -16h-48c-8.7998 0 -16 7.2002 -16 16v160c0 8.7998 7.2002 16 16 16h48c8.7998 0 16 -7.2002 16 -16z" />
|
||||
<glyph glyph-name="stop-circle" unicode=""
|
||||
d="M504 192c0 -137 -111 -248 -248 -248s-248 111 -248 248s111 248 248 248s248 -111 248 -248zM56 192c0 -110.5 89.5 -200 200 -200s200 89.5 200 200s-89.5 200 -200 200s-200 -89.5 -200 -200zM352 272v-160c0 -8.7998 -7.2002 -16 -16 -16h-160
|
||||
c-8.7998 0 -16 7.2002 -16 16v160c0 8.7998 7.2002 16 16 16h160c8.7998 0 16 -7.2002 16 -16z" />
|
||||
<glyph glyph-name="handshake" unicode="" horiz-adv-x="640"
|
||||
d="M519.2 320.1h120.8v-255.699h-64c-17.5 0 -31.7998 14.1992 -31.9004 31.6992h-57.8994c-1.7998 -8.19922 -5.2998 -16.0996 -10.9004 -23l-26.2002 -32.2998c-15.7998 -19.3994 -41.8994 -25.5 -64 -16.7998c-13.5 -16.5996 -30.5996 -24 -48.7998 -24
|
||||
c-15.0996 0 -28.5996 5.09961 -41.0996 15.9004c-31.7998 -21.9004 -74.7002 -21.3008 -105.601 3.7998l-84.5996 76.3994h-9.09961c-0.100586 -17.5 -14.3008 -31.6992 -31.9004 -31.6992h-64v255.699h118l47.5996 47.6006c10.5 10.3994 24.8008 16.2998 39.6006 16.2998
|
||||
h226.8c15.4326 0 29.4326 -6.22168 39.5996 -16.2998zM48 96.4004c8.7998 0 16 7.09961 16 16c0 8.7998 -7.2002 16 -16 16s-16 -7.2002 -16 -16c0 -8.80078 7.2002 -16 16 -16zM438 103.3c2.7002 3.40039 2.2002 8.5 -1.2002 11.2998l-108.2 87.8008l-8.19922 -7.5
|
||||
c-40.3008 -36.8008 -86.7002 -11.8008 -101.5 4.39941c-26.7002 29 -25 74.4004 4.39941 101.3l38.7002 35.5h-56.7002c-2 -0.799805 -3.7002 -1.5 -5.7002 -2.2998l-61.6992 -61.5996h-41.9004v-128.101h27.7002l97.2998 -88
|
||||
c16.0996 -13.0996 41.4004 -10.5 55.2998 6.60059l15.6006 19.2002l36.7998 -31.5c3 -2.40039 12 -4.90039 18 2.39941l30 36.5l23.8994 -19.3994c3.5 -2.80078 8.5 -2.2002 11.3008 1.19922zM544 144.1v128h-44.7002l-61.7002 61.6006
|
||||
c-1.39941 1.5 -3.39941 2.2998 -5.5 2.2998l-83.6992 -0.200195c-10 0 -19.6006 -3.7002 -27 -10.5l-65.6006 -60.0996c-9.7002 -8.7998 -10.5 -24 -1.2002 -33.9004c8.90039 -9.39941 25.1006 -8.7002 34.6006 0l55.2002 50.6006c6.5 5.89941 16.5996 5.5 22.5996 -1
|
||||
l10.9004 -11.7002c6 -6.5 5.5 -16.6006 -1 -22.6006l-12.5 -11.3994l102.699 -83.4004c2.80078 -2.2998 5.40039 -4.89941 7.7002 -7.7002h69.2002zM592 96.4004c8.7998 0 16 7.09961 16 16c0 8.7998 -7.2002 16 -16 16s-16 -7.2002 -16 -16c0 -8.80078 7.2002 -16 16 -16z
|
||||
" />
|
||||
<glyph glyph-name="envelope-open" unicode=""
|
||||
d="M494.586 283.484c10.6523 -8.80762 17.4141 -22.1064 17.4141 -36.9932v-262.491c0 -26.5098 -21.4902 -48 -48 -48h-416c-26.5098 0 -48 21.4902 -48 48v262.515c0 14.9355 6.80469 28.2705 17.5146 37.0771c4.08008 3.35449 110.688 89.0996 135.15 108.549
|
||||
c22.6992 18.1426 60.1299 55.8594 103.335 55.8594c43.4365 0 81.2314 -38.1914 103.335 -55.8594c23.5283 -18.707 130.554 -104.773 135.251 -108.656zM464 -10v253.632c0 0.00195312 0.00390625 0.000976562 0.00390625 0.00292969
|
||||
c0 1.88184 -0.869141 3.56152 -2.22754 4.66016c-15.8633 12.8232 -108.793 87.5752 -132.366 106.316c-17.5527 14.0195 -49.7168 45.3887 -73.4102 45.3887c-23.6016 0 -55.2451 -30.8799 -73.4102 -45.3887c-23.5713 -18.7393 -116.494 -93.4795 -132.364 -106.293
|
||||
c-1.40918 -1.13965 -2.22559 -2.85254 -2.22559 -4.66504v-253.653c0 -3.31152 2.68848 -6 6 -6h404c3.31152 0 6 2.68848 6 6zM432.009 177.704c4.24902 -5.15918 3.46484 -12.7949 -1.74512 -16.9814c-28.9746 -23.2822 -59.2734 -47.5967 -70.9287 -56.8623
|
||||
c-22.6992 -18.1436 -60.1299 -55.8604 -103.335 -55.8604c-43.4521 0 -81.2871 38.2373 -103.335 55.8604c-11.2793 8.9668 -41.7441 33.4131 -70.9268 56.8643c-5.20996 4.1875 -5.99316 11.8223 -1.74512 16.9814l15.2578 18.5283
|
||||
c4.17773 5.07227 11.6572 5.84277 16.7793 1.72559c28.6182 -23.001 58.5654 -47.0352 70.5596 -56.5713c17.5527 -14.0195 49.7168 -45.3887 73.4102 -45.3887c23.6016 0 55.2461 30.8799 73.4102 45.3887c11.9941 9.53516 41.9434 33.5703 70.5625 56.5684
|
||||
c5.12207 4.11621 12.6016 3.3457 16.7783 -1.72656z" />
|
||||
<glyph glyph-name="address-book" unicode="" horiz-adv-x="448"
|
||||
d="M436 288h-20v-64h20c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-20v-64h20c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-20v-48c0 -26.5 -21.5 -48 -48 -48h-320c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48
|
||||
h320c26.5 0 48 -21.5 48 -48v-48h20c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12zM368 -16v416h-320v-416h320zM208 192c-35.2998 0 -64 28.7002 -64 64s28.7002 64 64 64s64 -28.7002 64 -64s-28.7002 -64 -64 -64zM118.4 64
|
||||
c-12.4004 0 -22.4004 8.59961 -22.4004 19.2002v19.2002c0 31.7998 30.0996 57.5996 67.2002 57.5996c11.3994 0 17.8994 -8 44.7998 -8c26.0996 0 34 8 44.7998 8c37.1006 0 67.2002 -25.7998 67.2002 -57.5996v-19.2002c0 -10.6006 -10 -19.2002 -22.4004 -19.2002
|
||||
h-179.199z" />
|
||||
<glyph glyph-name="address-card" unicode="" horiz-adv-x="576"
|
||||
d="M528 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-480c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h480zM528 16v352h-480v-352h480zM208 192c-35.2998 0 -64 28.7002 -64 64s28.7002 64 64 64s64 -28.7002 64 -64s-28.7002 -64 -64 -64z
|
||||
M118.4 64c-12.4004 0 -22.4004 8.59961 -22.4004 19.2002v19.2002c0 31.7998 30.0996 57.5996 67.2002 57.5996c11.3994 0 17.8994 -8 44.7998 -8c26.0996 0 34 8 44.7998 8c37.1006 0 67.2002 -25.7998 67.2002 -57.5996v-19.2002
|
||||
c0 -10.6006 -10 -19.2002 -22.4004 -19.2002h-179.199zM360 128c-4.40039 0 -8 3.59961 -8 8v16c0 4.40039 3.59961 8 8 8h112c4.40039 0 8 -3.59961 8 -8v-16c0 -4.40039 -3.59961 -8 -8 -8h-112zM360 192c-4.40039 0 -8 3.59961 -8 8v16c0 4.40039 3.59961 8 8 8h112
|
||||
c4.40039 0 8 -3.59961 8 -8v-16c0 -4.40039 -3.59961 -8 -8 -8h-112zM360 256c-4.40039 0 -8 3.59961 -8 8v16c0 4.40039 3.59961 8 8 8h112c4.40039 0 8 -3.59961 8 -8v-16c0 -4.40039 -3.59961 -8 -8 -8h-112z" />
|
||||
<glyph glyph-name="user-circle" unicode="" horiz-adv-x="496"
|
||||
d="M248 344c53 0 96 -43 96 -96s-43 -96 -96 -96s-96 43 -96 96s43 96 96 96zM248 200c26.5 0 48 21.5 48 48s-21.5 48 -48 48s-48 -21.5 -48 -48s21.5 -48 48 -48zM248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8
|
||||
c49.7002 0 95.0996 18.2998 130.1 48.4004c-14.8994 23 -40.3994 38.5 -69.5996 39.5c-20.7998 -6.5 -40.5996 -9.60059 -60.5 -9.60059s-39.7002 3.2002 -60.5 9.60059c-29.2002 -0.900391 -54.7002 -16.5 -69.5996 -39.5c35 -30.1006 80.3994 -48.4004 130.1 -48.4004z
|
||||
M410.7 76.0996c23.3994 32.7002 37.2998 72.7002 37.2998 115.9c0 110.3 -89.7002 200 -200 200s-200 -89.7002 -200 -200c0 -43.2002 13.9004 -83.2002 37.2998 -115.9c24.5 31.4004 62.2002 51.9004 105.101 51.9004c10.1992 0 26.0996 -9.59961 57.5996 -9.59961
|
||||
c31.5996 0 47.4004 9.59961 57.5996 9.59961c43 0 80.7002 -20.5 105.101 -51.9004z" />
|
||||
<glyph glyph-name="id-badge" unicode="" horiz-adv-x="384"
|
||||
d="M336 448c26.5 0 48 -21.5 48 -48v-416c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48h288zM336 -16v416h-288v-416h288zM144 336c-8.7998 0 -16 7.2002 -16 16s7.2002 16 16 16h96c8.7998 0 16 -7.2002 16 -16s-7.2002 -16 -16 -16
|
||||
h-96zM192 160c-35.2998 0 -64 28.7002 -64 64s28.7002 64 64 64s64 -28.7002 64 -64s-28.7002 -64 -64 -64zM102.4 32c-12.4004 0 -22.4004 8.59961 -22.4004 19.2002v19.2002c0 31.7998 30.0996 57.5996 67.2002 57.5996c11.3994 0 17.8994 -8 44.7998 -8
|
||||
c26.0996 0 34 8 44.7998 8c37.1006 0 67.2002 -25.7998 67.2002 -57.5996v-19.2002c0 -10.6006 -10 -19.2002 -22.4004 -19.2002h-179.199z" />
|
||||
<glyph glyph-name="id-card" unicode="" horiz-adv-x="576"
|
||||
d="M528 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-480c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h480zM528 16v288h-480v-288h32.7998c-1 4.5 -0.799805 -3.59961 -0.799805 22.4004c0 31.7998 30.0996 57.5996 67.2002 57.5996
|
||||
c11.3994 0 17.8994 -8 44.7998 -8c26.0996 0 34 8 44.7998 8c37.1006 0 67.2002 -25.7998 67.2002 -57.5996c0 -26 0.0996094 -17.9004 -0.799805 -22.4004h224.8zM360 96c-4.40039 0 -8 3.59961 -8 8v16c0 4.40039 3.59961 8 8 8h112c4.40039 0 8 -3.59961 8 -8v-16
|
||||
c0 -4.40039 -3.59961 -8 -8 -8h-112zM360 160c-4.40039 0 -8 3.59961 -8 8v16c0 4.40039 3.59961 8 8 8h112c4.40039 0 8 -3.59961 8 -8v-16c0 -4.40039 -3.59961 -8 -8 -8h-112zM360 224c-4.40039 0 -8 3.59961 -8 8v16c0 4.40039 3.59961 8 8 8h112
|
||||
c4.40039 0 8 -3.59961 8 -8v-16c0 -4.40039 -3.59961 -8 -8 -8h-112zM192 128c-35.2998 0 -64 28.7002 -64 64s28.7002 64 64 64s64 -28.7002 64 -64s-28.7002 -64 -64 -64z" />
|
||||
<glyph glyph-name="window-maximize" unicode=""
|
||||
d="M464 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-416c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h416zM464 22v234h-416v-234c0 -3.2998 2.7002 -6 6 -6h404c3.2998 0 6 2.7002 6 6z" />
|
||||
<glyph glyph-name="window-minimize" unicode=""
|
||||
d="M480 -32h-448c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32h448c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32z" />
|
||||
<glyph glyph-name="window-restore" unicode=""
|
||||
d="M464 448c26.5 0 48 -21.5 48 -48v-320c0 -26.5 -21.5 -48 -48 -48h-48v-48c0 -26.5 -21.5 -48 -48 -48h-320c-26.5 0 -48 21.5 -48 48v320c0 26.5 21.5 48 48 48h48v48c0 26.5 21.5 48 48 48h320zM368 -16v208h-320v-208h320zM464 80v320h-320v-48h224
|
||||
c26.5 0 48 -21.5 48 -48v-224h48z" />
|
||||
<glyph glyph-name="snowflake" unicode="" horiz-adv-x="448"
|
||||
d="M440.1 92.7998c7.60059 -4.39941 10.1006 -14.2002 5.5 -21.7002l-7.89941 -13.8994c-4.40039 -7.7002 -14 -10.2998 -21.5 -5.90039l-39.2002 23l9.09961 -34.7002c2.30078 -8.5 -2.69922 -17.2998 -11.0996 -19.5996l-15.2002 -4.09961
|
||||
c-8.39941 -2.30078 -17.0996 2.7998 -19.2998 11.2998l-21.2998 81l-71.9004 42.2002v-84.5l58.2998 -59.3008c6.10059 -6.19922 6.10059 -16.3994 0 -22.5996l-11.0996 -11.2998c-6.09961 -6.2002 -16.0996 -6.2002 -22.2002 0l-24.8994 25.3994v-46.0996
|
||||
c0 -8.7998 -7 -16 -15.7002 -16h-15.7002c-8.7002 0 -15.7002 7.2002 -15.7002 16v45.9004l-24.8994 -25.4004c-6.10059 -6.2002 -16.1006 -6.2002 -22.2002 0l-11.1006 11.2998c-6.09961 6.2002 -6.09961 16.4004 0 22.6006l58.3008 59.2998v84.5l-71.9004 -42.2002
|
||||
l-21.2998 -81c-2.2998 -8.5 -10.9004 -13.5996 -19.2998 -11.2998l-15.2002 4.09961c-8.40039 2.2998 -13.2998 11.1006 -11.1006 19.6006l9.10059 34.6992l-39.2002 -23c-7.5 -4.39941 -17.2002 -1.7998 -21.5 5.90039l-7.90039 13.9004
|
||||
c-4.2998 7.69922 -1.69922 17.5 5.80078 21.8994l39.1992 23l-34.0996 9.2998c-8.40039 2.30078 -13.2998 11.1006 -11.0996 19.6006l4.09961 15.5c2.2998 8.5 10.9004 13.5996 19.2998 11.2998l79.7002 -21.7002l71.9004 42.2002l-71.9004 42.2002l-79.7002 -21.7002
|
||||
c-8.39941 -2.2998 -17.0996 2.7998 -19.2998 11.2998l-4.09961 15.5c-2.30078 8.5 2.69922 17.2998 11.0996 19.6006l34.0996 9.09961l-39.1992 23c-7.60059 4.5 -10.1006 14.2002 -5.80078 21.9004l7.90039 13.8994c4.40039 7.7002 14 10.2998 21.5 5.90039l39.2002 -23
|
||||
l-9.10059 34.7002c-2.2998 8.5 2.7002 17.2998 11.1006 19.5996l15.2002 4.09961c8.39941 2.30078 17.0996 -2.7998 19.2998 -11.2998l21.2998 -81l71.9004 -42.2002v84.5l-58.3008 59.3008c-6.09961 6.19922 -6.09961 16.3994 0 22.5996l11.5 11.2998
|
||||
c6.10059 6.2002 16.1006 6.2002 22.2002 0l24.9004 -25.3994v46.0996c0 8.7998 7 16 15.7002 16h15.6992c8.7002 0 15.7002 -7.2002 15.7002 -16v-45.9004l24.9004 25.4004c6.09961 6.2002 16.0996 6.2002 22.2002 0l11.0996 -11.2998
|
||||
c6.09961 -6.2002 6.09961 -16.4004 0 -22.6006l-58.2998 -59.2998v-84.5l71.8994 42.2002l21.3008 81c2.2998 8.5 10.8994 13.5996 19.2998 11.2998l15.2002 -4.09961c8.39941 -2.2998 13.2998 -11.1006 11.0996 -19.6006l-9.09961 -34.6992l39.1992 23
|
||||
c7.5 4.39941 17.2002 1.7998 21.5 -5.90039l7.90039 -13.9004c4.2998 -7.69922 1.7002 -17.5 -5.7998 -21.8994l-39.2002 -23l34.0996 -9.2998c8.40039 -2.30078 13.3008 -11.1006 11.1006 -19.6006l-4.10059 -15.5c-2.2998 -8.5 -10.8994 -13.5996 -19.2998 -11.2998
|
||||
l-79.7002 21.7002l-71.8994 -42.2002l71.7998 -42.2002l79.7002 21.7002c8.39941 2.2998 17.0996 -2.7998 19.2998 -11.2998l4.09961 -15.5c2.30078 -8.5 -2.69922 -17.2998 -11.0996 -19.6006l-34.0996 -9.2998z" />
|
||||
<glyph glyph-name="trash-alt" unicode="" horiz-adv-x="448"
|
||||
d="M268 32c-6.62305 0 -12 5.37695 -12 12v216c0 6.62305 5.37695 12 12 12h24c6.62305 0 12 -5.37695 12 -12v-216c0 -6.62305 -5.37695 -12 -12 -12h-24zM432 368c8.83105 0 16 -7.16895 16 -16v-16c0 -8.83105 -7.16895 -16 -16 -16h-16v-336
|
||||
c0 -26.4922 -21.5078 -48 -48 -48h-288c-26.4922 0 -48 21.5078 -48 48v336h-16c-8.83105 0 -16 7.16895 -16 16v16c0 8.83105 7.16895 16 16 16h82.4102l34.0195 56.7002c8.39258 13.9844 23.6777 23.2998 41.1602 23.2998h100.82
|
||||
c0.0078125 0 -0.015625 0.0517578 -0.0078125 0.0517578c17.4824 0 32.7949 -9.36719 41.1875 -23.3516l34 -56.7002h82.4102zM171.84 397.09l-17.4502 -29.0898h139.221l-17.46 29.0898c-1.0498 1.74707 -2.95898 2.91016 -5.14355 2.91016h-0.00683594h-94
|
||||
c-0.00585938 0 -0.00683594 0.00683594 -0.0126953 0.00683594c-2.18457 0 -4.09766 -1.16992 -5.14746 -2.91699zM368 -16v336h-288v-336h288zM156 32c-6.62305 0 -12 5.37695 -12 12v216c0 6.62305 5.37695 12 12 12h24c6.62305 0 12 -5.37695 12 -12v-216
|
||||
c0 -6.62305 -5.37695 -12 -12 -12h-24z" />
|
||||
<glyph glyph-name="images" unicode="" horiz-adv-x="576"
|
||||
d="M480 32v-16c0 -26.5098 -21.4902 -48 -48 -48h-384c-26.5098 0 -48 21.4902 -48 48v256c0 26.5098 21.4902 48 48 48h16v-48h-10c-3.31152 0 -6 -2.68848 -6 -6v-244c0 -3.31152 2.68848 -6 6 -6h372c3.31152 0 6 2.68848 6 6v10h48zM522 368h-372
|
||||
c-3.31152 0 -6 -2.68848 -6 -6v-244c0 -3.31152 2.68848 -6 6 -6h372c3.31152 0 6 2.68848 6 6v244c0 3.31152 -2.68848 6 -6 6zM528 416c26.5098 0 48 -21.4902 48 -48v-256c0 -26.5098 -21.4902 -48 -48 -48h-384c-26.5098 0 -48 21.4902 -48 48v256
|
||||
c0 26.5098 21.4902 48 48 48h384zM264 304c0 -22.0908 -17.9092 -40 -40 -40s-40 17.9092 -40 40s17.9092 40 40 40s40 -17.9092 40 -40zM192 208l39.5146 39.5146c4.68652 4.68652 12.2842 4.68652 16.9717 0l39.5137 -39.5146l103.515 103.515
|
||||
c4.68652 4.68652 12.2842 4.68652 16.9717 0l71.5137 -71.5146v-80h-288v48z" />
|
||||
<glyph glyph-name="clipboard" unicode="" horiz-adv-x="384"
|
||||
d="M336 384c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h80c0 35.2998 28.7002 64 64 64s64 -28.7002 64 -64h80zM192 408c-13.2998 0 -24 -10.7002 -24 -24s10.7002 -24 24 -24s24 10.7002 24 24
|
||||
s-10.7002 24 -24 24zM336 -10v340c0 3.2998 -2.7002 6 -6 6h-42v-36c0 -6.59961 -5.40039 -12 -12 -12h-168c-6.59961 0 -12 5.40039 -12 12v36h-42c-3.2998 0 -6 -2.7002 -6 -6v-340c0 -3.2998 2.7002 -6 6 -6h276c3.2998 0 6 2.7002 6 6z" />
|
||||
<glyph glyph-name="arrow-alt-circle-down" unicode=""
|
||||
d="M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM256 -8c110.5 0 200 89.5 200 200s-89.5 200 -200 200s-200 -89.5 -200 -200s89.5 -200 200 -200zM224 308c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-116
|
||||
h67c10.7002 0 16.0996 -12.9004 8.5 -20.5l-99 -99c-4.7002 -4.7002 -12.2998 -4.7002 -17 0l-99 99c-7.5 7.59961 -2.2002 20.5 8.5 20.5h67v116z" />
|
||||
<glyph glyph-name="arrow-alt-circle-left" unicode=""
|
||||
d="M8 192c0 137 111 248 248 248s248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248zM456 192c0 110.5 -89.5 200 -200 200s-200 -89.5 -200 -200s89.5 -200 200 -200s200 89.5 200 200zM384 212v-40c0 -6.59961 -5.40039 -12 -12 -12h-116v-67
|
||||
c0 -10.7002 -12.9004 -16 -20.5 -8.5l-99 99c-4.7002 4.7002 -4.7002 12.2998 0 17l99 99c7.59961 7.59961 20.5 2.2002 20.5 -8.5v-67h116c6.59961 0 12 -5.40039 12 -12z" />
|
||||
<glyph glyph-name="arrow-alt-circle-right" unicode=""
|
||||
d="M504 192c0 -137 -111 -248 -248 -248s-248 111 -248 248s111 248 248 248s248 -111 248 -248zM56 192c0 -110.5 89.5 -200 200 -200s200 89.5 200 200s-89.5 200 -200 200s-200 -89.5 -200 -200zM128 172v40c0 6.59961 5.40039 12 12 12h116v67
|
||||
c0 10.7002 12.9004 16 20.5 8.5l99 -99c4.7002 -4.7002 4.7002 -12.2998 0 -17l-99 -99c-7.59961 -7.59961 -20.5 -2.2002 -20.5 8.5v67h-116c-6.59961 0 -12 5.40039 -12 12z" />
|
||||
<glyph glyph-name="arrow-alt-circle-up" unicode=""
|
||||
d="M256 -56c-137 0 -248 111 -248 248s111 248 248 248s248 -111 248 -248s-111 -248 -248 -248zM256 392c-110.5 0 -200 -89.5 -200 -200s89.5 -200 200 -200s200 89.5 200 200s-89.5 200 -200 200zM276 64h-40c-6.59961 0 -12 5.40039 -12 12v116h-67
|
||||
c-10.7002 0 -16 12.9004 -8.5 20.5l99 99c4.7002 4.7002 12.2998 4.7002 17 0l99 -99c7.59961 -7.59961 2.2002 -20.5 -8.5 -20.5h-67v-116c0 -6.59961 -5.40039 -12 -12 -12z" />
|
||||
<glyph glyph-name="gem" unicode="" horiz-adv-x="576"
|
||||
d="M464 448c4.09961 0 7.7998 -2 10.0996 -5.40039l99.9004 -147.199c2.90039 -4.40039 2.59961 -10.1006 -0.700195 -14.2002l-276 -340.8c-4.7998 -5.90039 -13.7998 -5.90039 -18.5996 0l-276 340.8c-3.2998 4 -3.60059 9.7998 -0.700195 14.2002l100 147.199
|
||||
c2.2002 3.40039 6 5.40039 10 5.40039h352zM444.7 400h-56.7998l51.6992 -96h68.4004zM242.6 400l-51.5996 -96h194l-51.7002 96h-90.7002zM131.3 400l-63.2998 -96h68.4004l51.6992 96h-56.7998zM88.2998 256l119.7 -160l-68.2998 160h-51.4004zM191.2 256l96.7998 -243.3
|
||||
l96.7998 243.3h-193.6zM368 96l119.6 160h-51.3994z" />
|
||||
<glyph glyph-name="money-bill-alt" unicode="" horiz-adv-x="640"
|
||||
d="M320 304c53.0195 0 96 -50.1396 96 -112c0 -61.8701 -43 -112 -96 -112c-53.0195 0 -96 50.1504 -96 112c0 61.8604 42.9805 112 96 112zM360 136v16c0 4.41992 -3.58008 8 -8 8h-16v88c0 4.41992 -3.58008 8 -8 8h-13.5801
|
||||
c-4.91113 0 -9.50586 -1.49316 -13.3096 -4.03027l-15.3301 -10.2197c-2.15332 -1.43262 -3.55957 -3.88379 -3.55957 -6.66113c0 -1.6377 0.493164 -3.16113 1.33887 -4.42871l8.88086 -13.3105c1.43164 -2.15234 3.88379 -3.55957 6.66113 -3.55957
|
||||
c1.6377 0 3.16016 0.494141 4.42871 1.33984l0.469727 0.310547v-55.4404h-16c-4.41992 0 -8 -3.58008 -8 -8v-16c0 -4.41992 3.58008 -8 8 -8h64c4.41992 0 8 3.58008 8 8zM608 384c17.6699 0 32 -14.3301 32 -32v-320c0 -17.6699 -14.3301 -32 -32 -32h-576
|
||||
c-17.6699 0 -32 14.3301 -32 32v320c0 17.6699 14.3301 32 32 32h576zM592 112v160c-35.3496 0 -64 28.6504 -64 64h-416c0 -35.3496 -28.6504 -64 -64 -64v-160c35.3496 0 64 -28.6504 64 -64h416c0 35.3496 28.6504 64 64 64z" />
|
||||
<glyph glyph-name="window-close" unicode=""
|
||||
d="M464 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-416c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h416zM464 22v340c0 3.2998 -2.7002 6 -6 6h-404c-3.2998 0 -6 -2.7002 -6 -6v-340c0 -3.2998 2.7002 -6 6 -6h404c3.2998 0 6 2.7002 6 6z
|
||||
M356.5 253.4l-61.4004 -61.4004l61.4004 -61.4004c4.59961 -4.59961 4.59961 -12.0996 0 -16.7998l-22.2998 -22.2998c-4.60059 -4.59961 -12.1006 -4.59961 -16.7998 0l-61.4004 61.4004l-61.4004 -61.4004c-4.59961 -4.59961 -12.0996 -4.59961 -16.7998 0
|
||||
l-22.2998 22.2998c-4.59961 4.60059 -4.59961 12.1006 0 16.7998l61.4004 61.4004l-61.4004 61.4004c-4.59961 4.59961 -4.59961 12.0996 0 16.7998l22.2998 22.2998c4.60059 4.59961 12.1006 4.59961 16.7998 0l61.4004 -61.4004l61.4004 61.4004
|
||||
c4.59961 4.59961 12.0996 4.59961 16.7998 0l22.2998 -22.2998c4.7002 -4.60059 4.7002 -12.1006 0 -16.7998z" />
|
||||
<glyph glyph-name="comment-dots" unicode=""
|
||||
d="M144 240c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32zM256 240c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32zM368 240c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32
|
||||
s-32 14.2998 -32 32s14.2998 32 32 32zM256 416c141.4 0 256 -93.0996 256 -208s-114.6 -208 -256 -208c-32.7998 0 -64 5.2002 -92.9004 14.2998c-29.0996 -20.5996 -77.5996 -46.2998 -139.1 -46.2998c-9.59961 0 -18.2998 5.7002 -22.0996 14.5
|
||||
c-3.80078 8.7998 -2 19 4.59961 26c0.5 0.400391 31.5 33.7998 46.4004 73.2002c-33 35.0996 -52.9004 78.7002 -52.9004 126.3c0 114.9 114.6 208 256 208zM256 48c114.7 0 208 71.7998 208 160s-93.2998 160 -208 160s-208 -71.7998 -208 -160
|
||||
c0 -42.2002 21.7002 -74.0996 39.7998 -93.4004l20.6006 -21.7998l-10.6006 -28.0996c-5.5 -14.5 -12.5996 -28.1006 -19.8994 -40.2002c23.5996 7.59961 43.1992 18.9004 57.5 29l19.5 13.7998l22.6992 -7.2002c25.3008 -8 51.7002 -12.0996 78.4004 -12.0996z" />
|
||||
<glyph glyph-name="smile-wink" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM365.8 138.4c10.2002 -8.5 11.6006 -23.6006 3.10059 -33.8008
|
||||
c-30 -36 -74.1006 -56.5996 -120.9 -56.5996s-90.9004 20.5996 -120.9 56.5996c-8.39941 10.2002 -7.09961 25.3008 3.10059 33.8008c10.0996 8.39941 25.2998 7.09961 33.7998 -3.10059c20.7998 -25.0996 51.5 -39.3994 84 -39.3994s63.2002 14.3994 84 39.3994
|
||||
c8.5 10.2002 23.5996 11.6006 33.7998 3.10059zM168 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM328 268c25.7002 0 55.9004 -16.9004 59.7002 -42.0996c1.7998 -11.1006 -11.2998 -18.2002 -19.7998 -10.8008l-9.5 8.5
|
||||
c-14.8008 13.2002 -46.2002 13.2002 -61 0l-9.5 -8.5c-8.30078 -7.39941 -21.5 -0.399414 -19.8008 10.8008c4 25.1992 34.2002 42.0996 59.9004 42.0996z" />
|
||||
<glyph glyph-name="angry" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM248 136c33.5996 0 65.2002 -14.7998 86.7998 -40.5996
|
||||
c8.40039 -10.2002 7.10059 -25.3008 -3.09961 -33.8008c-10.6006 -8.89941 -25.7002 -6.69922 -33.7998 3c-24.8008 29.7002 -75 29.7002 -99.8008 0c-8.5 -10.1992 -23.5996 -11.5 -33.7998 -3s-11.5996 23.6006 -3.09961 33.8008
|
||||
c21.5996 25.7998 53.2002 40.5996 86.7998 40.5996zM200 208c0 -17.7002 -14.2998 -32.0996 -32 -32.0996s-32 14.2998 -32 32c0 6.19922 2.2002 11.6992 5.2998 16.5996l-28.2002 8.5c-12.6992 3.7998 -19.8994 17.2002 -16.0996 29.9004
|
||||
c3.7998 12.6992 17.0996 20 29.9004 16.0996l80 -24c12.6992 -3.7998 19.8994 -17.2002 16.0996 -29.9004c-3.09961 -10.3994 -12.7002 -17.0996 -23 -17.0996zM399 262.9c3.7998 -12.7002 -3.40039 -26.1006 -16.0996 -29.8008l-28.2002 -8.5
|
||||
c3.09961 -4.89941 5.2998 -10.3994 5.2998 -16.5996c0 -17.7002 -14.2998 -32 -32 -32s-32 14.2998 -32 32c-10.2998 0 -19.9004 6.7002 -23 17.0996c-3.7998 12.7002 3.40039 26.1006 16.0996 29.9004l80 24c12.8008 3.7998 26.1006 -3.40039 29.9004 -16.0996z" />
|
||||
<glyph glyph-name="dizzy" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM214.2 209.9
|
||||
c-7.90039 -7.90039 -20.5 -7.90039 -28.4004 -0.200195l-17.7998 17.7998l-17.7998 -17.7998c-7.7998 -7.7998 -20.5 -7.7998 -28.2998 0c-7.80078 7.7998 -7.80078 20.5 0 28.2998l17.8994 17.9004l-17.8994 17.8994c-7.80078 7.7998 -7.80078 20.5 0 28.2998
|
||||
c7.7998 7.80078 20.5 7.80078 28.2998 0l17.7998 -17.7998l17.9004 17.9004c7.7998 7.7998 20.5 7.7998 28.2998 0s7.7998 -20.5 0 -28.2998l-17.9004 -17.9004l17.9004 -17.7998c7.7998 -7.7998 7.7998 -20.5 0 -28.2998zM374.2 302.1
|
||||
c7.7002 -7.7998 7.7002 -20.3994 0 -28.1992l-17.9004 -17.9004l17.7998 -18c7.80078 -7.7998 7.80078 -20.5 0 -28.2998c-7.7998 -7.7998 -20.5 -7.7998 -28.2998 0l-17.7998 17.7998l-17.7998 -17.7998c-7.7998 -7.7998 -20.5 -7.7998 -28.2998 0
|
||||
c-7.80078 7.7998 -7.80078 20.5 0 28.2998l17.8994 17.9004l-17.8994 17.8994c-7.80078 7.7998 -7.80078 20.5 0 28.2998c7.7998 7.80078 20.5 7.80078 28.2998 0l17.7998 -17.7998l17.9004 17.7998c7.7998 7.80078 20.5 7.80078 28.2998 0zM248 176
|
||||
c35.2998 0 64 -28.7002 64 -64s-28.7002 -64 -64 -64s-64 28.7002 -64 64s28.7002 64 64 64z" />
|
||||
<glyph glyph-name="flushed" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM344 304c44.2002 0 80 -35.7998 80 -80s-35.7998 -80 -80 -80
|
||||
s-80 35.7998 -80 80s35.7998 80 80 80zM344 176c26.5 0 48 21.5 48 48s-21.5 48 -48 48s-48 -21.5 -48 -48s21.5 -48 48 -48zM344 248c13.2998 0 24 -10.7002 24 -24s-10.7002 -24 -24 -24s-24 10.7002 -24 24s10.7002 24 24 24zM232 224c0 -44.2002 -35.7998 -80 -80 -80
|
||||
s-80 35.7998 -80 80s35.7998 80 80 80s80 -35.7998 80 -80zM152 176c26.5 0 48 21.5 48 48s-21.5 48 -48 48s-48 -21.5 -48 -48s21.5 -48 48 -48zM152 248c13.2998 0 24 -10.7002 24 -24s-10.7002 -24 -24 -24s-24 10.7002 -24 24s10.7002 24 24 24zM312 104
|
||||
c13.2002 0 24 -10.7998 24 -24s-10.7998 -24 -24 -24h-128c-13.2002 0 -24 10.7998 -24 24s10.7998 24 24 24h128z" />
|
||||
<glyph glyph-name="frown-open" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM200 240c0 -17.7002 -14.2998 -32 -32 -32s-32 14.2998 -32 32
|
||||
s14.2998 32 32 32s32 -14.2998 32 -32zM328 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32zM248 160c35.5996 0 88.7998 -21.2998 95.7998 -61.2002c2 -11.7998 -9.09961 -21.5996 -20.5 -18.0996
|
||||
c-31.2002 9.59961 -59.3994 15.2998 -75.2998 15.2998s-44.0996 -5.7002 -75.2998 -15.2998c-11.5 -3.40039 -22.5 6.2998 -20.5 18.0996c7 39.9004 60.2002 61.2002 95.7998 61.2002z" />
|
||||
<glyph glyph-name="grimace" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM168 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32
|
||||
s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM328 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM344 192c26.5 0 48 -21.5 48 -48v-32c0 -26.5 -21.5 -48 -48 -48h-192c-26.5 0 -48 21.5 -48 48v32c0 26.5 21.5 48 48 48
|
||||
h192zM176 96v24h-40v-8c0 -8.7998 7.2002 -16 16 -16h24zM176 136v24h-24c-8.7998 0 -16 -7.2002 -16 -16v-8h40zM240 96v24h-48v-24h48zM240 136v24h-48v-24h48zM304 96v24h-48v-24h48zM304 136v24h-48v-24h48zM360 112v8h-40v-24h24c8.7998 0 16 7.2002 16 16zM360 136v8
|
||||
c0 8.7998 -7.2002 16 -16 16h-24v-24h40z" />
|
||||
<glyph glyph-name="grin" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM353.6 143.4c10 3.09961 19.3008 -5.5 17.7002 -15.3008
|
||||
c-8 -47.0996 -71.2998 -80 -123.3 -80s-115.4 32.9004 -123.3 80c-1.7002 9.90039 7.7998 18.4004 17.7002 15.3008c26 -8.30078 64.3994 -13.1006 105.6 -13.1006s79.7002 4.7998 105.6 13.1006zM168 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32
|
||||
s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM328 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32z" />
|
||||
<glyph glyph-name="grin-alt" unicode="" horiz-adv-x="496"
|
||||
d="M200.3 200c-7.5 -11.4004 -24.5996 -12 -32.7002 0c-12.3994 18.7002 -15.1992 37.2998 -15.6992 56c0.599609 18.7002 3.2998 37.2998 15.6992 56c7.60059 11.4004 24.7002 12 32.7002 0c12.4004 -18.7002 15.2002 -37.2998 15.7002 -56
|
||||
c-0.599609 -18.7002 -3.2998 -37.2998 -15.7002 -56zM328.3 200c-7.5 -11.4004 -24.5996 -12 -32.7002 0c-12.3994 18.7002 -15.1992 37.2998 -15.6992 56c0.599609 18.7002 3.2998 37.2998 15.6992 56c7.60059 11.4004 24.7002 12 32.7002 0
|
||||
c12.4004 -18.7002 15.2002 -37.2998 15.7002 -56c-0.599609 -18.7002 -3.2998 -37.2998 -15.7002 -56zM248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200
|
||||
s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM353.6 143.4c10 3.09961 19.3008 -5.5 17.7002 -15.3008c-8 -47.0996 -71.2998 -80 -123.3 -80s-115.4 32.8008 -123.3 80c-1.7002 10 7.7998 18.4004 17.7002 15.3008c26 -8.30078 64.3994 -13.1006 105.6 -13.1006
|
||||
s79.7002 4.7998 105.6 13.1006z" />
|
||||
<glyph glyph-name="grin-beam" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM353.6 143.4c10 3.09961 19.3008 -5.5 17.7002 -15.3008
|
||||
c-8 -47.0996 -71.2998 -80 -123.3 -80s-115.4 32.9004 -123.3 80c-1.7002 10 7.89941 18.4004 17.7002 15.3008c26 -8.30078 64.3994 -13.1006 105.6 -13.1006s79.7002 4.7998 105.6 13.1006zM117.7 216.3c-3.60059 1.10059 -6 4.60059 -5.7002 8.2998
|
||||
c3.2998 42.1006 32.2002 71.4004 56 71.4004s52.7002 -29.2998 56 -71.4004c0.299805 -3.7998 -2.09961 -7.19922 -5.7002 -8.2998c-3.09961 -1 -7.2002 0 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996s-23.7998 -7.89941 -31.5 -21.5996
|
||||
l-9.5 -17c-1.90039 -3.2002 -5.7998 -4.7998 -9.2998 -3.7002zM277.7 216.3c-3.60059 1.10059 -6 4.60059 -5.7002 8.2998c3.2998 42.1006 32.2002 71.4004 56 71.4004s52.7002 -29.2998 56 -71.4004c0.299805 -3.7998 -2.09961 -7.19922 -5.7002 -8.2998
|
||||
c-3.09961 -1 -7.2002 0 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996s-23.7998 -7.89941 -31.5 -21.5996l-9.5 -17c-1.90039 -3.2002 -5.7998 -4.7998 -9.2998 -3.7002z" />
|
||||
<glyph glyph-name="grin-beam-sweat" unicode="" horiz-adv-x="496"
|
||||
d="M440 288c-29.5 0 -53.2998 26.2998 -53.2998 58.7002c0 25 31.7002 75.5 46.2002 97.2998c3.5 5.2998 10.5996 5.2998 14.1992 0c14.5 -21.7998 46.2002 -72.2998 46.2002 -97.2998c0 -32.4004 -23.7998 -58.7002 -53.2998 -58.7002zM248 48
|
||||
c-51.9004 0 -115.3 32.9004 -123.3 80c-1.7002 10 7.89941 18.4004 17.7002 15.2998c26 -8.2998 64.3994 -13.0996 105.6 -13.0996s79.7002 4.7998 105.6 13.0996c10 3.2002 19.4004 -5.39941 17.7002 -15.2998c-8 -47.0996 -71.3994 -80 -123.3 -80zM378.3 216.3
|
||||
c-3.09961 -0.899414 -7.2002 0.100586 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996s-23.7998 -7.89941 -31.5 -21.5996l-9.5 -17c-1.90039 -3.2002 -5.7998 -4.7998 -9.2998 -3.7002c-3.60059 1.10059 -6 4.60059 -5.7002 8.2998
|
||||
c3.2998 42.1006 32.2002 71.4004 56 71.4004s52.7002 -29.2998 56 -71.4004c0.299805 -3.7998 -2.09961 -7.19922 -5.7002 -8.2998zM483.6 269.2c8 -24.2998 12.4004 -50.2002 12.4004 -77.2002c0 -137 -111 -248 -248 -248s-248 111 -248 248s111 248 248 248
|
||||
c45.7002 0 88.4004 -12.5996 125.2 -34.2002c-10.9004 -21.5996 -15.5 -36.2002 -17.2002 -45.7002c-31.2002 20.1006 -68.2002 31.9004 -108 31.9004c-110.3 0 -200 -89.7002 -200 -200s89.7002 -200 200 -200s200 89.7002 200 200
|
||||
c0 22.5 -3.90039 44.0996 -10.7998 64.2998c0.399414 0 21.7998 -2.7998 46.3994 12.9004zM168 258.6c-12.2998 0 -23.7998 -7.7998 -31.5 -21.5996l-9.5 -17c-1.90039 -3.2002 -5.7998 -4.7998 -9.2998 -3.7002c-3.60059 1.10059 -6 4.60059 -5.7002 8.2998
|
||||
c3.2998 42.1006 32.2002 71.4004 56 71.4004s52.7002 -29.2998 56 -71.4004c0.299805 -3.7998 -2.09961 -7.19922 -5.7002 -8.2998c-3.09961 -1 -7.2002 0 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996z" />
|
||||
<glyph glyph-name="grin-hearts" unicode="" horiz-adv-x="496"
|
||||
d="M353.6 143.4c10 3.09961 19.3008 -5.5 17.7002 -15.3008c-8 -47.0996 -71.2998 -80 -123.3 -80s-115.4 32.8008 -123.3 80c-1.7002 10 7.89941 18.4004 17.7002 15.3008c26 -8.30078 64.3994 -13.1006 105.6 -13.1006s79.7002 4.7998 105.6 13.1006zM200.8 192.3
|
||||
l-70.2002 18.1006c-20.3994 5.2998 -31.8994 27 -24.1992 47.1992c6.69922 17.7002 26.6992 26.7002 44.8994 22l7.10059 -1.89941l2 7.09961c5.09961 18.1006 22.8994 30.9004 41.5 27.9004c21.3994 -3.40039 34.3994 -24.2002 28.7998 -44.5l-19.4004 -69.9004
|
||||
c-1.2998 -4.5 -6 -7.2002 -10.5 -6zM389.6 257.6c7.7002 -20.1992 -3.7998 -41.7998 -24.1992 -47.0996l-70.2002 -18.2002c-4.60059 -1.2002 -9.2998 1.5 -10.5 6l-19.4004 69.9004c-5.59961 20.2998 7.40039 41.0996 28.7998 44.5c18.7002 3 36.5 -9.7998 41.5 -27.9004
|
||||
l2 -7.09961l7.10059 1.89941c18.2002 4.7002 38.2002 -4.39941 44.8994 -22zM248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200
|
||||
s89.7002 -200 200 -200z" />
|
||||
<glyph glyph-name="grin-squint" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM353.6 143.4c10 3.09961 19.3008 -5.5 17.7002 -15.3008
|
||||
c-8 -47.0996 -71.2998 -80 -123.3 -80s-115.4 32.9004 -123.3 80c-1.7002 9.90039 7.7998 18.4004 17.7002 15.3008c26 -8.30078 64.3994 -13.1006 105.6 -13.1006s79.7002 4.7998 105.6 13.1006zM118.9 184.2c-3.80078 4.39941 -3.90039 11 -0.100586 15.5l33.6006 40.2998
|
||||
l-33.6006 40.2998c-3.7002 4.5 -3.7002 11 0.100586 15.5c3.89941 4.40039 10.1992 5.5 15.2998 2.5l80 -48c3.59961 -2.2002 5.7998 -6.09961 5.7998 -10.2998s-2.2002 -8.09961 -5.7998 -10.2998l-80 -48c-5.40039 -3.2002 -11.7002 -1.7002 -15.2998 2.5zM361.8 181.7
|
||||
l-80 48c-3.59961 2.2002 -5.7998 6.09961 -5.7998 10.2998s2.2002 8.09961 5.7998 10.2998l80 48c5.10059 2.90039 11.5 1.90039 15.2998 -2.5c3.80078 -4.5 3.90039 -11 0.100586 -15.5l-33.6006 -40.2998l33.6006 -40.2998c3.7002 -4.5 3.7002 -11 -0.100586 -15.5
|
||||
c-3.59961 -4.2002 -9.89941 -5.7002 -15.2998 -2.5z" />
|
||||
<glyph glyph-name="grin-squint-tears" unicode=""
|
||||
d="M117.1 63.9004c6.30078 0.899414 11.7002 -4.5 10.9004 -10.9004c-3.7002 -25.7998 -13.7002 -84 -30.5996 -100.9c-22 -21.8994 -57.9004 -21.5 -80.3008 0.900391c-22.3994 22.4004 -22.7998 58.4004 -0.899414 80.2998
|
||||
c16.8994 16.9004 75.0996 26.9004 100.899 30.6006zM75.9004 105.6c-19.6006 -3.89941 -35.1006 -8.09961 -47.3008 -12.1992c-39.2998 90.5996 -22.0996 199.899 52 274c48.5 48.3994 111.9 72.5996 175.4 72.5996c38.9004 0 77.7998 -9.2002 113.2 -27.4004
|
||||
c-4 -12.1992 -8.2002 -28 -12 -48.2998c-30.4004 17.9004 -65 27.7002 -101.2 27.7002c-53.4004 0 -103.6 -20.7998 -141.4 -58.5996c-61.5996 -61.5 -74.2998 -153.4 -38.6992 -227.801zM428.2 293.2c20.2998 3.89941 36.2002 8 48.5 12
|
||||
c47.8994 -93.2002 32.8994 -210.5 -45.2002 -288.601c-48.5 -48.3994 -111.9 -72.5996 -175.4 -72.5996c-33.6992 0 -67.2998 7 -98.6992 20.5996c4.19922 12.2002 8.2998 27.7002 12.1992 47.2002c26.6006 -12.7998 55.9004 -19.7998 86.4004 -19.7998
|
||||
c53.4004 0 103.6 20.7998 141.4 58.5996c65.6992 65.7002 75.7998 166 30.7998 242.601zM394.9 320.1c-6.30078 -0.899414 -11.7002 4.5 -10.9004 10.9004c3.7002 25.7998 13.7002 84 30.5996 100.9c22 21.8994 57.9004 21.5 80.3008 -0.900391
|
||||
c22.3994 -22.4004 22.7998 -58.4004 0.899414 -80.2998c-16.8994 -16.9004 -75.0996 -26.9004 -100.899 -30.6006zM207.9 211.8c3 -3 4.19922 -7.2998 3.19922 -11.5l-22.5996 -90.5c-1.40039 -5.39941 -6.2002 -9.09961 -11.7002 -9.09961h-0.899414
|
||||
c-5.80078 0.5 -10.5 5.09961 -11 10.8994l-4.80078 52.3008l-52.2998 4.7998c-5.7998 0.5 -10.3994 5.2002 -10.8994 11c-0.400391 5.89941 3.39941 11.2002 9.09961 12.5996l90.5 22.7002c4.2002 1 8.40039 -0.200195 11.4004 -3.2002zM247.6 236.9
|
||||
c-0.0996094 0 -6.39941 -1.80078 -11.3994 3.19922c-3 3 -4.2002 7.30078 -3.2002 11.4004l22.5996 90.5c1.40039 5.7002 7 9.2002 12.6006 9.09961c5.7998 -0.5 10.5 -5.09961 11 -10.8994l4.7998 -52.2998l52.2998 -4.80078c5.7998 -0.5 10.4004 -5.19922 10.9004 -11
|
||||
c0.399414 -5.89941 -3.40039 -11.1992 -9.10059 -12.5996zM299.6 148.4c29.1006 29.0996 53 59.5996 65.3008 83.7998c4.89941 9.2998 17.5996 9.89941 23.3994 1.7002c27.7002 -38.9004 6.10059 -106.9 -30.5996 -143.7s-104.8 -58.2998 -143.7 -30.6006
|
||||
c-8.2998 5.90039 -7.5 18.6006 1.7002 23.4004c24.2002 12.5 54.7998 36.2998 83.8994 65.4004z" />
|
||||
<glyph glyph-name="grin-stars" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM353.6 143.4c10 3.09961 19.3008 -5.5 17.7002 -15.3008
|
||||
c-8 -47.0996 -71.2998 -80 -123.3 -80s-115.4 32.8008 -123.3 80c-1.7002 10 7.89941 18.4004 17.7002 15.3008c26 -8.30078 64.3994 -13.1006 105.6 -13.1006s79.7002 4.7998 105.6 13.1006zM125.7 200.9l6.09961 34.8994l-25.3994 24.6006
|
||||
c-4.60059 4.59961 -1.90039 12.2998 4.2998 13.1992l34.8994 5l15.5 31.6006c2.90039 5.7998 11 5.7998 13.9004 0l15.5 -31.6006l34.9004 -5c6.19922 -1 8.7998 -8.69922 4.2998 -13.1992l-25.4004 -24.6006l6 -34.8994c1 -6.2002 -5.39941 -11 -11 -7.90039
|
||||
l-31.2998 16.2998l-31.2998 -16.2998c-5.60059 -3.09961 -12 1.7002 -11 7.90039zM385.4 273.6c6.19922 -1 8.89941 -8.59961 4.39941 -13.1992l-25.3994 -24.6006l6 -34.8994c1 -6.2002 -5.40039 -11 -11 -7.90039l-31.3008 16.2998l-31.2998 -16.2998
|
||||
c-5.59961 -3.09961 -12 1.7002 -11 7.90039l6 34.8994l-25.3994 24.6006c-4.60059 4.59961 -1.90039 12.2998 4.2998 13.1992l34.8994 5l15.5 31.6006c2.90039 5.7998 11 5.7998 13.9004 0l15.5 -31.6006z" />
|
||||
<glyph glyph-name="grin-tears" unicode="" horiz-adv-x="640"
|
||||
d="M117.1 191.9c6.30078 0.899414 11.7002 -4.5 10.9004 -10.9004c-3.7002 -25.7998 -13.7002 -84 -30.5996 -100.9c-22 -21.8994 -57.9004 -21.5 -80.3008 0.900391c-22.3994 22.4004 -22.7998 58.4004 -0.899414 80.2998c16.8994 16.9004 75.0996 26.9004 100.899 30.6006
|
||||
zM623.8 161.3c21.9004 -21.8994 21.5 -57.8994 -0.799805 -80.2002c-22.4004 -22.3994 -58.4004 -22.7998 -80.2998 -0.899414c-16.9004 16.8994 -26.9004 75.0996 -30.6006 100.899c-0.899414 6.30078 4.5 11.7002 10.8008 10.8008
|
||||
c25.7998 -3.7002 84 -13.7002 100.899 -30.6006zM497.2 99.5996c12.3994 -37.2998 25.0996 -43.7998 28.2998 -46.5c-44.5996 -65.7998 -120 -109.1 -205.5 -109.1s-160.9 43.2998 -205.5 109.1c3.09961 2.60059 15.7998 9.10059 28.2998 46.5
|
||||
c33.4004 -63.8994 100.3 -107.6 177.2 -107.6s143.8 43.7002 177.2 107.6zM122.7 223.5c-2.40039 0.299805 -5 2.5 -49.5 -6.90039c12.3994 125.4 118.1 223.4 246.8 223.4s234.4 -98 246.8 -223.5c-44.2998 9.40039 -47.3994 7.2002 -49.5 7
|
||||
c-15.2002 95.2998 -97.7998 168.5 -197.3 168.5s-182.1 -73.2002 -197.3 -168.5zM320 48c-51.9004 0 -115.3 32.9004 -123.3 80c-1.7002 10 7.89941 18.4004 17.7002 15.2998c26 -8.2998 64.3994 -13.0996 105.6 -13.0996s79.7002 4.7998 105.6 13.0996
|
||||
c10 3.2002 19.4004 -5.39941 17.7002 -15.2998c-8 -47.0996 -71.3994 -80 -123.3 -80zM450.3 216.3c-3.09961 -0.899414 -7.2002 0.100586 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996s-23.7998 -7.89941 -31.5 -21.5996l-9.5 -17
|
||||
c-1.90039 -3.2002 -5.7998 -4.7998 -9.2998 -3.7002c-3.60059 1.10059 -6 4.60059 -5.7002 8.2998c3.2998 42.1006 32.2002 71.4004 56 71.4004s52.7002 -29.2998 56 -71.4004c0.299805 -3.7998 -2.09961 -7.19922 -5.7002 -8.2998zM240 258.6
|
||||
c-12.2998 0 -23.7998 -7.7998 -31.5 -21.5996l-9.5 -17c-1.90039 -3.2002 -5.7998 -4.7998 -9.2998 -3.7002c-3.60059 1.10059 -6 4.60059 -5.7002 8.2998c3.2998 42.1006 32.2002 71.4004 56 71.4004s52.7002 -29.2998 56 -71.4004
|
||||
c0.299805 -3.7998 -2.09961 -7.19922 -5.7002 -8.2998c-3.09961 -1 -7.2002 0 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996z" />
|
||||
<glyph glyph-name="grin-tongue" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM312 40h0.0996094v43.7998l-17.6992 8.7998c-15.1006 7.60059 -31.5 -1.69922 -34.9004 -16.5l-2.7998 -12.0996c-2.10059 -9.2002 -15.2002 -9.2002 -17.2998 0
|
||||
l-2.80078 12.0996c-3.39941 14.8008 -19.8994 24 -34.8994 16.5l-17.7002 -8.7998v-42.7998c0 -35.2002 28 -64.5 63.0996 -65c35.8008 -0.5 64.9004 28.4004 64.9004 64zM340.2 14.7002c64 33.3994 107.8 100.3 107.8 177.3c0 110.3 -89.7002 200 -200 200
|
||||
s-200 -89.7002 -200 -200c0 -77 43.7998 -143.9 107.8 -177.3c-2.2002 8.09961 -3.7998 16.5 -3.7998 25.2998v43.5c-14.2002 12.4004 -24.4004 27.5 -27.2998 44.5c-1.7002 10 7.7998 18.4004 17.7002 15.2998c26 -8.2998 64.3994 -13.0996 105.6 -13.0996
|
||||
s79.7002 4.7998 105.6 13.0996c10 3.2002 19.4004 -5.39941 17.7002 -15.2998c-2.89941 -17 -13.0996 -32.0996 -27.2998 -44.5v-43.5c0 -8.7998 -1.59961 -17.2002 -3.7998 -25.2998zM168 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32
|
||||
s14.2998 32 32 32zM328 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32z" />
|
||||
<glyph glyph-name="grin-tongue-squint" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM312 40h0.0996094v43.7998l-17.6992 8.7998c-15.1006 7.60059 -31.5 -1.69922 -34.9004 -16.5l-2.7998 -12.0996c-2.10059 -9.2002 -15.2002 -9.2002 -17.2998 0
|
||||
l-2.80078 12.0996c-3.39941 14.8008 -19.8994 24 -34.8994 16.5l-17.7002 -8.7998v-42.7998c0 -35.2002 28 -64.5 63.0996 -65c35.8008 -0.5 64.9004 28.4004 64.9004 64zM340.2 14.7002c64 33.3994 107.8 100.3 107.8 177.3c0 110.3 -89.7002 200 -200 200
|
||||
s-200 -89.7002 -200 -200c0 -77 43.7998 -143.9 107.8 -177.3c-2.2002 8.09961 -3.7998 16.5 -3.7998 25.2998v43.5c-14.2002 12.4004 -24.4004 27.5 -27.2998 44.5c-1.7002 10 7.7998 18.4004 17.7002 15.2998c26 -8.2998 64.3994 -13.0996 105.6 -13.0996
|
||||
s79.7002 4.7998 105.6 13.0996c10 3.2002 19.4004 -5.39941 17.7002 -15.2998c-2.89941 -17 -13.0996 -32.0996 -27.2998 -44.5v-43.5c0 -8.7998 -1.59961 -17.2002 -3.7998 -25.2998zM377.1 295.8c3.80078 -4.39941 3.90039 -11 0.100586 -15.5l-33.6006 -40.2998
|
||||
l33.6006 -40.2998c3.7002 -4.5 3.7002 -11 -0.100586 -15.5c-3.59961 -4.2002 -9.89941 -5.7002 -15.2998 -2.5l-80 48c-3.59961 2.2002 -5.7998 6.09961 -5.7998 10.2998s2.2002 8.09961 5.7998 10.2998l80 48c5 3 11.5 1.90039 15.2998 -2.5zM214.2 250.3
|
||||
c3.59961 -2.2002 5.7998 -6.09961 5.7998 -10.2998s-2.2002 -8.09961 -5.7998 -10.2998l-80 -48c-5.40039 -3.2002 -11.7002 -1.7002 -15.2998 2.5c-3.80078 4.5 -3.90039 11 -0.100586 15.5l33.6006 40.2998l-33.6006 40.2998c-3.7002 4.5 -3.7002 11 0.100586 15.5
|
||||
c3.89941 4.5 10.2998 5.5 15.2998 2.5z" />
|
||||
<glyph glyph-name="grin-tongue-wink" unicode="" horiz-adv-x="496"
|
||||
d="M152 268c25.7002 0 55.9004 -16.9004 59.7998 -42.0996c0.799805 -5 -1.7002 -10 -6.09961 -12.4004c-5.7002 -3.09961 -11.2002 -0.599609 -13.7002 1.59961l-9.5 8.5c-14.7998 13.2002 -46.2002 13.2002 -61 0l-9.5 -8.5
|
||||
c-3.7998 -3.39941 -9.2998 -4 -13.7002 -1.59961c-4.39941 2.40039 -6.89941 7.40039 -6.09961 12.4004c3.89941 25.1992 34.0996 42.0996 59.7998 42.0996zM328 320c44.2002 0 80 -35.7998 80 -80s-35.7998 -80 -80 -80s-80 35.7998 -80 80s35.7998 80 80 80zM328 192
|
||||
c26.5 0 48 21.5 48 48s-21.5 48 -48 48s-48 -21.5 -48 -48s21.5 -48 48 -48zM328 264c13.2998 0 24 -10.7002 24 -24s-10.7002 -24 -24 -24s-24 10.7002 -24 24s10.7002 24 24 24zM248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248z
|
||||
M312 40h0.0996094v43.7998l-17.6992 8.7998c-15.1006 7.60059 -31.5 -1.69922 -34.9004 -16.5l-2.7998 -12.0996c-2.10059 -9.2002 -15.2002 -9.2002 -17.2998 0l-2.80078 12.0996c-3.39941 14.8008 -19.8994 24 -34.8994 16.5l-17.7002 -8.7998v-42.7998
|
||||
c0 -35.2002 28 -64.5 63.0996 -65c35.8008 -0.5 64.9004 28.4004 64.9004 64zM340.2 14.7002c64 33.3994 107.8 100.3 107.8 177.3c0 110.3 -89.7002 200 -200 200s-200 -89.7002 -200 -200c0 -77 43.7998 -143.9 107.8 -177.3
|
||||
c-2.2002 8.09961 -3.7998 16.5 -3.7998 25.2998v43.5c-14.2002 12.4004 -24.4004 27.5 -27.2998 44.5c-1.7002 10 7.7998 18.4004 17.7002 15.2998c26 -8.2998 64.3994 -13.0996 105.6 -13.0996s79.7002 4.7998 105.6 13.0996c10 3.2002 19.4004 -5.39941 17.7002 -15.2998
|
||||
c-2.89941 -17 -13.0996 -32.0996 -27.2998 -44.5v-43.5c0 -8.7998 -1.59961 -17.2002 -3.7998 -25.2998z" />
|
||||
<glyph glyph-name="grin-wink" unicode="" horiz-adv-x="496"
|
||||
d="M328 268c25.6904 0 55.8799 -16.9199 59.8701 -42.1201c1.72949 -11.0898 -11.3506 -18.2695 -19.8301 -10.8398l-9.5498 8.47949c-14.8105 13.1904 -46.1602 13.1904 -60.9707 0l-9.5498 -8.47949c-8.33008 -7.40039 -21.5801 -0.379883 -19.8301 10.8398
|
||||
c3.98047 25.2002 34.1699 42.1201 59.8604 42.1201zM168 208c-17.6699 0 -32 14.3301 -32 32s14.3301 32 32 32s32 -14.3301 32 -32s-14.3301 -32 -32 -32zM353.55 143.36c10.04 3.13965 19.3906 -5.4502 17.71 -15.3408
|
||||
c-7.92969 -47.1494 -71.3193 -80.0195 -123.26 -80.0195s-115.33 32.8701 -123.26 80.0195c-1.69043 9.9707 7.76953 18.4707 17.71 15.3408c25.9297 -8.31055 64.3994 -13.0605 105.55 -13.0605s79.6201 4.75977 105.55 13.0605zM248 440c136.97 0 248 -111.03 248 -248
|
||||
s-111.03 -248 -248 -248s-248 111.03 -248 248s111.03 248 248 248zM248 -8c110.28 0 200 89.7197 200 200s-89.7197 200 -200 200s-200 -89.7197 -200 -200s89.7197 -200 200 -200z" />
|
||||
<glyph glyph-name="kiss" unicode="" horiz-adv-x="496"
|
||||
d="M168 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32zM304 140c0 -13 -13.4004 -27.2998 -35.0996 -36.4004c21.7998 -8.69922 35.1992 -23 35.1992 -36c0 -19.1992 -28.6992 -41.5 -71.5 -44h-0.5
|
||||
c-3.69922 0 -7 2.60059 -7.7998 6.2002c-0.899414 3.7998 1.10059 7.7002 4.7002 9.2002l17 7.2002c12.9004 5.5 20.7002 13.5 20.7002 21.5s-7.7998 16 -20.7998 21.5l-16.9004 7.2002c-6 2.59961 -5.7002 12.3994 0 14.7998l17 7.2002
|
||||
c12.9004 5.5 20.7002 13.5 20.7002 21.5s-7.7998 16 -20.7998 21.5l-16.9004 7.19922c-3.59961 1.5 -5.59961 5.40039 -4.7002 9.2002c0.799805 3.7998 4.40039 6.60059 8.2002 6.2002c42.7002 -2.5 71.5 -24.7998 71.5 -44zM248 440c137 0 248 -111 248 -248
|
||||
s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM328 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32z
|
||||
" />
|
||||
<glyph glyph-name="kiss-beam" unicode="" horiz-adv-x="496"
|
||||
d="M168 296c23.7998 0 52.7002 -29.2998 55.7998 -71.4004c0.299805 -3.7998 -2 -7.19922 -5.59961 -8.2998c-3.10059 -1 -7.2002 0 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996c-12.3008 0 -23.8008 -7.89941 -31.5 -21.5996l-9.5 -17
|
||||
c-1.80078 -3.2002 -5.80078 -4.7002 -9.30078 -3.7002c-3.59961 1.10059 -5.89941 4.60059 -5.59961 8.2998c3.2998 42.1006 32.2002 71.4004 56 71.4004zM248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8
|
||||
c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM304 140c0 -13 -13.4004 -27.2998 -35.0996 -36.4004c21.7998 -8.69922 35.1992 -23 35.1992 -36c0 -19.1992 -28.6992 -41.5 -71.5 -44h-0.5
|
||||
c-3.69922 0 -7 2.60059 -7.7998 6.2002c-0.899414 3.7998 1.10059 7.7002 4.7002 9.2002l17 7.2002c12.9004 5.5 20.7002 13.5 20.7002 21.5s-7.7998 16 -20.7998 21.5l-16.9004 7.2002c-6 2.59961 -5.7002 12.3994 0 14.7998l17 7.2002
|
||||
c12.9004 5.5 20.7002 13.5 20.7002 21.5s-7.7998 16 -20.7998 21.5l-16.9004 7.19922c-3.59961 1.5 -5.59961 5.40039 -4.7002 9.2002c0.799805 3.7998 4.40039 6.60059 8.2002 6.2002c42.7002 -2.5 71.5 -24.7998 71.5 -44zM328 296
|
||||
c23.7998 0 52.7002 -29.2998 55.7998 -71.4004c0.299805 -3.7998 -2 -7.19922 -5.59961 -8.2998c-3.10059 -1 -7.2002 0 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996c-12.3008 0 -23.8008 -7.89941 -31.5 -21.5996l-9.5 -17
|
||||
c-1.80078 -3.2002 -5.80078 -4.7002 -9.30078 -3.7002c-3.59961 1.10059 -5.89941 4.60059 -5.59961 8.2998c3.2998 42.1006 32.2002 71.4004 56 71.4004z" />
|
||||
<glyph glyph-name="kiss-wink-heart" unicode="" horiz-adv-x="504"
|
||||
d="M304 139.5c0 -13 -13.4004 -27.2998 -35.0996 -36.4004c21.7998 -8.69922 35.1992 -23 35.1992 -36c0 -19.1992 -28.6992 -41.5 -71.5 -44h-0.5c-3.69922 0 -7 2.60059 -7.7998 6.2002c-0.899414 3.7998 1.10059 7.7002 4.7002 9.2002l17 7.2002
|
||||
c12.9004 5.5 20.7002 13.5 20.7002 21.5s-7.7998 16 -20.7998 21.5l-16.9004 7.2002c-6 2.59961 -5.7002 12.3994 0 14.7998l17 7.2002c12.9004 5.5 20.7002 13.5 20.7002 21.5s-7.7998 16 -20.7998 21.5l-16.9004 7.19922c-3.59961 1.5 -5.59961 5.40039 -4.7002 9.2002
|
||||
c0.799805 3.7998 4.40039 6.60059 8.2002 6.2002c42.7002 -2.5 71.5 -24.7998 71.5 -44zM374.5 223c-14.7998 13.2002 -46.2002 13.2002 -61 0l-9.5 -8.5c-2.5 -2.2998 -7.90039 -4.7002 -13.7002 -1.59961c-4.39941 2.39941 -6.89941 7.39941 -6.09961 12.3994
|
||||
c3.89941 25.2002 34.2002 42.1006 59.7998 42.1006s55.7998 -16.9004 59.7998 -42.1006c0.799805 -5 -1.7002 -10 -6.09961 -12.3994c-4.40039 -2.40039 -9.90039 -1.7002 -13.7002 1.59961zM136 239.5c0 17.7002 14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32
|
||||
s-32 14.2998 -32 32zM501.1 45.5c9.2002 -23.9004 -4.39941 -49.4004 -28.5 -55.7002l-83 -21.5c-5.39941 -1.39941 -10.8994 1.7998 -12.3994 7.10059l-22.9004 82.5996c-6.59961 24 8.7998 48.5996 34 52.5996c22 3.5 43.1006 -11.5996 49 -33l2.2998 -8.39941
|
||||
l8.40039 2.2002c21.5996 5.59961 45.0996 -5.10059 53.0996 -25.9004zM334 11.7002c17.7002 -64 10.9004 -39.5 13.4004 -46.7998c-30.5 -13.4004 -64 -20.9004 -99.4004 -20.9004c-137 0 -248 111 -248 248s111 248 248 248s248 -111 247.9 -248
|
||||
c0 -31.7998 -6.2002 -62.0996 -17.1006 -90c-6 1.5 -12.2002 2.7998 -18.5996 2.90039c-5.60059 9.69922 -13.6006 17.5 -22.6006 23.8994c6.7002 19.9004 10.4004 41.1006 10.4004 63.2002c0 110.3 -89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200
|
||||
c30.7998 0 59.9004 7.2002 86 19.7002z" />
|
||||
<glyph glyph-name="laugh" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM389.4 50.5996c37.7998 37.8008 58.5996 88 58.5996 141.4s-20.7998 103.6 -58.5996 141.4c-37.8008 37.7998 -88 58.5996 -141.4 58.5996s-103.6 -20.7998 -141.4 -58.5996
|
||||
c-37.7998 -37.8008 -58.5996 -88 -58.5996 -141.4s20.7998 -103.6 58.5996 -141.4c37.8008 -37.7998 88 -58.5996 141.4 -58.5996s103.6 20.7998 141.4 58.5996zM328 224c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM168 224
|
||||
c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM362.4 160c8.19922 0 14.5 -7 13.5 -15c-7.5 -59.2002 -58.9004 -105 -121.101 -105h-13.5996c-62.2002 0 -113.601 45.7998 -121.101 105c-1 8 5.30078 15 13.5 15h228.801z" />
|
||||
<glyph glyph-name="laugh-beam" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM389.4 50.5996c37.7998 37.8008 58.5996 88 58.5996 141.4s-20.7998 103.6 -58.5996 141.4c-37.8008 37.7998 -88 58.5996 -141.4 58.5996s-103.6 -20.7998 -141.4 -58.5996
|
||||
c-37.7998 -37.8008 -58.5996 -88 -58.5996 -141.4s20.7998 -103.6 58.5996 -141.4c37.8008 -37.7998 88 -58.5996 141.4 -58.5996s103.6 20.7998 141.4 58.5996zM328 296c23.7998 0 52.7002 -29.2998 55.7998 -71.4004c0.700195 -8.5 -10.7998 -11.8994 -14.8994 -4.5
|
||||
l-9.5 17c-7.7002 13.7002 -19.2002 21.6006 -31.5 21.6006c-12.3008 0 -23.8008 -7.90039 -31.5 -21.6006l-9.5 -17c-4.10059 -7.39941 -15.6006 -4.09961 -14.9004 4.5c3.2998 42.1006 32.2002 71.4004 56 71.4004zM127 220.1c-4.2002 -7.39941 -15.7002 -4 -15.0996 4.5
|
||||
c3.2998 42.1006 32.1992 71.4004 56 71.4004c23.7998 0 52.6992 -29.2998 56 -71.4004c0.699219 -8.5 -10.8008 -11.8994 -14.9004 -4.5l-9.5 17c-7.7002 13.7002 -19.2002 21.6006 -31.5 21.6006s-23.7998 -7.90039 -31.5 -21.6006zM362.4 160c8.19922 0 14.5 -7 13.5 -15
|
||||
c-7.5 -59.2002 -58.9004 -105 -121.101 -105h-13.5996c-62.2002 0 -113.601 45.7998 -121.101 105c-1 8 5.30078 15 13.5 15h228.801z" />
|
||||
<glyph glyph-name="laugh-squint" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM389.4 50.5996c37.7998 37.8008 58.5996 88 58.5996 141.4s-20.7998 103.6 -58.5996 141.4c-37.8008 37.7998 -88 58.5996 -141.4 58.5996s-103.6 -20.7998 -141.4 -58.5996
|
||||
c-37.7998 -37.8008 -58.5996 -88 -58.5996 -141.4s20.7998 -103.6 58.5996 -141.4c37.8008 -37.7998 88 -58.5996 141.4 -58.5996s103.6 20.7998 141.4 58.5996zM343.6 252l33.6006 -40.2998c8.59961 -10.4004 -3.90039 -24.7998 -15.4004 -18l-80 48
|
||||
c-7.7998 4.7002 -7.7998 15.8994 0 20.5996l80 48c11.6006 6.7998 24 -7.7002 15.4004 -18zM134.2 193.7c-11.6006 -6.7998 -24.1006 7.59961 -15.4004 18l33.6006 40.2998l-33.6006 40.2998c-8.59961 10.2998 3.7998 24.9004 15.4004 18l80 -48
|
||||
c7.7998 -4.7002 7.7998 -15.8994 0 -20.5996zM362.4 160c8.19922 0 14.5 -7 13.5 -15c-7.5 -59.2002 -58.9004 -105 -121.101 -105h-13.5996c-62.2002 0 -113.601 45.7998 -121.101 105c-1 8 5.30078 15 13.5 15h228.801z" />
|
||||
<glyph glyph-name="laugh-wink" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM389.4 50.5996c37.7998 37.8008 58.5996 88 58.5996 141.4s-20.7998 103.6 -58.5996 141.4c-37.8008 37.7998 -88 58.5996 -141.4 58.5996s-103.6 -20.7998 -141.4 -58.5996
|
||||
c-37.7998 -37.8008 -58.5996 -88 -58.5996 -141.4s20.7998 -103.6 58.5996 -141.4c37.8008 -37.7998 88 -58.5996 141.4 -58.5996s103.6 20.7998 141.4 58.5996zM328 284c25.7002 0 55.9004 -16.9004 59.7002 -42.0996c1.7998 -11.1006 -11.2998 -18.2002 -19.7998 -10.8008
|
||||
l-9.5 8.5c-14.8008 13.2002 -46.2002 13.2002 -61 0l-9.5 -8.5c-8.30078 -7.39941 -21.5 -0.399414 -19.8008 10.8008c4 25.1992 34.2002 42.0996 59.9004 42.0996zM168 224c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32z
|
||||
M362.4 160c8.19922 0 14.5 -7 13.5 -15c-7.5 -59.2002 -58.9004 -105 -121.101 -105h-13.5996c-62.2002 0 -113.601 45.7998 -121.101 105c-1 8 5.30078 15 13.5 15h228.801z" />
|
||||
<glyph glyph-name="meh-blank" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM168 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32
|
||||
s-32 14.2998 -32 32s14.2998 32 32 32zM328 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32z" />
|
||||
<glyph glyph-name="meh-rolling-eyes" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM336 296c39.7998 0 72 -32.2002 72 -72s-32.2002 -72 -72 -72
|
||||
s-72 32.2002 -72 72s32.2002 72 72 72zM336 184c22.0996 0 40 17.9004 40 40c0 13.5996 -7.2998 25.0996 -17.7002 32.2998c1 -2.59961 1.7002 -5.39941 1.7002 -8.2998c0 -13.2998 -10.7002 -24 -24 -24s-24 10.7002 -24 24c0 3 0.700195 5.7002 1.7002 8.2998
|
||||
c-10.4004 -7.2002 -17.7002 -18.7002 -17.7002 -32.2998c0 -22.0996 17.9004 -40 40 -40zM232 224c0 -39.7998 -32.2002 -72 -72 -72s-72 32.2002 -72 72s32.2002 72 72 72s72 -32.2002 72 -72zM120 224c0 -22.0996 17.9004 -40 40 -40s40 17.9004 40 40
|
||||
c0 13.5996 -7.2998 25.0996 -17.7002 32.2998c1 -2.59961 1.7002 -5.39941 1.7002 -8.2998c0 -13.2998 -10.7002 -24 -24 -24s-24 10.7002 -24 24c0 3 0.700195 5.7002 1.7002 8.2998c-10.4004 -7.2002 -17.7002 -18.7002 -17.7002 -32.2998zM312 96
|
||||
c13.2002 0 24 -10.7998 24 -24s-10.7998 -24 -24 -24h-128c-13.2002 0 -24 10.7998 -24 24s10.7998 24 24 24h128z" />
|
||||
<glyph glyph-name="sad-cry" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM392 53.5996c34.5996 35.9004 56 84.7002 56 138.4c0 110.3 -89.7002 200 -200 200s-200 -89.7002 -200 -200c0 -53.7002 21.4004 -102.4 56 -138.4v114.4
|
||||
c0 13.2002 10.7998 24 24 24s24 -10.7998 24 -24v-151.4c28.5 -15.5996 61.2002 -24.5996 96 -24.5996s67.5 9 96 24.5996v151.4c0 13.2002 10.7998 24 24 24s24 -10.7998 24 -24v-114.4zM205.8 213.5c-5.7998 -3.2002 -11.2002 -0.700195 -13.7002 1.59961l-9.5 8.5
|
||||
c-14.7998 13.2002 -46.1992 13.2002 -61 0l-9.5 -8.5c-3.7998 -3.39941 -9.2998 -4 -13.6992 -1.59961c-4.40039 2.40039 -6.90039 7.40039 -6.10059 12.4004c3.90039 25.1992 34.2002 42.0996 59.7998 42.0996c25.6006 0 55.8008 -16.9004 59.8008 -42.0996
|
||||
c0.799805 -5 -1.7002 -10 -6.10059 -12.4004zM344 268c25.7002 0 55.9004 -16.9004 59.7998 -42.0996c0.799805 -5 -1.7002 -10 -6.09961 -12.4004c-5.7002 -3.09961 -11.2002 -0.599609 -13.7002 1.59961l-9.5 8.5c-14.7998 13.2002 -46.2002 13.2002 -61 0l-9.5 -8.5
|
||||
c-3.7998 -3.39941 -9.2002 -4 -13.7002 -1.59961c-4.39941 2.40039 -6.89941 7.40039 -6.09961 12.4004c3.89941 25.1992 34.0996 42.0996 59.7998 42.0996zM248 176c30.9004 0 56 -28.7002 56 -64s-25.0996 -64 -56 -64s-56 28.7002 -56 64s25.0996 64 56 64z" />
|
||||
<glyph glyph-name="sad-tear" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM256 144c38.0996 0 74 -16.7998 98.5 -46.0996
|
||||
c8.5 -10.2002 7.09961 -25.3008 -3.09961 -33.8008c-10.6006 -8.7998 -25.7002 -6.69922 -33.8008 3.10059c-15.2998 18.2998 -37.7998 28.7998 -61.5996 28.7998c-13.2002 0 -24 10.7998 -24 24s10.7998 24 24 24zM168 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32
|
||||
s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM328 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32zM162.4 173.2c2.7998 3.7002 8.39941 3.7002 11.1992 0c11.4004 -15.2998 36.4004 -50.6006 36.4004 -68.1006
|
||||
c0 -22.6992 -18.7998 -41.0996 -42 -41.0996s-42 18.4004 -42 41.0996c0 17.5 25 52.8008 36.4004 68.1006z" />
|
||||
<glyph glyph-name="smile-beam" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM332 135.4c8.5 10.1992 23.5996 11.5 33.7998 3.09961
|
||||
c10.2002 -8.5 11.6006 -23.5996 3.10059 -33.7998c-30 -36 -74.1006 -56.6006 -120.9 -56.6006s-90.9004 20.6006 -120.9 56.6006c-8.39941 10.2002 -7.09961 25.2998 3.10059 33.7998c10.2002 8.40039 25.2998 7.09961 33.7998 -3.09961
|
||||
c20.7998 -25.1006 51.5 -39.4004 84 -39.4004s63.2002 14.4004 84 39.4004zM136.5 237l-9.5 -17c-1.90039 -3.2002 -5.90039 -4.7998 -9.2998 -3.7002c-3.60059 1.10059 -6 4.60059 -5.7002 8.2998c3.2998 42.1006 32.2002 71.4004 56 71.4004s52.7002 -29.2998 56 -71.4004
|
||||
c0.299805 -3.7998 -2.09961 -7.19922 -5.7002 -8.2998c-3.09961 -1 -7.2002 0 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996s-23.7998 -7.89941 -31.5 -21.5996zM328 296c23.7998 0 52.7002 -29.2998 56 -71.4004
|
||||
c0.299805 -3.7998 -2.09961 -7.19922 -5.7002 -8.2998c-3.09961 -1 -7.2002 0 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996s-23.7998 -7.89941 -31.5 -21.5996l-9.5 -17c-1.90039 -3.2002 -5.7998 -4.7998 -9.2998 -3.7002
|
||||
c-3.60059 1.10059 -6 4.60059 -5.7002 8.2998c3.2998 42.1006 32.2002 71.4004 56 71.4004z" />
|
||||
<glyph glyph-name="surprise" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM248 168c35.2998 0 64 -28.7002 64 -64s-28.7002 -64 -64 -64
|
||||
s-64 28.7002 -64 64s28.7002 64 64 64zM200 240c0 -17.7002 -14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32zM328 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32z" />
|
||||
<glyph glyph-name="tired" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM377.1 295.8c3.80078 -4.39941 3.90039 -11 0.100586 -15.5
|
||||
l-33.6006 -40.2998l33.6006 -40.2998c3.7998 -4.5 3.7002 -11 -0.100586 -15.5c-3.5 -4.10059 -9.89941 -5.7002 -15.2998 -2.5l-80 48c-3.59961 2.2002 -5.7998 6.09961 -5.7998 10.2998s2.2002 8.09961 5.7998 10.2998l80 48c5 2.90039 11.5 1.90039 15.2998 -2.5z
|
||||
M220 240c0 -4.2002 -2.2002 -8.09961 -5.7998 -10.2998l-80 -48c-5.40039 -3.2002 -11.7998 -1.60059 -15.2998 2.5c-3.80078 4.5 -3.90039 11 -0.100586 15.5l33.6006 40.2998l-33.6006 40.2998c-3.7998 4.5 -3.7002 11 0.100586 15.5
|
||||
c3.7998 4.40039 10.2998 5.5 15.2998 2.5l80 -48c3.59961 -2.2002 5.7998 -6.09961 5.7998 -10.2998zM248 176c45.4004 0 100.9 -38.2998 107.8 -93.2998c1.5 -11.9004 -7 -21.6006 -15.5 -17.9004c-22.7002 9.7002 -56.2998 15.2002 -92.2998 15.2002
|
||||
s-69.5996 -5.5 -92.2998 -15.2002c-8.60059 -3.7002 -17 6.10059 -15.5 17.9004c6.89941 55 62.3994 93.2998 107.8 93.2998z" />
|
||||
</font>
|
||||
</defs></svg>
|
||||
|
After Width: | Height: | Size: 141 KiB |