cryptofont-rails 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.rspec +3 -0
- data/.travis.yml +5 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +35 -0
- data/LICENSE.txt +21 -0
- data/README.md +42 -0
- data/Rakefile +6 -0
- data/app/assets/fonts/cryptofont-webfont.eot +0 -0
- data/app/assets/fonts/cryptofont-webfont.svg +120 -0
- data/app/assets/fonts/cryptofont-webfont.ttf +0 -0
- data/app/assets/fonts/cryptofont-webfont.woff +0 -0
- data/app/assets/stylesheets/cryptofont.css.scss +325 -0
- data/app/helpers/cryptofont/rails/icon_helper.rb +53 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/cryptofont-rails.gemspec +30 -0
- data/lib/cryptofont-rails/engine.rb +9 -0
- data/lib/cryptofont-rails/version.rb +5 -0
- data/lib/cryptofont-rails.rb +2 -0
- metadata +106 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: dbe4f0cdec1490459376acbd9d711d4cd21571e0ddd5c2a5fcd1e7a047659740
|
4
|
+
data.tar.gz: 23729c1d3753caa463833bc659e9f2450c6a07084bf7e0a601f2124e190947c1
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 9f1ea1611597f6931d854a4635969fd0664dd12264af6de511169007d4710c3cfe36909ed05c3cfa5463212181ddae571c0e8ca49115b51384ad92948da0fbdd
|
7
|
+
data.tar.gz: cf4e0f80bd11485aa291439ab65ff802ef84e2d97c2d0b8be40e3c33cfa56c76e00676c76170f8d5cd26a2d76b4a0a45743737caf9a5de8d4139d9d7022e07a5
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
cryptofont-rails (0.1.0)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
diff-lcs (1.3)
|
10
|
+
rake (10.5.0)
|
11
|
+
rspec (3.7.0)
|
12
|
+
rspec-core (~> 3.7.0)
|
13
|
+
rspec-expectations (~> 3.7.0)
|
14
|
+
rspec-mocks (~> 3.7.0)
|
15
|
+
rspec-core (3.7.1)
|
16
|
+
rspec-support (~> 3.7.0)
|
17
|
+
rspec-expectations (3.7.0)
|
18
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
19
|
+
rspec-support (~> 3.7.0)
|
20
|
+
rspec-mocks (3.7.0)
|
21
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
22
|
+
rspec-support (~> 3.7.0)
|
23
|
+
rspec-support (3.7.1)
|
24
|
+
|
25
|
+
PLATFORMS
|
26
|
+
ruby
|
27
|
+
|
28
|
+
DEPENDENCIES
|
29
|
+
bundler (~> 1.16)
|
30
|
+
cryptofont-rails!
|
31
|
+
rake (~> 10.0)
|
32
|
+
rspec (~> 3.0)
|
33
|
+
|
34
|
+
BUNDLED WITH
|
35
|
+
1.16.2
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 frizbee
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
# Cryptofont::Rails
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/cryptofont/rails`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'cryptofont-rails'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install cryptofont-rails
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/frizbee/cryptofont-rails.
|
36
|
+
|
37
|
+
## License
|
38
|
+
|
39
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
40
|
+
* The font is licensed under the SIL OFL 1.1 http://scripts.sil.org/OFL
|
41
|
+
* The CSS files are licensed under the MIT License http://opensource.org/licenses/mit-license.htm
|
42
|
+
* Attribution is not required, but much appreciated CryptoFont by @AMPoellmann (alexanderpoellmann.com)
|
data/Rakefile
ADDED
Binary file
|
@@ -0,0 +1,120 @@
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
4
|
+
<metadata>
|
5
|
+
<json>
|
6
|
+
<![CDATA[
|
7
|
+
{
|
8
|
+
"fontFamily": "cryptofont-webfont",
|
9
|
+
"majorVersion": 1,
|
10
|
+
"minorVersion": 0,
|
11
|
+
"fontURL": "https://alexanderpoellmann.com/cryptofont",
|
12
|
+
"description": "A sleek webfont for your favourite cryptocurrencies.\nFont generated by IcoMoon.",
|
13
|
+
"copyright": "Copyright 2017 Alexander Manfred Poellmann",
|
14
|
+
"designer": "Alexander Manfred Poellmann",
|
15
|
+
"designerURL": "https://alexanderpoellmann.com",
|
16
|
+
"license": "SIL OFL 1.1",
|
17
|
+
"licenseURL": "http://scripts.sil.org/OFL",
|
18
|
+
"version": "Version 1.0",
|
19
|
+
"fontId": "cryptofont-webfont",
|
20
|
+
"psName": "cryptofont-webfont",
|
21
|
+
"subFamily": "Regular",
|
22
|
+
"fullName": "cryptofont-webfont"
|
23
|
+
}
|
24
|
+
]]>
|
25
|
+
</json>
|
26
|
+
</metadata>
|
27
|
+
<defs>
|
28
|
+
<font id="cryptofont-webfont" horiz-adv-x="1024">
|
29
|
+
<font-face units-per-em="1024" ascent="870.4" descent="-153.6" />
|
30
|
+
<missing-glyph horiz-adv-x="1024" />
|
31
|
+
<glyph unicode=" " horiz-adv-x="512" d="" />
|
32
|
+
<glyph unicode="" glyph-name="adc" data-tags="adc" d="M512 676.198c-179.050 0-324.198-145.149-324.198-324.198s145.149-324.198 324.198-324.198c179.050 0 324.198 145.149 324.198 324.198v0c-0.117 179.003-145.196 324.082-324.188 324.198h-0.011zM667.238 319.846l-217.907-125.747c-4.054-2.381-8.928-3.787-14.131-3.787-15.609 0-28.262 12.654-28.262 28.262 0 0.035 0 0.070 0 0.106v-0.005 251.699c-0.003 0.152-0.005 0.332-0.005 0.512 0 15.609 12.654 28.262 28.262 28.262 5.205 0 10.081-1.407 14.269-3.861l-0.133 0.072 217.907-125.747c8.582-5.061 14.25-14.259 14.25-24.781s-5.668-19.72-14.116-24.708l-0.134-0.073zM512 842.291c-270.78 0-490.291-219.511-490.291-490.291s219.511-490.291 490.291-490.291c270.78 0 490.291 219.511 490.291 490.291v0c-0.117 270.733-219.558 490.175-490.28 490.291h-0.011zM512-14.592c-202.463 0-366.592 164.129-366.592 366.592s164.129 366.592 366.592 366.592c202.463 0 366.592-164.129 366.592-366.592v0c-0.117-202.416-164.176-366.475-366.581-366.592h-0.011z" />
|
33
|
+
<glyph unicode="" glyph-name="aeon" data-tags="aeon" d="M757.76 731.904c-15.061 38.939-44.954 69.299-82.569 84.635l-0.99 0.357c-96.461 33.587-223.642-65.536-316.416-233.472q27.443 6.554 56.115 11.674c120.832 80.896 244.122 128.205 343.859 136.806zM266.24-27.904c14.993-38.856 44.724-69.187 82.163-84.632l0.986-0.36c96.87-33.587 224.051 65.536 316.826 233.472q-27.443-6.554-56.115-11.674c-120.832-80.896-244.122-128.205-343.859-136.806zM482.304 605.338c178.995 20.48 342.221-3.277 445.645-57.344 0.977 6.246 1.535 13.45 1.535 20.784 0 30.586-9.703 58.905-26.199 82.048l0.293-0.433c-67.994 89.088-253.747 65.126-441.754-47.718zM541.696 98.662c-178.995-20.48-342.221 3.277-445.44 57.344-0.983-6.262-1.544-13.483-1.544-20.835 0-30.57 9.707-58.873 26.208-81.995l-0.292 0.431c67.789-88.883 253.747-64.922 441.754 47.718zM384.819 332.749c-25.19-8.602-37.888-41.984-16.794-58.573 8.939-5.641 19.815-8.988 31.472-8.988 16.010 0 30.545 6.313 41.253 16.585l-0.021-0.020c12.011 16.056 21.087 35.064 26.004 55.685l0.21 1.045c-5.939 0.409-12.871 0.642-19.857 0.642-22.046 0-43.549-2.322-64.279-6.735l2.011 0.359zM588.595 428.186c-16.893-14.679-28.049-35.577-29.882-59.092l-0.019-0.3c7.631-0.538 16.536-0.844 25.513-0.844 15.401 0 30.591 0.902 45.52 2.656l-1.811-0.173c0.423-0.016 0.92-0.026 1.419-0.026 21.717 0 39.322 17.605 39.322 39.322 0 6.19-1.43 12.047-3.979 17.256l0.103-0.232c-9.421 19.661-48.742 20.685-76.186 1.434zM1001.062 409.139c-15.155 129.434-245.76 208.691-516.301 177.152s-476.979-161.997-461.824-291.43 245.76-208.691 516.301-177.152 476.979 161.997 461.824 291.43zM755.302 385.382c-18.022-56.525-105.472-67.174-105.472-67.174-26.182-2.658-56.582-4.175-87.336-4.175-4.216 0-8.426 0.028-12.629 0.085l0.637-0.007c-4.506-39.936 20.48-45.67 64.102-46.285 35.979 2.223 69.39 10.975 99.811 25.084l-1.712-0.713-13.517-69.427c-27.735-7.726-59.813-12.734-92.868-13.906l-0.725-0.020c-39.936 0-92.979-1.229-125.338 48.538-29.68-31.99-71.948-51.945-118.876-51.945-4.653 0-9.26 0.196-13.814 0.581l0.595-0.040c-55.706 0-95.642 32.768-80.077 103.834s108.339 78.848 108.339 78.848c23.967 2.961 51.709 4.651 79.846 4.651 7.715 0 15.401-0.127 23.055-0.379l-1.115 0.029c6.758 43.418-34.406 46.080-76.595 45.67-31.59-1.996-60.769-10.554-86.768-24.318l1.162 0.561 11.674 68.813c29.018 6.689 63.995 12.057 99.666 14.975l2.734 0.18c57.958 4.506 100.966-17.613 114.893-49.152 31.595 32.076 75.501 51.949 124.048 51.949 10.149 0 20.095-0.868 29.767-2.535l-1.035 0.148c57.139-10.65 74.547-57.139 56.525-113.664z" />
|
34
|
+
<glyph unicode="" glyph-name="amp" data-tags="amp" d="M512 843.52c-271.459 0-491.52-220.061-491.52-491.52s220.061-491.52 491.52-491.52c271.459 0 491.52 220.061 491.52 491.52v0c0 271.459-220.061 491.52-491.52 491.52v0zM266.24 352c0 59.269 48.047 107.315 107.315 107.315s107.315-48.047 107.315-107.315c0-59.269-48.047-107.315-107.315-107.315v0c-59.269 0-107.315 48.047-107.315 107.315v0zM703.898 245.504c-83.389-0.464-150.823-68.114-150.938-151.541v-0.011c0-59.269-48.047-107.315-107.315-107.315s-107.315 48.047-107.315 107.315c0 59.269 48.047 107.315 107.315 107.315v0c1.662-0.065 3.614-0.102 5.574-0.102 83.813 0 151.757 67.944 151.757 151.757s-67.944 151.757-151.757 151.757c-1.96 0-3.912-0.037-5.854-0.111l0.28 0.008h-1.024c-59.269 0-107.315 48.047-107.315 107.315s48.047 107.315 107.315 107.315c59.269 0 107.315-48.047 107.315-107.315v0 0c0-83.813 67.944-151.757 151.757-151.757v0h1.024c59.325 0 107.418-48.092 107.418-107.418s-48.092-107.418-107.418-107.418v0z" />
|
35
|
+
<glyph unicode="" glyph-name="anc" data-tags="anc" d="M806.093 99.072h-587.162l-53.043-95.232c88.822-88.21 211.203-142.727 346.317-142.727s257.495 54.517 346.345 142.755l-0.028-0.028zM512 843.52c-0.035 0-0.077 0-0.118 0-271.459 0-491.52-220.061-491.52-491.52 0-98.923 29.223-191.021 79.508-268.131l-1.157 1.891zM1003.52 352c0 271.459-220.061 491.52-491.52 491.52v0l412.877-757.76c49.304 75.097 78.643 167.136 78.643 266.027 0 0.075 0 0.15 0 0.224v-0.011zM371.917 380.058h280.576l-140.493 256.819-140.083-256.819zM271.77 196.352h481.28l-47.514 86.63h-386.458l-47.309-86.63z" />
|
36
|
+
<glyph unicode="" glyph-name="ardr" data-tags="ardr" d="M508.109 773.478l-482.509-842.957h240.64l366.387 628.531-124.518 214.426zM283.443-69.478l320.512 186.573-123.29 152.576-197.222-339.149zM717.824 409.549l-231.014-125.952 289.382-352.87h222.208l-280.576 478.822z" />
|
37
|
+
<glyph unicode="" glyph-name="aur" data-tags="aur" d="M718.029 526.49l-342.426-178.586v165.478l402.637 209.92-60.211 115.098-342.426-178.586v147.251h-129.843v-941.466h129.843v335.872l402.637 209.92-60.211 115.098z" />
|
38
|
+
<glyph unicode="" glyph-name="bay" data-tags="bay" d="M609.28-138.291h-538.419v786.022h195.379v194.56h381.133c90.256-1.783 170.238-44.269 222.576-109.802l0.452-0.585c46.041-51.844 75.726-119.134 80.439-193.211l0.048-0.94c-1.765-69.191-19.984-133.75-50.865-190.414l1.099 2.203c14.329-24.192 26.782-52.146 35.908-81.565l0.752-2.813c9.742-28.113 15.368-60.513 15.368-94.228 0-48.531-11.658-94.339-32.326-134.777l0.778 1.676c-34.486-67.46-90.828-119.627-159.517-147.93l-2.070-0.755c-43.008-17.392-92.887-27.483-145.123-27.483-1.973 0-3.942 0.014-5.908 0.043l0.298-0.003zM172.442-37.12h436.838c105.062 0 179.61 40.96 222.003 121.651 58.573 112.026-27.853 230.4-28.672 231.629l-24.371 31.334 24.371 31.539c28.012 45.218 45.471 99.611 47.7 157.906l0.018 0.609c-5.076 49.865-25.63 94.164-56.712 128.827l0.188-0.213c-34.604 43.921-86.948 72.531-146.046 74.944l-0.386 0.013h-280.371v-93.184h263.373c56.275-1.089 103.454-38.803 118.76-90.242l0.228-0.894c3.833-11.663 6.044-25.086 6.044-39.026 0-35.321-14.193-67.327-37.187-90.627l0.014 0.014c-10.854-10.854-53.453-48.128-87.654-78.029 36.25-34.406 85.197-81.92 97.28-92.979 39.936-39.936 32.154-111.002 9.421-143.36-25.291-36.15-66.73-59.498-113.622-59.498-3.258 0-6.489 0.113-9.69 0.334l0.432-0.024h-354.918v446.054h102.4v-342.426h252.518c25.805 0 32.768 6.758 38.912 15.155 0.509 2.278 0.801 4.894 0.801 7.578s-0.292 5.3-0.845 7.818l0.044-0.24c-18.842 18.637-95.027 90.726-133.939 127.59l-40.96 38.707 42.598 36.659c42.394 36.454 113.664 98.509 124.723 109.568 4.576 5.033 7.378 11.75 7.378 19.122 0 3.196-0.527 6.269-1.498 9.137l0.059-0.201c-2.705 9.905-11.253 17.207-21.625 18.017l-0.084 0.005h-457.523z" />
|
39
|
+
<glyph unicode="" glyph-name="bcn" data-tags="bcn" d="M844.39 422.451s91.341 56.115 91.341 155.443-96.051 225.28-247.398 225.28h-424.755v-276.685h-241.459v-118.17h241.664v-156.672h-241.664v-118.17h241.664v-233.062h393.216c185.958 0 345.088 102.4 345.088 286.72 0.044 1.742 0.070 3.792 0.070 5.849 0 104.089-64.71 193.064-156.096 228.89l-1.67 0.577zM620.749 679.68c78.848 0 159.13-37.888 159.13-122.88s-84.992-129.229-163.84-129.229h-190.669v252.109zM647.373 49.51h-222.003v273.613h220.57c146.432 0 207.053-61.44 207.053-149.709s-106.496-124.314-205.619-124.314z" />
|
40
|
+
<glyph unicode="" glyph-name="brk" data-tags="brk" d="M987.75 470.784l-50.79-29.286c-28.137 31.709-53.559 67.049-75.175 104.846l-1.625 3.084c-20.889 34.263-39.639 73.834-54.157 115.391l-1.344 4.417 53.248 30.925c-56.869 56.328-127.527 98.837-206.456 122.008l-3.464 0.872v-63.078c-36.407-7.479-78.249-11.759-121.092-11.759-3.653 0-7.299 0.031-10.937 0.093l0.547-0.007c-3.091-0.055-6.737-0.086-10.39-0.086-42.842 0-84.685 4.281-125.123 12.438l4.031-0.679v65.741c-84.58-23.116-157.294-65.781-215.743-122.966l0.088 0.086 58.163-33.587c-15.858-45.973-34.608-85.544-57.078-122.61l1.577 2.802c-23.003-40.903-48.163-76.245-76.596-108.644l0.615 0.715-58.778 33.382c-10.161-37.392-15.999-80.325-15.999-124.621s5.838-87.228 16.786-128.070l-0.787 3.449 57.958 33.587c28.131-31.655 53.55-66.927 75.176-104.651l1.624-3.073c20.889-34.263 39.639-73.834 54.157-115.391l1.344-4.417-56.115-32.358c57.958-56.132 129.939-98.132 210.168-120.229l3.438-0.808v62.669c36.407 7.479 78.249 11.759 121.092 11.759 3.653 0 7.299-0.031 10.937-0.093l-0.547 0.007c3.091 0.055 6.737 0.086 10.39 0.086 42.842 0 84.685-4.281 125.123-12.438l-4.031 0.679v-60.006c81.689 24.332 151.689 66.792 208.098 122.901l-0.022-0.021-50.586 29.082c15.673 45.525 34.148 84.691 56.266 121.415l-1.584-2.836c23.001 40.903 48.161 76.245 76.595 108.643l-0.614-0.714 50.176-29.082c9.43 36.058 14.845 77.454 14.845 120.115s-5.415 84.056-15.594 123.538l0.749-3.423zM512-28.109c-209.928 0-380.109 170.181-380.109 380.109s170.181 380.109 380.109 380.109c209.928 0 380.109-170.181 380.109-380.109v0c0-209.928-170.181-380.109-380.109-380.109v0zM385.024 354.867c19.498 7.037 33.184 25.381 33.184 46.922 0 0.28-0.002 0.559-0.007 0.838l0.001-0.042c0 38.298-15.974 68.403-64.922 68.403h-75.162v-250.061h74.138c1.088-0.059 2.363-0.092 3.644-0.092 36.089 0 65.984 26.518 71.262 61.132l0.050 0.4c6.349 45.875-17.613 65.741-42.189 72.499zM322.355 427.162h23.552c18.227 0 28.262-7.578 28.262-28.877 0.014-0.325 0.022-0.706 0.022-1.089 0-14.704-11.92-26.624-26.624-26.624-0.656 0-1.307 0.024-1.952 0.070l0.086-0.005h-23.347zM350.003 265.37h-27.648v65.126h28.058c21.709 0 33.587-8.602 33.587-33.178 0.003-0.156 0.004-0.339 0.004-0.523 0-17.306-14.029-31.334-31.334-31.334-0.939 0-1.868 0.041-2.786 0.122l0.119-0.008zM592.896 392.96c0 58.368-35.021 78.029-69.632 78.029h-78.029v-250.061h45.056v90.112h23.552l39.117-90.112h49.766l-45.056 100.966c21.512 13.135 35.653 36.484 35.653 63.136 0 2.793-0.155 5.551-0.458 8.263l0.030-0.334zM510.976 355.891h-20.48v71.27h22.733c1.179 0.153 2.543 0.241 3.927 0.241 17.758 0 32.154-14.396 32.154-32.154 0-1.384-0.087-2.748-0.257-4.086l0.016 0.159c0.030-0.529 0.046-1.147 0.046-1.77 0-18.663-15.129-33.792-33.792-33.792-1.678 0-3.328 0.122-4.94 0.359l0.183-0.022zM773.939 471.194h-49.766l-60.006-100.966v100.966h-44.442v-250.266h44.442v66.15l21.914 36.864 49.766-103.014h49.152l-70.656 150.118 59.597 100.147z" />
|
41
|
+
<glyph unicode="" glyph-name="brx" data-tags="brx" d="M382.157 355.277c20.23 7.364 34.415 26.428 34.415 48.806 0 0.338-0.003 0.675-0.010 1.011l0.001-0.050c0 40.96-16.589 71.27-67.584 71.27h-78.029v-260.506h77.21c1.124-0.060 2.44-0.094 3.764-0.094 37.423 0 68.458 27.35 74.207 63.152l0.057 0.43c6.554 48.128-18.842 69.018-44.032 75.981zM317.030 430.643h24.576c19.046 0 29.491-7.782 29.491-30.106 0.003-0.149 0.005-0.325 0.005-0.502 0-15.27-12.378-27.648-27.648-27.648-0.795 0-1.581 0.034-2.359 0.099l0.102-0.007h-24.166zM345.907 262.093h-28.877v67.584h29.082c22.733 0 35.021-9.011 35.021-34.611 0.003-0.154 0.004-0.336 0.004-0.519 0-17.984-14.579-32.563-32.563-32.563-0.939 0-1.868 0.040-2.786 0.118l0.12-0.008zM598.63 395.008c0 61.44-36.659 81.92-72.704 81.92h-81.92v-261.12h47.514v95.232h24.576l40.96-94.413h52.019l-46.899 105.062c22.242 13.716 36.844 37.947 36.844 65.588 0 2.723-0.142 5.412-0.418 8.061l0.028-0.331zM513.024 356.301h-21.504v74.342h23.757c1.389 0.205 2.992 0.322 4.622 0.322 18.437 0 33.382-14.946 33.382-33.382 0-1.63-0.117-3.234-0.343-4.801l0.021 0.179c0.022-0.463 0.034-1.005 0.034-1.55 0-19.455-15.771-35.226-35.226-35.226-1.673 0-3.319 0.117-4.93 0.342l0.186-0.021zM733.184 476.314l-29.696-91.955-32.973 91.955h-52.019l53.658-126.566-56.73-133.939h49.766l33.587 94.413 36.864-94.413h51.61l-56.73 130.253 53.248 130.253h-50.586zM987.75 470.784l-50.79-29.286c-28.137 31.709-53.559 67.049-75.175 104.846l-1.625 3.084c-20.889 34.263-39.639 73.834-54.157 115.391l-1.344 4.417 53.248 30.925c-56.869 56.328-127.527 98.837-206.456 122.008l-3.464 0.872v-63.078c-36.407-7.479-78.249-11.759-121.092-11.759-3.653 0-7.299 0.031-10.937 0.093l0.547-0.007c-3.091-0.055-6.737-0.086-10.39-0.086-42.842 0-84.685 4.281-125.123 12.438l4.031-0.679v65.741c-84.58-23.116-157.294-65.781-215.743-122.966l0.088 0.086 58.163-33.587c-15.858-45.973-34.608-85.544-57.078-122.61l1.577 2.802c-23.003-40.903-48.163-76.245-76.596-108.644l0.615 0.715-58.778 33.382c-10.161-37.392-15.999-80.325-15.999-124.621s5.838-87.228 16.786-128.070l-0.787 3.449 57.958 33.587c28.131-31.655 53.55-66.927 75.176-104.651l1.624-3.073c20.889-34.263 39.639-73.834 54.157-115.391l1.344-4.417-56.115-32.358c57.958-56.132 129.939-98.132 210.168-120.229l3.438-0.808v62.669c36.407 7.479 78.249 11.759 121.092 11.759 3.653 0 7.299-0.031 10.937-0.093l-0.547 0.007c3.091 0.055 6.737 0.086 10.39 0.086 42.842 0 84.685-4.281 125.123-12.438l-4.031 0.679v-60.006c81.689 24.332 151.689 66.792 208.098 122.901l-0.022-0.021-50.586 29.082c15.673 45.525 34.148 84.691 56.266 121.415l-1.584-2.836c23.001 40.903 48.161 76.245 76.595 108.643l-0.614-0.714 50.176-29.082c9.43 36.058 14.845 77.454 14.845 120.115s-5.415 84.056-15.594 123.538l0.749-3.423zM512-28.109c-209.928 0-380.109 170.181-380.109 380.109s170.181 380.109 380.109 380.109c209.928 0 380.109-170.181 380.109-380.109v0c0-209.928-170.181-380.109-380.109-380.109v0z" />
|
42
|
+
<glyph unicode="" glyph-name="bsd" data-tags="bsd" d="M359.834 492.493v240.026l-338.125-361.882h980.582v121.856h-642.458zM21.709 211.507h642.458v-240.026l338.125 362.291h-980.582v-122.266z" />
|
43
|
+
<glyph unicode="" glyph-name="bta" data-tags="bta" d="M191.898 254.106v588.39h-124.928c-25.11 0-45.466-20.356-45.466-45.466v0-122.88h122.88v-222.413h-122.88v-544.768c0-25.11 20.356-45.466 45.466-45.466h395.264c-159.421 62.104-270.336 214.4-270.336 392.601 0 0 0 0.001 0 0.001v0zM925.286-25.856l-157.901 157.901c26.438 33.281 42.416 75.908 42.416 122.266 0 109.036-88.391 197.427-197.427 197.427-0.152 0-0.304 0-0.456-0.001h-150.299v222.413h150.323c0.008 0 0.018 0 0.027 0 176.192 0 327.060-108.428 389.516-262.198l1.010-2.813v387.891c0 25.11-20.356 45.466-45.466 45.466v0h-542.72v-588.39c0-0.128 0-0.28 0-0.432 0-109.036 88.391-197.427 197.427-197.427 46.358 0 88.985 15.978 122.673 42.728l-0.407-0.312 157.901-157.901c-36.768-32.973-79.895-59.779-127.187-78.272l-2.861-0.985h195.174c25.11 0 45.466 20.356 45.466 45.466v0 192.102c-19.394-48.121-45.447-89.494-77.559-125.325l0.35 0.397z" />
|
44
|
+
<glyph unicode="" glyph-name="btc" data-tags="btc" d="M812.442 355.072c-21.867 15.1-47.494 26.641-75.081 33.084l-1.515 0.298c20.772 12.027 38.485 26.675 53.449 43.788l0.209 0.244c13.297 21.098 22.121 46.272 24.53 73.291l0.046 0.641c1.229 17.818 4.301 92.16-53.658 134.963-44.851 33.178-96.256 46.285-165.069 50.586v149.914h-92.365v-148.275h-70.656v148.275h-92.365v-148.275h-182.067v-95.846h53.453c2.147 0.214 4.64 0.336 7.161 0.336 16.679 0 32.11-5.346 44.673-14.417l-0.225 0.154c11.059-12.288 12.902-18.842 12.902-42.803s0-373.76 0-382.771c0.070-0.856 0.109-1.853 0.109-2.86 0-9.716-3.697-18.569-9.762-25.228l0.027 0.030c-7.782-7.373-15.565-9.011-34.202-9.011h-55.091l-19.046-111.206h182.067v-147.866h92.57v147.866h70.451v-147.866h92.57v150.323c23.962 1.434 46.285 3.277 59.187 4.915 53.262 4.846 101.568 22.594 142.85 50.063l-1.128-0.706c55.706 38.912 68.198 99.942 69.632 161.178 0.351 3.822 0.551 8.267 0.551 12.758 0 46.003-21.008 87.1-53.954 114.22l-0.255 0.204zM432.333 588.954s29.491 2.662 58.368 2.253c1.838 0.041 4.003 0.065 6.174 0.065 30.831 0 60.554-4.741 88.481-13.533l-2.085 0.566c34.26-8.357 59.599-37.944 61.432-73.74l0.008-0.193c0.141-1.697 0.222-3.673 0.222-5.668 0-28.173-16.070-52.593-39.543-64.593l-0.41-0.19c-27.819-14.082-60.548-22.625-95.2-23.343l-0.237-0.004c-33.792-1.229-77.005 0-77.005 0zM639.59 147.2c-30.683-14.009-66.377-23.011-103.937-24.956l-0.716-0.030c-40.96-3.072-102.4-1.638-102.4-1.638v197.632s58.778 3.072 104.653 0c37.361-1.764 72.305-10.181 104.313-24.088l-1.913 0.74c28.043-13.408 47.070-41.551 47.070-74.138s-19.027-60.73-46.577-73.925l-0.493-0.213z" />
|
45
|
+
<glyph unicode="" glyph-name="btc-alt" data-tags="btc-alt" d="M469.197 346.266l-29.696-118.784c36.454-9.011 149.299-45.261 165.888 21.709s-99.738 87.859-136.192 97.075zM509.542 508.262l-26.829-107.725c30.515-7.578 124.314-38.502 139.469 22.323s-82.125 77.824-112.64 85.402zM630.784 828.774c-35.709 9.281-76.704 14.609-118.944 14.609-271.459 0-491.52-220.061-491.52-491.52s220.061-491.52 491.52-491.52c229.253 0 421.848 156.951 476.195 369.263l0.739 3.405c9.266 35.682 14.586 76.646 14.586 118.852 0 229.22-156.906 421.792-369.171 476.171l-3.406 0.74zM728.678 422.042v0c-2.384-39.336-30.871-71.381-68.255-79.16l-0.558-0.097c48.333-25.19 72.909-63.898 49.562-130.867-29.082-83.149-98.304-90.112-190.259-72.704l-22.323-89.498-53.862 13.517 22.118 88.269-43.008 11.059-22.118-88.678-53.862 13.517 22.528 89.702-38.502 9.83-70.246 17.408 26.829 61.44s39.731-10.65 39.117-9.83c1.477-0.381 3.173-0.6 4.92-0.6 9.262 0 17.088 6.148 19.619 14.586l0.037 0.145 35.226 141.312 5.734-1.434-5.53 1.843 25.19 100.966c0.091 0.857 0.143 1.851 0.143 2.857 0 14.659-11 26.748-25.196 28.463l-0.137 0.014s-39.117 9.83-39.117 9.83l14.336 57.549 74.342-18.637 34.406-8.192 21.709 87.654 53.862-13.517-21.709-86.835 43.213-10.24 21.504 86.221 53.862-13.517-21.709-88.474c68.198-23.347 117.965-58.573 108.134-123.904z" />
|
46
|
+
<glyph unicode="" glyph-name="btcd" data-tags="btcd" d="M110.592 703.027s122.88 138.854 368.64 138.854 495.206-232.858 495.206-503.398-215.040-476.365-448.102-476.365-476.774 168.141-476.774 437.658 237.158 381.338 373.35 378.061c140.902-3.277 280.371-117.555 296.755-245.76 1.073-9.166 1.685-19.786 1.685-30.549 0-75.876-30.429-144.644-79.75-194.768l0.036 0.037c-37.040-29.964-84.72-48.102-136.637-48.102-15.209 0-30.054 1.557-44.384 4.519l1.412-0.244c-53.039 12.845-94.616 52.114-110.504 102.753l-0.292 1.081c-6.349 29.286-10.445 97.28 46.49 129.843 11.156 7.843 25.023 12.535 39.985 12.535 28.076 0 52.293-16.519 63.463-40.368l0.181-0.429c1.634-4.375 2.58-9.431 2.58-14.707 0-18.544-11.681-34.36-28.086-40.491l-0.298-0.098c-4.299-1.074-9.235-1.691-14.315-1.691-15.2 0-29.112 5.52-39.838 14.665l0.086-0.072c-0.021-0.574-0.033-1.249-0.033-1.926 0-27.343 19.628-50.101 45.562-54.955l0.346-0.054c4.891-0.978 10.515-1.538 16.268-1.538 31.597 0 59.252 16.876 74.444 42.106l0.219 0.391c10.909 18.426 17.355 40.61 17.355 64.301 0 36.195-15.047 68.875-39.227 92.127l-0.042 0.040c-61.44 64.922-168.96 60.416-229.786 15.36-62.603-43.408-103.082-114.895-103.082-195.837 0-19.457 2.339-38.367 6.751-56.465l-0.335 1.626c31.852-135.793 151.935-235.356 295.272-235.356 1.746 0 3.488 0.015 5.226 0.044l-0.262-0.003c193.415 3.228 350.52 154.349 363.255 344.99l0.060 1.122c15.36 216.474-132.915 369.664-238.592 414.31s-198.451 62.874-313.344 40.96c-80.648-15.998-151.724-48.956-212.181-95.115l1.237 0.907z" />
|
47
|
+
<glyph unicode="" glyph-name="bts" data-tags="bts" d="M420.25 227.482l-211.354 211.354v-253.952h194.765c2.475 16.114 8.326 30.508 16.819 42.956l-0.23-0.358zM403.661 143.309h-194.765c4.832-69.075 31.917-131.033 74.049-179.578l-0.321 0.378 137.421 139.059c-8.355 11.245-14.169 24.86-16.327 39.661l-0.057 0.479zM710.656 392.96c-47.404 42.691-109.214 70.216-177.33 74.505l-0.846 0.043v-194.765c15.521-2.785 29.314-8.594 41.32-16.822l-0.36 0.233zM605.389 105.216l137.421-137.421c41.091 47.472 67.664 108.52 72.244 175.609l0.051 0.929h-195.789c-2.504-14.69-7.368-27.838-14.23-39.685l0.303 0.568zM619.315 184.883h194.765c-4.832 69.075-31.917 131.033-74.049 179.578l0.321-0.378-137.421-138.035c8.233-11.624 14.024-25.553 16.317-40.631l0.067-0.534zM312.32-64.563c47.743-42.596 109.958-69.884 178.438-73.694l0.762-0.034v194.765c-15.522 2.778-29.316 8.588-41.318 16.821l0.358-0.232zM532.48 56.474v-194.765c69.256 4.737 131.305 32.251 179.511 75.023l-0.311-0.271-138.24 136.602c-11.717-7.711-25.46-13.48-40.213-16.463l-0.747-0.126zM208.896 501.504c52.224-52.224 215.654-217.293 243.302-244.326 10.95 6.882 23.676 12.252 37.253 15.401l0.84 0.164v318.054l-280.781 251.494s-0.614-331.162-0.614-340.787z" />
|
48
|
+
<glyph unicode="" glyph-name="clam" data-tags="clam" d="M600.678 756.48c0-43.827-1.229-199.27-18.432-355.738-15.974-147.661-40.96-309.453-47.309-345.907 7.834-0.783 14.812-1.938 21.635-3.499l-1.155 0.222c39.365 76.749 78.302 169.303 110.667 264.888l4.431 15.074c30.312 104.261 50.96 225.29 57.582 350.040l0.172 4.059c0 4.301 0 8.397 0 11.878-16.572 27.825-41.419 49.234-71.113 61.096l-0.977 0.344c-8.27 2.959-17.81 4.67-27.75 4.67s-19.481-1.71-28.343-4.853l0.593 0.183zM742.81 685.619c-6.763-130.327-27.563-252.843-61.001-370.030l2.838 11.63c-36.521-110.525-75.192-202.96-119.88-291.849l5.602 12.297c8.114-2.623 14.89-5.398 21.414-8.607l-0.934 0.415c52.201 67.041 102.354 142.416 146.806 221.427l4.746 9.178c43.631 83.393 85.773 182.804 120.198 285.749l4.32 14.898 3.072 12.288c-9.398 32.639-28.402 60.003-53.716 79.611l-0.351 0.261c-20.437 14.274-45.744 22.897-73.052 23.142h-0.061zM755.302 263.526c-49.172-88.558-99.266-164.205-154.504-235.672l3.157 4.248c9.037-5.501 16.873-11.382 24.091-17.933l-0.129 0.116c60.502 59.14 117.53 120.903 171.288 185.484l3.201 3.956c54.482 69.901 104.954 148.585 147.972 231.749l3.989 8.482 5.939 14.131c-1.554 25.103-9.433 48.084-22.047 67.737l0.338-0.563c-14.822 18.527-34.386 32.678-56.865 40.684l-0.889 0.276c-39.111-118.674-81.595-218.756-131.137-314.598l5.594 11.903zM266.24 674.15c20.607-128.17 47.398-239.728 81.65-347.97l-4.645 17.013c38.318-118.828 77.66-216.904 122.704-311.748l-6.583 15.403c5.891 2.024 13.184 3.938 20.652 5.362l1.057 0.168c-5.325 31.744-33.178 199.066-50.381 356.557-18.842 172.032-26.419 317.645-27.443 348.16 0 0 0 1.843 0 2.867-8.335 2.243-17.904 3.531-27.773 3.531-18.418 0-35.787-4.486-51.077-12.424l0.617 0.291c-26.528-13.739-47.093-35.893-58.47-62.87l-0.308-0.822zM417.792 756.685c0-29.491 8.602-174.694 27.443-346.112 17.203-157.696 45.056-325.427 50.381-355.942 6.1 0.652 13.178 1.024 20.342 1.024 0.049 0 0.097 0 0.146 0h3.884c5.325 32.973 31.13 197.427 47.514 346.726 16.998 155.853 18.227 310.477 18.227 354.099v6.963c-22.283 20.931-51.805 34.386-84.432 36.234l-0.355 0.016c-32.678-1.739-61.905-15.233-83.806-36.291l0.043 0.041c0.41-1.843 0.41-4.506 0.614-6.758zM516.506 40.909c-2.132 0.113-4.628 0.178-7.138 0.178-50.154 0-94.293-25.755-119.913-64.762l-0.335-0.543c67.584-49.562 110.387-71.475 127.59-71.475s66.15 26.419 126.157 69.222c-25.462 40.764-70.086 67.482-120.95 67.482-1.903 0-3.798-0.037-5.683-0.112l0.271 0.008zM967.475 437.402c-47.552-92.603-98.497-172.086-156.023-246.207l2.628 3.519c-57.363-69.064-114.792-131.294-175.262-190.429l-0.456-0.444c6.094-6.473 11.691-13.567 16.639-21.124l0.359-0.585c50.715 37.262 95.32 74.527 137.511 114.323l-0.705-0.659c115.302 108.954 207.053 216.474 210.125 270.746 0.169 1.911 0.265 4.134 0.265 6.38 0 26.909-13.839 50.586-34.789 64.301l-0.293 0.18zM61.44 447.846c40.427-89.92 90.371-167.347 150.079-236.063l-0.984 1.158c59.535-72.653 122.273-137.663 189.874-197.287l1.819-1.574c4.683 4.303 9.759 8.404 15.087 12.172l0.478 0.321c-59.27 71.706-112.753 152.27-157.385 238.171l-3.587 7.589c-44.69 83.138-84.053 179.941-112.949 281.158l-2.558 10.477-1.843 6.554c-16.794-4.506-59.392-18.637-76.186-49.562-7.208-13.35-11.451-29.218-11.469-46.074v-0.006c2.662-7.373 5.939-16.384 9.626-27.034zM392.397 3.84c-69.756 61.546-132.825 126.888-190.37 196.941l-2.347 2.944c-57.761 66.786-107.403 142.974-145.946 225.391l-2.534 6.033c-18.279-16.826-29.691-40.869-29.691-67.578 0-3.031 0.147-6.027 0.434-8.983l-0.029 0.375c3.277-56.32 83.968-145.408 231.629-273.408 47.514-40.96 88.883-74.547 124.109-100.966 4.664 7.23 9.52 13.518 14.849 19.366l-0.103-0.115zM153.395 574.413l1.843-6.554c31.457-110.684 70.736-206.58 119.158-296.839l-3.855 7.866c47.659-92.96 100.681-173.067 161.37-246.612l-1.831 2.285c3.862 2.23 8.637 4.628 13.546 6.779l0.995 0.389c-38.181 79.558-77.264 177.937-110.209 279.087l-5.093 18.077c-29.56 91.975-56.224 204.409-74.757 319.564l-1.838 13.851v1.638c-1.502 0.077-3.262 0.12-5.032 0.12-23.55 0-45.294-7.733-62.831-20.799l0.279 0.199c-18.433-15.232-31.37-36.537-35.747-60.817l-0.093-0.623c0.819-5.53 2.253-10.854 4.096-17.613z" />
|
49
|
+
<glyph unicode="" glyph-name="cloak" data-tags="cloak" d="M512 842.291c-270.78 0-490.291-219.511-490.291-490.291s219.511-490.291 490.291-490.291c270.78 0 490.291 219.511 490.291 490.291v0c-0.697 270.5-219.792 489.594-490.225 490.291h-0.066zM512-61.491c-228.365 0-413.491 185.126-413.491 413.491s185.126 413.491 413.491 413.491c228.365 0 413.491-185.126 413.491-413.491v0c-0.233-228.271-185.22-413.258-413.469-413.491h-0.022zM512 572.16c-0.080 0-0.175 0-0.271 0-121.478 0-219.955-98.477-219.955-219.955 0-65.749 28.848-124.76 74.577-165.066l0.241-0.208c20.797 11.039 44.914 20.125 70.256 26.020l2.038 0.399c-50.193 26.841-83.763 78.899-83.763 138.797 0 86.641 70.236 156.877 156.877 156.877s156.877-70.236 156.877-156.877c0-59.899-33.57-111.957-82.923-138.386l-0.841-0.411c27.381-6.296 51.498-15.382 73.945-27.212l-1.65 0.793c45.97 40.514 74.818 99.525 74.818 165.274 0 121.478-98.477 219.955-219.955 219.955-0.095 0-0.19 0-0.285 0h0.015zM512 712.243c-0.046 0-0.101 0-0.156 0-198.844 0-360.038-161.195-360.038-360.038 0-102.923 43.187-195.76 112.429-261.377l0.163-0.153c12.441 21.805 27.494 40.446 45.068 56.353l0.193 0.172c-52.865 52.231-85.606 124.727-85.606 204.871 0 159.030 128.919 287.949 287.949 287.949s287.949-128.919 287.949-287.949c0-80.143-32.741-152.64-85.578-204.842l-0.029-0.028c17.778-16.134 32.834-34.843 44.679-55.621l0.582-1.109c69.533 65.785 112.808 158.706 112.808 261.735 0 198.844-161.195 360.038-360.038 360.038-0.131 0-0.262 0-0.394 0h0.020z" />
|
50
|
+
<glyph unicode="" glyph-name="dash" data-tags="dash" d="M420.864 419.584h-356.557l-41.37-134.144h356.762l41.165 134.144zM988.365 592.026c-17.894 31.402-51.149 52.232-89.269 52.232-0.441 0-0.88-0.003-1.32-0.008l0.067 0.001h-666.624l-45.056-146.022h597.197l-89.907-292.454h-601.907l-45.056-146.022h640c62.464 0 79.258 10.854 123.904 37.069 46.215 29.266 80.942 73.082 98.037 124.914l0.472 1.653c18.842 54.477 65.126 208.282 79.258 259.686s19.661 70.656 0.205 108.954z" />
|
51
|
+
<glyph unicode="" glyph-name="dcr" data-tags="dcr" d="M998.4 423.27c0 168.191-136.346 304.538-304.538 304.538h-240.64l163.84-143.36h76.595c89.581 0 162.202-72.62 162.202-162.202s-72.62-162.202-162.202-162.202h-240.435l327.68-284.672h217.088l-189.85 163.84c112.518 46.433 190.264 155.28 190.264 282.285 0 0.623-0.002 1.246-0.006 1.869v-0.096zM330.138 118.733c-89.581 0-162.202 72.62-162.202 162.202s72.62 162.202 162.202 162.202v0h240.64l-327.68 284.672h-217.498l189.85-163.84c-112.425-46.475-190.091-155.275-190.091-282.214 0-168.191 136.346-304.538 304.538-304.538 0.085 0 0.169 0 0.254 0h240.627l-163.84 143.36h-76.8z" />
|
52
|
+
<glyph unicode="" glyph-name="dgb" data-tags="dgb" d="M669.491 631.757l20.48 185.958-71.885 7.782-19.456-180.019-57.754 10.65 19.456 179.61-72.294 7.782-18.842-174.285c-122.88 22.323-231.834 40.96-231.834 40.96l-97.69-109.773s394.24-61.44 472.678-78.643 134.349-117.76 75.981-216.678-162.406-191.283-352.051-178.381l181.248 358.605-171.213 30.515-230.605-435.2c70.957-18.706 152.449-29.528 236.442-29.696h0.102l-17.818-163.84 71.885-7.782 18.637 172.851c19.046 0 38.912 1.843 59.392 3.482l-20.48-186.573 71.885-7.782 21.914 203.162c227.328 41.779 343.45 246.579 350.208 344.474s-77.414 188.826-238.387 222.822z" />
|
53
|
+
<glyph unicode="" glyph-name="dgd" data-tags="dgd" d="M303.923 481.638h135.168v-44.032h-135.168v44.032zM641.229 280.32h-315.187v-160.358h314.778c0.003 0 0.006 0 0.009 0 44.811 0 81.219 35.98 81.91 80.626l0.001 0.065c-1.252 44.132-37.221 79.456-81.49 79.667h-0.020zM512 842.086c-270.667 0-490.086-219.419-490.086-490.086s219.419-490.086 490.086-490.086c270.667 0 490.086 219.419 490.086 490.086v0c0 270.667-219.419 490.086-490.086 490.086v0zM527.155 623.155h235.93v-47.104h-185.549v-138.445h135.168v44.032h-94.208v47.104h144.589v-138.445h-235.93zM258.867 620.698h147.661v-56.73h-147.456zM253.542 528.947h185.549v94.208h53.453v-232.858h-239.002zM648.397 60.16h-389.12v279.962h389.12c75.027-2.96 134.728-64.498 134.728-139.981s-59.701-137.021-134.46-139.972l-0.268-0.008z" />
|
54
|
+
<glyph unicode="" glyph-name="dgx" data-tags="dgx" d="M303.718 481.638h135.373v-44.032h-135.373v44.032zM512 842.291c-270.78 0-490.291-219.511-490.291-490.291s219.511-490.291 490.291-490.291c270.78 0 490.291 219.511 490.291 490.291v0c0 270.78-219.511 490.291-490.291 490.291v0zM527.155 623.36h236.134v-47.104h-185.754v-138.445h135.373v43.827h-94.413v47.104h144.794v-138.445h-236.134zM258.867 620.902h147.866v-56.73h-147.866zM253.542 528.947h185.754v94.413h53.453v-232.858h-239.206zM769.843 60.57h-107.11l-150.323 102.4-150.323-102.4h-107.11l204.8 140.083-204.8 140.083h107.11l150.323-102.4 150.323 102.4h107.11l-204.8-140.083z" />
|
55
|
+
<glyph unicode="" glyph-name="dmd" data-tags="dmd" d="M210.33 472.832l-181.043-35.021c-4.992-26.385-7.848-56.738-7.848-87.757s2.856-61.371 8.318-90.807l-0.47 3.051 180.429-31.539zM512 392.55l113.254 224.666h-226.509l113.254-224.666zM246.784 465.254v-226.509l224.666 113.254-224.666 113.254zM764.723 499.866l-104.858 104.858-106.701-211.558 211.558 106.701zM336.691 628.685l-168.96 67.584 67.174-169.165 101.786 101.581zM856.269 696.269l-169.165-67.174 101.581-101.786 67.584 168.96zM777.216 238.746v226.509l-224.666-113.254 224.666-113.254zM856.269 7.731l-67.174 169.165-101.786-101.581 168.96-67.584zM668.467 660.838l161.587 64.307c-53.839 46.21-118.748 81.174-190.116 100.387l-3.42 0.784zM1002.291 352c0 0.050 0 0.11 0 0.169 0 31.655-2.981 62.613-8.678 92.609l0.486-3.076-180.429 31.539v-242.074l181.248 35.021c4.691 25.502 7.374 54.848 7.374 84.82 0 0.349 0 0.697-0.001 1.046v-0.054zM820.634 509.082l163.84-28.672c-20.224 73.343-54.769 136.95-100.698 190.508l0.551-0.658zM336.896 74.906l-101.581 101.786-67.584-168.96 169.165 67.174zM820.838 195.533l64.307-161.587c46.21 53.839 81.174 118.748 100.387 190.116l0.784 3.42zM830.054-21.146l-161.178 64.512-28.672-163.84c73.295 19.973 136.909 54.25 190.541 99.902l-0.691-0.574zM764.723 204.134l-211.558 106.701 106.701-211.558 104.858 104.858zM390.758 653.67h242.074l-35.021 181.043c-26.386 4.996-56.737 7.854-87.757 7.854s-61.371-2.858-90.807-8.325l3.050 0.471zM633.242 50.33h-242.074l35.021-181.248c26.385-4.992 56.738-7.848 87.757-7.848s61.371 2.856 90.807 8.318l-3.051-0.47zM512 311.45l-113.254-224.666h226.509l-113.254 224.666zM193.946 724.941l161.178-64.307 28.672 163.84c-73.309-20.029-136.922-54.374-190.531-100.1l0.682 0.567zM259.277 499.866l211.558-106.701-106.701 211.558-104.858-104.858zM203.162 508.467l-64.307 161.587c-46.204-53.842-81.167-118.75-100.387-190.114l-0.785-3.422zM259.277 204.134l104.858-104.858 106.701 211.558-211.558-106.701zM355.533 43.162l-161.587-64.307c53.839-46.21 118.748-81.174 190.116-100.387l3.42-0.784zM203.366 194.918l-163.84 28.672c20.224-73.343 54.769-136.95 100.698-190.508l-0.551 0.658z" />
|
56
|
+
<glyph unicode="" glyph-name="doge" data-tags="doge" d="M456.499 843.52h-282.419v-437.658h-116.122v-107.11h116.122v-438.272h329.114s462.848-38.707 462.848 482.918c0 514.048-442.778 500.122-509.542 500.122zM495.616 42.752h-136.192v256h204.8v107.11h-204.8v256h129.843c48.538 0 292.864-20.48 293.274-321.331s-251.904-297.779-286.925-297.779z" />
|
57
|
+
<glyph unicode="" glyph-name="emc" data-tags="emc" d="M749.978 774.093h-483.738l-245.76-422.093 245.76-422.093h487.629l249.651 423.526zM700.826 22.272h-380.928l-191.693 329.728 191.693 329.728h377.651l197.632-329.728zM330.752 457.472h138.65v-66.355h-138.65v-78.234h216.883v144.589h64.717v-203.366h-281.6v-78.234h359.834v359.834h-359.834v-78.234z" />
|
58
|
+
<glyph unicode="" glyph-name="erc" data-tags="erc" d="M512-57.6c-167.166 0.19-310.859 100.491-374.366 244.166l-1.033 2.618 52.838 18.227c56.598-124.599 179.952-209.684 323.179-209.684 162.285 0 299.057 109.234 340.801 258.188l0.596 2.491-102.4-33.382c-46.273-86.054-135.682-143.567-238.524-143.567-106.792 0-199.099 62.017-242.872 152l-0.703 1.602 102.4 35.84-20.48-106.291 651.264 212.378c-22.143 252.947-232.949 449.89-489.754 449.89-265.606 0-482.006-210.673-491.215-474.034l-0.023-0.842c0.102-26.748 2.109-52.938 5.891-78.549l-0.361 2.978 512 163.84-27.238-95.027 338.534 111.206c-46.203 145.381-179.992 248.871-337.952 248.871-180.088 0-328.758-134.515-351.017-308.551l-0.184-1.76-57.549-18.227c12.68 215.966 190.916 386.304 408.937 386.304 201.34 0 368.751-145.27 403.134-336.714l0.37-2.486-468.173-153.805 22.938 102.4-434.176-140.902c57.365-212.462 248.367-366.23 475.283-366.23 253.659 0 462.439 192.147 488.729 438.829l0.186 2.153-85.606-27.648c-35.968-192.512-202.687-336.282-402.985-336.282-0.166 0-0.332 0-0.498 0h0.026zM512 622.131c0.024 0 0.052 0 0.079 0 95.526 0 179.489-49.509 227.628-124.268l0.645-1.070-122.88-40.96 24.166 92.979-389.12-124.109c32.612 114.66 136.405 197.221 259.482 197.222v0z" />
|
59
|
+
<glyph unicode="" glyph-name="etc" data-tags="etc" d="M225.28 402.995l289.178 122.88 280.166-124.928-280.371 441.344zM225.28 267.622l288.358-167.322 295.322 167.322-291.84-405.914zM515.891 465.254l-300.851-126.566 300.851-167.322 292.659 163.84z" />
|
60
|
+
<glyph unicode="" glyph-name="eth" data-tags="eth" d="M502.374 164.608v302.694l-295.731-129.434 295.731-173.261zM502.374 488.192v355.533l-286.31-480.87 286.31 125.338zM521.421 843.93v-355.738l290.202-127.181-290.202 482.918zM521.421 467.302v-302.694l295.936 173.056-295.936 129.638zM502.374-139.93v243.712l-293.683 171.827 293.683-415.539zM521.421-139.93l293.683 415.539-293.683-171.827v-243.712z" />
|
61
|
+
<glyph unicode="" glyph-name="fct" data-tags="fct" d="M177.152 359.987c275.046 0 411.238 227.123 411.238 227.123l17.203-3.891-9.216 168.755-98.918-135.168 13.107-5.734s-116.326-172.646-328.909-172.646c-98.509 0-137.421 56.115-152.576 105.882-4.892-24.242-8.064-52.461-8.794-81.286l-0.013-0.634c17.203-54.272 59.802-102.4 156.877-102.4zM133.939 246.323c130.867-31.13 311.501 21.914 432.538 127.59s160.768 201.933 160.768 201.933l17.203-3.891-9.216 169.165-98.918-135.168 13.107-5.734c-44.696-82.495-107.676-149.933-183.812-198.602l-2.146-1.283c-135.782-89.293-261.53-92.774-320.102-81.92-49.364 12.101-90.843 40.259-119.623 78.512l-0.39 0.541c3.71-32.423 9.899-61.716 18.538-89.939l-0.925 3.514c22.133-31.401 54.331-54.415 91.834-64.456l1.145-0.261zM596.992 242.432c73.449 50.978 135.187 112.913 184.389 184.169l1.57 2.404 13.312-4.71-8.602 171.418-98.918-138.035 15.155-6.758s-46.49-81.92-180.634-161.997-222.003-104.448-328.909-92.979c-56.345 6.959-105.312 34.119-140.279 73.89l-0.214 0.248c11.458-29.158 23.838-53.897 38.106-77.361l-1.242 2.199c31.157-35.917 74.323-60.693 123.193-68.060l1.121-0.139c147.456-17.818 273.613 47.309 381.952 115.712zM671.949 156.416c72.487 53.486 134.597 115.466 186.539 185.444l1.672 2.358 19.456-8.397-8.397 171.418-99.738-134.758 17.408-6.554c-50.953-63.517-108.844-118.416-173.32-164.724l-2.603-1.778c-96.256-63.693-204.8-111.206-316.826-111.206-59.385 0.41-114.912 16.553-162.733 44.461l1.556-0.839c19.376-23.236 40.023-44.013 62.337-62.877l0.741-0.611c33.656-21.108 74.206-34.292 117.7-36.030l0.469-0.015c141.312 0.614 244.122 45.875 355.738 124.109zM994.918 544.102l-98.304-135.578 22.528-9.216c-40.444-88.857-96.754-163.922-165.962-224.64l-0.745-0.64c-89.088-77.005-235.11-163.84-370.074-163.84-48.973 0.414-95.889 8.627-139.757 23.454l3.156-0.926c25.623-16.97 55.016-32.441 85.95-44.892l3.343-1.188c25.808-7.557 55.506-12.093 86.202-12.491l0.223-0.002c84.992 0 195.379 33.792 340.173 138.24 92.395 71.044 167.046 160.429 219.367 263.098l2.022 4.371 20.48-4.71zM834.355 142.49s-44.442-63.898-199.475-134.963c-60.949-28.394-132.316-44.96-207.553-44.96-6.234 0-12.441 0.114-18.62 0.339l0.893-0.026c32.258-7.421 69.301-11.674 107.338-11.674 0.208 0 0.416 0 0.624 0h11.232c45.314 4.41 86.962 14.774 125.95 30.37l-3.070-1.084c82.586 36.189 152.96 85.503 211.816 146.070l0.152 0.157 7.578-4.506 3.482 68.198-48.333-43.213z" />
|
62
|
+
<glyph unicode="" glyph-name="flo" data-tags="flo" d="M512 842.291c-270.78 0-490.291-219.511-490.291-490.291s219.511-490.291 490.291-490.291c270.78 0 490.291 219.511 490.291 490.291v0c0 270.78-219.511 490.291-490.291 490.291v0zM512-70.502c-233.342 0-422.502 189.161-422.502 422.502s189.161 422.502 422.502 422.502c233.342 0 422.502-189.161 422.502-422.502v0c-0.233-233.248-189.255-422.27-422.481-422.502h-0.022zM406.323 246.323c30.89-15.222 67.243-24.126 105.677-24.126s74.787 8.904 107.111 24.761l-1.434-0.636c-5.939 29.286-3.482 10.24-5.939 24.986-29.19-14.176-63.496-22.463-99.738-22.463s-70.547 8.287-101.126 23.068l1.389-0.605c-1.638-11.264-0.614 0.614-5.939-24.986zM466.33 277.043c13.586-5.331 29.319-8.421 45.773-8.421s32.187 3.090 46.649 8.721l-0.876-0.3c4.915 88.024 28.516 169.509 66.869 241.984l-1.538-3.187c5.641 12.755 8.926 27.631 8.926 43.273 0 7.295-0.714 14.423-2.077 21.319l0.114-0.694c-6.144 38.912-61.44 87.654-104.243 120.832-3.227 2.486-7.229 4.12-11.59 4.5l-0.084 0.006h-4.506c-4.441-0.41-8.438-2.039-11.729-4.546l0.056 0.041c-42.803-33.178-98.099-81.92-104.243-120.832-1.243-6.194-1.954-13.314-1.954-20.601 0-15.65 3.281-30.533 9.193-44l-0.275 0.704c36.728-69.302 60.376-150.75 65.46-237.187l0.076-1.61zM399.77 229.12c-11.464-17.943-23.819-33.552-37.566-47.81l0.088 0.091c-2.548-2.081-5.837-3.342-9.421-3.342s-6.873 1.261-9.448 3.363l0.027-0.021c-8.086 6.403-14.892 13.991-20.264 22.568l-0.216 0.37c-1.434 2.253-4.096 2.253-5.12 0-5.783-12.816-10.534-27.777-13.517-43.365l-0.204-1.282c-1.215-4.174-1.914-8.968-1.914-13.926s0.699-9.753 2.004-14.291l-0.090 0.364c4.249-9.206 12.662-15.859 22.756-17.587l0.182-0.026c4.455-1.193 9.57-1.879 14.845-1.879 10.559 0 20.477 2.746 29.078 7.563l-0.301-0.155c12.163 8.6 22.172 19.394 29.638 31.884l0.263 0.475c11.784 18.091 22.459 38.874 30.948 60.747l0.796 2.332zM312.525 372.48c4.615 2.126 10.013 3.367 15.701 3.367 9.698 0 18.554-3.605 25.301-9.547l-0.042 0.036c23.477-17.071 42.129-39.399 54.444-65.32l0.443-1.035c7.373-12.902 43.213-20.48 43.213-20.48s-7.578 87.45-44.032 138.65-56.525 62.259-87.45 77.21c-12.555 3.605-26.976 5.679-41.882 5.679s-29.326-2.073-42.99-5.947l1.109 0.269c-42.189-12.698-54.477-67.379-54.477-67.379-3.177-16.022-4.995-34.443-4.995-53.288 0-7.987 0.327-15.898 0.967-23.72l-0.068 1.027c1.522-41.173 10.336-79.879 25.18-115.44l-0.809 2.186c1.045-1.791 2.958-2.976 5.147-2.976 1.041 0 2.020 0.268 2.871 0.739l-0.031-0.015c34.311 19.217 62.075 46.457 81.372 79.274l0.548 1.008c7.227 12.214 11.604 26.867 11.877 42.52l0.001 0.078c1.068 5.479 4.198 10.083 8.532 13.062l0.069 0.045zM557.875 205.978c-13.762-2.574-29.596-4.046-45.773-4.046s-32.011 1.472-47.373 4.29l1.601-0.244c-12.949-14.070-24.194-30.021-33.213-47.318l-0.579-1.22c-22.118-38.093-13.107-49.152 0-74.342 20.003-31.385 43.319-58.348 70.001-81.537l0.45-0.383c2.081-1.504 4.569-2.584 7.266-3.056l0.107-0.016h3.686c2.73 0.513 5.146 1.589 7.217 3.107l-0.049-0.035c27.068 23.565 50.319 50.528 69.361 80.433l0.885 1.487c13.107 25.19 22.118 36.25 0 74.342-9.573 18.508-20.749 34.456-33.746 48.715l0.159-0.177zM706.56 204.134c0 2.253-3.686 2.253-5.12 0-5.566-8.961-12.375-16.552-20.295-22.797l-0.185-0.141c-2.548-2.081-5.837-3.342-9.421-3.342s-6.873 1.261-9.448 3.363l0.027-0.021c-13.777 14.212-26.203 29.892-36.972 46.733l-0.712 1.19-32.768-14.541c9.247-24.194 19.924-44.979 32.541-64.387l-0.797 1.308c7.686-12.994 17.704-23.796 29.575-32.141l0.326-0.217c8.262-4.657 18.139-7.4 28.656-7.4 5.245 0 10.331 0.682 15.174 1.963l-0.413-0.093c10.358 1.689 18.856 8.358 23.063 17.423l0.079 0.19c1.21 4.174 1.907 8.969 1.907 13.926s-0.696 9.752-1.996 14.292l0.090-0.366c-3.027 16.995-7.645 32.112-13.828 46.395l0.516-1.339zM842.342 427.162s-12.288 54.682-54.477 67.379c-12.555 3.61-26.976 5.686-41.882 5.686s-29.327-2.076-42.989-5.955l1.108 0.269c-30.925-14.131-51.2-26.010-87.654-77.414s-44.032-138.65-44.032-138.65 37.069 7.782 43.418 20.48c12.14 27.254 30.848 49.71 54.172 66.017l0.51 0.338c6.705 5.906 15.561 9.511 25.259 9.511 5.688 0 11.087-1.24 15.94-3.465l-0.239 0.098c4.525-2.912 7.79-7.447 8.985-12.766l0.026-0.137c0.265-15.732 4.643-30.387 12.101-43.005l-0.222 0.407c19.82-33.844 47.591-61.090 80.839-79.725l1.081-0.557c0.797-0.446 1.749-0.709 2.763-0.709 2.15 0 4.023 1.183 5.005 2.933l0.015 0.029c14.066 33.641 22.82 72.653 24.153 113.543l0.014 0.531c0.554 6.756 0.871 14.623 0.871 22.565 0 18.594-1.733 36.783-5.046 54.414l0.284-1.818z" />
|
63
|
+
<glyph unicode="" glyph-name="frk" data-tags="frk" d="M421.683-138.291v152.781h118.579v127.181h-118.579v173.466h364.544v127.386h-364.544v212.173h490.086v187.597h-679.322v-700.621h-120.218v-127.181h120.218v-152.781h189.235z" />
|
64
|
+
<glyph unicode="" glyph-name="ftc" data-tags="ftc" d="M926.515 842.291c-9.216 2.662-143.36-79.053-204.8-126.157s-177.971-138.854-182.477-148.685c-5.234-20.705-8.824-44.839-10.003-69.606l-0.032-0.846c-1.337-23.973-9.907-45.715-23.542-63.34l0.195 0.262c-6.465 5.301-11.412 12.227-14.236 20.159l-0.1 0.321c-4.71 14.131-7.987 53.862-10.854 54.682s-81.92-71.885-81.92-71.885-5.53-36.454-17.408-108.749-30.31-102.4-34.202-102.4-12.493 27.853-15.36 56.73 0 96.87-3.891 99.123c-16.324-12.64-30.79-26.067-43.978-40.669l-0.259-0.291s5.53-51.405 9.626-118.784-2.253-113.459-9.011-117.965-17.203 12.083-32.563 48.128-16.179 64.717-23.347 67.174-21.914-32.768-26.214-67.789c-1.392-15.29-2.186-33.072-2.186-51.038 0-13.099 0.422-26.098 1.253-38.987l-0.091 1.757s-20.48 37.888-33.382 57.754-41.37 59.802-44.851 56.73 12.698-35.021 22.733-63.693 23.347-70.861 23.347-70.861-34.816 33.997-50.586 45.261-61.44 37.274-65.741 29.286 27.853-32.154 40.96-45.875 43.213-45.261 43.213-45.261c-9.010-9.933-15.547-22.269-18.541-35.933l-0.096-0.522c-0.499-3.289-0.784-7.083-0.784-10.944 0-10.843 2.247-21.16 6.3-30.513l-0.192 0.497s24.371 50.381 38.298 51.2 19.251-27.648 14.95-46.49-65.741-83.354-62.464-91.955 81.92 73.728 88.883 89.498c15.565-18.842 98.509-51.2 102.4-49.562s-31.949 27.034-46.49 40.96-31.13 53.862-25.19 59.187 13.312-27.034 55.296-47.309c30.412-13.863 65.961-21.944 103.396-21.944 1.378 0 2.753 0.011 4.126 0.033l-0.207-0.003c1.024 2.867-49.152 17.818-78.848 36.659-19.806 14.793-35.199 34.466-44.526 57.264l-0.326 0.899c43.872-7.389 95.912-12.604 148.802-14.481l2.135-0.060c8.384-0.702 18.146-1.102 28.001-1.102 54.030 0 105.249 12.031 151.126 33.561l-2.18-0.919s-94.618 1.024-155.853 3.891-149.504 10.65-149.504 10.65c21.145 24.922 50.824 42.037 84.475 46.815l0.722 0.084c61.44 12.493 161.382 5.734 170.189 7.168s151.552 202.752 151.552 202.752-88.064-3.686-81.92 11.469c13.517 33.382 89.702 25.805 101.171 27.034s46.899 53.453 88.678 102.4 155.648 175.514 161.587 257.229-36.045 125.338-45.261 128zM614.4 397.056c-70.042-81.92-230.81-242.893-230.81-242.893s107.93 146.227 188.416 240.23 241.254 270.746 241.254 270.746-127.795-185.139-198.861-268.083z" />
|
65
|
+
<glyph unicode="" glyph-name="game" data-tags="game" d="M512 838.4c-268.631 0-486.4-217.769-486.4-486.4s217.769-486.4 486.4-486.4v0h486.4v486.4c0 268.631-217.769 486.4-486.4 486.4v0zM874.906-10.496h-89.702v129.024c-66.654-77.528-164.848-126.325-274.438-126.325-199.522 0-361.267 161.745-361.267 361.267s161.745 361.267 361.267 361.267c178.558 0 326.86-129.541 356.054-299.769l0.304-2.142h-91.546c-28.169 122.498-136.27 212.469-265.385 212.469-150.207 0-271.974-121.767-271.974-271.974s121.767-271.974 271.974-271.974c100.101 0 187.572 54.079 234.79 134.615l0.694 1.281h-188.211v89.498h317.44z" />
|
66
|
+
<glyph unicode="" glyph-name="gld" data-tags="gld" d="M974.643 375.142h-310.067c-15.223-0.115-27.533-12.425-27.648-27.637v-97.905c0.115-15.223 12.425-27.533 27.637-27.648h173.067c-43.929-103.869-144.977-175.426-262.739-175.426-4.761 0-9.495 0.117-14.199 0.348l0.663-0.026c-104.751 4.455-195.377 61.034-247.055 144.311l-0.753 1.302h61.44c15.223 0.115 27.533 12.425 27.648 27.637v23.563c-0.115 15.223-12.425 27.533-27.637 27.648h-95.653c-5.93 20.356-9.827 43.911-10.835 68.212l-0.020 0.601c-0.114 3.117-0.179 6.778-0.179 10.455 0 21.894 2.303 43.249 6.679 63.838l-0.356-1.999h101.171c15.223 0.115 27.533 12.425 27.648 27.637v23.358c-0.115 15.223-12.425 27.533-27.637 27.648h-73.944c51.652 99.282 153.75 165.92 271.412 165.92 96.655 0 182.808-44.968 238.678-115.124l0.477-0.62c4.651-5.985 11.851-9.798 19.941-9.798 7.337 0 13.941 3.137 18.545 8.142l0.016 0.018 74.752 80.077c2.901 3.324 4.669 7.702 4.669 12.493s-1.769 9.168-4.689 12.515l0.019-0.023c-84.636 101.606-211.195 165.803-352.747 165.803-203.617 0-376.209-132.834-435.847-316.571l-0.91-3.242h-86.835c-15.223-0.115-27.533-12.425-27.648-27.637v-22.949c0.115-15.223 12.425-27.533 27.637-27.648h69.643c-2.009-14.344-3.408-31.415-3.877-48.716l-0.014-0.64c-0.035-2.129-0.056-4.642-0.056-7.159 0-29.912 2.853-59.158 8.301-87.48l-0.462 2.888h-73.523c-15.223-0.115-27.533-12.425-27.648-27.637v-23.358c0.115-15.223 12.425-27.533 27.637-27.648h94.014c66.62-176.329 233.95-299.476 430.062-299.622h0.018c339.763 0 428.851 291.43 428.851 357.581v96.87c-0.115 15.223-12.425 27.533-27.637 27.648h-0.011z" />
|
67
|
+
<glyph unicode="" glyph-name="gnt" data-tags="gnt" d="M671.539 579.942c0 0.079 0 0.173 0 0.267 0 46.531-16.131 89.295-43.106 123.004l0.303-0.391 108.544 107.725-32.768 31.744-107.725-107.725c-31.838 25.48-72.685 40.907-117.134 40.96h-0.012c-106.675-0.577-192.929-87.187-192.929-193.943 0-0.577 0.003-1.154 0.008-1.73l-0.001 0.088c-0.002-0.365-0.004-0.796-0.004-1.228 0-98.572 73.305-180.023 168.373-192.813l1-0.11v-134.144c-99.395-10.023-176.333-93.251-176.333-194.449 0-107.905 87.474-195.379 195.379-195.379s195.379 87.474 195.379 195.379c0 0.105 0 0.21 0 0.315v-0.016c0.002 0.365 0.004 0.796 0.004 1.228 0 98.572-73.305 180.023-168.373 192.813l-1 0.11v133.939c96.552 12.431 170.398 94.119 170.398 193.054 0 0.458-0.002 0.915-0.005 1.372v-0.070zM332.595 579.942c-0.065 1.636-0.102 3.557-0.102 5.487 0 81.211 65.835 147.046 147.046 147.046s147.046-65.835 147.046-147.046c0-1.93-0.037-3.85-0.111-5.762l0.008 0.275c0.065-1.636 0.102-3.557 0.102-5.487 0-81.211-65.835-147.046-147.046-147.046s-147.046 65.835-147.046 147.046c0 1.93 0.037 3.85 0.111 5.762l-0.008-0.275zM626.483 57.293c-2.394-79.34-67.284-142.746-146.983-142.746-81.211 0-147.046 65.835-147.046 147.046s65.835 147.046 147.046 147.046c0.050 0 0.1 0 0.149 0h-0.008c81.375-1.259 146.859-67.521 146.859-149.078 0-0.798-0.006-1.595-0.019-2.39l0.001 0.12z" />
|
68
|
+
<glyph unicode="" glyph-name="grc" data-tags="grc" d="M952.32 420.813h-419.84v-30.106h423.322c-0.819 10.035-1.843 20.070-3.482 30.106zM988.979 464.026v0h-456.499v-23.962h435.61l1.434-7.782c4.35-23.921 6.837-51.451 6.837-79.562 0-221.276-154.118-406.556-360.866-454.354l-3.142-0.612-9.421-2.048-38.707 210.534 8.397 2.048c66.349 17.3 120.858 59.124 154.396 114.977l0.637 1.144h-195.174v-29.696h63.693c-24.478-13.365-53.619-21.224-84.594-21.224-98.969 0-179.2 80.231-179.2 179.2s80.231 179.2 179.2 179.2c38.504 0 74.172-12.144 103.382-32.81l-0.56 0.376h364.954c-64.12 200.718-248.986 343.521-467.206 343.521-270.328 0-489.472-219.144-489.472-489.472s219.144-489.472 489.472-489.472c270.328 0 489.472 219.144 489.472 489.472 0 39.197-4.607 77.317-13.31 113.85l0.669-3.329zM451.789 814.438c17.579 2.336 37.914 3.675 58.56 3.686h0.013c0.462 0.002 1.008 0.003 1.555 0.003 193.445 0 359.257-118.306 429.032-286.512l1.131-3.078 5.325-12.902h-244.326l-2.867 3.277c-46.532 52.827-114.315 85.988-189.845 86.016h-0.005q-8.806 0-17.408 0h-8.192l-43.008 208.282zM550.707-111.667c-13.312-1.229-26.829-1.638-40.96-1.638-210.088 1.077-387.355 140.365-445.595 331.532l-0.869 3.316-1.843 9.011 234.496 71.27c-3.796 15.293-5.974 32.849-5.974 50.914 0 91.899 56.359 170.635 136.4 203.53l1.465 0.533-48.538 223.027c-184.31-58.358-315.631-227.706-316.006-427.783v-0.045c0.039-19.024 1.228-37.729 3.502-56.097l-0.226 2.234 172.646 51.814v2.048c0.092 92.163 46.046 173.573 116.266 222.65l0.88 0.582c-0.844 2.315-1.332 4.987-1.332 7.774 0 12.894 10.453 23.347 23.347 23.347s23.347-10.453 23.347-23.347c0-12.894-10.453-23.347-23.347-23.347-3.291 0-6.424 0.681-9.264 1.91l0.151-0.058c-67.487-46.113-111.206-122.698-111.206-209.494 0-0.006 0-0.012 0-0.018v0.001c0-2.867 0-5.734 0-8.602v-7.168l-207.258-61.44-1.434 10.65c-3.045 20.016-4.784 43.111-4.784 66.612 0 212.17 141.756 391.231 335.724 447.639l3.294 0.821 9.626 2.048 52.224-239.411c19.377 6.184 41.665 9.748 64.786 9.748 26.331 0 51.583-4.622 74.987-13.1l-1.533 0.485c4.238 5.218 10.634 8.542 17.808 8.602h0.010c0.076 0.001 0.166 0.001 0.255 0.001 13.007 0 23.552-10.545 23.552-23.552s-10.545-23.552-23.552-23.552c-9.756 0-18.126 5.931-21.701 14.385l-0.058 0.155c-20.95 8.274-45.217 13.071-70.604 13.071-108.923 0-197.222-88.299-197.222-197.222s88.299-197.222 197.222-197.222c29.209 0 56.934 6.35 81.872 17.744l-1.232-0.504c2.773 9.929 11.697 17.109 22.312 17.203h0.011c13.064 0 23.654-10.59 23.654-23.654s-10.59-23.654-23.654-23.654v0c-6.189 0.008-11.813 2.423-15.986 6.36l0.012-0.011c-21.544-9.25-46.531-15.28-72.733-16.767l-0.586-0.027 37.683-242.483zM300.032 283.597l-29.696-9.011c25.446-78.089 85.751-138.394 162.054-163.335l1.786-0.505c4.042 7.318 11.681 12.209 20.469 12.288h0.011c13.121 0 23.757-10.636 23.757-23.757s-10.636-23.757-23.757-23.757v0c-10.402 0.051-19.205 6.837-22.276 16.217l-0.047 0.167c-85.9 26.697-152.353 92.61-179.28 176.257l-0.534 1.919-168.55-52.019c59.757-182.231 227.794-311.736 426.251-312.934l0.142-0.001c9.626 0 19.251 0 28.672 0l-34.816 225.28c-95.27 2.936-175.167 65.572-203.735 151.625l-0.45 1.565zM570.163 293.427c-6.447 0-11.674-5.226-11.674-11.674s5.226-11.674 11.674-11.674c6.447 0 11.674 5.226 11.674 11.674v0c0 6.447-5.226 11.674-11.674 11.674v0zM510.362 623.565c0.025 0 0.054 0 0.083 0 79.599 0 151.194-34.273 200.832-88.867l0.198-0.221h207.462c-71.001 157.421-226.567 265.013-407.263 265.013-0.462 0-0.924-0.001-1.385-0.002h0.072c-16.35-0.037-32.444-0.929-48.295-2.633l2.010 0.175 35.635-173.67zM751.821 229.12c-34.357-66.066-93.185-115.414-164.171-136.521l-1.922-0.49 31.949-173.466c169.959 44.060 299.2 180.628 331.94 351.483l0.45 2.821h-353.075c-3.978-11.241-14.515-19.149-26.899-19.149-15.722 0-28.467 12.745-28.467 28.467s12.745 28.467 28.467 28.467c12.384 0 22.921-7.908 26.837-18.95l0.062-0.199h355.942c1.638 11.059 2.662 22.118 3.482 33.382h-307.2c-3.978-11.241-14.515-19.149-26.899-19.149-15.722 0-28.467 12.745-28.467 28.467s12.745 28.467 28.467 28.467c12.384 0 22.921-7.908 26.837-18.95l0.062-0.199h308.019c0 3.072 0 5.939 0 9.011 0 6.554 0 13.107 0 20.48h-424.755v-129.843h225.28zM633.856 333.978c0-6.447-5.226-11.674-11.674-11.674s-11.674 5.226-11.674 11.674c0 6.447 5.226 11.674 11.674 11.674s11.674-5.226 11.674-11.674zM527.77 390.707c-3.978 11.241-14.515 19.149-26.899 19.149-15.722 0-28.467-12.745-28.467-28.467s12.745-28.467 28.467-28.467c12.384 0 22.921 7.908 26.837 18.95l0.062 0.199h4.71v18.637zM500.941 370.227c-6.447 0-11.674 5.226-11.674 11.674s5.226 11.674 11.674 11.674c6.447 0 11.674-5.226 11.674-11.674v0c0.010-0.184 0.016-0.398 0.016-0.614 0-6.447-5.226-11.674-11.674-11.674-0.006 0-0.011 0-0.017 0h0.001zM530.022 242.227c-3.978 11.241-14.515 19.149-26.899 19.149-15.722 0-28.467-12.745-28.467-28.467s12.745-28.467 28.467-28.467c12.384 0 22.921 7.908 26.837 18.95l0.062 0.199h2.458v18.637zM503.194 221.747c-6.447 0-11.674 5.226-11.674 11.674s5.226 11.674 11.674 11.674c6.447 0 11.674-5.226 11.674-11.674v0c0.005-0.122 0.007-0.266 0.007-0.41 0-6.447-5.226-11.674-11.674-11.674-0.003 0-0.005 0-0.008 0v0zM472.269 439.45c-3.978 11.241-14.515 19.149-26.899 19.149-15.722 0-28.467-12.745-28.467-28.467s12.745-28.467 28.467-28.467c12.384 0 22.921 7.908 26.837 18.95l0.062 0.199h61.44v18.637zM445.44 418.97c-6.447 0-11.674 5.226-11.674 11.674s5.226 11.674 11.674 11.674c6.447 0 11.674-5.226 11.674-11.674v0c0.010-0.184 0.016-0.398 0.016-0.614 0-6.447-5.226-11.674-11.674-11.674-0.006 0-0.011 0-0.017 0h0.001z" />
|
69
|
+
<glyph unicode="" glyph-name="grs" data-tags="grs" d="M518.144 194.509c0.668-0.018 1.454-0.028 2.242-0.028 27.897 0 52.826 12.705 69.317 32.645l0.121 0.151c17.842 25.162 28.522 56.497 28.522 90.325 0 4.25-0.169 8.46-0.499 12.624l0.035-0.55c0.245 3.983 0.385 8.637 0.385 13.325 0 48.567-15.001 93.631-40.622 130.811l0.506-0.776c-17.114 23.161-44.319 38.015-74.994 38.015-28.757 0-54.466-13.055-71.521-33.563l-0.122-0.151c-18.347-25.618-29.338-57.592-29.338-92.132 0-4.262 0.167-8.486 0.496-12.664l-0.035 0.552c-0.267-4.103-0.419-8.897-0.419-13.726 0-47.513 14.709-91.591 39.822-127.928l-0.491 0.752c17.289-22.985 44.511-37.694 75.169-37.694 0.501 0 1.002 0.004 1.501 0.012l-0.075-0.001zM714.752-31.59c-31.837 9.61-68.424 15.142-106.303 15.142-4.245 0-8.473-0.069-12.685-0.207l0.614 0.016c-71.149 0.94-140.101 5.749-207.909 14.236l9.049-0.924c-15.488-15.891-29.061-33.769-40.271-53.182l-0.689-1.294c-8.065-13.37-13.139-29.363-13.919-46.476l-0.008-0.218v-3.891c50.42-19.173 108.722-30.274 169.617-30.274 84.641 0 164.272 21.448 233.756 59.205l-2.579-1.283c0 1.638 0 3.891 0 5.53 0.022 0.53 0.035 1.152 0.035 1.777 0 18.964-11.77 35.179-28.403 41.739l-0.304 0.106zM512 842.291c-270.441-0.449-489.503-219.788-489.503-490.291 0-189.061 107.011-353.129 263.767-434.938l2.709-1.287 1.638 2.662c4.71 6.554 10.035 13.312 15.974 20.48 2.662 3.482 21.094 23.962 58.778 62.874-16.277 8.839-30.24 19.472-42.357 31.911l-0.037 0.038c-7.637 8.279-12.361 19.345-12.493 31.513v0.026c1.327 17.724 7.261 33.836 16.596 47.431l-0.212-0.327c21.704 29.332 46.621 54.575 74.66 75.929l0.911 0.666c-59.738 28.019-100.368 87.659-100.368 156.788 0 0.823 0.006 1.645 0.017 2.465l-0.001-0.124c-0.007 0.573-0.010 1.25-0.010 1.928 0 52.517 22.617 99.751 58.642 132.494l0.146 0.131c37.314 35.106 87.71 56.678 143.145 56.678 2.813 0 5.612-0.056 8.398-0.166l-0.4 0.013c1.601 0.040 3.487 0.062 5.378 0.062 45.429 0 87.806-13.067 123.578-35.646l-0.956 0.563c25.97 24.741 49.789 51.158 71.505 79.281l1.199 1.615c18.043 22.37 29.62 50.632 31.519 81.511l0.020 0.409c0.032 0.758 0.050 1.647 0.050 2.541 0 17.059-6.559 32.586-17.293 44.197l0.040-0.044c-10.172 11.156-24.741 18.151-40.946 18.227h-0.014c-0.222 0.003-0.483 0.004-0.745 0.004-14.554 0-27.975-4.85-38.735-13.022l0.159 0.115c-12.138-9.462-21.224-22.322-25.865-37.148l-0.144-0.535h-8.192c2.058 24.071 12.379 45.404 28.076 61.459l-0.018-0.019c14.283 13.691 33.704 22.121 55.093 22.121 0.215 0 0.43-0.001 0.645-0.003h-0.033c0.83 0.029 1.805 0.046 2.784 0.046 22.818 0 43.515-9.079 58.676-23.822l-0.020 0.019c14.874-13.606 24.166-33.101 24.166-54.766 0-0.042 0-0.085 0-0.127v0.007c-0.15-16.547-3.987-32.162-10.727-46.113l0.282 0.647c-14.375-28.864-32.019-53.638-52.918-75.244l0.079 0.082c-36.25-39.731-59.187-63.488-68.403-71.68h77.824c2.358-0.1 5.125-0.158 7.905-0.158 8.837 0 17.54 0.578 26.071 1.699l-1.003-0.108c6.513 1.248 12.293 3.676 17.374 7.070l-0.171-0.107c5.475 4.026 9.946 9.085 13.192 14.919l0.12 0.236h8.192l-28.877-74.752h-80.691c16.799-25.866 26.788-57.503 26.788-91.473 0-2.618-0.059-5.223-0.177-7.812l0.013 0.367c0.010-0.68 0.016-1.483 0.016-2.287 0-49.162-21.653-93.267-55.942-123.298l-0.189-0.162c-37.282-32.62-86.417-52.515-140.199-52.515-3.921 0-7.818 0.106-11.687 0.315l0.539-0.023c-28.298 0.169-55.554 4.347-81.318 11.994l2.060-0.525c-13.352-10.771-24.689-23.346-33.827-37.475l-0.374-0.618c-5.062-7.991-8.326-17.581-9.002-27.878l-0.009-0.18c0.305-7.672 3.888-14.45 9.378-19.012l0.043-0.034c10.427-7.465 23.2-12.302 37.037-13.298l0.237-0.014q16.179-2.662 80.486-3.891c79.053-1.638 130.048-4.71 153.6-8.192 33.472-3.705 63.020-18.161 85.663-39.785l-0.057 0.054c19.754-19.785 31.971-47.101 31.971-77.27 0-0.771-0.008-1.54-0.024-2.307l0.002 0.115v-3.482c130.834 89.652 215.56 238.302 215.56 406.741 0 270.49-218.492 489.948-488.614 491.512l-0.149 0.001z" />
|
70
|
+
<glyph unicode="" glyph-name="heat" data-tags="heat" d="M401.818-136.038h220.365l-11.878 478.003h-196.608l-11.878-478.003zM417.382 493.312h189.235l-8.602 346.726h-172.032l-8.602-346.726zM280.166 705.894c-91.242-3.605-165.415-72.212-177.656-160.61l-0.111-0.977-37.274-281.805c-1.003-7.017-1.576-15.122-1.576-23.36 0-95.287 76.648-172.671 171.653-173.861l0.112-0.001zM958.874 262.502l-37.274 281.805c-12.325 89.244-86.287 157.781-176.981 161.575l-0.376 0.012 44.442-640.614c95.117 1.191 171.765 78.576 171.765 173.862 0 8.238-0.573 16.343-1.681 24.275l0.105-0.915z" />
|
71
|
+
<glyph unicode="" glyph-name="icn" data-tags="icn" d="M806.298 842.291h147.046v-980.582h-147.046v980.582zM560.947 352h147.251v-490.291h-147.251v490.291zM315.802 597.146h147.251v-735.437h-147.251v735.437zM70.656 106.854h147.046v-245.146h-147.046v245.146z" />
|
72
|
+
<glyph unicode="" glyph-name="ifc" data-tags="ifc" d="M773.939 120.986c-115.712 0-199.27 68.813-266.24 139.878-70.656-72.704-151.552-139.878-261.939-139.878-146.637 0-225.28 120.218-225.28 233.267s77.619 228.762 225.28 228.762c112.23 0 192.512-68.403 261.53-141.926 70.861 73.728 153.19 141.926 266.24 141.926 149.504 0 229.99-120.218 229.99-233.267s-78.848-228.762-229.581-228.762zM589.619 350.771c62.464-66.355 115.098-107.93 184.32-107.93 2.144-0.163 4.645-0.255 7.167-0.255 55.649 0 100.762 45.113 100.762 100.762 0 2.251-0.074 4.486-0.219 6.7l0.016-0.301c0 40.96-22.733 111.411-107.725 111.411-69.018 0-126.566-49.562-183.91-110.387zM245.76 461.158c-98.918 0-104.038-88.883-104.038-106.906 0-40.96 21.914-111.411 104.038-111.411 65.946 0 122.88 48.742 178.586 108.544-55.706 62.054-110.182 109.773-178.586 109.773z" />
|
73
|
+
<glyph unicode="" glyph-name="incnt" data-tags="incnt" d="M512 702.618l-258.048-74.138 258.048-766.771 258.048 766.771-258.048 74.138zM512 743.373l141.517-40.55 30.31 90.112-171.827 49.357-171.827-49.357 30.31-90.112 141.517 40.55z" />
|
74
|
+
<glyph unicode="" glyph-name="ioc" data-tags="ioc" d="M405.914 503.552v-630.17c31.882-7.342 68.493-11.551 106.086-11.551s74.204 4.208 109.387 12.179l-3.3-0.629v630.17c-29.416 15.645-64.322 24.831-101.373 24.831-1.657 0-3.31-0.018-4.959-0.055l0.246 0.004c-1.403 0.032-3.056 0.051-4.713 0.051-37.051 0-71.957-9.187-102.563-25.407l1.19 0.575zM21.709 352c0.358-213.095 136.266-394.355 326.091-462.187l3.432-1.070v188.621c-94.851 56.271-157.438 158.145-157.438 274.637s62.587 218.365 155.969 273.829l1.468 0.807v188.621c-193.257-68.903-329.165-250.162-329.523-463.214v-0.043zM672.768 815.258v-188.621c94.851-56.271 157.438-158.145 157.438-274.637s-62.587-218.365-155.969-273.829l-1.468-0.807v-188.621c193.568 68.523 329.736 249.989 329.736 463.258s-136.169 394.734-326.307 462.197l-3.429 1.061zM405.914 830.618v-178.586c31.591 11.524 68.060 18.189 106.086 18.189s74.496-6.665 108.304-18.89l-2.218 0.701v178.586c-31.882 7.342-68.493 11.551-106.086 11.551s-74.204-4.208-109.387-12.179l3.3 0.629z" />
|
75
|
+
<glyph unicode="" glyph-name="kmd" data-tags="kmd" d="M866.099 679.68l-24.986 24.986-329.114 137.626-17.818-7.373-17.613-7.373-63.283-26.624-230.4-96.256-24.986-24.986-136.192-327.68 136.192-327.68 24.986-24.986c109.773-45.875 219.341-92.16 329.114-137.626 109.773 45.466 219.546 91.75 329.114 137.626l24.986 24.986 136.192 327.68zM716.8 147.2l-204.8-85.402-204.8 85.402-85.402 204.8 85.402 204.8 204.8 84.992 204.8-84.992 84.992-204.8zM512 557.21l-145.203-60.006-60.006-145.203 60.006-145.203 145.203-60.006 145.203 60.006 60.006 145.203-60.006 145.203-145.203 60.006z" />
|
76
|
+
<glyph unicode="" glyph-name="kobo" data-tags="kobo" d="M512 815.872c-271.36 0-491.52-207.667-491.52-463.872s220.16-463.872 491.52-463.872 491.52 207.667 491.52 463.872-220.16 463.872-491.52 463.872zM785.408 143.104h-192.717l-143.36 222.822-10.65-222.822h-167.731l22.938 454.656h169.984l-12.083-197.632 152.576 197.632h181.248l-171.213-211.558z" />
|
77
|
+
<glyph unicode="" glyph-name="kore" data-tags="kore" d="M512 843.52c-271.459 0-491.52-220.061-491.52-491.52s220.061-491.52 491.52-491.52c271.459 0 491.52 220.061 491.52 491.52v0c0 271.459-220.061 491.52-491.52 491.52v0zM792.781 352c0-0.013 0-0.027 0-0.042 0-89.756-42.238-169.646-107.921-220.879l-0.623-0.468-32.358 51.2c49.089 40.677 80.124 101.656 80.124 169.883 0 73.053-35.58 137.795-90.357 177.843l-0.622 0.434 40.96 44.237c67.367-51.5 110.474-131.787 110.797-222.156v-0.052zM593.92 480.614c42.466-27.609 70.155-74.826 70.155-128.511 0-44.586-19.099-84.712-49.562-112.641l-0.113-0.102-99.123 157.286zM667.648 729.037l-237.568-251.085 34.406 249.242h-113.459c47.495 20.855 102.858 32.992 161.056 32.992 56.338 0 110.020-11.374 158.873-31.951l-2.694 1.007zM263.168 221.952c-20.009 37.61-31.759 82.24-31.759 129.615 0 74.224 28.842 141.711 75.93 191.865l-0.139-0.149zM103.834 352c0 0.137 0 0.3 0 0.463 0 158.749 90.628 296.331 222.968 363.83l2.312 1.070-6.963-58.163c-103.664-64.47-171.646-177.761-171.646-306.931 0-95.223 36.945-181.816 97.284-246.228l-0.185 0.199-7.987-58.982c-83.495 74.878-135.784 183.097-135.784 303.529 0 0.427 0.001 0.853 0.002 1.28v-0.066zM286.72 11.827h81.92l40.96 315.392h3.482l198.656-314.982h125.542c-63.372-42.507-141.367-67.842-225.28-67.842s-161.908 25.334-226.755 68.772l1.475-0.93zM752.845 22.272l-25.395 40.96c88.499 66.427 145.145 171.139 145.145 289.081 0 113.576-52.529 214.882-134.619 280.95l-0.696 0.542 32.563 34.816c92.122-75.427 150.45-189.16 150.45-316.516 0-134.905-65.448-254.524-166.324-328.837l-1.125-0.791z" />
|
78
|
+
<glyph unicode="" glyph-name="lbc" data-tags="lbc" d="M896 352.614l-7.782-43.418 30.31-5.53-421.274-260.096-432.947 215.040v118.784l459.776 283.034 409.6-197.222v-7.782l-436.429-267.878-328.909 159.949v-48.538l331.162-161.382 478.003 293.478v59.802l-455.885 219.341-501.146-308.224v-170.598l479.027-237.568 449.331 277.299-5.939-39.322 42.803-6.963 17.818 107.52-107.52 20.275z" />
|
79
|
+
<glyph unicode="" glyph-name="ldoge" data-tags="ldoge" d="M939.827 421.632c17.203 29.901 3.277 40.96 3.277 40.96s13.312 68.813-13.926 68.813c0 15.36-40.96 69.427-44.646 41.984 0 0-77.005 61.44-159.13 15.974-45.789-24.551-76.402-72.082-76.402-126.763 0-0.651 0.004-1.301 0.013-1.95l-0.001 0.098c-5.953-0.181-12.955-0.285-19.981-0.285-21.806 0-43.38 0.996-64.678 2.945l2.739-0.202c-25.374 7.16-47.331 16.022-68.049 26.92l1.899-0.91c18.649 15.139 30.469 38.063 30.469 63.747 0 4.901-0.43 9.701-1.255 14.365l0.072-0.494c28.672-3.277-24.166 63.078-30.515 73.318 0 0 18.432 182.682-29.286 199.27s-102.4-92.365-106.906-92.365c-16.367 6.24-35.42 10.925-55.205 13.207l-1.115 0.105c-1.951 0.073-4.241 0.115-6.542 0.115-19.595 0-38.481-3.038-56.212-8.667l1.314 0.36s-61.44 106.701-102.4 89.498-30.106-178.586-28.877-201.114c0 0-39.526-44.032-38.912-58.573s9.011-17.818 9.011-17.818c-0.877-5.192-1.378-11.173-1.378-17.271 0-8.396 0.95-16.57 2.747-24.421l-0.141 0.732c5.12-12.698 68.813-71.27 73.318-81.92s-3.277-132.506 7.578-197.427 40.96-114.688 51.61-196.813-6.349-164.864 0-170.598c12.065-2.735 25.92-4.302 40.141-4.302s28.076 1.567 41.402 4.538l-1.262-0.236c9.011 5.734 16.589 80.282 17.203 122.88s0 105.677 0 105.677 46.49-3.891 52.224-15.36 5.12-73.933 3.277-115.302-15.36-99.328-10.854-106.291 64.307-14.746 79.053 0 38.298 241.254 41.984 245.76 96.87 66.15 96.87 66.15c0.366-18.125 4.556-35.184 11.79-50.524l-0.321 0.758c10.24-14.746 74.547-70.656 75.776-86.016s-63.693-121.651-56.73-126.157 83.354-11.469 98.099-2.458 39.526 68.813 45.261 92.979 12.083 78.234 12.083 78.234 72.499-36.25 76.39-45.875c0.772-7.639 1.213-16.508 1.213-25.48 0-24.213-3.208-47.678-9.221-69.991l0.431 1.878c-8.192-24.166-33.792-68.813-28.058-72.499s92.979-7.578 99.942-1.843 34.202 161.997 27.034 212.787-33.178 44.032-35.635 65.536 5.734 131.277 0 163.84c-4.347 18.324-11.408 34.467-20.841 48.922l0.361-0.589c1.434 5.939 45.67 28.262 63.898 58.163zM217.293 578.714c-18.842 0-33.997 23.757-33.997 53.043s15.155 53.043 33.997 53.043 33.997-23.757 33.997-53.043-15.36-53.043-33.997-53.043zM278.733 416.307c-22.938 0-36.864 28.058-32.768 51.814 1.589-0.268 3.42-0.421 5.286-0.421 10.506 0 19.879 4.853 25.998 12.441l0.050 0.064c9.421-15.565 35.226-11.059 37.069-11.469-0.614-22.118-13.312-52.634-36.25-52.634zM277.299 496.998c-20.48 0-37.069 10.445-37.069 23.142s16.589 23.142 37.069 23.142 37.069-10.445 37.069-23.142-17.203-23.142-37.683-23.142zM364.749 578.918c-18.842 0-33.997 23.757-33.997 53.043s15.155 53.043 33.997 53.043 33.997-23.757 33.997-53.043-15.77-53.248-34.611-53.248z" />
|
80
|
+
<glyph unicode="" glyph-name="lsk" data-tags="lsk" d="M658.432 649.984l-6.963-53.658 40.141-33.587 71.68 24.986-48.128 39.936-23.962 45.67-128.41 122.675 34.202-87.040 61.44-58.982zM565.658 621.926l-7.987-47.514-90.522-65.126 8.806-105.677 68.608-174.49 38.707 70.246-12.493 19.251 37.274 90.522v46.285l71.066 96.87-44.442 37.478 6.963 54.272-58.163 55.91-49.152 123.904-3.482 2.048 0.41-115.302 34.406-88.678zM746.291 308.992l6.963 12.288v93.389l16.179 158.31-74.547-26.010-70.861-96.87v-44.032l-35.43-85.811 8.602-12.902 137.421-9.83 11.674 11.469zM525.722 88.422l21.709-10.65 16.384 18.227 48.128 6.963 18.227 24.781 40.96 1.024 2.458 12.493 40.55 7.578 12.083 133.325-129.024 9.216-46.694-84.378-45.261-122.47 4.506-22.528 15.974 26.419zM415.334 279.706l-120.422-52.838 3.072-75.981 51.2-25.6 12.288-20.48 25.805 13.517 15.155-4.71 4.71 12.288 10.65 4.096 32.768-12.902 12.288-30.515 26.419 12.288h4.301l41.165 111.411-67.379 172.032-52.019-102.605zM275.661 272.538l10.24-32.358 117.76 51.814 56.32 111.206-8.602 104.038-223.232 73.318 51.61-268.698-4.096-39.322zM543.13 583.424l6.144 36.864-33.792 87.45-0.614 135.373-10.24 0.41-12.288-5.939-259.277-241.869 224.461-73.728 85.606 61.44zM784.998 165.222l-45.261 20.48-2.458-32.768 13.722-6.554-57.958-40.141-63.693-50.995-67.379-17.408-54.682-28.672-68.198 25.19-122.88 69.427-49.971 43.418 10.035 3.686-1.434 33.382-43.213-16.589-31.744-60.006 4.915-105.677 65.946-28.262 10.24-7.987 135.782-66.355 11.264-1.638 64.717-35.635 33.792-1.638 44.646 23.552 139.878 66.15 104.448 57.344 8.192 92.774zM507.699-75.418v-31.334h-5.734l-63.283 34.816-12.083 1.843-128.41 62.669-11.469 8.602-50.79 23.142-3.891 77.21 20.48 37.274 54.682-47.104 122.88-70.451 69.427-25.805 13.517-54.886zM785.818 26.982l-88.474-48.538-139.878-66.15-33.997-18.022v27.648l7.987 18.022-14.336 58.163 50.79 26.214 68.813 17.818 65.536 52.429 62.464 42.803 26.829-44.237z" />
|
81
|
+
<glyph unicode="" glyph-name="ltc" data-tags="ltc" d="M429.056 45.21l55.501 263.782 279.962 191.898 32.768 156.672-280.166-192.717 79.667 378.675h-215.040l-115.507-551.526-117.76-80.896-27.443-151.347 112.64 77.21-57.958-276.48h688.947l38.298 184.73h-473.907z" />
|
82
|
+
<glyph unicode="" glyph-name="maid" data-tags="maid" d="M602.726 193.69v133.53l-226.918 131.072 573.44 322.56s-132.096 130.458-325.837 14.746l-515.891-307.2zM445.85 458.086l107.11-61.44 223.642 131.482v-667.648c10.035 5.12 172.646 91.75 172.646 229.99v650.65zM741.99 466.893l-104.653-61.44v-272.794l-561.971 333.619c-1.229-20.48-7.168-163.84 64.717-219.546 64.717-50.176 480.256-295.117 601.907-366.797z" />
|
83
|
+
<glyph unicode="" glyph-name="mint" data-tags="mint" d="M1000.038 230.554c-7.436 91.858-28.798 176.784-62.035 255.47l2.029-5.409c-25.19 58.982-92.16 151.757-126.771 157.286-17.128 1.704-37.020 2.675-57.139 2.675s-40.011-0.972-59.632-2.87l2.493 0.195c-68.403-2.458-73.523-20.48-74.342-28.672s23.347-22.528 43.008-44.442c35.952-49.452 66.392-106.243 88.574-167.009l1.538-4.819c17.311-52.445 28.762-113.089 31.884-175.925l0.065-1.637c4.301-81.92-2.253-127.386 10.854-143.36s180.634-7.987 193.741 0 9.216 71.066 5.734 158.515zM671.744 480.614c-25.19 58.982-92.16 151.757-126.771 157.286-18.53 1.993-40.026 3.129-61.787 3.129-18.695 0-37.194-0.839-55.462-2.481l2.356 0.171c-68.403-2.458-73.523-20.48-74.342-28.672s23.347-22.528 43.008-44.442c36.087-49.681 66.604-106.751 88.785-167.821l1.532-4.826c17.311-52.445 28.762-113.089 31.884-175.925l0.065-1.637c4.301-81.92-2.253-127.386 10.854-143.36s180.634-7.987 193.741 0 10.65 70.656 6.144 157.901c-7.369 92.064-28.738 177.209-62.035 256.089l2.029-5.414zM409.6 480.614c-25.19 58.982-92.16 151.757-126.566 157.286-17.128 1.704-37.020 2.675-57.139 2.675s-40.011-0.972-59.632-2.87l2.493 0.195c-68.403-2.458-73.523-20.48-74.342-28.672s23.347-22.528 43.008-44.442c28.992-40.047 54.922-85.65 75.648-134.013l1.767-4.636h-194.355l74.138-74.138h143.36c6.367-22.679 11.964-50.442 15.644-78.807l0.33-3.113h-201.728l74.138-73.933h133.734c2.458-69.222-1.843-108.954 10.035-122.88s180.634-7.987 193.741 0 10.65 70.656 6.144 157.901c-7.65 91.694-29.143 176.381-62.45 254.841l2.034-5.395z" />
|
84
|
+
<glyph unicode="" glyph-name="mona" data-tags="mona" d="M509.952 186.726l52.838 89.293h-103.629l50.79-89.293zM882.074 478.771l-70.246 314.778-137.216-216.269c-48.837 12.271-104.902 19.312-162.611 19.312s-113.775-7.041-167.383-20.311l4.772 0.999-137.216 216.269-70.451-314.778c-75.366-60.211-121.242-139.059-121.242-225.485 0-189.44 219.955-343.040 491.52-343.040s491.52 153.6 491.52 343.040c0 86.426-45.875 165.274-121.446 225.485zM238.592 335.411h-33.792l79.872 92.16h58.573zM509.133 110.131l-135.782 238.797 33.587 19.046 30.31-53.248h148.48l31.744 53.453 33.178-20.48zM785.203 335.411l-105.472 92.16h58.573l79.872-92.16z" />
|
85
|
+
<glyph unicode="" glyph-name="mue" data-tags="mue" d="M820.224 694.426l-303.309-381.133-311.091 381.133-185.344-778.854h185.344l97.894 406.118 213.197-251.904 209.715 251.904 97.69-406.118h179.2l-183.296 778.854zM471.040 533.043c51.61 0 97.69 76.595 162.406 126.566s182.067 117.965 174.899 128-163.84-88.269-199.885-117.965-92.16-86.016-114.074-81.92-137.421 184.32-176.538 159.334c-9.067-6.243-14.935-16.565-14.935-28.258 0-9.136 3.582-17.436 9.419-23.57l-0.014 0.014c14.336-16.794 108.134-162.202 158.72-162.202z" />
|
86
|
+
<glyph unicode="" glyph-name="neos" data-tags="neos" d="M20.48 843.52h107.315v-983.040h-107.315v983.040zM622.182 571.955l-472.064 271.565v-983.040h107.52v798.31l364.544-210.944v124.109zM622.182 722.074l-210.125 121.446h-214.221l424.346-245.76v124.314zM622.182 843.52h-165.478l165.478-95.642v95.642zM896.205 843.52h107.315v-983.040h-107.315v983.040zM766.362 45.21l-364.544 210.944v-124.109l471.859-271.565v983.040h-107.315v-798.31zM401.818-17.869l210.125-121.651h214.221l-424.346 245.76v-124.109zM401.818-139.52h165.478l-165.478 95.642v-95.642z" />
|
87
|
+
<glyph unicode="" glyph-name="nlg" data-tags="nlg" d="M512 405.043v-105.677h380.928c-26.661-188.699-187.082-332.262-381.035-332.262-212.417 0-384.614 172.198-384.614 384.614s172.198 384.614 384.614 384.614c106.267 0 202.468-43.097 272.079-112.766l0.003-0.003 76.186 74.752c-89.007 89.308-212.13 144.566-348.16 144.566-271.459 0-491.52-220.061-491.52-491.52s220.061-491.52 491.52-491.52c271.459 0 491.52 220.061 491.52 491.52 0 0.224 0 0.448 0 0.671v-0.034c-0.013 18.702-1.055 37.144-3.070 55.292l0.203-2.249h-488.653z" />
|
88
|
+
<glyph unicode="" glyph-name="nmc" data-tags="nmc" d="M875.93 731.904c-23.597-19.292-41.434-44.799-51.081-74.030l-0.323-1.131-98.304-361.472-334.029 457.523s-74.547 4.301-102.4-5.734c-39.777-16.39-69.143-50.894-78.083-92.951l-0.151-0.847c-14.336-57.549-191.078-703.488-191.078-703.488s85.811-2.867 112.845 11.878c35.653 16.781 61.751 48.807 70.096 87.441l0.15 0.828c11.264 39.117 97.075 360.243 97.075 360.243l334.234-460.39s80.486-2.253 107.52 9.83c35.108 18.628 60.883 50.902 70.456 89.567l0.2 0.954c11.059 40.346 190.464 703.693 190.464 703.693s-89.293 7.782-127.59-21.914zM664.576 75.52l-331.162 454.861 24.576 100.147 335.872-462.848z" />
|
89
|
+
<glyph unicode="" glyph-name="note" data-tags="note" d="M481.485 843.52h-380.518v-929.792c0-29.408 23.84-53.248 53.248-53.248s53.248 23.84 53.248 53.248v0 823.296h274.022c86.016 0 335.258-94.822 335.258-385.024s-244.326-385.024-327.68-385.024h-151.347c-29.408 0-53.248-23.84-53.248-53.248s23.84-53.248 53.248-53.248v0h150.323c151.757 0 434.995 143.36 434.995 491.52 0 343.040-292.454 491.52-441.549 491.52zM452.198 135.936h-119.808c-29.408 0-53.248-23.84-53.248-53.248s23.84-53.248 53.248-53.248v0h119.808c98.918 0 283.238 108.134 283.238 314.778 0 217.088-173.056 318.259-289.997 318.259h-166.298v-385.638c0-29.408 23.84-53.248 53.248-53.248s53.248 23.84 53.248 53.248v0 279.962h59.802c57.549 0 184.32-53.453 184.32-211.968 0.004-0.493 0.007-1.076 0.007-1.659 0-104.475-76.396-191.107-176.372-207.079l-1.196-0.157z" />
|
90
|
+
<glyph unicode="" glyph-name="nuc" data-tags="nuc" d="M709.837 852.736c-162.202 0-293.683-46.080-293.683-102.4v-91.136c15.77-32.563 126.566-74.138 293.683-74.138s277.914 40.96 293.683 74.138v90.522c0 56.934-131.482 103.014-293.683 103.014zM106.496 41.523l-4.096 8.602v10.24c-15.327-9.223-25.897-25.011-27.831-43.372l-0.021-0.25v-91.341c15.565-32.563 126.566-74.138 294.093-74.138s277.914 40.96 293.683 74.138v47.514c-63.54-18.649-136.537-29.379-212.040-29.379-4.223 0-8.438 0.034-12.645 0.1l0.633-0.008c-167.731 0-303.923 39.731-331.776 97.894zM143.36 85.76v-26.624c15.77-32.563 126.566-74.138 293.683-74.138s277.914 40.96 293.683 74.138v91.75c-0.209 7.033-2.158 13.568-5.43 19.245l0.105-0.198v-14.336l-4.096-8.602c-27.648-57.549-163.84-97.894-331.366-97.894-5.22-0.134-11.366-0.211-17.53-0.211-81.916 0-160.681 13.494-234.192 38.381l5.143-1.511zM607.846 307.149v91.341c0 56.73-131.482 102.4-293.683 102.4s-293.683-46.49-293.683-102.4v-91.341c15.77-32.563 126.566-74.138 293.683-74.138s277.914 41.574 293.683 74.138zM649.626 305.101v-7.373l-4.096-8.602c-27.648-57.549-163.84-97.894-331.366-97.894-3.333-0.050-7.267-0.079-11.207-0.079-73.221 0-144.13 9.896-211.464 28.423l5.583-1.31v-53.043c15.77-32.563 126.566-74.138 293.683-74.138s277.914 40.96 293.683 74.138v91.341c-2.82 21.443-16.092 39.262-34.45 48.373l-0.366 0.164zM416.154 602.061v-65.741c88.678-10.854 168.755-36.659 208.077-78.643 26.624-2.458 55.296-3.891 85.811-3.891 167.117 0 277.914 40.96 293.683 74.138v74.138c-61.44-39.322-177.971-59.392-293.683-59.392s-232.653 20.070-293.888 59.392zM647.987 414.669c1.102-4.834 1.77-10.408 1.843-16.126l0.001-0.053v-46.49c16.167-7.926 30.1-17.211 42.641-28.062l-0.247 0.209h17.818c167.117 0 277.914 40.96 293.683 74.138v73.728c-61.645-38.093-178.176-58.573-293.888-58.573-20.685 0-41.37 0-61.85 1.229zM726.426 256.563v-27.443c13.136-9.158 24.158-20.311 32.894-33.145l0.284-0.442c139.059 7.168 229.786 43.622 243.917 72.704v73.933c-59.187-37.888-169.984-57.958-281.805-59.392 2.9-7.789 4.619-16.787 4.71-26.174v-0.040zM773.53 150.886v-83.968c131.277 8.806 216.474 43.827 229.99 72.090v73.318c-49.971-31.949-137.011-51.405-230.4-57.344 0.205-1.434 0.41-2.662 0.41-4.096zM703.693-11.52v-61.44h6.144c162.202 0 293.683 46.080 293.683 102.4v53.043c-52.838-33.792-147.251-53.658-245.76-58.368-15.093-14.905-33.051-26.95-52.968-35.23l-1.1-0.405z" />
|
91
|
+
<glyph unicode="" glyph-name="nxt" data-tags="nxt" d="M469.606 227.072h-90.112l-250.266 165.888h-67.789c-23.187 0-41.984 18.797-41.984 41.984s18.797 41.984 41.984 41.984v0h92.16l251.29-165.888h64.717c23.187 0 41.984-18.797 41.984-41.984s-18.797-41.984-41.984-41.984v0zM839.68 227.072h-132.915l-250.266 165.888h-67.379c-23.187 0-41.984 18.797-41.984 41.984s18.797 41.984 41.984 41.984v0h92.16l250.675-165.888h107.725c23.187 0 41.984-18.797 41.984-41.984s-18.797-41.984-41.984-41.984v0zM962.56 311.040c-22.622 0-40.96 18.338-40.96 40.96v0 40.96h-204.8c-23.187 0-41.984 18.797-41.984 41.984s18.797 41.984 41.984 41.984v0h286.72v-124.928c0-22.622-18.338-40.96-40.96-40.96v0zM143.36 227.072h-81.92c-23.187 0-41.984 18.797-41.984 41.984s18.797 41.984 41.984 41.984v0h81.92c23.187 0 41.984-18.797 41.984-41.984s-18.797-41.984-41.984-41.984v0z" />
|
92
|
+
<glyph unicode="" glyph-name="ok" data-tags="ok" d="M487.424 508.262c-23.552 6.554-135.987 33.792-158.31 39.526s-86.63 15.974-102.4-20.48-58.778-137.421-73.318-175.309c-2.952-5.645-4.684-12.33-4.684-19.419 0-21.058 15.279-38.547 35.356-41.985l0.252-0.036c21.709-5.734 166.912-43.827 192.717-49.562s65.946-2.253 81.92 33.382 59.392 137.216 72.090 172.032-19.046 55.296-43.622 61.85zM422.298 426.342c-6.144-17.203-29.082-69.837-36.864-87.45-3.464-10.179-12.939-17.372-24.095-17.372-3.189 0-6.241 0.588-9.052 1.661l0.174-0.058c-12.698 2.867-67.584 15.974-78.234 18.637-9.563 0.746-17.041 8.689-17.041 18.379 0 3.415 0.929 6.612 2.547 9.355l-0.047-0.086c7.168 18.227 29.696 70.656 37.478 88.269 5.033 9.292 14.711 15.497 25.837 15.497 4.367 0 8.511-0.956 12.233-2.67l-0.182 0.075c10.854-2.867 62.874-15.36 74.342-18.637s19.251-8.397 12.902-25.395zM757.76 331.52l129.024 77.619-109.568 27.648-163.84-105.267 56.934 131.891-92.774 23.552-112.026-266.24 92.57-23.962 40.96 100.762s79.872-20.48 93.389-24.781 11.059-15.155 8.192-23.962-32.563-78.848-32.563-78.848l91.546-22.733s35.635 85.606 45.261 111.002c3.581 6.087 5.697 13.41 5.697 21.226 0 9.878-3.378 18.967-9.043 26.174l0.069-0.091c-12.298 11.096-26.878 19.94-42.919 25.724l-0.908 0.286zM512 843.52c-271.459 0-491.52-220.061-491.52-491.52s220.061-491.52 491.52-491.52c271.459 0 491.52 220.061 491.52 491.52v0c0 271.459-220.061 491.52-491.52 491.52v0zM512-34.867c-213.661 0-386.867 173.206-386.867 386.867s173.206 386.867 386.867 386.867c213.661 0 386.867-173.206 386.867-386.867v0c0-213.661-173.206-386.867-386.867-386.867v0z" />
|
93
|
+
<glyph unicode="" glyph-name="omni" data-tags="omni" d="M220.365 799.898h-156.877v-157.082c41.461 63.135 93.809 115.548 154.864 155.834l2.012 1.247zM957.85 646.912v152.986h-154.214c61.741-40.648 113.138-91.653 152.993-151.052l1.222-1.933zM806.093-94.464h151.757v151.552c-40.532-60.602-91.087-111.091-149.803-150.323l-1.954-1.229zM63.488 61.184v-155.648h154.624c-62.077 41.332-113.651 93.232-153.372 153.621l-1.252 2.027zM1003.52 352c0 271.459-220.061 491.52-491.52 491.52s-491.52-220.061-491.52-491.52c0-271.459 220.061-491.52 491.52-491.52v0c271.459 0 491.52 220.061 491.52 491.52v0zM512-6.4c-197.939 0-358.4 160.461-358.4 358.4s160.461 358.4 358.4 358.4c197.939 0 358.4-160.461 358.4-358.4v0c-0.233-197.845-160.555-358.167-358.378-358.4h-0.022z" />
|
94
|
+
<glyph unicode="" glyph-name="pink" data-tags="pink" d="M512 843.52c-220.467-0.233-399.127-178.894-399.36-399.338v-583.702h139.674v280.576c69.418-59.823 160.47-96.256 260.031-96.256 220.56 0 399.36 178.8 399.36 399.36s-178.8 399.36-399.36 399.36c-0.121 0-0.243 0-0.364 0h0.019zM512 184.064c-143.421 0-259.686 116.266-259.686 259.686s116.266 259.686 259.686 259.686c143.421 0 259.686-116.266 259.686-259.686v0c-0.116-143.374-116.312-259.57-259.675-259.686h-0.012z" />
|
95
|
+
<glyph unicode="" glyph-name="pivx" data-tags="pivx" d="M512 843.52l-401.613-83.968v-555.827c0-81.92 83.354-158.72 173.875-218.112 62.585-41.534 135.224-82.489 210.788-118.276l10.805-4.604 6.144-2.253 6.144 2.662c16.179 6.144 395.469 167.322 395.469 340.787v555.622zM338.33 502.938h207.462v-43.213h-207.462zM573.44 314.931h-136.192v-215.859h-53.862v263.987h182.682c73.523 0 121.037 44.646 121.037 119.603s-47.923 117.35-120.013 117.35h-192.717v49.152h199.066c98.509 0 169.37-63.898 169.37-165.683s-71.066-168.55-169.37-168.55z" />
|
96
|
+
<glyph unicode="" glyph-name="pot" data-tags="pot" d="M577.331 843.52h-356.557l-48.333-248.013h-102.4l-22.938-117.965h102.4l-120.013-617.062h175.309l68.813 356.147h261.939c126.362 0 418.816 24.781 455.27 324.608 33.178 279.962-174.899 302.285-413.491 302.285zM812.442 555.571c-12.083-105.882-105.882-172.646-207.053-172.646h-299.622l18.227 94.822h249.446l22.323 117.965h-248.832l15.155 78.029h281.19c77.21-0.205 181.248-12.288 169.165-118.17z" />
|
97
|
+
<glyph unicode="" glyph-name="ppc" data-tags="ppc" d="M733.798-126.208s44.442 150.528 25.19 284.672-140.288 298.189-231.424 371.712-266.24 157.286-266.24 157.286 151.757-116.122 204.8-171.622c71.559-73.283 126.323-163.294 157.858-263.598l1.272-4.69c34.202-120.422 28.262-330.138-40.96-373.965s-252.723 32.154-313.754 83.149-139.059 134.758-161.587 307.2-16.384 579.584-16.384 579.584 325.427-1.638 571.187-156.877 268.493-278.118 268.493-476.57-198.451-336.282-198.451-336.282z" />
|
98
|
+
<glyph unicode="" glyph-name="qrk" data-tags="qrk" d="M512 843.52c-271.459 0-491.52-220.061-491.52-491.52s220.061-491.52 491.52-491.52c271.459 0 491.52 220.061 491.52 491.52v0c0 271.459-220.061 491.52-491.52 491.52v0zM512-71.322c-233.794 0-423.322 189.528-423.322 423.322s189.528 423.322 423.322 423.322c233.794 0 423.322-189.528 423.322-423.322v0c-0.117-233.747-189.574-423.205-423.31-423.322h-0.011zM816.333 527.718c-22.408 38.461-63.452 63.9-110.439 63.9-39.908 0-75.531-18.352-98.887-47.077l-0.184-0.234c-21.142-30.11-55.712-49.548-94.822-49.548s-73.68 19.438-94.577 49.18l-0.245 0.368c-23.579 29.020-59.267 47.411-99.25 47.411-70.466 0-127.59-57.124-127.59-127.59 0-62.622 45.114-114.707 104.615-125.527l0.78-0.118c60.296-4.266 107.594-54.227 107.594-115.236 0-17.638-3.953-34.353-11.023-49.307l0.299 0.703c-5.297-13.488-8.368-29.108-8.368-45.445 0-70.466 57.124-127.59 127.59-127.59s127.59 57.124 127.59 127.59c0 15.569-2.788 30.486-7.893 44.28l0.286-0.884c-7.543 14.928-11.96 32.541-11.96 51.185 0 60.434 46.411 110.027 105.535 115.083l0.428 0.029c61.263 9.97 107.461 62.499 107.461 125.818 0 23.506-6.366 45.524-17.469 64.425l0.325-0.598zM512 257.178c-52.369 0-94.822 42.453-94.822 94.822s42.453 94.822 94.822 94.822c52.369 0 94.822-42.453 94.822-94.822v0c0-52.369-42.453-94.822-94.822-94.822v0z" />
|
99
|
+
<glyph unicode="" glyph-name="rby" data-tags="rby" d="M625.664 400.128c0 75.162-63.898 92.979-104.243 92.979h-127.59v-51.814h120.832c1.064 0.098 2.302 0.154 3.552 0.154 22.622 0 40.96-18.338 40.96-40.96 0-0.847-0.026-1.688-0.076-2.522l0.006 0.115c0.114-1.098 0.179-2.372 0.179-3.661 0-20.699-16.78-37.478-37.478-37.478-1.289 0-2.563 0.065-3.819 0.192l0.158-0.013h-124.314v-55.501h105.882l63.488-90.112h78.438l-72.704 99.123s56.73 14.336 56.73 89.498zM512 843.52c-271.459 0-491.52-220.061-491.52-491.52s220.061-491.52 491.52-491.52c271.459 0 491.52 220.061 491.52 491.52v0c0 271.459-220.061 491.52-491.52 491.52v0zM491.52 680.704c7.168 0 14.336 0 20.48 0 10.854 0 21.709 0 32.358-1.638v-56.115c-9.425 1.482-20.598 2.512-31.942 2.857l-0.416 0.010c-7.168 0-14.336 0-20.48 0zM446.054 29.030c-151.347 31.938-263.311 164.378-263.311 322.97s111.964 291.031 261.158 322.588l2.154 0.381v-56.73c-120.245-30.636-207.752-137.963-207.752-265.728s87.506-235.092 205.855-265.317l1.896-0.411zM544.358 23.91c-10.65-1.024-20.48-1.638-32.358-1.638-7.168 0-14.336 0-20.48 0v56.934c7.168 0 14.336 0 20.48 0 0.119 0 0.26 0 0.401 0 11.261 0 22.365 0.67 33.276 1.972l-1.318-0.128zM588.8 31.488v57.754c87.831 26.308 156 93.060 183.772 178.079l0.548 1.941h-60.416c-33.453-79.425-110.648-134.169-200.628-134.169-119.894 0-217.088 97.194-217.088 217.088s97.194 217.088 217.088 217.088c81.49 0 152.493-44.9 189.619-111.311l0.564-1.099h62.669c-32.262 76.324-95.84 134.001-174.185 157.603l-1.943 0.503v57.549c146.201-35.787 252.988-165.679 252.988-320.512s-106.787-284.725-250.729-320.043l-2.26-0.469z" />
|
100
|
+
<glyph unicode="" glyph-name="rdd" data-tags="rdd" d="M744.858 596.531c27.683-28.256 52.946-59.113 75.315-92.091l1.485-2.322h5.12c1.427-0.043 3.106-0.067 4.791-0.067 93.162 0 169.027 74.053 171.945 166.506l0.007 0.268c-2.699 92.791-78.564 166.984-171.759 166.984-1.752 0-3.499-0.026-5.239-0.078l0.255 0.006c-1.333 0.037-2.901 0.058-4.474 0.058-91.109 0-165.695-70.741-171.829-160.293l-0.029-0.533c35.125-24.716 65.957-50.478 94.519-78.543l-0.107 0.105zM322.56-101.427c28.895-11.373 62.661-20.324 97.702-25.314l2.445-0.286-38.093 80.282zM556.237 563.558l-26.010 240.026c-13.517 1.229-27.238 1.638-40.96 1.638-0.214 0-0.467 0.001-0.72 0.001-162.535 0-305.742-82.753-389.787-208.425l-1.071-1.701 73.728-153.395zM390.554-16.435l208.896 184.73-40.96 376.218-378.88-120.218 210.944-440.73zM938.598 468.531c-3.072 9.626-6.144 20.48-9.626 29.082-13.034-7.394-28.127-13.747-43.989-18.276l-1.476-0.361c3.891-7.782 6.963-13.926 8.602-18.227 0.67-1.482 1.060-3.213 1.060-5.035 0-4.404-2.279-8.275-5.721-10.5l-0.049-0.030-31.334-21.709c-1.863-1.416-4.222-2.268-6.779-2.268-0.209 0-0.416 0.006-0.622 0.017l0.029-0.001c-0.462-0.090-0.993-0.142-1.536-0.142s-1.074 0.052-1.589 0.15l0.053-0.008c-3.587 1.010-6.564 3.19-8.568 6.093l-0.034 0.051c-33.105 56.935-70.682 106.119-113.602 150.060l0.143-0.147c-42.082 41.49-89.076 78.189-139.977 109.094l-3.383 1.908c-3.931 2.209-6.543 6.353-6.543 11.106 0 1.602 0.297 3.134 0.838 4.546l-0.029-0.087 11.674 31.539c1.884 5.212 6.789 8.869 12.549 8.869 1.905 0 3.716-0.4 5.354-1.121l-0.085 0.033c9.844-4.235 17.982-8.414 25.811-13.059l-1.031 0.566c6.349 17.276 14.366 32.225 24.143 45.825l-0.386-0.564c-29.526 11.359-64.068 20.314-99.878 25.312l-2.522 0.288 66.355-618.086zM398.95-33.843l45.875-95.846c14.746-1.229 29.491-2.253 44.237-2.253 0.354-0.001 0.773-0.002 1.192-0.002 49.909 0 97.962 7.941 142.967 22.63l-3.256-0.919-27.853 256.41zM618.701 160.922l28.672-264.806c182.338 67.057 310.052 239.233 310.052 441.239 0 39.662-4.923 78.174-14.192 114.958l0.691-3.237zM86.426 577.28c-31.321-52.326-53.093-113.945-61.211-179.793l-0.229-2.275 129.638 40.96zM161.792 418.765l-139.674-44.237c-1.638-12.493-1.638-25.19-1.638-37.683 0.141-191.619 115.228-356.323 280.030-428.9l3.004-1.18 72.294 64.102z" />
|
101
|
+
<glyph unicode="" glyph-name="rep" data-tags="rep" d="M920.371 138.189l-386.458 692.429c-4.331 7.795-12.517 12.983-21.914 12.983s-17.582-5.188-21.849-12.855l-0.065-0.127-386.458-692.429c-1.994-3.508-3.169-7.705-3.169-12.178 0-8.903 4.657-16.719 11.667-21.144l0.103-0.061 386.458-240.64c3.751-2.371 8.316-3.777 13.21-3.777s9.459 1.407 13.313 3.838l-0.103-0.061 386.458 240.435c7.248 4.46 12.008 12.35 12.008 21.351 0 4.496-1.187 8.715-3.266 12.359l0.065-0.123zM631.194 339.302c8.691-17.004 15.388-36.73 19.064-57.499l0.187-1.278c3.803-20.73 9.841-39.199 17.995-56.474l-0.587 1.382c11.291-20.158 27.016-36.603 45.931-48.417l0.559-0.325 2.458-1.229 122.88-56.115-297.574-185.549v105.882s0 1.024 0 1.434c-0.061 0.977-0.096 2.119-0.096 3.269 0 6.838 1.237 13.388 3.499 19.437l-0.126-0.383c3.072 2.662 14.95 10.24 24.576 16.179 34.21 19.303 63.683 41.729 89.724 67.605l-0.021-0.021c3.482 4.096 6.758 8.397 9.83 12.493-14.505 12.903-26.714 27.984-36.208 44.801l-0.451 0.869c0 1.843-1.638 3.686-2.458 5.53-4.528-8.675-9.843-16.147-16.032-22.795l0.057 0.062c-22.258-21.493-47.332-40.304-74.555-55.77l-1.835-0.96c-12.566-7.229-23.339-14.608-33.495-22.727l0.523 0.404c-14.67-16.423-23.635-38.212-23.635-62.096 0-2.58 0.105-5.136 0.31-7.663l-0.022 0.332v-105.267l-297.37 184.934 96.051 43.622h1.024c7.509 3.811 16.273 6.37 25.545 7.15l0.26 0.018c22.472-5.318 42.091-15.281 58.616-28.87l-0.248 0.198c23.718-19.632 50.661-36.739 79.623-50.239l2.297-0.961c5.783 18.96 16.146 35.081 29.824 47.649l0.076 0.069 4.096 3.482c-30.141 11.73-56.114 27.5-78.794 46.993l0.356-0.299c-18.432 14.336-61.44 40.96-95.232 40.96-19.528-0.513-37.838-5.219-54.226-13.244l0.773 0.342-65.741-28.058 293.274 525.107v-204.8s0-1.024 0-1.434c0.061-0.977 0.096-2.119 0.096-3.269 0-6.838-1.237-13.388-3.499-19.437l0.126 0.383c-3.072-2.662-14.95-10.24-24.576-16.179-34.215-19.475-63.689-42.1-89.691-68.187l-0.011-0.011c-28.074-33.978-45.102-77.983-45.102-125.964 0-1.508 0.017-3.012 0.050-4.512l-0.004 0.223c22.159-3.104 42.183-9.724 60.392-19.322l-1 0.48c1.434 56.525 10.035 85.197 30.72 108.954 22.259 21.491 47.333 40.302 74.555 55.77l1.836 0.96c12.566 7.232 23.34 14.61 33.497 22.728l-0.524-0.405c14.556 16.392 23.448 38.1 23.448 61.884 0 2.655-0.111 5.284-0.328 7.883l0.023-0.34v204.8l293.478-525.312-91.955 40.96c-9.44 6.533-17.146 14.893-22.744 24.62l-0.194 0.366c-4.719 11.285-8.756 24.598-11.455 38.391l-0.219 1.34c-5.092 29.514-14.663 55.932-28.089 79.898l0.646-1.255c-24.382 39.427-60.998 69.284-104.478 84.562l-1.403 0.43c-5.715-19.118-16.090-35.386-29.828-48.062l-0.073-0.066-5.325-4.301c39.013-8.547 71.25-32.542 90.578-65.099l0.353-0.642z" />
|
102
|
+
<glyph unicode="" glyph-name="rise" data-tags="rise" d="M418.202 765.901c0-42.868-34.751-77.619-77.619-77.619s-77.619 34.751-77.619 77.619c0 42.868 34.751 77.619 77.619 77.619s77.619-34.751 77.619-77.619zM762.266-61.491c0-42.868-34.751-77.619-77.619-77.619s-77.619 34.751-77.619 77.619c0 42.868 34.751 77.619 77.619 77.619s77.619-34.751 77.619-77.619zM332.39 424.499c16.010 0.064 30.752 5.442 42.565 14.462l-0.171-0.126 358.81 272.998c20.1 12.641 33.262 34.701 33.262 59.836 0 38.909-31.542 70.451-70.451 70.451-18.669 0-35.643-7.262-48.249-19.115l0.037 0.034-358.605-271.974c-16.771-13.047-27.457-33.231-27.457-55.912 0-38.883 31.408-70.43 70.239-70.655h0.021zM332.39 145.152c16.010 0.064 30.752 5.442 42.565 14.462l-0.171-0.126 358.81 272.794c16.976 13.012 27.814 33.298 27.814 56.115 0 38.944-31.57 70.514-70.514 70.514-16.127 0-30.989-5.414-42.869-14.523l0.168 0.124-358.605-272.794c-16.91-13.082-27.692-33.378-27.692-56.193 0-16.034 5.325-30.824 14.304-42.698l-0.129 0.178c13.193-16.864 33.476-27.656 56.288-27.853h0.032zM747.11 246.528c-13.082 16.91-33.378 27.692-56.193 27.692-16.034 0-30.824-5.325-42.698-14.304l0.178 0.129-358.81-272.998c-16.91-13.082-27.692-33.378-27.692-56.193 0-16.034 5.325-30.824 14.304-42.698l-0.129 0.178c12.962-16.93 33.182-27.739 55.926-27.739 15.995 0 30.741 5.346 42.549 14.348l-0.171-0.125 358.81 272.384c17.463 12.85 28.669 33.322 28.669 56.412 0 16.249-5.55 31.202-14.857 43.067l0.115-0.152z" />
|
103
|
+
<glyph unicode="" glyph-name="sjcx" data-tags="sjcx" d="M158.72 174.643c-14.743-0.097-26.657-12.072-26.657-26.828 0-14.817 12.012-26.829 26.829-26.829s26.829 12.012 26.829 26.829c0 4.98-1.357 9.644-3.722 13.641l0.068-0.125c-4.738 8.019-13.339 13.313-23.175 13.313-0.060 0-0.121 0-0.181-0.001h0.009zM538.419 759.552c-0.002 14.816-12.013 26.826-26.829 26.826-14.817 0-26.829-12.012-26.829-26.829s12.012-26.829 26.829-26.829c0.144 0 0.288 0.001 0.431 0.003h-0.022c14.64 0.231 26.419 12.153 26.419 26.826 0 0.001 0 0.002 0 0.003v0zM866.099 526.285c14.794 0.031 26.775 12.031 26.775 26.829 0 14.817-12.012 26.829-26.829 26.829s-26.829-12.012-26.829-26.829c0-4.898 1.312-9.489 3.604-13.441l-0.069 0.129c4.661-8.129 13.289-13.517 23.174-13.517 0.061 0 0.121 0 0.182 0.001h-0.009zM171.213 577.28c-3.808 2.201-8.376 3.499-13.248 3.499-14.817 0-26.829-12.012-26.829-26.829s12.012-26.829 26.829-26.829c9.913 0 18.569 5.376 23.214 13.371l0.069 0.128c2.229 3.828 3.546 8.425 3.546 13.33 0 9.945-5.412 18.627-13.451 23.261l-0.13 0.069zM877.158 169.523c-3.867 2.317-8.532 3.686-13.517 3.686v0c-14.671-0.191-26.491-12.128-26.491-26.827 0-14.817 12.012-26.829 26.829-26.829 9.584 0 17.993 5.025 22.739 12.584l0.065 0.112c2.293 3.87 3.648 8.53 3.648 13.507 0 9.821-5.277 18.409-13.15 23.084l-0.124 0.068zM484.762-55.552c0-0.001 0-0.002 0-0.003 0-14.817 12.012-26.829 26.829-26.829 0.144 0 0.288 0.001 0.431 0.003h-0.022c14.817 0 26.829 12.012 26.829 26.829s-12.012 26.829-26.829 26.829c-14.817 0-26.829-12.012-26.829-26.829v0zM905.83 218.88c-2.765 1.63-6.064 3.277-9.476 4.707l-0.559 0.208v251.085c4.576 1.694 8.424 3.487 12.103 5.546l-0.43-0.221c26.345 14.515 43.898 42.103 43.898 73.79 0 46.374-37.594 83.968-83.968 83.968-19.391 0-37.247-6.573-51.461-17.612l0.19 0.142-222.208 127.795c0.119 1.685 0.186 3.65 0.186 5.632s-0.068 3.948-0.201 5.895l0.014-0.263c0 46.374-37.594 83.968-83.968 83.968s-83.968-37.594-83.968-83.968v0c-0.118-1.685-0.186-3.65-0.186-5.632s0.067-3.948 0.2-5.895l-0.014 0.263-219.955-126.976c-14.065 11.005-32.007 17.647-51.499 17.647-46.374 0-83.968-37.594-83.968-83.968 0-31.368 17.201-58.719 42.685-73.135l0.418-0.218c3.131-1.815 6.839-3.604 10.684-5.123l0.58-0.202v-250.88c-31.609-12.528-53.555-42.834-53.555-78.267 0-46.374 37.594-83.968 83.968-83.968 15.917 0 30.8 4.429 43.483 12.122l-0.373-0.21c3.89 2.329 7.234 4.695 10.387 7.285l-0.147-0.117 219.955-125.542c-0.771-4.272-1.211-9.19-1.211-14.211 0-46.374 37.594-83.968 83.968-83.968s83.968 37.594 83.968 83.968c0 0.604-0.006 1.207-0.019 1.808l0.001-0.090c0.141 1.839 0.221 3.982 0.221 6.144s-0.080 4.305-0.238 6.427l0.017-0.283 216.064 124.723c3.138-2.65 6.617-5.151 10.284-7.372l0.365-0.205c11.606-6.446 25.452-10.24 40.185-10.24 46.374 0 83.968 37.594 83.968 83.968 0 29.927-15.656 56.197-39.224 71.066l-0.347 0.204zM918.733 114.227c-11.277-19.133-31.779-31.768-55.232-31.768-35.29 0-63.898 28.608-63.898 63.898 0 5.314 0.649 10.477 1.871 15.414l-0.092-0.439-102.4 59.392c-20.552-20.846-49.102-33.761-80.668-33.761-15.209 0-29.717 2.998-42.967 8.435l0.755-0.274c-13.956-4.633-30.041-7.455-46.737-7.78l-0.162-0.002v-181.658c26.471-8.207 45.363-32.472 45.363-61.15 0-35.29-28.608-63.898-63.898-63.898s-63.898 28.608-63.898 63.898c0 28.678 18.893 52.943 44.91 61.029l0.453 0.121v184.32c-15.451 3.202-29.148 8.154-41.85 14.757l0.89-0.421c-7.91-1.637-17.002-2.574-26.311-2.574-32.245 0-61.865 11.24-85.155 30.015l0.26-0.203-120.832-69.837c1.096-4.444 1.725-9.547 1.725-14.796 0-35.516-28.791-64.307-64.307-64.307s-64.307 28.791-64.307 64.307c0 35.516 28.791 64.307 64.307 64.307 17.011 0 32.479-6.605 43.98-17.39l-0.035 0.032 113.254 65.536c-15.244 21.603-24.365 48.476-24.365 77.48 0 38.026 15.679 72.391 40.925 96.981l0.029 0.029-128.614 73.728c-11.382-10.634-26.716-17.163-43.575-17.163-35.29 0-63.898 28.608-63.898 63.898s28.608 63.898 63.898 63.898c35.29 0 63.898-28.608 63.898-63.898 0-5.172-0.615-10.201-1.775-15.017l0.089 0.436 143.36-81.92c17.78 9.712 38.882 15.58 61.319 15.973l0.121 0.002c19.267 16.014 42.669 27.745 68.353 33.389l1.075 0.198v190.874c-26.471 8.207-45.363 32.472-45.363 61.15 0 35.29 28.608 63.898 63.898 63.898s63.898-28.608 63.898-63.898c0-28.678-18.893-52.943-44.91-61.029l-0.453-0.121v-186.778c48.981-0.86 92.54-23.355 121.644-58.311l0.212-0.262 151.757 86.016c-1.060 4.371-1.667 9.389-1.667 14.548 0 35.516 28.791 64.307 64.307 64.307s64.307-28.791 64.307-64.307c0-35.516-28.791-64.307-64.307-64.307-17.138 0-32.71 6.704-44.237 17.632l0.029-0.027-149.914-84.992c4.039-7.801 7.731-16.969 10.564-26.508l0.291-1.14c30.126-20.616 49.638-54.824 49.638-93.59 0-18.12-4.263-35.244-11.841-50.424l0.296 0.655 96.461-57.549c11.344 10.596 26.627 17.102 43.429 17.102 11.846 0 22.936-3.234 32.437-8.867l-0.295 0.162c19.085-11.288 31.683-31.764 31.683-55.183 0-11.893-3.249-23.026-8.908-32.562l0.162 0.295zM638.976 361.011c0 3.277 0 6.554-1.434 9.83s0 4.506-1.638 6.758v2.458c0 2.867-1.638 5.53-2.662 8.397v0c-5.791 15.226-14.208 28.251-24.806 39.142l0.025-0.026c-2.458 2.458-4.915 4.915-7.578 7.168v0l-7.987 6.144-8.397 5.325-11.059 5.939-9.421 3.686-11.059 3.277-10.65 1.843c-4.438 0.646-9.561 1.016-14.771 1.016-14.296 0-27.943-2.78-40.43-7.828l0.724 0.259-3.072-1.229-8.397-3.891-4.301-2.253-4.301-2.662-5.53-3.686-2.867-2.048-7.168-6.144-2.048-2.048c-2.458-2.458-4.915-4.915-7.168-7.373-4.609 0.894-9.918 1.415-15.345 1.434h-4.521c-21.086-0.861-40.076-9.186-54.544-22.384l0.068 0.061c-7.172-6.595-13.185-14.307-17.795-22.885l-0.227-0.462c-1.229-2.458-2.458-4.915-3.482-7.578v-2.458q-1.229-3.277-2.048-6.554v-3.072c0-2.253 0-4.506-1.229-6.758s0-1.843 0-2.867c-0.088-1.469-0.138-3.186-0.138-4.915s0.050-3.447 0.148-5.151l-0.011 0.236c0-2.867 0-5.53 0-8.192s0-1.843 0-2.867 0-3.277 0-5.12v-3.482l1.024-4.096 1.229-3.891 1.229-3.072 1.843-4.301v-1.843c8.72-18.023 22.937-32.24 40.444-40.734l0.516-0.226 8.397-3.482 8.192-2.253 7.782-1.434h11.059c0.037 0 0.081 0 0.124 0 12.083 0 23.585 2.485 34.024 6.973l-0.561-0.214 7.578-5.12 7.168-4.096c14.793-7.778 32.324-12.343 50.92-12.343 10.447 0 20.558 1.441 30.144 4.134l-0.783-0.188c4.683 1.232 8.503 2.492 12.225 3.947l-0.756-0.26c4.686 1.813 8.53 3.603 12.242 5.605l-0.569-0.28c10.663-8.418 24.295-13.506 39.114-13.517h0.002c1.286-0.091 2.788-0.143 4.301-0.143s3.014 0.052 4.502 0.154l-0.201-0.011h2.048l7.987 1.843c3.173 0.984 5.819 2.027 8.37 3.235l-0.383-0.163h1.229c2.803 1.374 5.15 2.736 7.395 4.239l-0.227-0.143c10.638 7.091 18.896 16.997 23.804 28.66l0.158 0.422c1.398 3.312 2.601 7.221 3.414 11.272l0.067 0.402v1.229c0 1.638 0 3.277 0 4.915 0.051 0.948 0.080 2.058 0.080 3.174s-0.029 2.226-0.086 3.329l0.006-0.154c0 0.047 0 0.102 0 0.157 0 26.654-16.32 49.496-39.512 59.079l-0.424 0.155z" />
|
104
|
+
<glyph unicode="" glyph-name="sls" data-tags="sls" d="M512 843.52c-271.459 0-491.52-220.061-491.52-491.52s220.061-491.52 491.52-491.52c271.459 0 491.52 220.061 491.52 491.52v0c0 271.459-220.061 491.52-491.52 491.52v0zM512 40.704c-168.4 0.174-304.847 136.728-304.847 305.152 0 125.36 75.593 233.065 183.682 280.018l1.972 0.763c-37.020-29.092-60.579-73.866-60.579-124.143 0-11.594 1.253-22.895 3.63-33.775l-0.191 1.041c8.293-55.913 45.047-101.644 94.81-122.495l1.036-0.385c55.091-26.010 107.11-38.093 145.613-66.355 74.547-54.272 56.32-149.504 10.854-201.933-15.663-16.341-34.727-29.289-56.069-37.72l-1.070-0.373zM579.174 48.077c42.394 17.818 103.629 55.91 108.339 161.587 6.554 141.312-84.173 173.875-182.886 201.114s-130.048 96.256-102.4 163.84 117.555 65.946 166.912 35.635 72.909-112.64 72.909-112.64l17.818 5.12-11.674 115.507c100.777-51.284 168.611-154.234 168.611-273.026 0-144.631-100.553-265.778-235.564-297.344l-2.065-0.407z" />
|
105
|
+
<glyph unicode="" glyph-name="steem" data-tags="steem" d="M181.248 737.024c-10.035 4.71-133.12-97.075-133.12-172.032 0-102.4 143.36-334.643 168.141-424.346 20.48-77.21-35.635-169.574-20.48-173.875 14.336-9.011 148.685 126.976 153.805 184.32 6.963 92.365-156.877 361.882-169.984 431.309-15.565 81.92 11.674 152.166 0 153.805zM488.858 843.52c-12.493 6.144-169.984-122.88-169.984-219.341 0-130.867 184.32-427.008 214.63-541.491 26.419-99.328-45.056-216.474-25.6-222.208 18.227-11.674 189.44 161.587 195.994 235.725 8.602 117.965-200.294 461.21-216.678 550.093-19.046 102.4 15.565 193.741 1.638 196.403zM806.707 737.024c-9.626 4.71-133.12-97.075-133.12-172.032 0-102.4 143.36-334.643 168.141-424.346 20.48-77.21-35.635-169.574-20.48-173.875 14.336-9.011 148.685 126.976 153.805 184.32 7.987 93.184-155.853 362.701-169.165 432.128-15.155 81.92 11.674 152.166 0 153.805z" />
|
106
|
+
<glyph unicode="" glyph-name="strat" data-tags="strat" d="M984.269 352c-6.886 3.677-15.062 5.837-23.742 5.837-9.85 0-19.051-2.782-26.859-7.602l0.22 0.127c-2.867-1.638-404.070-225.28-419.84-234.496-2.867-1.843-4.301-2.662-10.445 0l-417.382 233.472c-5.36 2.476-9.012 7.805-9.012 13.987 0 0.051 0 0.101 0.001 0.152v-0.008 67.174l401.203-225.28c8.895-5.118 19.551-8.152 30.913-8.192h0.012c11.973 0.070 23.188 3.251 32.896 8.776l-0.333-0.174 436.634 242.483c14.89 7.887 24.884 23.245 24.986 40.946v0.014c-0.050 16.012-9.279 29.857-22.7 36.552l-0.237 0.107-445.030 246.374c-7.526 4.403-16.549 7.050-26.18 7.168h-0.034c-0.036 0-0.078 0-0.12 0-8.68 0-16.828-2.278-23.878-6.27l0.241 0.126-444.621-249.037c-12.339-7.212-20.497-20.394-20.497-35.482 0-0.414 0.006-0.826 0.018-1.237l-0.001 0.060v-122.88c-0.002-0.211-0.004-0.461-0.004-0.711 0-27.311 15.361-51.033 37.915-62.999l0.386-0.187 417.792-234.291c9.525-5.949 21.093-9.476 33.485-9.476s23.96 3.528 33.755 9.633l-0.27-0.157c9.421 5.53 329.728 184.32 403.251 225.28v-61.44s0-3.072-11.059-10.035c-14.131-8.806-399.565-225.28-417.792-235.315-7.782-4.301-8.806-3.686-11.878-1.843l-452.813 254.362-27.853-49.357 452.403-254.362c9.123-5.559 20.134-8.895 31.917-9.011h0.032c13.12 0.405 25.283 4.158 35.768 10.427l-0.338-0.187c3.072 1.638 405.094 227.328 421.069 237.158 21.353 11.24 35.96 32.754 37.267 57.788l0.007 0.17v85.811c0.013 0.387 0.021 0.842 0.021 1.298 0 14.586-7.624 27.39-19.103 34.647l-0.168 0.099zM509.747 720.64l422.093-233.267-417.587-231.629c-1.14-0.693-2.519-1.103-3.994-1.103s-2.853 0.41-4.028 1.122l0.035-0.020-414.106 231.629z" />
|
107
|
+
<glyph unicode="" glyph-name="sys" data-tags="sys" d="M555.418 705.894v-11.674c8.332-1.601 14.541-8.832 14.541-17.514 0-9.84-7.977-17.818-17.818-17.818s-17.818 7.977-17.818 17.818c0 8.682 6.209 15.913 14.429 17.496l0.112 0.018v12.493c-9.83 0-20.48 1.434-29.696 1.638v-40.96c13.61-2.603 23.757-14.411 23.757-28.59 0-16.061-13.020-29.082-29.082-29.082s-29.082 13.020-29.082 29.082c0 14.179 10.147 25.987 23.575 28.561l0.182 0.029v40.96q-15.155 0-29.901-1.434v-12.902c8.332-1.601 14.541-8.832 14.541-17.514 0-9.84-7.977-17.818-17.818-17.818s-17.818 7.977-17.818 17.818c0 8.682 6.209 15.913 14.429 17.496l0.112 0.018v12.288c-178.33-21.529-315.187-171.948-315.187-354.331 0-197.034 159.728-356.762 356.762-356.762s356.762 159.728 356.762 356.762c0 182.383-136.857 332.802-313.478 354.163l-1.709 0.168zM437.248 677.632l75.981-113.254 75.571 112.64c25.765-6.111 48.293-14.264 69.55-24.622l-1.966 0.865-110.387-163.84v-59.802c-9.616 4.133-20.809 6.537-32.563 6.537s-22.947-2.403-33.114-6.746l0.551 0.209v58.163l-112.23 166.298c19.605 9.508 42.497 17.605 66.377 23.118l2.231 0.434zM184.32 290.56h63.488c7.631-29.1 18.141-54.575 31.553-78.188l-0.833 1.593c15.412-21.784 31.555-40.916 49.165-58.585l-0.013 0.013 61.44 76.39v86.835h-209.51q-1.638 16.589-1.638 33.382c0 0.039 0 0.086 0 0.133 0 123.16 66.696 230.742 165.939 288.599l1.588 0.855 112.23-161.792v-57.549h-68.608v46.285l-56.525 79.258c-26.798-19.776-48.524-44.841-63.939-73.777l-0.573-1.179c-10.642-26.839-18.506-58.020-22.169-90.473l-0.155-1.687h189.85c-3.46-8.846-5.465-19.088-5.465-29.798 0-24.929 10.863-47.32 28.114-62.699l0.083-0.073v-71.885l-120.218-149.299c-79.163 49.142-135.615 128.484-153.47 221.547l-0.334 2.095zM407.347 44.8h-28.262l-16.384 7.578 10.854 13.107h33.792v-20.48zM407.347 74.701h-26.419l23.142 28.058 3.277-1.434v-26.624zM457.318 21.862c-16.036 2.641-29.842 5.916-43.281 10.033l2.321-0.612v5.325h40.96zM457.318 45.005h-40.96v20.48h40.96zM457.318 74.906h-40.96v23.552c10.944-4.425 24.603-8.845 38.607-12.397l2.353-0.506zM507.29 17.562c-14.639 0.2-28.823 1.31-42.73 3.277l1.77-0.205v15.974h40.96zM507.29 45.005h-40.96v20.48h40.96zM507.29 74.906h-40.96v7.987c12.032-2.787 26.087-4.695 40.477-5.308l0.483-0.016zM421.478 123.853l58.982 75.776v106.496c-14.27 10.306-23.45 26.895-23.45 45.628 0 30.992 25.124 56.115 56.115 56.115s56.115-25.124 56.115-56.115c0-18.733-9.179-35.322-23.285-45.514l-0.165-0.113v-101.171l60.416-81.92c-27.245-11.525-58.837-18.904-91.952-20.457l-0.618-0.023c-33.612 1.696-64.979 9.519-93.599 22.369l1.644-0.66zM557.261 21.453c-12.137-1.762-26.321-2.872-40.725-3.069l-0.235-0.003v18.432h40.96zM557.261 45.824h-40.96v20.48h40.96zM557.261 75.725h-40.96v2.458c14.679 0.309 28.78 2.009 42.409 4.975l-1.449-0.264zM607.232 32.102c-11.088-3.485-24.894-6.76-39.002-9.147l-1.958-0.274v13.926h40.96zM607.232 45.824h-40.96v20.48h40.96zM607.232 75.725h-40.96v9.216c16.174 3.988 29.83 8.478 43.031 13.853l-2.071-0.746zM644.915 44.8h-28.262v20.48h33.587l10.445-13.517zM616.653 75.52v26.010l4.506 2.048 21.914-28.058zM701.030 155.597c17.185 17.508 32.996 36.505 47.175 56.729l0.953 1.434c12.598 22.081 23.111 47.628 30.217 74.559l0.503 2.241h59.802c-18.145-93.987-73.586-172.443-149.976-220.783l-1.371-0.81-118.784 147.661v71.475c17.334 15.451 28.198 37.843 28.198 62.772 0 10.71-2.005 20.952-5.661 30.37l0.196-0.573h189.85c-3.897 34.086-11.829 65.186-23.398 94.452l0.87-2.496c-15.652 30.032-36.969 55.081-62.733 74.558l-0.551 0.399-56.525-79.258v-46.285h-69.837v57.754l111.206 160.358c99.336-59.058 164.864-165.831 164.864-287.908 0-0.086 0-0.172 0-0.259v0.013q0-16.998-1.638-33.382h-206.438v-86.835zM493.978 639.949c0-11.311 9.169-20.48 20.48-20.48s20.48 9.169 20.48 20.48c0 11.311-9.169 20.48-20.48 20.48v0c-11.311 0-20.48-9.169-20.48-20.48v0zM463.258 676.813c0-6.786 5.502-12.288 12.288-12.288s12.288 5.502 12.288 12.288c0 6.786-5.502 12.288-12.288 12.288v0c-6.786 0-12.288-5.502-12.288-12.288v0zM512 843.52c-271.459 0-491.52-220.061-491.52-491.52s220.061-491.52 491.52-491.52c271.459 0 491.52 220.061 491.52 491.52v0c0 271.459-220.061 491.52-491.52 491.52v0zM512-30.362c-211.172 0-382.362 171.189-382.362 382.362s171.189 382.362 382.362 382.362c211.172 0 382.362-171.189 382.362-382.362v0c0-211.172-171.189-382.362-382.362-382.362v0zM540.058 676.813c0-6.786 5.502-12.288 12.288-12.288s12.288 5.502 12.288 12.288c0 6.786-5.502 12.288-12.288 12.288v0c-6.786 0-12.288-5.502-12.288-12.288v0z" />
|
108
|
+
<glyph unicode="" glyph-name="trig" data-tags="trig" d="M555.213 408.115c0 0.049 0 0.106 0 0.163 0 23.866-19.347 43.213-43.213 43.213s-43.213-19.347-43.213-43.213c0-16.364 9.096-30.603 22.507-37.938l0.225-0.113-12.288-93.594h65.946l-12.698 93.594c13.59 7.422 22.669 21.587 22.733 37.879v0.009zM512 595.507c-43.814-0.682-79.070-36.36-79.070-80.272 0-0.579 0.006-1.157 0.018-1.734l-0.001 0.086v-11.469h157.901v11.469c0.011 0.491 0.017 1.070 0.017 1.651 0 43.84-35.14 79.473-78.79 80.268l-0.075 0.001zM901.12 761.6c-21.446 8.243-39.983 18.807-56.615 31.708l0.5-0.373c-16.979 15.235-32.17 31.79-45.651 49.706l-0.634 0.88h-573.44c-14.118-18.458-29.302-34.746-45.921-49.45l-0.364-0.316c-16.13-12.828-34.659-23.655-54.634-31.632l-1.481-0.522s-66.56-232.038-36.045-389.12 79.053-266.24 199.885-376.218c63.98-55.995 138.603-101.862 220.141-133.997l5.139-1.785c86.677 33.92 161.3 79.787 226.16 136.537l-0.88-0.755c120.832 109.978 169.165 217.907 199.885 376.218s-36.045 389.12-36.045 389.12zM701.645 266.394c0-26.354-21.364-47.718-47.718-47.718h-284.058c-26.354 0-47.718 21.364-47.718 47.718v0 200.909c0 19.341 15.679 35.021 35.021 35.021v0h26.010v11.469c-0.065 1.531-0.102 3.327-0.102 5.131 0 71.032 57.583 128.614 128.614 128.614s128.614-57.583 128.614-128.614c0-1.805-0.037-3.601-0.111-5.387l0.008 0.256v-11.469h26.010c19.341 0 35.021-15.679 35.021-35.021v0z" />
|
109
|
+
<glyph unicode="" glyph-name="ubq" data-tags="ubq" d="M541.696 843.52l-456.090-257.024v-395.469l456.090 263.578v388.915zM381.542 11.622v302.694l-255.795-148.48 255.795-154.214zM482.304 249.395v-388.915l455.885 257.024v395.469l-455.885-263.578zM642.458 692.378v-302.694l255.795 148.48-255.795 154.214z" />
|
110
|
+
<glyph unicode="" glyph-name="unity" data-tags="unity" d="M512 843.52c-271.459 0-491.52-220.061-491.52-491.52s220.061-491.52 491.52-491.52c271.459 0 491.52 220.061 491.52 491.52v0c0 271.459-220.061 491.52-491.52 491.52v0zM204.8 234.445c-27.363 30.766-44.37 71.273-45.258 115.735l-0.003 0.182c0.342 34.903 11 67.25 29.065 94.217l-0.393-0.623c1.385-24.062 11.523-45.52 27.248-61.45l-0.010 0.010c30.515-30.72 85.402-45.67 167.936-45.67 58.778 0 100.966-11.878 122.88-34.202 10.386-11.324 16.751-26.483 16.751-43.129 0-2.41-0.133-4.789-0.393-7.13l0.026 0.288s-7.373-85.811-134.963-85.811c-2.365-0.077-5.145-0.121-7.935-0.121-67.481 0-128.955 25.718-175.154 67.888l0.203-0.183zM512 113.408c-28.43 0.020-56.305 2.328-83.471 6.75l2.985-0.401c115.098 18.432 140.493 106.291 140.493 132.506 0.202 2.5 0.317 5.412 0.317 8.351 0 29.6-11.672 56.473-30.664 76.269l0.036-0.038c-31.539 32.973-84.992 49.766-158.72 49.766-83.968 0-118.374 16.794-132.301 30.72-8.586 10.484-13.79 24.028-13.79 38.786 0 3.224 0.248 6.391 0.727 9.481l-0.044-0.344c0 18.227 24.781 52.634 118.374 52.634 73.728 0 144.998-33.382 217.498-102.4 29.286-27.853 128.819-151.552 191.283-230.605-68.705-44.88-152.83-71.576-243.19-71.576-3.352 0-6.696 0.037-10.030 0.11l0.497-0.009zM778.24 248.576c-54.067 67.994-140.902 175.718-170.803 204.8-77.619 73.523-155.238 111.002-236.749 115.302 42.033 12.851 90.36 20.323 140.41 20.48h0.083c3.155 0.081 6.869 0.128 10.594 0.128 95.934 0 184.686-30.752 256.936-82.935l-1.291 0.887zM828.416 247.347v206.029c21.478-28.173 34.675-63.675 35.428-102.226l0.003-0.174c-0.235-39.063-13.195-75.054-34.939-104.086l0.327 0.457z" />
|
111
|
+
<glyph unicode="" glyph-name="usdt" data-tags="usdt" d="M1003.52 376.986c0 61.44-168.755 113.664-392.806 125.542v98.714h279.757v204.8h-765.133v-204.8h279.757v-99.328c-220.774-12.493-384.614-63.693-384.614-124.928s163.84-112.435 384.614-125.133v-354.714h204.8v354.099c224.87 11.878 393.626 63.693 393.626 125.747zM512 315.546c-240.64 0-435.61 37.274-435.61 83.149 0 38.912 139.878 71.68 328.704 80.691v-119.398c33.997-1.843 69.837-2.867 106.906-2.867s67.174 0 98.714 2.458v120.422c192.922-8.602 336.896-40.96 336.896-81.92 0-45.056-194.97-82.125-435.61-82.125z" />
|
112
|
+
<glyph unicode="" glyph-name="vrc" data-tags="vrc" d="M512 843.52c-271.459 0-491.52-220.061-491.52-491.52s220.061-491.52 491.52-491.52c271.459 0 491.52 220.061 491.52 491.52v0c0 271.459-220.061 491.52-491.52 491.52v0zM512 498.842c26.128 0 47.309-21.181 47.309-47.309s-21.181-47.309-47.309-47.309c-26.128 0-47.309 21.181-47.309 47.309v0c0 26.128 21.181 47.309 47.309 47.309v0zM726.016 179.558c-26.128 0-47.309 21.181-47.309 47.309s21.181 47.309 47.309 47.309c26.128 0 47.309-21.181 47.309-47.309v0c0-26.128-21.181-47.309-47.309-47.309v0zM512-16.64l-297.984 580.813h155.648l143.36-293.888 140.083 293.888h156.672z" />
|
113
|
+
<glyph unicode="" glyph-name="vtc" data-tags="vtc" d="M932.045 607.386l-395.469-559.923c-5.279-7.114-13.652-11.674-23.090-11.674-0.018 0-0.037 0-0.055 0h0.003c-10.222 0.475-19.275 5.115-25.566 12.248l-0.034 0.040-68.198 90.522 410.829 587.776c-84.899 71.847-195.636 115.524-316.574 115.524-271.459 0-491.52-220.061-491.52-491.52s220.061-491.52 491.52-491.52c271.459 0 491.52 220.061 491.52 491.52 0 95.088-27.002 183.87-73.756 259.096l1.21-2.090zM145.818 364.493l42.803 47.923 36.659-47.923zM201.523 425.933v1.024h193.536l107.11-136.397-94.618-136.192z" />
|
114
|
+
<glyph unicode="" glyph-name="waves" data-tags="waves" d="M828.006 571.955l-240.435 240.435c-19.356 19.223-46.025 31.103-75.469 31.103s-56.113-11.881-75.475-31.109l-239.815-239.815c-6.444-6.448-10.43-15.354-10.43-25.19s3.986-18.742 10.43-25.191l72.704-72.704 48.538-44.851c6.636-6.19 15.572-9.99 25.395-9.99s18.759 3.8 25.417 10.010l-0.022-0.020 96.87 89.702c12.317 11.463 28.889 18.498 47.104 18.498s34.787-7.035 47.146-18.537l-0.042 0.039 96.87-89.702c6.623-6.133 15.519-9.895 25.293-9.895s18.669 3.762 25.317 9.917l-0.024-0.022 48.538 44.851 72.294 72.294c6.322 6.427 10.226 15.25 10.226 24.985 0 9.837-3.986 18.743-10.431 25.191v0zM60.006 268.237l376.627-376.627c19.356-19.223 46.025-31.103 75.469-31.103s56.113 11.881 75.475 31.109l376.621 376.621c65.331 65.331 19.251 84.582-28.672 130.048l-58.982 56.115c-6.617 6.234-15.559 10.065-25.395 10.065s-18.778-3.831-25.414-10.083l0.019 0.017-96.87-89.702c-12.317-11.463-28.889-18.498-47.104-18.498s-34.787 7.035-47.146 18.537l-96.624 89.663c-6.623 6.133-15.519 9.895-25.293 9.895s-18.669-3.762-25.317-9.917l0.024 0.022-96.87-89.702c-12.317-11.463-28.889-18.498-47.104-18.498s-34.787 7.035-47.146 18.537l0.042-0.039-97.075 89.702c-6.636 6.19-15.572 9.99-25.395 9.99s-18.759-3.8-25.417-10.010l0.022 0.020-54.067-50.381c-50.176-46.285-102.605-67.584-34.406-135.782z" />
|
115
|
+
<glyph unicode="" glyph-name="xcp" data-tags="xcp" d="M858.522 595.507h-200.294l-348.16-348.16h-88.883l-64.512 65.126v81.92l64.717 64.717h84.582l45.466-45.67c2.936-3.256 7.169-5.293 11.878-5.293s8.942 2.038 11.866 5.279l0.013 0.014 72.704 72.499c2.884 2.92 4.665 6.935 4.665 11.366s-1.781 8.446-4.667 11.368l0.002-0.002-85.402 86.426h-197.632l-144.384-144.384v-194.56l143.36-143.36h202.547l348.16 348.16h87.45l65.331-65.331v-84.582l-63.283-63.488h-98.304l-37.478 37.478c-2.92 2.884-6.935 4.665-11.366 4.665s-8.446-1.781-11.368-4.667l-84.99-84.99v-198.451c0-8.936 7.244-16.179 16.179-16.179v0h103.629c8.848 0.115 15.976 7.314 15.976 16.178 0 0.072 0 0.145-0.001 0.217v-0.011 81.92c0 15.383 12.47 27.853 27.853 27.853v0h135.987l143.36 143.36v195.584z" />
|
116
|
+
<glyph unicode="" glyph-name="xem" data-tags="xem" d="M361.267 383.334l5.939 3.482c64.876 38.938 107.64 108.878 107.725 188.813v0.013c-0.006 0.678-0.009 1.479-0.009 2.281 0 107.701 58.096 201.832 144.658 252.767l1.373 0.747c-32.657 3.753-70.535 5.909-108.911 5.939h-0.042c-176.444-0.113-342.473-44.603-487.561-122.913l5.462 2.695c-6.963-3.686-7.373-4.506-7.987-5.53-0.959-1.41-1.531-3.151-1.531-5.025 0-0.467 0.036-0.926 0.104-1.374l-0.006 0.050c2.011-62.992 9.371-122.999 21.664-181.186l-1.184 6.697c2.458-12.083 5.325-24.781 8.806-38.707 34.702-80.537 113.225-135.979 204.746-136.397h0.054c39.172 0.069 75.936 10.311 107.813 28.222l-1.112-0.574zM625.459 319.232l-7.168 4.301c-30.759 17.215-67.495 27.353-106.598 27.353s-75.839-10.138-107.722-27.929l1.124 0.576-8.192-4.71c-41.131-23.271-90.326-36.983-142.724-36.983-53.572 0-103.797 14.334-147.047 39.377l1.413-0.755c84.899-187.602 217.792-340.831 383.243-448.109l4.034-2.451c3.817-2.45 8.475-3.906 13.474-3.906 1.171 0 2.323 0.080 3.451 0.234l-0.131-0.015c0.88-0.122 1.896-0.191 2.929-0.191 4.717 0 9.095 1.45 12.713 3.927l-0.077-0.050c49.001 31.336 91.533 63.646 131.291 99.006l-1.038-0.906c9.216 8.192 18.842 16.998 29.286 27.238 28.386 36.792 45.498 83.551 45.498 134.306 0 79.912-42.418 149.917-105.967 188.727l-0.971 0.551zM1002.086 711.629s0 1.638-7.987 5.53c-43.208 23.503-94.231 45.866-147.214 64.007l-7.205 2.144c-11.878 3.891-24.166 7.782-36.659 11.674-10.13 1.655-21.832 2.621-33.751 2.662h-0.041c-120.717-0.566-218.549-97.751-220.158-218.165l-0.002-0.152v-2.048c-0.006-0.586-0.009-1.277-0.009-1.97 0-79.417 42.168-148.985 105.335-187.537l0.965-0.548 6.963-4.096c85.488-52.21 142.010-144.49 143.358-250.070l0.002-0.196c116.902 158.83 189.907 356.379 197.783 570.561l0.054 1.855c0.068 0.412 0.108 0.888 0.108 1.372 0 1.86-0.576 3.585-1.56 5.006l0.019-0.029z" />
|
117
|
+
<glyph unicode="" glyph-name="xmr" data-tags="xmr" d="M192.307 197.581v412.672l319.693-319.693 319.488 319.488v-412.467h147.251c15.711 45.998 24.781 98.989 24.781 154.099 0 271.459-220.061 491.52-491.52 491.52s-491.52-220.061-491.52-491.52c0-55.109 9.070-108.101 25.798-157.562l-1.017 3.464h147.046zM724.992 97.638v260.915l-214.63-214.63-213.197 213.197v-259.482h-205.824c87.617-143.183 243.149-237.28 420.659-237.28s333.042 94.098 419.436 235.133l1.223 2.147h-207.667z" />
|
118
|
+
<glyph unicode="" glyph-name="xrp" data-tags="xrp" d="M512 843.52c-271.459 0-491.52-220.061-491.52-491.52s220.061-491.52 491.52-491.52c271.459 0 491.52 220.061 491.52 491.52v0c0 271.459-220.061 491.52-491.52 491.52v0zM716.8 133.069c-21.278-35.043-59.235-58.097-102.576-58.097-21.203 0-41.117 5.517-58.386 15.195l0.604-0.311c-35.687 19.32-59.518 56.479-59.518 99.204 0 20.708 5.598 40.108 15.363 56.77l-0.287-0.53c4.344 6.978 6.92 15.447 6.92 24.519 0 17.704-9.81 33.117-24.29 41.1l-0.242 0.122c-6.94 3.905-15.234 6.206-24.066 6.206-17.634 0-33.125-9.171-41.965-23.004l-0.12-0.2c-21.133-35.709-59.452-59.279-103.276-59.279-21.169 0-41.053 5.5-58.302 15.148l0.605-0.311c-35.825 19.281-59.765 56.512-59.765 99.335 0 20.737 5.614 40.164 15.405 56.841l-0.287-0.529c21.278 35.043 59.235 58.097 102.576 58.097 21.203 0 41.117-5.517 58.386-15.195l-0.604 0.311c18.245-10.053 33.072-24.29 43.539-41.474l0.289-0.51c9.039-13.532 24.251-22.325 41.517-22.325 9.227 0 17.867 2.511 25.275 6.887l-0.232-0.127c13.994 8.288 23.23 23.31 23.23 40.488 0 8.452-2.236 16.381-6.148 23.23l0.121-0.23c-10.34 16.663-16.469 36.879-16.469 58.526 0 41.853 22.91 78.356 56.873 97.651l0.555 0.29c17.197 10.137 37.888 16.126 59.978 16.126 42.417 0 79.677-22.081 100.912-55.374l0.288-0.483c10.34-16.663 16.469-36.879 16.469-58.526 0-41.853-22.91-78.356-56.873-97.651l-0.555-0.29c-17.045-9.981-37.519-15.903-59.371-15.974h-0.021c-1.287 0.123-2.783 0.193-4.295 0.193-26.467 0-47.923-21.456-47.923-47.923s21.456-47.923 47.923-47.923c2.237 0 4.437 0.153 6.593 0.45l-0.25-0.028c0.352 0.004 0.767 0.006 1.184 0.006 21.124 0 40.971-5.467 58.204-15.063l-0.61 0.312c35.391-19.405 58.984-56.406 58.984-98.917 0-20.907-5.707-40.482-15.647-57.251l0.286 0.52z" />
|
119
|
+
<glyph unicode="" glyph-name="zec" data-tags="zec" d="M512-139.52c-271.459 0-491.52 220.061-491.52 491.52s220.061 491.52 491.52 491.52c271.459 0 491.52-220.061 491.52-491.52v0c0-271.459-220.061-491.52-491.52-491.52v0zM512 795.597c-244.992 0-443.597-198.605-443.597-443.597s198.605-443.597 443.597-443.597c244.992 0 443.597 198.605 443.597 443.597v0c-0.233 244.898-198.698 443.363-443.574 443.597h-0.023zM480.461 221.133h227.942v-114.893h-140.288c2.253-32.768 3.482-63.078 5.939-95.846h-118.17v95.846h-140.288c-1.042 12.935-1.636 28.005-1.636 43.213 0 23.455 1.413 46.581 4.158 69.296l-0.269-2.735c3.482 18.637 24.576 35.021 37.478 51.405 44.442 52.634 88.883 104.038 134.349 156.672 17.613 20.48 35.021 38.502 54.886 61.44h-218.317v112.23h129.843v96.666h113.254v-93.594h141.312c1.050-13.097 1.648-28.355 1.648-43.753 0-23.697-1.417-47.063-4.171-70.019l0.271 2.77c-3.482-18.637-24.576-35.021-38.502-51.405-44.442-52.634-88.883-104.038-134.349-156.672-17.613-20.89-35.226-39.526-55.091-60.621z" />
|
120
|
+
</font></defs></svg>
|
Binary file
|
Binary file
|
@@ -0,0 +1,325 @@
|
|
1
|
+
/*!
|
2
|
+
* CryptoFont 0.1.1 by @AMPoellmann - http://cryptofont.com
|
3
|
+
* License - http://cryptofont.com/#license (Font: SIL OFL 1.1, CSS: MIT License)
|
4
|
+
*/
|
5
|
+
|
6
|
+
@font-face {
|
7
|
+
font-family: 'CryptoFont';
|
8
|
+
src: font-url('cryptofont-webfont.eot');
|
9
|
+
src: font-url('cryptofont-webfont.eot?#iefix') format('embedded-opentype'),
|
10
|
+
font-url('cryptofont-webfont.woff') format('woff2'),
|
11
|
+
font-url('cryptofont-webfont.woff') format('woff'),
|
12
|
+
font-url('cryptofont-webfont.ttf') format('truetype'),
|
13
|
+
font-url('cryptofont-webfont.svg#cryptofont-webfont') format('svg');
|
14
|
+
font-weight: normal;
|
15
|
+
font-style: normal;
|
16
|
+
}
|
17
|
+
|
18
|
+
/*
|
19
|
+
.cf {
|
20
|
+
display: inline-block;
|
21
|
+
font: normal normal normal 14px/1 CryptoFont;
|
22
|
+
font-size: inherit;
|
23
|
+
text-rendering: auto;
|
24
|
+
-webkit-font-smoothing: antialiased;
|
25
|
+
-moz-osx-font-smoothing: grayscale;
|
26
|
+
}
|
27
|
+
*/
|
28
|
+
|
29
|
+
.cf, .cf-adc:before, .cf-aeon:before, .cf-amp:before, .cf-anc:before, .cf-ardr:before, .cf-aur:before, .cf-bay:before, .cf-bcn:before, .cf-brk:before, .cf-brx:before, .cf-bsd:before, .cf-bta:before, .cf-btc:before, .cf-btc-alt:before, .cf-btcd:before, .cf-bts:before, .cf-clam:before, .cf-cloak:before, .cf-dash:before, .cf-dcr:before, .cf-dgb:before, .cf-dgd:before, .cf-dgx:before, .cf-dmd:before, .cf-doge:before, .cf-emc:before, .cf-erc:before, .cf-etc:before, .cf-eth:before, .cf-fct:before, .cf-flo:before, .cf-frk:before, .cf-ftc:before, .cf-game:before, .cf-gld:before, .cf-gnt:before, .cf-grc:before, .cf-grs:before, .cf-heat:before, .cf-icn:before, .cf-ifc:before, .cf-incnt:before, .cf-ioc:before, .cf-kmd:before, .cf-kobo:before, .cf-kore:before, .cf-lbc:before, .cf-ldoge:before, .cf-lsk:before, .cf-ltc:before, .cf-maid:before, .cf-mint:before, .cf-mona:before, .cf-mue:before, .cf-neos:before, .cf-nlg:before, .cf-nmc:before, .cf-note:before, .cf-nuc:before, .cf-nxt:before, .cf-ok:before, .cf-omni:before, .cf-pink:before, .cf-pivx:before, .cf-pot:before, .cf-ppc:before, .cf-qrk:before, .cf-rby:before, .cf-rdd:before, .cf-rep:before, .cf-rise:before, .cf-sjcx:before, .cf-sls:before, .cf-steem:before, .cf-strat:before, .cf-sys:before, .cf-trig:before, .cf-ubq:before, .cf-unity:before, .cf-usdt:before, .cf-vrc:before, .cf-vtc:before, .cf-waves:before, .cf-xcp:before, .cf-xem:before, .cf-xmr:before, .cf-xrp:before, .cf-zec:before {
|
30
|
+
display: inline-block;
|
31
|
+
font: normal normal normal 14px/1 CryptoFont;
|
32
|
+
font-size: inherit;
|
33
|
+
text-rendering: auto;
|
34
|
+
-webkit-font-smoothing: antialiased;
|
35
|
+
-moz-osx-font-smoothing: grayscale;
|
36
|
+
}
|
37
|
+
|
38
|
+
|
39
|
+
|
40
|
+
.cf-lg {
|
41
|
+
font-size: 1.33333333em;
|
42
|
+
line-height: 0.75em;
|
43
|
+
vertical-align: -15%;
|
44
|
+
}
|
45
|
+
.cf-2x {
|
46
|
+
font-size: 2em;
|
47
|
+
}
|
48
|
+
.cf-3x {
|
49
|
+
font-size: 3em;
|
50
|
+
}
|
51
|
+
.cf-4x {
|
52
|
+
font-size: 4em;
|
53
|
+
}
|
54
|
+
.cf-5x {
|
55
|
+
font-size: 5em;
|
56
|
+
}
|
57
|
+
|
58
|
+
.cf-adc:before {
|
59
|
+
content: "\f000";
|
60
|
+
}
|
61
|
+
.cf-aeon:before {
|
62
|
+
content: "\f001";
|
63
|
+
}
|
64
|
+
.cf-amp:before {
|
65
|
+
content: "\f002";
|
66
|
+
}
|
67
|
+
.cf-anc:before {
|
68
|
+
content: "\f003";
|
69
|
+
}
|
70
|
+
.cf-ardr:before {
|
71
|
+
content: "\f004";
|
72
|
+
}
|
73
|
+
.cf-aur:before {
|
74
|
+
content: "\f005";
|
75
|
+
}
|
76
|
+
.cf-bay:before {
|
77
|
+
content: "\f006";
|
78
|
+
}
|
79
|
+
.cf-bcn:before {
|
80
|
+
content: "\f007";
|
81
|
+
}
|
82
|
+
.cf-brk:before {
|
83
|
+
content: "\f008";
|
84
|
+
}
|
85
|
+
.cf-brx:before {
|
86
|
+
content: "\f009";
|
87
|
+
}
|
88
|
+
.cf-bsd:before {
|
89
|
+
content: "\f00a";
|
90
|
+
}
|
91
|
+
.cf-bta:before {
|
92
|
+
content: "\f00b";
|
93
|
+
}
|
94
|
+
.cf-btc:before {
|
95
|
+
content: "\f00c";
|
96
|
+
}
|
97
|
+
.cf-btc-alt:before {
|
98
|
+
content: "\f00d";
|
99
|
+
}
|
100
|
+
.cf-btcd:before {
|
101
|
+
content: "\f00e";
|
102
|
+
}
|
103
|
+
.cf-bts:before {
|
104
|
+
content: "\f00f";
|
105
|
+
}
|
106
|
+
.cf-clam:before {
|
107
|
+
content: "\f010";
|
108
|
+
}
|
109
|
+
.cf-cloak:before {
|
110
|
+
content: "\f011";
|
111
|
+
}
|
112
|
+
.cf-dash:before {
|
113
|
+
content: "\f012";
|
114
|
+
}
|
115
|
+
.cf-dcr:before {
|
116
|
+
content: "\f013";
|
117
|
+
}
|
118
|
+
.cf-dgb:before {
|
119
|
+
content: "\f014";
|
120
|
+
}
|
121
|
+
.cf-dgd:before {
|
122
|
+
content: "\f015";
|
123
|
+
}
|
124
|
+
.cf-dgx:before {
|
125
|
+
content: "\f016";
|
126
|
+
}
|
127
|
+
.cf-dmd:before {
|
128
|
+
content: "\f017";
|
129
|
+
}
|
130
|
+
.cf-doge:before {
|
131
|
+
content: "\f018";
|
132
|
+
}
|
133
|
+
.cf-emc:before {
|
134
|
+
content: "\f019";
|
135
|
+
}
|
136
|
+
.cf-erc:before {
|
137
|
+
content: "\f01a";
|
138
|
+
}
|
139
|
+
.cf-etc:before {
|
140
|
+
content: "\f01b";
|
141
|
+
}
|
142
|
+
.cf-eth:before {
|
143
|
+
content: "\f01c";
|
144
|
+
}
|
145
|
+
.cf-fct:before {
|
146
|
+
content: "\f01d";
|
147
|
+
}
|
148
|
+
.cf-flo:before {
|
149
|
+
content: "\f01e";
|
150
|
+
}
|
151
|
+
.cf-frk:before {
|
152
|
+
content: "\f01f";
|
153
|
+
}
|
154
|
+
.cf-ftc:before {
|
155
|
+
content: "\f020";
|
156
|
+
}
|
157
|
+
.cf-game:before {
|
158
|
+
content: "\f021";
|
159
|
+
}
|
160
|
+
.cf-gld:before {
|
161
|
+
content: "\f022";
|
162
|
+
}
|
163
|
+
.cf-gnt:before {
|
164
|
+
content: "\f023";
|
165
|
+
}
|
166
|
+
.cf-grc:before {
|
167
|
+
content: "\f024";
|
168
|
+
}
|
169
|
+
.cf-grs:before {
|
170
|
+
content: "\f025";
|
171
|
+
}
|
172
|
+
.cf-heat:before {
|
173
|
+
content: "\f026";
|
174
|
+
}
|
175
|
+
.cf-icn:before {
|
176
|
+
content: "\f027";
|
177
|
+
}
|
178
|
+
.cf-ifc:before {
|
179
|
+
content: "\f028";
|
180
|
+
}
|
181
|
+
.cf-incnt:before {
|
182
|
+
content: "\f029";
|
183
|
+
}
|
184
|
+
.cf-ioc:before {
|
185
|
+
content: "\f02a";
|
186
|
+
}
|
187
|
+
.cf-kmd:before {
|
188
|
+
content: "\f02b";
|
189
|
+
}
|
190
|
+
.cf-kobo:before {
|
191
|
+
content: "\f02c";
|
192
|
+
}
|
193
|
+
.cf-kore:before {
|
194
|
+
content: "\f02d";
|
195
|
+
}
|
196
|
+
.cf-lbc:before {
|
197
|
+
content: "\f02e";
|
198
|
+
}
|
199
|
+
.cf-ldoge:before {
|
200
|
+
content: "\f02f";
|
201
|
+
}
|
202
|
+
.cf-lsk:before {
|
203
|
+
content: "\f030";
|
204
|
+
}
|
205
|
+
.cf-ltc:before {
|
206
|
+
content: "\f031";
|
207
|
+
}
|
208
|
+
.cf-maid:before {
|
209
|
+
content: "\f032";
|
210
|
+
}
|
211
|
+
.cf-mint:before {
|
212
|
+
content: "\f033";
|
213
|
+
}
|
214
|
+
.cf-mona:before {
|
215
|
+
content: "\f034";
|
216
|
+
}
|
217
|
+
.cf-mue:before {
|
218
|
+
content: "\f035";
|
219
|
+
}
|
220
|
+
.cf-neos:before {
|
221
|
+
content: "\f036";
|
222
|
+
}
|
223
|
+
.cf-nlg:before {
|
224
|
+
content: "\f037";
|
225
|
+
}
|
226
|
+
.cf-nmc:before {
|
227
|
+
content: "\f038";
|
228
|
+
}
|
229
|
+
.cf-note:before {
|
230
|
+
content: "\f039";
|
231
|
+
}
|
232
|
+
.cf-nuc:before {
|
233
|
+
content: "\f03a";
|
234
|
+
}
|
235
|
+
.cf-nxt:before {
|
236
|
+
content: "\f03b";
|
237
|
+
}
|
238
|
+
.cf-ok:before {
|
239
|
+
content: "\f03c";
|
240
|
+
}
|
241
|
+
.cf-omni:before {
|
242
|
+
content: "\f03d";
|
243
|
+
}
|
244
|
+
.cf-pink:before {
|
245
|
+
content: "\f03e";
|
246
|
+
}
|
247
|
+
.cf-pivx:before {
|
248
|
+
content: "\f03f";
|
249
|
+
}
|
250
|
+
.cf-pot:before {
|
251
|
+
content: "\f040";
|
252
|
+
}
|
253
|
+
.cf-ppc:before {
|
254
|
+
content: "\f041";
|
255
|
+
}
|
256
|
+
.cf-qrk:before {
|
257
|
+
content: "\f042";
|
258
|
+
}
|
259
|
+
.cf-rby:before {
|
260
|
+
content: "\f043";
|
261
|
+
}
|
262
|
+
.cf-rdd:before {
|
263
|
+
content: "\f044";
|
264
|
+
}
|
265
|
+
.cf-rep:before {
|
266
|
+
content: "\f045";
|
267
|
+
}
|
268
|
+
.cf-rise:before {
|
269
|
+
content: "\f046";
|
270
|
+
}
|
271
|
+
.cf-sjcx:before {
|
272
|
+
content: "\f047";
|
273
|
+
}
|
274
|
+
.cf-sls:before {
|
275
|
+
content: "\f048";
|
276
|
+
}
|
277
|
+
.cf-steem:before {
|
278
|
+
content: "\f049";
|
279
|
+
}
|
280
|
+
.cf-strat:before {
|
281
|
+
content: "\f04a";
|
282
|
+
}
|
283
|
+
.cf-sys:before {
|
284
|
+
content: "\f04b";
|
285
|
+
}
|
286
|
+
.cf-trig:before {
|
287
|
+
content: "\f04c";
|
288
|
+
}
|
289
|
+
.cf-ubq:before {
|
290
|
+
content: "\f04d";
|
291
|
+
}
|
292
|
+
.cf-unity:before {
|
293
|
+
content: "\f04e";
|
294
|
+
}
|
295
|
+
.cf-usdt:before {
|
296
|
+
content: "\f04f";
|
297
|
+
}
|
298
|
+
.cf-vrc:before {
|
299
|
+
content: "\f050";
|
300
|
+
}
|
301
|
+
.cf-vtc:before {
|
302
|
+
content: "\f051";
|
303
|
+
}
|
304
|
+
.cf-waves:before {
|
305
|
+
content: "\f052";
|
306
|
+
}
|
307
|
+
.cf-xcp:before {
|
308
|
+
content: "\f053";
|
309
|
+
}
|
310
|
+
.cf-xem:before {
|
311
|
+
content: "\f054";
|
312
|
+
}
|
313
|
+
.cf-xmr:before {
|
314
|
+
content: "\f055";
|
315
|
+
}
|
316
|
+
.cf-xrp:before {
|
317
|
+
content: "\f056";
|
318
|
+
}
|
319
|
+
.cf-zec:before {
|
320
|
+
content: "\f057";
|
321
|
+
}
|
322
|
+
|
323
|
+
/*
|
324
|
+
* Finito!
|
325
|
+
*/
|
@@ -0,0 +1,53 @@
|
|
1
|
+
module Cryptofont
|
2
|
+
module Rails
|
3
|
+
module IconHelper
|
4
|
+
# Creates an icon tag given an icon name and possible icon
|
5
|
+
# modifiers.
|
6
|
+
#
|
7
|
+
# Examples
|
8
|
+
#
|
9
|
+
# cf_icon "btc"
|
10
|
+
# # => <i class="cf-btc"></i>
|
11
|
+
#
|
12
|
+
# cf_icon "btc", text: "Bitcoin"
|
13
|
+
# # => <i class="cf-btc"></i> Bitcoin
|
14
|
+
#
|
15
|
+
# cf_icon "btc-right", text: "Bitcoin", right: true
|
16
|
+
# # => Bitcoin <i class="cf-btc-right"></i>
|
17
|
+
#
|
18
|
+
# cf_icon "btc", data: { id: 123 }
|
19
|
+
# # => <i class="cf-btc" data-id="123"></i>
|
20
|
+
#
|
21
|
+
# content_tag(:li, cf_icon("ltc li", text: "Bulleted list item"))
|
22
|
+
# # => <li><i class="cf-ltc fa-li"></i> Bulleted list item</li>
|
23
|
+
def cf_icon(names = 'flag', options = {})
|
24
|
+
classes = []
|
25
|
+
classes.concat Private.icon_names(names)
|
26
|
+
classes.concat Array(options.delete(:class))
|
27
|
+
text = options.delete(:text)
|
28
|
+
right_icon = options.delete(:right)
|
29
|
+
icon = content_tag(:i, nil, options.merge(class: classes))
|
30
|
+
Private.icon_join(icon, text, right_icon)
|
31
|
+
end
|
32
|
+
|
33
|
+
module Private
|
34
|
+
extend ActionView::Helpers::OutputSafetyHelper
|
35
|
+
|
36
|
+
def self.icon_join(icon, text, reverse_order = false)
|
37
|
+
return icon if text.blank?
|
38
|
+
elements = [icon, ERB::Util.html_escape(text)]
|
39
|
+
elements.reverse! if reverse_order
|
40
|
+
safe_join(elements, ' ')
|
41
|
+
end
|
42
|
+
|
43
|
+
def self.icon_names(names = [])
|
44
|
+
array_value(names).map { |n| "cf-#{n}" }
|
45
|
+
end
|
46
|
+
|
47
|
+
def self.array_value(value = [])
|
48
|
+
value.is_a?(Array) ? value : value.to_s.split(/\s+/)
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "cryptofont/rails"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "cryptofont-rails/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "cryptofont-rails"
|
8
|
+
spec.version = Cryptofont::Rails::VERSION
|
9
|
+
spec.authors = ["Andre Antonov Frizbee"]
|
10
|
+
spec.email = ["mail2andrewa@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{A sleek webfont for your favourite cryptocurrencies. Featuring 88 icons.}
|
13
|
+
spec.description = %q{CryptoFont by @AMPoellmann (alexanderpoellmann.com)}
|
14
|
+
spec.homepage = "https://cryptofont.com/"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
|
18
|
+
# Specify which files should be added to the gem when it is released.
|
19
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
20
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
21
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
22
|
+
end
|
23
|
+
spec.bindir = "exe"
|
24
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
25
|
+
spec.require_paths = ["lib"]
|
26
|
+
|
27
|
+
spec.add_development_dependency "bundler", "~> 1.16"
|
28
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
29
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
30
|
+
end
|
metadata
ADDED
@@ -0,0 +1,106 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cryptofont-rails
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Andre Antonov Frizbee
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-07-18 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.16'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.16'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
description: CryptoFont by @AMPoellmann (alexanderpoellmann.com)
|
56
|
+
email:
|
57
|
+
- mail2andrewa@gmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- ".gitignore"
|
63
|
+
- ".rspec"
|
64
|
+
- ".travis.yml"
|
65
|
+
- Gemfile
|
66
|
+
- Gemfile.lock
|
67
|
+
- LICENSE.txt
|
68
|
+
- README.md
|
69
|
+
- Rakefile
|
70
|
+
- app/assets/fonts/cryptofont-webfont.eot
|
71
|
+
- app/assets/fonts/cryptofont-webfont.svg
|
72
|
+
- app/assets/fonts/cryptofont-webfont.ttf
|
73
|
+
- app/assets/fonts/cryptofont-webfont.woff
|
74
|
+
- app/assets/stylesheets/cryptofont.css.scss
|
75
|
+
- app/helpers/cryptofont/rails/icon_helper.rb
|
76
|
+
- bin/console
|
77
|
+
- bin/setup
|
78
|
+
- cryptofont-rails.gemspec
|
79
|
+
- lib/cryptofont-rails.rb
|
80
|
+
- lib/cryptofont-rails/engine.rb
|
81
|
+
- lib/cryptofont-rails/version.rb
|
82
|
+
homepage: https://cryptofont.com/
|
83
|
+
licenses:
|
84
|
+
- MIT
|
85
|
+
metadata: {}
|
86
|
+
post_install_message:
|
87
|
+
rdoc_options: []
|
88
|
+
require_paths:
|
89
|
+
- lib
|
90
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - ">="
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '0'
|
95
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - ">="
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '0'
|
100
|
+
requirements: []
|
101
|
+
rubyforge_project:
|
102
|
+
rubygems_version: 2.7.6
|
103
|
+
signing_key:
|
104
|
+
specification_version: 4
|
105
|
+
summary: A sleek webfont for your favourite cryptocurrencies. Featuring 88 icons.
|
106
|
+
test_files: []
|