Initial commit
11
404.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php get_header(); ?>
|
||||
|
||||
<div class="content">
|
||||
|
||||
<?php get_template_part('inc/page-title'); ?>
|
||||
|
||||
</div><!--/.content-->
|
||||
|
||||
<?php get_sidebar(); ?>
|
||||
|
||||
<?php get_footer(); ?>
|
25
archive.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php get_header(); ?>
|
||||
|
||||
<div class="content">
|
||||
|
||||
<?php get_template_part('inc/page-title'); ?>
|
||||
|
||||
<?php if ( have_posts() ) : ?>
|
||||
|
||||
<div class="article-grid-wrap">
|
||||
<div class="article-grid">
|
||||
<?php while ( have_posts() ): the_post(); ?>
|
||||
<?php get_template_part('content'); ?>
|
||||
<?php endwhile; ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php get_template_part('inc/pagination'); ?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
</div><!--/.content-->
|
||||
|
||||
<?php get_sidebar(); ?>
|
||||
|
||||
<?php get_footer(); ?>
|
61
comments.php
Normal file
|
@ -0,0 +1,61 @@
|
|||
<?php if ( post_password_required() ) { return; } ?>
|
||||
|
||||
<div id="comments" class="themeform">
|
||||
|
||||
<?php if ( have_comments() ) : global $wp_query; ?>
|
||||
|
||||
<h3 class="heading"><?php comments_number( esc_html__( 'No Responses', 'instorm' ), esc_html__( '1 Response', 'instorm' ), esc_html__( '% Responses', 'instorm' ) ); ?></h3>
|
||||
|
||||
<ul class="comment-tabs group">
|
||||
<li class="active"><a href="#commentlist-container"><i class="far fa-comments"></i><?php esc_html_e( 'Comments', 'instorm' ); ?><span><?php echo count($wp_query->comments_by_type['comment']); ?></span></a></li>
|
||||
<li><a href="#pinglist-container"><i class="fas fa-share"></i><?php esc_html_e( 'Pingbacks', 'instorm' ); ?><span><?php echo count($wp_query->comments_by_type['pings']); ?></span></a></li>
|
||||
</ul>
|
||||
|
||||
<?php if ( ! empty( $comments_by_type['comment'] ) ) { ?>
|
||||
<div id="commentlist-container" class="comment-tab">
|
||||
|
||||
<ol class="commentlist">
|
||||
<?php wp_list_comments( 'avatar_size=96&type=comment' ); ?>
|
||||
</ol><!--/.commentlist-->
|
||||
|
||||
<?php if ( get_comment_pages_count() > 1 && get_option('page_comments') ) : ?>
|
||||
<nav class="comments-nav group">
|
||||
<div class="nav-previous"><?php previous_comments_link(); ?></div>
|
||||
<div class="nav-next"><?php next_comments_link(); ?></div>
|
||||
</nav><!--/.comments-nav-->
|
||||
<?php endif; ?>
|
||||
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<?php if ( ! empty( $comments_by_type['pings'] ) ) { ?>
|
||||
<div id="pinglist-container" class="comment-tab">
|
||||
|
||||
<ol class="pinglist">
|
||||
<?php // not calling wp_list_comments twice, as it breaks pagination
|
||||
$pings = $comments_by_type['pings'];
|
||||
foreach ($pings as $comment) { ?>
|
||||
<li class="ping">
|
||||
<div class="ping-link"><?php comment_author_link($comment); ?></div>
|
||||
<div class="ping-meta"><?php comment_date( get_option( 'date_format' ), $comment ); ?></div>
|
||||
<div class="ping-content"><?php comment_text($comment); ?></div>
|
||||
</li>
|
||||
<?php } ?>
|
||||
</ol><!--/.pinglist-->
|
||||
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<?php else: // if there are no comments yet ?>
|
||||
|
||||
<?php if (comments_open()) : ?>
|
||||
<!-- comments open, no comments -->
|
||||
<?php else : ?>
|
||||
<!-- comments closed, no comments -->
|
||||
<?php endif; ?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ( comments_open() ) { comment_form(); } ?>
|
||||
|
||||
</div><!--/#comments-->
|
19
content-featured.php
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?php $format = get_post_format(); ?>
|
||||
|
||||
<div class="featured-item-wrap">
|
||||
<div class="featured-item" style="background-image:url('<?php the_post_thumbnail_url('instorm-large'); ?>');">
|
||||
<?php if ( has_post_format('video') && !is_sticky() ) echo'<span class="thumb-icon small"><i class="fas fa-play"></i></span>'; ?>
|
||||
<?php if ( has_post_format('audio') && !is_sticky() ) echo'<span class="thumb-icon small"><i class="fas fa-volume-up"></i></span>'; ?>
|
||||
<?php if ( is_sticky() ) echo'<span class="thumb-icon small"><i class="fas fa-star"></i></span>'; ?>
|
||||
<a class="featured-link" href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
|
||||
<div class="featured-content">
|
||||
<h3 class="featured-title"><?php the_title(); ?></h3>
|
||||
<div class="featured-date">
|
||||
<i class="far fa-calendar"></i> <?php the_time( get_option('date_format') ); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php if ( comments_open() && ( get_theme_mod( 'comment-count', 'on' ) == 'on' ) ): ?>
|
||||
<a class="post-comments" href="<?php comments_link(); ?>"><span><?php comments_number( '0', '1', '%' ); ?></span></a>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
19
content-highlight.php
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?php $format = get_post_format(); ?>
|
||||
|
||||
<div class="highlights-item-wrap">
|
||||
<div class="highlights-item" style="background-image:url('<?php the_post_thumbnail_url('instorm-medium'); ?>');">
|
||||
<?php if ( has_post_format('video') && !is_sticky() ) echo'<span class="thumb-icon small"><i class="fas fa-play"></i></span>'; ?>
|
||||
<?php if ( has_post_format('audio') && !is_sticky() ) echo'<span class="thumb-icon small"><i class="fas fa-volume-up"></i></span>'; ?>
|
||||
<?php if ( is_sticky() ) echo'<span class="thumb-icon small"><i class="fas fa-star"></i></span>'; ?>
|
||||
<a class="highlights-link" href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
|
||||
<div class="highlights-content">
|
||||
<h3 class="highlights-title"><?php the_title(); ?></h3>
|
||||
<div class="highlights-date">
|
||||
<i class="far fa-calendar"></i> <?php the_time( get_option('date_format') ); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php if ( comments_open() && ( get_theme_mod( 'comment-count', 'on' ) == 'on' ) ): ?>
|
||||
<a class="post-comments" href="<?php comments_link(); ?>"><span><?php comments_number( '0', '1', '%' ); ?></span></a>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
40
content.php
Normal file
|
@ -0,0 +1,40 @@
|
|||
<?php $format = get_post_format(); ?>
|
||||
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class('entry-list group'); ?>>
|
||||
|
||||
<?php if ( has_post_thumbnail() ): ?>
|
||||
<div class="entry-thumbnail">
|
||||
<a href="<?php the_permalink(); ?>">
|
||||
<?php the_post_thumbnail('instorm-medium'); ?>
|
||||
<?php if ( has_post_format('video') && !is_sticky() ) echo'<span class="thumb-icon small"><i class="fas fa-play"></i></span>'; ?>
|
||||
<?php if ( has_post_format('audio') && !is_sticky() ) echo'<span class="thumb-icon small"><i class="fas fa-volume-up"></i></span>'; ?>
|
||||
<?php if ( is_sticky() ) echo'<span class="thumb-icon small"><i class="fas fa-star"></i></span>'; ?>
|
||||
</a>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="entry-list-inner <?php if ( has_post_thumbnail() ) echo 'entry-thumbnail-enabled'; ?>">
|
||||
|
||||
<h2 class="entry-title">
|
||||
<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
|
||||
</h2><!--/.entry-title-->
|
||||
|
||||
<?php if ( comments_open() && ( get_theme_mod( 'comment-count', 'on' ) == 'on' ) ): ?>
|
||||
<a class="post-comments" href="<?php comments_link(); ?>"><span><?php comments_number( '0', '1', '%' ); ?></span></a>
|
||||
<?php endif; ?>
|
||||
|
||||
<ul class="entry-meta group">
|
||||
<li class="entry-category"><?php the_category(' / '); ?></li>
|
||||
<li class="entry-date"><i class="far fa-calendar"></i><?php the_time( get_option('date_format') ); ?></li>
|
||||
</ul>
|
||||
|
||||
<?php if (get_theme_mod('excerpt-length','26') != '0'): ?>
|
||||
<div class="clear"></div>
|
||||
<div class="entry-excerpt">
|
||||
<?php the_excerpt(); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
</div>
|
||||
|
||||
</article><!--/.post-->
|
4619
fonts/all.css
Normal file
5
fonts/all.min.css
vendored
Normal file
BIN
fonts/fa-brands-400.eot
Normal file
3717
fonts/fa-brands-400.svg
Normal file
After Width: | Height: | Size: 730 KiB |
BIN
fonts/fa-brands-400.ttf
Normal file
BIN
fonts/fa-brands-400.woff
Normal file
BIN
fonts/fa-brands-400.woff2
Normal file
BIN
fonts/fa-regular-400.eot
Normal file
801
fonts/fa-regular-400.svg
Normal file
|
@ -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 20200314 at Wed Jan 13 11:57:54 2021
|
||||
By Robert Madole
|
||||
Copyright (c) Font Awesome
|
||||
</metadata>
|
||||
<!-- Font Awesome Free 5.15.2 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 |
BIN
fonts/fa-regular-400.ttf
Normal file
BIN
fonts/fa-regular-400.woff
Normal file
BIN
fonts/fa-regular-400.woff2
Normal file
BIN
fonts/fa-solid-900.eot
Normal file
5028
fonts/fa-solid-900.svg
Normal file
After Width: | Height: | Size: 896 KiB |
BIN
fonts/fa-solid-900.ttf
Normal file
BIN
fonts/fa-solid-900.woff
Normal file
BIN
fonts/fa-solid-900.woff2
Normal file
BIN
fonts/titillium-light-webfont.eot
Normal file
240
fonts/titillium-light-webfont.svg
Normal file
|
@ -0,0 +1,240 @@
|
|||
<?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></metadata>
|
||||
<defs>
|
||||
<font id="TitilliumLtBold" horiz-adv-x="1146" >
|
||||
<font-face units-per-em="2048" ascent="1536" descent="-512" />
|
||||
<missing-glyph horiz-adv-x="450" />
|
||||
<glyph horiz-adv-x="0" />
|
||||
<glyph horiz-adv-x="2048" />
|
||||
<glyph unicode=" " horiz-adv-x="450" />
|
||||
<glyph unicode="	" horiz-adv-x="450" />
|
||||
<glyph unicode=" " horiz-adv-x="450" />
|
||||
<glyph unicode="!" horiz-adv-x="489" d="M178 0v205h135v-205h-135zM180 1423h129l-8 -966h-115z" />
|
||||
<glyph unicode=""" horiz-adv-x="745" d="M141 1423h127l-8 -446h-110zM477 1423h127l-8 -446h-113z" />
|
||||
<glyph unicode="#" d="M53 369v106h234v412h-234v106h234v373h114v-373h342v373h115v-373h234v-106h-234v-412h234v-106h-234v-369h-115v369h-342v-369h-114v369h-234zM401 475h342v412h-342v-412z" />
|
||||
<glyph unicode="$" d="M147 1018q0 354 428 354q36 0 56 -2l33 258h92l-35 -264q57 -4 120 -11.5t97 -12.5l35 -5l-8 -104q-139 16 -258 26l-66 -514q98 -20 161 -44t111 -63.5t69.5 -98t21.5 -142.5q0 -218 -108 -314.5t-316 -96.5h-35l-31 -236q-92 6 -92 14l29 228q-63 4 -136 11.5 t-115 12.5l-42 6l14 105q158 -21 293 -29l72 549q-69 14 -117.5 27.5t-96 34t-77.5 47.5t-54 64t-34.5 86.5t-10.5 113.5zM270 1026q0 -68 15 -112t53 -73t85 -45.5t128 -33.5l65 502h-32q-314 0 -314 -238zM559 92h16q155 0 230.5 70.5t75.5 224.5q0 110 -56 160t-198 80z " />
|
||||
<glyph unicode="%" d="M66 1094q0 278 219 278q104 0 161.5 -68.5t57.5 -211.5t-58.5 -215t-160.5 -72q-103 0 -161 72t-58 217zM170 1094q0 -100 27 -149.5t88 -49.5q63 0 89.5 48.5t26.5 148.5q0 98 -26.5 144t-89.5 46q-62 0 -88.5 -46t-26.5 -142zM332 -6l405 1390l86 -26l-405 -1389z M643 268q0 142 57.5 210.5t161.5 68.5t162.5 -69t58.5 -212t-59 -214.5t-162 -71.5t-161 71.5t-58 216.5zM748 268q0 -100 26.5 -149t87.5 -49q63 0 90 48.5t27 147.5t-27 145t-90 46q-62 0 -88 -45.5t-26 -143.5z" />
|
||||
<glyph unicode="&" horiz-adv-x="1402" d="M90 420q0 92 19 159t61 114.5t99.5 79t144.5 58.5q-70 80 -91.5 143t-21.5 159q0 135 89 216t251 81q170 0 255 -81.5t85 -224.5q0 -98 -35.5 -167.5t-103 -118t-185.5 -97.5l336 -333q20 54 39.5 162t24.5 188l121 -2q-11 -108 -37.5 -232.5t-55.5 -195.5l273 -260 l-76 -84l-256 243q-137 -247 -444 -247q-138 0 -234.5 30t-152.5 89t-80.5 137t-24.5 184zM213 426q0 -167 85 -250.5t277 -83.5q260 0 365 211l-453 449q-151 -44 -212.5 -115t-61.5 -211zM424 1116q0 -68 19.5 -124t72.5 -109l64 -66q155 61 215.5 123.5t60.5 177.5 q0 205 -215 205q-105 0 -161 -52.5t-56 -154.5z" />
|
||||
<glyph unicode="'" horiz-adv-x="409" d="M141 1423h129l-12 -446h-111z" />
|
||||
<glyph unicode="(" horiz-adv-x="516" d="M111 616q0 120 21 259t51.5 251.5t61 208t51.5 148.5l21 53h119q-8 -22 -21 -60t-46.5 -150t-59 -218.5t-46.5 -244.5t-21 -247q0 -108 20 -238t48.5 -237.5t57 -199.5t48.5 -145l20 -52h-119q-8 18 -22 50.5t-49.5 132t-62.5 198t-49.5 235t-22.5 256.5z" />
|
||||
<glyph unicode=")" horiz-adv-x="516" d="M82 -256q8 20 21 55t46.5 139.5t59 204.5t46.5 232.5t21 240.5q0 109 -20 244.5t-48.5 250t-57 213t-48.5 155.5l-20 57h119q8 -20 22 -55.5t50 -143.5t63 -213t49.5 -246.5t22.5 -261.5t-21.5 -254.5t-52 -239.5t-60.5 -193.5t-52 -136.5l-21 -48h-119z" />
|
||||
<glyph unicode="*" horiz-adv-x="858" d="M119 938l223 162l-221 162l55 73l221 -161l84 260l88 -29l-84 -262h271v-90h-275l84 -260l-86 -27l-86 262l-221 -162z" />
|
||||
<glyph unicode="+" d="M117 457v114h395v412h117v-412h401v-114h-401v-416h-117v416h-395z" />
|
||||
<glyph unicode="," horiz-adv-x="436" d="M78 -252l90 455h137l-125 -455h-102z" />
|
||||
<glyph unicode="-" horiz-adv-x="911" d="M145 510v115h623v-115h-623z" />
|
||||
<glyph unicode="." horiz-adv-x="421" d="M143 0v207h136v-207h-136z" />
|
||||
<glyph unicode="/" horiz-adv-x="815" d="M66 23l573 1423l111 -43l-572 -1421z" />
|
||||
<glyph unicode="0" d="M88 651q0 168 21.5 292.5t60.5 206.5t100 131.5t133.5 70t167.5 20.5q98 0 172 -20.5t135 -70t99 -131.5t59 -206.5t21 -292.5q0 -191 -32.5 -323t-97.5 -207.5t-150.5 -108t-203.5 -32.5q-95 0 -167.5 19.5t-133.5 66t-100.5 122.5t-61.5 192t-22 271zM219 649 q0 -132 15.5 -229t44 -159.5t73.5 -99.5t97.5 -52t123.5 -15t123.5 15t97.5 52.5t73 100.5t43.5 160t15.5 229q0 179 -21 297.5t-66.5 187.5t-109 96.5t-158.5 27.5q-93 0 -155.5 -27t-108.5 -95t-67 -187.5t-21 -301.5z" />
|
||||
<glyph unicode="1" d="M236 1069l426 283h118v-1352h-125v1212l-360 -241z" />
|
||||
<glyph unicode="2" d="M143 0v106l422 447q63 66 93.5 99.5t72 85t59.5 88t32 84t14 96.5q0 137 -77 194t-237 57q-68 0 -157 -12.5t-144 -24.5l-55 -12l-10 109q22 6 59 15t139 24.5t189 15.5q214 0 319 -84.5t105 -271.5q0 -75 -16.5 -137.5t-55.5 -123.5t-84 -112.5t-121 -126.5l-393 -405 h709v-111h-863z" />
|
||||
<glyph unicode="3" d="M131 33l12 106q219 -45 420 -45q161 0 237.5 70t76.5 211q0 76 -23 130t-65.5 84t-93 44.5t-115.5 17.5h-275v111h273q41 0 86 17.5t85.5 48.5t66.5 83t26 113q0 127 -67 181.5t-228 54.5q-86 0 -181 -11t-148 -21l-52 -11l-12 104q22 6 59.5 14.5t142 22.5t195.5 14 q228 0 325 -82t97 -264q0 -46 -10 -87t-28 -71t-37 -53.5t-43 -41t-40.5 -27.5t-35 -19t-19.5 -10q61 -19 100.5 -40t76 -58t54 -96t17.5 -142q0 -202 -106 -301.5t-329 -99.5q-96 0 -206.5 13t-172.5 27z" />
|
||||
<glyph unicode="4" d="M82 274v99l397 979h139l-399 -965h539v432h127v-432h182v-113h-182v-274h-127v274h-676z" />
|
||||
<glyph unicode="5" d="M135 39l17 104q231 -47 415 -47q152 0 241 90.5t89 257.5q0 158 -81.5 224.5t-229.5 66.5q-77 0 -161.5 -23.5t-130.5 -47.5l-46 -23l-94 16l39 695h776v-117h-670l-37 -477q18 10 50 25t121 40t165 25q207 0 318.5 -94t111.5 -303q0 -229 -118.5 -348t-331.5 -119 q-92 0 -203 14t-175 28z" />
|
||||
<glyph unicode="6" d="M111 684q0 352 136 520t382 168q76 0 166.5 -8t142.5 -16l53 -7l-12 -104q-178 20 -350 20q-186 0 -286.5 -129.5t-100.5 -373.5l22 8q21 9 58.5 21.5t81.5 25.5t97.5 22t98.5 9q451 0 451 -414q0 -213 -121 -329.5t-346 -116.5q-241 0 -357 182.5t-116 521.5zM240 639 q2 -122 21 -218t58.5 -171t106.5 -115.5t158 -40.5q164 0 250 85t86 247q0 151 -85.5 226t-242.5 75q-75 0 -163 -22t-139 -44z" />
|
||||
<glyph unicode="7" d="M162 1237v115h833v-181l-530 -1191l-121 40l522 1164v53h-704z" />
|
||||
<glyph unicode="8" d="M66 344q0 79 17.5 137.5t54 100.5t76 69t101.5 58q-118 53 -172.5 124t-54.5 195q0 171 127 257.5t354 86.5t357.5 -86.5t130.5 -259.5q0 -128 -57.5 -198t-188.5 -119q63 -24 108 -51t82.5 -66.5t56.5 -95.5t19 -129q0 -387 -508 -387q-85 0 -156.5 11t-137 37t-111 67 t-72 104.5t-26.5 144.5zM203 362q0 -266 366 -266q85 0 150 13.5t117.5 44.5t80 86.5t27.5 134.5q0 53 -14.5 94.5t-37 68.5t-59.5 49t-72.5 34.5t-86.5 25.5h-225q-123 -33 -184.5 -98t-61.5 -187zM223 1016q0 -102 54.5 -161t171.5 -97h225q124 35 186 95.5t62 160.5 q0 243 -353 243q-169 0 -257.5 -56.5t-88.5 -184.5z" />
|
||||
<glyph unicode="9" d="M90 924q0 205 126 326.5t337 121.5q244 0 362.5 -185t118.5 -519q0 -192 -35 -326.5t-105 -213t-164.5 -113.5t-223.5 -35q-76 0 -167 8t-143 16l-53 8l13 105q178 -23 350 -23q198 0 296 122.5t101 381.5l-23 -8q-23 -8 -63.5 -20t-87 -24.5t-101.5 -21t-100 -8.5 q-438 0 -438 408zM221 924q0 -152 79.5 -223.5t236.5 -71.5q67 0 159 20.5t150 40.5l59 21q-10 546 -352 546q-154 0 -243 -89.5t-89 -243.5z" />
|
||||
<glyph unicode=":" horiz-adv-x="423" d="M143 0v207h136v-207h-136zM143 676v209h136v-209h-136z" />
|
||||
<glyph unicode=";" horiz-adv-x="493" d="M109 -252h102l127 455h-141zM188 676v209h136v-209h-136z" />
|
||||
<glyph unicode="<" d="M121 459v110l860 426v-129l-735 -350l735 -356v-131z" />
|
||||
<glyph unicode="=" d="M133 272v115h879v-115h-879zM133 639v115h879v-115h-879z" />
|
||||
<glyph unicode=">" d="M164 29v131l735 356l-735 350v129l860 -426v-110z" />
|
||||
<glyph unicode="?" horiz-adv-x="919" d="M78 1384q217 60 342 60q207 0 309 -76.5t102 -251.5q0 -129 -36.5 -198t-159.5 -173q-99 -83 -144 -141t-45 -127v-74h-106q-18 52 -18 109q0 41 15 79t47 77t60.5 67t77.5 72q79 68 115 108.5t53 85t17 107.5q0 121 -71.5 172t-225.5 51q-47 0 -127 -12.5t-137 -25.5 l-56 -13zM324 2v205h135v-205h-135z" />
|
||||
<glyph unicode="@" horiz-adv-x="2000" d="M111 535q0 253 59.5 434.5t178.5 293t287 163t396 51.5q458 0 665.5 -207.5t207.5 -644.5v-31q0 -116 -9 -207t-23.5 -155t-39.5 -109.5t-52 -72t-65.5 -41.5t-75 -20t-86.5 -5q-56 0 -100.5 13t-68 32t-38.5 37.5t-19 31.5l-5 13q-24 -14 -63.5 -35t-138 -55.5 t-169.5 -34.5q-38 0 -69.5 4t-69.5 17t-67 35t-58 61t-48 92t-30.5 131.5t-11.5 175.5q0 135 20 230.5t67.5 166.5t129.5 105t203 34q47 0 109.5 -14t101.5 -28l39 -13v35h123v-400q0 -80 0.5 -132t2 -107t4 -87.5t7.5 -66.5t11 -52t16.5 -36t21.5 -25.5t28 -14t35 -8 t44 -1.5q46 0 74 7t58.5 35t46.5 81.5t27 148.5t11 234v33q0 196 -40.5 333.5t-130 229.5t-231 135t-344.5 43q-205 0 -351.5 -45.5t-246.5 -145t-148 -258.5t-48 -384q0 -238 45.5 -399t145.5 -258.5t245.5 -139t357.5 -41.5q38 0 111.5 5t127.5 10l54 5l6 -110 q-197 -21 -299 -21q-156 0 -279 19t-228.5 62.5t-180.5 116t-128.5 177t-79 247.5t-25.5 327zM721 498q0 -101 14.5 -176.5t37 -117.5t55.5 -67.5t63 -33t67 -7.5q120 0 330 105q-2 8 -7 64.5t-9 149t-4 173.5v293q-134 47 -234 47q-76 0 -131 -18.5t-90 -51.5t-55.5 -88 t-28.5 -119t-8 -153z" />
|
||||
<glyph unicode="A" horiz-adv-x="1216" d="M51 0l410 1423h297l407 -1423h-125l-114 393h-635l-113 -393h-127zM322 506h573l-231 807h-111z" />
|
||||
<glyph unicode="B" horiz-adv-x="1263" d="M178 0v1423h506q210 0 315 -87t105 -271q0 -136 -48.5 -214.5t-140.5 -117.5q236 -74 236 -338q0 -111 -30.5 -189t-89.5 -122.5t-136 -64t-180 -19.5h-537zM305 113h408q150 0 229.5 63.5t79.5 222.5q0 71 -24 123t-58 79.5t-82 44t-83 20.5t-75 4h-395v-557zM305 780 h393q144 0 210.5 68.5t66.5 208.5q0 131 -72.5 192.5t-222.5 61.5h-375v-531z" />
|
||||
<glyph unicode="C" horiz-adv-x="1114" d="M127 707q0 150 12 257.5t45 202.5t90.5 153t149 91t219.5 33q165 0 385 -43l-6 -111q-219 39 -369 39q-73 0 -130 -13.5t-98.5 -38t-71 -66t-48 -89t-29 -115.5t-14.5 -137.5t-4 -162.5q0 -92 4 -160.5t14.5 -135.5t29.5 -114t48.5 -87.5t71.5 -64.5t99 -37.5t130 -13.5 q150 0 367 39l6 -110q-215 -43 -385 -43q-125 0 -216 32t-149 89.5t-91.5 150.5t-46.5 200.5t-13 254.5z" />
|
||||
<glyph unicode="D" horiz-adv-x="1323" d="M178 0v1423h518q506 0 506 -692q0 -123 -14.5 -226t-50.5 -198.5t-92 -161.5t-145 -105.5t-204 -39.5h-518zM305 113h391q73 0 131.5 24t99 68t69 100.5t45 128t23.5 144t7 153.5q0 578 -375 578h-391v-1196z" />
|
||||
<glyph unicode="E" horiz-adv-x="1130" d="M178 0v1423h854v-114h-727v-529h604v-112h-604v-555h727v-113h-854z" />
|
||||
<glyph unicode="F" horiz-adv-x="1075" d="M178 0v1423h840v-114h-713v-588h606v-113h-606v-608h-127z" />
|
||||
<glyph unicode="G" horiz-adv-x="1263" d="M123 707q0 145 15 255t52.5 203.5t98.5 153t155.5 92.5t221.5 33q96 0 210.5 -13t181.5 -27l66 -13l-6 -109q-256 47 -442 47q-103 0 -177.5 -27t-121.5 -75t-74.5 -127.5t-38 -172t-10.5 -220.5q0 -127 10.5 -218t38 -169.5t74.5 -125.5t120.5 -73.5t176.5 -26.5 q138 0 325 33v479h-262v113h387v-688q-60 -13 -209.5 -32t-246.5 -19q-127 0 -221.5 32.5t-156 91t-99 150.5t-53 201t-15.5 252z" />
|
||||
<glyph unicode="H" horiz-adv-x="1382" d="M178 0v1423h127v-653h772v653h125v-1423h-125v657h-772v-657h-127z" />
|
||||
<glyph unicode="I" horiz-adv-x="483" d="M178 0v1423h127v-1423h-127z" />
|
||||
<glyph unicode="J" horiz-adv-x="583" d="M37 -35q59 0 90.5 1.5t64.5 10t47.5 23t27.5 43t16.5 67.5t3.5 99v1214h125v-1241q0 -58 -5 -102.5t-17 -78.5t-27 -58t-41 -40.5t-51 -26.5t-65.5 -15t-77 -6.5t-91.5 -1.5v112z" />
|
||||
<glyph unicode="K" horiz-adv-x="1153" d="M178 0v1423h127v-671l246 6l395 665h146l-430 -714l456 -709h-151l-414 643l-248 -4v-639h-127z" />
|
||||
<glyph unicode="L" horiz-adv-x="983" d="M178 0v1423h127v-1308h651v-115h-778z" />
|
||||
<glyph unicode="M" horiz-adv-x="1710" d="M178 0v1423h238l440 -1245l438 1245h238v-1423h-127v1292h-29l-446 -1245h-150l-446 1245h-29v-1292h-127z" />
|
||||
<glyph unicode="N" horiz-adv-x="1376" d="M178 0v1423h250l596 -1310h47v1310h125v-1423h-246l-600 1309h-45v-1309h-127z" />
|
||||
<glyph unicode="O" horiz-adv-x="1355" d="M123 705q0 147 15.5 258t54 204t101 152.5t158.5 92t226 32.5t226 -32.5t159.5 -91.5t101.5 -152t54 -204.5t16 -258.5q0 -152 -15.5 -263.5t-53.5 -202t-102 -146t-159.5 -84.5t-226.5 -29q-163 0 -272 45.5t-171 141t-87 224t-25 314.5zM254 705q0 -129 10 -219.5 t37 -168.5t74.5 -124.5t122.5 -72.5t180 -26q106 0 180.5 24.5t122.5 69.5t75 122.5t37.5 169.5t10.5 225q0 126 -11 219t-39.5 172.5t-76 128.5t-122.5 76.5t-177 27.5q-103 0 -177.5 -27t-122 -76t-75.5 -129t-38.5 -172.5t-10.5 -219.5z" />
|
||||
<glyph unicode="P" horiz-adv-x="1214" d="M178 0v1423h520q227 0 335 -110.5t108 -339.5q0 -477 -443 -477h-393v-496h-127zM305 608h393q312 0 312 365q0 174 -74 256t-238 82h-393v-703z" />
|
||||
<glyph unicode="Q" horiz-adv-x="1355" d="M123 705q0 147 15.5 258t54 204t101 152.5t158.5 92t226 32.5t226 -32.5t159.5 -91.5t101.5 -152t54 -204.5t16 -258.5q0 -268 -54 -426t-186 -232l174 -283l-120 -57l-179 295q-80 -22 -192 -22q-131 0 -226.5 30.5t-159 87t-101 147.5t-53 201t-15.5 259zM254 705 q0 -129 10 -219.5t37 -168.5t74.5 -124.5t122.5 -72.5t180 -26q88 0 154.5 15.5t113.5 50t77.5 82t48.5 119t25 152.5t7 192q0 126 -11 219t-39.5 172.5t-76 128.5t-122.5 76.5t-177 27.5q-103 0 -177.5 -27t-122 -76t-75.5 -129t-38.5 -172.5t-10.5 -219.5z" />
|
||||
<glyph unicode="R" horiz-adv-x="1259" d="M178 0v1423h522q223 0 333 -102t110 -320q0 -341 -275 -415l293 -586h-141l-281 561h-434v-561h-127zM305 674h395q312 0 312 325q0 160 -76 236t-236 76h-395v-637z" />
|
||||
<glyph unicode="S" horiz-adv-x="1107" d="M104 1073q0 373 451 373q74 0 179 -10t173 -20l68 -9l-10 -109q-283 35 -402 35q-330 0 -330 -252q0 -40 4.5 -71t17 -56.5t26 -44t39 -34.5t48.5 -26.5t63.5 -21.5t74 -18t88.5 -18q90 -18 151 -36t114 -47t83 -67.5t47 -94t17 -130.5q0 -228 -113.5 -330t-333.5 -102 q-72 0 -183 9.5t-186 19.5l-75 10l14 108q281 -35 426 -35q162 0 242 75t80 237q0 67 -17 110.5t-60 73.5t-100 47.5t-153 34.5q-96 18 -158 35.5t-121.5 47t-92 70t-52 101.5t-19.5 145z" />
|
||||
<glyph unicode="T" horiz-adv-x="1077" d="M27 1309v114h1024v-114h-447v-1309h-127v1309h-450z" />
|
||||
<glyph unicode="U" horiz-adv-x="1314" d="M170 418v1005h125v-1005q0 -171 90.5 -247.5t263.5 -76.5q184 0 276.5 75.5t92.5 248.5v1005h127v-1005q0 -231 -125 -334.5t-371 -103.5q-235 0 -357 104t-122 334z" />
|
||||
<glyph unicode="V" horiz-adv-x="1181" d="M53 1423h131l346 -1310h121l346 1310h129l-381 -1423h-309z" />
|
||||
<glyph unicode="W" horiz-adv-x="1789" d="M68 1423h129l258 -1310h67l299 1294h150l297 -1294h67l258 1310h129l-292 -1423h-254l-281 1249l-281 -1249h-254z" />
|
||||
<glyph unicode="X" horiz-adv-x="1136" d="M43 0l446 700l-446 723h143l385 -628l383 628h140l-443 -721l443 -702h-144l-381 614l-387 -614h-139z" />
|
||||
<glyph unicode="Y" horiz-adv-x="1093" d="M27 1423h141l379 -690l377 690h143l-457 -821v-602h-127v602z" />
|
||||
<glyph unicode="Z" horiz-adv-x="1099" d="M88 -2v168l780 1098v45h-780v114h922v-170l-781 -1097v-43h781v-115h-922z" />
|
||||
<glyph unicode="[" horiz-adv-x="659" d="M166 -252v1786h409v-111h-284v-1564h284v-111h-409z" />
|
||||
<glyph unicode="\" horiz-adv-x="862" d="M61 1395l111 49l627 -1415l-113 -47z" />
|
||||
<glyph unicode="]" horiz-adv-x="659" d="M84 -141h285v1564h-285v111h410v-1786h-410v111z" />
|
||||
<glyph unicode="^" d="M137 655l375 697h115l389 -697h-133l-314 574l-299 -574h-133z" />
|
||||
<glyph unicode="_" horiz-adv-x="1300" d="M211 -197h876v-110h-876v110z" />
|
||||
<glyph unicode="`" horiz-adv-x="466" d="M6 1403l45 106l424 -198l-39 -86z" />
|
||||
<glyph unicode="a" horiz-adv-x="1021" d="M88 289q0 141 72.5 212.5t228.5 86.5l348 35v96q0 114 -49.5 164.5t-150.5 50.5q-65 0 -162 -8t-161 -16l-64 -7l-7 98q226 43 398 43q165 0 241 -80t76 -245v-549q7 -75 133 -90l-6 -98q-158 0 -231 81q-22 -9 -59 -23t-138.5 -37t-187.5 -23q-136 0 -208.5 78.5 t-72.5 230.5zM215 291q0 -99 43 -153t127 -54q74 0 162 18t139 36l51 18v370l-334 -34q-101 -9 -144.5 -57.5t-43.5 -143.5z" />
|
||||
<glyph unicode="b" horiz-adv-x="1067" d="M152 0v1479h122v-510q18 8 49 20.5t115.5 33.5t155.5 21q205 0 284.5 -119t79.5 -397q0 -154 -21.5 -254t-76.5 -168t-147 -97t-234 -29q-57 0 -139 5t-135 10zM274 102q144 -12 205 -12q91 0 153 17.5t101.5 48.5t61 87.5t29 121.5t7.5 163q0 219 -52 312.5t-195 93.5 q-70 0 -147.5 -17.5t-120.5 -34.5l-42 -18v-762z" />
|
||||
<glyph unicode="c" horiz-adv-x="886" d="M111 530q0 280 97 397t327 117q39 0 105.5 -6.5t113.5 -13.5l47 -6l-6 -105q-162 21 -240 21q-182 0 -249.5 -89.5t-67.5 -314.5q0 -103 7.5 -170.5t27 -123t55.5 -85.5t91 -45.5t136 -15.5q35 0 96 5t105 9l43 5l4 -105q-183 -24 -271 -24q-101 0 -171.5 19t-120 58 t-77.5 106t-40 154.5t-12 212.5z" />
|
||||
<glyph unicode="d" horiz-adv-x="1071" d="M109 500q0 278 98 411t332 133q89 0 258 -26v461h123v-1479h-123v76q-7 -4 -18.5 -10.5t-48.5 -23t-74 -29t-89 -23t-98 -10.5q-59 0 -104.5 9t-96 41t-83.5 86.5t-54.5 152t-21.5 231.5zM236 500q0 -105 14.5 -181.5t37 -119.5t56.5 -68.5t65.5 -33t71.5 -7.5 q69 0 148 22t123 44l45 22v733q-171 25 -254 25q-90 0 -150.5 -27.5t-94.5 -86t-48 -135t-14 -187.5z" />
|
||||
<glyph unicode="e" horiz-adv-x="1032" d="M109 508q0 536 421 536q202 0 303 -116t101 -369l-4 -98h-697q0 -189 64.5 -280t220.5 -91q67 0 160.5 5t153.5 9l61 5l4 -101q-231 -28 -391 -28q-113 1 -190.5 34.5t-122.5 102.5t-64.5 163.5t-19.5 227.5zM233 563h578q0 203 -67 289t-214 86q-145 0 -221 -89 t-76 -286z" />
|
||||
<glyph unicode="f" horiz-adv-x="663" d="M61 915v109h134v104q0 148 27.5 228t84 111.5t158.5 31.5q31 0 81 -2.5t84 -4.5l34 -3v-105q-122 5 -181 5q-95 0 -130.5 -53.5t-35.5 -209.5v-102h310v-109h-310v-915h-122v915h-134z" />
|
||||
<glyph unicode="g" horiz-adv-x="1042" d="M109 -170q0 46 9.5 81t33 65.5t50 54t72.5 57.5q-51 34 -51 139q0 16 16.5 56t32.5 72l17 32q-168 71 -168 309q0 180 97.5 264t273.5 84q47 0 101 -6.5t84 -13.5l30 -6l297 6v-109l-205 5q73 -73 73 -224q0 -189 -93 -265.5t-294 -76.5q-58 0 -104 8q-41 -99 -41 -126 q0 -25 2 -38.5t11.5 -26.5t24.5 -18.5t47 -10t71 -5.5t104 -2q111 0 178.5 -11.5t116.5 -44t68.5 -90.5t19.5 -151q0 -169 -111 -246t-337 -77q-101 0 -171.5 10t-121 32t-79 59.5t-41.5 89t-13 124.5zM231 -162q0 -84 24.5 -128.5t90.5 -66.5t191 -22q170 0 245.5 50 t75.5 163q0 52 -10 87t-27.5 56t-52.5 32t-73.5 14.5t-102.5 3.5l-232 8q-76 -54 -102.5 -93.5t-26.5 -103.5zM246 696q0 -130 57.5 -184.5t188.5 -54.5q141 0 198.5 53.5t57.5 185.5q0 134 -58 190t-198 56q-130 0 -188 -57t-58 -189z" />
|
||||
<glyph unicode="h" horiz-adv-x="1091" d="M154 0v1479h120v-514q19 9 52 22t121 35t159 22q85 0 143.5 -17t98 -52t61 -97t30.5 -141.5t9 -197.5v-539h-123v532q0 97 -5 158.5t-19 112.5t-40.5 77t-67.5 40t-103 14q-71 0 -150 -17.5t-122 -34.5l-44 -18v-864h-120z" />
|
||||
<glyph unicode="i" horiz-adv-x="428" d="M154 0v1024h120v-1024h-120zM154 1280v154h120v-154h-120z" />
|
||||
<glyph unicode="j" horiz-adv-x="428" d="M-109 -354q71 40 111.5 67.5t74 58t48 65t22 77.5t7.5 106v1004h122v-1006q0 -181 -66.5 -274.5t-268.5 -196.5zM154 1280v154h122v-154h-122z" />
|
||||
<glyph unicode="k" horiz-adv-x="962" d="M154 0v1479h120v-881l175 4l315 422h141l-350 -469l367 -555h-144l-327 494l-177 -5v-489h-120z" />
|
||||
<glyph unicode="l" horiz-adv-x="452" d="M166 0v1479h121v-1479h-121z" />
|
||||
<glyph unicode="m" horiz-adv-x="1710" d="M154 0v1024h120v-76q18 11 48 27t113 42.5t153 26.5q105 0 167.5 -25.5t100.5 -82.5q7 4 20.5 11.5t55 26t83 33t99.5 26t111 11.5q106 0 171.5 -24.5t104 -87t52.5 -153.5t14 -240v-539h-121v532q0 97 -5 158.5t-19 112t-41 77.5t-68 40.5t-103 13.5q-75 0 -152.5 -21.5 t-117.5 -42.5l-41 -22q31 -77 31 -316v-532h-123v528q0 98 -5 161t-19 114t-41 77.5t-67.5 40t-101.5 13.5q-71 0 -146 -21.5t-114 -42.5l-39 -22v-848h-120z" />
|
||||
<glyph unicode="n" horiz-adv-x="1091" d="M154 0v1024h120v-76q7 4 19.5 10.5t51 23t76.5 29t90 23t97 10.5q85 0 143.5 -17t98 -52t61 -97t30.5 -141.5t9 -197.5v-539h-123v532q0 80 -3.5 134.5t-12.5 103t-25.5 77t-43 49.5t-63.5 29.5t-89 8.5q-71 0 -150 -21.5t-122 -42.5l-44 -22v-848h-120z" />
|
||||
<glyph unicode="o" horiz-adv-x="1079" d="M111 526q0 275 97.5 396.5t332.5 121.5q233 0 330.5 -121.5t97.5 -396.5q0 -151 -19 -249.5t-67 -167.5t-131 -99t-211 -30q-129 0 -212.5 30t-131.5 99t-67 167t-19 250zM238 526q0 -102 6 -167t24 -121.5t51.5 -86.5t87.5 -46.5t134 -16.5q66 0 114 10t82 34.5 t54.5 56.5t32.5 85t16 110.5t4 141.5q0 232 -64.5 321t-238.5 89q-175 0 -239 -88.5t-64 -321.5z" />
|
||||
<glyph unicode="p" horiz-adv-x="1071" d="M154 -461v1485h120v-78q7 4 18.5 10.5t48 23.5t73 30t87.5 23.5t97 10.5q191 0 278 -125t87 -393q0 -295 -102.5 -420.5t-340.5 -125.5q-126 0 -246 26v-467h-120zM274 113q146 -25 242 -25q177 0 248.5 100t71.5 338q0 217 -62.5 312.5t-187.5 95.5q-68 0 -146 -23 t-122 -46l-44 -23v-729z" />
|
||||
<glyph unicode="q" horiz-adv-x="1067" d="M109 496q0 299 105 423.5t372 124.5q45 0 127 -5t141 -10l59 -5v-1485h-120v512q-16 -8 -45 -20t-109.5 -31.5t-151.5 -19.5q-206 0 -292 122.5t-86 393.5zM233 496q0 -208 60 -307t205 -99q69 0 143 17t113 34l39 17v766q-139 12 -205 12q-107 0 -177 -25.5t-109 -83 t-54 -135.5t-15 -196z" />
|
||||
<glyph unicode="r" horiz-adv-x="694" d="M154 0v1024h120v-147q20 14 55.5 36.5t137.5 68t195 62.5v-122q-88 -18 -185 -56.5t-150 -67.5l-53 -30v-768h-120z" />
|
||||
<glyph unicode="s" horiz-adv-x="950" d="M96 754q0 65 21 115.5t55.5 82.5t82.5 52.5t98 29t106 8.5q68 0 158.5 -8.5t146.5 -17.5l57 -8l-4 -109q-219 33 -354 33q-242 0 -242 -174q0 -79 53.5 -112.5t221.5 -61.5q84 -14 138.5 -28t100.5 -35t70.5 -50.5t37.5 -72t13 -101.5q0 -172 -100 -244.5t-295 -72.5 q-56 0 -143.5 9t-147.5 18l-59 9l8 109q230 -35 334 -35q141 0 209.5 43.5t68.5 157.5q0 90 -56.5 123.5t-234.5 60.5q-77 12 -127 24t-95 32.5t-69.5 49t-38.5 71.5t-14 102z" />
|
||||
<glyph unicode="t" horiz-adv-x="710" d="M55 915v109h152v322h123v-322h342v-109h-342v-505q0 -70 2 -113.5t8 -83t16.5 -61t29.5 -37.5t44.5 -21.5t63.5 -5.5q25 0 72 3.5t82 6.5l34 4l8 -104q-135 -21 -207 -21q-105 0 -163 31.5t-85.5 111.5t-27.5 228v567h-152z" />
|
||||
<glyph unicode="u" horiz-adv-x="1075" d="M143 489v535h121v-532q0 -98 5 -159.5t19 -112.5t40.5 -77t68 -39.5t103.5 -13.5q72 0 147 21.5t115 42.5l39 22v848h121v-1024h-121v76q-18 -11 -48.5 -27t-114 -42.5t-153.5 -26.5q-72 0 -124.5 10.5t-91 36.5t-62.5 63t-38.5 97t-20 131t-5.5 171z" />
|
||||
<glyph unicode="v" horiz-adv-x="976" d="M55 1024h135l256 -918h82l267 918h127l-299 -1024h-269z" />
|
||||
<glyph unicode="w" horiz-adv-x="1556" d="M68 1024h125l225 -918h28l267 898h129l266 -898h31l225 918h125l-256 -1024h-213l-242 844l-243 -844h-211z" />
|
||||
<glyph unicode="x" horiz-adv-x="913" d="M49 0l330 512l-330 512h137l271 -422l270 422h137l-334 -510l332 -514h-135l-270 420l-271 -420h-137z" />
|
||||
<glyph unicode="y" horiz-adv-x="978" d="M55 1024h125l273 -918h73l275 918h125l-443 -1485h-123l138 461h-142z" />
|
||||
<glyph unicode="z" horiz-adv-x="931" d="M86 0v111l608 802h-608v111h760v-111l-608 -802h608v-111h-760z" />
|
||||
<glyph unicode="{" horiz-adv-x="716" d="M53 586v102q116 27 166.5 82.5t50.5 149.5q0 26 -7 124t-7 138q0 187 86 270t289 90l2 -106q-148 -7 -203 -69.5t-55 -190.5q0 -35 7 -127.5t7 -120.5q0 -132 -44 -192t-167 -97q122 -36 167.5 -99t45.5 -192q-1 -14 -7.5 -103.5t-6.5 -135.5q0 -62 11 -106t39 -79 t79 -53.5t127 -22.5l-4 -108q-202 7 -287.5 91t-85.5 269q0 44 7 137t7 115q0 91 -50.5 145.5t-166.5 88.5z" />
|
||||
<glyph unicode="|" horiz-adv-x="452" d="M164 -461v1940h123v-1940h-123z" />
|
||||
<glyph unicode="}" horiz-adv-x="716" d="M84 -152q76 4 127 22.5t79 53.5t39 79t11 106q0 46 -6.5 135.5t-7.5 103.5q0 129 45.5 192t167.5 99q-123 37 -167 97t-44 192q0 28 7 120.5t7 127.5q0 128 -55 190.5t-203 69.5l2 106q203 -7 289 -90t86 -270q0 -40 -7.5 -138t-7.5 -124q0 -94 50.5 -149.5t167.5 -82.5 v-102q-117 -34 -167.5 -88.5t-50.5 -145.5q0 -22 7.5 -115t7.5 -137q0 -185 -85.5 -269t-287.5 -91z" />
|
||||
<glyph unicode="~" d="M139 551q5 5 14.5 12t37.5 26.5t55.5 34t63 26.5t65.5 12q49 0 131 -34t160 -68t116 -34q33 0 85 25t88 49l36 25l21 -103q-14 -12 -37.5 -30.5t-84.5 -49t-108 -30.5q-50 0 -133.5 34t-161 67.5t-112.5 33.5q-36 0 -89 -25.5t-88 -50.5l-36 -25z" />
|
||||
<glyph unicode="¡" horiz-adv-x="448" d="M154 819v205h135v-205h-135zM158 -399l8 966h115l6 -966h-129z" />
|
||||
<glyph unicode="¢" d="M213 508q0 225 86.5 328.5t273.5 111.5v252h109v-256q40 -1 94.5 -7t89.5 -11l35 -6l-4 -103q-163 19 -272 19q-155 0 -218 -74.5t-63 -253.5q0 -183 62 -250.5t235 -67.5q48 0 112.5 4t104.5 8l41 3l6 -105q-135 -16 -221 -20v-250h-111v248q-128 5 -204 43.5t-116 132 t-40 254.5z" />
|
||||
<glyph unicode="£" d="M166 0v111h178v626h-137v109h137v108q0 128 16 209t54 127t91 63t136 17q43 0 108.5 -8t109.5 -16l44 -7l-2 -102q-168 23 -252 23q-74 0 -111.5 -26.5t-54 -92.5t-16.5 -195v-100h356v-109h-356v-626h330l161 32l21 -106l-166 -37h-647z" />
|
||||
<glyph unicode="¤" d="M133 164l143 141q-65 94 -65 211q0 115 65 209l-143 143l88 88l141 -145q98 68 211 68q111 0 209 -68l144 145l88 -88l-146 -143q68 -98 68 -209q0 -113 -68 -211l146 -141l-88 -88l-144 143q-94 -65 -209 -65q-117 0 -211 65l-141 -143zM324 516q0 -103 73 -176.5 t176 -73.5q102 0 176 74t74 176q0 101 -74.5 175.5t-175.5 74.5q-102 0 -175.5 -74t-73.5 -176z" />
|
||||
<glyph unicode="¥" d="M55 1352h142l378 -584l373 584h144l-367 -586h303v-109h-369l-20 -41v-159h391v-109h-391v-348h-127v348h-393v109h393v159l-18 41h-377v109h309z" />
|
||||
<glyph unicode="¦" horiz-adv-x="460" d="M168 311h123v-772h-123v772zM168 711v768h123v-768h-123z" />
|
||||
<glyph unicode="§" horiz-adv-x="1011" d="M115 543q0 83 44 158.5t70 95.5q-46 35 -68 88t-22 141q0 157 98.5 235t282.5 78q59 0 141.5 -7.5t135.5 -15.5l53 -7l-6 -105q-222 27 -320 27q-134 0 -199 -48.5t-65 -152.5q0 -48 12.5 -81.5t32.5 -55.5t61 -38.5t81.5 -26t109.5 -21.5q89 -16 144.5 -34t101.5 -50.5 t66 -83t20 -125.5q0 -79 -30.5 -156t-53.5 -110q74 -59 74 -199q0 -336 -377 -336q-56 0 -144 8.5t-148 16.5l-60 8l10 104q225 -30 338 -30q262 0 262 223q0 37 -7 63.5t-26 46.5t-38 32.5t-59 23.5t-72 17t-93 16q-186 31 -268 94.5t-82 206.5zM238 559q0 -97 58.5 -140.5 t199.5 -66.5q148 -24 215 -55q5 5 17 32.5t25 77t13 93.5q0 43 -11.5 74t-30 51t-53 35t-69 23.5t-90.5 18.5q-143 26 -199 50q-75 -112 -75 -193z" />
|
||||
<glyph unicode="¨" horiz-adv-x="466" d="M-16 1284v164h120v-164h-120zM387 1284v164h119v-164h-119z" />
|
||||
<glyph unicode="©" horiz-adv-x="1323" d="M127 889q0 153 68.5 279.5t191.5 200t275 73.5t274.5 -74.5t190 -200.5t67.5 -278q0 -153 -68 -279.5t-191 -200t-276 -73.5q-150 0 -272.5 74t-191 200.5t-68.5 278.5zM209 889q0 -129 57.5 -237t161.5 -172t231 -64q195 0 325 137.5t130 335.5q0 197 -130.5 335 t-324.5 138q-127 0 -231 -64t-161.5 -172t-57.5 -237zM432 889q0 162 51.5 240.5t184.5 78.5q36 0 74.5 -4.5t58.5 -9.5l20 -4l-4 -94q-81 14 -147 14q-36 0 -60.5 -10t-39 -26t-22.5 -46t-10.5 -60.5t-2.5 -78.5q0 -115 28 -168t107 -53q26 0 63 3.5t61 6.5l23 4l4 -92 q-79 -21 -155 -21q-130 0 -182 78t-52 242z" />
|
||||
<glyph unicode="ª" horiz-adv-x="774" d="M117 932q0 82 44 123t136 47l190 12v45q0 53 -24 74.5t-78 21.5q-33 0 -89.5 -3.5t-97.5 -7.5l-40 -3l-4 82q141 27 235 27q105 0 155 -44.5t50 -150.5v-278q19 -27 65 -39l-4 -84q-62 0 -91 11t-56 38q-118 -49 -227 -49q-75 0 -119.5 48t-44.5 130zM225 932 q0 -86 78 -86q36 0 82 9t74 19l28 9v149l-172 -10q-47 -3 -68.5 -24.5t-21.5 -65.5z" />
|
||||
<glyph unicode="«" horiz-adv-x="1071" d="M94 459v104l371 283v-129l-264 -203l264 -223v-131zM557 459v104l371 283v-129l-264 -203l264 -223v-131z" />
|
||||
<glyph unicode="¬" d="M137 580v112h873v-446h-117v334h-756z" />
|
||||
<glyph unicode="­" horiz-adv-x="911" d="M145 510v115h623v-115h-623z" />
|
||||
<glyph unicode="®" horiz-adv-x="1323" d="M127 889q0 153 68.5 279.5t190.5 200t273 73.5q153 0 276.5 -74.5t191 -200.5t67.5 -278q0 -153 -68 -279.5t-191 -200t-276 -73.5q-150 0 -272.5 74t-191 200.5t-68.5 278.5zM209 889q0 -129 58 -237t162 -172t230 -64q195 0 325 137.5t130 335.5q0 197 -130.5 335 t-324.5 138q-127 0 -231 -64t-161.5 -172t-57.5 -237zM442 580v614h213q117 0 174.5 -43t57.5 -147q0 -75 -25.5 -119.5t-85.5 -65.5l121 -239h-104l-117 227h-135v-227h-99zM541 891h137q60 0 86.5 25t26.5 85q0 59 -34.5 84t-107.5 25h-108v-219z" />
|
||||
<glyph unicode="¯" horiz-adv-x="466" d="M-33 1292v101h557v-101h-557z" />
|
||||
<glyph unicode="°" d="M287 1157q0 128 79.5 207.5t206.5 79.5t206 -79.5t79 -207.5q0 -127 -78.5 -205t-206.5 -78t-207 78t-79 205zM379 1157q0 -89 52.5 -142.5t141.5 -53.5q90 0 144.5 53.5t54.5 142.5t-55 144t-144 55t-141.5 -54.5t-52.5 -144.5z" />
|
||||
<glyph unicode="±" d="M117 86v115h913v-115h-913zM117 610v115h395v266h117v-266h401v-115h-401v-272h-117v272h-395z" />
|
||||
<glyph unicode="²" horiz-adv-x="573" d="M66 979v94l188 195q55 55 80.5 93.5t25.5 86.5q0 44 -29 66t-77 22q-28 0 -72.5 -4.5t-75.5 -9.5l-30 -4l-4 94q114 24 202 24q101 0 149 -44t48 -136q0 -69 -28.5 -118.5t-98.5 -116.5l-141 -144h278v-98h-415z" />
|
||||
<glyph unicode="³" horiz-adv-x="573" d="M68 981l6 94q115 -16 209 -16q56 0 83 26.5t27 71.5q0 103 -104 103h-133v94h131q33 0 61.5 31t28.5 73q0 80 -105 80q-39 0 -86.5 -4t-75.5 -8l-28 -4l-6 94q115 20 205 20q106 0 156 -40.5t50 -127.5q0 -37 -11 -67t-27.5 -47t-27.5 -25t-20 -12q54 -16 78.5 -50.5 t24.5 -111.5q0 -197 -211 -197q-44 0 -100.5 6t-90.5 12z" />
|
||||
<glyph unicode="´" horiz-adv-x="548" d="M63 1311l424 198l45 -106l-430 -178z" />
|
||||
<glyph unicode="µ" d="M182 -461v1485h121v-532q0 -98 5 -159.5t19 -112.5t40.5 -77t68 -39.5t103.5 -13.5q72 0 147.5 21.5t114.5 42.5l39 22v848h121v-1024h-121v76q-18 -11 -48.5 -27t-114 -42.5t-153.5 -26.5q-147 0 -221 51v-492h-121z" />
|
||||
<glyph unicode="¶" horiz-adv-x="1210" d="M76 1051q0 164 109 268t272 104h673v-108h-167v-1315h-113v1315h-266v-1315h-113v684h-14q-165 0 -273 102t-108 265z" />
|
||||
<glyph unicode="·" horiz-adv-x="423" d="M145 500v207h136v-207h-136z" />
|
||||
<glyph unicode="¸" horiz-adv-x="538" d="M92 -420l4 82q85 -6 146 -6q92 0 92 84q0 76 -92 76h-97v186h78v-108q119 0 171 -32t52 -122q0 -88 -48.5 -130t-133.5 -42q-40 0 -83 3t-66 6z" />
|
||||
<glyph unicode="¹" horiz-adv-x="573" d="M76 1477l207 141h102v-639h-109v518l-149 -102z" />
|
||||
<glyph unicode="º" horiz-adv-x="757" d="M115 1055q0 152 66 223.5t198 71.5t196 -71.5t64 -223.5q0 -153 -64.5 -227t-195.5 -74q-264 0 -264 301zM229 1055q0 -106 35 -152.5t115 -46.5q81 0 114 46t33 153q0 105 -33 148.5t-114 43.5q-80 0 -115 -44t-35 -148z" />
|
||||
<glyph unicode="»" horiz-adv-x="1071" d="M143 160v131l263 223l-263 203v129l371 -283v-104zM606 160v131l262 223l-262 203v129l371 -283v-104z" />
|
||||
<glyph unicode="¼" horiz-adv-x="1087" d="M74 57l803 1293l73 -47l-803 -1291zM84 1477l207 141h102v-639h-108v518l-150 -102zM553 -6l156 440h118l-159 -434h176l8 180h100v-180h64v-100h-64v-105h-108v105h-291v94z" />
|
||||
<glyph unicode="½" horiz-adv-x="1075" d="M70 57l802 1293l74 -47l-803 -1291zM94 1477l207 141h102v-639h-108v518l-150 -102zM565 -111l189 195q55 55 80.5 93.5t25.5 86.5q0 44 -29 66t-77 22q-28 0 -73 -4.5t-75 -9.5l-31 -4l-4 94q115 25 203 25q101 0 149 -44.5t48 -136.5q0 -69 -28.5 -118.5t-98.5 -116.5 l-142 -143h279v-99h-416v94z" />
|
||||
<glyph unicode="¾" horiz-adv-x="1120" d="M109 981l6 94q115 -16 209 -16q56 0 83 26.5t27 71.5q0 103 -104 103h-133v94h131q33 0 61.5 31t28.5 73q0 80 -105 80q-39 0 -86.5 -4t-75.5 -8l-28 -4l-6 94q115 20 205 20q106 0 156 -40.5t50 -127.5q0 -37 -11 -67t-27.5 -47t-27.5 -25t-20 -12q54 -16 78.5 -50.5 t24.5 -111.5q0 -197 -211 -197q-44 0 -100.5 6t-90.5 12zM111 57l802 1293l74 -47l-803 -1291zM590 -6l155 440h119l-159 -434h176l8 180h100v-180h64v-100h-64v-105h-108v105h-291v94z" />
|
||||
<glyph unicode="¿" horiz-adv-x="907" d="M82 -90q0 89 16 144t56 105t125 122q99 82 143.5 140.5t44.5 127.5v74h106q19 -52 19 -109q0 -41 -15 -79t-47.5 -77.5t-60.5 -67t-78 -71.5q-114 -98 -149 -154t-35 -147q0 -121 71.5 -172t225.5 -51q47 0 127 12.5t136 25.5l56 13l13 -104q-217 -60 -342 -60 q-208 0 -310 76.5t-102 251.5zM455 819v205h135v-205h-135z" />
|
||||
<glyph unicode="À" horiz-adv-x="1216" d="M51 0l410 1423h297l407 -1423h-125l-114 393h-635l-113 -393h-127zM322 506h573l-231 807h-111zM344 1790l45 111l424 -203l-41 -88z" />
|
||||
<glyph unicode="Á" horiz-adv-x="1216" d="M51 0l410 1423h297l407 -1423h-125l-114 393h-635l-113 -393h-127zM322 506h573l-231 807h-111zM393 1698l424 203l45 -111l-428 -180z" />
|
||||
<glyph unicode="Â" horiz-adv-x="1216" d="M51 0l410 1423h297l407 -1423h-125l-114 393h-635l-113 -393h-127zM279 1634l274 269h106l275 -269h-141l-185 176l-186 -176h-143zM322 506h573l-231 807h-111z" />
|
||||
<glyph unicode="Ã" horiz-adv-x="1216" d="M51 0l410 1423h297l407 -1423h-125l-114 393h-635l-113 -393h-127zM266 1776q11 13 29 32t64 50.5t81 31.5q41 0 110 -28t132 -56t88 -28q18 0 51.5 23.5t57.5 46.5l24 24l31 -92q-10 -13 -26 -31.5t-59 -50t-77 -31.5q-49 0 -175 58.5t-157 58.5q-20 0 -56 -26t-62 -52 l-25 -25zM322 506h573l-231 807h-111z" />
|
||||
<glyph unicode="Ä" horiz-adv-x="1216" d="M51 0l410 1423h297l407 -1423h-125l-114 393h-635l-113 -393h-127zM322 506h573l-231 807h-111zM342 1677v164h121v-164h-121zM754 1677v164h118v-164h-118z" />
|
||||
<glyph unicode="Å" horiz-adv-x="1216" d="M51 0l395 1378q-67 55 -67 158q0 95 62.5 150t162.5 55t162.5 -55t62.5 -150q0 -97 -61 -152l397 -1384h-125l-114 393h-635l-113 -393h-127zM322 506h573l-231 807h-111zM475 1536q0 -47 23.5 -76t66.5 -37h78q42 8 66 37t24 76q0 55 -34 85t-95 30t-95 -30t-34 -85z " />
|
||||
<glyph unicode="Æ" horiz-adv-x="1796" d="M45 0l479 1427h1172v-118h-727v-516h604v-119h-604v-555h727v-119h-852v389h-533l-135 -389h-131zM346 510h498v799h-228z" />
|
||||
<glyph unicode="Ç" horiz-adv-x="1114" d="M127 707q0 150 12 257.5t45 202.5t90.5 153t149 91t219.5 33q165 0 385 -43l-6 -111q-219 39 -369 39q-73 0 -130 -13.5t-98.5 -38t-71 -66t-48 -89t-29 -115.5t-14.5 -137.5t-4 -162.5q0 -92 4 -160.5t14.5 -135.5t29.5 -114t48.5 -87.5t71.5 -64.5t99 -37.5t130 -13.5 q150 0 367 39l6 -110q-194 -40 -366 -43v-86q119 0 171 -32t52 -122q0 -87 -48.5 -129.5t-134.5 -42.5q-40 0 -83 3t-66 6l-23 3l5 82q84 -6 145 -6q92 0 92 84q0 76 -92 76h-96v166q-111 7 -191.5 43.5t-131.5 95t-81 149.5t-41.5 194t-11.5 243z" />
|
||||
<glyph unicode="È" horiz-adv-x="1130" d="M178 0v1423h854v-114h-727v-529h604v-112h-604v-555h727v-113h-854zM362 1790l46 111l423 -203l-40 -88z" />
|
||||
<glyph unicode="É" horiz-adv-x="1130" d="M178 0v1423h854v-114h-727v-529h604v-112h-604v-555h727v-113h-854zM373 1698l424 203l45 -111l-428 -180z" />
|
||||
<glyph unicode="Ê" horiz-adv-x="1130" d="M178 0v1423h854v-114h-727v-529h604v-112h-604v-555h727v-113h-854zM270 1634l275 269h106l275 -269h-142l-184 176l-186 -176h-144z" />
|
||||
<glyph unicode="Ë" horiz-adv-x="1130" d="M178 0v1423h854v-114h-727v-529h604v-112h-604v-555h727v-113h-854zM338 1677v164h121v-164h-121zM750 1677v164h118v-164h-118z" />
|
||||
<glyph unicode="Ì" horiz-adv-x="483" d="M-39 1790l45 111l424 -203l-41 -88zM178 0v1423h127v-1423h-127z" />
|
||||
<glyph unicode="Í" horiz-adv-x="483" d="M29 1698l424 203l45 -111l-428 -180zM178 0v1423h127v-1423h-127z" />
|
||||
<glyph unicode="Î" horiz-adv-x="483" d="M-96 1634l274 269h107l274 -269h-141l-185 176l-186 -176h-143zM178 0v1423h127v-1423h-127z" />
|
||||
<glyph unicode="Ï" horiz-adv-x="483" d="M-25 1677v164h121v-164h-121zM178 0v1423h127v-1423h-127zM387 1677v164h119v-164h-119z" />
|
||||
<glyph unicode="Ð" horiz-adv-x="1329" d="M39 655v119h145v653h516q508 0 508 -692q0 -123 -14.5 -226.5t-51 -199.5t-93 -163t-145.5 -106.5t-204 -39.5h-516v655h-145zM309 119h391q87 0 154 35.5t108.5 93.5t68 140t36.5 166t10 181q0 574 -377 574h-391v-535h338v-119h-338v-536z" />
|
||||
<glyph unicode="Ñ" horiz-adv-x="1376" d="M178 0v1423h250l596 -1310h47v1310h125v-1423h-246l-600 1309h-45v-1309h-127zM350 1776q11 13 29 32t64 50.5t81 31.5q41 0 110 -28t132 -56t88 -28q18 0 51.5 23.5t57.5 46.5l24 24l31 -92q-10 -13 -26 -31.5t-59 -50t-77 -31.5q-49 0 -175 58.5t-157 58.5 q-20 0 -56 -26t-62 -52l-25 -25z" />
|
||||
<glyph unicode="Ò" horiz-adv-x="1355" d="M123 705q0 147 15.5 258t54 204t101 152.5t158.5 92t226 32.5t226 -32.5t159.5 -91.5t101.5 -152t54 -204.5t16 -258.5q0 -152 -15.5 -263.5t-53.5 -202t-102 -146t-159.5 -84.5t-226.5 -29q-163 0 -272 45.5t-171 141t-87 224t-25 314.5zM254 705q0 -129 10 -219.5 t37 -168.5t74.5 -124.5t122.5 -72.5t180 -26q106 0 180.5 24.5t122.5 69.5t75 122.5t37.5 169.5t10.5 225q0 126 -11 219t-39.5 172.5t-76 128.5t-122.5 76.5t-177 27.5q-103 0 -177.5 -27t-122 -76t-75.5 -129t-38.5 -172.5t-10.5 -219.5zM430 1790l45 111l424 -203 l-41 -88z" />
|
||||
<glyph unicode="Ó" horiz-adv-x="1355" d="M123 705q0 147 15.5 258t54 204t101 152.5t158.5 92t226 32.5t226 -32.5t159.5 -91.5t101.5 -152t54 -204.5t16 -258.5q0 -152 -15.5 -263.5t-53.5 -202t-102 -146t-159.5 -84.5t-226.5 -29q-163 0 -272 45.5t-171 141t-87 224t-25 314.5zM254 705q0 -129 10 -219.5 t37 -168.5t74.5 -124.5t122.5 -72.5t180 -26q106 0 180.5 24.5t122.5 69.5t75 122.5t37.5 169.5t10.5 225q0 126 -11 219t-39.5 172.5t-76 128.5t-122.5 76.5t-177 27.5q-103 0 -177.5 -27t-122 -76t-75.5 -129t-38.5 -172.5t-10.5 -219.5zM422 1698l424 203l45 -111 l-428 -180z" />
|
||||
<glyph unicode="Ô" horiz-adv-x="1355" d="M123 705q0 147 15.5 258t54 204t101 152.5t158.5 92t226 32.5t226 -32.5t159.5 -91.5t101.5 -152t54 -204.5t16 -258.5q0 -152 -15.5 -263.5t-53.5 -202t-102 -146t-159.5 -84.5t-226.5 -29q-163 0 -272 45.5t-171 141t-87 224t-25 314.5zM254 705q0 -129 10 -219.5 t37 -168.5t74.5 -124.5t122.5 -72.5t180 -26q106 0 180.5 24.5t122.5 69.5t75 122.5t37.5 169.5t10.5 225q0 126 -11 219t-39.5 172.5t-76 128.5t-122.5 76.5t-177 27.5q-103 0 -177.5 -27t-122 -76t-75.5 -129t-38.5 -172.5t-10.5 -219.5zM350 1634l275 269h106l275 -269 h-142l-184 176l-186 -176h-144z" />
|
||||
<glyph unicode="Õ" horiz-adv-x="1355" d="M123 705q0 147 15.5 258t54 204t101 152.5t158.5 92t226 32.5t226 -32.5t159.5 -91.5t101.5 -152t54 -204.5t16 -258.5q0 -152 -15.5 -263.5t-53.5 -202t-102 -146t-159.5 -84.5t-226.5 -29q-163 0 -272 45.5t-171 141t-87 224t-25 314.5zM254 705q0 -129 10 -219.5 t37 -168.5t74.5 -124.5t122.5 -72.5t180 -26q106 0 180.5 24.5t122.5 69.5t75 122.5t37.5 169.5t10.5 225q0 126 -11 219t-39.5 172.5t-76 128.5t-122.5 76.5t-177 27.5q-103 0 -177.5 -27t-122 -76t-75.5 -129t-38.5 -172.5t-10.5 -219.5zM338 1776q11 13 29 32t64 50.5 t81 31.5q41 0 110 -28t132 -56t88 -28q18 0 51.5 23.5t57.5 46.5l24 24l31 -92q-10 -13 -26 -31.5t-59 -50t-77 -31.5q-49 0 -175 58.5t-157 58.5q-20 0 -56 -26t-62 -52l-25 -25z" />
|
||||
<glyph unicode="Ö" horiz-adv-x="1355" d="M123 705q0 147 15.5 258t54 204t101 152.5t158.5 92t226 32.5t226 -32.5t159.5 -91.5t101.5 -152t54 -204.5t16 -258.5q0 -152 -15.5 -263.5t-53.5 -202t-102 -146t-159.5 -84.5t-226.5 -29q-163 0 -272 45.5t-171 141t-87 224t-25 314.5zM254 705q0 -129 10 -219.5 t37 -168.5t74.5 -124.5t122.5 -72.5t180 -26q106 0 180.5 24.5t122.5 69.5t75 122.5t37.5 169.5t10.5 225q0 126 -11 219t-39.5 172.5t-76 128.5t-122.5 76.5t-177 27.5q-103 0 -177.5 -27t-122 -76t-75.5 -129t-38.5 -172.5t-10.5 -219.5zM414 1677v164h121v-164h-121z M825 1677v164h119v-164h-119z" />
|
||||
<glyph unicode="×" d="M154 174l342 340l-342 338l79 82l340 -344l340 344l80 -80l-344 -340l344 -340l-80 -82l-340 344l-340 -342z" />
|
||||
<glyph unicode="Ø" horiz-adv-x="1355" d="M123 705q0 147 15.5 258t54 204t101 152.5t158.5 92t226 32.5q162 0 272 -49l111 235l96 -39l-119 -252q106 -86 151.5 -242.5t45.5 -391.5q0 -152 -15.5 -263.5t-53.5 -202t-102 -146t-159.5 -84.5t-226.5 -29q-150 0 -256 38l-117 -251l-96 43l121 258 q-114 81 -160.5 236.5t-46.5 400.5zM254 705q0 -201 28 -326t101 -195l516 1100q-88 45 -221 45q-103 0 -177.5 -27t-122 -76t-75.5 -129t-38.5 -172.5t-10.5 -219.5zM473 127q79 -33 205 -33q106 0 180.5 24.5t122.5 69.5t75 122.5t37.5 169.5t10.5 225q0 186 -27.5 313 t-93.5 201z" />
|
||||
<glyph unicode="Ù" horiz-adv-x="1314" d="M170 418v1005h125v-1005q0 -171 90.5 -247.5t263.5 -76.5q184 0 276.5 75.5t92.5 248.5v1005h127v-1005q0 -231 -125 -334.5t-371 -103.5q-235 0 -357 104t-122 334zM412 1790l45 111l424 -203l-41 -88z" />
|
||||
<glyph unicode="Ú" horiz-adv-x="1314" d="M170 418v1005h125v-1005q0 -171 90.5 -247.5t263.5 -76.5q184 0 276.5 75.5t92.5 248.5v1005h127v-1005q0 -231 -125 -334.5t-371 -103.5q-235 0 -357 104t-122 334zM420 1698l424 203l45 -111l-428 -180z" />
|
||||
<glyph unicode="Û" horiz-adv-x="1314" d="M170 418v1005h125v-1005q0 -171 90.5 -247.5t263.5 -76.5q184 0 276.5 75.5t92.5 248.5v1005h127v-1005q0 -231 -125 -334.5t-371 -103.5q-235 0 -357 104t-122 334zM328 1634l274 269h107l274 -269h-141l-185 176l-186 -176h-143z" />
|
||||
<glyph unicode="Ü" horiz-adv-x="1314" d="M170 418v1005h125v-1005q0 -171 90.5 -247.5t263.5 -76.5q184 0 276.5 75.5t92.5 248.5v1005h127v-1005q0 -231 -125 -334.5t-371 -103.5q-235 0 -357 104t-122 334zM391 1677v164h121v-164h-121zM803 1677v164h119v-164h-119z" />
|
||||
<glyph unicode="Ý" horiz-adv-x="1093" d="M27 1423h141l379 -690l377 690h143l-457 -821v-602h-127v602zM358 1698l424 203l45 -111l-428 -180z" />
|
||||
<glyph unicode="Þ" horiz-adv-x="1228" d="M178 0v1427h127v-237h393q228 0 335.5 -109t107.5 -338q0 -233 -109.5 -359t-333.5 -126h-393v-258h-127zM305 379h393q161 0 237.5 95t76.5 269q0 170 -74.5 249t-239.5 79h-393v-692z" />
|
||||
<glyph unicode="ß" horiz-adv-x="1155" d="M154 0v1128q0 207 88 289t293 82t291.5 -67.5t86.5 -221.5q0 -108 -36.5 -167.5t-122.5 -96.5q-76 -36 -99.5 -54.5t-23.5 -47.5q0 -33 34.5 -59.5t143.5 -82.5q155 -77 211.5 -143.5t56.5 -189.5q0 -209 -93 -299t-316 -90q-43 0 -107 6.5t-107 13.5l-42 6l6 107 q167 -21 241 -21q161 0 225 62.5t64 197.5q0 93 -45 141.5t-186 118.5q-127 63 -170 107.5t-43 116.5q0 67 37 104.5t121 75.5q71 33 96.5 74t25.5 114q0 101 -54 141.5t-195 40.5q-73 0 -119 -11.5t-79.5 -42.5t-48 -85t-14.5 -139v-1108h-120z" />
|
||||
<glyph unicode="à" horiz-adv-x="1021" d="M88 289q0 141 72.5 212.5t228.5 86.5l348 35v96q0 114 -49.5 164.5t-150.5 50.5q-65 0 -162 -8t-161 -16l-64 -7l-7 98q226 43 398 43q165 0 241 -80t76 -245v-549q7 -75 133 -90l-6 -98q-158 0 -231 81q-22 -9 -59 -23t-138.5 -37t-187.5 -23q-136 0 -208.5 78.5 t-72.5 230.5zM215 291q0 -99 43 -153t127 -54q74 0 162 18t139 36l51 18v370l-334 -34q-101 -9 -144.5 -57.5t-43.5 -143.5zM256 1403l45 106l424 -198l-39 -86z" />
|
||||
<glyph unicode="á" horiz-adv-x="1021" d="M88 289q0 141 72.5 212.5t228.5 86.5l348 35v96q0 114 -49.5 164.5t-150.5 50.5q-65 0 -162 -8t-161 -16l-64 -7l-7 98q226 43 398 43q165 0 241 -80t76 -245v-549q7 -75 133 -90l-6 -98q-158 0 -231 81q-22 -9 -59 -23t-138.5 -37t-187.5 -23q-136 0 -208.5 78.5 t-72.5 230.5zM215 291q0 -99 43 -153t127 -54q74 0 162 18t139 36l51 18v370l-334 -34q-101 -9 -144.5 -57.5t-43.5 -143.5zM252 1311l424 198l45 -106l-430 -178z" />
|
||||
<glyph unicode="â" horiz-adv-x="1021" d="M88 289q0 141 72.5 212.5t228.5 86.5l348 35v96q0 114 -49.5 164.5t-150.5 50.5q-65 0 -162 -8t-161 -16l-64 -7l-7 98q226 43 398 43q165 0 241 -80t76 -245v-549q7 -75 133 -90l-6 -98q-158 0 -231 81q-22 -9 -59 -23t-138.5 -37t-187.5 -23q-136 0 -208.5 78.5 t-72.5 230.5zM201 1219l250 280h86l251 -280h-129l-163 188l-166 -188h-129zM215 291q0 -99 43 -153t127 -54q74 0 162 18t139 36l51 18v370l-334 -34q-101 -9 -144.5 -57.5t-43.5 -143.5z" />
|
||||
<glyph unicode="ã" horiz-adv-x="1021" d="M88 289q0 141 72.5 212.5t228.5 86.5l348 35v96q0 114 -49.5 164.5t-150.5 50.5q-65 0 -162 -8t-161 -16l-64 -7l-7 98q226 43 398 43q165 0 241 -80t76 -245v-549q7 -75 133 -90l-6 -98q-158 0 -231 81q-22 -9 -59 -23t-138.5 -37t-187.5 -23q-136 0 -208.5 78.5 t-72.5 230.5zM168 1366q4 4 11.5 11t29 24.5t42.5 31t48 24.5t49 11q43 0 152.5 -49t138.5 -49q18 0 52 20t59 40l24 20l29 -86q-10 -11 -27.5 -27t-61.5 -42.5t-77 -26.5q-43 0 -151.5 50t-139.5 50q-21 0 -57.5 -21t-62.5 -42l-27 -21zM215 291q0 -99 43 -153t127 -54 q74 0 162 18t139 36l51 18v370l-334 -34q-101 -9 -144.5 -57.5t-43.5 -143.5z" />
|
||||
<glyph unicode="ä" horiz-adv-x="1021" d="M88 289q0 141 72.5 212.5t228.5 86.5l348 35v96q0 114 -49.5 164.5t-150.5 50.5q-65 0 -162 -8t-161 -16l-64 -7l-7 98q226 43 398 43q165 0 241 -80t76 -245v-549q7 -75 133 -90l-6 -98q-158 0 -231 81q-22 -9 -59 -23t-138.5 -37t-187.5 -23q-136 0 -208.5 78.5 t-72.5 230.5zM215 291q0 -99 43 -153t127 -54q74 0 162 18t139 36l51 18v370l-334 -34q-101 -9 -144.5 -57.5t-43.5 -143.5zM236 1284v164h120v-164h-120zM639 1284v164h119v-164h-119z" />
|
||||
<glyph unicode="å" horiz-adv-x="1021" d="M88 289q0 141 72.5 212.5t228.5 86.5l348 35v96q0 114 -49.5 164.5t-150.5 50.5q-65 0 -162 -8t-161 -16l-64 -7l-7 98q226 43 398 43q165 0 241 -80t76 -245v-549q7 -75 133 -90l-6 -98q-158 0 -231 81q-22 -9 -59 -23t-138.5 -37t-187.5 -23q-136 0 -208.5 78.5 t-72.5 230.5zM215 291q0 -99 43 -153t127 -54q74 0 162 18t139 36l51 18v370l-334 -34q-101 -9 -144.5 -57.5t-43.5 -143.5zM311 1325q0 86 59.5 145.5t147.5 59.5q86 0 145.5 -59.5t59.5 -145.5q0 -88 -59.5 -147.5t-145.5 -59.5q-88 0 -147.5 59.5t-59.5 147.5zM399 1325 q0 -51 34 -87t85 -36q49 0 83 36t34 87q0 50 -34 84.5t-83 34.5q-51 0 -85 -34.5t-34 -84.5z" />
|
||||
<glyph unicode="æ" horiz-adv-x="1656" d="M88 289q0 68 15 117t41.5 81.5t74.5 54t103.5 33.5t138.5 21l276 27v92q0 211 -196 211q-68 0 -165 -5t-160 -11l-64 -5l-5 111q238 26 398 26q221 0 278 -165q101 165 334 165q203 0 303.5 -115t100.5 -368l-7 -98h-696q2 -189 66.5 -279t220.5 -90q67 0 160 5t153 9 l60 5l4 -103q-229 -28 -389 -28q-205 0 -299 114l-70 -31q-27 -12 -67 -26.5t-141.5 -35.5t-195.5 -21q-134 0 -203 78.5t-69 230.5zM215 291q0 -99 42 -151t118 -52q74 0 174 21t149 37t82 28q-47 112 -47 346l-330 -31q-99 -9 -143.5 -55.5t-44.5 -142.5zM858 563h578 q0 199 -67 285t-212 86q-299 0 -299 -371z" />
|
||||
<glyph unicode="ç" horiz-adv-x="886" d="M111 530q0 280 97 397t327 117q39 0 105.5 -6.5t113.5 -13.5l47 -6l-6 -105q-162 21 -240 21q-182 0 -249.5 -89.5t-67.5 -314.5q0 -103 7.5 -170.5t27 -123t55.5 -85.5t91 -45.5t136 -15.5q35 0 96 5t105 9l43 5l4 -105q-183 -24 -271 -24h-28v-86q119 0 171 -32 t52 -122q0 -88 -48.5 -130t-133.5 -42q-40 0 -83 3t-66 6l-23 3l4 82q84 -6 145 -6q92 0 92 84q0 76 -92 76h-96v170q-180 23 -247.5 146t-67.5 398z" />
|
||||
<glyph unicode="è" horiz-adv-x="1032" d="M109 508q0 536 421 536q202 0 303 -116t101 -369l-4 -98h-697q0 -189 64.5 -280t220.5 -91q67 0 160.5 5t153.5 9l61 5l4 -101q-231 -28 -391 -28q-113 1 -190.5 34.5t-122.5 102.5t-64.5 163.5t-19.5 227.5zM233 563h578q0 203 -67 289t-214 86q-145 0 -221 -89 t-76 -286zM252 1405l45 106l424 -198l-39 -86z" />
|
||||
<glyph unicode="é" horiz-adv-x="1032" d="M109 508q0 536 421 536q202 0 303 -116t101 -369l-4 -98h-697q0 -189 64.5 -280t220.5 -91q67 0 160.5 5t153.5 9l61 5l4 -101q-231 -28 -391 -28q-113 1 -190.5 34.5t-122.5 102.5t-64.5 163.5t-19.5 227.5zM233 563h578q0 203 -67 289t-214 86q-145 0 -221 -89 t-76 -286zM315 1311l424 198l45 -106l-430 -178z" />
|
||||
<glyph unicode="ê" horiz-adv-x="1032" d="M109 508q0 536 421 536q202 0 303 -116t101 -369l-4 -98h-697q0 -189 64.5 -280t220.5 -91q67 0 160.5 5t153.5 9l61 5l4 -101q-231 -28 -391 -28q-113 1 -190.5 34.5t-122.5 102.5t-64.5 163.5t-19.5 227.5zM233 563h578q0 203 -67 289t-214 86q-145 0 -221 -89 t-76 -286zM242 1219l250 280h86l251 -280h-129l-163 188l-166 -188h-129z" />
|
||||
<glyph unicode="ë" horiz-adv-x="1032" d="M109 508q0 536 421 536q202 0 303 -116t101 -369l-4 -98h-697q0 -189 64.5 -280t220.5 -91q67 0 160.5 5t153.5 9l61 5l4 -101q-231 -28 -391 -28q-113 1 -190.5 34.5t-122.5 102.5t-64.5 163.5t-19.5 227.5zM233 563h578q0 203 -67 289t-214 86q-145 0 -221 -89 t-76 -286zM262 1284v164h121v-164h-121zM666 1284v164h118v-164h-118z" />
|
||||
<glyph unicode="ì" horiz-adv-x="428" d="M-123 1403l45 106l424 -198l-39 -86zM154 0v1024h120v-1024h-120z" />
|
||||
<glyph unicode="í" horiz-adv-x="428" d="M82 1311l424 198l45 -106l-430 -178zM154 0h120v1024h-120v-1024z" />
|
||||
<glyph unicode="î" horiz-adv-x="428" d="M-82 1219l250 280h86l252 -280h-129l-164 188l-166 -188h-129zM154 0h120v1024h-120v-1024z" />
|
||||
<glyph unicode="ï" horiz-adv-x="428" d="M-55 1284v164h121v-164h-121zM154 0h120v1024h-120v-1024zM348 1284v164h119v-164h-119z" />
|
||||
<glyph unicode="ð" horiz-adv-x="1112" d="M88 438q0 199 113 319t313 120q68 0 157 -20t144 -40l55 -20q-13 287 -305 460l-246 -163l-59 80l205 137q-112 51 -262 92l28 96q194 -47 338 -117l209 140l60 -80l-170 -115q331 -207 331 -604q0 -272 -47.5 -433.5t-147 -234.5t-265.5 -73q-214 0 -332.5 117.5 t-118.5 338.5zM217 438q0 -165 82.5 -254.5t239.5 -89.5q122 0 192.5 54.5t104.5 182t36 353.5q-23 9 -61 22.5t-132 35.5t-159 22q-142 0 -222.5 -91t-80.5 -235z" />
|
||||
<glyph unicode="ñ" horiz-adv-x="1091" d="M154 0h120v848q18 10 48 24t113.5 38t154.5 24q52 0 89 -8.5t63.5 -29.5t43 -49.5t25.5 -77t12.5 -103t3.5 -134.5v-532h123v539q0 118 -9 197.5t-30.5 141.5t-61 97t-98 52t-143.5 17q-72 0 -155.5 -24t-130.5 -48l-48 -24v76h-120v-1024zM248 1366q4 4 11.5 11t29 24.5 t42.5 31t48 24.5t49 11q43 0 152.5 -49t138.5 -49q18 0 52 20t59 40l24 20l29 -86q-10 -11 -27.5 -27t-61.5 -42.5t-77 -26.5q-43 0 -151.5 50t-139.5 50q-21 0 -57.5 -21t-62.5 -42l-27 -21z" />
|
||||
<glyph unicode="ò" horiz-adv-x="1079" d="M111 526q0 275 97.5 396.5t332.5 121.5q233 0 330.5 -121.5t97.5 -396.5q0 -151 -19 -249.5t-67 -167.5t-131 -99t-211 -30q-129 0 -212.5 30t-131.5 99t-67 167t-19 250zM238 526q0 -102 6 -167t24 -121.5t51.5 -86.5t87.5 -46.5t134 -16.5q66 0 114 10t82 34.5 t54.5 56.5t32.5 85t16 110.5t4 141.5q0 232 -64.5 321t-238.5 89q-175 0 -239 -88.5t-64 -321.5zM299 1403l45 106l424 -198l-39 -86z" />
|
||||
<glyph unicode="ó" horiz-adv-x="1079" d="M111 526q0 -152 19 -250t67 -167t131.5 -99t212.5 -30q128 0 211 30t131 99t67 167.5t19 249.5q0 275 -97.5 396.5t-330.5 121.5q-235 0 -332.5 -121.5t-97.5 -396.5zM238 526q0 233 64 321.5t239 88.5q174 0 238.5 -89t64.5 -321q0 -84 -4 -141.5t-16 -110.5t-32.5 -85 t-54.5 -56.5t-82 -34.5t-114 -10q-80 0 -134 16.5t-87.5 46.5t-51.5 86.5t-24 121.5t-6 167zM334 1311l424 198l45 -106l-430 -178z" />
|
||||
<glyph unicode="ô" horiz-adv-x="1079" d="M111 526q0 -152 19 -250t67 -167t131.5 -99t212.5 -30q128 0 211 30t131 99t67 167.5t19 249.5q0 275 -97.5 396.5t-330.5 121.5q-235 0 -332.5 -121.5t-97.5 -396.5zM238 526q0 233 64 321.5t239 88.5q174 0 238.5 -89t64.5 -321q0 -84 -4 -141.5t-16 -110.5t-32.5 -85 t-54.5 -56.5t-82 -34.5t-114 -10q-80 0 -134 16.5t-87.5 46.5t-51.5 86.5t-24 121.5t-6 167zM244 1219l250 280h86l251 -280h-129l-163 188l-166 -188h-129z" />
|
||||
<glyph unicode="õ" horiz-adv-x="1079" d="M111 526q0 -152 19 -250t67 -167t131.5 -99t212.5 -30q128 0 211 30t131 99t67 167.5t19 249.5q0 275 -97.5 396.5t-330.5 121.5q-235 0 -332.5 -121.5t-97.5 -396.5zM221 1366q4 4 11.5 11t29 24.5t42.5 31t48 24.5t49 11q43 0 152.5 -49t138.5 -49q18 0 52 20t58 40 l25 20l29 -86q-10 -11 -27.5 -27t-61.5 -42.5t-77 -26.5q-43 0 -151.5 50t-139.5 50q-21 0 -57.5 -21t-63.5 -42l-26 -21zM238 526q0 233 64 321.5t239 88.5q174 0 238.5 -89t64.5 -321q0 -84 -4 -141.5t-16 -110.5t-32.5 -85t-54.5 -56.5t-82 -34.5t-114 -10 q-80 0 -134 16.5t-87.5 46.5t-51.5 86.5t-24 121.5t-6 167z" />
|
||||
<glyph unicode="ö" horiz-adv-x="1079" d="M111 526q0 -152 19 -250t67 -167t131.5 -99t212.5 -30q128 0 211 30t131 99t67 167.5t19 249.5q0 275 -97.5 396.5t-330.5 121.5q-235 0 -332.5 -121.5t-97.5 -396.5zM238 526q0 233 64 321.5t239 88.5q174 0 238.5 -89t64.5 -321q0 -84 -4 -141.5t-16 -110.5t-32.5 -85 t-54.5 -56.5t-82 -34.5t-114 -10q-80 0 -134 16.5t-87.5 46.5t-51.5 86.5t-24 121.5t-6 167zM270 1284v164h121v-164h-121zM674 1284v164h119v-164h-119z" />
|
||||
<glyph unicode="÷" d="M199 539v120h749v-120h-749zM426 686v184h295v-184h-295zM510 68v190h125v-190h-125z" />
|
||||
<glyph unicode="ø" horiz-adv-x="1079" d="M111 526q0 275 97.5 396.5t332.5 121.5q91 0 159 -18l88 213l89 -31l-91 -215q97 -53 140 -166.5t43 -300.5q0 -151 -19 -249.5t-67 -167.5t-131 -99t-211 -30q-90 0 -162 16l-92 -227l-86 30l90 228q-100 52 -140 170.5t-40 328.5zM238 526q0 -171 20 -261.5t82 -131.5 l319 789q-46 14 -118 14q-175 0 -239 -88.5t-64 -321.5zM420 100q49 -12 121 -12q66 0 114 10t82 34.5t54.5 56.5t32.5 85t16 110.5t4 141.5q0 145 -23.5 231t-79.5 128z" />
|
||||
<glyph unicode="ù" horiz-adv-x="1075" d="M143 489v535h121v-532q0 -98 5 -159.5t19 -112.5t40.5 -77t68 -39.5t103.5 -13.5q72 0 147 21.5t115 42.5l39 22v848h121v-1024h-121v76q-18 -11 -48.5 -27t-114 -42.5t-153.5 -26.5q-72 0 -124.5 10.5t-91 36.5t-62.5 63t-38.5 97t-20 131t-5.5 171zM242 1403l45 106 l424 -198l-39 -86z" />
|
||||
<glyph unicode="ú" horiz-adv-x="1075" d="M143 489q0 -100 5.5 -171t20 -131t38.5 -97t62.5 -63t91 -36.5t124.5 -10.5q70 0 149 24t123 48l44 24v-76h121v1024h-121v-848q-6 -3 -16 -9t-43 -21t-66.5 -26t-82 -20.5t-93.5 -9.5q-62 0 -103.5 13.5t-68 39.5t-40.5 77t-19 112.5t-5 159.5v532h-121v-535zM330 1311 l424 198l45 -106l-430 -178z" />
|
||||
<glyph unicode="û" horiz-adv-x="1075" d="M143 489q0 -100 5.5 -171t20 -131t38.5 -97t62.5 -63t91 -36.5t124.5 -10.5q70 0 149 24t123 48l44 24v-76h121v1024h-121v-848q-6 -3 -16 -9t-43 -21t-66.5 -26t-82 -20.5t-93.5 -9.5q-62 0 -103.5 13.5t-68 39.5t-40.5 77t-19 112.5t-5 159.5v532h-121v-535zM227 1219 l250 280h86l252 -280h-129l-164 188l-166 -188h-129z" />
|
||||
<glyph unicode="ü" horiz-adv-x="1075" d="M143 489q0 -100 5.5 -171t20 -131t38.5 -97t62.5 -63t91 -36.5t124.5 -10.5q70 0 149 24t123 48l44 24v-76h121v1024h-121v-848q-6 -3 -16 -9t-43 -21t-66.5 -26t-82 -20.5t-93.5 -9.5q-62 0 -103.5 13.5t-68 39.5t-40.5 77t-19 112.5t-5 159.5v532h-121v-535zM283 1284 v164h120v-164h-120zM686 1284v164h119v-164h-119z" />
|
||||
<glyph unicode="ý" horiz-adv-x="978" d="M55 1024h125l273 -918h73l275 918h125l-443 -1485h-123l138 461h-142zM330 1311l424 198l45 -106l-430 -178z" />
|
||||
<glyph unicode="þ" horiz-adv-x="1069" d="M154 -461v1940h120v-510q18 8 49.5 20.5t116 33.5t154.5 21q205 0 284.5 -117t79.5 -397q0 -153 -21.5 -253.5t-75 -169t-142.5 -98t-225 -29.5q-36 0 -91 3.5t-92 6.5l-37 4v-455h-120zM274 100q143 -12 211 -12q89 0 151 18t101 50t60.5 89t29 122t7.5 161 q0 219 -52.5 312.5t-195.5 93.5q-70 0 -148 -17.5t-121 -34.5l-43 -18v-764z" />
|
||||
<glyph unicode="ÿ" horiz-adv-x="978" d="M55 1024h125l273 -918h73l275 918h125l-443 -1485h-123l138 461h-142zM225 1284v164h121v-164h-121zM629 1284v164h119v-164h-119z" />
|
||||
<glyph unicode="Œ" horiz-adv-x="1904" d="M123 707q0 190 25.5 322t87 229t168 143.5t264.5 46.5q168 0 301 -21h837v-122h-712v-512h589v-123h-589v-547h712v-125h-835q-189 -18 -303 -18q-130 0 -224.5 30.5t-156.5 87t-98.5 148.5t-51 201.5t-14.5 259.5zM254 709q0 -108 7 -188t24.5 -151t48 -118.5 t77.5 -82.5t113.5 -51t155.5 -16q85 0 289 17v1186q-264 22 -291 22q-103 0 -177 -25.5t-122 -72t-75.5 -125t-38.5 -171.5t-11 -224z" />
|
||||
<glyph unicode="œ" horiz-adv-x="1767" d="M111 528q0 274 99 394t333 120q143 0 232 -53t134 -172q50 121 140 173t217 52q202 0 302.5 -115t100.5 -368l-4 -98h-696q0 -189 64 -279t220 -90q67 0 160.5 5t154.5 9l60 5l4 -103q-231 -28 -391 -28q-131 0 -212.5 49t-125.5 149q-41 -104 -126 -151t-234 -47 q-129 0 -212.5 30t-132.5 99.5t-68 168.5t-19 250zM238 528q0 -100 6.5 -165.5t25 -122t52.5 -87t88 -47t133 -16.5t133 18t87 50t51 89t24 120t6 159q0 218 -71.5 312t-229.5 94q-174 0 -239.5 -87.5t-65.5 -316.5zM969 563h577q0 200 -66.5 285.5t-213.5 85.5 q-297 0 -297 -371z" />
|
||||
<glyph unicode="Ÿ" horiz-adv-x="1093" d="M27 1423h141l379 -690l377 690h143l-457 -821v-602h-127v602zM279 1677v164h120v-164h-120zM690 1677v164h119v-164h-119z" />
|
||||
<glyph unicode="ˆ" horiz-adv-x="466" d="M-35 1219l250 280h86l252 -280h-129l-164 188l-166 -188h-129z" />
|
||||
<glyph unicode="˜" horiz-adv-x="466" d="M-66 1366q12 11 31 28t67 45.5t83 28.5q43 0 152.5 -49t138.5 -49q18 0 52 20t58 40l25 20l28 -86q-10 -11 -27.5 -27t-61.5 -42.5t-77 -26.5q-43 0 -151 50t-139 50q-21 0 -58 -21t-63 -42l-27 -21z" />
|
||||
<glyph unicode=" " horiz-adv-x="951" />
|
||||
<glyph unicode=" " horiz-adv-x="1903" />
|
||||
<glyph unicode=" " horiz-adv-x="951" />
|
||||
<glyph unicode=" " horiz-adv-x="1903" />
|
||||
<glyph unicode=" " horiz-adv-x="634" />
|
||||
<glyph unicode=" " horiz-adv-x="475" />
|
||||
<glyph unicode=" " horiz-adv-x="317" />
|
||||
<glyph unicode=" " horiz-adv-x="317" />
|
||||
<glyph unicode=" " horiz-adv-x="237" />
|
||||
<glyph unicode=" " horiz-adv-x="380" />
|
||||
<glyph unicode=" " horiz-adv-x="105" />
|
||||
<glyph unicode="‐" horiz-adv-x="911" d="M145 510v115h623v-115h-623z" />
|
||||
<glyph unicode="‑" horiz-adv-x="911" d="M145 510v115h623v-115h-623z" />
|
||||
<glyph unicode="‒" horiz-adv-x="911" d="M145 510v115h623v-115h-623z" />
|
||||
<glyph unicode="–" horiz-adv-x="1302" d="M139 494v110h1024v-110h-1024z" />
|
||||
<glyph unicode="—" horiz-adv-x="2326" d="M139 494v110h2048v-110h-2048z" />
|
||||
<glyph unicode="‘" horiz-adv-x="428" d="M113 1032l118 432h99l-86 -432h-131z" />
|
||||
<glyph unicode="’" horiz-adv-x="423" d="M117 1030l86 432h131l-119 -432h-98z" />
|
||||
<glyph unicode="‚" horiz-adv-x="425" d="M106 -100l60 215h49l-43 -215h-66z" />
|
||||
<glyph unicode="“" horiz-adv-x="727" d="M113 1032l118 432h99l-86 -432h-131zM412 1032l118 432h99l-86 -432h-131z" />
|
||||
<glyph unicode="”" horiz-adv-x="739" d="M117 1032l86 432h131l-119 -432h-98zM432 1032l86 432h131l-119 -432h-98z" />
|
||||
<glyph unicode="„" horiz-adv-x="702" d="M59 -205l119 432h98l-86 -432h-131zM352 -205l119 432h98l-86 -432h-131z" />
|
||||
<glyph unicode="•" horiz-adv-x="978" d="M233 219v590h512v-590h-512z" />
|
||||
<glyph unicode="…" horiz-adv-x="1464" d="M143 0v207h136v-207h-136zM664 0v207h135v-207h-135zM1186 0v207h135v-207h-135z" />
|
||||
<glyph unicode=" " horiz-adv-x="380" />
|
||||
<glyph unicode="‹" horiz-adv-x="608" d="M94 459v104l371 283v-129l-264 -203l264 -223v-131z" />
|
||||
<glyph unicode="›" horiz-adv-x="608" d="M143 164v133l263 223l-263 201v129l371 -283v-104z" />
|
||||
<glyph unicode=" " horiz-adv-x="475" />
|
||||
<glyph unicode="€" d="M61 471v104h129q-2 31 -2 97q0 75 2 112h-129v105h136q11 121 40 206.5t84.5 150t144 95.5t214.5 31q164 0 364 -41l-6 -104q-194 37 -350 37q-95 0 -162 -23.5t-108.5 -73t-63.5 -116t-32 -162.5h612v-105h-619q-2 -37 -2 -112q0 -66 2 -97h619v-104h-615 q9 -98 31 -166.5t64.5 -118t110.5 -73t165 -23.5q155 0 348 37l6 -107q-209 -40 -364 -40q-125 0 -213.5 31.5t-144 96.5t-85 152.5t-40.5 210.5h-136z" />
|
||||
<glyph unicode="™" horiz-adv-x="1396" d="M193 1196v88h409v-88h-147v-516h-97v516h-165zM670 678v606h129l149 -453l158 453h129v-606h-92v485l-152 -458h-82l-149 458v-485h-90z" />
|
||||
<glyph unicode="" horiz-adv-x="1024" d="M0 0v1024h1024v-1024h-1024z" />
|
||||
</font>
|
||||
</defs></svg>
|
After Width: | Height: | Size: 54 KiB |
BIN
fonts/titillium-light-webfont.ttf
Normal file
BIN
fonts/titillium-light-webfont.woff
Normal file
BIN
fonts/titillium-lightitalic-webfont.eot
Normal file
240
fonts/titillium-lightitalic-webfont.svg
Normal file
|
@ -0,0 +1,240 @@
|
|||
<?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></metadata>
|
||||
<defs>
|
||||
<font id="TitilliumLtBoldItalic" horiz-adv-x="1146" >
|
||||
<font-face units-per-em="2048" ascent="1536" descent="-512" />
|
||||
<missing-glyph horiz-adv-x="450" />
|
||||
<glyph horiz-adv-x="0" />
|
||||
<glyph horiz-adv-x="2048" />
|
||||
<glyph unicode=" " horiz-adv-x="450" />
|
||||
<glyph unicode="	" horiz-adv-x="450" />
|
||||
<glyph unicode=" " horiz-adv-x="450" />
|
||||
<glyph unicode="!" horiz-adv-x="401" d="M143 0l47 205h125l-47 -205h-125zM246 457l223 977h123l-238 -977h-108z" />
|
||||
<glyph unicode=""" horiz-adv-x="643" d="M424 971l104 452h117l-110 -452h-111zM551 971l104 452h117l-110 -452h-111z" />
|
||||
<glyph unicode="#" d="M135 377l27 106h233l99 402h-234l27 106h233l96 375h115l-96 -375h342l96 375h115l-96 -375h233l-27 -106h-233l-98 -402h233l-26 -106h-234l-92 -377h-115l92 377h-342l-92 -377h-115l93 377h-234zM510 483h342l98 402h-342z" />
|
||||
<glyph unicode="$" d="M197 25l22 98q121 -19 242 -29l215 568q-143 48 -205.5 108t-62.5 178q0 202 130 315t349 113q9 0 29 -1t30 -1l88 234h96l-92 -244q49 -6 99.5 -16t76.5 -16l25 -7l-22 -92q-109 19 -220 29l-196 -519q74 -26 119 -48.5t80.5 -56.5t50 -79t14.5 -110q0 -218 -129 -343.5 t-350 -125.5q-24 0 -78 4l-86 -230h-90l88 236q-55 5 -110.5 14t-83.5 15zM530 956q0 -73 41 -111t146 -75l188 498h-26q-163 0 -256 -79.5t-93 -232.5zM549 88h45q164 0 256 93.5t92 258.5q0 81 -38 119t-146 76z" />
|
||||
<glyph unicode="%" d="M340 12l704 1434l91 -25l-705 -1431zM342 1159q-36 -145 4 -217t143 -72t179 71.5t112 215.5q36 143 -4.5 212t-144.5 69t-178.5 -68.5t-110.5 -210.5zM435 1011.5q-16 50.5 9 147.5t64 143t100 46q63 0 78.5 -48t-10.5 -143q-24 -100 -62.5 -148t-101.5 -48 q-61 0 -77 50.5zM700 289q70 278 289 278q104 0 145.5 -68.5t6.5 -211.5q-36 -143 -112.5 -215t-178.5 -72q-103 0 -144.5 72t-5.5 217zM794 140.5q15 -50.5 76 -50.5q63 0 101.5 48.5t64.5 148.5q25 95 9.5 142.5t-78.5 47.5q-62 0 -100 -46t-62 -142q-26 -98 -11 -148.5z " />
|
||||
<glyph unicode="&" horiz-adv-x="1296" d="M160 301q0 207 99 330t327 209q-30 61 -42 101.5t-12 96.5q0 189 101.5 297.5t279.5 108.5q131 0 203 -58t72 -180q0 -160 -102.5 -270.5t-309.5 -187.5l244 -338q78 126 127 282h121q-29 -97 -77.5 -197t-98.5 -173l200 -256l-86 -78l-190 243q-100 -126 -216.5 -188.5 t-262.5 -62.5q-196 0 -286.5 79t-90.5 242zM289 309q0 -219 262 -219q115 0 218.5 59t178.5 168l-311 437q-192 -70 -270 -174.5t-78 -270.5zM659 1036q0 -112 66 -209q180 72 258 159t78 214q0 137 -154 137q-120 0 -184 -84t-64 -217z" />
|
||||
<glyph unicode="'" horiz-adv-x="344" d="M338 971l104 452h117l-110 -452h-111z" />
|
||||
<glyph unicode="(" horiz-adv-x="462" d="M180 223q0 136 25.5 282t66 270t89.5 243t97.5 210t89 160.5t66.5 106.5l25 37h119q-9 -14 -25.5 -40t-63.5 -109.5t-89.5 -169.5t-94.5 -212t-89.5 -246t-63 -262t-25.5 -270q0 -129 7.5 -248.5t14.5 -174.5l7 -54h-115q-5 19 -11.5 56t-18 161t-11.5 260z" />
|
||||
<glyph unicode=")" horiz-adv-x="460" d="M0 -242q9 14 25.5 40t63.5 109.5t89.5 169.5t94.5 212t89.5 246t63 262t25.5 270q0 129 -7.5 248.5t-14.5 174.5l-7 54h115q5 -19 11.5 -56t18 -161t11.5 -260t-25.5 -282t-66 -270t-89.5 -243t-97.5 -210t-89 -160.5t-66.5 -106.5l-25 -37h-119z" />
|
||||
<glyph unicode="*" horiz-adv-x="841" d="M362 938l224 162l-221 162l55 73l221 -161l84 260l88 -29l-84 -262h270v-90h-274l84 -260l-86 -27l-86 262l-221 -162z" />
|
||||
<glyph unicode="+" d="M233 457v114h398v412h117v-412h401v-114h-401v-416h-117v416h-398z" />
|
||||
<glyph unicode="," horiz-adv-x="378" d="M-4 -264l192 469h136l-228 -469h-100z" />
|
||||
<glyph unicode="-" horiz-adv-x="724" d="M223 492l29 114h504l-29 -114h-504z" />
|
||||
<glyph unicode="." horiz-adv-x="352" d="M115 0l47 205h125l-47 -205h-125z" />
|
||||
<glyph unicode="/" horiz-adv-x="831" d="M88 29l873 1413l116 -43l-874 -1413z" />
|
||||
<glyph unicode="0" d="M211 362q0 118 18.5 237t53.5 232t89.5 211t123 171.5t158 116t190.5 42.5q199 0 301 -99.5t102 -291.5q0 -188 -44 -366t-123.5 -320t-202.5 -228.5t-269 -86.5q-193 0 -295 97.5t-102 284.5zM338 377q0 -145 70 -216t200 -71q97 0 181.5 55t143.5 145t101.5 205.5 t63 237t20.5 238.5q0 143 -69.5 217t-206.5 74q-98 0 -183 -59t-142.5 -153t-99 -212t-60.5 -236t-19 -225z" />
|
||||
<glyph unicode="1" d="M492 1083l483 271h110l-311 -1354h-125l275 1198l-400 -219z" />
|
||||
<glyph unicode="2" d="M139 0l25 102l553 463q76 63 126 107.5t103 99t84 99t50.5 94.5t19.5 98q0 107 -68 154t-205 47q-71 0 -167 -12t-156 -24l-60 -11l13 100q23 6 62.5 15.5t143 25.5t185.5 16q379 0 379 -295q0 -79 -28 -152.5t-85 -143t-117 -125t-149 -126.5l-524 -421h706l-26 -111 h-865z" />
|
||||
<glyph unicode="3" d="M154 49l28 96q217 -55 379 -55q171 0 289.5 95.5t118.5 250.5q0 212 -252 215h-266l26 103l266 4q41 0 87.5 14.5t91.5 42.5t81 65t58 86.5t22 102.5q0 101 -59 147t-188 46q-83 0 -181 -10t-155 -20l-56 -11l13 96q22 6 60.5 15t144 24.5t194.5 15.5q182 0 269 -68.5 t87 -205.5q0 -140 -78 -235t-208 -144q83 -35 126.5 -98.5t43.5 -176.5q0 -142 -73 -248.5t-196 -161t-276 -54.5q-87 0 -186 17t-155 35z" />
|
||||
<glyph unicode="4" d="M162 260l22 96l664 996h139l-665 -983h518l106 460h125l-106 -460h172l-25 -109h-172l-61 -262h-125l61 262h-653z" />
|
||||
<glyph unicode="5" d="M147 47l33 103q225 -56 389 -56q183 0 311 130t128 315q0 95 -64 144.5t-188 49.5q-68 0 -154.5 -23.5t-139.5 -47.5l-52 -23l-103 18l215 695h762l-24 -111h-660l-158 -489q22 11 59 26.5t128.5 41.5t156.5 26q168 0 259.5 -71.5t91.5 -219.5q0 -158 -75.5 -289.5 t-206 -206.5t-286.5 -75q-88 0 -193.5 15.5t-167.5 31.5z" />
|
||||
<glyph unicode="6" d="M236 440q0 82 13.5 169.5t42.5 178.5t70.5 175.5t102 159t132.5 130t166.5 87.5t199.5 32q71 0 153.5 -10t129.5 -20l46 -9l-37 -104q-165 33 -323 33q-89 0 -166.5 -32.5t-132 -82.5t-100 -120.5t-73.5 -136.5t-50 -140q22 10 60 25.5t141 41t190 25.5 q179 0 268.5 -84.5t89.5 -235.5q0 -245 -144.5 -393.5t-398.5 -148.5q-184 0 -282 118t-98 342zM365 438q0 -164 63 -256t190 -92q198 0 305 114.5t107 289.5q0 121 -62 178t-204 57q-79 0 -173.5 -22t-148.5 -44l-55 -22q-22 -68 -22 -203z" />
|
||||
<glyph unicode="7" d="M315 16l801 1149l17 74h-680l26 113h807l-47 -205l-811 -1170z" />
|
||||
<glyph unicode="8" d="M135 260q0 303 354 449q-95 48 -128 99t-33 136q0 62 19 121.5t63 116t108.5 98.5t163 68t219.5 26q208 0 308 -72t100 -200q0 -130 -90 -239.5t-250 -153.5q60 -22 100.5 -51t61 -63.5t28.5 -68.5t8 -77q0 -47 -14 -101t-55.5 -121.5t-106 -120.5t-178.5 -89.5 t-260 -36.5q-418 0 -418 280zM270 279q0 -90 79.5 -139.5t232.5 -49.5q96 0 175 23.5t129.5 60.5t85.5 83.5t49.5 90t14.5 82.5q0 96 -50.5 140.5t-166.5 76.5h-213q-50 -14 -95 -33.5t-90.5 -51t-77.5 -70.5t-52.5 -94t-20.5 -119zM455 952q0 -68 40 -115t138 -81h213 q48 12 99.5 35t104.5 60t87 93t34 121q0 101 -70.5 149t-228.5 48q-112 0 -195.5 -27t-130 -73t-69 -99t-22.5 -111z" />
|
||||
<glyph unicode="9" d="M160 23l43 110q155 -37 315 -37q188 0 321.5 123.5t198.5 374.5q-28 -9 -74.5 -22t-153.5 -34.5t-171 -21.5q-192 0 -277.5 99t-48.5 300q39 199 194.5 328t371.5 129q222 0 297.5 -170t9.5 -489q-28 -157 -77.5 -280.5t-114 -207.5t-146 -139.5t-170.5 -80.5t-191 -25 q-68 0 -149.5 10.5t-129.5 21.5zM440 922q-62 -291 238 -291q62 0 159 18.5t163 36.5l67 19q37 170 32 292.5t-68 191t-181 68.5q-149 0 -263.5 -90.5t-146.5 -244.5z" />
|
||||
<glyph unicode=":" horiz-adv-x="356" d="M115 0l47 205h125l-47 -205h-125zM274 692l48 205h124l-47 -205h-125z" />
|
||||
<glyph unicode=";" horiz-adv-x="423" d="M20 -264h101l227 469h-135zM315 692l47 205h125l-47 -205h-125z" />
|
||||
<glyph unicode="<" d="M213 459v110l860 426v-129l-735 -350l735 -356v-131z" />
|
||||
<glyph unicode="=" d="M252 272v115h878v-115h-878zM252 639v115h878v-115h-878z" />
|
||||
<glyph unicode=">" d="M305 29v131l735 356l-735 350v129l860 -426v-110z" />
|
||||
<glyph unicode="?" horiz-adv-x="839" d="M299 2l45 211h127l-47 -211h-125zM375 1290l6 103q180 51 313 51q150 0 239 -62.5t89 -193.5q0 -53 -6 -93.5t-24.5 -80.5t-40.5 -71t-66 -73.5t-87.5 -78.5t-117.5 -95q-147 -118 -168 -221l-16 -80h-117q4 60 14 113q26 134 211 276q73 59 114 94.5t79.5 75t56 72 t27.5 71t10 85.5q0 79 -56.5 113t-164.5 34q-53 0 -126.5 -9.5t-121.5 -19.5z" />
|
||||
<glyph unicode="@" horiz-adv-x="1898" d="M184.5 159.5q-5.5 96.5 5 188.5t33.5 191q61 258 153 436t226.5 289t306 160t400.5 49q138 0 247.5 -23.5t186 -65.5t129.5 -104t80.5 -134.5t35.5 -161t-1.5 -180.5t-34.5 -196q-38 -161 -80 -274.5t-84.5 -182t-95.5 -107t-103.5 -51.5t-118.5 -13q-86 0 -135 27.5 t-59 92.5q-87 -44 -197 -82t-194 -38q-59 0 -103.5 15.5t-71.5 41t-43.5 63.5t-22.5 75.5t-5 86t5.5 85t12.5 81.5q110 616 521 616q116 0 374 -49q-36 -138 -102.5 -436.5t-67.5 -372.5q-1 -56 25 -73t88 -17q44 0 77.5 11t70 43.5t67.5 90.5t64 155t65 233q21 92 30 169 t4.5 153.5t-26 136.5t-65 113t-110 87.5t-164 54t-222.5 19.5q-391 0 -611.5 -191t-328.5 -632q-206 -836 574 -836q34 0 103.5 4.5t122.5 8.5l52 5l-20 -110q-195 -21 -287 -21q-150 0 -268.5 30t-197 81t-131.5 124.5t-78.5 155.5t-31 178.5zM763.5 306q-2.5 -55 8.5 -105 t46.5 -78.5t94.5 -28.5q133 -2 347 113q4 49 52.5 271.5t96.5 426.5q-117 31 -240 31q-157 0 -246.5 -128t-142.5 -382q-14 -65 -16.5 -120z" />
|
||||
<glyph unicode="A" horiz-adv-x="1136" d="M55 0l727 1423h258l47 -1423h-124l-17 391h-561l-203 -391h-127zM440 502h506l-26 809h-66z" />
|
||||
<glyph unicode="B" horiz-adv-x="1183" d="M166 0l328 1423h450q168 0 251 -63.5t83 -208.5q0 -154 -77.5 -261t-196.5 -153q91 -32 135.5 -89.5t44.5 -155.5q0 -227 -140.5 -359.5t-398.5 -132.5h-479zM317 111h355q181 0 281 101.5t100 276.5q0 53 -19.5 90t-57 57t-82 28t-103.5 8h-345zM471 782h340 q149 0 243.5 102t94.5 251q0 100 -53 139t-174 39h-330z" />
|
||||
<glyph unicode="C" horiz-adv-x="1036" d="M236 387q0 111 18.5 229t55.5 237.5t97 225t136 187.5t181.5 130t225.5 48q71 0 155.5 -11t133.5 -23l49 -11l-28 -103q-166 33 -318 33q-92 0 -174.5 -41.5t-144 -112.5t-111.5 -164.5t-81 -198.5t-47.5 -212t-16.5 -209q0 -152 66 -224.5t210 -72.5q72 0 155 9t130 17 l47 9l-6 -104q-182 -45 -344 -45q-194 0 -291.5 103t-97.5 304z" />
|
||||
<glyph unicode="D" horiz-adv-x="1243" d="M166 0l328 1423h460q190 0 282.5 -101.5t92.5 -320.5q0 -132 -25 -268t-79.5 -268.5t-131.5 -235t-191 -166t-249 -63.5h-487zM319 113h355q84 0 159.5 41.5t131.5 111.5t101 160t73.5 189.5t43.5 198t15 187.5q0 163 -62.5 236.5t-205.5 73.5h-336z" />
|
||||
<glyph unicode="E" horiz-adv-x="1038" d="M166 0l328 1423h784l-27 -112h-657l-123 -529h545l-27 -112h-543l-129 -557h658l-27 -113h-782z" />
|
||||
<glyph unicode="F" horiz-adv-x="989" d="M166 0l328 1423h766l-27 -112h-639l-137 -594h549l-27 -111h-549l-139 -606h-125z" />
|
||||
<glyph unicode="G" horiz-adv-x="1173" d="M238 373q0 153 26.5 302t84.5 289t141 246t204.5 170t266.5 64q90 0 191.5 -15t157.5 -30l56 -15l-33 -98q-207 45 -389 45q-115 0 -213 -61.5t-163 -161t-111.5 -226.5t-67 -257t-20.5 -254q0 -279 299 -279q56 0 125.5 9t110.5 19l42 9l115 487h-236l25 109h362 l-161 -688q-21 -6 -58.5 -15.5t-142 -25.5t-195.5 -16q-417 0 -417 393z" />
|
||||
<glyph unicode="H" horiz-adv-x="1277" d="M166 0l328 1423h127l-152 -651h696l152 651h125l-328 -1423h-127l152 659h-697l-151 -659h-125z" />
|
||||
<glyph unicode="I" horiz-adv-x="456" d="M166 0l328 1423h127l-330 -1423h-125z" />
|
||||
<glyph unicode="J" horiz-adv-x="532" d="M14 -145l21 112q49 1 80.5 4.5t59 16t44 29.5t33 51.5t27.5 74.5t26 105l273 1175h124l-274 -1190q-20 -87 -34.5 -138t-38 -99t-48.5 -71t-68 -41t-95 -23.5t-130 -5.5z" />
|
||||
<glyph unicode="K" horiz-adv-x="1056" d="M166 0l328 1423h127l-156 -669l201 4l536 665h144l-580 -718l252 -705h-133l-230 645l-217 -4l-147 -641h-125z" />
|
||||
<glyph unicode="L" horiz-adv-x="892" d="M166 0l328 1423h127l-304 -1310h586l-24 -113h-713z" />
|
||||
<glyph unicode="M" horiz-adv-x="1593" d="M166 0l328 1423h223l110 -1245l705 1245h225l-330 -1423h-127l306 1311h-23l-711 -1264h-137l-119 1264h-22l-303 -1311h-125z" />
|
||||
<glyph unicode="N" horiz-adv-x="1280" d="M166 0l328 1423h237l248 -1298h43l299 1298h123l-328 -1423h-229l-254 1303h-45l-301 -1303h-121z" />
|
||||
<glyph unicode="O" horiz-adv-x="1292" d="M240 403q0 260 85 504t240 387q166 150 375 150q218 0 328 -103.5t110 -320.5q0 -276 -88 -525t-254 -386q-154 -129 -364 -129q-228 0 -330 97.5t-102 325.5zM369 408q0 -172 71.5 -244t243.5 -72q143 0 252 86q101 80 174 225.5t105 301.5t32 309q0 165 -75.5 241 t-239.5 76q-131 0 -236 -82q-104 -81 -180.5 -230.5t-111.5 -307t-35 -303.5z" />
|
||||
<glyph unicode="P" horiz-adv-x="1120" d="M166 0l328 1423h458q172 0 251 -79.5t79 -241.5q0 -174 -59 -309.5t-181 -217t-292 -81.5h-344l-115 -494h-125zM432 606h338q126 0 214 70t127.5 179.5t39.5 246.5q0 105 -50.5 156t-164.5 51h-342z" />
|
||||
<glyph unicode="Q" horiz-adv-x="1292" d="M240 403q0 260 85 504t240 387q166 150 375 150q218 0 328 -103.5t110 -320.5q0 -276 -88 -525t-254 -386q-44 -38 -98 -66l96 -297l-119 -39l-92 293q-78 -20 -151 -20q-228 0 -330 97.5t-102 325.5zM369 408q0 -172 71.5 -244t243.5 -72q143 0 252 86q101 80 174 225.5 t105 301.5t32 309q0 165 -75.5 241t-239.5 76q-131 0 -236 -82q-104 -81 -180.5 -230.5t-111.5 -307t-35 -303.5z" />
|
||||
<glyph unicode="R" horiz-adv-x="1159" d="M166 0l328 1423h442q178 0 265 -76t87 -251q0 -120 -35.5 -218.5t-93.5 -159.5t-120 -97.5t-128 -51.5l166 -569h-127l-157 553h-373l-129 -553h-125zM444 664h332q172 0 276.5 119t104.5 309q0 121 -56 171t-181 50h-326z" />
|
||||
<glyph unicode="S" horiz-adv-x="1024" d="M117 27l22 102q239 -37 393 -37q173 0 270 98.5t97 272.5q0 92 -47 132.5t-190 86.5q-87 28 -139.5 51t-98.5 59t-66 85t-20 118q0 213 137 331t367 118q79 0 171 -13t145 -27l52 -13l-22 -97q-214 37 -357 37q-170 0 -267 -83t-97 -244q0 -31 6 -55t22 -44t34 -34 t53 -30t67 -27.5t88 -29.5q82 -28 132 -52t88.5 -60t54.5 -84t16 -117q0 -228 -136.5 -359.5t-367.5 -131.5q-84 0 -185.5 12t-161.5 24z" />
|
||||
<glyph unicode="T" horiz-adv-x="966" d="M322 1311l26 112h922l-27 -112h-397l-303 -1311h-125l301 1311h-397z" />
|
||||
<glyph unicode="U" horiz-adv-x="1214" d="M236 270q0 93 22 176l225 977h125l-227 -987q-21 -86 -21 -151q0 -191 285 -191q171 0 259 79.5t126 248.5l232 1001h127l-232 -1003q-53 -225 -173.5 -332.5t-346.5 -107.5q-188 0 -294.5 72t-106.5 218z" />
|
||||
<glyph unicode="V" horiz-adv-x="1110" d="M377 1423h127l18 -1310h99l630 1310h127l-686 -1423h-286z" />
|
||||
<glyph unicode="W" horiz-adv-x="1679" d="M336 0l53 1423h125l-59 -1308h61l574 1288h135l-31 -1288h57l557 1308h127l-612 -1423h-240l33 1206l-534 -1206h-246z" />
|
||||
<glyph unicode="X" horiz-adv-x="1048" d="M31 0l583 713l-235 710h129l205 -616l489 616h141l-579 -721l240 -702h-130l-206 610l-496 -610h-141z" />
|
||||
<glyph unicode="Y" horiz-adv-x="1003" d="M354 1423h127l183 -690l501 690h135l-604 -813l-143 -610h-121l143 623z" />
|
||||
<glyph unicode="Z" horiz-adv-x="1015" d="M78 0l43 184l964 1069l15 58h-715l27 112h852l-45 -190l-967 -1071l-12 -49h716l-26 -113h-852z" />
|
||||
<glyph unicode="[" horiz-adv-x="579" d="M70 -250l417 1780h383l-24 -109h-260l-367 -1562h260l-28 -109h-381z" />
|
||||
<glyph unicode="\" horiz-adv-x="841" d="M387 1415l129 21l268 -1416l-129 -20z" />
|
||||
<glyph unicode="]" horiz-adv-x="579" d="M6 -248l25 109h260l366 1562h-260l29 109h381l-418 -1780h-383z" />
|
||||
<glyph unicode="^" d="M268 655l377 697h113l391 -697h-133l-314 574l-301 -574h-133z" />
|
||||
<glyph unicode="_" horiz-adv-x="1232" d="M92 -285l27 123h919l-30 -123h-916z" />
|
||||
<glyph unicode="`" horiz-adv-x="1060" d="M592 1407l59 96l361 -192l-58 -84z" />
|
||||
<glyph unicode="a" horiz-adv-x="1009" d="M186 268q0 101 20.5 207.5t63.5 208.5t102.5 182t144.5 129t183 49q56 0 155.5 -12t170.5 -24l72 -13l-156 -665q-14 -57 -28 -139t-22 -135l-7 -54l-119 -4q31 190 39 233q-7 -10 -20.5 -27t-54.5 -60.5t-82 -76.5t-98 -60t-108 -27q-129 0 -192.5 75t-63.5 213z M313 268q0 -90 37.5 -135t126.5 -45q39 0 90 30t96 72t83.5 84.5t61.5 72.5l23 30l125 528q-148 31 -254 31q-74 0 -138.5 -43.5t-109.5 -113.5t-77.5 -158.5t-48 -179t-15.5 -173.5z" />
|
||||
<glyph unicode="b" horiz-adv-x="1007" d="M145 29l336 1450h123l-141 -605l18.5 18.5t48.5 40.5t74 51.5t89 41t98 18.5q79 0 132.5 -22.5t82 -66t40 -96t11.5 -124.5q0 -56 -9 -121t-28.5 -138.5t-48 -143.5t-71.5 -134t-94 -112.5t-120 -77t-147 -28.5q-69 0 -167.5 12t-162.5 24zM289 117q154 -29 248 -29 q85 0 155 52.5t113 129t72.5 168.5t41 165.5t11.5 125.5q0 49 -6 82t-23 63.5t-53 45t-92 14.5q-39 0 -86.5 -20t-88 -48t-75 -56.5t-54.5 -48.5l-20 -20z" />
|
||||
<glyph unicode="c" horiz-adv-x="827" d="M195 281q0 119 20 229.5t63.5 208t105.5 169.5t151.5 114t197.5 42q49 0 110 -8t97 -16l37 -8l-31 -99q-127 23 -217 23q-82 0 -151 -36.5t-116 -97.5t-80 -143t-48 -172.5t-15 -185.5q0 -106 53 -159.5t173 -53.5q36 0 93.5 8t97.5 16l40 9l-6 -98q-139 -43 -262 -43 q-157 0 -235 77t-78 224z" />
|
||||
<glyph unicode="d" horiz-adv-x="1009" d="M186 264q0 105 21.5 214t65 210t103.5 180t143 126.5t177 47.5q57 0 127.5 -8.5t112.5 -17.5l41 -8l110 471h123l-344 -1479h-118l45 201q-7 -9 -19.5 -24t-51.5 -53t-78.5 -67t-97 -53t-110.5 -24q-250 0 -250 284zM313 264q0 -176 160 -176q43 0 95 27t96 66t82 78 t60 66l21 27l127 553q-137 31 -258 31q-71 0 -134.5 -43.5t-108 -114.5t-77 -160t-48 -180t-15.5 -174z" />
|
||||
<glyph unicode="e" horiz-adv-x="937" d="M190 283q0 107 20 212.5t64.5 205t107.5 175t156 121t203 45.5q137 0 213 -56.5t76 -176.5q0 -180 -139 -253t-436 -73h-115q-25 -105 -25 -188q0 -98 56.5 -151.5t152.5 -53.5q68 0 152 13t134 25l50 13l-8 -100q-20 -7 -54.5 -17t-129.5 -27t-176 -17q-143 0 -222.5 77 t-79.5 226zM358 584h121q226 0 327 48t101 175q0 70 -43 100.5t-129 30.5q-270 0 -377 -354z" />
|
||||
<glyph unicode="f" horiz-adv-x="624" d="M70 -461l319 1376h-123l27 109h119l24 100q50 206 126.5 290.5t215.5 84.5q33 0 75 -6t67 -12l26 -6l-24 -97q-84 15 -152 15q-84 0 -129 -62t-82 -211l-24 -96h290l-28 -109h-285l-213 -915l-123 -461h-106z" />
|
||||
<glyph unicode="g" horiz-adv-x="950" d="M41 -219q0 56 25 106.5t70 91t86 68t95 55.5q-30 30 -30 84q0 40 27 90t54 80l27 31q-141 63 -141 242q0 57 16.5 115t51.5 112t82.5 96t115 67t144.5 25q47 0 93 -8t69 -16l22 -8l303 12l-25 -109h-198q39 -59 39 -149q0 -55 -16 -111.5t-51 -110.5t-84.5 -96t-122 -68 t-158.5 -26l-62 4q-8 -10 -20 -26.5t-32 -56.5t-20 -66q0 -37 39 -52.5t150 -29.5q171 -21 242 -73.5t71 -166.5q0 -152 -141.5 -262t-374.5 -110q-159 0 -252.5 72t-93.5 194zM160 -193q0 -83 60.5 -134.5t176.5 -51.5q102 0 189.5 31t141.5 91t54 136q0 69 -47.5 99 t-167.5 42q-129 16 -180 35q-92 -47 -159.5 -113t-67.5 -135zM373 635q0 -176 178 -176q75 0 135 30.5t94 77t52 94.5t18 91q0 95 -45 140.5t-150 45.5q-87 0 -153.5 -50t-97.5 -118t-31 -135z" />
|
||||
<glyph unicode="h" horiz-adv-x="1013" d="M141 0l342 1479h123l-151 -656q7 9 19 24t50.5 53t78 67t95 53t107.5 24q115 0 176 -67.5t61 -183.5q0 -91 -41 -273l-120 -520h-121l121 516q37 162 37 256q0 162 -152 162q-43 0 -94 -26.5t-94 -64.5t-79.5 -76t-57.5 -65l-21 -26l-156 -676h-123z" />
|
||||
<glyph unicode="i" horiz-adv-x="403" d="M139 0l238 1024h123l-238 -1024h-123zM430 1262l39 163h123l-37 -163h-125z" />
|
||||
<glyph unicode="j" horiz-adv-x="403" d="M-188 -385q70 36 109 57t76.5 49t54 48t35 57.5t28 73t24.5 100.5l238 1024h123l-238 -1024q-20 -85 -33 -133t-36.5 -97t-45.5 -74.5t-67.5 -59t-93.5 -58t-133 -63.5zM434 1264l37 159h123l-37 -159h-123z" />
|
||||
<glyph unicode="k" horiz-adv-x="901" d="M141 0l342 1479h123l-200 -871l145 4l399 412h146l-453 -471l209 -553h-131l-193 506l-149 -2l-115 -504h-123z" />
|
||||
<glyph unicode="l" horiz-adv-x="423" d="M152 0l342 1479h120l-342 -1479h-120z" />
|
||||
<glyph unicode="m" horiz-adv-x="1585" d="M139 0l238 1024h119l-41 -199q7 9 19 23.5t50 52.5t77 67t95 52.5t109 23.5q59 0 104 -20t67 -48t35.5 -56t16.5 -48l2 -20q7 8 19.5 21t51.5 46t78 58t93.5 46t103.5 21q116 0 178 -67.5t62 -183.5q0 -78 -41 -273l-121 -520h-123l121 516q39 171 39 254 q0 77 -39.5 120.5t-112.5 43.5q-39 0 -84.5 -20.5t-83 -50t-69.5 -59.5t-50 -50l-18 -21q-4 -88 -35 -213l-120 -520h-123l121 516q38 166 38 256q0 77 -38.5 119.5t-112.5 42.5q-43 0 -94.5 -26.5t-94 -64t-78.5 -75t-57 -64.5l-20 -26l-158 -678h-123z" />
|
||||
<glyph unicode="n" horiz-adv-x="1011" d="M139 0l238 1024h119l-43 -199q7 9 19 23.5t50.5 52.5t78 67t95 52.5t107.5 23.5q116 0 177.5 -67t61.5 -184q0 -91 -41 -269l-122 -524h-121l121 516q39 171 39 256q0 78 -38.5 120t-115.5 42q-43 0 -94.5 -26.5t-94 -64t-78.5 -75t-57 -64.5l-20 -26l-158 -678h-123z " />
|
||||
<glyph unicode="o" horiz-adv-x="1011" d="M193 303q0 198 65 366.5t183.5 270.5t265.5 102q170 0 257 -84.5t87 -252.5q0 -196 -62.5 -360t-183.5 -264.5t-277 -100.5q-167 0 -251 78.5t-84 244.5zM315 303q0 -215 213 -215q117 0 209.5 86t140.5 226.5t48 306.5q0 105 -55 167t-164 62q-113 0 -204 -89.5 t-139.5 -233.5t-48.5 -310z" />
|
||||
<glyph unicode="p" horiz-adv-x="1007" d="M35 -461l342 1485h119l-45 -203q7 9 19.5 24t51.5 53.5t78 68t94 53.5t105 24q258 0 258 -290q0 -101 -21 -208t-64 -208t-102.5 -181t-143.5 -128.5t-179 -48.5q-57 0 -127.5 9t-111.5 18l-42 9l-110 -477h-121zM289 119q137 -31 258 -31q72 0 136 44.5t108.5 115.5 t77 159t48 176.5t15.5 166.5q0 94 -39.5 139t-126.5 45q-40 0 -90.5 -27t-94 -66t-81.5 -78t-60 -66l-22 -27z" />
|
||||
<glyph unicode="q" horiz-adv-x="1005" d="M184 266q0 102 21.5 209.5t65 209t103 181t143 128t177.5 48.5q67 0 167.5 -12t167.5 -24l67 -11l-334 -1441h-121l150 647q-7 -9 -19 -24t-50.5 -53t-77.5 -67t-94.5 -53t-107.5 -24q-128 0 -193 75t-65 211zM311 272q0 -92 39.5 -138t126.5 -46q41 0 91.5 27t94 66 t81 78t59.5 66l22 27l127 553q-133 31 -258 31q-87 0 -162 -65t-121.5 -165.5t-73 -214.5t-26.5 -219z" />
|
||||
<glyph unicode="r" horiz-adv-x="636" d="M139 0l240 1024h121l-37 -154q22 15 60 38.5t139 71t184 64.5l-31 -124q-62 -15 -155.5 -55.5t-156.5 -73.5l-63 -33l-176 -758h-125z" />
|
||||
<glyph unicode="s" horiz-adv-x="876" d="M106 23l23 98q188 -33 309 -33q133 0 217 60t84 176q0 65 -43 90.5t-170 54.5q-143 34 -204.5 78t-61.5 139q0 155 112 255.5t285 100.5q68 0 151 -9t132 -18l49 -9l-26 -99q-191 29 -322 29q-115 0 -186.5 -65.5t-71.5 -157.5q0 -55 39.5 -81.5t161.5 -56.5 q63 -15 100 -26t76 -29t59 -40t32.5 -55t12.5 -77q0 -178 -123.5 -273t-316.5 -95q-67 0 -146.5 10.5t-125.5 21.5z" />
|
||||
<glyph unicode="t" horiz-adv-x="645" d="M238 168q0 73 34 213l125 534h-139l27 109h139l76 313h123l-78 -313h305l-27 -109h-303l-127 -540q-26 -113 -26 -182q0 -105 112 -105q24 0 65 3t70 6l29 3l-8 -96q-107 -24 -193 -24q-97 0 -150.5 49t-53.5 139z" />
|
||||
<glyph unicode="u" horiz-adv-x="1011" d="M205 229q0 93 41 271l123 524h120l-120 -516q-39 -171 -39 -256q0 -77 39.5 -119.5t113.5 -42.5q43 0 94.5 26t94 63.5t78.5 75t56 63.5l21 26l158 680h123l-238 -1024h-118l43 199q-7 -9 -19.5 -23.5t-51 -52.5t-78 -67t-95 -52.5t-107.5 -23.5q-115 0 -177 67t-62 182z " />
|
||||
<glyph unicode="v" horiz-adv-x="925" d="M291 1024h121l28 -918h72l467 918h129l-530 -1024h-252z" />
|
||||
<glyph unicode="w" horiz-adv-x="1480" d="M295 0l4 1024h123l-6 -918h35l444 898h147l21 -898h37l426 918h125l-475 -1024h-228l-16 846l-414 -846h-223z" />
|
||||
<glyph unicode="x" horiz-adv-x="851" d="M45 0l426 512l-184 512h127l151 -428l346 428h136l-433 -522l185 -502h-129l-148 418l-340 -418h-137z" />
|
||||
<glyph unicode="y" horiz-adv-x="925" d="M217 -459l242 459h-133l-35 1024h121l28 -918h70l469 918h129l-766 -1483h-125z" />
|
||||
<glyph unicode="z" horiz-adv-x="856" d="M80 0l18 106l742 809h-551l28 109h697l-23 -106l-743 -812h555l-25 -106h-698z" />
|
||||
<glyph unicode="{" horiz-adv-x="653" d="M180 590l25 102q70 18 114 39.5t72 52.5t42 66.5t26 91.5q5 24 17 90.5t22 117t18 75.5q51 161 148.5 233.5t279.5 79.5l-20 -113q-97 -5 -160 -37t-96.5 -85t-51.5 -138q-3 -16 -12.5 -71t-18.5 -101.5t-14 -68.5q-29 -128 -82.5 -188.5t-164.5 -98.5q62 -24 95.5 -65.5 t33.5 -114.5q0 -38 -49.5 -212t-49.5 -237q0 -151 197 -151l-31 -115q-289 9 -289 231q0 68 49.5 243t49.5 208q0 65 -35 102t-115 64z" />
|
||||
<glyph unicode="|" horiz-adv-x="626" d="M369 -461v1940h123v-1940h-123z" />
|
||||
<glyph unicode="}" horiz-adv-x="651" d="M2 -262l21 112q142 7 210.5 70t96.5 191q3 16 12.5 71t18.5 101.5t14 68.5q29 128 83 188.5t165 98.5q-62 24 -95.5 65.5t-33.5 114.5q0 38 49 212t49 237q0 151 -197 151l31 115q289 -9 289 -231q0 -68 -49.5 -243t-49.5 -208q0 -65 35 -102t115 -64l-25 -102 q-70 -18 -114 -39.5t-72 -52.5t-42 -66.5t-26 -91.5q-5 -24 -17 -90.5t-22 -117t-18 -75.5q-51 -161 -148.5 -233.5t-279.5 -79.5z" />
|
||||
<glyph unicode="~" d="M262 551q5 5 14.5 12t37 26.5t54.5 34t63 26.5t67 12q49 0 130.5 -34t159 -68t115.5 -34q34 0 86 25t87 49l36 25l23 -103q-5 -4 -14 -11.5t-36 -26.5t-53.5 -33.5t-62 -26.5t-66.5 -12q-49 0 -132 34t-160.5 67.5t-112.5 33.5q-36 0 -89 -25.5t-89 -50.5l-35 -25z" />
|
||||
<glyph unicode="¡" horiz-adv-x="372" d="M31 -410l237 977h109l-223 -977h-123zM307 819l47 205h125l-47 -205h-125z" />
|
||||
<glyph unicode="¢" d="M325.5 381.5q5.5 58.5 22.5 126.5q55 211 169 321t274 115l59 254h106l-61 -254q38 -2 88.5 -7t81.5 -9l31 -4l-33 -111q-172 16 -246 16q-136 0 -222 -83.5t-124 -237.5q-14 -59 -19.5 -101t1 -84.5t29 -68.5t69 -42.5t117.5 -16.5q39 0 104.5 3.5t111.5 7.5l46 3 l-25 -109q-129 -16 -211 -16l-59 -252h-107l60 246q-80 1 -135.5 26t-83.5 65t-38.5 97t-5 115.5z" />
|
||||
<glyph unicode="£" d="M166 0l24 109h197l143 632h-151l27 109h151l25 115q21 88 40 146.5t49.5 116t68.5 90.5t94.5 53t130.5 20q49 0 116.5 -7.5t110.5 -15.5l43 -8l-27 -96q-146 16 -252 16q-50 0 -87 -17.5t-59.5 -38.5t-43 -72t-30 -84.5t-27.5 -109.5q-1 -5 -2 -8l-25 -100h416l-25 -109 h-418l-141 -632h307l158 34v-106l-164 -37h-649z" />
|
||||
<glyph unicode="¤" d="M252 164l143 141q-67 94 -67 210t67 210l-143 143l86 88l143 -145q94 66 209 66t209 -66l145 145l86 -88l-145 -145q66 -94 66 -209t-66 -207l145 -143l-86 -88l-145 145q-94 -67 -209 -67t-209 67l-143 -145zM448 516q0 -102 70 -174q70 -69 173 -69t173 69 q69 72 69 174t-69 172q-70 70 -173 70t-173 -70t-70 -172z" />
|
||||
<glyph unicode="¥" d="M219 344l27 113h368l37 161l-8 33h-352l24 111h285l-235 592h135l237 -596l500 596h162l-502 -592h277l-25 -111h-340l-31 -37l-37 -157h363l-27 -113h-362l-82 -344h-123l80 344h-371z" />
|
||||
<glyph unicode="¦" horiz-adv-x="641" d="M377 311h123v-772h-123v772zM377 711v768h123v-768h-123z" />
|
||||
<glyph unicode="§" horiz-adv-x="954" d="M78 -252l35 111q209 -29 313 -29q70 0 128.5 25.5t94.5 65.5t56 85.5t20 89.5q0 64 -44.5 92t-186.5 54q-149 25 -210 81.5t-61 147.5q0 58 23.5 118t57.5 104t57 69t36 35q-41 49 -41 149q0 71 29 139.5t83.5 125.5t142 91.5t194.5 34.5q55 0 130.5 -7.5t124.5 -15.5 l48 -7l-31 -113q-203 29 -295 29q-144 0 -220.5 -70t-76.5 -188q0 -33 10 -56.5t25.5 -38.5t48 -26.5t61.5 -18t83 -16.5q260 -47 260 -219q0 -51 -20.5 -109.5t-53.5 -111t-49 -75.5t-33 -44q22 -29 28.5 -54.5t6.5 -64.5q0 -31 -8.5 -69t-26.5 -87t-53 -93.5t-82 -82.5 t-119.5 -61t-159.5 -23q-54 0 -135 8.5t-136 16.5zM350 508q0 -63 43 -96.5t156 -53.5q131 -24 186 -55q7 7 32 46t53 102.5t28 107.5q0 55 -46 87t-155 52q-57 9 -109.5 24t-64.5 26q-12 -12 -36 -42t-55.5 -91t-31.5 -107z" />
|
||||
<glyph unicode="¨" horiz-adv-x="1478" d="M510 1280l39 168h100l-39 -168h-100zM877 1280l36 168h101l-39 -168h-98z" />
|
||||
<glyph unicode="©" horiz-adv-x="1320" d="M332 889q0 153 68.5 279.5t190.5 200t273 73.5q153 0 276.5 -74.5t191 -200.5t67.5 -278q0 -153 -68 -279.5t-191 -200t-276 -73.5q-151 0 -273 74t-190.5 200.5t-68.5 278.5zM414 889q0 -129 57.5 -237t161.5 -172t231 -64q195 0 325 137.5t130 335.5q0 197 -131 335 t-324 138q-127 0 -231 -64t-161.5 -172t-57.5 -237zM637 889q0 162 51 240.5t182 78.5q37 0 76 -4.5t60 -9.5l20 -4l-6 -94q-80 14 -146 14q-85 0 -111 -51t-26 -170q0 -115 29 -168t108 -53q26 0 62.5 3.5t59.5 6.5l24 4l6 -92q-80 -21 -158 -21q-130 0 -180.5 77.5 t-50.5 242.5z" />
|
||||
<glyph unicode="ª" horiz-adv-x="712" d="M303 932q21 84 71 124t148 46l189 12l12 45q12 53 -6 74.5t-70 21.5q-34 0 -91 -3.5t-98 -7.5l-40 -3l12 82q150 27 242 27q105 0 144.5 -44.5t14.5 -150.5l-65 -283q12 -25 55 -36l-22 -82q-62 0 -88 11t-47 38q-131 -49 -242 -49q-74 0 -106.5 48.5t-12.5 129.5z M414 932q-20 -86 55 -86q36 0 83 9t76 19l29 9l35 149l-168 -10q-49 -3 -74 -24t-36 -66z" />
|
||||
<glyph unicode="«" horiz-adv-x="894" d="M178 479l23 64l420 280l-39 -129l-279 -188l186 -209l-34 -115zM537 479l22 64l420 280l-39 -129l-278 -188l186 -209l-35 -115z" />
|
||||
<glyph unicode="¬" d="M258 580v112h870v-446h-116v334h-754z" />
|
||||
<glyph unicode="­" horiz-adv-x="724" d="M223 492l29 114h504l-29 -114h-504z" />
|
||||
<glyph unicode="®" horiz-adv-x="1320" d="M332 889q0 153 68.5 279.5t190.5 200t273 73.5q153 0 276.5 -74.5t191 -200.5t67.5 -278q0 -153 -68 -279.5t-191 -200t-276 -73.5q-151 0 -273 74t-190.5 200.5t-68.5 278.5zM414 889q0 -129 58 -237t162 -172t230 -64q195 0 325 137.5t130 335.5q0 197 -131 335 t-324 138q-127 0 -231 -64t-161.5 -172t-57.5 -237zM647 580v614h211q119 0 176.5 -43t57.5 -147q0 -75 -25.5 -119.5t-85.5 -65.5l121 -239h-107l-110 227h-140v-227h-98zM743 891h138q61 0 86.5 24.5t25.5 85.5q0 59 -33.5 84t-105.5 25h-111v-219z" />
|
||||
<glyph unicode="¯" horiz-adv-x="886" d="M475 1315l23 96h546l-24 -96h-545z" />
|
||||
<glyph unicode="°" d="M553 1157q0 128 79 207.5t206 79.5t206.5 -79.5t79.5 -207.5q0 -127 -79 -205t-207 -78t-206.5 78t-78.5 205zM643 1157q0 -89 53.5 -142.5t141.5 -53.5q90 0 145 53.5t55 142.5t-55.5 144t-144.5 55q-88 0 -141.5 -55t-53.5 -144z" />
|
||||
<glyph unicode="±" d="M211 86v115h915v-115h-915zM211 610v115h397v266h117v-266h401v-115h-401v-272h-117v272h-397z" />
|
||||
<glyph unicode="²" horiz-adv-x="573" d="M293 979l24 98l236 191q70 55 105.5 93.5t46.5 86.5q11 43 -13.5 63.5t-73.5 20.5q-28 0 -73.5 -5t-76.5 -11l-32 -5l21 101q123 24 209 24q101 0 138.5 -44t14.5 -136q-18 -68 -62 -120.5t-126 -116.5l-170 -140h274l-24 -100h-418z" />
|
||||
<glyph unicode="³" horiz-adv-x="573" d="M289 981l30 96q111 -16 205 -16q111 0 135 96q14 55 -7.5 77.5t-71.5 22.5h-134l23 97h133q33 0 69 31t46 73q9 40 -10 59t-74 19q-40 0 -88.5 -4t-77.5 -8l-29 -4l17 96q123 20 211 20q107 0 148.5 -40.5t19.5 -127.5q-4 -18 -11 -34t-15 -29t-16.5 -24.5t-18 -20.5 t-18 -16t-17 -12.5t-14 -9t-11.5 -6.5l-6 -3q50 -17 67 -49t-2 -109q-48 -197 -264 -197q-44 0 -99 6t-87 12z" />
|
||||
<glyph unicode="´" horiz-adv-x="1110" d="M571 1325l447 193l14 -109l-448 -178z" />
|
||||
<glyph unicode="µ" d="M94 -461l238 1024l108 461h121l-108 -461h2l-37 -153q-17 -90 -17 -158q0 -77 40 -119.5t114 -42.5q43 0 94.5 26t94 63.5t78.5 75t56 63.5l21 26l158 680h123l-238 -1024h-119l43 199q-7 -9 -19 -23.5t-50.5 -52.5t-78 -67t-95 -52.5t-107.5 -23.5q-117 0 -180 69 l-119 -510h-123z" />
|
||||
<glyph unicode="¶" horiz-adv-x="1134" d="M301 975q0 108 56.5 212.5t163.5 175.5t235 71h635l-23 -111h-160l-315 -1323h-107l316 1323h-250l-317 -1323h-107l168 692q-77 1 -135.5 24.5t-92.5 64t-50.5 89t-16.5 105.5z" />
|
||||
<glyph unicode="·" horiz-adv-x="356" d="M233 520l48 215h129l-48 -215h-129z" />
|
||||
<glyph unicode="¸" horiz-adv-x="1619" d="M649 -412l23 90q80 -8 137 -8q86 0 106 80q17 74 -69 74h-90l45 186h76l-29 -108h10q90 0 136.5 -36.5t27.5 -119.5q-20 -88 -72 -129t-141 -41q-37 0 -77 3t-62 6z" />
|
||||
<glyph unicode="¹" horiz-adv-x="573" d="M420 1477l242 141h104l-158 -639h-110l129 518l-176 -102z" />
|
||||
<glyph unicode="º" horiz-adv-x="696" d="M317 940q0 42 17 115q38 157 114 225t209 68q89 0 143 -38t58 -116q4 -60 -14 -150q-35 -154 -113.5 -224t-214.5 -70q-96 0 -148 49t-51 141zM430 954q0 -52 27 -76t84 -24q77 0 120.5 45t71.5 154q10 49 10 98q0 52 -25 73t-81 21q-78 0 -122.5 -42.5t-68.5 -145.5 q-16 -66 -16 -103z" />
|
||||
<glyph unicode="»" horiz-adv-x="985" d="M150 182l38 129l279 189l-186 209l34 114l277 -297l-23 -63zM598 182l39 129l278 189l-186 209l35 114l276 -297l-22 -63z" />
|
||||
<glyph unicode="¼" horiz-adv-x="1196" d="M223 29l873 1413l116 -43l-874 -1413zM373 1477l241 141h105l-158 -639h-110l129 518l-177 -102zM707 104l24 95l266 440h121l-266 -432h172l53 178h103l-45 -178h61l-25 -103h-61l-27 -104h-108l24 104h-292z" />
|
||||
<glyph unicode="½" horiz-adv-x="1247" d="M223 29l873 1413l116 -43l-874 -1413zM373 1477l241 141h105l-158 -639h-110l129 518l-177 -102zM762 0l24 98l236 191q70 55 105.5 93.5t46.5 86.5q11 43 -13.5 63.5t-73.5 20.5q-28 0 -73.5 -5.5t-77.5 -10.5l-31 -5l21 101q123 24 209 24q101 0 138.5 -44t14.5 -136 q-18 -68 -62 -120.5t-126 -116.5l-170 -140h274l-24 -100h-418z" />
|
||||
<glyph unicode="¾" horiz-adv-x="1234" d="M266 29l873 1413l116 -43l-874 -1413zM289 981l30 96q111 -16 205 -16q111 0 135 96q14 55 -7.5 77.5t-71.5 22.5h-134l23 97h133q33 0 69 31t46 73q9 40 -10 59t-74 19q-40 0 -88.5 -4t-77.5 -8l-29 -4l17 96q123 20 211 20q107 0 148.5 -40.5t19.5 -127.5 q-4 -18 -11 -34t-15 -29t-16.5 -24.5t-18 -20.5t-18 -16t-17 -12.5t-14 -9t-11.5 -6.5l-6 -3q50 -17 67 -49t-2 -109q-48 -197 -264 -197q-44 0 -99 6t-87 12zM750 104l24 95l266 440h121l-266 -432h172l53 178h103l-45 -178h61l-25 -103h-61l-27 -104h-108l24 104h-292z " />
|
||||
<glyph unicode="¿" horiz-adv-x="821" d="M47 -162q0 53 6 93.5t24.5 80.5t40.5 71t66 73.5t87.5 78.5t117.5 95q147 118 168 221l16 80h117q-4 -60 -14 -113q-26 -134 -211 -276q-73 -59 -114 -94.5t-79.5 -75t-56 -72t-27.5 -71t-10 -85.5q0 -79 56.5 -113t164.5 -34q53 0 126.5 9.5t120.5 19.5l48 10l-6 -103 q-180 -51 -313 -51q-150 0 -239 62.5t-89 193.5zM598 813l47 211h125l-45 -211h-127z" />
|
||||
<glyph unicode="À" horiz-adv-x="1136" d="M55 0l727 1423h258l47 -1423h-124l-17 391h-561l-203 -391h-127zM440 502h506l-26 809h-66zM674 1792l59 102l359 -194l-54 -88z" />
|
||||
<glyph unicode="Á" horiz-adv-x="1136" d="M55 0l727 1423h258l47 -1423h-124l-17 391h-561l-203 -391h-127zM440 502h506l-26 809h-66zM795 1710l448 195l19 -107l-451 -180z" />
|
||||
<glyph unicode="Â" horiz-adv-x="1136" d="M55 0l727 1423h258l47 -1423h-124l-17 391h-561l-203 -391h-127zM440 502h506l-26 809h-66zM637 1632l330 275h61l199 -275h-115l-125 176l-215 -176h-135z" />
|
||||
<glyph unicode="Ã" horiz-adv-x="1136" d="M55 0l727 1423h258l47 -1423h-124l-17 391h-561l-203 -391h-127zM440 502h506l-26 809h-66zM623 1763q15 14 39.5 34t80.5 53.5t88 33.5q41 0 99.5 -30t110 -59.5t75.5 -29.5q17 0 58.5 24.5t74.5 49.5l33 25l6 -86q-14 -14 -37.5 -34t-76 -53.5t-82.5 -33.5 q-37 0 -95 30.5t-111 60.5t-79 30q-19 0 -64 -26t-81 -52l-35 -27z" />
|
||||
<glyph unicode="Ä" horiz-adv-x="1136" d="M55 0l727 1423h258l47 -1423h-124l-17 391h-561l-203 -391h-127zM440 502h506l-26 809h-66zM715 1679l37 170h102l-41 -170h-98zM1092 1679l41 170h100l-41 -170h-100z" />
|
||||
<glyph unicode="Å" horiz-adv-x="1136" d="M55 0l703 1374q-50 53 -23 152q26 96 90.5 146t157.5 50q91 0 133.5 -48.5t18.5 -147.5q-24 -96 -95 -148l47 -1378h-124l-17 391h-561l-203 -391h-127zM440 502h506l-26 809h-66zM819 1526q-9 -38 3.5 -66t47.5 -37h78q81 18 103 103q10 51 -14.5 79.5t-75.5 28.5 q-55 0 -92.5 -28t-49.5 -80z" />
|
||||
<glyph unicode="Æ" horiz-adv-x="1609" d="M55 0l727 1427h1071l-24 -116l-668 4l-129 -533h553l-24 -114h-553l-131 -551h665l-24 -117h-787l90 391h-442l-203 -391h-121zM434 506h414l194 805h-198z" />
|
||||
<glyph unicode="Ç" horiz-adv-x="1036" d="M236 387q0 111 18.5 229t55.5 237.5t97 225t136 187.5t181.5 130t225.5 48q71 0 155.5 -11t133.5 -23l49 -11l-28 -103q-166 33 -318 33q-92 0 -174.5 -41.5t-144 -112.5t-111.5 -164.5t-81 -198.5t-47.5 -212t-16.5 -209q0 -152 66 -224.5t210 -72.5q72 0 155 9t130 17 l47 9l-6 -104q-182 -45 -344 -45h-7l-20 -78h10q90 0 136.5 -36.5t27.5 -119.5q-20 -88 -72 -129t-141 -41q-37 0 -77 3t-62 6l-21 3l23 90q80 -8 137 -8q87 0 107 80q17 74 -70 74h-90l39 162q-309 40 -309 401z" />
|
||||
<glyph unicode="È" horiz-adv-x="1038" d="M166 0l328 1423h784l-27 -112h-657l-123 -529h545l-27 -112h-543l-129 -557h658l-27 -113h-782zM713 1792l59 102l358 -194l-53 -88z" />
|
||||
<glyph unicode="É" horiz-adv-x="1038" d="M166 0l328 1423h784l-27 -112h-657l-123 -529h545l-27 -112h-543l-129 -557h658l-27 -113h-782zM768 1710l449 195l18 -107l-451 -180z" />
|
||||
<glyph unicode="Ê" horiz-adv-x="1038" d="M166 0l328 1423h784l-27 -112h-657l-123 -529h545l-27 -112h-543l-129 -557h658l-27 -113h-782zM743 1626l330 275h62l198 -275h-114l-125 176l-215 -176h-136z" />
|
||||
<glyph unicode="Ë" horiz-adv-x="1038" d="M166 0l328 1423h784l-27 -112h-657l-123 -529h545l-27 -112h-543l-129 -557h658l-27 -113h-782zM702 1679l37 170h103l-41 -170h-99zM1079 1679l41 170h101l-41 -170h-101z" />
|
||||
<glyph unicode="Ì" horiz-adv-x="456" d="M166 0l328 1423h127l-330 -1423h-125zM309 1792l60 102l358 -194l-53 -88z" />
|
||||
<glyph unicode="Í" horiz-adv-x="456" d="M166 0l328 1423h127l-330 -1423h-125zM477 1710l449 195l18 -107l-450 -180z" />
|
||||
<glyph unicode="Î" horiz-adv-x="456" d="M166 0l328 1423h127l-330 -1423h-125zM299 1626l330 275h61l199 -275h-115l-125 176l-215 -176h-135z" />
|
||||
<glyph unicode="Ï" horiz-adv-x="456" d="M166 0l328 1423h127l-330 -1423h-125zM362 1686l37 169h103l-41 -169h-99zM739 1686l41 169h101l-41 -169h-101z" />
|
||||
<glyph unicode="Ð" horiz-adv-x="1251" d="M172 0l150 651h-144l27 127h145l150 645h461q190 0 282 -101.5t92 -320.5q0 -132 -25 -268t-79.5 -268.5t-131.5 -235t-191 -166t-249 -63.5h-487zM326 113h354q84 0 159.5 41.5t131.5 111.5t101 160t73.5 189.5t43.5 198t15 187.5q0 163 -62.5 236.5t-205.5 73.5h-336 l-123 -533h307l-30 -127h-305z" />
|
||||
<glyph unicode="Ñ" horiz-adv-x="1280" d="M166 0l328 1423h237l248 -1298h43l299 1298h123l-328 -1423h-229l-254 1303h-45l-301 -1303h-121zM700 1759q15 14 40 34t81 53.5t88 33.5q41 0 99.5 -30t110 -59.5t75.5 -29.5q17 0 58.5 24.5t74.5 49.5l33 25l6 -86q-14 -14 -37.5 -34t-76.5 -53.5t-83 -33.5 q-37 0 -95 30.5t-110.5 60.5t-78.5 30q-19 0 -64 -26t-81 -52l-35 -27z" />
|
||||
<glyph unicode="Ò" horiz-adv-x="1292" d="M240 403q0 260 85 504t240 387q166 150 375 150q218 0 328 -103.5t110 -320.5q0 -276 -88 -525t-254 -386q-154 -129 -364 -129q-228 0 -330 97.5t-102 325.5zM369 408q0 -172 71.5 -244t243.5 -72q143 0 252 86q101 80 174 225.5t105 301.5t32 309q0 165 -75.5 241 t-239.5 76q-131 0 -236 -82q-104 -81 -180.5 -230.5t-111.5 -307t-35 -303.5zM795 1792l59 102l358 -194l-53 -88z" />
|
||||
<glyph unicode="Ó" horiz-adv-x="1292" d="M240 403q0 260 85 504t240 387q166 150 375 150q218 0 328 -103.5t110 -320.5q0 -276 -88 -525t-254 -386q-154 -129 -364 -129q-228 0 -330 97.5t-102 325.5zM369 408q0 -172 71.5 -244t243.5 -72q143 0 252 86q101 80 174 225.5t105 301.5t32 309q0 165 -75.5 241 t-239.5 76q-131 0 -236 -82q-104 -81 -180.5 -230.5t-111.5 -307t-35 -303.5zM870 1710l449 195l18 -107l-450 -180z" />
|
||||
<glyph unicode="Ô" horiz-adv-x="1292" d="M240 403q0 260 85 504t240 387q166 150 375 150q218 0 328 -103.5t110 -320.5q0 -276 -88 -525t-254 -386q-154 -129 -364 -129q-228 0 -330 97.5t-102 325.5zM369 408q0 -172 71.5 -244t243.5 -72q143 0 252 86q101 80 174 225.5t105 301.5t32 309q0 165 -75.5 241 t-239.5 76q-131 0 -236 -82q-104 -81 -180.5 -230.5t-111.5 -307t-35 -303.5zM729 1632l330 275h61l199 -275h-115l-125 176l-215 -176h-135z" />
|
||||
<glyph unicode="Õ" horiz-adv-x="1292" d="M240 403q0 260 85 504t240 387q166 150 375 150q218 0 328 -103.5t110 -320.5q0 -276 -88 -525t-254 -386q-154 -129 -364 -129q-228 0 -330 97.5t-102 325.5zM369 408q0 -172 71.5 -244t243.5 -72q143 0 252 86q101 80 174 225.5t105 301.5t32 309q0 165 -75.5 241 t-239.5 76q-131 0 -236 -82q-104 -81 -180.5 -230.5t-111.5 -307t-35 -303.5zM729 1759q15 14 40 34t81 53.5t88 33.5q41 0 99.5 -30t110 -59.5t75.5 -29.5q17 0 58.5 24.5t74.5 49.5l33 25l6 -86q-14 -14 -37.5 -34t-76.5 -53.5t-83 -33.5q-37 0 -95 30.5t-111 60.5t-79 30 q-19 0 -64 -26t-81 -52l-35 -27z" />
|
||||
<glyph unicode="Ö" horiz-adv-x="1292" d="M240 403q0 260 85 504t240 387q166 150 375 150q218 0 328 -103.5t110 -320.5q0 -276 -88 -525t-254 -386q-154 -129 -364 -129q-228 0 -330 97.5t-102 325.5zM369 408q0 -172 71.5 -244t243.5 -72q143 0 252 86q101 80 174 225.5t105 301.5t32 309q0 165 -75.5 241 t-239.5 76q-131 0 -236 -82q-104 -81 -180.5 -230.5t-111.5 -307t-35 -303.5zM784 1679l39 168h115l-39 -168h-115zM1165 1679l37 168h113l-39 -168h-111z" />
|
||||
<glyph unicode="×" d="M270 174l342 340l-342 338l80 82l340 -344l340 344l80 -80l-342 -340l342 -340l-80 -82l-340 344l-340 -342z" />
|
||||
<glyph unicode="Ø" horiz-adv-x="1292" d="M147 -186l185 272q-92 99 -92 317q0 260 85 504t240 387q166 150 375 150q170 0 274 -64l168 246l84 -37l-182 -266q94 -104 94 -303q0 -276 -88 -525t-254 -386q-154 -129 -364 -129q-173 0 -269 51l-180 -262zM369 408q0 -138 41 -207l354 520l381 557q-73 53 -213 53 q-131 0 -236 -82q-104 -81 -180.5 -230.5t-111.5 -307t-35 -303.5zM475 135q68 -43 209 -43q143 0 252 86q101 80 174 225.5t105 301.5t32 309q0 120 -41 194l-362 -532z" />
|
||||
<glyph unicode="Ù" horiz-adv-x="1214" d="M236 270q0 93 22 176l225 977h125l-227 -987q-21 -86 -21 -151q0 -191 285 -191q171 0 259 79.5t126 248.5l232 1001h127l-232 -1003q-53 -225 -173.5 -332.5t-346.5 -107.5q-188 0 -294.5 72t-106.5 218zM745 1792l60 102l358 -194l-53 -88z" />
|
||||
<glyph unicode="Ú" horiz-adv-x="1214" d="M236 270q0 93 22 176l225 977h125l-227 -987q-21 -86 -21 -151q0 -191 285 -191q171 0 259 79.5t126 248.5l232 1001h127l-232 -1003q-53 -225 -173.5 -332.5t-346.5 -107.5q-188 0 -294.5 72t-106.5 218zM784 1710l449 195l18 -107l-450 -180z" />
|
||||
<glyph unicode="Û" horiz-adv-x="1214" d="M236 270q0 93 22 176l225 977h125l-227 -987q-21 -86 -21 -151q0 -191 285 -191q171 0 259 79.5t126 248.5l232 1001h127l-232 -1003q-53 -225 -173.5 -332.5t-346.5 -107.5q-188 0 -294.5 72t-106.5 218zM674 1632l330 275h61l199 -275h-115l-125 176l-215 -176h-135z " />
|
||||
<glyph unicode="Ü" horiz-adv-x="1214" d="M236 270q0 93 22 176l225 977h125l-227 -987q-21 -86 -21 -151q0 -191 285 -191q171 0 259 79.5t126 248.5l232 1001h127l-232 -1003q-53 -225 -173.5 -332.5t-346.5 -107.5q-188 0 -294.5 72t-106.5 218zM725 1679l39 168h115l-39 -168h-115zM1106 1679l37 168h114 l-40 -168h-111z" />
|
||||
<glyph unicode="Ý" horiz-adv-x="1003" d="M354 1423h127l183 -690l501 690h135l-604 -813l-143 -610h-121l143 623zM688 1710l449 195l18 -107l-450 -180z" />
|
||||
<glyph unicode="Þ" horiz-adv-x="1128" d="M162 0l336 1427h123l-56 -235h348q87 0 151 -23.5t102 -64.5t56 -98.5t17.5 -123t-16.5 -141.5q-48 -222 -181.5 -353.5t-339.5 -131.5h-358l-59 -256h-123zM373 375h356q276 0 371 366q19 65 17 125t-21.5 106t-73.5 73.5t-137 27.5l-346 2z" />
|
||||
<glyph unicode="ß" horiz-adv-x="1089" d="M139 0l256 1087q54 227 154.5 319.5t286.5 92.5q160 0 238.5 -60t78.5 -173q0 -119 -50.5 -194t-148.5 -122q-95 -46 -130.5 -75.5t-35.5 -67.5q0 -39 23.5 -65.5t101.5 -75.5q50 -31 74.5 -47.5t52 -41t38.5 -46.5t18.5 -54t7.5 -74q0 -194 -120.5 -308.5t-334.5 -114.5 q-47 0 -107.5 9t-97.5 18l-36 9l22 99q133 -27 217 -27q156 0 244 83t88 222q0 64 -30.5 100.5t-133.5 98.5q-87 54 -119 95.5t-32 98.5q0 81 43 128.5t163 109.5q85 44 121.5 94.5t36.5 132.5q0 71 -47.5 106.5t-153.5 35.5q-139 0 -209.5 -73t-109.5 -247l-252 -1073h-117 z" />
|
||||
<glyph unicode="à" horiz-adv-x="1009" d="M186 268q0 101 20.5 207.5t63.5 208.5t102.5 182t144.5 129t183 49q56 0 155.5 -12t170.5 -24l72 -13l-156 -665q-14 -57 -28 -139t-22 -135l-7 -54l-119 -4q31 190 39 233q-7 -10 -20.5 -27t-54.5 -60.5t-82 -76.5t-98 -60t-108 -27q-129 0 -192.5 75t-63.5 213z M313 268q0 -90 37.5 -135t126.5 -45q39 0 90 30t96 72t83.5 84.5t61.5 72.5l23 30l125 528q-148 31 -254 31q-74 0 -138.5 -43.5t-109.5 -113.5t-77.5 -158.5t-48 -179t-15.5 -173.5zM627 1407l59 96l361 -192l-58 -84z" />
|
||||
<glyph unicode="á" horiz-adv-x="1009" d="M186 268q0 101 20.5 207.5t63.5 208.5t102.5 182t144.5 129t183 49q56 0 155.5 -12t170.5 -24l72 -13l-156 -665q-14 -57 -28 -139t-22 -135l-7 -54l-119 -4q31 190 39 233q-7 -10 -20.5 -27t-54.5 -60.5t-82 -76.5t-98 -60t-108 -27q-129 0 -192.5 75t-63.5 213z M313 268q0 -90 37.5 -135t126.5 -45q39 0 90 30t96 72t83.5 84.5t61.5 72.5l23 30l125 528q-148 31 -254 31q-74 0 -138.5 -43.5t-109.5 -113.5t-77.5 -158.5t-48 -179t-15.5 -173.5zM686 1325l447 193l14 -109l-449 -178z" />
|
||||
<glyph unicode="â" horiz-adv-x="1009" d="M186 268q0 101 20.5 207.5t63.5 208.5t102.5 182t144.5 129t183 49q56 0 155.5 -12t170.5 -24l72 -13l-156 -665q-14 -57 -28 -139t-22 -135l-7 -54l-119 -4q31 190 39 233q-7 -10 -20.5 -27t-54.5 -60.5t-82 -76.5t-98 -60t-108 -27q-129 0 -192.5 75t-63.5 213z M313 268q0 -90 37.5 -135t126.5 -45q39 0 90 30t96 72t83.5 84.5t61.5 72.5l23 30l125 528q-148 31 -254 31q-74 0 -138.5 -43.5t-109.5 -113.5t-77.5 -158.5t-48 -179t-15.5 -173.5zM508 1208l309 297h86l178 -297h-127l-110 189l-199 -189h-137z" />
|
||||
<glyph unicode="ã" horiz-adv-x="1009" d="M186 268q0 101 20.5 207.5t63.5 208.5t102.5 182t144.5 129t183 49q56 0 155.5 -12t170.5 -24l72 -13l-156 -665q-14 -57 -28 -139t-22 -135l-7 -54l-119 -4q31 190 39 233q-7 -10 -20.5 -27t-54.5 -60.5t-82 -76.5t-98 -60t-108 -27q-129 0 -192.5 75t-63.5 213z M313 268q0 -90 37.5 -135t126.5 -45q39 0 90 30t96 72t83.5 84.5t61.5 72.5l23 30l125 528q-148 31 -254 31q-74 0 -138.5 -43.5t-109.5 -113.5t-77.5 -158.5t-48 -179t-15.5 -173.5zM563 1376q14 12 36 29t74 45.5t83 28.5q45 0 139 -50.5t117 -50.5q17 0 54.5 21t65.5 42 l29 21l8 -94q-12 -11 -32.5 -27.5t-68.5 -43.5t-79 -27q-40 0 -137.5 50t-124.5 50q-19 0 -59 -22.5t-70 -45.5l-31 -22z" />
|
||||
<glyph unicode="ä" horiz-adv-x="1009" d="M186 268q0 101 20.5 207.5t63.5 208.5t102.5 182t144.5 129t183 49q56 0 155.5 -12t170.5 -24l72 -13l-156 -665q-14 -57 -28 -139t-22 -135l-7 -54l-119 -4q31 190 39 233q-7 -10 -20.5 -27t-54.5 -60.5t-82 -76.5t-98 -60t-108 -27q-129 0 -192.5 75t-63.5 213z M313 268q0 -90 37.5 -135t126.5 -45q39 0 90 30t96 72t83.5 84.5t61.5 72.5l23 30l125 528q-148 31 -254 31q-74 0 -138.5 -43.5t-109.5 -113.5t-77.5 -158.5t-48 -179t-15.5 -173.5zM557 1280l39 168h115l-41 -168h-113zM938 1280l35 168h114l-38 -168h-111z" />
|
||||
<glyph unicode="å" horiz-adv-x="1009" d="M186 268q0 101 20.5 207.5t63.5 208.5t102.5 182t144.5 129t183 49q56 0 155.5 -12t170.5 -24l72 -13l-156 -665q-14 -57 -28 -139t-22 -135l-7 -54l-119 -4q31 190 39 233q-7 -10 -20.5 -27t-54.5 -60.5t-82 -76.5t-98 -60t-108 -27q-129 0 -192.5 75t-63.5 213z M313 268q0 -90 37.5 -135t126.5 -45q39 0 90 30t96 72t83.5 84.5t61.5 72.5l23 30l125 528q-148 31 -254 31q-74 0 -138.5 -43.5t-109.5 -113.5t-77.5 -158.5t-48 -179t-15.5 -173.5zM690 1360q16 80 79.5 137t152.5 57q72 0 107.5 -43t29.5 -118q-6 -99 -73.5 -163.5 t-160.5 -64.5q-87 0 -119 53t-16 142zM770 1360q-10 -42 12 -76.5t66 -34.5q45 0 81.5 32t47.5 79q11 41 -11 73.5t-65 32.5q-45 0 -82.5 -30.5t-48.5 -75.5z" />
|
||||
<glyph unicode="æ" horiz-adv-x="1550" d="M132.5 175q-6.5 56 8.5 116q27 141 119.5 208t247.5 91q163 24 317 33q101 299 -104 299q-63 0 -154.5 -6t-152.5 -12l-60 -5l19 117q229 26 379 26q92 0 152.5 -42.5t70.5 -122.5q126 165 354 165q285 0 291 -276q0 -104 -29 -211l-26 -98l-643 4q-27 -117 -25 -180 q2 -92 47 -138.5t148 -46.5q62 0 151 5t147 9l58 5l-23 -107q-212 -28 -366 -28q-193 0 -256 114q-101 -42 -237.5 -78t-227.5 -36q-65 0 -111.5 26t-67 69.5t-27 99.5zM261 225.5q0 -33.5 9.5 -64t36.5 -49t68 -18.5q75 0 189 28t210 62q-4 20 -6 42t-2.5 39t2 42.5t4 39.5 t7 43.5t7.5 39.5t9.5 44t9.5 42q-200 -20 -311 -35q-91 -14 -147 -58.5t-77 -129.5q-9 -34 -9 -67.5zM944 565l529 -4q29 118 26 187q-1 94 -49.5 138t-146.5 44q-136 0 -225 -87.5t-134 -277.5z" />
|
||||
<glyph unicode="ç" horiz-adv-x="829" d="M195 281q0 119 20 229.5t63.5 208t105.5 169.5t151.5 114t197.5 42q49 0 110 -8t97 -16l37 -8l-31 -99q-127 23 -217 23q-82 0 -151 -36.5t-116 -97.5t-80 -143t-48 -172.5t-15 -185.5q0 -106 53 -159.5t173 -53.5q36 0 93.5 8t97.5 16l40 9l-6 -98q-139 -43 -262 -43h-6 l-21 -78h11q90 0 136 -36t27 -120q-20 -88 -72 -129t-141 -41q-37 0 -77 3t-61 6l-21 3l22 90q80 -8 137 -8q87 0 107 80q17 74 -70 74h-90l39 162q-233 36 -233 295z" />
|
||||
<glyph unicode="è" horiz-adv-x="937" d="M190 283q0 107 20 212.5t64.5 205t107.5 175t156 121t203 45.5q137 0 213 -56.5t76 -176.5q0 -180 -139 -253t-436 -73h-115q-25 -105 -25 -188q0 -98 56.5 -151.5t152.5 -53.5q68 0 152 13t134 25l50 13l-8 -100q-20 -7 -54.5 -17t-129.5 -27t-176 -17q-143 0 -222.5 77 t-79.5 226zM358 584h121q226 0 327 48t101 175q0 70 -43 100.5t-129 30.5q-270 0 -377 -354zM467 1407l59 96l361 -192l-58 -84z" />
|
||||
<glyph unicode="é" horiz-adv-x="937" d="M190 283q0 107 20 212.5t64.5 205t107.5 175t156 121t203 45.5q137 0 213 -56.5t76 -176.5q0 -180 -139 -253t-436 -73h-115q-25 -105 -25 -188q0 -98 56.5 -151.5t152.5 -53.5q68 0 152 13t134 25l50 13l-8 -100q-20 -7 -54.5 -17t-129.5 -27t-176 -17q-143 0 -222.5 77 t-79.5 226zM358 584h121q226 0 327 48t101 175q0 70 -43 100.5t-129 30.5q-270 0 -377 -354zM612 1325l447 193l14 -109l-448 -178z" />
|
||||
<glyph unicode="ê" horiz-adv-x="937" d="M190 283q0 107 20 212.5t64.5 205t107.5 175t156 121t203 45.5q137 0 213 -56.5t76 -176.5q0 -180 -139 -253t-436 -73h-115q-25 -105 -25 -188q0 -98 56.5 -151.5t152.5 -53.5q68 0 152 13t134 25l50 13l-8 -100q-20 -7 -54.5 -17t-129.5 -27t-176 -17q-143 0 -222.5 77 t-79.5 226zM358 584h121q226 0 327 48t101 175q0 70 -43 100.5t-129 30.5q-270 0 -377 -354zM467 1208l311 297h84l178 -297h-125l-110 189l-199 -189h-139z" />
|
||||
<glyph unicode="ë" horiz-adv-x="937" d="M190 283q0 107 20 212.5t64.5 205t107.5 175t156 121t203 45.5q137 0 213 -56.5t76 -176.5q0 -180 -139 -253t-436 -73h-115q-25 -105 -25 -188q0 -98 56.5 -151.5t152.5 -53.5q68 0 152 13t134 25l50 13l-8 -100q-20 -7 -54.5 -17t-129.5 -27t-176 -17q-143 0 -222.5 77 t-79.5 226zM358 584h121q226 0 327 48t101 175q0 70 -43 100.5t-129 30.5q-270 0 -377 -354zM539 1280l39 168h114l-39 -168h-114zM920 1280l36 168h115l-41 -168h-110z" />
|
||||
<glyph unicode="ì" horiz-adv-x="403" d="M139 0l238 1024h123l-238 -1024h-123zM160 1407l59 96l361 -192l-58 -84z" />
|
||||
<glyph unicode="í" horiz-adv-x="403" d="M139 0l238 1024h123l-238 -1024h-123zM389 1325l447 193l14 -109l-449 -178z" />
|
||||
<glyph unicode="î" horiz-adv-x="403" d="M139 0l238 1024h123l-238 -1024h-123zM180 1208l309 297h86l177 -297h-125l-111 189l-199 -189h-137z" />
|
||||
<glyph unicode="ï" horiz-adv-x="403" d="M139 0l238 1024h123l-238 -1024h-123zM219 1280l39 168h115l-41 -168h-113zM600 1280l35 168h115l-39 -168h-111z" />
|
||||
<glyph unicode="ð" horiz-adv-x="1052" d="M168 319q7 125 51.5 231t116 177.5t163.5 111.5t193 40q65 0 144.5 -20t126.5 -40l47 -20q47 282 -193 444l-244 -151l-49 79l201 125q-68 36 -203 80l51 111q161 -40 281 -109l221 140l47 -82l-182 -115q269 -209 180 -588q-94 -396 -242.5 -573.5t-371.5 -177.5 q-94 0 -164 27.5t-109 75.5t-55 107t-10 127zM301 328q-8 -103 49.5 -163.5t184.5 -60.5q83 0 153 41t124.5 119t96 180t74.5 234q-8 6 -52 23.5t-120.5 37t-136.5 19.5q-154 0 -261.5 -123.5t-111.5 -306.5z" />
|
||||
<glyph unicode="ñ" horiz-adv-x="1011" d="M139 0h123l158 678q8 10 21.5 27.5t54.5 61.5t80.5 78t92 61.5t95.5 27.5q77 0 115.5 -42t38.5 -120q0 -85 -39 -256l-121 -516h121l122 524q41 178 41 269q0 117 -61.5 184t-177.5 67q-52 0 -107 -22.5t-96.5 -55t-76 -64.5t-52.5 -54l-18 -23l43 199h-119zM522 1376 q14 12 36 29t74 45.5t83 28.5q45 0 139 -50.5t117 -50.5q17 0 54.5 21t66.5 42l28 21l8 -94q-12 -11 -32.5 -27.5t-68.5 -43.5t-79 -27q-40 0 -137.5 50t-124.5 50q-19 0 -59 -22.5t-71 -45.5l-30 -22z" />
|
||||
<glyph unicode="ò" horiz-adv-x="1011" d="M193 303q0 198 65 366.5t183.5 270.5t265.5 102q170 0 257 -84.5t87 -252.5q0 -196 -62.5 -360t-183.5 -264.5t-277 -100.5q-167 0 -251 78.5t-84 244.5zM315 303q0 -215 213 -215q117 0 209.5 86t140.5 226.5t48 306.5q0 105 -55 167t-164 62q-113 0 -204 -89.5 t-139.5 -233.5t-48.5 -310zM522 1407l60 96l360 -192l-57 -84z" />
|
||||
<glyph unicode="ó" horiz-adv-x="1011" d="M193 303q0 198 65 366.5t183.5 270.5t265.5 102q170 0 257 -84.5t87 -252.5q0 -196 -62.5 -360t-183.5 -264.5t-277 -100.5q-167 0 -251 78.5t-84 244.5zM315 303q0 -215 213 -215q117 0 209.5 86t140.5 226.5t48 306.5q0 105 -55 167t-164 62q-113 0 -204 -89.5 t-139.5 -233.5t-48.5 -310zM614 1325l447 193l14 -109l-448 -178z" />
|
||||
<glyph unicode="ô" horiz-adv-x="1011" d="M193 303q0 198 65 366.5t183.5 270.5t265.5 102q170 0 257 -84.5t87 -252.5q0 -196 -62.5 -360t-183.5 -264.5t-277 -100.5q-167 0 -251 78.5t-84 244.5zM315 303q0 -215 213 -215q117 0 209.5 86t140.5 226.5t48 306.5q0 105 -55 167t-164 62q-113 0 -204 -89.5 t-139.5 -233.5t-48.5 -310zM500 1208l311 297h84l178 -297h-127l-110 189l-199 -189h-137z" />
|
||||
<glyph unicode="õ" horiz-adv-x="1011" d="M193 303q0 198 65 366.5t183.5 270.5t265.5 102q170 0 257 -84.5t87 -252.5q0 -196 -62.5 -360t-183.5 -264.5t-277 -100.5q-167 0 -251 78.5t-84 244.5zM315 303q0 -215 213 -215q117 0 209.5 86t140.5 226.5t48 306.5q0 105 -55 167t-164 62q-113 0 -204 -89.5 t-139.5 -233.5t-48.5 -310zM496 1376q14 12 36 29t73.5 45.5t82.5 28.5q45 0 139 -50.5t117 -50.5q17 0 54.5 21t66.5 42l29 21l8 -94q-12 -11 -32.5 -27.5t-68.5 -43.5t-79 -27q-40 0 -138 50t-125 50q-19 0 -59 -22.5t-70 -45.5l-30 -22z" />
|
||||
<glyph unicode="ö" horiz-adv-x="1011" d="M193 303q0 198 65 366.5t183.5 270.5t265.5 102q170 0 257 -84.5t87 -252.5q0 -196 -62.5 -360t-183.5 -264.5t-277 -100.5q-167 0 -251 78.5t-84 244.5zM315 303q0 -215 213 -215q117 0 209.5 86t140.5 226.5t48 306.5q0 105 -55 167t-164 62q-113 0 -204 -89.5 t-139.5 -233.5t-48.5 -310zM555 1280l39 168h100l-39 -168h-100zM922 1280l36 168h101l-39 -168h-98z" />
|
||||
<glyph unicode="÷" d="M317 539v120h750v-120h-750zM545 686v184h295v-184h-295zM629 68v190h125v-190h-125z" />
|
||||
<glyph unicode="ø" horiz-adv-x="1009" d="M125 -197l160 252q-90 81 -90 252q0 198 65 367t183.5 271t265.5 102q95 0 176 -33l137 223l78 -33l-148 -231q101 -87 101 -264q0 -196 -62.5 -360t-183.5 -264.5t-277 -100.5q-104 0 -178 30l-149 -243zM317 307q0 -89 37 -141l230 362l239 387q-48 25 -114 25 q-113 0 -204 -89.5t-139.5 -233.5t-48.5 -310zM416 115q45 -23 114 -23q117 0 209.5 86t140.5 226.5t48 306.5q0 93 -43 151l-236 -370z" />
|
||||
<glyph unicode="ù" horiz-adv-x="1011" d="M205 229q0 93 41 271l123 524h120l-120 -516q-39 -171 -39 -256q0 -77 39.5 -119.5t113.5 -42.5q43 0 94.5 26t94 63.5t78.5 75t56 63.5l21 26l158 680h123l-238 -1024h-118l43 199q-7 -9 -19.5 -23.5t-51 -52.5t-78 -67t-95 -52.5t-107.5 -23.5q-115 0 -177 67t-62 182z M526 1407l60 96l360 -192l-57 -84z" />
|
||||
<glyph unicode="ú" horiz-adv-x="1011" d="M205 229q0 93 41 271l123 524h120l-120 -516q-39 -171 -39 -256q0 -77 39.5 -119.5t113.5 -42.5q43 0 94.5 26t94 63.5t78.5 75t56 63.5l21 26l158 680h123l-238 -1024h-118l43 199q-7 -9 -19.5 -23.5t-51 -52.5t-78 -67t-95 -52.5t-107.5 -23.5q-115 0 -177 67t-62 182z M641 1325l446 193l15 -109l-449 -178z" />
|
||||
<glyph unicode="û" horiz-adv-x="1011" d="M205 229q0 93 41 271l123 524h120l-120 -516q-39 -171 -39 -256q0 -77 39.5 -119.5t113.5 -42.5q43 0 94.5 26t94 63.5t78.5 75t56 63.5l21 26l158 680h123l-238 -1024h-118l43 199q-7 -9 -19.5 -23.5t-51 -52.5t-78 -67t-95 -52.5t-107.5 -23.5q-115 0 -177 67t-62 182z M461 1208l311 297h84l178 -297h-125l-110 189l-199 -189h-139z" />
|
||||
<glyph unicode="ü" horiz-adv-x="1011" d="M205 229q0 93 41 271l123 524h120l-120 -516q-39 -171 -39 -256q0 -77 39.5 -119.5t113.5 -42.5q43 0 94.5 26t94 63.5t78.5 75t56 63.5l21 26l158 680h123l-238 -1024h-118l43 199q-7 -9 -19.5 -23.5t-51 -52.5t-78 -67t-95 -52.5t-107.5 -23.5q-115 0 -177 67t-62 182z M524 1280l39 168h115l-39 -168h-115zM905 1280l37 168h115l-41 -168h-111z" />
|
||||
<glyph unicode="ý" horiz-adv-x="925" d="M217 -459l242 459h-133l-35 1024h121l28 -918h70l469 918h129l-766 -1483h-125zM588 1325l446 193l15 -109l-449 -178z" />
|
||||
<glyph unicode="þ" horiz-adv-x="983" d="M31 -457l456 1932h117l-135 -562q1 0 10.5 7t17 12.5t23 15.5t28.5 17.5t32 18t36.5 18t39 15.5t41.5 13t42 8.5t43 3.5q81 0 137 -34t81.5 -87t33.5 -122.5t0 -136t-26 -132.5q-77 -287 -202 -418.5t-339 -131.5q-47 0 -99 4t-83 9t-31 7l-109 -457h-114zM281 117 l206 -21q158 0 248.5 103.5t153.5 330.5q13 46 19.5 97t2.5 105t-20 96.5t-52.5 70t-90.5 27.5q-41 0 -87.5 -15t-84.5 -35.5t-70 -42t-50 -35t-18 -12.5z" />
|
||||
<glyph unicode="ÿ" horiz-adv-x="925" d="M217 -459l242 459h-133l-35 1024h121l28 -918h70l469 918h129l-766 -1483h-125zM481 1280l39 168h115l-39 -168h-115zM862 1280l37 168h115l-41 -168h-111z" />
|
||||
<glyph unicode="Œ" horiz-adv-x="1771" d="M225 340q-3 143 49 367q44 186 102.5 320t140 230t190.5 143.5t249 47.5q26 0 134.5 -8t146.5 -13h778l-26 -124h-662l-125 -515h545l-27 -122l-542 4l-129 -545h659l-31 -127h-774q-211 -18 -293 -18q-198 0 -290 90.5t-95 269.5zM352 383q0 -142 69 -209.5t228 -67.5 q107 0 277 17l282 1186q-114 14 -270 14q-115 0 -201 -38t-149 -118t-106.5 -189.5t-80.5 -268.5q-49 -192 -49 -326z" />
|
||||
<glyph unicode="œ" horiz-adv-x="1656" d="M186 227q-6 129 37 301q32 134 73.5 227t104 159t149.5 97t204 31q130 0 201.5 -51.5t88.5 -159.5q124 211 388 211q288 0 294 -272q3 -93 -26 -213l-29 -100l-651 4q-29 -127 -27 -182q2 -92 50.5 -137.5t152.5 -45.5q60 0 148.5 5t147.5 9l58 5l-18 -107 q-213 -28 -371 -28q-235 0 -274 190q-62 -99 -152.5 -144.5t-230.5 -45.5q-161 0 -237.5 59t-80.5 188zM307 262q3 -88 53.5 -127t167.5 -39q54 0 99 11.5t78 29t61.5 50.5t47.5 64t37.5 81.5t30.5 91t29 104.5q10 45 14 65.5t9.5 59.5t4.5 71.5t-7 63.5q-15 72 -64.5 106 t-138.5 34q-159 0 -245 -92t-136 -308q-43 -179 -41 -266zM1044 565l535 -4q27 114 27 189q-1 93 -50.5 134.5t-148.5 41.5q-136 0 -227.5 -86.5t-135.5 -274.5z" />
|
||||
<glyph unicode="Ÿ" horiz-adv-x="1003" d="M354 1423h127l183 -690l501 690h135l-604 -813l-143 -610h-121l143 623zM623 1677l36 170h103l-41 -170h-98zM999 1677l41 170h101l-41 -170h-101z" />
|
||||
<glyph unicode="ˆ" horiz-adv-x="1619" d="M803 1208l309 297h64l178 -297h-115l-111 189l-198 -189h-127z" />
|
||||
<glyph unicode="˜" horiz-adv-x="864" d="M461 1376q14 12 36 29t73.5 45.5t82.5 28.5q45 0 139 -50.5t117 -50.5q17 0 54.5 21t66.5 42l29 21l8 -94q-12 -11 -32.5 -27.5t-68.5 -43.5t-79 -27q-40 0 -137.5 50t-124.5 50q-19 0 -59 -22.5t-70 -45.5l-31 -22z" />
|
||||
<glyph unicode=" " horiz-adv-x="953" />
|
||||
<glyph unicode=" " horiz-adv-x="1907" />
|
||||
<glyph unicode=" " horiz-adv-x="953" />
|
||||
<glyph unicode=" " horiz-adv-x="1907" />
|
||||
<glyph unicode=" " horiz-adv-x="635" />
|
||||
<glyph unicode=" " horiz-adv-x="476" />
|
||||
<glyph unicode=" " horiz-adv-x="317" />
|
||||
<glyph unicode=" " horiz-adv-x="317" />
|
||||
<glyph unicode=" " horiz-adv-x="238" />
|
||||
<glyph unicode=" " horiz-adv-x="381" />
|
||||
<glyph unicode=" " horiz-adv-x="105" />
|
||||
<glyph unicode="‐" horiz-adv-x="724" d="M223 492l29 114h504l-29 -114h-504z" />
|
||||
<glyph unicode="‑" horiz-adv-x="724" d="M223 492l29 114h504l-29 -114h-504z" />
|
||||
<glyph unicode="‒" horiz-adv-x="724" d="M223 492l29 114h504l-29 -114h-504z" />
|
||||
<glyph unicode="–" horiz-adv-x="1251" d="M242 494v110h1024v-110h-1024z" />
|
||||
<glyph unicode="—" horiz-adv-x="2275" d="M242 494v110h2048v-110h-2048z" />
|
||||
<glyph unicode="‘" horiz-adv-x="372" d="M311 981l213 440h94l-180 -440h-127z" />
|
||||
<glyph unicode="’" horiz-adv-x="372" d="M315 983l181 440h127l-213 -440h-95z" />
|
||||
<glyph unicode="‚" horiz-adv-x="364" d="M-4 -260l180 440h127l-213 -440h-94z" />
|
||||
<glyph unicode="“" horiz-adv-x="679" d="M309 983l213 440h94l-180 -440h-127zM618 983l213 440h95l-181 -440h-127z" />
|
||||
<glyph unicode="”" horiz-adv-x="679" d="M315 983l181 440h127l-213 -440h-95zM623 983l180 440h127l-213 -440h-94z" />
|
||||
<glyph unicode="„" horiz-adv-x="653" d="M-27 -260l213 440h95l-181 -440h-127zM285 -260l213 440h94l-180 -440h-127z" />
|
||||
<glyph unicode="•" horiz-adv-x="1007" d="M367 219v590h512v-590h-512z" />
|
||||
<glyph unicode="…" horiz-adv-x="1325" d="M117 0l47 205h125l-47 -205h-125zM604 0l47 205h125l-47 -205h-125zM1085 0l48 205h124l-47 -205h-125z" />
|
||||
<glyph unicode=" " horiz-adv-x="381" />
|
||||
<glyph unicode="‹" horiz-adv-x="536" d="M178 479l23 64l420 280l-39 -129l-279 -188l186 -209l-34 -115z" />
|
||||
<glyph unicode="›" horiz-adv-x="536" d="M150 182l38 129l279 189l-186 209l34 114l277 -297l-23 -63z" />
|
||||
<glyph unicode=" " horiz-adv-x="476" />
|
||||
<glyph unicode="€" d="M209 442l24 103h89q18 137 49 235h-84l24 103h95q40 104 94 190t125.5 155t164.5 107.5t199 38.5q68 0 148.5 -11t126.5 -21l47 -11l-27 -98q-158 33 -301 33q-148 0 -261.5 -104.5t-186.5 -278.5h579l-22 -103h-594q-40 -124 -54 -235h594l-22 -103h-580q-2 -25 -2 -69 q0 -146 63.5 -214.5t200.5 -68.5q68 0 147 8t124 16l45 9l-6 -100q-174 -43 -328 -43q-185 0 -278 98.5t-93 290.5q0 48 2 73h-102z" />
|
||||
<glyph unicode="™" horiz-adv-x="1437" d="M451 1196v88h409v-88h-149v-516h-95v516h-165zM926 678v606h131l149 -453l156 453h129v-606h-90v485l-154 -458h-82l-147 458v-485h-92z" />
|
||||
<glyph unicode="" horiz-adv-x="1024" d="M0 0v1024h1024v-1024h-1024z" />
|
||||
</font>
|
||||
</defs></svg>
|
After Width: | Height: | Size: 56 KiB |
BIN
fonts/titillium-lightitalic-webfont.ttf
Normal file
BIN
fonts/titillium-lightitalic-webfont.woff
Normal file
BIN
fonts/titillium-regular-webfont.eot
Normal file
240
fonts/titillium-regular-webfont.svg
Normal file
|
@ -0,0 +1,240 @@
|
|||
<?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></metadata>
|
||||
<defs>
|
||||
<font id="TitilliumRegular" horiz-adv-x="1146" >
|
||||
<font-face units-per-em="2048" ascent="1536" descent="-512" />
|
||||
<missing-glyph horiz-adv-x="450" />
|
||||
<glyph horiz-adv-x="0" />
|
||||
<glyph horiz-adv-x="2048" />
|
||||
<glyph unicode=" " horiz-adv-x="450" />
|
||||
<glyph unicode="	" horiz-adv-x="450" />
|
||||
<glyph unicode=" " horiz-adv-x="450" />
|
||||
<glyph unicode="!" horiz-adv-x="505" d="M170 0v229h168v-229h-168zM172 1417h162l-10 -950h-142z" />
|
||||
<glyph unicode=""" horiz-adv-x="763" d="M135 1417h154l-8 -454h-138zM475 1417h154l-8 -454h-138z" />
|
||||
<glyph unicode="#" d="M49 356v131h227v381h-227v131h227v365h140v-365h315v365h139v-365h228v-131h-228v-381h228v-131h-228v-356h-139v356h-315v-356h-140v356h-227zM416 487h315v381h-315v-381z" />
|
||||
<glyph unicode="$" d="M141 1010q0 362 434 362q32 0 48 -2l34 264h105l-35 -270q57 -5 121 -13t100 -13l35 -5l-12 -127q-141 17 -260 27l-62 -477q100 -24 163 -49.5t111 -66t68.5 -99.5t20.5 -144q0 -415 -432 -415h-31l-29 -236q-104 6 -104 14l28 228q-64 5 -137 14.5t-114 15.5l-41 7 l16 125q158 -23 293 -31l67 512q-105 24 -171 50t-118 68.5t-75 105.5t-23 155zM293 1018q0 -110 55.5 -158t198.5 -82l59 461h-20q-293 0 -293 -221zM567 115h4q146 0 217.5 66t71.5 206q0 98 -51 145.5t-178 77.5z" />
|
||||
<glyph unicode="%" d="M57 1090q0 143 59 212.5t167 69.5t166.5 -69t58.5 -213q0 -145 -59.5 -217t-165.5 -72t-166 72t-60 217zM182 1090q0 -94 23.5 -139.5t77.5 -45.5q55 0 78.5 45.5t23.5 139.5q0 93 -23 135.5t-79 42.5q-54 0 -77.5 -42.5t-23.5 -135.5zM317 -8l420 1403l99 -33 l-420 -1399zM641 270q0 143 58 212t165 69q108 0 167 -69.5t59 -213.5t-60 -216t-166 -72t-164.5 72.5t-58.5 217.5zM764 270q0 -95 23 -140.5t77 -45.5q57 0 80 45t23 139t-23 136t-80 42q-54 0 -77 -42.5t-23 -133.5z" />
|
||||
<glyph unicode="&" horiz-adv-x="1409" d="M86 416q0 120 35.5 200.5t102 128t179.5 84.5q-72 83 -94 146t-22 160q0 137 94 219t262 82q176 0 265 -82.5t89 -229.5q0 -141 -71 -224t-244 -163l311 -307q17 49 35 153.5t23 178.5l149 -2q-11 -108 -38 -231t-56 -195l264 -250l-92 -102l-248 231 q-140 -233 -440 -233q-141 0 -240 29.5t-156 88t-82.5 136t-25.5 182.5zM242 426q0 -155 79.5 -231t256.5 -76q250 0 346 184l-432 430q-136 -42 -193 -110.5t-57 -196.5zM440 1110q0 -126 92 -223l60 -58q141 61 196.5 120.5t55.5 164.5q0 94 -48.5 141.5t-152.5 47.5 q-98 0 -150.5 -48t-52.5 -145z" />
|
||||
<glyph unicode="'" horiz-adv-x="425" d="M137 1417h154l-10 -454h-138z" />
|
||||
<glyph unicode="(" horiz-adv-x="540" d="M104 616q0 124 22 264t53 252t62.5 206t53.5 146l22 52h148q-8 -21 -21 -59t-46.5 -150t-59.5 -218t-47 -244t-21 -249q0 -109 20 -239.5t49 -238t57.5 -199t48.5 -143.5l20 -52h-148q-9 18 -23 49.5t-51 129.5t-65 196t-51 235.5t-23 261.5z" />
|
||||
<glyph unicode=")" horiz-adv-x="540" d="M76 -256q8 20 21 54.5t46.5 138.5t59 204t46.5 233t21 242q0 111 -20 246t-48.5 249.5t-57 213t-48.5 155.5l-20 56h147q9 -19 23 -54t51 -141.5t65 -211t51 -247t23 -266.5t-22 -259t-53 -240t-62.5 -192t-53.5 -134l-22 -47h-147z" />
|
||||
<glyph unicode="*" horiz-adv-x="860" d="M111 938l221 162l-217 157l63 86l217 -159l84 258l101 -33l-82 -260h266v-102h-270l84 -256l-101 -31l-84 258l-219 -162z" />
|
||||
<glyph unicode="+" d="M113 444v140h387v399h143v-399h391v-140h-391v-403h-143v403h-387z" />
|
||||
<glyph unicode="," horiz-adv-x="456" d="M70 -252l94 471h170l-137 -471h-127z" />
|
||||
<glyph unicode="-" horiz-adv-x="897" d="M139 492v143h621v-143h-621z" />
|
||||
<glyph unicode="." horiz-adv-x="442" d="M137 0v233h168v-233h-168z" />
|
||||
<glyph unicode="/" horiz-adv-x="843" d="M66 20l577 1430l137 -51l-577 -1428z" />
|
||||
<glyph unicode="0" d="M80 653q0 165 21.5 288.5t61.5 206t101.5 133t135.5 72t171 21.5q125 0 213 -34.5t153 -115.5t96.5 -222t31.5 -347q0 -191 -32.5 -323.5t-98.5 -209t-153 -109.5t-208 -33t-208.5 32.5t-153.5 108.5t-98.5 208t-32.5 324zM244 653q0 -157 21 -262t64.5 -164.5 t101.5 -83.5t142 -24q67 0 116.5 15t91 51.5t68 97.5t40.5 153.5t14 218.5q0 136 -13 235t-38 165t-66 105.5t-92 56t-121 16.5q-116 0 -185 -48t-106.5 -176.5t-37.5 -355.5z" />
|
||||
<glyph unicode="1" d="M219 1065l430 287h148v-1352h-158v1176l-348 -230z" />
|
||||
<glyph unicode="2" d="M141 0v133l396 416q63 65 94.5 99t72.5 84.5t59.5 86.5t32 81.5t13.5 92.5q0 131 -71.5 184.5t-223.5 53.5q-67 0 -154.5 -11.5t-141.5 -22.5l-54 -11l-12 131q22 6 59.5 15t140.5 24.5t191 15.5q217 0 322.5 -87t105.5 -275q0 -99 -33.5 -183t-89.5 -153t-160 -170 l-360 -367h678v-137h-865z" />
|
||||
<glyph unicode="3" d="M127 35l14 129q221 -45 414 -45q150 1 221.5 66t71.5 196q0 243 -279 254h-272v135h272q86 0 166 69t80 177q0 116 -63 166.5t-213 50.5q-83 0 -177 -10.5t-147 -20.5l-53 -10l-15 125q22 6 59.5 15.5t142.5 25.5t196 16q235 0 333.5 -84t98.5 -268q0 -43 -8.5 -81.5 t-25 -68t-32.5 -51.5t-40 -41.5t-37.5 -29t-35 -22t-22.5 -13.5q58 -21 95.5 -42t72 -57.5t50.5 -93t16 -135.5q0 -206 -106 -306.5t-333 -100.5q-95 0 -206 14t-175 28z" />
|
||||
<glyph unicode="4" d="M82 264v123l385 965h172l-391 -949h489v422h158v-422h172v-139h-172v-264h-158v264h-655z" />
|
||||
<glyph unicode="5" d="M129 41l18 125q236 -45 416 -45q142 0 223.5 82.5t81.5 236.5q0 146 -74 208.5t-212 62.5q-75 0 -155.5 -20.5t-123.5 -40.5l-43 -21l-108 20l36 703h789v-144h-658l-36 -440q6 3 17.5 9t47.5 20.5t71.5 25.5t85.5 20t95 9q430 0 430 -399q0 -230 -118.5 -350.5 t-333.5 -120.5q-92 0 -204 15t-178 29z" />
|
||||
<glyph unicode="6" d="M102 682q0 354 138.5 522t390.5 168q76 0 168.5 -9t146.5 -17l55 -9l-14 -129q-184 25 -356 25q-177 0 -271 -121t-94 -346l20 8l57 19t78 24t92 20.5t91 8.5q455 0 455 -420q0 -215 -123.5 -330.5t-349.5 -115.5q-246 0 -365 182t-119 520zM264 627q1 -112 19 -202 t55 -160t100 -108t148 -38q151 0 230 79t79 228q0 139 -78.5 209t-222.5 70q-70 0 -152.5 -19.5t-129.5 -39.5z" />
|
||||
<glyph unicode="7" d="M158 1208v144h839v-207l-520 -1165l-149 47l510 1128v53h-680z" />
|
||||
<glyph unicode="8" d="M66 344q0 62 11.5 112t30 85t50 66.5t63 53t78.5 46.5q-111 55 -161 125.5t-50 191.5q0 171 127.5 260.5t353.5 89.5t358 -89.5t132 -262.5q0 -86 -24.5 -144t-71 -96t-129.5 -75q60 -27 100.5 -54t75.5 -66.5t52 -94t17 -125.5q0 -387 -510 -387q-85 0 -157 10.5 t-137 37t-110.5 67t-72 104t-26.5 145.5zM233 371q0 -248 336 -248q163 0 252.5 59.5t89.5 200.5q0 57 -17.5 99t-52.5 70t-73.5 45.5t-95.5 33.5h-215q-112 -31 -168 -91t-56 -169zM256 1006q0 -91 49 -146.5t152 -91.5h215q110 35 164.5 90.5t54.5 145.5q0 227 -320 227 q-315 0 -315 -225z" />
|
||||
<glyph unicode="9" d="M84 924q0 206 127.5 327t341.5 121q248 0 368.5 -183.5t120.5 -516.5q0 -193 -36 -328.5t-107.5 -214.5t-167 -114t-225.5 -35q-76 0 -169 9t-147 18l-55 9l15 127q184 -24 356 -24q186 0 279 116t94 355q-23 -9 -61.5 -22t-132.5 -34.5t-159 -21.5q-442 0 -442 412z M248 924q0 -273 291 -273q63 0 148.5 18.5t139.5 36.5l54 19q-7 508 -328 508q-142 0 -223.5 -83t-81.5 -226z" />
|
||||
<glyph unicode=":" horiz-adv-x="444" d="M137 0v233h168v-233h-168zM137 659v234h168v-234h-168z" />
|
||||
<glyph unicode=";" horiz-adv-x="507" d="M98 -252h127l137 471h-172zM180 659v234h166v-234h-166z" />
|
||||
<glyph unicode="<" d="M125 446v136l852 415v-159l-694 -322l694 -328v-161z" />
|
||||
<glyph unicode="=" d="M131 254v141h885v-141h-885zM131 633v141h885v-141h-885z" />
|
||||
<glyph unicode=">" d="M168 27v161l694 328l-694 322v159l852 -415v-136z" />
|
||||
<glyph unicode="?" horiz-adv-x="915" d="M76 1376q207 62 342 62q211 0 312 -76.5t101 -251.5q0 -133 -35.5 -202.5t-154.5 -168.5q-99 -82 -140.5 -136.5t-41.5 -119.5v-71h-129q-27 55 -27 125q0 69 47.5 130t143.5 142q113 98 147.5 151.5t34.5 137.5q0 107 -66 153.5t-207 46.5q-51 0 -130.5 -12t-132.5 -24 l-54 -11zM307 2v229h168v-229h-168z" />
|
||||
<glyph unicode="@" horiz-adv-x="2000" d="M104 535q0 250 61.5 432.5t182 294.5t290 165.5t394.5 53.5q457 0 668 -210.5t211 -645.5v-27q0 -155 -17 -265.5t-45.5 -177t-76 -104.5t-98.5 -50.5t-122 -12.5q-42 0 -78 7t-60 17.5t-43 23.5t-30 26.5t-18 24t-9 17.5l-3 7q-23 -14 -60.5 -34t-132.5 -53.5 t-164 -33.5q-59 0 -105.5 10t-96.5 42t-83 86.5t-54 150t-21 225.5q0 134 20.5 229t67.5 164.5t128.5 103t199.5 33.5q44 0 103 -13t95 -27l37 -13v33h154v-391q0 -76 0.5 -126t2 -102.5t3.5 -83.5t7 -64t10.5 -49.5t15 -34t19.5 -24.5t26 -13t32.5 -7.5t40.5 -1.5 q41 0 67.5 7.5t54 35t43 79t25 141t9.5 218.5v29q0 378 -168 548.5t-555 170.5q-393 0 -582.5 -194t-189.5 -617q0 -303 82 -482t248 -256.5t442 -77.5q40 0 113 5.5t127 10.5l53 5l6 -137q-193 -19 -299 -19q-156 0 -279.5 19t-230 63t-182.5 116.5t-130 177.5t-80 248 t-26 327zM750 500q0 -92 12.5 -160.5t32.5 -108.5t49.5 -65t58 -33t62.5 -8q20 0 43.5 4t46.5 9.5t48 14t45.5 16.5t42 17t34.5 15t25.5 12t13.5 6q-5 29 -12 140t-7 214v285q-123 41 -211 41q-86 0 -142.5 -24.5t-87 -78t-42.5 -123t-12 -173.5z" />
|
||||
<glyph unicode="A" horiz-adv-x="1220" d="M49 0l389 1417h344l389 -1417h-155l-103 365h-606l-102 -365h-156zM342 506h537l-215 776h-107z" />
|
||||
<glyph unicode="B" horiz-adv-x="1261" d="M174 0v1417h514q211 0 316.5 -87t105.5 -273q0 -132 -45.5 -208t-136.5 -118q105 -36 165 -113.5t60 -220.5q0 -214 -113 -305.5t-325 -91.5h-541zM332 139h377q140 0 212 58t72 206q0 63 -21 110t-51 72.5t-72.5 41t-77.5 20t-73 4.5h-366v-512zM332 788h364 q132 0 192 62.5t60 191.5q0 123 -65 179.5t-201 56.5h-350v-490z" />
|
||||
<glyph unicode="C" horiz-adv-x="1114" d="M121 705q0 107 6.5 191.5t22 163t41.5 135.5t65.5 104.5t93.5 77t126 45.5t163 16q166 0 391 -45l-6 -133q-207 36 -369 36q-79 0 -137 -15t-99 -49t-67 -79.5t-41 -116t-20.5 -147.5t-5.5 -184q0 -90 3.5 -157t13.5 -131t28 -108t46 -82t67.5 -60t93 -34t122.5 -12 q164 0 365 37l6 -135q-215 -43 -391 -43q-105 0 -185.5 20.5t-137.5 64t-95 102t-60 143.5t-31 178.5t-9 216.5z" />
|
||||
<glyph unicode="D" horiz-adv-x="1320" d="M174 0v1417h506q121 0 212.5 -33.5t150 -92.5t95.5 -147.5t51.5 -188.5t14.5 -226q0 -129 -14 -232.5t-50.5 -198.5t-94.5 -159t-150.5 -101.5t-214.5 -37.5h-506zM332 139h348q72 0 129 22t96 63.5t66.5 94t42.5 121.5t21.5 138.5t6.5 150.5q0 98 -9 175.5t-33.5 149.5 t-64.5 119.5t-104.5 76t-150.5 28.5h-348v-1139z" />
|
||||
<glyph unicode="E" horiz-adv-x="1132" d="M174 0v1417h862v-139h-704v-490h581v-137h-581v-512h704v-139h-862z" />
|
||||
<glyph unicode="F" horiz-adv-x="1077" d="M174 0v1417h848v-139h-690v-553h583v-139h-583v-586h-158z" />
|
||||
<glyph unicode="G" horiz-adv-x="1261" d="M117 705q0 147 15.5 258t53.5 203t100 150.5t156 90t220 31.5q96 0 212 -13.5t184 -26.5l68 -14l-6 -131q-254 43 -440 43q-98 0 -167.5 -24t-114.5 -68t-71 -118.5t-36 -164t-10 -216.5q0 -125 10 -213t35.5 -162.5t70 -118.5t114 -68t167.5 -24q145 0 293 28v437h-236 v141h391v-696q-67 -12 -213.5 -30.5t-246.5 -18.5q-128 0 -223.5 32t-157.5 90t-99.5 150t-53 200.5t-15.5 252.5z" />
|
||||
<glyph unicode="H" horiz-adv-x="1382" d="M174 0v1417h158v-635h721v635h155v-1417h-155v641h-721v-641h-158z" />
|
||||
<glyph unicode="I" horiz-adv-x="503" d="M174 0v1417h158v-1417h-158z" />
|
||||
<glyph unicode="J" horiz-adv-x="591" d="M37 -6q53 0 82.5 1.5t59.5 9.5t44 21.5t26 39t15.5 61.5t3.5 90v1200h156l2 -1222q0 -77 -9.5 -132t-32 -93t-51 -61t-76.5 -35.5t-97 -16.5t-123 -4v141z" />
|
||||
<glyph unicode="K" horiz-adv-x="1165" d="M174 0v1417h158v-659l233 8l363 651h180l-406 -712l428 -705h-186l-377 627l-235 -9v-618h-158z" />
|
||||
<glyph unicode="L" horiz-adv-x="980" d="M174 0v1417h158v-1276h622v-141h-780z" />
|
||||
<glyph unicode="M" horiz-adv-x="1720" d="M174 0v1417h285l401 -1198l402 1198h284v-1417h-157v1249h-29l-412 -1198h-176l-412 1198h-28v-1249h-158z" />
|
||||
<glyph unicode="N" horiz-adv-x="1384" d="M174 0v1417h295l543 -1278h43v1278h155v-1417h-288l-551 1278h-39v-1278h-158z" />
|
||||
<glyph unicode="O" horiz-adv-x="1351" d="M117 702q0 146 16 256.5t55 203.5t102 152t159.5 91.5t226.5 32.5q162 0 272 -47.5t173 -145t89.5 -228t26.5 -315.5q0 -190 -26 -319.5t-89.5 -223t-172.5 -136.5t-273 -43q-131 0 -227 30t-160 86.5t-102 147t-54 200.5t-16 258zM279 702q0 -123 10 -210t35.5 -161.5 t70 -118.5t114 -68.5t167.5 -24.5q82 0 144 15t106 48t72.5 78.5t45 114t23 145.5t6.5 182q0 121 -10 209.5t-36.5 165t-71 123t-114 72.5t-165.5 26q-97 0 -166.5 -26t-114 -72.5t-70.5 -122.5t-36 -164.5t-10 -210.5z" />
|
||||
<glyph unicode="P" horiz-adv-x="1214" d="M174 0v1417h518q231 0 342 -112.5t111 -343.5q0 -236 -112.5 -360t-340.5 -124h-360v-477h-158zM332 616h358q293 0 293 345q0 164 -69.5 240.5t-223.5 76.5h-358v-662z" />
|
||||
<glyph unicode="Q" horiz-adv-x="1351" d="M117 702q0 146 16 256.5t55 203.5t102 152t159.5 91.5t226.5 32.5q162 0 272 -47.5t173 -145t89.5 -228t26.5 -315.5q0 -261 -53.5 -417.5t-182.5 -231.5l175 -280l-148 -70l-180 295q-68 -18 -172 -18q-131 0 -227 30t-160 86.5t-102 147t-54 200.5t-16 258zM279 702 q0 -123 10 -210.5t35.5 -162t70 -118.5t114 -68t167.5 -24q99 0 168 23t114 66t70.5 116.5t35 162t9.5 215.5q0 121 -10 209.5t-36.5 165t-71 123t-114 72.5t-165.5 26q-97 0 -166.5 -26t-114 -72.5t-70.5 -122.5t-36 -164.5t-10 -210.5z" />
|
||||
<glyph unicode="R" horiz-adv-x="1261" d="M174 0v1417h524q226 0 339.5 -104.5t113.5 -325.5q0 -329 -260 -412l272 -575h-174l-256 543h-401v-543h-158zM332 682h368q289 0 289 305q0 147 -71.5 219t-219.5 72h-366v-596z" />
|
||||
<glyph unicode="S" horiz-adv-x="1110" d="M98 1059q0 381 457 381q75 0 182 -10t177 -20l69 -11l-14 -133q-285 34 -404 34q-307 0 -307 -231q0 -46 7.5 -80t28 -60t43.5 -43t68 -33.5t86 -27t113 -26.5q114 -25 184.5 -51.5t124.5 -69.5t76.5 -105.5t22.5 -154.5q0 -436 -453 -436q-75 0 -187 11t-186 23l-75 11 l16 131q279 -37 424 -37q152 0 227.5 69.5t75.5 215.5q0 116 -67 165t-248 84q-79 17 -135 33t-109 39.5t-87 52t-60.5 68.5t-38 92t-11.5 119z" />
|
||||
<glyph unicode="T" horiz-adv-x="1077" d="M27 1276v141h1024v-141h-433v-1276h-155v1276h-436z" />
|
||||
<glyph unicode="U" horiz-adv-x="1318" d="M164 430v987h158v-991q0 -161 84.5 -234t246.5 -73q171 0 258.5 73t87.5 234v991h156v-987q0 -237 -126 -343.5t-376 -106.5q-242 0 -365.5 106.5t-123.5 343.5z" />
|
||||
<glyph unicode="V" horiz-adv-x="1191" d="M49 1417h164l326 -1278h114l326 1278h164l-371 -1417h-352z" />
|
||||
<glyph unicode="W" horiz-adv-x="1814" d="M61 1417h164l242 -1278h59l289 1266h184l289 -1266h60l241 1278h162l-287 -1417h-288l-269 1210l-268 -1210h-289z" />
|
||||
<glyph unicode="X" horiz-adv-x="1142" d="M39 0l438 694l-438 723h178l358 -606l361 606h170l-436 -719l436 -698h-178l-357 588l-362 -588h-170z" />
|
||||
<glyph unicode="Y" horiz-adv-x="1101" d="M20 1417h179l352 -663l352 663h178l-450 -821v-596h-158v596z" />
|
||||
<glyph unicode="Z" horiz-adv-x="1097" d="M88 -2v182l739 1053v45h-739v139h922v-184l-742 -1053v-41h742v-141h-922z" />
|
||||
<glyph unicode="[" horiz-adv-x="673" d="M162 -252v1786h430v-137h-275v-1512h275v-137h-430z" />
|
||||
<glyph unicode="\" horiz-adv-x="892" d="M61 1389l138 59l630 -1419l-137 -58z" />
|
||||
<glyph unicode="]" horiz-adv-x="673" d="M82 -115h274v1512h-274v137h430v-1786h-430v137z" />
|
||||
<glyph unicode="^" d="M119 653l379 699h137l391 -699h-164l-293 547l-286 -547h-164z" />
|
||||
<glyph unicode="_" horiz-adv-x="1294" d="M209 -188h876v-136h-876v136z" />
|
||||
<glyph unicode="`" horiz-adv-x="483" d="M-2 1384l53 132l443 -201l-43 -105z" />
|
||||
<glyph unicode="a" horiz-adv-x="1026" d="M82 293q0 145 76 216.5t237 86.5l322 31v88q0 105 -45 149.5t-140 44.5q-64 0 -160.5 -6.5t-161.5 -12.5l-65 -7l-6 116q226 45 402 45q172 0 250.5 -80t78.5 -249v-525q5 -76 119 -90l-6 -120q-85 0 -142.5 18.5t-101.5 62.5q-21 -9 -56.5 -22.5t-132.5 -36t-179 -22.5 q-140 0 -214.5 79.5t-74.5 233.5zM240 297q0 -91 39 -139.5t116 -48.5q68 0 148.5 15.5t126.5 31.5l47 16v338l-303 -29q-92 -9 -133 -53.5t-41 -130.5z" />
|
||||
<glyph unicode="b" horiz-adv-x="1077" d="M147 2v1468h152v-497q18 8 47.5 20t109.5 31.5t144 19.5q207 0 290 -118t83 -398q0 -157 -23 -258.5t-79.5 -168t-148 -94t-233.5 -27.5q-55 0 -140.5 5.5t-143.5 10.5zM299 127q133 -10 188 -10q84 0 142 16t95.5 45.5t57.5 82t27.5 114t7.5 153.5q0 204 -50.5 291.5 t-182.5 87.5q-63 0 -134 -14.5t-111 -29.5l-40 -15v-721z" />
|
||||
<glyph unicode="c" horiz-adv-x="892" d="M104 530q0 278 98.5 396t327.5 118q42 0 111.5 -7.5t118.5 -14.5l49 -8l-6 -125q-164 18 -242 18q-89 0 -146.5 -19.5t-91.5 -66.5t-47.5 -115.5t-13.5 -175.5q0 -96 7 -160t25.5 -115.5t53 -80t86.5 -43t129 -14.5q35 0 95.5 4.5t103.5 8.5l43 5l6 -127 q-191 -28 -285 -28q-123 0 -203.5 29t-129.5 96.5t-69 168.5t-20 256z" />
|
||||
<glyph unicode="d" horiz-adv-x="1083" d="M102 504q0 276 100 408t328 132q118 0 252 -26v452h152v-1470h-152v70q-18 -10 -48 -25t-112.5 -40t-150.5 -25q-65 0 -116 11.5t-100 46t-81.5 91t-52 151.5t-19.5 224zM260 504q0 -120 18 -200t52 -119t71 -53.5t88 -14.5q64 0 137.5 19t114.5 38l41 19v694 q-132 24 -243 24q-155 0 -217 -99t-62 -308z" />
|
||||
<glyph unicode="e" horiz-adv-x="1034" d="M102 506q0 538 428 538q207 0 309.5 -115.5t102.5 -363.5l-8 -116h-676q0 -171 61 -252.5t207 -81.5q68 0 162.5 4.5t154.5 8.5l60 5l4 -121q-233 -32 -399 -32q-222 0 -314 128t-92 398zM256 571h532q0 188 -60.5 266t-197.5 78q-135 0 -204 -81.5t-70 -262.5z" />
|
||||
<glyph unicode="f" horiz-adv-x="677" d="M61 891v133h129v92q0 111 14.5 183t49 115t85 60t128.5 17q31 0 83 -3.5t88 -7.5l36 -3l-2 -127q-115 4 -176 4q-87 0 -119.5 -49.5t-32.5 -190.5v-90h297v-133h-297v-891h-154v891h-129z" />
|
||||
<glyph unicode="g" horiz-adv-x="1052" d="M102 -172q0 83 36.5 135t125.5 119q-57 39 -57 141q0 17 17 57.5t34 72.5l18 32q-161 73 -161 309q0 181 101.5 265.5t281.5 84.5q45 0 98.5 -6.5t83.5 -13.5l31 -6l303 8v-131l-195 4q68 -68 68 -205q0 -193 -95 -269.5t-300 -76.5q-55 0 -101 8q-37 -89 -37 -116 q0 -45 15 -62.5t64 -25t169 -7.5q114 0 185.5 -12.5t120.5 -46.5t69 -92t20 -150q0 -169 -115.5 -247t-338.5 -78q-246 0 -343.5 66.5t-97.5 242.5zM254 -160q0 -108 60.5 -150t230.5 -42q155 0 226 44.5t71 145.5q0 47 -9 78t-25.5 50t-49.5 28.5t-69.5 12.5t-98.5 3 l-221 10q-67 -49 -91 -85.5t-24 -94.5zM268 694q0 -120 54.5 -171.5t175.5 -51.5q129 0 182 50.5t53 172.5t-53.5 174t-181.5 52q-121 0 -175.5 -52.5t-54.5 -173.5z" />
|
||||
<glyph unicode="h" horiz-adv-x="1099" d="M147 0v1470h154v-503q18 9 49.5 21.5t114.5 34t151 21.5q85 0 144 -18t99 -53.5t62.5 -97.5t32 -141t9.5 -193v-541h-154v537q0 87 -5 143t-18 103t-38 72t-63 38.5t-95 13.5q-64 0 -136.5 -15.5t-112.5 -30.5l-40 -15v-846h-154z" />
|
||||
<glyph unicode="i" horiz-adv-x="448" d="M147 0v1024h154v-1024h-154zM147 1255v179h154v-179h-154z" />
|
||||
<glyph unicode="j" horiz-adv-x="448" d="M-100 -338q56 33 90.5 55.5t65.5 49t47 49.5t28 55.5t15.5 68.5t3.5 87v997h151v-999q0 -129 -29.5 -208.5t-99.5 -140.5t-211 -133zM150 1255v179h151v-179h-151z" />
|
||||
<glyph unicode="k" horiz-adv-x="980" d="M147 0v1470h154v-868l160 8l293 414h174l-334 -471l348 -553h-174l-305 475l-162 -6v-469h-154z" />
|
||||
<glyph unicode="l" horiz-adv-x="473" d="M160 0v1470h153v-1470h-153z" />
|
||||
<glyph unicode="m" horiz-adv-x="1712" d="M147 0v1024h152v-72q17 10 46.5 25.5t109 41t143.5 25.5q103 0 164.5 -24t101.5 -80q7 4 20.5 11t55 25t82.5 32t98.5 25t108.5 11q106 0 172 -25.5t105.5 -88t54 -153.5t14.5 -236v-541h-154v537q0 109 -7.5 173t-31 112t-65.5 66.5t-111 18.5q-68 0 -140 -19t-110 -38 l-38 -19q26 -68 26 -299v-532h-153v528q0 91 -4.5 149t-17.5 106t-37.5 73t-62.5 38t-94 13q-64 0 -132.5 -19t-104.5 -38l-37 -19v-831h-154z" />
|
||||
<glyph unicode="n" horiz-adv-x="1099" d="M147 0v1024h152v-72q19 10 50.5 25.5t115 41t151.5 25.5q86 0 145 -18t99 -53.5t62.5 -97.5t31.5 -140.5t9 -193.5v-541h-152v537q0 87 -5 143t-18 103t-38 72t-64 38.5t-96 13.5q-65 0 -137.5 -19t-112.5 -38l-39 -19v-831h-154z" />
|
||||
<glyph unicode="o" horiz-adv-x="1081" d="M102 524q0 270 100.5 395t338.5 125q239 0 338.5 -124.5t99.5 -395.5q0 -146 -20 -243.5t-69.5 -167.5t-134.5 -101.5t-214 -31.5q-128 0 -213.5 31.5t-135 101.5t-70 168t-20.5 243zM260 524q0 -94 6 -155.5t23 -114t48.5 -81.5t81 -44.5t122.5 -15.5q61 0 105.5 9.5 t75.5 32.5t50.5 53.5t30 80t14.5 103.5t4 132q0 217 -59 302t-221 85q-161 0 -221 -85t-60 -302z" />
|
||||
<glyph unicode="p" horiz-adv-x="1079" d="M147 -455v1479h152v-74q6 4 17.5 10t46.5 22.5t69.5 29t82.5 22.5t91 10q194 0 282.5 -124.5t88.5 -395.5q0 -297 -104 -420.5t-343 -123.5q-123 0 -229 22v-457h-154zM301 135q148 -22 221 -22q167 0 233 93.5t66 317.5q0 204 -60 293.5t-177 89.5q-62 0 -132.5 -20.5 t-110.5 -40.5l-40 -21v-690z" />
|
||||
<glyph unicode="q" horiz-adv-x="1077" d="M102 496q0 303 107.5 425.5t376.5 122.5q47 0 132.5 -5t147.5 -10l62 -5v-1479h-152v502q-16 -8 -44 -19t-104.5 -29.5t-140.5 -18.5q-208 0 -296.5 121t-88.5 395zM258 496q0 -196 57 -287.5t189 -91.5q63 0 131 14.5t105 29.5l36 15v723q-127 12 -188 12 q-100 0 -164.5 -24t-101 -78t-50.5 -127.5t-14 -185.5z" />
|
||||
<glyph unicode="r" horiz-adv-x="708" d="M147 0v1024h152v-139q20 14 55 35.5t133.5 65.5t186.5 61v-156q-86 -17 -179 -52t-143 -61l-51 -26v-752h-154z" />
|
||||
<glyph unicode="s" horiz-adv-x="952" d="M92 745q0 81 31 141t84.5 93.5t116.5 49t137 15.5q68 0 160.5 -9.5t150.5 -18.5l59 -10l-4 -132q-227 33 -358 33q-105 0 -164 -35t-59 -120q0 -71 51 -101.5t215 -58.5q103 -17 164.5 -36t106.5 -52t63 -81.5t18 -123.5q0 -172 -101 -245.5t-296 -73.5q-58 0 -148.5 9.5 t-151.5 18.5l-61 10l9 134q234 -35 338 -35q133 0 195.5 38t62.5 138q0 78 -53.5 109.5t-223.5 58.5q-63 10 -106 19.5t-85 24.5t-67.5 35t-46 48.5t-29 67t-8.5 89.5z" />
|
||||
<glyph unicode="t" horiz-adv-x="718" d="M55 891v133h146v313h151v-313h326v-133h-326v-490q0 -73 3 -116t11 -80t24.5 -54.5t42.5 -26.5t67 -9q25 0 70.5 3t78.5 6l33 3l10 -127q-137 -23 -209 -23q-109 0 -168 32.5t-86.5 113t-27.5 229.5v539h-146z" />
|
||||
<glyph unicode="u" horiz-adv-x="1087" d="M137 489v535h154v-532q0 -76 2.5 -126.5t11 -96t23 -71.5t38.5 -46t58 -27.5t82 -7.5q68 0 138 19t106 38l36 19v831h154v-1024h-154v72q-17 -10 -46.5 -25.5t-109.5 -41t-147 -25.5q-87 0 -146.5 17.5t-99 52.5t-61.5 98t-30.5 142.5t-8.5 198.5z" />
|
||||
<glyph unicode="v" horiz-adv-x="985" d="M51 1024h164l240 -891h75l248 891h158l-289 -1024h-307z" />
|
||||
<glyph unicode="w" horiz-adv-x="1560" d="M63 1024h154l207 -891h33l243 871h160l244 -871h35l204 891h154l-244 -1024h-256l-217 801l-217 -801h-256z" />
|
||||
<glyph unicode="x" horiz-adv-x="925" d="M45 0l322 512l-322 512h168l250 -401l250 401h168l-326 -508l324 -516h-168l-248 399l-250 -399h-168z" />
|
||||
<glyph unicode="y" horiz-adv-x="989" d="M51 1024h154l256 -891h67l258 891h154l-426 -1479h-154l134 455h-152z" />
|
||||
<glyph unicode="z" horiz-adv-x="931" d="M86 0v137l573 750h-573v137h760v-137l-574 -750h574v-137h-760z" />
|
||||
<glyph unicode="{" horiz-adv-x="720" d="M49 575v125q117 27 168 81t51 143q0 26 -7 124t-7 138q0 189 87 271t296 89l2 -133q-134 -7 -185 -64t-51 -171q0 -35 7.5 -129.5t7.5 -122.5q0 -131 -44 -190.5t-171 -96.5q125 -36 170 -98.5t45 -192.5q-1 -31 -8 -114t-7 -123q0 -115 50.5 -174t185.5 -66l-4 -133 q-208 7 -294.5 90t-86.5 268q0 44 7 136t7 114q0 88 -51.5 142.5t-167.5 86.5z" />
|
||||
<glyph unicode="|" horiz-adv-x="471" d="M160 -455v1925h151v-1925h-151z" />
|
||||
<glyph unicode="}" horiz-adv-x="720" d="M82 -129q134 7 184.5 66t50.5 174q0 40 -6.5 123t-7.5 114q0 130 45 192.5t170 98.5q-127 37 -171 96.5t-44 190.5q0 28 7 122.5t7 129.5q0 115 -50.5 171.5t-184.5 63.5l2 133q209 -7 296 -89t87 -271q0 -40 -7 -138t-7 -124q0 -89 51 -143t168 -81v-125 q-116 -32 -167.5 -86.5t-51.5 -142.5q0 -22 7 -114t7 -136q0 -185 -86.5 -268t-294.5 -90z" />
|
||||
<glyph unicode="~" d="M137 557q5 4 14.5 11.5t37 26.5t55 33t64 26t67.5 12q49 0 131.5 -31t160.5 -62.5t117 -31.5q34 0 86 23.5t88 47.5l35 23l21 -125q-5 -5 -14 -12t-35.5 -26.5t-53 -34t-62.5 -26.5t-67 -12q-49 0 -133 31.5t-162.5 63.5t-113.5 32q-36 0 -89.5 -24t-88.5 -48l-35 -24z " />
|
||||
<glyph unicode="¡" horiz-adv-x="466" d="M147 795v229h168v-229h-168zM152 -393l10 950h141l10 -950h-161z" />
|
||||
<glyph unicode="¢" d="M207 508q0 224 89 329.5t273 114.5v242h133v-248q39 -1 91 -7t84 -11l32 -6l-6 -123q-162 14 -264 14q-151 0 -211.5 -69t-60.5 -236q0 -169 60 -233t224 -64q45 0 108.5 3.5t104.5 7.5l41 3l6 -125q-123 -18 -209 -22v-244h-133v240q-190 9 -276 105.5t-86 328.5z" />
|
||||
<glyph unicode="£" d="M164 0v135h174v586h-137v133h137v113q0 124 17 203.5t56 124t92.5 61t137.5 16.5q48 0 116 -9t112 -17l44 -9l-2 -125q-164 23 -256 23q-97 0 -132.5 -58t-35.5 -221v-102h351v-133h-351v-586h316l158 33l26 -131l-168 -37h-655z" />
|
||||
<glyph unicode="¤" d="M119 170l143 143q-59 91 -59 203q0 109 59 203l-143 143l108 109l144 -146q91 62 202 62q109 0 203 -62l144 146l108 -109l-145 -143q61 -92 61 -203q0 -114 -61 -203l145 -143l-108 -109l-144 146q-94 -62 -203 -62q-111 0 -202 62l-144 -146zM338 516q0 -97 69 -166 t166 -69t166.5 69t69.5 166t-69.5 166.5t-166.5 69.5t-166 -69.5t-69 -166.5z" />
|
||||
<glyph unicode="¥" d="M47 1352h176l352 -553l349 553h176l-350 -574h278v-133h-356l-17 -39v-139h375v-133h-375v-334h-157v334h-379v133h379v139l-17 39h-364v133h286z" />
|
||||
<glyph unicode="¦" horiz-adv-x="479" d="M164 319h151v-774h-151v774zM164 705v765h151v-765h-151z" />
|
||||
<glyph unicode="§" horiz-adv-x="1021" d="M106 522q0 80 43.5 156.5t75.5 101.5q-46 33 -68 86.5t-22 141.5q0 163 101 244t292 81q60 0 144 -8.5t138 -17.5l54 -9l-8 -129q-223 31 -321 31q-131 0 -190.5 -45t-59.5 -143q0 -35 7 -61.5t25 -46.5t38.5 -33.5t58 -25.5t72.5 -19.5t92 -18.5q91 -18 146 -36.5 t100 -51.5t64 -83.5t19 -125.5q0 -76 -30.5 -151.5t-59.5 -116.5q39 -34 57.5 -80t18.5 -125q0 -344 -391 -344q-58 0 -148 8.5t-150 17.5l-61 9l15 129q223 -31 336 -31q251 0 251 203q0 20 -2 36.5t-9.5 30.5t-13 24.5t-20.5 21t-24.5 17t-33 14t-37 11.5t-46 11t-50 10.5 t-58.5 11.5q-92 17 -151.5 38t-106 55t-67 86t-20.5 126zM260 545q0 -90 52 -129t180 -62q146 -27 208 -55q6 7 17.5 34t23 73t11.5 86q0 48 -13.5 79.5t-46.5 52t-71 32t-105 24.5q-127 21 -188 45l-4 -7q-5 -7 -9 -14t-11 -19t-12.5 -23.5t-11.5 -27t-10.5 -29.5t-7 -30 t-2.5 -30z" />
|
||||
<glyph unicode="¨" horiz-adv-x="483" d="M-25 1272v184h148v-184h-148zM385 1272v184h150v-184h-150z" />
|
||||
<glyph unicode="©" horiz-adv-x="1320" d="M121 889q0 156 69.5 284t193.5 201.5t278 73.5q155 0 279 -75.5t191.5 -203t67.5 -280.5q0 -156 -68 -283t-192.5 -201.5t-280.5 -74.5q-152 0 -275.5 74.5t-193 202.5t-69.5 282zM211 889q0 -128 57.5 -235.5t161 -170.5t229.5 -63q193 0 322 136t129 333 q0 128 -58.5 236t-162.5 171.5t-230 63.5q-191 0 -319.5 -137.5t-128.5 -333.5zM428 891q0 166 54 242.5t188 76.5q38 0 77.5 -5t59.5 -10l20 -5l-8 -109q-77 13 -143 13q-77 0 -100 -46t-23 -157q0 -109 26 -159t97 -50q26 0 62 3.5t58 6.5l23 4l8 -106q-75 -25 -159 -25 q-132 0 -186 77t-54 249z" />
|
||||
<glyph unicode="ª" horiz-adv-x="790" d="M111 920q0 84 48 127t148 49l180 12v45q0 45 -24 63.5t-76 18.5q-35 0 -93.5 -3.5t-99.5 -7.5l-42 -3l-5 98q142 31 246 31q116 0 170.5 -45t54.5 -158v-281q18 -24 62 -35l-4 -100q-79 0 -111.5 12t-58.5 41q-13 -6 -34.5 -15t-79.5 -23.5t-105 -14.5q-83 0 -129.5 51 t-46.5 138zM246 922q0 -80 73 -80q32 0 74 8.5t68 17.5l26 9v137l-157 -10q-45 -3 -64.5 -22t-19.5 -60z" />
|
||||
<glyph unicode="«" horiz-adv-x="1103" d="M92 446v123l387 293v-157l-254 -193l254 -215v-160zM578 446v123l389 293v-157l-256 -193l256 -215v-160z" />
|
||||
<glyph unicode="¬" d="M133 561v139h877v-460h-144v321h-733z" />
|
||||
<glyph unicode="­" horiz-adv-x="897" d="M139 492v143h621v-143h-621z" />
|
||||
<glyph unicode="®" horiz-adv-x="1320" d="M121 889q0 156 69 284t192.5 201.5t276.5 73.5q156 0 280.5 -75.5t192.5 -203t68 -280.5q0 -156 -68 -283t-192.5 -201.5t-280.5 -74.5q-152 0 -275.5 74.5t-193 202.5t-69.5 282zM211 889q0 -195 129 -332t319 -137q193 0 322 136t129 333q0 128 -58.5 236t-162.5 171.5 t-230 63.5q-191 0 -319.5 -137.5t-128.5 -333.5zM436 578v620h226q116 0 174.5 -44.5t58.5 -149.5q0 -77 -23.5 -121t-80.5 -70l112 -235h-125l-102 219h-121v-219h-119zM553 893h121q56 0 80 24.5t24 79.5t-31 80t-96 25h-98v-209z" />
|
||||
<glyph unicode="¯" horiz-adv-x="483" d="M-29 1278v121h564v-121h-564z" />
|
||||
<glyph unicode="°" d="M283 1149q0 129 80.5 209t209.5 80t210 -80t81 -209q0 -130 -80.5 -209.5t-210.5 -79.5q-129 0 -209.5 79.5t-80.5 209.5zM387 1149q0 -86 50.5 -138.5t135.5 -52.5t138 52.5t53 138.5q0 85 -53 137.5t-138 52.5q-84 0 -135 -52.5t-51 -137.5z" />
|
||||
<glyph unicode="±" d="M113 78v139h921v-139h-921zM113 600v139h387v258h143v-258h391v-139h-391v-260h-143v260h-387z" />
|
||||
<glyph unicode="²" horiz-adv-x="573" d="M61 979v113l181 178q54 52 79 90t25 80q0 76 -100 76q-26 0 -69.5 -5t-74.5 -9l-30 -5l-4 117q121 24 211 24q105 0 153.5 -45t48.5 -141q0 -68 -28.5 -118t-96.5 -111l-129 -125h262v-119h-428z" />
|
||||
<glyph unicode="³" horiz-adv-x="573" d="M61 979l9 115q116 -17 204 -17q52 0 77.5 23t25.5 63q0 88 -96 88h-134v109h134q29 0 53 26.5t24 63.5q0 36 -21.5 53t-70.5 17q-39 0 -86 -4t-74 -8l-28 -3l-8 113q121 20 209 20q109 0 162 -41.5t53 -130.5q0 -35 -10 -63.5t-25.5 -46t-25.5 -26t-19 -13.5 q50 -16 73 -50.5t23 -109.5q0 -100 -56 -149.5t-161 -49.5q-44 0 -102 5t-94 11z" />
|
||||
<glyph unicode="´" horiz-adv-x="548" d="M53 1315l443 201l53 -132l-453 -174z" />
|
||||
<glyph unicode="µ" d="M172 -455v1479h154v-532q0 -76 2.5 -126.5t11 -96t23 -71.5t38.5 -46t58 -27.5t82 -7.5q68 0 138 19t106 38l36 19v831h154v-1024h-154v72q-17 -10 -46.5 -25.5t-109.5 -41t-147 -25.5q-123 0 -192 34v-469h-154z" />
|
||||
<glyph unicode="¶" horiz-adv-x="1214" d="M72 1038q0 166 109 272.5t274 106.5h673v-133h-147v-1284h-139v1284h-238v-1284h-137v664h-14q-166 0 -273.5 104t-107.5 270z" />
|
||||
<glyph unicode="·" horiz-adv-x="444" d="M139 469v233h168v-233h-168z" />
|
||||
<glyph unicode="¸" horiz-adv-x="538" d="M86 -430l6 98q80 -6 135 -6q90 0 90 78q0 70 -90 70h-86v192h84v-102q121 0 174.5 -33t53.5 -127q0 -93 -50.5 -138.5t-140.5 -45.5q-40 0 -84 3.5t-68 6.5z" />
|
||||
<glyph unicode="¹" horiz-adv-x="573" d="M66 1475l206 143h123v-639h-131v496l-139 -97z" />
|
||||
<glyph unicode="º" horiz-adv-x="778" d="M109 1044q0 158 70.5 232t211.5 74q140 0 208.5 -74t68.5 -232q0 -313 -277 -313q-282 0 -282 313zM250 1044q0 -100 32 -144t109 -44q75 0 105 44t30 144q0 99 -29.5 140t-105.5 41q-78 0 -109.5 -41t-31.5 -140z" />
|
||||
<glyph unicode="»" horiz-adv-x="1103" d="M137 137v160l256 215l-256 193v157l387 -293v-123zM623 137v160l256 215l-256 193v157l389 -293v-123z" />
|
||||
<glyph unicode="¼" horiz-adv-x="1093" d="M72 57l802 1295l82 -54l-804 -1292zM76 1475l207 143h123v-639h-132v496l-139 -97zM555 4l141 430h144l-150 -422h154l10 183h119v-183h55v-118h-55v-99h-129v99h-289v110z" />
|
||||
<glyph unicode="½" horiz-adv-x="1083" d="M68 57l802 1295l82 -54l-805 -1292zM84 1475l207 143h123v-639h-131v496l-140 -97zM567 -92l181 178q54 52 79 90t25 80q0 76 -100 76q-26 0 -69.5 -5t-74.5 -9l-30 -5l-5 117q121 25 211 25q105 0 154 -45.5t49 -141.5q0 -68 -28.5 -118t-96.5 -111l-129 -125h262v-119 h-428v113z" />
|
||||
<glyph unicode="¾" horiz-adv-x="1126" d="M100 979l9 115q116 -17 204 -17q52 0 77.5 23t25.5 63q0 88 -97 88h-133v109h133q29 0 53.5 26.5t24.5 63.5q0 36 -21.5 53t-70.5 17q-39 0 -86 -4t-75 -8l-27 -3l-8 113q120 20 208 20q109 0 162 -41.5t53 -130.5q0 -45 -18.5 -81t-32.5 -48t-28 -20q50 -16 73 -50.5 t23 -109.5q0 -100 -56 -149.5t-161 -49.5q-44 0 -102 5t-94 11zM106 57l803 1295l82 -54l-805 -1292zM590 4l141 430h143l-149 -422h154l10 183h119v-183h55v-118h-55v-99h-129v99h-289v110z" />
|
||||
<glyph unicode="¿" horiz-adv-x="903" d="M78 -84q0 133 35.5 202.5t154.5 168.5q100 82 141.5 136.5t41.5 119.5v71h129q26 -55 26 -125q0 -69 -47 -130t-143 -142q-113 -98 -148 -151.5t-35 -137.5q0 -107 66 -153.5t207 -46.5q51 0 130.5 11.5t133.5 23.5l53 12l11 -125q-207 -62 -342 -62q-211 0 -312.5 76.5 t-101.5 251.5zM434 795v229h168v-229h-168z" />
|
||||
<glyph unicode="À" horiz-adv-x="1220" d="M49 0l389 1417h344l389 -1417h-155l-103 365h-606l-102 -365h-156zM334 1772l53 135l442 -205l-47 -109zM342 506h537l-215 776h-107z" />
|
||||
<glyph unicode="Á" horiz-adv-x="1220" d="M49 0l389 1417h344l389 -1417h-155l-103 365h-606l-102 -365h-156zM342 506h537l-215 776h-107zM381 1702l442 205l54 -135l-449 -179z" />
|
||||
<glyph unicode="Â" horiz-adv-x="1220" d="M49 0l389 1417h344l389 -1417h-155l-103 365h-606l-102 -365h-156zM266 1620l275 276h133l274 -276h-172l-168 164l-170 -164h-172zM342 506h537l-215 776h-107z" />
|
||||
<glyph unicode="Ã" horiz-adv-x="1220" d="M49 0l389 1417h344l389 -1417h-155l-103 365h-606l-102 -365h-156zM256 1772q4 5 11 13t28.5 28t42.5 35.5t48.5 28.5t51.5 13q44 0 114 -27.5t132 -55t86 -27.5q19 0 54 23.5t60 46.5l25 24l37 -115q-4 -5 -10.5 -12.5t-26.5 -27t-39.5 -34.5t-46 -27.5t-49.5 -12.5 q-52 0 -178.5 55t-155.5 55q-22 0 -59 -24.5t-63 -48.5l-27 -25zM342 506h537l-215 776h-107z" />
|
||||
<glyph unicode="Ä" horiz-adv-x="1220" d="M49 0l389 1417h344l389 -1417h-155l-103 365h-606l-102 -365h-156zM326 1655v184h149v-184h-149zM342 506h537l-215 776h-107zM743 1655v184h148v-184h-148z" />
|
||||
<glyph unicode="Å" horiz-adv-x="1220" d="M49 0l377 1370q-61 58 -61 154q0 100 68 157.5t175 57.5q106 0 174 -57.5t68 -157.5q0 -90 -57 -150l378 -1374h-155l-103 365h-606l-102 -365h-156zM342 506h537l-215 776h-107zM481 1524q0 -43 23 -71.5t65 -35.5h76q42 8 66 36.5t24 70.5q0 52 -34 80t-93 28 q-60 0 -93.5 -28t-33.5 -80z" />
|
||||
<glyph unicode="Æ" horiz-adv-x="1794" d="M41 0l459 1425h1198v-149h-707v-471h584v-150h-584v-505h707v-150h-862v358h-514l-119 -358h-162zM365 510h471l2 766h-224z" />
|
||||
<glyph unicode="Ç" horiz-adv-x="1114" d="M121 705q0 107 6.5 191.5t22 163t41.5 135.5t65.5 104.5t93.5 77t126 45.5t163 16q166 0 391 -45l-6 -133q-207 36 -369 36q-79 0 -137 -15t-99 -49t-67 -79.5t-41 -116t-20.5 -147.5t-5.5 -184q0 -90 3.5 -157t13.5 -131t28 -108t46 -82t67.5 -60t93 -34t122.5 -12 q164 0 365 37l6 -135q-193 -40 -371 -43v-80q121 0 174.5 -33t53.5 -127q0 -93 -50.5 -138.5t-140.5 -45.5q-40 0 -84 3.5t-68 6.5l-24 4l6 98q81 -6 136 -6q90 0 90 78q0 70 -90 70h-87v172q-110 7 -189.5 43t-130.5 94t-81 148.5t-41.5 194t-11.5 243.5z" />
|
||||
<glyph unicode="È" horiz-adv-x="1132" d="M174 0v1417h862v-139h-704v-490h581v-137h-581v-512h704v-139h-862zM346 1772l53 135l443 -205l-47 -109z" />
|
||||
<glyph unicode="É" horiz-adv-x="1132" d="M174 0v1417h862v-139h-704v-490h581v-137h-581v-512h704v-139h-862zM360 1702l443 205l53 -135l-448 -179z" />
|
||||
<glyph unicode="Ê" horiz-adv-x="1132" d="M174 0v1417h862v-139h-704v-490h581v-137h-581v-512h704v-139h-862zM260 1620l275 276h133l274 -276h-172l-168 164l-170 -164h-172z" />
|
||||
<glyph unicode="Ë" horiz-adv-x="1132" d="M174 0v1417h862v-139h-704v-490h581v-137h-581v-512h704v-139h-862zM322 1655v184h149v-184h-149zM739 1655v184h148v-184h-148z" />
|
||||
<glyph unicode="Ì" horiz-adv-x="503" d="M-41 1772l53 135l443 -205l-47 -109zM174 0v1417h158v-1417h-158z" />
|
||||
<glyph unicode="Í" horiz-adv-x="503" d="M27 1702l442 205l53 -135l-448 -179zM174 0v1417h158v-1417h-158z" />
|
||||
<glyph unicode="Î" horiz-adv-x="503" d="M-96 1620l274 276h133l275 -276h-172l-168 164l-170 -164h-172zM174 0v1417h158v-1417h-158z" />
|
||||
<glyph unicode="Ï" horiz-adv-x="503" d="M-31 1655v184h150v-184h-150zM174 0v1417h158v-1417h-158zM387 1655v184h148v-184h-148z" />
|
||||
<glyph unicode="Ð" horiz-adv-x="1325" d="M41 637v149h139v639h506q120 0 211.5 -33.5t150.5 -92.5t95.5 -147.5t51.5 -189.5t15 -227q0 -129 -14.5 -234t-50.5 -200.5t-94.5 -160t-150.5 -102.5t-214 -38h-506v637h-139zM336 150h350q361 0 361 585q0 95 -9 171.5t-33.5 147.5t-64.5 118.5t-104 75.5t-150 28 h-350v-490h323v-149h-323v-487z" />
|
||||
<glyph unicode="Ñ" horiz-adv-x="1384" d="M174 0v1417h295l543 -1278h43v1278h155v-1417h-288l-551 1278h-39v-1278h-158zM342 1772q4 5 11 13t28.5 28t42.5 35.5t48.5 28.5t51.5 13q44 0 114 -27.5t132 -55t86 -27.5q19 0 54 23.5t60 46.5l25 24l37 -115q-4 -5 -10.5 -12.5t-26.5 -27t-39.5 -34.5t-46 -27.5 t-49.5 -12.5q-52 0 -178.5 55t-155.5 55q-22 0 -59 -24.5t-63 -48.5l-27 -25z" />
|
||||
<glyph unicode="Ò" horiz-adv-x="1351" d="M117 702q0 146 16 256.5t55 203.5t102 152t159.5 91.5t226.5 32.5q162 0 272 -47.5t173 -145t89.5 -228t26.5 -315.5q0 -190 -26 -319.5t-89.5 -223t-172.5 -136.5t-273 -43q-131 0 -227 30t-160 86.5t-102 147t-54 200.5t-16 258zM279 702q0 -123 10 -210t35.5 -161.5 t70 -118.5t114 -68.5t167.5 -24.5q82 0 144 15t106 48t72.5 78.5t45 114t23 145.5t6.5 182q0 121 -10 209.5t-36.5 165t-71 123t-114 72.5t-165.5 26q-97 0 -166.5 -26t-114 -72.5t-70.5 -122.5t-36 -164.5t-10 -210.5zM412 1772l53 135l442 -205l-47 -109z" />
|
||||
<glyph unicode="Ó" horiz-adv-x="1351" d="M117 702q0 146 16 256.5t55 203.5t102 152t159.5 91.5t226.5 32.5q162 0 272 -47.5t173 -145t89.5 -228t26.5 -315.5q0 -190 -26 -319.5t-89.5 -223t-172.5 -136.5t-273 -43q-131 0 -227 30t-160 86.5t-102 147t-54 200.5t-16 258zM279 702q0 -123 10 -210t35.5 -161.5 t70 -118.5t114 -68.5t167.5 -24.5q82 0 144 15t106 48t72.5 78.5t45 114t23 145.5t6.5 182q0 121 -10 209.5t-36.5 165t-71 123t-114 72.5t-165.5 26q-97 0 -166.5 -26t-114 -72.5t-70.5 -122.5t-36 -164.5t-10 -210.5zM406 1702l442 205l53 -135l-448 -179z" />
|
||||
<glyph unicode="Ô" horiz-adv-x="1351" d="M117 702q0 146 16 256.5t55 203.5t102 152t159.5 91.5t226.5 32.5q162 0 272 -47.5t173 -145t89.5 -228t26.5 -315.5q0 -190 -26 -319.5t-89.5 -223t-172.5 -136.5t-273 -43q-131 0 -227 30t-160 86.5t-102 147t-54 200.5t-16 258zM279 702q0 -123 10 -210t35.5 -161.5 t70 -118.5t114 -68.5t167.5 -24.5q82 0 144 15t106 48t72.5 78.5t45 114t23 145.5t6.5 182q0 121 -10 209.5t-36.5 165t-71 123t-114 72.5t-165.5 26q-97 0 -166.5 -26t-114 -72.5t-70.5 -122.5t-36 -164.5t-10 -210.5zM336 1620l274 276h133l275 -276h-172l-168 164 l-170 -164h-172z" />
|
||||
<glyph unicode="Õ" horiz-adv-x="1351" d="M117 702q0 146 16 256.5t55 203.5t102 152t159.5 91.5t226.5 32.5q162 0 272 -47.5t173 -145t89.5 -228t26.5 -315.5q0 -190 -26 -319.5t-89.5 -223t-172.5 -136.5t-273 -43q-131 0 -227 30t-160 86.5t-102 147t-54 200.5t-16 258zM279 702q0 -123 10 -210t35.5 -161.5 t70 -118.5t114 -68.5t167.5 -24.5q82 0 144 15t106 48t72.5 78.5t45 114t23 145.5t6.5 182q0 121 -10 209.5t-36.5 165t-71 123t-114 72.5t-165.5 26q-97 0 -166.5 -26t-114 -72.5t-70.5 -122.5t-36 -164.5t-10 -210.5zM326 1772q4 5 11 13t28.5 28t42.5 35.5t48.5 28.5 t51.5 13q44 0 114 -27.5t132 -55t86 -27.5q19 0 54 23.5t60 46.5l25 24l37 -115q-4 -5 -10.5 -12.5t-26.5 -27t-39.5 -34.5t-46 -27.5t-49.5 -12.5q-52 0 -178.5 55t-155.5 55q-22 0 -59.5 -24.5t-64.5 -48.5l-26 -25z" />
|
||||
<glyph unicode="Ö" horiz-adv-x="1351" d="M117 702q0 146 16 256.5t55 203.5t102 152t159.5 91.5t226.5 32.5q162 0 272 -47.5t173 -145t89.5 -228t26.5 -315.5q0 -190 -26 -319.5t-89.5 -223t-172.5 -136.5t-273 -43q-131 0 -227 30t-160 86.5t-102 147t-54 200.5t-16 258zM279 702q0 -123 10 -210t35.5 -161.5 t70 -118.5t114 -68.5t167.5 -24.5q82 0 144 15t106 48t72.5 78.5t45 114t23 145.5t6.5 182q0 121 -10 209.5t-36.5 165t-71 123t-114 72.5t-165.5 26q-97 0 -166.5 -26t-114 -72.5t-70.5 -122.5t-36 -164.5t-10 -210.5zM393 1655v184h150v-184h-150zM811 1655v184h147v-184 h-147z" />
|
||||
<glyph unicode="×" d="M145 184l332 330l-332 328l101 98l327 -332l330 334l98 -98l-333 -330l333 -330l-98 -98l-330 332l-329 -332z" />
|
||||
<glyph unicode="Ø" horiz-adv-x="1351" d="M117 702q0 146 16 256.5t55 203.5t102 152t159.5 91.5t226.5 32.5q154 0 258 -43l115 241l118 -49l-120 -260q102 -86 146 -240.5t44 -384.5q0 -190 -26 -319.5t-89.5 -223t-172.5 -136.5t-273 -43q-145 0 -246 34l-117 -252l-116 54l120 258q-109 81 -154.5 234 t-45.5 394zM279 702q0 -182 23 -298t83 -183l487 1039q-75 38 -196 38q-97 0 -166.5 -26t-114 -72.5t-70.5 -122.5t-36 -164.5t-10 -210.5zM494 147q69 -28 182 -28q82 0 144 15t106 48t72.5 78.5t45 114t23 145.5t6.5 182q0 170 -22 286.5t-76 187.5z" />
|
||||
<glyph unicode="Ù" horiz-adv-x="1318" d="M164 430v987h158v-991q0 -161 84.5 -234t246.5 -73q171 0 258.5 73t87.5 234v991h156v-987q0 -237 -126 -343.5t-376 -106.5q-242 0 -365.5 106.5t-123.5 343.5zM401 1772l54 135l442 -205l-47 -109z" />
|
||||
<glyph unicode="Ú" horiz-adv-x="1318" d="M164 430v987h158v-991q0 -161 84.5 -234t246.5 -73q171 0 258.5 73t87.5 234v991h156v-987q0 -237 -126 -343.5t-376 -106.5q-242 0 -365.5 106.5t-123.5 343.5zM408 1702l442 205l53 -135l-448 -179z" />
|
||||
<glyph unicode="Û" horiz-adv-x="1318" d="M164 430v987h158v-991q0 -161 84.5 -234t246.5 -73q171 0 258.5 73t87.5 234v991h156v-987q0 -237 -126 -343.5t-376 -106.5q-242 0 -365.5 106.5t-123.5 343.5zM317 1620l275 276h133l274 -276h-172l-168 164l-170 -164h-172z" />
|
||||
<glyph unicode="Ü" horiz-adv-x="1318" d="M164 430v987h158v-991q0 -161 84.5 -234t246.5 -73q171 0 258.5 73t87.5 234v991h156v-987q0 -237 -126 -343.5t-376 -106.5q-242 0 -365.5 106.5t-123.5 343.5zM377 1655v184h149v-184h-149zM795 1655v184h147v-184h-147z" />
|
||||
<glyph unicode="Ý" horiz-adv-x="1101" d="M20 1417h179l352 -663l352 663h178l-450 -821v-596h-158v596zM342 1702l442 205l54 -135l-449 -179z" />
|
||||
<glyph unicode="Þ" horiz-adv-x="1226" d="M174 0v1425h158v-229h360q231 0 343 -112.5t112 -344.5q0 -236 -113.5 -363.5t-341.5 -127.5h-360v-248h-158zM332 399h358q151 0 223 89t72 251q0 159 -70 232t-225 73h-358v-645z" />
|
||||
<glyph unicode="ß" horiz-adv-x="1175" d="M147 0v1116q0 207 93 291t309 84q211 0 304 -69t93 -226q0 -108 -39 -166.5t-129 -97.5q-74 -33 -97.5 -52t-23.5 -49q0 -32 34 -58.5t147 -82.5q78 -39 124 -68.5t80.5 -68t48 -83.5t13.5 -108q0 -209 -93.5 -295.5t-318.5 -86.5q-45 0 -112 7.5t-112 14.5l-44 8l6 129 q174 -22 250 -22q148 0 206 54t58 169q0 85 -42.5 129.5t-180.5 110.5q-129 61 -176 110.5t-47 128.5q0 73 37.5 116t119.5 79q77 33 104 71t27 103q0 92 -51.5 129t-185.5 37q-139 0 -193.5 -53t-54.5 -203v-1098h-154z" />
|
||||
<glyph unicode="à" horiz-adv-x="1026" d="M82 293q0 145 76 216.5t237 86.5l322 31v88q0 105 -45 149.5t-140 44.5q-64 0 -160.5 -6.5t-161.5 -12.5l-65 -7l-6 116q226 45 402 45q172 0 250.5 -80t78.5 -249v-525q5 -76 119 -90l-6 -120q-85 0 -142.5 18.5t-101.5 62.5q-21 -9 -56.5 -22.5t-132.5 -36t-179 -22.5 q-140 0 -214.5 79.5t-74.5 233.5zM240 297q0 -91 39 -139.5t116 -48.5q68 0 148.5 15.5t126.5 31.5l47 16v338l-303 -29q-92 -9 -133 -53.5t-41 -130.5zM248 1384l53 132l442 -201l-43 -105z" />
|
||||
<glyph unicode="á" horiz-adv-x="1026" d="M82 293q0 145 76 216.5t237 86.5l322 31v88q0 105 -45 149.5t-140 44.5q-64 0 -160.5 -6.5t-161.5 -12.5l-65 -7l-6 116q226 45 402 45q172 0 250.5 -80t78.5 -249v-525q5 -76 119 -90l-6 -120q-85 0 -142.5 18.5t-101.5 62.5q-21 -9 -56.5 -22.5t-132.5 -36t-179 -22.5 q-140 0 -214.5 79.5t-74.5 233.5zM240 297q0 -91 39 -139.5t116 -48.5q68 0 148.5 15.5t126.5 31.5l47 16v338l-303 -29q-92 -9 -133 -53.5t-41 -130.5zM242 1315l442 201l53 -132l-452 -174z" />
|
||||
<glyph unicode="â" horiz-adv-x="1026" d="M82 293q0 145 76 216.5t237 86.5l322 31v88q0 105 -45 149.5t-140 44.5q-64 0 -160.5 -6.5t-161.5 -12.5l-65 -7l-6 116q226 45 402 45q172 0 250.5 -80t78.5 -249v-525q5 -76 119 -90l-6 -120q-85 0 -142.5 18.5t-101.5 62.5q-21 -9 -56.5 -22.5t-132.5 -36t-179 -22.5 q-140 0 -214.5 79.5t-74.5 233.5zM195 1212l251 287h105l254 -287h-154l-149 179l-154 -179h-153zM240 297q0 -91 39 -139.5t116 -48.5q68 0 148.5 15.5t126.5 31.5l47 16v338l-303 -29q-92 -9 -133 -53.5t-41 -130.5z" />
|
||||
<glyph unicode="ã" horiz-adv-x="1026" d="M82 293q0 145 76 216.5t237 86.5l322 31v88q0 105 -45 149.5t-140 44.5q-64 0 -160.5 -6.5t-161.5 -12.5l-65 -7l-6 116q226 45 402 45q172 0 250.5 -80t78.5 -249v-525q5 -76 119 -90l-6 -120q-85 0 -142.5 18.5t-101.5 62.5q-21 -9 -56.5 -22.5t-132.5 -36t-179 -22.5 q-140 0 -214.5 79.5t-74.5 233.5zM158 1366l11.5 11.5t29.5 26t43.5 32.5t49.5 25.5t52 11.5q44 0 150.5 -47.5t134.5 -47.5q19 0 54.5 19.5t60.5 38.5l26 20l35 -98q-11 -12 -28.5 -29.5t-64.5 -46.5t-83 -29q-43 0 -148.5 48.5t-136.5 48.5q-22 0 -59 -20.5t-63 -41.5 l-27 -20zM240 297q0 -91 39 -139.5t116 -48.5q68 0 148.5 15.5t126.5 31.5l47 16v338l-303 -29q-92 -9 -133 -53.5t-41 -130.5z" />
|
||||
<glyph unicode="ä" horiz-adv-x="1026" d="M82 293q0 145 76 216.5t237 86.5l322 31v88q0 105 -45 149.5t-140 44.5q-64 0 -160.5 -6.5t-161.5 -12.5l-65 -7l-6 116q226 45 402 45q172 0 250.5 -80t78.5 -249v-525q5 -76 119 -90l-6 -120q-85 0 -142.5 18.5t-101.5 62.5q-21 -9 -56.5 -22.5t-132.5 -36t-179 -22.5 q-140 0 -214.5 79.5t-74.5 233.5zM215 1272v184h147v-184h-147zM240 297q0 -91 39 -139.5t116 -48.5q68 0 148.5 15.5t126.5 31.5l47 16v338l-303 -29q-92 -9 -133 -53.5t-41 -130.5zM625 1272v184h149v-184h-149z" />
|
||||
<glyph unicode="å" horiz-adv-x="1026" d="M82 293q0 145 76 216.5t237 86.5l322 31v88q0 105 -45 149.5t-140 44.5q-64 0 -160.5 -6.5t-161.5 -12.5l-65 -7l-6 116q226 45 402 45q172 0 250.5 -80t78.5 -249v-525q5 -76 119 -90l-6 -120q-85 0 -142.5 18.5t-101.5 62.5q-21 -9 -56.5 -22.5t-132.5 -36t-179 -22.5 q-140 0 -214.5 79.5t-74.5 233.5zM240 297q0 -91 39 -139.5t116 -48.5q68 0 148.5 15.5t126.5 31.5l47 16v338l-303 -29q-92 -9 -133 -53.5t-41 -130.5zM309 1321q0 90 61.5 151.5t151.5 61.5q89 0 150 -62t61 -151q0 -91 -61 -152t-150 -61q-91 0 -152 61t-61 152z M410 1321q0 -49 32.5 -83t79.5 -34t80 34t33 83q0 47 -33 81t-80 34t-79.5 -33.5t-32.5 -81.5z" />
|
||||
<glyph unicode="æ" horiz-adv-x="1646" d="M82 293q0 85 21.5 141t71 89.5t113 50.5t165.5 28l264 25v84q0 186 -178 186q-68 0 -165 -5t-160 -10l-64 -5l-7 137q244 30 404 30q209 0 276 -149q98 149 320 149q207 0 309 -115.5t102 -363.5l-8 -119h-676q0 -167 61.5 -247t207.5 -80q68 0 161.5 4.5t153.5 8.5l59 5 l5 -125q-232 -32 -398 -32q-205 0 -301 110l-65 -29q-28 -12 -70.5 -27t-138.5 -34.5t-185 -19.5q-136 0 -207 80t-71 233zM240 297q0 -90 37.5 -137t107.5 -47q94 0 215.5 30t151.5 45q-39 103 -39 314l-299 -25q-90 -8 -132 -50.5t-42 -129.5zM870 571h531 q0 182 -60.5 259t-197.5 77q-136 0 -204.5 -80t-68.5 -256z" />
|
||||
<glyph unicode="ç" horiz-adv-x="892" d="M104 530q0 278 98.5 396t327.5 118q42 0 111.5 -7.5t118.5 -14.5l49 -8l-6 -125q-164 18 -242 18q-89 0 -146.5 -19.5t-91.5 -66.5t-47.5 -115.5t-13.5 -175.5q0 -96 7 -160t25.5 -115.5t53 -80t86.5 -43t129 -14.5q35 0 95.5 4.5t103.5 8.5l43 5l6 -127 q-191 -28 -285 -28h-16v-80q121 0 174 -33t53 -127t-50 -139t-140 -45q-40 0 -84 3.5t-68 6.5l-24 4l6 98q80 -6 135 -6q90 0 90 78q0 70 -90 70h-86v176q-181 21 -251.5 146t-70.5 398z" />
|
||||
<glyph unicode="è" horiz-adv-x="1034" d="M102 506q0 538 428 538q207 0 309.5 -115.5t102.5 -363.5l-8 -116h-676q0 -171 61 -252.5t207 -81.5q68 0 162.5 4.5t154.5 8.5l60 5l4 -121q-233 -32 -399 -32q-222 0 -314 128t-92 398zM248 1386l53 132l442 -201l-43 -105zM256 571h532q0 188 -60.5 266t-197.5 78 q-135 0 -204 -81.5t-70 -262.5z" />
|
||||
<glyph unicode="é" horiz-adv-x="1034" d="M102 506q0 538 428 538q207 0 309.5 -115.5t102.5 -363.5l-8 -116h-676q0 -171 61 -252.5t207 -81.5q68 0 162.5 4.5t154.5 8.5l60 5l4 -121q-233 -32 -399 -32q-222 0 -314 128t-92 398zM256 571h532q0 188 -60.5 266t-197.5 78q-135 0 -204 -81.5t-70 -262.5zM297 1315 l442 201l54 -132l-453 -174z" />
|
||||
<glyph unicode="ê" horiz-adv-x="1034" d="M102 506q0 538 428 538q207 0 309.5 -115.5t102.5 -363.5l-8 -116h-676q0 -171 61 -252.5t207 -81.5q68 0 162.5 4.5t154.5 8.5l60 5l4 -121q-233 -32 -399 -32q-222 0 -314 128t-92 398zM229 1212l252 287h105l254 -287h-154l-149 179l-154 -179h-154zM256 571h532 q0 188 -60.5 266t-197.5 78q-135 0 -204 -81.5t-70 -262.5z" />
|
||||
<glyph unicode="ë" horiz-adv-x="1034" d="M102 506q0 538 428 538q207 0 309.5 -115.5t102.5 -363.5l-8 -116h-676q0 -171 61 -252.5t207 -81.5q68 0 162.5 4.5t154.5 8.5l60 5l4 -121q-233 -32 -399 -32q-222 0 -314 128t-92 398zM246 1272v184h147v-184h-147zM256 571h532q0 188 -60.5 266t-197.5 78 q-135 0 -204 -81.5t-70 -262.5zM655 1272v184h150v-184h-150z" />
|
||||
<glyph unicode="ì" horiz-adv-x="448" d="M-123 1384l53 132l443 -201l-43 -105zM147 0v1024h154v-1024h-154z" />
|
||||
<glyph unicode="í" horiz-adv-x="448" d="M78 1315l442 201l53 -132l-452 -174zM147 0h154v1024h-154v-1024z" />
|
||||
<glyph unicode="î" horiz-adv-x="448" d="M-86 1212l252 287h104l254 -287h-153l-150 179l-153 -179h-154zM147 0h154v1024h-154v-1024z" />
|
||||
<glyph unicode="ï" horiz-adv-x="448" d="M-63 1272v184h147v-184h-147zM147 0h154v1024h-154v-1024zM346 1272v184h150v-184h-150z" />
|
||||
<glyph unicode="ð" horiz-adv-x="1122" d="M86 440q0 202 113 321.5t317 119.5q68 0 152.5 -18.5t135.5 -36.5l50 -19q-13 266 -281 424l-249 -166l-68 96l195 131q-105 45 -254 84l30 115q207 -41 355 -111l206 140l70 -97l-158 -106q316 -200 316 -596q0 -397 -110 -568t-363 -171q-219 0 -338 117t-119 341z M248 440q0 -154 74.5 -236.5t220.5 -82.5q112 0 178.5 50.5t100 170.5t34.5 328q-21 8 -55.5 20t-123 32.5t-153.5 20.5q-131 0 -203.5 -85t-72.5 -218z" />
|
||||
<glyph unicode="ñ" horiz-adv-x="1099" d="M147 0h154v831q16 9 43.5 21.5t104 33.5t141.5 21q57 0 96 -13.5t64 -38.5t38 -72t18 -103t5 -143v-537h152v541q0 115 -9 193.5t-31.5 140.5t-62.5 97.5t-99 53.5t-145 18q-68 0 -147 -23t-125 -46l-45 -23v72h-152v-1024zM244 1366l11.5 11.5t29.5 26t43.5 32.5 t49.5 25.5t52 11.5q44 0 150.5 -47.5t134.5 -47.5q19 0 54.5 19.5t60.5 38.5l26 20l35 -98q-11 -12 -28.5 -29.5t-64.5 -46.5t-83 -29q-43 0 -148.5 48.5t-136.5 48.5q-22 0 -59 -20.5t-63 -41.5l-27 -20z" />
|
||||
<glyph unicode="ò" horiz-adv-x="1081" d="M102 524q0 270 100.5 395t338.5 125q239 0 338.5 -124.5t99.5 -395.5q0 -146 -20 -243.5t-69.5 -167.5t-134.5 -101.5t-214 -31.5q-128 0 -213.5 31.5t-135 101.5t-70 168t-20.5 243zM260 524q0 -94 6 -155.5t23 -114t48.5 -81.5t81 -44.5t122.5 -15.5q61 0 105.5 9.5 t75.5 32.5t50.5 53.5t30 80t14.5 103.5t4 132q0 217 -59 302t-221 85q-161 0 -221 -85t-60 -302zM289 1384l53 132l442 -201l-43 -105z" />
|
||||
<glyph unicode="ó" horiz-adv-x="1081" d="M102 524q0 -145 20.5 -243t70 -168t135 -101.5t213.5 -31.5q129 0 214 31.5t134.5 101.5t69.5 167.5t20 243.5q0 271 -99.5 395.5t-338.5 124.5q-238 0 -338.5 -125t-100.5 -395zM260 524q0 217 60 302t221 85q162 0 221 -85t59 -302q0 -78 -4 -132t-14.5 -103.5t-30 -80 t-50.5 -53.5t-75.5 -32.5t-105.5 -9.5q-73 0 -122.5 15.5t-81 44.5t-48.5 81.5t-23 114t-6 155.5zM315 1315l443 201l53 -132l-453 -174z" />
|
||||
<glyph unicode="ô" horiz-adv-x="1081" d="M102 524q0 -145 20.5 -243t70 -168t135 -101.5t213.5 -31.5q129 0 214 31.5t134.5 101.5t69.5 167.5t20 243.5q0 271 -99.5 395.5t-338.5 124.5q-238 0 -338.5 -125t-100.5 -395zM231 1212l252 287h105l254 -287h-154l-149 179l-154 -179h-154zM260 524q0 217 60 302 t221 85q162 0 221 -85t59 -302q0 -78 -4 -132t-14.5 -103.5t-30 -80t-50.5 -53.5t-75.5 -32.5t-105.5 -9.5q-73 0 -122.5 15.5t-81 44.5t-48.5 81.5t-23 114t-6 155.5z" />
|
||||
<glyph unicode="õ" horiz-adv-x="1081" d="M102 524q0 -145 20.5 -243t70 -168t135 -101.5t213.5 -31.5q129 0 214 31.5t134.5 101.5t69.5 167.5t20 243.5q0 271 -99.5 395.5t-338.5 124.5q-238 0 -338.5 -125t-100.5 -395zM215 1366l11.5 11.5t29.5 26t43.5 32.5t49.5 25.5t52 11.5q44 0 150.5 -47.5t134.5 -47.5 q19 0 54.5 19.5t61.5 38.5l25 20l35 -98q-11 -12 -28.5 -29.5t-64.5 -46.5t-83 -29q-43 0 -148.5 48.5t-136.5 48.5q-22 0 -59 -20.5t-64 -41.5l-26 -20zM260 524q0 217 60 302t221 85q162 0 221 -85t59 -302q0 -78 -4 -132t-14.5 -103.5t-30 -80t-50.5 -53.5t-75.5 -32.5 t-105.5 -9.5q-73 0 -122.5 15.5t-81 44.5t-48.5 81.5t-23 114t-6 155.5z" />
|
||||
<glyph unicode="ö" horiz-adv-x="1081" d="M102 524q0 -145 20.5 -243t70 -168t135 -101.5t213.5 -31.5q129 0 214 31.5t134.5 101.5t69.5 167.5t20 243.5q0 271 -99.5 395.5t-338.5 124.5q-238 0 -338.5 -125t-100.5 -395zM256 1272v184h147v-184h-147zM260 524q0 217 60 302t221 85q162 0 221 -85t59 -302 q0 -78 -4 -132t-14.5 -103.5t-30 -80t-50.5 -53.5t-75.5 -32.5t-105.5 -9.5q-73 0 -122.5 15.5t-81 44.5t-48.5 81.5t-23 114t-6 155.5zM666 1272v184h149v-184h-149z" />
|
||||
<glyph unicode="÷" d="M246 575v150h116v98h422v-98h115v-150h-653zM496 61v207h153v-207h-153z" />
|
||||
<glyph unicode="ø" horiz-adv-x="1081" d="M102 524q0 270 100.5 395t338.5 125q79 0 151 -16l88 213l103 -39l-88 -213q97 -54 140.5 -168t43.5 -297q0 -146 -20 -243.5t-69.5 -167.5t-134.5 -101.5t-214 -31.5q-84 0 -156 16l-88 -225l-102 36l90 224q-101 55 -142 173.5t-41 319.5zM260 524q0 -149 17.5 -233 t68.5 -127l297 735q-43 12 -102 12q-161 0 -221 -85t-60 -302zM436 123q36 -10 105 -10q61 0 105.5 9.5t75.5 32.5t50.5 53.5t30 80t14.5 103.5t4 132q0 129 -20 208.5t-66 121.5z" />
|
||||
<glyph unicode="ù" horiz-adv-x="1087" d="M137 489v535h154v-532q0 -76 2.5 -126.5t11 -96t23 -71.5t38.5 -46t58 -27.5t82 -7.5q68 0 138 19t106 38l36 19v831h154v-1024h-154v72q-17 -10 -46.5 -25.5t-109.5 -41t-147 -25.5q-87 0 -146.5 17.5t-99 52.5t-61.5 98t-30.5 142.5t-8.5 198.5zM233 1384l54 132 l442 -201l-43 -105z" />
|
||||
<glyph unicode="ú" horiz-adv-x="1087" d="M137 489q0 -119 8.5 -198.5t30.5 -142.5t61.5 -98t99 -52.5t146.5 -17.5q67 0 142.5 23t118.5 46l42 23v-72h154v1024h-154v-831q-5 -3 -14.5 -8t-40 -18.5t-61.5 -23.5t-76 -18t-88 -8q-48 0 -82 7.5t-58 27.5t-38.5 46t-23 71.5t-11 96t-2.5 126.5v532h-154v-535z M317 1315l443 201l53 -132l-453 -174z" />
|
||||
<glyph unicode="û" horiz-adv-x="1087" d="M137 489q0 -119 8.5 -198.5t30.5 -142.5t61.5 -98t99 -52.5t146.5 -17.5q67 0 142.5 23t118.5 46l42 23v-72h154v1024h-154v-831q-5 -3 -14.5 -8t-40 -18.5t-61.5 -23.5t-76 -18t-88 -8q-48 0 -82 7.5t-58 27.5t-38.5 46t-23 71.5t-11 96t-2.5 126.5v532h-154v-535z M215 1212l252 287h104l254 -287h-153l-150 179l-153 -179h-154z" />
|
||||
<glyph unicode="ü" horiz-adv-x="1087" d="M137 489q0 -119 8.5 -198.5t30.5 -142.5t61.5 -98t99 -52.5t146.5 -17.5q67 0 142.5 23t118.5 46l42 23v-72h154v1024h-154v-831q-5 -3 -14.5 -8t-40 -18.5t-61.5 -23.5t-76 -18t-88 -8q-48 0 -82 7.5t-58 27.5t-38.5 46t-23 71.5t-11 96t-2.5 126.5v532h-154v-535z M270 1272v184h148v-184h-148zM680 1272v184h149v-184h-149z" />
|
||||
<glyph unicode="ý" horiz-adv-x="989" d="M51 1024h154l256 -891h67l258 891h154l-426 -1479h-154l134 455h-152zM315 1315l443 201l53 -132l-453 -174z" />
|
||||
<glyph unicode="þ" horiz-adv-x="1079" d="M147 -455v1925h154v-497q17 8 46.5 20t109 31.5t143.5 19.5q207 0 291 -117.5t84 -396.5q0 -307 -101.5 -428.5t-365.5 -121.5q-36 0 -87.5 3.5t-85.5 6.5l-34 4v-449h-154zM301 125q133 -12 199 -12q100 0 163 23.5t97 78.5t45.5 126t11.5 185q0 205 -50.5 293 t-180.5 88q-63 0 -134 -14.5t-111 -29.5l-40 -15v-723z" />
|
||||
<glyph unicode="ÿ" horiz-adv-x="989" d="M51 1024h154l256 -891h67l258 891h154l-426 -1479h-154l134 455h-152zM213 1272v184h147v-184h-147zM623 1272v184h149v-184h-149z" />
|
||||
<glyph unicode="Œ" horiz-adv-x="1894" d="M117 707q0 193 26 326t87.5 228.5t167 140t261.5 44.5t289 -21h850v-151h-694v-469h571v-152h-571v-501h694v-154h-846q-189 -18 -293 -18q-130 0 -224 30.5t-155 86.5t-97.5 148t-51 201.5t-14.5 260.5zM281 709q0 -126 9.5 -213t34.5 -160t70 -115.5t115 -65t170 -22.5 q105 0 268 14v1127q-216 18 -272 18q-96 0 -164 -22.5t-113 -65t-71 -115.5t-36.5 -163t-10.5 -217z" />
|
||||
<glyph unicode="œ" horiz-adv-x="1755" d="M102 526q0 270 101.5 394t339.5 124q139 0 226.5 -50.5t133.5 -164.5q50 116 137.5 165.5t210.5 49.5q207 0 309.5 -115.5t102.5 -363.5l-8 -119h-676q0 -167 61 -247t207 -80q68 0 162 4.5t153 8.5l60 5l4 -125q-231 -32 -397 -32q-127 0 -207.5 45t-124.5 141 q-44 -99 -128 -142.5t-226 -43.5q-129 0 -214.5 31.5t-135.5 101.5t-70.5 168.5t-20.5 244.5zM260 526q0 -92 6.5 -153.5t24 -113.5t49.5 -81.5t81.5 -45t121.5 -15.5t122 17t80.5 47t47.5 83t22.5 111.5t5.5 146.5q0 204 -64.5 293.5t-213.5 89.5q-161 0 -222 -83t-61 -296 zM977 571h532q0 182 -60.5 259t-197.5 77q-135 0 -204.5 -81t-69.5 -255z" />
|
||||
<glyph unicode="Ÿ" horiz-adv-x="1101" d="M20 1417h179l352 -663l352 663h178l-450 -821v-596h-158v596zM266 1655v184h150v-184h-150zM684 1655v184h147v-184h-147z" />
|
||||
<glyph unicode="ˆ" horiz-adv-x="483" d="M-39 1212l252 287h104l254 -287h-153l-150 179l-153 -179h-154z" />
|
||||
<glyph unicode="˜" horiz-adv-x="483" d="M-61 1366l11.5 11.5t29.5 26t43.5 32.5t49.5 25.5t52 11.5q44 0 150.5 -47.5t134.5 -47.5q19 0 54.5 19.5t61.5 38.5l25 20l35 -98q-11 -12 -28.5 -29.5t-64.5 -46.5t-83 -29q-43 0 -148.5 48.5t-136.5 48.5q-22 0 -59.5 -20.5t-63.5 -41.5l-27 -20z" />
|
||||
<glyph unicode=" " horiz-adv-x="953" />
|
||||
<glyph unicode=" " horiz-adv-x="1907" />
|
||||
<glyph unicode=" " horiz-adv-x="953" />
|
||||
<glyph unicode=" " horiz-adv-x="1907" />
|
||||
<glyph unicode=" " horiz-adv-x="635" />
|
||||
<glyph unicode=" " horiz-adv-x="476" />
|
||||
<glyph unicode=" " horiz-adv-x="317" />
|
||||
<glyph unicode=" " horiz-adv-x="317" />
|
||||
<glyph unicode=" " horiz-adv-x="238" />
|
||||
<glyph unicode=" " horiz-adv-x="381" />
|
||||
<glyph unicode=" " horiz-adv-x="105" />
|
||||
<glyph unicode="‐" horiz-adv-x="897" d="M139 492v143h621v-143h-621z" />
|
||||
<glyph unicode="‑" horiz-adv-x="897" d="M139 492v143h621v-143h-621z" />
|
||||
<glyph unicode="‒" horiz-adv-x="897" d="M139 492v143h621v-143h-621z" />
|
||||
<glyph unicode="–" horiz-adv-x="1292" d="M135 481v135h1024v-135h-1024z" />
|
||||
<glyph unicode="—" horiz-adv-x="2316" d="M135 481v135h2048v-135h-2048z" />
|
||||
<glyph unicode="‘" horiz-adv-x="448" d="M104 1001l132 449h120l-90 -449h-162z" />
|
||||
<glyph unicode="’" horiz-adv-x="442" d="M109 1001l90 449h161l-131 -449h-120z" />
|
||||
<glyph unicode="‚" horiz-adv-x="446" d="M139 -43l27 88h24l-18 -88h-33z" />
|
||||
<glyph unicode="“" horiz-adv-x="763" d="M104 1001l132 449h120l-90 -449h-162zM418 1001l131 449h121l-90 -449h-162z" />
|
||||
<glyph unicode="”" horiz-adv-x="772" d="M109 1004l90 448h161l-131 -448h-120zM436 1004l90 448h162l-131 -448h-121z" />
|
||||
<glyph unicode="„" horiz-adv-x="735" d="M45 -219l131 448h121l-90 -448h-162zM356 -219l131 448h121l-90 -448h-162z" />
|
||||
<glyph unicode="•" horiz-adv-x="968" d="M227 217v586h512v-586h-512z" />
|
||||
<glyph unicode="…" horiz-adv-x="1484" d="M137 0v233h168v-233h-168zM659 0v233h166v-233h-166zM1180 0v233h168v-233h-168z" />
|
||||
<glyph unicode=" " horiz-adv-x="381" />
|
||||
<glyph unicode="‹" horiz-adv-x="616" d="M92 446v123l387 293v-157l-254 -193l254 -215v-160z" />
|
||||
<glyph unicode="›" horiz-adv-x="616" d="M137 145v160l254 215l-254 193v157l387 -292v-123z" />
|
||||
<glyph unicode=" " horiz-adv-x="476" />
|
||||
<glyph unicode="€" d="M61 455v125h123q-2 29 -2 92q0 69 2 102h-123v125h132q12 121 42 206t86.5 146.5t144.5 91t212 29.5q168 0 373 -43l-7 -127q-193 35 -350 35q-172 0 -248.5 -80t-95.5 -258h586v-125h-594q-2 -33 -2 -102v-92h596v-125h-588q10 -89 31 -150t61.5 -105t103 -64.5 t152.5 -20.5q159 0 348 37l7 -129q-206 -43 -373 -43q-124 0 -212.5 30.5t-145 92.5t-87 147.5t-43.5 204.5h-129z" />
|
||||
<glyph unicode="™" horiz-adv-x="1386" d="M186 1188v102h410v-102h-135v-508h-113v508h-162zM659 678v612h148l135 -426l145 426h144v-612h-107v459l-135 -428h-88l-135 428v-459h-107z" />
|
||||
<glyph unicode="" horiz-adv-x="1024" d="M0 0v1024h1024v-1024h-1024z" />
|
||||
</font>
|
||||
</defs></svg>
|
After Width: | Height: | Size: 54 KiB |
BIN
fonts/titillium-regular-webfont.ttf
Normal file
BIN
fonts/titillium-regular-webfont.woff
Normal file
BIN
fonts/titillium-regularitalic-webfont.eot
Normal file
240
fonts/titillium-regularitalic-webfont.svg
Normal file
|
@ -0,0 +1,240 @@
|
|||
<?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></metadata>
|
||||
<defs>
|
||||
<font id="TitilliumItalic" horiz-adv-x="1146" >
|
||||
<font-face units-per-em="2048" ascent="1536" descent="-512" />
|
||||
<missing-glyph horiz-adv-x="450" />
|
||||
<glyph horiz-adv-x="0" />
|
||||
<glyph horiz-adv-x="2048" />
|
||||
<glyph unicode=" " horiz-adv-x="450" />
|
||||
<glyph unicode="	" horiz-adv-x="450" />
|
||||
<glyph unicode=" " horiz-adv-x="450" />
|
||||
<glyph unicode="!" horiz-adv-x="387" d="M121 0l51 227h156l-52 -227h-155zM229 471l217 963h158l-237 -963h-138z" />
|
||||
<glyph unicode=""" horiz-adv-x="641" d="M453 954l106 467h178l-116 -467h-168z" />
|
||||
<glyph unicode="#" d="M129 369l33 131h225l90 364h-225l33 131h225l94 369h139l-94 -369h318l92 369h139l-92 -369h225l-33 -131h-225l-90 -364h225l-32 -131h-226l-90 -369h-139l90 369h-317l-91 -369h-139l90 369h-225zM526 500h318l90 364h-318z" />
|
||||
<glyph unicode="$" d="M195 31l24 119q117 -19 236 -31l209 530q-69 25 -114 49t-80.5 58t-52 80.5t-16.5 109.5q0 201 128.5 315.5t344.5 114.5q49 0 74 -2l90 228h111l-96 -240q47 -7 93.5 -17.5t69.5 -16.5l23 -7l-25 -113q-104 17 -210 27l-191 -485q146 -53 203 -115.5t57 -185.5 q0 -218 -131.5 -343.5t-353.5 -125.5q-28 0 -78 4l-90 -230h-109l92 238q-52 6 -104 16t-78 16zM553 958q0 -66 35.5 -101.5t128.5 -72.5l180 459h-29q-148 0 -231.5 -73t-83.5 -212zM561 113h33q154 0 239 84t85 237q0 71 -33 107.5t-125 72.5z" />
|
||||
<glyph unicode="%" d="M317 12l738 1440l102 -31l-735 -1439zM336 1155q-36 -146 5 -218.5t148 -72.5q104 0 181.5 72.5t113.5 216.5q70 285 -153 285q-108 0 -183.5 -69.5t-111.5 -213.5zM447 1016.5q-13 47.5 12 138.5q24 92 57.5 134t87.5 42q57 0 70 -43.5t-12 -134.5q-24 -95 -58 -139.5 t-90 -44.5q-54 0 -67 47.5zM696 291q70 282 295 282q107 0 149.5 -70t6.5 -214t-113.5 -216.5t-183.5 -72.5t-148 73t-6 218zM806.5 151.5q12.5 -47.5 67.5 -47.5t89.5 45t58.5 140q24 91 11.5 134.5t-68.5 43.5q-54 0 -88 -42.5t-58 -133.5q-25 -92 -12.5 -139.5z" />
|
||||
<glyph unicode="&" horiz-adv-x="1300" d="M154 307q0 201 99 324t322 207q-30 56 -42.5 100t-12.5 102q0 188 104 293t283 105q293 0 293 -252q0 -156 -97.5 -262t-305.5 -185l227 -311q32 51 66 128.5t55 148.5h147q-28 -97 -80 -204t-102 -179l190 -242l-106 -94l-180 231q-99 -118 -214.5 -177.5t-258.5 -59.5 q-205 0 -296 82.5t-91 244.5zM313 322q0 -207 250 -207q104 0 203 54.5t168 149.5l-299 418q-178 -68 -250 -166t-72 -249zM678 1036q0 -116 59 -202q168 70 236.5 148t68.5 196q0 129 -141 129q-110 0 -166.5 -75t-56.5 -196z" />
|
||||
<glyph unicode="'" horiz-adv-x="331" d="M315 954l107 467h145l-116 -467h-136z" />
|
||||
<glyph unicode="(" horiz-adv-x="464" d="M166 231q0 136 25.5 281t66.5 268.5t90 241.5t98.5 208.5t90.5 159.5t67 106l25 36h145q-18 -28 -48.5 -77.5t-108 -201t-137 -299.5t-108 -349t-48.5 -374q0 -128 7.5 -249.5t14.5 -178.5l8 -57h-145q-5 20 -12 58t-19 164.5t-12 262.5z" />
|
||||
<glyph unicode=")" horiz-adv-x="464" d="M-12 -242q18 28 48.5 77.5t108 201t137 299.5t108 349t48.5 374q0 128 -7.5 249.5t-14.5 178.5l-8 57h145q5 -20 12 -58t19 -164.5t12 -262.5t-25.5 -281t-66.5 -268.5t-90 -241.5t-98.5 -208.5t-90.5 -159.5t-67 -106l-25 -36h-145z" />
|
||||
<glyph unicode="*" horiz-adv-x="845" d="M356 938l222 162l-218 157l62 86l219 -159l82 258l102 -33l-84 -260h267v-102h-269l82 -256l-98 -31l-86 258l-219 -162z" />
|
||||
<glyph unicode="+" d="M231 444v140h387v399h142v-399h391v-140h-391v-403h-142v403h-387z" />
|
||||
<glyph unicode="," horiz-adv-x="374" d="M-25 -264l201 491h170l-246 -491h-125z" />
|
||||
<glyph unicode="-" horiz-adv-x="690" d="M201 477l35 141h505l-34 -141h-506z" />
|
||||
<glyph unicode="." horiz-adv-x="344" d="M94 0l53 227h156l-53 -227h-156z" />
|
||||
<glyph unicode="/" horiz-adv-x="858" d="M86 31l875 1417l143 -53l-875 -1415z" />
|
||||
<glyph unicode="0" d="M209 373q0 123 19 245t55 233.5t91 206.5t123 165.5t156.5 110.5t186.5 40q205 0 307 -102t102 -299q0 -154 -28 -300.5t-83 -271.5t-130.5 -219.5t-177 -148t-216.5 -53.5q-200 0 -302.5 100t-102.5 293zM369 391q0 -274 245 -274q90 0 168.5 52.5t134 138.5t95.5 196 t59 225.5t19 226.5q0 281 -252 281q-91 0 -170 -56t-132.5 -145.5t-92 -202.5t-56.5 -226t-18 -216z" />
|
||||
<glyph unicode="1" d="M473 1077l492 277h135l-309 -1354h-156l266 1163l-387 -213z" />
|
||||
<glyph unicode="2" d="M137 0l31 129l524 440q96 81 155.5 135.5t115 117t81 117.5t25.5 110q0 102 -62.5 145t-195.5 43q-69 0 -162 -10.5t-151 -21.5l-58 -11l17 121q23 7 62 16.5t141.5 26t183.5 16.5q193 0 289 -72.5t96 -224.5q0 -81 -27 -155t-83 -142.5t-114.5 -123.5t-148.5 -126 l-494 -393h674l-32 -137h-867z" />
|
||||
<glyph unicode="3" d="M147 49l35 117q221 -49 377 -49q161 0 271 87.5t110 233.5q0 192 -238 195h-264l31 125l266 4q68 1 140.5 37.5t126 106.5t53.5 151q0 94 -56.5 137t-179.5 43q-80 0 -175 -9.5t-150 -19.5l-56 -10l15 115q22 7 60 17t143 27t194 17q187 0 275.5 -69t88.5 -209 q0 -264 -276 -377q81 -38 121.5 -99.5t40.5 -173.5q0 -142 -73 -249t-198 -162t-282 -55q-88 0 -188 17t-156 35z" />
|
||||
<glyph unicode="4" d="M158 254l28 117l643 981h175l-650 -965h471l103 442h155l-102 -442h164l-33 -133h-162l-59 -258h-156l60 258h-637z" />
|
||||
<glyph unicode="5" d="M143 51l39 125q229 -57 389 -57q170 0 289 118.5t119 286.5q0 187 -236 187q-64 0 -143 -21.5t-126 -43.5l-48 -21l-123 24l215 703h772l-30 -138h-644l-151 -454q21 10 55.5 24.5t120.5 39t147 24.5q168 0 259.5 -73.5t91.5 -225.5q0 -158 -74 -288.5t-203 -204.5 t-284 -74q-92 0 -200.5 17t-171.5 35z" />
|
||||
<glyph unicode="6" d="M229 444q0 97 20 201t58.5 208.5t101 198t141 165.5t185.5 114.5t228 42.5q71 0 154.5 -10t130.5 -20l48 -11l-47 -129q-163 33 -323 33q-82 0 -153 -29t-122 -74.5t-94 -110.5t-70.5 -128t-48.5 -135q21 10 57.5 24.5t133.5 39t176 24.5q182 0 271 -86t89 -242 q0 -244 -144 -392t-400 -148q-187 0 -289.5 118.5t-102.5 345.5zM391 440q0 -148 59 -235.5t177 -87.5q182 0 280.5 105t98.5 270q0 113 -59 166t-187 53q-76 0 -163 -20.5t-136 -40.5l-49 -21q-21 -78 -21 -189z" />
|
||||
<glyph unicode="7" d="M299 20l784 1119l17 73h-658l33 140h815l-55 -234l-793 -1145z" />
|
||||
<glyph unicode="8" d="M135 270q0 84 28.5 155.5t79 124.5t106 90.5t122.5 66.5q-88 50 -117.5 100t-29.5 129q0 81 34 156.5t100.5 139.5t181 103t261.5 39q205 0 306.5 -72.5t101.5 -199.5q0 -133 -83.5 -239t-236.5 -156q55 -23 92 -52t55.5 -63.5t25.5 -68t7 -74.5q0 -37 -9 -78t-30 -87.5 t-53 -89.5t-81.5 -83t-111.5 -69.5t-147 -47t-184 -17.5q-418 0 -418 293zM305 297q0 -182 283 -182q86 0 158 21.5t119 55t79.5 76t47 84t14.5 78.5q0 88 -44 128.5t-149 72.5h-205q-58 -17 -108.5 -42.5t-96 -65t-72 -97.5t-26.5 -129zM483 948q0 -64 35 -107t123 -77h205 q35 10 71.5 26t77 42.5t72 57t52 73t20.5 88.5q0 94 -65.5 140t-207.5 46q-99 0 -175.5 -25.5t-120 -68t-65.5 -92t-22 -103.5z" />
|
||||
<glyph unicode="9" d="M160 23l53 137q147 -35 307 -35q177 0 305 115.5t187 343.5q-244 -74 -379 -74q-190 0 -276 97t-56 296q22 128 95.5 233.5t198.5 171.5t279 66q216 0 296 -164.5t28 -468.5q-29 -198 -95.5 -346.5t-162 -238t-210 -133t-247.5 -43.5q-68 0 -148.5 10.5t-127.5 21.5z M459 911q-26 -135 30.5 -197.5t192.5 -62.5q59 0 151 16.5t154 32.5l62 17q33 156 27 270t-66 178t-170 64q-142 0 -249.5 -86t-131.5 -232z" />
|
||||
<glyph unicode=":" horiz-adv-x="350" d="M96 0l54 227h155l-53 -227h-156zM252 676l53 227h156l-53 -227h-156z" />
|
||||
<glyph unicode=";" horiz-adv-x="411" d="M-4 -264h125l246 491h-170zM291 676l53 227h156l-54 -227h-155z" />
|
||||
<glyph unicode="<" d="M217 446v136l854 415v-159l-694 -322l694 -328v-161z" />
|
||||
<glyph unicode="=" d="M250 254v141h885v-141h-885zM250 633v141h885v-141h-885z" />
|
||||
<glyph unicode=">" d="M309 27v161l695 328l-695 322v159l854 -415v-136z" />
|
||||
<glyph unicode="?" horiz-adv-x="847" d="M289 2l51 238h158l-54 -238h-155zM367 1262l12 124q180 52 315 52q157 0 247.5 -64.5t90.5 -204.5q0 -62 -11.5 -110t-32 -88.5t-65 -87t-93 -87.5t-134.5 -108q-140 -109 -159 -207l-17 -80h-145q2 68 14 127q22 126 207 267q86 68 130 106.5t80.5 82.5t49 83.5 t12.5 91.5q0 76 -52.5 107.5t-153.5 31.5q-55 0 -128.5 -9t-119.5 -18z" />
|
||||
<glyph unicode="@" horiz-adv-x="1910" d="M182 156.5q-9 96.5 0 191.5t33 195q61 257 154.5 434.5t229 289t308.5 161t402 49.5q195 0 335.5 -46t219.5 -124t115 -190.5t32 -237t-39 -271.5q-38 -156 -79 -266.5t-84 -181t-95.5 -110.5t-106 -55t-124.5 -15q-177 0 -201 114q-80 -40 -193.5 -77t-197.5 -37 q-68 0 -118 20t-77 57.5t-42.5 81.5t-16.5 100t3 103t13 100q111 602 521 602q111 0 399 -51q-37 -146 -100 -430.5t-66 -351.5q-1 -52 25 -69t84 -17q50 0 88 19.5t77.5 72t76 154.5t73.5 258q21 89 30 163.5t5.5 149t-25 133t-64.5 109.5t-109 85t-163.5 53t-222.5 19 q-383 0 -598.5 -188t-318.5 -610q-33 -138 -38.5 -254t24 -223t97.5 -180.5t192.5 -117.5t299.5 -44q34 0 103.5 4.5t122.5 9.5l53 4l-27 -135q-197 -19 -289 -19q-147 0 -265 29.5t-198.5 80.5t-136.5 124t-84 155.5t-37 179zM790.5 320.5q-2.5 -54.5 8.5 -101.5t43.5 -74 t85.5 -28q135 0 327 106q4 49 50.5 262.5t91.5 397.5q-124 28 -230 28q-75 0 -133.5 -32.5t-101 -97t-72 -146.5t-53.5 -195q-14 -65 -16.5 -119.5z" />
|
||||
<glyph unicode="A" horiz-adv-x="1134" d="M49 0l707 1417h305l29 -1417h-156l-12 362h-531l-182 -362h-160zM457 500h467l-15 778h-61z" />
|
||||
<glyph unicode="B" horiz-adv-x="1181" d="M160 0l325 1417h457q171 0 255.5 -65.5t84.5 -212.5q0 -149 -73 -252t-191 -154q88 -34 130 -92t42 -152q0 -223 -141.5 -356t-401.5 -133h-487zM348 137h332q163 0 254.5 94t91.5 254q0 94 -62 132t-173 38h-324zM498 791h315q136 0 222.5 93t86.5 232q0 90 -48.5 127 t-158.5 37h-305z" />
|
||||
<glyph unicode="C" horiz-adv-x="1032" d="M229 385q0 95 13 195t41 203.5t68.5 198.5t99.5 178.5t130.5 145t164.5 97t198 35.5q72 0 157 -12t134 -24l49 -11l-35 -123q-157 30 -313 30q-103 0 -192.5 -56t-152.5 -148t-108.5 -210t-67.5 -243.5t-22 -247.5q0 -138 61 -206t191 -68q73 0 156.5 8.5t130.5 17.5 l47 9l-10 -129q-182 -45 -344 -45q-198 0 -297 102.5t-99 302.5z" />
|
||||
<glyph unicode="D" horiz-adv-x="1243" d="M160 0l327 1417h455q194 0 293.5 -100.5t99.5 -321.5q0 -110 -18.5 -224t-54 -226t-93.5 -210t-131.5 -173t-174 -118.5t-214.5 -43.5h-489zM350 139h322q97 0 181 57t141 148.5t98 206t60 228t19 216.5q0 150 -61.5 216.5t-198.5 66.5h-301z" />
|
||||
<glyph unicode="E" horiz-adv-x="1034" d="M160 0l325 1417h791l-33 -139h-633l-112 -487h520l-33 -140h-518l-119 -512h633l-31 -139h-790z" />
|
||||
<glyph unicode="F" horiz-adv-x="987" d="M160 0l327 1417h773l-33 -139h-617l-127 -559h525l-33 -137h-524l-136 -582h-155z" />
|
||||
<glyph unicode="G" horiz-adv-x="1171" d="M231 381q0 128 19.5 253t57.5 244t99.5 220t140 177.5t185 119.5t228.5 43q92 0 193.5 -16t157.5 -32l56 -16l-39 -119q-205 43 -389 43q-110 0 -202.5 -59t-154.5 -153.5t-105.5 -216.5t-63 -246t-19.5 -244q0 -260 281 -260q51 0 113 7.5t99 15.5l36 8l106 450h-215 l31 135h373l-164 -700q-20 -6 -56 -15t-140 -24.5t-200 -15.5q-210 0 -319 99.5t-109 301.5z" />
|
||||
<glyph unicode="H" horiz-adv-x="1277" d="M160 0l327 1417h156l-145 -633h645l145 633h158l-328 -1417h-157l149 647h-645l-150 -647h-155z" />
|
||||
<glyph unicode="I" horiz-adv-x="475" d="M160 0l327 1417h156l-328 -1417h-155z" />
|
||||
<glyph unicode="J" horiz-adv-x="542" d="M14 -143l25 139q45 0 74 3t55 14t41.5 27t31 47.5t26 69t24.5 97.5l270 1163h156l-271 -1175q-15 -67 -27.5 -111t-28.5 -87t-32 -68.5t-40 -48.5t-50.5 -35t-65.5 -21t-83 -11.5t-105 -2.5z" />
|
||||
<glyph unicode="K" horiz-adv-x="1067" d="M160 0l327 1417h156l-151 -655l186 6l502 649h176l-551 -715l225 -702h-166l-200 629l-205 -6l-144 -623h-155z" />
|
||||
<glyph unicode="L" horiz-adv-x="886" d="M160 0l327 1417h156l-295 -1278h557l-31 -139h-714z" />
|
||||
<glyph unicode="M" horiz-adv-x="1597" d="M160 0l327 1417h265l90 -1200l655 1200h268l-327 -1417h-156l297 1278h-23l-667 -1227h-164l-94 1227h-21l-295 -1278h-155z" />
|
||||
<glyph unicode="N" horiz-adv-x="1292" d="M160 0l327 1417h279l213 -1255h39l289 1255h153l-327 -1417h-269l-221 1264h-41l-293 -1264h-149z" />
|
||||
<glyph unicode="O" horiz-adv-x="1286" d="M233 403q0 262 85 503.5t241 383.5q161 148 377 148q218 0 329 -103.5t111 -320.5q0 -179 -36 -348t-114 -319.5t-190 -242.5q-152 -124 -368 -124q-226 0 -330.5 98.5t-104.5 324.5zM395 414q0 -161 65.5 -228t225.5 -67q136 0 238 82q94 77 161 217t97 289.5t30 296.5 q0 154 -68 224t-220 70q-131 0 -224 -75q-96 -79 -168 -224.5t-104.5 -296.5t-32.5 -288z" />
|
||||
<glyph unicode="P" horiz-adv-x="1120" d="M160 0l327 1417h447q182 0 266 -82.5t84 -253.5q0 -178 -62.5 -314t-188 -214t-298.5 -78h-309l-111 -475h-155zM459 614h301q118 0 201 64.5t121 167t38 233.5q0 101 -47.5 150t-157.5 49h-305z" />
|
||||
<glyph unicode="Q" horiz-adv-x="1286" d="M233 403q0 262 85 503.5t241 383.5q161 148 377 148q218 0 329 -103.5t111 -320.5q0 -179 -36 -348t-114 -319.5t-190 -242.5q-41 -35 -94 -61l98 -291l-149 -49l-92 291q-72 -14 -131 -14q-226 0 -330.5 98.5t-104.5 324.5zM395 414q0 -161 65.5 -228t225.5 -67 q136 0 238 82q94 77 161 217t97 289.5t30 296.5q0 154 -68 224t-220 70q-131 0 -224 -75q-96 -79 -168 -224.5t-104.5 -296.5t-32.5 -288z" />
|
||||
<glyph unicode="R" horiz-adv-x="1155" d="M160 0l327 1417h433q187 0 277.5 -79.5t90.5 -262.5q0 -116 -33 -211t-88 -156.5t-116 -100t-127 -56.5l155 -551h-157l-146 530h-336l-125 -530h-155zM471 668h301q159 0 255.5 113t96.5 290q0 114 -51.5 161.5t-169.5 47.5h-291z" />
|
||||
<glyph unicode="S" horiz-adv-x="1021" d="M115 33l26 123q237 -37 391 -37q162 0 251 87.5t89 248.5q0 85 -45 124.5t-186 88.5q-66 23 -110 42.5t-85 46.5t-64 58.5t-36.5 74.5t-13.5 99q0 210 134 329.5t361 119.5q84 0 179 -14.5t148 -29.5l54 -14l-26 -116q-218 36 -361 36q-155 0 -242 -77t-87 -222 q0 -29 5 -50.5t20 -40.5t30 -31.5t49.5 -28.5t63.5 -27.5t85 -31.5q163 -58 226 -123.5t63 -198.5q0 -228 -138 -358.5t-370 -130.5q-87 0 -189.5 13t-162.5 27z" />
|
||||
<glyph unicode="T" horiz-adv-x="960" d="M315 1278l33 139h916l-33 -139h-381l-295 -1278h-156l295 1278h-379z" />
|
||||
<glyph unicode="U" horiz-adv-x="1216" d="M231 274q0 97 23 187l221 956h158l-225 -973q-21 -86 -21 -149q0 -93 67.5 -134.5t194.5 -41.5q161 0 242.5 75.5t118.5 237.5l227 985h158l-228 -985q-54 -233 -178 -342.5t-352 -109.5q-191 0 -298.5 73t-107.5 221z" />
|
||||
<glyph unicode="V" horiz-adv-x="1116" d="M371 1417h157l7 -1278h92l604 1278h158l-676 -1417h-324z" />
|
||||
<glyph unicode="W" horiz-adv-x="1697" d="M328 0l55 1417h156l-64 -1272h53l551 1252h172l-39 -1252h54l536 1272h158l-610 -1417h-273l39 1167l-508 -1167h-280z" />
|
||||
<glyph unicode="X" horiz-adv-x="1050" d="M25 0l573 711l-227 706h164l184 -590l459 590h172l-566 -715l230 -702h-162l-188 588l-465 -588h-174z" />
|
||||
<glyph unicode="Y" horiz-adv-x="1009" d="M348 1417h160l166 -661l469 661h170l-600 -811l-142 -606h-149l143 618z" />
|
||||
<glyph unicode="Z" horiz-adv-x="1013" d="M78 0l45 203l917 1020l13 55h-676l33 139h852l-50 -209l-917 -1020l-12 -49h680l-33 -139h-852z" />
|
||||
<glyph unicode="[" horiz-adv-x="565" d="M51 -250l416 1780h399l-30 -133h-244l-354 -1514h243l-35 -133h-395z" />
|
||||
<glyph unicode="\" horiz-adv-x="872" d="M385 1419l162 17l268 -1420l-160 -16z" />
|
||||
<glyph unicode="]" horiz-adv-x="565" d="M-4 -248l31 133h243l355 1514h-244l35 133h395l-416 -1780h-399z" />
|
||||
<glyph unicode="^" d="M238 653l380 699h138l391 -699h-164l-295 547l-287 -547h-163z" />
|
||||
<glyph unicode="_" horiz-adv-x="1181" d="M61 -311l33 149h918l-35 -149h-916z" />
|
||||
<glyph unicode="`" horiz-adv-x="1060" d="M573 1397l74 121l379 -191l-68 -106z" />
|
||||
<glyph unicode="a" horiz-adv-x="1024" d="M182 285q0 98 20 201.5t62.5 203.5t102 178.5t145.5 127t186 48.5q57 0 162 -13t182 -25l76 -13l-155 -665q-14 -57 -28.5 -138t-22.5 -134l-7 -52l-149 -6q29 176 37 219q-7 -10 -19.5 -26t-51.5 -56.5t-78.5 -72t-94.5 -57t-105 -25.5q-133 0 -197.5 79.5t-64.5 225.5z M340 285q0 -86 34.5 -129t117.5 -43q36 0 83.5 27.5t89.5 67t78.5 79t58.5 67.5l21 27l117 502q-144 28 -240 28q-85 0 -156 -61.5t-114 -157t-66.5 -202t-23.5 -205.5z" />
|
||||
<glyph unicode="b" horiz-adv-x="1021" d="M141 31l332 1439h152l-133 -581q6 6 17 16.5t46 37.5t70 47t84 37t94 17q80 0 135 -23.5t84 -68t41 -97.5t12 -124q0 -74 -13.5 -155t-39.5 -166t-69.5 -161.5t-99 -137t-133 -96t-165.5 -35.5q-75 0 -178.5 12.5t-169.5 25.5zM317 139q144 -26 234 -26q79 0 144.5 49 t105.5 121t67.5 158.5t38.5 157.5t11 122q0 45 -5.5 75.5t-21.5 58.5t-49 42t-84 14q-37 0 -81.5 -18t-81.5 -44t-69 -52t-50 -44l-19 -18z" />
|
||||
<glyph unicode="c" horiz-adv-x="829" d="M188 291q0 151 33.5 284t98 239t169.5 168t238 62q52 0 116 -9.5t102 -18.5l38 -10l-39 -119q-133 24 -221 24q-94 0 -168 -51.5t-118.5 -137.5t-67.5 -189t-23 -214q0 -103 49.5 -154.5t161.5 -51.5q36 0 93 7.5t96 15.5l40 7l-10 -120q-141 -43 -270 -43 q-156 0 -237 80.5t-81 230.5z" />
|
||||
<glyph unicode="d" horiz-adv-x="1024" d="M182 279q0 87 15.5 177t44 175t73.5 160t100 131.5t127 89t152 32.5q53 0 121 -9t110 -18l42 -9l108 462h154l-342 -1470h-148l39 182q-6 -8 -18 -21.5t-48.5 -48.5t-74 -61.5t-92 -48.5t-105.5 -22q-258 0 -258 299zM340 281q0 -168 147 -168q38 0 86.5 25t89.5 60.5 t77 70.5t56 60l21 25l123 527q-135 30 -246 30q-67 0 -125.5 -41t-99.5 -107.5t-70.5 -150t-44 -168.5t-14.5 -163z" />
|
||||
<glyph unicode="e" horiz-adv-x="946" d="M186 291q0 108 20 213.5t64 203.5t107 172.5t156 119t204 44.5q144 0 223.5 -60.5t79.5 -188.5q0 -183 -137 -255.5t-436 -72.5h-105q-22 -80 -22 -166q0 -90 53.5 -138t143.5 -48q68 0 152 11.5t135 22.5l50 11l-12 -121q-20 -7 -55.5 -16.5t-132 -26t-178.5 -16.5 q-150 0 -230 78t-80 233zM383 588h113q209 0 301 44.5t92 160.5q0 65 -40 93.5t-118 28.5q-253 0 -348 -327z" />
|
||||
<glyph unicode="f" horiz-adv-x="632" d="M68 -455l311 1344h-117l33 135h113l22 88q48 208 125 293.5t223 85.5q35 0 78 -7.5t68 -14.5l26 -7l-28 -119q-82 15 -148 15q-77 0 -117 -57t-75 -191l-21 -86h275l-33 -133h-271l-206 -891l-125 -455h-133z" />
|
||||
<glyph unicode="g" horiz-adv-x="958" d="M37 -213q0 55 24 104.5t67.5 88.5t84.5 66t94 54q-33 33 -33 88q0 25 11.5 55t28 54.5t33.5 45t29 32.5l11 12q-141 66 -141 246q0 75 27.5 147.5t78 131.5t130.5 95.5t175 36.5q47 0 96.5 -8t74.5 -16l26 -8l303 12l-31 -131h-182q35 -60 35 -141q0 -56 -17 -112 t-53 -108.5t-86 -93.5t-121.5 -65.5t-154.5 -24.5l-68 6q-63 -82 -63 -135q0 -34 39.5 -49t150.5 -29q162 -21 235.5 -75t73.5 -168q0 -158 -140 -268.5t-372 -110.5q-171 0 -268.5 70t-97.5 198zM182 -180q0 -76 58 -123t170 -47q94 0 174 26.5t131 81t51 127.5 q0 62 -45 88.5t-156 40.5q-120 13 -178 33q-81 -42 -143 -103t-62 -124zM391 639q0 -164 170 -164q67 0 121.5 27t86 68.5t48.5 86.5t17 86q0 87 -43.5 129.5t-141.5 42.5q-79 0 -140 -44.5t-89.5 -106t-28.5 -125.5z" />
|
||||
<glyph unicode="h" horiz-adv-x="1021" d="M135 0l340 1470h154l-146 -626q6 8 18 21.5t48.5 48t73.5 61t90 48t102 21.5q120 0 181 -69.5t61 -188.5q0 -88 -43 -270l-119 -516h-152l119 510q37 174 37 246q0 153 -137 153q-38 0 -84.5 -24t-86 -57.5t-74 -67.5t-53.5 -58l-20 -24l-155 -678h-154z" />
|
||||
<glyph unicode="i" horiz-adv-x="421" d="M135 0l236 1024h153l-237 -1024h-152zM418 1237l45 184h153l-43 -184h-155z" />
|
||||
<glyph unicode="j" horiz-adv-x="421" d="M-178 -358q68 35 105 55.5t73 47t52 45t33.5 53t26.5 67t23 90.5l236 1024h153l-237 -1024q-19 -84 -32 -131t-37 -95.5t-45.5 -73.5t-69 -58.5t-96 -58t-136.5 -64.5zM420 1233l43 184h153l-41 -184h-155z" />
|
||||
<glyph unicode="k" horiz-adv-x="911" d="M135 0l340 1470h154l-199 -856l131 7l371 403h178l-434 -475l194 -549h-161l-172 489l-138 -4l-110 -485h-154z" />
|
||||
<glyph unicode="l" horiz-adv-x="440" d="M143 0l340 1470h152l-338 -1470h-154z" />
|
||||
<glyph unicode="m" horiz-adv-x="1587" d="M135 0l236 1024h149l-37 -178q6 8 17.5 21.5t48 47.5t73.5 60t91 47.5t104 21.5q41 0 76 -10t57 -26t39.5 -35.5t26.5 -39t15 -35.5t7 -26l2 -10l19.5 19.5t51 44t77 55.5t92.5 43.5t102 19.5q118 0 179 -69.5t61 -188.5q0 -80 -41 -270l-119 -516h-153l118 510 q39 161 39 244q0 74 -34 114.5t-101 40.5q-36 0 -78 -19t-77 -46t-65 -54t-47 -46l-17 -19q-6 -96 -35 -209l-119 -516h-154l119 510q39 161 39 246q0 73 -35 113t-104 40q-38 0 -84 -23.5t-85 -57.5t-73 -67.5t-53 -56.5l-19 -24l-157 -680h-152z" />
|
||||
<glyph unicode="n" horiz-adv-x="1019" d="M135 0l236 1024h149l-37 -178q6 8 17.5 21.5t48 47.5t73.5 60t89.5 47.5t101.5 21.5q120 0 181 -69.5t61 -188.5q0 -97 -41 -266l-121 -520h-152l119 510q39 161 39 246q0 153 -139 153q-38 0 -85 -23.5t-86 -57.5t-72.5 -67.5t-52.5 -56.5l-20 -24l-157 -680h-152z" />
|
||||
<glyph unicode="o" horiz-adv-x="1011" d="M186 315q0 191 64 357t183.5 269t268.5 103q174 0 264.5 -86.5t90.5 -261.5q0 -113 -22.5 -218.5t-67 -195.5t-106.5 -157.5t-145.5 -106t-178.5 -38.5q-174 0 -262.5 81t-88.5 254zM340 313q0 -97 49.5 -148.5t147.5 -51.5q109 0 194 82.5t128.5 215t43.5 287.5 q0 99 -50.5 156t-150.5 57q-106 0 -190 -86t-128 -221.5t-44 -290.5z" />
|
||||
<glyph unicode="p" horiz-adv-x="1021" d="M31 -455l340 1479h149l-39 -182q7 8 18.5 21.5t48.5 48.5t74 61.5t89 48.5t100 22q135 0 200.5 -78t65.5 -223q0 -85 -15 -173.5t-43.5 -173.5t-73 -160.5t-100 -132.5t-128 -90t-152.5 -33q-55 0 -123.5 9.5t-109.5 18.5l-41 10l-109 -473h-151zM319 143 q133 -30 246 -30q83 0 153 63t112.5 159t66 202t23.5 200q0 174 -152 174q-37 0 -84 -25t-88 -60.5t-76.5 -70.5t-56.5 -60l-21 -25z" />
|
||||
<glyph unicode="q" horiz-adv-x="1019" d="M180 281q0 103 21.5 209t65 205.5t103 177t143.5 124.5t179 47q68 0 174 -13t178 -25l72 -13l-332 -1435h-151l143 624q-6 -8 -17.5 -21.5t-47.5 -48.5t-73.5 -61.5t-90.5 -48.5t-103 -22q-130 0 -197 79t-67 222zM338 287q0 -174 154 -174q37 0 84 24.5t87.5 59.5 t76 70.5t56.5 60.5l21 24l121 529q-131 30 -246 30q-80 0 -149 -61t-112.5 -155t-68 -201.5t-24.5 -206.5z" />
|
||||
<glyph unicode="r" horiz-adv-x="647" d="M135 0l238 1024h151l-37 -152q21 15 58 39t135 72t178 64l-41 -158q-58 -15 -147.5 -53.5t-149.5 -69.5l-61 -31l-170 -735h-154z" />
|
||||
<glyph unicode="s" horiz-adv-x="878" d="M104 27l29 118q188 -32 313 -32q122 0 196.5 53.5t74.5 155.5q0 25 -8 42.5t-19.5 29.5t-39.5 22.5t-53.5 17.5t-74.5 19q-144 36 -207 81.5t-63 141.5q0 164 114.5 266t288.5 102q73 0 157.5 -10.5t132.5 -21.5l48 -11l-30 -118q-195 28 -326 28q-104 0 -167.5 -57.5 t-63.5 -140.5q0 -50 36.5 -74.5t151.5 -54.5q62 -15 100 -27t76.5 -30.5t58.5 -41t32.5 -56t12.5 -77.5q0 -181 -125 -276.5t-321 -95.5q-70 0 -151 12t-127 24z" />
|
||||
<glyph unicode="t" horiz-adv-x="651" d="M231 174q0 75 33 211l119 506h-135l35 133h133l71 303h154l-74 -303h287l-33 -133h-286l-119 -514q-25 -102 -25 -170q0 -94 103 -94q24 0 63 3t67 6l27 3l-10 -117q-107 -28 -199 -28q-101 0 -156 51.5t-55 142.5z" />
|
||||
<glyph unicode="u" horiz-adv-x="1019" d="M201 238q0 97 41 266l120 520h152l-119 -510q-39 -161 -39 -246q0 -73 35.5 -113t104.5 -40q38 0 84.5 23.5t86 57.5t73 67.5t52.5 56.5l19 24l158 680h151l-235 -1024h-150l37 178q-6 -8 -17.5 -21.5t-48 -47.5t-73.5 -60t-89.5 -47.5t-101.5 -21.5q-118 0 -179.5 69.5 t-61.5 188.5z" />
|
||||
<glyph unicode="v" horiz-adv-x="929" d="M285 1024h151l17 -893h63l445 893h157l-520 -1024h-287z" />
|
||||
<glyph unicode="w" horiz-adv-x="1497" d="M281 0l14 1024h154l-19 -891h39l420 871h180l8 -871h39l402 891h155l-465 -1024h-272l-6 805l-383 -805h-266z" />
|
||||
<glyph unicode="x" horiz-adv-x="858" d="M39 0l422 512l-180 512h157l137 -403l320 403h164l-428 -524l182 -500h-160l-133 395l-315 -395h-166z" />
|
||||
<glyph unicode="y" horiz-adv-x="929" d="M215 -453l236 453h-140l-26 1024h151l17 -893h61l447 893h157l-747 -1477h-156z" />
|
||||
<glyph unicode="z" horiz-adv-x="856" d="M78 0l24 131l697 760h-516l32 133h699l-29 -131l-698 -760h522l-31 -133h-700z" />
|
||||
<glyph unicode="{" horiz-adv-x="641" d="M170 584l29 121q69 18 113 38.5t70.5 50.5t39.5 62t24 84q5 25 18 92.5t24 121t18 73.5q51 163 150.5 235.5t285.5 79.5l-24 -139q-130 -7 -193.5 -64.5t-89.5 -171.5q-3 -14 -13 -70.5t-19 -107t-13 -67.5q-29 -127 -83 -187t-165 -96q63 -29 96 -71t33 -113 q0 -38 -49 -208.5t-49 -226.5q0 -141 182 -141l-39 -139q-145 3 -220 62t-75 173q0 63 48 235.5t48 207.5q0 62 -34.5 100t-112.5 66z" />
|
||||
<glyph unicode="|" horiz-adv-x="638" d="M360 -455v1925h152v-1925h-152z" />
|
||||
<glyph unicode="}" horiz-adv-x="638" d="M-8 -266l24 139q130 7 193.5 64.5t89.5 171.5q3 14 13 70.5t19 107t13 67.5q29 127 83 187t165 96q-63 29 -96 71t-33 113q0 38 49 208t49 226q0 142 -182 142l39 139q145 -3 220 -62.5t75 -173.5q0 -63 -48.5 -235t-48.5 -207q0 -62 35 -100t113 -66l-29 -121 q-69 -18 -113 -38.5t-71 -50.5t-40 -62t-24 -84q-6 -26 -18 -93t-23 -120.5t-18 -73.5q-51 -163 -150.5 -235.5t-285.5 -79.5z" />
|
||||
<glyph unicode="~" d="M260 557q5 4 14.5 11.5t37 26.5t55 33t64 26t67.5 12q60 0 212 -62.5t195 -62.5q35 0 87 23.5t87 47.5l35 23l21 -125q-5 -5 -13.5 -12t-35 -26.5t-52.5 -34t-62 -26.5t-67 -12q-49 0 -133 31.5t-162.5 63.5t-113.5 32q-37 0 -91 -24t-89 -48l-35 -24z" />
|
||||
<glyph unicode="¡" horiz-adv-x="364" d="M8 -410l238 963h137l-217 -963h-158zM285 797l51 227h156l-52 -227h-155z" />
|
||||
<glyph unicode="¢" d="M320 382q5 59 22 126q55 212 169.5 323t276.5 117l58 244h129l-60 -246l189 -20l-41 -135q-166 14 -240 14q-255 0 -329 -297q-17 -70 -19.5 -117t14 -89t65.5 -62.5t132 -20.5q37 0 100.5 3t108.5 6l45 3l-29 -133q-116 -14 -198 -16l-58 -246h-129l56 238 q-78 2 -133 27.5t-83.5 66.5t-39.5 98t-6 116z" />
|
||||
<glyph unicode="£" d="M164 0l31 133h196l133 594h-153l32 135h154l25 105q21 89 41 149.5t50.5 116.5t69.5 88t95.5 51t130.5 19q48 0 116.5 -8.5t112.5 -17.5l45 -9l-33 -119q-143 16 -243 16q-33 0 -60.5 -8.5t-47 -19.5t-37 -35.5t-28 -43.5t-23 -58t-19 -63.5t-19.5 -74.5l-20 -88h397 l-31 -135h-397l-135 -594h282l156 35l-2 -131l-160 -37h-659z" />
|
||||
<glyph unicode="¤" d="M238 170l143 143q-60 92 -60 203t60 203l-143 143l106 109l143 -146q94 60 205 60t203 -60l143 146l109 -109l-146 -145q60 -92 60 -202t-60 -202l146 -143l-109 -109l-143 146q-92 -61 -203 -61t-205 61l-143 -146zM466 516q0 -94 66 -160q64 -64 159 -64t161 64 q64 66 64 160t-64 160q-66 64 -161 64t-159 -64q-66 -66 -66 -160z" />
|
||||
<glyph unicode="¥" d="M217 328l33 137h354l33 137l-8 33h-340l33 137h256l-234 582h168l231 -572l474 572h202l-489 -582h250l-31 -137h-328l-28 -35l-31 -135h348l-33 -137h-348l-76 -328h-155l75 328h-356z" />
|
||||
<glyph unicode="¦" horiz-adv-x="651" d="M367 319h151v-774h-151v774zM367 705v765h151v-765h-151z" />
|
||||
<glyph unicode="§" horiz-adv-x="962" d="M68 -270l45 135q207 -29 311 -29q127 0 205 75.5t78 162.5q0 62 -42 86.5t-190 56.5q-145 28 -204.5 85t-59.5 149q0 59 23 118.5t56 102.5t58.5 69t40.5 37q-41 48 -41 156q0 70 29.5 138.5t85 127t146.5 95t202 36.5q56 0 133 -8.5t126 -17.5l48 -9l-37 -135 q-203 29 -295 29q-136 0 -209 -63t-73 -169q0 -31 11.5 -54t26.5 -36.5t50.5 -25.5t60.5 -17.5t80 -15.5q256 -49 256 -229q0 -50 -20 -106.5t-51.5 -105t-52 -76t-38.5 -48.5q23 -29 29 -55t6 -66q0 -39 -10.5 -87.5t-42 -110t-80.5 -111t-135 -83.5t-195 -34 q-56 0 -138.5 8.5t-137.5 16.5zM369 496q0 -57 38.5 -87t139.5 -49q129 -28 178 -55q18 15 62 98.5t44 141.5q0 50 -42.5 80.5t-143.5 48.5q-137 27 -164 47q-112 -140 -112 -225z" />
|
||||
<glyph unicode="¨" horiz-adv-x="1392" d="M496 1270l43 190h127l-45 -190h-125zM870 1270l41 190h127l-45 -190h-123z" />
|
||||
<glyph unicode="©" horiz-adv-x="1318" d="M326 889q0 156 69 284t192.5 201.5t276.5 73.5q156 0 280.5 -75.5t192.5 -203t68 -280.5q0 -156 -68 -283t-192.5 -201.5t-282.5 -74.5q-152 0 -275 74.5t-192 202.5t-69 282zM416 889q0 -196 127.5 -332.5t318.5 -136.5q128 0 232.5 63t162.5 170t58 236 q0 128 -58.5 236t-162.5 171.5t-230 63.5q-191 0 -319.5 -137.5t-128.5 -333.5zM633 891q0 167 53 243t188 76q38 0 77 -5t59 -10l20 -5l-6 -109q-79 13 -145 13q-75 0 -99 -46.5t-24 -156.5q0 -108 26.5 -158.5t96.5 -50.5q27 0 63.5 3.5t59.5 6.5l22 4l6 -106 q-76 -25 -160 -25q-132 0 -184.5 77t-52.5 249z" />
|
||||
<glyph unicode="ª" horiz-adv-x="704" d="M283 920q22 86 76.5 128t158.5 48l178 12l13 45q10 45 -8 63.5t-70 18.5q-35 0 -94.5 -3.5t-101.5 -7.5l-42 -3l17 98q152 31 254 31q116 0 160.5 -45t19.5 -158l-66 -283q12 -26 51 -33l-26 -100q-79 0 -109 12t-49 41q-124 -53 -233 -53q-79 0 -114 51.5t-15 137.5z M418 922q-17 -80 55 -80q32 0 74.5 8.5t68.5 17.5l27 9l33 137l-154 -10q-46 -3 -70.5 -22t-33.5 -60z" />
|
||||
<glyph unicode="«" horiz-adv-x="913" d="M164 469l29 78l436 291l-45 -158l-269 -178l181 -197l-41 -141zM553 469l29 78l436 291l-45 -158l-268 -178l180 -197l-41 -141z" />
|
||||
<glyph unicode="¬" d="M252 561v139h876v-460h-143v321h-733z" />
|
||||
<glyph unicode="­" horiz-adv-x="690" d="M201 477l35 141h505l-34 -141h-506z" />
|
||||
<glyph unicode="®" horiz-adv-x="1318" d="M326 889q0 156 69 284t192.5 201.5t276.5 73.5q156 0 280.5 -75.5t192.5 -203t68 -280.5q0 -156 -68 -283t-192.5 -201.5t-280.5 -74.5q-152 0 -276 74.5t-193 202.5t-69 282zM416 889q0 -195 129 -332t319 -137q193 0 322 136t129 333q0 128 -58.5 236t-162.5 171.5 t-230 63.5q-191 0 -319.5 -137.5t-128.5 -333.5zM641 578v620h225q114 0 173 -45t59 -149q0 -77 -23 -121t-80 -70l113 -235h-127l-100 219h-123v-219h-117zM758 893h121q54 0 79 24.5t25 79.5t-31 80t-96 25h-98v-209z" />
|
||||
<glyph unicode="¯" horiz-adv-x="899" d="M469 1309l29 121h563l-31 -121h-561z" />
|
||||
<glyph unicode="°" d="M547 1149q0 129 80.5 209t210.5 80q129 0 208.5 -80t79.5 -209q0 -130 -79.5 -209.5t-208.5 -79.5q-131 0 -211 79.5t-80 209.5zM649 1149q0 -86 51.5 -138.5t137.5 -52.5q85 0 137.5 52.5t52.5 138.5q0 85 -52.5 137.5t-137.5 52.5q-86 0 -137.5 -52.5t-51.5 -137.5z " />
|
||||
<glyph unicode="±" d="M211 78v139h919v-139h-919zM211 600v139h385v258h143v-258h391v-139h-391v-260h-143v260h-385z" />
|
||||
<glyph unicode="²" horiz-adv-x="573" d="M289 979l28 115l226 176q65 51 99.5 89t45.5 81q10 38 -12.5 55.5t-69.5 17.5q-26 0 -70.5 -5t-75.5 -10l-32 -5l25 121q129 24 217 24q106 0 144 -45.5t13 -140.5q-18 -67 -61.5 -119.5t-122.5 -111.5l-156 -123h261l-29 -119h-430z" />
|
||||
<glyph unicode="³" horiz-adv-x="573" d="M283 979l36 115q115 -15 203 -15q101 0 121 84q23 86 -72 86h-135l27 111h133q29 0 60.5 26.5t41.5 63.5q8 36 -9.5 52t-67.5 16q-38 0 -86 -4t-77 -8l-28 -3l21 115q127 20 215 20q110 0 153 -41.5t21 -130.5q-24 -94 -118 -151q-2 -1 -3 -2q31 -11 46 -25.5t22 -47 t-9 -83.5q-26 -99 -95.5 -149t-174.5 -50q-44 0 -100.5 5t-90.5 11z" />
|
||||
<glyph unicode="´" horiz-adv-x="1118" d="M557 1339l467 193l14 -135l-467 -176z" />
|
||||
<glyph unicode="µ" d="M88 -455l236 1024l106 455h152l-107 -455h2l-37 -159q-16 -78 -16 -142q0 -73 35 -113t104 -40q38 0 85 23.5t86 57.5t72.5 67.5t53.5 56.5l19 24l157 680h152l-236 -1024h-149l37 178q-6 -8 -17.5 -21.5t-48 -47.5t-73.5 -60t-89.5 -47.5t-101.5 -21.5q-96 0 -158 49 l-112 -484h-152z" />
|
||||
<glyph unicode="¶" horiz-adv-x="1140" d="M297 969q0 82 34.5 165t93.5 149.5t146 108.5t185 42h635l-29 -131h-141l-310 -1303h-129l310 1303h-224l-311 -1303h-131l166 680q-78 1 -136.5 24.5t-92 64.5t-50 91t-16.5 109z" />
|
||||
<glyph unicode="·" horiz-adv-x="348" d="M211 502l53 239h158l-53 -239h-158z" />
|
||||
<glyph unicode="¸" horiz-adv-x="1619" d="M639 -418l27 105q76 -6 127 -6q85 0 104 73q10 39 -10 53.5t-60 14.5h-79l43 188h81l-26 -102h10q94 0 141 -37t27 -125q-39 -178 -221 -178q-38 0 -79 3.5t-63 6.5z" />
|
||||
<glyph unicode="¹" horiz-adv-x="573" d="M414 1475l243 143h123l-157 -639h-131l122 496l-163 -97z" />
|
||||
<glyph unicode="º" horiz-adv-x="698" d="M299 934q0 47 16 113q39 162 120.5 232.5t221.5 70.5q91 0 150 -38t65 -116q9 -67 -12 -158q-37 -164 -120 -237.5t-228 -73.5q-105 0 -160.5 54t-52.5 153zM436 948q0 -51 25 -74.5t80 -23.5q73 0 115 43.5t69 150.5q12 52 12 93q0 50 -24.5 71t-79.5 21 q-73 0 -114.5 -40t-65.5 -140q-17 -66 -17 -101z" />
|
||||
<glyph unicode="»" horiz-adv-x="983" d="M129 164l45 158l268 178l-180 196l41 142l291 -306l-29 -77zM586 164l45 158l268 178l-180 196l41 142l291 -306l-29 -77z" />
|
||||
<glyph unicode="¼" horiz-adv-x="1216" d="M221 31l875 1417l143 -53l-874 -1415zM365 1475l243 143h123l-158 -639h-131l123 496l-164 -97zM725 98l27 113l249 428h148l-254 -420h149l58 180h119l-47 -180h55l-29 -121h-55l-25 -98h-129l23 98h-289z" />
|
||||
<glyph unicode="½" horiz-adv-x="1263" d="M221 31l875 1417l143 -53l-874 -1415zM365 1475l243 143h123l-158 -639h-131l123 496l-164 -97zM778 0l29 115l225 176q66 51 100.5 89.5t45.5 80.5q10 38 -12.5 56t-69.5 18q-26 0 -70.5 -5.5t-75.5 -10.5l-32 -5l24 121q129 24 217 24q106 0 144.5 -45.5t13.5 -140.5 q-18 -67 -61.5 -119.5t-122.5 -111.5l-156 -123h260l-29 -119h-430z" />
|
||||
<glyph unicode="¾" horiz-adv-x="1247" d="M254 31l874 1417l144 -53l-875 -1415zM274 979l37 115q115 -15 203 -15q101 0 121 84q23 86 -72 86h-135l27 111h133q29 0 60.5 26.5t41.5 63.5q8 36 -10 52t-68 16q-38 0 -85.5 -4t-76.5 -8l-28 -3l20 115q127 20 215 20q110 0 153 -41.5t21 -130.5q-24 -94 -117 -151 l-1.5 -1.5t-1.5 -0.5q31 -11 46 -25.5t22 -47t-9 -83.5q-26 -99 -95.5 -149t-174.5 -50q-44 0 -100.5 5t-91.5 11zM760 98l26 113l250 428h148l-254 -420h149l58 180h118l-47 -180h56l-29 -121h-55l-25 -98h-129l23 98h-289z" />
|
||||
<glyph unicode="¿" horiz-adv-x="833" d="M47 -143q0 62 11.5 110t32 88.5t65 87t93 87.5t134.5 108q141 110 160 207l16 80h146q-3 -68 -15 -127q-22 -126 -207 -267q-86 -68 -130 -106.5t-80.5 -82.5t-49 -83.5t-12.5 -91.5q0 -76 53 -107.5t154 -31.5q55 0 128.5 9t119.5 18l47 9l-13 -124q-180 -52 -315 -52 q-157 0 -247.5 64.5t-90.5 204.5zM582 786l53 238h156l-52 -238h-157z" />
|
||||
<glyph unicode="À" horiz-adv-x="1134" d="M49 0l707 1417h305l29 -1417h-156l-12 362h-531l-182 -362h-160zM457 500h467l-15 778h-61zM668 1774l75 131l379 -193l-69 -115z" />
|
||||
<glyph unicode="Á" horiz-adv-x="1134" d="M49 0l707 1417h305l29 -1417h-156l-12 362h-531l-182 -362h-160zM457 500h467l-15 778h-61zM776 1724l467 193l19 -133l-467 -176z" />
|
||||
<glyph unicode="Â" horiz-adv-x="1134" d="M49 0l707 1417h305l29 -1417h-156l-12 362h-531l-182 -362h-160zM457 500h467l-15 778h-61zM621 1624l335 283h84l197 -283h-141l-111 166l-197 -166h-167z" />
|
||||
<glyph unicode="Ã" horiz-adv-x="1134" d="M49 0l707 1417h305l29 -1417h-156l-12 362h-531l-182 -362h-160zM457 500h467l-15 778h-61zM614 1772q15 14 40 34t82.5 54t92.5 34q43 0 102 -28t110.5 -56t74.5 -28q18 0 60 23.5t75 46.5l33 24l6 -109q-14 -13 -37.5 -33t-78.5 -53.5t-89 -33.5q-38 0 -96 28.5 t-111.5 57t-80.5 28.5q-20 0 -64.5 -25t-79.5 -50l-35 -25z" />
|
||||
<glyph unicode="Ä" horiz-adv-x="1134" d="M49 0l707 1417h305l29 -1417h-156l-12 362h-531l-182 -362h-160zM457 500h467l-15 778h-61zM698 1667l43 191h127l-47 -191h-123zM1081 1667l45 191h127l-47 -191h-125z" />
|
||||
<glyph unicode="Å" horiz-adv-x="1134" d="M49 0l684 1370q-41 53 -16 146q27 101 96.5 152.5t167.5 51.5q96 0 142.5 -51t21.5 -153q-26 -94 -84 -144l29 -1372h-156l-12 362h-531l-182 -362h-160zM457 500h467l-15 778h-61zM819 1516q-9 -41 10.5 -68.5t65.5 -30.5h20q49 1 81.5 27.5t43.5 71.5q10 48 -14 73 t-72 25q-53 0 -88 -25.5t-47 -72.5z" />
|
||||
<glyph unicode="Æ" horiz-adv-x="1597" d="M51 0l707 1425h1085l-31 -147l-649 4l-116 -491h532l-31 -142h-534l-119 -502h645l-31 -147h-796l84 362h-412l-184 -362h-150zM453 506h378l185 772h-180z" />
|
||||
<glyph unicode="Ç" horiz-adv-x="1032" d="M229 385q0 95 13 195t41 203.5t68.5 198.5t99.5 178.5t130.5 145t164.5 97t198 35.5q72 0 157 -12t134 -24l49 -11l-35 -123q-157 30 -313 30q-103 0 -192.5 -56t-152.5 -148t-108.5 -210t-67.5 -243.5t-22 -247.5q0 -138 61 -206t191 -68q73 0 156.5 8.5t130.5 17.5 l47 9l-10 -129q-182 -45 -344 -45h-11l-18 -72h10q94 0 141 -37t27 -125q-39 -178 -221 -178q-38 0 -79 3.5t-63 6.5l-22 4l27 105q76 -6 127 -6q85 0 104 73q10 39 -9.5 53.5t-59.5 14.5h-80l37 164q-306 43 -306 399z" />
|
||||
<glyph unicode="È" horiz-adv-x="1034" d="M160 0l325 1417h791l-33 -139h-633l-112 -487h520l-33 -140h-518l-119 -512h633l-31 -139h-790zM680 1774l76 131l379 -193l-70 -115z" />
|
||||
<glyph unicode="É" horiz-adv-x="1034" d="M160 0l325 1417h791l-33 -139h-633l-112 -487h520l-33 -140h-518l-119 -512h633l-31 -139h-790zM754 1724l467 193l18 -133l-467 -176z" />
|
||||
<glyph unicode="Ê" horiz-adv-x="1034" d="M160 0l325 1417h791l-33 -139h-633l-112 -487h520l-33 -140h-518l-119 -512h633l-31 -139h-790zM700 1620l336 283h84l197 -283h-141l-111 166l-197 -166h-168z" />
|
||||
<glyph unicode="Ë" horiz-adv-x="1034" d="M160 0l325 1417h791l-33 -139h-633l-112 -487h520l-33 -140h-518l-119 -512h633l-31 -139h-790zM680 1667l43 191h127l-47 -191h-123zM1063 1667l45 191h127l-47 -191h-125z" />
|
||||
<glyph unicode="Ì" horiz-adv-x="475" d="M160 0l327 1417h156l-328 -1417h-155zM305 1774l76 131l379 -193l-70 -115z" />
|
||||
<glyph unicode="Í" horiz-adv-x="475" d="M160 0l327 1417h156l-328 -1417h-155zM471 1724l467 193l18 -133l-467 -176z" />
|
||||
<glyph unicode="Î" horiz-adv-x="475" d="M160 0l327 1417h156l-328 -1417h-155zM293 1620l336 283h84l196 -283h-141l-111 166l-196 -166h-168z" />
|
||||
<glyph unicode="Ï" horiz-adv-x="475" d="M160 0l327 1417h156l-328 -1417h-155zM354 1677l43 191h127l-47 -191h-123zM737 1677l45 191h127l-47 -191h-125z" />
|
||||
<glyph unicode="Ð" horiz-adv-x="1251" d="M168 0l145 633h-135l31 158h141l146 626h454q194 0 293.5 -100.5t99.5 -321.5q0 -110 -18.5 -224t-54 -226t-93.5 -210t-131.5 -173t-174 -118.5t-214.5 -43.5h-489zM358 139h322q97 0 181 57t141.5 148.5t98.5 206t60 228t19 216.5q0 150 -61.5 216.5t-198.5 66.5h-302 l-112 -487h291l-35 -158h-291z" />
|
||||
<glyph unicode="Ñ" horiz-adv-x="1292" d="M160 0l327 1417h279l213 -1255h39l289 1255h153l-327 -1417h-269l-221 1264h-41l-293 -1264h-149zM694 1767q15 14 40 34.5t82.5 54.5t92.5 34q43 0 102 -28t110.5 -56t74.5 -28q18 0 60 23.5t75 46.5l33 24l6 -109q-5 -5 -14.5 -13t-35.5 -29t-50.5 -37t-54 -29 t-50.5 -13q-38 0 -96 29t-111.5 57.5t-80.5 28.5q-20 0 -64.5 -25t-79.5 -50l-35 -25z" />
|
||||
<glyph unicode="Ò" horiz-adv-x="1286" d="M233 403q0 262 85 503.5t241 383.5q161 148 377 148q218 0 329 -103.5t111 -320.5q0 -179 -36 -348t-114 -319.5t-190 -242.5q-152 -124 -368 -124q-226 0 -330.5 98.5t-104.5 324.5zM395 414q0 -161 65.5 -228t225.5 -67q136 0 238 82q94 77 161 217t97 289.5t30 296.5 q0 154 -68 224t-220 70q-131 0 -224 -75q-96 -79 -168 -224.5t-104.5 -296.5t-32.5 -288zM770 1774l76 131l379 -193l-70 -115z" />
|
||||
<glyph unicode="Ó" horiz-adv-x="1286" d="M233 403q0 262 85 503.5t241 383.5q161 148 377 148q218 0 329 -103.5t111 -320.5q0 -179 -36 -348t-114 -319.5t-190 -242.5q-152 -124 -368 -124q-226 0 -330.5 98.5t-104.5 324.5zM395 414q0 -161 65.5 -228t225.5 -67q136 0 238 82q94 77 161 217t97 289.5t30 296.5 q0 154 -68 224t-220 70q-131 0 -224 -75q-96 -79 -168 -224.5t-104.5 -296.5t-32.5 -288zM852 1724l467 193l18 -133l-467 -176z" />
|
||||
<glyph unicode="Ô" horiz-adv-x="1286" d="M233 403q0 262 85 503.5t241 383.5q161 148 377 148q218 0 329 -103.5t111 -320.5q0 -179 -36 -348t-114 -319.5t-190 -242.5q-152 -124 -368 -124q-226 0 -330.5 98.5t-104.5 324.5zM395 414q0 -161 65.5 -228t225.5 -67q136 0 238 82q94 77 161 217t97 289.5t30 296.5 q0 154 -68 224t-220 70q-131 0 -224 -75q-96 -79 -168 -224.5t-104.5 -296.5t-32.5 -288zM711 1624l336 283h83l197 -283h-141l-111 166l-196 -166h-168z" />
|
||||
<glyph unicode="Õ" horiz-adv-x="1286" d="M233 403q0 262 85 503.5t241 383.5q161 148 377 148q218 0 329 -103.5t111 -320.5q0 -179 -36 -348t-114 -319.5t-190 -242.5q-152 -124 -368 -124q-226 0 -330.5 98.5t-104.5 324.5zM395 414q0 -161 65.5 -228t225.5 -67q136 0 238 82q94 77 161 217t97 289.5t30 296.5 q0 154 -68 224t-220 70q-131 0 -224 -75q-96 -79 -168 -224.5t-104.5 -296.5t-32.5 -288zM719 1767q15 14 40 34.5t82.5 54.5t92.5 34q43 0 102 -28t110.5 -56t74.5 -28q18 0 60 23.5t75 46.5l33 24l6 -109q-5 -5 -14.5 -13t-35.5 -29t-50.5 -37t-54 -29t-50.5 -13 q-38 0 -96.5 29t-112 57.5t-80.5 28.5q-20 0 -64.5 -25t-78.5 -50l-35 -25z" />
|
||||
<glyph unicode="Ö" horiz-adv-x="1286" d="M233 403q0 262 85 503.5t241 383.5q161 148 377 148q218 0 329 -103.5t111 -320.5q0 -179 -36 -348t-114 -319.5t-190 -242.5q-152 -124 -368 -124q-226 0 -330.5 98.5t-104.5 324.5zM395 414q0 -161 65.5 -228t225.5 -67q136 0 238 82q94 77 161 217t97 289.5t30 296.5 q0 154 -68 224t-220 70q-131 0 -224 -75q-96 -79 -168 -224.5t-104.5 -296.5t-32.5 -288zM760 1663l43 190h141l-45 -190h-139zM1147 1663l43 190h139l-43 -190h-139z" />
|
||||
<glyph unicode="×" d="M262 184l334 330l-332 328l98 98l328 -332l330 334l98 -98l-332 -330l332 -330l-98 -98l-330 332l-328 -332z" />
|
||||
<glyph unicode="Ø" horiz-adv-x="1286" d="M141 -182l185 272q-93 100 -93 313q0 262 85 503.5t241 383.5q161 148 377 148q162 0 266 -58l172 252l96 -43l-186 -274q92 -109 92 -301q0 -179 -36 -348t-114 -319.5t-190 -242.5q-152 -124 -368 -124q-162 0 -260 49l-181 -262zM395 414q0 -114 29 -176l332 487 l358 526q-64 47 -190 47q-131 0 -224 -75q-96 -79 -168 -224.5t-104.5 -296.5t-32.5 -288zM496 158q65 -39 190 -39q136 0 238 82q94 77 161 217t97 289.5t30 296.5q0 103 -28 163l-334 -493z" />
|
||||
<glyph unicode="Ù" horiz-adv-x="1216" d="M231 274q0 97 23 187l221 956h158l-225 -973q-21 -86 -21 -149q0 -93 67.5 -134.5t194.5 -41.5q161 0 242.5 75.5t118.5 237.5l227 985h158l-228 -985q-54 -233 -178 -342.5t-352 -109.5q-191 0 -298.5 73t-107.5 221zM729 1774l76 131l379 -193l-70 -115z" />
|
||||
<glyph unicode="Ú" horiz-adv-x="1216" d="M231 274q0 97 23 187l221 956h158l-225 -973q-21 -86 -21 -149q0 -93 67.5 -134.5t194.5 -41.5q161 0 242.5 75.5t118.5 237.5l227 985h158l-228 -985q-54 -233 -178 -342.5t-352 -109.5q-191 0 -298.5 73t-107.5 221zM772 1724l467 193l18 -133l-466 -176z" />
|
||||
<glyph unicode="Û" horiz-adv-x="1216" d="M231 274q0 97 23 187l221 956h158l-225 -973q-21 -86 -21 -149q0 -93 67.5 -134.5t194.5 -41.5q161 0 242.5 75.5t118.5 237.5l227 985h158l-228 -985q-54 -233 -178 -342.5t-352 -109.5q-191 0 -298.5 73t-107.5 221zM659 1624l336 283h84l197 -283h-141l-111 166 l-197 -166h-168z" />
|
||||
<glyph unicode="Ü" horiz-adv-x="1216" d="M231 274q0 97 23 187l221 956h158l-225 -973q-21 -86 -21 -149q0 -93 67.5 -134.5t194.5 -41.5q161 0 242.5 75.5t118.5 237.5l227 985h158l-228 -985q-54 -233 -178 -342.5t-352 -109.5q-191 0 -298.5 73t-107.5 221zM707 1663l43 190h141l-45 -190h-139zM1094 1663 l41 190h141l-45 -190h-137z" />
|
||||
<glyph unicode="Ý" horiz-adv-x="1009" d="M348 1417h160l166 -661l469 661h170l-600 -811l-142 -606h-149l143 618zM688 1724l467 193l19 -133l-467 -176z" />
|
||||
<glyph unicode="Þ" horiz-adv-x="1124" d="M156 0l336 1425h151l-55 -227h317q86 0 151.5 -24t104 -66.5t60 -100.5t20 -127t-15.5 -145q-49 -224 -187.5 -357t-347.5 -132h-325l-58 -246h-151zM399 397h326q260 0 346 338q13 51 15.5 95t-7.5 84.5t-34 69t-68.5 45.5t-106.5 18l-317 2z" />
|
||||
<glyph unicode="ß" horiz-adv-x="1103" d="M133 0l256 1083q53 226 157 317t296 91q168 0 252 -63.5t84 -182.5q0 -116 -49 -189.5t-148 -121.5q-98 -46 -134 -73.5t-36 -65.5t23.5 -64t103.5 -76q47 -29 71 -45.5t50 -40t37 -46t18.5 -53.5t7.5 -73q0 -193 -118 -305t-330 -112q-52 0 -116.5 9.5t-103.5 18.5 l-38 10l28 121q136 -26 222 -26q143 0 222 73.5t79 194.5q0 58 -29 91.5t-127 92.5q-88 54 -121 97.5t-33 105.5q0 88 45 139.5t162 110.5q87 45 122.5 90.5t35.5 118.5q0 66 -45.5 98.5t-147.5 32.5q-130 0 -197 -66.5t-104 -226.5l-249 -1065h-146z" />
|
||||
<glyph unicode="à" horiz-adv-x="1024" d="M182 285q0 98 20 201.5t62.5 203.5t102 178.5t145.5 127t186 48.5q57 0 162 -13t182 -25l76 -13l-155 -665q-14 -57 -28.5 -138t-22.5 -134l-7 -52l-149 -6q29 176 37 219q-7 -10 -19.5 -26t-51.5 -56.5t-78.5 -72t-94.5 -57t-105 -25.5q-133 0 -197.5 79.5t-64.5 225.5z M340 285q0 -86 34.5 -129t117.5 -43q36 0 83.5 27.5t89.5 67t78.5 79t58.5 67.5l21 27l117 502q-144 28 -240 28q-85 0 -156 -61.5t-114 -157t-66.5 -202t-23.5 -205.5zM618 1397l74 121l379 -191l-67 -106z" />
|
||||
<glyph unicode="á" horiz-adv-x="1024" d="M182 285q0 98 20 201.5t62.5 203.5t102 178.5t145.5 127t186 48.5q57 0 162 -13t182 -25l76 -13l-155 -665q-14 -57 -28.5 -138t-22.5 -134l-7 -52l-149 -6q29 176 37 219q-7 -10 -19.5 -26t-51.5 -56.5t-78.5 -72t-94.5 -57t-105 -25.5q-133 0 -197.5 79.5t-64.5 225.5z M340 285q0 -86 34.5 -129t117.5 -43q36 0 83.5 27.5t89.5 67t78.5 79t58.5 67.5l21 27l117 502q-144 28 -240 28q-85 0 -156 -61.5t-114 -157t-66.5 -202t-23.5 -205.5zM682 1339l467 193l14 -135l-467 -176z" />
|
||||
<glyph unicode="â" horiz-adv-x="1024" d="M182 285q0 98 20 201.5t62.5 203.5t102 178.5t145.5 127t186 48.5q57 0 162 -13t182 -25l76 -13l-155 -665q-14 -57 -28.5 -138t-22.5 -134l-7 -52l-149 -6q29 176 37 219q-7 -10 -19.5 -26t-51.5 -56.5t-78.5 -72t-94.5 -57t-105 -25.5q-133 0 -197.5 79.5t-64.5 225.5z M340 285q0 -86 34.5 -129t117.5 -43q36 0 83.5 27.5t89.5 67t78.5 79t58.5 67.5l21 27l117 502q-144 28 -240 28q-85 0 -156 -61.5t-114 -157t-66.5 -202t-23.5 -205.5zM494 1202l317 309h109l176 -309h-154l-98 176l-182 -176h-168z" />
|
||||
<glyph unicode="ã" horiz-adv-x="1024" d="M182 285q0 98 20 201.5t62.5 203.5t102 178.5t145.5 127t186 48.5q57 0 162 -13t182 -25l76 -13l-155 -665q-14 -57 -28.5 -138t-22.5 -134l-7 -52l-149 -6q29 176 37 219q-7 -10 -19.5 -26t-51.5 -56.5t-78.5 -72t-94.5 -57t-105 -25.5q-133 0 -197.5 79.5t-64.5 225.5z M340 285q0 -86 34.5 -129t117.5 -43q36 0 83.5 27.5t89.5 67t78.5 79t58.5 67.5l21 27l117 502q-144 28 -240 28q-85 0 -156 -61.5t-114 -157t-66.5 -202t-23.5 -205.5zM563 1382q14 12 37.5 30t77.5 48.5t88 30.5q38 0 91 -24.5t99.5 -49t67.5 -24.5q18 0 56.5 21t67.5 42 l30 21l10 -115q-13 -12 -34.5 -29.5t-73 -46.5t-85.5 -29q-44 0 -139.5 49.5t-122.5 49.5q-21 0 -62 -22t-71 -44l-31 -22z" />
|
||||
<glyph unicode="ä" horiz-adv-x="1024" d="M182 285q0 98 20 201.5t62.5 203.5t102 178.5t145.5 127t186 48.5q57 0 162 -13t182 -25l76 -13l-155 -665q-14 -57 -28.5 -138t-22.5 -134l-7 -52l-149 -6q29 176 37 219q-7 -10 -19.5 -26t-51.5 -56.5t-78.5 -72t-94.5 -57t-105 -25.5q-133 0 -197.5 79.5t-64.5 225.5z M340 285q0 -86 34.5 -129t117.5 -43q36 0 83.5 27.5t89.5 67t78.5 79t58.5 67.5l21 27l117 502q-144 28 -240 28q-85 0 -156 -61.5t-114 -157t-66.5 -202t-23.5 -205.5zM545 1270l43 190h141l-45 -190h-139zM934 1270l41 190h141l-45 -190h-137z" />
|
||||
<glyph unicode="å" horiz-adv-x="1024" d="M182 285q0 98 20 201.5t62.5 203.5t102 178.5t145.5 127t186 48.5q57 0 162 -13t182 -25l76 -13l-155 -665q-14 -57 -28.5 -138t-22.5 -134l-7 -52l-149 -6q29 176 37 219q-7 -10 -19.5 -26t-51.5 -56.5t-78.5 -72t-94.5 -57t-105 -25.5q-133 0 -197.5 79.5t-64.5 225.5z M340 285q0 -86 34.5 -129t117.5 -43q36 0 83.5 27.5t89.5 67t78.5 79t58.5 67.5l21 27l117 502q-144 28 -240 28q-85 0 -156 -61.5t-114 -157t-66.5 -202t-23.5 -205.5zM690 1358q18 83 83 140.5t155 57.5q76 0 112 -47t27 -127q-9 -100 -77.5 -163.5t-162.5 -63.5 q-89 0 -123 56t-14 147zM782 1358q-9 -38 11.5 -70.5t60.5 -32.5q41 0 74.5 29.5t44.5 71.5q9 38 -11 67t-59 29q-42 0 -76 -27t-45 -67z" />
|
||||
<glyph unicode="æ" horiz-adv-x="1533" d="M129 178.5q-7 56.5 8 116.5q14 73 46 127t80.5 88.5t103.5 54t127 31.5q146 22 309 29q9 27 15.5 51.5t12 58t1.5 60t-15 50t-38 37t-68 13.5q-64 0 -156 -5.5t-153 -11.5l-60 -6l25 142q233 30 383 30q89 0 148.5 -39t74.5 -112q125 151 340 151q289 0 295 -276 q0 -104 -29 -211l-31 -113l-624 5q-24 -100 -21 -162q3 -81 45.5 -122.5t138.5 -41.5q62 0 150.5 4.5t146.5 8.5l58 5l-27 -129q-206 -32 -368 -32q-196 0 -265 110q-90 -39 -223.5 -74.5t-218.5 -35.5q-65 0 -112.5 26.5t-69.5 71t-29 101zM284 238q2 -32 10.5 -59 t33 -44.5t61.5 -17.5q129 0 361 78q-7 36 -8 73.5t5.5 79.5t12.5 72.5t18 79.5q-126 -10 -282 -29q-167 -26 -205 -172q-9 -29 -7 -61zM950 573l486 -4q25 98 22 176q-3 83 -47.5 121.5t-132.5 38.5q-127 0 -207 -80t-121 -252z" />
|
||||
<glyph unicode="ç" horiz-adv-x="831" d="M188 291q0 151 33.5 284t98 239t169.5 168t238 62q52 0 116 -9.5t102 -18.5l38 -10l-39 -119q-133 24 -221 24q-94 0 -168 -51.5t-118.5 -137.5t-67.5 -189t-23 -214q0 -103 49.5 -154.5t161.5 -51.5q36 0 93 7.5t96 15.5l40 7l-10 -120q-141 -43 -268 -43l-19 -72h11 q94 0 141 -37t27 -125q-39 -178 -222 -178q-38 0 -79 3.5t-63 6.5l-21 4l26 105q76 -6 127 -6q86 0 105 73q10 39 -10 53.5t-60 14.5h-80l37 164q-118 19 -179 97t-61 208z" />
|
||||
<glyph unicode="è" horiz-adv-x="946" d="M186 291q0 108 20 213.5t64 203.5t107 172.5t156 119t204 44.5q144 0 223.5 -60.5t79.5 -188.5q0 -183 -137 -255.5t-436 -72.5h-105q-22 -80 -22 -166q0 -90 53.5 -138t143.5 -48q68 0 152 11.5t135 22.5l50 11l-12 -121q-20 -7 -55.5 -16.5t-132 -26t-178.5 -16.5 q-150 0 -230 78t-80 233zM383 588h113q209 0 301 44.5t92 160.5q0 65 -40 93.5t-118 28.5q-253 0 -348 -327zM455 1397l73 121l379 -191l-67 -106z" />
|
||||
<glyph unicode="é" horiz-adv-x="946" d="M186 291q0 108 20 213.5t64 203.5t107 172.5t156 119t204 44.5q144 0 223.5 -60.5t79.5 -188.5q0 -183 -137 -255.5t-436 -72.5h-105q-22 -80 -22 -166q0 -90 53.5 -138t143.5 -48q68 0 152 11.5t135 22.5l50 11l-12 -121q-20 -7 -55.5 -16.5t-132 -26t-178.5 -16.5 q-150 0 -230 78t-80 233zM383 588h113q209 0 301 44.5t92 160.5q0 65 -40 93.5t-118 28.5q-253 0 -348 -327zM600 1339l467 193l14 -135l-467 -176z" />
|
||||
<glyph unicode="ê" horiz-adv-x="946" d="M186 291q0 108 20 213.5t64 203.5t107 172.5t156 119t204 44.5q144 0 223.5 -60.5t79.5 -188.5q0 -183 -137 -255.5t-436 -72.5h-105q-22 -80 -22 -166q0 -90 53.5 -138t143.5 -48q68 0 152 11.5t135 22.5l50 11l-12 -121q-20 -7 -55.5 -16.5t-132 -26t-178.5 -16.5 q-150 0 -230 78t-80 233zM383 588h113q209 0 301 44.5t92 160.5q0 65 -40 93.5t-118 28.5q-253 0 -348 -327zM451 1202l317 309h109l176 -309h-154l-98 176l-183 -176h-167z" />
|
||||
<glyph unicode="ë" horiz-adv-x="946" d="M186 291q0 108 20 213.5t64 203.5t107 172.5t156 119t204 44.5q144 0 223.5 -60.5t79.5 -188.5q0 -183 -137 -255.5t-436 -72.5h-105q-22 -80 -22 -166q0 -90 53.5 -138t143.5 -48q68 0 152 11.5t135 22.5l50 11l-12 -121q-20 -7 -55.5 -16.5t-132 -26t-178.5 -16.5 q-150 0 -230 78t-80 233zM383 588h113q209 0 301 44.5t92 160.5q0 65 -40 93.5t-118 28.5q-253 0 -348 -327zM518 1270l43 190h141l-45 -190h-139zM907 1270l41 190h142l-46 -190h-137z" />
|
||||
<glyph unicode="ì" horiz-adv-x="421" d="M135 0l236 1024h153l-237 -1024h-152zM156 1397l73 121l379 -191l-67 -106z" />
|
||||
<glyph unicode="í" horiz-adv-x="421" d="M135 0l236 1024h153l-237 -1024h-152zM383 1339l467 193l14 -135l-467 -176z" />
|
||||
<glyph unicode="î" horiz-adv-x="421" d="M135 0l236 1024h153l-237 -1024h-152zM172 1202l317 309h109l178 -309h-155l-99 176l-182 -176h-168z" />
|
||||
<glyph unicode="ï" horiz-adv-x="421" d="M135 0l236 1024h153l-237 -1024h-152zM211 1270l45 190h141l-45 -190h-141zM600 1270l41 190h141l-45 -190h-137z" />
|
||||
<glyph unicode="ð" horiz-adv-x="1058" d="M168 346q20 240 169 388.5t355 148.5q64 0 139.5 -18t118.5 -36l43 -18q44 260 -188 406l-234 -152l-57 94l178 115q-91 37 -188 65l59 138q180 -40 293 -99l215 140l55 -95l-168 -108q264 -202 175 -584q-95 -394 -244 -571.5t-381 -177.5q-97 0 -169.5 30t-111.5 81.5 t-54 116t-5 136.5zM330 352q-11 -102 40 -160.5t173 -58.5q285 0 420 531q-16 8 -50 21.5t-108.5 32.5t-134.5 19q-138 0 -234.5 -110t-105.5 -275z" />
|
||||
<glyph unicode="ñ" horiz-adv-x="1019" d="M135 0h152l157 680q7 9 20 24.5t51.5 55t75 69.5t84 55t85.5 25q139 0 139 -153q0 -85 -39 -246l-119 -510h152l121 520q41 169 41 266q0 119 -61 188.5t-181 69.5q-49 0 -101 -20.5t-91 -49.5t-71.5 -58t-49.5 -50l-17 -20l37 178h-149zM518 1382q14 12 37.5 30 t77.5 48.5t88 30.5q38 0 91 -24.5t99.5 -49t67.5 -24.5q18 0 56.5 21t68.5 42l29 21l10 -115q-13 -12 -34.5 -29.5t-73 -46.5t-85.5 -29q-44 0 -139.5 49.5t-122.5 49.5q-21 0 -62 -22t-72 -44l-30 -22z" />
|
||||
<glyph unicode="ò" horiz-adv-x="1011" d="M186 315q0 191 64 357t183.5 269t268.5 103q174 0 264.5 -86.5t90.5 -261.5q0 -113 -22.5 -218.5t-67 -195.5t-106.5 -157.5t-145.5 -106t-178.5 -38.5q-174 0 -262.5 81t-88.5 254zM340 313q0 -97 49.5 -148.5t147.5 -51.5q109 0 194 82.5t128.5 215t43.5 287.5 q0 99 -50.5 156t-150.5 57q-106 0 -190 -86t-128 -221.5t-44 -290.5zM512 1397l74 121l379 -191l-68 -106z" />
|
||||
<glyph unicode="ó" horiz-adv-x="1011" d="M186 315q0 191 64 357t183.5 269t268.5 103q174 0 264.5 -86.5t90.5 -261.5q0 -113 -22.5 -218.5t-67 -195.5t-106.5 -157.5t-145.5 -106t-178.5 -38.5q-174 0 -262.5 81t-88.5 254zM340 313q0 -97 49.5 -148.5t147.5 -51.5q109 0 194 82.5t128.5 215t43.5 287.5 q0 99 -50.5 156t-150.5 57q-106 0 -190 -86t-128 -221.5t-44 -290.5zM604 1339l467 193l14 -135l-467 -176z" />
|
||||
<glyph unicode="ô" horiz-adv-x="1011" d="M186 315q0 191 64 357t183.5 269t268.5 103q174 0 264.5 -86.5t90.5 -261.5q0 -113 -22.5 -218.5t-67 -195.5t-106.5 -157.5t-145.5 -106t-178.5 -38.5q-174 0 -262.5 81t-88.5 254zM340 313q0 -97 49.5 -148.5t147.5 -51.5q109 0 194 82.5t128.5 215t43.5 287.5 q0 99 -50.5 156t-150.5 57q-106 0 -190 -86t-128 -221.5t-44 -290.5zM481 1202l318 309h108l178 -309h-155l-99 176l-182 -176h-168z" />
|
||||
<glyph unicode="õ" horiz-adv-x="1011" d="M186 315q0 191 64 357t183.5 269t268.5 103q174 0 264.5 -86.5t90.5 -261.5q0 -113 -22.5 -218.5t-67 -195.5t-106.5 -157.5t-145.5 -106t-178.5 -38.5q-174 0 -262.5 81t-88.5 254zM340 313q0 -97 49.5 -148.5t147.5 -51.5q109 0 194 82.5t128.5 215t43.5 287.5 q0 99 -50.5 156t-150.5 57q-106 0 -190 -86t-128 -221.5t-44 -290.5zM487 1382q14 12 37.5 30t77.5 48.5t88 30.5q38 0 91 -24.5t99.5 -49t67.5 -24.5q18 0 56.5 21t67.5 42l30 21l10 -115q-13 -12 -34.5 -29.5t-72.5 -46.5t-85 -29q-44 0 -140 49.5t-123 49.5 q-21 0 -61.5 -22t-71.5 -44l-30 -22z" />
|
||||
<glyph unicode="ö" horiz-adv-x="1011" d="M186 315q0 191 64 357t183.5 269t268.5 103q174 0 264.5 -86.5t90.5 -261.5q0 -113 -22.5 -218.5t-67 -195.5t-106.5 -157.5t-145.5 -106t-178.5 -38.5q-174 0 -262.5 81t-88.5 254zM340 313q0 -97 49.5 -148.5t147.5 -51.5q109 0 194 82.5t128.5 215t43.5 287.5 q0 99 -50.5 156t-150.5 57q-106 0 -190 -86t-128 -221.5t-44 -290.5zM537 1270l43 190h127l-45 -190h-125zM911 1270l41 190h127l-45 -190h-123z" />
|
||||
<glyph unicode="÷" d="M365 575v150h116v98h422v-98h115v-150h-653zM614 61v207h154v-207h-154z" />
|
||||
<glyph unicode="ø" horiz-adv-x="1011" d="M123 -188l158 249q-93 84 -93 258q0 191 64 357t184 269.5t269 103.5q98 0 174 -31l137 221l92 -41l-147 -231q98 -89 98 -267q0 -113 -22.5 -218.5t-67 -195.5t-106.5 -157.5t-145.5 -106t-178.5 -38.5q-103 0 -179 28l-147 -239zM342 317q0 -71 27 -118l211 331 l223 365q-39 20 -98 20q-106 0 -190.5 -86t-128.5 -221.5t-44 -290.5zM438 135q40 -18 101 -18q109 0 194 82.5t128.5 215t43.5 287.5q0 75 -31 129l-217 -342z" />
|
||||
<glyph unicode="ù" horiz-adv-x="1019" d="M201 238q0 97 41 266l120 520h152l-119 -510q-39 -161 -39 -246q0 -73 35.5 -113t104.5 -40q38 0 84.5 23.5t86 57.5t73 67.5t52.5 56.5l19 24l158 680h151l-235 -1024h-150l37 178q-6 -8 -17.5 -21.5t-48 -47.5t-73.5 -60t-89.5 -47.5t-101.5 -21.5q-118 0 -179.5 69.5 t-61.5 188.5zM516 1397l74 121l379 -191l-68 -106z" />
|
||||
<glyph unicode="ú" horiz-adv-x="1019" d="M201 238q0 97 41 266l120 520h152l-119 -510q-39 -161 -39 -246q0 -73 35.5 -113t104.5 -40q38 0 84.5 23.5t86 57.5t73 67.5t52.5 56.5l19 24l158 680h151l-235 -1024h-150l37 178q-6 -8 -17.5 -21.5t-48 -47.5t-73.5 -60t-89.5 -47.5t-101.5 -21.5q-118 0 -179.5 69.5 t-61.5 188.5zM627 1339l467 193l14 -135l-467 -176z" />
|
||||
<glyph unicode="û" horiz-adv-x="1019" d="M201 238q0 97 41 266l120 520h152l-119 -510q-39 -161 -39 -246q0 -73 35.5 -113t104.5 -40q38 0 84.5 23.5t86 57.5t73 67.5t52.5 56.5l19 24l158 680h151l-235 -1024h-150l37 178q-6 -8 -17.5 -21.5t-48 -47.5t-73.5 -60t-89.5 -47.5t-101.5 -21.5q-118 0 -179.5 69.5 t-61.5 188.5zM451 1202l317 309h109l176 -309h-154l-98 176l-183 -176h-167z" />
|
||||
<glyph unicode="ü" horiz-adv-x="1019" d="M201 238q0 97 41 266l120 520h152l-119 -510q-39 -161 -39 -246q0 -73 35.5 -113t104.5 -40q38 0 84.5 23.5t86 57.5t73 67.5t52.5 56.5l19 24l158 680h151l-235 -1024h-150l37 178q-6 -8 -17.5 -21.5t-48 -47.5t-73.5 -60t-89.5 -47.5t-101.5 -21.5q-118 0 -179.5 69.5 t-61.5 188.5zM508 1270l45 190h141l-45 -190h-141zM897 1270l41 190h141l-45 -190h-137z" />
|
||||
<glyph unicode="ý" horiz-adv-x="929" d="M215 -453l236 453h-140l-26 1024h151l17 -893h61l447 893h157l-747 -1477h-156zM578 1339l466 193l15 -135l-467 -176z" />
|
||||
<glyph unicode="þ" horiz-adv-x="989" d="M27 -451l452 1917h146l-129 -544q157 122 290 122q84 0 141.5 -34t84 -87t35 -123t0.5 -137.5t-27 -134.5q-77 -291 -203 -419.5t-342 -128.5q-44 0 -92.5 3.5t-77.5 8t-29 6.5l-106 -449h-143zM309 141l193 -20q145 0 228.5 98.5t141.5 310.5q16 55 20.5 115t-4.5 119 t-46.5 97t-100.5 38q-36 0 -78.5 -13.5t-77 -32.5t-64 -38t-46 -31.5t-16.5 -11.5z" />
|
||||
<glyph unicode="ÿ" horiz-adv-x="929" d="M215 -453l236 453h-140l-26 1024h151l17 -893h61l447 893h157l-747 -1477h-156zM467 1270l43 190h141l-45 -190h-139zM856 1270l41 190h141l-45 -190h-137z" />
|
||||
<glyph unicode="Œ" horiz-adv-x="1757" d="M219 334q-3 155 49 373q89 376 249.5 557.5t430.5 181.5q32 0 132 -7.5t137 -13.5h788l-33 -153h-643l-117 -477h527l-33 -150l-524 4l-117 -495h641l-37 -156h-784q-207 -18 -281 -18q-197 0 -288.5 88.5t-96.5 265.5zM377 395q0 -135 64 -198.5t212 -63.5q39 0 260 17 l269 1128q-105 14 -254 14q-105 0 -184.5 -35t-139.5 -110t-102 -180t-78 -258q-47 -193 -47 -314z" />
|
||||
<glyph unicode="œ" horiz-adv-x="1636" d="M182 225q-9 133 33 301q31 131 72 222.5t103.5 160.5t152 102t209.5 33q124 0 194.5 -47t93.5 -145q125 192 371 192q292 0 301 -268q4 -109 -26 -215l-35 -117l-631 5q-25 -114 -23 -164q5 -81 51 -121.5t142 -40.5q61 0 149.5 4.5t146.5 8.5l58 5l-24 -129 q-207 -32 -373 -32q-230 0 -275 172q-64 -89 -152 -130.5t-218 -41.5q-159 0 -236.5 60t-83.5 185zM332 270q3 -78 49.5 -113.5t150.5 -35.5q50 0 92 11t73 29t57.5 49t44.5 61t35 77t28 85t25 95q36 146 20 238q-12 71 -57 104t-131 33q-146 0 -225.5 -88.5t-126.5 -288.5 q-42 -178 -35 -256zM1049 573l489 -4q28 111 25 179q-1 80 -45.5 115.5t-135.5 35.5q-129 0 -210.5 -78t-122.5 -248z" />
|
||||
<glyph unicode="Ÿ" horiz-adv-x="1009" d="M348 1417h160l166 -661l469 661h170l-600 -811l-142 -606h-149l143 618zM610 1665l43 190h127l-47 -190h-123zM993 1665l45 190h127l-47 -190h-125z" />
|
||||
<glyph unicode="ˆ" horiz-adv-x="1619" d="M786 1202l318 309h82l178 -309h-141l-99 176l-182 -176h-156z" />
|
||||
<glyph unicode="˜" horiz-adv-x="874" d="M449 1382q14 12 37 30t77 48.5t88 30.5q38 0 91 -24.5t99.5 -49t67.5 -24.5q18 0 56.5 21t68.5 42l29 21l10 -115q-13 -12 -34.5 -29.5t-72.5 -46.5t-85 -29q-44 0 -140 49.5t-123 49.5q-21 0 -61.5 -22t-70.5 -44l-31 -22z" />
|
||||
<glyph unicode=" " horiz-adv-x="958" />
|
||||
<glyph unicode=" " horiz-adv-x="1917" />
|
||||
<glyph unicode=" " horiz-adv-x="958" />
|
||||
<glyph unicode=" " horiz-adv-x="1917" />
|
||||
<glyph unicode=" " horiz-adv-x="639" />
|
||||
<glyph unicode=" " horiz-adv-x="479" />
|
||||
<glyph unicode=" " horiz-adv-x="319" />
|
||||
<glyph unicode=" " horiz-adv-x="319" />
|
||||
<glyph unicode=" " horiz-adv-x="239" />
|
||||
<glyph unicode=" " horiz-adv-x="383" />
|
||||
<glyph unicode=" " horiz-adv-x="106" />
|
||||
<glyph unicode="‐" horiz-adv-x="690" d="M201 477l35 141h505l-34 -141h-506z" />
|
||||
<glyph unicode="‑" horiz-adv-x="690" d="M201 477l35 141h505l-34 -141h-506z" />
|
||||
<glyph unicode="‒" horiz-adv-x="690" d="M201 477l35 141h505l-34 -141h-506z" />
|
||||
<glyph unicode="–" horiz-adv-x="1216" d="M223 481v135h1024v-135h-1024z" />
|
||||
<glyph unicode="—" horiz-adv-x="2240" d="M223 481v135h2048v-135h-2048z" />
|
||||
<glyph unicode="‘" horiz-adv-x="370" d="M289 958l227 457h115l-187 -457h-155z" />
|
||||
<glyph unicode="’" horiz-adv-x="370" d="M293 961l186 456h156l-227 -456h-115z" />
|
||||
<glyph unicode="‚" horiz-adv-x="352" d="M-29 -274l187 456h155l-227 -456h-115z" />
|
||||
<glyph unicode="“" horiz-adv-x="692" d="M287 961l227 456h115l-187 -456h-155zM610 961l228 456h114l-186 -456h-156z" />
|
||||
<glyph unicode="”" horiz-adv-x="694" d="M293 961l186 456h156l-227 -456h-115zM616 961l187 456h155l-227 -456h-115z" />
|
||||
<glyph unicode="„" horiz-adv-x="665" d="M-59 -276l227 456h115l-187 -456h-155zM281 -276l227 456h115l-187 -456h-155z" />
|
||||
<glyph unicode="•" horiz-adv-x="993" d="M358 217v586h512v-586h-512z" />
|
||||
<glyph unicode="…" horiz-adv-x="1310" d="M96 0l54 227h155l-53 -227h-156zM580 0l53 227h155l-53 -227h-155zM1061 0l53 227h156l-53 -227h-156z" />
|
||||
<glyph unicode=" " horiz-adv-x="383" />
|
||||
<glyph unicode="‹" horiz-adv-x="524" d="M164 469l29 78l436 291l-45 -158l-269 -178l181 -197l-41 -141z" />
|
||||
<glyph unicode="›" horiz-adv-x="526" d="M129 164l45 158l268 178l-180 196l41 142l291 -306l-29 -77z" />
|
||||
<glyph unicode=" " horiz-adv-x="479" />
|
||||
<glyph unicode="€" d="M205 428l28 127h91q10 90 45 215h-86l30 125h97q41 102 95 186t125.5 151t164 104.5t198.5 37.5q69 0 150.5 -11t128.5 -23l47 -11l-33 -119q-152 31 -299 31q-136 0 -241.5 -94t-174.5 -252h549l-28 -125h-566q-30 -90 -47 -215h563l-28 -127h-547v-53q0 -132 58.5 -197 t183.5 -65q69 0 149 8.5t125 16.5l45 9l-10 -124q-174 -43 -330 -43q-377 0 -377 389v59h-106z" />
|
||||
<glyph unicode="™" horiz-adv-x="1431" d="M449 1188v102h409v-102h-135v-508h-113v508h-161zM922 678v612h145l137 -426l144 426h145v-612h-107v459l-137 -428h-88l-133 428v-459h-106z" />
|
||||
<glyph unicode="" horiz-adv-x="1024" d="M0 0v1024h1024v-1024h-1024z" />
|
||||
</font>
|
||||
</defs></svg>
|
After Width: | Height: | Size: 57 KiB |
BIN
fonts/titillium-regularitalic-webfont.ttf
Normal file
BIN
fonts/titillium-regularitalic-webfont.woff
Normal file
BIN
fonts/titillium-semibold-webfont.eot
Normal file
240
fonts/titillium-semibold-webfont.svg
Normal file
|
@ -0,0 +1,240 @@
|
|||
<?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></metadata>
|
||||
<defs>
|
||||
<font id="TitilliumBold" horiz-adv-x="1146" >
|
||||
<font-face units-per-em="2048" ascent="1536" descent="-512" />
|
||||
<missing-glyph horiz-adv-x="450" />
|
||||
<glyph horiz-adv-x="0" />
|
||||
<glyph horiz-adv-x="2048" />
|
||||
<glyph unicode=" " horiz-adv-x="450" />
|
||||
<glyph unicode="	" horiz-adv-x="450" />
|
||||
<glyph unicode=" " horiz-adv-x="450" />
|
||||
<glyph unicode="!" horiz-adv-x="544" d="M152 0v287h239v-287h-239zM154 1403h237l-20 -909h-197z" />
|
||||
<glyph unicode=""" horiz-adv-x="808" d="M123 1403h217l-12 -475h-197zM471 1403h215l-12 -475h-195z" />
|
||||
<glyph unicode="#" d="M41 328v186h209v311h-209v187h209v346h194v-346h258v346h195v-346h209v-187h-209v-311h209v-186h-209v-328h-195v328h-258v-328h-194v328h-209zM444 514h258v311h-258v-311z" />
|
||||
<glyph unicode="$" d="M121 991q0 195 119 289t331 94h37l35 275h131l-37 -285q60 -6 125.5 -15.5t101.5 -15.5l35 -6l-18 -176q-145 17 -266 25l-51 -396q105 -30 170.5 -60t111.5 -73.5t65 -102t19 -143.5q0 -213 -121.5 -318.5t-330.5 -105.5h-17l-29 -237q-131 6 -131 14l29 232 q-65 6 -139 17.5t-115 19.5l-41 8l23 176q162 -23 297 -31l55 424q-106 29 -176 60.5t-119.5 77.5t-71.5 107t-22 146zM340 1006q0 -76 42 -115.5t155 -75.5l47 367q-244 -3 -244 -176zM586 172q223 9 223 217q0 70 -37.5 108.5t-134.5 67.5z" />
|
||||
<glyph unicode="%" d="M41 1083q0 146 61.5 218.5t176.5 72.5q235 0 235 -291q0 -147 -61.5 -221t-173.5 -74q-114 0 -176 74t-62 221zM209 1083q0 -81 15.5 -118t54.5 -37t54 36.5t15 118.5t-15 118t-54 36t-54.5 -36t-15.5 -118zM283 -12l454 1427l127 -43l-454 -1425zM633 272 q0 146 60.5 218.5t174.5 72.5q115 0 176.5 -73t61.5 -218q0 -147 -62 -221t-176 -74q-112 0 -173.5 74t-61.5 221zM799 272q0 -82 15 -119.5t54 -37.5q40 0 55 37t15 120q0 81 -15 116.5t-55 35.5q-39 0 -54 -35.5t-15 -116.5z" />
|
||||
<glyph unicode="&" horiz-adv-x="1425" d="M78 408q0 169 72 262.5t231 152.5q-80 93 -104.5 156.5t-24.5 163.5q0 141 105.5 223t287.5 82q191 0 291 -83.5t100 -238.5q0 -94 -32 -162.5t-92.5 -121t-172.5 -117.5l250 -248q13 40 28.5 135t18.5 158l215 -4q-12 -108 -40.5 -228t-59.5 -192l244 -223l-127 -146 l-232 201q-68 -94 -180.5 -147.5t-247.5 -53.5q-148 0 -252 29t-164.5 86.5t-87 134.5t-26.5 181zM303 426q0 -125 68 -187.5t213 -62.5q98 0 180 33.5t121 93.5l-387 387q-102 -39 -148.5 -100.5t-46.5 -163.5zM477 1098q0 -101 92 -199l45 -47q109 61 153 114.5t44 137.5 q0 80 -40.5 118t-125.5 38q-80 0 -124 -40.5t-44 -121.5z" />
|
||||
<glyph unicode="'" horiz-adv-x="460" d="M125 1403h217l-14 -475h-197z" />
|
||||
<glyph unicode="(" horiz-adv-x="591" d="M88 616q0 131 23.5 274t57.5 253.5t67.5 202t57.5 140.5l23 50h211q-8 -21 -21 -58.5t-46.5 -148.5t-59 -217t-46.5 -245t-21 -251t20 -243.5t48.5 -238t57 -197.5t48.5 -142l20 -51h-211q-9 16 -24.5 46t-55 125t-69.5 192t-55 237.5t-25 271.5z" />
|
||||
<glyph unicode=")" horiz-adv-x="591" d="M63 -256q8 19 21 53t46.5 137t59.5 203t47 233.5t21 245.5t-20 248t-48.5 250t-57.5 212t-49 154l-20 56h211q9 -18 24.5 -51.5t55.5 -136.5t70 -206.5t55 -249t25 -276.5t-23.5 -269.5t-57.5 -241.5t-68 -187.5t-57 -129.5l-24 -44h-211z" />
|
||||
<glyph unicode="*" horiz-adv-x="866" d="M94 938l219 162l-213 151l80 111l211 -154l82 252l131 -43l-80 -254h258v-131h-260l80 -250l-127 -39l-84 252l-215 -161z" />
|
||||
<glyph unicode="+" d="M106 414v200h365v367h201v-367h368v-200h-368v-371h-201v371h-365z" />
|
||||
<glyph unicode="," horiz-adv-x="503" d="M53 -252l99 506h245l-164 -506h-180z" />
|
||||
<glyph unicode="-" horiz-adv-x="862" d="M125 451v202h612v-202h-612z" />
|
||||
<glyph unicode="." horiz-adv-x="489" d="M125 0v295h240v-295h-240z" />
|
||||
<glyph unicode="/" horiz-adv-x="907" d="M66 18l583 1444l197 -71l-586 -1442z" />
|
||||
<glyph unicode="0" d="M61 662q0 196 33.5 334.5t101 221t159.5 119.5t218 37q127 0 219 -37t158.5 -119t99.5 -220.5t33 -335.5q0 -190 -33.5 -323.5t-100.5 -212.5t-159 -114t-217 -35q-126 0 -217.5 35t-159 113.5t-101.5 212t-34 324.5zM297 662q0 -183 31.5 -291t91 -151.5t155.5 -43.5 q95 0 153.5 43.5t89 151.5t30.5 291q0 197 -30 310t-88.5 158.5t-156.5 45.5q-73 0 -123 -24.5t-85 -83t-51.5 -158t-16.5 -248.5z" />
|
||||
<glyph unicode="1" d="M180 1059l441 293h208v-1352h-227v1094l-317 -205z" />
|
||||
<glyph unicode="2" d="M137 0v195l334 344q77 79 118 124.5t82 101.5t57.5 104t16.5 100q0 113 -59.5 157.5t-193.5 44.5q-64 0 -147 -9t-134 -18l-51 -9l-15 180q22 7 61 16.5t144.5 26t194.5 16.5q223 0 329.5 -93t106.5 -284q0 -101 -32 -184t-91.5 -156.5t-171.5 -177.5l-289 -280h611v-199 h-871z" />
|
||||
<glyph unicode="3" d="M121 41l14 176q225 -41 397 -41q125 2 185.5 54.5t60.5 162.5q0 99 -63 150t-168 53h-273v190h273q75 0 140 62.5t65 148.5q0 93 -56 136t-180 43q-76 0 -166.5 -10t-143.5 -20l-52 -9l-19 172q21 7 58.5 18t141.5 29t195 18q249 0 353 -86.5t104 -275.5q0 -50 -12 -94.5 t-29 -74.5t-43 -58.5t-46.5 -44t-47.5 -33.5q53 -25 85 -45.5t62.5 -55t44 -85t13.5 -122.5q0 -214 -107.5 -318t-343.5 -104q-92 0 -202.5 16t-174.5 32z" />
|
||||
<glyph unicode="4" d="M82 242v174l356 936h252l-377 -912h377v398h230v-398h147v-198h-147v-242h-230v242h-608z" />
|
||||
<glyph unicode="5" d="M115 47l24 172q242 -41 414 -41q119 0 184.5 65.5t65.5 186.5t-58 174t-172 53q-69 0 -140 -13.5t-107 -27.5l-37 -14l-144 31l37 719h809v-201h-626l-35 -356q16 7 42.5 17.5t99 28t132.5 17.5q434 0 434 -405q0 -229 -119.5 -352.5t-338.5 -123.5q-93 0 -209 17.5 t-186 35.5z" />
|
||||
<glyph unicode="6" d="M84 676q0 698 549 698q76 0 174 -12t157 -24l60 -13l-20 -178q-199 29 -371 29q-153 0 -232.5 -100.5t-81.5 -280.5l47 15q47 15 120.5 31.5t127.5 16.5q228 0 343.5 -105.5t115.5 -324.5q0 -221 -127 -336t-358 -115q-256 0 -380 182t-124 517zM317 598 q1 -126 26 -216.5t87 -148t158 -57.5q121 0 185.5 65t64.5 187q0 114 -63.5 171.5t-180.5 57.5q-57 0 -126.5 -14.5t-109.5 -29.5z" />
|
||||
<glyph unicode="7" d="M150 1147v205h851v-271l-497 -1104l-213 62l481 1046v62h-622z" />
|
||||
<glyph unicode="8" d="M61 344q0 72 13 126t41.5 95.5t60 70t82.5 64.5q-97 64 -135.5 132.5t-38.5 183.5q0 172 130 265t355 93t359.5 -93t134.5 -267q0 -122 -38 -185.5t-142 -128.5q52 -33 85 -61t61 -67t41 -89t13 -116q0 -85 -26.5 -152t-72.5 -111t-112 -73t-140.5 -41.5t-162.5 -12.5 q-508 0 -508 367zM305 393q0 -211 264 -211q271 0 271 215q0 76 -44.5 122.5t-127.5 72.5h-197q-166 -53 -166 -199zM328 981q0 -67 35 -113t108 -82h197q75 35 113 81.5t38 113.5q0 94 -64 141t-184 47q-243 0 -243 -188z" />
|
||||
<glyph unicode="9" d="M70 924q0 210 129.5 330t353.5 120q256 0 381 -182t125 -514q0 -195 -37.5 -332.5t-111.5 -217.5t-172 -115.5t-230 -35.5q-76 0 -174 12.5t-158 24.5l-59 13l20 178q199 -29 371 -29q312 0 315 393l-48 -17q-48 -16 -123 -34t-128 -18q-221 0 -337.5 105.5t-116.5 318.5 zM305 924q0 -224 238 -224q56 0 126.5 15t112.5 30l43 15q-4 416 -272 416q-117 0 -182.5 -67.5t-65.5 -184.5z" />
|
||||
<glyph unicode=":" horiz-adv-x="489" d="M125 0v295h240v-295h-240zM125 621v294h240v-294h-240z" />
|
||||
<glyph unicode=";" horiz-adv-x="544" d="M74 -252h180l164 506h-246zM158 621v294h239v-294h-239z" />
|
||||
<glyph unicode="<" d="M131 422v184l840 393v-227l-602 -254l602 -266v-229z" />
|
||||
<glyph unicode="=" d="M125 211v201h897v-201h-897zM125 616v201h897v-201h-897z" />
|
||||
<glyph unicode=">" d="M176 23v229l602 266l-602 254v227l840 -393v-184z" />
|
||||
<glyph unicode="?" horiz-adv-x="903" d="M68 1358q21 8 57 19t128 29.5t161 18.5q216 0 316.5 -78t100.5 -253q0 -137 -34 -208.5t-144 -160.5q-98 -76 -132 -123.5t-34 -103.5v-68h-180q-5 7 -13.5 20.5t-22 55t-13.5 84.5q0 52 39 102.5t127 124.5q113 92 145.5 138.5t32.5 115.5q0 79 -50.5 117.5t-166.5 38.5 q-56 0 -132.5 -9.5t-124.5 -19.5l-48 -10zM272 0v287h238v-287h-238z" />
|
||||
<glyph unicode="@" horiz-adv-x="1996" d="M90 535q0 244 65.5 427t189.5 297.5t295 171t390 56.5q453 0 673 -216.5t220 -645.5v-21q0 -140 -16.5 -244.5t-47.5 -174t-78.5 -112.5t-104.5 -61t-132 -18q-59 0 -107 12.5t-74.5 30t-45 34.5t-25.5 29l-6 13q-7 -5 -20.5 -13t-52.5 -28t-76.5 -35.5t-87.5 -28 t-91 -12.5q-86 0 -150.5 23.5t-116 79.5t-78.5 159t-27 252q0 265 90 391.5t311 126.5q38 0 90.5 -13t85.5 -25l33 -13v29h221v-377q0 -67 0.5 -113t1.5 -91.5t3 -74.5t6 -57t8.5 -43.5t12.5 -30t16 -20.5t21 -11.5t26 -6.5t32 -1q26 0 45.5 6t38 22.5t31 46.5t22.5 76.5 t14.5 114.5t4.5 158v23q0 349 -158.5 507t-511.5 158q-357 0 -538 -190.5t-181 -566.5q0 -408 167 -585t552 -177q44 0 117 4.5t125 8.5l51 5l10 -194q-188 -19 -303 -19q-188 0 -331 28.5t-260.5 95.5t-192.5 176.5t-115.5 273.5t-40.5 383zM811 508q0 -318 166 -318 q80 0 233 70q-14 82 -14 277v266q-103 31 -164 31q-132 0 -176.5 -74.5t-44.5 -251.5z" />
|
||||
<glyph unicode="A" horiz-adv-x="1226" d="M41 0l346 1403h453l348 -1403h-230l-75 301h-539l-76 -301h-227zM389 502h449l-172 710h-103z" />
|
||||
<glyph unicode="B" horiz-adv-x="1253" d="M162 0v1403h532q214 0 321 -87t107 -278q0 -124 -39.5 -196t-126.5 -119q98 -38 149.5 -113.5t51.5 -212.5q0 -397 -446 -397h-549zM389 197h309q113 0 169.5 46.5t56.5 166.5q0 57 -20 98.5t-54 63t-72.5 31t-83.5 9.5h-305v-415zM389 805h301q103 0 152 51.5t49 155.5 q0 100 -52 147t-157 47h-293v-401z" />
|
||||
<glyph unicode="C" horiz-adv-x="1114" d="M106 700q0 158 14.5 270.5t50 202.5t96 143.5t150.5 81t216 27.5q177 0 401 -51l-8 -184q-72 13 -181 23t-181 10q-79 0 -133 -17t-91.5 -52t-58.5 -99t-30 -148t-9 -207q0 -101 5 -172.5t18.5 -133t36.5 -99.5t60 -65t87.5 -38.5t120.5 -11.5q161 0 356 31l6 -188 q-221 -46 -399 -46q-127 0 -219 30t-151.5 85.5t-94.5 147t-48.5 200.5t-13.5 260z" />
|
||||
<glyph unicode="D" horiz-adv-x="1312" d="M162 0v1403h485q134 0 232 -29.5t161 -83t100.5 -139.5t52.5 -187.5t15 -238.5q0 -142 -13.5 -247t-50.5 -199t-99 -152.5t-162 -92.5t-236 -34h-485zM389 201h258q83 0 142.5 26t94.5 69t55.5 113t27 142.5t6.5 173.5q0 83 -4.5 143t-17 117.5t-35.5 95t-58.5 67t-88 43 t-122.5 13.5h-258v-1003z" />
|
||||
<glyph unicode="E" horiz-adv-x="1132" d="M162 0v1403h885v-199h-658v-397h535v-197h-535v-409h658v-201h-885z" />
|
||||
<glyph unicode="F" horiz-adv-x="1083" d="M162 0v1403h870v-199h-643v-473h535v-199h-535v-532h-227z" />
|
||||
<glyph unicode="G" horiz-adv-x="1255" d="M102 700q0 190 27.5 322t92 224.5t171 135.5t262.5 43q96 0 215.5 -13.5t191.5 -27.5l71 -14l-9 -180q-248 33 -434 33q-86 0 -145 -17t-100 -52.5t-64 -99t-33 -147.5t-10 -207q0 -120 8.5 -201.5t30.5 -147t61.5 -102t99 -55t146.5 -18.5q62 0 131 6.5t92 12.5v342 h-174v200h400v-712q-16 -4 -89.5 -14.5t-188.5 -22t-191 -11.5q-132 0 -229.5 31.5t-161 88.5t-102 148.5t-54 200t-15.5 254.5z" />
|
||||
<glyph unicode="H" horiz-adv-x="1384" d="M162 0v1403h227v-598h606v598h230v-1403h-230v606h-606v-606h-227z" />
|
||||
<glyph unicode="I" horiz-adv-x="550" d="M162 0v1403h227v-1403h-227z" />
|
||||
<glyph unicode="J" horiz-adv-x="606" d="M39 55q56 0 88 6t56.5 24.5t34 53.5t9.5 94v1170h226l2 -1186q0 -92 -16 -155.5t-46 -104.5t-83 -63t-115.5 -30.5t-155.5 -8.5v200z" />
|
||||
<glyph unicode="K" horiz-adv-x="1193" d="M162 0v1403h227v-633l209 16l287 617h260l-346 -705l360 -698h-264l-297 586l-209 -15v-571h-227z" />
|
||||
<glyph unicode="L" horiz-adv-x="972" d="M162 0v1403h227v-1200h559v-203h-786z" />
|
||||
<glyph unicode="M" horiz-adv-x="1740" d="M162 0v1403h395l313 -1096l314 1096h397v-1403h-229v1151h-31l-332 -1094h-237l-332 1094h-31v-1151h-227z" />
|
||||
<glyph unicode="N" horiz-adv-x="1404" d="M162 0v1403h397l426 -1202h31v1202h227v-1403h-389l-436 1204h-29v-1204h-227z" />
|
||||
<glyph unicode="O" horiz-adv-x="1343" d="M100 694q0 145 17.5 256.5t58 203t106 150t163 90t227.5 31.5q162 0 273.5 -47t176 -143t92 -226.5t27.5 -314.5q0 -185 -27.5 -314t-92.5 -222t-175.5 -137t-273.5 -44q-131 0 -228.5 29.5t-163 86t-106 145.5t-57.5 199.5t-17 256.5zM336 694q0 -138 14.5 -229.5 t51.5 -159.5t103 -98.5t167 -30.5t166.5 29.5t102.5 97t51 159t14 232.5q0 110 -9 190t-31 147.5t-59.5 109t-96 64t-138.5 22.5t-138.5 -22.5t-96.5 -64t-60.5 -109t-31.5 -148t-9 -189.5z" />
|
||||
<glyph unicode="P" horiz-adv-x="1210" d="M162 0v1403h514q477 0 477 -471q0 -241 -120 -368.5t-357 -127.5h-287v-436h-227zM389 633h285q246 0 246 299q0 144 -59 209t-187 65h-285v-573z" />
|
||||
<glyph unicode="Q" horiz-adv-x="1343" d="M100 694q0 145 17.5 256.5t58 203t106 150t163 90t227.5 31.5q162 0 273.5 -47t176 -143t92 -226.5t27.5 -314.5q0 -245 -51.5 -396.5t-171.5 -231.5l172 -277l-211 -98l-182 299q-44 -13 -125 -13q-131 0 -228.5 29.5t-163 85.5t-106 145t-57.5 199.5t-17 257.5z M336 694q0 -111 9 -190t31 -144t60 -104t96.5 -59.5t139.5 -20.5q101 0 166.5 29.5t102.5 96.5t51 159t14 233q0 110 -9 190t-31 147.5t-59.5 109t-96 64t-138.5 22.5t-138.5 -22.5t-96.5 -64t-60.5 -109t-31.5 -148t-9 -189.5z" />
|
||||
<glyph unicode="R" horiz-adv-x="1265" d="M162 0v1403h532q236 0 355.5 -108.5t119.5 -338.5q0 -298 -229 -405l231 -551h-249l-203 500h-330v-500h-227zM389 696h309q122 0 180 70.5t58 187.5q0 122 -60.5 187t-181.5 65h-305v-510z" />
|
||||
<glyph unicode="S" horiz-adv-x="1112" d="M86 1028q0 205 123.5 302t343.5 97q79 0 190 -12.5t183 -24.5l71 -12l-18 -184q-287 33 -406 33q-260 0 -260 -183q0 -33 6 -57.5t23 -45t37.5 -35t60.5 -30.5t80 -28t107 -31q117 -33 188 -63.5t122 -76.5t71 -107t20 -152q0 -222 -126 -331.5t-343 -109.5 q-81 0 -195.5 14t-189.5 28l-74 14l23 182q277 -37 422 -37q254 0 254 225q0 88 -57.5 130t-221.5 81q-119 31 -196.5 63.5t-133 81t-80 113.5t-24.5 156z" />
|
||||
<glyph unicode="T" horiz-adv-x="1077" d="M27 1200v203h1024v-203h-396v-1200h-229v1200h-399z" />
|
||||
<glyph unicode="U" horiz-adv-x="1331" d="M150 453v950h229v-954q0 -140 71.5 -206.5t213.5 -66.5q288 0 288 273v954h230v-950q0 -248 -130 -362t-388 -114q-257 0 -385.5 114t-128.5 362z" />
|
||||
<glyph unicode="V" horiz-adv-x="1216" d="M41 1403h238l278 -1202h102l279 1202h238l-345 -1403h-446z" />
|
||||
<glyph unicode="W" horiz-adv-x="1865" d="M49 1403h240l200 -1206h43l267 1202h266l266 -1202h45l201 1206h240l-277 -1403h-366l-242 1124l-240 -1124h-368z" />
|
||||
<glyph unicode="X" horiz-adv-x="1155" d="M27 0l417 678l-417 725h256l301 -553l305 553h239l-415 -713l415 -690h-254l-301 528l-307 -528h-239z" />
|
||||
<glyph unicode="Y" horiz-adv-x="1124" d="M8 1403h256l297 -602l299 602h254l-436 -825v-578h-229v578z" />
|
||||
<glyph unicode="Z" horiz-adv-x="1093" d="M86 0v217l649 946v41h-649v199h922v-219l-652 -946v-39h652v-199h-922z" />
|
||||
<glyph unicode="[" horiz-adv-x="704" d="M150 -252v1786h477v-199h-252v-1388h252v-199h-477z" />
|
||||
<glyph unicode="\" horiz-adv-x="964" d="M63 1372l193 86l645 -1431l-194 -82z" />
|
||||
<glyph unicode="]" horiz-adv-x="704" d="M78 -53h252v1388h-252v199h477v-1786h-477v199z" />
|
||||
<glyph unicode="^" d="M76 647l389 705h192l396 -705h-234l-254 488l-256 -488h-233z" />
|
||||
<glyph unicode="_" horiz-adv-x="1280" d="M203 -166h876v-190h-876v190z" />
|
||||
<glyph unicode="`" horiz-adv-x="520" d="M-20 1339l69 193l483 -207l-53 -145z" />
|
||||
<glyph unicode="a" horiz-adv-x="1038" d="M70 303q0 156 82.5 225.5t255.5 83.5l264 23v74q0 82 -36 114.5t-114 32.5q-61 0 -157 -5t-162 -10l-66 -5l-8 157q224 54 412 54q186 0 269 -81t83 -257v-467q3 -45 24 -67t66 -28l-6 -170q-96 0 -156 16.5t-116 59.5q-18 -9 -50 -21.5t-119 -33.5t-161 -21 q-152 0 -228.5 83t-76.5 243zM293 309q0 -149 125 -149q52 0 115.5 11t100.5 23l38 11v272l-238 -22q-141 -12 -141 -146z" />
|
||||
<glyph unicode="b" horiz-adv-x="1097" d="M135 2v1448h221v-465q16 7 42.5 17.5t94.5 27.5t119 17q212 0 305 -118.5t93 -402.5q0 -161 -26 -265t-87 -168t-153 -90t-234 -26q-48 0 -142 6.5t-164 12.5zM356 184q113 -8 154 -8q85 0 138 18.5t83 63.5t40.5 107t10.5 161q0 172 -46.5 247t-149.5 75 q-48 0 -105.5 -10t-90.5 -20l-34 -11v-623z" />
|
||||
<glyph unicode="c" horiz-adv-x="905" d="M90 526q0 276 100 398.5t328 122.5q48 0 125 -9.5t129 -19.5l53 -10l-8 -177q-161 17 -239 17q-156 0 -209.5 -70t-53.5 -252q0 -104 10 -166.5t39.5 -106t80.5 -60.5t135 -17q35 0 94.5 4t101.5 8l43 5l6 -179q-207 -37 -311 -37q-234 0 -329 125.5t-95 423.5z" />
|
||||
<glyph unicode="d" horiz-adv-x="1105" d="M88 510q0 278 103 407.5t323 129.5q72 0 234 -27v430h223v-1450h-221v53q-17 -9 -45.5 -21.5t-101 -33.5t-128.5 -21q-134 0 -217.5 50.5t-126.5 168.5t-43 314zM313 510q0 -128 24 -203t65.5 -103t107.5 -28q52 0 111.5 13t92.5 25l34 13v607q-120 20 -218 20 q-113 0 -165 -84t-52 -260z" />
|
||||
<glyph unicode="e" horiz-adv-x="1040" d="M86 502q0 545 444 545q216 0 323.5 -115.5t107.5 -353.5l-15 -160h-635q2 -126 55.5 -186t178.5 -60q72 0 166.5 4.5t152.5 9.5l58 4l4 -165q-234 -48 -414 -48q-227 0 -326.5 125.5t-99.5 399.5zM309 590h432q0 151 -48.5 211.5t-162.5 60.5q-115 0 -167.5 -63 t-53.5 -209z" />
|
||||
<glyph unicode="f" horiz-adv-x="708" d="M63 834v190h119v66q0 219 63.5 301t225.5 82q31 0 86.5 -5.5t94.5 -10.5l40 -5l-2 -182q-101 4 -164 4q-70 0 -96.5 -40.5t-26.5 -146.5v-63h271v-190h-271v-834h-221v834h-119z" />
|
||||
<glyph unicode="g" horiz-adv-x="1075" d="M86 -180q0 74 36.5 129t119.5 119q-32 22 -50 61.5t-18 87.5q0 21 18.5 62t37.5 71l18 31q-43 26 -73 59t-52.5 97t-22.5 151q0 184 110.5 270t299.5 86q42 0 94 -6.5t84 -13.5l31 -6l317 8v-180l-170 10q56 -73 56 -168q0 -103 -26.5 -172.5t-81.5 -109t-129 -56 t-181 -16.5q-54 0 -90 8q-29 -69 -29 -96q0 -35 14.5 -50.5t59 -22t147.5 -7.5q125 -1 203.5 -15t129.5 -50t71 -93t20 -147q0 -89 -35 -154.5t-99.5 -104.5t-148.5 -58t-190 -19q-245 0 -358 64t-113 231zM305 -160q0 -71 58 -102t196 -31q126 0 187 33.5t61 107.5 q0 34 -7.5 55.5t-21 35.5t-42.5 21t-61 9.5t-87 3.5q-28 0 -78 3.5t-86 6.5l-37 3q-45 -37 -63.5 -68.5t-18.5 -77.5zM322 688q0 -94 45 -138t143 -44q102 0 146 43.5t44 138.5q0 94 -44.5 138t-145.5 44q-98 0 -143 -44.5t-45 -137.5z" />
|
||||
<glyph unicode="h" horiz-adv-x="1118" d="M135 0v1450h223v-479q17 9 46 21.5t103.5 33.5t131.5 21q106 0 175.5 -29.5t108.5 -94.5t54.5 -153.5t15.5 -220.5v-549h-223v543q0 67 -4 111.5t-15 84t-31 62t-52.5 35t-79.5 12.5q-50 0 -107.5 -11t-90.5 -23l-32 -11v-803h-223z" />
|
||||
<glyph unicode="i" horiz-adv-x="493" d="M135 0v1024h223v-1024h-223zM135 1198v236h223v-236h-223z" />
|
||||
<glyph unicode="j" horiz-adv-x="495" d="M-84 -299q62 39 95.5 63.5t62 52.5t40 58.5t17.5 68t6 95.5v985h221v-987q0 -138 -31.5 -221.5t-103.5 -145t-219 -135.5zM137 1198v236h221v-236h-221z" />
|
||||
<glyph unicode="k" horiz-adv-x="1021" d="M135 0v1450h223v-838l127 13l242 399h250l-295 -479l311 -545h-252l-249 432l-134 -14v-418h-223z" />
|
||||
<glyph unicode="l" horiz-adv-x="518" d="M147 0v1450h224v-1450h-224z" />
|
||||
<glyph unicode="m" horiz-adv-x="1716" d="M135 0v1024h221v-63q16 10 44 24t98.5 38t124.5 24q93 0 155 -24t105 -77q21 11 56.5 28t128.5 45t167 28q105 0 173 -28t108.5 -91.5t56.5 -153t16 -225.5v-549h-221v543q0 66 -3.5 111t-14.5 84.5t-30 62t-50 35t-76 12.5q-50 0 -108.5 -14t-91.5 -28l-33 -13 q6 -15 11 -100.5t5 -162.5v-530h-221v526q0 74 -3.5 121.5t-14 89t-30 64t-51 35t-77.5 12.5q-51 0 -106.5 -13t-85.5 -27l-30 -13v-795h-223z" />
|
||||
<glyph unicode="n" horiz-adv-x="1118" d="M135 0v1024h221v-63q17 10 45.5 24t103.5 38t134 24q106 0 175.5 -29.5t108.5 -94.5t54.5 -153.5t15.5 -220.5v-549h-221v543q0 166 -35.5 235.5t-146.5 69.5q-53 0 -111 -13t-89 -27l-32 -13v-795h-223z" />
|
||||
<glyph unicode="o" horiz-adv-x="1085" d="M86 518q0 262 105.5 395.5t351.5 133.5q126 0 215 -35.5t141.5 -105.5t76 -164.5t23.5 -223.5q0 -133 -22 -229t-73.5 -168t-141 -108t-219.5 -36q-129 0 -218.5 36t-141.5 108t-74.5 168t-22.5 229zM311 518q0 -94 9.5 -156t35 -108.5t71 -67t116.5 -20.5t116.5 20.5 t70.5 67t34.5 108t9.5 156.5q0 184 -50 262t-181 78q-132 0 -182 -78t-50 -262z" />
|
||||
<glyph unicode="p" horiz-adv-x="1099" d="M135 -440v1464h221v-63q16 10 43 24t97 38t125 24q202 0 296.5 -124t94.5 -401q0 -158 -26.5 -263.5t-85.5 -167.5t-142 -88t-205 -26q-81 0 -195 19v-436h-223zM358 186q80 -16 181 -16q140 0 192.5 79.5t52.5 272.5q0 174 -51 250t-151 76q-48 0 -104 -14t-88 -28 l-32 -15v-605z" />
|
||||
<glyph unicode="q" horiz-adv-x="1095" d="M88 498q0 160 26.5 265t88 168.5t153 89.5t230.5 26q50 0 144 -6.5t162 -12.5l69 -6v-1462h-222v479q-15 -7 -41 -17.5t-92.5 -27.5t-116.5 -17q-212 0 -306.5 119.5t-94.5 401.5zM311 498q0 -169 50.5 -245.5t154.5 -76.5q48 0 104 10t88 20l31 11v629q-98 8 -153 8 q-83 0 -137 -20t-84.5 -66t-42 -109t-11.5 -161z" />
|
||||
<glyph unicode="r" horiz-adv-x="739" d="M135 0v1024h221v-123q20 13 53.5 32.5t126 59t169.5 54.5v-224q-83 -16 -169.5 -43t-131.5 -46l-46 -19v-715h-223z" />
|
||||
<glyph unicode="s" horiz-adv-x="960" d="M82 727q0 84 31 146.5t85 99t121 54t146 17.5q67 0 163 -11.5t159 -22.5l63 -11l-4 -186q-242 33 -365 33q-94 0 -136 -25.5t-42 -87.5q0 -50 45.5 -72t198.5 -49q190 -33 262 -96t72 -213q0 -173 -103.5 -249.5t-302.5 -76.5q-63 0 -157.5 11.5t-157.5 23.5l-64 11 l8 186q247 -33 351 -33q111 0 157.5 27t46.5 94q0 38 -17.5 58.5t-66.5 36t-153 32.5q-74 12 -122.5 25t-93.5 35t-70 53.5t-39.5 78.5t-14.5 111z" />
|
||||
<glyph unicode="t" horiz-adv-x="733" d="M51 834v190h131v297h221v-297h283v-190h-283v-451q0 -125 19 -166t94 -41l168 6l10 -178q-137 -27 -209 -27q-89 0 -145 17.5t-92.5 62.5t-51 116.5t-14.5 184.5v476h-131z" />
|
||||
<glyph unicode="u" horiz-adv-x="1112" d="M125 489v535h223v-537q0 -76 3 -120.5t12.5 -86t28.5 -61.5t50.5 -31.5t79.5 -11.5q55 0 113.5 13t89.5 27l31 13v795h221v-1024h-221v63q-17 -10 -45.5 -24t-102 -38t-129.5 -24q-88 0 -149.5 19.5t-101.5 56.5t-62.5 101t-31.5 142.5t-9 192.5z" />
|
||||
<glyph unicode="v" horiz-adv-x="1005" d="M39 1024h233l197 -834h66l204 834h228l-267 -1024h-397z" />
|
||||
<glyph unicode="w" horiz-adv-x="1572" d="M55 1024h219l162 -834h41l195 814h229l195 -814h41l159 834h222l-218 -1024h-354l-160 702l-159 -702h-355z" />
|
||||
<glyph unicode="x" horiz-adv-x="950" d="M37 0l297 514l-297 510h237l201 -354l203 354h237l-305 -504l305 -520h-237l-203 350l-201 -350h-237z" />
|
||||
<glyph unicode="y" horiz-adv-x="1007" d="M41 1024h219l217 -834h55l218 834h221l-389 -1464h-220l123 440h-176z" />
|
||||
<glyph unicode="z" horiz-adv-x="929" d="M84 0v199l494 626h-494v199h760v-199l-492 -626h492v-199h-760z" />
|
||||
<glyph unicode="{" horiz-adv-x="731" d="M39 553v174q117 27 171 77.5t54 129.5q0 26 -7 123t-7 137q0 192 90.5 271t312.5 87l2 -188q-109 -7 -148.5 -52t-39.5 -134q0 -35 7 -131.5t7 -124.5q0 -130 -43.5 -187.5t-179.5 -93.5q70 -18 113.5 -42t68 -60.5t33 -79.5t8.5 -109q0 -30 -7 -116t-7 -123 q0 -89 38.5 -136.5t145.5 -54.5v-188q-219 7 -310 88.5t-91 265.5q0 44 7 135t7 113q0 79 -54.5 133t-170.5 86z" />
|
||||
<glyph unicode="|" horiz-adv-x="516" d="M147 -440v1890h222v-1890h-222z" />
|
||||
<glyph unicode="}" horiz-adv-x="731" d="M76 1364l2 188q222 -8 312.5 -87t90.5 -271q0 -40 -7 -137t-7 -123q0 -79 54 -129.5t171 -77.5v-174q-116 -32 -170.5 -86t-54.5 -133q0 -22 7 -113t7 -135q0 -184 -91 -265.5t-310 -88.5v188q107 7 145.5 54.5t38.5 136.5q0 37 -7 123t-7 116q0 66 8.5 109t33 79.5 t68 60.5t113.5 42q-136 36 -179.5 93.5t-43.5 187.5q0 28 7 124.5t7 131.5q0 89 -39.5 134t-148.5 52z" />
|
||||
<glyph unicode="~" d="M131 569q5 4 14.5 11.5t37.5 26t56 32.5t66.5 25.5t71.5 11.5q59 0 212 -52.5t199 -52.5q35 0 87 21t87 42l35 21l19 -178q-5 -4 -13 -11.5t-34 -25.5t-52 -32t-63 -25.5t-70 -11.5q-60 0 -218 52t-195 52q-41 0 -95.5 -21.5t-89.5 -43.5l-34 -21z" />
|
||||
<glyph unicode="¡" horiz-adv-x="507" d="M135 -379l21 909h196l21 -909h-238zM135 737v287h240v-287h-240z" />
|
||||
<glyph unicode="¢" d="M190 510q0 220 94 328t275 120v222h186v-230q38 -3 83.5 -9t71.5 -11l26 -4l-6 -170q-162 10 -250 10q-138 0 -195 -59t-57 -197q0 -140 56 -196t202 -56q39 0 100.5 2.5t103.5 5.5l42 2l6 -170q-99 -20 -183 -24v-234h-184v226q-186 11 -278.5 115t-92.5 329z" />
|
||||
<glyph unicode="£" d="M158 0v190h161v492h-135v190h135v117q0 116 19.5 191.5t62.5 117.5t100 58t142 16q60 0 134 -10t119 -20l44 -11l-6 -176q-149 19 -262 19q-74 0 -103.5 -42.5t-29.5 -152.5v-107h327v-190h-327v-492h280l148 33l34 -186l-165 -37h-678z" />
|
||||
<glyph unicode="¤" d="M86 182l147 146q-49 82 -49 188q0 99 49 186l-147 148l154 154l145 -148q87 49 188 49q100 0 187 -49l147 148l154 -154l-148 -148q50 -89 50 -186q0 -99 -50 -188l148 -146l-154 -153l-147 147q-87 -49 -187 -49q-101 0 -188 49l-145 -147zM373 516q0 -83 58.5 -142 t141.5 -59t142 59t59 142t-59 142t-142 59t-141.5 -59t-58.5 -142z" />
|
||||
<glyph unicode="¥" d="M27 1352h254l294 -484l293 484h254l-319 -547h225v-189h-330l-8 -36v-93h338v-188h-338v-299h-227v299h-344v188h344v93l-6 36h-338v189h229z" />
|
||||
<glyph unicode="¦" horiz-adv-x="524" d="M152 336h221v-776h-221v776zM152 686v764h221v-764h-221z" />
|
||||
<glyph unicode="§" horiz-adv-x="1042" d="M88 473q0 74 42.5 153.5t84.5 114.5q-46 34 -68 85t-22 139q0 354 422 354q63 0 150.5 -10.5t143.5 -21.5l56 -11l-10 -182q-228 32 -326 32q-124 0 -172.5 -35.5t-48.5 -121.5q0 -67 59.5 -98t225.5 -66q93 -21 147.5 -41t96.5 -54t58.5 -83.5t16.5 -124.5 q0 -72 -29.5 -150t-66.5 -129q40 -35 58 -81.5t18 -133.5q0 -188 -102 -275t-318 -87q-62 0 -155 11t-155 21l-63 11l23 180q220 -31 333 -31q114 0 169 37.5t55 116.5q0 31 -10 52.5t-28 36.5t-54.5 27.5t-78 23.5t-110.5 26q-7 1 -10 2q-92 20 -149.5 42t-101.5 57.5 t-62.5 87t-18.5 126.5zM311 512q0 -72 35.5 -101.5t134.5 -52.5q117 -26 195 -55q13 16 28 69t15 99q0 68 -41.5 98t-155.5 56q-16 4 -53.5 12.5t-62.5 15t-44 13.5q-14 -22 -32.5 -69t-18.5 -85z" />
|
||||
<glyph unicode="¨" horiz-adv-x="520" d="M-45 1243v234h213v-234h-213zM383 1243v234h213v-234h-213z" />
|
||||
<glyph unicode="©" horiz-adv-x="1318" d="M106 889q0 246 157 408.5t396 162.5q122 0 226.5 -45.5t175.5 -123t111 -182t40 -220.5q0 -161 -68 -290.5t-195.5 -205.5t-291.5 -76q-156 0 -282.5 75.5t-197.5 206.5t-71 290zM217 889q0 -193 126 -328t314 -135q191 0 318 134.5t127 328.5q0 192 -128 328.5 t-315 136.5q-188 0 -315 -136t-127 -329zM420 895q0 175 59.5 249.5t198.5 74.5q42 0 82.5 -6.5t59.5 -13.5l20 -7l-13 -148q-73 15 -139 15q-56 0 -75 -36t-19 -128q0 -94 20 -135t74 -41q28 0 62.5 3t55.5 6l21 3l13 -141q-66 -33 -168 -33q-137 0 -194.5 75t-57.5 263z " />
|
||||
<glyph unicode="ª" horiz-adv-x="825" d="M96 891q0 93 58 139.5t176 52.5l155 9v47q0 53 -94 53q-38 0 -101.5 -3.5t-107.5 -6.5l-45 -4l-6 129q143 43 270 43q139 0 207 -48.5t68 -173.5v-284q17 -21 47 -25l-4 -139q-79 0 -124 8t-62.5 19t-34.5 34q-11 -7 -30.5 -16.5t-72 -26t-96.5 -16.5q-97 0 -150 56 t-53 153zM289 895q0 -64 67 -64q24 0 56.5 8.5t52.5 16.5l20 8v107l-123 -8q-39 -3 -56 -19t-17 -49z" />
|
||||
<glyph unicode="«" horiz-adv-x="1175" d="M86 418v166l428 317v-225l-238 -170l238 -193v-227zM625 418v166l428 317v-225l-238 -170l238 -193v-227z" />
|
||||
<glyph unicode="¬" d="M125 520v199h885v-494h-201v295h-684z" />
|
||||
<glyph unicode="­" horiz-adv-x="862" d="M125 451v202h612v-202h-612z" />
|
||||
<glyph unicode="®" horiz-adv-x="1318" d="M106 889q0 246 157 408.5t396 162.5q122 0 226.5 -45.5t175.5 -123t111 -182t40 -220.5q0 -161 -68 -290.5t-195 -205.5t-290 -76q-157 0 -284 75.5t-198 206.5t-71 290zM217 889q0 -192 128 -327.5t314 -135.5q190 0 316.5 134.5t126.5 328.5q0 192 -128 328.5 t-315 136.5q-188 0 -315 -136t-127 -329zM422 571v633h256q233 0 233 -205q0 -79 -19.5 -122.5t-70.5 -75.5l99 -230h-172l-76 203h-86v-203h-164zM584 897h84q86 0 86 90q0 92 -97 92h-73v-182z" />
|
||||
<glyph unicode="¯" horiz-adv-x="520" d="M-18 1247v168h577v-168h-577z" />
|
||||
<glyph unicode="°" d="M274 1126q0 134 83 216.5t216 82.5t216 -82.5t83 -216.5q0 -133 -82.5 -215t-216.5 -82t-216.5 82t-82.5 215zM406 1126q0 -75 46 -122.5t121 -47.5t123.5 47.5t48.5 122.5t-48.5 123.5t-123.5 48.5q-74 0 -120.5 -48t-46.5 -124z" />
|
||||
<glyph unicode="±" d="M106 55v201h934v-201h-934zM106 573v201h365v236h201v-236h368v-201h-368v-229h-201v229h-365z" />
|
||||
<glyph unicode="²" horiz-adv-x="573" d="M51 979v154l162 145q52 44 75 75.5t23 63.5q0 51 -86 51q-23 0 -63.5 -3.5t-69.5 -6.5l-29 -4l-8 164q138 20 230 20q117 0 166 -45.5t49 -150.5q0 -67 -27 -115t-92 -100l-100 -86h223v-162h-453z" />
|
||||
<glyph unicode="³" horiz-adv-x="573" d="M49 975l12 158q121 -15 197 -15q78 0 78 58q0 29 -18 41t-54 12h-135v147h133q24 0 40.5 15t16.5 39q0 49 -71 49q-36 0 -80.5 -3.5t-71.5 -6.5l-26 -3l-13 154q133 18 217 18q118 0 176 -42.5t58 -133.5q0 -57 -21.5 -94.5t-48.5 -52.5q42 -16 63 -50.5t21 -103.5 q0 -102 -60.5 -152.5t-170.5 -50.5q-44 0 -104.5 4t-98.5 8z" />
|
||||
<glyph unicode="´" horiz-adv-x="548" d="M29 1325l483 207l70 -193l-500 -159z" />
|
||||
<glyph unicode="µ" d="M147 -440v1464h224v-586q1 -77 7.5 -122t25 -79t52.5 -47.5t89 -13.5t113 13t89 27l31 13v795h221v-1024h-221v63q-17 -10 -45 -24t-101.5 -38t-129.5 -24q-76 0 -131 15v-432h-224z" />
|
||||
<glyph unicode="¶" horiz-adv-x="1220" d="M63 1010q0 172 108 282.5t278 110.5h675v-191h-106v-1212h-193v1212h-174v-1212h-192v621h-15q-169 0 -275 108.5t-106 280.5z" />
|
||||
<glyph unicode="·" horiz-adv-x="489" d="M125 397v295h240v-295h-240z" />
|
||||
<glyph unicode="¸" horiz-adv-x="540" d="M72 -453l8 134q70 -5 113 -5t63 15t20 49q0 31 -19.5 43t-63.5 12h-64v207h96v-88q64 -1 105.5 -8t75 -26t48.5 -53t15 -87q0 -107 -56.5 -160t-156.5 -53q-39 0 -85 5t-73 10z" />
|
||||
<glyph unicode="¹" horiz-adv-x="573" d="M39 1468l215 150h164v-639h-180v440l-115 -78z" />
|
||||
<glyph unicode="º" horiz-adv-x="825" d="M94 1020q0 169 80.5 249.5t239.5 80.5t238 -80t79 -250q0 -338 -317 -338q-320 0 -320 338zM293 1018q0 -84 27.5 -122t93.5 -38t90 37t24 123q0 87 -23.5 122.5t-90.5 35.5t-94 -36.5t-27 -121.5z" />
|
||||
<glyph unicode="»" horiz-adv-x="1177" d="M123 86v227l237 193l-237 170v225l428 -317v-166zM662 86v227l237 193l-237 170v225l428 -317v-166z" />
|
||||
<glyph unicode="¼" horiz-adv-x="1110" d="M53 1468l215 150h164v-639h-180v440l-115 -78zM66 59l804 1293l97 -62l-805 -1296zM561 29l107 405h200l-125 -393h97l20 182h158v-182h37v-162h-37v-84h-178v84h-279v150z" />
|
||||
<glyph unicode="½" horiz-adv-x="1097" d="M57 1468l215 150h164v-639h-180v440l-115 -78zM63 59l805 1293l97 -62l-805 -1296zM573 -51l162 145q53 44 76 76t23 63q0 52 -86 52q-23 0 -63.5 -3.5t-69.5 -7.5l-29 -4l-8 164q137 21 229 21q117 0 166 -46t49 -151q0 -67 -27 -115t-92 -100l-100 -86h223v-162h-453 v154z" />
|
||||
<glyph unicode="¾" horiz-adv-x="1138" d="M84 975l12 158q121 -15 197 -15q78 0 78 58q0 29 -18 41t-54 12h-135v147h133q24 0 40.5 15t16.5 39q0 49 -71 49q-36 0 -81 -3.5t-72 -6.5l-26 -3l-12 154q133 18 217 18q118 0 176 -42.5t58 -133.5q0 -57 -21.5 -94.5t-48.5 -52.5q42 -16 63 -50.5t21 -103.5 q0 -102 -60.5 -152.5t-170.5 -50.5q-44 0 -104.5 4t-99.5 8zM96 59l805 1293l96 -62l-804 -1296zM594 29l106 405h201l-125 -393h96l21 182h158v-182h36v-162h-36v-84h-179v84h-278v150z" />
|
||||
<glyph unicode="¿" horiz-adv-x="894" d="M66 -70q0 137 34 208.5t144 160.5q98 76 132 123.5t34 103.5v68h180q5 -7 13.5 -20.5t22 -55t13.5 -84.5q0 -52 -39 -102.5t-127 -124.5q-113 -92 -145.5 -138.5t-32.5 -115.5q0 -79 50.5 -117.5t166.5 -38.5q56 0 132.5 9.5t124.5 19.5l48 10l12 -170q-21 -8 -57 -19 t-128 -29.5t-161 -18.5q-216 0 -316.5 78t-100.5 253zM387 737v287h238v-287h-238z" />
|
||||
<glyph unicode="À" horiz-adv-x="1226" d="M41 0l346 1403h453l348 -1403h-230l-75 301h-539l-76 -301h-227zM309 1724l72 199l483 -211l-57 -156zM389 502h449l-172 710h-103z" />
|
||||
<glyph unicode="Á" horiz-adv-x="1226" d="M41 0l346 1403h453l348 -1403h-230l-75 301h-539l-76 -301h-227zM352 1712l484 211l71 -199l-497 -168zM389 502h449l-172 710h-103z" />
|
||||
<glyph unicode="Â" horiz-adv-x="1226" d="M41 0l346 1403h453l348 -1403h-230l-75 301h-539l-76 -301h-227zM240 1589l274 293h193l274 -293h-238l-131 137l-133 -137h-239zM389 502h449l-172 710h-103z" />
|
||||
<glyph unicode="Ã" horiz-adv-x="1226" d="M41 0l346 1403h453l348 -1403h-230l-75 301h-539l-76 -301h-227zM229 1763q4 5 12 13.5t31 30.5t46 39t55 30.5t59 13.5q49 0 121 -25.5t133 -51t84 -25.5q22 0 61 22.5t67 45.5l28 22l49 -162q-4 -5 -11.5 -13.5t-30 -30t-45 -38t-54 -30t-58.5 -13.5q-55 0 -183.5 51.5 t-158.5 51.5q-24 0 -62.5 -22.5t-65.5 -45.5l-27 -22zM389 502h449l-172 710h-103z" />
|
||||
<glyph unicode="Ä" horiz-adv-x="1226" d="M41 0l346 1403h453l348 -1403h-230l-75 301h-539l-76 -301h-227zM291 1604v233h213v-233h-213zM389 502h449l-172 710h-103zM719 1604v233h213v-233h-213z" />
|
||||
<glyph unicode="Å" horiz-adv-x="1226" d="M41 0l336 1360q-43 59 -43 137q0 112 79 176t199 64t200.5 -64t80.5 -176q0 -78 -43 -137l338 -1360h-230l-75 301h-539l-76 -301h-227zM389 502h449l-172 710h-103zM489 1497q0 -44 33 -69t90 -25t91 25t34 69t-34 70t-91 26t-90 -26t-33 -70z" />
|
||||
<glyph unicode="Æ" horiz-adv-x="1787" d="M31 0l413 1419h1254v-219h-656v-371h533v-215h-533v-395h656v-219h-881v291h-469l-86 -291h-231zM406 510h411l2 690h-213z" />
|
||||
<glyph unicode="Ç" horiz-adv-x="1114" d="M106 700q0 158 14.5 270.5t50 202.5t96 143.5t150.5 81t216 27.5q177 0 401 -51l-8 -184q-72 13 -181 23t-181 10q-79 0 -133 -17t-91.5 -52t-58.5 -99t-30 -148t-9 -207q0 -101 5 -172.5t18.5 -133t36.5 -99.5t60 -65t87.5 -38.5t120.5 -11.5q161 0 356 31l6 -188 q-198 -43 -381 -46v-63q64 -1 105.5 -8t75 -26t48.5 -53t15 -87q0 -107 -56.5 -160t-156.5 -53q-39 0 -85 5t-73 10l-26 5l8 134q69 -5 112 -5q84 0 84 64q0 31 -19.5 43t-64.5 12h-63v187q-108 8 -186 42.5t-128.5 91.5t-80.5 146t-42 193t-12 245z" />
|
||||
<glyph unicode="È" horiz-adv-x="1132" d="M162 0v1403h885v-199h-658v-397h535v-197h-535v-409h658v-201h-885zM311 1724l72 199l483 -211l-57 -156z" />
|
||||
<glyph unicode="É" horiz-adv-x="1132" d="M162 0v1403h885v-199h-658v-397h535v-197h-535v-409h658v-201h-885zM336 1712l483 211l72 -199l-498 -168z" />
|
||||
<glyph unicode="Ê" horiz-adv-x="1132" d="M162 0v1403h885v-199h-658v-397h535v-197h-535v-409h658v-201h-885zM236 1589l274 293h192l275 -293h-238l-131 137l-133 -137h-239z" />
|
||||
<glyph unicode="Ë" horiz-adv-x="1132" d="M162 0v1403h885v-199h-658v-397h535v-197h-535v-409h658v-201h-885zM283 1604v233h213v-233h-213zM711 1604v233h213v-233h-213z" />
|
||||
<glyph unicode="Ì" horiz-adv-x="550" d="M-47 1724l72 199l483 -211l-57 -156zM162 0v1403h227v-1403h-227z" />
|
||||
<glyph unicode="Í" horiz-adv-x="550" d="M20 1712l484 211l71 -199l-497 -168zM162 0v1403h227v-1403h-227z" />
|
||||
<glyph unicode="Î" horiz-adv-x="550" d="M-100 1589l274 293h193l274 -293h-238l-131 137l-133 -137h-239zM162 0v1403h227v-1403h-227z" />
|
||||
<glyph unicode="Ï" horiz-adv-x="550" d="M-45 1604v233h213v-233h-213zM162 0v1403h227v-1403h-227zM383 1604v233h213v-233h-213z" />
|
||||
<glyph unicode="Ð" horiz-adv-x="1318" d="M47 598v217h123v604h481q135 0 233.5 -30t161.5 -84t100.5 -141t52.5 -189t15 -240q0 -101 -6.5 -182.5t-23.5 -159t-45 -136.5t-71.5 -109t-101.5 -81.5t-137.5 -49t-177.5 -17.5h-481v598h-123zM395 217h256q60 0 108 13.5t82 37t59 60.5t40 78t24 96.5t12 109.5t3 123 q0 95 -6.5 161t-27 128t-56 98.5t-95 58t-143.5 21.5h-256v-387h291v-217h-291v-381z" />
|
||||
<glyph unicode="Ñ" horiz-adv-x="1404" d="M162 0v1403h397l426 -1202h31v1202h227v-1403h-389l-436 1204h-29v-1204h-227zM322 1763q4 5 11.5 13.5t31 30.5t46.5 39t54.5 30.5t58.5 13.5q49 0 121 -25.5t133 -51t84 -25.5q22 0 61 22.5t67 45.5l28 22l49 -162q-4 -5 -11.5 -13.5t-30 -30t-45 -38t-54 -30 t-58.5 -13.5q-55 0 -183.5 51.5t-158.5 51.5q-24 0 -62.5 -22.5t-65.5 -45.5l-27 -22z" />
|
||||
<glyph unicode="Ò" horiz-adv-x="1343" d="M100 694q0 145 17.5 256.5t58 203t106 150t163 90t227.5 31.5q162 0 273.5 -47t176 -143t92 -226.5t27.5 -314.5q0 -185 -27.5 -314t-92.5 -222t-175.5 -137t-273.5 -44q-131 0 -228.5 29.5t-163 86t-106 145.5t-57.5 199.5t-17 256.5zM336 694q0 -138 14.5 -229.5 t51.5 -159.5t103 -98.5t167 -30.5t166.5 29.5t102.5 97t51 159t14 232.5q0 110 -9 190t-31 147.5t-59.5 109t-96 64t-138.5 22.5t-138.5 -22.5t-96.5 -64t-60.5 -109t-31.5 -148t-9 -189.5zM367 1724l71 199l484 -211l-58 -156z" />
|
||||
<glyph unicode="Ó" horiz-adv-x="1343" d="M100 694q0 145 17.5 256.5t58 203t106 150t163 90t227.5 31.5q162 0 273.5 -47t176 -143t92 -226.5t27.5 -314.5q0 -185 -27.5 -314t-92.5 -222t-175.5 -137t-273.5 -44q-131 0 -228.5 29.5t-163 86t-106 145.5t-57.5 199.5t-17 256.5zM336 694q0 -138 14.5 -229.5 t51.5 -159.5t103 -98.5t167 -30.5t166.5 29.5t102.5 97t51 159t14 232.5q0 110 -9 190t-31 147.5t-59.5 109t-96 64t-138.5 22.5t-138.5 -22.5t-96.5 -64t-60.5 -109t-31.5 -148t-9 -189.5zM371 1712l483 211l72 -199l-498 -168z" />
|
||||
<glyph unicode="Ô" horiz-adv-x="1343" d="M100 694q0 145 17.5 256.5t58 203t106 150t163 90t227.5 31.5q162 0 273.5 -47t176 -143t92 -226.5t27.5 -314.5q0 -185 -27.5 -314t-92.5 -222t-175.5 -137t-273.5 -44q-131 0 -228.5 29.5t-163 86t-106 145.5t-57.5 199.5t-17 256.5zM303 1589l275 293h192l274 -293 h-237l-131 137l-133 -137h-240zM336 694q0 -138 14.5 -229.5t51.5 -159.5t103 -98.5t167 -30.5t166.5 29.5t102.5 97t51 159t14 232.5q0 110 -9 190t-31 147.5t-59.5 109t-96 64t-138.5 22.5t-138.5 -22.5t-96.5 -64t-60.5 -109t-31.5 -148t-9 -189.5z" />
|
||||
<glyph unicode="Õ" horiz-adv-x="1343" d="M100 694q0 145 17.5 256.5t58 203t106 150t163 90t227.5 31.5q162 0 273.5 -47t176 -143t92 -226.5t27.5 -314.5q0 -185 -27.5 -314t-92.5 -222t-175.5 -137t-273.5 -44q-131 0 -228.5 29.5t-163 86t-106 145.5t-57.5 199.5t-17 256.5zM295 1763q4 5 12 13.5t31 30.5 t46 39t55 30.5t59 13.5q49 0 121 -25.5t133 -51t84 -25.5q22 0 60.5 22.5t66.5 45.5l28 22l49 -162q-4 -5 -11.5 -13.5t-30 -30t-45 -38t-53.5 -30t-58 -13.5q-55 0 -183.5 51.5t-158.5 51.5q-24 0 -63 -22.5t-66 -45.5l-27 -22zM336 694q0 -138 14.5 -229.5t51.5 -159.5 t103 -98.5t167 -30.5t166.5 29.5t102.5 97t51 159t14 232.5q0 110 -9 190t-31 147.5t-59.5 109t-96 64t-138.5 22.5t-138.5 -22.5t-96.5 -64t-60.5 -109t-31.5 -148t-9 -189.5z" />
|
||||
<glyph unicode="Ö" horiz-adv-x="1343" d="M100 694q0 145 17.5 256.5t58 203t106 150t163 90t227.5 31.5q162 0 273.5 -47t176 -143t92 -226.5t27.5 -314.5q0 -185 -27.5 -314t-92.5 -222t-175.5 -137t-273.5 -44q-131 0 -228.5 29.5t-163 86t-106 145.5t-57.5 199.5t-17 256.5zM336 694q0 -138 14.5 -229.5 t51.5 -159.5t103 -98.5t167 -30.5t166.5 29.5t102.5 97t51 159t14 232.5q0 110 -9 190t-31 147.5t-59.5 109t-96 64t-138.5 22.5t-138.5 -22.5t-96.5 -64t-60.5 -109t-31.5 -148t-9 -189.5zM352 1604v233h213v-233h-213zM780 1604v233h213v-233h-213z" />
|
||||
<glyph unicode="×" d="M127 209l309 303l-307 303l141 141l303 -307l306 309l139 -141l-309 -305l309 -303l-141 -141l-304 309l-303 -309z" />
|
||||
<glyph unicode="Ø" horiz-adv-x="1343" d="M100 694q0 145 17.5 256.5t58 203t106 150t163 90t227.5 31.5q123 0 229 -32l119 256l168 -72l-127 -272q96 -88 138 -238.5t42 -372.5q0 -185 -27.5 -314t-92.5 -222t-175.5 -137t-273.5 -44q-121 0 -219 25l-117 -252l-164 80l119 254q-102 83 -146.5 233t-44.5 377z M336 694q0 -271 61 -383l416 893q-64 23 -141 23q-80 0 -138.5 -22.5t-96.5 -64t-60.5 -109t-31.5 -148t-9 -189.5zM543 193q63 -17 129 -17q101 0 166.5 29.5t102.5 97t51 159t14 232.5q0 252 -56 375z" />
|
||||
<glyph unicode="Ù" horiz-adv-x="1331" d="M150 453v950h229v-954q0 -140 71.5 -206.5t213.5 -66.5q288 0 288 273v954h230v-950q0 -248 -130 -362t-388 -114q-257 0 -385.5 114t-128.5 362zM377 1724l72 199l483 -211l-58 -156z" />
|
||||
<glyph unicode="Ú" horiz-adv-x="1331" d="M150 453v950h229v-954q0 -140 71.5 -206.5t213.5 -66.5q288 0 288 273v954h230v-950q0 -248 -130 -362t-388 -114q-257 0 -385.5 114t-128.5 362zM379 1712l483 211l72 -199l-498 -168z" />
|
||||
<glyph unicode="Û" horiz-adv-x="1331" d="M150 453v950h229v-954q0 -140 71.5 -206.5t213.5 -66.5q288 0 288 273v954h230v-950q0 -248 -130 -362t-388 -114q-257 0 -385.5 114t-128.5 362zM295 1589l274 293h193l274 -293h-237l-131 137l-133 -137h-240z" />
|
||||
<glyph unicode="Ü" horiz-adv-x="1331" d="M150 453v950h229v-954q0 -140 71.5 -206.5t213.5 -66.5q288 0 288 273v954h230v-950q0 -248 -130 -362t-388 -114q-257 0 -385.5 114t-128.5 362zM346 1604v233h213v-233h-213zM774 1604v233h213v-233h-213z" />
|
||||
<glyph unicode="Ý" horiz-adv-x="1124" d="M8 1403h256l297 -602l299 602h254l-436 -825v-578h-229v578zM303 1712l483 211l72 -199l-498 -168z" />
|
||||
<glyph unicode="Þ" horiz-adv-x="1222" d="M162 0v1419h227v-215h287q479 0 479 -473q0 -243 -121.5 -376.5t-357.5 -133.5h-287v-221h-227zM389 442h285q125 0 187.5 76t62.5 213q0 132 -61 194t-189 62h-285v-545z" />
|
||||
<glyph unicode="ß" horiz-adv-x="1218" d="M135 0v1090q0 209 103 296t340 87q226 0 332 -73.5t106 -238.5q0 -74 -21 -123.5t-57.5 -78.5t-101.5 -58q-76 -34 -98.5 -52t-22.5 -46q0 -31 33 -56t153 -83q100 -47 152 -85t80 -93.5t28 -137.5q0 -208 -93.5 -289.5t-319.5 -81.5q-54 0 -127.5 9.5t-120.5 19.5 l-47 10l8 181q188 -23 262 -23q118 0 163.5 35t45.5 106q0 62 -36 95t-167 94q-138 60 -191 120t-53 158q0 89 37 140t121 86q87 36 115 64.5t28 74.5q0 70 -45 99.5t-163 29.5q-124 0 -172 -43t-48 -154v-1079h-223z" />
|
||||
<glyph unicode="à" horiz-adv-x="1038" d="M70 303q0 156 82.5 225.5t255.5 83.5l264 23v74q0 82 -36 114.5t-114 32.5q-61 0 -157 -5t-162 -10l-66 -5l-8 157q224 54 412 54q186 0 269 -81t83 -257v-467q3 -45 24 -67t66 -28l-6 -170q-96 0 -156 16.5t-116 59.5q-18 -9 -50 -21.5t-119 -33.5t-161 -21 q-152 0 -228.5 83t-76.5 243zM227 1339l70 193l483 -207l-53 -145zM293 309q0 -149 125 -149q52 0 115.5 11t100.5 23l38 11v272l-238 -22q-141 -12 -141 -146z" />
|
||||
<glyph unicode="á" horiz-adv-x="1038" d="M70 303q0 156 82.5 225.5t255.5 83.5l264 23v74q0 82 -36 114.5t-114 32.5q-61 0 -157 -5t-162 -10l-66 -5l-8 157q224 54 412 54q186 0 269 -81t83 -257v-467q3 -45 24 -67t66 -28l-6 -170q-96 0 -156 16.5t-116 59.5q-18 -9 -50 -21.5t-119 -33.5t-161 -21 q-152 0 -228.5 83t-76.5 243zM215 1325l483 207l70 -193l-500 -159zM293 309q0 -149 125 -149q52 0 115.5 11t100.5 23l38 11v272l-238 -22q-141 -12 -141 -146z" />
|
||||
<glyph unicode="â" horiz-adv-x="1038" d="M70 303q0 156 82.5 225.5t255.5 83.5l264 23v74q0 82 -36 114.5t-114 32.5q-61 0 -157 -5t-162 -10l-66 -5l-8 157q224 54 412 54q186 0 269 -81t83 -257v-467q3 -45 24 -67t66 -28l-6 -170q-96 0 -156 16.5t-116 59.5q-18 -9 -50 -21.5t-119 -33.5t-161 -21 q-152 0 -228.5 83t-76.5 243zM180 1198l256 299h142l260 -299h-209l-119 156l-119 -156h-211zM293 309q0 -149 125 -149q52 0 115.5 11t100.5 23l38 11v272l-238 -22q-141 -12 -141 -146z" />
|
||||
<glyph unicode="ã" horiz-adv-x="1038" d="M70 303q0 156 82.5 225.5t255.5 83.5l264 23v74q0 82 -36 114.5t-114 32.5q-61 0 -157 -5t-162 -10l-66 -5l-8 157q224 54 412 54q186 0 269 -81t83 -257v-467q3 -45 24 -67t66 -28l-6 -170q-96 0 -156 16.5t-116 59.5q-18 -9 -50 -21.5t-119 -33.5t-161 -21 q-152 0 -228.5 83t-76.5 243zM131 1364q4 5 12 12.5t31 27.5t46 35t54 27.5t58 12.5q45 0 144.5 -41t125.5 -41q22 0 60.5 18.5t65.5 36.5l28 18l49 -131q-12 -13 -31.5 -32.5t-71.5 -51.5t-94 -32q-45 0 -143.5 41t-130.5 41q-24 0 -62.5 -17.5t-65.5 -35.5l-26 -17z M293 309q0 -149 125 -149q52 0 115.5 11t100.5 23l38 11v272l-238 -22q-141 -12 -141 -146z" />
|
||||
<glyph unicode="ä" horiz-adv-x="1038" d="M70 303q0 156 82.5 225.5t255.5 83.5l264 23v74q0 82 -36 114.5t-114 32.5q-61 0 -157 -5t-162 -10l-66 -5l-8 157q224 54 412 54q186 0 269 -81t83 -257v-467q3 -45 24 -67t66 -28l-6 -170q-96 0 -156 16.5t-116 59.5q-18 -9 -50 -21.5t-119 -33.5t-161 -21 q-152 0 -228.5 83t-76.5 243zM170 1243v234h213v-234h-213zM293 309q0 -149 125 -149q52 0 115.5 11t100.5 23l38 11v272l-238 -22q-141 -12 -141 -146zM598 1243v234h213v-234h-213z" />
|
||||
<glyph unicode="å" horiz-adv-x="1038" d="M70 303q0 156 82.5 225.5t255.5 83.5l264 23v74q0 82 -36 114.5t-114 32.5q-61 0 -157 -5t-162 -10l-66 -5l-8 157q224 54 412 54q186 0 269 -81t83 -257v-467q3 -45 24 -67t66 -28l-6 -170q-96 0 -156 16.5t-116 59.5q-18 -9 -50 -21.5t-119 -33.5t-161 -21 q-152 0 -228.5 83t-76.5 243zM293 309q0 -149 125 -149q52 0 115.5 11t100.5 23l38 11v272l-238 -22q-141 -12 -141 -146zM305 1313q0 96 65.5 161.5t161.5 65.5t163 -66t67 -161q0 -97 -67 -162.5t-163 -65.5q-97 0 -162 65t-65 163zM432 1313q0 -44 29.5 -74.5t73.5 -30.5 q43 0 71.5 30.5t28.5 74.5q0 43 -28.5 72.5t-71.5 29.5q-44 0 -73.5 -29.5t-29.5 -72.5z" />
|
||||
<glyph unicode="æ" horiz-adv-x="1624" d="M70 303q0 164 87 231.5t275 81.5l240 19v65q0 65 -36 99.5t-99 34.5q-68 0 -166.5 -6t-162.5 -12l-65 -5l-8 197q260 36 414 36q191 0 270 -106q100 106 293 106q217 0 323.5 -114t106.5 -352l-14 -162h-635q2 -123 55 -179.5t178 -56.5q72 0 167 5t153 9l59 5l4 -174 q-235 -48 -413 -48q-207 0 -310 103l-55 -25q-35 -16 -80.5 -31t-127.5 -31t-161 -16q-143 0 -217.5 85.5t-74.5 240.5zM293 309q0 -141 110 -141q51 0 120.5 12.5t112.5 24t50 14.5q-16 96 -16 244l-236 -17q-71 -5 -106 -37.5t-35 -99.5zM893 590h430q0 140 -49 199 t-162 59q-114 0 -166.5 -61.5t-52.5 -196.5z" />
|
||||
<glyph unicode="ç" horiz-adv-x="905" d="M90 526q0 276 100 398.5t328 122.5q48 0 125 -9.5t129 -19.5l53 -10l-8 -177q-161 17 -239 17q-156 0 -209.5 -70t-53.5 -252q0 -104 10 -166.5t39.5 -106t80.5 -60.5t135 -17q35 0 94.5 4t101.5 8l43 5l6 -179q-205 -37 -309 -37v-63q64 -1 105.5 -8t75 -26t48.5 -53 t15 -87q0 -107 -56.5 -160t-156.5 -53q-39 0 -85.5 5t-73.5 10l-26 5l9 134q69 -5 112 -5q84 0 84 64q0 31 -19.5 43t-64.5 12h-63v189q-181 23 -255.5 148.5t-74.5 393.5z" />
|
||||
<glyph unicode="è" horiz-adv-x="1040" d="M86 502q0 545 444 545q216 0 323.5 -115.5t107.5 -353.5l-15 -160h-635q2 -126 55.5 -186t178.5 -60q72 0 166.5 4.5t152.5 9.5l58 4l4 -165q-234 -48 -414 -48q-227 0 -326.5 125.5t-99.5 399.5zM236 1339l69 193l483 -207l-53 -145zM309 590h432q0 151 -48.5 211.5 t-162.5 60.5q-115 0 -167.5 -63t-53.5 -209z" />
|
||||
<glyph unicode="é" horiz-adv-x="1040" d="M86 502q0 545 444 545q216 0 323.5 -115.5t107.5 -353.5l-15 -160h-635q2 -126 55.5 -186t178.5 -60q72 0 166.5 4.5t152.5 9.5l58 4l4 -165q-234 -48 -414 -48q-227 0 -326.5 125.5t-99.5 399.5zM250 1325l483 207l70 -193l-500 -159zM309 590h432q0 151 -48.5 211.5 t-162.5 60.5q-115 0 -167.5 -63t-53.5 -209z" />
|
||||
<glyph unicode="ê" horiz-adv-x="1040" d="M86 502q0 545 444 545q216 0 323.5 -115.5t107.5 -353.5l-15 -160h-635q2 -126 55.5 -186t178.5 -60q72 0 166.5 4.5t152.5 9.5l58 4l4 -165q-234 -48 -414 -48q-227 0 -326.5 125.5t-99.5 399.5zM203 1198l256 299h141l260 -299h-209l-119 156l-118 -156h-211zM309 590 h432q0 151 -48.5 211.5t-162.5 60.5q-115 0 -167.5 -63t-53.5 -209z" />
|
||||
<glyph unicode="ë" horiz-adv-x="1040" d="M86 502q0 545 444 545q216 0 323.5 -115.5t107.5 -353.5l-15 -160h-635q2 -126 55.5 -186t178.5 -60q72 0 166.5 4.5t152.5 9.5l58 4l4 -165q-234 -48 -414 -48q-227 0 -326.5 125.5t-99.5 399.5zM205 1243v234h213v-234h-213zM309 590h432q0 151 -48.5 211.5 t-162.5 60.5q-115 0 -167.5 -63t-53.5 -209zM633 1243v234h213v-234h-213z" />
|
||||
<glyph unicode="ì" horiz-adv-x="493" d="M-121 1339l70 193l483 -207l-53 -145zM135 0v1024h223v-1024h-223z" />
|
||||
<glyph unicode="í" horiz-adv-x="493" d="M70 1325l483 207l70 -193l-500 -159zM135 0h223v1024h-223v-1024z" />
|
||||
<glyph unicode="î" horiz-adv-x="493" d="M-90 1198l256 299h141l260 -299h-209l-118 156l-119 -156h-211zM135 0h223v1024h-223v-1024z" />
|
||||
<glyph unicode="ï" horiz-adv-x="493" d="M-82 1243v234h213v-234h-213zM135 0h223v1024h-223v-1024zM346 1243v234h213v-234h-213z" />
|
||||
<glyph unicode="ð" horiz-adv-x="1144" d="M82 440q0 208 112 329.5t326 121.5q65 0 140 -15.5t117 -31.5l42 -15q-10 112 -62 196.5t-167 148.5l-254 -170l-92 129l174 116q-96 32 -238 64l35 160q222 -29 395 -95l201 135l94 -129l-133 -88q281 -188 281 -581q0 -385 -117.5 -559t-382.5 -174q-229 0 -350 115.5 t-121 342.5zM315 440q0 -125 59 -191.5t179 -66.5q137 0 201 103.5t65 349.5q-15 6 -42 15.5t-102 25.5t-140 16q-105 0 -162.5 -72t-57.5 -180z" />
|
||||
<glyph unicode="ñ" horiz-adv-x="1118" d="M135 0h223v795q13 6 35 15t83 23.5t114 14.5q111 0 146.5 -69.5t35.5 -235.5v-543h221v549q0 132 -15.5 220.5t-54.5 153.5t-108.5 94.5t-175.5 29.5q-59 0 -130 -21.5t-112 -43.5l-41 -21v63h-221v-1024zM236 1364q12 13 31.5 32t72.5 51t96 32q45 0 145 -41t126 -41 q22 0 60 18.5t65 36.5l28 18l49 -131q-4 -5 -11.5 -12.5t-30 -27.5t-45 -35.5t-53 -28t-56.5 -12.5q-45 0 -144 41t-131 41q-24 0 -62 -17.5t-64 -35.5l-27 -17z" />
|
||||
<glyph unicode="ò" horiz-adv-x="1085" d="M86 518q0 262 105.5 395.5t351.5 133.5q126 0 215 -35.5t141.5 -105.5t76 -164.5t23.5 -223.5q0 -133 -22 -229t-73.5 -168t-141 -108t-219.5 -36q-129 0 -218.5 36t-141.5 108t-74.5 168t-22.5 229zM268 1339l70 193l483 -207l-53 -145zM311 518q0 -94 9.5 -156 t35 -108.5t71 -67t116.5 -20.5t116.5 20.5t70.5 67t34.5 108t9.5 156.5q0 184 -50 262t-181 78q-132 0 -182 -78t-50 -262z" />
|
||||
<glyph unicode="ó" horiz-adv-x="1085" d="M86 518q0 -133 22.5 -229t74.5 -168t141.5 -108t218.5 -36q130 0 219.5 36t141 108t73.5 168t22 229q0 129 -23.5 223.5t-76 164.5t-141.5 105.5t-215 35.5q-246 0 -351.5 -133.5t-105.5 -395.5zM270 1325l484 207l69 -193l-499 -159zM311 518q0 184 50 262t182 78 q131 0 181 -78t50 -262q0 -95 -9.5 -156.5t-34.5 -108t-70.5 -67t-116.5 -20.5t-116.5 20.5t-71 67t-35 108.5t-9.5 156z" />
|
||||
<glyph unicode="ô" horiz-adv-x="1085" d="M86 518q0 -133 22.5 -229t74.5 -168t141.5 -108t218.5 -36q130 0 219.5 36t141 108t73.5 168t22 229q0 129 -23.5 223.5t-76 164.5t-141.5 105.5t-215 35.5q-246 0 -351.5 -133.5t-105.5 -395.5zM205 1198l256 299h141l260 -299h-209l-118 156l-119 -156h-211zM311 518 q0 184 50 262t182 78q131 0 181 -78t50 -262q0 -95 -9.5 -156.5t-34.5 -108t-70.5 -67t-116.5 -20.5t-116.5 20.5t-71 67t-35 108.5t-9.5 156z" />
|
||||
<glyph unicode="õ" horiz-adv-x="1085" d="M86 518q0 -133 22.5 -229t74.5 -168t141.5 -108t218.5 -36q130 0 219.5 36t141 108t73.5 168t22 229q0 129 -23.5 223.5t-76 164.5t-141.5 105.5t-215 35.5q-246 0 -351.5 -133.5t-105.5 -395.5zM199 1364q12 13 31.5 32t72.5 51t96 32q45 0 145 -41t126 -41 q22 0 60 18.5t66 36.5l27 18l49 -131q-4 -5 -11.5 -12.5t-30 -27.5t-45 -35.5t-53 -28t-56.5 -12.5q-45 0 -144 41t-131 41q-24 0 -62 -17.5t-65 -35.5l-26 -17zM311 518q0 184 50 262t182 78q131 0 181 -78t50 -262q0 -95 -9.5 -156.5t-34.5 -108t-70.5 -67t-116.5 -20.5 t-116.5 20.5t-71 67t-35 108.5t-9.5 156z" />
|
||||
<glyph unicode="ö" horiz-adv-x="1085" d="M86 518q0 -133 22.5 -229t74.5 -168t141.5 -108t218.5 -36q130 0 219.5 36t141 108t73.5 168t22 229q0 129 -23.5 223.5t-76 164.5t-141.5 105.5t-215 35.5q-246 0 -351.5 -133.5t-105.5 -395.5zM219 1243v234h213v-234h-213zM311 518q0 184 50 262t182 78q131 0 181 -78 t50 -262q0 -95 -9.5 -156.5t-34.5 -108t-70.5 -67t-116.5 -20.5t-116.5 20.5t-71 67t-35 108.5t-9.5 156zM647 1243v234h213v-234h-213z" />
|
||||
<glyph unicode="÷" d="M215 494v225h139v158h437v-158h141v-225h-717zM461 47v242h221v-242h-221z" />
|
||||
<glyph unicode="ø" horiz-adv-x="1085" d="M86 518q0 262 105.5 395.5t351.5 133.5q47 0 131 -13l84 207l139 -51l-86 -207q188 -113 188 -465q0 -133 -22 -229t-73.5 -168t-141 -108t-219.5 -36q-73 0 -140 13l-88 -215l-137 51l90 215q-97 62 -139.5 180.5t-42.5 296.5zM311 518q0 -202 49 -274l244 608 q-27 6 -61 6q-132 0 -182 -78t-50 -262zM473 172q30 -6 70 -6q71 0 116.5 20.5t70.5 67t34.5 108t9.5 156.5q0 189 -53 264z" />
|
||||
<glyph unicode="ù" horiz-adv-x="1112" d="M125 489v535h223v-537q0 -76 3 -120.5t12.5 -86t28.5 -61.5t50.5 -31.5t79.5 -11.5q55 0 113.5 13t89.5 27l31 13v795h221v-1024h-221v63q-17 -10 -45.5 -24t-102 -38t-129.5 -24q-88 0 -149.5 19.5t-101.5 56.5t-62.5 101t-31.5 142.5t-9 192.5zM215 1339l70 193 l483 -207l-53 -145z" />
|
||||
<glyph unicode="ú" horiz-adv-x="1112" d="M125 489q0 -114 9 -192.5t31.5 -142.5t62.5 -101t101.5 -56.5t149.5 -19.5q56 0 125.5 21.5t110.5 43.5l41 21v-63h221v1024h-221v-795q-12 -6 -34 -15t-83.5 -23.5t-116.5 -14.5q-48 0 -79.5 11.5t-50.5 31.5t-28.5 61.5t-12.5 86t-3 120.5v537h-223v-535zM289 1325 l483 207l70 -193l-500 -159z" />
|
||||
<glyph unicode="û" horiz-adv-x="1112" d="M125 489q0 -114 9 -192.5t31.5 -142.5t62.5 -101t101.5 -56.5t149.5 -19.5q56 0 125.5 21.5t110.5 43.5l41 21v-63h221v1024h-221v-795q-12 -6 -34 -15t-83.5 -23.5t-116.5 -14.5q-48 0 -79.5 11.5t-50.5 31.5t-28.5 61.5t-12.5 86t-3 120.5v537h-223v-535zM188 1198 l256 299h142l260 -299h-209l-119 156l-119 -156h-211z" />
|
||||
<glyph unicode="ü" horiz-adv-x="1112" d="M125 489q0 -114 9 -192.5t31.5 -142.5t62.5 -101t101.5 -56.5t149.5 -19.5q56 0 125.5 21.5t110.5 43.5l41 21v-63h221v1024h-221v-795q-12 -6 -34 -15t-83.5 -23.5t-116.5 -14.5q-48 0 -79.5 11.5t-50.5 31.5t-28.5 61.5t-12.5 86t-3 120.5v537h-223v-535zM240 1243v234 h213v-234h-213zM668 1243v234h213v-234h-213z" />
|
||||
<glyph unicode="ý" horiz-adv-x="1007" d="M41 1024h219l217 -834h55l218 834h221l-389 -1464h-220l123 440h-176zM279 1325l483 207l69 -193l-499 -159z" />
|
||||
<glyph unicode="þ" horiz-adv-x="1097" d="M135 -440v1890h223v-465q16 7 42.5 17.5t94 27.5t117.5 17q212 0 305 -118t93 -403q0 -160 -25.5 -265t-84 -168.5t-143 -89.5t-212.5 -26q-35 0 -81.5 3.5t-75.5 7.5l-30 4v-432h-223zM358 182q109 -12 170 -12q79 0 129 20t78 66t38.5 108t10.5 160q0 172 -47 248 t-151 76q-48 0 -105 -10t-90 -20l-33 -11v-625z" />
|
||||
<glyph unicode="ÿ" horiz-adv-x="1007" d="M41 1024h219l217 -834h55l218 834h221l-389 -1464h-220l123 440h-176zM184 1243v234h213v-234h-213zM612 1243v234h213v-234h-213z" />
|
||||
<glyph unicode="Œ" horiz-adv-x="1867" d="M104 707q0 199 27 333.5t89.5 226.5t165 133.5t255.5 41.5q114 0 260 -23h877v-219h-652v-371h529v-217h-529v-393h652v-219h-873q-153 -23 -264 -23q-129 0 -222.5 30t-154 86t-96.5 148t-50 202.5t-14 263.5zM340 709q0 -98 5.5 -167.5t19.5 -129.5t38 -97.5t62 -64.5 t90 -38t123 -11q60 0 223 14v987q-180 15 -229 15q-79 0 -134.5 -16.5t-94.5 -51t-61 -96t-32 -143.5t-10 -201z" />
|
||||
<glyph unicode="œ" horiz-adv-x="1728" d="M86 518q0 129 23.5 223t76.5 163.5t142.5 104.5t216.5 35t210 -42.5t132 -143.5q53 102 134.5 144t195.5 42q218 0 325 -114t107 -352l-17 -162h-635q2 -123 56 -179.5t180 -56.5q72 0 166 5t153 9l58 5l4 -174q-234 -48 -414 -48q-118 0 -195.5 37t-125.5 123 q-50 -86 -130 -123t-204 -37q-130 0 -220 36t-142 108t-74.5 168t-22.5 229zM311 518q0 -183 48.5 -261.5t185.5 -78.5q70 0 115.5 20.5t70.5 66t34 104t9 147.5q0 173 -52 251.5t-177 78.5q-132 0 -183 -76t-51 -252zM997 590h430q0 141 -48 199.5t-162 58.5 q-113 0 -166.5 -62.5t-53.5 -195.5z" />
|
||||
<glyph unicode="Ÿ" horiz-adv-x="1124" d="M8 1403h256l297 -602l299 602h254l-436 -825v-578h-229v578zM238 1604v233h213v-233h-213zM666 1604v233h213v-233h-213z" />
|
||||
<glyph unicode="ˆ" horiz-adv-x="520" d="M-45 1198l256 299h141l260 -299h-209l-118 156l-119 -156h-211z" />
|
||||
<glyph unicode="˜" horiz-adv-x="520" d="M-51 1364q4 5 12 12.5t31 27.5t46 35t54 27.5t58 12.5q45 0 144.5 -41t125.5 -41q22 0 60 18.5t66 36.5l27 18l50 -131q-12 -13 -31.5 -32.5t-71.5 -51.5t-94 -32q-45 0 -143.5 41t-130.5 41q-24 0 -62.5 -17.5t-65.5 -35.5l-26 -17z" />
|
||||
<glyph unicode=" " horiz-adv-x="961" />
|
||||
<glyph unicode=" " horiz-adv-x="1923" />
|
||||
<glyph unicode=" " horiz-adv-x="961" />
|
||||
<glyph unicode=" " horiz-adv-x="1923" />
|
||||
<glyph unicode=" " horiz-adv-x="641" />
|
||||
<glyph unicode=" " horiz-adv-x="480" />
|
||||
<glyph unicode=" " horiz-adv-x="320" />
|
||||
<glyph unicode=" " horiz-adv-x="320" />
|
||||
<glyph unicode=" " horiz-adv-x="240" />
|
||||
<glyph unicode=" " horiz-adv-x="384" />
|
||||
<glyph unicode=" " horiz-adv-x="106" />
|
||||
<glyph unicode="‐" horiz-adv-x="862" d="M125 451v202h612v-202h-612z" />
|
||||
<glyph unicode="‑" horiz-adv-x="862" d="M125 451v202h612v-202h-612z" />
|
||||
<glyph unicode="‒" horiz-adv-x="862" d="M125 451v202h612v-202h-612z" />
|
||||
<glyph unicode="–" horiz-adv-x="1273" d="M125 451v190h1024v-190h-1024z" />
|
||||
<glyph unicode="—" horiz-adv-x="2297" d="M125 451v190h2048v-190h-2048z" />
|
||||
<glyph unicode="‘" horiz-adv-x="495" d="M86 934l156 481h170l-93 -481h-233z" />
|
||||
<glyph unicode="’" horiz-adv-x="487" d="M96 936l92 481h234l-156 -481h-170z" />
|
||||
<glyph unicode="‚" horiz-adv-x="489" d="M117 -117l45 232h110l-73 -232h-82z" />
|
||||
<glyph unicode="“" horiz-adv-x="845" d="M86 934l156 481h170l-93 -481h-233zM436 934l156 481h170l-92 -481h-234z" />
|
||||
<glyph unicode="”" horiz-adv-x="843" d="M96 938l92 481h234l-156 -481h-170zM451 938l92 481h233l-155 -481h-170z" />
|
||||
<glyph unicode="„" horiz-adv-x="806" d="M12 -246l156 482h170l-92 -482h-234zM369 -246l155 482h170l-92 -482h-233z" />
|
||||
<glyph unicode="•" horiz-adv-x="942" d="M215 211v577h512v-577h-512z" />
|
||||
<glyph unicode="…" horiz-adv-x="1531" d="M125 0v295h240v-295h-240zM647 0v295h240v-295h-240zM1167 0v295h240v-295h-240z" />
|
||||
<glyph unicode=" " horiz-adv-x="384" />
|
||||
<glyph unicode="‹" horiz-adv-x="636" d="M86 418v166l428 317v-225l-238 -170l238 -193v-227z" />
|
||||
<glyph unicode="›" horiz-adv-x="636" d="M121 100v228l237 192l-237 170v225l428 -317v-164z" />
|
||||
<glyph unicode=" " horiz-adv-x="480" />
|
||||
<glyph unicode="€" d="M57 414v172h117q-2 29 -2 90v72h-115v172h127q28 240 140.5 347t355.5 107q153 0 387 -49l-8 -178q-67 12 -172 21.5t-178 9.5q-139 0 -206 -58t-89 -200h528v-172h-543v-72v-90h543v-172h-528q23 -131 91 -185.5t210 -54.5q141 0 344 29l6 -180q-212 -46 -385 -46 q-238 0 -351 106t-143 331h-129z" />
|
||||
<glyph unicode="™" horiz-adv-x="1368" d="M174 1169v138h410v-138h-107v-489h-151v489h-152zM641 678v629h182l107 -369l114 369h181v-629h-142v401l-98 -364h-102l-101 364v-401h-141z" />
|
||||
<glyph unicode="" horiz-adv-x="1024" d="M0 0v1024h1024v-1024h-1024z" />
|
||||
</font>
|
||||
</defs></svg>
|
After Width: | Height: | Size: 53 KiB |
BIN
fonts/titillium-semibold-webfont.ttf
Normal file
BIN
fonts/titillium-semibold-webfont.woff
Normal file
92
footer.php
Normal file
|
@ -0,0 +1,92 @@
|
|||
</div><!--/.main-inner-->
|
||||
</div><!--/.main-->
|
||||
|
||||
<div class="clear"></div>
|
||||
|
||||
</div><!--/.wrap-content-inner-->
|
||||
</div><!--/.wrap-content-->
|
||||
|
||||
<footer id="footer">
|
||||
|
||||
<?php if ( get_theme_mod( 'footer-ads', 'off' ) == 'on' ): ?>
|
||||
<div id="footer-ads">
|
||||
<?php dynamic_sidebar( 'footer-ads' ); ?>
|
||||
</div><!--/#footer-ads-->
|
||||
<?php endif; ?>
|
||||
|
||||
<?php // footer widgets
|
||||
$total = 4;
|
||||
if ( get_theme_mod( 'footer-widgets','0' ) != '' ) {
|
||||
|
||||
$total = get_theme_mod( 'footer-widgets' );
|
||||
if( $total == 1) $class = 'one-full';
|
||||
if( $total == 2) $class = 'one-half';
|
||||
if( $total == 3) $class = 'one-third';
|
||||
if( $total == 4) $class = 'one-fourth';
|
||||
}
|
||||
|
||||
if ( ( is_active_sidebar( 'footer-1' ) ||
|
||||
is_active_sidebar( 'footer-2' ) ||
|
||||
is_active_sidebar( 'footer-3' ) ||
|
||||
is_active_sidebar( 'footer-4' ) ) && $total > 0 )
|
||||
{ ?>
|
||||
<div id="footer-widgets">
|
||||
|
||||
<div class="pad group">
|
||||
<?php $i = 0; while ( $i < $total ) { $i++; ?>
|
||||
<?php if ( is_active_sidebar( 'footer-' . $i ) ) { ?>
|
||||
|
||||
<div class="footer-widget-<?php echo esc_attr( $i ); ?> grid <?php echo esc_attr( $class ); ?> <?php if ( $i == $total ) { echo 'last'; } ?>">
|
||||
<?php dynamic_sidebar( 'footer-' . $i ); ?>
|
||||
</div>
|
||||
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
</div><!--/.pad-->
|
||||
|
||||
</div><!--/#footer-widgets-->
|
||||
<?php } ?>
|
||||
|
||||
<div id="footer-bottom">
|
||||
|
||||
<a id="back-to-top" href="#"><i class="fas fa-angle-up"></i></a>
|
||||
|
||||
<div class="pad group">
|
||||
|
||||
<div class="grid one-full">
|
||||
|
||||
<?php if ( get_theme_mod('footer-logo') ): ?>
|
||||
<img id="footer-logo" src="<?php echo esc_url( get_theme_mod('footer-logo') ); ?>" alt="<?php echo esc_attr( get_bloginfo('name')); ?>">
|
||||
<?php endif; ?>
|
||||
|
||||
<div id="copyright">
|
||||
<?php if ( get_theme_mod( 'copyright' ) ): ?>
|
||||
<p><?php echo esc_html( get_theme_mod( 'copyright' ) ); ?></p>
|
||||
<?php else: ?>
|
||||
<p><?php bloginfo(); ?> © <?php echo esc_html( date_i18n( esc_html__( 'Y', 'instorm' ) ) ); ?>. <?php esc_html_e( 'All Rights Reserved.', 'instorm' ); ?></p>
|
||||
<?php endif; ?>
|
||||
</div><!--/#copyright-->
|
||||
|
||||
<?php if ( get_theme_mod( 'credit', 'on' ) == 'on' ): ?>
|
||||
<div id="credit">
|
||||
<p><?php esc_html_e('Powered by','instorm'); ?> <a href="http://wordpress.org" rel="nofollow">WordPress</a>. <?php esc_html_e('Theme by','instorm'); ?> <a href="http://alx.media" rel="nofollow">Alx</a>.</p>
|
||||
</div><!--/#credit-->
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ( get_theme_mod( 'footer-social', 'on' ) == 'on' ): ?>
|
||||
<?php instorm_social_links() ; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
</div>
|
||||
|
||||
</div><!--/.pad-->
|
||||
|
||||
</div><!--/#footer-bottom-->
|
||||
|
||||
</footer><!--/#footer-->
|
||||
|
||||
</div><!--/#wrapper-->
|
||||
|
||||
<?php wp_footer(); ?>
|
||||
</body>
|
||||
</html>
|
737
functions.php
Normal file
|
@ -0,0 +1,737 @@
|
|||
<?php
|
||||
/* ------------------------------------------------------------------------- *
|
||||
* Custom functions
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
// Use a child theme instead of placing custom functions here
|
||||
// http://codex.wordpress.org/Child_Themes
|
||||
|
||||
|
||||
/* ------------------------------------------------------------------------- *
|
||||
* Load theme files
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
// Load Kirki
|
||||
include( get_template_directory() . '/functions/kirki/kirki.php' );
|
||||
|
||||
if ( ! function_exists( 'instorm_load' ) ) {
|
||||
|
||||
function instorm_load() {
|
||||
// Load theme languages
|
||||
load_theme_textdomain( 'instorm', get_template_directory().'/languages' );
|
||||
|
||||
// Load theme options and meta boxes
|
||||
include( get_template_directory() . '/functions/theme-options.php' );
|
||||
include( get_template_directory() . '/functions/meta-boxes.php' );
|
||||
|
||||
// Load dynamic styles
|
||||
include( get_template_directory() . '/functions/dynamic-styles.php' );
|
||||
|
||||
// Load TGM plugin activation
|
||||
include( get_template_directory() . '/functions/class-tgm-plugin-activation.php' );
|
||||
}
|
||||
|
||||
}
|
||||
add_action( 'after_setup_theme', 'instorm_load' );
|
||||
|
||||
|
||||
/* ------------------------------------------------------------------------- *
|
||||
* Base functionality
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
// Content width
|
||||
if ( !isset( $content_width ) ) { $content_width = 740; }
|
||||
|
||||
|
||||
/* Theme setup
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_setup' ) ) {
|
||||
|
||||
function instorm_setup() {
|
||||
// Enable title tag
|
||||
add_theme_support( 'title-tag' );
|
||||
|
||||
// Enable automatic feed links
|
||||
add_theme_support( 'automatic-feed-links' );
|
||||
|
||||
// Enable featured image
|
||||
add_theme_support( 'post-thumbnails' );
|
||||
|
||||
// Enable alignwide and alignfull images and galleries
|
||||
add_theme_support( 'align-wide' );
|
||||
|
||||
// Enable post format support
|
||||
add_theme_support( 'post-formats', array( 'image', 'gallery', 'video', 'audio' ) );
|
||||
|
||||
// Declare WooCommerce support
|
||||
add_theme_support( 'woocommerce' );
|
||||
|
||||
// Enable Jetpack infinite scroll
|
||||
add_theme_support( 'infinite-scroll', array(
|
||||
'type' => 'click',
|
||||
'container' => 'masonry',
|
||||
'wrapper' => true,
|
||||
) );
|
||||
|
||||
// Enable support for selective refresh of widgets in customizer
|
||||
add_theme_support( 'customize-selective-refresh-widgets' );
|
||||
|
||||
// Thumbnail sizes
|
||||
add_image_size( 'instorm-small', 200, 200, true );
|
||||
add_image_size( 'instorm-medium', 520, 293, true );
|
||||
add_image_size( 'instorm-large', 950, 534, true );
|
||||
|
||||
// Thumbnail sizes custom widgets
|
||||
add_image_size( 'alx-small', 200, 200, true );
|
||||
add_image_size( 'alx-medium', 520, 293, true );
|
||||
|
||||
// Custom menu areas
|
||||
register_nav_menus( array(
|
||||
'mobile' => esc_html__( 'Mobile', 'instorm' ),
|
||||
'header' => esc_html__( 'Header', 'instorm' ),
|
||||
) );
|
||||
}
|
||||
|
||||
}
|
||||
add_action( 'after_setup_theme', 'instorm_setup' );
|
||||
|
||||
|
||||
/* Custom navigation
|
||||
/* ------------------------------------ */
|
||||
if ( ! class_exists( '\Instorm\Nav' ) ) {
|
||||
require_once 'functions/nav.php';
|
||||
}
|
||||
add_action( 'wp', function() {
|
||||
$nav = new \Instorm\Nav();
|
||||
$nav->enqueue(
|
||||
[
|
||||
'script' => 'js/nav.js',
|
||||
'inline' => false,
|
||||
]
|
||||
);
|
||||
$nav->init();
|
||||
} );
|
||||
|
||||
|
||||
/* Custom logo
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_custom_logo' ) ) {
|
||||
|
||||
function instorm_custom_logo() {
|
||||
$defaults = array(
|
||||
'height' => 120,
|
||||
'width' => 400,
|
||||
'flex-height' => true,
|
||||
'flex-width' => true,
|
||||
'header-text' => array( 'site-title', 'site-description' ),
|
||||
);
|
||||
add_theme_support( 'custom-logo', $defaults );
|
||||
}
|
||||
|
||||
}
|
||||
add_action( 'after_setup_theme', 'instorm_custom_logo' );
|
||||
|
||||
|
||||
/* Custom header
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_custom_header' ) ) {
|
||||
|
||||
function instorm_custom_header() {
|
||||
$args = array(
|
||||
'default-image' => false,
|
||||
'default-text' => false,
|
||||
'width' => 1120,
|
||||
'height' => 300,
|
||||
'flex-width' => true,
|
||||
'flex-height' => true,
|
||||
);
|
||||
add_theme_support( 'custom-header', $args );
|
||||
}
|
||||
|
||||
}
|
||||
add_action( 'after_setup_theme', 'instorm_custom_header' );
|
||||
|
||||
|
||||
/* Custom background
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_custom_background' ) ) {
|
||||
|
||||
function instorm_custom_background() {
|
||||
$args = array();
|
||||
add_theme_support( 'custom-background', $args );
|
||||
}
|
||||
|
||||
}
|
||||
add_action( 'after_setup_theme', 'instorm_custom_background' );
|
||||
|
||||
|
||||
/* Deregister
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_deregister' ) ) {
|
||||
|
||||
function instorm_deregister() {
|
||||
wp_deregister_style( 'wp-pagenavi' );
|
||||
}
|
||||
|
||||
}
|
||||
add_action( 'wp_enqueue_scripts', 'instorm_deregister', 100 );
|
||||
|
||||
|
||||
/* Register sidebars
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_sidebars' ) ) {
|
||||
|
||||
function instorm_sidebars() {
|
||||
register_sidebar(array( 'name' => esc_html__('Primary','instorm'),'id' => 'primary','description' => esc_html__("Normal full width sidebar","instorm"), 'before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3 class="group"><span>','after_title' => '</span></h3>'));
|
||||
|
||||
if ( get_theme_mod('footer-ads') == 'on' ) { register_sidebar(array( 'name' => esc_html__('Footer Ads',"instorm"),'id' => 'footer-ads', 'description' => esc_html__("Footer ads area","instorm"), 'before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3 class="group"><span>','after_title' => '</span></h3>')); }
|
||||
|
||||
if ( get_theme_mod('frontpage-widgets-top') == 'on' ) { register_sidebar(array( 'name' => esc_html__('Frontpage Top 1','instorm'),'id' => 'frontpage-top-1', 'description' => esc_html__("Frontpage area","instorm"), 'before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3 class="group"><span>','after_title' => '</span></h3>')); }
|
||||
if ( get_theme_mod('frontpage-widgets-top') == 'on' ) { register_sidebar(array( 'name' => esc_html__('Frontpage Top 2','instorm'),'id' => 'frontpage-top-2', 'description' => esc_html__("Frontpage area","instorm"), 'before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3 class="group"><span>','after_title' => '</span></h3>')); }
|
||||
if ( get_theme_mod('frontpage-widgets-bottom') == 'on' ) { register_sidebar(array( 'name' => esc_html__('Frontpage Bottom 1','instorm'),'id' => 'frontpage-bottom-1', 'description' => esc_html__("Frontpage area","instorm"), 'before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3 class="group"><span>','after_title' => '</span></h3>')); }
|
||||
if ( get_theme_mod('frontpage-widgets-bottom') == 'on' ) { register_sidebar(array( 'name' => esc_html__('Frontpage Bottom 2','instorm'),'id' => 'frontpage-bottom-2', 'description' => esc_html__("Frontpage area","instorm"), 'before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3 class="group"><span>','after_title' => '</span></h3>')); }
|
||||
|
||||
if ( get_theme_mod('footer-widgets') >= '1' ) { register_sidebar(array( 'name' => esc_html__('Footer 1','instorm'),'id' => 'footer-1', 'description' => esc_html__("Widgetized footer","instorm"), 'before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3 class="group"><span>','after_title' => '</span></h3>')); }
|
||||
if ( get_theme_mod('footer-widgets') >= '2' ) { register_sidebar(array( 'name' => esc_html__('Footer 2','instorm'),'id' => 'footer-2', 'description' => esc_html__("Widgetized footer","instorm"), 'before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3 class="group"><span>','after_title' => '</span></h3>')); }
|
||||
if ( get_theme_mod('footer-widgets') >= '3' ) { register_sidebar(array( 'name' => esc_html__('Footer 3','instorm'),'id' => 'footer-3', 'description' => esc_html__("Widgetized footer","instorm"), 'before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3 class="group"><span>','after_title' => '</span></h3>')); }
|
||||
if ( get_theme_mod('footer-widgets') >= '4' ) { register_sidebar(array( 'name' => esc_html__('Footer 4','instorm'),'id' => 'footer-4', 'description' => esc_html__("Widgetized footer","instorm"), 'before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3 class="group"><span>','after_title' => '</span></h3>')); }
|
||||
}
|
||||
|
||||
}
|
||||
add_action( 'widgets_init', 'instorm_sidebars' );
|
||||
|
||||
|
||||
/* Enqueue javascript
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_scripts' ) ) {
|
||||
|
||||
function instorm_scripts() {
|
||||
wp_enqueue_script( 'instorm-slick', get_template_directory_uri() . '/js/slick.min.js', array( 'jquery' ),'', false );
|
||||
wp_enqueue_script( 'instorm-fitvids', get_template_directory_uri() . '/js/jquery.fitvids.js', array( 'jquery' ),'', true );
|
||||
wp_enqueue_script( 'instorm-jq-sticky-anything', get_template_directory_uri() . '/js/jq-sticky-anything.min.js', array( 'jquery' ),'', true );
|
||||
wp_enqueue_script( 'instorm-scripts', get_template_directory_uri() . '/js/scripts.js', array( 'jquery' ),'', true );
|
||||
if ( is_singular() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); }
|
||||
}
|
||||
|
||||
}
|
||||
add_action( 'wp_enqueue_scripts', 'instorm_scripts' );
|
||||
|
||||
|
||||
/* Enqueue css
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_styles' ) ) {
|
||||
|
||||
function instorm_styles() {
|
||||
wp_enqueue_style( 'instorm-style', get_stylesheet_uri() );
|
||||
wp_enqueue_style( 'instorm-responsive', get_template_directory_uri().'/responsive.css' );
|
||||
if ( get_theme_mod('dark','off') == 'on' ) { wp_enqueue_style( 'instorm-dark', get_template_directory_uri().'/dark.css' ); }
|
||||
wp_enqueue_style( 'instorm-font-awesome', get_template_directory_uri().'/fonts/all.min.css' );
|
||||
}
|
||||
|
||||
}
|
||||
add_action( 'wp_enqueue_scripts', 'instorm_styles' );
|
||||
|
||||
|
||||
/* ------------------------------------------------------------------------- *
|
||||
* Template functions
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
/* Layout class
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_layout_class' ) ) {
|
||||
|
||||
function instorm_layout_class() {
|
||||
// Default layout
|
||||
$layout = 'col-2cl';
|
||||
$default = 'col-2cl';
|
||||
|
||||
// Check for page/post specific layout
|
||||
if ( is_page() || is_single() ) {
|
||||
// Reset post data
|
||||
wp_reset_postdata();
|
||||
global $post;
|
||||
// Get meta
|
||||
$meta = get_post_meta($post->ID,'_layout',true);
|
||||
// Get if set and not set to inherit
|
||||
if ( isset($meta) && !empty($meta) && $meta != 'inherit' ) { $layout = $meta; }
|
||||
// Else check for page-global / single-global
|
||||
elseif ( is_single() && ( get_theme_mod('layout-single','inherit') !='inherit' ) ) $layout = get_theme_mod('layout-single',''.$default.'');
|
||||
elseif ( is_page() && ( get_theme_mod('layout-page','inherit') !='inherit' ) ) $layout = get_theme_mod('layout-page',''.$default.'');
|
||||
// Else get global option
|
||||
else $layout = get_theme_mod('layout-global',''.$default.'');
|
||||
}
|
||||
|
||||
// Set layout based on page
|
||||
elseif ( is_home() && ( get_theme_mod('layout-home','inherit') !='inherit' ) ) $layout = get_theme_mod('layout-home',''.$default.'');
|
||||
elseif ( is_category() && ( get_theme_mod('layout-archive-category','inherit') !='inherit' ) ) $layout = get_theme_mod('layout-archive-category',''.$default.'');
|
||||
elseif ( is_archive() && ( get_theme_mod('layout-archive','inherit') !='inherit' ) ) $layout = get_theme_mod('layout-archive',''.$default.'');
|
||||
elseif ( is_search() && ( get_theme_mod('layout-search','inherit') !='inherit' ) ) $layout = get_theme_mod('layout-search',''.$default.'');
|
||||
elseif ( is_404() && ( get_theme_mod('layout-404','inherit') !='inherit' ) ) $layout = get_theme_mod('layout-404',''.$default.'');
|
||||
|
||||
// Global option
|
||||
else $layout = get_theme_mod('layout-global',''.$default.'');
|
||||
|
||||
// Return layout class
|
||||
return esc_attr( $layout );
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Dynamic sidebar primary
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_sidebar_primary' ) ) {
|
||||
|
||||
function instorm_sidebar_primary() {
|
||||
// Default sidebar
|
||||
$sidebar = 'primary';
|
||||
|
||||
// Set sidebar based on page
|
||||
if ( is_home() && get_theme_mod('s1-home') ) $sidebar = get_theme_mod('s1-home');
|
||||
if ( is_single() && get_theme_mod('s1-single') ) $sidebar = get_theme_mod('s1-single');
|
||||
if ( is_archive() && get_theme_mod('s1-archive') ) $sidebar = get_theme_mod('s1-archive');
|
||||
if ( is_category() && get_theme_mod('s1-archive-category') ) $sidebar = get_theme_mod('s1-archive-category');
|
||||
if ( is_search() && get_theme_mod('s1-search') ) $sidebar = get_theme_mod('s1-search');
|
||||
if ( is_404() && get_theme_mod('s1-404') ) $sidebar = get_theme_mod('s1-404');
|
||||
if ( is_page() && get_theme_mod('s1-page') ) $sidebar = get_theme_mod('s1-page');
|
||||
|
||||
// Check for page/post specific sidebar
|
||||
if ( is_page() || is_single() ) {
|
||||
// Reset post data
|
||||
wp_reset_postdata();
|
||||
global $post;
|
||||
// Get meta
|
||||
$meta = get_post_meta($post->ID,'_sidebar_primary',true);
|
||||
if ( $meta ) { $sidebar = $meta; }
|
||||
}
|
||||
|
||||
// Return sidebar
|
||||
return esc_attr( $sidebar );
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Dynamic sidebar secondary
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_sidebar_secondary' ) ) {
|
||||
|
||||
function instorm_sidebar_secondary() {
|
||||
// Default sidebar
|
||||
$sidebar = 'secondary';
|
||||
|
||||
// Set sidebar based on page
|
||||
if ( is_home() && get_theme_mod('s2-home') ) $sidebar = get_theme_mod('s2-home');
|
||||
if ( is_single() && get_theme_mod('s2-single') ) $sidebar = get_theme_mod('s2-single');
|
||||
if ( is_archive() && get_theme_mod('s2-archive') ) $sidebar = get_theme_mod('s2-archive');
|
||||
if ( is_category() && get_theme_mod('s2-archive-category') ) $sidebar = get_theme_mod('s2-archive-category');
|
||||
if ( is_search() && get_theme_mod('s2-search') ) $sidebar = get_theme_mod('s2-search');
|
||||
if ( is_404() && get_theme_mod('s2-404') ) $sidebar = get_theme_mod('s2-404');
|
||||
if ( is_page() && get_theme_mod('s2-page') ) $sidebar = get_theme_mod('s2-page');
|
||||
|
||||
// Check for page/post specific sidebar
|
||||
if ( is_page() || is_single() ) {
|
||||
// Reset post data
|
||||
wp_reset_postdata();
|
||||
global $post;
|
||||
// Get meta
|
||||
$meta = get_post_meta($post->ID,'_sidebar_secondary',true);
|
||||
if ( $meta ) { $sidebar = $meta; }
|
||||
}
|
||||
|
||||
// Return sidebar
|
||||
return esc_attr( $sidebar );
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Social links
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_social_links' ) ) {
|
||||
|
||||
function instorm_social_links() {
|
||||
if ( !get_theme_mod('social-links') =='' ) {
|
||||
$links = get_theme_mod('social-links', array());
|
||||
if ( !empty( $links ) ) {
|
||||
echo '<ul class="social-links">';
|
||||
foreach( $links as $item ) {
|
||||
|
||||
// Build each separate html-section only if set
|
||||
if ( isset($item['social-title']) && !empty($item['social-title']) )
|
||||
{ $title = 'title="' .esc_attr( $item['social-title'] ). '"'; } else $title = '';
|
||||
if ( isset($item['social-link']) && !empty($item['social-link']) )
|
||||
{ $link = 'href="' .esc_url( $item['social-link'] ). '"'; } else $link = '';
|
||||
if ( isset($item['social-target']) && !empty($item['social-target']) )
|
||||
{ $target = 'target="_blank"'; } else $target = '';
|
||||
if ( isset($item['social-icon']) && !empty($item['social-icon']) )
|
||||
{ $icon = 'class="fab ' .esc_attr( $item['social-icon'] ). '"'; } else $icon = '';
|
||||
if ( isset($item['social-color']) && !empty($item['social-color']) )
|
||||
{ $color = 'style="color: ' .esc_attr( $item['social-color'] ). ';"'; } else $color = '';
|
||||
|
||||
// Put them together
|
||||
if ( isset($item['social-title']) && !empty($item['social-title']) && isset($item['social-icon']) && !empty($item['social-icon']) && ($item['social-icon'] !='fa-') ) {
|
||||
echo '<li><a rel="nofollow" class="social-tooltip" '.$title.' '.$link.' '.$target.'><i '.$icon.' '.$color.'></i></a></li>';
|
||||
}
|
||||
}
|
||||
echo '</ul>';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Site name/logo
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_site_title' ) ) {
|
||||
|
||||
function instorm_site_title() {
|
||||
|
||||
$custom_logo_id = get_theme_mod( 'custom_logo' );
|
||||
$logo = wp_get_attachment_image_src( $custom_logo_id , 'full' );
|
||||
|
||||
// Text or image?
|
||||
if ( has_custom_logo() ) {
|
||||
$logo = '<img src="'. esc_url( $logo[0] ) .'" alt="'.esc_attr( get_bloginfo('name')).'">';;
|
||||
} else {
|
||||
$logo = esc_html( get_bloginfo('name') );
|
||||
}
|
||||
|
||||
$link = '<a href="'.esc_url( home_url('/') ).'" rel="home">'.$logo.'</a>';
|
||||
|
||||
if ( is_front_page() || is_home() ) {
|
||||
$sitename = '<h1 class="site-title">'.$link.'</h1>'."\n";
|
||||
} else {
|
||||
$sitename = '<p class="site-title">'.$link.'</p>'."\n";
|
||||
}
|
||||
|
||||
return $sitename;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Blog title
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_blog_title' ) ) {
|
||||
|
||||
function instorm_blog_title() {
|
||||
global $post;
|
||||
$heading = esc_html( get_theme_mod('blog-heading') );
|
||||
$subheading = esc_html( get_theme_mod('blog-subheading') );
|
||||
if($heading) {
|
||||
$title = $heading;
|
||||
} else {
|
||||
$title = esc_html( get_bloginfo('name') );
|
||||
}
|
||||
if($subheading) {
|
||||
$title = $title.' <span>'.$subheading.'</span>';
|
||||
}
|
||||
|
||||
return $title;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Related posts
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_related_posts' ) ) {
|
||||
|
||||
function instorm_related_posts() {
|
||||
wp_reset_postdata();
|
||||
global $post;
|
||||
|
||||
// Define shared post arguments
|
||||
$args = array(
|
||||
'no_found_rows' => true,
|
||||
'update_post_meta_cache' => false,
|
||||
'update_post_term_cache' => false,
|
||||
'ignore_sticky_posts' => 1,
|
||||
'orderby' => 'rand',
|
||||
'post__not_in' => array($post->ID),
|
||||
'posts_per_page' => 3
|
||||
);
|
||||
// Related by categories
|
||||
if ( get_theme_mod('related-posts') == 'categories' ) {
|
||||
|
||||
$cats = get_post_meta($post->ID, 'related-cat', true);
|
||||
|
||||
if ( !$cats ) {
|
||||
$cats = wp_get_post_categories($post->ID, array('fields'=>'ids'));
|
||||
$args['category__in'] = $cats;
|
||||
} else {
|
||||
$args['cat'] = $cats;
|
||||
}
|
||||
}
|
||||
// Related by tags
|
||||
if ( get_theme_mod('related-posts') == 'tags' ) {
|
||||
|
||||
$tags = get_post_meta($post->ID, 'related-tag', true);
|
||||
|
||||
if ( !$tags ) {
|
||||
$tags = wp_get_post_tags($post->ID, array('fields'=>'ids'));
|
||||
$args['tag__in'] = $tags;
|
||||
} else {
|
||||
$args['tag_slug__in'] = explode(',', $tags);
|
||||
}
|
||||
if ( !$tags ) { $break = true; }
|
||||
}
|
||||
|
||||
$query = !isset($break)?new WP_Query($args):new WP_Query;
|
||||
return $query;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Get images attached to post
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_post_images' ) ) {
|
||||
|
||||
function instorm_post_images( $args=array() ) {
|
||||
global $post;
|
||||
|
||||
$defaults = array(
|
||||
'numberposts' => -1,
|
||||
'order' => 'ASC',
|
||||
'orderby' => 'menu_order',
|
||||
'post_mime_type' => 'image',
|
||||
'post_parent' => $post->ID,
|
||||
'post_type' => 'attachment',
|
||||
);
|
||||
|
||||
$args = wp_parse_args( $args, $defaults );
|
||||
|
||||
return get_posts( $args );
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Get featured post ids
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_get_featured_post_ids' ) ) {
|
||||
|
||||
function instorm_get_featured_post_ids() {
|
||||
$args = array(
|
||||
'category' => absint( get_theme_mod('featured-category','') ),
|
||||
'numberposts' => absint( get_theme_mod('featured-posts-count','3')),
|
||||
);
|
||||
$posts = get_posts($args);
|
||||
if ( !$posts ) return false;
|
||||
foreach ( $posts as $post )
|
||||
$ids[] = $post->ID;
|
||||
return $ids;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* ------------------------------------------------------------------------- *
|
||||
* Filters
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
/* Body class
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_body_class' ) ) {
|
||||
|
||||
function instorm_body_class( $classes ) {
|
||||
$classes[] = instorm_layout_class();
|
||||
if ( get_theme_mod( 'boxed','off' ) != 'on' ) { $classes[] = 'full-width'; }
|
||||
if ( get_theme_mod( 'boxed','off' ) == 'on' ) { $classes[] = 'boxed'; }
|
||||
if ( has_nav_menu( 'mobile' ) ) { $classes[] = 'mobile-menu'; }
|
||||
if ( get_theme_mod( 'mobile-sidebar-hide','on' ) != 'on' ) { $classes[] = 'mobile-sidebar-hide'; }
|
||||
if ( get_theme_mod('profile-image') || get_theme_mod('profile-name') || get_theme_mod('profile-description') ) { $classes[] = 'skew-active'; }
|
||||
if (! ( is_user_logged_in() ) ) { $classes[] = 'logged-out'; }
|
||||
return $classes;
|
||||
}
|
||||
|
||||
}
|
||||
add_filter( 'body_class', 'instorm_body_class' );
|
||||
|
||||
|
||||
/* Excerpt ending
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_excerpt_more' ) ) {
|
||||
|
||||
function instorm_excerpt_more( $more ) {
|
||||
if ( is_admin() ) {
|
||||
return $more;
|
||||
}
|
||||
return '...';
|
||||
}
|
||||
|
||||
}
|
||||
add_filter( 'excerpt_more', 'instorm_excerpt_more' );
|
||||
|
||||
|
||||
/* Excerpt length
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_excerpt_length' ) ) {
|
||||
|
||||
function instorm_excerpt_length( $length ) {
|
||||
if ( is_admin() ) {
|
||||
return $length;
|
||||
}
|
||||
|
||||
$new_length = $length;
|
||||
$custom_length = get_theme_mod( 'excerpt-length', '26' );
|
||||
if ( absint( $custom_length ) > 0 ) {
|
||||
$new_length = absint( $custom_length );
|
||||
}
|
||||
return $new_length;
|
||||
}
|
||||
|
||||
}
|
||||
add_filter( 'excerpt_length', 'instorm_excerpt_length', 999 );
|
||||
|
||||
|
||||
/* Add responsive container to embeds
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_embed_html' ) ) {
|
||||
|
||||
function instorm_embed_html( $html, $url ) {
|
||||
|
||||
$pattern = '/^https?:\/\/(www\.)?twitter\.com/';
|
||||
$is_twitter = preg_match( $pattern, $url );
|
||||
|
||||
if ( 1 === $is_twitter ) {
|
||||
return $html;
|
||||
}
|
||||
|
||||
return '<div class="video-container">' . $html . '</div>';
|
||||
}
|
||||
|
||||
}
|
||||
add_filter( 'embed_oembed_html', 'instorm_embed_html', 10, 3 );
|
||||
|
||||
|
||||
/* Add responsive container to jetpack embeds
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_embed_html_jp' ) ) {
|
||||
|
||||
function instorm_embed_html_jp( $html ) {
|
||||
return '<div class="video-container">' . $html . '</div>';
|
||||
}
|
||||
|
||||
}
|
||||
add_filter( 'video_embed_html', 'instorm_embed_html_jp' );
|
||||
|
||||
|
||||
/* ------------------------------------------------------------------------- *
|
||||
* Actions
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
/* Include or exclude featured articles in loop
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_pre_get_posts' ) ) {
|
||||
|
||||
function instorm_pre_get_posts( $query ) {
|
||||
// Are we on main query ?
|
||||
if ( !$query->is_main_query() ) return;
|
||||
if ( $query->is_home() ) {
|
||||
|
||||
// Featured posts enabled
|
||||
if ( get_theme_mod('featured-posts-count','3') != '0' ) {
|
||||
// Get featured post ids
|
||||
$featured_post_ids = instorm_get_featured_post_ids();
|
||||
// Exclude posts
|
||||
if ( $featured_post_ids && get_theme_mod('featured-posts-include','off') =='on' )
|
||||
$query->set('post__not_in', $featured_post_ids);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
add_action( 'pre_get_posts', 'instorm_pre_get_posts' );
|
||||
|
||||
|
||||
/* Script for no-js / js class
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_html_js_class' ) ) {
|
||||
|
||||
function instorm_html_js_class () {
|
||||
echo '<script>document.documentElement.className = document.documentElement.className.replace("no-js","js");</script>'. "\n";
|
||||
}
|
||||
|
||||
}
|
||||
add_action( 'wp_head', 'instorm_html_js_class', 1 );
|
||||
|
||||
|
||||
/* Admin panel css
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_admin_panel_css' ) ) {
|
||||
|
||||
function instorm_admin_panel_css() {
|
||||
global $pagenow;
|
||||
if ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) {
|
||||
echo '<style>
|
||||
.rwmb-image-select { width: auto!important; height: auto!important; }
|
||||
.rwmb-text { width: 100%; }
|
||||
</style>';
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
add_action( 'admin_head', 'instorm_admin_panel_css' );
|
||||
|
||||
|
||||
/* TGM plugin activation
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_plugins' ) ) {
|
||||
|
||||
function instorm_plugins() {
|
||||
if ( get_theme_mod('recommended-plugins','on') =='on' ) {
|
||||
// Add the following plugins
|
||||
$plugins = array(
|
||||
array(
|
||||
'name' => esc_html__( 'Alx Extensions', 'instorm' ),
|
||||
'slug' => 'alx-extensions',
|
||||
),
|
||||
array(
|
||||
'name' => esc_html__( 'Meta Box', 'instorm' ),
|
||||
'slug' => 'meta-box',
|
||||
),
|
||||
array(
|
||||
'name' => esc_html__( 'Regenerate Thumbnails', 'instorm' ),
|
||||
'slug' => 'regenerate-thumbnails',
|
||||
),
|
||||
array(
|
||||
'name' => esc_html__( 'WP-PageNavi', 'instorm' ),
|
||||
'slug' => 'wp-pagenavi',
|
||||
)
|
||||
);
|
||||
tgmpa( $plugins );
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
add_action( 'tgmpa_register', 'instorm_plugins' );
|
||||
|
||||
|
||||
/* WooCommerce basic support
|
||||
/* ------------------------------------ */
|
||||
function instorm_wc_wrapper_start() {
|
||||
echo '<div class="content">';
|
||||
}
|
||||
function instorm_wc_wrapper_end() {
|
||||
echo '</div>';
|
||||
}
|
||||
remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
|
||||
remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
|
||||
add_action('woocommerce_before_main_content', 'instorm_wc_wrapper_start', 10);
|
||||
add_action('woocommerce_after_main_content', 'instorm_wc_wrapper_end', 10);
|
||||
|
||||
|
||||
/* Accessibility IE11 fix - https://git.io/vWdr2
|
||||
/* ------------------------------------ */
|
||||
function instorm_skip_link_focus_fix() {
|
||||
?>
|
||||
<script>
|
||||
/(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1);
|
||||
</script>
|
||||
<?php
|
||||
}
|
||||
add_action( 'wp_print_footer_scripts', 'instorm_skip_link_focus_fix' );
|
3760
functions/class-tgm-plugin-activation.php
Normal file
199
functions/dynamic-styles.php
Normal file
|
@ -0,0 +1,199 @@
|
|||
<?php
|
||||
/* ------------------------------------------------------------------------- *
|
||||
* Dynamic styles
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
/* Convert hexadecimal to rgb
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_hex2rgb' ) ) {
|
||||
|
||||
function instorm_hex2rgb( $hex, $array=false ) {
|
||||
$hex = str_replace("#", "", $hex);
|
||||
|
||||
if ( strlen($hex) == 3 ) {
|
||||
$r = hexdec(substr($hex,0,1).substr($hex,0,1));
|
||||
$g = hexdec(substr($hex,1,1).substr($hex,1,1));
|
||||
$b = hexdec(substr($hex,2,1).substr($hex,2,1));
|
||||
} else {
|
||||
$r = hexdec(substr($hex,0,2));
|
||||
$g = hexdec(substr($hex,2,2));
|
||||
$b = hexdec(substr($hex,4,2));
|
||||
}
|
||||
|
||||
$rgb = array( $r, $g, $b );
|
||||
if ( !$array ) { $rgb = implode(",", $rgb); }
|
||||
return $rgb;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Google fonts
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_enqueue_google_fonts' ) ) {
|
||||
|
||||
function instorm_enqueue_google_fonts () {
|
||||
if ( get_theme_mod('dynamic-styles', 'on') == 'on' ) {
|
||||
if ( get_theme_mod( 'font' ) == 'titillium-web-ext' ) { wp_enqueue_style( 'titillium-web-ext', '//fonts.googleapis.com/css?family=Titillium+Web:400,400italic,300italic,300,600&subset=latin,latin-ext' ); }
|
||||
if ( get_theme_mod( 'font' ) == 'droid-serif' ) { wp_enqueue_style( 'droid-serif', '//fonts.googleapis.com/css?family=Droid+Serif:400,400italic,700' ); }
|
||||
if ( get_theme_mod( 'font' ) == 'source-sans-pro' ) { wp_enqueue_style( 'source-sans-pro', '//fonts.googleapis.com/css?family=Source+Sans+Pro:400,300italic,300,400italic,600&subset=latin,latin-ext' ); }
|
||||
if ( get_theme_mod( 'font' ) == 'lato' ) { wp_enqueue_style( 'lato', '//fonts.googleapis.com/css?family=Lato:400,300,300italic,400italic,700' ); }
|
||||
if ( get_theme_mod( 'font' ) == 'raleway' ) { wp_enqueue_style( 'raleway', '//fonts.googleapis.com/css?family=Raleway:400,300,600' ); }
|
||||
if ( get_theme_mod( 'font' ) == 'ubuntu' ) { wp_enqueue_style( 'ubuntu', '//fonts.googleapis.com/css?family=Ubuntu:400,400italic,300italic,300,700&subset=latin,latin-ext' ); }
|
||||
if ( get_theme_mod( 'font' ) == 'ubuntu-cyr' ) { wp_enqueue_style( 'ubuntu-cyr', '//fonts.googleapis.com/css?family=Ubuntu:400,400italic,300italic,300,700&subset=latin,cyrillic-ext' ); }
|
||||
/*default*/ if ( ( get_theme_mod( 'font' ) == '' ) || ( get_theme_mod( 'font' ) == 'roboto' ) ) { wp_enqueue_style( 'roboto', '//fonts.googleapis.com/css?family=Roboto:400,300italic,300,400italic,700&subset=latin,latin-ext' ); }
|
||||
if ( get_theme_mod( 'font' ) == 'roboto-cyr' ) { wp_enqueue_style( 'roboto-cyr', '//fonts.googleapis.com/css?family=Roboto:400,300italic,300,400italic,700&subset=latin,cyrillic-ext' ); }
|
||||
if ( get_theme_mod( 'font' ) == 'roboto-condensed' ) { wp_enqueue_style( 'roboto-condensed', '//fonts.googleapis.com/css?family=Roboto+Condensed:400,300italic,300,400italic,700&subset=latin,latin-ext' ); }
|
||||
if ( get_theme_mod( 'font' ) == 'roboto-condensed-cyr' ) { wp_enqueue_style( 'roboto-condensed-cyr', '//fonts.googleapis.com/css?family=Roboto+Condensed:400,300italic,300,400italic,700&subset=latin,cyrillic-ext' ); }
|
||||
if ( get_theme_mod( 'font' ) == 'roboto-slab' ) { wp_enqueue_style( 'roboto-slab', '//fonts.googleapis.com/css?family=Roboto+Slab:400,300italic,300,400italic,700&subset=latin,latin-ext' ); }
|
||||
if ( get_theme_mod( 'font' ) == 'roboto-slab-cyr' ) { wp_enqueue_style( 'roboto-slab-cyr', '//fonts.googleapis.com/css?family=Roboto+Slab:400,300italic,300,400italic,700&subset=latin,cyrillic-ext' ); }
|
||||
if ( get_theme_mod( 'font' ) == 'playfair-display' ) { wp_enqueue_style( 'playfair-display', '//fonts.googleapis.com/css?family=Playfair+Display:400,400italic,700&subset=latin,latin-ext' ); }
|
||||
if ( get_theme_mod( 'font' ) == 'playfair-display-cyr' ) { wp_enqueue_style( 'playfair-display-cyr', '//fonts.googleapis.com/css?family=Playfair+Display:400,400italic,700&subset=latin,cyrillic' ); }
|
||||
if ( get_theme_mod( 'font' ) == 'open-sans' ) { wp_enqueue_style( 'open-sans', '//fonts.googleapis.com/css?family=Open+Sans:400,400italic,300italic,300,600&subset=latin,latin-ext' ); }
|
||||
if ( get_theme_mod( 'font' ) == 'open-sans-cyr' ) { wp_enqueue_style( 'open-sans-cyr', '//fonts.googleapis.com/css?family=Open+Sans:400,400italic,300italic,300,600&subset=latin,cyrillic-ext' ); }
|
||||
if ( get_theme_mod( 'font' ) == 'pt-serif' ) { wp_enqueue_style( 'pt-serif', '//fonts.googleapis.com/css?family=PT+Serif:400,700,400italic&subset=latin,latin-ext' ); }
|
||||
if ( get_theme_mod( 'font' ) == 'pt-serif-cyr' ) { wp_enqueue_style( 'pt-serif-cyr', '//fonts.googleapis.com/css?family=PT+Serif:400,700,400italic&subset=latin,cyrillic-ext' ); }
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
add_action( 'wp_enqueue_scripts', 'instorm_enqueue_google_fonts' );
|
||||
|
||||
|
||||
/* Dynamic css output
|
||||
/* ------------------------------------ */
|
||||
if ( ! function_exists( 'instorm_dynamic_css' ) ) {
|
||||
|
||||
function instorm_dynamic_css() {
|
||||
if ( get_theme_mod('dynamic-styles', 'on') == 'on' ) {
|
||||
|
||||
// rgb values
|
||||
$color_1 = get_theme_mod('color-1');
|
||||
$color_1_rgb = instorm_hex2rgb($color_1);
|
||||
|
||||
// start output
|
||||
$styles = '';
|
||||
|
||||
// google fonts
|
||||
if ( get_theme_mod( 'font' ) == 'titillium-web-ext' ) { $styles .= 'body { font-family: "Titillium Web", Arial, sans-serif; }'."\n"; }
|
||||
if ( get_theme_mod( 'font' ) == 'droid-serif' ) { $styles .= 'body { font-family: "Droid Serif", serif; }'."\n"; }
|
||||
if ( get_theme_mod( 'font' ) == 'source-sans-pro' ) { $styles .= 'body { font-family: "Source Sans Pro", Arial, sans-serif; }'."\n"; }
|
||||
if ( get_theme_mod( 'font' ) == 'lato' ) { $styles .= 'body { font-family: "Lato", Arial, sans-serif; }'."\n"; }
|
||||
if ( get_theme_mod( 'font' ) == 'raleway' ) { $styles .= 'body { font-family: "Raleway", Arial, sans-serif; }'."\n"; }
|
||||
if ( ( get_theme_mod( 'font' ) == 'ubuntu' ) || ( get_theme_mod( 'font' ) == 'ubuntu-cyr' ) ) { $styles .= 'body { font-family: "Ubuntu", Arial, sans-serif; }'."\n"; }
|
||||
/*default*/ if ( ( get_theme_mod( 'font' ) == '' ) || ( get_theme_mod( 'font' ) == 'roboto' ) || ( get_theme_mod( 'font' ) == 'roboto-cyr' ) ) { $styles .= 'body { font-family: "Roboto", Arial, sans-serif; }'."\n"; }
|
||||
if ( ( get_theme_mod( 'font' ) == 'roboto-condensed' ) || ( get_theme_mod( 'font' ) == 'roboto-condensed-cyr' ) ) { $styles .= 'body { font-family: "Roboto Condensed", Arial, sans-serif; }'."\n"; }
|
||||
if ( ( get_theme_mod( 'font' ) == 'roboto-slab' ) || ( get_theme_mod( 'font' ) == 'roboto-slab-cyr' ) ) { $styles .= 'body { font-family: "Roboto Slab", Arial, sans-serif; }'."\n"; }
|
||||
if ( ( get_theme_mod( 'font' ) == 'playfair-display' ) || ( get_theme_mod( 'font' ) == 'playfair-display-cyr' ) ) { $styles .= 'body { font-family: "Playfair Display", Arial, sans-serif; }'."\n"; }
|
||||
if ( ( get_theme_mod( 'font' ) == 'open-sans' ) || ( get_theme_mod( 'font' ) == 'open-sans-cyr' ) ) { $styles .= 'body { font-family: "Open Sans", Arial, sans-serif; }'."\n"; }
|
||||
if ( ( get_theme_mod( 'font' ) == 'pt-serif' ) || ( get_theme_mod( 'font' ) == 'pt-serif-cyr' ) ) { $styles .= 'body { font-family: "PT Serif", serif; }'."\n"; }
|
||||
if ( get_theme_mod( 'font' ) == 'arial' ) { $styles .= 'body { font-family: Arial, sans-serif; }'."\n"; }
|
||||
if ( get_theme_mod( 'font' ) == 'georgia' ) { $styles .= 'body { font-family: Georgia, serif; }'."\n"; }
|
||||
if ( get_theme_mod( 'font' ) == 'verdana' ) { $styles .= 'body { font-family: Verdana, sans-serif; }'."\n"; }
|
||||
if ( get_theme_mod( 'font' ) == 'tahoma' ) { $styles .= 'body { font-family: Tahoma, sans-serif; }'."\n"; }
|
||||
|
||||
// container width
|
||||
if ( get_theme_mod('container-width','1380') != '1380' ) {
|
||||
if ( get_theme_mod( 'boxed' ) ) {
|
||||
$styles .= '.boxed #wrapper { max-width: '.esc_attr( get_theme_mod('container-width') ).'px; }'."\n";
|
||||
}
|
||||
else {
|
||||
$styles .= '#wrapper { max-width: '.esc_attr( get_theme_mod('container-width') ).'px; }'."\n";
|
||||
}
|
||||
}
|
||||
// content max-width
|
||||
if ( get_theme_mod('content-width','680') != '680' ) {
|
||||
$styles .= '
|
||||
.entry-header,
|
||||
.entry-content,
|
||||
.entry-footer,
|
||||
.pagination,
|
||||
.page-title,
|
||||
.page-title-inner,
|
||||
.front-widgets { max-width: '.esc_attr( get_theme_mod('content-width') ).'px; }
|
||||
'."\n";
|
||||
}
|
||||
// single box max-width
|
||||
if ( get_theme_mod('single-box-width','960') != '960' ) {
|
||||
$styles .= '
|
||||
.single .post-wrapper { max-width: '.esc_attr( get_theme_mod('single-box-width') ).'px; }
|
||||
'."\n";
|
||||
}
|
||||
// single content max-width
|
||||
if ( get_theme_mod('single-content-width','680') != '680' ) {
|
||||
$styles .= '
|
||||
.single .entry-header,
|
||||
.single .entry-footer,
|
||||
.single .entry > *:not(.alignfull) { max-width: '.esc_attr( get_theme_mod('single-content-width') ).'px; }
|
||||
'."\n";
|
||||
}
|
||||
// page box max-width
|
||||
if ( get_theme_mod('page-box-width','960') != '960' ) {
|
||||
$styles .= '
|
||||
.page .post-wrapper { max-width: '.esc_attr( get_theme_mod('page-box-width') ).'px; }
|
||||
'."\n";
|
||||
}
|
||||
// page content max-width
|
||||
if ( get_theme_mod('page-content-width','680') != '680' ) {
|
||||
$styles .= '
|
||||
.page .entry-header,
|
||||
.page .entry-footer,
|
||||
.page .entry > *:not(.alignfull) { max-width: '.esc_attr( get_theme_mod('page-content-width') ).'px; }
|
||||
'."\n";
|
||||
}
|
||||
// gradient left
|
||||
if ( get_theme_mod('gradient-left','#d42121') != '#d42121' ) {
|
||||
$styles .= '
|
||||
.wrap-content,
|
||||
.post-comments,
|
||||
.alx-tabs-nav li.active a { background: linear-gradient(90deg, '.esc_attr( get_theme_mod('gradient-left') ).' 0%, '.esc_attr( get_theme_mod('gradient-right') ).' 100%); }
|
||||
|
||||
.entry-list .entry-title a:hover,
|
||||
.entry-meta li a,
|
||||
.entry-header .entry-meta .entry-category a { background-image: linear-gradient(to left,'.esc_attr( get_theme_mod('gradient-right') ).','.esc_attr( get_theme_mod('gradient-left') ).'); }
|
||||
|
||||
.post-comments > span:before { border-color: transparent '.esc_attr( get_theme_mod('gradient-left') ).' transparent transparent; }
|
||||
'."\n";
|
||||
}
|
||||
// gradient right
|
||||
if ( get_theme_mod('gradient-right','#5e59be') != '#5e59be' ) {
|
||||
$styles .= '
|
||||
.wrap-content,
|
||||
.post-comments,
|
||||
.alx-tabs-nav li.active a { background: linear-gradient(90deg, '.esc_attr( get_theme_mod('gradient-left') ).' 0%, '.esc_attr( get_theme_mod('gradient-right') ).' 100%); }
|
||||
|
||||
.entry-list .entry-title a:hover,
|
||||
.entry-meta li a,
|
||||
.entry-header .entry-meta .entry-category a { background-image: linear-gradient(to left,'.esc_attr( get_theme_mod('gradient-right') ).','.esc_attr( get_theme_mod('gradient-left') ).'); }
|
||||
'."\n";
|
||||
}
|
||||
// link color
|
||||
if ( get_theme_mod('color-link','#000000') != '#000000' ) {
|
||||
$styles .= '
|
||||
.entry a { color: '.esc_attr( get_theme_mod('color-link') ).'; }
|
||||
'."\n";
|
||||
}
|
||||
// background color
|
||||
if ( get_theme_mod('color-background','#ececec') != '#ececec' ) {
|
||||
$styles .= '
|
||||
body { background: '.esc_attr( get_theme_mod('color-background') ).'; }
|
||||
'."\n";
|
||||
}
|
||||
// header logo max-height
|
||||
if ( get_theme_mod('logo-max-height','60') != '60' ) {
|
||||
$styles .= '.site-title a img { max-height: '.esc_attr( get_theme_mod('logo-max-height') ).'px; }'."\n";
|
||||
}
|
||||
// header text color
|
||||
if ( get_theme_mod( 'header_textcolor' ) != '' ) {
|
||||
$styles .= '.site-title a, .site-description { color: #'.esc_attr( get_theme_mod( 'header_textcolor' ) ).'; }'."\n";
|
||||
}
|
||||
if ( get_theme_mod('dark','off') == 'on' ) {
|
||||
wp_add_inline_style( 'instorm-dark', $styles );
|
||||
} else {
|
||||
wp_add_inline_style( 'instorm-style', $styles );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
add_action( 'wp_enqueue_scripts', 'instorm_dynamic_css' );
|
BIN
functions/images/col-1c.png
Normal file
After Width: | Height: | Size: 138 B |
BIN
functions/images/col-2cl.png
Normal file
After Width: | Height: | Size: 187 B |
BIN
functions/images/col-2cr.png
Normal file
After Width: | Height: | Size: 190 B |
BIN
functions/images/col-3cl.png
Normal file
After Width: | Height: | Size: 198 B |
BIN
functions/images/col-3cm.png
Normal file
After Width: | Height: | Size: 179 B |
BIN
functions/images/col-3cr.png
Normal file
After Width: | Height: | Size: 137 B |
BIN
functions/images/footer-widgets-0.png
Normal file
After Width: | Height: | Size: 138 B |
BIN
functions/images/footer-widgets-1.png
Normal file
After Width: | Height: | Size: 139 B |
BIN
functions/images/footer-widgets-2.png
Normal file
After Width: | Height: | Size: 148 B |
BIN
functions/images/footer-widgets-3.png
Normal file
After Width: | Height: | Size: 146 B |
BIN
functions/images/footer-widgets-4.png
Normal file
After Width: | Height: | Size: 144 B |
BIN
functions/images/layout-off.png
Normal file
After Width: | Height: | Size: 630 B |
1340
functions/kirki/CHANGELOG.md
Normal file
21
functions/kirki/LICENSE
Normal file
|
@ -0,0 +1,21 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2020 Ari Stathopoulos (@aristath)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
BIN
functions/kirki/assets/images/1c.png
Normal file
After Width: | Height: | Size: 786 B |
BIN
functions/kirki/assets/images/2cl.png
Normal file
After Width: | Height: | Size: 866 B |
BIN
functions/kirki/assets/images/2cr.png
Normal file
After Width: | Height: | Size: 869 B |
BIN
functions/kirki/assets/images/3cl.png
Normal file
After Width: | Height: | Size: 929 B |
BIN
functions/kirki/assets/images/3cm.png
Normal file
After Width: | Height: | Size: 932 B |
BIN
functions/kirki/assets/images/3cr.png
Normal file
After Width: | Height: | Size: 935 B |
BIN
functions/kirki/assets/images/jquery.fs.stepper-arrows.png
Normal file
After Width: | Height: | Size: 306 B |
BIN
functions/kirki/assets/images/kirki-bottom.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
91
functions/kirki/assets/images/kirki-bottom.svg
Normal file
|
@ -0,0 +1,91 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="71.497665"
|
||||
height="23.886881"
|
||||
version="1.1"
|
||||
xml:space="preserve"
|
||||
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1"
|
||||
id="svg2"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="kirki-bottom.svg"><metadata
|
||||
id="metadata56"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs54" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1871"
|
||||
inkscape:window-height="1056"
|
||||
id="namedview52"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="4.6669048"
|
||||
inkscape:cx="-1.0852472"
|
||||
inkscape:cy="-7.0625365"
|
||||
inkscape:window-x="49"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" /><g
|
||||
id="g4242"
|
||||
transform="translate(-3.71284,-0.18012)"
|
||||
inkscape:export-xdpi="94"
|
||||
inkscape:export-ydpi="94"><path
|
||||
inkscape:export-ydpi="94.19397"
|
||||
inkscape:export-xdpi="94.19397"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path46"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.2;stroke-miterlimit:1;stroke-dasharray:none"
|
||||
d="m 10.4064,22.5387 -0.3276,0 0,1.4283 -1.65866,0 -0.31673,-2.9188 C 5.488,18.886 3.81284,15.6275 3.81284,12.0084 c 0,-2.71119 0.9401,-5.22001 2.5246,-7.23473 L 6.0704,2.31269 l 2.90602,0 C 10.8759,1.02464 13.1284,0.28012 15.5411,0.28012 c 2.4127,0 4.6652,0.74452 6.5647,2.03257 l 2.8545,0 -0.2609,2.40411 c 1.6102,2.01928 2.57,4.55213 2.57,7.2916 0,3.6568 -1.7103,6.9454 -4.3471,9.0859 l -0.3117,2.8727 -1.6586,0 0,-1.4283 -0.2761,0 c -1.5432,0.7637 -3.2923,1.1979 -5.1348,1.1979 -1.8425,0 -3.5916,-0.4342 -5.1347,-1.1979 z" /><g
|
||||
inkscape:export-ydpi="94.19397"
|
||||
inkscape:export-xdpi="94.19397"
|
||||
style="stroke-width:0.2;stroke-miterlimit:1;stroke-dasharray:none"
|
||||
id="g48"><path
|
||||
d="m 15.4462,11.8498 c 3.4224,0 6.1968,2.104 6.1968,4.6994 0,2.5955 -2.7744,4.6995 -6.1968,4.6995 -3.4224,0 -6.19678,-2.104 -6.19678,-4.6995 0,-2.5954 2.77438,-4.6994 6.19678,-4.6994 z m -1.9811,2.9947 c 0.5725,0 1.0366,0.8148 1.0366,1.8199 0,1.0051 -0.4641,1.8199 -1.0366,1.8199 -0.5725,0 -1.0366,-0.8148 -1.0366,-1.8199 0,-1.0051 0.4641,-1.8199 1.0366,-1.8199 z m 4.0544,0 c 0.5726,0 1.0367,0.8148 1.0367,1.8199 0,1.0051 -0.4641,1.8199 -1.0367,1.8199 -0.5725,0 -1.0366,-0.8148 -1.0366,-1.8199 0,-1.0051 0.4641,-1.8199 1.0366,-1.8199 z"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.2;stroke-miterlimit:1;stroke-dasharray:none"
|
||||
id="path50"
|
||||
inkscape:connector-curvature="0" /></g></g><g
|
||||
id="g20"
|
||||
style="fill:#000000;fill-opacity:0.20408164"
|
||||
inkscape:export-xdpi="94.19397"
|
||||
inkscape:export-ydpi="94.19397"
|
||||
transform="matrix(0.34650485,0,0,0.34650485,30.267064,8.7780735)"><text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:40px;line-height:125%;font-family:Roboto;-inkscape-font-specification:'Roboto Light';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:0.20408164;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="-7.2853427"
|
||||
y="42.141983"
|
||||
id="text4234"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4236"
|
||||
x="-7.2853427"
|
||||
y="42.141983">toolkit</tspan></text>
|
||||
</g><text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15.76700211px;line-height:125%;font-family:'Roboto Slab';-inkscape-font-specification:'Roboto Slab Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:0.10204079;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="27.568701"
|
||||
y="11.573637"
|
||||
id="text4238"
|
||||
sodipodi:linespacing="125%"
|
||||
inkscape:export-xdpi="94"
|
||||
inkscape:export-ydpi="94"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4240"
|
||||
x="27.568701"
|
||||
y="11.573637">KIRKI</tspan></text>
|
||||
</svg>
|
After Width: | Height: | Size: 4.8 KiB |
48
functions/kirki/assets/images/kirki-logo.svg
Normal file
|
@ -0,0 +1,48 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="50"
|
||||
height="50"
|
||||
version="1.1"
|
||||
xml:space="preserve"
|
||||
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1"
|
||||
id="svg4136"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="kirki-logo.svg"><metadata
|
||||
id="metadata4190"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs4188" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1871"
|
||||
inkscape:window-height="1056"
|
||||
id="namedview4186"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="15.188889"
|
||||
inkscape:cx="41.22716"
|
||||
inkscape:cy="11.507"
|
||||
inkscape:window-x="49"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4136" /><path
|
||||
id="path4184"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.16830143px"
|
||||
d="m 24.80031,24.424072 c 7.199936,0 13.036629,4.426328 13.036629,9.886447 0,5.46033 -5.836693,9.886658 -13.036629,9.886658 -7.199935,0 -13.036587,-4.426328 -13.036587,-9.886658 0,-5.460119 5.836652,-9.886447 13.036587,-9.886447 z m -4.167774,6.300154 c 1.204407,0 2.180766,1.71415 2.180766,3.828647 0,2.114498 -0.976359,3.828648 -2.180766,3.828648 -1.204407,0 -2.180766,-1.71415 -2.180766,-3.828648 0,-2.114497 0.976359,-3.828647 2.180766,-3.828647 z m 8.529516,0 c 1.204618,0 2.180977,1.71415 2.180977,3.828647 0,2.114498 -0.976359,3.828648 -2.180977,3.828648 -1.204407,0 -2.180765,-1.71415 -2.180765,-3.828648 0,-2.114497 0.976358,-3.828647 2.180765,-3.828647 z m -14.964311,16.186812 -0.689195,0 0,3.004811 -3.489435,0 -0.6663266,-6.140478 C 3.8505687,39.226604 0.32642086,32.371476 0.32642086,24.75773 c 0,-5.703715 1.97775214,-10.98169 5.31117244,-15.2201932 l -0.5617902,-5.177331 6.1135919,0 c 3.996065,-2.709758 8.734802,-4.27605494 13.810563,-4.27605494 5.075761,0 9.814498,1.56629694 13.810605,4.27605494 l 6.005206,0 -0.548873,5.05769 c 3.387487,4.2480962 5.406683,9.5766252 5.406683,15.3398342 0,7.693058 -3.598074,14.61151 -9.145289,19.114625 l -0.655745,6.043494 -3.489309,0 0,-3.004811 -0.58085,0 c -3.246535,1.606647 -6.926236,2.520103 -10.802428,2.520103 -3.876192,0 -7.555893,-0.913456 -10.802217,-2.520103 z"
|
||||
inkscape:connector-curvature="0" /></svg>
|
After Width: | Height: | Size: 3 KiB |
8315
functions/kirki/assets/vendor/fontawesome/fontawesome.json
vendored
Normal file
484
functions/kirki/assets/vendor/selectWoo/css/select2.css
vendored
Normal file
|
@ -0,0 +1,484 @@
|
|||
.select2-container {
|
||||
box-sizing: border-box;
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
position: relative;
|
||||
vertical-align: middle; }
|
||||
.select2-container .select2-selection--single {
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
height: 28px;
|
||||
user-select: none;
|
||||
-webkit-user-select: none; }
|
||||
.select2-container .select2-selection--single .select2-selection__rendered {
|
||||
display: block;
|
||||
padding-left: 8px;
|
||||
padding-right: 20px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap; }
|
||||
.select2-container .select2-selection--single .select2-selection__clear {
|
||||
position: relative; }
|
||||
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
|
||||
padding-right: 8px;
|
||||
padding-left: 20px; }
|
||||
.select2-container .select2-selection--multiple {
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
min-height: 32px;
|
||||
user-select: none;
|
||||
-webkit-user-select: none; }
|
||||
.select2-container .select2-selection--multiple .select2-selection__rendered {
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
padding-left: 8px;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap; }
|
||||
.select2-container .select2-search--inline {
|
||||
float: left; }
|
||||
.select2-container .select2-search--inline .select2-search__field {
|
||||
box-sizing: border-box;
|
||||
border: none;
|
||||
font-size: 100%;
|
||||
margin-top: 5px;
|
||||
padding: 0; }
|
||||
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
|
||||
-webkit-appearance: none; }
|
||||
|
||||
.select2-dropdown {
|
||||
background-color: white;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
box-sizing: border-box;
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: -100000px;
|
||||
width: 100%;
|
||||
z-index: 1051; }
|
||||
|
||||
.select2-results {
|
||||
display: block; }
|
||||
|
||||
.select2-results__options {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0; }
|
||||
|
||||
.select2-results__option {
|
||||
padding: 6px;
|
||||
user-select: none;
|
||||
-webkit-user-select: none; }
|
||||
.select2-results__option[data-selected] {
|
||||
cursor: pointer; }
|
||||
|
||||
.select2-container--open .select2-dropdown {
|
||||
left: 0; }
|
||||
|
||||
.select2-container--open .select2-dropdown--above {
|
||||
border-bottom: none;
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0; }
|
||||
|
||||
.select2-container--open .select2-dropdown--below {
|
||||
border-top: none;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0; }
|
||||
|
||||
.select2-search--dropdown {
|
||||
display: block;
|
||||
padding: 4px; }
|
||||
.select2-search--dropdown .select2-search__field {
|
||||
padding: 4px;
|
||||
width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
|
||||
-webkit-appearance: none; }
|
||||
.select2-search--dropdown.select2-search--hide {
|
||||
display: none; }
|
||||
|
||||
.select2-close-mask {
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: block;
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
min-height: 100%;
|
||||
min-width: 100%;
|
||||
height: auto;
|
||||
width: auto;
|
||||
opacity: 0;
|
||||
z-index: 99;
|
||||
background-color: #fff;
|
||||
filter: alpha(opacity=0); }
|
||||
|
||||
.select2-hidden-accessible {
|
||||
border: 0 !important;
|
||||
clip: rect(0 0 0 0) !important;
|
||||
height: 1px !important;
|
||||
margin: -1px !important;
|
||||
overflow: hidden !important;
|
||||
padding: 0 !important;
|
||||
position: absolute !important;
|
||||
width: 1px !important; }
|
||||
|
||||
.select2-container--default .select2-selection--single {
|
||||
background-color: #fff;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px; }
|
||||
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
||||
color: #444;
|
||||
line-height: 28px; }
|
||||
.select2-container--default .select2-selection--single .select2-selection__clear {
|
||||
cursor: pointer;
|
||||
float: right;
|
||||
font-weight: bold; }
|
||||
.select2-container--default .select2-selection--single .select2-selection__placeholder {
|
||||
color: #999; }
|
||||
.select2-container--default .select2-selection--single .select2-selection__arrow {
|
||||
height: 26px;
|
||||
position: absolute;
|
||||
top: 1px;
|
||||
right: 1px;
|
||||
width: 20px; }
|
||||
.select2-container--default .select2-selection--single .select2-selection__arrow b {
|
||||
border-color: #888 transparent transparent transparent;
|
||||
border-style: solid;
|
||||
border-width: 5px 4px 0 4px;
|
||||
height: 0;
|
||||
left: 50%;
|
||||
margin-left: -4px;
|
||||
margin-top: -2px;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 0; }
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
|
||||
float: left; }
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
|
||||
left: 1px;
|
||||
right: auto; }
|
||||
|
||||
.select2-container--default.select2-container--disabled .select2-selection--single {
|
||||
background-color: #eee;
|
||||
cursor: default; }
|
||||
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
|
||||
display: none; }
|
||||
|
||||
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
|
||||
border-color: transparent transparent #888 transparent;
|
||||
border-width: 0 4px 5px 4px; }
|
||||
|
||||
.select2-container--default .select2-selection--multiple {
|
||||
background-color: white;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
cursor: text; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
|
||||
box-sizing: border-box;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0 5px;
|
||||
width: 100%; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
|
||||
list-style: none; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
|
||||
color: #999;
|
||||
margin-top: 5px;
|
||||
float: left; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__clear {
|
||||
cursor: pointer;
|
||||
float: right;
|
||||
font-weight: bold;
|
||||
margin-top: 5px;
|
||||
margin-right: 10px; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice {
|
||||
background-color: #e4e4e4;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
cursor: default;
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
margin-top: 5px;
|
||||
padding: 0 5px; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
|
||||
color: #999;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
font-weight: bold;
|
||||
margin-right: 2px; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
|
||||
color: #333; }
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
|
||||
float: right; }
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
|
||||
margin-left: 5px;
|
||||
margin-right: auto; }
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
|
||||
margin-left: 2px;
|
||||
margin-right: auto; }
|
||||
|
||||
.select2-container--default.select2-container--focus .select2-selection--multiple {
|
||||
border: solid black 1px;
|
||||
outline: 0; }
|
||||
|
||||
.select2-container--default.select2-container--disabled .select2-selection--multiple {
|
||||
background-color: #eee;
|
||||
cursor: default; }
|
||||
|
||||
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
|
||||
display: none; }
|
||||
|
||||
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0; }
|
||||
|
||||
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0; }
|
||||
|
||||
.select2-container--default .select2-search--dropdown .select2-search__field {
|
||||
border: 1px solid #aaa; }
|
||||
|
||||
.select2-container--default .select2-search--inline .select2-search__field {
|
||||
background: transparent;
|
||||
border: none;
|
||||
outline: 0;
|
||||
box-shadow: none;
|
||||
-webkit-appearance: textfield; }
|
||||
|
||||
.select2-container--default .select2-results > .select2-results__options {
|
||||
max-height: 200px;
|
||||
overflow-y: auto; }
|
||||
|
||||
.select2-container--default .select2-results__option[role=group] {
|
||||
padding: 0; }
|
||||
|
||||
.select2-container--default .select2-results__option[aria-disabled=true] {
|
||||
color: #999; }
|
||||
|
||||
.select2-container--default .select2-results__option[data-selected=true] {
|
||||
background-color: #ddd; }
|
||||
|
||||
.select2-container--default .select2-results__option .select2-results__option {
|
||||
padding-left: 1em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
|
||||
padding-left: 0; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -1em;
|
||||
padding-left: 2em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -2em;
|
||||
padding-left: 3em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -3em;
|
||||
padding-left: 4em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -4em;
|
||||
padding-left: 5em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -5em;
|
||||
padding-left: 6em; }
|
||||
|
||||
.select2-container--default .select2-results__option--highlighted[data-selected] {
|
||||
background-color: #5897fb;
|
||||
color: white; }
|
||||
|
||||
.select2-container--default .select2-results__group {
|
||||
cursor: default;
|
||||
display: block;
|
||||
padding: 6px; }
|
||||
|
||||
.select2-container--classic .select2-selection--single {
|
||||
background-color: #f7f7f7;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
outline: 0;
|
||||
background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
|
||||
background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
|
||||
background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
|
||||
.select2-container--classic .select2-selection--single:focus {
|
||||
border: 1px solid #5897fb; }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__rendered {
|
||||
color: #444;
|
||||
line-height: 28px; }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__clear {
|
||||
cursor: pointer;
|
||||
float: right;
|
||||
font-weight: bold;
|
||||
margin-right: 10px; }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
|
||||
color: #999; }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__arrow {
|
||||
background-color: #ddd;
|
||||
border: none;
|
||||
border-left: 1px solid #aaa;
|
||||
border-top-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
height: 26px;
|
||||
position: absolute;
|
||||
top: 1px;
|
||||
right: 1px;
|
||||
width: 20px;
|
||||
background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
|
||||
background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
|
||||
background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
|
||||
border-color: #888 transparent transparent transparent;
|
||||
border-style: solid;
|
||||
border-width: 5px 4px 0 4px;
|
||||
height: 0;
|
||||
left: 50%;
|
||||
margin-left: -4px;
|
||||
margin-top: -2px;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 0; }
|
||||
|
||||
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
|
||||
float: left; }
|
||||
|
||||
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
|
||||
border: none;
|
||||
border-right: 1px solid #aaa;
|
||||
border-radius: 0;
|
||||
border-top-left-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
left: 1px;
|
||||
right: auto; }
|
||||
|
||||
.select2-container--classic.select2-container--open .select2-selection--single {
|
||||
border: 1px solid #5897fb; }
|
||||
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
|
||||
background: transparent;
|
||||
border: none; }
|
||||
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
|
||||
border-color: transparent transparent #888 transparent;
|
||||
border-width: 0 4px 5px 4px; }
|
||||
|
||||
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
|
||||
border-top: none;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
|
||||
background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
|
||||
background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
|
||||
|
||||
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
|
||||
border-bottom: none;
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
|
||||
background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
|
||||
background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }
|
||||
|
||||
.select2-container--classic .select2-selection--multiple {
|
||||
background-color: white;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
cursor: text;
|
||||
outline: 0; }
|
||||
.select2-container--classic .select2-selection--multiple:focus {
|
||||
border: 1px solid #5897fb; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0 5px; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
|
||||
display: none; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
|
||||
background-color: #e4e4e4;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
cursor: default;
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
margin-top: 5px;
|
||||
padding: 0 5px; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
|
||||
color: #888;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
font-weight: bold;
|
||||
margin-right: 2px; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
|
||||
color: #555; }
|
||||
|
||||
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
|
||||
float: right; }
|
||||
|
||||
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
|
||||
margin-left: 5px;
|
||||
margin-right: auto; }
|
||||
|
||||
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
|
||||
margin-left: 2px;
|
||||
margin-right: auto; }
|
||||
|
||||
.select2-container--classic.select2-container--open .select2-selection--multiple {
|
||||
border: 1px solid #5897fb; }
|
||||
|
||||
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
|
||||
border-top: none;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0; }
|
||||
|
||||
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
|
||||
border-bottom: none;
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0; }
|
||||
|
||||
.select2-container--classic .select2-search--dropdown .select2-search__field {
|
||||
border: 1px solid #aaa;
|
||||
outline: 0; }
|
||||
|
||||
.select2-container--classic .select2-search--inline .select2-search__field {
|
||||
outline: 0;
|
||||
box-shadow: none; }
|
||||
|
||||
.select2-container--classic .select2-dropdown {
|
||||
background-color: white;
|
||||
border: 1px solid transparent; }
|
||||
|
||||
.select2-container--classic .select2-dropdown--above {
|
||||
border-bottom: none; }
|
||||
|
||||
.select2-container--classic .select2-dropdown--below {
|
||||
border-top: none; }
|
||||
|
||||
.select2-container--classic .select2-results > .select2-results__options {
|
||||
max-height: 200px;
|
||||
overflow-y: auto; }
|
||||
|
||||
.select2-container--classic .select2-results__option[role=group] {
|
||||
padding: 0; }
|
||||
|
||||
.select2-container--classic .select2-results__option[aria-disabled=true] {
|
||||
color: grey; }
|
||||
|
||||
.select2-container--classic .select2-results__option--highlighted[data-selected] {
|
||||
background-color: #3875d7;
|
||||
color: white; }
|
||||
|
||||
.select2-container--classic .select2-results__group {
|
||||
cursor: default;
|
||||
display: block;
|
||||
padding: 6px; }
|
||||
|
||||
.select2-container--classic.select2-container--open .select2-dropdown {
|
||||
border-color: #5897fb; }
|
1
functions/kirki/assets/vendor/selectWoo/css/select2.min.css
vendored
Normal file
484
functions/kirki/assets/vendor/selectWoo/css/selectWoo.css
vendored
Normal file
|
@ -0,0 +1,484 @@
|
|||
.select2-container {
|
||||
box-sizing: border-box;
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
position: relative;
|
||||
vertical-align: middle; }
|
||||
.select2-container .select2-selection--single {
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
height: 28px;
|
||||
user-select: none;
|
||||
-webkit-user-select: none; }
|
||||
.select2-container .select2-selection--single .select2-selection__rendered {
|
||||
display: block;
|
||||
padding-left: 8px;
|
||||
padding-right: 20px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap; }
|
||||
.select2-container .select2-selection--single .select2-selection__clear {
|
||||
position: relative; }
|
||||
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
|
||||
padding-right: 8px;
|
||||
padding-left: 20px; }
|
||||
.select2-container .select2-selection--multiple {
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
min-height: 32px;
|
||||
user-select: none;
|
||||
-webkit-user-select: none; }
|
||||
.select2-container .select2-selection--multiple .select2-selection__rendered {
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
padding-left: 8px;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap; }
|
||||
.select2-container .select2-search--inline {
|
||||
float: left; }
|
||||
.select2-container .select2-search--inline .select2-search__field {
|
||||
box-sizing: border-box;
|
||||
border: none;
|
||||
font-size: 100%;
|
||||
margin-top: 5px;
|
||||
padding: 0; }
|
||||
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
|
||||
-webkit-appearance: none; }
|
||||
|
||||
.select2-dropdown {
|
||||
background-color: white;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
box-sizing: border-box;
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: -100000px;
|
||||
width: 100%;
|
||||
z-index: 1051; }
|
||||
|
||||
.select2-results {
|
||||
display: block; }
|
||||
|
||||
.select2-results__options {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0; }
|
||||
|
||||
.select2-results__option {
|
||||
padding: 6px;
|
||||
user-select: none;
|
||||
-webkit-user-select: none; }
|
||||
.select2-results__option[data-selected] {
|
||||
cursor: pointer; }
|
||||
|
||||
.select2-container--open .select2-dropdown {
|
||||
left: 0; }
|
||||
|
||||
.select2-container--open .select2-dropdown--above {
|
||||
border-bottom: none;
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0; }
|
||||
|
||||
.select2-container--open .select2-dropdown--below {
|
||||
border-top: none;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0; }
|
||||
|
||||
.select2-search--dropdown {
|
||||
display: block;
|
||||
padding: 4px; }
|
||||
.select2-search--dropdown .select2-search__field {
|
||||
padding: 4px;
|
||||
width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
|
||||
-webkit-appearance: none; }
|
||||
.select2-search--dropdown.select2-search--hide {
|
||||
display: none; }
|
||||
|
||||
.select2-close-mask {
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: block;
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
min-height: 100%;
|
||||
min-width: 100%;
|
||||
height: auto;
|
||||
width: auto;
|
||||
opacity: 0;
|
||||
z-index: 99;
|
||||
background-color: #fff;
|
||||
filter: alpha(opacity=0); }
|
||||
|
||||
.select2-hidden-accessible {
|
||||
border: 0 !important;
|
||||
clip: rect(0 0 0 0) !important;
|
||||
height: 1px !important;
|
||||
margin: -1px !important;
|
||||
overflow: hidden !important;
|
||||
padding: 0 !important;
|
||||
position: absolute !important;
|
||||
width: 1px !important; }
|
||||
|
||||
.select2-container--default .select2-selection--single {
|
||||
background-color: #fff;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px; }
|
||||
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
||||
color: #444;
|
||||
line-height: 28px; }
|
||||
.select2-container--default .select2-selection--single .select2-selection__clear {
|
||||
cursor: pointer;
|
||||
float: right;
|
||||
font-weight: bold; }
|
||||
.select2-container--default .select2-selection--single .select2-selection__placeholder {
|
||||
color: #999; }
|
||||
.select2-container--default .select2-selection--single .select2-selection__arrow {
|
||||
height: 26px;
|
||||
position: absolute;
|
||||
top: 1px;
|
||||
right: 1px;
|
||||
width: 20px; }
|
||||
.select2-container--default .select2-selection--single .select2-selection__arrow b {
|
||||
border-color: #888 transparent transparent transparent;
|
||||
border-style: solid;
|
||||
border-width: 5px 4px 0 4px;
|
||||
height: 0;
|
||||
left: 50%;
|
||||
margin-left: -4px;
|
||||
margin-top: -2px;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 0; }
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
|
||||
float: left; }
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
|
||||
left: 1px;
|
||||
right: auto; }
|
||||
|
||||
.select2-container--default.select2-container--disabled .select2-selection--single {
|
||||
background-color: #eee;
|
||||
cursor: default; }
|
||||
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
|
||||
display: none; }
|
||||
|
||||
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
|
||||
border-color: transparent transparent #888 transparent;
|
||||
border-width: 0 4px 5px 4px; }
|
||||
|
||||
.select2-container--default .select2-selection--multiple {
|
||||
background-color: white;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
cursor: text; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
|
||||
box-sizing: border-box;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0 5px;
|
||||
width: 100%; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
|
||||
list-style: none; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
|
||||
color: #999;
|
||||
margin-top: 5px;
|
||||
float: left; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__clear {
|
||||
cursor: pointer;
|
||||
float: right;
|
||||
font-weight: bold;
|
||||
margin-top: 5px;
|
||||
margin-right: 10px; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice {
|
||||
background-color: #e4e4e4;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
cursor: default;
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
margin-top: 5px;
|
||||
padding: 0 5px; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
|
||||
color: #999;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
font-weight: bold;
|
||||
margin-right: 2px; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
|
||||
color: #333; }
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
|
||||
float: right; }
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
|
||||
margin-left: 5px;
|
||||
margin-right: auto; }
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
|
||||
margin-left: 2px;
|
||||
margin-right: auto; }
|
||||
|
||||
.select2-container--default.select2-container--focus .select2-selection--multiple {
|
||||
border: solid black 1px;
|
||||
outline: 0; }
|
||||
|
||||
.select2-container--default.select2-container--disabled .select2-selection--multiple {
|
||||
background-color: #eee;
|
||||
cursor: default; }
|
||||
|
||||
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
|
||||
display: none; }
|
||||
|
||||
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0; }
|
||||
|
||||
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0; }
|
||||
|
||||
.select2-container--default .select2-search--dropdown .select2-search__field {
|
||||
border: 1px solid #aaa; }
|
||||
|
||||
.select2-container--default .select2-search--inline .select2-search__field {
|
||||
background: transparent;
|
||||
border: none;
|
||||
outline: 0;
|
||||
box-shadow: none;
|
||||
-webkit-appearance: textfield; }
|
||||
|
||||
.select2-container--default .select2-results > .select2-results__options {
|
||||
max-height: 200px;
|
||||
overflow-y: auto; }
|
||||
|
||||
.select2-container--default .select2-results__option[role=group] {
|
||||
padding: 0; }
|
||||
|
||||
.select2-container--default .select2-results__option[aria-disabled=true] {
|
||||
color: #999; }
|
||||
|
||||
.select2-container--default .select2-results__option[data-selected=true] {
|
||||
background-color: #ddd; }
|
||||
|
||||
.select2-container--default .select2-results__option .select2-results__option {
|
||||
padding-left: 1em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
|
||||
padding-left: 0; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -1em;
|
||||
padding-left: 2em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -2em;
|
||||
padding-left: 3em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -3em;
|
||||
padding-left: 4em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -4em;
|
||||
padding-left: 5em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -5em;
|
||||
padding-left: 6em; }
|
||||
|
||||
.select2-container--default .select2-results__option--highlighted[data-selected] {
|
||||
background-color: #5897fb;
|
||||
color: white; }
|
||||
|
||||
.select2-container--default .select2-results__group {
|
||||
cursor: default;
|
||||
display: block;
|
||||
padding: 6px; }
|
||||
|
||||
.select2-container--classic .select2-selection--single {
|
||||
background-color: #f7f7f7;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
outline: 0;
|
||||
background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
|
||||
background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
|
||||
background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
|
||||
.select2-container--classic .select2-selection--single:focus {
|
||||
border: 1px solid #5897fb; }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__rendered {
|
||||
color: #444;
|
||||
line-height: 28px; }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__clear {
|
||||
cursor: pointer;
|
||||
float: right;
|
||||
font-weight: bold;
|
||||
margin-right: 10px; }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
|
||||
color: #999; }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__arrow {
|
||||
background-color: #ddd;
|
||||
border: none;
|
||||
border-left: 1px solid #aaa;
|
||||
border-top-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
height: 26px;
|
||||
position: absolute;
|
||||
top: 1px;
|
||||
right: 1px;
|
||||
width: 20px;
|
||||
background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
|
||||
background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
|
||||
background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
|
||||
border-color: #888 transparent transparent transparent;
|
||||
border-style: solid;
|
||||
border-width: 5px 4px 0 4px;
|
||||
height: 0;
|
||||
left: 50%;
|
||||
margin-left: -4px;
|
||||
margin-top: -2px;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 0; }
|
||||
|
||||
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
|
||||
float: left; }
|
||||
|
||||
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
|
||||
border: none;
|
||||
border-right: 1px solid #aaa;
|
||||
border-radius: 0;
|
||||
border-top-left-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
left: 1px;
|
||||
right: auto; }
|
||||
|
||||
.select2-container--classic.select2-container--open .select2-selection--single {
|
||||
border: 1px solid #5897fb; }
|
||||
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
|
||||
background: transparent;
|
||||
border: none; }
|
||||
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
|
||||
border-color: transparent transparent #888 transparent;
|
||||
border-width: 0 4px 5px 4px; }
|
||||
|
||||
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
|
||||
border-top: none;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
|
||||
background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
|
||||
background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
|
||||
|
||||
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
|
||||
border-bottom: none;
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
|
||||
background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
|
||||
background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }
|
||||
|
||||
.select2-container--classic .select2-selection--multiple {
|
||||
background-color: white;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
cursor: text;
|
||||
outline: 0; }
|
||||
.select2-container--classic .select2-selection--multiple:focus {
|
||||
border: 1px solid #5897fb; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0 5px; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
|
||||
display: none; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
|
||||
background-color: #e4e4e4;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
cursor: default;
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
margin-top: 5px;
|
||||
padding: 0 5px; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
|
||||
color: #888;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
font-weight: bold;
|
||||
margin-right: 2px; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
|
||||
color: #555; }
|
||||
|
||||
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
|
||||
float: right; }
|
||||
|
||||
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
|
||||
margin-left: 5px;
|
||||
margin-right: auto; }
|
||||
|
||||
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
|
||||
margin-left: 2px;
|
||||
margin-right: auto; }
|
||||
|
||||
.select2-container--classic.select2-container--open .select2-selection--multiple {
|
||||
border: 1px solid #5897fb; }
|
||||
|
||||
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
|
||||
border-top: none;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0; }
|
||||
|
||||
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
|
||||
border-bottom: none;
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0; }
|
||||
|
||||
.select2-container--classic .select2-search--dropdown .select2-search__field {
|
||||
border: 1px solid #aaa;
|
||||
outline: 0; }
|
||||
|
||||
.select2-container--classic .select2-search--inline .select2-search__field {
|
||||
outline: 0;
|
||||
box-shadow: none; }
|
||||
|
||||
.select2-container--classic .select2-dropdown {
|
||||
background-color: white;
|
||||
border: 1px solid transparent; }
|
||||
|
||||
.select2-container--classic .select2-dropdown--above {
|
||||
border-bottom: none; }
|
||||
|
||||
.select2-container--classic .select2-dropdown--below {
|
||||
border-top: none; }
|
||||
|
||||
.select2-container--classic .select2-results > .select2-results__options {
|
||||
max-height: 200px;
|
||||
overflow-y: auto; }
|
||||
|
||||
.select2-container--classic .select2-results__option[role=group] {
|
||||
padding: 0; }
|
||||
|
||||
.select2-container--classic .select2-results__option[aria-disabled=true] {
|
||||
color: grey; }
|
||||
|
||||
.select2-container--classic .select2-results__option--highlighted[data-selected] {
|
||||
background-color: #3875d7;
|
||||
color: white; }
|
||||
|
||||
.select2-container--classic .select2-results__group {
|
||||
cursor: default;
|
||||
display: block;
|
||||
padding: 6px; }
|
||||
|
||||
.select2-container--classic.select2-container--open .select2-dropdown {
|
||||
border-color: #5897fb; }
|
1
functions/kirki/assets/vendor/selectWoo/css/selectWoo.min.css
vendored
Normal file
3
functions/kirki/assets/vendor/selectWoo/js/i18n/ar.js
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*! Select2 1.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ar",[],function(){return{errorLoading:function(){return"لا يمكن تحميل النتائج"},inputTooLong:function(e){var t=e.input.length-e.maximum;return"الرجاء حذف "+t+" عناصر"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"الرجاء إضافة "+t+" عناصر"},loadingMore:function(){return"جاري تحميل نتائج إضافية..."},maximumSelected:function(e){return"تستطيع إختيار "+e.maximum+" بنود فقط"},noResults:function(){return"لم يتم العثور على أي نتائج"},searching:function(){return"جاري البحث…"}}}),{define:e.define,require:e.require}})();
|
3
functions/kirki/assets/vendor/selectWoo/js/i18n/az.js
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*! Select2 1.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/az",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return t+" simvol silin"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t+" simvol daxil edin"},loadingMore:function(){return"Daha çox nəticə yüklənir…"},maximumSelected:function(e){return"Sadəcə "+e.maximum+" element seçə bilərsiniz"},noResults:function(){return"Nəticə tapılmadı"},searching:function(){return"Axtarılır…"}}}),{define:e.define,require:e.require}})();
|
3
functions/kirki/assets/vendor/selectWoo/js/i18n/bg.js
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*! Select2 1.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/bg",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Моля въведете с "+t+" по-малко символ";return t>1&&(n+="a"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Моля въведете още "+t+" символ";return t>1&&(n+="a"),n},loadingMore:function(){return"Зареждат се още…"},maximumSelected:function(e){var t="Можете да направите до "+e.maximum+" ";return e.maximum>1?t+="избора":t+="избор",t},noResults:function(){return"Няма намерени съвпадения"},searching:function(){return"Търсене…"}}}),{define:e.define,require:e.require}})();
|
3
functions/kirki/assets/vendor/selectWoo/js/i18n/ca.js
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*! Select2 1.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ca",[],function(){return{errorLoading:function(){return"La càrrega ha fallat"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Si us plau, elimina "+t+" car";return t==1?n+="àcter":n+="àcters",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Si us plau, introdueix "+t+" car";return t==1?n+="àcter":n+="àcters",n},loadingMore:function(){return"Carregant més resultats…"},maximumSelected:function(e){var t="Només es pot seleccionar "+e.maximum+" element";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No s'han trobat resultats"},searching:function(){return"Cercant…"}}}),{define:e.define,require:e.require}})();
|
3
functions/kirki/assets/vendor/selectWoo/js/i18n/cs.js
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*! Select2 1.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/cs",[],function(){function e(e,t){switch(e){case 2:return t?"dva":"dvě";case 3:return"tři";case 4:return"čtyři"}return""}return{errorLoading:function(){return"Výsledky nemohly být načteny."},inputTooLong:function(t){var n=t.input.length-t.maximum;return n==1?"Prosím zadejte o jeden znak méně":n<=4?"Prosím zadejte o "+e(n,!0)+" znaky méně":"Prosím zadejte o "+n+" znaků méně"},inputTooShort:function(t){var n=t.minimum-t.input.length;return n==1?"Prosím zadejte ještě jeden znak":n<=4?"Prosím zadejte ještě další "+e(n,!0)+" znaky":"Prosím zadejte ještě dalších "+n+" znaků"},loadingMore:function(){return"Načítají se další výsledky…"},maximumSelected:function(t){var n=t.maximum;return n==1?"Můžete zvolit jen jednu položku":n<=4?"Můžete zvolit maximálně "+e(n,!1)+" položky":"Můžete zvolit maximálně "+n+" položek"},noResults:function(){return"Nenalezeny žádné položky"},searching:function(){return"Vyhledávání…"}}}),{define:e.define,require:e.require}})();
|
3
functions/kirki/assets/vendor/selectWoo/js/i18n/da.js
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*! Select2 1.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/da",[],function(){return{errorLoading:function(){return"Resultaterne kunne ikke indlæses."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Angiv venligst "+t+" tegn mindre"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Angiv venligst "+t+" tegn mere"},loadingMore:function(){return"Indlæser flere resultater…"},maximumSelected:function(e){var t="Du kan kun vælge "+e.maximum+" emne";return e.maximum!=1&&(t+="r"),t},noResults:function(){return"Ingen resultater fundet"},searching:function(){return"Søger…"}}}),{define:e.define,require:e.require}})();
|
3
functions/kirki/assets/vendor/selectWoo/js/i18n/de.js
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*! Select2 1.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/de",[],function(){return{errorLoading:function(){return"Die Ergebnisse konnten nicht geladen werden."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Bitte "+t+" Zeichen weniger eingeben"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Bitte "+t+" Zeichen mehr eingeben"},loadingMore:function(){return"Lade mehr Ergebnisse…"},maximumSelected:function(e){var t="Sie können nur "+e.maximum+" Eintr";return e.maximum===1?t+="ag":t+="äge",t+=" auswählen",t},noResults:function(){return"Keine Übereinstimmungen gefunden"},searching:function(){return"Suche…"}}}),{define:e.define,require:e.require}})();
|
3
functions/kirki/assets/vendor/selectWoo/js/i18n/el.js
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*! Select2 1.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/el",[],function(){return{errorLoading:function(){return"Τα αποτελέσματα δεν μπόρεσαν να φορτώσουν."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Παρακαλώ διαγράψτε "+t+" χαρακτήρ";return t==1&&(n+="α"),t!=1&&(n+="ες"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Παρακαλώ συμπληρώστε "+t+" ή περισσότερους χαρακτήρες";return n},loadingMore:function(){return"Φόρτωση περισσότερων αποτελεσμάτων…"},maximumSelected:function(e){var t="Μπορείτε να επιλέξετε μόνο "+e.maximum+" επιλογ";return e.maximum==1&&(t+="ή"),e.maximum!=1&&(t+="ές"),t},noResults:function(){return"Δεν βρέθηκαν αποτελέσματα"},searching:function(){return"Αναζήτηση…"}}}),{define:e.define,require:e.require}})();
|
3
functions/kirki/assets/vendor/selectWoo/js/i18n/en.js
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*! Select2 1.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/en",[],function(){return{errorLoading:function(){return"The results could not be loaded."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Please delete "+t+" character";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Please enter "+t+" or more characters";return n},loadingMore:function(){return"Loading more results…"},maximumSelected:function(e){var t="You can only select "+e.maximum+" item";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No results found"},searching:function(){return"Searching…"}}}),{define:e.define,require:e.require}})();
|
3
functions/kirki/assets/vendor/selectWoo/js/i18n/es.js
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*! Select2 1.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/es",[],function(){return{errorLoading:function(){return"La carga falló"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor, elimine "+t+" car";return t==1?n+="ácter":n+="acteres",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Por favor, introduzca "+t+" car";return t==1?n+="ácter":n+="acteres",n},loadingMore:function(){return"Cargando más resultados…"},maximumSelected:function(e){var t="Sólo puede seleccionar "+e.maximum+" elemento";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No se encontraron resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})();
|
3
functions/kirki/assets/vendor/selectWoo/js/i18n/et.js
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*! Select2 1.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/et",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" vähem",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" rohkem",n},loadingMore:function(){return"Laen tulemusi…"},maximumSelected:function(e){var t="Saad vaid "+e.maximum+" tulemus";return e.maximum==1?t+="e":t+="t",t+=" valida",t},noResults:function(){return"Tulemused puuduvad"},searching:function(){return"Otsin…"}}}),{define:e.define,require:e.require}})();
|
3
functions/kirki/assets/vendor/selectWoo/js/i18n/eu.js
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*! Select2 1.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/eu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gutxiago",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gehiago",n},loadingMore:function(){return"Emaitza gehiago kargatzen…"},maximumSelected:function(e){return e.maximum===1?"Elementu bakarra hauta dezakezu":e.maximum+" elementu hauta ditzakezu soilik"},noResults:function(){return"Ez da bat datorrenik aurkitu"},searching:function(){return"Bilatzen…"}}}),{define:e.define,require:e.require}})();
|
3
functions/kirki/assets/vendor/selectWoo/js/i18n/fa.js
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*! Select2 1.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fa",[],function(){return{errorLoading:function(){return"امکان بارگذاری نتایج وجود ندارد."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="لطفاً "+t+" کاراکتر را حذف نمایید";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="لطفاً تعداد "+t+" کاراکتر یا بیشتر وارد نمایید";return n},loadingMore:function(){return"در حال بارگذاری نتایج بیشتر..."},maximumSelected:function(e){var t="شما تنها میتوانید "+e.maximum+" آیتم را انتخاب نمایید";return t},noResults:function(){return"هیچ نتیجهای یافت نشد"},searching:function(){return"در حال جستجو..."}}}),{define:e.define,require:e.require}})();
|
3
functions/kirki/assets/vendor/selectWoo/js/i18n/fi.js
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*! Select2 1.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fi",[],function(){return{errorLoading:function(){return"Tuloksia ei saatu ladattua."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Ole hyvä ja anna "+t+" merkkiä vähemmän"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Ole hyvä ja anna "+t+" merkkiä lisää"},loadingMore:function(){return"Ladataan lisää tuloksia…"},maximumSelected:function(e){return"Voit valita ainoastaan "+e.maximum+" kpl"},noResults:function(){return"Ei tuloksia"},searching:function(){return"Haetaan…"}}}),{define:e.define,require:e.require}})();
|
3
functions/kirki/assets/vendor/selectWoo/js/i18n/fr.js
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*! Select2 1.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fr",[],function(){return{errorLoading:function(){return"Les résultats ne peuvent pas être chargés."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Supprimez "+t+" caractère";return t!==1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Saisissez "+t+" caractère";return t!==1&&(n+="s"),n},loadingMore:function(){return"Chargement de résultats supplémentaires…"},maximumSelected:function(e){var t="Vous pouvez seulement sélectionner "+e.maximum+" élément";return e.maximum!==1&&(t+="s"),t},noResults:function(){return"Aucun résultat trouvé"},searching:function(){return"Recherche en cours…"}}}),{define:e.define,require:e.require}})();
|
3
functions/kirki/assets/vendor/selectWoo/js/i18n/gl.js
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*! Select2 1.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/gl",[],function(){return{errorLoading:function(){return"Non foi posíbel cargar os resultados."},inputTooLong:function(e){var t=e.input.length-e.maximum;return t===1?"Elimine un carácter":"Elimine "+t+" caracteres"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t===1?"Engada un carácter":"Engada "+t+" caracteres"},loadingMore:function(){return"Cargando máis resultados…"},maximumSelected:function(e){return e.maximum===1?"Só pode seleccionar un elemento":"Só pode seleccionar "+e.maximum+" elementos"},noResults:function(){return"Non se atoparon resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})();
|
3
functions/kirki/assets/vendor/selectWoo/js/i18n/he.js
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*! Select2 1.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/he",[],function(){return{errorLoading:function(){return"שגיאה בטעינת התוצאות"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="נא למחוק ";return t===1?n+="תו אחד":n+=t+" תווים",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="נא להכניס ";return t===1?n+="תו אחד":n+=t+" תווים",n+=" או יותר",n},loadingMore:function(){return"טוען תוצאות נוספות…"},maximumSelected:function(e){var t="באפשרותך לבחור עד ";return e.maximum===1?t+="פריט אחד":t+=e.maximum+" פריטים",t},noResults:function(){return"לא נמצאו תוצאות"},searching:function(){return"מחפש…"}}}),{define:e.define,require:e.require}})();
|
3
functions/kirki/assets/vendor/selectWoo/js/i18n/hi.js
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*! Select2 1.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hi",[],function(){return{errorLoading:function(){return"परिणामों को लोड नहीं किया जा सका।"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" अक्षर को हटा दें";return t>1&&(n=t+" अक्षरों को हटा दें "),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="कृपया "+t+" या अधिक अक्षर दर्ज करें";return n},loadingMore:function(){return"अधिक परिणाम लोड हो रहे है..."},maximumSelected:function(e){var t="आप केवल "+e.maximum+" आइटम का चयन कर सकते हैं";return t},noResults:function(){return"कोई परिणाम नहीं मिला"},searching:function(){return"खोज रहा है..."}}}),{define:e.define,require:e.require}})();
|
3
functions/kirki/assets/vendor/selectWoo/js/i18n/hr.js
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*! Select2 1.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hr",[],function(){function e(e){var t=" "+e+" znak";return e%10<5&&e%10>0&&(e%100<5||e%100>19)?e%10>1&&(t+="a"):t+="ova",t}return{errorLoading:function(){return"Preuzimanje nije uspjelo."},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Unesite "+e(n)},inputTooShort:function(t){var n=t.minimum-t.input.length;return"Unesite još "+e(n)},loadingMore:function(){return"Učitavanje rezultata…"},maximumSelected:function(e){return"Maksimalan broj odabranih stavki je "+e.maximum},noResults:function(){return"Nema rezultata"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})();
|
3
functions/kirki/assets/vendor/selectWoo/js/i18n/hu.js
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*! Select2 1.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hu",[],function(){return{errorLoading:function(){return"Az eredmények betöltése nem sikerült."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Túl hosszú. "+t+" karakterrel több, mint kellene."},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Túl rövid. Még "+t+" karakter hiányzik."},loadingMore:function(){return"Töltés…"},maximumSelected:function(e){return"Csak "+e.maximum+" elemet lehet kiválasztani."},noResults:function(){return"Nincs találat."},searching:function(){return"Keresés…"}}}),{define:e.define,require:e.require}})();
|
3
functions/kirki/assets/vendor/selectWoo/js/i18n/hy.js
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*! Select2 1.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hy",[],function(){return{errorLoading:function(){return"Արդյունքները հնարավոր չէ բեռնել։"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Խնդրում ենք հեռացնել "+t+" նշան";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Խնդրում ենք մուտքագրել "+t+" կամ ավել նշաններ";return n},loadingMore:function(){return"Բեռնվում են նոր արդյունքներ․․․"},maximumSelected:function(e){var t="Դուք կարող եք ընտրել առավելագույնը "+e.maximum+" կետ";return t},noResults:function(){return"Արդյունքներ չեն գտնվել"},searching:function(){return"Որոնում․․․"}}}),{define:e.define,require:e.require}})();
|
3
functions/kirki/assets/vendor/selectWoo/js/i18n/id.js
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*! Select2 1.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/id",[],function(){return{errorLoading:function(){return"Data tidak boleh diambil."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Hapuskan "+t+" huruf"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Masukkan "+t+" huruf lagi"},loadingMore:function(){return"Mengambil data…"},maximumSelected:function(e){return"Anda hanya dapat memilih "+e.maximum+" pilihan"},noResults:function(){return"Tidak ada data yang sesuai"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})();
|
3
functions/kirki/assets/vendor/selectWoo/js/i18n/is.js
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*! Select2 1.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/is",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vinsamlegast styttið texta um "+t+" staf";return t<=1?n:n+"i"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vinsamlegast skrifið "+t+" staf";return t>1&&(n+="i"),n+=" í viðbót",n},loadingMore:function(){return"Sæki fleiri niðurstöður…"},maximumSelected:function(e){return"Þú getur aðeins valið "+e.maximum+" atriði"},noResults:function(){return"Ekkert fannst"},searching:function(){return"Leita…"}}}),{define:e.define,require:e.require}})();
|
3
functions/kirki/assets/vendor/selectWoo/js/i18n/it.js
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/*! Select2 1.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/it",[],function(){return{errorLoading:function(){return"I risultati non possono essere caricati."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Per favore cancella "+t+" caratter";return t!==1?n+="i":n+="e",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Per favore inserisci "+t+" o più caratteri";return n},loadingMore:function(){return"Caricando più risultati…"},maximumSelected:function(e){var t="Puoi selezionare solo "+e.maximum+" element";return e.maximum!==1?t+="i":t+="o",t},noResults:function(){return"Nessun risultato trovato"},searching:function(){return"Sto cercando…"}}}),{define:e.define,require:e.require}})();
|