Adds set symbols for DMU, DMC, 2X2, and 40K; adds experimental support for 3rd glyph layers with .ss-border; fixes CLB and NCC set codes
11
CHANGELOG.md
@ -10,6 +10,17 @@ All notable changes to this project will be documented in this file.
|
||||
|
||||
## Versions
|
||||
|
||||
### [3.10.0] 2022-05-13 Summer 2022 set symbols and typo fixes
|
||||
|
||||
* **Added:** Dominaria United (DMU) set symbol
|
||||
* **Added:** Dominaria United Commander (DMC) set symbol
|
||||
* **Added:** Double Masters 2022 (2X2) set symbol
|
||||
* **Added:** Universes Beyond: Warhammer 40,000 (40K) set symbol
|
||||
* **Fixed:** Set code for New Capenna Commander is now NCC, not NNC
|
||||
* **Fixed:** Set code for Commander Legends: Baldur's Gate corrected to CLB (thanks to @arjenbrandenburgh in [PR #187](https://github.com/andrewgioia/keyrune/pull/187))
|
||||
* **Fixed:** SaSS reference to J21 is no longer AFR (thanks to @ThePieBandit in [PR #185](https://github.com/andrewgioia/keyrune/pull/185))
|
||||
* **Changed:** .ss-border now uses ::marker pseudo-element for a third glyph layer; this is an experimental test for the future 4.0 release that will normalize all symbol sizes and add 1-3 layer support to correctly represent them
|
||||
|
||||
### [3.9.2] 2022-03-26 Commander Legends: Battle for Baldur's Gate and Streets of New Capenna Commander
|
||||
|
||||
* **Added:** Commander Legends: Battle for Baldur's Gate (CBL) set symbol, along with it's white insert dual-layered symbol ([#186](https://github.com/andrewgioia/keyrune/issues/186))
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Keyrune v3.9.2
|
||||
# Keyrune v3.10.0
|
||||
|
||||
## The Magic: the Gathering set symbol font!
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "keyrune",
|
||||
"homepage": "http://keyrune.andrewgioia.com",
|
||||
"version": "3.9.2",
|
||||
"version": "3.10.0",
|
||||
"authors": [
|
||||
"Andrew Gioia <andrew@gioia.email>"
|
||||
],
|
||||
|
@ -2,8 +2,8 @@
|
||||
* Global */
|
||||
@font-face {
|
||||
font-family: 'Keyrune';
|
||||
src: url('../fonts/keyrune.eot?v=3.9.2');
|
||||
src: url('../fonts/keyrune.eot?#iefix&v=3.9.2') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.9.2') format('woff2'), url('../fonts/keyrune.woff?v=3.9.2') format('woff'), url('../fonts/keyrune.ttf?v=3.9.2') format('truetype'), url('../fonts/keyrune.svg?v=3.9.2#keyrune') format('svg');
|
||||
src: url('../fonts/keyrune.eot?v=3.10.0');
|
||||
src: url('../fonts/keyrune.eot?#iefix&v=3.10.0') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.10.0') format('woff2'), url('../fonts/keyrune.woff?v=3.10.0') format('woff'), url('../fonts/keyrune.ttf?v=3.10.0') format('truetype'), url('../fonts/keyrune.svg?v=3.10.0#keyrune') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
@ -49,6 +49,9 @@
|
||||
*/
|
||||
.ss-duo {
|
||||
color: #fff;
|
||||
/**
|
||||
* white sections are ::after
|
||||
* color sections are ::before */
|
||||
}
|
||||
.ss-duo::after {
|
||||
color: #000;
|
||||
@ -61,6 +64,14 @@
|
||||
top: 0;
|
||||
width: 100%;
|
||||
}
|
||||
.ss-duo.ss-40k::before {
|
||||
content: "\e999";
|
||||
width: 100%;
|
||||
}
|
||||
.ss-duo.ss-40k::after {
|
||||
content: "\e99b";
|
||||
color: #fff !important;
|
||||
}
|
||||
.ss-duo.ss-xdnd::after,
|
||||
.ss-duo.ss-afr::after {
|
||||
content: "\e973";
|
||||
@ -77,6 +88,14 @@
|
||||
.ss-duo.ss-cc2::after {
|
||||
content: "\e988";
|
||||
}
|
||||
.ss-duo.ss-dmc::before {
|
||||
content: "\e995";
|
||||
width: 100%;
|
||||
}
|
||||
.ss-duo.ss-dmc::after {
|
||||
content: "\e997";
|
||||
color: #fff !important;
|
||||
}
|
||||
.ss-duo.ss-j21::after {
|
||||
content: "\e984";
|
||||
}
|
||||
@ -623,6 +642,9 @@
|
||||
.ss-snc:before {
|
||||
content: "\e98b";
|
||||
}
|
||||
.ss-dmu:before {
|
||||
content: "\e993";
|
||||
}
|
||||
/**
|
||||
* Command Zone */
|
||||
.ss-van:before {
|
||||
@ -723,12 +745,18 @@
|
||||
.ss-nec:before {
|
||||
content: "\e98d";
|
||||
}
|
||||
.ss-nnc:before {
|
||||
.ss-ncc:before {
|
||||
content: "\e98e";
|
||||
}
|
||||
.ss-clb:before {
|
||||
content: "\e991";
|
||||
}
|
||||
.ss-dmc:before {
|
||||
content: "\e994";
|
||||
}
|
||||
.ss-40k:before {
|
||||
content: "\e998";
|
||||
}
|
||||
/**
|
||||
* Reprint */
|
||||
.ss-chr:before {
|
||||
@ -794,6 +822,9 @@
|
||||
.ss-j21:before {
|
||||
content: "\e983";
|
||||
}
|
||||
.ss-2x2:before {
|
||||
content: "\e99c";
|
||||
}
|
||||
/**
|
||||
* Beginner */
|
||||
.ss-por:before {
|
||||
@ -1190,7 +1221,7 @@
|
||||
.ss-pfnm:before {
|
||||
content: "\e937";
|
||||
}
|
||||
.ss-border:after {
|
||||
.ss-border:not(.ss-duo)::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: -0.05em;
|
||||
@ -1232,4 +1263,30 @@
|
||||
}
|
||||
.ss-border.ss-c15:after {
|
||||
content: "\e900";
|
||||
}
|
||||
}
|
||||
.ss-border.ss-40k {
|
||||
display: list-item;
|
||||
list-style-position: inside;
|
||||
}
|
||||
.ss-border.ss-40k::before {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
.ss-border.ss-40k::marker {
|
||||
content: "\e99a";
|
||||
color: #000;
|
||||
}
|
||||
.ss-border.ss-dmc {
|
||||
display: list-item;
|
||||
list-style-position: inside;
|
||||
}
|
||||
.ss-border.ss-dmc::before {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
.ss-border.ss-dmc::marker {
|
||||
content: "\e996";
|
||||
color: #000;
|
||||
}
|
||||
|
2
css/keyrune.min.css
vendored
@ -367,23 +367,23 @@ footer {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#modal.open {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
#iconPreview {
|
||||
float: left;
|
||||
width: 340px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-right: 30px;
|
||||
width: 320px;
|
||||
}
|
||||
#iconPreview .ss {
|
||||
font-size: 300px;
|
||||
margin: 0 40px 0 0;
|
||||
width: 300px;
|
||||
height: 300px;
|
||||
text-align: center;
|
||||
vertical-align: top;
|
||||
float: left;
|
||||
}
|
||||
|
||||
#iconMeta {
|
||||
float: left;
|
||||
width: 420px;
|
||||
}
|
||||
#iconMeta h3 {
|
||||
font-size: 24px;
|
||||
@ -442,6 +442,10 @@ footer {
|
||||
color: #445566;
|
||||
}
|
||||
|
||||
#withGradient {
|
||||
padding: 0 0 5px;
|
||||
}
|
||||
|
||||
#closeModalContainer {
|
||||
position: absolute;
|
||||
top: 18px;
|
||||
|
2
docs/assets/keyrune.min.css
vendored
@ -59,8 +59,10 @@
|
||||
<span class="utf"><i></i> ss-2ed <code>&#xe602;</code></span>
|
||||
<span class="utf"><i></i> ss-2u <code>&#xe949;</code></span>
|
||||
<span class="utf"><i></i> ss-2xm <code>&#xe96e;</code></span>
|
||||
<span class="utf"><i></i> ss-2x2 <code>&#xe99c;</code></span>
|
||||
<span class="utf"><i></i> ss-3e <code>&#xe94a;</code></span>
|
||||
<span class="utf"><i></i> ss-3ed <code>&#xe603;</code></span>
|
||||
<span class="utf"><i></i> ss-40k <code>&#xe998;</code></span>
|
||||
<span class="utf"><i></i> ss-4ed <code>&#xe604;</code></span>
|
||||
<span class="utf"><i></i> ss-5dn <code>&#xe633;</code></span>
|
||||
<span class="utf"><i></i> ss-5ed <code>&#xe606;</code></span>
|
||||
@ -138,6 +140,8 @@
|
||||
<span class="utf"><i></i> ss-dis <code>&#xe639;</code></span>
|
||||
<span class="utf"><i></i> ss-dka <code>&#xe64b;</code></span>
|
||||
<span class="utf"><i></i> ss-dkm <code>&#xe662;</code></span>
|
||||
<span class="utf"><i></i> ss-dmu <code>&#xe993;</code></span>
|
||||
<span class="utf"><i></i> ss-dmc <code>&#xe994;</code></span>
|
||||
<span class="utf"><i></i> ss-dom <code>&#xe93f;</code></span>
|
||||
<span class="utf"><i></i> ss-dpa <code>&#xe689;</code></span>
|
||||
<span class="utf"><i></i> ss-drb <code>&#xe678;</code></span>
|
||||
@ -367,11 +371,17 @@
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<div class="vectors overflow-hidden">
|
||||
<span class="utf"><i></i> 40k border <code>&#xe99a;</code></span>
|
||||
<span class="utf"><i></i> 40k inner <code>&#xe999;</code></span>
|
||||
<span class="utf"><i></i> 40k white <code>&#xe99b;</code></span>
|
||||
<span class="utf"><i></i> afc border <code>&#xe982;</code></span>
|
||||
<span class="utf"><i></i> afr border <code>&#xe973;</code></span>
|
||||
<span class="utf"><i></i> clb inner <code>&#xe992;</code></span>
|
||||
<span class="utf"><i></i> c21 border <code>&#xe97f;</code></span>
|
||||
<span class="utf"><i></i> cc2 border <code>&#xe988;</code></span>
|
||||
<span class="utf"><i></i> dmc border <code>&#xe996;</code></span>
|
||||
<span class="utf"><i></i> dmc inner <code>&#xe995;</code></span>
|
||||
<span class="utf"><i></i> dmc white <code>&#xe997;</code></span>
|
||||
<span class="utf"><i></i> j21 border <code>&#xe984;</code></span>
|
||||
<span class="utf"><i></i> mid border <code>&#xe979;</code></span>
|
||||
<span class="utf"><i></i> ncc inner color <code>&#xe98f;</code></span>
|
||||
|
Before Width: | Height: | Size: 686 KiB After Width: | Height: | Size: 721 KiB |
@ -45,7 +45,7 @@
|
||||
<div class="wrapper">
|
||||
<section>
|
||||
<h3>
|
||||
View the full list of 291 set and expansion symbols below, for all sets and special edition products up to <strong>Streets of New Capenna</strong> and <strong>Commander Legends: Battle for Baldur's Gate</strong>. To use the symbols on your desktop or just get the vectors, check out the <a href="cheatsheet.html">Cheatsheet</a>.
|
||||
View the full list of 294 set and expansion symbols below, for all sets and special edition products up to <strong>Dominaria United</strong> and <strong>Warhammer 40,000</strong>. To use the symbols on your desktop or just get the vectors, check out the <a href="cheatsheet.html">Cheatsheet</a>.
|
||||
</h3>
|
||||
<p style="margin: -15px 0 25px;">
|
||||
<strong>Note:</strong> you can now link directly to a preview of each symbol's by adding the symbol code at the end of the url like this: <a href="https://keyrune.andrewgioia.com/icons.html?icon=ody">https://keyrune.andrewgioia.com/icons.html?icon=ody</a>.
|
||||
@ -419,6 +419,9 @@
|
||||
<div class="icon" id="snc" name="Streets of New Capenna" data-name="Streets of New Capenna" data-class="snc" data-unicode="e98b" data-added="v3.9.1">
|
||||
<span class="name"><i class="ss ss-snc"></i> Streets of New Capenna <em>(snc)</em></span>
|
||||
</div>
|
||||
<div class="icon" id="dmu" name="Dominaria United" data-name="Dominaria United" data-class="dmu" data-unicode="e993" data-added="v3.10.0">
|
||||
<span class="name"><i class="ss ss-dmu"></i> Dominaria United <em>(dmu)</em></span>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="content">
|
||||
@ -529,6 +532,12 @@
|
||||
<div class="icon" id="clb" name="Commander Legends: Battle for Baldur's Gate" data-name="Commander Legends: Battle for Baldur's Gate" data-class="clb" data-unicode="e991" data-added="v3.9.2" data-duo="true">
|
||||
<span class="name"><i class="ss ss-clb ss-duo ss-common"></i> Commander Legends: Battle for Baldur's Gate <em>(clb)</em></span>
|
||||
</div>
|
||||
<div class="icon" id="dmc" name="Dominaria United Commander" data-name="Dominaria United Commander" data-class="dmc" data-unicode="e994" data-added="v3.10.0" data-duo="true">
|
||||
<span class="name"><i class="ss ss-dmc ss-common"></i> Dominaria United Commander <em>(dmc)</em></span>
|
||||
</div>
|
||||
<div class="icon" id="40k" name="Warhammer 40K" data-name="Warhammer 40K" data-class="40k" data-unicode="e998" data-added="v3.10.0" data-duo="true">
|
||||
<span class="name"><i class="ss ss-40k ss-common"></i> Warhammer 40K <em>(40k)</em></span>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="content">
|
||||
@ -597,6 +606,9 @@
|
||||
<div class="icon" id="j21" name="Jumpstart: Historic Horizons" data-name="Jumpstart: Historic Horizons" data-class="j21" data-unicode="e983" data-added="v3.8.3" data-duo="true">
|
||||
<span class="name"><i class="ss ss-j21 ss-duo"></i> Jumpstart: Historic Horizons <em>(j21)</em></span>
|
||||
</div>
|
||||
<div class="icon" id="2x2" name="Double Masters 2022" data-name="Double Masters 2022" data-class="2x2" data-unicode="e99c" data-added="v3.10.0">
|
||||
<span class="name"><i class="ss ss-2x2"></i> Double Masters 2022 <em>(2x2)</em></span>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="content">
|
||||
@ -1083,6 +1095,9 @@
|
||||
<div id="withGradient">
|
||||
<input type="checkbox" name="withGradient" id="toggleGradient" /> Show rarity gradient
|
||||
</div>
|
||||
<div id="withBorder">
|
||||
<input type="checkbox" name="withBorder" id="toggleBorder" /> Show experimental border
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -1116,7 +1131,7 @@
|
||||
|
||||
// show the modal
|
||||
$( '#overlay' ).show();
|
||||
$( '#modal' ).show();
|
||||
$( '#modal' ).addClass('open');
|
||||
|
||||
// update the url query string
|
||||
var newurl = window.location.origin + window.location.pathname + '?icon='+icon;
|
||||
@ -1132,18 +1147,25 @@
|
||||
$( '#toggleRarity a.active' ).removeClass( 'active' );
|
||||
$( this ).addClass( 'active' );
|
||||
});
|
||||
|
||||
// gradient toggle
|
||||
$( '#toggleGradient' ).on( 'click', function( e ) {
|
||||
$( '#iconPreview i' ).toggleClass( 'ss-grad' );
|
||||
});
|
||||
|
||||
// border toggle
|
||||
$( '#toggleBorder' ).on( 'click', function( e ) {
|
||||
$( '#iconPreview i' ).toggleClass( 'ss-border' );
|
||||
});
|
||||
|
||||
// close modal button
|
||||
$( '#closeModal' ).on( 'click', function( e ) {
|
||||
$( '#overlay' ).hide();
|
||||
$( '#toggleGradient' ).prop( 'checked', false );
|
||||
$( '#toggleBorder' ).prop( 'checked', false );
|
||||
$( '#toggleRarity a.active' ).removeClass( 'active' );
|
||||
$( '#toggleRarity a[data-rarity="common"]' ).addClass( 'active' );
|
||||
$( '#modal' ).hide();
|
||||
$( '#modal' ).removeClass('open');
|
||||
});
|
||||
|
||||
// get icon from url, if there is one
|
||||
|
@ -43,7 +43,7 @@
|
||||
</a>
|
||||
</div>
|
||||
<p>
|
||||
Current version 3.9.2 includes all sets to Streets of New Capenna.
|
||||
Current version 3.10.0 includes all sets to Dominaria United.
|
||||
</p>
|
||||
</div>
|
||||
</header>
|
||||
|
Before Width: | Height: | Size: 686 KiB After Width: | Height: | Size: 721 KiB |
@ -1,5 +1,5 @@
|
||||
.@{ss-prefix}-border {
|
||||
&:after {
|
||||
&:not(.ss-duo)::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: -.05em;
|
||||
@ -23,4 +23,35 @@
|
||||
&.@{ss-prefix}-cns:after { content: "\e65c"; } // Conspiracy
|
||||
&.@{ss-prefix}-c14:after { content: "\e65d"; } // Commander 2014
|
||||
&.@{ss-prefix}-c15:after { content: "\e900"; } // Commander 2015
|
||||
|
||||
// experimental ::marker for 3 layer icons
|
||||
&.@{ss-prefix}-40k {
|
||||
display: list-item;
|
||||
list-style-position: inside;
|
||||
|
||||
&::before {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
&::marker {
|
||||
content: "\e99a";
|
||||
color: #000;
|
||||
}
|
||||
}
|
||||
|
||||
&.@{ss-prefix}-dmc {
|
||||
display: list-item;
|
||||
list-style-position: inside;
|
||||
|
||||
&::before {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
&::marker {
|
||||
content: "\e996";
|
||||
color: #000;
|
||||
}
|
||||
}
|
||||
}
|
@ -24,6 +24,23 @@
|
||||
// set default inner to white unless a rarity is declared
|
||||
color: #fff;
|
||||
|
||||
/**
|
||||
* white sections are ::after
|
||||
* color sections are ::before */
|
||||
|
||||
// Warhammer 40K
|
||||
// 2 glyphs b/c we have a custom color glyph
|
||||
&.@{ss-prefix}-40k {
|
||||
&::before {
|
||||
content: "\e999";
|
||||
width: 100%;
|
||||
}
|
||||
&::after {
|
||||
content: "\e99b";
|
||||
color: #fff !important;
|
||||
}
|
||||
}
|
||||
|
||||
// Adventures in the Forgotten Realms
|
||||
&.@{ss-prefix}-xdnd::after,
|
||||
&.@{ss-prefix}-afr::after {
|
||||
@ -48,6 +65,19 @@
|
||||
content: "\e988";
|
||||
}
|
||||
|
||||
// Dominaria United Commander
|
||||
// 2 glyphs b/c we have a custom color glyph
|
||||
&.@{ss-prefix}-dmc {
|
||||
&::before {
|
||||
content: "\e995";
|
||||
width: 100%;
|
||||
}
|
||||
&::after {
|
||||
content: "\e997";
|
||||
color: #fff !important;
|
||||
}
|
||||
}
|
||||
|
||||
// Jumpstart: Historic Horizons
|
||||
&.@{ss-prefix}-j21::after {
|
||||
content: "\e984";
|
||||
|
@ -165,6 +165,7 @@
|
||||
/* 2022 Sets */
|
||||
.@{ss-prefix}-neo:before { content: "\e98c"; } // Kamigawa: Neon Dynasty
|
||||
.@{ss-prefix}-snc:before { content: "\e98b"; } // Streets of New Capenna
|
||||
.@{ss-prefix}-dmu:before { content: "\e993"; } // Dominaria United
|
||||
|
||||
/**
|
||||
* Command Zone */
|
||||
@ -205,6 +206,8 @@
|
||||
.@{ss-prefix}-nec:before { content: "\e98d"; } // Kamigawa: Neon Dynasty Commander
|
||||
.@{ss-prefix}-ncc:before { content: "\e98e"; } // Streets of New Capenna Commander
|
||||
.@{ss-prefix}-clb:before { content: "\e991"; } // Commander Legends: Battle for Baldur's Gate
|
||||
.@{ss-prefix}-dmc:before { content: "\e994"; } // Dominaria United Commander
|
||||
.@{ss-prefix}-40k:before { content: "\e998"; } // Warhammer 40K Universes Beyond
|
||||
|
||||
/**
|
||||
* Reprint */
|
||||
@ -230,6 +233,7 @@
|
||||
.@{ss-prefix}-mh2:before { content: "\e97b"; } // Modern Horizons 2
|
||||
.@{ss-prefix}-sta:before { content: "\e980"; } // Strixhaven Mystical Archives
|
||||
.@{ss-prefix}-j21:before { content: "\e983"; } // Jumpstart: Historic Horizons
|
||||
.@{ss-prefix}-2x2:before { content: "\e99c"; } // Double Masters 2022
|
||||
|
||||
/**
|
||||
* Beginner */
|
||||
|
@ -2,6 +2,6 @@
|
||||
* Global */
|
||||
|
||||
@ss-font-path: '../fonts';
|
||||
@ss-version: '3.9.2';
|
||||
@ss-version: '3.10.0';
|
||||
@ss-font-size-base: 14px;
|
||||
@ss-prefix: ss;
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "keyrune",
|
||||
"description": "Keyrune",
|
||||
"version": "3.9.2",
|
||||
"version": "3.10.0",
|
||||
"author": {
|
||||
"name": "Andrew Gioia",
|
||||
"email": "andrew@gioia.email",
|
||||
|
@ -77,6 +77,12 @@
|
||||
&.#{$keyrune_prefix}-ncc::before {
|
||||
content: "\e98f";
|
||||
}
|
||||
&.#{$keyrune_prefix}-40k::before {
|
||||
content: "\e999";
|
||||
}
|
||||
&.#{$keyrune_prefix}-dmc::before {
|
||||
content: "\e995";
|
||||
}
|
||||
|
||||
// rarity border colors
|
||||
&.#{$keyrune_prefix}-common {
|
||||
|
@ -1,7 +1,7 @@
|
||||
/**
|
||||
* Globals */
|
||||
|
||||
$keyrune_version: '3.9.2' !default;
|
||||
$keyrune_version: '3.10.0' !default;
|
||||
$keyrune_font_path: '../fonts' !default;
|
||||
|
||||
// font specific
|
||||
@ -52,11 +52,13 @@ $border-corrections: (
|
||||
|
||||
// dual-layered symbols (work in progress)
|
||||
$dual-layered: (
|
||||
'40k': '\e99b',
|
||||
'afc': '\e982',
|
||||
'afr': '\e973',
|
||||
'c21': '\e97f',
|
||||
'clb': '\e992',
|
||||
'cc2': '\e988',
|
||||
'dmc': '\e997',
|
||||
'j21': '\e984',
|
||||
'mid': '\e979',
|
||||
'ncc': '\e990'
|
||||
@ -224,6 +226,7 @@ $keyrune_sets: (
|
||||
// 2022 sets
|
||||
("Kamigawa: Neon Dynasty", "neo", "\e98c"),
|
||||
("Streets of New Capenna", "snc", "\e98b"),
|
||||
("Dominaria United", "dmu", "\e993"),
|
||||
//
|
||||
// Command zone
|
||||
("Vanguard", "van", "\e655"),
|
||||
@ -263,6 +266,8 @@ $keyrune_sets: (
|
||||
("Kamigawa: Neon Dynasty Commander", "nec", "\e98d"),
|
||||
("Streets of New Capenna Commander", "ncc", "\e98e"),
|
||||
("Commander Legends: Battle for Baldur's Gate", "clb", "\e991"),
|
||||
("Dominaria United Commander", "dmc", "\e994"),
|
||||
("Warhammer 40K", "40k", "\e998"),
|
||||
//
|
||||
// Reprint sets
|
||||
("Chronicles", "chr", "\e65e"),
|
||||
@ -285,6 +290,7 @@ $keyrune_sets: (
|
||||
("Mystery Booster", "mb1", "\e971"),
|
||||
("Modern Horizons 2", "mh2", "\e97b"),
|
||||
("Strixhaven: Mystical Archives", "sta", "\e980"),
|
||||
("Double Masters 2022", "2x2", "\e99c"),
|
||||
//
|
||||
// Beginner
|
||||
("Portal", "por", "\e664"),
|
||||
|
5
svg/2x2.svg
Normal file
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
|
||||
<title>2x2</title>
|
||||
<path fill="#444" d="M9.459 11.338c2.181-2.213 4.36-4.429 6.54-6.644 2.181 2.215 4.362 4.43 6.541 6.646-3.059 3.107-6.118 6.213-9.176 9.321 0.878 0.893 1.756 1.787 2.637 2.678 0.878-0.893 1.757-1.785 2.636-2.678-0.684-0.695-1.367-1.391-2.051-2.086 0.65-0.661 1.301-1.321 1.951-1.983 1.335 1.356 2.67 2.712 4.004 4.069-2.18 2.216-4.361 4.43-6.541 6.645-2.181-2.214-4.36-4.43-6.541-6.644 3.057-3.11 6.119-6.214 9.177-9.323-0.878-0.893-1.756-1.786-2.636-2.678-0.88 0.892-1.757 1.786-2.637 2.678 0.686 0.694 1.369 1.391 2.054 2.086-0.651 0.661-1.303 1.322-1.954 1.982-1.334-1.357-2.671-2.711-4.004-4.070zM9.198 5.554c-1.284 0.514-2.54 1.111-3.704 1.862-2.252 1.433-4.17 3.405-5.493 5.724 0.097-0.051 0.205-0.076 0.307-0.114 1.218-0.417 2.433-0.841 3.652-1.254 1.385 1.41 2.773 2.818 4.16 4.227-1.384 1.411-2.775 2.815-4.157 4.228-1.324-0.443-2.642-0.908-3.964-1.358 0.505 0.864 1.080 1.687 1.73 2.448 1.031 1.214 2.244 2.27 3.574 3.144 1.262 0.838 2.638 1.489 4.044 2.047-0.262-0.349-0.425-0.775-0.433-1.213-0.016-0.517 0.169-1.039 0.514-1.426 0.343-0.392 0.844-0.635 1.362-0.671-0.833-0.845-1.666-1.691-2.499-2.537 1.529-1.553 3.058-3.107 4.587-4.66-1.529-1.554-3.058-3.107-4.587-4.661 0.83-0.847 1.665-1.69 2.495-2.537-0.833-0.051-1.575-0.681-1.794-1.481-0.164-0.563-0.067-1.194 0.256-1.683 0.038-0.045 0.055-0.121 0.122-0.131-0.060-0.033-0.116 0.033-0.174 0.046zM22.652 5.493c0.162 0.222 0.294 0.467 0.362 0.734 0.182 0.655 0.012 1.396-0.441 1.903-0.342 0.392-0.842 0.635-1.36 0.673 0.83 0.847 1.664 1.69 2.494 2.537-1.529 1.554-3.059 3.106-4.586 4.661 1.529 1.554 3.058 3.107 4.588 4.66-0.833 0.845-1.666 1.691-2.5 2.537 0.373 0.027 0.737 0.159 1.037 0.383 0.525 0.383 0.849 1.025 0.839 1.676 0 0.451-0.164 0.893-0.434 1.252 1.202-0.481 2.385-1.019 3.491-1.697 1.306-0.792 2.513-1.752 3.562-2.863 0.881-0.932 1.653-1.968 2.296-3.079-1.322 0.451-2.639 0.914-3.962 1.358-1.384-1.411-2.772-2.818-4.159-4.227 1.386-1.41 2.775-2.817 4.16-4.228 1.323 0.446 2.64 0.908 3.961 1.359-1.277-2.217-3.083-4.122-5.216-5.534-1.287-0.866-2.693-1.534-4.132-2.105z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
5
svg/40k-border.svg
Normal file
After Width: | Height: | Size: 6.7 KiB |
5
svg/40k-color.svg
Normal file
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
|
||||
<title>40k-color</title>
|
||||
<path fill="#444" d="M2.865 9.7c3.222-0.001 6.443 0.001 9.665-0.001-0.265 0.306-0.462 0.664-0.62 1.035-2.779-0.004-5.559-0.002-8.339-0.001l-0.021-0.012c-0.234-0.336-0.464-0.676-0.685-1.021zM19.469 9.699c0.237 0.283 0.438 0.598 0.573 0.942 0.011 0.034 0.027 0.064 0.048 0.093 2.78-0.005 5.56-0.003 8.34-0.001 0.253-0.33 0.475-0.686 0.704-1.034-3.222-0.001-6.443 0.001-9.665-0.001zM27.281 15.827c-1.136-0.017-2.295 0.014-3.603-0.016 0.158-0.159 0.305-0.328 0.461-0.49 0.030-0.026 0.049-0.071 0.094-0.075 0.193 0 0.386 0.001 0.579 0 1.494-0.003 0.7-0.008 1.73 0.002l1.201 0.004c0.439-0.512 0.846-1.050 1.248-1.59-1.018-0.006-0.414-0.003-3.444 0.001 0.181-0.19 0.331-0.409 0.512-0.598 0.436 0.003 1.557 0.004 3.336 0.012 0.015 0 0.031 0 0.047 0 0.373-0.522 0.759-1.036 1.106-1.576-0.984-0.004-1.968-0.002-2.953-0.004l-2.675 0c-1.564 0-3.127-0.001-4.691-0 0.082 0.597 0.048 1.21-0.113 1.791-0.123 0.473-0.248 0.977-0.117 1.462 0.054 0.212 0.216 0.38 0.242 0.601 0.023 0.217-0.002 0.436-0.045 0.649-0.1 0.452-0.248 0.906-0.524 1.284-0.154 0.205-0.353 0.39-0.599 0.473-0.17 0.062-0.353 0.066-0.531 0.074-0.010 0.355 0.009 0.711-0.010 1.066-0.056 0.307-0.294 0.551-0.574 0.672-0.18 0.077-0.372 0.138-0.568 0.145-0.355 0.043-0.712 0.083-1.070 0.074-0.464-0.007-0.931 0.025-1.392-0.041-0.265-0.026-0.537-0.035-0.788-0.138-0.321-0.108-0.61-0.366-0.673-0.71-0.019-0.355-0-0.711-0.010-1.067-0.284-0.001-0.585-0.043-0.815-0.224-0.42-0.323-0.632-0.835-0.773-1.33-0.089-0.352-0.181-0.732-0.072-1.089 0.107-0.207 0.231-0.416 0.246-0.655 0.083-0.673-0.242-1.3-0.295-1.961-0.043-0.358-0.021-0.719 0.022-1.076l-7.638-0.001c-0.35 0-0.701 0-1.052 0-0.236 0-0.472 0.001-0.708-0-0.011-0-0.022-0-0.032-0v0c-0.298 0-0.596 0.001-0.893 0.002 0.346 0.541 0.735 1.054 1.107 1.577 0.151 0.016 0.304 0.002 0.456 0.007 0.168-0 0.336-0 0.504-0 1.217 0.001 0.645 0.007 1.453-0.004l-0 0.002 0.028-0.002 0.030-0v-0.002c0.314-0.024 0.629 0.002 0.944 0.009 0.152 0.197 0.315 0.388 0.476 0.578-1.073 0.002-0.536 0.002-1.624-0.010-0.604 0.002-1.208 0.001-1.811 0.005 0.024 0.052 0.062 0.096 0.097 0.142 0.375 0.49 0.744 0.986 1.149 1.452 0.199 0 0.398 0.004 3.537 0.002 0.186 0.188 0.363 0.385 0.543 0.578-1.196 0.001-2.393 0.005-3.59 0.004 0.463 0.53 0.919 1.075 1.404 1.582 1.237 0.004 2.475 0.005 3.712 0.007 0.215 0.176 0.416 0.384 0.621 0.577-1.266 0.002-2.532 0.004-3.798 0.005 0.525 0.528 1.023 1.086 1.575 1.586 1.152 0.003 2.303 0.002 3.455 0.005 0.348 0.283 0.689 0.576 1.037 0.86 2.165 0 4.329 0 6.494 0 0.349-0.283 0.688-0.579 1.038-0.861 1.151-0.003 2.302-0.003 3.453-0.005 0.553-0.499 1.050-1.060 1.578-1.585-1.266 0.001-2.533-0.003-3.8-0.005 0.197-0.193 0.4-0.378 0.597-0.571 0.196-0.017 0.397-0.003 0.595-0.008 1.048-0.002 2.095-0.003 3.143-0.007zM13.484 21.143c0.76 0.63 1.541 1.237 2.355 1.795 0.107 0 0.215 0.001 0.323-0 0.813-0.561 1.593-1.166 2.354-1.795-1.677 0.004-3.354 0.004-5.032 0z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 3.0 KiB |
5
svg/40k-white.svg
Normal file
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
|
||||
<title>40k-white</title>
|
||||
<path fill="#444" d="M15.995 8.751h0.254c0.59-0 1.183 0.132 1.709 0.401 0.569 0.29 1.063 0.73 1.405 1.271 0.138 0.221 0.254 0.46 0.307 0.717 0.083 0.425 0.133 0.86 0.099 1.294-0.043 0.617-0.316 1.195-0.318 1.818-0.021 0.366 0.069 0.734 0.25 1.052 0.1 0.142 0.044 0.326 0.030 0.486-0.083 0.462-0.227 0.937-0.542 1.296-0.16 0.189-0.421 0.243-0.657 0.219-0.158-0.006-0.324-0.070-0.477-0.004-0.179 0.078-0.245 0.303-0.202 0.482 0.033 0.168 0.218 0.28 0.194 0.464-0.001 0.19 0.003 0.38-0.002 0.57-0.033 0.226-0.256 0.358-0.458 0.414-0.060 0.010-0.13 0.055-0.184 0.008-0.032-0.134 0.007-0.279-0.020-0.414-0.042-0.146-0.301-0.133-0.313 0.023-0.003 0.135 0.001 0.27-0.002 0.405-0.009 0.050-0.058 0.084-0.107 0.083-0.25 0.008-0.5 0.020-0.75 0.016-0.068-0.034-0.051-0.116-0.053-0.178-0.005-0.107 0.012-0.217-0.010-0.322-0.027-0.146-0.275-0.143-0.299 0.003-0.022 0.14-0.003 0.283-0.010 0.423-0.002 0.041-0.041 0.086-0.086 0.076-0.238-0.002-0.476-0.009-0.713-0.018-0.050 0.001-0.098-0.034-0.107-0.084-0.002-0.134 0.001-0.268-0.001-0.402-0.009-0.157-0.268-0.172-0.312-0.029-0.031 0.136 0.010 0.283-0.021 0.418-0.015 0.005-0.044 0.016-0.059 0.021-0.209-0.042-0.439-0.128-0.546-0.327-0.059-0.101-0.035-0.22-0.040-0.331 0.002-0.154-0.005-0.308 0.004-0.462 0.053-0.138 0.182-0.242 0.197-0.396 0.035-0.198-0.077-0.442-0.294-0.47-0.226-0.017-0.452 0.071-0.677 0.016-0.202-0.025-0.36-0.171-0.473-0.33-0.207-0.296-0.329-0.644-0.407-0.995-0.037-0.19-0.073-0.386-0.047-0.58 0.117-0.213 0.223-0.435 0.264-0.676 0.070-0.401 0.017-0.813-0.072-1.206-0.088-0.367-0.197-0.731-0.219-1.109-0.028-0.468 0.026-0.94 0.137-1.394 0.218-0.666 0.707-1.218 1.275-1.613 0.473-0.324 1.025-0.531 1.593-0.604 0.422-0.041 0.168-0.023 0.762-0.034zM16.022 16.166c-0.121 0.011-0.071-0.002-0.152 0.026-0.054 0.027-0.096 0.073-0.117 0.13-0.137 0.309-0.279 0.616-0.413 0.925-0.029 0.102 0.098 0.197 0.183 0.127 0.131-0.121 0.29-0.244 0.479-0.235 0.152-0.007 0.291 0.075 0.403 0.17 0.046 0.041 0.095 0.101 0.165 0.086 0.077-0.014 0.118-0.112 0.081-0.18-0.141-0.307-0.275-0.617-0.415-0.924-0.053-0.077-0.117-0.118-0.213-0.126zM13.494 14.819l-0.069 0.007c-0.129 0.020-0.244 0.102-0.308 0.216-0.148 0.256-0.153 0.58-0.029 0.846 0.099 0.227 0.298 0.428 0.552 0.464 0.264 0.025 0.533 0.019 0.791-0.046 0.455-0.108 0.866-0.393 1.123-0.784-0.241-0.059-0.479-0.134-0.709-0.227-0.298-0.119-0.58-0.278-0.883-0.386-0.152-0.048-0.307-0.098-0.469-0.090zM18.473 14.818l-0.058 0.001-0.063 0.008c-0.339 0.055-0.643 0.221-0.952 0.361-0.307 0.143-0.628 0.253-0.956 0.336 0.125 0.179 0.275 0.342 0.452 0.47 0.432 0.322 1.002 0.43 1.529 0.344 0.548-0.162 0.754-0.943 0.398-1.377-0.101-0.088-0.213-0.142-0.35-0.144z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
5
svg/40k.svg
Normal file
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
|
||||
<title>40k</title>
|
||||
<path fill="#444" d="M2.73 9.699c3.354-0 6.709-0.001 10.063 0-0.289 0.298-0.539 0.643-0.683 1.035-2.892 0-5.784-0-8.677 0-0.242-0.34-0.474-0.687-0.703-1.035zM19.207 9.699c0.289 0.298 0.539 0.643 0.683 1.035 2.892 0.001 5.784-0.001 8.677 0.001 0.242-0.34 0.473-0.687 0.703-1.035-3.355-0.001-6.709 0-10.063-0zM1.293 11.49c0.358 0.541 0.746 1.061 1.128 1.585 1.144 0.001 2.289 0.001 3.433 0 0.16 0.192 0.317 0.386 0.474 0.58-1.152 0.001-2.304-0.001-3.456 0.001 0.405 0.547 0.829 1.081 1.272 1.598 1.189 0.005 2.377 0 3.566 0.002 0.182 0.189 0.364 0.377 0.544 0.568-1.21 0.001-2.421-0.003-3.631 0.002 0.094 0.133 0.213 0.246 0.315 0.372 0.368 0.413 0.73 0.833 1.112 1.233 1.259-0.003 2.517-0.001 3.776-0.001 0.196 0.19 0.392 0.381 0.587 0.572-1.276-0.005-2.552-0.005-3.828 0 0.524 0.542 1.046 1.088 1.599 1.601 1.167-0.001 2.334-0.003 3.501 0.001 0.346 0.291 0.697 0.578 1.047 0.864 2.179-0.001 4.358-0.001 6.537-0 0.352-0.287 0.703-0.575 1.052-0.866 1.166-0.001 2.331-0.001 3.496 0 0.554-0.512 1.074-1.059 1.6-1.6-1.276-0.008-2.552-0.005-3.828-0.001 0.195-0.192 0.39-0.384 0.589-0.572 1.258 0.001 2.516-0.001 3.774 0.001 0.488-0.523 0.968-1.056 1.429-1.603-1.211-0.006-2.421-0.001-3.632-0.002 0.18-0.19 0.361-0.379 0.542-0.568 1.189-0.003 2.378 0.002 3.567-0.003 0.444-0.516 0.865-1.052 1.272-1.598-1.152-0.002-2.304-0-3.457-0.001 0.157-0.194 0.314-0.388 0.474-0.58 1.145 0 2.289 0.001 3.434-0 0.381-0.525 0.771-1.044 1.128-1.585-3.556-0.002-7.113-0-10.669-0.001 0.006 0.204 0.025 0.408 0.012 0.612-0.004 0.405-0.128 0.794-0.228 1.182-0.104 0.399-0.15 0.818-0.087 1.227 0.044 0.236 0.145 0.456 0.268 0.66 0.076 0.118 0.023 0.264 0.011 0.392-0.061 0.386-0.186 0.767-0.393 1.1-0.108 0.168-0.245 0.331-0.433 0.411-0.259 0.097-0.541 0.046-0.808 0.018-0.232-0.014-0.428 0.202-0.404 0.43-0.016 0.197 0.168 0.319 0.222 0.493 0.006 0.207 0.005 0.414 0 0.621-0.049 0.305-0.402 0.455-0.675 0.456-0.040-0.135 0.010-0.283-0.026-0.419-0.046-0.149-0.303-0.157-0.348-0.007-0.018 0.143 0.003 0.288-0.010 0.432-0.013 0.038-0.045 0.085-0.092 0.077-0.242 0.007-0.483 0.017-0.725 0.023-0.051 0.005-0.1-0.008-0.144-0.033-0.005-0.154 0.009-0.309-0.008-0.462-0.037-0.162-0.311-0.157-0.341 0.007-0.015 0.151-0.002 0.304-0.008 0.456-0.044 0.025-0.094 0.036-0.144 0.032-0.242-0.006-0.484-0.016-0.727-0.023-0.046 0.006-0.082-0.045-0.084-0.086-0.007-0.131 0.005-0.262-0.004-0.392-0.018-0.178-0.309-0.186-0.359-0.022-0.029 0.138 0.001 0.283-0.018 0.423-0.119 0.008-0.233-0.039-0.343-0.080-0.164-0.067-0.325-0.201-0.338-0.39-0.001-0.206-0.004-0.413 0.002-0.619 0.043-0.154 0.201-0.255 0.214-0.421 0.029-0.172-0.039-0.37-0.201-0.452-0.192-0.095-0.401 0.002-0.602-0.006-0.254 0.022-0.52-0.061-0.684-0.263-0.338-0.398-0.497-0.918-0.565-1.429-0.008-0.081-0.028-0.171 0.017-0.245 0.096-0.167 0.189-0.338 0.241-0.524 0.088-0.283 0.072-0.584 0.051-0.875-0.063-0.561-0.313-1.088-0.326-1.657-0.015-0.216 0.002-0.433 0.010-0.649-3.556 0.001-7.112-0.001-10.669 0.001zM13.202 14.751c-0.13 0.064-0.209 0.195-0.251 0.328-0.129 0.368 0.008 0.816 0.325 1.045 0.201 0.146 0.462 0.119 0.697 0.117 0.597-0.027 1.172-0.341 1.506-0.838-0.305-0.075-0.606-0.173-0.892-0.302-0.312-0.135-0.613-0.307-0.948-0.378-0.143-0.030-0.301-0.039-0.435 0.028zM17.437 15.091c-0.294 0.133-0.601 0.234-0.914 0.311 0.137 0.196 0.306 0.371 0.505 0.505 0.431 0.296 0.981 0.392 1.492 0.311 0.549-0.159 0.759-0.94 0.402-1.373-0.115-0.134-0.308-0.164-0.474-0.137-0.36 0.056-0.68 0.24-1.010 0.383zM15.874 16.065c-0.074 0.029-0.115 0.102-0.144 0.172-0.129 0.294-0.268 0.584-0.395 0.879-0.036 0.103 0.094 0.204 0.182 0.134 0.145-0.126 0.316-0.258 0.521-0.235 0.186 0.005 0.324 0.141 0.464 0.246 0.105 0.057 0.212-0.080 0.153-0.175-0.136-0.3-0.271-0.601-0.409-0.901-0.058-0.142-0.242-0.171-0.372-0.12zM13.455 21.144c0.768 0.626 1.548 1.239 2.369 1.795 0.117-0 0.234-0 0.351 0 0.821-0.556 1.601-1.168 2.369-1.795-1.697-0-3.393-0-5.090 0z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 3.9 KiB |
5
svg/clb-white.svg
Normal file
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="22" height="32" viewBox="0 0 22 32">
|
||||
<title>clb-white</title>
|
||||
<path fill="#444" d="M6.622 10.73c1.385-0.794 2.765-1.597 4.149-2.394 1.384 0.798 2.766 1.596 4.15 2.395 0.002 1.591-0.005 3.182 0.003 4.773-1.381 0.806-2.767 1.604-4.153 2.4-1.386-0.8-2.777-1.593-4.155-2.406 0.014-1.589 0.002-3.179 0.006-4.769z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 418 B |
5
svg/clb.svg
Normal file
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="22" height="32" viewBox="0 0 22 32">
|
||||
<title>clb</title>
|
||||
<path fill="#444" d="M0.353 6.004c2.040-1.539 4.078-3.080 6.116-4.623 0.635 1.034 1.547 1.961 2.716 2.364 0.74 0.28 1.367 0.249 2.187 0.211 1.55-0.072 2.928-1.303 3.703-2.576 1.777 1.344 3.557 2.685 5.33 4.035 0.333 0.262 0.692 0.492 0.995 0.79-1.029 1.302-1.875 2.758-2.433 4.324-0.414 1.217-0.655 2.548-0.346 3.817 0.219 0.876 0.691 1.658 1.178 2.408-0.153 0.739-0.478 1.428-0.786 2.112-1.251 2.565-3.019 4.845-4.99 6.896-0.688 0.74-1.464 1.452-2.423 1.812-0.554 0.026-1.113 0.034-1.666-0.005-0.721-0.267-1.338-0.756-1.895-1.276-1.384-1.395-2.681-2.882-3.788-4.506-0.982-1.439-1.853-2.971-2.408-4.628-0.043-0.168-0.147-0.37-0.016-0.525 0.615-0.956 1.189-2.003 1.229-3.168 0.078-1.78-0.583-3.501-1.431-5.035-0.407-0.762-0.907-1.468-1.423-2.159-0.098-0.112 0.086-0.201 0.151-0.267zM10.771 4.44c-0.339 0.993-0.645 1.997-0.982 2.99-1.176 0.649-2.324 1.349-3.501 1.996-1.020-0.238-2.047-0.457-3.075-0.658 0.715 0.785 1.423 1.575 2.135 2.365-0.002 1.32-0.011 2.641 0.004 3.961-0.712 0.811-1.435 1.613-2.167 2.406 1.047-0.231 2.094-0.464 3.144-0.671 1.157 0.678 2.332 1.327 3.482 2.018 0.3 0.987 0.634 1.964 0.956 2.944 0.337-0.975 0.659-1.957 0.963-2.944 1.151-0.68 2.308-1.354 3.474-2.002 1.050 0.153 2.080 0.444 3.126 0.634-0.688-0.756-1.374-1.514-2.054-2.276-0.129-0.12-0.067-0.312-0.085-0.465 0.005-1.202 0.005-2.405 0-3.606 0.714-0.786 1.417-1.582 2.139-2.36-1.030 0.198-2.055 0.422-3.076 0.657-1.178-0.643-2.322-1.349-3.499-1.995-0.341-0.993-0.643-2-0.985-2.993zM0 7.565c-0.001 1.202 0.126 2.397 0.108 3.6 0.153 1.291 0.036 2.6 0.187 3.894-0.022 0.624 0.095 1.239 0.097 1.861 0.32-0.775 0.896-1.403 1.254-2.158 0.378-0.713 0.513-1.546 0.39-2.343-0.206-1.774-1.086-3.375-2.036-4.854zM19.462 13.047c-0.015 0.969 0.451 1.851 0.975 2.635 0.258 0.406 0.569 0.79 0.698 1.262 0.060-0.628 0.117-1.256 0.111-1.888 0.104-1.050 0.104-2.106 0.109-3.16 0.144-0.873 0.057-1.764 0.123-2.643 0.069-0.564 0.047-1.134 0.068-1.7-1.049 1.659-2.050 3.479-2.085 5.494zM20.457 17.896c-1.26 3.226-3.431 6.008-5.811 8.488-0.777 0.826-1.673 1.581-2.745 1.983-0.404 0.090-0.768 0.063-1.178 0.082-0.391-0.020-0.866 0.032-1.233-0.139-1.006-0.419-1.854-1.134-2.593-1.922-2.383-2.474-4.537-5.258-5.812-8.474-0.369 1.046-0.099 2.194 0.468 3.115 1.106 1.901 2.381 3.724 3.943 5.28 1.525 1.54 3.168 2.965 4.902 4.263 0.307 0.062 0.699 0.11 0.946-0.138 1.471-1.139 2.896-2.343 4.225-3.647 1.801-1.712 3.281-3.741 4.498-5.901 0.533-0.89 0.727-1.994 0.39-2.989z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
5
svg/dmc-border.svg
Normal file
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="25" height="32" viewBox="0 0 25 32">
|
||||
<title>dmc-border</title>
|
||||
<path fill="#444" d="M15.5 1.335l4.353 2.49c-0.023 0.759-0.014 0.309-0.015 1.379-0 0.154-0 0.308-0 0.462 0.77 0.33 1.421 0.712 2.19 1.042 0.036 0.015 0.221 0.119 0.257 0.134 0.202 0.124 0.36 0.226 0.56 0.353l0.009 0.005 0.010 0.006c0.089 0.059 0.267 0.176 0.356 0.235l0.009 0.006 0.010 0.006c0.087 0.059 0.262 0.176 0.35 0.234l0.011 0.007 0.010 0.006c0.611 0.4 1.182 0.861 1.723 1.351 0.135 0.618-0.017 1.176-0.062 1.847-0.030 0.448-0.108 0.922-0.13 1.37-0.006 0.066-0.016 0.201-0.022 0.267-0.041 0.382-0.066 0.751-0.094 1.134-0.007 0.079-0.016 0.245-0.022 0.324-0.041 0.367-0.067 0.694-0.078 1.062-0.005 0.069-0.036 0.252-0.041 0.321-0.102 0.422-0.478 0.676-0.739 0.996-0.831 0.969-1.286 1.341-1.68 1.768-0.211 0.179-0.148 0.472-0.163 0.714 0.027 1.304-0.023 2.608 0.025 3.913l0.102 0.082c0.184 0.137 0.363 0.278 0.538 0.427-1.495 1.659-3.289 3.023-5.139 4.26l-0.015 0.009-0.014 0.011c-1.645 1.155-3.389 2.169-5.165 3.108-1.151-0.658-2.329-1.271-3.432-2.006l-0.012-0.009-0.012-0.007c-2.068-1.233-3.999-2.691-5.805-4.281-0.339-0.335-0.706-0.649-0.996-1.026 0.177-0.216 0.385-0.404 0.587-0.596 0-1.472 0-2.943 0-4.415-0.837-0.846-1.702-1.671-2.462-2.59l-0.033-0.325c-0.067-0.543-0.083-0.668-0.094-0.73-0.028-0.39-0.063-0.78-0.103-1.167-0.006-0.081-0.018-0.241-0.025-0.323-0.027-0.387-0.062-0.772-0.103-1.158-0.006-0.065-0.016-0.197-0.021-0.264-0.019-0.525-0.060-1.048-0.102-1.571-0.025-0.393-0.012-0.787-0.005-1.181 1.589-1.429 3.452-2.544 5.411-3.384 0-0.594 0.002-1.186-0.004-1.78 1.433-0.854 2.89-1.667 4.337-2.496l0.041 0.028c0.108 0.069 0.21 0.148 0.313 0.225l-0.001 0.028c0 1.397 1.132 2.529 2.529 2.529s2.529-1.132 2.529-2.529l-0-0.010 0.024-0.020 0.307-0.273zM18.74 16.402v0c-1.353 0.718-2.497 1.805-3.312 3.101-0.813 1.292-1.365 2.728-1.849 4.169-0.549 1.718-0.537 3.534-0.501 5.316 1.482-0.793 2.942-1.633 4.345-2.56 0.489-0.36 1.037-0.695 1.358-1.224 0.097-0.547 0.011-1.112 0.047-1.666 0.878-0.514 1.504-1.356 2.289-1.993 0.006-1.095 0.046-2.195-0.016-3.287-0.666-0.754-1.531-1.3-2.362-1.856zM6.53 16.404c-0.809 0.565-1.65 1.105-2.329 1.831 0.009 1.105 0 2.208 0.005 3.313 0.522 0.505 1.066 0.986 1.582 1.499 0.193 0.2 0.421 0.358 0.666 0.489 0.014 0.489-0.014 0.978 0.009 1.467-0.010 0.183 0.126 0.321 0.236 0.45 0.499 0.548 1.127 0.954 1.748 1.35 1.223 0.771 2.479 1.491 3.749 2.182-0.001-0.834 0.002-1.669 0-2.502-0.041-1.772-0.643-3.464-1.335-5.076-0.861-2.065-2.288-3.991-4.331-5.001v0zM12.172 14.733v0c-1.6 0.103-3.222 0.4-4.642 1.176 2.249 1.431 3.76 3.797 4.626 6.277 0.034-2.484 0.005-4.969 0.016-7.453zM13.139 14.731h-0c-0.004 2.452-0.006 4.904 0.001 7.356 0.942-2.416 2.381-4.765 4.618-6.175-1.406-0.789-3.031-1.062-4.619-1.181v0zM16.113 3.113v0c-0.504 1.216-1.642 2.083-2.904 2.395 0.244 0.415 0.477 0.837 0.725 1.25 1.041 0.224 2.116 0.542 2.92 1.275 0.639 0.594 1.11 1.34 1.522 2.101 0.249-0.294 0.464-0.616 0.638-0.961 0.871 0.954 1.496 2.139 1.738 3.411 0.292 1.287 0.048 2.635-0.52 3.813 0.427 0.303 0.842 0.623 1.225 0.982 0.8-0.824 1.679-1.584 2.372-2.505 0.032-1.746 0.266-3.482 0.281-5.23-1.574-1.358-3.44-2.33-5.342-3.143 0.005-0.617-0.002-1.233 0.011-1.85-0.883-0.523-1.773-1.034-2.666-1.538v0zM9.179 3.111v0c-0.872 0.499-1.74 1.005-2.614 1.499-0.016 0.632 0.005 1.264-0.021 1.894-1.921 0.81-3.8 1.794-5.385 3.165 0.069 1.339 0.172 2.676 0.26 4.014 0.046 0.502-0.092 1.096 0.287 1.504 0.65 0.778 1.393 1.475 2.121 2.182 0.394-0.346 0.809-0.666 1.234-0.974-0.372-0.817-0.64-1.693-0.639-2.597 0.012-1.664 0.669-3.315 1.794-4.539 0.329 0.154 0.421 0.632 0.698 0.881 0.479-0.874 1.034-1.741 1.835-2.357 0.775-0.57 1.723-0.824 2.645-1.043 0.223-0.415 0.459-0.824 0.683-1.238-1.262-0.304-2.397-1.174-2.898-2.389v0zM14.535 7.896v0c0.352 0.814 0.717 1.697 0.562 2.601-0.145 1.002-0.969 1.855-1.962 2.049 0.001 0.408 0.002 0.817-0.002 1.225 2.197 0.103 4.363 0.782 6.213 1.972 0.754-1.477 0.649-3.36-0.388-4.676-0.276 0.337-0.585 0.651-0.965 0.872-0.384-1.802-1.607-3.552-3.457-4.043zM10.78 7.892v0c-0.632 0.185-1.233 0.49-1.724 0.931-0.932 0.8-1.467 1.957-1.765 3.128-0.361-0.245-0.679-0.546-0.952-0.885-0.291 0.421-0.554 0.868-0.699 1.362-0.365 1.089-0.191 2.302 0.321 3.313 1.847-1.196 4.017-1.866 6.213-1.969-0.005-0.413-0.004-0.825-0.005-1.236-1.138-0.188-2.028-1.287-1.999-2.435-0.018-0.778 0.284-1.516 0.61-2.208v-0zM12.647 6.279v0c-0.61 0.99-1.195 2.021-1.485 3.155-0.18 0.722 0.047 1.606 0.74 1.973 0.654 0.308 1.576 0.193 1.993-0.447 0.376-0.538 0.35-1.243 0.156-1.844-0.325-1.009-0.849-1.941-1.404-2.837v0z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 4.5 KiB |
5
svg/dmc-color.svg
Normal file
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="25" height="32" viewBox="0 0 25 32">
|
||||
<title>dmc-color</title>
|
||||
<path fill="#444" d="M6.563 4.61c0.874-0.494 1.743-1 2.615-1.499 0.501 1.216 1.635 2.085 2.898 2.389-0.224 0.414-0.461 0.823-0.683 1.238-0.922 0.219-1.871 0.473-2.645 1.043-0.8 0.616-1.356 1.483-1.835 2.357-0.277-0.249-0.37-0.727-0.698-0.881-1.126 1.224-1.782 2.876-1.794 4.539-0.001 0.904 0.267 1.781 0.639 2.597-0.425 0.308-0.84 0.628-1.234 0.974-0.728-0.707-1.47-1.404-2.121-2.182-0.379-0.408-0.241-1.001-0.287-1.504-0.087-1.337-0.191-2.675-0.26-4.013 1.585-1.371 3.464-2.355 5.385-3.165 0.026-0.631 0.005-1.262 0.021-1.894zM16.111 3.113c-0.504 1.216-1.642 2.083-2.904 2.395 0.244 0.415 0.477 0.837 0.725 1.25 1.041 0.224 2.116 0.542 2.92 1.275 0.639 0.594 1.11 1.34 1.522 2.101 0.249-0.294 0.464-0.616 0.638-0.961 0.871 0.954 1.496 2.139 1.738 3.411 0.292 1.287 0.048 2.635-0.52 3.813 0.427 0.303 0.842 0.623 1.225 0.982 0.8-0.824 1.679-1.584 2.372-2.505 0.032-1.746 0.266-3.482 0.281-5.23-1.574-1.358-3.44-2.33-5.342-3.143 0.005-0.617-0.002-1.233 0.011-1.85-0.883-0.523-1.773-1.034-2.666-1.538zM4.199 18.236c0.009 1.105 0 2.208 0.005 3.313 0.522 0.505 1.066 0.986 1.582 1.499 0.193 0.2 0.421 0.358 0.666 0.489 0.014 0.489-0.014 0.978 0.009 1.467-0.010 0.183 0.126 0.321 0.236 0.45 0.499 0.548 1.127 0.954 1.748 1.35 1.223 0.771 2.479 1.491 3.749 2.182-0.001-0.834 0.002-1.669 0-2.502-0.041-1.772-0.643-3.464-1.335-5.076-0.861-2.065-2.288-3.991-4.331-5.001-0.809 0.565-1.65 1.105-2.329 1.831zM15.426 19.503c-0.813 1.292-1.365 2.728-1.849 4.169-0.549 1.718-0.537 3.534-0.501 5.316 1.482-0.793 2.942-1.633 4.345-2.56 0.489-0.36 1.037-0.695 1.358-1.224 0.097-0.547 0.011-1.112 0.047-1.666 0.878-0.514 1.504-1.356 2.289-1.993 0.006-1.095 0.046-2.195-0.016-3.287-0.666-0.754-1.531-1.3-2.362-1.856-1.353 0.718-2.497 1.805-3.312 3.101z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
5
svg/dmc-white.svg
Normal file
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="25" height="32" viewBox="0 0 25 32">
|
||||
<title>dmc-white</title>
|
||||
<path fill="#444" d="M11.16 9.434c0.291-1.134 0.876-2.165 1.485-3.155 0.555 0.897 1.079 1.829 1.404 2.837 0.193 0.601 0.219 1.305-0.156 1.844-0.416 0.64-1.339 0.755-1.993 0.447-0.693-0.367-0.92-1.251-0.74-1.973zM9.054 8.823c-0.932 0.8-1.467 1.957-1.765 3.128-0.361-0.245-0.679-0.546-0.952-0.885-0.291 0.421-0.554 0.868-0.699 1.362-0.365 1.089-0.191 2.302 0.321 3.313 1.847-1.196 4.017-1.866 6.213-1.969-0.005-0.413-0.004-0.825-0.005-1.236-1.138-0.188-2.028-1.287-1.999-2.435-0.018-0.778 0.284-1.516 0.61-2.208-0.632 0.185-1.233 0.49-1.724 0.931zM14.533 7.896c0.352 0.814 0.717 1.697 0.562 2.601-0.145 1.002-0.969 1.855-1.962 2.049 0.001 0.408 0.002 0.817-0.002 1.225 2.197 0.103 4.363 0.782 6.213 1.972 0.754-1.477 0.649-3.36-0.388-4.676-0.276 0.337-0.585 0.651-0.965 0.872-0.384-1.802-1.607-3.552-3.457-4.043zM7.528 15.909c2.249 1.431 3.76 3.797 4.626 6.277 0.034-2.484 0.005-4.969 0.016-7.453-1.6 0.103-3.222 0.4-4.642 1.176zM13.138 22.087c0.942-2.416 2.381-4.765 4.618-6.175-1.406-0.789-3.031-1.062-4.619-1.181-0.004 2.452-0.006 4.904 0.001 7.356z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
5
svg/dmc.svg
Normal file
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="26" height="32" viewBox="0 0 26 32">
|
||||
<title>dmc</title>
|
||||
<path fill="#444" d="M6.131 3.028c0.992-0.56 1.976-1.134 2.965-1.7 0.568 1.378 1.855 2.364 3.286 2.709-0.254 0.469-0.522 0.933-0.775 1.403-1.046 0.249-2.121 0.536-3 1.183-0.908 0.698-1.538 1.681-2.081 2.673-0.314-0.282-0.419-0.824-0.792-0.998-1.276 1.388-2.021 3.261-2.035 5.148-0.001 1.025 0.303 2.019 0.725 2.945-0.482 0.349-0.952 0.712-1.399 1.105-0.825-0.802-1.667-1.592-2.405-2.475-0.43-0.462-0.274-1.135-0.325-1.705-0.099-1.517-0.216-3.033-0.295-4.551 1.797-1.554 3.928-2.67 6.107-3.589 0.029-0.715 0.006-1.431 0.024-2.148zM16.958 1.33c-0.571 1.378-1.862 2.361-3.293 2.716 0.277 0.471 0.54 0.95 0.823 1.417 1.18 0.254 2.399 0.614 3.311 1.445 0.725 0.673 1.258 1.519 1.726 2.382 0.282-0.334 0.526-0.698 0.723-1.089 0.987 1.082 1.697 2.426 1.97 3.868 0.331 1.459 0.054 2.989-0.589 4.324 0.485 0.344 0.955 0.707 1.39 1.113 0.908-0.934 1.903-1.796 2.69-2.84 0.036-1.98 0.302-3.948 0.318-5.931-1.785-1.54-3.9-2.642-6.058-3.564 0.006-0.7-0.003-1.398 0.013-2.098-1.001-0.594-2.011-1.173-3.023-1.744zM3.451 18.479c0.010 1.253 0 2.504 0.006 3.757 0.592 0.573 1.209 1.119 1.794 1.7 0.219 0.226 0.478 0.406 0.755 0.554 0.015 0.554-0.015 1.109 0.010 1.663-0.011 0.208 0.142 0.364 0.268 0.51 0.566 0.621 1.278 1.082 1.982 1.531 1.387 0.874 2.811 1.691 4.251 2.475-0.001-0.945 0.003-1.892 0-2.838-0.046-2.010-0.729-3.928-1.514-5.756-0.976-2.342-2.595-4.526-4.911-5.671-0.918 0.641-1.871 1.253-2.641 2.077zM16.181 19.916c-0.922 1.465-1.547 3.093-2.096 4.727-0.623 1.948-0.609 4.008-0.568 6.029 1.68-0.899 3.336-1.852 4.927-2.903 0.554-0.408 1.176-0.788 1.54-1.388 0.11-0.62 0.013-1.261 0.053-1.889 0.996-0.582 1.705-1.538 2.596-2.26 0.007-1.241 0.052-2.489-0.018-3.727-0.755-0.855-1.736-1.475-2.678-2.105-1.535 0.814-2.832 2.047-3.755 3.516zM13.587 22.846c-0.008-2.78-0.006-5.561-0.001-8.341 1.802 0.135 3.643 0.444 5.238 1.339-2.538 1.599-4.169 4.262-5.237 7.002zM7.226 15.841c1.61-0.88 3.449-1.216 5.263-1.334-0.013 2.817 0.021 5.635-0.018 8.452-0.982-2.813-2.695-5.495-5.245-7.118zM15.169 6.754c2.098 0.557 3.484 2.542 3.92 4.585 0.432-0.25 0.782-0.606 1.095-0.989 1.176 1.493 1.295 3.628 0.44 5.303-2.098-1.349-4.554-2.119-7.045-2.236 0.006-0.464 0.004-0.927 0.003-1.39 1.126-0.221 2.060-1.187 2.225-2.324 0.176-1.025-0.237-2.026-0.637-2.949zM8.956 7.805c0.557-0.5 1.239-0.846 1.955-1.056-0.369 0.785-0.712 1.621-0.691 2.504-0.034 1.302 0.976 2.547 2.267 2.761 0.001 0.466 0 0.934 0.006 1.402-2.49 0.117-4.951 0.877-7.045 2.233-0.581-1.147-0.778-2.522-0.364-3.757 0.165-0.56 0.464-1.067 0.793-1.545 0.31 0.385 0.67 0.726 1.080 1.004 0.338-1.328 0.944-2.639 2.001-3.547zM11.344 8.498c-0.204 0.818 0.053 1.821 0.839 2.237 0.742 0.349 1.788 0.219 2.26-0.507 0.426-0.61 0.397-1.409 0.177-2.091-0.369-1.144-0.962-2.201-1.592-3.218-0.691 1.123-1.355 2.292-1.684 3.578z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 2.9 KiB |
5
svg/dmu.svg
Normal file
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="26" height="32" viewBox="0 0 26 32">
|
||||
<title>dmu</title>
|
||||
<path fill="#444" d="M5.551 3.842c1.712-1.316 3.765-2.184 5.902-2.491 0.094-0.015 0.188-0.018 0.283-0.018-1.053 1.607-1.84 3.416-2.12 5.325-0.133 0.773 0.020 1.567 0.283 2.296-0.352 0.157-0.706 0.309-1.073 0.43-0.945-1.027-1.82-2.13-2.485-3.36-0.366-0.683-0.678-1.41-0.79-2.182zM14.699 1.334c1.071 1.61 1.868 3.433 2.128 5.359 0.114 0.761-0.025 1.537-0.261 2.262 0.339 0.164 0.684 0.314 1.043 0.429 0.209-0.214 0.409-0.437 0.604-0.664 0.43-0.511 0.863-1.022 1.23-1.581 0.666-1.005 1.254-2.097 1.471-3.296-0.624-0.452-1.273-0.874-1.961-1.224-1.217-0.617-2.529-1.056-3.88-1.258-0.124-0.022-0.25-0.031-0.375-0.027zM12.24 2.897c-0.627 1.090-1.157 2.263-1.341 3.515-0.101 0.775-0.082 1.596 0.243 2.32 0.151 0.37 0.394 0.717 0.746 0.92 0.445 0.258 0.978 0.288 1.48 0.28 0.409-0.010 0.831-0.071 1.19-0.281 0.286-0.166 0.509-0.426 0.665-0.715 0.33-0.618 0.44-1.334 0.406-2.028-0.049-0.945-0.344-1.86-0.727-2.719-0.45-0.999-1.030-1.935-1.667-2.825-0.354 0.496-0.689 1.005-0.994 1.532zM22.015 4.699c-0.359 1.191-0.945 2.304-1.653 3.323-0.701 1.018-1.539 1.932-2.418 2.797-0.691-0.213-1.375-0.46-2.017-0.796-0.503 0.638-1.278 1.027-2.082 1.103-0 0.847-0 1.694 0 2.541 1.208 0.026 2.414 0.131 3.606 0.328 3.045 0.497 6.015 1.58 8.576 3.315 0.279-1.134 0.401-2.302 0.428-3.468-0-0.856-0.036-1.71-0.091-2.564-1.28 0.456-2.644 0.673-4.003 0.643 1.323-0.587 2.563-1.406 3.514-2.507-0.389-0.705-0.867-1.357-1.354-1.997-0.759-0.971-1.564-1.916-2.504-2.717zM3.022 6.094c-0.503 0.559-0.978 1.144-1.426 1.748-0.371 0.506-0.733 1.020-1.034 1.571 0.956 1.107 2.207 1.928 3.543 2.506-1.369 0.034-2.74-0.191-4.032-0.642-0.056 0.853-0.093 1.708-0.062 2.563 0.003 1.167 0.114 2.342 0.43 3.469 1.784-1.22 3.781-2.114 5.856-2.709 2.045-0.588 4.169-0.888 6.296-0.934 0-0.847 0-1.694 0-2.541-0.804-0.075-1.58-0.465-2.083-1.103-0.638 0.347-1.327 0.584-2.019 0.796-0.732-0.729-1.439-1.487-2.054-2.319-0.857-1.15-1.57-2.423-1.986-3.801-0.515 0.424-0.983 0.901-1.429 1.395zM7.093 15.681c-0.332 0.1-0.662 0.207-0.994 0.309 0.813 0.452 1.56 1.017 2.24 1.65 0.89 0.829 1.67 1.774 2.341 2.787 0.796 1.222 1.42 2.55 1.911 3.921 0.001-3.143 0-6.286 0-9.429-1.855 0.030-3.705 0.29-5.499 0.763zM13.844 14.919c0 3.143 0 6.286 0 9.429 0.426-1.193 0.974-2.344 1.631-3.427 1.198-1.994 2.834-3.763 4.861-4.93-0.423-0.13-0.838-0.288-1.27-0.387-1.709-0.418-3.463-0.656-5.222-0.685zM1.601 18.041c1.284 0.691 2.411 1.668 3.298 2.823 0.786 1.024 1.387 2.203 1.668 3.467 0.154 0.706 0.196 1.454-0.007 2.154 1.588 1.892 3.704 3.306 6 4.193-0.089-1.801-0.375-3.598-0.922-5.319-0.453-1.43-1.087-2.803-1.891-4.069-0.665-1.051-1.457-2.027-2.387-2.855-0.867-0.771-1.854-1.418-2.94-1.835-0.983 0.388-1.929 0.87-2.819 1.44zM18.475 19.021c-0.88 0.906-1.601 1.953-2.224 3.049-0.699 1.235-1.244 2.557-1.63 3.923-0.433 1.526-0.668 3.103-0.747 4.686 2.303-0.874 4.413-2.301 6-4.193-0.284-0.997-0.092-2.058 0.239-3.019 0.582-1.677 1.685-3.149 3.051-4.272 0.516-0.453 1.086-0.846 1.7-1.154-0.896-0.557-1.839-1.039-2.815-1.44-1.363 0.506-2.567 1.38-3.575 2.419z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 3.1 KiB |
5
svg/ncc-color.svg
Normal file
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="23" height="32" viewBox="0 0 23 32">
|
||||
<title>ncc-color</title>
|
||||
<path fill="#444" d="M9.943 1.879c1.052-0.715 2.504-0.741 3.549 0 0.061 0.854 0.034 1.711 0.039 2.567-0.001 3.372 0.003 6.743-0.003 10.115-1.092 0.608-2.509 0.611-3.6-0.004 0.017-4.227-0.012-8.452 0.014-12.679zM1.291 4.849c0.022 0.675-0.031 1.358 0.105 2.025 1.45 1.134 3.033 2.080 4.613 3.018 0.032-0.868-0.031-1.738 0.034-2.604 0.090-0.941 0.834-1.636 1.601-2.095-0.008-1.033 0.72-1.917 1.596-2.386 0.004-0.195 0.007-0.389 0.010-0.584-2.813 0.222-5.558 1.153-7.959 2.626zM14.187 2.223c0.009 0.2 0.018 0.4 0.030 0.601 0.887 0.451 1.591 1.353 1.605 2.377 0.749 0.45 1.467 1.117 1.584 2.029 0.092 0.882 0.021 1.771 0.040 2.656 1.589-0.938 3.181-1.884 4.628-3.033-0.045-0.671 0.108-1.332 0.096-2.002-2.412-1.471-5.161-2.414-7.982-2.627zM8.36 5.080c-0.005 2.338 0.003 4.677-0.004 7.016-0.018 0.746 0.278 1.511 0.883 1.971 0.013-3.49 0.013-6.981 0-10.471-0.437 0.38-0.886 0.867-0.88 1.484zM14.224 3.615c-0.010 3.482-0.018 6.964 0.004 10.446 0.594-0.466 0.881-1.225 0.878-1.967-0.001-2.291-0.001-4.583 0-6.876 0.031-0.654-0.389-1.219-0.882-1.603zM6.766 7.563c-0.032 0.904-0.001 1.811-0.010 2.717 0.285 0.175 0.575 0.346 0.868 0.511 0.010-1.558 0.014-3.116-0.001-4.674-0.462 0.348-0.843 0.846-0.856 1.446zM15.842 6.12c-0.017 1.559-0.008 3.121-0.004 4.682 0.278-0.169 0.553-0.339 0.826-0.514-0.018-0.96 0.013-1.921-0.012-2.881-0.021-0.541-0.411-0.966-0.811-1.287zM1.495 19.206c0.036 0.323 0.102 0.642 0.218 0.947 0.846 2.401 2.405 4.517 4.302 6.197 0.005-2.353 0.003-4.708 0.001-7.061-0.846-0.027-1.687-0.135-2.534-0.149-0.41-0.004-0.719-0.301-0.995-0.567-0.3 0.256-0.623 0.488-0.992 0.633zM10.888 18.795c-0.656 0.354-0.961 1.138-0.955 1.854-0.003 3.158 0.008 6.314-0.005 9.47 1.035 0.736 2.458 0.686 3.555 0.113 0.078-0.68 0.043-1.365 0.049-2.047-0.001-2.466 0.001-4.934-0.001-7.4 0.001-0.584-0.132-1.196-0.529-1.642-0.512-0.592-1.434-0.662-2.113-0.348zM19.977 19.136c-0.845 0.025-1.684 0.122-2.528 0.153-0.003 2.356 0 4.711-0.001 7.066 0.653-0.594 1.279-1.221 1.827-1.916 1.235-1.532 2.313-3.282 2.696-5.235-0.385-0.126-0.703-0.379-1.012-0.632-0.266 0.272-0.575 0.554-0.981 0.563zM6.762 19.355c-0.017 2.641-0.005 5.284-0.006 7.925-0.026 0.485 0.507 0.702 0.87 0.876 0.012-2.861-0.003-5.721 0.008-8.583-0.284-0.095-0.576-0.166-0.872-0.218zM15.828 19.571c0.021 2.859-0.013 5.718 0.017 8.576 0.352-0.18 0.898-0.37 0.817-0.869-0.008-2.639 0.006-5.279-0.008-7.919-0.28 0.051-0.557 0.122-0.826 0.211zM8.367 20.249c-0.019 2.774 0 5.547-0.010 8.321-0.097 0.507 0.515 0.598 0.859 0.728 0.004-2.615 0.014-5.232-0.004-7.847-0.154-0.468-0.544-0.821-0.845-1.201zM14.252 21.449c-0.017 2.615-0.009 5.233-0.003 7.849 0.288-0.134 0.825-0.173 0.829-0.586 0.010-2.818 0.004-5.637 0.003-8.456-0.296 0.378-0.693 0.724-0.829 1.194z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
5
svg/ncc-white.svg
Normal file
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="23" height="32" viewBox="0 0 23 32">
|
||||
<title>ncc-white</title>
|
||||
<path fill="#444" d="M18.712 9.993c1.659-0.935 3.133-2.15 4.646-3.295 0.221 1.297 0.167 2.78-0.754 3.813-1.109 1.191-2.548 2-3.927 2.833-0.149 0.077-0.156 0.259-0.21 0.397 0.551-0.010 1.044-0.284 1.523-0.529 0.921-0.502 1.786-1.1 2.6-1.762 0.138 1.056 0.077 2.243-0.61 3.112-0.607 0.773-1.6 1.042-2.479 1.375-0.646 0.256-1.362 0.34-1.96 0.712 0.189 0.289 0.523 0.187 0.802 0.149 0.994-0.163 1.938-0.525 2.876-0.878-0.14 0.8-0.332 1.679-0.97 2.239-0.261 0.256-0.64 0.243-0.976 0.279-1.003 0.074-2.004 0.161-3.010 0.192-0.89 0.127-1.491 0.887-2.074 1.5-0.157-0.903-0.707-1.829-1.633-2.096-0.826-0.215-1.823-0.16-2.461 0.474-0.467 0.415-0.701 1.020-0.834 1.616-0.419-0.481-0.876-0.944-1.422-1.282-0.593-0.345-1.301-0.187-1.949-0.275-0.815-0.096-1.654-0.045-2.449-0.252-0.826-0.488-1.051-1.526-1.208-2.403 1.018 0.397 2.055 0.787 3.146 0.922 0.213 0.048 0.391-0.013 0.535-0.182-0.138-0.087-0.282-0.163-0.432-0.227-1.199-0.407-2.473-0.697-3.54-1.405-1.091-0.812-1.236-2.31-1.088-3.562 0.935 0.715 1.898 1.405 2.953 1.934 0.385 0.174 0.789 0.383 1.227 0.314-0.096-0.187-0.215-0.366-0.407-0.462-1.212-0.699-2.414-1.439-3.446-2.391-0.68-0.611-1.108-1.489-1.165-2.401-0.032-0.586 0-1.173 0.062-1.757 1.389 1.018 2.714 2.135 4.197 3.019 1.020 0.64 2.129 1.136 3.092 1.863 0.349 0.224 0.205 0.698 0.28 1.043 0.145 1.301 1.236 2.238 2.356 2.763 0.778 0.387 1.671 0.341 2.513 0.284 0.979-0.163 1.859-0.724 2.54-1.428 0.537-0.573 0.8-1.353 0.797-2.133-0.014-0.223 0.066-0.438 0.266-0.553 0.806-0.615 1.736-1.035 2.596-1.562z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
5
svg/ncc.svg
Normal file
@ -0,0 +1,5 @@
|
||||
<!-- Generated by IcoMoon.io -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="23" height="32" viewBox="0 0 23 32">
|
||||
<title>ncc</title>
|
||||
<path fill="#444" d="M9.943 1.879c1.052-0.715 2.504-0.741 3.549 0 0.061 0.854 0.034 1.711 0.039 2.567-0.001 3.372 0.003 6.743-0.003 10.115-1.092 0.608-2.509 0.611-3.6-0.004 0.017-4.227-0.012-8.452 0.014-12.679zM1.291 4.849c0.022 0.675-0.031 1.358 0.105 2.025 1.45 1.134 3.033 2.080 4.613 3.018 0.032-0.868-0.031-1.738 0.034-2.604 0.090-0.941 0.834-1.636 1.601-2.095-0.008-1.033 0.72-1.917 1.596-2.386 0.004-0.195 0.007-0.389 0.010-0.584-2.813 0.222-5.558 1.153-7.959 2.626zM14.187 2.223c0.009 0.2 0.018 0.4 0.030 0.601 0.887 0.451 1.591 1.353 1.605 2.377 0.749 0.45 1.467 1.117 1.584 2.029 0.092 0.882 0.021 1.771 0.040 2.656 1.589-0.938 3.181-1.884 4.628-3.033-0.045-0.671 0.108-1.332 0.096-2.002-2.412-1.471-5.161-2.414-7.982-2.627zM8.36 5.080c-0.005 2.338 0.003 4.677-0.004 7.016-0.018 0.746 0.278 1.511 0.883 1.971 0.013-3.49 0.013-6.981 0-10.471-0.437 0.38-0.886 0.867-0.88 1.484zM14.224 3.615c-0.010 3.482-0.018 6.964 0.004 10.446 0.594-0.466 0.881-1.225 0.878-1.967-0.001-2.291-0.001-4.583 0-6.876 0.031-0.654-0.389-1.219-0.882-1.603zM6.766 7.563c-0.032 0.904-0.001 1.811-0.010 2.717 0.285 0.175 0.575 0.346 0.868 0.511 0.010-1.558 0.014-3.116-0.001-4.674-0.462 0.348-0.843 0.846-0.856 1.446zM15.842 6.12c-0.017 1.559-0.008 3.121-0.004 4.682 0.278-0.169 0.553-0.339 0.826-0.514-0.018-0.96 0.013-1.921-0.012-2.881-0.021-0.541-0.411-0.966-0.811-1.287zM1.495 19.206c0.036 0.323 0.102 0.642 0.218 0.947 0.846 2.401 2.405 4.517 4.302 6.197 0.005-2.353 0.003-4.708 0.001-7.061-0.846-0.027-1.687-0.135-2.534-0.149-0.41-0.004-0.719-0.301-0.995-0.567-0.3 0.256-0.623 0.488-0.992 0.633zM10.888 18.795c-0.656 0.354-0.961 1.138-0.955 1.854-0.003 3.158 0.008 6.314-0.005 9.47 1.035 0.736 2.458 0.686 3.555 0.113 0.078-0.68 0.043-1.365 0.049-2.047-0.001-2.466 0.001-4.934-0.001-7.4 0.001-0.584-0.132-1.196-0.529-1.642-0.512-0.592-1.434-0.662-2.113-0.348zM19.977 19.136c-0.845 0.025-1.684 0.122-2.528 0.153-0.003 2.356 0 4.711-0.001 7.066 0.653-0.594 1.279-1.221 1.827-1.916 1.235-1.532 2.313-3.282 2.696-5.235-0.385-0.126-0.703-0.379-1.012-0.632-0.266 0.272-0.575 0.554-0.981 0.563zM6.762 19.355c-0.017 2.641-0.005 5.284-0.006 7.925-0.026 0.485 0.507 0.702 0.87 0.876 0.012-2.861-0.003-5.721 0.008-8.583-0.284-0.095-0.576-0.166-0.872-0.218zM15.828 19.571c0.021 2.859-0.013 5.718 0.017 8.576 0.352-0.18 0.898-0.37 0.817-0.869-0.008-2.639 0.006-5.279-0.008-7.919-0.28 0.051-0.557 0.122-0.826 0.211zM8.367 20.249c-0.019 2.774 0 5.547-0.010 8.321-0.097 0.507 0.515 0.598 0.859 0.728 0.004-2.615 0.014-5.232-0.004-7.847-0.154-0.468-0.544-0.821-0.845-1.201zM14.252 21.449c-0.017 2.615-0.009 5.233-0.003 7.849 0.288-0.134 0.825-0.173 0.829-0.586 0.010-2.818 0.004-5.637 0.003-8.456-0.296 0.378-0.693 0.724-0.829 1.194zM18.712 9.993c-0.86 0.527-1.79 0.947-2.596 1.562-0.2 0.114-0.28 0.329-0.266 0.553 0.004 0.78-0.259 1.559-0.797 2.133-0.681 0.704-1.561 1.265-2.54 1.428-0.842 0.057-1.735 0.102-2.513-0.284-1.12-0.525-2.211-1.462-2.356-2.763-0.075-0.345 0.069-0.819-0.28-1.043-0.963-0.726-2.072-1.223-3.092-1.863-1.483-0.883-2.807-2-4.197-3.019-0.062 0.584-0.095 1.17-0.062 1.757 0.057 0.912 0.485 1.79 1.165 2.401 1.031 0.952 2.234 1.692 3.446 2.391 0.192 0.096 0.311 0.275 0.407 0.462-0.438 0.069-0.842-0.14-1.227-0.314-1.055-0.529-2.017-1.219-2.953-1.934-0.148 1.252-0.003 2.75 1.088 3.562 1.068 0.708 2.342 0.998 3.54 1.405 0.15 0.064 0.294 0.14 0.432 0.227-0.144 0.169-0.322 0.23-0.535 0.182-1.091-0.135-2.128-0.525-3.146-0.922 0.157 0.877 0.381 1.915 1.208 2.403 0.795 0.206 1.635 0.156 2.449 0.252 0.647 0.088 1.356-0.070 1.949 0.275 0.546 0.337 1.003 0.8 1.422 1.282 0.134-0.597 0.367-1.201 0.834-1.616 0.638-0.633 1.635-0.689 2.461-0.474 0.926 0.267 1.476 1.194 1.633 2.096 0.584-0.612 1.184-1.373 2.074-1.5 1.005-0.031 2.007-0.118 3.010-0.192 0.336-0.036 0.715-0.023 0.976-0.279 0.638-0.56 0.83-1.439 0.97-2.239-0.938 0.353-1.882 0.715-2.876 0.878-0.279 0.038-0.612 0.14-0.802-0.149 0.598-0.372 1.314-0.457 1.96-0.712 0.88-0.333 1.872-0.602 2.479-1.375 0.686-0.869 0.747-2.056 0.61-3.112-0.813 0.662-1.679 1.26-2.6 1.762-0.479 0.245-0.972 0.519-1.523 0.529 0.054-0.137 0.061-0.32 0.21-0.397 1.379-0.833 2.818-1.642 3.927-2.833 0.921-1.033 0.974-2.516 0.754-3.813-1.513 1.146-2.986 2.36-4.646 3.295z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 4.3 KiB |