spina 0.12.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of spina might be problematic. Click here for more details.
- checksums.yaml +5 -5
- data/README.md +65 -7
- data/app/assets/fonts/spina/ics_spina.eot +0 -0
- data/app/assets/fonts/spina/ics_spina.svg +65 -61
- data/app/assets/fonts/spina/ics_spina.ttf +0 -0
- data/app/assets/fonts/spina/ics_spina.woff +0 -0
- data/app/assets/fonts/spina/ics_spina.woff2 +0 -0
- data/app/assets/icons/spina/export.svg +10 -0
- data/app/assets/icons/spina/preview/ics_spina-preview.html +17 -1
- data/app/assets/images/spina/media_folder_placeholder.png +0 -0
- data/app/assets/images/spina/{admin/spina.png → spina-large.png} +0 -0
- data/app/assets/javascripts/spina/admin/application.js +50 -0
- data/app/assets/javascripts/spina/admin/controllers/infinite_scroll_controller.js +40 -0
- data/app/assets/javascripts/spina/admin/media_gallery.coffee +65 -0
- data/app/assets/javascripts/spina/admin/modal.coffee +0 -1
- data/app/assets/javascripts/spina/admin/pages.coffee.erb +2 -2
- data/app/assets/javascripts/spina/admin/{application.coffee.erb → scaffold.coffee} +20 -61
- data/app/assets/javascripts/spina/admin/trix.coffee.erb +5 -8
- data/app/assets/javascripts/spina/admin/uploads.coffee +2 -2
- data/app/assets/stylesheets/spina.sass +3 -3
- data/app/assets/stylesheets/spina/_buttons.sass +0 -1
- data/app/assets/stylesheets/spina/{_configuration.sass → _configuration.sass.erb} +5 -1
- data/app/assets/stylesheets/spina/_forms.sass +79 -20
- data/app/assets/stylesheets/spina/_gallery.sass +91 -3
- data/app/assets/stylesheets/spina/_ics_spina.scss +1 -0
- data/app/assets/stylesheets/spina/_tables.sass +4 -0
- data/app/assets/stylesheets/spina/_trix.sass +7 -4
- data/app/assets/stylesheets/spina_front_end.sass +19 -0
- data/app/controllers/concerns/spina/frontend.rb +29 -12
- data/app/controllers/spina/admin/admin_controller.rb +1 -1
- data/app/controllers/spina/admin/attachments_controller.rb +10 -5
- data/app/controllers/spina/admin/images_controller.rb +51 -0
- data/app/controllers/spina/admin/media_folders_controller.rb +37 -0
- data/app/controllers/spina/admin/media_picker_controller.rb +28 -0
- data/app/controllers/spina/admin/pages_controller.rb +16 -6
- data/app/controllers/spina/admin/resources_controller.rb +33 -0
- data/app/controllers/spina/admin/settings_controller.rb +56 -0
- data/app/controllers/spina/pages_controller.rb +0 -6
- data/app/helpers/spina/admin/pages_helper.rb +2 -2
- data/app/helpers/spina/admin_nav_helper.rb +7 -0
- data/app/helpers/spina/files_helper.rb +9 -0
- data/app/helpers/spina/images_helper.rb +17 -0
- data/app/helpers/spina/pages_helper.rb +17 -0
- data/app/models/concerns/spina/image_collectable.rb +23 -0
- data/app/models/concerns/spina/part.rb +7 -4
- data/app/models/spina/account.rb +10 -14
- data/app/models/spina/attachment.rb +8 -10
- data/app/models/spina/attachment_collection.rb +6 -1
- data/app/models/spina/current.rb +5 -0
- data/app/models/spina/image.rb +26 -0
- data/app/models/spina/{photo_collection.rb → image_collection.rb} +6 -6
- data/app/models/spina/image_collections_image.rb +6 -0
- data/app/models/spina/line.rb +1 -0
- data/app/models/spina/media_folder.rb +7 -0
- data/app/models/spina/navigation.rb +4 -0
- data/app/models/spina/navigation_item.rb +1 -1
- data/app/models/spina/page.rb +18 -13
- data/app/models/spina/page_part.rb +1 -0
- data/app/models/spina/resource.rb +16 -0
- data/app/models/spina/setting.rb +7 -0
- data/app/models/spina/structure.rb +2 -0
- data/app/models/spina/structure_item.rb +2 -0
- data/app/models/spina/structure_part.rb +2 -1
- data/app/models/spina/text.rb +1 -0
- data/app/views/dummy/show.html.haml +1 -0
- data/app/views/layouts/spina/admin/media_library.html.haml +6 -3
- data/app/views/layouts/spina/admin/pages.html.haml +4 -1
- data/app/views/layouts/spina/admin/resources.html.haml +10 -0
- data/app/views/spina/admin/accounts/style.html.haml +3 -2
- data/app/views/spina/admin/attachments/_attachment.html.haml +3 -3
- data/app/views/spina/admin/attachments/_select.html.haml +7 -15
- data/app/views/spina/admin/attachments/_select_collection.html.haml +7 -14
- data/app/views/spina/admin/attachments/create.js.erb +1 -3
- data/app/views/spina/admin/attachments/index.html.haml +4 -3
- data/app/views/spina/admin/attachments/insert.js.erb +5 -0
- data/app/views/spina/admin/image_collections/_image_collection.html.haml +5 -0
- data/app/views/spina/admin/images/_form.html.haml +5 -0
- data/app/views/spina/admin/images/_image.html.haml +10 -0
- data/app/views/spina/admin/images/create.js.erb +8 -0
- data/app/views/spina/admin/images/index.html.haml +22 -0
- data/app/views/spina/admin/images/index.js.erb +7 -0
- data/app/views/spina/admin/media_folders/_form.html.haml +14 -0
- data/app/views/spina/admin/media_folders/_media_folder.html.haml +8 -0
- data/app/views/spina/admin/media_folders/new.js.erb +1 -0
- data/app/views/spina/admin/media_folders/show.html.haml +17 -0
- data/app/views/spina/admin/media_picker/_modal.html.haml +26 -0
- data/app/views/spina/admin/media_picker/infinite_scroll.js.erb +5 -0
- data/app/views/spina/admin/media_picker/select.js.erb +28 -0
- data/app/views/spina/admin/media_picker/show.js.erb +1 -0
- data/app/views/spina/admin/navigations/_page.html.haml +2 -2
- data/app/views/spina/admin/navigations/edit.html.haml +1 -1
- data/app/views/spina/admin/pages/_form.html.haml +21 -15
- data/app/views/spina/admin/pages/_form_advanced.html.haml +53 -43
- data/app/views/spina/admin/pages/_form_page_content.html.haml +1 -1
- data/app/views/spina/admin/pages/_form_page_seo.html.haml +1 -1
- data/app/views/spina/admin/pages/_page_nested_list.html.haml +3 -3
- data/app/views/spina/admin/pages/index.html.haml +1 -1
- data/app/views/spina/admin/{page_partables → partables}/attachment_collections/_form.html.haml +1 -1
- data/app/views/spina/admin/{page_partables → partables}/attachments/_form.html.haml +4 -4
- data/app/views/spina/admin/partables/image_collections/_form.html.haml +16 -0
- data/app/views/spina/admin/partables/images/_form.html.haml +14 -0
- data/app/views/spina/admin/{page_partables → partables}/lines/_form.html.haml +1 -1
- data/app/views/spina/admin/{structure_partables → partables}/options/_form.html.haml +1 -1
- data/app/views/spina/admin/partables/photo_collections/_form.html.haml +4 -0
- data/app/views/spina/admin/partables/photos/_form.html.haml +4 -0
- data/app/views/spina/admin/{page_partables → partables}/structures/_form.html.haml +3 -3
- data/app/views/spina/admin/{page_partables → partables}/texts/_form.html.haml +1 -1
- data/app/views/spina/admin/password_resets/edit.html.haml +1 -1
- data/app/views/spina/admin/password_resets/new.html.haml +1 -1
- data/app/views/spina/admin/resources/edit.html.haml +49 -0
- data/app/views/spina/admin/resources/show.html.haml +14 -0
- data/app/views/spina/admin/sessions/new.html.haml +1 -1
- data/app/views/spina/admin/settings/_string_field.html.haml +4 -0
- data/app/views/spina/admin/settings/_wysiwyg_field.html.haml +4 -0
- data/app/views/spina/admin/settings/edit.html.haml +13 -0
- data/app/views/spina/admin/shared/_primary_navigation.html.haml +13 -5
- data/app/views/spina/admin/shared/_rich_text_field.html.haml +10 -10
- data/app/views/spina/admin/structure_items/_fields.html.haml +1 -1
- data/app/views/spina/admin/structure_partables/attachment_collections/_form.html.haml +14 -0
- data/app/views/spina/admin/structure_partables/attachments/_form.html.haml +13 -0
- data/app/views/spina/shared/_analytics.html.erb +8 -8
- data/app/views/spina/shared/_navigation.html.haml +3 -3
- data/app/views/spina/shared/_spina_link.html.haml +2 -0
- data/app/views/spina/sitemaps/show.xml.builder +2 -2
- data/config/initializers/assets.rb +6 -1
- data/config/locales/TH.yml +243 -0
- data/config/locales/bg.yml +250 -0
- data/config/locales/de.yml +67 -22
- data/config/locales/en.yml +29 -2
- data/config/locales/es.yml +58 -1
- data/config/locales/fr.yml +80 -32
- data/config/locales/id.yml +228 -0
- data/config/locales/nl.yml +32 -0
- data/config/locales/pl.yml +225 -0
- data/config/locales/pt-BR.yml +34 -3
- data/config/locales/ro.yml +225 -0
- data/config/locales/ru.yml +10 -0
- data/config/locales/sv.yml +223 -0
- data/config/routes.rb +13 -13
- data/db/migrate/10_create_spina_image_collections.rb +16 -0
- data/db/migrate/11_create_spina_resources.rb +15 -0
- data/db/migrate/1_create_spina_tables.rb +0 -19
- data/db/migrate/2_create_spina_translation_tables.rb +36 -6
- data/db/migrate/7_create_spina_settings.rb +11 -0
- data/db/migrate/8_create_spina_media_folders.rb +8 -0
- data/db/migrate/9_create_spina_images.rb +10 -0
- data/lib/generators/spina/install_generator.rb +2 -2
- data/lib/generators/spina/templates/app/views/default/pages/homepage.html.haml +3 -2
- data/lib/generators/spina/templates/app/views/default/pages/show.html.haml +2 -2
- data/lib/generators/spina/templates/app/views/default/shared/_navigation.html.haml +3 -5
- data/lib/generators/spina/templates/app/views/demo/pages/demo.html.haml +20 -23
- data/lib/generators/spina/templates/app/views/demo/pages/homepage.html.haml +2 -2
- data/lib/generators/spina/templates/app/views/demo/pages/show.html.haml +2 -2
- data/lib/generators/spina/templates/app/views/demo/shared/_navigation.html.haml +3 -5
- data/lib/generators/spina/templates/config/initializers/mobility.rb +6 -0
- data/lib/generators/spina/templates/config/initializers/spina.rb +3 -0
- data/lib/generators/spina/templates/config/initializers/themes/demo.rb +7 -7
- data/lib/spina.rb +0 -1
- data/lib/spina/engine.rb +6 -7
- data/lib/spina/plugin.rb +48 -3
- data/lib/spina/version.rb +1 -1
- data/vendor/assets/javascripts/spina/stimulus.umd.js +5 -0
- data/vendor/assets/javascripts/spina/trix.js +10 -9
- metadata +106 -103
- data/app/assets/images/spina/danger-zone-ribbon.png +0 -0
- data/app/assets/images/spina/spina_small.png +0 -0
- data/app/assets/javascripts/spina/admin/infinite_scroll.coffee +0 -25
- data/app/controllers/spina/admin/photos_controller.rb +0 -100
- data/app/models/concerns/spina/photo_collectable.rb +0 -24
- data/app/models/spina/photo.rb +0 -29
- data/app/models/spina/photo_collections_photo.rb +0 -6
- data/app/presenters/spina/pages/menu_presenter.rb +0 -63
- data/app/uploaders/spina/default_store_uploader.rb +0 -15
- data/app/uploaders/spina/file_uploader.rb +0 -6
- data/app/uploaders/spina/logo_uploader.rb +0 -13
- data/app/uploaders/spina/photo_uploader.rb +0 -23
- data/app/views/spina/admin/attachments/_fields.html.haml +0 -8
- data/app/views/spina/admin/attachments/insert.js.coffee +0 -5
- data/app/views/spina/admin/page_partables/options/_form.html.haml +0 -6
- data/app/views/spina/admin/page_partables/photo_collections/_form.html.haml +0 -17
- data/app/views/spina/admin/page_partables/photos/_form.html.haml +0 -14
- data/app/views/spina/admin/photos/_photo.html.haml +0 -8
- data/app/views/spina/admin/photos/_photo_collection.html.haml +0 -5
- data/app/views/spina/admin/photos/_photo_collection_select.html.haml +0 -23
- data/app/views/spina/admin/photos/_photo_link.html.haml +0 -11
- data/app/views/spina/admin/photos/_photo_multi_picker.html.haml +0 -3
- data/app/views/spina/admin/photos/_photo_select.html.haml +0 -16
- data/app/views/spina/admin/photos/_photo_single_picker.html.haml +0 -3
- data/app/views/spina/admin/photos/_photo_uploaded.html.haml +0 -4
- data/app/views/spina/admin/photos/_trix_select.html.haml +0 -11
- data/app/views/spina/admin/photos/create.js.erb +0 -4
- data/app/views/spina/admin/photos/index.html.haml +0 -13
- data/app/views/spina/admin/photos/index.js.erb +0 -5
- data/app/views/spina/admin/photos/insert_photo.js.erb +0 -10
- data/app/views/spina/admin/photos/insert_photo_collection.js.erb +0 -25
- data/app/views/spina/admin/photos/link.js.erb +0 -2
- data/app/views/spina/admin/photos/multi_picker_infinite_scroll.js.erb +0 -6
- data/app/views/spina/admin/photos/photo_collection_select.js.erb +0 -3
- data/app/views/spina/admin/photos/photo_select.js.erb +0 -3
- data/app/views/spina/admin/photos/single_picker_infinite_scroll.js.erb +0 -6
- data/app/views/spina/admin/photos/trix_infinite_scroll.js.erb +0 -4
- data/app/views/spina/admin/photos/trix_insert.js.erb +0 -2
- data/app/views/spina/admin/photos/trix_select.js.erb +0 -3
- data/app/views/spina/admin/structure_partables/lines/_form.html.haml +0 -5
- data/app/views/spina/admin/structure_partables/photo_collections/_form.html.haml +0 -17
- data/app/views/spina/admin/structure_partables/photos/_form.html.haml +0 -11
- data/app/views/spina/admin/structure_partables/texts/_form.html.haml +0 -5
- data/config/initializers/spina.rb +0 -0
- data/lib/generators/spina/templates/config/initializers/carrierwave.rb +0 -17
- data/lib/spina/railtie.rb +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: bf8e1acf502fbd64b327828a28af4ec8452a22e2e81c103ad853636ccde3eea1
|
4
|
+
data.tar.gz: f46e38dcc0c9a6e88abde1bee9f1d0ecfc9395926985450cd31206eea5ea5847
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: da8787b13f4fafd83d1b33d7069254c9c1a0cd214fb11fca79c28d7592ae6536e912d497dff829b5ef9a0eba53d14ce30a9b2ceceb52564d04c7ac0e7dc11fff
|
7
|
+
data.tar.gz: 9771f950a95113c250d8c44ab7ccf0e41369b9d56644a4f4b9cb1f25cb956a33152682e6fb4749c04ae1bf67f382f4d5ce6f5f16c798f63c4c4423cc078c3747
|
data/README.md
CHANGED
@@ -2,14 +2,18 @@
|
|
2
2
|
|
3
3
|
[Visit the website](http://www.spinacms.com)
|
4
4
|
|
5
|
-
[![
|
6
|
-
[![Code Climate](https://codeclimate.com/github/
|
7
|
-
[![Test Coverage](https://codeclimate.com/github/
|
5
|
+
[![Build Status](https://travis-ci.com/SpinaCMS/Spina.svg?branch=master)](https://travis-ci.com/SpinaCMS/Spina)
|
6
|
+
[![Code Climate](https://codeclimate.com/github/SpinaCMS/Spina/badges/gpa.svg)](https://codeclimate.com/github/SpinaCMS/Spina)
|
7
|
+
[![Test Coverage](https://codeclimate.com/github/SpinaCMS/Spina/badges/coverage.svg)](https://codeclimate.com/github/SpinaCMS/Spina/coverage)
|
8
8
|
[![Slack](https://slack-spinacms.herokuapp.com/badge.svg)](https://slack-spinacms.herokuapp.com)
|
9
9
|
|
10
|
+
[![View performance data on Skylight](https://badges.skylight.io/status/0kzPHGlfswAw.svg)](https://oss.skylight.io/app/applications/0kzPHGlfswAw)
|
11
|
+
[![View performance data on Skylight](https://badges.skylight.io/problem/0kzPHGlfswAw.svg)](https://oss.skylight.io/app/applications/0kzPHGlfswAw)
|
12
|
+
[![View performance data on Skylight](https://badges.skylight.io/typical/0kzPHGlfswAw.svg)](https://oss.skylight.io/app/applications/0kzPHGlfswAw)
|
13
|
+
|
10
14
|
# Getting Started
|
11
15
|
|
12
|
-
Spina is a CMS for Rails 5.
|
16
|
+
Spina is a CMS for Rails 5.2. This guide is designed for developers with experience using Ruby on Rails.
|
13
17
|
|
14
18
|
To start using Spina CMS add the following line to your Gemfile:
|
15
19
|
|
@@ -17,7 +21,7 @@ To start using Spina CMS add the following line to your Gemfile:
|
|
17
21
|
gem 'spina'
|
18
22
|
```
|
19
23
|
|
20
|
-
|
24
|
+
First run the installer to get started:
|
21
25
|
|
22
26
|
rails g spina:install
|
23
27
|
|
@@ -25,6 +29,33 @@ The installer will help you setup your first user.
|
|
25
29
|
|
26
30
|
Then start `rails s` and access Spina at `/admin`.
|
27
31
|
|
32
|
+
## Upgrading from 0.X to 1.0
|
33
|
+
|
34
|
+
Because upgrading 1.0 means switching to ActiveStorage, we've created a complementary gem to make the upgrade process easier.
|
35
|
+
|
36
|
+
`gem 'spina-upgrade', git: 'https://github.com/SpinaCMS/spina-upgrade'`
|
37
|
+
|
38
|
+
After installing this gem, make sure you setup ActiveStorage. Then you can run the upgrade command to migrate all `Spina::Photo` records to `Spina::Image`. Images will be reuploaded using ActiveStorage, so depending on your storage this could take a while.
|
39
|
+
|
40
|
+
`rails g spina:upgrade`
|
41
|
+
|
42
|
+
Replace `Spina::Photo` with `Spina::Image` where necessary and make sure that you edit every `image_tag`.
|
43
|
+
|
44
|
+
## Upgrading from 0.12 to 0.12.1
|
45
|
+
|
46
|
+
First run the new migrations
|
47
|
+
|
48
|
+
rails spina:install:migrations
|
49
|
+
rails db:migrate
|
50
|
+
|
51
|
+
This will create a table for the `Spina::Resource` model.
|
52
|
+
|
53
|
+
Globalize is replaced by Mobility. Switching to Mobility is fairly straightfoward.
|
54
|
+
- Run `rails g spina:install` to add the `mobility.rb` initializer.
|
55
|
+
- Replace instances of `Globalize` with `Mobility` in your own code
|
56
|
+
|
57
|
+
This is the last release before Spina switches to Rails 5.2 and ActiveStorage.
|
58
|
+
|
28
59
|
## Upgrading from 0.11 to 0.12
|
29
60
|
|
30
61
|
Just run the new migrations.
|
@@ -82,8 +113,8 @@ A page in Spina has many Page parts. By default these page parts can be one of t
|
|
82
113
|
|
83
114
|
- `Spina::Line`
|
84
115
|
- `Spina::Text`
|
85
|
-
- `Spina::
|
86
|
-
- `Spina::
|
116
|
+
- `Spina::Image`
|
117
|
+
- `Spina::ImageCollection`
|
87
118
|
- `Spina::Structure`
|
88
119
|
- `Spina::Option`
|
89
120
|
|
@@ -224,6 +255,33 @@ You can define custom pages for your theme that will be generated when bootstrap
|
|
224
255
|
|
225
256
|
Check our [Contributing Guide](CONTRIBUTING.md) for instructions on how to help the project.
|
226
257
|
|
258
|
+
<a href="graphs/contributors"><img src="https://opencollective.com/Spina/contributors.svg?width=890" /></a>
|
259
|
+
|
260
|
+
|
261
|
+
# Backers
|
262
|
+
|
263
|
+
Thank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/Spina#backer)]
|
264
|
+
|
265
|
+
<a href="https://opencollective.com/Spina#backers" target="_blank"><img src="https://opencollective.com/Spina/backers.svg?width=890"></a>
|
266
|
+
|
267
|
+
|
268
|
+
# Sponsors
|
269
|
+
|
270
|
+
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/Spina#sponsor)]
|
271
|
+
|
272
|
+
<a href="https://opencollective.com/Spina/sponsor/0/website" target="_blank"><img src="https://opencollective.com/Spina/sponsor/0/avatar.svg"></a>
|
273
|
+
<a href="https://opencollective.com/Spina/sponsor/1/website" target="_blank"><img src="https://opencollective.com/Spina/sponsor/1/avatar.svg"></a>
|
274
|
+
<a href="https://opencollective.com/Spina/sponsor/2/website" target="_blank"><img src="https://opencollective.com/Spina/sponsor/2/avatar.svg"></a>
|
275
|
+
<a href="https://opencollective.com/Spina/sponsor/3/website" target="_blank"><img src="https://opencollective.com/Spina/sponsor/3/avatar.svg"></a>
|
276
|
+
<a href="https://opencollective.com/Spina/sponsor/4/website" target="_blank"><img src="https://opencollective.com/Spina/sponsor/4/avatar.svg"></a>
|
277
|
+
<a href="https://opencollective.com/Spina/sponsor/5/website" target="_blank"><img src="https://opencollective.com/Spina/sponsor/5/avatar.svg"></a>
|
278
|
+
<a href="https://opencollective.com/Spina/sponsor/6/website" target="_blank"><img src="https://opencollective.com/Spina/sponsor/6/avatar.svg"></a>
|
279
|
+
<a href="https://opencollective.com/Spina/sponsor/7/website" target="_blank"><img src="https://opencollective.com/Spina/sponsor/7/avatar.svg"></a>
|
280
|
+
<a href="https://opencollective.com/Spina/sponsor/8/website" target="_blank"><img src="https://opencollective.com/Spina/sponsor/8/avatar.svg"></a>
|
281
|
+
<a href="https://opencollective.com/Spina/sponsor/9/website" target="_blank"><img src="https://opencollective.com/Spina/sponsor/9/avatar.svg"></a>
|
282
|
+
|
283
|
+
|
284
|
+
|
227
285
|
# License
|
228
286
|
|
229
287
|
Spina is released under the [MIT license](LICENSE.md).
|
Binary file
|
@@ -1,13 +1,13 @@
|
|
1
1
|
<?xml version="1.0" standalone="no"?>
|
2
2
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3
3
|
<!--
|
4
|
-
|
4
|
+
2018-5-23: Created with FontForge (http://fontforge.org)
|
5
5
|
-->
|
6
6
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
|
7
7
|
<metadata>
|
8
|
-
Created by FontForge
|
8
|
+
Created by FontForge 20170925 at Wed May 23 13:46:59 2018
|
9
9
|
By Bram Jetten
|
10
|
-
|
10
|
+
|
11
11
|
</metadata>
|
12
12
|
<defs>
|
13
13
|
<font id="ics_spina" horiz-adv-x="512" >
|
@@ -22,30 +22,30 @@ Copyright (c) 2017, Bram Jetten
|
|
22
22
|
bbox="-18.2861 -64.0879 530.286 448"
|
23
23
|
underline-thickness="25.6"
|
24
24
|
underline-position="-51.2"
|
25
|
-
unicode-range="U+0020-
|
25
|
+
unicode-range="U+0020-F139"
|
26
26
|
/>
|
27
27
|
<missing-glyph />
|
28
28
|
<glyph glyph-name="space" unicode=" " horiz-adv-x="200"
|
29
29
|
/>
|
30
|
-
<glyph glyph-name="
|
30
|
+
<glyph glyph-name="comment" unicode=""
|
31
31
|
d="M512 192c0 -33.1426 -11.4287 -63.7617 -34.2861 -91.8574c-22.8568 -28.0951 -53.9043 -50.2855 -93.1426 -66.5713c-39.2383 -16.2858 -82.0954 -24.4287 -128.571 -24.4287c-13.3333 0 -27.1429 0.762044 -41.4287 2.28613
|
32
32
|
c-37.7142 -33.3333 -81.5238 -56.3809 -131.429 -69.1426c-9.33333 -2.66667 -20.1904 -4.76204 -32.5713 -6.28613c-3.23828 -0.380859 -6.1429 0.476237 -8.71387 2.57129c-2.57161 2.09505 -4.23828 4.8571 -5 8.28613v0.285156
|
33
33
|
c-0.571615 0.76237 -0.619466 1.90527 -0.143555 3.42871c0.476562 1.52409 0.667318 2.47656 0.572266 2.85742c-0.0957031 0.380859 0.332682 1.28548 1.28516 2.71387l1.71484 2.57129l2 2.42871l2.28516 2.57129c1.33333 1.52409 4.28581 4.8099 8.85742 9.85742
|
34
34
|
s7.85742 8.66667 9.85742 10.8574c2 2.1901 4.95215 5.95182 8.85645 11.2852c3.90495 5.33333 7.00033 10.1908 9.28613 14.5723c2.28581 4.38086 4.8571 9.99967 7.71387 16.8564c2.85742 6.85742 5.33366 14.0957 7.42871 21.7148
|
35
35
|
c-29.9049 16.9525 -53.4762 37.9046 -70.7139 62.8564c-17.2383 24.9525 -25.8574 51.7145 -25.8574 80.2861c0 24.7617 6.76204 48.4284 20.2861 71c13.5234 22.5716 31.7139 42.0479 54.5713 58.4287c22.8568 16.3809 50.0947 29.3809 81.7139 39
|
36
36
|
s64.762 14.4287 99.4287 14.4287c46.4759 0 89.333 -8.1429 128.571 -24.4287s70.2858 -38.4762 93.1426 -66.5713c22.8574 -28.0957 34.2861 -58.7148 34.2861 -91.8574z" />
|
37
|
-
<glyph glyph-name="
|
37
|
+
<glyph glyph-name="shop" unicode=""
|
38
38
|
d="M156.749 262.4c-4.07031 -25.2422 -31.7959 -44.8008 -65.3311 -44.8008c-36.3779 0 -65.8184 22.9385 -65.8184 51.2002c0 4.45508 0.716797 8.7041 2.07422 12.7998l44.0059 115.2h105.318zM256 217.6c-36.3516 0 -65.8174 22.9385 -65.8174 51.2002
|
39
39
|
c0 1.10059 0.0507812 2.15039 0.102539 3.2002l13.0557 124.8h105.318l13.0303 -124.902c0.0517578 -0.998047 0.12793 -2.04785 0.12793 -3.09766c0 -28.2617 -29.4658 -51.2002 -65.8174 -51.2002zM384 190.822c11.2383 -4.14746 23.6289 -6.50195 36.582 -6.52832
|
40
40
|
c4.99219 0 9.80469 0.615234 14.6182 1.25488v-162.509c0 -19.6865 -16.1279 -35.8398 -35.8398 -35.8398h-286.771c-19.6865 0 -35.7891 16.1279 -35.7891 35.8398v162.534c4.78711 -0.665039 9.62598 -1.25391 14.6182 -1.25391c13.0303 0 25.3691 2.30371 36.582 6.34863
|
41
41
|
v-101.069h256v101.223zM484.352 281.6c1.33203 -4.0957 2.04883 -8.34473 2.04883 -12.7998c0 -28.2617 -29.4658 -51.2002 -65.8184 -51.2002c-33.6895 0 -61.4141 19.6611 -65.3564 45.0049l-20.2236 134.195h105.292z" />
|
42
|
-
<glyph glyph-name="
|
42
|
+
<glyph glyph-name="bars" unicode=""
|
43
43
|
d="M475.429 64v-36.5713c0 -4.95247 -1.80957 -9.23828 -5.42871 -12.8574s-7.90495 -5.42871 -12.8574 -5.42871h-402.285c-4.95247 0 -9.23828 1.80957 -12.8574 5.42871s-5.42871 7.90495 -5.42871 12.8574v36.5713c0 4.95247 1.80957 9.23828 5.42871 12.8574
|
44
44
|
s7.90495 5.42871 12.8574 5.42871h402.285c4.95247 0 9.23828 -1.80957 12.8574 -5.42871s5.42871 -7.90495 5.42871 -12.8574zM475.429 210.286v-36.5723c0 -4.95182 -1.80957 -9.2373 -5.42871 -12.8564s-7.90495 -5.42871 -12.8574 -5.42871h-402.285
|
45
45
|
c-4.95247 0 -9.23828 1.80957 -12.8574 5.42871s-5.42871 7.90462 -5.42871 12.8564v36.5723c0 4.95182 1.80957 9.2373 5.42871 12.8564s7.90495 5.42871 12.8574 5.42871h402.285c4.95247 0 9.23828 -1.80957 12.8574 -5.42871s5.42871 -7.90462 5.42871 -12.8564z
|
46
46
|
M475.429 356.571v-36.5713c0 -4.95247 -1.80957 -9.23828 -5.42871 -12.8574s-7.90495 -5.42871 -12.8574 -5.42871h-402.285c-4.95247 0 -9.23828 1.80957 -12.8574 5.42871s-5.42871 7.90495 -5.42871 12.8574v36.5713c0 4.95247 1.80957 9.23828 5.42871 12.8574
|
47
47
|
s7.90495 5.42871 12.8574 5.42871h402.285c4.95247 0 9.23828 -1.80957 12.8574 -5.42871s5.42871 -7.90495 5.42871 -12.8574z" />
|
48
|
-
<glyph glyph-name="
|
48
|
+
<glyph glyph-name="code" unicode=""
|
49
49
|
d="M158 48.2861l-14.2861 -14.2861c-1.9043 -1.90495 -4.09473 -2.85742 -6.57129 -2.85742c-2.47591 0 -4.66634 0.952474 -6.57129 2.85742l-133.143 133.143c-1.90495 1.90495 -2.85742 4.09538 -2.85742 6.57129c0 2.47656 0.952474 4.66732 2.85742 6.57227
|
50
50
|
l133.143 133.143c1.90495 1.90495 4.09538 2.85742 6.57129 2.85742c2.47656 0 4.66699 -0.952474 6.57129 -2.85742l14.2861 -14.2861c1.90495 -1.9043 2.85742 -4.09473 2.85742 -6.57129c0 -2.47591 -0.952474 -4.66634 -2.85742 -6.57129l-112.286 -112.286
|
51
51
|
l112.286 -112.285c1.90495 -1.90495 2.85742 -4.09538 2.85742 -6.57129c0 -2.47656 -0.952474 -4.66699 -2.85742 -6.57129zM326.857 353.143l-106.571 -368.856c-0.76237 -2.47656 -2.23861 -4.33398 -4.42871 -5.57227
|
@@ -54,21 +54,21 @@ c2.19076 1.23828 4.42904 1.47656 6.71484 0.714844l17.7139 -4.85742c2.47656 -0.76
|
|
54
54
|
c-2.47656 0 -4.66699 0.952474 -6.57129 2.85742l-14.2861 14.2861c-1.90495 1.9043 -2.85742 4.09473 -2.85742 6.57129c0 2.47591 0.952474 4.66634 2.85742 6.57129l112.286 112.285l-112.286 112.286c-1.90495 1.90495 -2.85742 4.09538 -2.85742 6.57129
|
55
55
|
c0 2.47656 0.952474 4.66699 2.85742 6.57129l14.2861 14.2861c1.9043 1.90495 4.09473 2.85742 6.57129 2.85742c2.47591 0 4.66634 -0.952474 6.57129 -2.85742l133.143 -133.143c1.90495 -1.90495 2.85742 -4.0957 2.85742 -6.57227
|
56
56
|
c0 -2.47591 -0.952474 -4.66634 -2.85742 -6.57129z" />
|
57
|
-
<glyph glyph-name="
|
57
|
+
<glyph glyph-name="pencil" unicode=""
|
58
58
|
d="M435.827 268.314l-286.112 -286.112l-103.508 103.508l286.112 286.111zM502.541 383.551v0c13.3965 -13.3975 12.4482 -36.0674 -2.11426 -50.6338l-51.6602 -51.6602l-103.507 103.507l51.6592 51.6602c14.5664 14.5674 37.2354 15.5137 50.6328 2.11426z
|
59
59
|
M36.5957 69.4268l96.8184 -96.8311l-133.414 -36.5957z" />
|
60
|
-
<glyph glyph-name="
|
60
|
+
<glyph glyph-name="customer-outline" unicode=""
|
61
61
|
d="M256.002 392v0c-44.1836 0 -80 -35.8164 -80 -80v-64c0 -26.1719 64 -112 64 -112l0.444336 -0.442383c-85.2061 -4.66797 -160.271 -47.4141 -208.444 -111.529v-32.0283h448v32.0244c-48.1738 64.1172 -123.238 106.863 -208.444 111.531l0.444336 0.444336
|
62
62
|
s64 85.8281 64 112v64c0 44.1836 -35.8164 80 -80 80zM256.002 424v0v0c61.7559 0 112 -50.2441 112 -112v-64c0 -12.7617 -4.41211 -32.624 -37.1357 -83.1963c-1.10645 -1.70996 -2.20996 -3.40137 -3.31055 -5.07324c70.5645 -16.5547 133.606 -57.3604 178.028 -116.482
|
63
63
|
c4.16406 -5.54395 6.41602 -12.2881 6.41602 -19.2217v-32.0264c0 -17.6719 -14.3281 -32 -32 -32h-448c-17.6719 0 -32 14.3281 -32 32v32.0283c0 6.93164 2.25195 13.6797 6.41602 19.2217c44.4219 59.1201 107.464 99.9258 178.028 116.478
|
64
64
|
c-1.10059 1.67285 -2.20215 3.36426 -3.31055 5.07422c-32.7197 50.5742 -37.1318 70.4365 -37.1318 83.1982v64c0 61.7559 50.2441 112 112 112z" />
|
65
|
-
<glyph glyph-name="
|
65
|
+
<glyph glyph-name="image" unicode=""
|
66
66
|
d="M448 448v0c35.29 0 64 -28.7119 64 -64v-384c0 -35.2881 -28.71 -64 -64 -64h-384c-35.29 0 -64 28.7119 -64 64v384c0 35.2881 28.71 64 64 64h384zM480 0v0v384c0 17.5996 -14.4004 32 -32 32h-384c-17.5996 0 -32 -14.4004 -32 -32v-384
|
67
67
|
c0 -17.5996 14.4004 -32 32 -32h384c17.5996 0 32 14.4004 32 32zM448 152.002v0v-0.00390625v-71.998c0 -8.83594 -7.16406 -16 -16 -16h-352c-8.83594 0 -16 7.16406 -16 16v288c0 8.83594 7.16406 16 16 16h352c8.83594 0 16 -7.16406 16 -16v-215.998zM432 368v0h-352
|
68
68
|
v-198.48l106.762 92.5244c3.16797 2.75 7.92871 2.58008 10.8965 -0.387695l90.9355 -90.9365l74.4082 59.5264c3.18652 2.54785 7.77246 2.29199 10.6562 -0.589844l58.3418 -58.3418v196.686zM80 80v0h352v68.6855l-64.5938 64.5947l-74.4082 -59.5264
|
69
69
|
c-3.18652 -2.5459 -7.77441 -2.29199 -10.6562 0.589844l-90.7314 90.7324l-111.61 -96.7305v-68.3457zM344 256v0c-22.0557 0 -40 17.9443 -40 40s17.9443 40 40 40s40 -17.9443 40 -40s-17.9443 -40 -40 -40zM344 320v0c-13.2559 0 -24 -10.7441 -24 -24
|
70
70
|
s10.7441 -24 24 -24s24 10.7441 24 24s-10.7441 24 -24 24z" />
|
71
|
-
<glyph glyph-name="
|
71
|
+
<glyph glyph-name="random" unicode=""
|
72
72
|
d="M512 351.996c0 -8.48438 -3.37207 -16.624 -9.37402 -22.624l-64 -63.998c-6.12402 -6.12207 -14.3057 -9.37402 -22.6338 -9.37402c-4.12402 0 -8.28223 0.795898 -12.2383 2.43848c-11.958 4.9541 -19.7539 16.6221 -19.7539 29.5615v32
|
73
73
|
c-41.2461 0 -65.0615 -41.6758 -99.3779 -110.31c-16.5498 -33.0986 -33.6602 -67.3223 -56.0361 -94.1768c-28.4883 -34.1816 -62.3301 -51.5137 -100.586 -51.5137h-96c-17.6738 0 -32 14.3281 -32 32s14.3262 32 32 32h96c41.2461 0 65.0596 41.6758 99.3779 110.311
|
74
74
|
c16.5479 33.0977 33.6562 67.3213 56.04 94.1758c28.4844 34.1816 62.3262 51.5137 100.582 51.5137v32c0 12.9424 7.7959 24.6104 19.7539 29.5625c11.9619 4.95605 25.7236 2.21387 34.874 -6.93652l64 -64.002c6 -6 9.37207 -14.1377 9.37207 -22.6279v0zM128 384v0
|
@@ -76,41 +76,45 @@ c38.2559 0 72.0977 -17.332 100.586 -51.5137c2.75 -3.30664 5.42578 -6.72852 8.034
|
|
76
76
|
M502.626 118.626v0c12.498 -12.4961 12.498 -32.7559 -0.00195312 -45.252l-64 -64c-6.12207 -6.12207 -14.3057 -9.37402 -22.6338 -9.37402c-4.12402 0 -8.28027 0.797852 -12.2383 2.43848c-11.958 4.95117 -19.7539 16.6201 -19.7539 29.5615v32
|
77
77
|
c-38.2559 0 -72.0977 17.332 -100.582 51.5137c-2.75781 3.30664 -5.43164 6.72852 -8.03809 10.2441c12.9824 20.3906 24.1445 42.2246 34.9385 63.7744c22.5332 -39.0703 43.4141 -61.5322 73.6816 -61.5322v32c0 12.9404 7.7959 24.6084 19.7539 29.5625
|
78
78
|
c11.9639 4.95117 25.7256 2.21387 34.874 -6.93652z" />
|
79
|
-
<glyph glyph-name="
|
79
|
+
<glyph glyph-name="export" unicode=""
|
80
|
+
d="M512 416v-160c0 -17.6719 -14.3262 -32 -32 -32s-32 14.3281 -32 32v82.7441l-169.374 -169.372c-6.24805 -6.24805 -14.4404 -9.37402 -22.626 -9.37402c-8.19043 0 -16.3779 3.12402 -22.626 9.37402c-12.498 12.4961 -12.498 32.7578 0 45.2539l169.374 169.374
|
81
|
+
h-82.748c-17.6738 0 -32 14.3281 -32 32s14.3262 32 32 32h160c17.6738 0 32 -14.3281 32 -32zM416 -64h-384c-17.6738 0 -32 14.3281 -32 32v384c0 17.6719 14.3262 32 32 32h160c17.6738 0 32 -14.3281 32 -32s-14.3262 -32 -32 -32h-128v-320h320v128
|
82
|
+
c0 17.6719 14.3262 32 32 32s32 -14.3281 32 -32v-160c0 -17.6719 -14.3262 -32 -32 -32z" />
|
83
|
+
<glyph glyph-name="brush" unicode=""
|
80
84
|
d="M496 432v0c8.83594 0 16 -7.16406 16 -16v-96c0 -8.83594 -7.16406 -16 -16 -16h-20.3164c-5.53516 -9.55566 -15.8477 -16 -27.6836 -16h-352c-11.8359 0 -22.1484 6.44434 -27.6836 16h-20.3164c-8.83594 0 -16 7.16406 -16 16v-49.876l241.984 -30.248
|
81
85
|
c8.00781 -1 14.0156 -7.80762 14.0156 -15.876v-64c16.4424 0 30.2041 -12.4561 31.8398 -28.8164l16 -160c0.902344 -8.99512 -2.04785 -17.9512 -8.11426 -24.6553c-6.06543 -6.7041 -14.6855 -10.5283 -23.7256 -10.5283h-64
|
82
86
|
c-9.04199 0 -17.6582 3.82617 -23.7256 10.5283c-6.06836 6.70215 -9.0166 15.6602 -8.11426 24.6553l16 160c1.63379 16.3584 15.3975 28.8164 31.8398 28.8164v49.876l-241.984 30.248c-8.00781 1 -14.0156 7.80762 -14.0156 15.876v112c0 8.83594 7.16406 16 16 16h16v32
|
83
87
|
c0 8.83594 7.16406 16 16 16h20.3164c5.53516 9.55566 15.8477 16 27.6836 16h352c11.8359 0 22.1484 -6.44434 27.6836 -16h20.3164zM304 -32v0l-16 160h-32l-16 -160h64zM48 320v0h16v96h-16v-96zM96 320v0h352v96h-352v-96zM496 320v0v96h-16v-96h16z" />
|
84
|
-
<glyph glyph-name="
|
88
|
+
<glyph glyph-name="home" unicode=""
|
85
89
|
d="M420.571 164.571v-137.143c0 -4.95247 -1.80957 -9.23828 -5.42871 -12.8574s-7.90462 -5.42871 -12.8564 -5.42871h-109.715v109.715h-73.1426v-109.715h-109.715c-4.95182 0 -9.2373 1.80957 -12.8564 5.42871s-5.42871 7.90495 -5.42871 12.8574v137.143
|
86
90
|
c0 0.190755 0.047526 0.476562 0.142578 0.857422s0.142578 0.666667 0.142578 0.857422l164.286 135.428l164.286 -135.428c0.190104 -0.38151 0.285156 -0.953125 0.285156 -1.71484zM484.286 184.286l-17.7148 -21.1436c-1.52344 -1.71419 -3.52344 -2.76172 -6 -3.14258
|
87
91
|
h-0.857422c-2.47591 0 -4.47591 0.666667 -6 2l-197.714 164.857l-197.714 -164.857c-2.28581 -1.52409 -4.57161 -2.19076 -6.85742 -2c-2.47656 0.380859 -4.47656 1.42839 -6 3.14258l-17.7148 21.1436c-1.52344 1.9043 -2.1901 4.14225 -2 6.71387
|
88
92
|
c0.190755 2.57161 1.23861 4.61914 3.14355 6.14258l205.429 171.144c6.09505 4.95182 13.333 7.42773 21.7139 7.42773s15.6188 -2.47591 21.7139 -7.42773l69.7148 -58.2861v55.7139c0 2.66667 0.857096 4.85742 2.57129 6.57227
|
89
93
|
c1.71419 1.71419 3.90462 2.57129 6.57129 2.57129h54.8574c2.66667 0 4.8571 -0.857096 6.57129 -2.57129c1.71419 -1.71484 2.57129 -3.9056 2.57129 -6.57227v-116.571l62.5713 -52c1.90495 -1.52344 2.9528 -3.57096 3.14355 -6.14258
|
90
94
|
c0.190104 -2.57161 -0.476562 -4.80957 -2 -6.71387z" />
|
91
|
-
<glyph glyph-name="
|
95
|
+
<glyph glyph-name="caret-left" unicode=""
|
92
96
|
d="M347.429 320v-256c0 -4.95247 -1.80957 -9.23828 -5.42871 -12.8574s-7.90495 -5.42871 -12.8574 -5.42871s-9.23796 1.80957 -12.8564 5.42871l-128 128c-3.61914 3.61914 -5.42871 7.90495 -5.42871 12.8574s1.80957 9.23828 5.42871 12.8574l128 128
|
93
97
|
c3.61849 3.61914 7.90397 5.42871 12.8564 5.42871s9.23828 -1.80957 12.8574 -5.42871s5.42871 -7.90495 5.42871 -12.8574z" />
|
94
|
-
<glyph glyph-name="
|
98
|
+
<glyph glyph-name="check" unicode=""
|
95
99
|
d="M190.516 3.47656v0v0c-16.7969 0 -32.9629 6.66016 -44.9092 18.5947l-127.008 127.008c-24.7979 24.7988 -24.7979 65.0088 0 89.8066c24.8066 24.8027 65.0117 24.8027 89.8145 0l76.8359 -76.8359l209.693 262.116c21.9092 27.3828 61.873 31.8271 89.2588 9.91504
|
96
100
|
c27.3857 -21.9053 31.8271 -61.8691 9.91895 -89.2549l-254.016 -317.52c-11.2842 -14.1016 -28.041 -22.7344 -46.0762 -23.7344c-1.1709 -0.0634766 -2.3457 -0.0957031 -3.5127 -0.0957031z" />
|
97
|
-
<glyph glyph-name="
|
101
|
+
<glyph glyph-name="chevron-right" unicode=""
|
98
102
|
d="M389.429 197.429l-212 -212c-3.61914 -3.61914 -7.90495 -5.42871 -12.8574 -5.42871s-9.23828 1.80957 -12.8574 5.42871l-47.4277 47.4287c-3.61914 3.61914 -5.42871 7.90462 -5.42871 12.8564c0 4.95247 1.80957 9.23828 5.42871 12.8574l151.714 151.715
|
99
103
|
l-151.714 151.714c-3.61914 3.61914 -5.42871 7.90495 -5.42871 12.8574s1.80957 9.23796 5.42871 12.8564l47.4277 47.4287c3.61914 3.61914 7.90495 5.42871 12.8574 5.42871s9.23828 -1.80957 12.8574 -5.42871l212 -212
|
100
104
|
c3.61914 -3.61914 5.42871 -7.90462 5.42871 -12.8564c0 -4.95247 -1.80957 -9.23828 -5.42871 -12.8574z" />
|
101
|
-
<glyph glyph-name="
|
105
|
+
<glyph glyph-name="caret-down" unicode=""
|
102
106
|
d="M402.286 246.857c0 -4.95247 -1.80957 -9.23828 -5.42871 -12.8574l-128 -128c-3.61914 -3.61914 -7.90495 -5.42871 -12.8574 -5.42871c-4.95247 0 -9.23828 1.80957 -12.8574 5.42871l-128 128c-3.61914 3.61914 -5.42871 7.90495 -5.42871 12.8574
|
103
107
|
s1.80957 9.23796 5.42871 12.8564c3.61914 3.61914 7.90495 5.42871 12.8574 5.42871h256c4.95247 0 9.23828 -1.80957 12.8574 -5.42871c3.61914 -3.61849 5.42871 -7.90397 5.42871 -12.8564z" />
|
104
|
-
<glyph glyph-name="
|
108
|
+
<glyph glyph-name="chevron-left" unicode=""
|
105
109
|
d="M407.714 362l-151.714 -151.714l151.714 -151.715c3.61914 -3.61914 5.42871 -7.90495 5.42871 -12.8574c0 -4.95182 -1.80957 -9.2373 -5.42871 -12.8564l-47.4277 -47.4287c-3.61914 -3.61914 -7.90495 -5.42871 -12.8574 -5.42871s-9.23828 1.80957 -12.8574 5.42871
|
106
110
|
l-212 212c-3.61914 3.61914 -5.42871 7.90495 -5.42871 12.8574c0 4.95182 1.80957 9.2373 5.42871 12.8564l212 212c3.61914 3.61914 7.90495 5.42871 12.8574 5.42871s9.23828 -1.80957 12.8574 -5.42871l47.4277 -47.4287
|
107
111
|
c3.61914 -3.61849 5.42871 -7.90397 5.42871 -12.8564s-1.80957 -9.23828 -5.42871 -12.8574z" />
|
108
|
-
<glyph glyph-name="
|
112
|
+
<glyph glyph-name="power-off" unicode=""
|
109
113
|
d="M256 -64c-68.3799 0 -132.668 26.6279 -181.02 74.9824c-48.3506 48.3496 -74.9805 112.638 -74.9805 181.018s26.6299 132.664 74.9805 181.018c12.4971 12.498 32.7578 12.498 45.2559 0c12.498 -12.4951 12.498 -32.7578 0 -45.2539
|
110
114
|
c-36.2666 -36.2637 -56.2363 -84.4775 -56.2363 -135.764s19.9697 -99.5 56.2363 -135.764c36.2637 -36.2646 84.4775 -56.2363 135.764 -56.2363s99.5 19.9717 135.764 56.2363c36.2666 36.2637 56.2363 84.4775 56.2363 135.764s-19.9697 99.5 -56.2363 135.764
|
111
115
|
c-12.498 12.4961 -12.498 32.7588 0 45.2539c12.4961 12.4961 32.7588 12.4961 45.2559 0c48.3525 -48.3535 74.9805 -112.636 74.9805 -181.018s-26.6299 -132.668 -74.9805 -181.018c-48.3516 -48.3545 -112.64 -74.9824 -181.02 -74.9824v0v0zM256 160v0v0
|
112
116
|
c-17.6738 0 -32 14.3262 -32 32v224c0 17.6738 14.3262 32 32 32s32 -14.3262 32 -32v-224c0 -17.6738 -14.3262 -32 -32 -32z" />
|
113
|
-
<glyph glyph-name="
|
117
|
+
<glyph glyph-name="eye" unicode=""
|
114
118
|
d="M475.429 173.714c-28.9525 44.9525 -65.2383 78.5716 -108.857 100.857c11.6191 -19.8092 17.4287 -41.2376 17.4287 -64.2852c0 -35.2383 -12.5238 -65.3812 -37.5713 -90.4287c-25.0475 -25.0475 -55.1904 -37.5713 -90.4287 -37.5713
|
115
119
|
s-65.3812 12.5238 -90.4287 37.5713c-25.0475 25.0475 -37.5713 55.1904 -37.5713 90.4287c0 23.0475 5.80957 44.4759 17.4287 64.2852c-43.6191 -22.2858 -79.9049 -55.9049 -108.857 -100.857c25.3333 -39.0475 57.0954 -70.1426 95.2861 -93.2852
|
116
120
|
c38.1901 -23.1432 79.571 -34.7148 124.143 -34.7148c44.5716 0 85.9525 11.5716 124.143 34.7148c38.1908 23.1426 69.9528 54.2376 95.2861 93.2852zM269.714 283.429c0 3.80924 -1.33333 7.0472 -4 9.71387s-5.90462 4 -9.71387 4
|
@@ -118,18 +122,18 @@ c-23.8092 0 -44.238 -8.52376 -61.2861 -25.5713c-17.0475 -17.0475 -25.5713 -37.47
|
|
118
122
|
c11.6191 11.6185 25.6191 17.4277 42 17.4277c3.80924 0 7.0472 1.33333 9.71387 4s4 5.90495 4 9.71484zM512 173.714c0 -6.47591 -1.90462 -13.0472 -5.71387 -19.7139c-26.6667 -43.8092 -62.5241 -78.9046 -107.572 -105.286
|
119
123
|
c-45.0475 -26.3809 -92.6188 -39.5713 -142.714 -39.5713c-50.0951 0 -97.6663 13.2383 -142.714 39.7148c-45.0482 26.4759 -80.9056 61.5234 -107.572 105.143c-3.80924 6.66667 -5.71387 13.238 -5.71387 19.7139c0 6.47656 1.90462 13.0482 5.71387 19.7148
|
120
124
|
c26.6667 43.6191 62.5241 78.6667 107.572 105.143c45.0475 26.4766 92.6188 39.7148 142.714 39.7148c50.0951 0 97.6663 -13.2383 142.714 -39.7148c45.0482 -26.4759 80.9056 -61.5234 107.572 -105.143c3.80924 -6.66667 5.71387 -13.2383 5.71387 -19.7148z" />
|
121
|
-
<glyph glyph-name="
|
125
|
+
<glyph glyph-name="min" unicode=""
|
122
126
|
d="M307.2 243.2h153.6c28.2754 0 51.2002 -22.9219 51.2002 -51.2002c0 -28.2754 -22.9248 -51.2002 -51.2002 -51.2002h-153.6h-102.4h-153.6c-28.2754 0 -51.2002 22.9248 -51.2002 51.2002c0 28.2783 22.9248 51.2002 51.2002 51.2002h153.6h102.4z" />
|
123
|
-
<glyph glyph-name="
|
127
|
+
<glyph glyph-name="users-outline" unicode=""
|
124
128
|
d="M307.946 307.204v0c35.6699 -18.7539 60.0537 -56.1846 60.0537 -99.2041v-112c0 -17.6738 -14.3262 -32 -32 -32v-96c0 -17.6738 -14.3262 -32 -32 -32h-96c-17.6738 0 -32 14.3262 -32 32v96c-17.6738 0 -32 14.3262 -32 32v112
|
125
129
|
c0 43.0225 24.3818 80.4541 60.0537 99.208c-17.1602 14.6836 -28.0537 36.4902 -28.0537 60.792c0 44.1123 35.8877 80 80 80s80 -35.8877 80 -80c0 -24.3037 -10.8936 -46.1123 -28.0537 -60.7959zM256 416v0c-26.5098 0 -48 -21.4922 -48 -48
|
126
130
|
c0 -26.5098 21.4902 -48 48 -48s48 21.4902 48 48c0 26.5078 -21.4902 48 -48 48zM336 96v0v112c0 44.1797 -35.8164 80 -80 80s-80 -35.8203 -80 -80v-112h16v104c0 4.41797 3.58203 8 8 8s8 -3.58203 8 -8v-232h40v128c0 4.41797 3.58203 8 8 8s8 -3.58203 8 -8v-128h40
|
127
131
|
v232c0 4.41797 3.58203 8 8 8s8 -3.58203 8 -8v-104h16z" />
|
128
|
-
<glyph glyph-name="
|
132
|
+
<glyph glyph-name="cross" unicode=""
|
129
133
|
d="M343.825 193.983v0l145.606 -145.606c24.7979 -24.8018 24.7979 -65.0117 0 -89.8145c-12.3994 -12.3984 -28.6484 -18.5986 -44.9014 -18.5986s-32.502 6.2002 -44.9053 18.5986l-145.606 145.61l-145.61 -145.61
|
130
134
|
c-12.3994 -12.3984 -28.6484 -18.5986 -44.9014 -18.5986s-32.502 6.2002 -44.9053 18.5986c-24.8018 24.8027 -24.8018 65.0127 0 89.8145l145.606 145.606l-145.606 145.606c-24.8018 24.8027 -24.8018 65.0117 0 89.8145c24.7988 24.7939 65.0039 24.7939 89.8066 0
|
131
135
|
l145.61 -145.61l145.606 145.61c24.7979 24.7939 65.0039 24.7939 89.8066 0c24.7979 -24.8027 24.7979 -65.0117 0 -89.8145z" />
|
132
|
-
<glyph glyph-name="
|
136
|
+
<glyph glyph-name="social-outline" unicode=""
|
133
137
|
d="M320 312.004c0 -13.252 -10.7461 -23.998 -24 -23.998s-24 10.7461 -24 23.998c0 13.2539 10.7461 24 24 24s24 -10.7461 24 -24v0zM499.989 247.016l-62.4951 -49.9961c-9.11426 -31.918 -23.8506 -61.5557 -43.8906 -88.2295
|
134
138
|
c-15.4697 -20.6016 -33.7695 -38.9004 -54.3838 -54.3877c-16.6221 -12.4863 -34.376 -22.8584 -52.9658 -31.124l16.0576 -32.1162c3.95215 -7.90625 0.748047 -17.5156 -7.1543 -21.4658c-2.2959 -1.15039 -4.73926 -1.69434 -7.14355 -1.69434
|
135
139
|
c-5.87012 0 -11.5195 3.24219 -14.3223 8.84766l-17.5713 35.1445c-25.668 -7.89062 -52.5645 -11.9883 -80.1182 -11.9883c-9.13477 0 -18.1885 0.5 -27.1621 1.38184l-5.31445 -21.2637c-1.81738 -7.27051 -8.34375 -12.124 -15.5117 -12.124
|
@@ -142,13 +146,13 @@ c-14.9805 34.2285 -14.9004 78.5869 0.246094 112.698c-19.9482 55.5938 -73.0898 95
|
|
142
146
|
c3.12402 3.12598 8.1875 3.12598 11.3115 0c3.12402 -3.12207 3.12402 -8.19043 0 -11.3125c-14.9219 -14.9238 -46.958 -35.1914 -88.1279 -43.1953c-9.55957 -1.85645 -20.4219 -3.18066 -31.9717 -3.18066c-14.542 0 -30.1836 2.11621 -45.7158 7.8623
|
143
147
|
c-7.0498 -9.59766 -14.9219 -18.9141 -23.8379 -27.8281c32.2695 -24.2422 70.8652 -40.5254 112.854 -45.9717c17.5225 28.9834 43.7061 57.3281 75.1719 81.0742c34.9668 26.3877 73.3105 44.4912 105.206 49.668c24.8779 4.03125 45.3379 0.229492 59.6807 -10.958
|
144
148
|
c9.55176 16.8701 17.1133 35.0176 22.3877 54.1152v0zM480 272.006l-60.2783 36.166c-9.87207 -26.4062 -10.2559 -58.4561 -1.11816 -85.2822l61.3965 49.1162v0z" />
|
145
|
-
<glyph glyph-name="
|
149
|
+
<glyph glyph-name="camera" unicode=""
|
146
150
|
d="M224 288v0c70.6924 0 128 -57.3057 128 -128s-57.3076 -128 -128 -128s-128 57.3057 -128 128s57.3076 128 128 128zM224 48v0c61.7559 0 112 50.2441 112 112s-50.2441 112 -112 112s-112 -50.2441 -112 -112s50.2441 -112 112 -112zM408 288v0
|
147
151
|
c22.0557 0 40 -17.9443 40 -40s-17.9443 -40 -40 -40s-40 17.9443 -40 40s17.9443 40 40 40zM408 224v0c13.2559 0 24 10.7441 24 24s-10.7441 24 -24 24s-24 -10.7441 -24 -24s10.7441 -24 24 -24zM448 352v0c35.29 0 64 -28.7119 64 -64v-256
|
148
152
|
c0 -35.2881 -28.71 -64 -64 -64h-384c-35.29 0 -64 28.7119 -64 64v256c0 35.2881 28.71 64 64 64h63.9443c0.0175781 0.015625 0.0400391 0.0361328 0.0556641 0.0556641c0.0322266 35.2646 28.7305 63.9443 64 63.9443h128c35.2676 0 63.9639 -28.6758 64 -63.9443
|
149
153
|
c0.015625 -0.0195312 0.0361328 -0.0400391 0.0556641 -0.0556641h63.9443zM160 352v0v-16h192v16c0 17.5996 -14.4004 32 -32 32h-128c-17.5996 0 -32 -14.4004 -32 -32zM480 32v0v256c0 17.5996 -14.4004 32 -32 32h-384c-17.5996 0 -32 -14.4004 -32 -32v-256
|
150
154
|
c0 -17.5996 14.4004 -32 32 -32h384c17.5996 0 32 14.4004 32 32z" />
|
151
|
-
<glyph glyph-name="
|
155
|
+
<glyph glyph-name="italic" unicode=""
|
152
156
|
d="M109.714 -26.8574l4.85742 24.2861c1.14323 0.380859 8.90527 2.42839 23.2861 6.14258c14.3809 3.71419 24.9997 7.28581 31.8564 10.7148c5.33333 6.66667 9.23828 16.2855 11.7148 28.8564c0.190104 1.33333 6.09473 28.8571 17.7139 82.5713
|
153
157
|
c11.6191 53.7148 22.4762 105.477 32.5713 155.286c10.0957 49.8092 15.0482 78.0472 14.8574 84.7139v7.14355c-4.57161 2.47591 -9.76204 4.23763 -15.5713 5.28516s-12.4284 1.80957 -19.8574 2.28613c-7.42839 0.475911 -12.9521 0.999674 -16.5713 1.57129
|
154
158
|
l5.42871 29.4287c6.28581 -0.380859 17.7145 -1 34.2861 -1.85742c16.571 -0.856771 30.8089 -1.52344 42.7139 -2c11.9049 -0.475911 23.3812 -0.713867 34.4287 -0.713867c9.14258 0 18.5234 0.237956 28.1426 0.713867c9.61914 0.476562 21.1429 1.14323 34.5713 2
|
@@ -157,35 +161,35 @@ c-1.14323 -4.47591 -2.00033 -8.28548 -2.57129 -11.4287c-0.571615 -3.14258 -1.286
|
|
157
161
|
c-11.5241 -51.7142 -18.9053 -85.5713 -22.1436 -101.571c-0.380859 -1.71484 -1.61882 -7.23893 -3.71387 -16.5723s-4 -17.9046 -5.71484 -25.7139c-1.71419 -7.80924 -3.23796 -15.7617 -4.57129 -23.8574c-1.33333 -8.09505 -1.90462 -13.5713 -1.71387 -16.4287
|
158
162
|
l0.285156 -5.14258c3.23828 -0.761719 20.8574 -3.71419 52.8574 -8.85742c-0.571615 -8.38086 -2.09538 -17.8092 -4.57129 -28.2852c-2.09505 0 -5.19043 -0.142904 -9.28613 -0.428711c-4.09505 -0.285807 -7.1901 -0.428711 -9.28516 -0.428711
|
159
163
|
c-5.52409 0 -13.8099 0.952474 -24.8574 2.85742s-19.238 2.85742 -24.5713 2.85742c-26.2858 0.380859 -45.9049 0.571289 -58.8574 0.571289c-9.71419 0 -23.333 -0.857096 -40.8564 -2.57129c-17.5241 -1.71484 -29.0482 -2.7627 -34.5723 -3.14355z" />
|
160
|
-
<glyph glyph-name="
|
164
|
+
<glyph glyph-name="lock" unicode=""
|
161
165
|
d="M352 192v64c0 52.9922 -43.0078 96 -96 96s-96 -43.0078 -96 -96v-64h192zM64 192h32v64c0 88.3203 71.6797 160 160 160s160 -71.6797 160 -160v-64h32v-224h-384v224z" />
|
162
|
-
<glyph glyph-name="
|
166
|
+
<glyph glyph-name="mail" unicode=""
|
163
167
|
d="M448 352c35.29 0 64 -28.71 64 -64v-192c0 -35.29 -28.71 -64 -64 -64h-384c-35.29 0 -64 28.71 -64 64v192c0 35.29 28.71 64 64 64h384zM256 160.002c2.63574 0 5.27441 0.652344 7.66211 1.9541l175.996 95.998c7.75781 4.22949 10.6162 13.9502 6.38379 21.708
|
164
168
|
c-4.23047 7.75586 -13.9521 10.6162 -21.708 6.38379l-168.334 -91.8203l-168.336 91.8184c-7.75781 4.23242 -17.4756 1.37207 -21.708 -6.38379c-4.23047 -7.75781 -1.37402 -17.4766 6.38379 -21.708l175.996 -95.998c2.38965 -1.2998 5.02832 -1.95215 7.66406 -1.95215
|
165
169
|
z" />
|
166
|
-
<glyph glyph-name="
|
170
|
+
<glyph glyph-name="document" unicode=""
|
167
171
|
d="M374.628 342.626v0c6.00195 -6.00195 9.37207 -14.1396 9.37207 -22.626v-352c0 -17.6719 -14.3281 -32 -32 -32h-320c-17.6719 0 -32 14.3281 -32 32v448c0 17.6719 14.3281 32 32 32h224c8.48828 0 16.6279 -3.37207 22.6279 -9.37402zM256 416v0v-96h96zM352 -32v0
|
168
172
|
v336h-96c-8.83594 0 -16 7.16406 -16 16v96h-208v-448h320z" />
|
169
|
-
<glyph glyph-name="
|
173
|
+
<glyph glyph-name="inbox-outline" unicode=""
|
170
174
|
d="M384 416v0h-256l-96 -160v-160h448v160zM384 448v0v0c11.2383 0 21.6562 -5.89844 27.4385 -15.5361l96 -160c2.98535 -4.97363 4.56152 -10.6641 4.56152 -16.4639v-160c0 -17.6719 -14.3281 -32 -32 -32h-448c-17.6719 0 -32 14.3281 -32 32v160
|
171
175
|
c0 5.7998 1.57617 11.4902 4.55957 16.4639l96 160c5.78418 9.6377 16.2002 15.5361 27.4404 15.5361h256zM352 368v0h-192l-64 -112h80v-48h160v48h80zM352 384v0v0c5.74219 0 11.042 -3.07617 13.8896 -8.06152l64 -112
|
172
176
|
c2.83203 -4.9502 2.81055 -11.0361 -0.0517578 -15.9688c-2.8623 -4.93164 -8.13379 -7.96777 -13.8379 -7.96777h-64v-32c0 -8.83594 -7.16406 -16 -16 -16h-160c-8.83594 0 -16 7.16406 -16 16v32h-64c-5.7041 0 -10.9756 3.03418 -13.8398 7.96777
|
173
177
|
c-2.86035 4.93262 -2.88184 11.0166 -0.0498047 15.9688l64 112c2.84766 4.98535 8.14746 8.06152 13.8896 8.06152h192z" />
|
174
|
-
<glyph glyph-name="
|
178
|
+
<glyph glyph-name="caret-right" unicode=""
|
175
179
|
d="M329.143 192c0 -4.95247 -1.80957 -9.23828 -5.42871 -12.8574l-128 -128c-3.61849 -3.61914 -7.90397 -5.42871 -12.8564 -5.42871s-9.23828 1.80957 -12.8574 5.42871s-5.42871 7.90495 -5.42871 12.8574v256c0 4.95247 1.80957 9.23828 5.42871 12.8574
|
176
180
|
s7.90495 5.42871 12.8574 5.42871s9.23796 -1.80957 12.8564 -5.42871l128 -128c3.61914 -3.61914 5.42871 -7.90495 5.42871 -12.8574z" />
|
177
|
-
<glyph glyph-name="
|
181
|
+
<glyph glyph-name="dots" unicode=""
|
178
182
|
d="M256 122.182v0c-38.5625 0 -69.8184 31.2617 -69.8184 69.8184s31.2559 69.8184 69.8184 69.8184c38.5596 0 69.8184 -31.2617 69.8184 -69.8184s-31.2588 -69.8184 -69.8184 -69.8184zM69.8184 122.182v0c-38.5635 0 -69.8184 31.2617 -69.8184 69.8184
|
179
183
|
s31.2549 69.8184 69.8184 69.8184c38.5596 0 69.8184 -31.2617 69.8184 -69.8184s-31.2588 -69.8184 -69.8184 -69.8184zM442.182 122.182v0c-38.5625 0 -69.8184 31.2617 -69.8184 69.8184s31.2559 69.8184 69.8184 69.8184c38.5605 0 69.8184 -31.2617 69.8184 -69.8184
|
180
184
|
s-31.2578 -69.8184 -69.8184 -69.8184z" />
|
181
|
-
<glyph glyph-name="
|
185
|
+
<glyph glyph-name="exclamation" unicode=""
|
182
186
|
d="M256 89.5996c-28.2754 0 -51.2002 22.9219 -51.2002 51.2002v256c0 28.2783 22.9248 51.2002 51.2002 51.2002s51.2002 -22.9219 51.2002 -51.2002v-256c0 -28.2783 -22.9248 -51.2002 -51.2002 -51.2002v0v0zM307.2 -12.7998
|
183
187
|
c0 -28.2783 -22.9219 -51.2002 -51.2002 -51.2002s-51.2002 22.9219 -51.2002 51.2002s22.9219 51.2002 51.2002 51.2002s51.2002 -22.9219 51.2002 -51.2002z" />
|
184
|
-
<glyph glyph-name="
|
188
|
+
<glyph glyph-name="pencil-outline" unicode=""
|
185
189
|
d="M494.168 308.488l-328.376 -328.376l-165.787 -41.4482l41.4453 165.797l328.377 328.374c8.32715 8.33008 19.2471 12.498 30.168 12.498c10.9199 0 21.8398 -4.16504 30.168 -12.498l64.0049 -64.0059c16.6641 -16.6641 16.6641 -43.6797 0 -60.3408v0z
|
186
190
|
M143.981 18.6396l10.667 10.6699l-64.0029 64l-10.667 -10.667l-21.3359 -85.3389l85.3389 21.3359v0zM346.658 221.32l-64.0049 64.002l-170.672 -170.674l64 -64.0029l170.677 170.675v0zM399.995 274.656l-64.0029 64.002l-32.0029 -32l64.0029 -64.002l32.0029 32v0z
|
187
191
|
M464 338.658l-64.0049 64l-33.832 -33.8311l64 -64.0029l33.8369 33.834v0z" />
|
188
|
-
<glyph glyph-name="
|
192
|
+
<glyph glyph-name="bold" unicode=""
|
189
193
|
d="M213.429 13.4287c14.0951 -6.09505 27.4284 -9.14258 40 -9.14258c71.6191 0 107.429 31.9046 107.429 95.7139c0 21.7142 -3.90495 38.8571 -11.7148 51.4287c-5.14258 8.38086 -10.9997 15.4284 -17.5713 21.1426s-13 10.1429 -19.2852 13.2861
|
190
194
|
c-6.28581 3.14258 -13.9525 5.52344 -23 7.14258c-9.04818 1.61914 -17.0482 2.61914 -24 3c-6.95247 0.380859 -15.9525 0.571289 -27 0.571289c-13.9049 0 -23.5241 -0.952474 -28.8574 -2.85742c0 -10.0951 -0.047526 -25.2376 -0.142578 -45.4277
|
191
195
|
c-0.0957031 -20.1908 -0.143555 -35.2386 -0.143555 -45.1436c0 -1.52344 -0.0950521 -7.95182 -0.285156 -19.2852c-0.190755 -11.3333 -0.238607 -20.5238 -0.143555 -27.5713c0.0957031 -7.04818 0.524414 -15.0007 1.28613 -23.8574
|
@@ -200,22 +204,22 @@ c12.6667 -2.47656 24.9046 -6.47656 36.7139 -12c11.8099 -5.52409 22.0957 -12.2861
|
|
200
204
|
c-3.14258 -8.28516 -6.85677 -15.1423 -11.1426 -20.5713c-4.28581 -5.42839 -10.4287 -10.9046 -18.4287 -16.4287c-8 -5.52344 -14.9525 -9.80892 -20.8574 -12.8564s-13.9049 -6.8571 -24 -11.4287c29.3333 -6.66667 53.762 -19.4287 73.2861 -38.2861
|
201
205
|
c19.5234 -18.8568 29.2852 -42.4756 29.2852 -70.8564c0 -19.0482 -3.33333 -36.1436 -10 -51.2861s-15.5713 -27.5713 -26.7139 -37.2861c-11.1432 -9.71419 -24.2861 -17.8568 -39.4287 -24.4277c-15.1426 -6.57161 -30.7139 -11.1908 -46.7139 -13.8574
|
202
206
|
c-16 -2.66667 -32.762 -4 -50.2861 -4c-8.38086 0 -20.9521 0.285807 -37.7139 0.857422c-16.7624 0.570964 -29.334 0.856445 -37.7148 0.856445c-20.1901 0 -49.4281 -1.04753 -87.7139 -3.14258s-60.2858 -3.23796 -66 -3.42871z" />
|
203
|
-
<glyph glyph-name="
|
207
|
+
<glyph glyph-name="media-library" unicode=""
|
204
208
|
d="M320 416v0h-256c-17.5996 0 -32 -14.4004 -32 -32v-384c0 -17.5996 14.4004 -32 32 -32h256c17.5996 0 32 14.4004 32 32v384c0 17.5996 -14.4004 32 -32 32zM320 448v0v0c35.29 0 64 -28.7119 64 -64v-384c0 -35.2881 -28.71 -64 -64 -64h-256
|
205
209
|
c-35.29 0 -64 28.7119 -64 64v384c0 35.2881 28.71 64 64 64h256zM192 256v0c-70.6924 0 -128 -57.3076 -128 -128s57.3076 -128 128 -128s128 57.3076 128 128s-57.3076 128 -128 128zM192 272v0v0c79.4023 0 144 -64.5977 144 -144s-64.5977 -144 -144 -144
|
206
210
|
s-144 64.5977 -144 144s64.5977 144 144 144zM272 368v0c-17.6719 0 -32 -14.3262 -32 -32s14.3281 -32 32 -32s32 14.3262 32 32s-14.3281 32 -32 32zM272 384v0v0c26.4658 0 48 -21.5342 48 -48c0 -26.4678 -21.5342 -48 -48 -48s-48 21.5322 -48 48
|
207
211
|
c0 26.4658 21.5342 48 48 48zM192 176v0c-26.5078 0 -48 -21.4883 -48 -48s21.4922 -48 48 -48s48 21.4883 48 48s-21.4922 48 -48 48zM192 192v0v0c35.29 0 64 -28.7119 64 -64s-28.71 -64 -64 -64s-64 28.7119 -64 64s28.71 64 64 64z" />
|
208
|
-
<glyph glyph-name="
|
212
|
+
<glyph glyph-name="large-check" unicode=""
|
209
213
|
d="M163.838 -64.001c-11.9248 0 -23.2969 5.2041 -31.0967 14.3027l-122.88 143.359c-14.7227 17.1758 -12.7334 43.0361 4.44141 57.7568c17.1777 14.7227 43.0332 12.7305 57.7539 -4.44141l88.8467 -103.655l276.801 387.523
|
210
214
|
c13.1455 18.4062 38.7275 22.6738 57.1357 9.52051c18.4072 -13.1455 22.6719 -38.7275 9.52344 -57.1367l-307.194 -430.078c-7.31641 -10.2451 -18.9414 -16.5576 -31.5186 -17.1133c-0.604492 -0.0253906 -1.21094 -0.0380859 -1.8125 -0.0380859v0v0z" />
|
211
|
-
<glyph glyph-name="
|
215
|
+
<glyph glyph-name="cart" unicode=""
|
212
216
|
d="M168 49.6426v0c22.0557 0 40 -17.8633 40 -39.8213c0 -21.957 -17.9443 -39.8213 -40 -39.8213s-40 17.8643 -40 39.8213c0 21.958 17.9443 39.8213 40 39.8213zM168 -14.0713v0c13.2559 0 24 10.6963 24 23.8926c0 13.1973 -10.7441 23.8926 -24 23.8926
|
213
217
|
s-24 -10.6953 -24 -23.8926c0 -13.1963 10.7441 -23.8926 24 -23.8926zM408 49.6426v0c22.0557 0 40 -17.8633 40 -39.8213c0 -21.957 -17.9443 -39.8213 -40 -39.8213s-40 17.8643 -40 39.8213c0 21.958 17.9443 39.8213 40 39.8213zM408 -14.0713v0
|
214
218
|
c13.2559 0 24 10.6963 24 23.8926c0 13.1973 -10.7441 23.8926 -24 23.8926s-24 -10.6953 -24 -23.8926c0 -13.1963 10.7441 -23.8926 24 -23.8926zM508.268 378.44v0c3.04004 -3.61621 4.31641 -8.38477 3.48242 -13.0254l-40 -223
|
215
219
|
c-1.3623 -7.59766 -7.99805 -13.1289 -15.75 -13.1289h-305.282l6.40039 -31.8574h274.882c8.83594 0 16 -7.13184 16 -15.9287s-7.16406 -15.9287 -16 -15.9287h-288c-7.62793 0 -14.1943 5.36035 -15.6904 12.8047l-61.4277 305.767h-50.8818
|
216
220
|
c-8.83594 0 -16 7.13184 -16 15.9287s7.16406 15.9287 16 15.9287h64c7.62793 0 14.1943 -5.36035 15.6904 -12.8047l3.82715 -19.0527h396.482c4.73633 0 9.22754 -2.08789 12.2676 -5.70215zM208 161.143v0v95.5713h-82.8838l19.2002 -95.5713h63.6836zM208 272.643v0
|
217
221
|
v79.6436h-102.084l16 -79.6436h86.084zM352 161.143v0v95.5713h-128v-95.5713h128zM352 272.643v0v79.6436h-128v-79.6436h128zM442.604 161.143v0l17.1445 95.5713h-91.748v-95.5713h74.6035zM462.604 272.643v0l14.2861 79.6436h-108.89v-79.6436h94.6035z" />
|
218
|
-
<glyph glyph-name="
|
222
|
+
<glyph glyph-name="cog-outline" unicode=""
|
219
223
|
d="M255.998 272v0c-44.1836 0 -80 -35.8164 -80 -80s35.8164 -80 80 -80s80 35.8164 80 80s-35.8164 80 -80 80zM255.998 288v0v0c52.9355 0 96 -43.0664 96 -96s-43.0645 -96 -96 -96c-52.9336 0 -96 43.0664 -96 96s43.0664 96 96 96zM255.998 416v0
|
220
224
|
c-8.22168 0 -16.3359 -0.458008 -24.3281 -1.32031l-17.0283 -68.1055c-13.708 -3.6582 -26.6758 -9.10059 -38.6719 -16.0459l-60.2139 36.1279c-12.6758 -10.1943 -24.2178 -21.7363 -34.4141 -34.4141l36.1279 -60.2139
|
221
225
|
c-6.94336 -11.9961 -12.3838 -24.9639 -16.0459 -38.6719l-68.1055 -17.0264c-0.862305 -7.99414 -1.32031 -16.1084 -1.32031 -24.3301s0.456055 -16.3359 1.32031 -24.3301l68.1055 -17.0264c3.66211 -13.708 9.10059 -26.6738 16.0459 -38.668l-36.1279 -60.2139
|
@@ -232,7 +236,7 @@ c-5.08789 -3.05469 -10.7842 -4.56055 -16.46 -4.56055c-7.13184 0 -14.2334 2.38184
|
|
232
236
|
c-1.58594 3.5127 -3.0625 7.07227 -4.43066 10.668l-50.918 12.7285c-13.0098 3.25391 -22.6113 14.2764 -24.0537 27.6104c-1 9.25 -1.50391 18.5898 -1.50391 27.7656s0.503906 18.5156 1.50391 27.7656c1.44043 13.334 11.0439 24.3564 24.0537 27.6104l50.918 12.7275
|
233
237
|
c1.36816 3.59863 2.84473 7.15625 4.43066 10.6729l-27 45.002c-6.89844 11.4932 -5.89844 26.0693 2.5 36.5156c11.6201 14.4561 24.8477 27.6777 39.2998 39.2998c5.82031 4.68066 12.9199 7.0625 20.0537 7.0625c5.67383 0 11.3701 -1.50586 16.46 -4.56055
|
234
238
|
l45.0039 -27.002c3.5166 1.58594 7.07227 3.0625 10.6729 4.43262l12.7256 50.916c3.25391 13.0117 14.2764 22.6133 27.6104 24.0537c9.25 1 18.5898 1.50586 27.7656 1.50586z" />
|
235
|
-
<glyph glyph-name="
|
239
|
+
<glyph glyph-name="link" unicode=""
|
236
240
|
d="M434.286 100.571c0 7.61914 -2.66667 14.0954 -8 19.4287l-59.4287 59.4287c-5.33333 5.33333 -11.8096 8 -19.4287 8c-8 0 -14.8571 -3.04753 -20.5713 -9.14258c0.570964 -0.571615 2.38053 -2.33366 5.42871 -5.28613c3.04753 -2.95247 5.09505 -5 6.14258 -6.14258
|
237
241
|
c1.04753 -1.14323 2.47591 -2.9528 4.28516 -5.42871c1.8099 -2.47656 3.04818 -4.90527 3.71484 -7.28613s1 -4.99967 1 -7.85645c0 -7.61914 -2.66667 -14.0954 -8 -19.4287c-5.33333 -5.33333 -11.8096 -8 -19.4287 -8c-2.85742 0 -5.47656 0.333333 -7.85742 1
|
238
242
|
s-4.80924 1.90462 -7.28516 3.71387c-2.47656 1.8099 -4.28613 3.23861 -5.42871 4.28613c-1.14323 1.04753 -3.19076 3.09505 -6.14258 6.14258c-2.95247 3.04753 -4.71452 4.8571 -5.28613 5.42871c-6.28581 -5.90495 -9.42871 -12.8574 -9.42871 -20.8574
|
@@ -245,79 +249,79 @@ c-15.8099 -15.8099 -35.1432 -23.7148 -58 -23.7148c-23.0475 0 -42.4762 8.09538 -5
|
|
245
249
|
c-16.3809 -16.7617 -36.1904 -25.1426 -59.4287 -25.1426c-22.8568 0 -42.2852 8 -58.2852 24l-59.4287 59.4277c-16 16 -24 35.4287 -24 58.2861s8.09505 42.1908 24.2852 58l42 41.7139c15.8099 15.8099 35.1432 23.7148 58 23.7148
|
246
250
|
c23.0475 0 42.4762 -8.09538 58.2861 -24.2861l58.8574 -59.1426c15.8092 -15.8092 23.7139 -35.1426 23.7139 -58c0 -23.4284 -8.38086 -43.333 -25.1426 -59.7139l25.1426 -25.1436c16.3809 16.7624 36.1904 25.1436 59.4287 25.1436c22.8568 0 42.2852 -8 58.2852 -24
|
247
251
|
l59.4287 -59.4287c16 -16 24 -35.4287 24 -58.2861z" />
|
248
|
-
<glyph glyph-name="
|
252
|
+
<glyph glyph-name="plus" unicode=""
|
249
253
|
d="M460.8 243.2v0c28.2754 0 51.2002 -22.9219 51.2002 -51.2002c0 -28.2754 -22.9248 -51.2002 -51.2002 -51.2002h-153.6v-153.6c0 -28.2754 -22.9248 -51.2002 -51.2002 -51.2002s-51.2002 22.9248 -51.2002 51.2002v153.6h-153.6
|
250
254
|
c-28.2754 0 -51.2002 22.9248 -51.2002 51.2002c0 28.2783 22.9248 51.2002 51.2002 51.2002h153.6v153.6c0 28.2783 22.9248 51.2002 51.2002 51.2002s51.2002 -22.9219 51.2002 -51.2002v-153.6h153.6z" />
|
251
|
-
<glyph glyph-name="
|
255
|
+
<glyph glyph-name="upload-outline" unicode=""
|
252
256
|
d="M344 352v0v0c-54.8857 0 -99.8076 -42.5195 -103.7 -96.4141c-14.5723 19.6641 -37.9463 32.4141 -64.2998 32.4141c-44.1855 0 -80 -35.8164 -80 -80c0 -19.1963 6.76562 -36.8076 18.0361 -50.5938c-5.72461 1.67969 -11.7744 2.59375 -18.0361 2.59375
|
253
257
|
c-35.3516 0 -64 -28.6484 -64 -64c0 -35.3477 28.6484 -64 64 -64h304c44.1816 0 80 35.8164 80 80c0 34.2803 -21.5684 63.5117 -51.8682 74.8984c12.4844 17.1553 19.8682 38.2617 19.8682 61.1016c0 57.4424 -46.5664 104 -104 104zM344 384v0v0
|
254
258
|
c74.9883 0 136 -61.0078 136 -136.004c0 -17.0537 -3.12793 -33.6621 -9.17773 -49.2139c7.83594 -6.40234 14.8174 -13.8857 20.7598 -22.3086c13.3564 -18.9414 20.418 -41.2373 20.418 -64.4756c0 -61.7559 -50.2441 -112 -112 -112h-304c-52.9355 0 -96 43.0664 -96 96
|
255
259
|
c0 42.4502 27.6924 78.5518 65.96 91.1875c-1.2959 6.83203 -1.95996 13.8008 -1.95996 20.8125c0 61.7578 50.2402 112 112 112c16.3076 0 32.2598 -3.61426 46.7822 -10.3057c7.11426 13.9736 16.6738 26.7314 28.3916 37.6855
|
256
260
|
c25.2598 23.6182 58.2246 36.6221 92.8262 36.6221zM331.31 155.314v0v0c6.25 -6.24805 6.25 -16.3789 0 -22.626c-3.12109 -3.12695 -7.21973 -4.68848 -11.3096 -4.68848c-4.09766 0 -8.19434 1.56445 -11.3184 4.68848l-36.6855 36.6875v-89.376
|
257
261
|
c0 -8.83594 -7.16797 -16 -16 -16c-8.83594 0 -16 7.16406 -16 16v89.376l-36.6885 -36.6875c-6.24609 -6.24805 -16.376 -6.24805 -22.624 0c-6.25 6.24707 -6.25 16.3779 0 22.626l64 64c6.24805 6.24707 16.3809 6.24707 22.626 0z" />
|
258
|
-
<glyph glyph-name="
|
262
|
+
<glyph glyph-name="picture-o" unicode=""
|
259
263
|
d="M164.571 283.429c0 -15.2383 -5.33333 -28.1908 -16 -38.8574s-23.6191 -16 -38.8574 -16c-15.2376 0 -28.1898 5.33333 -38.8564 16c-10.6667 10.6667 -16 23.6191 -16 38.8574s5.33333 28.1908 16 38.8574c10.6667 10.6667 23.6188 16 38.8564 16
|
260
264
|
c15.2383 0 28.1908 -5.33333 38.8574 -16s16 -23.6191 16 -38.8574zM457.143 173.714v-128h-402.285v54.8574l91.4287 91.4287l45.7139 -45.7139l146.286 146.285zM484.571 374.857h-457.143c-2.47656 0 -4.61947 -0.904948 -6.42871 -2.71484
|
261
265
|
c-1.80924 -1.80924 -2.71387 -3.95215 -2.71387 -6.42871v-347.428c0 -2.47656 0.904622 -4.61947 2.71387 -6.42871c1.80924 -1.8099 3.95215 -2.71484 6.42871 -2.71484h457.143c2.47656 0 4.61947 0.904948 6.42871 2.71484
|
262
266
|
c1.80924 1.80924 2.71387 3.95215 2.71387 6.42871v347.428c0 2.47656 -0.904622 4.61947 -2.71387 6.42871c-1.80924 1.8099 -3.95215 2.71484 -6.42871 2.71484zM530.286 365.714v-347.428c0 -12.5716 -4.47624 -23.3337 -13.4287 -32.2861
|
263
267
|
c-8.95247 -8.95247 -19.7145 -13.4287 -32.2861 -13.4287h-457.143c-12.5716 0 -23.3337 4.47624 -32.2861 13.4287c-8.95247 8.95247 -13.4287 19.7145 -13.4287 32.2861v347.428c0 12.5716 4.47624 23.3337 13.4287 32.2861s19.7145 13.4287 32.2861 13.4287h457.143
|
264
268
|
c12.5716 0 23.3337 -4.47624 32.2861 -13.4287c8.95247 -8.95247 13.4287 -19.7145 13.4287 -32.2861z" />
|
265
|
-
<glyph glyph-name="
|
269
|
+
<glyph glyph-name="mail-outline" unicode=""
|
266
270
|
d="M448 416v0h-384c-17.5996 0 -32 -14.4004 -32 -32v-192c0 -17.5996 14.4004 -32 32 -32h384c17.5996 0 32 14.4004 32 32v192c0 17.5996 -14.4004 32 -32 32zM448 448v0v0c35.29 0 64 -28.71 64 -64v-192c0 -35.29 -28.71 -64 -64 -64h-384c-35.29 0 -64 28.71 -64 64
|
267
271
|
v192c0 35.29 28.71 64 64 64h384zM256 256.002v0v0c-2.63574 0 -5.27441 0.652344 -7.66406 1.95215l-175.996 95.998c-7.75781 4.23145 -10.6143 13.9502 -6.38379 21.708c4.23242 7.75586 13.9502 10.6162 21.708 6.38379l168.336 -91.8184l168.334 91.8203
|
268
272
|
c7.75586 4.23242 17.4775 1.37207 21.708 -6.38379c4.23242 -7.75781 1.37402 -17.4785 -6.38379 -21.708l-175.996 -95.998c-2.3877 -1.30176 -5.02637 -1.9541 -7.66211 -1.9541z" />
|
269
|
-
<glyph glyph-name="
|
273
|
+
<glyph glyph-name="pages" unicode=""
|
270
274
|
d="M416 -32c0 -17.6719 -14.3281 -32 -32 -32h-320c-17.6719 0 -32 14.3281 -32 32v384c0 17.6719 14.3281 32 32 32v-416h352v0zM480 320v-288c0 -17.6719 -14.3281 -32 -32 -32h-320c-17.6719 0 -32 14.3281 -32 32v384c0 17.6719 14.3281 32 32 32h224
|
271
275
|
c8.48633 0 16.626 -3.37207 22.626 -9.37402l96 -96c6.00391 -6.00195 9.37402 -14.1396 9.37402 -22.626v0zM352 320h96l-96 96v-96v0zM448 304h-96c-8.83594 0 -16 7.16406 -16 16v96h-208v-384h320v272v0z" />
|
272
|
-
<glyph glyph-name="
|
276
|
+
<glyph glyph-name="info" unicode=""
|
273
277
|
d="M296.422 286.315v0c-44.6543 0 -80.8418 36.1943 -80.8418 80.8428s36.1875 80.8418 80.8418 80.8418c44.6523 0 80.8428 -36.1934 80.8428 -80.8418s-36.1904 -80.8428 -80.8428 -80.8428zM348.64 26.1895v0c4.76953 -12.8906 -0.929688 -27.3047 -13.2246 -33.4521
|
274
278
|
l-107.782 -53.8945c-3.7998 -1.90625 -7.92969 -2.8457 -12.0459 -2.8457h-0.0439453c-4.29785 0 -8.66699 0.525391 -13.0225 1.62012c-28.874 7.21484 -46.4268 36.4766 -39.208 65.3506l39.5049 158.06l-34.5908 -8.65039
|
275
279
|
c-2.18945 -0.544922 -4.38184 -0.808594 -6.54785 -0.808594c-11.0449 0 -21.2754 6.82812 -25.2627 17.6074c-4.77051 12.8906 0.929688 27.3047 13.2236 33.4512l107.783 53.8955c3.80664 1.90234 7.92871 2.8457 12.0488 2.8457
|
276
280
|
c0.539062 0 1.07129 -0.0771484 1.61035 -0.111328c3.7959 -0.100586 7.61914 -0.551758 11.4561 -1.50879c28.874 -7.21875 46.4229 -36.4766 39.208 -65.3506l-39.5078 -158.06l34.5898 8.64648c2.18945 0.545898 4.37891 0.808594 6.54785 0.808594
|
277
281
|
c11.0391 0 21.2754 -6.82812 25.2637 -17.6035z" />
|
278
|
-
<glyph glyph-name="
|
282
|
+
<glyph glyph-name="caret-up" unicode=""
|
279
283
|
d="M402.286 100.571c0 -4.95247 -1.80957 -9.23828 -5.42871 -12.8574c-3.61914 -3.61849 -7.90495 -5.42773 -12.8574 -5.42773h-256c-4.95247 0 -9.23828 1.80924 -12.8574 5.42773c-3.61914 3.61914 -5.42871 7.90495 -5.42871 12.8574s1.80957 9.23828 5.42871 12.8574
|
280
284
|
l128 128c3.61914 3.61914 7.90495 5.42871 12.8574 5.42871c4.95247 0 9.23828 -1.80957 12.8574 -5.42871l128 -128c3.61914 -3.61914 5.42871 -7.90495 5.42871 -12.8574z" />
|
281
|
-
<glyph glyph-name="
|
285
|
+
<glyph glyph-name="search" unicode=""
|
282
286
|
d="M497.94 17.9404v0c18.7432 -18.7461 18.7432 -49.1387 0.00195312 -67.8828c-9.37207 -9.36914 -21.6543 -14.0576 -33.9404 -14.0576s-24.5684 4.68555 -33.9424 14.0576l-140.535 140.536c-28.584 -16.8896 -61.9209 -26.5938 -97.5244 -26.5938
|
283
287
|
c-106.04 0 -192 85.96 -192 192s85.96 192 192 192c106.038 0 192 -85.96 192 -192c0 -35.6064 -9.7041 -68.9404 -26.5938 -97.5244zM64 255.998v0c0 -70.5781 57.4199 -128 128 -128s128 57.4219 128 128s-57.4199 128 -128 128s-128 -57.4219 -128 -128z" />
|
284
|
-
<glyph glyph-name="
|
288
|
+
<glyph glyph-name="megaphone" unicode=""
|
285
289
|
d="M496 280v0c8.83594 0 16 -7.16406 16 -16v-64c0 -8.83594 -7.16406 -16 -16 -16h-16v-96c0 -10.6982 -5.34766 -20.6904 -14.25 -26.624c-5.33594 -3.55957 -11.5244 -5.37598 -17.7539 -5.37598c-4.16406 0 -8.34766 0.811523 -12.3037 2.45996l-186.093 77.54h-56.6152
|
286
290
|
l30.0596 -120.238c2.3877 -9.56152 0.240234 -19.6875 -5.82227 -27.4561c-6.06348 -7.76562 -15.3701 -12.3057 -25.2217 -12.3057h-64c-14.6816 0 -27.4863 9.99414 -31.0439 24.2383l-32 128c-0.641602 2.56543 -0.929688 5.17188 -0.929688 7.76172h-32.0264
|
287
291
|
c-17.6719 0 -32 14.3281 -32 32v128c0 17.6719 14.3281 32 32 32h217.6l186.093 77.54c3.95801 1.64844 8.13965 2.45996 12.3037 2.45996c6.22949 0 12.4219 -1.82031 17.7539 -5.37598c8.90234 -5.93164 14.25 -15.9238 14.25 -26.624v-96h16zM32 296v0v-128h96v128h-96z
|
288
292
|
M192 8v0l-32 128h-64l32 -128h64zM144 168v0h112l144 -60v248l-144 -60h-112v-128zM448 88v0v288l-32 -13.332v-261.336zM496 200v0v64h-16v-64h16z" />
|
289
|
-
<glyph glyph-name="
|
293
|
+
<glyph glyph-name="product-outline" unicode=""
|
290
294
|
d="M507.438 208.464v0c2.9834 -4.97363 4.56152 -10.6641 4.56152 -16.4639v-160c0 -17.6719 -14.3281 -32 -32 -32h-448c-17.6758 0 -32 14.3281 -32 32v160c0 5.7998 1.57422 11.4902 4.55762 16.4639l96 160c5.78223 9.6377 16.2002 15.5361 27.4424 15.5361h256
|
291
295
|
c11.2383 0 21.6543 -5.90039 27.4385 -15.5361zM384 352v0h-80v-16c0 -8.83594 -7.16406 -16 -16 -16h-24v-64h40c6.88379 0 13 -4.40625 15.1758 -10.9424l15.0205 -45.0576h141.004zM304 240v0h-96l-16 -48v-48h128v48zM224 352v0v-16h64v16h-64zM128 352v0l-91.2041 -152
|
292
296
|
h141.004l15.0205 45.0576c2.17578 6.53613 8.29199 10.9424 15.1797 10.9424h40v64h-24c-8.83984 0 -16 7.16406 -16 16v16h-80zM32 32v0h448v152h-144v-40c0 -8.83594 -7.16406 -16 -16 -16h-128c-8.83984 0 -16 7.16406 -16 16v40h-144v0v-152z" />
|
293
|
-
<glyph glyph-name="
|
297
|
+
<glyph glyph-name="trash" unicode=""
|
294
298
|
d="M176 240v0h-32v-224h32v224zM176 256v0v0c8.83594 0 16 -7.16406 16 -16v-224c0 -8.83594 -7.16406 -16 -16 -16h-32c-8.83594 0 -16 7.16406 -16 16v224c0 8.83594 7.16406 16 16 16h32zM368 240v0h-32v-224h32v224zM368 256v0v0c8.83594 0 16 -7.16406 16 -16v-224
|
295
299
|
c0 -8.83594 -7.16406 -16 -16 -16h-32c-8.83594 0 -16 7.16406 -16 16v224c0 8.83594 7.16406 16 16 16h32zM272 240v0h-32v-224h32v224zM272 256v0v0c8.83594 0 16 -7.16406 16 -16v-224c0 -8.83594 -7.16406 -16 -16 -16h-32c-8.83594 0 -16 7.16406 -16 16v224
|
296
300
|
c0 8.83594 7.16406 16 16 16h32zM448 384v0c17.6719 0 32 -14.3281 32 -32v-32c0 -17.6719 -14.3281 -32 -32 -32v-288c0 -35.29 -28.71 -64 -64 -64h-256c-35.29 0 -64 28.71 -64 64v288c-17.6719 0 -32 14.3281 -32 32v32c0 17.6719 14.3281 32 32 32h80v16
|
297
301
|
c0 26.4658 21.5342 48 48 48h128c26.4658 0 48 -21.5342 48 -48v-16h80zM176 400v0v-16h160v16c0 8.82227 -7.17773 16 -16 16h-128c-8.82227 0 -16 -7.17773 -16 -16zM416 0v0v304h-320v-304c0 -17.5996 14.4004 -32 32 -32h256c17.5996 0 32 14.4004 32 32zM448 320v0v32
|
298
302
|
h-384v-32h384z" />
|
299
|
-
<glyph glyph-name="
|
303
|
+
<glyph glyph-name="refresh" unicode=""
|
300
304
|
d="M509.571 203.2v0c4.93457 -11.9072 2.20801 -25.6201 -6.91113 -34.7363l-63.751 -63.751c-6.22363 -6.22559 -14.3818 -9.33789 -22.5381 -9.33789c-8.15527 0 -16.3135 3.11426 -22.5391 9.33789l-63.751 63.751c-9.11328 9.11621 -11.8418 22.8271 -6.90723 34.7363
|
301
305
|
c4.93262 11.9131 16.5547 19.6787 29.4512 19.6787h27.8389c-14.1924 54.9297 -64.1689 95.627 -123.47 95.627c-22.373 0 -44.4043 -5.90723 -63.7188 -17.083c-15.2451 -8.81152 -34.7363 -3.6084 -43.5566 11.6279c-8.81348 15.2393 -3.60547 34.7363 11.6309 43.5518
|
302
306
|
c29.0049 16.7832 62.0771 25.6543 95.6465 25.6543c94.5947 0 173.356 -69.04 188.581 -159.378h34.5479c12.8896 0 24.5137 -7.76758 29.4463 -19.6787zM320.711 80.585v0c15.2432 8.81152 34.7402 3.6123 43.5557 -11.6279
|
303
307
|
c8.81445 -15.2393 3.61035 -34.7363 -11.626 -43.5547c-29.0088 -16.7803 -62.0801 -25.6514 -95.6426 -25.6514c-94.5986 0 -173.362 69.04 -188.585 159.377h-34.5479c-12.8936 0 -24.5137 7.7666 -29.4502 19.6777c-4.93262 11.9111 -2.2041 25.624 6.91113 34.7383
|
304
308
|
l63.751 63.751c12.4473 12.4492 32.6299 12.4492 45.0771 0l63.751 -63.751c9.11719 -9.11621 11.8438 -22.8271 6.91113 -34.7383s-16.5596 -19.6777 -29.4463 -19.6777h-27.8457c14.1924 -54.9287 64.1709 -95.626 123.476 -95.626
|
305
309
|
c22.3672 0 44.3965 5.90723 63.7109 17.083z" />
|
306
|
-
<glyph glyph-name="
|
310
|
+
<glyph glyph-name="filter" unicode=""
|
307
311
|
d="M509.821 433.112c4.11523 -9.92578 2.4209 -18.3984 -5.08398 -25.4189l-179.019 -179.019v-269.436c0 -10.167 -4.71973 -17.3086 -14.1611 -21.4238c-3.14746 -1.20996 -6.17285 -1.81543 -9.07812 -1.81543c-6.53613 0 -11.9834 2.2998 -16.3408 6.89941
|
308
312
|
l-92.959 92.959c-4.59863 4.59961 -6.89844 10.0459 -6.89844 16.3398v176.477l-179.019 179.019c-7.50488 7.02051 -9.19922 15.4932 -5.08398 25.4189c4.11523 9.44043 11.2568 14.1611 21.4238 14.1611h464.795c10.167 0 17.3086 -4.7207 21.4238 -14.1611v0z" />
|
309
|
-
<glyph glyph-name="
|
313
|
+
<glyph glyph-name="barchart" unicode=""
|
310
314
|
d="M81.9199 192v0v-163.84c0 -11.2637 -9.21582 -20.4805 -20.4795 -20.4805h-40.96c-11.2646 0 -20.4805 9.2168 -20.4805 20.4805v163.84c0 11.2637 9.21582 20.4805 20.4805 20.4805h40.96c11.2637 0 20.4795 -9.2168 20.4795 -20.4805zM225.28 273.92v0v-245.76
|
311
315
|
c0 -11.2637 -9.21582 -20.4805 -20.4805 -20.4805h-40.96c-11.2637 0 -20.4795 9.2168 -20.4795 20.4805v245.76c0 11.2637 9.21582 20.4805 20.4795 20.4805h40.96c11.2646 0 20.4805 -9.2168 20.4805 -20.4805zM368.64 355.84v0v-327.68
|
312
316
|
c0 -11.2637 -9.21582 -20.4805 -20.4795 -20.4805h-40.96c-11.2646 0 -20.4805 9.2168 -20.4805 20.4805v327.68c0 11.2637 9.21582 20.4805 20.4805 20.4805h40.96c11.2637 0 20.4795 -9.2168 20.4795 -20.4805zM512 294.4v0v-266.24
|
313
317
|
c0 -11.2637 -9.21582 -20.4805 -20.4805 -20.4805h-40.96c-11.2637 0 -20.4795 9.2168 -20.4795 20.4805v266.24c0 11.2637 9.21582 20.4795 20.4795 20.4795h40.96c11.2646 0 20.4805 -9.21582 20.4805 -20.4795z" />
|
314
|
-
<glyph glyph-name="
|
318
|
+
<glyph glyph-name="chart-outline" unicode=""
|
315
319
|
d="M496 64h-480c-8.83594 0 -16 7.16406 -16 16v352c0 8.83594 7.16406 16 16 16s16 -7.16406 16 -16v-336h464c8.83594 0 16 -7.16406 16 -16s-7.16406 -16 -16 -16v0v0zM96 144v0v0c-2.0498 0 -4.13574 0.396484 -6.14648 1.23438
|
316
320
|
c-8.15723 3.39746 -12.0156 12.7656 -8.61523 20.9238l79.998 191.996c2.30371 5.52148 7.49609 9.30176 13.46 9.79199c5.97754 0.481445 11.7041 -2.39258 14.876 -7.46582l64.8799 -103.807l67.2402 134.482c2.15918 4.31934 6.15918 7.43359 10.8779 8.46973
|
317
321
|
c4.71777 1.03809 9.65332 -0.112305 13.4258 -3.13184l66.8057 -53.4463l70.1787 98.25c5.13379 7.19043 15.123 8.85449 22.3193 3.71777c7.18848 -5.13574 8.85449 -15.1279 3.71777 -22.3154l-80 -112c-2.55176 -3.57422 -6.46387 -5.94434 -10.8193 -6.5459
|
318
322
|
c-4.34473 -0.606445 -8.7627 0.605469 -12.1963 3.35156l-64.542 51.6357l-71.1484 -142.296c-2.58594 -5.17773 -7.76758 -8.5498 -13.5498 -8.82324c-5.78809 -0.276367 -11.2578 2.59375 -14.3281 7.5l-63.5752 101.724l-68.084 -163.396
|
319
323
|
c-2.56055 -6.14355 -8.50879 -9.84961 -14.7744 -9.84961z" />
|
320
|
-
<glyph glyph-name="
|
324
|
+
<glyph glyph-name="list-ul" unicode=""
|
321
325
|
d="M109.714 45.7139c0 -15.2376 -5.33333 -28.1898 -16 -38.8564c-10.6667 -10.6667 -23.6188 -16 -38.8564 -16c-15.2383 0 -28.1908 5.33333 -38.8574 16c-10.6667 10.6667 -16 23.6188 -16 38.8564c0 15.2383 5.33333 28.1908 16 38.8574
|
322
326
|
c10.6667 10.6667 23.6191 16 38.8574 16c15.2376 0 28.1898 -5.33333 38.8564 -16s16 -23.6191 16 -38.8574zM109.714 192c0 -15.2383 -5.33333 -28.1908 -16 -38.8574s-23.6188 -16 -38.8564 -16c-15.2383 0 -28.1908 5.33333 -38.8574 16
|
323
327
|
c-10.6667 10.6667 -16 23.6191 -16 38.8574s5.33333 28.1908 16 38.8574c10.6667 10.6667 23.6191 16 38.8574 16c15.2376 0 28.1898 -5.33333 38.8564 -16s16 -23.6191 16 -38.8574zM512 73.1426v-54.8564c0 -2.47656 -0.904622 -4.61947 -2.71387 -6.42871
|
@@ -328,7 +332,7 @@ c0 -2.47591 -0.904622 -4.61882 -2.71387 -6.42871c-1.8099 -1.80924 -3.9528 -2.713
|
|
328
332
|
c0 2.47591 0.904622 4.61882 2.71387 6.42871c1.80924 1.80924 3.95215 2.71387 6.42871 2.71387h347.429c2.47591 0 4.61882 -0.904622 6.42871 -2.71387c1.80924 -1.8099 2.71387 -3.9528 2.71387 -6.42871zM512 365.714v-54.8564
|
329
333
|
c0 -2.47656 -0.904622 -4.61947 -2.71387 -6.42871c-1.8099 -1.8099 -3.9528 -2.71484 -6.42871 -2.71484h-347.429c-2.47656 0 -4.61947 0.904948 -6.42871 2.71484c-1.80924 1.80924 -2.71387 3.95215 -2.71387 6.42871v54.8564
|
330
334
|
c0 2.47656 0.904622 4.61947 2.71387 6.42871c1.80924 1.8099 3.95215 2.71484 6.42871 2.71484h347.429c2.47591 0 4.61882 -0.904948 6.42871 -2.71484c1.80924 -1.80924 2.71387 -3.95215 2.71387 -6.42871z" />
|
331
|
-
<glyph glyph-name="
|
335
|
+
<glyph glyph-name="cog" unicode=""
|
332
336
|
d="M255.998 272v0c-44.1836 0 -80 -35.8164 -80 -80s35.8164 -80 80 -80s80 35.8164 80 80s-35.8164 80 -80 80zM255.998 448c9.17578 0 18.5176 -0.505859 27.7637 -1.50781c13.3359 -1.44043 24.3584 -11.042 27.6104 -24.0537l12.7295 -50.916
|
333
337
|
c3.59863 -1.36816 7.15625 -2.84473 10.6709 -4.43066l45.0059 27.002c5.08984 3.05469 10.7861 4.56055 16.458 4.56055c7.13574 0 14.2373 -2.38184 20.0576 -7.0625c14.46 -11.6279 27.6797 -24.8496 39.2959 -39.2998c8.39844 -10.4463 9.39453 -25.0195 2.5 -36.5137
|
334
338
|
l-27 -45c1.58398 -3.5166 3.0625 -7.07422 4.42969 -10.6748l50.9189 -12.7295c13.0117 -3.25391 22.6113 -14.2744 24.0537 -27.6084c1 -9.24609 1.50391 -18.5879 1.50391 -27.7656c0 -9.17578 -0.503906 -18.5156 -1.50391 -27.7656
|
@@ -339,18 +343,18 @@ c-5.08789 -3.05469 -10.7842 -4.56055 -16.46 -4.56055c-7.13184 0 -14.2334 2.38184
|
|
339
343
|
c-1.58594 3.5127 -3.0625 7.07227 -4.43066 10.668l-50.918 12.7285c-13.0098 3.25391 -22.6113 14.2764 -24.0537 27.6104c-1 9.25 -1.50391 18.5898 -1.50391 27.7656s0.503906 18.5156 1.50391 27.7656c1.44043 13.334 11.0439 24.3564 24.0537 27.6104l50.918 12.7275
|
340
344
|
c1.36816 3.59863 2.84473 7.15625 4.43066 10.6729l-27 45.002c-6.89844 11.4932 -5.89844 26.0693 2.5 36.5156c11.6201 14.4561 24.8477 27.6777 39.2998 39.2998c5.82031 4.68066 12.9199 7.0625 20.0537 7.0625c5.67383 0 11.3701 -1.50586 16.46 -4.56055
|
341
345
|
l45.0039 -27.002c3.5166 1.58594 7.07227 3.0625 10.6729 4.43262l12.7256 50.916c3.25391 13.0117 14.2764 22.6133 27.6104 24.0537c9.25 1 18.5898 1.50586 27.7656 1.50586z" />
|
342
|
-
<glyph glyph-name="
|
346
|
+
<glyph glyph-name="chevron-up" unicode=""
|
343
347
|
d="M480.857 67.7139l-47.4287 -47.1426c-3.61914 -3.61914 -7.90495 -5.42871 -12.8574 -5.42871s-9.23828 1.80957 -12.8574 5.42871l-151.714 151.715l-151.714 -151.715c-3.61914 -3.61914 -7.90495 -5.42871 -12.8574 -5.42871s-9.23828 1.80957 -12.8574 5.42871
|
344
348
|
l-47.4287 47.1426c-3.61914 3.61914 -5.42871 7.95247 -5.42871 13c0 5.04818 1.80957 9.38151 5.42871 13l212 211.715c3.61914 3.61914 7.90495 5.42871 12.8574 5.42871c4.95247 0 9.23828 -1.80957 12.8574 -5.42871l212 -211.715
|
345
349
|
c3.61914 -3.61849 5.42871 -7.95182 5.42871 -13c0 -5.04753 -1.80957 -9.38086 -5.42871 -13z" />
|
346
|
-
<glyph glyph-name="
|
350
|
+
<glyph glyph-name="preview" unicode=""
|
347
351
|
d="M255.006 248.778c-39.5479 0 -71.7197 32.1719 -71.7197 71.7197s32.1719 71.7197 71.7197 71.7197c4.40039 0 7.96875 -3.56836 7.96875 -7.96875s-3.56836 -7.96875 -7.96875 -7.96875c-30.7598 0 -55.7822 -25.0244 -55.7822 -55.7822
|
348
352
|
s25.0225 -55.7822 55.7822 -55.7822c30.7578 0 55.7822 25.0244 55.7822 55.7822c0 4.40039 3.56738 7.96875 7.96875 7.96875c4.40039 0 7.96875 -3.56836 7.96875 -7.96875c0 -39.5479 -32.1748 -71.7197 -71.7197 -71.7197v0v0zM506.857 314.071v0
|
349
353
|
c5.25391 -7.0625 3.79004 -17.0459 -3.27441 -22.2969c-2.85742 -2.12598 -6.19238 -3.15137 -9.49902 -3.15137c-4.86719 0 -9.6748 2.2207 -12.7998 6.42676c-58.0752 78.0771 -138.436 121.075 -226.278 121.075c-36.1729 0 -71.0723 -7.30957 -103.675 -21.3389
|
350
354
|
c-0.857422 -1.31348 -1.73535 -2.5459 -2.35156 -3.4668c-14.0488 -20.9863 -21.4756 -45.4746 -21.4756 -70.8213c0 -70.3057 57.1963 -127.502 127.502 -127.502c70.3047 0 127.502 57.1963 127.502 127.502c0 8.80176 7.13574 15.9375 15.9375 15.9375
|
351
355
|
s15.9375 -7.13574 15.9375 -15.9375c0 -87.8809 -71.4961 -159.377 -159.377 -159.377c-87.8828 0 -159.378 71.4961 -159.378 159.377c0 16.165 2.43262 32.0508 7.13672 47.2256c-27.2979 -19.0039 -52.2383 -43.3662 -74.0391 -72.6738
|
352
356
|
c-5.25 -7.0625 -15.2383 -8.5293 -22.2969 -3.27734c-7.06641 5.25293 -8.53027 15.2363 -3.27734 22.2988c64.2412 86.3643 153.686 133.929 251.854 133.929c98.168 0 187.611 -47.5645 251.852 -133.929z" />
|
353
|
-
<glyph glyph-name="
|
357
|
+
<glyph glyph-name="chevron-down" unicode=""
|
354
358
|
d="M480.857 217.143l-212 -211.714c-3.61914 -3.61914 -7.90495 -5.42871 -12.8574 -5.42871c-4.95247 0 -9.23828 1.80957 -12.8574 5.42871l-212 211.714c-3.61914 3.61914 -5.42871 7.95247 -5.42871 13s1.80957 9.38086 5.42871 13l47.4287 47.1436
|
355
359
|
c3.61914 3.61849 7.90495 5.42773 12.8574 5.42773s9.23828 -1.80924 12.8574 -5.42773l151.714 -151.715l151.714 151.715c3.61914 3.61849 7.90495 5.42773 12.8574 5.42773s9.23828 -1.80924 12.8574 -5.42773l47.4287 -47.1436
|
356
360
|
c3.61914 -3.61914 5.42871 -7.95247 5.42871 -13s-1.80957 -9.38086 -5.42871 -13z" />
|