weather-seven-rails 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: d893f3c7123ea5cde8d1b3d1377a78ab4a93b2ec
4
+ data.tar.gz: f0331a963cb4e536c199a3731493b93686bbd322
5
+ SHA512:
6
+ metadata.gz: eef5f0320d04230fd415290b22f06f996e5bde4c224ecd6172661d93bd6edeabac0afeb629fb52ac2863511cc602b7ab7594e6860e218061c5d3604ae953a369
7
+ data.tar.gz: c2fe086f3f625cb2d82d296b842ea91e896555bc2453f4e4f78b232e7edf22446890b9ab1b81762c0b89b8e14dd262223d80effb43c04a9bf94f803a146b1b6d
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012 bimovidia
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,131 @@
1
+ # weather-seven-rails [![Gem Version](http://img.shields.io/gem/v/weather-seven-rails.svg)](https://rubygems.org/gems/weather-seven-rails) [![Build Status](https://secure.travis-ci.org/bimovidia/weather-seven-rails.svg)](http://travis-ci.org/bimovidia/weather-seven-rails)
2
+
3
+ weather-seven-rails provides the
4
+ [Stroke 7](http://www.pixeden.com/icon-fonts/weather-7-icon-font-set) web fonts and
5
+ stylesheets as a Rails engine for use with the asset pipeline.
6
+
7
+ ## Installation
8
+
9
+ Add this to your Gemfile:
10
+
11
+ ```ruby
12
+ gem "weather-seven-rails"
13
+ ```
14
+
15
+ and run `bundle install`.
16
+
17
+ ## Usage
18
+
19
+ In your `application.css`, include the css file:
20
+
21
+ ```css
22
+ /*
23
+ *= require weather-seven
24
+ */
25
+ ```
26
+
27
+ Optionally, you can include `weather-seven-helper` css file:
28
+
29
+ ```css
30
+ /*
31
+ *= require weather-seven-helper
32
+ */
33
+ ```
34
+
35
+ **Important:** if you already use font-awesome (FA) icon font in your website, you might want to use the FA classes instead.
36
+
37
+ Then restart your webserver if it was previously running.
38
+
39
+ Congrats! You now have scalable vector icon support. Pick an icon and check out the
40
+ [WeatherSeven Examples](http://themes-pixeden.com/font-demos/7-weather/index.html).
41
+
42
+ ### Sass Support
43
+
44
+ If you prefer [SCSS](http://sass-lang.com/documentation/file.SASS_REFERENCE.html), add this to your
45
+ `application.css.scss` file:
46
+
47
+ ```scss
48
+ @import "weather-seven";
49
+ ```
50
+
51
+ If you use the
52
+ [Sass indented syntax](http://sass-lang.com/docs/yardoc/file.INDENTED_SYNTAX.html),
53
+ add this to your `application.css.sass` file:
54
+
55
+ ```sass
56
+ @import weather-seven
57
+ ```
58
+
59
+ ### Helpers
60
+
61
+ There are also some helpers (`w7_icon`) that make your
62
+ views _icontastic!_
63
+
64
+ ```ruby
65
+ w7_icon "wind"
66
+ # => <i class="pe-7w-wind"></i>
67
+
68
+ w7_icon "female", text: "Take a selfie"
69
+ # => <i class="pe-7w-female"></i> Take a selfie
70
+
71
+ content_tag(:li, w7_icon("male", text: "Bulleted list item"))
72
+ # => <li><i class="pe-7w-male"></i> Bulleted list item</li>
73
+ ```
74
+
75
+ ## Misc
76
+
77
+ ### Rails engines
78
+
79
+ When building a Rails engine that includes weather-seven-rails as a dependency,
80
+ be sure to `require "weather-seven-rails"` somewhere during the intialization of
81
+ your engine. Otherwise, Rails will not automatically pick up the load path of
82
+ the weather-seven-rails assets and helpers.
83
+
84
+ ### Deploying to sub-folders
85
+
86
+ It is sometimes the case that deploying a Rails application to a production
87
+ environment requires the application to be hosted at a sub-folder on the server.
88
+ This may be the case, for example, if Apache HTTPD or Nginx is being used as a
89
+ front-end proxy server, with Rails handling only requests that come in to a sub-folder
90
+ such as `http://example.com/myrailsapp`. In this case, the
91
+ WeatherSeven gem (and other asset-serving engines) needs to know the sub-folder,
92
+ otherwise you can experience a problem roughly described as ["my app works
93
+ fine in development, but fails when I deploy
94
+ it"](https://github.com/bimovidia/weather-seven-rails/issues/74).
95
+
96
+ To fix this, set the *relative URL root* for the application. In the
97
+ environment file for the deployed version of the app, for example
98
+ `config/environments/production.rb`,
99
+ set the config option `action_controller.relative_url_root`:
100
+
101
+ MyApp::Application.configure do
102
+ ...
103
+
104
+ # set the relative root, because we're deploying to /myrailsapp
105
+ config.action_controller.relative_url_root = "/myrailsapp"
106
+
107
+ ...
108
+ end
109
+
110
+ The default value of this variable is taken from `ENV['RAILS_RELATIVE_URL_ROOT']`,
111
+ so configuring the environment to define `RAILS_RELATIVE_URL_ROOT` is an alternative strategy.
112
+
113
+ ### Rails 3.2
114
+
115
+ **Note:** In Rails 3.2, make sure weather-seven-rails is outside the bundler asset group
116
+ so that these helpers are automatically loaded in production environments.
117
+
118
+ ## Versioning
119
+
120
+ Versioning follows the core releases of Stroke 7 which follows Semantic
121
+ Versioning 2.0 as defined at <http://semver.org>. We will do our best not to
122
+ make any breaking changes until Stroke 7 core makes a major version bump.
123
+
124
+ ## License
125
+
126
+ * The [Stroke 7](http://www.pixeden.com/icon-fonts/weather-7-icon-font-set) font is
127
+ licensed under the [SIL Open Font License](http://scripts.sil.org/OFL).
128
+ * [Stroke 7](http://github.com/bimovidia/weather-seven-rails) CSS files are
129
+ licensed under the [MIT License](http://opensource.org/licenses/mit-license.html).
130
+ * The remainder of the weather-seven-rails project is licensed under the
131
+ [MIT License](http://opensource.org/licenses/mit-license.html).
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
3
+ require "rake/testtask"
4
+
5
+ Rake::TestTask.new(:test) do |t|
6
+ t.libs << "lib"
7
+ t.libs << "test"
8
+ t.pattern = "test/**/*_test.rb"
9
+ t.verbose = false
10
+ end
11
+
12
+ task :default => :test
@@ -0,0 +1,70 @@
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>Generated by IcoMoon</metadata>
5
+ <defs>
6
+ <font id="Pe-icon-7-weather" horiz-adv-x="512">
7
+ <font-face units-per-em="512" ascent="480" descent="-32" />
8
+ <missing-glyph horiz-adv-x="512" />
9
+ <glyph unicode="&#x20;" d="" horiz-adv-x="256" />
10
+ <glyph unicode="&#xe600;" d="M205.014 207.249h-170.845c-9.417 0-17.084 7.665-17.084 17.084s7.667 17.085 17.084 17.085h34.169v17.084h-34.169c-18.869 0-34.169-15.299-34.169-34.169s15.3-34.168 34.169-34.168h170.845c18.836 0 34.168-15.326 34.168-34.17 0-18.845-15.332-34.168-34.168-34.168v-17.087c28.312 0 51.252 22.941 51.252 51.255 0.002 28.304-22.94 51.254-51.252 51.254zM222.1 343.925v-17.084c18.836 0 34.168-15.325 34.168-34.169s-15.332-34.169-34.168-34.169h-136.577v-17.084h136.577c28.312 0 51.252 22.948 51.252 51.253 0 28.312-22.94 51.253-51.252 51.253zM273.352 241.418v-17.085h46.982v0.435c21.557 2.169 38.441 20.146 38.441 42.277 0 23.592-19.121 42.712-42.714 42.712v-17.085c14.133 0 25.627-11.495 25.627-25.627 0-14.131-11.494-25.626-25.627-25.626-0.364 0-0.709 0.092-1.073 0.108h-41.535c0.023-0.042 0.074-0.075 0.1-0.108l-0.201-0.001zM367.317 207.249h-93.965v-17.084h59.987c-0.033-0.035-0.065-0.067-0.091-0.108h32.993c0.365 0.016 0.708 0.108 1.075 0.108 14.132 0 25.627-11.497 25.627-25.628 0-14.133-11.495-25.626-25.627-25.626v-17.084c23.591 0 42.712 19.118 42.712 42.71 0 23.59-19.121 42.712-42.711 42.712z" horiz-adv-x="410" />
11
+ <glyph unicode="&#xe601;" d="M213.497 446.432h17.085v-85.422h-17.085v85.422zM0 232.875h85.364v-17.084h-85.364v17.084zM322.2 312.506l-12.079 12.079 62.868 62.868 12.079-12.078-62.868-62.869zM121.827 312.467l-62.873 62.873 12.079 12.079 62.873-62.872-12.079-12.080zM256.213 104.74h-205.018v-17.083h205.019c18.838 0 34.168-15.323 34.168-34.17 0-18.845-15.33-34.168-34.168-34.168v-17.084c28.312 0 51.254 22.939 51.254 51.252-0.002 28.306-22.942 51.253-51.255 51.253zM358.919 138.911h-0.2v-17.084h46.98v0.432c21.558 2.171 38.441 20.148 38.441 42.278 0 23.59-19.12 42.712-42.711 42.712v-17.084c14.131 0 25.626-11.497 25.626-25.628 0-14.132-11.495-25.626-25.626-25.626-0.367 0-0.718 0.092-1.084 0.106h-41.527c0.018-0.038 0.068-0.074 0.101-0.106zM435.6 104.74h-111.049v-17.083h77.062c-0.033-0.033-0.066-0.066-0.084-0.109h32.984c0.367 0.019 0.717 0.109 1.085 0.109 14.132 0 25.627-11.494 25.627-25.626s-11.495-25.627-25.627-25.627v-17.085c23.591 0 42.711 19.118 42.711 42.712 0.002 23.591-19.118 42.709-42.709 42.709zM151.216 138.911h-100.021v-17.084h239.186c28.312 0 51.254 22.948 51.254 51.251 0 28.314-22.94 51.255-51.254 51.255v-17.084c18.837 0 34.171-15.325 34.171-34.171 0-18.844-15.334-34.167-34.17-34.167h-107.108c-32.476 14.815-55.141 47.517-55.141 85.48 0 51.805 42.152 93.957 93.965 93.957 45.992 0 84.3-33.235 92.342-76.93h17.269c-8.208 53.222-54.089 94.014-109.609 94.014-61.331 0-111.049-49.71-111.049-111.041-0.002-34.386 15.631-65.108 40.165-85.48z" horiz-adv-x="479" />
12
+ <glyph unicode="&#xe602;" d="M205.013 160.2h-205.013v-17.085h205.014c18.836 0 34.17-15.325 34.17-34.17 0-18.844-15.334-34.168-34.17-34.168v-17.086c28.313 0 51.252 22.94 51.252 51.254 0 28.305-22.94 51.255-51.253 51.255zM354.503 177.284v0.434c21.556 2.171 38.438 20.146 38.438 42.277 0 23.592-19.117 42.712-42.711 42.712v-17.084c14.132 0 25.627-11.496 25.627-25.627s-11.495-25.628-25.627-25.628c-0.366 0-0.708 0.094-1.075 0.108h-41.534c0.033-0.041 0.075-0.074 0.101-0.108h-0.2v-17.083l46.981-0.001zM384.4 160.2h-111.048v-17.085h77.071c-0.025-0.035-0.059-0.068-0.093-0.108h32.994c0.365 0.017 0.709 0.108 1.074 0.108 14.133 0 25.628-11.496 25.628-25.627 0-14.133-11.495-25.627-25.628-25.627v-17.084c23.593 0 42.713 19.119 42.713 42.711 0 23.59-19.12 42.712-42.711 42.712zM109.63 177.284h129.552c28.312 0 51.254 22.948 51.254 51.254 0 28.313-22.941 51.253-51.254 51.253v-17.084c18.836 0 34.168-15.325 34.168-34.169 0-18.847-15.332-34.171-34.168-34.171h-107.512c-22.172 10.146-39.792 28.521-48.608 51.547 7.249-1.743 14.724-2.636 22.315-2.636 52.688 0 95.558 42.869 95.558 95.566 0 10.903-1.877 21.631-5.464 31.749 34.561-9.409 61.231-38.089 67.797-73.718h17.232c-8.232 53.281-54.139 94.098-109.73 94.098-2.21 0-4.363-0.208-6.541-0.333 12.171-13.822 19.621-31.925 19.621-51.795 0-43.329-35.128-78.482-78.473-78.482-16.984 0-32.685 5.473-45.531 14.648 1.385-32.466 16.759-61.204 40.143-80.644h-99.989v-17.083h109.63z" horiz-adv-x="427" />
13
+ <glyph unicode="&#xe603;" d="M275.512 142.070l12.080 12.080-56.951 56.959-56.959-56.959 12.079-12.080 36.338 36.339v-107.511h17.085v107.511zM372.681 266.469c-13.631 63.6-70.105 111.3-137.761 111.3-54.866 0-102.308-31.416-125.589-77.18-2.27 0.15-4.529 0.342-6.832 0.342-56.609 0-102.499-45.889-102.499-102.508 0-56.44 45.614-102.205 101.981-102.489v-0.024h85.948v17.084l-85.864 0.024c-46.857 0.233-84.98 38.549-84.98 85.405 0 47.1 38.314 85.424 85.414 85.424 1.493 0 2.961-0.117 4.438-0.217l1.268-0.083 11.245-0.751 5.106 10.043c21.289 41.852 63.583 67.846 110.365 67.846 58.002 0 108.913-41.126 121.060-97.793l2.712-12.663 12.931-0.809c35.903-2.236 64.033-32.143 64.033-68.088 0-37.562-30.458-68.139-67.973-68.339-0.424 0.024-0.793 0.042-1.167 0.058l-17.451-0.058h-75.713v-17.084l92.797 0.059c0.393-0.008 0.776-0.059 1.169-0.059 47.164 0 85.421 38.239 85.421 85.423-0.001 45.361-35.404 82.359-80.059 85.137z" horiz-adv-x="453" />
14
+ <glyph unicode="&#xe604;" d="M221.882 403.512v17.293h-17.084v-17.293c-111.134-4.38-200.418-93.664-204.798-204.805h14.298c9.735 10.436 23.474 17.084 38.874 17.084 19.303 0 36.163-10.277 45.539-25.626h15.7c9.376 15.349 26.235 25.626 45.539 25.626 18.828 0 35.337-9.77 44.847-24.484v-129.274c0-18.879 15.3-34.17 34.169-34.17s34.168 15.291 34.168 34.17h-17.084c0-9.418-7.666-17.086-17.084-17.086-9.419 0-17.085 7.668-17.085 17.086v129.274c9.511 14.717 26.019 24.484 44.849 24.484 19.303 0 36.16-10.277 45.537-25.626h15.7c9.375 15.349 26.235 25.626 45.538 25.626 15.399 0 29.141-6.648 38.875-17.084h14.298c-4.378 111.141-93.664 200.425-204.796 204.805zM373.506 232.875c-21.321 0-40.458-9.518-53.39-24.518-12.929 15-32.066 24.518-53.387 24.518-21.323 0-40.461-9.518-53.391-24.518-12.93 15-32.066 24.518-53.389 24.518-21.322 0-40.458-9.518-53.389-24.518-12.931 15-32.075 24.518-53.389 24.518-11.979 0-23.333-2.994-33.293-8.325 16.309 91.988 96.86 162.086 193.46 162.086 96.602 0 177.152-70.099 193.459-162.086-9.958 5.331-21.312 8.325-33.291 8.325z" horiz-adv-x="427" />
15
+ <glyph unicode="&#xe605;" d="M102.506 180.723v146.117c0 23.591-19.117 42.711-42.71 42.711-23.591 0-42.711-19.121-42.711-42.711v-146.119c-10.562-10.785-17.085-25.527-17.085-41.811 0-33.026 26.77-59.796 59.796-59.796s59.795 26.77 59.795 59.796c0.001 16.283-6.524 31.026-17.085 41.813zM59.795 96.199c-23.55 0-42.711 19.162-42.711 42.712 0 11.212 4.337 21.813 12.205 29.856l4.879 4.979v153.094c0 14.131 11.496 25.627 25.627 25.627 14.133 0 25.627-11.496 25.627-25.627v-153.094l4.879-4.979c7.867-8.043 12.204-18.646 12.204-29.856 0.001-23.55-19.159-42.712-42.71-42.712zM68.338 163.036v172.346h-17.084v-172.346c-9.969-3.529-17.151-12.948-17.151-24.125 0-14.197 11.503-25.693 25.693-25.693 14.199 0 25.693 11.496 25.693 25.693-0.001 11.177-7.175 20.596-17.151 24.125zM59.795 130.301c-4.747 0-8.609 3.864-8.609 8.61 0 4.745 3.862 8.608 8.609 8.608 4.748 0 8.61-3.862 8.61-8.608s-3.862-8.61-8.61-8.61z" horiz-adv-x="120" />
16
+ <glyph unicode="&#xe606;" d="M102.506 180.723v146.117c0 23.591-19.117 42.711-42.71 42.711-23.591 0-42.711-19.121-42.711-42.711v-146.119c-10.562-10.785-17.085-25.527-17.085-41.811 0-33.026 26.77-59.796 59.796-59.796s59.795 26.77 59.795 59.796c0.001 16.283-6.524 31.026-17.085 41.813zM59.795 96.199c-23.55 0-42.711 19.162-42.711 42.712 0 11.212 4.337 21.813 12.205 29.856l4.879 4.979v153.094c0 14.131 11.496 25.627 25.627 25.627 14.133 0 25.627-11.496 25.627-25.627v-153.094l4.879-4.979c7.867-8.043 12.204-18.646 12.204-29.856 0.001-23.55-19.159-42.712-42.71-42.712zM68.338 163.036v129.635h-17.084v-129.635c-9.969-3.529-17.151-12.948-17.151-24.125 0-14.197 11.503-25.693 25.693-25.693 14.199 0 25.693 11.496 25.693 25.693-0.001 11.177-7.175 20.596-17.151 24.125zM59.795 130.301c-4.747 0-8.609 3.864-8.609 8.61 0 4.745 3.862 8.608 8.609 8.608 4.748 0 8.61-3.862 8.61-8.608s-3.862-8.61-8.61-8.61z" horiz-adv-x="120" />
17
+ <glyph unicode="&#xe607;" d="M102.506 180.723v146.117c0 23.591-19.117 42.711-42.71 42.711-23.591 0-42.711-19.121-42.711-42.711v-146.119c-10.562-10.785-17.085-25.527-17.085-41.811 0-33.026 26.77-59.796 59.796-59.796s59.795 26.77 59.795 59.796c0.001 16.283-6.524 31.026-17.085 41.813zM59.795 96.199c-23.55 0-42.711 19.162-42.711 42.712 0 11.212 4.337 21.813 12.205 29.856l4.879 4.979v153.094c0 14.131 11.496 25.627 25.627 25.627 14.133 0 25.627-11.496 25.627-25.627v-153.094l4.879-4.979c7.867-8.043 12.204-18.646 12.204-29.856 0.001-23.55-19.159-42.712-42.71-42.712zM68.338 163.036v44.213h-17.084v-44.213c-9.969-3.529-17.151-12.948-17.151-24.125 0-14.197 11.503-25.693 25.693-25.693 14.199 0 25.693 11.496 25.693 25.693-0.001 11.177-7.175 20.596-17.151 24.125zM59.795 130.301c-4.747 0-8.609 3.864-8.609 8.61 0 4.745 3.862 8.608 8.609 8.608 4.748 0 8.61-3.862 8.61-8.608s-3.862-8.61-8.61-8.61z" horiz-adv-x="120" />
18
+ <glyph unicode="&#xe608;" d="M102.506 180.723v146.117c0 23.591-19.117 42.711-42.71 42.711-23.591 0-42.711-19.121-42.711-42.711v-146.119c-10.562-10.785-17.085-25.527-17.085-41.811 0-33.026 26.77-59.796 59.796-59.796s59.795 26.77 59.795 59.796c0.001 16.283-6.524 31.026-17.085 41.813zM59.795 96.199c-23.55 0-42.711 19.162-42.711 42.712 0 11.212 4.337 21.813 12.205 29.856l4.879 4.979v153.094c0 14.131 11.496 25.627 25.627 25.627 14.133 0 25.627-11.496 25.627-25.627v-153.094l4.879-4.979c7.867-8.043 12.204-18.646 12.204-29.856 0.001-23.55-19.159-42.712-42.71-42.712zM68.338 163.036v86.924h-17.084v-86.924c-9.969-3.529-17.151-12.948-17.151-24.125 0-14.197 11.503-25.693 25.693-25.693 14.199 0 25.693 11.496 25.693 25.693-0.001 11.177-7.175 20.596-17.151 24.125zM59.795 130.301c-4.747 0-8.609 3.864-8.609 8.61 0 4.745 3.862 8.608 8.609 8.608 4.748 0 8.61-3.862 8.61-8.608s-3.862-8.61-8.61-8.61z" horiz-adv-x="120" />
19
+ <glyph unicode="&#xe609;" d="M102.506 180.723v146.117c0 23.591-19.117 42.711-42.71 42.711-23.591 0-42.711-19.121-42.711-42.711v-146.119c-10.562-10.785-17.085-25.527-17.085-41.811 0-33.026 26.77-59.796 59.796-59.796s59.795 26.77 59.795 59.796c0.001 16.283-6.524 31.026-17.085 41.813zM59.795 96.199c-23.55 0-42.711 19.162-42.711 42.712 0 11.212 4.337 21.813 12.205 29.856l4.879 4.979v153.094c0 14.131 11.496 25.627 25.627 25.627 14.133 0 25.627-11.496 25.627-25.627v-153.094l4.879-4.979c7.867-8.043 12.204-18.646 12.204-29.856 0.001-23.55-19.159-42.712-42.71-42.712zM59.795 164.604c-14.19 0-25.693-11.502-25.693-25.691 0-14.197 11.503-25.693 25.693-25.693 14.199 0 25.693 11.496 25.693 25.693 0 14.189-11.494 25.691-25.693 25.691zM59.795 130.301c-4.747 0-8.609 3.864-8.609 8.61 0 4.745 3.862 8.608 8.609 8.608 4.748 0 8.61-3.862 8.61-8.608s-3.862-8.61-8.61-8.61z" horiz-adv-x="120" />
20
+ <glyph unicode="&#xe60a;" d="M213.498 388.238h17.080v-85.422h-17.080v85.422zM322.224 254.319l-12.078 12.078 62.877 62.877 12.078-12.078-62.877-62.878zM121.827 254.274l-62.873 62.873 12.080 12.079 62.873-62.873-12.079-12.079zM230.578 93.13v90.095h-17.080v-90.095l-36.338 36.338-12.080-12.079 56.96-56.96 56.957 56.96-12.080 12.079zM333.151 166.146c0 0.017 0 0.033 0 0.052 0 61.331-49.718 111.041-111.053 111.041-61.331 0-111.049-49.709-111.049-111.041 0-0.019 0-0.035 0-0.052h-111.049v-17.084h187.929v17.084h-59.795c0 0.017 0 0.033 0 0.051 0 51.804 42.152 93.957 93.965 93.957 51.809 0 93.969-42.153 93.969-93.957 0-0.018 0-0.034 0-0.051h-59.796v-17.084h187.88v17.084h-111.001z" horiz-adv-x="444" />
21
+ <glyph unicode="&#xe60b;" d="M213.498 378.094h17.080v-85.422h-17.080v85.422zM322.163 244.161l-12.077 12.079 62.887 62.87 12.077-12.079-62.887-62.87zM121.827 244.13l-62.873 62.873 12.078 12.079 62.873-62.873-12.079-12.078zM165.080 128.2l12.080-12.079 36.338 36.337v-81.885h17.080v81.885l36.339-36.337 12.080 12.079-56.957 56.959zM333.151 156.003c0 0.019 0 0.033 0 0.050 0 61.331-49.718 111.042-111.053 111.042-61.331 0-111.049-49.711-111.049-111.042 0-0.017 0-0.031 0-0.050h-111.049v-17.084h153.76v17.084h-25.626c0 0.019 0 0.033 0 0.050 0 51.807 42.152 93.958 93.965 93.958 51.809 0 93.969-42.151 93.969-93.958 0-0.017 0-0.031 0-0.050h-25.627v-17.084h153.711v17.084h-111.001z" horiz-adv-x="444" />
22
+ <glyph unicode="&#xe60c;" d="M222.098 335.433c-61.331 0-111.049-49.71-111.049-111.041 0-61.339 49.719-111.065 111.049-111.065s111.049 49.726 111.049 111.065c0 61.331-49.718 111.041-111.049 111.041zM222.098 130.41c-51.812 0-93.965 42.16-93.965 93.981 0 51.805 42.152 93.957 93.965 93.957s93.965-42.152 93.965-93.957c0.001-51.821-42.153-93.981-93.965-93.981zM213.498 446.432h17.084v-85.422h-17.084v85.422zM213.498 87.657h17.084v-85.422h-17.084v85.422zM0 232.875h85.364v-17.084h-85.364v17.084zM358.715 232.875h85.482v-17.084h-85.482v17.084zM322.217 312.512l-12.078 12.078 62.873 62.873 12.078-12.078-62.873-62.873zM121.817 136.228l12.079-12.082-62.886-62.868-12.078 12.082 62.887 62.868zM121.826 312.469l-62.873 62.873 12.079 12.079 62.872-62.873-12.079-12.078zM322.209 136.199l62.887-62.87-12.077-12.080-62.887 62.87 12.077 12.081z" horiz-adv-x="444" />
23
+ <glyph unicode="&#xe60d;" d="M372.681 283.954c-13.631 63.599-70.105 111.299-137.761 111.299-54.866 0-102.308-31.416-125.589-77.18-2.27 0.151-4.529 0.342-6.832 0.342-56.609 0-102.499-45.89-102.499-102.508 0-56.441 45.614-102.205 101.981-102.489v-0.025h17.61v17.084h-13.706l-3.821 0.025c-46.857 0.232-84.98 38.548-84.98 85.405 0 47.1 38.314 85.423 85.414 85.423 1.493 0 2.961-0.117 4.438-0.217l1.268-0.083 11.245-0.751 5.106 10.044c21.289 41.852 63.583 67.846 110.366 67.846 58.002 0 108.912-41.127 121.059-97.794l2.712-12.663 12.931-0.81c35.903-2.235 64.033-32.142 64.033-68.087 0-37.562-30.458-68.139-67.973-68.338-0.424 0.024-0.793 0.041-1.167 0.058l-17.451-0.058h-24.46v-17.084h41.544v0.059c0.393-0.008 0.776-0.059 1.169-0.059 47.164 0 85.421 38.239 85.421 85.422 0 45.365-35.403 82.361-80.058 85.139zM158.032 181.079c-7.074 0-12.813-5.739-12.813-12.812s5.739-12.812 12.813-12.812 12.813 5.738 12.813 12.812c0 7.073-5.738 12.812-12.813 12.812zM192.201 130.477c-7.074 0-12.813-5.738-12.813-12.812 0-7.073 5.74-12.812 12.813-12.812 7.074 0 12.813 5.739 12.813 12.812 0 7.071-5.738 12.812-12.813 12.812zM260.54 130.477c-7.074 0-12.812-5.738-12.812-12.812 0-7.073 5.738-12.812 12.812-12.812 7.073 0 12.812 5.739 12.812 12.812 0 7.071-5.739 12.812-12.812 12.812zM226.37 181.079c-7.074 0-12.813-5.739-12.813-12.812s5.74-12.812 12.813-12.812c7.075 0 12.814 5.738 12.814 12.812 0 7.073-5.739 12.812-12.814 12.812zM294.708 181.079c-7.074 0-12.812-5.739-12.812-12.812s5.737-12.812 12.812-12.812 12.814 5.738 12.814 12.812c0 7.073-5.739 12.812-12.814 12.812zM158.032 79.039c-7.074 0-12.813-5.739-12.813-12.813 0-7.071 5.739-12.812 12.813-12.812s12.813 5.739 12.813 12.812c0 7.074-5.738 12.813-12.813 12.813zM226.37 79.039c-7.074 0-12.813-5.739-12.813-12.813 0-7.071 5.74-12.812 12.813-12.812 7.075 0 12.814 5.739 12.814 12.812s-5.739 12.813-12.814 12.813zM294.708 79.039c-7.074 0-12.812-5.739-12.812-12.813 0-7.071 5.737-12.812 12.812-12.812s12.814 5.739 12.814 12.812c0 7.074-5.739 12.813-12.814 12.813z" horiz-adv-x="453" />
24
+ <glyph unicode="&#xe60e;" d="M162.303 441.752h17.084v-68.104h-17.084v68.104zM0 280.184h68.104v-17.085h-68.104v17.085zM92.021 337.76l-48.166 48.166 12.079 12.079 48.166-48.166-12.079-12.080zM248.337 337.738l-12.079 12.079 48.15 48.15 12.079-12.079-48.15-48.15zM422.942 221.445c-12.339 57.595-63.49 100.799-124.765 100.799-18.661 0-36.369-4.013-52.337-11.22-14.231 27.354-42.761 46.073-75.729 46.073-47.174 0-85.422-38.239-85.422-85.414 0-21.013 7.675-40.166 20.271-55.033-12.196-15.717-19.537-35.396-19.537-56.834 0-51.11 41.31-92.563 92.363-92.814v-0.022h10.144v17.083h-6.156l-3.904 0.025c-41.552 0.201-75.362 34.178-75.362 75.729 0 41.77 33.977 75.755 75.746 75.755 1.284 0 2.552-0.1 3.82-0.191l12.497-0.81 5.097 10.036c19.003 37.348 56.751 60.555 98.51 60.555 51.781 0 97.229-36.713 108.056-87.291l2.721-12.672 12.929-0.802c31.676-1.969 56.484-28.354 56.484-60.055 0-33.126-26.854-60.096-59.938-60.279-0.36 0.025-0.676 0.041-1.001 0.041l-17.485-0.041h-15.542v-17.083h32.628v0.049c0.357-0.008 0.699-0.049 1.059-0.049 42.721 0 77.364 34.628 77.364 77.362-0.003 41.085-32.070 74.586-72.511 77.103zM184.443 252.346c-2.061 0.133-4.104 0.309-6.189 0.309-23.625 0-45.114-8.901-61.506-23.433-9.327 11.679-14.975 26.394-14.975 42.46 0 37.673 30.657 68.33 68.338 68.33 26.411 0 49.201-15.149 60.58-37.114-19.637-12.295-35.687-29.797-46.248-50.552zM217.736 135.225c-7.075 0-12.813-5.738-12.813-12.814 0-7.073 5.739-12.812 12.813-12.812s12.812 5.739 12.812 12.812c0.001 7.073-5.738 12.814-12.812 12.814zM251.904 83.97c-7.075 0-12.813-5.738-12.813-12.812 0-7.076 5.739-12.815 12.813-12.815s12.812 5.739 12.812 12.815c0.002 7.072-5.735 12.812-12.812 12.812zM320.242 83.97c-7.075 0-12.813-5.738-12.813-12.812 0-7.076 5.738-12.815 12.813-12.815s12.813 5.739 12.813 12.815c0.002 7.072-5.738 12.812-12.813 12.812zM286.072 135.225c-7.072 0-12.812-5.738-12.812-12.814 0-7.073 5.739-12.812 12.812-12.812s12.813 5.739 12.813 12.812c0.002 7.073-5.738 12.814-12.813 12.814zM354.411 135.225c-7.073 0-12.812-5.738-12.812-12.814 0-7.073 5.739-12.812 12.812-12.812s12.812 5.739 12.812 12.812c0.001 7.073-5.737 12.814-12.812 12.814zM217.736 32.533c-7.075 0-12.813-5.739-12.813-12.812 0-7.076 5.739-12.814 12.813-12.814s12.812 5.738 12.812 12.814c0.001 7.073-5.738 12.812-12.812 12.812zM286.072 32.533c-7.072 0-12.812-5.739-12.812-12.812 0-7.076 5.739-12.814 12.812-12.814s12.813 5.738 12.813 12.814c0.002 7.073-5.738 12.812-12.813 12.812zM354.411 32.533c-7.073 0-12.812-5.739-12.812-12.812 0-7.076 5.739-12.814 12.812-12.814s12.812 5.738 12.812 12.814c0.001 7.073-5.737 12.812-12.812 12.812z" horiz-adv-x="496" />
25
+ <glyph unicode="&#xe60f;" d="M354.602 246.707c-12.337 57.593-63.49 100.797-124.763 100.797-15.366 0-30.081-2.736-43.721-7.725-8.108 43.637-46.165 76.713-92.154 76.713-3.529 0-6.999-0.234-10.436-0.609 6.356-9.502 10.069-20.914 10.069-33.193 0-33.018-26.769-59.795-59.795-59.795-12.288 0-23.691 3.711-33.193 10.068-0.375-3.429-0.609-6.907-0.609-10.436 0-31.708 15.758-59.688 39.816-76.705-14.123-16.292-22.731-37.488-22.731-60.747 0-51.11 41.31-92.563 92.363-92.814v-0.022h10.144v17.084h-6.156l-3.904 0.025c-41.552 0.198-75.362 34.176-75.362 75.729 0 41.77 33.977 75.755 75.746 75.755 1.285 0 2.552-0.101 3.82-0.192l12.497-0.809 5.097 10.035c19.003 37.348 56.751 60.555 98.511 60.555 51.778 0 97.228-36.713 108.054-87.291l2.721-12.671 12.931-0.8c31.675-1.97 56.483-28.354 56.483-60.057 0-33.125-26.854-60.096-59.938-60.278-0.358 0.024-0.675 0.040-1.001 0.040l-17.484-0.040h-15.543v-17.084h32.626v0.049c0.359-0.008 0.7-0.049 1.061-0.049 42.719 0 77.364 34.628 77.364 77.362-0.004 41.086-32.070 74.586-72.513 77.105zM116.104 277.605c-2.061 0.134-4.104 0.309-6.189 0.309-21.673 0-41.561-7.483-57.36-19.938-17.185 11.054-29.781 28.647-33.961 49.344 4.971-1.001 10.061-1.51 15.208-1.51 42.394 0 76.88 34.486 76.88 76.88 0 5.147-0.509 10.235-1.51 15.208 31.892-6.432 56.626-32.667 60.939-65.26-23.175-12.338-42.095-31.6-54.007-55.033zM149.488 160.492c-7.074 0-12.813-5.739-12.813-12.812 0-7.076 5.74-12.814 12.813-12.814s12.814 5.738 12.814 12.814c0 7.073-5.74 12.812-12.814 12.812zM183.657 109.238c-7.074 0-12.813-5.74-12.813-12.812 0-7.074 5.739-12.812 12.813-12.812s12.814 5.738 12.814 12.812c0 7.072-5.74 12.812-12.814 12.812zM251.995 109.238c-7.073 0-12.812-5.74-12.812-12.812 0-7.074 5.738-12.812 12.812-12.812s12.812 5.738 12.812 12.812c0.002 7.072-5.739 12.812-12.812 12.812zM230.64 147.678c0-7.077-5.737-12.814-12.814-12.814s-12.814 5.737-12.814 12.814c0 7.077 5.737 12.814 12.814 12.814s12.814-5.737 12.814-12.814zM298.978 147.678c0-7.077-5.737-12.814-12.814-12.814s-12.814 5.737-12.814 12.814c0 7.077 5.737 12.814 12.814 12.814s12.814-5.737 12.814-12.814zM149.488 57.801c-7.074 0-12.813-5.739-12.813-12.812s5.74-12.813 12.813-12.813c7.073 0 12.814 5.74 12.814 12.813s-5.74 12.812-12.814 12.812zM217.826 57.801c-7.074 0-12.813-5.739-12.813-12.812s5.739-12.813 12.813-12.813 12.814 5.74 12.814 12.813c0.001 7.073-5.74 12.812-12.814 12.812zM286.164 57.801c-7.074 0-12.812-5.739-12.812-12.812s5.738-12.813 12.812-12.813 12.813 5.74 12.813 12.813c0.001 7.073-5.739 12.812-12.813 12.812z" horiz-adv-x="427" />
26
+ <glyph unicode="&#xe610;" d="M372.681 296.692c-13.631 63.6-70.105 111.299-137.761 111.299-54.866 0-102.308-31.416-125.589-77.18-2.27 0.15-4.529 0.342-6.832 0.342-56.609 0-102.499-45.89-102.499-102.507 0-56.442 45.614-102.207 101.981-102.49v-0.025h17.61v17.085h-13.706l-3.821 0.025c-46.857 0.233-84.98 38.548-84.98 85.405 0 47.099 38.314 85.422 85.414 85.422 1.493 0 2.961-0.117 4.438-0.217l12.513-0.834 5.106 10.043c21.289 41.852 63.583 67.846 110.366 67.846 58.002 0 108.912-41.126 121.059-97.793l2.712-12.663 12.931-0.81c35.903-2.236 64.033-32.142 64.033-68.088 0-37.563-30.458-68.137-67.973-68.337-0.424 0.025-0.793 0.041-1.167 0.059l-17.451-0.059h-7.375v-17.085h24.459v0.060c0.393-0.010 0.776-0.060 1.169-0.060 47.164 0 85.421 38.24 85.421 85.422 0 45.365-35.403 82.363-80.058 85.14zM187.93 134.49v22.465l18.562-10.444 5.855 10.427-21.097 11.871 21.097 11.871-5.855 10.427-18.562-10.445v22.166h-17.085v-22.541l-19.228 10.82-5.856-10.427 21.098-11.871-21.098-11.871 5.856-10.427 19.228 10.818v-22.839zM232.026 97.292l-18.561-10.442v22.162h-17.084v-22.539l-19.229 10.819-5.856-10.428 21.097-11.87-21.097-11.87 5.856-10.428 19.229 10.819v-22.841h17.084v22.466l18.561-10.444 5.855 10.428-21.095 11.87 21.095 11.87zM309.041 156.938l-18.562-10.445v22.165h-17.085v-22.539l-19.227 10.819-5.858-10.427 21.097-11.87-21.097-11.871 5.858-10.429 19.227 10.82v-22.841h17.085v22.465l18.562-10.444 5.854 10.429-21.096 11.871 21.096 11.87z" horiz-adv-x="453" />
27
+ <glyph unicode="&#xe611;" d="M162.303 454.44h17.084v-68.104h-17.084v68.104zM0 292.871h68.104v-17.084h-68.104v17.084zM92.020 350.45l-48.166 48.166 12.080 12.079 48.165-48.166-12.079-12.079zM248.315 350.42l-12.078 12.078 48.15 48.149 12.078-12.078-48.149-48.15zM422.942 234.136c-12.339 57.593-63.49 100.796-124.765 100.796-18.661 0-36.369-4.021-52.337-11.229-14.231 27.362-42.761 46.082-75.729 46.082-47.174 0-85.422-38.24-85.422-85.415 0-21.013 7.683-40.166 20.271-55.032-12.196-15.718-19.537-35.396-19.537-56.834 0-51.111 41.31-92.562 92.363-92.813v-0.023h10.144v17.082h-6.156l-3.904 0.025c-41.552 0.199-75.362 34.176-75.362 75.729 0 41.768 33.977 75.753 75.746 75.753 1.284 0 2.552-0.1 3.82-0.191l1.269-0.084 11.228-0.726 5.097 10.036c19.003 37.347 56.751 60.554 98.51 60.554 51.781 0 97.229-36.714 108.056-87.291l2.721-12.673 12.929-0.8c31.676-1.971 56.484-28.354 56.484-60.055 0-33.127-26.854-60.096-59.938-60.279-0.36 0.025-0.676 0.041-1.001 0.041l-15.941-0.041v-17.083h15.541v0.048c0.358-0.007 0.7-0.048 1.060-0.048 42.721 0 77.364 34.627 77.364 77.362-0.003 41.087-32.070 74.589-72.511 77.109zM184.443 265.035c-2.061 0.133-4.104 0.308-6.189 0.308-23.625 0-45.122-8.892-61.506-23.424-9.327 11.662-14.975 26.386-14.975 42.452 0 37.673 30.657 68.33 68.338 68.33 26.411 0 49.201-15.149 60.571-37.122-19.628-12.296-35.678-29.79-46.239-50.544zM247.659 88.041v22.465l18.56-10.445 5.857 10.428-21.097 11.87 21.097 11.871-5.857 10.428-18.56-10.444v22.165h-17.085v-22.539l-19.228 10.818-5.856-10.428 21.097-11.871-21.097-11.87 5.856-10.428 19.228 10.821v-22.841zM291.754 50.845l-18.56-10.445v22.164h-17.086v-22.541l-19.227 10.822-5.857-10.427 21.097-11.873-21.097-11.871 5.857-10.427 19.227 10.819v-22.838h17.086v22.464l18.56-10.445 5.858 10.427-21.099 11.871 21.099 11.873zM368.768 110.489l-18.562-10.444v22.166h-17.083v-22.541l-19.228 10.819-5.857-10.428 21.097-11.87-21.097-11.871 5.857-10.426 19.228 10.818v-22.839h17.083v22.465l18.562-10.444 5.856 10.426-21.097 11.871 21.097 11.87z" horiz-adv-x="496" />
28
+ <glyph unicode="&#xe612;" d="M354.602 259.395c-12.337 57.594-63.49 100.796-124.763 100.796-15.366 0-30.090-2.736-43.721-7.724-8.108 43.637-46.165 76.713-92.154 76.713-3.529 0-6.999-0.234-10.436-0.609 6.356-9.501 10.069-20.913 10.069-33.193 0-33.018-26.769-59.795-59.795-59.795-12.288 0-23.691 3.712-33.193 10.069-0.375-3.429-0.609-6.907-0.609-10.436 0-31.716 15.758-59.688 39.816-76.705-14.123-16.292-22.731-37.487-22.731-60.745 0-51.113 41.31-92.563 92.363-92.814v-0.025h10.144v17.083h-6.156l-3.904 0.025c-41.552 0.199-75.362 34.176-75.362 75.729 0 41.769 33.977 75.753 75.746 75.753 1.285 0 2.552-0.1 3.82-0.191l1.269-0.084 11.228-0.726 5.097 10.036c19.003 37.347 56.751 60.555 98.511 60.555 51.778 0 97.228-36.714 108.054-87.291l2.721-12.671 12.931-0.801c31.675-1.969 56.483-28.354 56.483-60.055 0-33.126-26.854-60.096-59.938-60.279-0.358 0.025-0.675 0.041-1.001 0.041l-15.941-0.041v-17.085h15.541v0.052c0.359-0.009 0.7-0.052 1.061-0.052 42.719 0 77.364 34.63 77.364 77.364-0.005 41.086-32.071 74.587-72.514 77.106zM116.104 290.294c-2.061 0.133-4.104 0.309-6.189 0.309-21.673 0-41.561-7.492-57.36-19.938-17.185 11.054-29.781 28.646-33.96 49.343 4.971-1.001 10.061-1.51 15.208-1.51 42.394 0 76.88 34.486 76.88 76.88 0 5.147-0.509 10.235-1.51 15.208 31.892-6.432 56.626-32.667 60.939-65.26-23.176-12.337-42.096-31.599-54.008-55.032zM179.704 113.301v22.467l18.56-10.448 5.856 10.429-21.096 11.871 21.096 11.871-5.856 10.427-18.56-10.443v22.164h-17.085v-22.541l-19.228 10.82-5.856-10.427 21.096-11.871-21.096-11.871 5.856-10.429 19.228 10.823v-22.842zM223.799 76.104l-18.561-10.444v22.164h-17.084v-22.541l-19.229 10.821-5.856-10.428 21.098-11.871-21.098-11.871 5.856-10.427 19.229 10.819v-22.84h17.084v22.465l18.561-10.444 5.857 10.427-21.098 11.871 21.098 11.871zM300.813 135.749l-18.56-10.444v22.164h-17.085v-22.539l-19.228 10.819-5.857-10.429 21.097-11.869-21.097-11.871 5.857-10.428 19.228 10.821v-22.842h17.085v22.465l18.56-10.444 5.856 10.428-21.099 11.871 21.099 11.869z" horiz-adv-x="427" />
29
+ <glyph unicode="&#xe613;" d="M372.681 318.147c-13.631 63.6-70.105 111.3-137.761 111.3-54.866 0-102.308-31.416-125.589-77.181-2.27 0.151-4.529 0.342-6.832 0.342-56.609 0-102.499-45.89-102.499-102.507 0-56.443 45.614-102.207 101.981-102.492v-0.024h17.61v17.086h-13.706l-3.821 0.024c-46.857 0.234-84.98 38.55-84.98 85.406 0 47.1 38.314 85.423 85.414 85.423 1.493 0 2.961-0.117 4.438-0.218l1.268-0.083 11.245-0.751 5.106 10.044c21.289 41.852 63.583 67.846 110.366 67.846 58.002 0 108.912-41.126 121.059-97.794l2.712-12.664 12.931-0.809c35.903-2.235 64.033-32.142 64.033-68.087 0-37.564-30.458-68.137-67.973-68.338-0.424 0.025-0.793 0.041-1.167 0.061l-17.451-0.061h-24.46v-17.086h41.544v0.059c0.393-0.008 0.776-0.059 1.169-0.059 47.164 0 85.421 38.24 85.421 85.424 0 45.366-35.403 82.363-80.058 85.139zM213.557 87.548v-68.338h17.084v170.847h-17.084zM281.895 121.719v-68.338h17.084v170.845h-17.084zM145.219 121.719v-68.338h17.084v170.845h-17.084z" horiz-adv-x="453" />
30
+ <glyph unicode="&#xe614;" d="M281.895 41.092v-68.338h17.084v170.846h-17.084zM350.232 75.261v-68.338h17.085v170.847h-17.085zM213.556 75.261v-68.338h17.085v170.847h-17.085zM162.303 475.913h17.084v-68.104h-17.084v68.104zM0 314.344h68.104v-17.084h-68.104v17.084zM92.021 371.921l-48.166 48.166 12.080 12.079 48.166-48.166-12.079-12.079zM248.326 371.896l-12.079 12.079 48.15 48.149 12.079-12.079-48.149-48.149zM422.942 255.607c-12.339 57.594-63.49 100.797-124.765 100.797-18.661 0-36.369-4.012-52.337-11.22-14.231 27.354-42.761 46.074-75.729 46.074-47.174 0-85.422-38.24-85.422-85.414 0-21.014 7.675-40.167 20.271-55.032-12.196-15.717-19.537-35.396-19.537-56.835 0-51.111 41.31-92.562 92.363-92.812v-0.024h10.144v17.084h-6.156l-3.904 0.024c-41.552 0.2-75.362 34.177-75.362 75.729 0 41.769 33.977 75.753 75.746 75.753 1.284 0 2.552-0.1 3.82-0.191l12.497-0.809 5.097 10.035c19.003 37.348 56.751 60.556 98.51 60.556 51.781 0 97.229-36.713 108.056-87.292l2.721-12.671 12.929-0.8c31.676-1.97 56.484-28.356 56.484-60.056 0-33.126-26.854-60.096-59.938-60.277-0.36 0.024-0.676 0.041-1.001 0.041l-24.484-0.041v-17.084h24.085v0.051c0.357-0.010 0.699-0.051 1.059-0.051 42.721 0 77.364 34.627 77.364 77.361-0.003 41.084-32.070 74.585-72.511 77.104zM184.443 286.506c-2.061 0.133-4.104 0.309-6.189 0.309-23.625 0-45.114-8.901-61.506-23.433-9.327 11.679-14.975 26.394-14.975 42.461 0 37.673 30.657 68.329 68.338 68.329 26.411 0 49.201-15.149 60.58-37.114-19.637-12.294-35.687-29.797-46.248-50.552z" horiz-adv-x="496" />
31
+ <glyph unicode="&#xe615;" d="M213.555 66.352v-68.338h17.086v170.843h-17.086zM281.893 100.521v-68.338h17.086v170.842h-17.086zM145.217 100.521v-68.338h17.085v170.842h-17.085zM354.602 280.867c-12.337 57.594-63.49 100.797-124.763 100.797-15.366 0-30.081-2.736-43.721-7.724-8.108 43.637-46.165 76.713-92.154 76.713-3.529 0-6.999-0.233-10.436-0.609 6.356-9.501 10.069-20.913 10.069-33.192 0-33.018-26.769-59.795-59.795-59.795-12.288 0-23.691 3.712-33.193 10.068-0.375-3.429-0.609-6.908-0.609-10.436 0-31.708 15.758-59.688 39.816-76.705-14.123-16.292-22.731-37.489-22.731-60.748 0-51.111 41.31-92.562 92.363-92.812v-0.024h10.144v17.084h-6.156l-3.904 0.024c-41.552 0.2-75.362 34.177-75.362 75.729 0 41.769 33.977 75.754 75.746 75.754 1.285 0 2.552-0.1 3.82-0.192l12.497-0.809 5.097 10.035c19.003 37.348 56.751 60.556 98.511 60.556 51.778 0 97.228-36.713 108.054-87.292l2.721-12.672 12.931-0.8c31.675-1.969 56.483-28.354 56.483-60.056 0-33.125-26.854-60.096-59.938-60.277-0.358 0.024-0.675 0.041-1.001 0.041l-24.484-0.041v-17.084h24.084v0.049c0.359-0.008 0.7-0.049 1.061-0.049 42.719 0 77.364 34.627 77.364 77.361-0.005 41.085-32.071 74.588-72.514 77.106zM116.104 311.766c-2.061 0.133-4.104 0.309-6.189 0.309-21.673 0-41.561-7.482-57.36-19.938-17.185 11.053-29.781 28.646-33.96 49.343 4.971-1.001 10.061-1.51 15.208-1.51 42.394 0 76.88 34.486 76.88 76.88 0 5.147-0.509 10.236-1.51 15.208 31.892-6.432 56.626-32.668 60.939-65.268-23.176-12.33-42.096-31.6-54.008-55.024z" horiz-adv-x="427" />
32
+ <glyph unicode="&#xe616;" d="M277.798 100.604l-58.793 83.971-13.991-9.802 97.987-139.945 13.997 9.792-29.69 42.412zM346.153 100.62l-58.811 83.955-13.99-9.809 98.020-139.912 13.998 9.792-30.615 43.706zM209.461 100.604l-58.795 83.971-13.989-9.809 97.994-139.948 13.989 9.802-29.072 41.528zM372.681 302.54c-13.631 63.601-70.105 111.3-137.761 111.3-54.866 0-102.308-31.416-125.589-77.181-2.27 0.149-4.529 0.342-6.832 0.342-56.609 0-102.499-45.889-102.499-102.507 0-56.442 45.614-102.207 101.981-102.49v-0.025h17.61v17.086h-13.706l-3.821 0.022c-46.857 0.233-84.98 38.55-84.98 85.407 0 47.099 38.314 85.422 85.414 85.422 1.493 0 2.961-0.117 4.438-0.217l1.268-0.083 11.245-0.751 5.106 10.043c21.289 41.853 63.583 67.846 110.366 67.846 58.002 0 108.912-41.125 121.059-97.793l2.712-12.663 12.931-0.809c35.903-2.236 64.033-32.142 64.033-68.087 0-37.564-30.458-68.139-67.973-68.338-0.424 0.022-0.793 0.041-1.167 0.059l-7.741-0.059v-17.086h7.374v0.059c0.393-0.008 0.776-0.059 1.169-0.059 47.164 0 85.421 38.239 85.421 85.424 0 45.363-35.403 82.36-80.058 85.138z" horiz-adv-x="453" />
33
+ <glyph unicode="&#xe617;" d="M337.594 54.14l-58.794 83.969-13.989-9.8 97.984-139.946 13.997 9.792-29.687 42.412zM405.948 54.155l-58.81 83.954-13.989-9.81 98.017-139.913 13.998 9.795-30.615 43.703zM269.256 54.14l-58.794 83.969-13.99-9.81 97.993-139.945 13.988 9.801-29.069 41.528zM162.303 460.313h17.084v-68.104h-17.084v68.104zM0 298.745h68.104v-17.084h-68.104v17.084zM92.022 356.322l-48.166 48.166 12.079 12.079 48.166-48.166-12.079-12.079zM248.33 356.299l-12.079 12.080 48.15 48.149 12.079-12.079-48.149-48.15zM422.942 240.009c-12.339 57.593-63.49 100.796-124.765 100.796-18.661 0-36.369-4.013-52.329-11.22-14.24 27.353-42.77 46.073-75.737 46.073-47.174 0-85.422-38.24-85.422-85.414 0-21.013 7.683-40.167 20.271-55.032-12.205-15.716-19.537-35.396-19.537-56.835 0-51.111 41.31-92.562 92.363-92.812v-0.024h10.144v17.084h-6.156l-3.904 0.024c-41.552 0.201-75.362 34.179-75.362 75.729 0 41.771 33.977 75.755 75.746 75.755 1.284 0 2.552-0.1 3.82-0.192l1.269-0.084 11.228-0.725 5.097 10.036c19.003 37.347 56.751 60.554 98.51 60.554 51.781 0 97.229-36.713 108.056-87.291l2.721-12.671 12.929-0.802c31.676-1.967 56.484-28.354 56.484-60.054 0-33.127-26.854-60.096-59.938-60.28-0.359 0.024-0.676 0.043-1.001 0.043l-0.399-0.043h-7v-17.084h7v0.051c0.357-0.010 0.699-0.051 1.059-0.051 42.721 0 77.364 34.628 77.364 77.364-0.003 41.082-32.070 74.585-72.511 77.105zM184.443 270.907c-2.061 0.134-4.104 0.309-6.189 0.309-23.625 0-45.122-8.901-61.506-23.433-9.327 11.678-14.975 26.395-14.975 42.46 0 37.672 30.657 68.33 68.338 68.33 26.402 0 49.201-15.15 60.571-37.114-19.628-12.296-35.687-29.797-46.239-50.552z" horiz-adv-x="496" />
34
+ <glyph unicode="&#xe618;" d="M269.255 79.397l-58.794 83.973-13.99-9.802 97.985-139.947 13.999 9.794-29.69 42.412zM337.609 79.415l-58.811 83.955-13.989-9.811 98.019-139.913 13.998 9.794-30.616 43.704zM200.917 79.397l-58.794 83.973-13.99-9.811 97.994-139.946 13.988 9.802-29.070 41.528zM354.602 265.268c-12.337 57.594-63.49 100.797-124.763 100.797-15.366 0-30.090-2.736-43.721-7.725-8.108 43.637-46.165 76.713-92.154 76.713-3.529 0-6.999-0.234-10.436-0.609 6.356-9.502 10.069-20.914 10.069-33.193 0-33.018-26.769-59.796-59.795-59.796-12.288 0-23.691 3.712-33.193 10.069-0.375-3.429-0.609-6.907-0.609-10.437 0-31.708 15.758-59.687 39.816-76.705-14.123-16.292-22.731-37.489-22.731-60.748 0-51.11 41.31-92.563 92.363-92.812v-0.025h10.144v17.084h-6.156l-3.904 0.025c-41.552 0.199-75.362 34.178-75.362 75.729 0 41.771 33.977 75.755 75.746 75.755 1.285 0 2.552-0.1 3.82-0.192l1.269-0.084 11.228-0.725 5.097 10.035c19.003 37.348 56.751 60.555 98.511 60.555 51.778 0 97.228-36.713 108.054-87.291l2.721-12.671 12.931-0.802c31.675-1.968 56.483-28.355 56.483-60.053 0-33.128-26.854-60.1-59.938-60.281-0.358 0.025-0.675 0.043-1.001 0.043l-0.4-0.043h-6.998v-17.084h6.998v0.051c0.359-0.010 0.7-0.051 1.061-0.051 42.719 0 77.364 34.628 77.364 77.365-0.005 41.086-32.071 74.586-72.514 77.106zM116.104 296.167c-2.061 0.133-4.104 0.309-6.189 0.309-21.673 0-41.561-7.483-57.36-19.938-17.185 11.053-29.789 28.646-33.96 49.343 4.971-1.001 10.061-1.51 15.208-1.51 42.394 0 76.88 34.486 76.88 76.88 0 5.146-0.509 10.236-1.51 15.208 31.892-6.432 56.626-32.667 60.93-65.269-23.159-12.328-42.078-31.598-53.999-55.023z" horiz-adv-x="427" />
35
+ <glyph unicode="&#xe619;" d="M168.601 350.273c59.37-11.145 104.435-63.375 104.435-125.932 0-70.666-57.485-128.149-128.134-128.149-58.002 0-107.044 38.355-122.719 91.636 11.946-3.937 24.492-5.963 37.297-5.963 65.944 0 119.591 53.656 119.591 119.6-0.001 16.95-3.622 33.559-10.47 48.808zM144.901 369.552c-2.887 0-5.706-0.267-8.542-0.434 15.899-18.052 25.627-41.693 25.627-67.654 0-56.609-45.891-102.516-102.507-102.516-22.198 0-42.694 7.133-59.479 19.129 3.304-77.281 66.812-138.97 144.901-138.97 80.208 0 145.218 65.024 145.218 145.233s-65.009 145.212-145.218 145.212v0z" horiz-adv-x="290" />
36
+ <glyph unicode="&#xe61a;" d="M372.681 296.692c-13.631 63.6-70.105 111.299-137.761 111.299-54.866 0-102.308-31.416-125.589-77.18-2.27 0.15-4.529 0.342-6.832 0.342-56.609 0-102.499-45.89-102.499-102.507 0-56.442 45.614-102.207 101.981-102.49v-0.025h51.779v17.085l-51.696 0.025c-46.857 0.233-84.98 38.548-84.98 85.405 0 47.099 38.314 85.422 85.414 85.422 1.493 0 2.961-0.117 4.438-0.217l12.513-0.834 5.106 10.043c21.289 41.852 63.583 67.846 110.366 67.846 58.002 0 108.912-41.126 121.059-97.793l2.712-12.663 12.931-0.81c35.903-2.236 64.033-32.142 64.033-68.088 0-37.563-30.458-68.137-67.973-68.337-0.424 0.025-0.793 0.041-1.167 0.059l-41.911-0.059v-17.085h41.544v0.060c0.393-0.010 0.776-0.060 1.169-0.060 47.164 0 85.421 38.24 85.421 85.422 0 45.365-35.403 82.363-80.058 85.14zM237.833 126.098h35.961l-54.789 78.256-13.991-9.801 35.972-51.371h-35.972l20.364-29.089 51.061-73.419 13.998 9.795-51.061 73.427z" horiz-adv-x="453" />
37
+ <glyph unicode="&#xe61b;" d="M162.303 454.457h17.084v-68.104h-17.084v68.104zM0 292.889h68.104v-17.085h-68.104v17.085zM92.020 350.466l-48.166 48.165 12.080 12.080 48.165-48.166-12.079-12.079zM248.33 350.442l-12.078 12.079 48.15 48.15 12.079-12.079-48.15-48.15zM422.942 234.152c-12.339 57.593-63.49 100.796-124.765 100.796-18.661 0-36.369-4.013-52.337-11.22-14.231 27.354-42.761 46.073-75.729 46.073-47.174 0-85.422-38.24-85.422-85.415 0-21.013 7.675-40.166 20.271-55.032-12.196-15.717-19.537-35.395-19.537-56.834 0-51.112 41.31-92.563 92.363-92.812v-0.025h35.771v17.084l-35.687 0.024c-41.552 0.2-75.362 34.178-75.362 75.729 0 41.769 33.977 75.753 75.746 75.753 1.284 0 2.552-0.1 3.82-0.192l12.497-0.809 5.097 10.036c19.003 37.347 56.751 60.554 98.51 60.554 51.781 0 97.229-36.713 108.056-87.291l2.721-12.672 12.929-0.801c31.676-1.969 56.484-28.354 56.484-60.055 0-33.125-26.854-60.096-59.938-60.279-0.36 0.024-0.676 0.043-1.001 0.043l-17.485-0.043h-32.626v-17.084h49.711v0.050c0.358-0.008 0.7-0.050 1.060-0.050 42.721 0 77.364 34.627 77.364 77.363-0.003 41.087-32.070 74.59-72.511 77.109zM184.443 265.051c-2.061 0.133-4.104 0.309-6.189 0.309-23.625 0-45.114-8.893-61.506-23.433-9.327 11.67-14.975 26.394-14.975 42.46 0 37.673 30.657 68.33 68.338 68.33 26.411 0 49.201-15.149 60.58-37.113-19.637-12.305-35.687-29.798-46.248-50.553zM289.085 79.624h35.963l-54.79 78.256-13.99-9.802 35.97-51.37h-35.97l20.361-29.089 51.063-73.417 13.999 9.792-51.062 73.427z" horiz-adv-x="496" />
38
+ <glyph unicode="&#xe61c;" d="M372.681 300.963c-13.631 63.6-70.105 111.299-137.761 111.299-54.866 0-102.308-31.416-125.589-77.18-2.27 0.15-4.529 0.341-6.832 0.341-56.609 0-102.499-45.889-102.499-102.506 0-56.442 45.614-102.208 101.981-102.49v-0.024h9.068v17.084h-5.164l-3.821 0.025c-46.857 0.232-84.98 38.547-84.98 85.405 0 47.098 38.314 85.422 85.414 85.422 1.493 0 2.961-0.117 4.438-0.217l12.513-0.834 5.106 10.044c21.289 41.852 63.583 67.846 110.366 67.846 58.002 0 108.912-41.126 121.059-97.794l2.712-12.663 12.931-0.81c35.903-2.235 64.033-32.141 64.033-68.088 0-37.563-30.458-68.138-67.973-68.339-0.424 0.025-0.793 0.041-1.167 0.059l-7.741-0.059v-17.084h7.374v0.060c0.393-0.010 0.776-0.060 1.169-0.060 47.164 0 85.421 38.24 85.421 85.423 0 45.366-35.403 82.363-80.058 85.14zM119.592 173.188l54.799-78.249 13.982 9.801-54.791 78.258zM273.135 173.188l54.799-78.249 13.982 9.801-54.79 78.258zM246.376 104.74h35.961l-54.789 78.258-13.991-9.803 35.97-51.368h-35.97l59.795-85.423 13.998 9.793-39.431 56.341z" horiz-adv-x="453" />
39
+ <glyph unicode="&#xe61d;" d="M162.303 458.711h17.084v-68.104h-17.084v68.104zM0 297.143h68.104v-17.085h-68.104v17.085zM92.021 354.72l-48.166 48.165 12.080 12.080 48.166-48.166-12.079-12.079zM248.331 354.697l-12.078 12.079 48.15 48.15 12.079-12.079-48.15-48.15zM422.942 238.407c-12.339 57.593-63.492 100.796-124.765 100.796-18.661 0-36.369-4.013-52.329-11.22-14.24 27.354-42.77 46.073-75.737 46.073-47.174 0-85.422-38.24-85.422-85.415 0-21.013 7.683-40.166 20.271-55.032-12.205-15.718-19.537-35.396-19.537-56.833 0-51.111 41.31-92.562 92.363-92.814v-0.023h1.602v17.084l-1.518 0.025c-41.552 0.2-75.362 34.178-75.362 75.729 0 41.769 33.977 75.754 75.746 75.754 1.284 0 2.552-0.1 3.82-0.192l12.497-0.809 5.097 10.036c19.003 37.347 56.751 60.554 98.51 60.554 51.781 0 97.229-36.713 108.056-87.291l2.721-12.674 12.929-0.799c31.676-1.971 56.484-28.354 56.484-60.057 0-33.126-26.854-60.095-59.938-60.277-0.359 0.024-0.676 0.041-1.001 0.041l-7.399-0.041v-17.084h7v0.048c0.357-0.009 0.699-0.048 1.059-0.048 42.721 0 77.364 34.627 77.364 77.361-0.003 41.087-32.070 74.589-72.511 77.108zM184.443 269.306c-2.061 0.134-4.104 0.309-6.189 0.309-23.625 0-45.122-8.901-61.506-23.433-9.327 11.678-14.975 26.394-14.975 42.46 0 37.673 30.657 68.33 68.338 68.33 26.402 0 49.201-15.149 60.571-37.113-19.628-12.297-35.687-29.798-46.239-50.553zM179.279 126.73l54.799-78.249 13.981 9.803-54.79 78.256zM332.822 126.73l54.799-78.249 13.982 9.803-54.791 78.256zM306.063 58.284h35.96l-54.788 78.256-13.993-9.801 35.972-51.369h-35.972l59.797-85.424 13.998 9.794-39.433 56.344z" horiz-adv-x="496" />
40
+ <glyph unicode="&#xe61e;" d="M354.602 263.667c-12.337 57.593-63.49 100.796-124.763 100.796-15.366 0-30.090-2.736-43.721-7.725-8.108 43.637-46.165 76.713-92.154 76.713-3.529 0-6.999-0.234-10.436-0.609 6.356-9.502 10.069-20.914 10.069-33.193 0-33.018-26.769-59.795-59.795-59.795-12.288 0-23.691 3.712-33.193 10.069-0.375-3.429-0.609-6.907-0.609-10.436 0-31.708 15.758-59.687 39.816-76.705-14.124-16.292-22.732-37.489-22.732-60.747 0-51.111 41.31-92.562 92.363-92.814v-0.022h1.602v17.081l-1.518 0.027c-41.552 0.198-75.362 34.176-75.362 75.729 0 41.769 33.977 75.754 75.746 75.754 1.285 0 2.552-0.1 3.82-0.191l1.269-0.084 11.228-0.726 5.097 10.036c19.003 37.347 56.751 60.554 98.511 60.554 51.778 0 97.227-36.713 108.054-87.291l2.721-12.671 12.931-0.801c31.675-1.968 56.483-28.354 56.483-60.055 0-33.127-26.854-60.097-59.938-60.281-0.357 0.027-0.675 0.043-1.001 0.043l-7.399-0.043v-17.082h6.999v0.048c0.359-0.007 0.7-0.048 1.061-0.048 42.719 0 77.364 34.627 77.364 77.363-0.004 41.085-32.070 74.586-72.513 77.106zM116.104 294.565c-2.061 0.133-4.104 0.308-6.189 0.308-21.673 0-41.561-7.483-57.36-19.938-17.185 11.053-29.789 28.646-33.96 49.343 4.971-1.001 10.061-1.51 15.208-1.51 42.394 0 76.88 34.486 76.88 76.88 0 5.147-0.509 10.235-1.51 15.208 31.892-6.432 56.626-32.667 60.93-65.269-23.159-12.327-42.078-31.597-53.999-55.022zM110.932 151.991l54.798-78.25 13.982 9.803-54.791 78.256zM264.477 151.991l54.797-78.25 13.981 9.803-54.79 78.256zM237.713 83.544h35.964l-54.791 78.256-13.989-9.801 35.97-51.369h-35.97l59.795-85.424 14 9.794-39.435 56.344z" horiz-adv-x="427" />
41
+ <glyph unicode="&#xe61f;" d="M354.602 259.412c-12.337 57.593-63.49 100.796-124.763 100.796-15.366 0-30.081-2.736-43.721-7.725-8.108 43.637-46.165 76.713-92.154 76.713-3.529 0-6.999-0.234-10.436-0.609 6.356-9.502 10.069-20.914 10.069-33.193 0-33.018-26.769-59.795-59.795-59.795-12.288 0-23.691 3.712-33.193 10.069-0.375-3.429-0.609-6.907-0.609-10.436 0-31.708 15.758-59.687 39.816-76.705-14.123-16.292-22.731-37.49-22.731-60.748 0-51.112 41.31-92.563 92.363-92.812v-0.025h35.771v17.084l-35.689 0.024c-41.552 0.201-75.362 34.179-75.362 75.729 0 41.77 33.977 75.754 75.746 75.754 1.285 0 2.552-0.1 3.82-0.191l1.269-0.084 11.228-0.726 5.097 10.036c19.003 37.347 56.751 60.555 98.511 60.555 51.778 0 97.228-36.714 108.054-87.292l2.721-12.671 12.931-0.801c31.675-1.968 56.483-28.356 56.483-60.054 0-33.125-26.854-60.096-59.938-60.281-0.358 0.025-0.675 0.043-1.001 0.043l-17.484-0.043h-32.625v-17.082h49.709v0.050c0.359-0.009 0.7-0.050 1.061-0.050 42.719 0 77.364 34.627 77.364 77.363-0.003 41.086-32.069 74.588-72.512 77.107zM116.104 290.311c-2.061 0.133-4.104 0.308-6.189 0.308-21.673 0-41.561-7.483-57.36-19.938-17.185 11.053-29.781 28.646-33.96 49.343 4.971-1.001 10.061-1.509 15.208-1.509 42.394 0 76.88 34.486 76.88 76.88 0 5.147-0.509 10.235-1.51 15.208 31.892-6.432 56.626-32.667 60.939-65.26-23.176-12.338-42.096-31.599-54.008-55.032zM220.746 104.884h35.963l-54.791 78.257-13.99-9.803 35.972-51.37h-35.972l20.364-29.089 51.062-73.418 13.998 9.793-51.063 73.428z" horiz-adv-x="427" />
42
+ <glyph unicode="&#xe620;" d="M160.7 377.885l-17.684-147.904h78.165l-125.515-160.244 15.283 124.030 2.369 19.178h-78.749l126.131 164.94zM185.084 437.89l-185.084-242.029h93.998l-22.816-185.084 185.083 236.289h-93.996l22.815 190.824z" horiz-adv-x="257" />
43
+ <glyph unicode="&#xe621;" d="M413.237 326.515v0.325h-327.816c-9.418 0-17.084 7.667-17.084 17.084s7.667 17.084 17.084 17.084h281.895c23.592 0 42.712 19.12 42.712 42.711s-19.12 42.711-42.712 42.711l-323.538-0.067c-0.358 0.009-0.708 0.067-1.067 0.067-23.591 0-42.711-19.12-42.711-42.711s19.12-42.711 42.711-42.711v17.084c-14.131 0-25.627 11.496-25.627 25.627s11.496 25.626 25.627 25.626h324.605c14.133 0 25.627-11.495 25.627-25.626s-11.494-25.627-25.627-25.627h-281.895c-18.87 0-34.169-15.299-34.169-34.169s15.3-34.168 34.169-34.168h324.605c9.418 0 17.085-7.667 17.085-17.085s-7.667-17.084-17.085-17.084h-273.351c-18.87 0-34.169-15.3-34.169-34.169 0-18.872 15.299-34.169 34.169-34.169h187.929c9.419 0 17.085-7.667 17.085-17.084s-7.666-17.087-17.085-17.087l-205.097-0.009c-18.828-0.049-34.085-15.313-34.085-34.158s15.257-34.111 34.085-34.161v-0.011h102.59c9.418 0 17.085-7.664 17.085-17.082s-7.667-17.084-17.085-17.084h-17.084c-18.87 0-34.169-15.301-34.169-34.169 0-18.871 15.299-34.169 34.169-34.169v17.084c-9.418 0-17.085 7.665-17.085 17.085 0 9.418 7.667 17.083 17.085 17.083h17.084c18.871 0 34.168 15.3 34.168 34.17 0 18.869-15.298 34.17-34.168 34.17h-102.507c-9.418 0-17.084 7.666-17.084 17.084s7.666 17.084 17.084 17.084h205.013c18.87 0 34.169 15.301 34.169 34.17 0 18.385-14.557 33.268-32.751 34.025v0.143h-189.346c-9.418 0-17.084 7.667-17.084 17.085 0 9.417 7.667 17.084 17.084 17.084h273.351c18.869 0 34.17 15.299 34.17 34.169 0 17.77-13.615 32.202-30.959 33.845z" horiz-adv-x="444" />
44
+ <glyph unicode="&#xe622;" d="M372.681 318.048c-13.631 63.6-70.105 111.299-137.761 111.299-54.866 0-102.308-31.416-125.589-77.18-2.27 0.15-4.529 0.342-6.832 0.342-56.609 0-102.499-45.89-102.499-102.507 0-56.441 45.614-102.207 101.981-102.49v-0.025h17.61v17.083h-13.706l-3.821 0.025c-46.857 0.233-84.98 38.547-84.98 85.406 0 47.1 38.314 85.422 85.414 85.422 1.493 0 2.961-0.117 4.438-0.216l1.268-0.083 11.245-0.751 5.106 10.044c21.289 41.852 63.583 67.845 110.366 67.845 58.002 0 108.912-41.126 121.059-97.793l2.712-12.664 12.931-0.809c35.903-2.236 64.033-32.143 64.033-68.088 0-37.563-30.458-68.138-67.973-68.341-0.424 0.025-0.793 0.043-1.167 0.060l-17.451-0.060h-24.46v-17.082h41.544v0.058c0.393-0.008 0.776-0.058 1.169-0.058 47.164 0 85.421 38.24 85.421 85.423 0 45.365-35.403 82.362-80.058 85.14zM153.761 96.199c-7.074 0-12.813-5.739-12.813-12.812s5.739-12.812 12.813-12.812 12.813 5.739 12.813 12.812-5.739 12.812-12.813 12.812zM222.099 44.945c-7.074 0-12.813-5.739-12.813-12.812s5.739-12.812 12.813-12.812c7.076 0 12.813 5.738 12.813 12.812 0.001 7.073-5.738 12.812-12.813 12.812zM290.437 79.115c-7.075 0-12.813-5.739-12.813-12.813s5.738-12.813 12.813-12.813c7.073 0 12.813 5.738 12.813 12.813 0.003 7.074-5.74 12.813-12.813 12.813zM145.219 224.125h17.084v-102.297h-17.084v102.297zM230.641 70.873v119.083h-17.084v-119.383h17.084zM298.979 106.645v117.48h-17.084v-119.385h17.084z" horiz-adv-x="453" />
45
+ <glyph unicode="&#xe623;" d="M162.303 480h17.084v-68.104h-17.084v68.104zM0 318.432h68.104v-17.084h-68.104v17.084zM92.021 376.009l-48.166 48.166 12.080 12.079 48.166-48.166-12.079-12.079zM248.326 375.983l-12.079 12.079 48.15 48.149 12.079-12.079-48.149-48.149zM422.942 259.696c-12.339 57.593-63.49 100.796-124.765 100.796-18.661 0-36.369-4.013-52.329-11.22-14.24 27.353-42.77 46.073-75.737 46.073-47.174 0-85.422-38.24-85.422-85.414 0-21.014 7.683-40.167 20.271-55.033-12.205-15.716-19.537-35.396-19.537-56.833 0-51.111 41.31-92.564 92.363-92.813v-0.024h10.144v17.084h-6.156l-3.904 0.024c-41.552 0.2-75.362 34.179-75.362 75.729 0 41.769 33.977 75.753 75.746 75.753 1.284 0 2.552-0.1 3.82-0.192l12.497-0.809 5.097 10.036c19.003 37.347 56.751 60.555 98.51 60.555 51.781 0 97.229-36.713 108.056-87.291l2.721-12.672 12.929-0.8c31.676-1.969 56.484-28.355 56.484-60.056 0-33.126-26.854-60.096-59.938-60.278-0.359 0.024-0.676 0.041-1.001 0.041l-24.484-0.041v-17.084h24.085v0.049c0.357-0.008 0.699-0.049 1.059-0.049 42.721 0 77.364 34.627 77.364 77.362-0.003 41.085-32.070 74.587-72.511 77.107zM184.443 290.595c-2.061 0.133-4.104 0.308-6.189 0.308-23.625 0-45.122-8.893-61.506-23.433-9.327 11.671-14.975 26.395-14.975 42.461 0 37.672 30.657 68.33 68.338 68.33 26.402 0 49.201-15.149 60.571-37.113-19.628-12.306-35.687-29.798-46.239-50.553zM222.015 45.537c-7.074 0-12.813-5.737-12.813-12.812 0-7.072 5.739-12.812 12.813-12.812s12.813 5.74 12.813 12.812c0 7.075-5.739 12.812-12.813 12.812zM290.354-5.714c-7.074 0-12.813-5.74-12.813-12.815 0-7.073 5.739-12.812 12.813-12.812 7.073 0 12.812 5.739 12.812 12.812 0 7.075-5.739 12.815-12.812 12.815zM358.692 28.453c-7.074 0-12.813-5.739-12.813-12.812 0-7.072 5.739-12.812 12.813-12.812 7.072 0 12.812 5.739 12.812 12.812s-5.74 12.812-12.812 12.812zM213.473 173.463h17.084v-102.297h-17.084v102.297zM298.897 20.211v119.083h-17.086v-119.383h17.086zM367.233 55.981v117.482h-17.084v-119.382h17.084z" horiz-adv-x="496" />
46
+ <glyph unicode="&#xe624;" d="M354.602 284.972c-12.337 57.593-63.49 100.796-124.763 100.796-15.366 0-30.090-2.736-43.721-7.725-8.108 43.637-46.165 76.713-92.154 76.713-3.529 0-6.999-0.233-10.436-0.608 6.356-9.502 10.069-20.914 10.069-33.193 0-33.018-26.769-59.796-59.795-59.796-12.288 0-23.691 3.712-33.193 10.069-0.375-3.428-0.609-6.907-0.609-10.435 0-31.708 15.758-59.688 39.816-76.705-14.123-16.292-22.731-37.49-22.731-60.748 0-51.111 41.31-92.562 92.363-92.812v-0.024h10.144v17.083h-6.156l-3.904 0.025c-41.552 0.199-75.362 34.179-75.362 75.729 0 41.77 33.977 75.755 75.746 75.755 1.285 0 2.552-0.1 3.82-0.192l12.497-0.809 5.097 10.036c19.003 37.347 56.751 60.555 98.511 60.555 51.778 0 97.228-36.713 108.054-87.291l2.721-12.672 12.931-0.8c31.675-1.969 56.483-28.355 56.483-60.055 0-33.126-26.854-60.096-59.938-60.281-0.358 0.025-0.675 0.043-1.001 0.043l-24.484-0.043v-17.083h24.084v0.050c0.359-0.008 0.7-0.050 1.061-0.050 42.719 0 77.364 34.627 77.364 77.364-0.005 41.083-32.071 74.585-72.514 77.104zM116.104 315.871c-2.061 0.133-4.104 0.308-6.189 0.308-21.673 0-41.561-7.483-57.36-19.937-17.185 11.052-29.789 28.646-33.96 49.342 4.971-1.001 10.061-1.509 15.208-1.509 42.394 0 76.88 34.486 76.88 76.88 0 5.147-0.509 10.236-1.51 15.207 31.892-6.431 56.626-32.667 60.93-65.259-23.159-12.338-42.078-31.599-53.999-55.032zM153.759 70.781c-7.074 0-12.813-5.739-12.813-12.812 0-7.075 5.739-12.813 12.813-12.813s12.813 5.738 12.813 12.813c0.001 7.073-5.738 12.812-12.813 12.812zM222.098 19.528c-7.074 0-12.813-5.74-12.813-12.813 0-7.074 5.739-12.812 12.813-12.812s12.813 5.738 12.813 12.812c0 7.073-5.739 12.813-12.813 12.813zM290.438 53.697c-7.076 0-12.814-5.739-12.814-12.814 0-7.073 5.738-12.812 12.814-12.812 7.072 0 12.812 5.738 12.812 12.812s-5.74 12.814-12.812 12.814zM145.217 198.707h17.085v-102.299h-17.085v102.299zM230.641 45.455v119.082h-17.086v-119.383h17.086zM298.979 81.226v117.481h-17.086v-119.384h17.086z" horiz-adv-x="427" />
47
+ <glyph unicode="&#xe625;" d="M0 177.35h478.365v-17.082h-478.365v17.082zM34.169 126.098h427.113v-17.086h-427.113v17.086zM85.423 74.845h307.521v-17.085h-307.521v17.085zM17.085 228.604h444.197v-17.084h-444.197v17.084zM118.515 296.984c1.494 0 2.962-0.117 4.43-0.217l1.277-0.083 11.245-0.751 5.105 10.044c21.297 41.852 63.583 67.845 110.365 67.845 58.002 0 108.913-41.126 121.051-97.793l2.72-12.664 12.932-0.809c10.312-0.642 19.944-3.628 28.495-8.325h28.071c-14.332 14.548-33.802 24.025-55.507 25.376-13.632 63.6-70.107 111.3-137.762 111.3-54.866 0-102.307-31.416-125.59-77.181-2.269 0.15-4.53 0.342-6.833 0.342-41.368 0-76.913-24.551-93.113-59.837h19.229c14.791 25.51 42.336 42.753 73.885 42.753z" horiz-adv-x="479" />
48
+ <glyph unicode="&#xe626;" d="M162.303 424.534h17.084v-68.104h-17.084v68.104zM0 262.965h68.104v-17.084h-68.104v17.084zM92.021 320.543l-48.166 48.165 12.080 12.080 48.166-48.166-12.079-12.079zM248.336 320.52l-12.078 12.078 48.15 48.149 12.078-12.078-48.149-48.15zM76.88 135.174h427.112v-17.084h-427.112v17.084zM111.049 83.92h375.858v-17.084h-375.858v17.084zM162.303 41.208h256.266v-17.084h-256.266v17.084zM93.965 186.428h392.942v-17.087h-392.942v17.087zM101.723 203.512h31.692c12.571 9.284 28.046 14.842 44.838 14.842 1.284 0 2.552-0.101 3.82-0.193l12.497-0.809 5.097 10.037c19.003 37.346 56.75 60.555 98.51 60.555 50.787 0 95.399-35.354 107.312-84.429h17.451v0.717c-12.338 57.594-63.491 100.796-124.764 100.796-18.662 0-36.371-4.012-52.33-11.22-14.24 27.354-42.77 46.074-75.738 46.074-47.174 0-85.422-38.241-85.422-85.414 0.003-19.148 6.393-36.734 17.037-50.956zM170.111 322.794c26.403 0 49.202-15.149 60.572-37.113-19.628-12.305-35.687-29.797-46.24-50.553-2.061 0.134-4.104 0.309-6.189 0.309-23.608 0-45.056-8.926-61.415-23.449-9.368 11.67-15.065 26.386-15.065 42.478-0.001 37.672 30.656 68.328 68.337 68.328z" horiz-adv-x="504" />
49
+ <glyph unicode="&#xe627;" d="M8.544 160.4h427.112v-17.086h-427.112v17.086zM42.712 109.146h375.859v-17.084h-375.859v17.084zM93.966 66.436h256.267v-17.085h-256.267v17.085zM25.628 211.652h392.943v-17.084h-392.943v17.084zM39.659 228.738h25.418c12.571 9.285 28.046 14.84 44.838 14.84 1.285 0 2.553-0.1 3.821-0.191l12.497-0.81 5.096 10.036c19.003 37.347 56.751 60.554 98.511 60.554 50.787 0 95.4-35.353 107.312-84.429h17.451v0.717c-12.337 57.593-63.49 100.797-124.764 100.797-15.366 0-30.082-2.736-43.711-7.716-8.075 43.662-46.148 76.772-92.163 76.772-3.529 0-6.999-0.234-10.437-0.61 6.357-9.501 10.069-20.913 10.069-33.192 0-33.018-26.769-59.795-59.795-59.795-12.288 0-23.691 3.712-33.193 10.068-0.375-3.428-0.609-6.907-0.609-10.436 0.001-31.641 15.684-59.578 39.659-76.605zM33.803 288.625c42.394 0 76.88 34.487 76.88 76.881 0 5.147-0.509 10.235-1.51 15.207 31.909-6.431 56.66-32.701 60.939-65.326-23.166-12.33-42.085-31.6-54.006-55.033-2.061 0.133-4.104 0.309-6.19 0.309-21.648 0-41.477-7.508-57.243-19.946-17.251 11.045-29.897 28.671-34.077 49.418 4.971-1 10.060-1.51 15.207-1.51z" horiz-adv-x="436" />
50
+ <glyph unicode="&#xe628;" d="M213.557 168.734h17.084v-59.797h-17.084v59.797zM281.895 202.9h17.084v-59.795h-17.084v59.795zM145.219 202.9h17.084v-59.795h-17.084v59.795zM213.557 83.311h17.084v-59.796h-17.084v59.796zM281.895 117.48h17.084v-59.797h-17.084v59.797zM145.219 117.48h17.084v-59.797h-17.084v59.797zM372.681 313.852c-13.631 63.6-70.105 111.299-137.761 111.299-54.866 0-102.308-31.416-125.589-77.18-2.27 0.15-4.529 0.342-6.832 0.342-56.609 0-102.499-45.89-102.499-102.507 0-56.445 45.614-102.208 101.981-102.492v-0.023h17.61v17.084h-13.706l-3.821 0.025c-46.857 0.232-84.98 38.548-84.98 85.406 0 47.099 38.314 85.422 85.414 85.422 1.493 0 2.961-0.117 4.438-0.216l1.268-0.083 11.245-0.751 5.106 10.044c21.289 41.852 63.583 67.846 110.366 67.846 58.002 0 108.912-41.126 121.059-97.793l2.712-12.663 12.931-0.81c35.903-2.235 64.033-32.142 64.033-68.088 0-37.563-30.458-68.138-67.973-68.338-0.424 0.024-0.793 0.041-1.167 0.060l-17.451-0.060h-24.46v-17.084h41.544v0.060c0.393-0.011 0.776-0.060 1.169-0.060 47.164 0 85.421 38.237 85.421 85.422 0 45.363-35.403 82.36-80.058 85.138z" horiz-adv-x="453" />
51
+ <glyph unicode="&#xe629;" d="M162.303 471.517h17.084v-68.105h-17.084v68.105zM0 309.948h68.104v-17.084h-68.104v17.084zM92.022 367.526l-48.166 48.166 12.078 12.078 48.165-48.166-12.079-12.079zM248.317 367.498l-12.078 12.078 48.148 48.148 12.078-12.078-48.149-48.149zM281.895 122.368h17.084v-59.796h-17.084v59.796zM350.232 156.537h17.085v-59.795h-17.085v59.795zM213.556 156.537h17.085v-59.795h-17.085v59.795zM281.895 36.946h17.084v-59.796h-17.084v59.796zM350.232 71.115h17.085v-59.796h-17.085v59.796zM213.556 71.115h17.085v-59.796h-17.085v59.796zM422.942 251.212c-12.339 57.593-63.49 100.797-124.765 100.797-18.661 0-36.369-4.013-52.329-11.22-14.24 27.354-42.77 46.072-75.737 46.072-47.174 0-85.422-38.239-85.422-85.414 0-21.013 7.683-40.167 20.271-55.032-12.205-15.717-19.537-35.396-19.537-56.835 0-51.111 41.31-92.562 92.363-92.814v-0.022h10.144v17.084h-6.156l-3.904 0.024c-41.552 0.198-75.362 34.178-75.362 75.729 0 41.769 33.977 75.755 75.746 75.755 1.284 0 2.552-0.101 3.82-0.192l12.497-0.808 5.097 10.035c19.003 37.348 56.751 60.554 98.51 60.554 51.781 0 97.229-36.713 108.056-87.291l2.721-12.671 12.929-0.801c31.676-1.969 56.484-28.355 56.484-60.055 0-33.127-26.854-60.098-59.938-60.279-0.359 0.025-0.676 0.041-1.001 0.041l-24.484-0.041v-17.084h24.085v0.049c0.357-0.008 0.699-0.049 1.059-0.049 42.721 0 77.364 34.628 77.364 77.363-0.003 41.082-32.070 74.585-72.511 77.105zM184.443 282.11c-2.061 0.134-4.104 0.309-6.189 0.309-23.625 0-45.122-8.893-61.506-23.433-9.327 11.67-14.975 26.395-14.975 42.461 0 37.672 30.657 68.33 68.338 68.33 26.402 0 49.201-15.149 60.571-37.115-19.628-12.303-35.687-29.796-46.239-50.552z" horiz-adv-x="496" />
52
+ <glyph unicode="&#xe62a;" d="M213.555 147.628h17.085v-59.796h-17.085v59.796zM281.893 181.797h17.086v-59.796h-17.086v59.796zM145.217 181.797h17.085v-59.796h-17.085v59.796zM213.555 62.206h17.085v-59.796h-17.085v59.796zM281.893 96.375h17.086v-59.796h-17.086v59.796zM145.217 96.375h17.085v-59.796h-17.085v59.796zM354.602 276.472c-12.337 57.593-63.49 100.796-124.763 100.796-15.366 0-30.090-2.736-43.721-7.725-8.108 43.637-46.165 76.713-92.154 76.713-3.529 0-6.999-0.234-10.436-0.609 6.356-9.502 10.069-20.914 10.069-33.193 0-33.018-26.769-59.796-59.795-59.796-12.288 0-23.691 3.712-33.193 10.069-0.375-3.429-0.609-6.907-0.609-10.436 0-31.708 15.758-59.687 39.816-76.705-14.123-16.292-22.731-37.489-22.731-60.747 0-51.112 41.31-92.563 92.363-92.815v-0.024h10.144v17.085h-6.156l-3.904 0.024c-41.552 0.199-75.362 34.178-75.362 75.729 0 41.768 33.977 75.754 75.746 75.754 1.285 0 2.552-0.101 3.82-0.192l12.497-0.808 5.097 10.035c19.003 37.348 56.751 60.555 98.511 60.555 51.778 0 97.228-36.713 108.054-87.291l2.721-12.671 12.931-0.801c31.675-1.968 56.483-28.354 56.483-60.056 0-33.125-26.854-60.095-59.938-60.278-0.358 0.025-0.675 0.041-1.001 0.041l-24.484-0.041v-17.085h24.084v0.050c0.359-0.008 0.7-0.050 1.061-0.050 42.719 0 77.364 34.629 77.364 77.363-0.005 41.088-32.071 74.589-72.514 77.109zM116.104 307.37c-2.061 0.134-4.104 0.309-6.189 0.309-21.673 0-41.561-7.483-57.36-19.938-17.185 11.053-29.789 28.647-33.96 49.343 4.971-1.001 10.061-1.51 15.208-1.51 42.394 0 76.88 34.486 76.88 76.881 0 5.147-0.509 10.235-1.51 15.207 31.892-6.432 56.626-32.667 60.93-65.259-23.159-12.338-42.078-31.6-53.999-55.033z" horiz-adv-x="427" />
53
+ <glyph unicode="&#xe62b;" d="M213.557 128.107h17.084v-34.17h-17.084v34.17zM281.895 162.461h17.084v-34.354h-17.084v34.354zM145.219 162.461h17.084v-34.354h-17.084v34.354zM372.681 298.853c-13.631 63.599-70.105 111.299-137.761 111.299-54.866 0-102.308-31.416-125.589-77.18-2.27 0.15-4.529 0.342-6.832 0.342-56.609 0-102.499-45.89-102.499-102.507 0-56.442 45.614-102.206 101.981-102.491v-0.024h17.61v17.084h-13.706l-3.821 0.024c-46.857 0.233-84.98 38.551-84.98 85.407 0 47.1 38.314 85.422 85.414 85.422 1.493 0 2.961-0.117 4.438-0.216l1.268-0.083 11.245-0.751 5.106 10.044c21.289 41.852 63.583 67.846 110.366 67.846 58.002 0 108.912-41.126 121.059-97.793l2.712-12.664 12.931-0.809c35.903-2.236 64.033-32.143 64.033-68.089 0-37.562-30.458-68.138-67.973-68.338-0.424 0.024-0.793 0.043-1.167 0.060l-17.451-0.060h-24.46v-17.084h41.544v0.060c0.393-0.009 0.776-0.060 1.169-0.060 47.164 0 85.421 38.24 85.421 85.422 0 45.364-35.403 82.361-80.058 85.139zM290.437 98.033c-7.075 0-12.813-5.729-12.813-12.812 0-7.081 5.738-12.812 12.813-12.812 7.073 0 12.813 5.73 12.813 12.812 0.003 7.084-5.74 12.812-12.813 12.812zM222.099 64.133c-7.074 0-12.813-5.73-12.813-12.812 0-7.083 5.739-12.812 12.813-12.812 7.076 0 12.813 5.729 12.813 12.812 0.001 7.080-5.738 12.812-12.813 12.812zM153.761 98.395c-7.074 0-12.813-5.73-12.813-12.814 0-7.082 5.739-12.813 12.813-12.813s12.813 5.731 12.813 12.813c0 7.082-5.739 12.814-12.813 12.814z" horiz-adv-x="453" />
54
+ <glyph unicode="&#xe62c;" d="M162.303 456.584h17.084v-68.104h-17.084v68.104zM0 295.015h68.104v-17.083h-68.104v17.083zM92.020 352.592l-48.166 48.166 12.080 12.080 48.166-48.166-12.080-12.080zM248.321 352.566l-12.078 12.078 48.149 48.149 12.078-12.078-48.149-48.149zM422.942 236.279c-12.339 57.593-63.49 100.796-124.765 100.796-18.661 0-36.369-4.012-52.329-11.22-14.24 27.353-42.77 46.073-75.737 46.073-47.174 0-85.422-38.24-85.422-85.414 0-21.014 7.683-40.167 20.271-55.033-12.205-15.717-19.537-35.396-19.537-56.834 0-51.11 41.31-92.562 92.363-92.813v-0.025h10.144v17.087h-6.156l-3.904 0.022c-41.552 0.2-75.362 34.179-75.362 75.729 0 41.769 33.977 75.754 75.746 75.754 1.284 0 2.552-0.1 3.82-0.192l12.497-0.808 5.097 10.035c19.003 37.347 56.751 60.555 98.51 60.555 51.781 0 97.229-36.713 108.056-87.292l2.721-12.672 12.929-0.801c31.676-1.969 56.484-28.354 56.484-60.055 0-33.127-26.854-60.097-59.938-60.279-0.359 0.023-0.676 0.041-1.001 0.041l-24.484-0.041v-17.086h24.085v0.052c0.357-0.009 0.699-0.052 1.059-0.052 42.721 0 77.364 34.629 77.364 77.365-0.003 41.086-32.070 74.589-72.511 77.108zM184.443 267.178c-2.061 0.133-4.104 0.308-6.189 0.308-23.625 0-45.122-8.901-61.506-23.432-9.327 11.679-14.975 26.395-14.975 42.461 0 37.672 30.657 68.329 68.338 68.329 26.402 0 49.201-15.149 60.571-37.113-19.628-12.296-35.687-29.798-46.239-50.553zM281.895 81.677h17.084v-34.171h-17.084v34.171zM350.232 116.029h17.085v-34.354h-17.085v34.354zM213.556 116.029h17.085v-34.354h-17.085v34.354zM358.774 51.603c-7.065 0-12.812-5.729-12.812-12.812 0-7.081 5.747-12.813 12.812-12.813s12.814 5.732 12.814 12.813c0 7.082-5.748 12.812-12.814 12.812zM290.436 17.701c-7.063 0-12.812-5.732-12.812-12.813 0-7.083 5.748-12.812 12.812-12.812 7.066 0 12.814 5.729 12.814 12.812 0 7.081-5.748 12.813-12.814 12.813zM222.098 51.962c-7.066 0-12.813-5.73-12.813-12.813 0-7.081 5.747-12.812 12.813-12.812s12.813 5.731 12.813 12.812c0.001 7.081-5.747 12.813-12.813 12.813z" horiz-adv-x="496" />
55
+ <glyph unicode="&#xe62d;" d="M354.602 261.539c-12.337 57.594-63.49 100.796-124.763 100.796-15.366 0-30.090-2.736-43.721-7.725-8.108 43.637-46.165 76.713-92.154 76.713-3.529 0-6.999-0.233-10.436-0.609 6.356-9.501 10.069-20.914 10.069-33.193 0-33.018-26.769-59.796-59.795-59.796-12.288 0-23.691 3.712-33.193 10.069-0.375-3.429-0.609-6.908-0.609-10.436 0-31.708 15.758-59.688 39.816-76.706-14.123-16.292-22.731-37.491-22.731-60.748 0-51.11 41.31-92.562 92.363-92.813v-0.024h10.144v17.086h-6.156l-3.904 0.022c-41.552 0.2-75.362 34.179-75.362 75.729 0 41.77 33.977 75.755 75.746 75.755 1.285 0 2.552-0.1 3.82-0.192l12.497-0.809 5.097 10.035c19.003 37.347 56.751 60.555 98.511 60.555 51.778 0 97.228-36.713 108.054-87.292l2.721-12.671 12.931-0.801c31.675-1.969 56.483-28.355 56.483-60.054 0-33.127-26.854-60.097-59.938-60.279-0.358 0.023-0.675 0.041-1.001 0.041l-24.484-0.041v-17.086h24.084v0.052c0.359-0.009 0.7-0.052 1.061-0.052 42.719 0 77.364 34.629 77.364 77.365-0.005 41.088-32.071 74.59-72.514 77.109zM116.104 292.438c-2.061 0.133-4.104 0.308-6.189 0.308-21.673 0-41.561-7.482-57.36-19.937-17.185 11.052-29.789 28.646-33.96 49.342 4.971-1.001 10.061-1.509 15.208-1.509 42.394 0 76.88 34.486 76.88 76.88 0 5.147-0.509 10.236-1.51 15.208 31.892-6.432 56.626-32.667 60.93-65.268-23.159-12.33-42.078-31.6-53.999-55.024zM213.555 106.938h17.085v-34.172h-17.085v34.172zM281.893 141.288h17.086v-34.353h-17.086v34.353zM145.217 141.288h17.085v-34.353h-17.085v34.353zM290.438 76.862c-7.066 0-12.814-5.729-12.814-12.813 0-7.082 5.748-12.812 12.814-12.812 7.064 0 12.812 5.73 12.812 12.812-0.001 7.084-5.748 12.813-12.812 12.813zM222.098 42.961c-7.066 0-12.813-5.732-12.813-12.812 0-7.084 5.747-12.813 12.813-12.813s12.813 5.729 12.813 12.813c0 7.080-5.748 12.812-12.813 12.812zM153.759 77.222c-7.066 0-12.813-5.73-12.813-12.813 0-7.081 5.747-12.812 12.813-12.812 7.065 0 12.813 5.731 12.813 12.812 0.001 7.081-5.747 12.813-12.813 12.813z" horiz-adv-x="427" />
56
+ <glyph unicode="&#xe62e;" d="M239.184 102.373v122.862h-17.085v-122.862l-36.338 36.338-12.079-12.079 56.959-56.96 56.951 56.96-12.080 12.079zM372.681 267.696c-13.631 63.6-70.105 111.299-137.761 111.299-54.866 0-102.308-31.416-125.589-77.18-2.27 0.15-4.529 0.341-6.832 0.341-56.609 0-102.499-45.889-102.499-102.506 0-56.441 45.614-102.207 101.981-102.49v-0.025h51.779v17.086l-51.696 0.024c-46.857 0.233-84.98 38.547-84.98 85.405 0 47.099 38.314 85.423 85.414 85.423 1.493 0 2.961-0.117 4.438-0.217l12.513-0.834 5.106 10.044c21.289 41.851 63.583 67.845 110.366 67.845 58.002 0 108.912-41.126 121.059-97.794l2.712-12.663 12.931-0.809c35.903-2.235 64.033-32.142 64.033-68.086 0-37.565-30.458-68.139-67.973-68.338-0.424 0.024-0.793 0.041-1.167 0.057l-17.451-0.057h-41.543v-17.086h58.627v0.059c0.393-0.008 0.776-0.059 1.169-0.059 47.164 0 85.421 38.24 85.421 85.424 0 45.362-35.403 82.359-80.058 85.137z" horiz-adv-x="453" />
57
+ <glyph unicode="&#xe62f;" d="M34.169 352.984c-18.87 0-34.169-15.299-34.169-34.169 0-18.878 15.299-34.169 34.169-34.169 18.887 0 34.169 15.291 34.169 34.169 0 18.87-15.282 34.169-34.169 34.169zM34.169 301.731c-9.418 0-17.084 7.666-17.084 17.084s7.667 17.084 17.084 17.084c9.418 0 17.085-7.666 17.085-17.084s-7.666-17.084-17.085-17.084zM203.946 283.612v17.084h-119.591v-205.012h17.085v102.504h68.337v17.083h-68.337v68.341z" horiz-adv-x="204" />
58
+ <glyph unicode="&#xe630;" d="M34.169 352.467c-18.87 0-34.169-15.3-34.169-34.169 0-18.878 15.299-34.169 34.169-34.169 18.886 0 34.169 15.291 34.169 34.169 0 18.869-15.283 34.169-34.169 34.169zM34.169 301.213c-9.418 0-17.084 7.667-17.084 17.085s7.666 17.084 17.084 17.084 17.084-7.666 17.084-17.084-7.666-17.085-17.084-17.085zM153.759 113.283c-37.671 0-68.329 30.658-68.329 68.33v34.186c0 37.673 30.658 68.331 68.329 68.331 23.191 0 43.697-11.638 56.059-29.355l12.214 12.212c-15.582 20.748-40.315 34.228-68.271 34.228-47.173 0-85.413-38.248-85.413-85.415v-34.187c0-47.165 38.24-85.413 85.413-85.413 27.956 0 52.689 13.489 68.271 34.235l-12.214 12.213c-12.353-17.718-32.86-29.365-56.059-29.365z" horiz-adv-x="222" />
59
+ <glyph unicode="&#xe631;" d="M111.049 335.382c-61.322 0-111.049-49.718-111.049-111.049s49.727-111.050 111.049-111.050 111.048 49.72 111.048 111.050c0.001 61.331-49.726 111.049-111.048 111.049zM111.049 130.369c-51.812 0-93.965 42.15-93.965 93.964 0 51.813 42.152 93.965 93.965 93.965 51.812 0 93.965-42.152 93.965-93.965 0.001-51.812-42.153-93.964-93.965-93.964zM74.602 188.094l54.357 18.121 18.118 54.365-54.356-18.127-18.119-54.359zM106.228 228.946l13.838 4.613-4.613-13.841-13.839-4.612 4.614 13.84z" horiz-adv-x="222" />
60
+ <glyph unicode="&#xe632;" d="M111.049 335.382c-61.322 0-111.049-49.718-111.049-111.049s49.727-111.050 111.049-111.050 111.048 49.72 111.048 111.050c0.001 61.331-49.726 111.049-111.048 111.049zM111.049 130.369c-51.812 0-93.965 42.145-93.965 93.964 0 51.805 42.152 93.965 93.965 93.965 51.812 0 93.965-42.161 93.965-93.965 0.001-51.819-42.153-93.964-93.965-93.964zM110.699 250.444c-4.755 0-9.159-1.385-12.979-3.654v0.117l-37.773-22.089 36.972-21.606v0.050c3.987-2.553 8.692-4.072 13.781-4.072 14.166 0 25.627 11.463 25.627 25.628-0.001 14.147-11.463 25.626-25.628 25.626zM110.699 216.273c-1.609 0-3.145 0.468-4.571 1.385l-11.579 7.393 11.896 7.058c1.402 0.834 2.836 1.251 4.254 1.251 4.714 0 8.542-3.82 8.542-8.542 0-4.707-3.828-8.545-8.542-8.545z" horiz-adv-x="222" />
61
+ <glyph unicode="&#xe633;" d="M111.049 335.382c-61.331 0-111.049-49.718-111.049-111.049s49.719-111.050 111.049-111.050 111.049 49.72 111.049 111.050c0 61.331-49.718 111.049-111.049 111.049zM111.049 130.369c-51.812 0-93.965 42.145-93.965 93.964 0 51.805 42.152 93.965 93.965 93.965 51.812 0 93.965-42.161 93.965-93.965 0.001-51.819-42.153-93.964-93.965-93.964zM111.049 250.444c-14.148 0-25.627-11.462-25.627-25.626 0-4.755 1.385-9.162 3.654-12.98h-0.117l22.089-37.773 21.607 36.972h-0.052c2.554 3.987 4.071 8.692 4.071 13.783 0.004 14.162-11.46 25.624-25.625 25.624zM118.215 220.245l-7.39-11.579-7.059 11.896c-0.833 1.401-1.259 2.836-1.259 4.254 0 4.721 3.829 8.542 8.542 8.542s8.542-3.82 8.542-8.542c0.001-1.601-0.458-3.136-1.376-4.571z" horiz-adv-x="222" />
62
+ <glyph unicode="&#xe634;" d="M111.049 335.382c-61.322 0-111.049-49.718-111.049-111.049s49.727-111.050 111.049-111.050 111.048 49.72 111.048 111.050c0.001 61.331-49.726 111.049-111.048 111.049zM111.049 130.369c-51.812 0-93.965 42.145-93.965 93.964 0 51.805 42.152 93.965 93.965 93.965 51.812 0 93.965-42.161 93.965-93.965 0.001-51.819-42.153-93.964-93.965-93.964zM132.932 237.814l-22.089 37.773-21.607-36.989h0.059c-2.553-3.988-4.080-8.692-4.080-13.781 0-14.149 11.47-25.627 25.627-25.627 14.155 0 25.626 11.479 25.626 25.627 0 4.771-1.385 9.176-3.652 12.996l0.116 0.001zM110.841 216.273c-4.713 0-8.543 3.838-8.543 8.543 0 1.602 0.467 3.136 1.385 4.571l7.382 11.579 7.058-11.879c0.833-1.402 1.259-2.837 1.259-4.271 0.001-4.705-3.827-8.543-8.541-8.543z" horiz-adv-x="222" />
63
+ <glyph unicode="&#xe635;" d="M111.049 335.382c-61.331 0-111.049-49.718-111.049-111.049s49.719-111.050 111.049-111.050 111.049 49.72 111.049 111.050c0 61.331-49.718 111.049-111.049 111.049zM111.049 130.369c-51.812 0-93.965 42.145-93.965 93.964 0 51.805 42.152 93.965 93.965 93.965 51.812 0 93.965-42.161 93.965-93.965 0.001-51.819-42.153-93.964-93.965-93.964zM124.622 246.373c-3.987 2.553-8.692 4.071-13.781 4.071-14.165 0-25.627-11.462-25.627-25.626 0-14.149 11.462-25.628 25.627-25.628 4.755 0 9.159 1.387 12.979 3.653v-0.116l37.771 22.091-36.971 21.605 0.002-0.050zM115.096 217.542c-1.402-0.834-2.836-1.269-4.253-1.269-4.713 0-8.543 3.838-8.543 8.543 0 4.721 3.83 8.542 8.543 8.542 1.609 0 3.144-0.45 4.572-1.368l11.578-7.392-11.897-7.056z" horiz-adv-x="222" />
64
+ <glyph unicode="&#xe636;" d="M234.922 348.179c58.002 0 108.904-41.126 121.051-97.793l2.72-12.671 12.931-0.801c35.903-2.236 64.033-32.143 64.033-68.088 0-37.557-30.458-68.137-67.973-68.338-0.392 0.025-0.774 0.049-1.167 0.059l-17.451 0.309v-0.367l-247.001 0.025c-46.857 0.233-84.98 38.549-84.98 85.404 0 47.101 38.314 85.424 85.414 85.424 1.493 0 2.961-0.118 4.43-0.218l1.276-0.091 11.245-0.742 5.106 10.044c21.296 41.851 63.582 67.844 110.366 67.844zM234.922 365.264c-54.867 0-102.309-31.416-125.59-77.181-2.27 0.151-4.529 0.342-6.832 0.342-56.609 0-102.499-45.89-102.499-102.508 0-56.44 45.614-102.205 101.981-102.489v-0.024l264.166 0.059c0.393-0.008 0.776-0.059 1.169-0.059 47.164 0 85.421 38.239 85.421 85.423 0 45.363-35.403 82.362-80.058 85.14-13.631 63.597-70.105 111.297-137.758 111.297v0z" horiz-adv-x="453" />
65
+ <glyph unicode="&#xe637;" d="M273.354 143.198l-171.289 0.024c-46.857 0.233-84.98 38.551-84.98 85.406 0 47.099 38.314 85.422 85.414 85.422 1.493 0 2.961-0.116 4.429-0.216l1.276-0.083 11.245-0.751 5.105 10.043c21.298 41.852 63.583 67.846 110.365 67.846 58.002 0 108.914-41.126 121.051-97.793l2.721-12.663 12.931-0.81c15.564-0.968 29.58-7.216 40.542-16.834h23.342c-14.583 19.32-37.14 32.292-62.824 33.886-13.633 63.6-70.108 111.3-137.762 111.3-54.865 0-102.307-31.416-125.589-77.181-2.269 0.15-4.53 0.342-6.832 0.342-56.609 0-102.499-45.89-102.499-102.507 0-56.443 45.615-102.206 101.982-102.49v-0.025h171.372c18.834 0 34.168-15.323 34.168-34.168s-15.334-34.17-34.168-34.17v-17.084c28.312 0 51.254 22.94 51.254 51.255 0 28.303-22.944 51.251-51.254 51.251zM307.522 177.367h-136.577v-17.083h136.575c28.313 0 51.253 22.946 51.253 51.251 0 28.314-22.938 51.255-51.253 51.255v-17.084c18.836 0 34.17-15.324 34.17-34.171s-15.332-34.168-34.168-34.168zM418.57 228.621c14.132 0 25.627-11.497 25.627-25.628s-11.495-25.626-25.627-25.626c-0.366 0-0.71 0.092-1.075 0.109h-41.535c0.024-0.043 0.074-0.068 0.099-0.109h-0.199v-17.083h46.981v0.432c21.557 2.171 38.441 20.147 38.441 42.277 0 23.593-19.12 42.713-42.713 42.713l0.001-17.085zM452.739 143.198h-111.048v-17.085h77.072c-0.034-0.041-0.066-0.066-0.093-0.108h32.992c0.368 0.017 0.709 0.108 1.077 0.108 14.13 0 25.626-11.494 25.626-25.627 0-14.131-11.496-25.626-25.626-25.626v-17.085c23.591 0 42.711 19.122 42.711 42.711 0 23.592-19.12 42.712-42.711 42.712zM119.592 177.367h34.168v-17.083h-34.168v17.083z" horiz-adv-x="496" />
66
+ <glyph unicode="&#xe638;" d="M162.069 454.974h17.084v-68.104h-17.084v68.104zM0 292.788h68.104v-17.084h-68.104v17.084zM92.47 349.957l-48.166 48.166 12.080 12.079 48.165-48.166-12.079-12.079zM248.767 349.928l-12.078 12.079 48.15 48.15 12.079-12.079-48.149-48.15zM290.437 96.199l0.041 0.058-112.158 0.025c-41.552 0.209-75.362 34.179-75.362 75.729 0 41.77 33.977 75.754 75.745 75.754 1.285 0 2.553-0.1 3.821-0.184l1.268-0.091 11.228-0.726 5.098 10.027c19.003 37.354 56.75 60.563 98.511 60.563 50.537 0 94.94-35.012 107.12-83.713h17.644c-12.337 57.594-63.491 100.796-124.764 100.796-18.661 0-36.371-4.012-52.329-11.22-14.241 27.354-42.771 46.074-75.738 46.074-47.174 0-85.422-38.241-85.422-85.415 0-21.014 7.683-40.167 20.271-55.032-12.205-15.714-19.538-35.394-19.538-56.832 0-51.111 41.31-92.562 92.363-92.812v-0.025l112.201-0.059c18.836 0 34.168-15.325 34.168-34.17s-15.332-34.168-34.168-34.168v-17.084c28.312 0 51.254 22.939 51.254 51.252 0 28.305-22.943 51.253-51.254 51.253zM170.561 352.208c26.402 0 49.201-15.149 60.572-37.113-19.629-12.296-35.688-29.798-46.24-50.553-2.060 0.133-4.104 0.309-6.19 0.309-23.625 0-45.122-8.9-61.506-23.432-9.326 11.679-14.974 26.394-14.974 42.46 0 37.673 30.658 68.329 68.338 68.329zM324.605 130.369h-85.322v-17.086h85.322c28.313 0 51.254 22.949 51.254 51.254 0 28.312-22.939 51.254-51.254 51.254v-17.084c18.838 0 34.169-15.326 34.169-34.17 0-18.846-15.331-34.168-34.169-34.168zM393.144 130.369h-0.201v-17.086h46.983v0.435c21.556 2.169 38.44 20.146 38.44 42.277 0 23.59-19.121 42.712-42.713 42.712v-17.086c14.132 0 25.628-11.495 25.628-25.626 0-14.132-11.496-25.626-25.628-25.626-0.365 0-0.71 0.092-1.074 0.107h-41.537c0.026-0.040 0.076-0.074 0.102-0.107zM469.823 96.199h-111.050v-17.084h77.072c-0.032-0.033-0.066-0.066-0.091-0.109h32.991c0.369 0.019 0.71 0.109 1.077 0.109 14.131 0 25.626-11.496 25.626-25.628 0-14.129-11.495-25.626-25.626-25.626v-17.084c23.591 0 42.711 19.119 42.711 42.71 0.001 23.593-19.119 42.712-42.71 42.712zM187.929 130.369h34.169v-17.086h-34.169v17.086z" horiz-adv-x="513" />
67
+ <glyph unicode="&#xe639;" d="M221.866 121.868l0.042 0.059-112.16 0.025c-41.551 0.208-75.361 34.177-75.361 75.729 0 41.769 33.977 75.753 75.745 75.753 1.285 0 2.553-0.1 3.821-0.183l1.268-0.092 11.228-0.726 5.098 10.027c19.003 37.355 56.75 60.563 98.511 60.563 50.535 0 94.939-35.012 107.119-83.712h17.643c-12.338 57.593-63.488 100.796-124.762 100.796-15.425 0-30.207-2.753-43.888-7.775-8.009 43.763-46.131 76.964-92.204 76.964-3.529 0-6.999-0.234-10.437-0.609 6.357-9.501 10.069-20.913 10.069-33.192 0-33.018-26.77-59.796-59.796-59.796-12.288 0-23.691 3.712-33.193 10.069-0.375-3.429-0.609-6.907-0.609-10.436 0-31.816 15.875-59.871 40.067-76.863-14.14-16.292-22.766-37.516-22.766-60.789 0-51.113 41.31-92.563 92.363-92.812v-0.025l112.2-0.059c18.834 0 34.168-15.325 34.168-34.17s-15.334-34.168-34.168-34.168v-17.086c28.312 0 51.254 22.941 51.254 51.254 0.001 28.304-22.94 51.254-51.252 51.254zM18.595 320.125c4.972-1.001 10.061-1.511 15.208-1.511 42.395 0 76.88 34.486 76.88 76.881 0 5.146-0.508 10.235-1.509 15.208 31.983-6.449 56.776-32.818 60.972-65.552-23.082-12.338-41.936-31.575-53.823-54.94-2.060 0.133-4.104 0.309-6.189 0.309-21.656 0-41.526-7.475-57.318-19.904-17.328 11.036-30.025 28.704-34.221 49.509zM256.035 156.036h-85.321v-17.084h85.321c28.313 0 51.255 22.948 51.255 51.254 0 28.313-22.94 51.253-51.255 51.253v-17.083c18.838 0 34.168-15.325 34.168-34.17s-15.333-34.17-34.168-34.17zM324.573 156.036h-0.199v-17.084h46.981v0.435c21.557 2.17 38.44 20.146 38.44 42.277 0 23.591-19.12 42.712-42.712 42.712v-17.086c14.132 0 25.627-11.494 25.627-25.626s-11.495-25.628-25.627-25.628c-0.366 0-0.708 0.093-1.077 0.108h-41.534c0.025-0.040 0.075-0.074 0.101-0.108zM401.253 121.868h-111.051v-17.084h77.072c-0.033-0.034-0.066-0.068-0.093-0.109h32.994c0.365 0.019 0.708 0.109 1.076 0.109 14.13 0 25.626-11.497 25.626-25.628 0-14.132-11.496-25.626-25.626-25.626v-17.084c23.59 0 42.71 19.119 42.71 42.71 0.002 23.592-19.118 42.712-42.708 42.712zM119.359 156.036h34.169v-17.084h-34.169v17.084z" horiz-adv-x="444" />
68
+ <glyph unicode="&#xe63a;" d="M423.39 190.898c-12.338 57.594-63.49 100.796-124.762 100.796-18.662 0-36.373-4.013-52.34-11.22-14.231 27.354-42.761 46.072-75.729 46.072-47.174 0-85.422-38.239-85.422-85.414 0-21.014 7.675-40.167 20.271-55.033-12.196-15.716-19.538-35.396-19.538-56.834 0-51.111 41.31-92.563 92.363-92.812v-0.025l239.241 0.051c0.357-0.010 0.7-0.051 1.060-0.051 42.721 0 77.363 34.628 77.363 77.364 0.002 41.085-32.064 74.587-72.507 77.106zM170.56 309.464c26.411 0 49.201-15.149 60.58-37.114-19.637-12.304-35.687-29.797-46.248-50.553-2.061 0.135-4.104 0.309-6.19 0.309-23.625 0-45.113-8.894-61.505-23.432-9.327 11.67-14.974 26.394-14.974 42.46 0 37.673 30.656 68.33 68.337 68.33zM418.877 53.513c-0.324 0.025-0.658 0.033-1.001 0.043l-17.484 0.358v-0.401l-222.074 0.025c-41.551 0.2-75.361 34.178-75.361 75.729 0 41.77 33.977 75.754 75.745 75.754 1.285 0 2.553-0.101 3.821-0.184l1.268-0.092 11.228-0.727 5.105 10.027c18.995 37.356 56.743 60.563 98.504 60.563 51.777 0 97.217-36.713 108.062-87.292l2.711-12.664 12.93-0.811c31.676-1.977 56.485-28.354 56.485-60.053 0-33.12-26.854-60.083-59.939-60.275zM162.068 412.229h17.085v-68.104h-17.085v68.104zM0 250.043h68.104v-17.084h-68.104v17.084zM92.47 307.214l-48.166 48.166 12.078 12.079 48.165-48.166-12.079-12.078zM248.78 307.189l-12.078 12.078 48.149 48.149 12.078-12.078-48.149-48.15z" horiz-adv-x="496" />
69
+ <glyph unicode="&#xe63b;" d="M354.602 216.675c-12.337 57.594-63.49 100.798-124.763 100.798-15.366 0-30.081-2.736-43.721-7.725-8.108 43.637-46.165 76.713-92.154 76.713-3.529 0-6.999-0.234-10.436-0.609 6.356-9.502 10.069-20.914 10.069-33.193 0-33.018-26.769-59.796-59.795-59.796-12.288 0-23.691 3.712-33.193 10.069-0.375-3.429-0.609-6.907-0.609-10.436 0-31.708 15.758-59.688 39.816-76.705-14.124-16.291-22.732-37.488-22.732-60.747 0-51.11 41.31-92.562 92.363-92.813v-0.023l239.241 0.049c0.359-0.008 0.7-0.049 1.061-0.049 42.719 0 77.364 34.628 77.364 77.363-0.002 41.083-32.068 74.583-72.511 77.104zM18.594 277.289c4.971-1.001 10.061-1.51 15.208-1.51 42.394 0 76.88 34.486 76.88 76.88 0 5.147-0.509 10.235-1.51 15.208 31.892-6.432 56.626-32.667 60.939-65.26-23.174-12.338-42.094-31.6-54.006-55.033-2.061 0.134-4.104 0.309-6.189 0.309-21.673 0-41.561-7.482-57.36-19.937-17.186 11.053-29.782 28.646-33.962 49.343zM350.089 79.29c-0.324 0.025-0.658 0.033-1.001 0.041l-17.484 0.359v-0.4l-222.074 0.025c-41.552 0.198-75.362 34.177-75.362 75.729 0 41.769 33.977 75.755 75.746 75.755 1.285 0 2.552-0.101 3.82-0.184l1.269-0.092 11.228-0.725 5.105 10.026c18.995 37.356 56.743 60.563 98.503 60.563 51.778 0 97.218-36.713 108.062-87.292l2.712-12.664 12.931-0.809c31.675-1.977 56.482-28.354 56.482-60.055 0-33.124-26.852-60.086-59.937-60.277z" horiz-adv-x="427" />
70
+ </font></defs></svg>
@@ -0,0 +1,191 @@
1
+
2
+ /* HELPER CLASS
3
+ * -------------------------- */
4
+
5
+ /* FA based classes */
6
+
7
+ /*! Modified from font-awesome helper CSS classes - PIXEDEN
8
+ * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
9
+ * License - http://fontawesome.io/license (CSS: MIT License)
10
+ */
11
+
12
+ /* makes the font 33% larger relative to the icon container */
13
+ .pe-lg {
14
+ font-size: 1.3333333333333333em;
15
+ line-height: 0.75em;
16
+ vertical-align: -15%;
17
+ }
18
+ .pe-2x {
19
+ font-size: 2em;
20
+ }
21
+ .pe-3x {
22
+ font-size: 3em;
23
+ }
24
+ .pe-4x {
25
+ font-size: 4em;
26
+ }
27
+ .pe-5x {
28
+ font-size: 5em;
29
+ }
30
+ .pe-fw {
31
+ width: 1.2857142857142858em;
32
+ text-align: center;
33
+ }
34
+ .pe-ul {
35
+ padding-left: 0;
36
+ margin-left: 2.142857142857143em;
37
+ list-style-type: none;
38
+ }
39
+ .pe-ul > li {
40
+ position: relative;
41
+ }
42
+ .pe-li {
43
+ position: absolute;
44
+ left: -2.142857142857143em;
45
+ width: 2.142857142857143em;
46
+ top: 0.14285714285714285em;
47
+ text-align: center;
48
+ }
49
+ .pe-li.pe-lg {
50
+ left: -1.8571428571428572em;
51
+ }
52
+ .pe-border {
53
+ padding: .2em .25em .15em;
54
+ border: solid 0.08em #eeeeee;
55
+ border-radius: .1em;
56
+ }
57
+ .pull-right {
58
+ float: right;
59
+ }
60
+ .pull-left {
61
+ float: left;
62
+ }
63
+ .pe.pull-left {
64
+ margin-right: .3em;
65
+ }
66
+ .pe.pull-right {
67
+ margin-left: .3em;
68
+ }
69
+ .pe-spin {
70
+ -webkit-animation: spin 2s infinite linear;
71
+ -moz-animation: spin 2s infinite linear;
72
+ -o-animation: spin 2s infinite linear;
73
+ animation: spin 2s infinite linear;
74
+ }
75
+ @-moz-keyframes spin {
76
+ 0% {
77
+ -moz-transform: rotate(0deg);
78
+ }
79
+ 100% {
80
+ -moz-transform: rotate(359deg);
81
+ }
82
+ }
83
+ @-webkit-keyframes spin {
84
+ 0% {
85
+ -webkit-transform: rotate(0deg);
86
+ }
87
+ 100% {
88
+ -webkit-transform: rotate(359deg);
89
+ }
90
+ }
91
+ @-o-keyframes spin {
92
+ 0% {
93
+ -o-transform: rotate(0deg);
94
+ }
95
+ 100% {
96
+ -o-transform: rotate(359deg);
97
+ }
98
+ }
99
+ @-ms-keyframes spin {
100
+ 0% {
101
+ -ms-transform: rotate(0deg);
102
+ }
103
+ 100% {
104
+ -ms-transform: rotate(359deg);
105
+ }
106
+ }
107
+ @keyframes spin {
108
+ 0% {
109
+ transform: rotate(0deg);
110
+ }
111
+ 100% {
112
+ transform: rotate(359deg);
113
+ }
114
+ }
115
+ .pe-rotate-90 {
116
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
117
+ -webkit-transform: rotate(90deg);
118
+ -moz-transform: rotate(90deg);
119
+ -ms-transform: rotate(90deg);
120
+ -o-transform: rotate(90deg);
121
+ transform: rotate(90deg);
122
+ }
123
+ .pe-rotate-180 {
124
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
125
+ -webkit-transform: rotate(180deg);
126
+ -moz-transform: rotate(180deg);
127
+ -ms-transform: rotate(180deg);
128
+ -o-transform: rotate(180deg);
129
+ transform: rotate(180deg);
130
+ }
131
+ .pe-rotate-270 {
132
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
133
+ -webkit-transform: rotate(270deg);
134
+ -moz-transform: rotate(270deg);
135
+ -ms-transform: rotate(270deg);
136
+ -o-transform: rotate(270deg);
137
+ transform: rotate(270deg);
138
+ }
139
+ .pe-flip-horizontal {
140
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
141
+ -webkit-transform: scale(-1, 1);
142
+ -moz-transform: scale(-1, 1);
143
+ -ms-transform: scale(-1, 1);
144
+ -o-transform: scale(-1, 1);
145
+ transform: scale(-1, 1);
146
+ }
147
+ .pe-flip-vertical {
148
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
149
+ -webkit-transform: scale(1, -1);
150
+ -moz-transform: scale(1, -1);
151
+ -ms-transform: scale(1, -1);
152
+ -o-transform: scale(1, -1);
153
+ transform: scale(1, -1);
154
+ }
155
+ .pe-stack {
156
+ position: relative;
157
+ display: inline-block;
158
+ width: 2em;
159
+ height: 2em;
160
+ line-height: 2em;
161
+ vertical-align: middle;
162
+ }
163
+ .pe-stack-1x,
164
+ .pe-stack-2x {
165
+ position: absolute;
166
+ left: 0;
167
+ width: 100%;
168
+ text-align: center;
169
+ }
170
+ .pe-stack-1x {
171
+ line-height: inherit;
172
+ }
173
+ .pe-stack-2x {
174
+ font-size: 2em;
175
+ }
176
+ .pe-inverse {
177
+ color: #ffffff;
178
+ }
179
+
180
+ /* Custom classes / mods - PIXEDEN */
181
+ .pe-va {
182
+ vertical-align: middle;
183
+ }
184
+
185
+ .pe-border {
186
+ border: solid 0.08em #eaeaea;
187
+ }
188
+
189
+ [class^="pe-7s-"], [class*=" pe-7s-"] {
190
+ display: inline-block;
191
+ }