initial commit in new repo

This commit is contained in:
Ro 2018-10-31 12:00:31 -04:00
parent eec14d30d5
commit 6f7fed59f3
228 changed files with 80301 additions and 0 deletions

1
.babelrc Normal file
View file

@ -0,0 +1 @@
{ "presets": ["env"] }

13
.gitignore vendored Normal file
View file

@ -0,0 +1,13 @@
content/
node_modules/
.sass-cache/
.cache/
content/folio-images
.ftpconfig
.vscode/
config.development.json
*.swp
/_migrations/
/config.json
/_maintenance/
*.DS_Store

109
brain/app.js Normal file
View file

@ -0,0 +1,109 @@
var express = require('express');
var path = require('path');
var favicon = require('serve-favicon');
var logger = require('morgan');
var cookieParser = require('cookie-parser');
var bodyParser = require('body-parser');
var session = require('express-session');
var MemoryStore = require('memorystore')(session)
var flash = require('connect-flash');
var theme = "default";
var app = express();
// view engine setup
app.set('views', path.join(__dirname, '../themes'));
app.set('view engine', 'pug');
//app.use(express.static(__dirname+'/content/data'));
app.use(express.static(__dirname + '../content/folio-images'));
// uncomment after placing your favicon in /public
//app.use(favicon(__dirname + '/public/favicon.ico'));
app.use(logger('dev'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({
extended: false
}));
app.use(cookieParser());
//app.use(require('node-compass')({mode: 'expanded', css:'styles', sass: 'styles', project: path.join(__dirname, 'src')}));
app.use(express.static(path.join(__dirname, '../content')));
app.use(express.static(path.join(__dirname, '../themes')));
// Why Do we need this key ?
/**
app.use(session({
secret: '1KqZ18W8KskE1iSw',
saveUninitialized: false,
resave: false,
cookie:{maxAge:608800000}
}));
**/
app.use(session({
store: new MemoryStore({
checkPeriod: 86400000 // prune expired entries every 24h
}),
secret: '1KqZ18W8KskE1iSw',
saveUninitialized: false,
resave: false,
cookie: { maxAge: 608800000 }
}))
app.use(flash());
//sections
var front = require('./routes/front/index')(session);
var back = require('./routes/back/index');
//api
var folioLibrary = require('./api/content/folio');
var blogLibrary = require('./api/content/posts');
var projectLibrary = require('./api/content/project');
var bookmarkLibrary = require('./api/content/bookmarks');
var postLibrary = require('./api/content/posts');
var mailer = require('./api/content/mailer');
// API PATHS
app.use('/api/folio', folioLibrary);
app.use('/api/projects', projectLibrary);
app.use('/api/bookmarks', bookmarkLibrary);
app.use('/api/posts', postLibrary);
app.use('/api/blog', blogLibrary);
// PAGES
app.use('/', front);
app.use('/@/dashboard', back);
//app.use('/mailer', mailer);
// catch 404 and forward to error handler
app.use(function(req, res, next) {
var err = new Error('Not Found');
err.status = 404;
next(err);
});
// error handlers
// development error handler
// will print stacktrace
if (app.get('env') === 'development') {
app.use(function(err, req, res, next) {
res.status(err.status || 500);
res.render(theme+'/error', {
message: err.message,
error: err
});
});
}
// production error handler
// no stacktraces leaked to user
app.use(function(err, req, res, next) {
res.status(err.status || 500);
res.render(theme+'/error', {
message: err.message,
error: {}
});
});
module.exports = app;

101
brain/models/Bookmark.js Normal file
View file

@ -0,0 +1,101 @@
module.exports = function (sequelize, DataTypes) {
var Bookmark = sequelize.define('Bookmark', {
id: {
type: DataTypes.INTEGER,
unique: true,
allowNull: false,
autoIncrement: true,
primaryKey: true
},
url: {
type: DataTypes.STRING(500),
unique: false,
allowNull: true
},
source: {
type: DataTypes.STRING(500),
allowNull: true
},
title: {
type: DataTypes.STRING(500),
unique: false,
allowNull: true
},
image: {
type: DataTypes.STRING(500),
unique: false,
allowNull: true
},
comments: {
type: DataTypes.STRING,
unique: false,
allowNull: true
},
author: {
type: DataTypes.STRING,
unique: false,
allowNull: true
},
tags: {
type: DataTypes.ARRAY(DataTypes.TEXT),
unique: false,
allowNull: true
},
listed: {
type: DataTypes.BOOLEAN,
unique: false,
allowNull: true
}
}, {
timestamps: true,
// don't delete database entries but set the newly added attribute deletedAt
// to the current date (when deletion was done). paranoid will only work if
// timestamps are enabled
paranoid: true,
// don't use camelcase for automatically added attributes but underscore style
// so updatedAt will be updated_at
underscored: true,
// disable the modification of table names; By default, sequelize will automatically
// transform all passed model names (first parameter of define) into plural.
// if you don't want that, set the following
freezeTableName: false,
// define the table's name
tableName: 'Bookmarks',
// Enable optimistic locking. When enabled, sequelize will add a version count attriubte
// to the model and throw an OptimisticLockingError error when stale instances are saved.
// Set to true or a string with the attribute name you want to use to enable.
version: true
});
return Bookmark;
};
/**
var mongoose = require('mongoose');
mongoose.Promise = require('bluebird');
var Bookmark = new mongoose.Schema({
url: String,
source:String,
title:String,
image: String,
comments:Array,
created: String,
edited: String,
author:Object,
tags:Array,
listed:Boolean
}, {
collection: 'bookmarks'
});
module.exports = mongoose.model('Bookmark', Bookmark);
**/

View file

@ -0,0 +1,94 @@
module.exports = function (sequelize, DataTypes) {
var FolioProject = sequelize.define('FolioProject', {
type: {
type: DataTypes.STRING(500),
unique: false,
allowNull: true
},
description: {
type: DataTypes.STRING(500),
allowNull: true
},
url: {
type: DataTypes.STRING(500),
unique: false,
allowNull: true
},
tools: {
type: DataTypes.STRING(500),
unique: false,
allowNull: true
},
title: {
type: DataTypes.STRING,
unique: false,
allowNull: true
},
slug: {
type: DataTypes.STRING,
unique: false,
allowNull: true
},
images: {
type: DataTypes.STRING(2000),
unique: false,
allowNull: true
},
sortIndex: {
type: DataTypes.INTEGER,
unique: false,
allowNull: true
}
}, {
timestamps: true,
// don't delete database entries but set the newly added attribute deletedAt
// to the current date (when deletion was done). paranoid will only work if
// timestamps are enabled
paranoid: true,
// don't use camelcase for automatically added attributes but underscore style
// so updatedAt will be updated_at
underscored: true,
// disable the modification of table names; By default, sequelize will automatically
// transform all passed model names (first parameter of define) into plural.
// if you don't want that, set the following
freezeTableName: false,
// define the table's name
tableName: 'Folio',
// Enable optimistic locking. When enabled, sequelize will add a version count attriubte
// to the model and throw an OptimisticLockingError error when stale instances are saved.
// Set to true or a string with the attribute name you want to use to enable.
version: true
});
return FolioProject;
};
/**
var mongoose = require('mongoose');
mongoose.Promise = require('bluebird');
var Bookmark = new mongoose.Schema({
url: String,
source:String,
title:String,
image: String,
comments:Array,
created: String,
edited: String,
author:Object,
tags:Array,
listed:Boolean
}, {
collection: 'bookmarks'
});
module.exports = mongoose.model('Bookmark', Bookmark);
**/

116
brain/models/Post.js Normal file
View file

@ -0,0 +1,116 @@
module.exports = function (sequelize, DataTypes) {
var Post = sequelize.define('Post', {
uuid: {
type: DataTypes.STRING(50),
unique: true,
allowNull: false
},
title: {
type: DataTypes.STRING(500),
allowNull: true
},
slug: {
type: DataTypes.STRING(500),
unique: false,
allowNull: true
},
tags: {
type: DataTypes.STRING(2000),
unique: false,
allowNull: true
},
entry_html: {
type: DataTypes.TEXT,
unique: false,
allowNull: true
},
entry_plaintext: {
type: DataTypes.TEXT,
unique: false,
allowNull: true
},
feature_image: {
type: DataTypes.STRING,
unique: false,
allowNull: true
},
page: {
type: DataTypes.BOOLEAN,
unique: false,
allowNull: true
},
author_id: {
type: DataTypes.INTEGER,
unique: false,
allowNull: true
}
}, {
timestamps: true,
// don't delete database entries but set the newly added attribute deletedAt
// to the current date (when deletion was done). paranoid will only work if
// timestamps are enabled
paranoid: true,
// don't use camelcase for automatically added attributes but underscore style
// so updatedAt will be updated_at
underscored: true,
// disable the modification of table names; By default, sequelize will automatically
// transform all passed model names (first parameter of define) into plural.
// if you don't want that, set the following
freezeTableName: false,
// define the table's name
tableName: 'Posts',
// Enable optimistic locking. When enabled, sequelize will add a version count attriubte
// to the model and throw an OptimisticLockingError error when stale instances are saved.
// Set to true or a string with the attribute name you want to use to enable.
version: true
});
return Post;
};
/**
post: {
"id": "59711abc12d3ab0bd61c3abc",
"uuid": "ec630e45-3342-4d7f-a24c-e448263c975b",
"title": "Welcome to Ghost",
"slug": "welcome-to-ghost",
"mobiledoc": "{\"version\":\"0.3.1\",\"markups\":[],\"atoms\":[],\"cards\":[[\"card-markdown\",{\"cardName\":\"card-markdown\",\"markdown\":\"You're live nice!\"}]],\"sections\":[[10,0]]}",
"html": "<p>You're live! Nice.</p>",
"plaintext": "You're live! Nice.",
"amp": "Not what you think!",
"feature_image": "/content/images/2014/12/my-image.png",
"featured": false,
"page": false,
"status": "published",
"locale": null,
"visibility": "public",
"meta_title": null,
"meta_description": null,
"author_id": "59711abc78f1ab0bd61c3efg",
"created_at": "2014-04-15T12:36:28.353Z",
"created_by": "59711abc78f1ab0bd61c3efg",
"updated_at": "2014-04-15T12:36:28.353Z",
"updated_by": "59711abc78f1ab0bd61c3efg",
"published_at": "2014-04-15T12:36:28.363Z",
"published_by": "59711abc78f1ab0bd61c3efg",
"custom_excerpt": null,
"codeinjection_head": null,
"codeinjection_foot": null,
"og_image": null,
"og_title": null,
"og_description": null,
"twitter_image": null,
"twitter_title": null,
"twitter_description": null
}
**/

80
brain/models/User.js Normal file
View file

@ -0,0 +1,80 @@
module.exports = function (sequelize, DataTypes) {
var User = sequelize.define('User', {
avatar: {
type: DataTypes.STRING,
unique: false,
allowNull: true
},
handle: {
type: DataTypes.STRING,
unique: true,
allowNull: true
},
email: {
type: DataTypes.STRING,
unique: false,
allowNull: true
},
role: {
type: DataTypes.STRING,
unique: false,
allowNull: true
},
password: {
type: DataTypes.STRING,
unique: true,
allowNull: false
}
}, {
timestamps: true,
// don't delete database entries but set the newly added attribute deletedAt
// to the current date (when deletion was done). paranoid will only work if
// timestamps are enabled
paranoid: true,
// don't use camelcase for automatically added attributes but underscore style
// so updatedAt will be updated_at
underscored: true,
// disable the modification of table names; By default, sequelize will automatically
// transform all passed model names (first parameter of define) into plural.
// if you don't want that, set the following
freezeTableName: false,
// define the table's name
tableName: 'Users',
// Enable optimistic locking. When enabled, sequelize will add a version count attriubte
// to the model and throw an OptimisticLockingError error when stale instances are saved.
// Set to true or a string with the attribute name you want to use to enable.
version: true
});
return User;
};
/**
var User = new mongoose.Schema({
avatar: String,
handle: String,
firstname: String,
lastname: String,
email: String,
password: String,
bio: {
type: String,
default: 'I\'m actually really interesting, but, alas, I am kind of lazy.'
},
role: {
type: String,
default: 'client'
},
created_at: Date,
last_login: Date
}, {
collection: 'users'
});
module.exports = mongoose.model('User', User);
**/

51
brain/models/index.js Normal file
View file

@ -0,0 +1,51 @@
'use strict';
var fs = require('fs');
var path = require('path');
var Sequelize = require('sequelize');
var basename = path.basename(__filename);
var env = process.env.NODE_ENV || 'development';
var config = require('../../config.json')[env];
var db = {};
//console.log(config.database);
/**
if (config.use_env_variable) {
var sequelize = new Sequelize(process.env[config.use_env_variable], config);
} else {
var sequelize = new Sequelize(config.local.database, config.local.user, config.local.password, config.local.options);
}
**/
var sequelize = new Sequelize(config.database, config.user, config.password, config.options);
/**
sequelize.authenticate().then(() => {
console.log("Success!");
}).catch((err) => {
console.log(""+err);
});
**/
fs
.readdirSync(__dirname)
.filter(file => {
return (file.indexOf('.') !== 0) && (file !== basename) && (file.slice(-3) === '.js');
})
.forEach(file => {
var model = sequelize['import'](path.join(__dirname, file));
db[model.name] = model;
});
Object.keys(db).forEach(modelName => {
if (db[modelName].associate) {
db[modelName].associate(db);
}
});
db.sequelize = sequelize;
//db.Sequelize = Sequelize;
module.exports = db;

339
brain/routes/back/index.js Normal file
View file

@ -0,0 +1,339 @@
var express = require('express');
var router = express.Router();
var Models = require('../../models');
var DateUtils = require('../../utils/DateUtils');
var hljs = require('highlight.js/lib/highlight');
var hljs_md = require('highlight.js/lib/languages/markdown');
hljs.registerLanguage('markdown', hljs_md);
//--------------------------
// Index
//--------------------------
router.get('/', function (req, res) {
var loggedIn = false
if (req.session.user)
loggedIn = true;
Models.Post.findAll({
order: [
['id', 'DESC']
],
limit: 10
}).then(function (posts) {
res.render('dash/index', {
title: 'Dashboard',
user_status: loggedIn,
items: posts
});
}).then(function (value) {
//console.log(value);
}).catch(function (err) {
//next(err);
})
});
//--------------------------
// SETTINGS
//--------------------------
router.get('/settings/', function (req, res) {
if (req.session.user) {
res.render('dash/settings', {
title: 'Dashboard | Settings',
mode: 'admin'
});
} else {
res.redirect('/@/dashboard');
}
});
//--------------------------
// ENTRIES
//--------------------------
router.get('/entries/:page?', function (req, res) {
var pageNum = req.params.page;
if(pageNum == "" || pageNum == null) pageNum = 1;
var offset = ((pageNum*5) -5);
if (req.session.user) {
Models.Post.findAll({
order: [
['id', 'DESC']
]
}).then(function (posts) {
var count = Math.round(posts.length / 6);
//console.log("COUNT: "+count);
var pageItems = [];
var itemLimit = 6;
var rangeStart = (pageNum * itemLimit) - itemLimit;
for (var i = 0; i < itemLimit; i++) {
try {
if (posts[i + rangeStart].id != null) {
pageItems.push(posts[i + rangeStart]);
}
} catch (e) {
//console.log(e)
}
}
res.render('dash/entries-index', {
title: 'Dashbord Entries',
mode: 'admin',
items: pageItems,
page_index: pageNum,
page_count: count
});
}).then(function (value) {
//console.log(value);
}).catch(function (err) {
//next(err);
})
} else {
res.redirect('/@/dashboard');
}
});
//--------------------------
// BLOG POST ADD DISPLAY
//--------------------------
router.get('/entries/add/', function (req, res) {
if (req.session.user) {
res.render('dash/entry-edit', {
title: 'Add Entry',
mode: 'admin',
edit: false
});
} else {
res.redirect('/@/dashboard');
}
});
//--------------------------
// BLOG POST EDIT DISPLAY
//--------------------------
router.get('/entries/edit/:id', function (req, res) {
if (req.session.user) {
Models.Post.findOne({
where: {
slug: req.params.id
}
}).then(entry => {
let featured_img = JSON.parse(entry.feature_image);
let featured = 'null';
if (featured_img.length != 0)
featured = featured_img[0].substr(7, featured_img[0].length);
let pretty = hljs.highlight('markdown', entry.entry_plaintext).value;
let newdate = new Date(entry.created_at);
let formattedDate = newdate.getFullYear()+"-"+newdate.getMonth()+"-"+newdate.getDate();
console.log(DateUtils.getDate('null', 'full'));
res.render('dash/entry-edit', {
title: 'Edit Entry',
mode: 'admin',
post: entry,
date:formattedDate,
colored: pretty,
html: entry.entry_plaintext,
feature: featured,
edit: true
});
}).then(function (value) {
console.log("VALUE: " + value);
}).catch(function (err) {
console.log(err);
})
} else {
res.redirect('/@/dashboard');
}
});
/**
//--------------------------
// MAIN FIPAMO DISPLAY
//--------------------------
router.get('/fipamo/', function (req, res) {
if (req.session.user) {
Models.Bookmark.findAll({
order: [['id', 'DESC']]
}).then(function (saved) {
res.render('admin/admin-fipamo-index', {
title: 'Manage Saved',
mode: 'admin',
saved: saved
});
}).then(function (value) {
//console.log(value);
}).catch(function (err) {
//next(err);
})
} else {
res.redirect('/admin');
}
});
router.get('/fipamo/edit/:id', function (req, res) {
if (req.session.user) {
Models.Bookmark.findOne({
where: {
id: req.params.id
}
}).then(saved => {
res.render('admin/admin-fipamo-edit', {
title: 'FIPAMO | EDIT ' + saved.title,
mode: 'admin',
bookmark: saved,
edit: true
});
}).then(function (value) {
console.log("VALUE: " + value);
}).catch(function (err) {
console.log(err);
})
} else {
res.redirect('/admin');
}
});
//--------------------------
// MAIN FOLIO DISPLAY
//--------------------------
router.get('/folio/', function (req, res) {
if (req.session.user) {
Models.FolioProject.findAll().then(function (projects) {
res.render('folio-hub', {
title: 'manage folio',
mode: 'admin',
projects: projects
});
}).then(function (value) {
//console.log(value);
}).catch(function (err) {
//next(err);
})
} else {
res.redirect('/admin');
}
});
//--------------------------
// PROJECT DISPLAY
//--------------------------
router.get('/folio/:id', function (req, res) {
if (req.session.user) {
console.log(req.params.id)
Models.FolioProject.findOne({
where: {
slug: req.params.id
}
}).then(function (project) {
//var item = project[0]
res.render('folio-project-display', {
title: project.title,
project: project,
edit: true,
mode: 'admin'
});
}).then(function (value) {
//console.log(value);
}).catch(function (err) {
//next(err);
});
} else {
res.redirect('/admin');
}
});
router.get('/folio/task/add', function (req, res) {
if (req.user) {
res.render('folio-project-display', {
title: 'Add New Project',
edit: false,
mode: 'admin'
});
} else {
res.redirect('/admin');
}
});
//--------------------------
// ADMIN PAGE
//--------------------------
router.get('/admin/:include/:id?', function (req, res) {
if (req.user) {
if (req.user.role == 2) {
switch (req.params.include) {
case "edit-project":
FolioProject.findById(req.params.id).exec().then(function (project) {
res.render('includes/folio-project', {
formTitle: "EDIT " + project.title,
project: project,
mode: req.params.include
});
}).catch(function (err) {
//console.log(err)
});
break
case "add-project":
res.render('includes/folio-project', {
formTitle: 'Fo r mle ss ADMIN | Add New Project',
mode: req.params.include
});
break
case "folio-hub":
FolioProject.find().exec().then(function (entries) {
//res.json(entries);
res.render('content/folio-hub', {
title: 'Fo r mle ss ADMIN | Folio Manager',
entries: entries
});
}).then(function (value) {
//console.log(value);
}).catch(function (err) {
next(err);
});
break
}
}
} else {
res.json({
message: 'NOT AUTHORIZED'
});
}
});
router.get('/includes/admin-menu/', function (req, res) {
if (req.user) {
if (req.user == 1) {
res.render('client-panel')
} else {
res.render('includes/admin-menu', {
title: 'Fo r mle ss | Admin',
user_status: "What up, random entity",
name: "What up, " + req.user.firstname
})
}
} else {
res.render('index', {
title: 'Fo r mle ss',
user_status: "What up, random entity"
});
}
});
router.get('/content/admin/', function (req, res) {
if (req.user) {
if (req.user == 1) {
res.render('client-panel')
} else {
res.render('content/admin', {
title: 'Fo r mle ss | Admin'
})
}
} else {
res.render('content/index', {
title: 'Fo r mle ss'
});
}
});
*/
module.exports = router;

View file

@ -0,0 +1,46 @@
var express = require('express');
var router = express.Router();
var Models = require('../../models');
var config = require('../../../config.json');
router.get('/:page_num?', function (req, res) {
var page_num = req.params.page_num;
var pageNum = page_num;
if (page_num == null)
pageNum = 1
Models.Bookmark.findAll({
order: [['id', 'DESC']]
}).then(function (bookmarks) {
//console.log("num: "+pageNum);
//real page count
var count = Math.floor(bookmarks.length / 10);
var pageItems = [];
var itemLimit = 10;
var rangeStart = (pageNum * itemLimit) - itemLimit;
//console.log("RANGE START "+rangeStart);
for (var i = 0; i < itemLimit; i++) {
try {
if (bookmarks[i + rangeStart].id != null) {
//console.log(bookmarks[i+rangeStart]._id )
pageItems.push(bookmarks[i + rangeStart]);
}
} catch (e) {
//console.log(e)
}
}
//console.log("items count: "+pageItems.length)
res.render(config.theme+'/fipamo', {
theme: config.theme,
title: 'The Twelfth House | Fipamo',
page_index: pageNum,
page_count: Math.round(bookmarks.length / 10),
items: pageItems,
mode: 'bookmarks'
});
}).then(function (value) {
//console.log(value);
}).catch(function (err) {
console.log(err);
})
});
router.get('/:id', function (req, res) {});
module.exports = router;

112
brain/routes/front/index.js Normal file
View file

@ -0,0 +1,112 @@
var express = require('express');
var router = express.Router();
var Models = require('../../models');
var bCrypt = require('bcrypt-nodejs');
var config = require('../../../config.json');
module.exports = function (session) {
//--------------------------
// Index
//--------------------------
router.get('/:page?', function (req, res) {
if (req.params.page == null || req.params.page == "") {
Models.FolioProject.findAll({
limit: 5,
order: [
['id', 'DESC']
]
}).then(entries => {
Models.Post.findAll({
limit: 5,
order: [
['id', 'DESC']
]
}).then(posts => {
Models.Bookmark.findAll({
limit: 5,
order: [
['id', 'DESC']
]
}).then(saved => {
res.render(config.theme + '/index', {
theme: config.theme,
title: 'The Twelfth House | Home of creative technologist, beat maker and over-thinker, Ro',
user_status: "What up, random person",
mode: 'index',
folio: entries,
posts: posts,
bookmarks: saved
});
}).catch(err => {
console.log(err);
})
})
}).then(function (value) {
//console.log(value);
}).catch(function (err) {
console.log(err);
})
} else {
switch (req.params.page) {
case "dashboard":
console.log('here')
break;
default:
console.log(req.params.page)
break;
}
}
});
//--------------------------
// Login
//--------------------------
/* Handle Login POST */
router.post('/login', function (req, res, next) {
Models.User.findOne({
where: {
handle: req.body.handle
}
}).then(user => {
if (!isValidPassword(user, req.body.password)) {
console.log('Invalid Password');
//return done(null, false, req.flash('message', 'Invalid Password')); // redirect back to login page
return res.json({
message: 'CHECK YOUR PASSWORD'
});
}
let session = req.session;
session.user = user;
res.redirect('/@/dashboard');
//return done(null, user);
}).catch(err => {
console.log(err);
return res.json({
message: 'NOT FOUND BOSS'
});
})
});
//--------------------------
// Logout
//--------------------------
router.post('/logout', function (req, res, next) {
req.logout();
return res.json({
message: 'LOGGED OUT'
});
});
return router;
}
var isValidPassword = function (user, password) {
return bCrypt.compareSync(password, user.password);
}

View file

@ -0,0 +1,68 @@
var express = require('express');
var router = express.Router();
var Models = require('../../models');
var config = require('../../../config.json');
router.get('/', function(req, res) {
res.redirect('/blog/page/1');
});
router.get('/page/:page_num?', function (req, res) {
var page_num = req.params.page_num;
var pageNum = page_num;
if (page_num == null)
pageNum = 1
Models.Post.findAll({
order: [['id', 'DESC']]
}).then(function (post) {
//console.log("num: "+pageNum);
//real page count
var count = Math.floor(post.length / 6);
var pageItems = [];
var itemLimit = 6;
var rangeStart = (pageNum * itemLimit) - itemLimit;
//console.log("RANGE START "+rangeStart);
for (var i = 0; i < itemLimit; i++) {
try {
if (post[i + rangeStart].id != null) {
pageItems.push(post[i + rangeStart]);
}
} catch (e) {
//console.log(e)
}
}
//console.log("items count: "+pageItems.length)
res.render(config.theme+'/blog', {
theme: config.theme,
title: 'The Twelfth House | Thoughts and Such',
page_index: pageNum,
page_count: Math.round(post.length / 6),
items: pageItems,
mode: 'blog'
});
}).then(function (value) {
//console.log(value);
}).catch(function (err) {
console.log(err);
})
});
router.get('/:id', function(req, res) {
Models.Post.findOne({where:{slug: req.params.id}}).then((post) => {
console.log(post.feature_image)
res.render(config.theme+'/blog-post', {
theme: config.theme,
title: post.title,
entry: post.entry_html,
feature_image: JSON.parse(post.feature_image),
mode:'blog'
});
}).catch((err) => {
console.log(err);
});
});
module.exports = router;

View file

@ -0,0 +1,37 @@
var express = require('express');
var router = express.Router();
var Models = require('../../models');
var config = require('../../../config.json');
router.get('/', function(req, res) {
Models.FolioProject.findAll({order:[['sortIndex', 'DESC']]}).then(projects=> {
res.render(config.theme+'/work', {
theme: config.theme,
title: 'The Twelfth House | Creative Works and Projects',
projects: projects,
mode: 'projects'
});
}).then(function(value) {
//console.log(value);
}).catch(function(err) {
//next(err);
})
});
router.get('/:id', function(req, res) {
Models.FolioProject.findOne({where:{slug: req.params.id}}).then((project) => {
res.render(config.theme+'/work-project', {
title: project.title,
type: project.type,
desc: project.description,
images: JSON.parse(project.images),
mode:'folio',
url:project.url
});
}).catch((err) => {
console.log(err);
});
});
module.exports = router;

95
brain/utils/DateUtils.js Normal file
View file

@ -0,0 +1,95 @@
module.exports = {
decodeHTML: function(string, quote_style) {
var optTemp = 0,
i = 0,
noquotes = false;
if (typeof quote_style === 'undefined') {
quote_style = 2;
}
string = string.toString().replace(/&lt;/g, '<').replace(/&gt;/g, '>');
var OPTS = {
'ENT_NOQUOTES': 0,
'ENT_HTML_QUOTE_SINGLE': 1,
'ENT_HTML_QUOTE_DOUBLE': 2,
'ENT_COMPAT': 2,
'ENT_QUOTES': 3,
'ENT_IGNORE': 4
};
if (quote_style === 0) {
noquotes = true;
}
if (typeof quote_style !== 'number') { // Allow for a single string or an array of string flags
quote_style = [].concat(quote_style);
for (i = 0; i < quote_style.length; i++) {
// Resolve string input to bitwise e.g. 'PATHINFO_EXTENSION' becomes 4
if (OPTS[quote_style[i]] === 0) {
noquotes = true;
} else if (OPTS[quote_style[i]]) {
optTemp = optTemp | OPTS[quote_style[i]];
}
}
quote_style = optTemp;
}
if (quote_style & OPTS.ENT_HTML_QUOTE_SINGLE) {
string = string.replace(/&#0*39;/g, "'"); // PHP doesn't currently escape if more than one 0, but it should
// string = string.replace(/&apos;|&#x0*27;/g, "'"); // This would also be useful here, but not a part of PHP
}
if (!noquotes) {
string = string.replace(/&quot;/g, '"');
}
// Put this in last place to avoid escape being double-decoded
string = string.replace(/&amp;/g, '&');
return string;
},
cleanString: function(str) {
return (str + '').replace(/\\(.?)/g, function(s, n1) {
switch (n1) {
case '\\':
return '\\';
case '0':
return '\u0000';
case '':
return '';
default:
return n1;
}
});
},
cleanString: function(string) {
var clean = string.replace(/(^\-+|[^a-zA-Z0-9\/_| -]+|\-+$)/g, '').toLowerCase().replace(/[\/_| -]+/g, '-');
return clean;
},
getDate: function(type, rawdate) {
var day = ((rawdate != null || rawdate != '') ? String(new Date(rawdate).getUTCDate()) : String(new Date().getUTCDate()));
var month = ((rawdate != null || rawdate != '') ? String(new Date(rawdate).getUTCMonth()+1) : String(new Date().getUTCMonth()+1));
var year = ((rawdate != null || rawdate != '') ? String(new Date(rawdate).getUTCFullYear()) : String(new Date().getUTCFullYear()));
var hour = ((rawdate != null || rawdate != '') ? String(new Date(rawdate).getUTCHours()) : String(new Date().getUTCHours()));
var minute = ((rawdate != null || rawdate != '') ? String(new Date(rawdate).getUTCMinutes()) : String(new Date().getUTCMinutes()));
var seconds = ((rawdate != null || rawdate != '') ? String(new Date(rawdate).getUTCSeconds()) : String(new Date().getUTCSeconds()));
var millisecond = ((rawdate != null || rawdate != '') ? String(new Date(rawdate).getUTCMilliseconds()) : String(new Date().getUTCMilliseconds()));
if (day.length == 1)
day = String("0" + day);
if (month.length == 1)
month = String("0" + month);
switch (type) {
case "day":
return day;
break;
case "month":
return month;
break;
case "year":
return year;
break;
case "stamp":
return String(year + "-" + month + "-" + day + " " + hour + ":" + minute + ":" + seconds+"."+millisecond);
break
default:
return String(year + "-" + month + "-" + day + " : " + hour + "-" + minute + "-" + seconds);
break;
}
}
};

View file

@ -0,0 +1,112 @@
var roles = {
hnic: {
"client_admin": {
"create": true,
"read": true,
"update": true,
"delete": true
},
"client_user": {
"create": true,
"read": true,
"update": true,
"delete": true
},
"client_project": {
"create": true,
"read": true,
"update": true,
"delete": true
},
"folio_project": {
"create": true,
"read": true,
"update": true,
"delete": true
},
"bookmark": {
"create": true,
"read": true,
"update": true,
"delete": true
}
},
client: {
"client_admin": {
"create": false,
"read": true,
"update": false,
"delete": false
},
"client_user": {
"create": true,
"read": true,
"update": true,
"delete": true
},
"client_project": {
"create": true,
"read": true,
"update": true,
"delete": false
},
"folio_project": {
"create": false,
"read": false,
"update": false,
"delete": false
}
},
user: {
"client_admin": {
"create": false,
"read": false,
"update": false,
"delete": false
},
"client_user": {
"create": false,
"read": true,
"update": false,
"delete": false
},
"client_project": {
"create": false,
"read": true,
"update": true,
"delete": false
},
"folio_project": {
"create": false,
"read": false,
"update": false,
"delete": false
},
"bookmark": {
"create": true,
"read": true,
"update": true,
"delete": true
}
}
};
module.exports = {
TASK_CREATE: 'create',
TASK_UPDATE: 'update',
TASK_READ: 'read',
TASK_DELETE: 'delete',
OBJECT_CLIENT_ADMIN: 'client_admin',
OBJECT_CLIENT_USER: 'client_user',
OBJECT_PROJECT_CLIENT: 'client_project',
OBJECT_PROJECT_FOLIO: 'folio_project',
OBJECT_BOOKMARK: 'bookmark',
check: function(role, object, task) {
for (var i = 0; i < object.length; i++) {
if(!roles[role][object[i]][task])
return false
}
return true;
},
hey: function() {}
};

104
init.js Normal file
View file

@ -0,0 +1,104 @@
#!/usr/bin/env node
/**
* Module dependencies.
*/
var app = require('./brain/app');
var debug = require('debug')('thetwelfthhouse:server');
var http = require('http');
var models = require('./brain/models');
/**
* Get port from environment and store in Express.
*/
var port = normalizePort(process.env.PORT || '2700');
app.set('port', port);
/**
* Create HTTP server.
*/
var server = http.createServer(app);
/**
* Listen on provided port, on all network interfaces.
*/
server.listen(port);
server.on('error', onError);
server.on('listening', onListening);
models.sequelize.sync().then(function() {
/**
* Listen on provided port, on all network interfaces.
*/
server.listen(port, function() {
debug('Express server listening on port ' + server.address().port);
});
server.on('error', onError);
server.on('listening', onListening);
});
/**
* Normalize a port into a number, string, or false.
*/
function normalizePort(val) {
var port = parseInt(val, 10);
if (isNaN(port)) {
// named pipe
return val;
}
if (port >= 0) {
// port number
return port;
}
return false;
}
/**
* Event listener for HTTP server "error" event.
*/
function onError(error) {
if (error.syscall !== 'listen') {
throw error;
}
var bind = typeof port === 'string' ?
'Pipe ' + port :
'Port ' + port
// handle specific listen errors with friendly messages
switch (error.code) {
case 'EACCES':
console.error(bind + ' requires elevated privileges');
process.exit(1);
break;
case 'EADDRINUSE':
console.error(bind + ' is already in use');
process.exit(1);
break;
default:
throw error;
}
}
/**
* Event listener for HTTP server "listening" event.
*/
function onListening() {
var addr = server.address();
var bind = typeof addr === 'string' ?
'pipe ' + addr :
'port ' + addr.port;
debug('Listening on ' + bind);
}

63
package.json Normal file
View file

@ -0,0 +1,63 @@
{
"name": "the-twelfth-house",
"version": "3.0.0",
"private": true,
"description": "The personal site of Roland X. Pulliam",
"repository": "https://code.playvicio.us/Are0h/thetwelfthhouse",
"theme": "default",
"scripts": {
"start": "forever start init.js",
"stop": "forever stop init.js",
"dev": "nodemon init.js",
"watch-front-scripts": "parcel watch themes/$npm_package_theme/src/com/Start.jsx --out-dir themes/$npm_package_theme/assets/js --out-file start.min.js --public-url /$npm_package_theme/assets/js",
"watch-front-styles": "stylus -w -m -o themes/$npm_package_theme/assets/css themes/$npm_package_theme/src/styles/base.styl",
"build-front-kit": "uglifyjs node_modules/scramble-text/dist/ScrambleText.min.js node_modules/animejs/anime.min.js node_modules/reframe.js/dist/reframe.min.js -c -o themes/$npm_package_theme/assets/js/toolkit.min.js",
"watch-back-scripts": "parcel watch themes/dash/src/com/Start.jsx --out-dir themes/dash/assets/js --out-file dash.min.js --public-url /dash/assets/js",
"watch-back-styles": "stylus -w -m -o themes/dash/assets/css themes/dash/src/styles/dash.styl",
"build-back-kit": "uglifyjs themes/dash/src/libraries/highlight.pack.js node_modules/scramble-text/dist/ScrambleText.min.js node_modules/animejs/anime.min.js node_modules/reframe.js/dist/reframe.min.js -c -o themes/dash/assets/js/dashkit.min.js"
},
"engines": {
"node": ">=8.12.0"
},
"dependencies": {
"bcrypt-nodejs": "latest",
"bluebird": "^3.4.1",
"body-parser": "latest",
"caret-pos": "^1.2.1",
"connect-flash": "latest",
"cookie-parser": "~1.3.3",
"debug": "^4.1.0",
"entypo": "^2.1.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"fs-extra": "latest",
"highlight.js": "^9.13.1",
"jsdom": "^12.2.0",
"mailgun-js": "^0.18.0",
"markdown-it": "^8.4.1",
"memorystore": "^1.6.0",
"morgan": "latest",
"multer": "latest",
"nodemailer": "latest",
"pg": "^7.5.0",
"pg-hstore": "^2.3.2",
"prismjs": "^1.15.0",
"pug": "latest",
"reframe.js": "^2.2.1",
"request": "^2.83.0",
"sanitize-html": "^1.19.1",
"scrape-metadata": "^2.0.0",
"sequelize": "^4.37.6",
"serve-favicon": "latest",
"uuid": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"animejs": "^2.2.0",
"babel-preset-env": "^1.7.0",
"bulma.styl": "^0.6.11",
"scramble-text": "0.0.8"
}
}

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 211 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 252 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 340 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 195 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 264 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 246 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 257 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,670 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
<metadata>
Created by FontForge 20170910 at Fri Aug 27 16:54:26 2010
By Jimmy Wärting
Copyright (c) 2009 by The Entente (AS &#38; EH). All rights reserved.
</metadata>
<defs>
<font id="Apercu-Mono" horiz-adv-x="620" >
<font-face
font-family="Apercu"
font-weight="400"
font-stretch="normal"
units-per-em="1000"
panose-1="2 0 5 6 3 0 0 2 0 4"
ascent="800"
descent="-200"
x-height="504"
cap-height="700"
bbox="-11 -244 612 949"
underline-thickness="50"
underline-position="-100"
unicode-range="U+0020-FB02"
/>
<missing-glyph
d="M533 0h-447v700h447v-700zM449 76v548h-279v-548h279z" />
<glyph glyph-name=".notdef"
d="M533 0h-447v700h447v-700zM449 76v548h-279v-548h279z" />
<glyph glyph-name="NULL" horiz-adv-x="0"
/>
<glyph glyph-name="CR" horiz-adv-x="333"
/>
<glyph glyph-name="space" unicode=" "
/>
<glyph glyph-name="exclam" unicode="!"
d="M277 200l-24 500h114l-24 -500h-66zM240 65c0 40 30 71 70 71s70 -31 70 -71c0 -39 -30 -68 -70 -68s-70 29 -70 68z" />
<glyph glyph-name="quotedbl" unicode="&#x22;"
d="M246 462h-64l-25 246h114zM437 462h-64l-25 246h114z" />
<glyph glyph-name="numbersign" unicode="#"
d="M182 418h-102v74h114l33 208h78l-33 -208h131l34 208h78l-34 -208h98v-74h-110l-22 -136h102v-74h-114l-33 -208h-78l33 208h-131l-34 -208h-78l34 208h-98v74h110zM391 418h-131l-22 -136h131z" />
<glyph glyph-name="dollar" unicode="$"
d="M540 558l-77 -39c-31 71 -78 106 -142 106c-77 0 -126 -41 -126 -109c0 -34 13 -59 38 -74c26 -15 67 -30 124 -45c51 -13 78 -21 115 -41c55 -28 81 -68 84 -141c0 -133 -73 -208 -192 -221v-94h-80v94c-116 13 -197 86 -221 206l82 32c27 -104 87 -156 179 -156
c88 0 144 44 144 127c0 29 -12 51 -25 64c-7 7 -18 13 -34 19c-31 13 -49 19 -100 31c-49 12 -73 19 -113 39c-56 29 -85 73 -89 157c0 103 65 180 177 193v94h80v-96c89 -15 148 -73 176 -146z" />
<glyph glyph-name="percent" unicode="%"
d="M59 434c-31 31 -46 69 -46 114s15 82 46 113s69 47 114 47s83 -16 114 -47s46 -68 46 -113s-15 -83 -46 -114s-69 -46 -114 -46s-83 15 -114 46zM109 612c-15 -17 -23 -38 -23 -64s8 -48 23 -65c16 -17 37 -25 64 -25s48 8 63 25c16 17 24 39 24 65s-8 47 -24 64
c-15 17 -36 26 -63 26s-48 -9 -64 -26zM333 38c-31 31 -46 69 -46 114s15 82 46 113s69 47 114 47s83 -16 114 -47s46 -68 46 -113s-15 -83 -46 -114s-69 -46 -114 -46s-83 15 -114 46zM383 216c-15 -17 -23 -38 -23 -64s8 -48 23 -65c16 -17 37 -25 64 -25s48 8 63 25
c16 17 24 39 24 65s-8 47 -24 64c-15 17 -36 26 -63 26s-48 -9 -64 -26zM40 199l507 353l34 -48l-507 -353z" />
<glyph glyph-name="ampersand" unicode="&#x26;"
d="M265 -8c-128 0 -212 79 -212 208c0 97 60 174 136 213c-41 55 -61 104 -61 146c0 43 15 79 44 107c30 28 67 42 111 42c47 0 84 -14 113 -42s43 -61 43 -98c0 -27 -8 -56 -25 -85c-19 -32 -56 -62 -111 -91l146 -185c13 27 29 67 47 119l56 -61c-15 -46 -33 -87 -52 -123
l112 -142h-101l-59 74c-48 -55 -110 -82 -187 -82zM265 68c56 0 102 22 139 67l-172 221c-63 -36 -95 -89 -95 -158c0 -80 57 -130 128 -130zM208 555c0 -30 16 -66 49 -109c67 33 103 66 103 117c0 41 -32 73 -77 73s-75 -34 -75 -81z" />
<glyph glyph-name="quotesingle" unicode="'"
d="M342 462h-64l-25 246h114z" />
<glyph glyph-name="parenleft" unicode="("
d="M344 750h84c-71 -112 -106 -245 -106 -400s35 -288 106 -400h-84c-72 113 -108 247 -108 400s36 287 108 400z" />
<glyph glyph-name="parenright" unicode=")"
d="M196 750h84c72 -113 108 -247 108 -400s-36 -287 -108 -400h-84c71 112 106 245 106 400s-35 288 -106 400z" />
<glyph glyph-name="asterisk" unicode="*"
d="M276 708h68v-138l131 43l21 -65l-130 -43l80 -111l-55 -39l-81 111l-81 -111l-55 39l80 111l-130 43l21 65l131 -43v138z" />
<glyph glyph-name="plus" unicode="+"
d="M273 356v183h74v-183h183v-74h-183v-183h-74v183h-183v74h183z" />
<glyph glyph-name="comma" unicode=","
d="M271 -107h-73l96 217h123z" />
<glyph glyph-name="hyphen" unicode="-"
d="M485 280h-349v74h349v-74z" />
<glyph glyph-name="period" unicode="."
d="M253 19c-31 31 -31 83 0 114s83 31 114 0s31 -83 0 -114s-83 -31 -114 0z" />
<glyph glyph-name="slash" unicode="/"
d="M62 -50l406 800h86l-406 -800h-86z" />
<glyph glyph-name="zero" unicode="0"
d="M498 88c-45 -64 -107 -96 -188 -96s-144 32 -189 96c-45 65 -67 152 -67 262s22 197 67 261c45 65 108 97 189 97s143 -32 188 -97c45 -64 68 -151 68 -261s-23 -197 -68 -262zM142 350c0 -77 12 -141 37 -190l208 445c-23 15 -48 23 -77 23c-107 0 -168 -106 -168 -278z
M310 72c107 0 168 106 168 278c0 79 -12 142 -37 190l-208 -445c23 -15 48 -23 77 -23z" />
<glyph glyph-name="one" unicode="1"
d="M122 562l227 138h32v-624h180v-76h-444v76h180v498l-175 -104v92z" />
<glyph glyph-name="two" unicode="2"
d="M551 0h-432v39l276 342c44 55 57 88 57 133c0 33 -9 59 -26 80c-19 23 -47 34 -84 34c-65 0 -112 -51 -123 -127l-85 16c5 55 28 100 68 136c40 37 87 55 140 55c65 0 116 -20 152 -61c29 -33 44 -78 44 -133c0 -54 -19 -105 -56 -152l-226 -282h295v-80z" />
<glyph glyph-name="three" unicode="3"
d="M80 192l84 11c13 -87 59 -131 139 -131c84 0 140 55 140 148c0 95 -55 148 -140 148c-23 0 -44 -4 -62 -13l-35 47l159 218h-252v80h380v-27l-178 -241c6 2 15 3 28 3c54 0 98 -20 133 -60c35 -39 53 -91 53 -155c0 -67 -21 -122 -63 -165c-42 -42 -96 -63 -163 -63
c-59 0 -109 18 -151 55s-66 85 -72 145z" />
<glyph glyph-name="four" unicode="4"
d="M452 0h-86v149h-304v35l296 516h94v-471h106v-80h-106v-149zM366 568l-190 -339h190v339z" />
<glyph glyph-name="five" unicode="5"
d="M95 183l85 16c12 -83 63 -127 135 -127c85 0 142 63 142 156c0 95 -50 156 -134 156c-63 0 -122 -33 -157 -78l-55 12l40 382h342v-80h-269l-26 -203c28 27 84 47 131 47c133 0 214 -91 214 -236c0 -69 -21 -126 -64 -170c-42 -44 -97 -66 -164 -66
c-119 0 -208 68 -220 191z" />
<glyph glyph-name="six" unicode="6"
d="M329 448c64 0 116 -21 156 -64c41 -42 61 -97 61 -164c0 -65 -21 -119 -63 -163c-41 -43 -94 -65 -158 -65s-117 22 -159 65c-41 44 -62 98 -62 163c0 47 12 90 36 131l207 357h96l-152 -267c10 5 23 7 38 7zM192 220c0 -85 56 -148 133 -148s133 63 133 148
c0 89 -54 148 -133 148s-133 -59 -133 -148z" />
<glyph glyph-name="seven" unicode="7"
d="M556 663l-312 -663h-93l295 620h-339v80h449v-37z" />
<glyph glyph-name="eight" unicode="8"
d="M503 521c0 -59 -33 -119 -80 -144c64 -29 104 -92 104 -176c0 -64 -21 -115 -63 -153c-42 -37 -93 -56 -154 -56s-112 19 -154 56c-42 38 -63 89 -63 153c0 84 40 147 104 176c-47 25 -80 85 -80 144c0 53 18 97 54 133c37 36 83 54 139 54s102 -18 138 -54
c37 -36 55 -80 55 -133zM403 295c-24 23 -55 35 -93 35s-69 -12 -93 -35s-36 -55 -36 -94s12 -71 36 -94s55 -35 93 -35s69 12 93 35s36 55 36 94s-12 71 -36 94zM388 601c-19 21 -45 31 -78 31s-59 -10 -78 -31s-29 -47 -29 -80s10 -59 29 -80s45 -31 78 -31s59 10 78 31
s29 47 29 80s-10 59 -29 80z" />
<glyph glyph-name="nine" unicode="9"
d="M299 252c-64 0 -116 21 -157 63c-40 43 -60 98 -60 165c0 65 21 119 62 162c42 44 95 66 159 66s117 -22 158 -66c42 -43 63 -97 63 -162c0 -47 -12 -90 -36 -131l-207 -357h-96l152 267c-10 -5 -23 -7 -38 -7zM436 480c0 85 -56 148 -133 148s-133 -63 -133 -148
c0 -89 54 -148 133 -148s133 59 133 148z" />
<glyph glyph-name="colon" unicode=":"
d="M253 19c-31 31 -31 83 0 114s83 31 114 0s31 -83 0 -114s-83 -31 -114 0zM253 361c-31 31 -31 83 0 114s83 31 114 0s31 -83 0 -114s-83 -31 -114 0z" />
<glyph glyph-name="semicolon" unicode=";"
d="M234 -107h-73l96 217h123zM253 361c-31 31 -31 83 0 114s83 31 114 0s31 -83 0 -114s-83 -31 -114 0z" />
<glyph glyph-name="less" unicode="&#x3c;"
d="M507 70l-409 196v88l409 196v-87l-325 -153l325 -153v-87z" />
<glyph glyph-name="equal" unicode="="
d="M510 356h-399v74h399v-74zM510 190h-399v74h399v-74z" />
<glyph glyph-name="greater" unicode="&#x3e;"
d="M113 550l409 -196v-88l-409 -196v87l325 153l-325 153v87z" />
<glyph glyph-name="question" unicode="?"
d="M247 63c0 39 29 68 66 68c39 0 68 -29 68 -68c0 -37 -29 -66 -68 -66c-37 0 -66 29 -66 66zM382 330l65 -23c-24 -70 -69 -105 -134 -105c-80 0 -132 48 -132 124c0 55 28 97 85 126c29 16 72 30 92 41c29 15 43 39 43 71c0 23 -7 40 -21 52c-16 14 -38 21 -65 21
c-51 0 -89 -36 -105 -92l-78 13c16 91 83 150 183 150c51 0 93 -15 124 -44s46 -64 46 -105c0 -54 -26 -94 -77 -119l-101 -49c-33 -18 -49 -41 -49 -69c0 -32 20 -51 52 -51c31 0 55 20 72 59z" />
<glyph glyph-name="at" unicode="@"
d="M579 491v-384h-78l-8 44c-26 -35 -62 -52 -108 -52c-54 0 -98 19 -131 58s-49 88 -49 147c0 60 16 109 49 147s76 57 131 57c51 0 90 -15 117 -44v21c0 100 -66 161 -167 161c-127 0 -209 -115 -209 -328v-34c0 -195 77 -307 224 -307c71 0 131 24 179 72l39 -61
c-56 -55 -129 -82 -218 -82c-196 0 -308 136 -308 376v39c0 256 106 397 293 397c151 0 244 -80 244 -227zM287 304c0 -77 41 -131 106 -131s106 54 106 131c0 79 -39 130 -106 130s-106 -51 -106 -130z" />
<glyph glyph-name="A" unicode="A"
d="M19 0l249 700h84l249 -700h-91l-63 187h-274l-63 -187h-91zM418 271l-108 315l-108 -315h216z" />
<glyph glyph-name="B" unicode="B"
d="M96 0v700h246c125 0 199 -65 199 -180c0 -60 -33 -112 -80 -137c69 -28 115 -91 115 -175c0 -129 -82 -208 -218 -208h-262zM345 331h-161v-247h161c93 0 140 41 140 124c0 82 -47 123 -140 123zM340 616h-156v-201h156c68 0 110 35 110 100c0 67 -43 101 -110 101z" />
<glyph glyph-name="C" unicode="C"
d="M506 230l83 -25c-32 -129 -120 -213 -251 -213c-84 0 -153 31 -208 92c-54 61 -81 150 -81 266s27 205 81 266c55 61 124 92 208 92c131 0 219 -84 251 -213l-83 -25c-32 104 -81 154 -168 154c-124 0 -198 -89 -198 -274s74 -274 198 -274c87 0 136 50 168 154z" />
<glyph glyph-name="D" unicode="D"
d="M78 0v700h177c95 0 170 -30 226 -89c57 -59 85 -146 85 -261s-28 -202 -85 -261c-56 -59 -131 -89 -226 -89h-177zM246 616h-80v-532h80c147 0 226 78 226 266s-79 266 -226 266z" />
<glyph glyph-name="E" unicode="E"
d="M91 0v700h444v-84h-356v-201h306v-84h-306v-247h366v-84h-454z" />
<glyph glyph-name="F" unicode="F"
d="M91 0v700h437v-84h-349v-209h300v-84h-300v-323h-88z" />
<glyph glyph-name="G" unicode="G"
d="M581 0h-73l-5 94c-31 -67 -99 -102 -176 -102c-81 0 -148 31 -202 92c-54 62 -81 151 -81 266c0 116 27 205 81 266c55 61 124 92 208 92c132 0 219 -82 251 -213l-83 -25c-32 104 -81 154 -168 154c-124 0 -198 -89 -198 -274s74 -274 198 -274c95 0 148 64 157 193
h-157v84h248v-353z" />
<glyph glyph-name="H" unicode="H"
d="M464 414v286h88v-700h-88v330h-308v-330h-88v700h88v-286h308z" />
<glyph glyph-name="I" unicode="I"
d="M523 76v-76h-426v76h169v548h-169v76h426v-76h-169v-548h169z" />
<glyph glyph-name="J" unicode="J"
d="M418 222v478h88v-476c0 -75 -20 -133 -60 -173c-40 -39 -92 -59 -155 -59c-61 0 -110 18 -148 54s-61 81 -70 136l89 19c16 -79 61 -125 129 -125c79 0 127 47 127 146z" />
<glyph glyph-name="K" unicode="K"
d="M267 385l324 -385h-112l-293 351v-351h-88v700h88v-281l268 281h115z" />
<glyph glyph-name="L" unicode="L"
d="M578 84v-84h-445v700h88v-616h357z" />
<glyph glyph-name="M" unicode="M"
d="M67 0v700h94l149 -388l149 388h94v-700h-88v513l-122 -312h-66l-122 312v-513h-88z" />
<glyph glyph-name="N" unicode="N"
d="M460 160v540h88v-700h-96l-293 540v-540h-88v700h96z" />
<glyph glyph-name="O" unicode="O"
d="M114 615c51 62 116 93 196 93s145 -31 196 -93c51 -61 76 -150 76 -265s-25 -204 -76 -266c-51 -61 -116 -92 -196 -92s-145 31 -196 92c-51 62 -76 151 -76 266s25 204 76 265zM442 557c-33 45 -77 67 -132 67s-99 -22 -132 -67c-33 -44 -49 -113 -49 -207
s16 -163 49 -208c33 -44 77 -66 132 -66s99 22 132 66c33 45 49 114 49 208s-16 163 -49 207z" />
<glyph glyph-name="P" unicode="P"
d="M364 300h-177v-300h-88v700h265c133 0 208 -76 208 -200s-75 -200 -208 -200zM187 384h175c79 0 119 39 119 116s-40 116 -119 116h-175v-232z" />
<glyph glyph-name="Q" unicode="Q"
d="M582 350c0 -93 -17 -170 -52 -230l65 -65l-61 -63l-60 60c-45 -40 -100 -60 -164 -60c-80 0 -145 31 -196 92c-51 62 -76 151 -76 266s25 204 76 265c51 62 116 93 196 93s145 -31 196 -93c51 -61 76 -150 76 -265zM414 112l-72 74l61 63l62 -63c17 45 26 99 26 164
c0 94 -16 163 -49 207c-33 45 -77 67 -132 67s-99 -22 -132 -67c-33 -44 -49 -113 -49 -207c0 -188 70 -274 181 -274c41 0 76 12 104 36z" />
<glyph glyph-name="R" unicode="R"
d="M594 0h-104l-205 330h-117v-330h-88v700h245c128 0 206 -64 206 -185c0 -99 -49 -159 -146 -179zM327 616h-159v-202h159c75 0 113 34 113 101s-38 101 -113 101z" />
<glyph glyph-name="S" unicode="S"
d="M536 558l-77 -39c-31 70 -78 105 -142 105c-77 0 -126 -40 -126 -108c0 -34 13 -59 38 -74c26 -15 67 -30 124 -45c51 -13 78 -21 115 -41c55 -28 81 -68 84 -141c0 -148 -91 -223 -232 -223c-135 0 -234 73 -261 208l82 32c27 -104 87 -156 179 -156
c88 0 144 44 144 127c0 29 -12 51 -25 64c-7 7 -18 13 -34 19c-31 13 -49 19 -100 31c-49 12 -73 19 -113 39c-56 29 -85 73 -89 157c0 57 19 104 57 140c38 37 90 55 157 55c113 0 187 -65 219 -150z" />
<glyph glyph-name="T" unicode="T"
d="M266 616h-218v84h524v-84h-218v-616h-88v616z" />
<glyph glyph-name="U" unicode="U"
d="M62 243v457h88v-463c0 -96 59 -161 160 -161s160 65 160 161v463h88v-457c0 -78 -23 -139 -70 -184s-106 -67 -178 -67s-131 22 -178 67s-70 106 -70 184z" />
<glyph glyph-name="V" unicode="V"
d="M310 125l196 575h91l-245 -700h-84l-245 700h91z" />
<glyph glyph-name="W" unicode="W"
d="M456 130l42 570h91l-67 -700h-109l-103 411l-103 -411h-109l-67 700h91l42 -570l106 427h80z" />
<glyph glyph-name="X" unicode="X"
d="M260 376l-190 324h101l139 -238l139 238h101l-190 -324l221 -376h-101l-170 290l-170 -290h-101z" />
<glyph glyph-name="Y" unicode="Y"
d="M266 0v276l-225 424h97l172 -336l172 336h97l-225 -424v-276h-88z" />
<glyph glyph-name="Z" unicode="Z"
d="M416 616h-329v84h456v-42l-343 -574h354v-84h-481v42z" />
<glyph glyph-name="bracketleft" unicode="["
d="M473 -50h-268v800h268v-76h-188v-648h188v-76z" />
<glyph glyph-name="backslash" unicode="\"
d="M473 -50l-406 800h86l406 -800h-86z" />
<glyph glyph-name="bracketright" unicode="]"
d="M147 750h268v-800h-268v76h188v648h-188v76z" />
<glyph glyph-name="asciicircum" unicode="^"
d="M90 421l187 279h66l187 -279h-86l-134 203l-134 -203h-86z" />
<glyph glyph-name="underscore" unicode="_"
d="M550 -80h-480v80h480v-80z" />
<glyph glyph-name="grave" unicode="`"
d="M215 704h121l67 -144h-66z" />
<glyph glyph-name="a" unicode="a"
d="M197 145c0 -48 32 -77 83 -77c40 0 77 13 110 38c34 26 51 65 51 116v16h-110c-85 0 -134 -36 -134 -93zM525 318v-318h-68l-12 71c-32 -47 -103 -79 -178 -79c-89 0 -156 54 -156 153c0 109 85 165 228 165h102v22c0 73 -48 104 -116 104c-57 0 -103 -35 -119 -86
l-74 20c23 87 100 142 193 142c124 0 200 -61 200 -194z" />
<glyph glyph-name="b" unicode="b"
d="M338 -8c-65 0 -123 32 -154 75v-67h-84v708h84v-268c31 41 87 72 154 72c145 0 231 -103 231 -260s-86 -260 -231 -260zM442 119c27 34 41 78 41 133s-14 99 -41 133s-65 51 -112 51s-85 -17 -112 -51s-41 -78 -41 -133s14 -99 41 -133s65 -51 112 -51s85 17 112 51z" />
<glyph glyph-name="c" unicode="c"
d="M470 161l73 -30c-41 -93 -112 -139 -213 -139c-74 0 -133 25 -176 76s-65 112 -65 184s22 133 65 184s102 76 176 76c101 0 172 -46 213 -139l-73 -30c-27 62 -73 93 -140 93c-97 0 -155 -76 -155 -184s58 -184 155 -184c67 0 113 31 140 93z" />
<glyph glyph-name="d" unicode="d"
d="M301 512c67 0 123 -31 154 -72v268h84v-708h-84v67c-31 -43 -89 -75 -154 -75c-145 0 -231 103 -231 260s86 260 231 260zM197 385c-27 -34 -41 -78 -41 -133s14 -99 41 -133s65 -51 112 -51s85 17 112 51s41 78 41 133s-14 99 -41 133s-65 51 -112 51s-85 -17 -112 -51z
" />
<glyph glyph-name="e" unicode="e"
d="M556 269v-35h-394c5 -100 66 -166 155 -166c72 0 126 33 162 100l67 -35c-49 -94 -125 -141 -229 -141c-72 0 -130 25 -175 74c-44 49 -66 111 -66 186c0 73 22 135 65 185c44 50 103 75 176 75c75 0 134 -23 176 -70c42 -46 63 -104 63 -173zM317 436
c-79 0 -132 -47 -149 -126h299c-15 80 -69 126 -150 126z" />
<glyph glyph-name="f" unicode="f"
d="M497 679l-21 -74c-28 18 -55 27 -81 27c-49 0 -74 -32 -74 -95v-33h196v-76h-196v-428h-84v428h-142v76h142v31c0 115 52 173 155 173c38 0 73 -10 105 -29z" />
<glyph glyph-name="g" unicode="g"
d="M142 343c0 51 17 92 50 123c34 31 77 46 128 46c36 0 69 -9 99 -26l105 54l38 -69l-85 -44c14 -24 21 -52 21 -84c0 -51 -17 -92 -50 -123s-76 -46 -128 -46c-35 0 -66 7 -93 21c-31 -12 -46 -29 -46 -52c0 -28 24 -42 71 -42h131c108 0 169 -48 169 -139
c0 -59 -23 -102 -69 -131s-102 -43 -167 -43c-147 0 -233 58 -233 166c0 45 17 81 52 108c-24 19 -36 44 -36 77c0 45 27 84 74 101c-21 28 -31 62 -31 103zM381 29h-119c-21 0 -38 1 -52 4c-29 -15 -43 -40 -43 -76c0 -59 58 -95 149 -95c95 0 150 35 150 92
c0 50 -28 75 -85 75zM251 414c-18 -17 -27 -41 -27 -71s9 -54 27 -71c19 -17 42 -26 69 -26s50 8 68 25c19 17 28 41 28 72s-9 54 -28 71c-18 17 -41 26 -68 26s-50 -9 -69 -26z" />
<glyph glyph-name="h" unicode="h"
d="M529 348v-348h-84v330c0 71 -31 106 -93 106c-43 0 -80 -20 -112 -61s-48 -95 -48 -164v-211h-84v708h84v-297c40 59 108 101 183 101c103 0 154 -55 154 -164z" />
<glyph glyph-name="i" unicode="i"
d="M283 430h-154v74h238v-430h186v-74h-444v74h174v356zM250 638c0 39 30 70 69 70s69 -31 69 -70s-30 -68 -69 -68s-69 31 -69 68z" />
<glyph glyph-name="j" unicode="j"
d="M241 -212l-28 80c96 32 135 83 135 182v380h-198v74h282v-476c0 -67 -19 -121 -56 -160c-37 -40 -82 -67 -135 -80zM315 638c0 39 30 70 69 70s69 -31 69 -70s-30 -68 -69 -68s-69 31 -69 68z" />
<glyph glyph-name="k" unicode="k"
d="M111 0v708h84v-415l215 211h110l-235 -231l258 -273h-110l-238 253v-253h-84z" />
<glyph glyph-name="l" unicode="l"
d="M201 190v434h-139v76h223v-510c0 -81 35 -122 106 -122c65 0 104 41 117 122l76 -15c-17 -120 -88 -183 -193 -183c-117 0 -190 73 -190 198z" />
<glyph glyph-name="m" unicode="m"
d="M588 376v-376h-84v358c0 55 -16 77 -55 77c-52 0 -89 -65 -89 -198v-237h-84v358c0 55 -16 77 -55 77c-52 0 -89 -65 -89 -198v-237h-84v504h84v-64c30 48 69 72 118 72c54 0 89 -27 104 -82c27 49 72 82 124 82c67 0 110 -44 110 -136z" />
<glyph glyph-name="n" unicode="n"
d="M522 351v-351h-84v333c0 69 -31 103 -93 103c-41 0 -76 -21 -105 -64c-29 -42 -43 -98 -43 -169v-203h-84v504h84v-93c37 60 102 101 171 101c103 0 154 -61 154 -161z" />
<glyph glyph-name="o" unicode="o"
d="M130 68c-45 51 -68 112 -68 184s23 133 68 184s105 76 180 76s135 -25 180 -76s68 -112 68 -184s-23 -133 -68 -184s-105 -76 -180 -76s-135 25 -180 76zM192 382c-29 -36 -44 -79 -44 -130s15 -94 44 -130s69 -54 118 -54s89 18 118 54s44 79 44 130s-15 94 -44 130
s-69 54 -118 54s-89 -18 -118 -54z" />
<glyph glyph-name="p" unicode="p"
d="M342 -8c-67 0 -123 31 -154 72v-268h-84v708h84v-67c31 43 89 75 154 75c145 0 231 -103 231 -260s-86 -260 -231 -260zM446 119c27 34 41 78 41 133s-14 99 -41 133s-65 51 -112 51s-85 -17 -112 -51s-41 -78 -41 -133s14 -99 41 -133s65 -51 112 -51s85 17 112 51z" />
<glyph glyph-name="q" unicode="q"
d="M288 512c65 0 123 -32 154 -75v67h84v-708h-84v268c-31 -41 -87 -72 -154 -72c-145 0 -231 103 -231 260s86 260 231 260zM184 385c-27 -34 -41 -78 -41 -133s14 -99 41 -133s65 -51 112 -51s85 17 112 51s41 78 41 133s-14 99 -41 133s-65 51 -112 51s-85 -17 -112 -51z
" />
<glyph glyph-name="r" unicode="r"
d="M559 344h-84c-7 61 -40 92 -97 92c-47 0 -88 -22 -121 -67c-33 -44 -50 -106 -50 -187v-182h-84v504h84v-93c43 67 105 101 186 101c100 0 161 -60 166 -168z" />
<glyph glyph-name="s" unicode="s"
d="M308 512c83 0 144 -36 184 -109l-66 -47c-29 53 -70 80 -121 80c-48 0 -87 -22 -87 -67c0 -41 37 -62 117 -78c43 -9 70 -15 103 -30c47 -20 78 -54 78 -107c0 -50 -19 -90 -56 -119s-83 -43 -138 -43c-104 0 -188 53 -219 146l80 30c23 -63 71 -100 139 -100
c61 0 107 27 107 78c0 40 -38 54 -130 74c-103 21 -163 57 -163 146c0 44 17 79 50 106s74 40 122 40z" />
<glyph glyph-name="t" unicode="t"
d="M200 428h-134v76h134v151l84 53v-204h246v-76h-246v-258c0 -68 29 -102 87 -102c45 0 86 20 124 60l31 -71c-43 -43 -95 -65 -155 -65c-111 0 -171 59 -171 175v261z" />
<glyph glyph-name="u" unicode="u"
d="M103 153v351h84v-333c0 -69 31 -103 93 -103c41 0 76 21 105 63c29 43 43 99 43 170v203h84v-504h-84v93c-37 -60 -102 -101 -171 -101c-103 0 -154 61 -154 161z" />
<glyph glyph-name="v" unicode="v"
d="M310 100l162 404h91l-211 -504h-84l-211 504h91z" />
<glyph glyph-name="w" unicode="w"
d="M438 131l69 373h86l-110 -504h-76l-97 354l-97 -354h-76l-110 504h86l69 -373l86 323h84z" />
<glyph glyph-name="x" unicode="x"
d="M310 337l111 167h99l-164 -237l183 -267h-95l-134 198l-134 -198h-95l183 267l-164 237h99z" />
<glyph glyph-name="y" unicode="y"
d="M335 135l149 369h91l-299 -708h-84l98 238l-218 470h94z" />
<glyph glyph-name="z" unicode="z"
d="M374 428h-251v76h378v-36l-267 -392h279v-76h-403v36z" />
<glyph glyph-name="braceleft" unicode="{"
d="M265 50v172c0 67 -35 90 -100 90v76c65 0 100 23 100 90v172c0 60 40 100 100 100h138v-76h-113c-32 0 -45 -13 -45 -45v-181c0 -63 -25 -86 -70 -98c45 -12 70 -35 70 -98v-181c0 -32 13 -45 45 -45h113v-76h-138c-60 0 -100 40 -100 100z" />
<glyph glyph-name="bar" unicode="|"
d="M270 -50v800h80v-800h-80z" />
<glyph glyph-name="braceright" unicode="}"
d="M355 222v-172c0 -60 -40 -100 -100 -100h-138v76h113c32 0 45 13 45 45v181c0 63 25 86 70 98c-45 12 -70 35 -70 98v181c0 32 -13 45 -45 45h-113v76h138c60 0 100 -40 100 -100v-172c0 -67 35 -90 100 -90v-76c-65 0 -100 -23 -100 -90z" />
<glyph glyph-name="asciitilde" unicode="~"
d="M125 268l-49 51c29 55 77 88 132 88c29 0 63 -8 102 -25s69 -25 92 -25c37 0 68 15 93 45l49 -51c-29 -55 -77 -88 -132 -88c-29 0 -63 8 -102 25s-69 25 -92 25c-37 0 -68 -15 -93 -45z" />
<glyph glyph-name="uni00A0" unicode="&#xa0;"
/>
<glyph glyph-name="exclamdown" unicode="&#xa1;"
d="M343 296l24 -500h-114l24 500h66zM240 431c0 39 30 68 70 68s70 -29 70 -68c0 -40 -30 -71 -70 -71s-70 31 -70 71z" />
<glyph glyph-name="cent" unicode="&#xa2;"
d="M464 259l73 -30c-35 -81 -93 -126 -173 -137v-142h-80v143c-63 9 -112 38 -148 86c-35 49 -53 106 -53 171s18 121 53 169c36 49 85 78 148 88v143h80v-143c79 -10 137 -55 173 -136l-73 -30c-27 62 -73 93 -140 93c-97 0 -155 -76 -155 -184s58 -184 155 -184
c67 0 113 31 140 93z" />
<glyph glyph-name="sterling" unicode="&#xa3;"
d="M192 324h-80v80h53c-15 40 -22 74 -22 103c0 61 19 110 56 146c37 37 84 55 141 55c96 0 164 -50 196 -138l-75 -35c-29 67 -65 93 -121 93c-64 0 -113 -42 -113 -122c0 -32 7 -66 20 -102h164v-80h-138c5 -21 7 -42 7 -63c0 -67 -26 -126 -79 -177c30 18 59 27 87 27
c20 0 42 -7 67 -20s43 -19 56 -19c36 0 59 16 90 68l66 -36c-40 -75 -90 -112 -151 -112c-28 0 -57 7 -87 20c-29 13 -52 20 -67 20c-39 0 -77 -13 -113 -40l-57 62c79 75 111 130 111 197c0 21 -4 45 -11 73z" />
<glyph glyph-name="currency" unicode="&#xa4;"
d="M147 422l-88 67l69 69l67 -87c68 51 162 51 230 0l67 87l69 -69l-88 -67c47 -68 47 -162 0 -230l88 -67l-69 -69l-67 87c-68 -51 -162 -51 -230 0l-67 -87l-69 69l88 67c-47 68 -47 162 0 230zM225 398c-21 -23 -32 -54 -32 -91s11 -68 32 -91s50 -35 85 -35s64 12 85 35
s32 54 32 91s-11 68 -32 91s-50 35 -85 35s-64 -12 -85 -35z" />
<glyph glyph-name="yen" unicode="&#xa5;"
d="M266 116h-156v72h156v88h-156v72h118l-183 352h97l168 -336l168 336h97l-183 -352h118v-72h-156v-88h156v-72h-156v-116h-88v116z" />
<glyph glyph-name="brokenbar" unicode="&#xa6;"
d="M270 -50v349h80v-349h-80zM350 750v-349h-80v349h80z" />
<glyph glyph-name="section" unicode="&#xa7;"
d="M534 222c0 -56 -23 -101 -70 -136c29 -31 43 -68 43 -112c0 -57 -18 -103 -53 -136s-81 -50 -136 -50c-108 0 -180 59 -204 158l77 25c25 -69 67 -103 127 -103c64 0 105 38 105 102c0 35 -13 61 -44 81c-15 11 -29 19 -44 26c-14 7 -34 15 -59 26s-46 21 -62 29
c-80 41 -112 78 -112 142c0 56 23 101 70 136c-29 31 -43 68 -43 112c0 57 18 103 53 136s81 50 136 50c108 0 180 -59 204 -158l-77 -25c-25 69 -67 103 -127 103c-64 0 -105 -38 -105 -102c0 -35 14 -61 43 -82c15 -10 30 -18 44 -25l60 -27c25 -11 46 -20 62 -28
c80 -41 112 -78 112 -142zM455 213c0 37 -36 70 -75 87c-19 9 -44 19 -74 32s-53 24 -70 33c-37 -23 -55 -50 -55 -82c0 -37 36 -70 75 -87c19 -9 44 -19 74 -32s53 -24 70 -33c37 23 55 50 55 82z" />
<glyph glyph-name="dieresis" unicode="&#xa8;"
d="M217 708c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57zM401 708c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57z" />
<glyph glyph-name="copyright" unicode="&#xa9;"
d="M116 151c-51 53 -77 120 -77 199s26 145 77 198s116 80 194 80s143 -27 194 -80s77 -119 77 -198s-26 -146 -77 -199s-116 -79 -194 -79s-143 26 -194 79zM160 505c-38 -41 -57 -93 -57 -155s19 -114 57 -155c39 -41 89 -62 150 -62s111 21 149 62c39 41 58 93 58 155
s-19 114 -58 155c-38 41 -88 62 -149 62s-111 -21 -150 -62zM381 302l51 -12c-11 -57 -59 -92 -122 -92c-37 0 -70 13 -99 39c-28 26 -42 64 -42 113s14 87 42 113c29 26 62 39 99 39c63 0 111 -35 122 -92l-51 -12c-13 34 -37 51 -71 51c-49 0 -82 -32 -82 -99
s33 -99 82 -99c34 0 58 17 71 51z" />
<glyph glyph-name="ordfeminine" unicode="&#xaa;"
d="M215 415c0 -37 24 -59 65 -59c31 0 60 10 86 30c27 20 40 50 40 90v13h-87c-67 0 -104 -29 -104 -74zM472 551v-251h-54l-9 58c-25 -37 -81 -62 -140 -62c-71 0 -122 40 -122 119c0 84 68 130 179 130h80v17c0 57 -40 82 -95 82c-43 0 -77 -27 -90 -67l-57 15
c17 68 75 112 147 112c99 0 161 -49 161 -153z" />
<glyph glyph-name="guillemotleft" unicode="&#xab;"
d="M337 80l-294 199v62l294 199v-90l-209 -140l209 -140v-90zM577 80l-294 199v62l294 199v-90l-209 -140l209 -140v-90z" />
<glyph glyph-name="logicalnot" unicode="&#xac;"
d="M459 313h-366v76h450v-247h-84v171z" />
<glyph glyph-name="uni00AD" unicode="&#xad;"
d="M485 280h-349v74h349v-74z" />
<glyph glyph-name="registered" unicode="&#xae;"
d="M116 151c-51 53 -77 120 -77 199s26 145 77 198s116 80 194 80s143 -27 194 -80s77 -119 77 -198s-26 -146 -77 -199s-116 -79 -194 -79s-143 26 -194 79zM160 505c-38 -41 -57 -93 -57 -155s19 -114 57 -155c39 -41 89 -62 150 -62s111 21 149 62c39 41 58 93 58 155
s-19 114 -58 155c-38 41 -88 62 -149 62s-111 -21 -150 -62zM436 202h-59l-88 126h-24v-126h-52v296h106c60 0 94 -34 94 -85c0 -43 -27 -74 -66 -82zM316 449h-51v-72h51c29 0 43 12 43 36s-14 36 -43 36z" />
<glyph glyph-name="overscore" unicode="&#xaf;"
d="M435 632h-249v76h249v-76z" />
<glyph glyph-name="degree" unicode="&#xb0;"
d="M199 443c-29 29 -43 66 -43 110s14 80 43 109s66 44 111 44s82 -15 111 -44s43 -65 43 -109s-14 -81 -43 -110s-66 -43 -111 -43s-82 14 -111 43zM248 616c-15 -16 -23 -37 -23 -63s8 -47 23 -63s36 -24 62 -24s47 8 62 24s23 37 23 63s-8 47 -23 63s-36 24 -62 24
s-47 -8 -62 -24z" />
<glyph glyph-name="plusminus" unicode="&#xb1;"
d="M530 0h-440v74h440v-74zM273 436v183h74v-183h183v-74h-183v-183h-74v183h-183v74h183z" />
<glyph glyph-name="uni00B2" unicode="&#xb2;"
d="M261 602l-59 15c9 56 50 95 111 95c69 0 107 -40 107 -100c0 -33 -11 -64 -34 -91l-74 -93h116v-60h-225v25l126 155c17 21 25 42 25 63c0 24 -14 41 -41 41s-44 -17 -52 -50z" />
<glyph glyph-name="uni00B3" unicode="&#xb3;"
d="M203 467l64 15c4 -35 26 -58 57 -58c33 0 49 18 49 55c0 39 -16 58 -49 58c-11 0 -22 -4 -33 -13l-29 41l66 83h-107v60h202v-23l-84 -104c64 0 100 -39 100 -102c0 -71 -46 -115 -115 -115c-67 0 -116 42 -121 103z" />
<glyph glyph-name="acute" unicode="&#xb4;"
d="M283 560h-66l67 144h121z" />
<glyph glyph-name="mu" unicode="&#xb5;"
d="M190 -204h-84v708h84v-333c0 -69 31 -103 93 -103c41 0 76 21 105 63c29 43 43 99 43 170v203h84v-504h-84v93c-37 -60 -102 -101 -171 -101c-28 0 -51 4 -70 12v-208z" />
<glyph glyph-name="mu" unicode="&#x3bc;"
d="M190 -204h-84v708h84v-333c0 -69 31 -103 93 -103c41 0 76 21 105 63c29 43 43 99 43 170v203h84v-504h-84v93c-37 -60 -102 -101 -171 -101c-28 0 -51 4 -70 12v-208z" />
<glyph glyph-name="paragraph" unicode="&#xb6;"
d="M245 700h312v-76h-62v-828h-84v828h-82v-828h-84v518c-53 0 -99 19 -137 56c-37 38 -56 84 -56 137s19 99 56 136c38 38 84 57 137 57z" />
<glyph glyph-name="middot" unicode="&#xb7;"
d="M253 295c-31 31 -31 83 0 114s83 31 114 0s31 -83 0 -114s-83 -31 -114 0z" />
<glyph glyph-name="cedilla" unicode="&#xb8;"
d="M329 -60h70l-83 -175l-95 45z" />
<glyph glyph-name="uni00B9" unicode="&#xb9;"
d="M419 368h-220v56h79v195l-75 -34v71l113 52h24v-284h79v-56z" />
<glyph glyph-name="ordmasculine" unicode="&#xba;"
d="M168 355c-35 40 -53 88 -53 145s18 105 53 144c35 40 82 60 141 60s106 -20 141 -60c36 -39 54 -87 54 -144s-18 -105 -54 -145c-35 -39 -82 -59 -141 -59s-106 20 -141 59zM216 602c-23 -28 -34 -62 -34 -102s11 -74 34 -103c23 -28 54 -42 93 -42s69 14 92 42
c23 29 35 63 35 103s-12 74 -35 102s-53 42 -92 42s-70 -14 -93 -42z" />
<glyph glyph-name="guillemotright" unicode="&#xbb;" horiz-adv-x="618"
d="M281 540l294 -199v-62l-294 -199v90l209 140l-209 140v90zM41 540l294 -199v-62l-294 -199v90l209 140l-209 140v90z" />
<glyph glyph-name="onequarter" unicode="&#xbc;"
d="M525 -8h-62v61h-150v27l139 252h73v-219h50v-60h-50v-61zM463 244l-69 -131h69v131zM61 196l507 353l34 -48l-507 -353zM249 368h-220v56h79v195l-75 -34v71l113 52h24v-284h79v-56z" />
<glyph glyph-name="onehalf" unicode="&#xbd;"
d="M249 368h-220v56h79v195l-75 -34v71l113 52h24v-284h79v-56zM61 196l507 353l34 -48l-507 -353zM417 234l-59 15c9 56 50 95 111 95c69 0 107 -40 107 -100c0 -33 -11 -64 -34 -91l-74 -93h116v-60h-225v25l126 155c17 21 25 42 25 63c0 24 -14 41 -41 41
s-44 -17 -52 -50z" />
<glyph glyph-name="threequarters" unicode="&#xbe;"
d="M23 467l64 15c4 -35 26 -58 57 -58c33 0 49 18 49 55c0 39 -16 58 -49 58c-11 0 -22 -4 -33 -13l-29 41l66 83h-107v60h202v-23l-84 -104c64 0 100 -39 100 -102c0 -71 -46 -115 -115 -115c-67 0 -116 42 -121 103zM61 196l507 353l34 -48l-507 -353zM525 -8h-62v61h-150
v27l139 252h73v-219h50v-60h-50v-61zM463 244l-69 -131h69v131z" />
<glyph glyph-name="questiondown" unicode="&#xbf;"
d="M388 433c0 -39 -29 -68 -66 -68s-68 29 -68 68c0 37 29 66 68 66c37 0 66 -29 66 -66zM253 166l-65 23c24 70 69 105 134 105c80 0 132 -48 132 -124c0 -55 -28 -97 -85 -126c-29 -16 -72 -30 -92 -41c-29 -15 -43 -39 -43 -71c0 -23 7 -40 21 -52c16 -14 38 -21 65 -21
c51 0 89 36 105 92l78 -13c-16 -91 -83 -150 -183 -150c-51 0 -93 15 -124 44s-46 64 -46 105c0 54 26 94 77 119l101 49c33 18 49 41 49 69c0 32 -20 51 -52 51c-31 0 -55 -20 -72 -59z" />
<glyph glyph-name="Agrave" unicode="&#xc0;"
d="M19 0l249 700h84l249 -700h-91l-63 187h-274l-63 -187h-91zM418 271l-108 315l-108 -315h216zM175 900h121l67 -144h-66z" />
<glyph glyph-name="Aacute" unicode="&#xc1;"
d="M19 0l249 700h84l249 -700h-91l-63 187h-274l-63 -187h-91zM418 271l-108 315l-108 -315h216zM322 756h-66l67 144h121z" />
<glyph glyph-name="Acircumflex" unicode="&#xc2;"
d="M19 0l249 700h84l249 -700h-91l-63 187h-274l-63 -187h-91zM418 271l-108 315l-108 -315h216zM230 762h-87l154 164h26l154 -164h-87l-80 85z" />
<glyph glyph-name="Atilde" unicode="&#xc3;"
d="M19 0l249 700h84l249 -700h-91l-63 187h-274l-63 -187h-91zM418 271l-108 315l-108 -315h216zM183 782l-49 38c24 45 64 76 107 76c24 0 48 -7 72 -20s44 -20 59 -20c25 0 47 12 66 36l49 -39c-24 -44 -64 -75 -107 -75c-24 0 -48 7 -72 20s-44 20 -59 20
c-25 0 -47 -12 -66 -36z" />
<glyph glyph-name="Adieresis" unicode="&#xc4;"
d="M19 0l249 700h84l249 -700h-91l-63 187h-274l-63 -187h-91zM418 271l-108 315l-108 -315h216zM218 904c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57zM402 904c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57z" />
<glyph glyph-name="Aring" unicode="&#xc5;"
d="M19 0l249 700h84l249 -700h-91l-63 187h-274l-63 -187h-91zM418 271l-108 315l-108 -315h216zM211 849c0 56 43 100 99 100c57 0 99 -44 99 -100c0 -55 -42 -96 -99 -96c-56 0 -99 41 -99 96zM267 850c-5 -57 91 -57 86 0c5 60 -91 60 -86 0z" />
<glyph glyph-name="AE" unicode="&#xc6;"
d="M-11 0l194 700h392v-84h-206v-201h166v-84h-166v-247h216v-84h-304v187h-152l-52 -187h-88zM281 586h-47l-85 -315h132v315z" />
<glyph glyph-name="Ccedilla" unicode="&#xc7;"
d="M506 230l83 -25c-32 -129 -120 -213 -251 -213c-84 0 -153 31 -208 92c-54 61 -81 150 -81 266s27 205 81 266c55 61 124 92 208 92c131 0 219 -84 251 -213l-83 -25c-32 104 -81 154 -168 154c-124 0 -198 -89 -198 -274s74 -274 198 -274c87 0 136 50 168 154zM322 -60
h70l-83 -175l-95 45z" />
<glyph glyph-name="Egrave" unicode="&#xc8;"
d="M91 0v700h444v-84h-356v-201h306v-84h-306v-247h366v-84h-454zM193 900h121l67 -144h-66z" />
<glyph glyph-name="Eacute" unicode="&#xc9;"
d="M91 0v700h444v-84h-356v-201h306v-84h-306v-247h366v-84h-454zM312 756h-66l67 144h121z" />
<glyph glyph-name="Ecircumflex" unicode="&#xca;"
d="M91 0v700h444v-84h-356v-201h306v-84h-306v-247h366v-84h-454zM230 762h-87l154 164h26l154 -164h-87l-80 85z" />
<glyph glyph-name="Edieresis" unicode="&#xcb;"
d="M91 0v700h444v-84h-356v-201h306v-84h-306v-247h366v-84h-454zM222 904c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57zM406 904c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57z" />
<glyph glyph-name="Igrave" unicode="&#xcc;"
d="M523 76v-76h-426v76h169v548h-169v76h426v-76h-169v-548h169zM205 900h121l67 -144h-66z" />
<glyph glyph-name="Iacute" unicode="&#xcd;"
d="M523 76v-76h-426v76h169v548h-169v76h426v-76h-169v-548h169zM292 756h-66l67 144h121z" />
<glyph glyph-name="Icircumflex" unicode="&#xce;"
d="M523 76v-76h-426v76h169v548h-169v76h426v-76h-169v-548h169zM231 762h-87l154 164h26l154 -164h-87l-80 85z" />
<glyph glyph-name="Idieresis" unicode="&#xcf;"
d="M523 76v-76h-426v76h169v548h-169v76h426v-76h-169v-548h169zM219 904c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57zM403 904c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57z" />
<glyph glyph-name="Eth" unicode="&#xd0;"
d="M75 308h-49v84h49v308h189c95 0 170 -30 226 -89c57 -59 85 -146 85 -261s-28 -202 -85 -261c-56 -59 -131 -89 -226 -89h-189v308zM255 616h-92v-224h109v-84h-109v-224h92c147 0 226 78 226 266s-79 266 -226 266z" />
<glyph glyph-name="Ntilde" unicode="&#xd1;"
d="M460 160v540h88v-700h-96l-293 540v-540h-88v700h96zM186 782l-49 38c24 45 64 76 107 76c24 0 48 -7 72 -20s44 -20 59 -20c25 0 47 12 66 36l49 -39c-24 -44 -64 -75 -107 -75c-24 0 -48 7 -72 20s-44 20 -59 20c-25 0 -47 -12 -66 -36z" />
<glyph glyph-name="Ograve" unicode="&#xd2;"
d="M114 615c51 62 116 93 196 93s145 -31 196 -93c51 -61 76 -150 76 -265s-25 -204 -76 -266c-51 -61 -116 -92 -196 -92s-145 31 -196 92c-51 62 -76 151 -76 266s25 204 76 265zM442 557c-33 45 -77 67 -132 67s-99 -22 -132 -67c-33 -44 -49 -113 -49 -207
s16 -163 49 -208c33 -44 77 -66 132 -66s99 22 132 66c33 45 49 114 49 208s-16 163 -49 207zM187 900h121l67 -144h-66z" />
<glyph glyph-name="Oacute" unicode="&#xd3;"
d="M114 615c51 62 116 93 196 93s145 -31 196 -93c51 -61 76 -150 76 -265s-25 -204 -76 -266c-51 -61 -116 -92 -196 -92s-145 31 -196 92c-51 62 -76 151 -76 266s25 204 76 265zM442 557c-33 45 -77 67 -132 67s-99 -22 -132 -67c-33 -44 -49 -113 -49 -207
s16 -163 49 -208c33 -44 77 -66 132 -66s99 22 132 66c33 45 49 114 49 208s-16 163 -49 207zM302 756h-66l67 144h121z" />
<glyph glyph-name="Ocircumflex" unicode="&#xd4;"
d="M114 615c51 62 116 93 196 93s145 -31 196 -93c51 -61 76 -150 76 -265s-25 -204 -76 -266c-51 -61 -116 -92 -196 -92s-145 31 -196 92c-51 62 -76 151 -76 266s25 204 76 265zM442 557c-33 45 -77 67 -132 67s-99 -22 -132 -67c-33 -44 -49 -113 -49 -207
s16 -163 49 -208c33 -44 77 -66 132 -66s99 22 132 66c33 45 49 114 49 208s-16 163 -49 207zM230 762h-87l154 164h26l154 -164h-87l-80 85z" />
<glyph glyph-name="Otilde" unicode="&#xd5;"
d="M114 615c51 62 116 93 196 93s145 -31 196 -93c51 -61 76 -150 76 -265s-25 -204 -76 -266c-51 -61 -116 -92 -196 -92s-145 31 -196 92c-51 62 -76 151 -76 266s25 204 76 265zM442 557c-33 45 -77 67 -132 67s-99 -22 -132 -67c-33 -44 -49 -113 -49 -207
s16 -163 49 -208c33 -44 77 -66 132 -66s99 22 132 66c33 45 49 114 49 208s-16 163 -49 207zM183 782l-49 38c24 45 64 76 107 76c24 0 48 -7 72 -20s44 -20 59 -20c25 0 47 12 66 36l49 -39c-24 -44 -64 -75 -107 -75c-24 0 -48 7 -72 20s-44 20 -59 20
c-25 0 -47 -12 -66 -36z" />
<glyph glyph-name="Odieresis" unicode="&#xd6;"
d="M114 615c51 62 116 93 196 93s145 -31 196 -93c51 -61 76 -150 76 -265s-25 -204 -76 -266c-51 -61 -116 -92 -196 -92s-145 31 -196 92c-51 62 -76 151 -76 266s25 204 76 265zM442 557c-33 45 -77 67 -132 67s-99 -22 -132 -67c-33 -44 -49 -113 -49 -207
s16 -163 49 -208c33 -44 77 -66 132 -66s99 22 132 66c33 45 49 114 49 208s-16 163 -49 207zM218 904c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57zM402 904c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57z" />
<glyph glyph-name="multiply" unicode="&#xd7;"
d="M310 371l158 158l52 -52l-158 -158l158 -158l-52 -52l-158 158l-158 -158l-52 52l158 158l-158 158l52 52z" />
<glyph glyph-name="Oslash" unicode="&#xd8;"
d="M482 641l66 86l63 -44l-80 -106c34 -61 51 -136 51 -227c0 -115 -25 -204 -76 -266c-51 -61 -116 -92 -196 -92c-69 0 -127 22 -172 67l-66 -86l-63 44l80 106c-34 61 -51 136 -51 227c0 115 25 204 76 265c51 62 116 93 196 93c69 0 127 -22 172 -67zM310 624
c-111 0 -181 -86 -181 -274c0 -59 7 -108 20 -148l281 370c-30 35 -70 52 -120 52zM491 350c0 59 -7 108 -20 148l-281 -370c30 -35 70 -52 120 -52c111 0 181 86 181 274z" />
<glyph glyph-name="Ugrave" unicode="&#xd9;"
d="M62 243v457h88v-463c0 -96 59 -161 160 -161s160 65 160 161v463h88v-457c0 -78 -23 -139 -70 -184s-106 -67 -178 -67s-131 22 -178 67s-70 106 -70 184zM195 900h121l67 -144h-66z" />
<glyph glyph-name="Uacute" unicode="&#xda;"
d="M62 243v457h88v-463c0 -96 59 -161 160 -161s160 65 160 161v463h88v-457c0 -78 -23 -139 -70 -184s-106 -67 -178 -67s-131 22 -178 67s-70 106 -70 184zM312 756h-66l67 144h121z" />
<glyph glyph-name="Ucircumflex" unicode="&#xdb;"
d="M62 243v457h88v-463c0 -96 59 -161 160 -161s160 65 160 161v463h88v-457c0 -78 -23 -139 -70 -184s-106 -67 -178 -67s-131 22 -178 67s-70 106 -70 184zM230 762h-87l154 164h26l154 -164h-87l-80 85z" />
<glyph glyph-name="Udieresis" unicode="&#xdc;"
d="M62 243v457h88v-463c0 -96 59 -161 160 -161s160 65 160 161v463h88v-457c0 -78 -23 -139 -70 -184s-106 -67 -178 -67s-131 22 -178 67s-70 106 -70 184zM218 904c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57zM402 904c33 0 57 -25 57 -57
s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57z" />
<glyph glyph-name="Yacute" unicode="&#xdd;"
d="M266 0v276l-225 424h97l172 -336l172 336h97l-225 -424v-276h-88zM311 756h-66l67 144h121z" />
<glyph glyph-name="Thorn" unicode="&#xde;"
d="M352 150h-159v-150h-88v700h88v-150h159c133 0 208 -76 208 -200s-75 -200 -208 -200zM193 234h157c79 0 119 39 119 116s-40 116 -119 116h-157v-232z" />
<glyph glyph-name="germandbls" unicode="&#xdf;"
d="M119 344h-50v76h50v85c0 65 18 115 54 150s81 53 135 53c121 0 186 -75 186 -179c0 -73 -37 -123 -90 -139c79 -15 137 -77 137 -178c0 -145 -82 -220 -215 -220c-27 0 -51 2 -71 7v76c23 -5 45 -7 65 -7c88 0 137 47 137 138s-52 138 -141 138h-35v76h35
c65 0 98 35 98 106c0 68 -42 106 -106 106c-65 0 -105 -47 -105 -130v-502h-84v344z" />
<glyph glyph-name="agrave" unicode="&#xe0;"
d="M197 145c0 -48 32 -77 83 -77c40 0 77 13 110 38c34 26 51 65 51 116v16h-110c-85 0 -134 -36 -134 -93zM525 318v-318h-68l-12 71c-32 -47 -103 -79 -178 -79c-89 0 -156 54 -156 153c0 109 85 165 228 165h102v22c0 73 -48 104 -116 104c-57 0 -103 -35 -119 -86
l-74 20c23 87 100 142 193 142c124 0 200 -61 200 -194zM196 704h121l67 -144h-66z" />
<glyph glyph-name="aacute" unicode="&#xe1;"
d="M197 145c0 -48 32 -77 83 -77c40 0 77 13 110 38c34 26 51 65 51 116v16h-110c-85 0 -134 -36 -134 -93zM525 318v-318h-68l-12 71c-32 -47 -103 -79 -178 -79c-89 0 -156 54 -156 153c0 109 85 165 228 165h102v22c0 73 -48 104 -116 104c-57 0 -103 -35 -119 -86
l-74 20c23 87 100 142 193 142c124 0 200 -61 200 -194zM316 560h-66l67 144h121z" />
<glyph glyph-name="acircumflex" unicode="&#xe2;"
d="M197 145c0 -48 32 -77 83 -77c40 0 77 13 110 38c34 26 51 65 51 116v16h-110c-85 0 -134 -36 -134 -93zM525 318v-318h-68l-12 71c-32 -47 -103 -79 -178 -79c-89 0 -156 54 -156 153c0 109 85 165 228 165h102v22c0 73 -48 104 -116 104c-57 0 -103 -35 -119 -86
l-74 20c23 87 100 142 193 142c124 0 200 -61 200 -194zM245 566h-87l154 164h26l154 -164h-87l-80 85z" />
<glyph glyph-name="atilde" unicode="&#xe3;"
d="M197 145c0 -48 32 -77 83 -77c40 0 77 13 110 38c34 26 51 65 51 116v16h-110c-85 0 -134 -36 -134 -93zM525 318v-318h-68l-12 71c-32 -47 -103 -79 -178 -79c-89 0 -156 54 -156 153c0 109 85 165 228 165h102v22c0 73 -48 104 -116 104c-57 0 -103 -35 -119 -86
l-74 20c23 87 100 142 193 142c124 0 200 -61 200 -194zM197 586l-49 38c24 45 64 76 107 76c24 0 48 -7 72 -20s44 -20 59 -20c25 0 47 12 66 36l49 -39c-24 -44 -64 -75 -107 -75c-24 0 -48 7 -72 20s-44 20 -59 20c-25 0 -47 -12 -66 -36z" />
<glyph glyph-name="adieresis" unicode="&#xe4;"
d="M197 145c0 -48 32 -77 83 -77c40 0 77 13 110 38c34 26 51 65 51 116v16h-110c-85 0 -134 -36 -134 -93zM525 318v-318h-68l-12 71c-32 -47 -103 -79 -178 -79c-89 0 -156 54 -156 153c0 109 85 165 228 165h102v22c0 73 -48 104 -116 104c-57 0 -103 -35 -119 -86
l-74 20c23 87 100 142 193 142c124 0 200 -61 200 -194zM238 708c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57zM422 708c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57z" />
<glyph glyph-name="aring" unicode="&#xe5;"
d="M197 145c0 -48 32 -77 83 -77c40 0 77 13 110 38c34 26 51 65 51 116v16h-110c-85 0 -134 -36 -134 -93zM525 318v-318h-68l-12 71c-32 -47 -103 -79 -178 -79c-89 0 -156 54 -156 153c0 109 85 165 228 165h102v22c0 73 -48 104 -116 104c-57 0 -103 -35 -119 -86
l-74 20c23 87 100 142 193 142c124 0 200 -61 200 -194zM223 653c0 56 43 100 99 100c57 0 99 -44 99 -100c0 -55 -42 -96 -99 -96c-56 0 -99 41 -99 96zM279 654c-5 -57 91 -57 86 0c5 60 -91 60 -86 0z" />
<glyph glyph-name="ae" unicode="&#xe6;"
d="M607 284v-50h-242c0 -105 28 -166 79 -166c43 0 66 30 85 99l72 -21c-31 -104 -76 -154 -157 -154c-59 0 -102 35 -119 90c-27 -60 -75 -90 -144 -90c-87 0 -145 56 -145 152c0 107 76 166 188 166h55v32c0 56 -25 94 -68 94s-69 -29 -80 -86l-74 20c5 40 22 74 50 101
s62 41 103 41c59 0 98 -25 117 -76c25 47 72 76 123 76c100 0 157 -83 157 -228zM122 147c0 -48 26 -79 67 -79c61 0 90 56 90 131v39h-44c-73 0 -113 -32 -113 -91zM444 436c-45 0 -79 -50 -79 -126h158c0 73 -30 126 -79 126z" />
<glyph glyph-name="ccedilla" unicode="&#xe7;"
d="M470 161l73 -30c-41 -93 -112 -139 -213 -139c-74 0 -133 25 -176 76s-65 112 -65 184s22 133 65 184s102 76 176 76c101 0 172 -46 213 -139l-73 -30c-27 62 -73 93 -140 93c-97 0 -155 -76 -155 -184s58 -184 155 -184c67 0 113 31 140 93zM319 -60h70l-83 -175l-95 45
z" />
<glyph glyph-name="egrave" unicode="&#xe8;"
d="M556 269v-35h-394c5 -100 66 -166 155 -166c72 0 126 33 162 100l67 -35c-49 -94 -125 -141 -229 -141c-72 0 -130 25 -175 74c-44 49 -66 111 -66 186c0 73 22 135 65 185c44 50 103 75 176 75c75 0 134 -23 176 -70c42 -46 63 -104 63 -173zM317 436
c-79 0 -132 -47 -149 -126h299c-15 80 -69 126 -150 126zM192 704h121l67 -144h-66z" />
<glyph glyph-name="eacute" unicode="&#xe9;"
d="M556 269v-35h-394c5 -100 66 -166 155 -166c72 0 126 33 162 100l67 -35c-49 -94 -125 -141 -229 -141c-72 0 -130 25 -175 74c-44 49 -66 111 -66 186c0 73 22 135 65 185c44 50 103 75 176 75c75 0 134 -23 176 -70c42 -46 63 -104 63 -173zM317 436
c-79 0 -132 -47 -149 -126h299c-15 80 -69 126 -150 126zM300 560h-66l67 144h121z" />
<glyph glyph-name="ecircumflex" unicode="&#xea;"
d="M556 269v-35h-394c5 -100 66 -166 155 -166c72 0 126 33 162 100l67 -35c-49 -94 -125 -141 -229 -141c-72 0 -130 25 -175 74c-44 49 -66 111 -66 186c0 73 22 135 65 185c44 50 103 75 176 75c75 0 134 -23 176 -70c42 -46 63 -104 63 -173zM317 436
c-79 0 -132 -47 -149 -126h299c-15 80 -69 126 -150 126zM237 566h-87l154 164h26l154 -164h-87l-80 85z" />
<glyph glyph-name="edieresis" unicode="&#xeb;"
d="M556 269v-35h-394c5 -100 66 -166 155 -166c72 0 126 33 162 100l67 -35c-49 -94 -125 -141 -229 -141c-72 0 -130 25 -175 74c-44 49 -66 111 -66 186c0 73 22 135 65 185c44 50 103 75 176 75c75 0 134 -23 176 -70c42 -46 63 -104 63 -173zM317 436
c-79 0 -132 -47 -149 -126h299c-15 80 -69 126 -150 126zM225 708c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57zM409 708c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57z" />
<glyph glyph-name="igrave" unicode="&#xec;"
d="M283 430h-154v74h238v-430h186v-74h-444v74h174v356zM174 704h121l67 -144h-66z" />
<glyph glyph-name="iacute" unicode="&#xed;"
d="M283 430h-154v74h238v-430h186v-74h-444v74h174v356zM271 560h-66l67 144h121z" />
<glyph glyph-name="icircumflex" unicode="&#xee;"
d="M283 430h-154v74h238v-430h186v-74h-444v74h174v356zM216 566h-87l154 164h26l154 -164h-87l-80 85z" />
<glyph glyph-name="idieresis" unicode="&#xef;"
d="M283 430h-154v74h238v-430h186v-74h-444v74h174v356zM205 708c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57zM389 708c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57z" />
<glyph glyph-name="eth" unicode="&#xf0;"
d="M316 601l-39 -59l-59 42l38 57c-21 12 -48 25 -80 38l40 61c30 -13 57 -26 80 -39l37 54l58 -42l-34 -51c69 -52 119 -110 150 -173s46 -138 46 -227c0 -77 -22 -141 -65 -193c-43 -51 -102 -77 -175 -77s-131 25 -175 76c-43 51 -65 112 -65 184s22 133 65 184
c44 51 102 76 175 76c44 0 96 -19 116 -44c-20 53 -54 89 -113 133zM467 252c0 51 -14 95 -41 130c-27 36 -65 54 -113 54c-49 0 -87 -18 -114 -55c-27 -36 -40 -79 -40 -129s13 -93 40 -130c27 -36 65 -54 114 -54s86 18 113 54c27 37 41 80 41 130z" />
<glyph glyph-name="ntilde" unicode="&#xf1;"
d="M522 351v-351h-84v333c0 69 -31 103 -93 103c-41 0 -76 -21 -105 -64c-29 -42 -43 -98 -43 -169v-203h-84v504h84v-93c37 60 102 101 171 101c103 0 154 -61 154 -161zM198 586l-49 38c24 45 64 76 107 76c24 0 48 -7 72 -20s44 -20 59 -20c25 0 47 12 66 36l49 -39
c-24 -44 -64 -75 -107 -75c-24 0 -48 7 -72 20s-44 20 -59 20c-25 0 -47 -12 -66 -36z" />
<glyph glyph-name="ograve" unicode="&#xf2;"
d="M130 68c-45 51 -68 112 -68 184s23 133 68 184s105 76 180 76s135 -25 180 -76s68 -112 68 -184s-23 -133 -68 -184s-105 -76 -180 -76s-135 25 -180 76zM192 382c-29 -36 -44 -79 -44 -130s15 -94 44 -130s69 -54 118 -54s89 18 118 54s44 79 44 130s-15 94 -44 130
s-69 54 -118 54s-89 -18 -118 -54zM189 704h121l67 -144h-66z" />
<glyph glyph-name="oacute" unicode="&#xf3;"
d="M130 68c-45 51 -68 112 -68 184s23 133 68 184s105 76 180 76s135 -25 180 -76s68 -112 68 -184s-23 -133 -68 -184s-105 -76 -180 -76s-135 25 -180 76zM192 382c-29 -36 -44 -79 -44 -130s15 -94 44 -130s69 -54 118 -54s89 18 118 54s44 79 44 130s-15 94 -44 130
s-69 54 -118 54s-89 -18 -118 -54zM296 560h-66l67 144h121z" />
<glyph glyph-name="ocircumflex" unicode="&#xf4;"
d="M130 68c-45 51 -68 112 -68 184s23 133 68 184s105 76 180 76s135 -25 180 -76s68 -112 68 -184s-23 -133 -68 -184s-105 -76 -180 -76s-135 25 -180 76zM192 382c-29 -36 -44 -79 -44 -130s15 -94 44 -130s69 -54 118 -54s89 18 118 54s44 79 44 130s-15 94 -44 130
s-69 54 -118 54s-89 -18 -118 -54zM230 566h-87l154 164h26l154 -164h-87l-80 85z" />
<glyph glyph-name="otilde" unicode="&#xf5;"
d="M130 68c-45 51 -68 112 -68 184s23 133 68 184s105 76 180 76s135 -25 180 -76s68 -112 68 -184s-23 -133 -68 -184s-105 -76 -180 -76s-135 25 -180 76zM192 382c-29 -36 -44 -79 -44 -130s15 -94 44 -130s69 -54 118 -54s89 18 118 54s44 79 44 130s-15 94 -44 130
s-69 54 -118 54s-89 -18 -118 -54zM182 586l-49 38c24 45 64 76 107 76c24 0 48 -7 72 -20s44 -20 59 -20c25 0 47 12 66 36l49 -39c-24 -44 -64 -75 -107 -75c-24 0 -48 7 -72 20s-44 20 -59 20c-25 0 -47 -12 -66 -36z" />
<glyph glyph-name="odieresis" unicode="&#xf6;"
d="M130 68c-45 51 -68 112 -68 184s23 133 68 184s105 76 180 76s135 -25 180 -76s68 -112 68 -184s-23 -133 -68 -184s-105 -76 -180 -76s-135 25 -180 76zM192 382c-29 -36 -44 -79 -44 -130s15 -94 44 -130s69 -54 118 -54s89 18 118 54s44 79 44 130s-15 94 -44 130
s-69 54 -118 54s-89 -18 -118 -54zM218 708c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57zM402 708c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57z" />
<glyph glyph-name="divide" unicode="&#xf7;"
d="M263 443c-25 25 -25 71 0 95c25 25 69 25 94 0c25 -24 25 -70 0 -95c-25 -24 -69 -24 -94 0zM530 280h-440v74h440v-74zM263 95c-25 25 -25 71 0 95c25 25 69 25 94 0c25 -24 25 -70 0 -95c-25 -24 -69 -24 -94 0z" />
<glyph glyph-name="oslash" unicode="&#xf8;"
d="M439 477l55 70l61 -43l-59 -75c41 -49 62 -108 62 -177c0 -72 -23 -133 -68 -184s-105 -76 -180 -76c-48 0 -91 12 -129 35l-55 -70l-61 43l59 75c-41 49 -62 108 -62 177c0 72 23 133 68 184s105 76 180 76c48 0 91 -12 129 -35zM472 252c0 41 -10 78 -29 109l-213 -272
c25 -14 51 -21 80 -21c49 0 89 18 118 54s44 79 44 130zM148 252c0 -41 10 -78 29 -109l213 272c-25 14 -51 21 -80 21c-49 0 -89 -18 -118 -54s-44 -79 -44 -130z" />
<glyph glyph-name="ugrave" unicode="&#xf9;"
d="M103 153v351h84v-333c0 -69 31 -103 93 -103c41 0 76 21 105 63c29 43 43 99 43 170v203h84v-504h-84v93c-37 -60 -102 -101 -171 -101c-103 0 -154 61 -154 161zM198 704h121l67 -144h-66z" />
<glyph glyph-name="uacute" unicode="&#xfa;"
d="M103 153v351h84v-333c0 -69 31 -103 93 -103c41 0 76 21 105 63c29 43 43 99 43 170v203h84v-504h-84v93c-37 -60 -102 -101 -171 -101c-103 0 -154 61 -154 161zM308 560h-66l67 144h121z" />
<glyph glyph-name="ucircumflex" unicode="&#xfb;"
d="M103 153v351h84v-333c0 -69 31 -103 93 -103c41 0 76 21 105 63c29 43 43 99 43 170v203h84v-504h-84v93c-37 -60 -102 -101 -171 -101c-103 0 -154 61 -154 161zM230 566h-87l154 164h26l154 -164h-87l-80 85z" />
<glyph glyph-name="udieresis" unicode="&#xfc;"
d="M103 153v351h84v-333c0 -69 31 -103 93 -103c41 0 76 21 105 63c29 43 43 99 43 170v203h84v-504h-84v93c-37 -60 -102 -101 -171 -101c-103 0 -154 61 -154 161zM218 708c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57zM402 708
c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57z" />
<glyph glyph-name="yacute" unicode="&#xfd;"
d="M335 135l149 369h91l-299 -708h-84l98 238l-218 470h94zM330 560h-66l67 144h121z" />
<glyph glyph-name="thorn" unicode="&#xfe;"
d="M326 -8c-65 0 -123 32 -154 75v-271h-84v912h84v-268c40 48 91 72 154 72c145 0 231 -103 231 -260s-86 -260 -231 -260zM430 119c27 34 41 78 41 133s-14 99 -41 133s-65 51 -112 51s-85 -17 -112 -51s-41 -78 -41 -133s14 -99 41 -133s65 -51 112 -51s85 17 112 51z
" />
<glyph glyph-name="ydieresis" unicode="&#xff;"
d="M335 135l149 369h91l-299 -708h-84l98 238l-218 470h94zM233 708c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57zM417 708c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57z" />
<glyph glyph-name="dotlessi" unicode="&#x131;"
d="M283 430h-154v74h238v-430h186v-74h-444v74h174v356z" />
<glyph glyph-name="Lslash" unicode="&#x141;"
d="M133 263l-54 -30l-36 65l90 51v351h88v-301l110 62l36 -65l-146 -83v-229h357v-84h-445v263z" />
<glyph glyph-name="lslash" unicode="&#x142;"
d="M209 366v258h-139v76h223v-287l84 48l36 -64l-120 -68v-139c0 -81 35 -122 106 -122c65 0 104 40 117 121l76 -15c-17 -120 -88 -182 -193 -182c-117 0 -190 75 -190 199v90l-84 -47l-36 64z" />
<glyph glyph-name="OE" unicode="&#x152;"
d="M299 700h262v-84h-183v-201h156v-84h-156v-247h193v-84h-272c-159 0 -261 118 -261 350s102 350 261 350zM129 350c0 -191 53 -266 161 -266v540c-107 0 -161 -82 -161 -274z" />
<glyph glyph-name="oe" unicode="&#x153;"
d="M321 -8c-75 0 -135 25 -180 76s-68 112 -68 184s23 133 68 184s105 76 180 76s134 -23 176 -70c42 -46 63 -104 63 -173v-35h-197v-162c51 11 91 43 120 96l67 -35c-49 -94 -125 -141 -229 -141zM159 252c0 -87 42 -159 118 -179v357c-75 -19 -118 -93 -118 -178z
M363 310h108c-14 70 -50 111 -108 122v-122z" />
<glyph glyph-name="Scaron" unicode="&#x160;"
d="M536 558l-77 -39c-31 70 -78 105 -142 105c-77 0 -126 -40 -126 -108c0 -34 13 -59 38 -74c26 -15 67 -30 124 -45c51 -13 78 -21 115 -41c55 -28 81 -68 84 -141c0 -148 -91 -223 -232 -223c-135 0 -234 73 -261 208l82 32c27 -104 87 -156 179 -156
c88 0 144 44 144 127c0 29 -12 51 -25 64c-7 7 -18 13 -34 19c-31 13 -49 19 -100 31c-49 12 -73 19 -113 39c-56 29 -85 73 -89 157c0 57 19 104 57 140c38 37 90 55 157 55c113 0 187 -65 219 -150zM329 762h-26l-154 164h87l80 -85l80 85h87z" />
<glyph glyph-name="scaron" unicode="&#x161;"
d="M307 512c83 0 144 -36 184 -109l-66 -47c-29 53 -70 80 -121 80c-48 0 -87 -22 -87 -67c0 -41 37 -62 117 -78c43 -9 70 -15 103 -30c47 -20 78 -54 78 -107c0 -50 -19 -90 -56 -119s-83 -43 -138 -43c-104 0 -188 53 -219 146l80 30c23 -63 71 -100 139 -100
c61 0 107 27 107 78c0 40 -38 54 -130 74c-103 21 -163 57 -163 146c0 44 17 79 50 106s74 40 122 40zM323 566h-26l-154 164h87l80 -85l80 85h87z" />
<glyph glyph-name="Ydieresis" unicode="&#x178;"
d="M266 0v276l-225 424h97l172 -336l172 336h97l-225 -424v-276h-88zM218 904c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57zM402 904c33 0 57 -25 57 -57s-24 -56 -57 -56c-31 0 -56 24 -56 56s25 57 56 57z" />
<glyph glyph-name="Zcaron" unicode="&#x17d;"
d="M406 616h-329v84h456v-42l-343 -574h354v-84h-481v42zM318 762h-26l-154 164h87l80 -85l80 85h87z" />
<glyph glyph-name="zcaron" unicode="&#x17e;"
d="M374 428h-251v76h378v-36l-267 -392h279v-76h-403v36zM325 566h-26l-154 164h87l80 -85l80 85h87z" />
<glyph glyph-name="florin" unicode="&#x192;"
d="M8 -183l36 74c21 -18 46 -27 75 -27c49 0 80 32 93 95l91 469h-142l15 76h142l6 31c25 127 83 173 182 173c43 0 78 -10 106 -29l-36 -74c-21 18 -46 27 -75 27c-49 0 -80 -32 -93 -95l-6 -33h196l-15 -76h-196l-91 -467c-25 -127 -83 -173 -182 -173
c-43 0 -78 10 -106 29z" />
<glyph glyph-name="circumflex" unicode="&#x2c6;"
d="M230 566h-87l154 164h26l154 -164h-87l-80 85z" />
<glyph glyph-name="caron" unicode="&#x2c7;"
d="M323 566h-26l-154 164h87l80 -85l80 85h87z" />
<glyph glyph-name="breve" unicode="&#x2d8;"
d="M354 700h67c0 -61 -47 -109 -111 -109c-63 0 -111 48 -111 109h67c0 -27 19 -45 44 -45c27 0 44 18 44 45z" />
<glyph glyph-name="dotaccent" unicode="&#x2d9;"
d="M241 638c0 39 30 70 69 70s69 -31 69 -70s-30 -68 -69 -68s-69 31 -69 68z" />
<glyph glyph-name="ring" unicode="&#x2da;"
d="M211 653c0 56 43 100 99 100c57 0 99 -44 99 -100c0 -55 -42 -96 -99 -96c-56 0 -99 41 -99 96zM267 654c-5 -57 91 -57 86 0c5 60 -91 60 -86 0z" />
<glyph glyph-name="ogonek" unicode="&#x2db;"
d="M268 -60h69c-41 -35 -62 -63 -62 -84s11 -32 33 -32c24 0 35 11 62 43l47 -36c-37 -53 -68 -75 -120 -75c-57 0 -95 34 -95 87c0 35 22 68 66 97z" />
<glyph glyph-name="tilde" unicode="&#x2dc;"
d="M182 586l-49 38c24 45 64 76 107 76c24 0 48 -7 72 -20s44 -20 59 -20c25 0 47 12 66 36l49 -39c-24 -44 -64 -75 -107 -75c-24 0 -48 7 -72 20s-44 20 -59 20c-25 0 -47 -12 -66 -36z" />
<glyph glyph-name="hungarumlaut" unicode="&#x2dd;"
d="M188 560h-68l68 144h121zM378 560h-68l68 144h121z" />
<glyph glyph-name="uni2206" unicode="&#x394;"
d="M559 0h-498v20l210 680h78l210 -680v-20zM464 76l-154 505l-154 -505h308z" />
<glyph glyph-name="uni2206" unicode="&#x2206;"
d="M559 0h-498v20l210 680h78l210 -680v-20zM464 76l-154 505l-154 -505h308z" />
<glyph glyph-name="uni2126" unicode="&#x3a9;"
d="M274 0h-226v76h135l-31 56c-12 24 -28 68 -49 132c-20 64 -30 123 -30 176c0 165 84 268 237 268s237 -103 237 -268c0 -53 -9 -110 -28 -171c-18 -61 -36 -108 -55 -142l-27 -51h135v-76h-226v23l12 24c5 10 14 31 27 62c13 32 25 64 35 95s19 69 27 112
c8 44 12 85 12 124c0 124 -52 192 -149 192s-149 -68 -149 -192c0 -119 33 -247 98 -386c10 -21 15 -31 15 -31v-23z" />
<glyph glyph-name="uni2126" unicode="&#x2126;"
d="M274 0h-226v76h135l-31 56c-12 24 -28 68 -49 132c-20 64 -30 123 -30 176c0 165 84 268 237 268s237 -103 237 -268c0 -53 -9 -110 -28 -171c-18 -61 -36 -108 -55 -142l-27 -51h135v-76h-226v23l12 24c5 10 14 31 27 62c13 32 25 64 35 95s19 69 27 112
c8 44 12 85 12 124c0 124 -52 192 -149 192s-149 -68 -149 -192c0 -119 33 -247 98 -386c10 -21 15 -31 15 -31v-23z" />
<glyph glyph-name="pi" unicode="&#x3c0;"
d="M134 428h-88v76h528v-76h-88v-428h-84v428h-184v-428h-84v428z" />
<glyph glyph-name="uni2000" unicode="&#x2000;" horiz-adv-x="474"
/>
<glyph glyph-name="uni2001" unicode="&#x2001;" horiz-adv-x="949"
/>
<glyph glyph-name="uni2002" unicode="&#x2002;" horiz-adv-x="474"
/>
<glyph glyph-name="uni2003" unicode="&#x2003;" horiz-adv-x="949"
/>
<glyph glyph-name="uni2004" unicode="&#x2004;" horiz-adv-x="316"
/>
<glyph glyph-name="uni2005" unicode="&#x2005;" horiz-adv-x="237"
/>
<glyph glyph-name="uni2006" unicode="&#x2006;" horiz-adv-x="158"
/>
<glyph glyph-name="uni2007" unicode="&#x2007;" horiz-adv-x="158"
/>
<glyph glyph-name="uni2008" unicode="&#x2008;" horiz-adv-x="118"
/>
<glyph glyph-name="uni2009" unicode="&#x2009;" horiz-adv-x="189"
/>
<glyph glyph-name="uni200A" unicode="&#x200a;" horiz-adv-x="52"
/>
<glyph glyph-name="uni2010" unicode="&#x2010;"
d="M485 280h-349v74h349v-74z" />
<glyph glyph-name="uni2011" unicode="&#x2011;"
d="M485 280h-349v74h349v-74z" />
<glyph glyph-name="endash" unicode="&#x2013;"
d="M514 280h-409v74h409v-74z" />
<glyph glyph-name="emdash" unicode="&#x2014;"
d="M555 280h-490v74h490v-74z" />
<glyph glyph-name="quoteleft" unicode="&#x2018;"
d="M200 708h126l95 -248h-64z" />
<glyph glyph-name="quoteright" unicode="&#x2019;"
d="M263 460h-64l95 248h126z" />
<glyph glyph-name="quotesinglbase" unicode="&#x201a;"
d="M263 -57h-64l95 248h126z" />
<glyph glyph-name="quotedblleft" unicode="&#x201c;"
d="M308 708h126l95 -248h-64zM92 708h126l95 -248h-64z" />
<glyph glyph-name="quotedblright" unicode="&#x201d;"
d="M155 460h-64l95 248h126zM371 460h-64l95 248h126z" />
<glyph glyph-name="quotedblbase" unicode="&#x201e;"
d="M155 -57h-64l95 248h126zM371 -57h-64l95 248h126z" />
<glyph glyph-name="dagger" unicode="&#x2020;"
d="M270 424h-180v80h180v246h80v-246h180v-80h-180v-474h-80v474z" />
<glyph glyph-name="daggerdbl" unicode="&#x2021;"
d="M270 424h-180v80h180v246h80v-246h180v-80h-180v-148h180v-80h-180v-246h-80v246h-180v80h180v148z" />
<glyph glyph-name="bullet" unicode="&#x2022;"
d="M231 251c-21 22 -32 48 -32 79s11 57 32 78c22 22 48 33 79 33s57 -11 78 -33c22 -21 33 -47 33 -78s-11 -57 -33 -79c-21 -21 -47 -32 -78 -32s-57 11 -79 32z" />
<glyph glyph-name="ellipsis" unicode="&#x2026;"
d="M30 74c0 47 34 82 78 82c45 0 82 -37 82 -82c0 -44 -35 -78 -82 -78c-44 0 -78 34 -78 78zM230 74c0 47 34 82 78 82c45 0 82 -37 82 -82c0 -44 -35 -78 -82 -78c-44 0 -78 34 -78 78zM430 74c0 47 34 82 78 82c45 0 82 -37 82 -82c0 -44 -35 -78 -82 -78
c-44 0 -78 34 -78 78z" />
<glyph glyph-name="uni202F" unicode="&#x202f;" horiz-adv-x="189"
/>
<glyph glyph-name="perthousand" unicode="&#x2030;"
d="M468 -8c-42 0 -76 16 -103 47c-27 -31 -61 -47 -103 -47c-37 0 -69 13 -94 38c-25 26 -38 58 -38 95s13 69 38 94c25 26 57 39 94 39c42 0 76 -16 103 -47c27 31 61 47 103 47c37 0 69 -13 94 -39c25 -25 38 -57 38 -94s-13 -69 -38 -95c-25 -25 -57 -38 -94 -38z
M170 708c38 0 70 -13 95 -39c25 -25 38 -57 38 -94s-13 -69 -38 -95c-25 -25 -57 -38 -95 -38c-37 0 -69 13 -95 38c-25 26 -38 58 -38 95s13 69 38 94c26 26 58 39 95 39zM468 199c-41 0 -72 -31 -72 -74s31 -74 72 -74c44 0 71 31 71 74s-27 74 -71 74zM170 501
c43 0 71 31 71 74s-28 74 -71 74c-44 0 -72 -31 -72 -74s28 -74 72 -74zM262 199c-44 0 -71 -31 -71 -74s27 -74 71 -74c41 0 72 31 72 74s-31 74 -72 74zM45 262l507 353l34 -48l-507 -353z" />
<glyph glyph-name="guilsinglleft" unicode="&#x2039;"
d="M452 80l-294 199v62l294 199v-90l-209 -140l209 -140v-90z" />
<glyph glyph-name="guilsinglright" unicode="&#x203a;"
d="M168 540l294 -199v-62l-294 -199v90l209 140l-209 140v90z" />
<glyph glyph-name="fraction" unicode="&#x2044;"
d="M40 196l507 353l34 -48l-507 -353z" />
<glyph glyph-name="uni205F" unicode="&#x205f;" horiz-adv-x="237"
/>
<glyph glyph-name="uni2070" unicode="&#x2070;"
d="M399 403c-23 -31 -55 -47 -95 -47s-72 16 -96 47c-23 31 -35 74 -35 127s12 96 35 127c24 31 56 47 96 47s72 -16 95 -47c24 -31 36 -74 36 -127s-12 -96 -36 -127zM375 530c0 29 -4 52 -11 71l-85 -180c9 -3 17 -5 25 -5c47 0 71 38 71 114zM233 530c0 -29 4 -52 11 -71
l85 180c-9 3 -17 5 -25 5c-47 0 -71 -38 -71 -114z" />
<glyph glyph-name="uni2074" unicode="&#x2074;"
d="M378 360h-62v61h-150v27l139 252h73v-219h50v-60h-50v-61zM316 612l-69 -131h69v131z" />
<glyph glyph-name="uni2075" unicode="&#x2075;"
d="M199 451l62 14c7 -33 24 -49 51 -49c33 0 49 19 49 56c0 39 -16 58 -49 58c-21 0 -40 -8 -55 -25l-49 9l18 186h176v-60h-124l-9 -71c13 11 30 16 51 16c67 0 107 -38 107 -113s-46 -116 -115 -116c-59 0 -105 35 -113 95z" />
<glyph glyph-name="uni2076" unicode="&#x2076;"
d="M310 577c56 0 102 -39 102 -110c0 -63 -49 -111 -112 -111c-64 0 -113 48 -113 111c0 23 6 46 18 69l90 168h66l-68 -129c7 1 12 2 17 2zM300 517c-29 0 -47 -18 -47 -50s19 -51 47 -51c27 0 46 20 46 51c0 32 -19 50 -46 50z" />
<glyph glyph-name="uni2077" unicode="&#x2077;"
d="M450 677l-141 -317h-71l126 280h-155v60h241v-23z" />
<glyph glyph-name="uni2078" unicode="&#x2078;"
d="M309 708c61 0 100 -36 100 -91c0 -32 -13 -56 -39 -71c33 -15 49 -43 49 -84c0 -67 -43 -106 -110 -106s-110 39 -110 106c0 41 16 69 48 84c-25 15 -38 39 -38 71c0 55 40 91 100 91zM343 497c-16 19 -52 19 -68 0c-16 -17 -16 -52 0 -71c16 -17 52 -17 68 0
c16 19 16 54 0 71zM349 612c0 28 -13 42 -40 42s-40 -14 -40 -42s13 -42 40 -42s40 14 40 42z" />
<glyph glyph-name="uni2079" unicode="&#x2079;"
d="M301 483c-56 0 -102 39 -102 110c0 63 49 111 112 111c64 0 113 -48 113 -111c0 -23 -6 -46 -18 -69l-90 -168h-66l68 129c-7 -1 -12 -2 -17 -2zM311 543c29 0 47 18 47 50s-19 51 -47 51c-27 0 -46 -20 -46 -51c0 -32 19 -50 46 -50z" />
<glyph glyph-name="Euro" unicode="&#x20ac;"
d="M127 393h-76l34 74h51c29 152 115 241 246 241c94 0 161 -43 202 -128l-74 -40c-29 59 -71 88 -128 88c-83 0 -135 -54 -158 -161h253l-34 -74h-228c-1 -9 -1 -24 -1 -43s0 -34 1 -43h262l-34 -74h-219c23 -107 75 -161 158 -161c57 0 99 29 128 88l74 -40
c-41 -85 -108 -128 -202 -128c-131 0 -217 89 -246 241h-85l34 74h42c-1 9 -1 24 -1 43s0 34 1 43z" />
<glyph glyph-name="trademark" unicode="&#x2122;"
d="M105 642h-93v58h248v-58h-93v-342h-62v342zM306 300v400h67l77 -207l77 207h69v-400h-64v279l-63 -164h-38l-63 164v-279h-62z" />
<glyph glyph-name="partialdiff" unicode="&#x2202;"
d="M89 211c0 85 25 157 75 214c51 58 117 87 199 87c53 0 92 -17 116 -50c-13 113 -60 170 -141 170c-54 0 -93 -28 -118 -84l-78 20c33 85 104 140 199 140c149 0 223 -117 223 -351c0 -92 -21 -176 -62 -248c-41 -71 -119 -117 -216 -117c-59 0 -106 20 -143 59
c-36 39 -54 93 -54 160zM355 436c-55 0 -99 -23 -132 -69c-32 -46 -48 -99 -48 -158c0 -85 40 -141 116 -141c56 0 100 22 133 66c33 45 49 99 49 162c0 93 -39 140 -118 140z" />
<glyph glyph-name="product" unicode="&#x220f;"
d="M190 0h-84v700h408v-700h-84v624h-240v-624z" />
<glyph glyph-name="summation" unicode="&#x2211;"
d="M392 360v-20l-174 -264h320v-76h-456v20l224 330l-224 330v20h456v-76h-320z" />
<glyph glyph-name="minus" unicode="&#x2212;"
d="M530 280h-440v74h440v-74z" />
<glyph glyph-name="radical" unicode="&#x221a;"
d="M338 119l183 589h80l-231 -708h-66l-101 313h-104v76h153z" />
<glyph glyph-name="infinity" unicode="&#x221e;"
d="M310 423c19 57 76 101 141 101c93 0 154 -58 154 -165s-61 -165 -154 -165c-65 0 -122 44 -141 101c-19 -57 -76 -101 -141 -101c-93 0 -154 58 -154 165s61 165 154 165c65 0 122 -44 141 -101zM441 270c48 0 78 33 78 89s-30 89 -78 89c-41 0 -80 -41 -93 -89
c13 -48 52 -89 93 -89zM179 448c-48 0 -78 -33 -78 -89s30 -89 78 -89c41 0 80 41 93 89c-13 48 -52 89 -93 89z" />
<glyph glyph-name="integral" unicode="&#x222b;"
d="M8 -183l36 74c21 -18 46 -27 75 -27c49 0 80 32 93 95l112 576c25 127 83 173 182 173c43 0 78 -10 106 -29l-36 -74c-21 18 -46 27 -75 27c-49 0 -80 -32 -93 -95l-112 -576c-25 -127 -83 -173 -182 -173c-43 0 -78 10 -106 29z" />
<glyph glyph-name="approxequal" unicode="&#x2248;"
d="M125 168l-49 50c29 55 79 89 132 89c29 0 63 -8 102 -25s69 -25 92 -25c37 0 68 15 93 45l49 -51c-29 -55 -77 -88 -132 -88c-29 0 -63 8 -102 25c-38 17 -69 25 -92 25c-37 0 -68 -15 -93 -45zM125 368l-49 50c29 55 79 89 132 89c29 0 63 -8 102 -25s69 -25 92 -25
c37 0 68 15 93 45l49 -51c-29 -55 -77 -88 -132 -88c-29 0 -63 8 -102 25c-38 17 -69 25 -92 25c-37 0 -68 -15 -93 -45z" />
<glyph glyph-name="notequal" unicode="&#x2260;"
d="M294 356h-183v74h225l59 102l64 -37l-37 -65h88v-74h-131l-52 -92h183v-74h-225l-59 -102l-64 37l37 65h-88v74h131z" />
<glyph glyph-name="lessequal" unicode="&#x2264;"
d="M514 162l-409 196v88l409 196v-87l-325 -153l325 -153v-87zM530 0h-440v74h440v-74z" />
<glyph glyph-name="greaterequal" unicode="&#x2265;"
d="M106 642l409 -196v-88l-409 -196v87l325 153l-325 153v87zM90 74h440v-74h-440v74z" />
<glyph glyph-name="lozenge" unicode="&#x25ca;"
d="M351 0h-82l-208 350l208 350h82l208 -350zM151 350l159 -269l159 269l-159 269z" />
<glyph glyph-name="uniFB01" unicode="&#xfb01;"
d="M139 428h-92v76h92v26c0 115 77 178 185 178c69 0 128 -25 177 -76l-58 -55c-44 41 -72 55 -120 55c-63 0 -100 -32 -100 -95v-33h297v-504h-84v428h-213v-428h-84v428z" />
<glyph glyph-name="uniFB02" unicode="&#xfb02;"
d="M438 624h-145c-47 0 -70 -32 -70 -95v-25h104v-76h-104v-428h-84v428h-92v76h92v18c0 119 52 178 155 178h228v-700h-84v624z" />
<glyph glyph-name="CR.001"
/>
<glyph glyph-name="apple"
d="M606 617v-595c0 -12 -10 -22 -22 -22c-2 0 -4 0 -7 1l-267 77l-267 -77c-3 -1 -5 -1 -7 -1c-12 0 -22 10 -22 22v595c0 11 5 19 16 22l270 78c8 3 12 3 20 0l270 -78c11 -3 16 -11 16 -22zM288 366v303l-230 -67c4 -63 28 -116 71 -161c44 -45 97 -70 159 -75zM562 602
l-230 67v-303c62 5 115 30 158 75c44 45 68 98 72 161zM57 463v-412l231 67v204c-97 8 -183 61 -231 141zM332 118l231 -67v412c-49 -80 -134 -133 -231 -141v-204z" />
<glyph glyph-name="No"
d="M285 296v404h58v-530h-61l-188 404v-404h-58v530h61zM409 521c-37 41 -37 111 0 152c19 21 43 31 74 31s55 -10 74 -31c37 -41 37 -111 0 -152c-19 -21 -43 -31 -74 -31s-55 10 -74 31zM444 639c-19 -23 -19 -61 0 -85c20 -23 58 -23 77 0c20 24 20 62 0 85
c-19 24 -57 24 -77 0zM585 417h-204v42h204v-42z" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 230 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 690 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 342 KiB

View file

@ -0,0 +1,823 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display:none"><symbol viewBox='0 0 20 20' id='entypo-500px-with-circle'>
<path d="M8.349 9.257a2.55 2.55 0 0 0-.497-.293 1.257 1.257 0 0 0-.519-.117.907.907 0 0 0-.757.361 1.29 1.29 0 0 0-.281.812c0 .327.096.596.287.805s.455.314.791.314c.173 0 .345-.035.519-.104.173-.068.337-.154.491-.259.155-.104.301-.222.437-.354.137-.131.259-.262.368-.389a12.19 12.19 0 0 0-.382-.387 4.52 4.52 0 0 0-.457-.389zm4.278-.41a1.23 1.23 0 0 0-.525.117 2.309 2.309 0 0 0-.478.293c-.15.118-.293.248-.43.389-.137.141-.261.271-.368.389.118.137.245.272.382.402.137.133.281.25.438.355.153.104.314.188.483.252.168.064.349.096.539.096.337 0 .595-.109.777-.328a1.21 1.21 0 0 0 .272-.805c0-.318-.099-.592-.293-.818-.195-.228-.461-.342-.797-.342zM10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zm4.835 10.562c-.108.309-.263.58-.463.811-.2.233-.448.414-.743.546a2.4 2.4 0 0 1-.989.197c-.282 0-.546-.043-.791-.129a3.097 3.097 0 0 1-.689-.342 4.17 4.17 0 0 1-.608-.49c-.19-.188-.372-.38-.546-.58-.19.2-.377.393-.559.58a3.86 3.86 0 0 1-.581.49 2.864 2.864 0 0 1-.668.342c-.24.086-.511.129-.812.129a2.39 2.39 0 0 1-.996-.197 2.328 2.328 0 0 1-.75-.532 2.266 2.266 0 0 1-.478-.798A3.022 3.022 0 0 1 5 9.994c0-.355.052-.684.157-.989.105-.305.258-.568.457-.792.2-.224.445-.399.737-.532a2.36 2.36 0 0 1 .982-.197c.3 0 .575.045.825.137.25.09.481.211.695.361.215.149.415.322.602.518s.37.402.552.621c.174-.209.354-.414.539-.613.188-.201.387-.376.602-.525.213-.15.445-.271.695-.361.25-.092.521-.137.81-.137.365 0 .692.062.984.191.291.127.536.301.736.524.2.224.354.483.463.784.11.301.164.627.164.982 0 .356-.054.688-.165.996z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-500px'>
<path d="M6.398 14.775c.481-.174.928-.4 1.337-.683.41-.282.797-.608 1.16-.982.363-.373.736-.759 1.118-1.159.346.4.71.786 1.092 1.159.382.374.787.7 1.214.982.428.282.887.509 1.379.683.49.173 1.017.259 1.582.259.727 0 1.387-.132 1.977-.396a4.175 4.175 0 0 0 1.487-1.092 5.03 5.03 0 0 0 .928-1.623A5.911 5.911 0 0 0 20 9.932c0-.71-.109-1.364-.328-1.964a4.735 4.735 0 0 0-.928-1.569 4.234 4.234 0 0 0-1.473-1.05c-.583-.256-1.238-.383-1.966-.383-.581 0-1.123.092-1.623.273-.5.182-.964.423-1.391.723-.428.3-.828.65-1.201 1.051-.372.399-.732.81-1.078 1.228a25.66 25.66 0 0 0-1.104-1.242 8.026 8.026 0 0 0-1.201-1.037 5.966 5.966 0 0 0-1.391-.723 4.796 4.796 0 0 0-1.65-.273c-.728 0-1.385.133-1.965.396a4.358 4.358 0 0 0-1.474 1.064 4.54 4.54 0 0 0-.914 1.583A6.05 6.05 0 0 0 0 9.985c0 .71.108 1.374.326 1.992.219.619.537 1.15.955 1.597.419.446.919.801 1.5 1.064.584.264 1.246.396 1.993.396.6 0 1.142-.086 1.624-.259zM3.164 11.65c-.383-.418-.573-.955-.573-1.609 0-.6.186-1.142.561-1.624.372-.48.876-.723 1.515-.723.345 0 .689.078 1.035.232.346.154.678.35.997.587.317.237.622.496.912.777.291.283.546.542.765.778-.219.255-.464.515-.737.776a6.18 6.18 0 0 1-.872.71c-.311.21-.637.382-.983.519a2.79 2.79 0 0 1-1.036.205c-.675 0-1.202-.209-1.584-.628zm11.092.438a4.655 4.655 0 0 1-.968-.505 6.23 6.23 0 0 1-.874-.709 12.192 12.192 0 0 1-.764-.806c.218-.236.463-.495.736-.778.273-.281.56-.54.859-.776.3-.237.619-.433.955-.587a2.505 2.505 0 0 1 1.051-.232c.673 0 1.204.227 1.596.683.392.454.587 1 .587 1.638 0 .637-.183 1.172-.546 1.608-.364.438-.882.655-1.555.655a3.047 3.047 0 0 1-1.077-.191z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-add-to-list'>
<path d="M19.4 9H16V5.6c0-.6-.4-.6-1-.6s-1 0-1 .6V9h-3.4c-.6 0-.6.4-.6 1s0 1 .6 1H14v3.4c0 .6.4.6 1 .6s1 0 1-.6V11h3.4c.6 0 .6-.4.6-1s0-1-.6-1zm-12 0H.6C0 9 0 9.4 0 10s0 1 .6 1h6.8c.6 0 .6-.4.6-1s0-1-.6-1zm0 5H.6c-.6 0-.6.4-.6 1s0 1 .6 1h6.8c.6 0 .6-.4.6-1s0-1-.6-1zm0-10H.6C0 4 0 4.4 0 5s0 1 .6 1h6.8C8 6 8 5.6 8 5s0-1-.6-1z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-add-user'>
<path d="M15.989 19.129C16 17 13.803 15.74 11.672 14.822c-2.123-.914-2.801-1.684-2.801-3.334 0-.989.648-.667.932-2.481.12-.752.692-.012.802-1.729 0-.684-.313-.854-.313-.854s.159-1.013.221-1.793c.064-.817-.398-2.56-2.301-3.095-.332-.341-.557-.882.467-1.424-2.24-.104-2.761 1.068-3.954 1.93-1.015.756-1.289 1.953-1.24 2.59.065.78.223 1.793.223 1.793s-.314.17-.314.854c.11 1.718.684.977.803 1.729.284 1.814.933 1.492.933 2.481 0 1.65-.212 2.21-2.336 3.124C.663 15.53 0 17 .011 19.129.014 19.766 0 20 0 20h16s-.014-.234-.011-.871zM17 10V7h-2v3h-3v2h3v3h2v-3h3v-2h-3z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-address'>
<path d="M19.799 5.165l-2.375-1.83a1.997 1.997 0 0 0-.521-.237A2.035 2.035 0 0 0 16.336 3H9.5l.801 5h6.035c.164 0 .369-.037.566-.098s.387-.145.521-.236l2.375-1.832c.135-.091.202-.212.202-.334s-.067-.243-.201-.335zM8.5 1h-1a.5.5 0 0 0-.5.5V5H3.664c-.166 0-.37.037-.567.099-.198.06-.387.143-.521.236L.201 7.165C.066 7.256 0 7.378 0 7.5c0 .121.066.242.201.335l2.375 1.832c.134.091.323.175.521.235.197.061.401.098.567.098H7v8.5a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-17a.5.5 0 0 0-.5-.5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-adjust'>
<path d="M19 9.199h-.98c-.553 0-1 .359-1 .801 0 .441.447.799 1 .799H19c.552 0 1-.357 1-.799 0-.441-.449-.801-1-.801zM10 4.5A5.483 5.483 0 0 0 4.5 10c0 3.051 2.449 5.5 5.5 5.5 3.05 0 5.5-2.449 5.5-5.5S13.049 4.5 10 4.5zm0 9.5c-2.211 0-4-1.791-4-4 0-2.211 1.789-4 4-4v8zm-7-4c0-.441-.449-.801-1-.801H1c-.553 0-1 .359-1 .801 0 .441.447.799 1 .799h1c.551 0 1-.358 1-.799zm7-7c.441 0 .799-.447.799-1V1c0-.553-.358-1-.799-1-.442 0-.801.447-.801 1v1c0 .553.359 1 .801 1zm0 14c-.442 0-.801.447-.801 1v1c0 .553.359 1 .801 1 .441 0 .799-.447.799-1v-1c0-.553-.358-1-.799-1zm7.365-13.234c.391-.391.454-.961.142-1.273s-.883-.248-1.272.143l-.7.699c-.391.391-.454.961-.142 1.273s.883.248 1.273-.143l.699-.699zM3.334 15.533l-.7.701c-.391.391-.454.959-.142 1.271s.883.25 1.272-.141l.7-.699c.391-.391.454-.961.142-1.274s-.883-.247-1.272.142zm.431-12.898c-.39-.391-.961-.455-1.273-.143s-.248.883.141 1.274l.7.699c.391.391.96.455 1.272.143s.249-.883-.141-1.273l-.699-.7zm11.769 14.031l.7.699c.391.391.96.453 1.272.143.312-.312.249-.883-.142-1.273l-.699-.699c-.391-.391-.961-.455-1.274-.143s-.248.882.143 1.273z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-air'>
<path d="M2.643 6.357c1.747-1.5 3.127-2.686 6.872-.57 1.799 1.016 3.25 1.4 4.457 1.398 2.115 0 3.486-1.176 4.671-2.193a1.037 1.037 0 0 0 .122-1.439.987.987 0 0 0-1.41-.125c-1.746 1.502-3.127 2.688-6.872.57-4.948-2.793-7.266-.803-9.128.797a1.037 1.037 0 0 0-.121 1.439.986.986 0 0 0 1.409.123zm14.712 2.178c-1.746 1.5-3.127 2.688-6.872.57-4.948-2.795-7.266-.804-9.128.795a1.037 1.037 0 0 0-.121 1.439.986.986 0 0 0 1.409.125c1.747-1.501 3.127-2.687 6.872-.572 1.799 1.018 3.25 1.4 4.457 1.4 2.115 0 3.486-1.176 4.671-2.195a1.035 1.035 0 0 0 .122-1.438.986.986 0 0 0-1.41-.124zm0 5.106c-1.746 1.502-3.127 2.688-6.872.572-4.948-2.795-7.266-.805-9.128.795a1.037 1.037 0 0 0-.121 1.439.985.985 0 0 0 1.409.123c1.747-1.5 3.127-2.685 6.872-.57 1.799 1.016 3.25 1.4 4.457 1.4 2.115 0 3.486-1.178 4.671-2.195a1.037 1.037 0 0 0 .122-1.439.988.988 0 0 0-1.41-.125z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-aircraft-landing'>
<path d="M18.752 16.038c-.097.266-.822 1.002-6.029-.878l-5.105-1.843C5.841 12.676 3.34 11.668 2.36 11.1c-.686-.397-.836-1.282-.836-1.282s-.163-2.956-.263-3.684c-.1-.728.095-.853.796-.492.436.225 1.865 2.562 2.464 3.567 1.512.381 2.862.761 3.493.949-.257-1.717-.74-4.928-.913-5.933-.166-.963.55-.535.55-.535.331.19.983.661 1.206 1.002 1.522 2.326 3.672 6.6 3.836 6.928.896.28 2.277.733 3.102 1.03 2.156.779 3.087 3.034 2.957 3.388z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-aircraft-take-off'>
<path d="M19.87 6.453c.119.257.127 1.29-4.884 3.642l-4.913 2.306c-1.71.803-4.191 1.859-5.285 2.151-.766.204-1.497-.316-1.497-.316S1.085 12.261.499 11.817c-.585-.444-.535-.67.215-.91.467-.149 3.13.493 4.265.78A91.697 91.697 0 0 1 8.12 9.889c-1.396-1.033-4.008-2.962-4.841-3.55-.799-.565.01-.768.01-.768.368-.099 1.162-.228 1.562-.144 2.721.569 7.263 2.071 7.611 2.186a90.641 90.641 0 0 1 2.922-1.465c2.075-.974 4.327-.037 4.486.305z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-aircraft'>
<path d="M12.496 17.414c-.394-1.096-1.805-4.775-2.39-6.297-1.103.737-2.334 1.435-3.512 1.928-.366 1.28-1.094 3.709-1.446 4.033-.604.557-.832.485-.925-.279-.093-.764-.485-3.236-.485-3.236s-2.162-1.219-2.84-1.568-.667-.591.057-.974c.422-.223 2.927-.085 4.242.005.861-.951 1.931-1.882 2.993-2.679-1.215-1.076-4.15-3.675-5.034-4.424-.776-.658.079-.797.079-.797.39-.07 1.222-.132 1.628-.009 2.524.763 6.442 2.068 7.363 2.376l1.162-.821c4.702-3.33 5.887-2.593 6.111-2.27s.503 1.701-4.199 5.032l-1.16.823c-.029.98-.157 5.151-.311 7.811-.025.428-.367 1.198-.565 1.544-.001 0-.423.765-.768-.198z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-align-bottom'>
<path d="M13 11h-2V3H9v8H7l3 3 3-3zm4.4 4H2.6c-.552 0-.6.447-.6 1 0 .553.048 1 .6 1h14.8c.552 0 .6-.447.6-1 0-.553-.048-1-.6-1z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-align-horizontal-middle'>
<path d="M8 10L5 7v2H1v2h4v2l3-3zm7 3v-2h4V9h-4V7l-3 3 3 3zm-5 5c.553 0 1-.049 1-.6V2.6c0-.553-.447-.6-1-.6-.552 0-1 .047-1 .6v14.8c0 .551.448.6 1 .6z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-align-left'>
<path d="M6 10l3 3v-2h8V9H9V7l-3 3zM4 2c-.553 0-1 .047-1 .6v14.8c0 .551.447.6 1 .6.552 0 1-.049 1-.6V2.6c0-.553-.448-.6-1-.6z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-align-right'>
<path d="M11 7v2H3v2h8v2l3-3-3-3zm4-4.4v14.8c0 .551.448.6 1 .6.553 0 1-.049 1-.6V2.6c0-.553-.447-.6-1-.6-.552 0-1 .047-1 .6z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-align-top'>
<path d="M10 6L7 9h2v8h2V9h2l-3-3zm8-2c0-.553-.048-1-.6-1H2.6c-.552 0-.6.447-.6 1 0 .553.048 1 .6 1h14.8c.552 0 .6-.447.6-1z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-align-vertical-middle'>
<path d="M10 12l-3 3h2v4h2v-4h2l-3-3zm3-7h-2V1H9v4H7l3 3 3-3zm5 5c0-.553-.048-1-.6-1H2.6c-.552 0-.6.447-.6 1 0 .551.048 1 .6 1h14.8c.552 0 .6-.449.6-1z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-app-store'>
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.564 13.862c-.413.916-.612 1.325-1.144 2.135-.742 1.13-1.79 2.538-3.087 2.55-1.152.01-1.448-.75-3.013-.741-1.564.008-1.89.755-3.043.744-1.297-.012-2.29-1.283-3.033-2.414-2.077-3.16-2.294-6.87-1.013-8.843.91-1.401 2.347-2.221 3.697-2.221 1.375 0 2.24.754 3.376.754 1.103 0 1.775-.756 3.365-.756 1.2 0 2.474.655 3.381 1.785-2.972 1.629-2.49 5.873.514 7.007zM12.463 3.808c.577-.742 1.016-1.788.857-2.858-.944.065-2.047.665-2.692 1.448-.584.71-1.067 1.763-.88 2.787 1.03.031 2.096-.584 2.715-1.377z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-archive'>
<path d="M13.981 2H6.018s-.996 0-.996 1h9.955c0-1-.996-1-.996-1zm2.987 3c0-1-.995-1-.995-1H4.027s-.995 0-.995 1v1h13.936V5zm1.99 1l-.588-.592V7H1.63V5.408L1.041 6C.452 6.592.03 6.75.267 8c.236 1.246 1.379 8.076 1.549 9 .186 1.014 1.217 1 1.217 1h13.936s1.03.014 1.217-1c.17-.924 1.312-7.754 1.549-9 .235-1.25-.187-1.408-.777-2zM14 11.997c0 .554-.449 1.003-1.003 1.003H7.003A1.003 1.003 0 0 1 6 11.997V10h1v2h6v-2h1v1.997z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-area-graph'>
<path d="M20 2v16H.32c-.318 0-.416-.209-.216-.465l4.469-5.748a.526.526 0 0 1 .789-.062l1.419 1.334a.473.473 0 0 0 .747-.096l3.047-4.74a.466.466 0 0 1 .741-.09l2.171 2.096c.232.225.559.18.724-.1l5.133-7.785C19.51 2.062 19.75 2 20 2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-arrow-bold-down'>
<path d="M2.5 10H6V3h8v7h3.5L10 17.5 2.5 10z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-arrow-bold-left'>
<path d="M10 2.5V6h7v8h-7v3.5L2.5 10 10 2.5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-arrow-bold-right'>
<path d="M17.5 10L10 17.5V14H3V6h7V2.5l7.5 7.5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-arrow-bold-up'>
<path d="M10 2.5l7.5 7.5H14v7H6v-7H2.5L10 2.5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-arrow-down'>
<path d="M10 17.5L3.5 11H7V3h6v8h3.5L10 17.5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-arrow-left'>
<path d="M2.5 10L9 3.5V7h8v6H9v3.5L2.5 10z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-arrow-long-down'>
<path d="M10 19.25L4.5 14H8V1h4v13h3.5L10 19.25z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-arrow-long-left'>
<path d="M.75 10L6 4.5V8h13v4H6v3.5L.75 10z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-arrow-long-right'>
<path d="M14 15.5V12H1V8h13V4.5l5.25 5.5L14 15.5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-arrow-long-up'>
<path d="M10 .75L15.5 6H12v13H8V6H4.5L10 .75z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-arrow-right'>
<path d="M11 16.5V13H3V7h8V3.5l6.5 6.5-6.5 6.5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-arrow-up'>
<path d="M10 2.5L16.5 9H13v8H7V9H3.5L10 2.5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-arrow-with-circle-down'>
<path d="M10 .4C4.697.4.399 4.698.399 10A9.6 9.6 0 0 0 10 19.601c5.301 0 9.6-4.298 9.6-9.601 0-5.302-4.299-9.6-9.6-9.6zm-.001 17.2a7.6 7.6 0 1 1 0-15.2 7.6 7.6 0 1 1 0 15.2zM12 6H8v4H5.5l4.5 4.5 4.5-4.5H12V6z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-arrow-with-circle-left'>
<path d="M10 .4C4.697.4.399 4.698.399 10A9.6 9.6 0 0 0 10 19.601c5.301 0 9.6-4.298 9.6-9.601 0-5.302-4.299-9.6-9.6-9.6zm-.001 17.2a7.6 7.6 0 1 1 0-15.2 7.6 7.6 0 1 1 0 15.2zM10 5.5L5.5 10l4.5 4.5V12h4V8h-4V5.5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-arrow-with-circle-right'>
<path d="M10 .4C4.697.4.399 4.698.399 10A9.6 9.6 0 0 0 10 19.601c5.301 0 9.6-4.298 9.6-9.601 0-5.302-4.299-9.6-9.6-9.6zm-.001 17.2a7.6 7.6 0 1 1 0-15.2 7.6 7.6 0 1 1 0 15.2zM10 8H6v4h4v2.5l4.5-4.5L10 5.5V8z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-arrow-with-circle-up'>
<path d="M10 .4C4.697.4.399 4.698.399 10A9.6 9.6 0 0 0 10 19.601c5.301 0 9.6-4.298 9.6-9.601 0-5.302-4.299-9.6-9.6-9.6zm-.001 17.2a7.6 7.6 0 1 1 0-15.2 7.6 7.6 0 1 1 0 15.2zM10 5.5l4.5 4.5H12v4H8v-4H5.5L10 5.5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-attachment'>
<path d="M5.602 19.8c-1.293 0-2.504-.555-3.378-1.44-1.695-1.716-2.167-4.711.209-7.116l9.748-9.87c.988-1 2.245-1.387 3.448-1.06 1.183.32 2.151 1.301 2.468 2.498.322 1.22-.059 2.493-1.046 3.493l-9.323 9.44c-.532.539-1.134.858-1.738.922-.599.064-1.17-.13-1.57-.535-.724-.736-.828-2.117.378-3.337l6.548-6.63c.269-.272.705-.272.974 0s.269.714 0 .986l-6.549 6.631c-.566.572-.618 1.119-.377 1.364.106.106.266.155.451.134.283-.029.606-.216.909-.521l9.323-9.439c.64-.648.885-1.41.69-2.145a2.162 2.162 0 0 0-1.493-1.513c-.726-.197-1.48.052-2.12.7l-9.748 9.87c-1.816 1.839-1.381 3.956-.209 5.143 1.173 1.187 3.262 1.629 5.079-.212l9.748-9.87a.683.683 0 0 1 .974 0 .704.704 0 0 1 0 .987L9.25 18.15c-1.149 1.162-2.436 1.65-3.648 1.65z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-awareness-ribbon'>
<path d="M16.574 16.338c-.757-1.051-2.851-3.824-4.57-6.106.696-.999 1.251-1.815 1.505-2.242 1.545-2.594.874-4.26.022-5.67C12.677.909 12.542.094 10 .094c-2.543 0-2.678.815-3.531 2.227-.854 1.41-1.524 3.076.021 5.67.254.426.809 1.243 1.506 2.242-1.72 2.281-3.814 5.055-4.571 6.106-.176.244-.16.664.009 1.082.13.322.63 1.762.752 2.064.156.389.664.67 1.082.092.241-.334 2.582-3.525 4.732-6.522 2.149 2.996 4.491 6.188 4.732 6.522.417.578.926.297 1.082-.092.122-.303.622-1.742.752-2.064.167-.419.184-.839.008-1.083zm-6.94-9.275C8.566 5.579 7.802 3.852 7.802 3.852s.42-.758 2.198-.758 2.198.758 2.198.758-.766 1.727-1.833 3.211L10 7.56a40.64 40.64 0 0 1-.366-.497z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-back-in-time'>
<path d="M11 1.799c-4.445 0-8.061 3.562-8.169 7.996V10H.459l3.594 3.894L7.547 10H4.875v-.205C4.982 6.492 7.683 3.85 11 3.85c3.386 0 6.131 2.754 6.131 6.15 0 3.396-2.745 6.15-6.131 6.15a6.099 6.099 0 0 1-3.627-1.193l-1.406 1.504A8.13 8.13 0 0 0 11 18.199c4.515 0 8.174-3.67 8.174-8.199S15.515 1.799 11 1.799zM10 5v5a1.01 1.01 0 0 0 .293.707l3.2 3.2c.283-.183.55-.389.787-.628L12 11V5h-2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-back'>
<path d="M19 7v6c0 1.103-.896 2-2 2H3v-3h13V8H5v2L1 6.5 5 3v2h12a2 2 0 0 1 2 2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-baidu'>
<path d="M17.412 6.937c-.36-.283-.924-.4-1.463-.365-.416.026-.761.034-1.005.182-1.116.677-1.217 4.353.182 4.934 2.974 1.236 4.057-3.35 2.286-4.751zm-4.479 3.838c-.963-1.119-1.64-2.681-3.563-2.376-1.706.272-1.924 1.67-2.833 2.65-1.08 1.164-3.105 2.018-3.564 3.838-.335 1.329.116 2.892.913 3.473 1.566 1.137 4.474-.125 6.58.09 1.26.13 2.225.573 3.198.55 2.262-.054 4.09-1.67 3.107-4.295-.48-1.286-2.6-2.494-3.838-3.93zm-.274-3.93c1.134.033 2.302-1.264 2.376-2.467.098-1.57-.93-3.143-2.467-2.741-.914.239-1.664 1.41-1.736 2.56-.083 1.331.617 2.615 1.827 2.649zM8.273 6.48C9.45 6.321 9.94 4.908 9.736 3.282 9.566 1.943 8.84.645 7.268 1.089 5.103 1.7 5.448 6.862 8.273 6.48zM4.16 10.592c2.583-.385 1.98-5.938-.822-5.3-2.41.55-2.087 5.735.822 5.3z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-bar-graph'>
<path d="M17 1h-2a1 1 0 0 0-1 1v16.992h4V2a1 1 0 0 0-1-1zm-6 6H9a1 1 0 0 0-1 1v10.992h4V8a1 1 0 0 0-1-1zm-6 6H3a1 1 0 0 0-1 1v4.992h4V14a1 1 0 0 0-1-1z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-basecamp'>
<path d="M10 2C5.327 2 .7 8.481.7 14.422.7 15.799 5.234 18 10 18s9.3-2.201 9.3-3.578C19.3 8.481 14.673 2 10 2zm.006 13.615c-5.198 0-6.673-2.068-6.673-2.722 0-1.287 2.13-4.485 2.906-4.485.719 0 1.542 1.811 2.314 1.811 1.241 0 2.567-3.954 3.579-3.954s4.601 5.178 4.601 6.749c0 .271-1.084 2.601-6.727 2.601z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-battery'>
<path d="M15.408 10c0-2.766 1.277-4.32 2.277-4.32H19C18.332 4.621 17.779 4 15.342 4H5.334C1.6 4 0 7.441 0 10s1.6 6 5.334 6h10.008c2.438 0 2.99-.621 3.658-1.68h-1.315c-1 0-2.277-1.554-2.277-4.32zm-2.72 1.795c-.164.25-.676.016-.676.016l-2.957-1.338s-.264.67-.467 1.141c-.205.471-.361 1.004-1.209.408-.849-.598-3.581-3.25-3.581-3.25s-.345-.284-.173-.551c.163-.252.676-.016.676-.016l2.956 1.336s.265-.668.468-1.139c.205-.47.361-1.006 1.209-.408.849.596 3.58 3.25 3.58 3.25s.345.283.174.551zm6.186-3.867h-.749c-.559 0-1.105.754-1.105 1.979 0 1.227.547 1.98 1.105 1.98h.749c.56 0 1.126-.754 1.126-1.98 0-1.225-.566-1.979-1.126-1.979z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-beamed-note'>
<path d="M17 1l-.002 13c0 1.243-1.301 3-3.748 3-1.243 0-2.25-.653-2.25-1.875 0-1.589 1.445-2.55 3-2.55.432 0 .754.059 1 .123V5.364L8 6.637V16h-.002c0 1.243-1.301 3-3.748 3C3.007 19 2 18.347 2 17.125c0-1.589 1.445-2.55 3-2.55.432 0 .754.059 1 .123V3l11-2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-behance'>
<path d="M8.072 9.301s1.892-.147 1.892-2.459c0-2.315-1.548-3.441-3.51-3.441H0v12.926h6.454s3.941.129 3.941-3.816c-.001-.001.171-3.21-2.323-3.21zM2.844 5.697h3.61s.878 0 .878 1.344c0 1.346-.516 1.541-1.102 1.541H2.844V5.697zm3.427 8.332H2.844v-3.455h3.61s1.308-.018 1.308 1.775c0 1.512-.977 1.669-1.491 1.68zm9.378-7.341c-4.771 0-4.767 4.967-4.767 4.967s-.326 4.941 4.767 4.941c0 0 4.243.254 4.243-3.437H17.71s.072 1.391-1.988 1.391c0 0-2.184.152-2.184-2.25h6.423c.001-.001.709-5.612-4.312-5.612zm1.941 3.886h-4.074s.266-1.992 2.182-1.992 1.892 1.992 1.892 1.992zm.507-6.414H12.98v1.594h5.117V4.16z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-bell'>
<path d="M14.65 8.512c-2.28-4.907-3.466-6.771-7.191-6.693-1.327.027-1.009-.962-2.021-.587-1.01.375-.143.924-1.177 1.773-2.902 2.383-2.635 4.587-1.289 9.84.567 2.213-1.367 2.321-.602 4.465.559 1.564 4.679 2.219 9.025.607 4.347-1.613 7.086-4.814 6.527-6.378-.765-2.145-2.311-.961-3.272-3.027zm-3.726 8.083c-3.882 1.44-7.072.594-7.207.217-.232-.65 1.253-2.816 5.691-4.463 4.438-1.647 6.915-1.036 7.174-.311.153.429-1.775 3.116-5.658 4.557zm-1.248-3.494c-2.029.753-3.439 1.614-4.353 2.389.643.584 1.847.726 3.046.281 1.527-.565 2.466-1.866 2.095-2.904l-.016-.036c-.251.082-.508.171-.772.27z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-blackboard'>
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.539 20H6l1.406-3.698-2.966-1.004L2.539 20zm10.055-3.698L14 20h3.461l-1.901-4.702-2.966 1.004zM18 2h-6.5L11 0H9l-.5 2H2a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-block'>
<path d="M10 .4C4.697.4.399 4.698.399 10A9.6 9.6 0 0 0 10 19.601c5.301 0 9.6-4.298 9.6-9.601 0-5.302-4.299-9.6-9.6-9.6zM2.399 10a7.6 7.6 0 0 1 12.417-5.877L4.122 14.817A7.568 7.568 0 0 1 2.399 10zm7.6 7.599a7.56 7.56 0 0 1-4.815-1.722L15.878 5.184a7.6 7.6 0 0 1-5.879 12.415z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-book'>
<path d="M17 5.95v10.351c0 .522-.452.771-1 1.16-.44.313-1-.075-1-.587V6.76c0-.211-.074-.412-.314-.535-.24-.123-7.738-4.065-7.738-4.065-.121-.045-.649-.378-1.353-.016-.669.344-1.033.718-1.126.894l8.18 4.482c.217.114.351.29.351.516v10.802a.67.67 0 0 1-.369.585.746.746 0 0 1-.333.077.736.736 0 0 1-.386-.104c-.215-.131-7.774-4.766-8.273-5.067-.24-.144-.521-.439-.527-.658L3 3.385c0-.198-.023-.547.289-1.032C3.986 1.269 6.418.036 7.649.675l8.999 4.555c.217.112.352.336.352.72z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-bookmark'>
<path d="M14 2v17l-4-4-4 4V2c0-.553.585-1.02 1-1h6c.689-.02 1 .447 1 1z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-bookmarks'>
<path d="M15 0h-4a1 1 0 0 0-1 1l.023.222c1.102 0 2 .897 2 2v11.359L13 13.4l3 3.6V1a1 1 0 0 0-1-1zM9.023 3H5a1 1 0 0 0-1 1v16l3-3.6 3 3.6V4c0-.553-.424-1-.977-1z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-bowl'>
<path d="M16.949 7.472c-2.176 2.902-4.095 3.002-7.046 3.152h-.101c-3.591-.002-6.138-1.336-6.138-1.832-.002-.471 2.298-1.697 5.605-1.819l.59-1.473-.057-.002c-4.908 0-7.791 1.562-7.791 3.051v2c0 .918.582 8.949 7.582 8.949s8-8.031 8-8.949v-2c0-.391-.201-.787-.584-1.158l-.06.081zm.64-4.77a1 1 0 0 0-1.399.201l-3.608 4.809 2.336-5.838a1 1 0 1 0-1.857-.742L9.802 9.274c2.882-.147 4.277-.227 6.067-2.611l1.919-2.561a1 1 0 0 0-.199-1.4z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-box'>
<path d="M18.399 2H1.6c-.332 0-.6.267-.6.6V5h18V2.6a.6.6 0 0 0-.601-.6zM2 16.6c0 .77.629 1.4 1.399 1.4h13.2c.77 0 1.4-.631 1.4-1.4V6H2v10.6zM7 8h6v2H7V8z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-briefcase'>
<path d="M9 10h2v2h9s-.149-4.459-.2-5.854C19.75 4.82 19.275 4 17.8 4h-3.208l-1.197-2.256C13.064 1.121 12.951 1 12.216 1H7.783c-.735 0-.847.121-1.179.744-.165.311-.7 1.318-1.196 2.256H2.199c-1.476 0-1.945.82-2 2.146C.145 7.473 0 12 0 12h9v-2zM7.649 2.916c.23-.432.308-.516.817-.516h3.067c.509 0 .588.084.816.516L12.924 4h-5.85l.575-1.084zM11 15H9v-2H.5s.124 1.797.199 3.322C.73 16.955.917 18 2.499 18H17.5c1.582 0 1.765-1.047 1.8-1.678.087-1.568.2-3.322.2-3.322H11v2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-browser'>
<path d="M18 2H2C.9 2 0 2.9 0 4v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM4.5 3.75a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5zm-2.75.75a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0zM18 16H2V7h16v9zm0-11H6V4h12.019L18 5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-brush'>
<path d="M2.763 13.563c-1.515 1.488-.235 3.016-2.247 5.279-.908 1.023 3.738.711 6.039-1.551.977-.961.701-2.359-.346-3.389-1.047-1.028-2.47-1.3-3.446-.339zM19.539.659C18.763-.105 10.16 6.788 7.6 9.305c-1.271 1.25-1.695 1.92-2.084 2.42-.17.219.055.285.154.336.504.258.856.496 1.311.943.456.447.699.793.959 1.289.053.098.121.318.342.152.51-.383 1.191-.801 2.462-2.049C13.305 9.88 20.317 1.422 19.539.659z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-bucket'>
<path d="M11 1C6.092 1 3.002 2.592 3.21 3.95c.06.389.225 1.945.434 3.273C1.239 8.157.442 9.672.549 10.907c.127 1.461 1.441 3.025 4.328 3.295 1.648.154 3.631-.75 4.916-2.295a1.4 1.4 0 1 1 1.238.691c-1.529 1.973-3.858 3.164-6.064 3.025.051.324.07.947.096 1.113.09.579 2.347 2.26 5.937 2.264 3.59-.004 5.847-1.685 5.938-2.263.088-.577 1.641-11.409 1.852-12.787C18.998 2.592 15.907 1 11 1zm-9.057 9.785c-.055-.643.455-1.498 1.924-2.139l.643 4.074c-1.604-.313-2.498-1.149-2.567-1.935zM11 6.024C7.41 6.022 4.863 4.69 4.863 4.192 4.861 3.698 7.41 2.402 11 2.404c3.59-.002 6.139 1.294 6.137 1.788 0 .498-2.547 1.83-6.137 1.832z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-bug'>
<path d="M10 1a4 4 0 0 0-4 4h8a4 4 0 0 0-4-4zm9 9h-3V7.503c0-.028-.007-.053-.008-.08l2.215-2.216a1 1 0 1 0-1.414-1.414l-2.215 2.215c-.028-.001-.053-.008-.08-.008H5.502c-.028 0-.053.007-.08.008L3.206 3.793a1 1 0 1 0-1.414 1.414l2.215 2.215C4.007 7.45 4 7.475 4 7.503V10H1a1 1 0 0 0 0 2h3c0 .78.156 1.52.427 2.204-.044.031-.094.05-.134.089L1.464 17.12a1 1 0 0 0 1.415 1.415l2.601-2.602A5.995 5.995 0 0 0 9 17.91V8h2v9.91a5.995 5.995 0 0 0 3.52-1.976l2.601 2.602a1 1 0 0 0 1.415-1.415l-2.829-2.828c-.04-.04-.09-.058-.134-.09A5.956 5.956 0 0 0 16 12h3a1 1 0 0 0 0-2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-cake'>
<path d="M9.584 6.036c1.952 0 2.591-1.381 1.839-2.843-.871-1.693 1.895-3.155.521-3.155-1.301 0-3.736 1.418-4.19 3.183-.339 1.324.296 2.815 1.83 2.815zm5.212 8.951l-.444-.383a1.355 1.355 0 0 0-1.735 0l-.442.382a3.326 3.326 0 0 1-2.174.801 3.325 3.325 0 0 1-2.173-.8l-.444-.384a1.353 1.353 0 0 0-1.734.001l-.444.383c-1.193 1.028-2.967 1.056-4.204.1V19a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-3.912c-1.237.954-3.011.929-4.206-.101zM10 7c-7.574 0-9 3.361-9 5v.469l1.164 1.003a1.355 1.355 0 0 0 1.735 0l.444-.383a3.353 3.353 0 0 1 4.345 0l.444.384c.484.417 1.245.42 1.735-.001l.442-.382a3.352 3.352 0 0 1 4.346-.001l.444.383c.487.421 1.25.417 1.735 0L19 12.469V12c0-1.639-1.426-5-9-5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-calculator'>
<path d="M14.6 1H5.398C4.629 1 4 1.629 4 2.4v15.2c0 .77.629 1.4 1.398 1.4H14.6c.769 0 1.4-.631 1.4-1.4V2.4c0-.771-.631-1.4-1.4-1.4zM7 12c.689 0 1.25.447 1.25 1S7.689 14 7 14c-.69 0-1.25-.447-1.25-1s.56-1 1.25-1zm-1.25-2c0-.553.56-1 1.25-1 .689 0 1.25.447 1.25 1 0 .553-.561 1-1.25 1-.69 0-1.25-.447-1.25-1zM7 15c.689 0 1.25.447 1.25 1S7.689 17 7 17c-.69 0-1.25-.447-1.25-1s.56-1 1.25-1zm3-3c.689 0 1.25.447 1.25 1s-.561 1-1.25 1c-.69 0-1.25-.447-1.25-1s.56-1 1.25-1zm-1.25-2c0-.553.56-1 1.25-1 .689 0 1.25.447 1.25 1 0 .553-.561 1-1.25 1-.69 0-1.25-.447-1.25-1zM10 15c.689 0 1.25.447 1.25 1s-.561 1-1.25 1c-.69 0-1.25-.447-1.25-1s.56-1 1.25-1zm3-3c.689 0 1.25.447 1.25 1s-.561 1-1.25 1c-.69 0-1.25-.447-1.25-1s.56-1 1.25-1zm-1.25-2c0-.553.56-1 1.25-1 .689 0 1.25.447 1.25 1 0 .553-.561 1-1.25 1-.69 0-1.25-.447-1.25-1zM13 15c.689 0 1.25.447 1.25 1s-.561 1-1.25 1c-.69 0-1.25-.447-1.25-1s.56-1 1.25-1zM5 7V4h10v3H5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-calendar'>
<path d="M17 3h-1v2h-3V3H7v2H4V3H3c-1.101 0-2 .9-2 2v12c0 1.1.899 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V9h14v8zM6.5 1h-2v3.5h2V1zm9 0h-2v3.5h2V1z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-camera'>
<path d="M10 8a3 3 0 1 0 0 6 3 3 0 0 0 0-6zm8-3h-2.4a.888.888 0 0 1-.789-.57l-.621-1.861A.89.89 0 0 0 13.4 2H6.6c-.33 0-.686.256-.789.568L5.189 4.43A.889.889 0 0 1 4.4 5H2C.9 5 0 5.9 0 7v9c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-8 11a5 5 0 0 1-5-5 5 5 0 1 1 10 0 5 5 0 0 1-5 5zm7.5-7.8a.7.7 0 1 1 0-1.4.7.7 0 0 1 0 1.4z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-ccw'>
<path d="M.685 10h2.372v-.205c.108-4.434 3.724-7.996 8.169-7.996 4.515 0 8.174 3.672 8.174 8.201s-3.659 8.199-8.174 8.199a8.13 8.13 0 0 1-5.033-1.738l1.406-1.504a6.099 6.099 0 0 0 3.627 1.193c3.386 0 6.131-2.754 6.131-6.15 0-3.396-2.745-6.15-6.131-6.15-3.317 0-6.018 2.643-6.125 5.945V10h2.672l-3.494 3.894L.685 10z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-chat'>
<path d="M5.8 12.2V6H2C.9 6 0 6.9 0 8v6c0 1.1.9 2 2 2h1v3l3-3h5c1.1 0 2-.9 2-2v-1.82a.943.943 0 0 1-.2.021h-7V12.2zM18 1H9c-1.1 0-2 .9-2 2v8h7l3 3v-3h1c1.1 0 2-.899 2-2V3c0-1.1-.9-2-2-2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-check'>
<path d="M8.294 16.998c-.435 0-.847-.203-1.111-.553L3.61 11.724a1.392 1.392 0 0 1 .27-1.951 1.392 1.392 0 0 1 1.953.27l2.351 3.104 5.911-9.492a1.396 1.396 0 0 1 1.921-.445c.653.406.854 1.266.446 1.92L9.478 16.34a1.39 1.39 0 0 1-1.12.656c-.022.002-.042.002-.064.002z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-chevron-down'>
<path d="M4.516 7.548c.436-.446 1.043-.481 1.576 0L10 11.295l3.908-3.747c.533-.481 1.141-.446 1.574 0 .436.445.408 1.197 0 1.615-.406.418-4.695 4.502-4.695 4.502a1.095 1.095 0 0 1-1.576 0S4.924 9.581 4.516 9.163c-.409-.418-.436-1.17 0-1.615z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-chevron-left'>
<path d="M12.452 4.516c.446.436.481 1.043 0 1.576L8.705 10l3.747 3.908c.481.533.446 1.141 0 1.574-.445.436-1.197.408-1.615 0-.418-.406-4.502-4.695-4.502-4.695a1.095 1.095 0 0 1 0-1.576s4.084-4.287 4.502-4.695c.418-.409 1.17-.436 1.615 0z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-chevron-right'>
<path d="M9.163 4.516c.418.408 4.502 4.695 4.502 4.695a1.095 1.095 0 0 1 0 1.576s-4.084 4.289-4.502 4.695c-.418.408-1.17.436-1.615 0-.446-.434-.481-1.041 0-1.574L11.295 10 7.548 6.092c-.481-.533-.446-1.141 0-1.576.445-.436 1.197-.409 1.615 0z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-chevron-small-down'>
<path d="M13.418 7.859a.695.695 0 0 1 .978 0 .68.68 0 0 1 0 .969l-3.908 3.83a.697.697 0 0 1-.979 0l-3.908-3.83a.68.68 0 0 1 0-.969.695.695 0 0 1 .978 0L10 11l3.418-3.141z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-chevron-small-left'>
<path d="M12.141 13.418a.695.695 0 0 1 0 .978.68.68 0 0 1-.969 0l-3.83-3.908a.697.697 0 0 1 0-.979l3.83-3.908a.68.68 0 0 1 .969 0 .695.695 0 0 1 0 .978L9 10l3.141 3.418z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-chevron-small-right'>
<path d="M11 10L7.859 6.58a.695.695 0 0 1 0-.978.68.68 0 0 1 .969 0l3.83 3.908a.697.697 0 0 1 0 .979l-3.83 3.908a.68.68 0 0 1-.969 0 .695.695 0 0 1 0-.978L11 10z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-chevron-small-up'>
<path d="M6.582 12.141a.695.695 0 0 1-.978 0 .68.68 0 0 1 0-.969l3.908-3.83a.697.697 0 0 1 .979 0l3.908 3.83a.68.68 0 0 1 0 .969.697.697 0 0 1-.979 0L10 9l-3.418 3.141z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-chevron-thin-down'>
<path d="M17.418 6.109a.697.697 0 0 1 .979 0 .68.68 0 0 1 0 .969l-7.908 7.83a.697.697 0 0 1-.979 0l-7.908-7.83a.68.68 0 0 1 0-.969.697.697 0 0 1 .979 0L10 13.25l7.418-7.141z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-chevron-thin-left'>
<path d="M13.891 17.418a.697.697 0 0 1 0 .979.68.68 0 0 1-.969 0l-7.83-7.908a.697.697 0 0 1 0-.979l7.83-7.908a.68.68 0 0 1 .969 0 .697.697 0 0 1 0 .979L6.75 10l7.141 7.418z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-chevron-thin-right'>
<path d="M13.25 10L6.109 2.58a.697.697 0 0 1 0-.979.68.68 0 0 1 .969 0l7.83 7.908a.697.697 0 0 1 0 .979l-7.83 7.908a.68.68 0 0 1-.969 0 .697.697 0 0 1 0-.979L13.25 10z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-chevron-thin-up'>
<path d="M2.582 13.891c-.272.268-.709.268-.979 0s-.271-.701 0-.969l7.908-7.83a.697.697 0 0 1 .979 0l7.908 7.83a.68.68 0 0 1 0 .969.695.695 0 0 1-.978 0L10 6.75l-7.418 7.141z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-chevron-up'>
<path d="M15.484 12.452c-.436.446-1.043.481-1.576 0L10 8.705l-3.908 3.747c-.533.481-1.141.446-1.574 0-.436-.445-.408-1.197 0-1.615.406-.418 4.695-4.502 4.695-4.502a1.095 1.095 0 0 1 1.576 0s4.287 4.084 4.695 4.502c.409.418.436 1.17 0 1.615z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-chevron-with-circle-down'>
<path d="M12.505 8.698L10 11 7.494 8.698a.512.512 0 0 0-.718 0 .5.5 0 0 0 0 .71l2.864 2.807a.51.51 0 0 0 .717 0l2.864-2.807a.498.498 0 0 0 0-.71.51.51 0 0 0-.716 0zM10 .4A9.6 9.6 0 0 0 .4 10c0 5.303 4.298 9.6 9.6 9.6s9.6-4.297 9.6-9.6A9.6 9.6 0 0 0 10 .4zm0 17.954A8.353 8.353 0 0 1 1.646 10 8.354 8.354 0 1 1 10 18.354z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-chevron-with-circle-left'>
<path d="M11.302 6.776a.5.5 0 0 0-.71 0L7.785 9.641a.51.51 0 0 0 0 .717l2.807 2.864a.498.498 0 0 0 .71 0 .51.51 0 0 0 0-.717L9 10l2.302-2.506a.512.512 0 0 0 0-.718zM10 .4A9.6 9.6 0 0 0 .4 10c0 5.303 4.298 9.6 9.6 9.6s9.6-4.297 9.6-9.6A9.6 9.6 0 0 0 10 .4zm0 17.954A8.353 8.353 0 0 1 1.646 10 8.354 8.354 0 1 1 10 18.354z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-chevron-with-circle-right'>
<path d="M11 10L8.698 7.494a.512.512 0 0 1 0-.718.5.5 0 0 1 .71 0l2.807 2.864a.51.51 0 0 1 0 .717l-2.807 2.864a.498.498 0 0 1-.71 0 .51.51 0 0 1 0-.717L11 10zM10 .4a9.6 9.6 0 0 1 9.6 9.6c0 5.303-4.298 9.6-9.6 9.6S.4 15.303.4 10A9.6 9.6 0 0 1 10 .4zm0 17.954a8.354 8.354 0 1 0 0-16.709 8.354 8.354 0 0 0 0 16.709z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-chevron-with-circle-up'>
<path d="M10.359 7.785a.51.51 0 0 0-.717 0l-2.864 2.807a.498.498 0 0 0 0 .71.51.51 0 0 0 .717 0L10 9l2.506 2.302a.512.512 0 0 0 .718 0 .5.5 0 0 0 0-.71l-2.865-2.807zM10 .4A9.6 9.6 0 0 0 .4 10c0 5.303 4.298 9.6 9.6 9.6s9.6-4.297 9.6-9.6A9.6 9.6 0 0 0 10 .4zm0 17.954A8.353 8.353 0 0 1 1.646 10 8.354 8.354 0 1 1 10 18.354z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-circle-with-cross'>
<path d="M10 1.6a8.4 8.4 0 1 0 0 16.8 8.4 8.4 0 0 0 0-16.8zm4.789 11.461L13.06 14.79 10 11.729l-3.061 3.06L5.21 13.06 8.272 10 5.211 6.939 6.94 5.211 10 8.271l3.061-3.061 1.729 1.729L11.728 10l3.061 3.061z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-circle-with-minus'>
<path d="M10 1.6a8.4 8.4 0 1 0 0 16.8 8.4 8.4 0 0 0 0-16.8zm5 9.4H5V9h10v2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-circle-with-plus'>
<path d="M10 1.6a8.4 8.4 0 1 0 0 16.8 8.4 8.4 0 0 0 0-16.8zm5 9.4h-4v4H9v-4H5V9h4V5h2v4h4v2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-circle'>
<path d="M10 .4A9.6 9.6 0 0 0 .4 10a9.6 9.6 0 1 0 19.2-.001C19.6 4.698 15.301.4 10 .4zm0 17.199A7.6 7.6 0 1 1 10 2.4a7.6 7.6 0 1 1 0 15.199z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-circular-graph'>
<path d="M17.584 9.372h2a9.554 9.554 0 0 0-.668-2.984L17.16 7.402c.224.623.371 1.283.424 1.97zm-3.483-8.077a9.492 9.492 0 0 0-3.086-.87v2.021a7.548 7.548 0 0 1 2.084.585l1.002-1.736zm2.141 4.327l1.741-1.005a9.643 9.643 0 0 0-2.172-2.285l-1.006 1.742a7.625 7.625 0 0 1 1.437 1.548zm-6.228 11.949a7.6 7.6 0 0 1-7.6-7.6c0-3.858 2.877-7.036 6.601-7.526V.424C4.182.924.414 5.007.414 9.971a9.6 9.6 0 0 0 9.601 9.601c4.824 0 8.807-3.563 9.486-8.2H17.48c-.658 3.527-3.748 6.199-7.466 6.199z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-clapperboard'>
<path fill-rule="evenodd" clip-rule="evenodd" d="M20 3v14a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h1l3 3h2.5l-3-3h3l3 3H13l-3-3h3l3 3h2.5l-3-3H19a1 1 0 0 1 1 1z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-classic-computer'>
<path d="M16 0H4C2.9 0 2 .899 2 2v15a1 1 0 0 0 1 1v2h14v-2a1 1 0 0 0 1-1V2c0-1.101-.899-2-2-2zm-2 15h-4v-1h4v1zm1-4H5V3h10v8z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-clipboard'>
<path d="M15.6 2l-1.2 3H5.6L4.4 2C3.629 2 3 2.629 3 3.4v15.2c0 .77.629 1.4 1.399 1.4h11.2c.77 0 1.4-.631 1.4-1.4V3.4C17 2.629 16.369 2 15.6 2zm-2 2l.9-2h-2.181L11.6 0H8.4l-.72 2H5.5l.899 2H13.6z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-clock'>
<path d="M10 .4C4.697.4.399 4.698.399 10A9.6 9.6 0 0 0 10 19.601c5.301 0 9.6-4.298 9.6-9.601 0-5.302-4.299-9.6-9.6-9.6zm-.001 17.2a7.6 7.6 0 1 1 0-15.2 7.6 7.6 0 1 1 0 15.2zM11 9.33V4H9v6.245l-3.546 2.048 1 1.732 4.115-2.377A.955.955 0 0 0 11 10.9v-.168l4.24-4.166a6.584 6.584 0 0 0-.647-.766L11 9.33z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-cloud'>
<path d="M20 11.32c0 2.584-2.144 4.68-4.787 4.68H3.617C1.619 16 0 14.416 0 12.463c0-1.951 1.619-3.535 3.617-3.535.146 0 .288.012.429.027a5.076 5.076 0 0 1-.057-.756C3.989 5.328 6.37 3 9.309 3c2.407 0 4.439 1.562 5.096 3.707a5 5 0 0 1 .809-.066C17.856 6.641 20 8.734 20 11.32z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-code'>
<path d="M5.719 14.75a.997.997 0 0 1-.664-.252L-.005 10l5.341-4.748a1 1 0 0 1 1.328 1.495L3.005 10l3.378 3.002a1 1 0 0 1-.664 1.748zm8.945-.002L20.005 10l-5.06-4.498a.999.999 0 1 0-1.328 1.495L16.995 10l-3.659 3.252a1 1 0 0 0 1.328 1.496zm-4.678 1.417l2-12a1 1 0 1 0-1.972-.329l-2 12a1 1 0 1 0 1.972.329z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-cog'>
<path d="M16.783 10c0-1.049.646-1.875 1.617-2.443a8.932 8.932 0 0 0-.692-1.672c-1.089.285-1.97-.141-2.711-.883-.741-.74-.968-1.621-.683-2.711a8.732 8.732 0 0 0-1.672-.691c-.568.97-1.595 1.615-2.642 1.615-1.048 0-2.074-.645-2.643-1.615a8.697 8.697 0 0 0-1.671.691c.285 1.09.059 1.971-.684 2.711-.74.742-1.621 1.168-2.711.883A8.797 8.797 0 0 0 1.6 7.557c.97.568 1.615 1.394 1.615 2.443 0 1.047-.645 2.074-1.615 2.643a8.89 8.89 0 0 0 .691 1.672c1.09-.285 1.971-.059 2.711.682.741.742.969 1.623.684 2.711a8.841 8.841 0 0 0 1.672.693c.568-.973 1.595-1.617 2.643-1.617 1.047 0 2.074.645 2.643 1.617a8.963 8.963 0 0 0 1.672-.693c-.285-1.088-.059-1.969.683-2.711.741-.74 1.622-1.166 2.711-.883a8.811 8.811 0 0 0 .692-1.672c-.973-.569-1.619-1.395-1.619-2.442zM10 13.652a3.652 3.652 0 1 1 0-7.306 3.653 3.653 0 0 1 0 7.306z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-colours'>
<path d="M3.179 5.998a1.005 1.005 0 0 0-1.408.132L.494 7.669a1.004 1.004 0 0 0 .131 1.407l7.888 6.542-3.807-8.354-1.527-1.266zm3.834-3.315l-1.82.829a1.005 1.005 0 0 0-.495 1.324l4.25 9.325.213-9.179-.822-1.804c-.23-.5-.826-.723-1.326-.495zm7.198.204a1.003 1.003 0 0 0-.976-1.023l-2-.046a1.003 1.003 0 0 0-1.022.976l-.239 10.243 4.19-8.167.047-1.983zm4.98.95l-1.779-.913a1.005 1.005 0 0 0-1.347.434L9.674 15.814a1.004 1.004 0 0 0 .434 1.347l1.779.913a1.003 1.003 0 0 0 1.346-.433l6.391-12.456a1.005 1.005 0 0 0-.433-1.348zm-6.392 12.456a1 1 0 1 1-1.78-.911 1 1 0 0 1 1.78.911z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-compass'>
<path d="M5.454 14.548s4.568-.627 6.518-2.576 2.576-6.518 2.576-6.518-4.569.627-6.518 2.576-2.576 6.518-2.576 6.518zm3.563-5.533c.818-.818 2.385-1.4 3.729-1.762-.361 1.342-.945 2.92-1.76 3.732a1.39 1.39 0 0 1-1.969 0 1.391 1.391 0 0 1 0-1.97zM10.001.4C4.698.4.4 4.698.4 10a9.6 9.6 0 0 0 9.601 9.601c5.301 0 9.6-4.298 9.6-9.601 0-5.302-4.299-9.6-9.6-9.6zM10 17.6a7.6 7.6 0 1 1 0-15.2 7.6 7.6 0 1 1 0 15.2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-controller-fast-backward'>
<path d="M17.959 4.571L10.756 9.52s-.279.201-.279.481.279.479.279.479l7.203 4.951c.572.38 1.041.099 1.041-.626V5.196c0-.727-.469-1.008-1.041-.625zm-9.076 0L1.68 9.52s-.279.201-.279.481.279.479.279.479l7.203 4.951c.572.381 1.041.1 1.041-.625v-9.61c0-.727-.469-1.008-1.041-.625z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-controller-fast-forward'>
<path d="M9.244 9.52L2.041 4.571C1.469 4.188 1 4.469 1 5.196v9.609c0 .725.469 1.006 1.041.625l7.203-4.951s.279-.199.279-.478c0-.28-.279-.481-.279-.481zm9.356.481c0 .279-.279.478-.279.478l-7.203 4.951c-.572.381-1.041.1-1.041-.625V5.196c0-.727.469-1.008 1.041-.625L18.32 9.52s.28.201.28.481z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-controller-jump-to-start'>
<path d="M14.959 4.571L7.756 9.52s-.279.201-.279.481.279.479.279.479l7.203 4.951c.572.38 1.041.099 1.041-.626V5.196c0-.727-.469-1.008-1.041-.625zM6 4H5c-.553 0-1 .048-1 .6v10.8c0 .552.447.6 1 .6h1c.553 0 1-.048 1-.6V4.6c0-.552-.447-.6-1-.6z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-controller-next'>
<path d="M12.244 9.52L5.041 4.571C4.469 4.188 4 4.469 4 5.196v9.609c0 .725.469 1.006 1.041.625l7.203-4.951s.279-.199.279-.478c0-.28-.279-.481-.279-.481zM14 4h1c.553 0 1 .048 1 .6v10.8c0 .552-.447.6-1 .6h-1c-.553 0-1-.048-1-.6V4.6c0-.552.447-.6 1-.6z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-controller-paus'>
<path d="M15 3h-2c-.553 0-1 .048-1 .6v12.8c0 .552.447.6 1 .6h2c.553 0 1-.048 1-.6V3.6c0-.552-.447-.6-1-.6zM7 3H5c-.553 0-1 .048-1 .6v12.8c0 .552.447.6 1 .6h2c.553 0 1-.048 1-.6V3.6c0-.552-.447-.6-1-.6z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-controller-play'>
<path d="M15 10.001c0 .299-.305.514-.305.514l-8.561 5.303C5.51 16.227 5 15.924 5 15.149V4.852c0-.777.51-1.078 1.135-.67l8.561 5.305c-.001 0 .304.215.304.514z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-controller-record'>
<path d="M10 3a7 7 0 1 0 .001 13.999A7 7 0 0 0 10 3z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-controller-stop'>
<path d="M16 4.995v9.808c0 .661-.536 1.197-1.196 1.197H4.997A.997.997 0 0 1 4 15.003V5.196C4 4.536 4.536 4 5.196 4h9.808c.55 0 .996.446.996.995z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-controller-volume'>
<path d="M19 13.805c0 .657-.538 1.195-1.195 1.195H1.533c-.88 0-.982-.371-.229-.822l16.323-9.055C18.382 4.67 19 5.019 19 5.9v7.905z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-copy'>
<path d="M11 0H3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h5v2h2v-2H8.001v-2H10v-2H8v2H4V2h6v4h2V1a1 1 0 0 0-1-1zM8 7v1h2V6H9a1 1 0 0 0-1 1zm4 13h2v-2h-2v2zm0-12h2V6h-2v2zM8 19a1 1 0 0 0 1 1h1v-2H8v1zm9-13h-1v2h2V7a1 1 0 0 0-1-1zm-1 14h1a1 1 0 0 0 1-1v-1h-2v2zm0-8h2v-2h-2v2zm0 4h2v-2h-2v2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-creative-cloud'>
<path d="M12.6 3c-1.966 0-3.74.813-5.012 2.119A6 6 0 1 0 6.4 17h6.2a7 7 0 1 0 0-14zM6.4 15.728a4.7 4.7 0 0 1-3.344-1.385C2.164 13.45 1.672 12.262 1.672 11s.492-2.45 1.385-3.343c.893-.893 2.08-1.385 3.343-1.385s2.45.492 3.344 1.385l1.874 1.875a.7.7 0 0 1-.99.99L8.754 8.646c-1.258-1.256-3.449-1.256-4.707 0-.629.63-.975 1.465-.975 2.354s.346 1.724.975 2.354c.785.784 1.933 1.078 2.991.884.324.424.689.815 1.1 1.155a4.723 4.723 0 0 1-1.738.335zm10.289-1.639a5.748 5.748 0 0 1-4.089 1.694 5.749 5.749 0 0 1-4.09-1.694L5.801 11.38a.7.7 0 0 1 .99-.99L9.5 13.099c.828.828 1.929 1.284 3.1 1.284s2.271-.456 3.099-1.284S16.983 11.17 16.983 10s-.456-2.271-1.284-3.099-1.928-1.284-3.099-1.284c-.873 0-1.707.255-2.418.727a6.056 6.056 0 0 0-1.251-.779c1.035-.858 2.309-1.349 3.67-1.349 1.544 0 2.996.602 4.089 1.694 1.093 1.093 1.694 2.545 1.694 4.089s-.602 2.998-1.695 4.09z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-creative-commons-attribution'>
<path d="M12.6 7.6v3.9h-1.1v4.6h-3v-4.6H7.4V7.6c0-.3.3-.6.6-.6h4c.3 0 .6.3.6.6zM10 6.5c.7 0 1.3-.6 1.3-1.3 0-.7-.6-1.3-1.3-1.3-.7 0-1.3.6-1.3 1.3 0 .7.6 1.3 1.3 1.3zm9.6 3.5c0 2.7-.9 4.9-2.7 6.7-1.9 1.9-4.2 2.9-6.9 2.9-2.6 0-4.9-.9-6.8-2.8C1.3 14.9.4 12.7.4 10c0-2.6.9-4.9 2.8-6.8C5.1 1.3 7.3.4 10 .4s5 .9 6.8 2.8c1.9 1.8 2.8 4.1 2.8 6.8zm-1.7 0c0-2.2-.8-4-2.3-5.6C14 2.9 12.2 2.1 10 2.1c-2.2 0-4 .8-5.5 2.3C2.9 6 2.1 7.9 2.1 10c0 2.1.8 4 2.3 5.5s3.4 2.3 5.6 2.3c2.1 0 4-.8 5.6-2.4 1.5-1.4 2.3-3.2 2.3-5.4z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-creative-commons-noderivs'>
<path d="M16.8 3.2C15 1.3 12.7.4 10 .4s-4.9.9-6.8 2.8C1.3 5.1.4 7.4.4 10c0 2.6.9 4.9 2.8 6.8 1.9 1.9 4.1 2.8 6.8 2.8 2.6 0 4.9-1 6.9-2.9 1.8-1.8 2.7-4.1 2.7-6.7 0-2.7-.9-5-2.8-6.8zm-1.2 12.3c-1.6 1.6-3.5 2.4-5.6 2.4-2.1 0-4-.8-5.6-2.3C2.9 14 2.1 12.1 2.1 10c0-2.1.8-4 2.4-5.6C6 2.9 7.8 2.1 10 2.1s4 .8 5.6 2.3c1.5 1.5 2.3 3.4 2.3 5.6 0 2.2-.8 4-2.3 5.5zm-9-4.7h7v1.7h-7v-1.7zm0-3.1h7v1.7h-7V7.7z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-creative-commons-noncommercial-eu'>
<path d="M16.8 3.2C15 1.3 12.7.4 10 .4s-4.9.9-6.8 2.8C1.3 5.1.4 7.4.4 10c0 2.6.9 4.9 2.8 6.8 1.9 1.9 4.1 2.8 6.8 2.8 2.6 0 4.9-1 6.9-2.9 1.8-1.8 2.7-4.1 2.7-6.7 0-2.7-.9-5-2.8-6.8zm-1.2 12.3c-1.6 1.6-3.5 2.4-5.6 2.4-2.1 0-4-.8-5.6-2.3C2.9 14 2.1 12.1 2.1 10c0-.9.1-1.8.4-2.6L5 8.5h-.1v1.1h.9v.8h-.9v1.1h1c.1.9.5 1.5.9 2.1.9 1.2 2.3 1.8 3.9 1.8 1 0 2-.3 2.5-.6l-.4-1.8c-.3.2-1.1.4-1.8.4-.8 0-1.6-.2-2.1-.8-.2-.3-.4-.6-.5-1.1H12l5 2.2c-.4.7-.9 1.3-1.4 1.8zm-6.3-5zm3.1-.8h.1V8.6H9.8l-1.1-.5.3-.6c.5-.6 1.2-.9 2-.9.7 0 1.4.2 1.8.4l.5-1.8c-.6-.3-1.4-.5-2.4-.5-1.6 0-2.9.6-3.8 1.7-.2.2-.4.5-.5.7L3.4 5.8c.3-.5.7-.9 1.1-1.3C6 2.9 7.8 2.1 10 2.1s4 .8 5.6 2.3c1.5 1.5 2.3 3.4 2.3 5.6 0 .7-.1 1.4-.2 2l-5.3-2.3z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-creative-commons-noncommercial-us'>
<path d="M16.8 3.2C15 1.3 12.7.4 10 .4s-4.9.9-6.8 2.8C1.3 5.1.4 7.4.4 10s.9 4.9 2.8 6.8c1.9 1.9 4.1 2.8 6.8 2.8 2.6 0 4.9-1 6.9-2.9 1.8-1.8 2.7-4.1 2.7-6.7s-.9-5-2.8-6.8zm-1.2 12.3c-1.6 1.6-3.5 2.4-5.6 2.4-2.1 0-4-.8-5.6-2.3C2.9 14 2.1 12.1 2.1 10c0-.9.1-1.8.4-2.6l4.9 2.2c.5.2 1 .4 1.5.7l1.1.5.9.4c.2.1.3.3.3.6 0 .7-.6 1-1.2 1-.9 0-1.5-.3-2.1-.9l-1.3 1.3c.8.7 1.8 1.1 2.9 1.1v1.5h1.1v-1.5c1.3-.1 2.4-.9 2.6-2.1l3.6 1.6c-.2.6-.7 1.2-1.2 1.7zm-2.9-5.6c-.5-.2-1-.4-1.5-.7l-.8-.4-1.3-.5c0-.1-.1-.2-.1-.3 0-.6.7-.7 1.2-.7.6 0 1.2.2 1.6.6l1.3-1.3c-.8-.6-1.7-.8-2.4-.9V4.2H9.6v1.5c-1.2 0-2.2.6-2.5 1.7L3.4 5.7c.3-.5.7-.9 1.1-1.3C6 2.9 7.8 2.1 10 2.1s4 .8 5.6 2.3c1.5 1.5 2.3 3.4 2.3 5.6 0 .7-.1 1.4-.2 2.1l-5-2.2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-creative-commons-public-domain'>
<path d="M16.8 3.2C15 1.3 12.7.4 10 .4s-4.9.9-6.8 2.8C1.3 5.1.4 7.4.4 10c0 2.6.9 4.9 2.8 6.8 1.9 1.9 4.1 2.8 6.8 2.8 2.6 0 4.9-1 6.9-2.9 1.8-1.8 2.7-4.1 2.7-6.7 0-2.7-.9-5-2.8-6.8zm-1.2 12.3c-1.6 1.6-3.5 2.4-5.6 2.4-2.1 0-4-.8-5.6-2.3C2.9 14 2.1 12.1 2.1 10c0-2.1.8-4 2.4-5.6C6 2.9 7.8 2.1 10 2.1s4 .8 5.6 2.3c1.5 1.5 2.3 3.4 2.3 5.6 0 2.2-.8 4-2.3 5.5zM8.1 7.3H5.5v5.3h1.3v-1.7h1c1.8 0 2.2-1.1 2.2-1.8.1-1.1-.4-1.8-1.9-1.8zm-.2 2.6H6.8V8.3h1.1c.6 0 .9.3.9.8 0 .4-.3.8-.9.8zm4.6-2.6h-2.1v5.3h2.1c1.6 0 2.7-.8 2.7-2.7 0-1.8-1.1-2.6-2.7-2.6zm0 4.2h-.8V8.4h.8c1 0 1.4.7 1.4 1.5 0 .9-.4 1.6-1.4 1.6z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-creative-commons-remix'>
<path d="M16.8 3.2C15 1.3 12.7.4 10 .4s-4.9.9-6.8 2.8C1.3 5.1.4 7.4.4 10c0 2.6.9 4.9 2.8 6.8 1.9 1.9 4.1 2.8 6.8 2.8 2.6 0 4.9-1 6.9-2.9 1.8-1.8 2.7-4.1 2.7-6.7 0-2.7-.9-5-2.8-6.8zm-1.2 12.3c-1.6 1.6-3.5 2.4-5.6 2.4-2.1 0-4-.8-5.6-2.3C2.9 14 2.1 12.1 2.1 10c0-2.1.8-4 2.4-5.6C6 2.9 7.8 2.1 10 2.1s4 .8 5.6 2.3c1.5 1.5 2.3 3.4 2.3 5.6 0 2.2-.8 4-2.3 5.5zm.7-5.3l-1.9-.8V7L8.5 4.6 5.9 5.7v2.7l-2.3 1v2.5L6.1 13l2.5-1h.1l5 2.1h.2l2.3-1 .2-.1v-2.7l-.1-.1zm-2.7 3.1l-4.4-1.8V9.8l4.4 1.8V13.3zm.2-2.2l-1.4-.6 1.6-.6 1.4.6-1.6.6zm2.1 1.5l-1.7.7v-1.7l1.7-.7v1.7z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-creative-commons-share'>
<path d="M16.8 3.2C15 1.3 12.7.4 10 .4s-4.9.9-6.8 2.8C1.3 5.1.4 7.4.4 10c0 2.6.9 4.9 2.8 6.8 1.9 1.9 4.1 2.8 6.8 2.8 2.6 0 4.9-1 6.9-2.9 1.8-1.8 2.7-4.1 2.7-6.7 0-2.7-.9-5-2.8-6.8zm-1.2 12.3c-1.6 1.6-3.5 2.4-5.6 2.4-2.1 0-4-.8-5.6-2.3C2.9 14 2.1 12.1 2.1 10c0-2.1.8-4 2.4-5.6C6 2.9 7.8 2.1 10 2.1s4 .8 5.6 2.3c1.5 1.5 2.3 3.4 2.3 5.6 0 2.2-.8 4-2.3 5.5zm-1.7-8.3h-2.1v-2c0-.3-.2-.5-.5-.5H6.1c-.3 0-.5.3-.5.5v7.1c0 .3.2.5.5.5h2.1v2.1c0 .3.2.5.5.5h5.2c.3 0 .5-.2.5-.5V7.8c.1-.3-.2-.6-.5-.6zm-5.3 0c-.3 0-.5.3-.5.5v3.9H6.6v-6h4.2v1.6H8.6c.1 0 .1 0 0 0zm4.8 7.1H9.2v-6h4.2v6z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-creative-commons-sharealike'>
<path d="M16.8 3.2C15 1.3 12.7.4 10 .4s-4.9.9-6.8 2.8C1.3 5.1.4 7.4.4 10s.9 4.9 2.8 6.8c1.9 1.9 4.1 2.8 6.8 2.8 2.6 0 4.9-1 6.9-2.9 1.8-1.8 2.7-4.1 2.7-6.7s-.9-5-2.8-6.8zm-1.2 12.3c-1.6 1.6-3.5 2.4-5.6 2.4-2.1 0-4-.8-5.6-2.3C2.9 14 2.1 12.1 2.1 10s.8-4 2.4-5.6C6 2.9 7.8 2.1 10 2.1s4 .8 5.6 2.3c1.5 1.5 2.3 3.4 2.3 5.6 0 2.2-.8 4-2.3 5.5zm-.7-5.4c0 2.9-2 5.1-5 5.1-2.1 0-3.9-1.3-4.2-3.8h2.4c.1 1.3.9 1.7 2.1 1.7 1.4 0 2.3-1.3 2.3-3.2 0-2-.8-3.1-2.2-3.1-1.1 0-2 .4-2.2 1.7h.7l-1.9 1.9L5 8.6h.8c.4-2.4 2.1-3.7 4.2-3.7 3 0 4.9 2.3 4.9 5.2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-creative-commons'>
<path d="M8.8 10.8l1.1.6c-.2.4-.6.8-1 1.1-.4.3-.9.4-1.4.4-.8 0-1.5-.2-2-.8-.5-.5-.7-1.2-.7-2.1 0-.9.3-1.6.8-2.1.4-.5 1.1-.8 1.9-.8 1.1 0 2 .4 2.4 1.3l-1.2.7c-.2-.3-.3-.5-.5-.6s-.4-.1-.5-.1c-.8 0-1.2.5-1.2 1.6 0 .5.1.9.3 1.2.2.3.5.4.9.4.5 0 .9-.2 1.1-.8zm4.2.8c-.4 0-.7-.1-.9-.4-.2-.3-.3-.7-.3-1.2 0-1.1.4-1.6 1.2-1.6.2 0 .4.1.5.2.2.1.4.3.5.6l1.2-.6c-.5-.9-1.3-1.3-2.4-1.3-.8 0-1.4.3-1.9.8s-.8 1.2-.8 2.1c0 .9.2 1.6.7 2.1.5.5 1.2.8 2 .8.5 0 1-.1 1.4-.4.4-.3.8-.6 1-1.1L14 11c-.1.4-.5.6-1 .6zm6.6-1.6c0 2.7-.9 4.9-2.7 6.7-1.9 1.9-4.2 2.9-6.9 2.9-2.6 0-4.9-.9-6.8-2.8C1.3 14.9.4 12.7.4 10c0-2.6.9-4.9 2.8-6.8C5.1 1.3 7.3.4 10 .4s5 .9 6.8 2.8c1.9 1.8 2.8 4.1 2.8 6.8zm-1.7 0c0-2.2-.8-4-2.3-5.6C14 2.9 12.2 2.1 10 2.1c-2.2 0-4 .8-5.5 2.3C2.9 6 2.1 7.9 2.1 10c0 2.1.8 4 2.3 5.5 1.6 1.6 3.4 2.3 5.6 2.3 2.1 0 4-.8 5.6-2.4 1.5-1.4 2.3-3.2 2.3-5.4z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-credit-card'>
<path d="M18 3H2C.899 3 0 3.9 0 5v10c0 1.1.899 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H2V9h16v6zm0-9H2V5h16v1zM4 11.1v.6h.6v-.6H4zm3.6 1.199v.601h1.2v-.601h.6v-.6h.6v-.6H8.8v.6h-.601v.6H7.6zm2.4.601v-.601h-.601v.601H10zm-3 0v-.601H5.8v.601H7zm.6-1.201h.6v-.6H7v1.199h.6v-.599zm-2.401.6H5.8v-.6h.6v-.6H5.2v.6h-.6v.6H4v.601h1.199v-.601z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-credit'>
<path d="M11 16.755V19H9v-2.143c-1.712-.1-3.066-.589-4.241-1.797l1.718-1.74c.859.87 2.023 1.16 3.282 1.16 1.565 0 2.405-.599 2.405-1.702 0-.483-.133-.889-.42-1.16-.267-.251-.572-.387-1.202-.483L8.9 10.903c-1.164-.174-2.022-.541-2.634-1.141-.648-.657-.973-1.546-.973-2.707 0-2.155 1.382-3.743 3.707-4.1V1h2v1.932c1.382.145 2.465.62 3.415 1.551l-1.679 1.682c-.859-.832-1.889-.947-2.787-.947-1.412 0-2.099.792-2.099 1.74 0 .348.115.716.401.986.267.252.706.464 1.26.541l1.602.232c1.241.174 2.023.522 2.596 1.063.726.696 1.05 1.702 1.05 2.92 0 2.25-1.567 3.662-3.759 4.055z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-crop'>
<path d="M6 14V1H4v3H1v2h3v8c0 1.1.899 2 2 2h8v3h2v-3h3v-2H6zm8-1h2V6c0-1.1-.899-2-2-2H7v2h7v7z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-cross'>
<path d="M14.348 14.849a1.2 1.2 0 0 1-1.697 0L10 11.819l-2.651 3.029a1.2 1.2 0 1 1-1.697-1.697l2.758-3.15-2.759-3.152a1.2 1.2 0 1 1 1.697-1.697L10 8.183l2.651-3.031a1.2 1.2 0 1 1 1.697 1.697l-2.758 3.152 2.758 3.15a1.2 1.2 0 0 1 0 1.698z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-cup'>
<path d="M10 1C5.721 1 3.06 2.41 3.205 3.555l1.442 13.467c.058.46 2.221 1.976 5.353 1.978 3.131-.002 5.295-1.518 5.351-1.979l1.442-13.467C16.938 2.41 14.279 1 10 1zm0 4.291c-3.132-.002-5.353-1.117-5.353-1.535C4.646 3.342 6.869 2.225 10 2.227c3.131-.002 5.354 1.115 5.351 1.529 0 .418-2.22 1.533-5.351 1.535z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-cw'>
<path d="M19.315 10h-2.372v-.205c-.108-4.434-3.724-7.996-8.169-7.996C4.259 1.799.6 5.471.6 10s3.659 8.199 8.174 8.199a8.13 8.13 0 0 0 5.033-1.738l-1.406-1.504a6.099 6.099 0 0 1-3.627 1.193c-3.386 0-6.131-2.754-6.131-6.15s2.745-6.15 6.131-6.15c3.317 0 6.018 2.643 6.125 5.945V10h-2.672l3.494 3.894L19.315 10z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-cycle'>
<path d="M5.516 14.224c-2.262-2.432-2.222-6.244.128-8.611a6.074 6.074 0 0 1 3.414-1.736L8.989 1.8a8.112 8.112 0 0 0-4.797 2.351c-3.149 3.17-3.187 8.289-.123 11.531l-1.741 1.752 5.51.301-.015-5.834-2.307 2.323zm6.647-11.959l.015 5.834 2.307-2.322c2.262 2.434 2.222 6.246-.128 8.611a6.07 6.07 0 0 1-3.414 1.736l.069 2.076a8.122 8.122 0 0 0 4.798-2.35c3.148-3.172 3.186-8.291.122-11.531l1.741-1.754-5.51-.3z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-database'>
<path d="M16.726 12.641c-.843 1.363-3.535 2.361-6.726 2.361s-5.883-.998-6.727-2.361c-.178-.29-.273-.135-.273.007v2.002c0 1.94 3.134 3.95 7 3.95s7-2.01 7-3.949v-2.002c0-.143-.096-.298-.274-.008zm.011-5.116c-.83 1.205-3.532 2.09-6.737 2.09s-5.908-.885-6.738-2.09C3.091 7.277 3 7.412 3 7.523V9.88c0 1.762 3.134 3.189 7 3.189s7-1.428 7-3.189V7.523c0-.111-.092-.246-.263.002zM10 1C6.134 1 3 2.18 3 3.633v1.26c0 1.541 3.134 2.791 7 2.791s7-1.25 7-2.791v-1.26C17 2.18 13.866 1 10 1z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-dial-pad'>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6 0H4a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1zm5 0H9a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1zm5 0h-2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1zM6 5H4a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1zm5 0H9a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1zm5 0h-2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1zM6 10H4a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1zm5 0H9a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1zm0 6H9a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1zm5-6h-2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-direction'>
<path d="M18.06 1.941c-.586-.586-1.144-.033-3.041.879C9.944 5.259 1.1 10.216 1.1 10.216L8.699 11.3l1.085 7.599s4.958-8.843 7.396-13.916c.912-1.898 1.465-2.456.88-3.042zm-1.824 1.955l-5.519 10.247-.561-4.655 6.08-5.592z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-document-landscape'>
<path d="M19 3H1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zm-1 12H2V5h16v10z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-document'>
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 1H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1zm-1 16H5V3h10v14z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-documents'>
<path d="M19.398 7.415l-7.444-1.996L10.651.558c-.109-.406-.545-.642-.973-.529L.602 2.461c-.428.114-.686.538-.577.944l3.23 12.051c.109.406.544.643.971.527l3.613-.967-.492 1.838c-.109.406.149.83.577.943l8.11 2.174c.428.115.862-.121.972-.529l2.97-11.084c.108-.406-.15-.83-.578-.943zM1.633 3.631l7.83-2.096 2.898 10.818-7.83 2.096L1.633 3.631zm14.045 14.832L8.864 16.6l.536-2.002 3.901-1.047c.428-.113.688-.537.578-.943l-1.508-5.627 5.947 1.631-2.64 9.851z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-dot-single'>
<path d="M7.8 10a2.2 2.2 0 0 0 4.4 0 2.2 2.2 0 0 0-4.4 0z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-dots-three-horizontal'>
<path d="M10.001 7.8a2.2 2.2 0 1 0 0 4.402A2.2 2.2 0 0 0 10 7.8zm-7 0a2.2 2.2 0 1 0 0 4.402A2.2 2.2 0 0 0 3 7.8zm14 0a2.2 2.2 0 1 0 0 4.402A2.2 2.2 0 0 0 17 7.8z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-dots-three-vertical'>
<path d="M10.001 7.8a2.2 2.2 0 1 0 0 4.402A2.2 2.2 0 0 0 10 7.8zm0-2.6A2.2 2.2 0 1 0 9.999.8a2.2 2.2 0 0 0 .002 4.4zm0 9.6a2.2 2.2 0 1 0 0 4.402 2.2 2.2 0 0 0 0-4.402z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-dots-two-horizontal'>
<path d="M14.001 7.8a2.2 2.2 0 1 0 0 4.402A2.2 2.2 0 0 0 14 7.8zm-8 0a2.2 2.2 0 1 0 0 4.402A2.2 2.2 0 0 0 6 7.8z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-dots-two-vertical'>
<path d="M10.001 8.2a2.2 2.2 0 1 0-.002-4.4 2.2 2.2 0 0 0 .002 4.4zm0 3.6a2.2 2.2 0 1 0 0 4.402 2.2 2.2 0 0 0 0-4.402z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-download'>
<path d="M15 7h-3V1H8v6H5l5 5 5-5zm4.338 6.532c-.21-.224-1.611-1.723-2.011-2.114A1.503 1.503 0 0 0 16.285 11h-1.757l3.064 2.994h-3.544a.274.274 0 0 0-.24.133L12.992 16H7.008l-.816-1.873a.276.276 0 0 0-.24-.133H2.408L5.471 11H3.715c-.397 0-.776.159-1.042.418-.4.392-1.801 1.891-2.011 2.114-.489.521-.758.936-.63 1.449l.561 3.074c.128.514.691.936 1.252.936h16.312c.561 0 1.124-.422 1.252-.936l.561-3.074c.126-.513-.142-.928-.632-1.449z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-dribbble-with-circle'>
<path d="M10.26 9.982c.033-.012.068-.021.103-.031a14.738 14.738 0 0 0-.279-.584c-1.88.557-3.68.562-4.001.557-.003.025-.003.051-.003.076 0 .945.34 1.853.958 2.566.206-.332 1.298-1.961 3.222-2.584zm-2.637 3.131a3.913 3.913 0 0 0 3.871.512 16.511 16.511 0 0 0-.822-2.922c-2.121.75-2.922 2.162-3.049 2.41zm4.932-6.086a3.92 3.92 0 0 0-3.405-.853 20.08 20.08 0 0 1 1.421 2.223c1.283-.493 1.863-1.204 1.984-1.37zm-2.85 1.637A23.654 23.654 0 0 0 8.29 6.473a3.938 3.938 0 0 0-2.113 2.658h.017c.406 0 1.849-.033 3.511-.467zm1.809 1.832c.465 1.293.679 2.367.74 2.711a3.933 3.933 0 0 0 1.609-2.543 5.81 5.81 0 0 0-1.592-.221c-.258 0-.513.018-.757.053zM10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zm0 14.297A4.703 4.703 0 0 1 5.301 10 4.703 4.703 0 0 1 10 5.301 4.704 4.704 0 0 1 14.698 10 4.702 4.702 0 0 1 10 14.697zm.922-5.623c.087.18.168.357.242.531l.071.17c.277-.033.573-.049.882-.049a9.72 9.72 0 0 1 1.801.172 3.93 3.93 0 0 0-.852-2.34c-.16.206-.818.963-2.144 1.516z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-dribbble'>
<path d="M9.565 7.421C8.207 5.007 6.754 3.038 6.648 2.893A7.876 7.876 0 0 0 2.311 8.38c.206.004 3.482.043 7.254-.959zm.978 2.64a11 11 0 0 1 .309-.094 26.219 26.219 0 0 0-.637-1.336C6.169 9.843 2.287 9.755 2.15 9.751c-.003.084-.007.166-.007.25 0 2.019.763 3.861 2.016 5.252l-.005-.006s2.15-3.814 6.389-5.186zm-5.372 6.133v-.004c-.058-.045-.12-.086-.178-.135.106.085.178.139.178.139zM8.118 2.372a.546.546 0 0 1-.015.004c.006-.002.014-.002.014-.002l.001-.002zm7.071 1.732A7.83 7.83 0 0 0 10 2.143c-.639 0-1.258.078-1.852.221.12.16 1.595 2.119 2.938 4.584 2.962-1.109 4.081-2.812 4.103-2.844zM10 19.2a9.2 9.2 0 0 1-9.199-9.199A9.199 9.199 0 0 1 10 .8a9.2 9.2 0 0 1 9.2 9.201A9.2 9.2 0 0 1 10 19.2zm1.336-7.914c-4.611 1.607-6.134 4.838-6.165 4.904a7.818 7.818 0 0 0 4.828 1.666 7.83 7.83 0 0 0 3.067-.621c-.116-.689-.573-3.096-1.679-5.967a1.464 1.464 0 0 1-.051.018zm.354-3.166c.184.373.358.754.523 1.139.059.135.114.272.17.406 2.713-.342 5.385.238 5.473.256a7.84 7.84 0 0 0-1.787-4.912c-.018.023-1.279 1.843-4.379 3.111zm1.171 2.785c1.031 2.836 1.449 5.142 1.529 5.611a7.858 7.858 0 0 0 3.367-5.27c-.156-.05-2.356-.747-4.896-.341z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-drink'>
<path d="M17.538 2.639C17.932 2.094 18 1 18 1H2s.068 1.094.462 1.639L9 11v6H7c-2 0-2 2-2 2h10s0-2-2-2h-2v-6l6.538-8.361zM9.4 6a1.599 1.599 0 1 1 3.2 0 1.6 1.6 0 0 1-3.2 0z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-drive'>
<path d="M19.059 10.898l-3.171-7.927A1.543 1.543 0 0 0 14.454 2H5.546c-.632 0-1.2.384-1.434.971L.941 10.898a4.25 4.25 0 0 0-.246 2.272l.59 3.539A1.544 1.544 0 0 0 2.808 18h14.383c.755 0 1.399-.546 1.523-1.291l.59-3.539a4.22 4.22 0 0 0-.245-2.272zm-2.1 4.347a.902.902 0 0 1-.891.755H3.932a.902.902 0 0 1-.891-.755l-.365-2.193A.902.902 0 0 1 3.567 12h12.867c.558 0 .983.501.891 1.052l-.366 2.193z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-drop'>
<path d="M10.203.561c-.027-.215-.38-.215-.406 0-.883 7.107-5.398 8.572-5.398 13.512 0 3.053 2.564 5.527 5.601 5.527 3.036 0 5.6-2.475 5.6-5.527 0-4.94-4.514-6.405-5.397-13.512zM9.35 8.418c-.059.219-.123.444-.189.678-.401 1.424-.856 3.039-.856 4.906 0 1.012-.598 1.371-1.156 1.371a1.161 1.161 0 0 1-1.156-1.166c0-2.207 1.062-3.649 2-4.92.295-.398.572-.775.797-1.15.103-.172.38-.164.506.006.059.08.079.182.054.275z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-dropbox'>
<path d="M6.109.902L.4 4.457l3.911 3.279L10 4.043 6.109.902zm7.343 15.09a.44.44 0 0 1-.285-.102L10 13.262l-3.167 2.629a.447.447 0 0 1-.529.03l-2.346-1.533v.904L10 19.098l6.042-3.807v-.904l-2.346 1.533a.44.44 0 0 1-.244.072zM19.6 4.457L13.89.902 10 4.043l5.688 3.693L19.6 4.457zM10 11.291l3.528 2.928 5.641-3.688-3.481-2.795L10 11.291zm-3.528 2.928L10 11.291 4.311 7.736l-3.48 2.795 5.641 3.688z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-edit'>
<path d="M17.561 2.439c-1.442-1.443-2.525-1.227-2.525-1.227L8.984 7.264 2.21 14.037 1.2 18.799l4.763-1.01 6.774-6.771 6.052-6.052c-.001 0 .216-1.083-1.228-2.527zM5.68 17.217l-1.624.35a3.71 3.71 0 0 0-.69-.932 3.742 3.742 0 0 0-.932-.691l.35-1.623.47-.469s.883.018 1.881 1.016c.997.996 1.016 1.881 1.016 1.881l-.471.468z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-email'>
<path d="M14.608 12.172c0 .84.239 1.175.864 1.175 1.393 0 2.28-1.775 2.28-4.727 0-4.512-3.288-6.672-7.393-6.672-4.223 0-8.064 2.832-8.064 8.184 0 5.112 3.36 7.896 8.52 7.896 1.752 0 2.928-.192 4.727-.792l.386 1.607c-1.776.577-3.674.744-5.137.744-6.768 0-10.393-3.72-10.393-9.456 0-5.784 4.201-9.72 9.985-9.72 6.024 0 9.215 3.6 9.215 8.016 0 3.744-1.175 6.6-4.871 6.6-1.681 0-2.784-.672-2.928-2.161-.432 1.656-1.584 2.161-3.145 2.161-2.088 0-3.84-1.609-3.84-4.848 0-3.264 1.537-5.28 4.297-5.28 1.464 0 2.376.576 2.782 1.488l.697-1.272h2.016v7.057h.002zm-2.951-3.168c0-1.319-.985-1.872-1.801-1.872-.888 0-1.871.719-1.871 2.832 0 1.68.744 2.616 1.871 2.616.792 0 1.801-.504 1.801-1.896v-1.68z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-emoji-flirt'>
<path d="M7.5 9.75C8.329 9.75 9 8.967 9 8s-.671-1.75-1.5-1.75S6 7.034 6 8s.672 1.75 1.5 1.75zM10 .4A9.6 9.6 0 0 0 .4 10a9.6 9.6 0 1 0 19.2-.001C19.6 4.698 15.301.4 10 .4zm0 17.199a7.6 7.6 0 1 1 0-15.2 7.6 7.6 0 0 1 0 15.2zm4.341-6.263a.756.756 0 0 0-1.008.32c-.034.065-.869 1.593-3.332 1.593-2.451 0-3.291-1.513-3.333-1.592a.75.75 0 0 0-1.339.678c.05.099 1.248 2.414 4.672 2.414 3.425 0 4.621-2.316 4.67-2.415a.745.745 0 0 0-.33-.998zM11.25 8.75h2.5a.75.75 0 0 0 0-1.5h-2.5a.75.75 0 0 0 0 1.5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-emoji-happy'>
<path d="M10 .4A9.6 9.6 0 0 0 .4 10a9.6 9.6 0 1 0 19.2-.001C19.6 4.698 15.301.4 10 .4zm0 17.199A7.6 7.6 0 1 1 10 2.4a7.6 7.6 0 1 1 0 15.199zM7.501 9.75C8.329 9.75 9 8.967 9 8s-.672-1.75-1.5-1.75S6 7.033 6 8s.672 1.75 1.501 1.75zm4.999 0c.829 0 1.5-.783 1.5-1.75s-.672-1.75-1.5-1.75S11 7.034 11 8s.672 1.75 1.5 1.75zm1.841 1.586a.756.756 0 0 0-1.008.32c-.034.066-.869 1.593-3.332 1.593-2.451 0-3.291-1.513-3.333-1.592a.75.75 0 0 0-1.339.678c.05.099 1.248 2.414 4.672 2.414 3.425 0 4.621-2.316 4.67-2.415a.745.745 0 0 0-.33-.998z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-emoji-neutral'>
<path d="M10 .4A9.6 9.6 0 0 0 .4 10a9.6 9.6 0 1 0 19.2-.001C19.6 4.698 15.301.4 10 .4zm0 17.199a7.6 7.6 0 1 1 0-15.2 7.6 7.6 0 0 1 0 15.2zm2.5-11.348c-.828 0-1.5.783-1.5 1.749s.672 1.75 1.5 1.75c.829 0 1.5-.783 1.5-1.75s-.671-1.749-1.5-1.749zM7.501 9.75C8.329 9.75 9 8.967 9 8s-.672-1.75-1.5-1.75S6 7.033 6 8s.672 1.75 1.501 1.75zM13 12.25H7a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 0-1.5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-emoji-sad'>
<path d="M10.001.4C4.698.4.4 4.698.4 10a9.6 9.6 0 0 0 9.601 9.601c5.301 0 9.6-4.298 9.6-9.601-.001-5.302-4.3-9.6-9.6-9.6zM10 17.599a7.6 7.6 0 1 1 0-15.2 7.6 7.6 0 0 1 0 15.2zm2.501-7.849c.828 0 1.5-.783 1.5-1.75s-.672-1.75-1.5-1.75-1.5.783-1.5 1.75.671 1.75 1.5 1.75zm-5 0c.828 0 1.5-.783 1.5-1.75s-.672-1.75-1.5-1.75-1.5.783-1.5 1.75.671 1.75 1.5 1.75zm2.501 1.5c-3.424 0-4.622 2.315-4.672 2.414a.75.75 0 0 0 1.342.672c.008-.017.822-1.586 3.33-1.586 2.463 0 3.298 1.527 3.328 1.585a.75.75 0 1 0 1.342-.67c-.049-.099-1.246-2.415-4.67-2.415z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-erase'>
<path d="M18 3H8.446c-.44 0-1.071.236-1.402.525L.248 9.473a.682.682 0 0 0 0 1.053l6.796 5.947c.331.289.962.527 1.402.527H18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2.809 11l-2.557-2.557L10.078 14l-1.443-1.443L11.191 10 8.635 7.443 10.078 6l2.557 2.555L15.19 6l1.444 1.443L14.078 10l2.557 2.555L15.191 14z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-eraser'>
<path d="M16.998 4.18l-3.154-2.425a2.01 2.01 0 0 0-2.807.365l-8.4 10.897a2.003 2.003 0 0 0 .365 2.803l3.153 2.425a2.01 2.01 0 0 0 2.807-.365l8.401-10.897a2.003 2.003 0 0 0-.365-2.803zm-8.45 12.287l-.537.681a.8.8 0 0 1-.639.31.793.793 0 0 1-.485-.164l-3.153-2.425a.792.792 0 0 1-.303-.53.788.788 0 0 1 .157-.589l.537-.681a.801.801 0 0 1 .64-.311c.124 0 .309.029.485.164l3.154 2.425a.802.802 0 0 1 .144 1.12z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-evernote'>
<path d="M17.3 4.3c0-1.2-1.7-1.3-1.7-1.3l-4.1-.3s-.1-1.1-.9-1.5C9.8.9 8.9 1 8.3 1c-.7 0-.8.9-.8 1.6v2.2c0 1-.4 1.4-1.6 1.4H3.6c-.6 0-1.1.1-1.1.6s.8 5 1.8 6c.6.6 4.3 1 5.1 1s.5-2.3.7-2.3.5 1.3 1.7 1.6c1.2.3 2.9.2 3 1.1.1 1.2.2 2.6-.5 2.7l-1.7.1c-1.2-.1-.9-1.4-.3-1.4h.8l.1-1.4s-2.7-.3-2.8 1.5c-.1 1.7.2 2.4.4 2.6.2.2.6.5 3.9.5 4.3.2 2.6-13.3 2.6-14.5zm-1.9 6c-.1.2-.8-.3-1.4-.3-.6 0-1.3.3-1.5.1-.2-.2.1-2 1.3-2s1.8 2 1.6 2.2zM5.3 4.6H2.4l3.5-3.4s-.1 2.8-.1 3c0 .2-.1.4-.5.4z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-export'>
<path d="M15 15H2V6h2.595s.689-.896 2.17-2H1a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h15a1 1 0 0 0 1-1v-3.746l-2 1.645V15zm-1.639-6.95v3.551L20 6.4l-6.639-4.999v3.131C5.3 4.532 5.3 12.5 5.3 12.5c2.282-3.748 3.686-4.45 8.061-4.45z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-eye-with-line'>
<path d="M18.521 1.478a1 1 0 0 0-1.414 0L1.48 17.107a1 1 0 1 0 1.414 1.414L18.52 2.892a1 1 0 0 0 0-1.414zM3.108 13.498l2.56-2.56A4.18 4.18 0 0 1 5.555 10c0-2.379 1.99-4.309 4.445-4.309.286 0 .564.032.835.082l1.203-1.202A12.645 12.645 0 0 0 10 4.401C3.44 4.4 0 9.231 0 10c0 .423 1.057 2.09 3.108 3.497zm13.787-6.993l-2.562 2.56c.069.302.111.613.111.935 0 2.379-1.989 4.307-4.444 4.307-.284 0-.56-.032-.829-.081l-1.204 1.203c.642.104 1.316.17 2.033.17 6.56 0 10-4.833 10-5.599 0-.424-1.056-2.09-3.105-3.495z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-eye'>
<path d="M10 4.4C3.439 4.4 0 9.232 0 10c0 .766 3.439 5.6 10 5.6 6.56 0 10-4.834 10-5.6 0-.768-3.44-5.6-10-5.6zm0 9.907c-2.455 0-4.445-1.928-4.445-4.307 0-2.379 1.99-4.309 4.445-4.309s4.444 1.93 4.444 4.309c0 2.379-1.989 4.307-4.444 4.307zM10 10c-.407-.447.663-2.154 0-2.154-1.228 0-2.223.965-2.223 2.154s.995 2.154 2.223 2.154c1.227 0 2.223-.965 2.223-2.154 0-.547-1.877.379-2.223 0z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-facebook-with-circle'>
<path d="M10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zm2.274 6.634h-1.443c-.171 0-.361.225-.361.524V8.6h1.805l-.273 1.486H10.47v4.461H8.767v-4.461H7.222V8.6h1.545v-.874c0-1.254.87-2.273 2.064-2.273h1.443v1.581z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-facebook'>
<path d="M17 1H3c-1.1 0-2 .9-2 2v14c0 1.101.9 2 2 2h7v-7H8V9.525h2v-2.05c0-2.164 1.212-3.684 3.766-3.684l1.803.002v2.605h-1.197c-.994 0-1.372.746-1.372 1.438v1.69h2.568L15 12h-2v7h4c1.1 0 2-.899 2-2V3c0-1.1-.9-2-2-2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-feather'>
<path d="M4.254 19.567c.307-.982.77-2.364 1.391-4.362 2.707-.429 3.827.341 5.546-2.729-1.395.427-3.077-.792-2.987-1.321.091-.528 3.913.381 6.416-3.173-3.155.696-4.164-.836-3.757-1.067.939-.534 3.726-.222 5.212-1.669.766-.745 1.125-2.556.813-3.202-.374-.781-2.656-1.946-3.914-1.836-1.258.109-3.231 4.79-3.817 4.754-.584-.037-.703-2.098.319-4.013-1.077.477-3.051 1.959-3.67 3.226-1.153 2.357.108 7.766-.296 7.958-.405.193-1.766-2.481-2.172-3.694-.555 1.859-.568 3.721 1.053 6.194-.611 1.623-.945 3.491-.996 4.441-.024.759.724.922.859.493z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-fingerprint'>
<path d="M9.68 7.85c-.374.094-.607.497-.52.9.717 3.328.873 6.815.452 10.086-.053.41.212.79.592.846a.655.655 0 0 0 .097.007c.341 0 .639-.271.688-.646.444-3.452.28-7.128-.475-10.632-.087-.405-.46-.653-.834-.56zm-1.611 4.223c-.382.038-.663.404-.628.816.17 1.968.125 3.91-.132 5.772-.056.41.206.791.585.852a.612.612 0 0 0 .103.008c.339 0 .636-.267.687-.64.273-1.98.32-4.043.141-6.13-.035-.413-.386-.72-.756-.678zm1.09-6.659c-.784.197-1.45.712-1.876 1.449a3.445 3.445 0 0 0-.379 2.454c.088.41.168.82.237 1.229.068.408.44.677.809.603.378-.075.627-.466.558-.873a30.238 30.238 0 0 0-.25-1.299 1.853 1.853 0 0 1 .205-1.32c.23-.398.589-.676 1.01-.781.872-.22 1.741.37 1.943 1.309.746 3.461.942 6.93.58 10.309-.043.411.23.783.612.83a.647.647 0 0 0 .08.006c.349 0 .649-.282.69-.664.379-3.551.174-7.192-.608-10.82-.375-1.743-1.991-2.834-3.612-2.432zm-2.411.533a.79.79 0 0 0-.114-1.054.661.661 0 0 0-.976.123 5.744 5.744 0 0 0-.34.524 6.095 6.095 0 0 0-.67 4.343c.594 2.757.733 5.588.401 8.19-.052.41.214.788.594.845a.714.714 0 0 0 .096.006c.342 0 .64-.272.688-.647.353-2.78.207-5.8-.425-8.733a4.51 4.51 0 0 1 .746-3.597zm8.362 6.872c-.383.02-.68.372-.66.786a34.322 34.322 0 0 1-.059 4.131c-.032.414.253.775.636.81a.742.742 0 0 0 .057.002c.359 0 .663-.297.692-.69.107-1.422.128-2.878.062-4.327-.019-.414-.354-.723-.728-.712zm-.17-1.035a.649.649 0 0 0 .087-.006c.381-.05.65-.425.604-.836a37.924 37.924 0 0 0-.606-3.663c-.552-2.574-2.75-4.443-5.223-4.443-.391 0-.782.047-1.164.142-.316.08-.625.19-.921.327-.352.165-.514.607-.362.987.153.38.563.555.914.39.219-.102.45-.184.682-.242.278-.07.564-.104.85-.104 1.835 0 3.462 1.38 3.87 3.283.25 1.158.446 2.338.58 3.508.044.38.344.657.69.657zm2.342-5.068a8.344 8.344 0 0 0-2.02-3.913.66.66 0 0 0-.983 0 .8.8 0 0 0-.002 1.067 6.86 6.86 0 0 1 1.651 3.208c.647 3.003.937 6.085.861 9.098-.01.414.292.824.676.824h.019c.375 0 .684-.375.695-.782a40.575 40.575 0 0 0-.897-9.502zM3.39 12.855a.664.664 0 0 0 .102-.008c.38-.06.642-.442.587-.851a25.027 25.027 0 0 0-.332-1.887 7.148 7.148 0 0 1 .785-5.098c.883-1.53 2.267-2.598 3.894-3.006a5.846 5.846 0 0 1 4.193.558c.342.187.76.037.933-.333.173-.37.035-.821-.308-1.007a7.153 7.153 0 0 0-5.13-.68c-1.99.5-3.682 1.805-4.762 3.674a8.742 8.742 0 0 0-.96 6.232c.128.594.233 1.187.311 1.765.05.373.348.64.687.64zM3.597 14h-.023c-.384 0-.684.25-.672.663.027.848.004 1.58-.07 2.39-.037.412.242.778.624.818a.647.647 0 0 0 .069.003.671.671 0 0 0 .69-.625c.08-.875.106-1.723.077-2.637C4.28 14.207 3.97 14 3.597 14z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-flag'>
<path d="M18.926 5.584c-9.339 13.568-6.142-.26-14.037 6.357L6.684 19H4.665L1 4.59l1.85-.664c8.849-6.471 4.228 5.82 15.637 1.254.364-.147.655.09.439.404z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-flash'>
<path d="M6.803 18.998c-.194-.127 3.153-7.16 3.038-7.469-.116-.309-3.665-1.436-3.838-1.979-.174-.543 7.007-8.707 7.196-8.549.188.158-3.129 7.238-3.039 7.469.091.23 3.728 1.404 3.838 1.979.111.575-7.002 8.676-7.195 8.549z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-flashlight'>
<path d="M17.115 2.884c-1.676-1.676-3.779-2.288-4.449-1.618L9.97 3.962c-.409.41-.766 1.779-.602 3.164l-8.161 8.161c-.484.484-.092 1.66.876 2.629.968.969 2.146 1.359 2.629.877l8.161-8.162c1.386.164 2.755-.193 3.164-.601l2.696-2.697c.67-.67.058-2.774-1.618-4.449zm-8.974 8.155c-.373-.372-.251-1.096.269-1.617.521-.521 1.246-.643 1.618-.27.372.371.251 1.097-.27 1.617-.521.522-1.245.643-1.617.27zm6.75-5.931c-1.298-1.297-1.623-3.01-1.508-3.125.115-.116 1.76.277 3.059 1.575 1.298 1.298 1.688 2.946 1.575 3.059-.112.112-1.829-.21-3.126-1.509z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-flat-brush'>
<path d="M1.844 14.889c.498.376 1.594-1.178 1.942-.915.348.263-.82 1.762-.528 1.982.292.22 1.513-1.239 1.852-.984.338.255-.803 1.774-.437 2.051.367.277 1.562-1.202 1.852-.983.29.219-.773 1.797-.437 2.05.336.254 1.481-1.263 1.76-1.052.28.211-.844 1.743-.346 2.119.498.375 5.37-8.964 5.37-8.964L8.996 7.254s-7.65 7.26-7.152 7.635zM13.023.831L9.661 5.987l4.121 3.109 4.396-4.246c-.527-1.503-3.44-3.843-5.155-4.019z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-flattr'>
<path d="M5.598 8.541c0-1.637.434-2.678 1.889-2.912.508-.1 1.566-.064 2.239-.064v2.5c0 .024.003.064.009.084a.236.236 0 0 0 .228.175c.061 0 .118-.031.178-.09L16.377 2H7.548C3.874 2 2 4.115 2 8.066v8.287l3.598-3.602v-4.21zM14.4 7.248v4.209c0 1.637-.434 2.68-1.889 2.912-.508.1-1.566.065-2.238.065v-2.5a.48.48 0 0 0-.009-.084.242.242 0 0 0-.228-.176c-.062 0-.118.033-.179.092l-6.235 6.232L7.809 18h4.643C16.125 18 18 15.885 18 11.934V3.647l-3.6 3.601z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-flickr-with-circle'>
<path d="M10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zM7.436 12a1.99 1.99 0 0 1-1.982-2c0-1.105.887-2 1.982-2 1.094 0 1.982.895 1.982 2s-.889 2-1.982 2zm5.129 0a1.991 1.991 0 0 1-1.983-2c0-1.105.888-2 1.983-2a1.99 1.99 0 0 1 1.982 2c0 1.105-.887 2-1.982 2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-flickr'>
<path d="M5 14c-2.188 0-3.96-1.789-3.96-4 0-2.211 1.772-4 3.96-4 2.187 0 3.96 1.789 3.96 4 0 2.211-1.773 4-3.96 4zM15 14c-2.188 0-3.96-1.789-3.96-4 0-2.211 1.772-4 3.96-4 2.187 0 3.96 1.789 3.96 4 0 2.211-1.773 4-3.96 4z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-flow-branch'>
<path d="M16.4 4a2.4 2.4 0 1 0-4.8 0c0 .961.568 1.784 1.384 2.167-.082 1.584-1.27 2.122-3.335 2.896-.87.327-1.829.689-2.649 1.234V6.176A2.396 2.396 0 0 0 6 1.6a2.397 2.397 0 1 0-1 4.576v7.649A2.393 2.393 0 0 0 3.6 16a2.4 2.4 0 1 0 4.8 0c0-.961-.568-1.784-1.384-2.167.082-1.583 1.271-2.122 3.335-2.896 2.03-.762 4.541-1.711 4.64-4.756A2.398 2.398 0 0 0 16.4 4zM6 2.615a1.384 1.384 0 1 1 0 2.768 1.384 1.384 0 0 1 0-2.768zm0 14.77a1.385 1.385 0 1 1 0-2.77 1.385 1.385 0 0 1 0 2.77zm8-12a1.385 1.385 0 1 1 0-2.77 1.385 1.385 0 0 1 0 2.77z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-flow-cascade'>
<path d="M14 14.6c-.967 0-1.796.576-2.176 1.4H8.5A1.5 1.5 0 0 1 7 14.5v-3.85c.456.218.961.35 1.5.35h3.324a2.396 2.396 0 0 0 4.576-1 2.397 2.397 0 1 0-4.576-1H8.5A1.5 1.5 0 0 1 7 7.5V5.176A2.396 2.396 0 0 0 6 .6a2.397 2.397 0 1 0-1 4.576V14.5A3.5 3.5 0 0 0 8.5 18h3.324a2.396 2.396 0 0 0 4.576-1 2.4 2.4 0 0 0-2.4-2.4zm0-5.985a1.384 1.384 0 1 1 0 2.768 1.384 1.384 0 0 1 0-2.768zm-8-7a1.384 1.384 0 1 1 0 2.768 1.384 1.384 0 0 1 0-2.768zm8 16.77a1.385 1.385 0 1 1 0-2.77 1.385 1.385 0 0 1 0 2.77z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-flow-line'>
<path d="M11 13.824V6.176A2.395 2.395 0 0 0 12.4 4a2.4 2.4 0 1 0-4.8 0c0 .967.576 1.796 1.4 2.176v7.649A2.393 2.393 0 0 0 7.6 16a2.4 2.4 0 1 0 4.8 0c0-.967-.575-1.796-1.4-2.176zM10 2.615a1.384 1.384 0 1 1 0 2.768 1.384 1.384 0 0 1 0-2.768zm0 14.77a1.385 1.385 0 1 1 0-2.77 1.385 1.385 0 0 1 0 2.77z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-flow-parallel'>
<path d="M8.4 4a2.4 2.4 0 1 0-4.8 0c0 .967.576 1.796 1.4 2.176v7.649A2.393 2.393 0 0 0 3.6 16a2.4 2.4 0 1 0 4.8 0c0-.967-.576-1.796-1.4-2.176V6.176A2.396 2.396 0 0 0 8.4 4zM7.384 16a1.385 1.385 0 1 1-2.77 0 1.385 1.385 0 0 1 2.77 0zM6 5.385a1.385 1.385 0 1 1 .001-2.77A1.385 1.385 0 0 1 6 5.386zm9 8.439V6.176A2.395 2.395 0 0 0 16.4 4a2.4 2.4 0 1 0-4.8 0c0 .967.576 1.796 1.4 2.176v7.649a2.395 2.395 0 0 0-1.4 2.176 2.4 2.4 0 1 0 4.8 0c0-.968-.575-1.797-1.4-2.177zM12.616 4a1.384 1.384 0 1 1 2.769 0 1.385 1.385 0 0 1-2.769 0zM14 17.385a1.385 1.385 0 1 1 0-2.77 1.385 1.385 0 0 1 0 2.77z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-flow-tree'>
<path d="M18 14.824V12.5A3.5 3.5 0 0 0 14.5 9h-2A1.5 1.5 0 0 1 11 7.5V5.176A2.395 2.395 0 0 0 12.4 3a2.4 2.4 0 1 0-4.8 0c0 .967.576 1.796 1.4 2.176V7.5A1.5 1.5 0 0 1 7.5 9h-2A3.5 3.5 0 0 0 2 12.5v2.324A2.396 2.396 0 0 0 3 19.4a2.397 2.397 0 1 0 1-4.576V12.5A1.5 1.5 0 0 1 5.5 11h2c.539 0 1.044-.132 1.5-.35v4.174a2.396 2.396 0 0 0 1 4.576 2.397 2.397 0 1 0 1-4.576V10.65c.456.218.961.35 1.5.35h2a1.5 1.5 0 0 1 1.5 1.5v2.324A2.395 2.395 0 0 0 14.6 17a2.4 2.4 0 1 0 4.8 0c0-.967-.575-1.796-1.4-2.176zM10 1.615a1.384 1.384 0 1 1 0 2.768 1.384 1.384 0 0 1 0-2.768zm-7 16.77a1.385 1.385 0 1 1 0-2.77 1.385 1.385 0 0 1 0 2.77zm7 0a1.385 1.385 0 1 1 0-2.77 1.385 1.385 0 0 1 0 2.77zm7 0a1.385 1.385 0 1 1 0-2.77 1.385 1.385 0 0 1 0 2.77z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-flower'>
<path d="M12.66 8.76c.439-1.087-.364-2.509-1.21-3.406.328-1.19.371-2.822-.526-3.575-.897-.754-2.497-.43-3.613.098-1.03-.68-2.568-1.226-3.563-.606-.994.62-1.18 2.243-1.023 3.467-.964.769-1.959 2.064-1.676 3.201s1.768 1.816 2.98 2.044c.434 1.155 1.358 2.501 2.527 2.584.828.058 1.62-.531 2.224-1.263 1.22 1.52 2.082 3.127 2.555 4.706C10.612 14.93 9.115 14 6 14c0 4.155 3.042 5.003 5 5.003l3.2.002c0-2.723-.986-5.91-3.29-8.901.783-.247 1.479-.677 1.75-1.344zm-4.377-.22a2.447 2.447 0 1 1-2.591-4.153 2.447 2.447 0 0 1 2.59 4.153zm5.737 3.708c1.083 2.17 1.669 4.453 1.678 6.705C18.996 16.582 19 12.206 19 8.003c0 0-3.67 1.034-4.98 4.245z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-folder-images'>
<path d="M18.405 2.799c-.112-.44-.656-.799-1.21-.799H2.805c-.555 0-1.099.359-1.21.799L1.394 4h17.211l-.2-1.201zM19.412 5H.587a.58.58 0 0 0-.577.635l.923 11.669a.77.77 0 0 0 .766.696H18.3a.77.77 0 0 0 .766-.696l.923-11.669A.58.58 0 0 0 19.412 5zm-6.974 3.375a.938.938 0 1 1 0 1.876.938.938 0 0 1 0-1.876zM5.5 14l2.486-5.714 2.827 4.576 2.424-1.204L14.5 14h-9z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-folder-music'>
<path d="M18.405 2.799c-.112-.44-.656-.799-1.21-.799H2.805c-.555 0-1.099.359-1.21.799L1.394 4h17.211l-.2-1.201zM19.412 5H.587a.58.58 0 0 0-.577.635l.923 11.669a.77.77 0 0 0 .766.696H18.3a.77.77 0 0 0 .766-.696l.923-11.669A.58.58 0 0 0 19.412 5zm-7.47 7.521c-.128.265-.258.279-.202 0 .146-.721.047-2.269-1.043-2.441v3.294c0 .674-.311 1.262-1.136 1.528-.802.256-1.699-.011-1.908-.586-.21-.576.261-1.276 1.052-1.564.442-.161.954-.203 1.299-.07V8h.694c-.001 1.633 2.818 1.275 1.244 4.521z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-folder-video'>
<path d="M18.405 2.799c-.112-.44-.656-.799-1.21-.799H2.805c-.555 0-1.099.359-1.21.799L1.394 4h17.211l-.2-1.201zM19.412 5H.587a.58.58 0 0 0-.577.635l.923 11.669a.77.77 0 0 0 .766.696H18.3a.77.77 0 0 0 .766-.696l.923-11.669A.58.58 0 0 0 19.412 5zM8 14V9l4.383 2.5L8 14z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-folder'>
<path d="M18.405 4.799c-.111-.44-.655-.799-1.21-.799h-6.814c-.554 0-1.33-.318-1.722-.707l-.596-.588C7.671 2.316 6.896 2 6.342 2H3.087c-.555 0-1.059.447-1.12.994L1.675 6h16.931l-.201-1.201zM19.412 7H.588a.58.58 0 0 0-.577.635l.923 9.669A.77.77 0 0 0 1.7 18h16.6a.77.77 0 0 0 .766-.696l.923-9.669A.58.58 0 0 0 19.412 7z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-forward'>
<path d="M12 11.874v4.357l7-6.69-7-6.572v3.983c-8.775 0-11 9.732-11 9.732 2.484-4.388 6.237-4.81 11-4.81z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-foursquare'>
<path d="M4.92 1a.92.92 0 0 0-.92.92v16.516c0 .625.765.926 1.192.47l4.471-4.79A.357.357 0 0 1 9.927 14h3.237c.486 0 .905-.343 1.001-.82l2.111-10.514A1.392 1.392 0 0 0 14.911 1H4.92zm3.918 11.19L6 15.527V3.343C6 3.154 6.154 3 6.343 3h7.14a.54.54 0 0 1 .53.648L13.6 5.703a.369.369 0 0 1-.362.297h-3.71A.527.527 0 0 0 9 6.528v1.22c0 .139.113.252.253.252h3.294c.306 0 .536.28.476.581l-.614 3.058a.452.452 0 0 1-.442.361H9.25a.54.54 0 0 0-.412.19z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-funnel'>
<path d="M10 1C5.092 1 2 2.512 2 4.001v2c0 .918 6 6 6 6v6c-.001.684 1 1 2 1s2.001-.316 2-1v-6s6-5.082 6-6v-2C18 2.512 14.908 1 10 1zm0 5.123C6.409 6.122 3.862 4.79 3.862 4.292 3.86 3.797 6.41 2.461 10 2.463c3.59-.002 6.14 1.334 6.138 1.828 0 .499-2.547 1.831-6.138 1.832z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-game-controller'>
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.444 9.361c-.882-4.926-2.854-6.379-3.903-6.379-1.637 0-2.057 1.217-5.541 1.258-3.484-.041-3.904-1.258-5.541-1.258-1.049 0-3.022 1.453-3.904 6.379-.503 2.812-1.049 7.01.252 7.514 1.619.627 2.168-.941 3.946-2.266C6.558 13.266 7.424 12.95 10 12.95s3.442.316 5.247 1.659c1.778 1.324 2.327 2.893 3.946 2.266 1.301-.504.755-4.701.251-7.514zM6 10a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm7 0a1 1 0 1 1 0-2 1 1 0 1 1 0 2zm2-2a1 1 0 1 1 0-2 1 1 0 1 1 0 2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-gauge'>
<path d="M8.127 13.6c-.689 1.197-.225 2.18.732 2.732.956.553 2.041.465 2.732-.732.689-1.195 5.047-11.865 4.668-12.084-.379-.219-7.442 8.888-8.132 10.084zM10 6c.438 0 .864.037 1.281.109.438-.549.928-1.154 1.405-1.728A9.664 9.664 0 0 0 10 4C4.393 4 0 8.729 0 14.766c0 .371.016.742.049 1.103.049.551.54.955 1.084.908.551-.051.957-.535.908-1.086A10.462 10.462 0 0 1 2 14.766C2 9.85 5.514 6 10 6zm7.219 1.25c-.279.75-.574 1.514-.834 2.174C17.4 10.894 18 12.738 18 14.766c0 .316-.015.635-.043.943a1.001 1.001 0 0 0 1.992.182c.033-.37.051-.748.051-1.125 0-2.954-1.053-5.59-2.781-7.516z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-github-with-circle'>
<path d="M10.015 9.949h-.03c-1.191 0-2.24-.303-2.861.268a1.57 1.57 0 0 0-.527 1.197c0 1.852 1.483 2.08 3.389 2.08h.029c1.905 0 3.389-.229 3.389-2.08 0-.443-.156-.856-.527-1.197-.622-.571-1.671-.268-2.862-.268zM8.393 12.48c-.363 0-.656-.408-.656-.91s.293-.908.656-.908c.363 0 .657.406.657.908.001.502-.293.91-.657.91zm3.213 0c-.363 0-.657-.408-.657-.91s.294-.908.657-.908c.362 0 .656.406.656.908.001.502-.293.91-.656.91zM10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zm.876 13.539c-.172 0-.514 0-.876.002-.362-.002-.704-.002-.876-.002-.76 0-3.772-.059-3.772-3.689 0-.834.286-1.445.755-1.955-.074-.184-.078-1.232.32-2.236 0 0 .916.1 2.301 1.051.289-.081.781-.122 1.272-.122s.982.041 1.273.121c1.385-.951 2.301-1.051 2.301-1.051.398 1.004.395 2.053.32 2.236.469.51.755 1.121.755 1.955-.001 3.632-3.013 3.69-3.773 3.69z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-github'>
<path d="M13.18 11.309c-.718 0-1.3.807-1.3 1.799 0 .994.582 1.801 1.3 1.801s1.3-.807 1.3-1.801c-.001-.992-.582-1.799-1.3-1.799zm4.526-4.683c.149-.365.155-2.439-.635-4.426 0 0-1.811.199-4.551 2.08-.575-.16-1.548-.238-2.519-.238-.973 0-1.945.078-2.52.238C4.74 2.399 2.929 2.2 2.929 2.2c-.789 1.987-.781 4.061-.634 4.426C1.367 7.634.8 8.845.8 10.497c0 7.186 5.963 7.301 7.467 7.301l1.734.002 1.732-.002c1.506 0 7.467-.115 7.467-7.301 0-1.652-.566-2.863-1.494-3.871zm-7.678 10.289h-.056c-3.771 0-6.709-.449-6.709-4.115 0-.879.31-1.693 1.047-2.369C5.537 9.304 7.615 9.9 9.972 9.9h.056c2.357 0 4.436-.596 5.664.531.735.676 1.045 1.49 1.045 2.369 0 3.666-2.937 4.115-6.709 4.115zm-3.207-5.606c-.718 0-1.3.807-1.3 1.799 0 .994.582 1.801 1.3 1.801.719 0 1.301-.807 1.301-1.801 0-.992-.582-1.799-1.301-1.799z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-globe'>
<path d="M10 .4C4.705.4.399 4.707.399 10c0 5.293 4.306 9.6 9.601 9.6 5.293 0 9.6-4.307 9.6-9.6 0-5.293-4.307-9.6-9.6-9.6zm8.188 9.6c0 1.873-.636 3.6-1.696 4.98-.3-.234-.619-.867-.319-1.523.303-.66.382-2.188.312-2.783-.066-.594-.375-2.025-1.214-2.039-.838-.012-1.413-.289-1.911-1.283-1.033-2.068 1.939-2.465.906-3.609-.289-.322-1.783 1.322-2.002-.869-.014-.157.135-.392.336-.636 3.244 1.09 5.588 4.157 5.588 7.762zM8.875 1.893c-.196.382-.713.537-1.027.824-.684.619-.978.533-1.346 1.127-.371.594-1.567 1.449-1.567 1.879s.604.936.906.838c.302-.1 1.099-.094 1.567.07.469.166 3.914.332 2.816 3.244-.348.926-1.873.77-2.279 2.303-.061.225-.272 1.186-.285 1.5-.025.486.344 2.318-.125 2.318-.471 0-1.738-1.639-1.738-1.936 0-.297-.328-1.338-.328-2.23 0-.891-1.518-.877-1.518-2.062 0-1.068.823-1.6.638-2.113-.181-.51-1.627-.527-2.23-.59a8.213 8.213 0 0 1 6.516-5.172zM7.424 17.77c.492-.26.542-.596.988-.613.51-.023.925-.199 1.5-.326.51-.111 1.423-.629 2.226-.695.678-.055 2.015.035 2.375.689a8.159 8.159 0 0 1-7.089.945z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-google+-with-circle'>
<path d="M10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zm-.553 13.721c-.603.293-1.252.324-1.503.324h-.075-.054c-.392 0-2.343-.09-2.343-1.867 0-1.746 2.125-1.883 2.776-1.883h.017c-.376-.502-.298-1.008-.298-1.008a2.34 2.34 0 0 1-.14.004c-.245 0-.718-.039-1.124-.301-.498-.32-.75-.865-.75-1.619 0-2.131 2.327-2.217 2.35-2.219h2.324v.051c0 .26-.467.311-.785.354-.108.016-.325.037-.386.068.589.315.684.809.684 1.545 0 .838-.328 1.281-.676 1.592-.216.193-.385.344-.385.547 0 .199.232.402.502.639.441.389 1.046.918 1.046 1.811 0 .923-.397 1.583-1.18 1.962zM14.5 10H13v1.5h-1V10h-1.5V9H12V7.5h1V9h1.5v1zm-6.277 1.15a2.08 2.08 0 0 0-.157.006 1.918 1.918 0 0 0-1.15.469c-.294.266-.444.602-.423.941.045.711.808 1.127 1.735 1.061.912-.066 1.52-.592 1.476-1.303-.042-.668-.623-1.174-1.481-1.174zm.874-3.865c-.242-.85-.632-1.102-1.238-1.102a.75.75 0 0 0-.194.027c-.263.075-.472.294-.588.62-.119.33-.126.674-.024 1.066.185.701.683 1.209 1.185 1.209a.664.664 0 0 0 .194-.027c.549-.154.893-.992.665-1.793z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-google+'>
<path d="M1.989 5.589c0 1.494.499 2.572 1.482 3.205.806.52 1.74.598 2.226.598.118 0 .213-.006.279-.01 0 0-.154 1.004.59 1.996h-.034c-1.289 0-5.493.269-5.493 3.727 0 3.516 3.861 3.695 4.636 3.695.061 0 .097-.002.097-.002.008 0 .063.002.158.002.497 0 1.782-.062 2.975-.643 1.548-.75 2.333-2.059 2.333-3.885 0-1.764-1.196-2.814-2.069-3.582-.533-.469-.994-.873-.994-1.266 0-.4.337-.701.762-1.082.689-.615 1.339-1.492 1.339-3.15 0-1.457-.189-2.436-1.354-3.057.121-.062.551-.107.763-.137.631-.086 1.554-.184 1.554-.699V1.2H6.64c-.046.002-4.651.172-4.651 4.389zm7.424 9.013c.088 1.406-1.115 2.443-2.922 2.574-1.835.135-3.345-.691-3.433-2.096-.043-.676.254-1.336.835-1.863.589-.533 1.398-.863 2.278-.928.104-.006.207-.012.31-.012 1.699.001 2.849.999 2.932 2.325zM8.212 4.626c.451 1.588-.23 3.246-1.316 3.553a1.417 1.417 0 0 1-.384.052c-.994 0-1.979-1.006-2.345-2.393-.204-.776-.187-1.458.047-2.112.229-.645.643-1.078 1.163-1.225.125-.035.254-.053.385-.053 1.2 0 1.972.498 2.45 2.178zM16 8V5h-2v3h-3v2h3v3h2v-3h3V8h-3z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-google-drive'>
<path d="M8.175 13l-3.324 6h11.824L20 13H8.175zM5.865 2.299L0 12.914l3.372 6.084L9.238 8.383 5.865 2.299zM19.445 12L13.349 1H6.604l6.088 11h6.753z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-google-hangouts'>
<path d="M10 0C5.25 0 1.4 3.806 1.4 8.5S5.25 17 10 17v3c3.368-1.672 8.6-5.305 8.6-11.5C18.6 3.806 14.75 0 10 0zM9 9.741a2.552 2.552 0 0 1-2.32 2.538.211.211 0 0 1-.228-.211v-.852c0-.106.079-.194.184-.21A1.265 1.265 0 0 0 7.683 10H5.732A.732.732 0 0 1 5 9.268V6.732C5 6.328 5.328 6 5.732 6h2.536c.404 0 .732.328.732.732v3.009zm6 0a2.552 2.552 0 0 1-2.32 2.538.211.211 0 0 1-.228-.211v-.852c0-.106.079-.194.184-.21A1.266 1.266 0 0 0 13.683 10h-1.951A.732.732 0 0 1 11 9.268V6.732c0-.404.328-.732.732-.732h2.536c.404 0 .732.328.732.732v3.009z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-google-play'>
<path d="M4.943 18.05l7.666-4.327-1.646-1.823-6.02 6.15zm-2.8-15.927c-.089.158-.143.34-.143.542V17.79c0 .28.105.52.263.71L9.89 10.71 2.142 2.123zM17.48 9.482l-2.673-1.509-2.722 2.781 1.951 2.163 3.444-1.943a.946.946 0 0 0 .52-.746.946.946 0 0 0-.52-.746zm-4.115-2.323l-9.22-5.204 6.866 7.61 2.354-2.406z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-graduation-cap'>
<path d="M3.302 12.238c.464 1.879 1.054 2.701 3.022 3.562 1.969.86 2.904 1.8 3.676 1.8.771 0 1.648-.822 3.616-1.684 1.969-.861 1.443-1.123 1.907-3.002L10 15.6l-6.698-3.362zm16.209-4.902l-8.325-4.662c-.652-.365-1.72-.365-2.372 0L.488 7.336c-.652.365-.652.963 0 1.328l8.325 4.662c.652.365 1.72.365 2.372 0l5.382-3.014-5.836-1.367a3.09 3.09 0 0 1-.731.086c-1.052 0-1.904-.506-1.904-1.131 0-.627.853-1.133 1.904-1.133.816 0 1.51.307 1.78.734l6.182 2.029 1.549-.867c.651-.364.651-.962 0-1.327zm-2.544 8.834c-.065.385 1.283 1.018 1.411-.107.579-5.072-.416-6.531-.416-6.531l-1.395.781c0-.001 1.183 1.125.4 5.857z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-grid'>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 4H5a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1zm7 0h-3a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1zm-7 7H5a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1zm7 0h-3a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-grooveshark'>
<path d="M10 1.199a8.801 8.801 0 1 0 .002 17.602A8.801 8.801 0 0 0 10 1.199zm3.538 9.139a26.815 26.815 0 0 0-1.497-1.939 15.769 15.769 0 0 0-1.614-1.645c-.578-.504-1.208-.982-1.9-1.316a9.018 9.018 0 0 0-1.439-.536c-.056-.015-.208-.084-.252-.015-.028.043-.006.123-.002.17l.039.308c.148 1.228.204 2.525-.178 3.719A3.9 3.9 0 0 1 5.62 10.77c-.413.379-1.002.76-1.587.732a1.141 1.141 0 0 1-.324-.059c-.626-.211-.663-.886-.667-1.443a6.992 6.992 0 0 1 .216-1.775 7.033 7.033 0 0 1 4.419-4.834A6.954 6.954 0 0 1 10 2.994a7.011 7.011 0 0 1 5.817 3.137c.32.488.577 1.016.766 1.566h-.003c.061.174.117.35.163.527.146.58.22 1.178.216 1.775-.008 1.125-.37 2.367-1.783 1.771-.667-.282-1.224-.852-1.638-1.432z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-hair-cross'>
<path d="M10 .4C4.697.4.399 4.698.399 10A9.6 9.6 0 0 0 10 19.601c5.301 0 9.6-4.298 9.6-9.601 0-5.302-4.299-9.6-9.6-9.6zm1 17.125V13H9v4.525A7.589 7.589 0 0 1 2.473 11H7V9H2.473A7.589 7.589 0 0 1 9 2.475V7h2V2.475A7.59 7.59 0 0 1 17.525 9H13v2h4.525A7.592 7.592 0 0 1 11 17.525z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-hand'>
<path d="M17.924 17.315c-.057.174-.193.367-.416.432-.161.047-5.488 1.59-5.652 1.633-.469.125-.795.033-1.009-.156-.326-.287-4.093-2.85-8.845-3.092-.508-.025-.259-1.951 1.193-1.951.995 0 3.904.723 4.255.371.271-.272.394-1.879-.737-4.683L4.438 4.232a1.045 1.045 0 0 1 1.937-.781L8.361 8.37c.193.48.431.662.69.562.231-.088.279-.242.139-.709L7.144 2.195A1.043 1.043 0 0 1 7.796.871a1.042 1.042 0 0 1 1.325.652l1.946 5.732c.172.504.354.768.642.646.173-.073.161-.338.115-.569l-1.366-5.471a1.045 1.045 0 1 1 2.027-.506l1.26 5.042c.184.741.353 1.008.646.935.299-.073.285-.319.244-.522l-.872-4.328a.95.95 0 0 1 1.86-.375l.948 4.711.001.001v.001l.568 2.825c.124.533.266 1.035.45 1.527 1.085 2.889.519 5.564.334 6.143z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-heart-outlined'>
<path d="M17.19 4.156c-1.672-1.535-4.383-1.535-6.055 0L10 5.197 8.864 4.156c-1.672-1.535-4.382-1.535-6.054 0-1.881 1.726-1.881 4.519 0 6.245L10 17l7.19-6.599c1.88-1.726 1.88-4.52 0-6.245zm-1.066 5.219L10 15.09 3.875 9.375c-.617-.567-.856-1.307-.856-2.094s.138-1.433.756-1.999c.545-.501 1.278-.777 2.063-.777.784 0 1.517.476 2.062.978L10 7.308l2.099-1.826c.546-.502 1.278-.978 2.063-.978s1.518.276 2.063.777c.618.566.755 1.212.755 1.999s-.238 1.528-.856 2.095z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-heart'>
<path d="M17.19 4.155c-1.672-1.534-4.383-1.534-6.055 0L10 5.197 8.864 4.155c-1.672-1.534-4.382-1.534-6.054 0-1.881 1.727-1.881 4.52 0 6.246L10 17l7.19-6.599c1.88-1.726 1.88-4.52 0-6.246z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-help-with-circle'>
<path d="M10 .4C4.698.4.4 4.698.4 10a9.6 9.6 0 1 0 19.2-.001C19.6 4.698 15.301.4 10 .4zm-.151 15.199h-.051c-.782-.023-1.334-.6-1.311-1.371.022-.758.587-1.309 1.343-1.309l.046.002c.804.023 1.35.594 1.327 1.387-.023.76-.578 1.291-1.354 1.291zm3.291-6.531c-.184.26-.588.586-1.098.983l-.562.387c-.308.24-.494.467-.563.688-.056.174-.082.221-.087.576v.09H8.685l.006-.182c.027-.744.045-1.184.354-1.547.485-.568 1.555-1.258 1.6-1.287a1.65 1.65 0 0 0 .379-.387c.225-.311.324-.555.324-.793 0-.334-.098-.643-.293-.916-.188-.266-.545-.398-1.061-.398-.512 0-.863.162-1.072.496-.216.341-.325.7-.325 1.067v.092H6.386l.004-.096c.057-1.353.541-2.328 1.435-2.897.563-.361 1.264-.544 2.081-.544 1.068 0 1.972.26 2.682.772.721.519 1.086 1.297 1.086 2.311-.001.567-.18 1.1-.534 1.585z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-help'>
<path d="M14.09 2.233C12.95 1.411 11.518 1 9.794 1c-1.311 0-2.418.289-3.317.868C5.05 2.774 4.292 4.313 4.2 6.483h3.307c0-.633.185-1.24.553-1.828.369-.586.995-.879 1.878-.879.898 0 1.517.238 1.854.713.339.477.508 1.004.508 1.582 0 .504-.252.965-.557 1.383a2.88 2.88 0 0 1-.661.674s-1.793 1.15-2.58 2.074c-.456.535-.497 1.338-.538 2.488-.002.082.029.252.315.252h2.571c.256 0 .309-.189.312-.274.018-.418.064-.633.141-.875.144-.457.538-.855.979-1.199l.91-.627c.822-.641 1.477-1.166 1.767-1.578.494-.676.842-1.51.842-2.5-.001-1.615-.571-2.832-1.711-3.656zM9.741 14.924c-1.139-.035-2.079.754-2.115 1.99-.035 1.234.858 2.051 1.998 2.084 1.189.035 2.104-.727 2.141-1.963.034-1.236-.834-2.076-2.024-2.111z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-home'>
<path d="M18.672 11H17v6c0 .445-.194 1-1 1h-4v-6H8v6H4c-.806 0-1-.555-1-1v-6H1.328c-.598 0-.47-.324-.06-.748L9.292 2.22c.195-.202.451-.302.708-.312.257.01.513.109.708.312l8.023 8.031c.411.425.539.749-.059.749z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-hour-glass'>
<path d="M15.6 4.576V2.228C15.6 1.439 13.092 0 10 0 6.907 0 4.4 1.439 4.4 2.228v2.348C4.4 6.717 8.277 8.484 8.277 10c0 1.514-3.877 3.281-3.877 5.422v2.35C4.4 18.56 6.907 20 10 20c3.092 0 5.6-1.44 5.6-2.229v-2.35c0-2.141-3.877-3.908-3.877-5.422 0-1.515 3.877-3.282 3.877-5.423zM5.941 2.328c.696-.439 2-1.082 4.114-1.082 2.113 0 4.006 1.082 4.006 1.082.142.086.698.383.317.609-.838.497-2.478 1.02-4.378 1.02s-3.484-.576-4.324-1.074c-.381-.225.265-.555.265-.555zM10.501 10c0 1.193.996 1.961 2.051 2.986.771.748 1.826 1.773 1.826 2.435v1.328c-.97-.483-3.872-.955-3.872-2.504 0-.783-1.013-.783-1.013 0 0 1.549-2.902 2.021-3.872 2.504v-1.328c0-.662 1.056-1.688 1.826-2.435C8.502 11.961 9.498 11.193 9.498 10c0-1.193-.996-1.961-2.051-2.986-.771-.75-1.826-1.775-1.826-2.438l-.046-.998C6.601 4.131 8.227 4.656 10 4.656c1.772 0 3.406-.525 4.433-1.078l-.055.998c0 .662-1.056 1.688-1.826 2.438-1.054 1.025-2.051 1.793-2.051 2.986z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-houzz'>
<path d="M4 10l6 3-6 3v-6zm6-3l6 3V4l-6 3zm0 13l6-3v-7l-6 3v7zm0-20L4 3v7l6-3V0z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-icloud'>
<path d="M10.909 5c1.884 0 3.417 1.598 3.417 3.561 0 .136-.012.29-.037.484l-.206 1.594c-.043.332.186.65.528.653l1.65.01c.958.006 1.739.835 1.739 1.848 0 1.02-.785 1.85-1.75 1.85H4.167C2.972 15 2 13.978 2 12.722c0-.913.519-1.735 1.323-2.095l.651-.291c.23-.103.508-.431.516-.775l.016-.714c.012-.535.421-.97.91-.97.032 0 .094.006.207.035l1.039.264c.265.067.606-.066.73-.309l.503-.981C8.493 5.723 9.648 5 10.909 5m0-2C8.828 3 7.023 4.207 6.116 5.974a2.834 2.834 0 0 0-.699-.096c-1.587 0-2.873 1.304-2.91 2.924A4.28 4.28 0 0 0 0 12.722C0 15.085 1.865 17 4.167 17H16.25c2.071 0 3.75-1.724 3.75-3.85 0-2.118-1.667-3.835-3.728-3.848.031-.243.053-.489.053-.741C16.326 5.49 13.901 3 10.909 3z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-image-inverted'>
<path d="M18 3H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zm-4.75 3.5a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5zM4 14l3.314-7.619 3.769 6.102 3.231-1.605L16 14H4z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-image'>
<path fill-rule="evenodd" clip-rule="evenodd" d="M19 2H1a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1zm-1 14H2V4h16v12zm-3.685-5.123l-3.231 1.605-3.77-6.101L4 14h12l-1.685-3.123zM13.25 9a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-images'>
<path d="M17.125 6.17L15.079.535c-.151-.416-.595-.637-.989-.492L.492 5.006c-.394.144-.593.597-.441 1.013l2.156 5.941V8.777c0-1.438 1.148-2.607 2.56-2.607H8.36l4.285-3.008 2.479 3.008h2.001zM19.238 8H4.767a.761.761 0 0 0-.762.777v9.42c.001.444.343.803.762.803h14.471c.42 0 .762-.359.762-.803v-9.42A.761.761 0 0 0 19.238 8zM18 17H6v-2l1.984-4.018 2.768 3.436 2.598-2.662 3.338-1.205L18 14v3z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-inbox'>
<path d="M19.253 9.542c-.388-.416-2.265-2.271-3.122-3.118A1.49 1.49 0 0 0 15.098 6H4.902c-.394 0-.77.165-1.033.424-.858.847-2.734 2.701-3.122 3.118-.485.521-.723.902-.624 1.449s.466 2.654.556 3.074c.088.419.684.935 1.24.935h16.162c.556 0 1.152-.516 1.241-.935.089-.42.457-2.527.556-3.074s-.139-.929-.625-1.449zm-5.239.461a.271.271 0 0 0-.238.133L12.966 12H7.034l-.809-1.864a.271.271 0 0 0-.238-.133H2.473L4.495 8h11.01l2.023 2.003h-3.514z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-infinity'>
<path d="M15.902 5.6c-2.079 0-4.358 1.158-5.902 2.916C8.455 6.758 6.175 5.6 4.096 5.6 2.116 5.6 0 6.756 0 10c0 3.244 2.116 4.398 4.096 4.4 2.079 0 4.358-1.158 5.903-2.916 1.544 1.758 3.823 2.916 5.902 2.916C17.882 14.4 20 13.244 20 10c0-3.244-2.118-4.4-4.098-4.4zM4.096 12.641C2.584 12.641 1.8 11.752 1.8 10s.784-2.641 2.296-2.641c1.673 0 3.614 1.086 4.807 2.641-1.193 1.555-3.134 2.641-4.807 2.641zm11.806 0c-1.673 0-3.614-1.086-4.807-2.641 1.192-1.555 3.135-2.641 4.807-2.641 1.512 0 2.298.889 2.298 2.641s-.786 2.641-2.298 2.641z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-info-with-circle'>
<path d="M10 .4C4.697.4.399 4.698.399 10A9.6 9.6 0 0 0 10 19.601c5.301 0 9.6-4.298 9.6-9.601 0-5.302-4.299-9.6-9.6-9.6zm.896 3.466c.936 0 1.211.543 1.211 1.164 0 .775-.62 1.492-1.679 1.492-.886 0-1.308-.445-1.282-1.182 0-.621.519-1.474 1.75-1.474zM8.498 15.75c-.64 0-1.107-.389-.66-2.094l.733-3.025c.127-.484.148-.678 0-.678-.191 0-1.022.334-1.512.664l-.319-.523c1.555-1.299 3.343-2.061 4.108-2.061.64 0 .746.756.427 1.92l-.84 3.18c-.149.562-.085.756.064.756.192 0 .82-.232 1.438-.719l.362.486c-1.513 1.512-3.162 2.094-3.801 2.094z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-info'>
<path d="M12.432 0c1.34 0 2.01.912 2.01 1.957 0 1.305-1.164 2.512-2.679 2.512-1.269 0-2.009-.75-1.974-1.99C9.789 1.436 10.67 0 12.432 0zM8.309 20c-1.058 0-1.833-.652-1.093-3.524l1.214-5.092c.211-.814.246-1.141 0-1.141-.317 0-1.689.562-2.502 1.117l-.528-.88c2.572-2.186 5.531-3.467 6.801-3.467 1.057 0 1.233 1.273.705 3.23l-1.391 5.352c-.246.945-.141 1.271.106 1.271.317 0 1.357-.392 2.379-1.207l.6.814C12.098 19.02 9.365 20 8.309 20z"></path>
</symbol><symbol viewBox='0 0 19.19995 19.19995' id='entypo-instagram-with-circle'>
<title>instagram-with-circle</title><path d="M13.498 6.651a1.656 1.656 0 0 0-.95-.949 2.766 2.766 0 0 0-.928-.172c-.527-.024-.685-.03-2.02-.03s-1.493.006-2.02.03a2.766 2.766 0 0 0-.929.172 1.656 1.656 0 0 0-.949.95 2.766 2.766 0 0 0-.172.928c-.024.527-.03.685-.03 2.02s.006 1.493.03 2.02a2.766 2.766 0 0 0 .172.929 1.656 1.656 0 0 0 .95.949 2.766 2.766 0 0 0 .928.172c.527.024.685.029 2.02.029s1.493-.005 2.02-.03a2.766 2.766 0 0 0 .929-.171 1.656 1.656 0 0 0 .949-.95 2.766 2.766 0 0 0 .172-.928c.024-.527.029-.685.029-2.02s-.005-1.493-.03-2.02a2.766 2.766 0 0 0-.171-.929zM9.6 12.168A2.568 2.568 0 1 1 12.168 9.6 2.568 2.568 0 0 1 9.6 12.168zm2.669-4.637a.6.6 0 1 1 .6-.6.6.6 0 0 1-.6.6z"></path><circle cx="9.6" cy="9.6" r="1.667"></circle><path d="M9.6 0a9.6 9.6 0 1 0 9.6 9.6A9.6 9.6 0 0 0 9.6 0zm4.97 11.661a3.67 3.67 0 0 1-.233 1.214 2.556 2.556 0 0 1-1.462 1.462 3.67 3.67 0 0 1-1.213.233c-.534.024-.704.03-2.062.03s-1.528-.006-2.062-.03a3.67 3.67 0 0 1-1.213-.233 2.556 2.556 0 0 1-1.462-1.462 3.67 3.67 0 0 1-.233-1.213c-.024-.534-.03-.704-.03-2.062s.006-1.528.03-2.062a3.67 3.67 0 0 1 .232-1.213 2.556 2.556 0 0 1 1.463-1.463 3.67 3.67 0 0 1 1.213-.232c.534-.024.704-.03 2.062-.03s1.528.006 2.062.03a3.67 3.67 0 0 1 1.213.232 2.556 2.556 0 0 1 1.462 1.463 3.67 3.67 0 0 1 .233 1.213c.024.534.03.704.03 2.062s-.006 1.528-.03 2.062z"></path>
</symbol><symbol viewBox='0 0 18 18' id='entypo-instagram'>
<title>instagram</title><path d="M17.946 5.29a6.606 6.606 0 0 0-.418-2.185 4.412 4.412 0 0 0-1.039-1.594A4.412 4.412 0 0 0 14.895.472a6.606 6.606 0 0 0-2.184-.418C11.75.01 11.444 0 9 0S6.25.01 5.29.054a6.606 6.606 0 0 0-2.185.418A4.412 4.412 0 0 0 1.51 1.511 4.412 4.412 0 0 0 .472 3.105a6.606 6.606 0 0 0-.418 2.184C.01 6.25 0 6.556 0 9s.01 2.75.054 3.71a6.606 6.606 0 0 0 .418 2.185 4.412 4.412 0 0 0 1.039 1.594 4.411 4.411 0 0 0 1.594 1.039 6.606 6.606 0 0 0 2.184.418C6.25 17.99 6.556 18 9 18s2.75-.01 3.71-.054a6.606 6.606 0 0 0 2.185-.418 4.602 4.602 0 0 0 2.633-2.633 6.606 6.606 0 0 0 .418-2.184C17.99 11.75 18 11.444 18 9s-.01-2.75-.054-3.71zm-1.62 7.347a4.978 4.978 0 0 1-.31 1.67 2.98 2.98 0 0 1-1.708 1.709 4.979 4.979 0 0 1-1.671.31c-.95.043-1.234.052-3.637.052s-2.688-.009-3.637-.052a4.979 4.979 0 0 1-1.67-.31 2.788 2.788 0 0 1-1.036-.673 2.788 2.788 0 0 1-.673-1.035 4.978 4.978 0 0 1-.31-1.671c-.043-.95-.052-1.234-.052-3.637s.009-2.688.052-3.637a4.979 4.979 0 0 1 .31-1.67 2.788 2.788 0 0 1 .673-1.036 2.788 2.788 0 0 1 1.035-.673 4.979 4.979 0 0 1 1.671-.31c.95-.043 1.234-.052 3.637-.052s2.688.009 3.637.052a4.979 4.979 0 0 1 1.67.31 2.788 2.788 0 0 1 1.036.673 2.788 2.788 0 0 1 .673 1.035 4.979 4.979 0 0 1 .31 1.671c.043.95.052 1.234.052 3.637s-.009 2.688-.052 3.637zM9 4.378A4.622 4.622 0 1 0 13.622 9 4.622 4.622 0 0 0 9 4.378zM9 12a3 3 0 1 1 3-3 3 3 0 0 1-3 3zm5.884-7.804a1.08 1.08 0 1 1-1.08-1.08 1.08 1.08 0 0 1 1.08 1.08z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-install'>
<path d="M19.059 10.898l-3.171-7.927A1.543 1.543 0 0 0 14.454 2H12.02l.38 4.065h2.7L10 10.293 4.9 6.065h2.7L7.98 2H5.546c-.632 0-1.2.384-1.434.971L.941 10.898a4.25 4.25 0 0 0-.246 2.272l.59 3.539A1.544 1.544 0 0 0 2.808 18h14.383c.755 0 1.399-.546 1.523-1.291l.59-3.539a4.22 4.22 0 0 0-.245-2.272zm-2.1 4.347a.902.902 0 0 1-.891.755H3.932a.902.902 0 0 1-.891-.755l-.365-2.193A.902.902 0 0 1 3.567 12h12.867c.558 0 .983.501.891 1.052l-.366 2.193z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-key'>
<path d="M17.691 4.725c-.503-2.977-3.22-4.967-6.069-4.441C8.772.809 6.366 3.1 6.869 6.079c.107.641.408 1.644.763 2.365l-5.175 7.723c-.191.285-.299.799-.242 1.141l.333 1.971a.612.612 0 0 0 .7.514l1.516-.281c.328-.059.744-.348.924-.639l2.047-3.311.018-.022 1.386-.256 2.39-3.879c.785.139 1.912.092 2.578-.031 2.848-.526 4.087-3.67 3.584-6.649zm-2.525 1.527c-.784 1.17-1.584.346-2.703-.475-1.119-.818-2.135-1.322-1.352-2.492.784-1.17 2.326-1.455 3.447-.635 1.12.819 1.391 2.432.608 3.602z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-keyboard'>
<path d="M18.6 4H1.4C.629 4 0 4.629 0 5.4v9.2c0 .769.629 1.4 1.399 1.4h17.2c.77 0 1.4-.631 1.4-1.4V5.4C20 4.629 19.369 4 18.6 4zM11 6h2v2h-2V6zm3 3v2h-2V9h2zM8 6h2v2H8V6zm3 3v2H9V9h2zM5 6h2v2H5V6zm3 3v2H6V9h2zM2 6h2v2H2V6zm3 3v2H3V9h2zm-1 5H2v-2h2v2zm11 0H5v-2h10v2zm3 0h-2v-2h2v2zm-3-3V9h2v2h-2zm3-3h-4V6h4v2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-lab-flask'>
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.432 15C14.387 9.893 12 8.547 12 6V3h.5a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5H8v3c0 2.547-2.387 3.893-4.432 9-.651 1.625-2.323 4 6.432 4s7.083-2.375 6.432-4zm-1.617 1.751c-.702.21-2.099.449-4.815.449s-4.113-.239-4.815-.449c-.249-.074-.346-.363-.258-.628.22-.67.635-1.828 1.411-3.121 1.896-3.159 3.863.497 5.5.497s1.188-1.561 1.824-.497a15.353 15.353 0 0 1 1.411 3.121c.088.265-.009.553-.258.628z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-landline'>
<path d="M4.902.25C3.498-.027 2.115.875 1.833 2.273c-1.105 5.455-1.105 9.997 0 15.454C2.08 18.952 3.17 19.8 4.388 19.8c.17 0 .342-.016.515-.05 1.412-.279 2.329-1.638 2.046-3.036-.978-4.832-.978-8.598 0-13.43C7.231 1.888 6.314.529 4.902.25zM17 2H8.436a4.08 4.08 0 0 1-.017 1.44c-.936 4.72-.936 8.398 0 13.12.098.49.09.973.017 1.44H17c1.1 0 2-.9 2-2V4c0-1.1-.899-2-2-2zm-5 12.5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 12 14.5zM17 9h-7V5h7v4z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-language'>
<path d="M19.753 10.909c-.624-1.707-2.366-2.726-4.661-2.726-.09 0-.176.002-.262.006l-.016-2.063 3.525-.607c.115-.019.133-.119.109-.231-.023-.111-.167-.883-.188-.976-.027-.131-.102-.127-.207-.109-.104.018-3.25.461-3.25.461l-.013-2.078c-.001-.125-.069-.158-.194-.156l-1.025.016c-.105.002-.164.049-.162.148l.033 2.307s-3.061.527-3.144.543c-.084.014-.17.053-.151.143.019.09.19 1.094.208 1.172.018.08.072.129.188.107l2.924-.504.035 2.018c-1.077.281-1.801.824-2.256 1.303-.768.807-1.207 1.887-1.207 2.963 0 1.586.971 2.529 2.328 2.695 3.162.387 5.119-3.06 5.769-4.715 1.097 1.506.256 4.354-2.094 5.98-.043.029-.098.129-.033.207l.619.756c.08.096.206.059.256.023 2.51-1.73 3.661-4.515 2.869-6.683zm-7.386 3.188c-.966-.121-.944-.914-.944-1.453 0-.773.327-1.58.876-2.156a3.21 3.21 0 0 1 1.229-.799l.082 4.277c-.385.131-.799.185-1.243.131zm2.427-.553l.046-4.109c.084-.004.166-.01.252-.01.773 0 1.494.145 1.885.361.391.217-1.023 2.713-2.183 3.758zm-8.95-7.668a.196.196 0 0 0-.196-.145h-1.95a.194.194 0 0 0-.194.144L.008 16.916c-.017.051-.011.076.062.076h1.733c.075 0 .099-.023.114-.072l1.008-3.318h3.496l1.008 3.318c.016.049.039.072.113.072h1.734c.072 0 .078-.025.062-.076-.014-.05-3.083-9.741-3.494-11.04zm-2.618 6.318l1.447-5.25 1.447 5.25H3.226z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-laptop'>
<path d="M19.754 15.631L18 13V4c0-1.102-.9-2-2-2H4c-1.101 0-2 .898-2 2v9L.246 15.631C0 16 0 16.213 0 16.5v.5c0 .5.5 1 .999 1h18.002c.499 0 .999-.5.999-1v-.5c0-.287 0-.5-.246-.869zM7 16l.6-1h4.8l.6 1H7zm9-4H4V4h12v8z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-lastfm-with-circle'>
<path d="M10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zm2.644 12.43c-2.002 0-2.697-.91-3.066-2.043l-.371-1.166c-.277-.851-.501-1.467-1.519-1.467-.706 0-1.626.463-1.626 1.898 0 1.119.77 1.82 1.568 1.82.677 0 1.084-.381 1.296-.572l.354 1.012c-.241.174-.734.517-1.707.517-1.346 0-2.625-.957-2.625-2.73 0-1.844 1.333-2.93 2.705-2.93 1.54 0 2.113.56 2.6 2.078l.382 1.166c.278.852.865 1.471 2.034 1.471.787 0 1.204-.176 1.204-.607 0-.338-.197-.584-.787-.723l-.787-.188c-.961-.232-1.343-.734-1.343-1.529 0-1.271 1.018-1.668 2.061-1.668 1.181 0 1.898.432 1.99 1.482l-1.157.139c-.046-.5-.347-.711-.903-.711-.509 0-.821.234-.821.631 0 .35.15.559.66.676l.74.164c.995.233 1.528.723 1.528 1.668-.001 1.169-.974 1.612-2.41 1.612z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-lastfm'>
<path d="M8.574 14.576c-.477.348-1.455 1.024-3.381 1.024C2.532 15.6 0 13.707 0 10.195 0 6.547 2.637 4.4 5.354 4.4c3.047 0 4.183 1.108 5.144 4.109l.756 2.309c.551 1.688 1.713 2.91 4.026 2.91 1.558 0 2.382-.346 2.382-1.199 0-.67-.389-1.156-1.557-1.434l-1.559-.369c-1.9-.461-2.656-1.455-2.656-3.025 0-2.516 2.016-3.301 4.077-3.301 2.337 0 3.757.854 3.94 2.932l-2.291.277c-.092-.992-.688-1.408-1.787-1.408-1.008 0-1.627.461-1.627 1.246 0 .693.299 1.109 1.307 1.34l1.466.324c1.97.461 3.025 1.432 3.025 3.303 0 2.309-1.924 3.186-4.766 3.186-3.963 0-5.338-1.801-6.07-4.041L8.43 9.25c-.549-1.687-.99-2.902-3.006-2.902-1.398 0-3.219.916-3.219 3.756 0 2.217 1.523 3.604 3.104 3.604 1.34 0 2.146-.754 2.564-1.131l.701 1.999z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-layers'>
<path d="M9.248 11.601c.45.313 1.05.313 1.5 0l9.088-5.281a.375.375 0 0 0-.048-.646l-9.205-3.537a1.315 1.315 0 0 0-1.17 0L.208 5.674a.375.375 0 0 0-.048.646l9.088 5.281zm10.54-.79l-2.486-1.233-5.725 3.327c-.469.309-1.014.471-1.579.471s-1.11-.163-1.579-.471L2.698 9.576.208 10.81a.375.375 0 0 0-.048.646l9.088 6.309c.45.313 1.05.313 1.5 0l9.088-6.309a.374.374 0 0 0-.048-.645z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-leaf'>
<path d="M19.025 3.587c-4.356 2.556-4.044 7.806-7.096 10.175-2.297 1.783-5.538.88-7.412.113 0 0-1.27 1.603-2.181 3.74-.305.717-1.644-.073-1.409-.68C3.905 9.25 14.037 5.416 14.037 5.416s-7.149-.303-11.927 5.94c-.128-1.426-.34-5.284 3.36-7.65 5.016-3.211 14.572-.715 13.555-.119z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-level-down'>
<path d="M1 12V5h3v6h10V8l5 4.5-5 4.5v-3H3a2 2 0 0 1-2-2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-level-up'>
<path d="M19 9v7h-3v-6H6v3L1 8.5 6 4v3h11c1.104 0 2 .897 2 2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-lifebuoy'>
<path d="M16.788 3.212c-3.749-3.749-9.827-3.749-13.575 0-3.75 3.75-3.75 9.828-.002 13.576A9.6 9.6 0 1 0 16.788 3.212zm-10.04 10.04a4.598 4.598 0 0 1 0-6.505 4.6 4.6 0 1 1 0 6.505zm8.599-.373a6.07 6.07 0 0 0 0-5.759l1.783-.96a8.111 8.111 0 0 1 .002 7.678l-1.785-.959zm-1.508-10.01l-.961 1.784a6.073 6.073 0 0 0-5.756 0L6.161 2.87a8.114 8.114 0 0 1 7.678-.001zM2.87 6.16l1.784.961a6.07 6.07 0 0 0-.001 5.756l-1.784.961A8.111 8.111 0 0 1 2.87 6.16zm3.289 10.969l.961-1.783a6.068 6.068 0 0 0 5.759 0l.961 1.785a8.117 8.117 0 0 1-7.681-.002z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-light-bulb'>
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.186 19.172c.789.51 1.701.855 2.814.828 1.111.027 2.025-.318 2.814-.828L12.797 17H7.203l-.017 2.172zM12.697 16c0-4.357 4.63-5.848 4.283-10.188-.218-2.738-2.073-5.81-6.98-5.81S3.238 3.074 3.019 5.813C2.672 10.152 7.303 11.643 7.303 16h5.394zM5 6c.207-2.598 2.113-4 5-4 2.886 0 4.654 1.371 4.861 3.969.113 1.424-.705 2.373-1.809 3.926C12.238 11.041 11.449 12.238 11 14H9c-.449-1.762-1.238-2.959-2.053-4.106C5.844 8.342 4.886 7.424 5 6z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-light-down'>
<path d="M10 6.797a3.191 3.191 0 0 0-3.2 3.201 3.19 3.19 0 0 0 3.2 3.199 3.19 3.19 0 0 0 3.199-3.199A3.19 3.19 0 0 0 10 6.797zm0 5.25a2.049 2.049 0 1 1 0-4.1 2.05 2.05 0 0 1 0 4.1zM15 5c-.312-.312-.883-.248-1.273.142-.39.391-.453.959-.141 1.272s.882.25 1.273-.141c.39-.39.453-.961.141-1.273zm-9.858 8.729c-.391.39-.454.959-.142 1.271s.882.25 1.273-.141c.391-.391.454-.961.142-1.273s-.883-.248-1.273.143zM5 5c-.312.312-.249.883.141 1.273.391.391.961.453 1.273.141s.249-.883-.142-1.273C5.883 4.752 5.312 4.688 5 5zm8.727 9.857c.39.391.96.455 1.273.143s.249-.883-.142-1.274-.96-.453-1.273-.141-.248.882.142 1.272zM10 4.998c.441 0 .8-.447.8-1C10.799 3.445 10.441 3 10 3c-.442 0-.801.445-.801.998 0 .553.358 1 .801 1zM10 17c.441 0 .8-.447.8-1 0-.553-.358-.998-.799-.998-.442 0-.801.445-.801.998-.001.553.357 1 .8 1zm-5-7c0-.441-.45-.8-1.003-.8-.553 0-.997.359-.997.8 0 .442.444.8.997.8C4.55 10.8 5 10.442 5 10zm12 0c0-.441-.448-.8-1.001-.8-.553 0-.999.359-.999.8 0 .442.446.8.999.8.553 0 1.001-.358 1.001-.8z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-light-up'>
<path d="M19 9.199h-.98c-.553 0-1 .359-1 .801 0 .441.447.799 1 .799H19c.552 0 1-.357 1-.799 0-.441-.449-.801-1-.801zM10 4.5A5.483 5.483 0 0 0 4.5 10c0 3.051 2.449 5.5 5.5 5.5 3.05 0 5.5-2.449 5.5-5.5S13.049 4.5 10 4.5zm0 9.5c-2.211 0-4-1.791-4-4 0-2.211 1.789-4 4-4a4 4 0 0 1 0 8zm-7-4c0-.441-.449-.801-1-.801H1c-.553 0-1 .359-1 .801 0 .441.447.799 1 .799h1c.551 0 1-.358 1-.799zm7-7c.441 0 .799-.447.799-1V1c0-.553-.358-1-.799-1-.442 0-.801.447-.801 1v1c0 .553.359 1 .801 1zm0 14c-.442 0-.801.447-.801 1v1c0 .553.359 1 .801 1 .441 0 .799-.447.799-1v-1c0-.553-.358-1-.799-1zm7.365-13.234c.391-.391.454-.961.142-1.273s-.883-.248-1.272.143l-.7.699c-.391.391-.454.961-.142 1.273s.883.248 1.273-.143l.699-.699zM3.334 15.533l-.7.701c-.391.391-.454.959-.142 1.271s.883.25 1.272-.141l.7-.699c.391-.391.454-.961.142-1.274s-.883-.247-1.272.142zm.431-12.898c-.39-.391-.961-.455-1.273-.143s-.248.883.141 1.274l.7.699c.391.391.96.455 1.272.143s.249-.883-.141-1.273l-.699-.7zm11.769 14.031l.7.699c.391.391.96.453 1.272.143.312-.312.249-.883-.142-1.273l-.699-.699c-.391-.391-.961-.455-1.274-.143s-.248.882.143 1.273z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-line-graph'>
<path d="M.69 11.331l1.363.338 1.026-1.611-1.95-.482a.904.904 0 1 0-.439 1.755zm17.791.261l-4.463 4.016-5.247-4.061a.905.905 0 0 0-.338-.162l-.698-.174-1.027 1.611 1.1.273 5.697 4.408a.915.915 0 0 0 1.168-.043l5.028-4.527a.9.9 0 0 0 .064-1.277.912.912 0 0 0-1.284-.064zM8.684 7.18l4.887 3.129a.913.913 0 0 0 1.24-.246l5.027-7.242a.902.902 0 0 0-.231-1.26.91.91 0 0 0-1.265.23l-4.528 6.521-4.916-3.147a.915.915 0 0 0-.688-.123.914.914 0 0 0-.571.4L.142 17.209A.903.903 0 0 0 .908 18.6a.908.908 0 0 0 .768-.42l7.008-11z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-link'>
<path d="M7.859 14.691l-.81.805a1.814 1.814 0 0 1-2.545 0 1.762 1.762 0 0 1 0-2.504l2.98-2.955c.617-.613 1.779-1.515 2.626-.675a.992.992 0 1 0 1.397-1.407c-1.438-1.428-3.566-1.164-5.419.675l-2.98 2.956A3.719 3.719 0 0 0 2 14.244a3.72 3.72 0 0 0 1.108 2.658 3.779 3.779 0 0 0 2.669 1.096c.967 0 1.934-.365 2.669-1.096l.811-.805a.988.988 0 0 0 .005-1.4.995.995 0 0 0-1.403-.006zm9.032-11.484c-1.547-1.534-3.709-1.617-5.139-.197l-1.009 1.002a.99.99 0 1 0 1.396 1.406l1.01-1.001c.74-.736 1.711-.431 2.346.197.336.335.522.779.522 1.252s-.186.917-.522 1.251l-3.18 3.154c-1.454 1.441-2.136.766-2.427.477a.99.99 0 1 0-1.396 1.406c.668.662 1.43.99 2.228.99.977 0 2.01-.492 2.993-1.467l3.18-3.153A3.732 3.732 0 0 0 18 5.866a3.726 3.726 0 0 0-1.109-2.659z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-linkedin-with-circle'>
<path d="M10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zM7.65 13.979H5.706V7.723H7.65v6.256zm-.984-7.024c-.614 0-1.011-.435-1.011-.973 0-.549.409-.971 1.036-.971s1.011.422 1.023.971c0 .538-.396.973-1.048.973zm8.084 7.024h-1.944v-3.467c0-.807-.282-1.355-.985-1.355-.537 0-.856.371-.997.728-.052.127-.065.307-.065.486v3.607H8.814v-4.26c0-.781-.025-1.434-.051-1.996h1.689l.089.869h.039c.256-.408.883-1.01 1.932-1.01 1.279 0 2.238.857 2.238 2.699v3.699z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-linkedin'>
<path d="M5 3c0 1.1-.7 2-2 2-1.2 0-2-.9-2-1.9C1 2 1.8 1 3 1s2 .9 2 2zM1 19h4V6H1v13zM14.6 6.2c-2.1 0-3.3 1.2-3.8 2h-.1l-.2-1.7H6.9c0 1.1.1 2.4.1 3.9V19h4v-7.1c0-.4 0-.7.1-1 .3-.7.8-1.6 1.9-1.6 1.4 0 2 1.2 2 2.8V19h4v-7.4c0-3.7-1.9-5.4-4.4-5.4z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-list'>
<path d="M14.4 9H8.6c-.552 0-.6.447-.6 1s.048 1 .6 1h5.8c.552 0 .6-.447.6-1s-.048-1-.6-1zm2 5H8.6c-.552 0-.6.447-.6 1s.048 1 .6 1h7.8c.552 0 .6-.447.6-1s-.048-1-.6-1zM8.6 6h7.8c.552 0 .6-.447.6-1s-.048-1-.6-1H8.6c-.552 0-.6.447-.6 1s.048 1 .6 1zM5.4 9H3.6c-.552 0-.6.447-.6 1s.048 1 .6 1h1.8c.552 0 .6-.447.6-1s-.048-1-.6-1zm0 5H3.6c-.552 0-.6.447-.6 1s.048 1 .6 1h1.8c.552 0 .6-.447.6-1s-.048-1-.6-1zm0-10H3.6c-.552 0-.6.447-.6 1s.048 1 .6 1h1.8c.552 0 .6-.447.6-1s-.048-1-.6-1z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-location-pin'>
<path d="M10 2.009c-2.762 0-5 2.229-5 4.99 0 4.774 5 11 5 11s5-6.227 5-11c0-2.76-2.238-4.99-5-4.99zm0 7.751a2.7 2.7 0 1 1 0-5.4 2.7 2.7 0 0 1 0 5.4z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-location'>
<path d="M19.367 18.102L18 14h-1.5l.833 4H2.667l.833-4H2L.632 18.102C.285 19.146.9 20 2 20h16c1.1 0 1.715-.854 1.367-1.898zM15 5A5 5 0 1 0 5 5c0 4.775 5 10 5 10s5-5.225 5-10zm-7.7.06c0-1.491 1.208-2.699 2.7-2.699a2.699 2.699 0 1 1 0 5.399 2.7 2.7 0 0 1-2.7-2.7z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-lock-open'>
<path d="M15.8 8H14V5.6C14 2.703 12.665 1 10 1 7.334 1 6 2.703 6 5.6V6h2v-.801C8 3.754 8.797 3 10 3c1.203 0 2 .754 2 2.199V8H4c-.553 0-1 .646-1 1.199V17c0 .549.428 1.139.951 1.307l1.197.387A7.731 7.731 0 0 0 7.1 19h5.8a7.68 7.68 0 0 0 1.951-.307l1.196-.387c.524-.167.953-.757.953-1.306V9.199C17 8.646 16.352 8 15.8 8z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-lock'>
<path d="M15.8 8H14V5.6C14 2.703 12.665 1 10 1 7.334 1 6 2.703 6 5.6V8H4c-.553 0-1 .646-1 1.199V17c0 .549.428 1.139.951 1.307l1.197.387A7.731 7.731 0 0 0 7.1 19h5.8a7.68 7.68 0 0 0 1.951-.307l1.196-.387c.524-.167.953-.757.953-1.306V9.199C17 8.646 16.352 8 15.8 8zM12 8H8V5.199C8 3.754 8.797 3 10 3c1.203 0 2 .754 2 2.199V8z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-log-out'>
<path d="M19 10l-6-5v3H6v4h7v3l6-5zM3 3h8V1H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8v-2H3V3z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-login'>
<path d="M14 10L8 5v3H1v4h7v3l6-5zm3 7H9v2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H9v2h8v14z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-loop'>
<path d="M20 7v7c0 1.103-.896 2-2 2H2c-1.104 0-2-.897-2-2V7a2 2 0 0 1 2-2h7V3l4 3.5L9 10V8H3v5h14V8h-3V5h4a2 2 0 0 1 2 2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-magnet'>
<path d="M12.165 17.86c-.028.309.217.584.545.611l3.985.326c.329.027.621-.203.65-.512l.311-3.287-5.18-.426-.311 3.288zm-9.821-2.861l.312 3.287c.028.309.321.539.65.512l3.985-.326c.328-.027.573-.303.546-.611l-.312-3.287-5.181.425zm-.513-5.416l.321 3.391 5.181-.426-.322-3.387A2.949 2.949 0 0 1 7 8.911c0-1.555 1.346-2.82 3-2.82s3 1.266 3 2.82c0 .084-.004.168-.012.25l-.321 3.387 5.181.426.321-3.391c.021-.225.03-.449.03-.672C18.2 4.659 14.522 1.2 10 1.2S1.8 4.659 1.8 8.911c0 .223.011.447.031.672z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-magnifying-glass'>
<path d="M17.545 15.467l-3.779-3.779a6.15 6.15 0 0 0 .898-3.21c0-3.417-2.961-6.377-6.378-6.377A6.185 6.185 0 0 0 2.1 8.287c0 3.416 2.961 6.377 6.377 6.377a6.15 6.15 0 0 0 3.115-.844l3.799 3.801a.953.953 0 0 0 1.346 0l.943-.943c.371-.371.236-.84-.135-1.211zM4.004 8.287a4.282 4.282 0 0 1 4.282-4.283c2.366 0 4.474 2.107 4.474 4.474a4.284 4.284 0 0 1-4.283 4.283c-2.366-.001-4.473-2.109-4.473-4.474z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-mail-with-circle'>
<path d="M10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zM6.231 7h7.52c.399 0 .193.512-.024.643-.217.13-3.22 1.947-3.333 2.014s-.257.1-.403.1a.793.793 0 0 1-.402-.1L6.255 7.643C6.038 7.512 5.833 7 6.231 7zM14 12.5c0 .21-.252.5-.444.5H6.444C6.252 13 6 12.71 6 12.5V8.853c0-.092-.002-.211.172-.11l3.417 2.015a.69.69 0 0 0 .402.1c.146 0 .252-.011.403-.1l3.434-2.014c.174-.102.172.018.172.11V12.5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-mail'>
<path d="M1.574 5.286l7.5 4.029c.252.135.578.199.906.199.328 0 .654-.064.906-.199l7.5-4.029c.489-.263.951-1.286.054-1.286H1.521c-.897 0-.435 1.023.053 1.286zm17.039 2.203l-7.727 4.027c-.34.178-.578.199-.906.199s-.566-.021-.906-.199-7.133-3.739-7.688-4.028C.996 7.284 1 7.523 1 7.707V15c0 .42.566 1 1 1h16c.434 0 1-.58 1-1V7.708c0-.184.004-.423-.387-.219z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-man'>
<path d="M10 4a2 2 0 1 0-.001-4.001A2 2 0 0 0 10 4zm5.978 7.583c-.385-1.775-1.058-4.688-2.042-5.894-.957-1.173-2.885-1.222-3.936-1.222-1.051 0-2.979.049-3.936 1.222-.984 1.206-1.657 4.119-2.042 5.894-.213.983 1.154 1.344 1.511.355.531-1.473.941-2.71 1.839-3.736C7.844 11.109 6.102 16.168 6 19a1 1 0 0 0 1.934.358C8.391 17.771 10 13.355 10 13.355s1.609 4.416 2.066 6.003A1 1 0 0 0 14 19c-.102-2.832-1.844-7.891-1.372-10.797.898 1.026 1.308 2.263 1.839 3.736.356.988 1.724.627 1.511-.356z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-map'>
<path d="M19.447 3.718l-6-3a1 1 0 0 0-.895 0l-5.63 2.815-5.606-1.869A1 1 0 0 0 0 2.613v13.001c0 .379.214.725.553.894l6 3a1.006 1.006 0 0 0 .894 0l5.63-2.814 5.606 1.869a.999.999 0 0 0 1.316-.949V4.612a.996.996 0 0 0-.552-.894zM8 5.231l4-2v11.763l-4 2V5.231zM2 4l4 1.333v11.661l-4-2V4zm16 12.227l-4-1.334V3.231l4 2v10.996z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-mask'>
<path d="M19.581 5.84a.802.802 0 0 0-.92-.73C16.919 5.388 12.835 7 10 7S3.081 5.388 1.339 5.11a.801.801 0 0 0-.92.729C.277 7.371 0 11.45 0 12.068c0 .83 3.472 2.732 6 2.732 2.452 0 2.95-2.732 4-2.732s1.548 2.732 4 2.732c2.528 0 6-1.902 6-2.732 0-.618-.277-4.697-.419-6.228zM7.66 10.72c-.353.318-1.335 1.07-2.531.835-1.196-.235-1.919-1.323-2.166-1.758a.259.259 0 0 1 .044-.317c.353-.318 1.335-1.07 2.532-.835 1.196.235 1.919 1.323 2.166 1.758a.26.26 0 0 1-.045.317zm9.377-.923c-.246.436-.969 1.523-2.166 1.758-1.196.235-2.179-.517-2.531-.835a.26.26 0 0 1-.045-.317c.246-.436.969-1.523 2.166-1.758 1.196-.235 2.179.517 2.531.835a.258.258 0 0 1 .045.317z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-medal'>
<path d="M10 10c.528 0 1.026.104 1.504.256L5.427 1.141A.316.316 0 0 0 5.164 1H1.608a.147.147 0 0 0-.122.229l6.231 9.347A4.94 4.94 0 0 1 10 10zm8.392-9h-3.556a.316.316 0 0 0-.263.141L10.75 6.875l2 3 5.764-8.646A.147.147 0 0 0 18.392 1zM10 11a4 4 0 1 0 0 8 4 4 0 0 0 0-8zm2.112 4.117a.132.132 0 0 1-.022.208.172.172 0 0 0-.049.229c.047.076.018.165-.065.199s-.125.13-.095.214-.017.165-.104.181-.149.101-.137.189-.051.158-.14.155c-.089-.003-.167.068-.174.156s-.083.144-.169.123-.178.031-.203.117-.111.124-.191.085c-.08-.039-.18-.006-.222.072s-.134.098-.205.043-.175-.044-.232.024-.151.068-.209 0-.162-.079-.232-.024-.162.035-.205-.043-.142-.111-.222-.072c-.08.039-.166 0-.191-.085s-.116-.138-.203-.117-.163-.034-.169-.123-.084-.159-.173-.157c-.089.003-.152-.067-.14-.155s-.05-.173-.137-.189-.135-.097-.104-.181-.013-.18-.095-.214-.111-.123-.065-.199a.17.17 0 0 0-.049-.229.133.133 0 0 1-.022-.208c.062-.064.062-.169 0-.234s-.052-.158.022-.208.095-.153.049-.229c-.047-.076-.018-.165.065-.199s.125-.13.095-.214.017-.165.104-.181.149-.101.137-.189.051-.158.14-.155c.089.003.167-.068.174-.156s.083-.144.169-.123.178-.031.203-.117.111-.124.191-.085c.08.039.18.006.222-.072s.134-.098.205-.043.175.044.232-.024.151-.068.209 0 .162.079.232.024.162-.035.205.043.142.111.222.072c.08-.039.166 0 .191.085s.116.138.203.117.163.034.169.123.085.159.174.156c.089-.003.152.067.14.155s.05.173.137.189.135.097.104.181.013.18.095.214.111.123.065.199c-.047.076-.025.179.049.229s.083.144.022.208-.063.171-.001.235z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-medium-with-circle'>
<path d="M10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zm4.2 7.267h-.117s-.35 0-.35.35v3.966s0 .35.35.35h.117v.934h-2.8v-.934h.467v-4.34h-.047l-1.43 5.274H9.13L7.713 7.993h-.046v4.34h.466v.934H5.8v-.934h.117s.35 0 .35-.35V8.016s0-.35-.35-.35H5.8v-.933h3.096l1.086 4.041h.036l1.095-4.04H14.2v.933z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-medium'>
<path d="M18.75 5S18 5 18 5.75v8.5s0 .75.75.75H19v2h-6v-2h1V5.7h-.1L10.835 17H8.137L5.1 5.7H5V15h1v2H1v-2h.25S2 15 2 14.25v-8.5S2 5 1.25 5H1V3h6.634l2.327 8.66h.077L12.386 3H19v2h-.25z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-megaphone'>
<path d="M17.223 7.03c-1.584-3.686-4.132-6.49-5.421-5.967-2.189.891 1.304 5.164-9.447 9.533-.929.379-1.164 1.888-.775 2.792.388.902 1.658 1.801 2.587 1.424.161-.066.751-.256.751-.256.663.891 1.357.363 1.604.928l1.158 2.66c.219.502.715.967 1.075.83l2.05-.779c.468-.178.579-.596.436-.924-.154-.355-.786-.459-.967-.873-.18-.412-.769-1.738-.938-2.156-.23-.568.259-1.031.97-1.104 4.894-.512 5.809 2.512 7.475 1.834 1.287-.525 1.025-4.259-.558-7.942zm-.551 5.976c-.287.115-2.213-1.402-3.443-4.267-1.231-2.863-1.076-5.48-.79-5.597.286-.115 2.165 1.717 3.395 4.58 1.231 2.863 1.124 5.167.838 5.284z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-menu'>
<path d="M16.4 9H3.6c-.552 0-.6.447-.6 1 0 .553.048 1 .6 1h12.8c.552 0 .6-.447.6-1 0-.553-.048-1-.6-1zm0 4H3.6c-.552 0-.6.447-.6 1 0 .553.048 1 .6 1h12.8c.552 0 .6-.447.6-1 0-.553-.048-1-.6-1zM3.6 7h12.8c.552 0 .6-.447.6-1 0-.553-.048-1-.6-1H3.6c-.552 0-.6.447-.6 1 0 .553.048 1 .6 1z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-merge'>
<path d="M17.89 17.707L16.892 20c-3.137-1.366-5.496-3.152-6.892-5.275-1.396 2.123-3.755 3.91-6.892 5.275l-.998-2.293C5.14 16.389 8.55 14.102 8.55 10V7H5.5L10 0l4.5 7h-3.05v3c0 4.102 3.41 6.389 6.44 7.707z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-message'>
<path d="M18 6v7c0 1.1-.9 2-2 2h-4v3l-4-3H4c-1.101 0-2-.9-2-2V6c0-1.1.899-2 2-2h12c1.1 0 2 .9 2 2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-mic'>
<path d="M16.399 7.643V10.4c0 2.236-1.643 4.629-5.399 4.959V18h2.6c.22 0 .4.18.4.4v1.2c0 .221-.181.4-.4.4H6.4c-.22 0-.4-.18-.4-.4v-1.2c0-.22.18-.4.399-.4H9v-2.641c-3.758-.33-5.4-2.723-5.4-4.959V7.643a.4.4 0 0 1 .4-.4h.6c.22 0 .4.18.4.4V10.4c0 1.336 1.053 3.6 5 3.6 3.946 0 5-2.264 5-3.6V7.643a.4.4 0 0 1 .399-.4H16a.399.399 0 0 1 .399.4zM10 12c2.346 0 3-.965 3-1.6V7.242H7V10.4c0 .635.652 1.6 3 1.6zm3-10.4c0-.637-.654-1.6-3-1.6-2.348 0-3 .963-3 1.6v4.242h6V1.6z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-minus'>
<path d="M16 10c0 .553-.048 1-.601 1H4.601C4.049 11 4 10.553 4 10c0-.553.049-1 .601-1H15.4c.552 0 .6.447.6 1z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-mixi'>
<path d="M9.546 17.258h.955v2.143c6.51-.684 9.982-7.143 9.421-11.691C19.358 3.16 14.471.018 8.978.69 3.486 1.364-.49 5.598.072 10.149c.513 4.138 4.602 7.113 9.474 7.109zm6.148-4.398h-1.831V7.907a2.78 2.78 0 0 0-.053-.557.926.926 0 0 0-.164-.381.808.808 0 0 0-.33-.244c-.152-.066-.363-.1-.623-.1-.537 0-.957.141-1.251.416-.291.273-.433.633-.433 1.1v4.719h-1.83V7.907c0-.205-.019-.395-.059-.564a1.006 1.006 0 0 0-.173-.387.757.757 0 0 0-.314-.237 1.5 1.5 0 0 0-.58-.094c-.312 0-.58.059-.795.174-.223.117-.405.26-.541.422a1.627 1.627 0 0 0-.299.506c-.062.172-.092.31-.092.414v4.719H4.494V5.164h1.758v.6c.574-.508 1.306-.766 2.181-.766.51 0 .981.103 1.399.305.306.147.554.365.738.652.231-.248.504-.451.814-.609a3.271 3.271 0 0 1 1.499-.348c.402 0 .773.043 1.102.127.343.086.644.225.895.412.258.193.46.445.602.75.141.301.212.66.212 1.07v5.503z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-mobile'>
<path d="M14.004 0H5.996A1.996 1.996 0 0 0 4 1.996v16.007C4 19.106 4.894 20 5.996 20h8.007A1.997 1.997 0 0 0 16 18.004V1.996A1.996 1.996 0 0 0 14.004 0zM10 19c-.69 0-1.25-.447-1.25-1s.56-1 1.25-1 1.25.447 1.25 1-.56 1-1.25 1zm4-3H6V2h8v14z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-modern-mic'>
<path d="M1.228 10.891a.528.528 0 0 0-.159.69l1.296 2.244c.133.23.438.325.677.208L7 12.116V19h2v-7.854l4.071-1.973-2.62-4.54-9.223 6.258zm17.229-7.854a4.061 4.061 0 0 0-5.546-1.484c-.91.525-1.508 1.359-1.801 2.289l2.976 5.156c.951.212 1.973.11 2.885-.415a4.06 4.06 0 0 0 1.486-5.546z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-moon'>
<path d="M13.719 1.8A8.759 8.759 0 1 1 1.8 13.719c3.335 1.867 7.633 1.387 10.469-1.449 2.837-2.837 3.318-7.134 1.45-10.47z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-mouse-pointer'>
<path d="M10.86 11.995l2.525 6.08L11.17 19l-2.525-6.05L5 16.625V1.1l10.946 10.888-5.086.006z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-mouse'>
<path d="M15.402 14.402l-2.627-7.535c-.722-2.073-2.966-3.22-5.092-2.653L5.707.379a.687.687 0 0 0-.938-.296.719.719 0 0 0-.289.961l1.929 3.742C4.872 5.806 4.073 7.74 4.58 9.56l2.139 7.696c.602 2.162 3.08 3.264 5.571 2.502 2.459-.863 3.85-3.237 3.112-5.356zM8.899 8.923a1.38 1.38 0 0 1-1.745-.921c-.235-.748.168-1.548.897-1.788.73-.24 1.512.172 1.746.92s-.168 1.549-.898 1.789z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-music'>
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 1H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1zm-3.205 10.519c-.185.382-.373.402-.291 0C12.715 10.48 12.572 8.248 11 8v4.75c0 .973-.448 1.82-1.639 2.203-1.156.369-2.449-.016-2.752-.846-.303-.83.377-1.84 1.518-2.256.637-.232 1.375-.292 1.873-.101V5h1c0 2.355 4.065 1.839 1.795 6.519z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-network'>
<path d="M5.274 6.915c.2 0 .394.029.576.086a15.774 15.774 0 0 1 2.283-2.1 1.954 1.954 0 0 1 .048-1.076A14.407 14.407 0 0 0 5.17 2.171a9.25 9.25 0 0 0-2.582 2.381c.519.92 1.136 1.777 1.838 2.557.256-.124.543-.194.848-.194zM3.316 8.872c0-.275.058-.537.159-.773A15.91 15.91 0 0 1 1.78 5.87a9.165 9.165 0 0 0-.98 4.131 9.16 9.16 0 0 0 1.295 4.705 15.614 15.614 0 0 1 1.62-4.652 1.947 1.947 0 0 1-.399-1.182zm6.72-6.383c.517 0 .985.201 1.336.529a15.578 15.578 0 0 1 3.215-.992A9.154 9.154 0 0 0 10 .8a9.167 9.167 0 0 0-3.236.588 15.76 15.76 0 0 1 2.277 1.375c.292-.174.631-.274.995-.274zm2.926 9.219a1.94 1.94 0 0 1 .509-.656 14.336 14.336 0 0 0-2.672-4.803 1.956 1.956 0 0 1-1.901-.211 14.343 14.343 0 0 0-1.964 1.803 1.93 1.93 0 0 1 .207 1.617 14.252 14.252 0 0 0 5.821 2.25zm2.539 2.643a15.872 15.872 0 0 1-.081 3.082 9.216 9.216 0 0 0 3.347-4.639 15.39 15.39 0 0 1-2.181.365 1.958 1.958 0 0 1-1.085 1.192zm-2.997-1.327a15.643 15.643 0 0 1-6.21-2.484 1.953 1.953 0 0 1-1.423.248 14.219 14.219 0 0 0-1.599 5.484 9.203 9.203 0 0 0 3.145 2.205 15.662 15.662 0 0 1 6.087-5.453zm3.672-9.843a14.296 14.296 0 0 0-4.193 1.068 1.946 1.946 0 0 1-.191 1.056 15.68 15.68 0 0 1 2.969 5.291 1.961 1.961 0 0 1 1.77 1.195c.886-.09 1.748-.26 2.578-.504a9.178 9.178 0 0 0-2.933-8.106zm-2.687 10.888a14.291 14.291 0 0 0-5.723 4.856A9.187 9.187 0 0 0 10 19.2a9.165 9.165 0 0 0 3.882-.859c.19-.928.29-1.887.29-2.869 0-.355-.016-.707-.043-1.055a1.923 1.923 0 0 1-.64-.348z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-new-message'>
<path d="M18.174 1.826c-1.102-1.102-2.082-.777-2.082-.777L7.453 9.681 6 14l4.317-1.454 8.634-8.638s.324-.98-.777-2.082zm-7.569 9.779l-.471.47-1.473.5a2.216 2.216 0 0 0-.498-.74 2.226 2.226 0 0 0-.74-.498l.5-1.473.471-.47s.776-.089 1.537.673c.762.761.674 1.538.674 1.538zM16 17H3V4h5l2-2H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2v-7l-2 2v5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-new'>
<path d="M18.69 12.344l-1.727-1.538c-.5-.445-.5-1.174 0-1.619l1.727-1.539c.5-.445.367-.859-.296-.924l-2.29-.217c-.662-.062-1.02-.633-.791-1.266l1.215-3.383c.228-.635-.051-.865-.619-.514l-2.701 1.67a1.158 1.158 0 0 1-1.631-.426L10.599.842C10.27.254 9.727.252 9.392.834l-.909 1.58c-.337.585-1.108.833-1.713.556l-1.6-.734c-.608-.28-1.073.042-1.037.716l.086 1.615c.037.674-.461 1.367-1.104 1.541l-1.545.414c-.642.174-.76.68-.26 1.125l1.727 1.539c.5.445.5 1.174 0 1.619L1.31 12.344c-.5.445-.368.877.293.957l2.095.254c.661.08 1.029.67.818 1.311l-1.074 3.258c-.211.641.09.889.668.555l2.463-1.426a1.321 1.321 0 0 1 1.729.408L9.324 19.2c.372.559.931.529 1.24-.068l.899-1.733a1.243 1.243 0 0 1 1.648-.543l1.734.867c.598.297 1.057-.01 1.021-.682l-.087-1.617c-.035-.674.461-1.365 1.106-1.539l1.543-.416c.644-.174.762-.68.262-1.125zM11 14H9v-2h2v2zm0-3H9V6h2v5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-news'>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14 5h-4v2h4V5zm0 3h-4v1h4V8zM9 5H6v4h3V5zm0 6h5v-1H9v1zm3 2h2v-1h-2v1zm2 1H6v1h8v-1zm-3-2H6v1h5v-1zm-3-2H6v1h2v-1zm9-9H3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1zm-1 16H4V3h12v14z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-newsletter'>
<path d="M18 3H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zM4 10h6v1H4v-1zm8 4H4v-1h8v1zm5-6h-3V5h3v3z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-note'>
<path d="M14.971 9.438c-.422.656-.646.375-.52 0 .336-.993.348-4.528-2.451-4.969L11.998 16c0 1.657-1.735 4-4.998 4-1.657 0-3-.871-3-2.5 0-2.119 1.927-3.4 4-3.4 1.328 0 2 .4 2 .4V0h2c0 2.676 5.986 4.744 2.971 9.438z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-notification'>
<path d="M15 8.38V17H3V5h8.62c-.073-.322-.12-.655-.12-1s.047-.678.12-1H3c-1.102 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8.38c-.322.073-.655.12-1 .12s-.678-.047-1-.12zM16 1a3 3 0 1 0 0 6 3 3 0 0 0 0-6z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-notifications-off'>
<path d="M18.8 17.4c.2.2.2.5 0 .7l-.7.7c-.2.2-.5.2-.7 0L1.2 2.6c-.2-.2-.2-.5 0-.7l.7-.7c.2-.2.5-.2.7 0l16.2 16.2zM16 7c1.7 0 3-1.3 3-3s-1.3-3-3-3-3 1.3-3 3 1.3 3 3 3zm-1 1.4v3.8l2 2V8.4c-.3.1-.7.1-1 .1s-.7 0-1-.1zM11.6 5c-.1-.3-.1-.7-.1-1 0-.3 0-.7.1-1H5.8l2 2h3.8zM5 15V7.8l-2-2V15c0 1.1.9 2 2 2h9.2l-2-2H5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-old-mobile'>
<path d="M13.6 3H7V0H5v18.6c0 .77.629 1.4 1.398 1.4H13.6c.769 0 1.4-.631 1.4-1.4V4.401C15 3.629 14.369 3 13.6 3zM8 15c-.691 0-1.25-.447-1.25-1s.559-1 1.25-1 1.25.447 1.25 1-.559 1-1.25 1zm1.25 2c0 .553-.559 1-1.25 1s-1.25-.447-1.25-1 .559-1 1.25-1 1.25.447 1.25 1zM7 11V5h6v6H7zm5 4c-.691 0-1.25-.447-1.25-1s.559-1 1.25-1 1.25.447 1.25 1-.559 1-1.25 1zm1.25 2c0 .553-.559 1-1.25 1s-1.25-.447-1.25-1 .559-1 1.25-1 1.25.447 1.25 1z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-old-phone'>
<path d="M17.256 12.253c-.096-.667-.611-1.187-1.274-1.342-2.577-.604-3.223-2.088-3.332-3.734C12.193 7.092 11.38 7 10 7s-2.193.092-2.65.177c-.109 1.646-.755 3.13-3.332 3.734-.663.156-1.178.675-1.274 1.342l-.497 3.442C2.072 16.907 2.962 18 4.2 18h11.6c1.237 0 2.128-1.093 1.953-2.305l-.497-3.442zM10 15.492c-1.395 0-2.526-1.12-2.526-2.5s1.131-2.5 2.526-2.5 2.526 1.12 2.526 2.5-1.132 2.5-2.526 2.5zM19.95 6c-.024-1.5-3.842-3.999-9.95-4C3.891 2.001.073 4.5.05 6s.021 3.452 2.535 3.127c2.941-.381 2.76-1.408 2.76-2.876C5.345 5.227 7.737 4.98 10 4.98s4.654.247 4.655 1.271c0 1.468-.181 2.495 2.76 2.876C19.928 9.452 19.973 7.5 19.95 6z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-onedrive'>
<path d="M6.429 9.847a4.47 4.47 0 0 1 7.573-2.012 4.186 4.186 0 0 1 1.136-.21v-.13c0-2.482-1.845-4.495-4.12-4.495-1.626 0-3.02 1.038-3.69 2.531a3.01 3.01 0 0 0-1.694-.535c-1.785 0-3.231 1.577-3.231 3.523 0 .21.024.414.057.613-1.377.136-2.455 1.544-2.455 3.08 0 .016.004.029.004.045-.001.014-.009.028-.009.042 0 .615.214 1.177.561 1.631A2.638 2.638 0 0 0 2.701 15h1.261a3.574 3.574 0 0 1-.398-1.615 3.62 3.62 0 0 1 2.865-3.538zm11.46 1.93c-.025 0-.05.007-.075.008.007-.074.022-.146.022-.222a2.664 2.664 0 0 0-2.665-2.664 2.64 2.64 0 0 0-1.564.516 3.22 3.22 0 0 0-2.838-1.712 3.237 3.237 0 0 0-3.237 3.237c0 .023.006.043.007.066a2.36 2.36 0 0 0-.359-.036 2.414 2.414 0 0 0-2.366 2.902A2.612 2.612 0 0 0 7.38 16h10.706v-.019a2.106 2.106 0 0 0-.197-4.204z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-open-book'>
<path d="M10.595 5.196l.446 1.371a4.135 4.135 0 0 1 1.441-.795c.59-.192 1.111-.3 1.582-.362l-.43-1.323a9.465 9.465 0 0 0-1.58.368 5.25 5.25 0 0 0-1.459.741zm.927 2.855l.446 1.371a4.135 4.135 0 0 1 1.441-.795c.59-.192 1.111-.3 1.582-.362l-.43-1.323a9.465 9.465 0 0 0-1.58.368 5.21 5.21 0 0 0-1.459.741zm.928 2.854l.446 1.371a4.135 4.135 0 0 1 1.441-.795c.59-.192 1.111-.3 1.582-.362l-.43-1.323a9.465 9.465 0 0 0-1.58.368 5.21 5.21 0 0 0-1.459.741zm-7.062 2.172l.43 1.323a8.745 8.745 0 0 1 1.492-.636 4.141 4.141 0 0 1 1.633-.203l-.446-1.371a5.25 5.25 0 0 0-1.615.257 9.406 9.406 0 0 0-1.494.63zM3.533 7.368l.43 1.323a8.825 8.825 0 0 1 1.492-.636 4.141 4.141 0 0 1 1.633-.203L6.643 6.48a5.263 5.263 0 0 0-1.616.258 9.406 9.406 0 0 0-1.494.63zm.927 2.855l.43 1.323a8.745 8.745 0 0 1 1.492-.636 4.141 4.141 0 0 1 1.633-.203L7.57 9.335a5.25 5.25 0 0 0-1.615.257 9.417 9.417 0 0 0-1.495.631zm6.604-8.813a5.26 5.26 0 0 0-3.053 2.559 5.257 5.257 0 0 0-3.973-.275C1.515 4.514.069 6.321.069 6.321l4.095 12.587c.126.387.646.477.878.143.499-.719 1.46-1.658 3.257-2.242 1.718-.558 2.969.054 3.655.578.272.208.662.06.762-.268.252-.827.907-2.04 2.61-2.593 1.799-.585 3.129-.389 3.956-.1.385.134.75-.242.625-.629L15.819 1.203s-2.232-.612-4.755.207zm-.113 13.846a5.208 5.208 0 0 0-3.141.044c-1.251.406-2.127.949-2.699 1.404L1.866 6.722c.358-.358 1.187-1.042 2.662-1.521 1.389-.451 2.528-.065 3.279.378l3.144 9.677zm6.894-2.689c-.731-.032-1.759.044-3.01.451a5.205 5.205 0 0 0-2.567 1.81L9.124 5.151c.346-.8 1.04-1.782 2.43-2.233 1.474-.479 2.547-.413 3.047-.334l3.244 9.983z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-palette'>
<path d="M15.74 2.608c-3.528-1.186-7.066-.961-10.72 1.274C2.167 5.625.302 9.958.917 13.064c.728 3.671 4.351 5.995 9.243 4.651 5.275-1.449 6.549-4.546 6.379-5.334-.17-.788-2.665-1.652-1.718-3.498 1.188-2.313 3.129-1.149 3.982-1.622.855-.472.539-3.442-3.063-4.653zm-3.646 10.706a1.504 1.504 0 0 1-1.843-1.059 1.5 1.5 0 0 1 1.046-1.849 1.503 1.503 0 0 1 1.843 1.059 1.501 1.501 0 0 1-1.046 1.849z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-paper-plane'>
<path d="M18.64 2.634L.984 8.856c-.284.1-.347.345-.01.479l3.796 1.521 2.25.901 10.984-8.066c.148-.108.318.095.211.211l-7.871 8.513v.002l-.452.503.599.322 4.982 2.682c.291.156.668.027.752-.334l2.906-12.525c.079-.343-.148-.552-.491-.431zM7 17.162c0 .246.139.315.331.141.251-.229 2.85-2.561 2.85-2.561L7 13.098v4.064z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-paypal'>
<path d="M7.914 10.677h1.659c3.604 0 5.649-1.623 6.3-4.96.021-.11.04-.216.056-.322.036-.226.054-.429.062-.624.006-.134.01-.213.009-.287a2.643 2.643 0 0 0-.216-1.039c-.129-.296-.324-.587-.613-.918C14.318 1.557 12.832 1 11.057 1H5.404a.81.81 0 0 0-.799.683l-1.02 6.571-1.269 8.185a.486.486 0 0 0 .48.561h2.772l.849-5.043a1.51 1.51 0 0 1 1.497-1.28zm9.103-4.587c-.792 3.771-3.357 5.772-7.445 5.772H7.914a.331.331 0 0 0-.328.282L6.481 19h2.907a.707.707 0 0 0 .699-.597l.029-.15.555-3.514.036-.194a.707.707 0 0 1 .699-.597h.44c2.85 0 5.081-1.158 5.733-4.506.268-1.38.132-2.534-.562-3.352z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-pencil'>
<path d="M14.69 2.661c-1.894-1.379-3.242-1.349-3.754-1.266a.538.538 0 0 0-.35.223l-4.62 6.374-2.263 3.123a2.447 2.447 0 0 0-.462 1.307l-.296 5.624a.56.56 0 0 0 .76.553l5.256-2.01c.443-.17.828-.465 1.106-.849l1.844-2.545 5.036-6.949a.56.56 0 0 0 .1-.423c-.084-.526-.487-1.802-2.357-3.162zM8.977 15.465l-2.043.789a.19.19 0 0 1-.221-.062 5.145 5.145 0 0 0-1.075-1.03 5.217 5.217 0 0 0-1.31-.706.192.192 0 0 1-.126-.192l.122-2.186.549-.755s1.229-.169 2.833.998c1.602 1.166 1.821 2.388 1.821 2.388l-.55.756z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-phone'>
<path d="M11.229 11.229c-1.583 1.582-3.417 3.096-4.142 2.371-1.037-1.037-1.677-1.941-3.965-.102-2.287 1.838-.53 3.064.475 4.068 1.16 1.16 5.484.062 9.758-4.211 4.273-4.274 5.368-8.598 4.207-9.758-1.005-1.006-2.225-2.762-4.063-.475-1.839 2.287-.936 2.927.103 3.965.722.725-.791 2.559-2.373 4.142z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-picasa'>
<path d="M5.808 1.823A9.175 9.175 0 0 0 .8 10.021c0 .633.08 1.275.221 1.918L8.97 4.7 5.808 1.823zm7.985-.197A9.117 9.117 0 0 0 9.999.8c-.934 0-1.855.156-2.749.441l6.543 5.951V1.626zm1.399.812v10.617h3.485a9.192 9.192 0 0 0 .522-3.035c.001-3.033-1.522-5.872-4.007-7.582zM1.463 13.429a9.227 9.227 0 0 0 3.368 4.184v-7.25l-2.045 1.861c-.698.634-1.28 1.166-1.323 1.205zm4.767 4.996a9.105 9.105 0 0 0 2.92.775h1.689c3.019-.281 5.727-2.068 7.199-4.744H6.23v3.969z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-pie-chart'>
<path d="M11 .958v9.039C11 10.551 10.551 11 9.997 11H.958A9.1 9.1 0 1 0 11 .958zm-2 0A9.098 9.098 0 0 0 .958 9H9V.958z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-pin'>
<path d="M4.774 15.287l-2.105 3.25.224 1.063 1.06-.227 2.104-3.248a8.352 8.352 0 0 1-1.283-.838zm8.912-1.135c.014-.029.023-.061.036-.092.053-.117.1-.234.138-.357.006-.022.009-.044.016-.064a4.48 4.48 0 0 0 .098-.408v-.021c.195-1.169-.145-2.473-.923-3.651l1.11-1.714c1.279.163 2.385-.159 2.917-.982.923-1.423-.2-3.792-2.505-5.293C12.266.068 9.65.005 8.729 1.426c-.534.824-.378 1.967.293 3.073L7.91 6.213c-1.389-.233-2.716-.016-3.703.64-.006.002-.013.004-.017.008a3.735 3.735 0 0 0-.332.254c-.017.014-.037.027-.051.041a3.024 3.024 0 0 0-.271.272c-.02.024-.048.045-.067.07a3.102 3.102 0 0 0-.29.385c-1.384 2.133-.203 5.361 2.633 7.209 2.838 1.848 6.26 1.614 7.641-.519.087-.135.167-.276.233-.421zm-.815-9.958c-.887-.577-1.32-1.487-.965-2.036.354-.547 1.361-.522 2.246.055.889.577 1.318 1.489.965 2.036-.353.547-1.358.522-2.246-.055z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-pinterest-with-circle'>
<path d="M10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zm.657 11.875c-.616-.047-.874-.352-1.356-.644-.265 1.391-.589 2.725-1.549 3.422-.297-2.104.434-3.682.774-5.359-.579-.975.069-2.936 1.291-2.454 1.503.596-1.302 3.625.581 4.004 1.966.394 2.769-3.412 1.55-4.648-1.762-1.787-5.127-.041-4.713 2.517.1.625.747.815.258 1.678-1.127-.25-1.464-1.139-1.42-2.324.069-1.94 1.743-3.299 3.421-3.486 2.123-.236 4.115.779 4.391 2.777.309 2.254-.959 4.693-3.228 4.517z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-pinterest'>
<path d="M8.617 13.227C8.091 15.981 7.45 18.621 5.549 20c-.586-4.162.861-7.287 1.534-10.605-1.147-1.93.138-5.812 2.555-4.855 2.975 1.176-2.576 7.172 1.15 7.922 3.891.781 5.479-6.75 3.066-9.199C10.369-.275 3.708 3.18 4.528 8.245c.199 1.238 1.478 1.613.511 3.322-2.231-.494-2.897-2.254-2.811-4.6.138-3.84 3.449-6.527 6.771-6.9 4.201-.471 8.144 1.543 8.689 5.494.613 4.461-1.896 9.293-6.389 8.945-1.218-.095-1.728-.699-2.682-1.279z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-plus'>
<path d="M16 10c0 .553-.048 1-.601 1H11v4.399c0 .552-.447.601-1 .601-.553 0-1-.049-1-.601V11H4.601C4.049 11 4 10.553 4 10c0-.553.049-1 .601-1H9V4.601C9 4.048 9.447 4 10 4c.553 0 1 .048 1 .601V9h4.399c.553 0 .601.447.601 1z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-popup'>
<path d="M16 2H7.979C6.88 2 6 2.88 6 3.98V12c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 10H8V4h8v8zM4 10H2v6c0 1.1.9 2 2 2h6v-2H4v-6z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-power-plug'>
<path d="M0 14v1.498c0 .277.225.502.502.502h.997A.502.502 0 0 0 2 15.498V14c0-.959.801-2.273 2-2.779V9.116C1.684 9.652 0 11.97 0 14zm12.065-9.299l-2.53 1.898c-.347.26-.769.401-1.203.401H6.005C5.45 7 5 7.45 5 8.005v3.991C5 12.55 5.45 13 6.005 13h2.327c.434 0 .856.141 1.203.401l2.531 1.898a3.502 3.502 0 0 0 2.102.701H16V4h-1.832c-.758 0-1.496.246-2.103.701zM17 6v2h3V6h-3zm0 8h3v-2h-3v2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-price-ribbon'>
<path d="M12.825 10.653c.118-.258.445-.497.727-.529s.539-.29.571-.572c.034-.28.272-.608.529-.727a.69.69 0 0 0 .369-.72c-.058-.278.068-.663.276-.854a.689.689 0 0 0 .127-.801 1.017 1.017 0 0 1 0-.897.688.688 0 0 0-.127-.801c-.208-.193-.333-.577-.276-.854a.691.691 0 0 0-.369-.722 1.03 1.03 0 0 1-.529-.727.689.689 0 0 0-.571-.572 1.024 1.024 0 0 1-.727-.528.686.686 0 0 0-.722-.366 1.024 1.024 0 0 1-.854-.278c-.193-.21-.553-.266-.8-.127s-.652.139-.898 0a.684.684 0 0 0-.801.125 1.022 1.022 0 0 1-.854.278.685.685 0 0 0-.72.367c-.119.256-.446.495-.728.527a.69.69 0 0 0-.572.573 1.023 1.023 0 0 1-.529.726.69.69 0 0 0-.366.722c.055.277-.07.662-.278.854s-.266.552-.127.801c.139.246.139.651 0 .897a.69.69 0 0 0 .127.802c.209.19.333.575.278.854a.687.687 0 0 0 .366.72c.258.119.495.447.528.727.034.282.29.54.572.572s.609.272.728.529a.688.688 0 0 0 .72.366c.278-.055.663.069.854.278a.69.69 0 0 0 .801.127c.246-.139.651-.139.898 0s.607.081.8-.127c.193-.21.576-.333.854-.278a.69.69 0 0 0 .723-.365zM10 9.399a3.4 3.4 0 1 1 0-6.8 3.4 3.4 0 0 1 0 6.8zm-4.025 2.01l-1.243 7.049 3.128-.464 2.781 1.506 1.238-7.021a6.707 6.707 0 0 1-5.904-1.07zm7.986.048a6.741 6.741 0 0 1-.99.597l-.748 4.236 3.369-1.828-1.631-3.005z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-price-tag'>
<path d="M19.388.405a.605.605 0 0 0-1.141.399c.929 2.67-.915 4.664-2.321 5.732l-.568-.814c-.191-.273-.618-.5-.95-.504l-3.188.014a2.162 2.162 0 0 0-1.097.338L.729 12.157a1.01 1.01 0 0 0-.247 1.404l4.269 6.108c.32.455.831.4 1.287.082l9.394-6.588c.27-.191.582-.603.692-.918l.998-3.145c.11-.314.043-.793-.148-1.066l-.346-.496c1.888-1.447 3.848-4.004 2.76-7.133zm-4.371 9.358a1.608 1.608 0 0 1-2.24-.396 1.614 1.614 0 0 1 .395-2.246 1.607 1.607 0 0 1 1.868.017c-.272.164-.459.26-.494.275a.606.606 0 0 0 .259 1.153c.086 0 .174-.02.257-.059.194-.092.402-.201.619-.33a1.615 1.615 0 0 1-.664 1.586z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-print'>
<path d="M1.501 6h17c.57 0 .477-.608.193-.707C18.409 5.194 15.251 4 14.7 4H14V1H6v3h-.699c-.55 0-3.709 1.194-3.993 1.293-.284.099-.377.707.193.707zM19 7H1c-.55 0-1 .45-1 1v5c0 .551.45 1 1 1h2.283l-.882 5H17.6l-.883-5H19c.551 0 1-.449 1-1V8c0-.55-.449-1-1-1zM4.603 17l1.198-7.003H14.2L15.399 17H4.603z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-progress-empty'>
<path d="M18 5H2C.9 5 0 5.9 0 7v6c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 8H2V7h16v6z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-progress-full'>
<path d="M18 5H2C.9 5 0 5.9 0 7v6c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 8H2V7h16v6zM7 8H3v4h4V8zm5 0H8v4h4V8zm5 0h-4v4h4V8z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-progress-one'>
<path d="M18 5H2C.9 5 0 5.9 0 7v6c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 8H2V7h16v6zM7 8H3v4h4V8z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-progress-two'>
<path d="M18 5H2C.9 5 0 5.9 0 7v6c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 8H2V7h16v6zM7 8H3v4h4V8zm5 0H8v4h4V8z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-publish'>
<path d="M9.967 8.193L5 13h3v6h4v-6h3L9.967 8.193zM18 1H2C.9 1 0 1.9 0 3v12c0 1.1.9 2 2 2h4v-2H2V6h16v9h-4v2h4c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM2.5 4.25a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5zm2 0a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5zM18 4H6V3h12.019L18 4z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-qq-with-circle'>
<path d="M10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zm4.008 11.92c-.184.096-.47-.122-.737-.52-.105.435-.369.828-.743 1.144.394.144.65.38.65.65 0 .442-.695.799-1.553.799-.773 0-1.415-.291-1.533-.672h-.184c-.12.38-.76.672-1.533.672-.857 0-1.552-.357-1.552-.8 0-.268.256-.505.65-.65-.375-.315-.638-.708-.745-1.143-.267.398-.553.616-.735.52-.265-.136-.213-.88.117-1.654.26-.61.612-1.06.879-1.158a1.18 1.18 0 0 1 .172-.748l-.002-.041c0-.11.026-.21.07-.298.068-1.586 1.1-2.845 2.771-2.845 1.67 0 2.703 1.259 2.771 2.845.044.088.07.188.07.298 0 .012 0 .027-.003.041a1.169 1.169 0 0 1 .173.748c.267.098.62.547.878 1.158.331.775.383 1.518.119 1.655z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-qq'>
<path d="M17.005 13.018c-.779-.547-1.751-.51-2.304.277-.553.785-4.418 5.633-10.751 3.619.239.209.49.406.755.592 4.153 2.926 9.892 1.928 12.816-2.225.555-.787.263-1.714-.516-2.263zm-12.22-.617c-.404-.871-2.669-6.643 2.24-11.121a9.2 9.2 0 0 0-5.371 12.57c.403.871 1.353 1.084 2.218.684.864-.401 1.316-1.262.913-2.133zM10.826.823c-.956-.086-1.614.629-1.7 1.578-.085.949.435 1.771 1.391 1.857.956.086 7.087 1.01 8.51 7.502.062-.311.106-.627.136-.949.455-5.061-3.277-9.533-8.337-9.988zM6.891 10.53c-.264.619-.306 1.213-.094 1.322.146.076.374-.098.588-.416.085.347.295.662.595.914-.314.115-.52.305-.52.519 0 .354.556.639 1.241.639.618 0 1.13-.232 1.225-.537h.147c.095.305.607.537 1.226.537.686 0 1.241-.285 1.241-.639 0-.215-.205-.404-.52-.519.299-.252.51-.566.594-.914.214.318.442.492.589.416.211-.109.17-.703-.095-1.322-.207-.488-.488-.848-.702-.926.004-.031.004-.063.004-.094a.933.933 0 0 0-.142-.504c.002-.012.002-.023.002-.033a.528.528 0 0 0-.056-.238C12.16 7.467 11.335 6.461 10 6.461c-1.336 0-2.161 1.006-2.215 2.273a.529.529 0 0 0-.057.238l.002.033a.958.958 0 0 0-.137.599c-.213.078-.495.437-.702.926z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-quote'>
<path d="M5.315 3.401c-1.61 0-2.916 1.343-2.916 3 0 1.656 1.306 3 2.916 3 2.915 0 .972 5.799-2.916 5.799v1.4c6.939.001 9.658-13.199 2.916-13.199zm8.4 0c-1.609 0-2.915 1.343-2.915 3 0 1.656 1.306 3 2.915 3 2.916 0 .973 5.799-2.915 5.799v1.4c6.938.001 9.657-13.199 2.915-13.199z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-radio'>
<path d="M17 8H5.021l8.974-5.265L13 1 1.736 7.571A1.482 1.482 0 0 0 1 8.852V17a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7a2 2 0 0 0-2-2zm-1.5 9a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 15.5 17zm1.5-5H3v-2h14v2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-raft-with-circle'>
<path d="M10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zm3.215 13.793c-.28.267-.664.42-1.055.42-.48 0-.867-.18-1.153-.532-.198-.244-.308-.496-.466-.936l-.078-.219c-.183-.498-.344-.75-.577-.879-.07.271-.149.525-.234.756-.445 1.216-1.077 1.832-1.88 1.832-.45 0-.848-.185-1.12-.522-.331-.413-.438-.996-.299-1.642l.03-.14 1.016.223-.03.138c-.072.332-.043.6.082.755a.393.393 0 0 0 .322.143c.4 0 .795-.639 1.094-1.76a2.932 2.932 0 0 1-.896-.49l-.11-.088.648-.818.11.089c.142.113.3.206.471.276.087-.498.156-1.046.207-1.63l.013-.142 1.035.091-.012.141a20.837 20.837 0 0 1-.212 1.683 2.28 2.28 0 0 0 1.727-1.087c.593-.999.357-2.25-.56-2.974-.393-.31-.97-.486-1.507-.459-.672.028-1.238.33-1.682.91-.536.695-.592 1.738-.135 2.478l.075.12-.883.553-.075-.12c-.689-1.116-.609-2.627.196-3.672.631-.822 1.482-1.273 2.46-1.314.8-.031 1.603.217 2.192.68a3.315 3.315 0 0 1 .811 4.334 3.276 3.276 0 0 1-1.669 1.393c.13.198.24.434.367.78l.081.226c.256.714.373.778.641.778a.512.512 0 0 0 .338-.132c.161-.154.208-.45.141-.882l-.022-.14 1.027-.162.022.14c.122.78-.035 1.402-.451 1.801z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-raft'>
<path d="M5.673 19c-.877 0-1.65-.36-2.176-1.014-.645-.803-.851-1.936-.581-3.19l.058-.27 1.973.43-.058.27c-.14.645-.083 1.165.158 1.465.148.184.36.278.626.278.776 0 1.545-1.24 2.126-3.418a5.699 5.699 0 0 1-1.74-.952l-.214-.171 1.258-1.59.215.173c.274.22.58.4.914.537.169-.969.304-2.032.403-3.169l.024-.274 2.011.177-.024.275a40.469 40.469 0 0 1-.41 3.268c1.387-.14 2.65-.927 3.354-2.111 1.152-1.941.694-4.37-1.09-5.778-.761-.602-1.88-.943-2.926-.891-1.304.054-2.404.642-3.268 1.766-1.04 1.351-1.15 3.377-.26 4.816l.144.234-1.715 1.073-.145-.235c-1.339-2.167-1.183-5.101.38-7.132C5.935 1.97 7.588 1.095 9.49 1.015c1.552-.06 3.114.42 4.257 1.322 2.594 2.047 3.257 5.587 1.577 8.418a6.365 6.365 0 0 1-3.243 2.707c.252.384.466.843.712 1.514l.158.44c.497 1.387.724 1.51 1.245 1.51.236 0 .494-.1.657-.256.313-.3.405-.875.274-1.712l-.043-.273 1.995-.315.043.273c.236 1.513-.068 2.723-.877 3.499a2.989 2.989 0 0 1-2.049.815c-.93 0-1.684-.348-2.24-1.033-.384-.474-.598-.964-.904-1.818l-.153-.426c-.355-.968-.668-1.457-1.12-1.707a16.26 16.26 0 0 1-.454 1.468C8.46 17.803 7.232 19 5.673 19z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-rainbow'>
<path d="M10 5C4.477 5 0 9.477 0 15h1.5a8.5 8.5 0 0 1 17 0H20c0-5.523-4.477-10-10-10zm0 6a4 4 0 0 0-4 4h1.5a2.5 2.5 0 1 1 5 0H14a4 4 0 0 0-4-4zm0-3a7 7 0 0 0-7 7h1.5a5.5 5.5 0 1 1 11 0H17a7 7 0 0 0-7-7z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-rdio-with-circle'>
<path d="M10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zm3.403 9.082c.022.17.034.342.034.518 0 2.176-1.742 3.941-3.892 3.941-2.148 0-3.891-1.766-3.891-3.941 0-2.178 1.742-3.942 3.891-3.942.309 0 .608.039.896.107V8.41c-.454-.166-1.015-.142-1.541.111-.952.461-1.435 1.494-1.079 2.311.357.816 1.418 1.106 2.371.645.656-.316 1.234-1.078 1.234-2.035V6.549c.082.045.162.096.24.146.739.465 1.838 1.086 3.121 1.152.501.026-.197 1.284-1.384 1.635z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-rdio'>
<path d="M16.203 10.001c0 4.307-3.448 7.799-7.701 7.799S.8 14.308.8 10.001C.8 5.692 4.248 2.2 8.501 2.2c.611 0 1.204.076 1.774.213v4.441c-.902-.33-2.01-.281-3.053.223-1.885.91-2.841 2.957-2.135 4.57.705 1.615 2.807 2.188 4.691 1.277 1.299-.627 2.443-2.137 2.443-4.029V3.171c.162.09.32.188.475.289 1.464.92 3.638 2.152 6.178 2.281.99.049-.389 2.541-2.738 3.236.044.334.067.676.067 1.024z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-remove-user'>
<path d="M15.989 19.129c0-2.246-2.187-3.389-4.317-4.307-2.123-.914-2.801-1.684-2.801-3.334 0-.989.648-.667.932-2.481.12-.752.692-.012.802-1.729 0-.684-.313-.854-.313-.854s.159-1.013.221-1.793c.064-.817-.398-2.56-2.301-3.095-.332-.341-.557-.882.467-1.424-2.24-.104-2.761 1.068-3.954 1.93-1.015.756-1.289 1.953-1.24 2.59.065.78.223 1.793.223 1.793s-.314.17-.314.854c.11 1.718.684.977.803 1.729.284 1.814.933 1.492.933 2.481 0 1.65-.212 2.21-2.336 3.124C.663 15.53 0 17 .011 19.129.014 19.766 0 20 0 20h16s-.011-.234-.011-.871zm.011-9.09l-2.299-2.398-1.061 1.061L15.039 11l-2.398 2.298 1.061 1.061L16 11.961l2.298 2.398 1.061-1.061L16.961 11l2.397-2.298-1.061-1.061L16 10.039z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-renren'>
<path d="M8.468.865C4.117 1.594.8 5.377.8 9.936c0 2.266.82 4.338 2.179 5.941 3.221-1.559 5.472-5.086 5.489-9.191V.865zm1.534 11.393c-.573 2.373-2.285 4.4-4.418 5.748A9.154 9.154 0 0 0 10 19.135c1.602 0 3.108-.41 4.418-1.129-2.133-1.348-3.844-3.375-4.416-5.748zm1.533-5.615c0 4.123 2.256 7.668 5.487 9.234A9.16 9.16 0 0 0 19.2 9.936c0-4.559-3.315-8.34-7.665-9.07v5.777z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-reply-all'>
<path d="M7.225 5.767V3.086L0 9.542l7.225 6.691v-2.777L3 9.542l4.225-3.775zm5 1.186V3.086L5 9.542l7.225 6.691v-4.357c3.292 0 5.291.422 7.775 4.81 0-.001-.368-9.733-7.775-9.733z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-reply'>
<path d="M19 16.685S16.775 6.953 8 6.953V2.969L1 9.542l7 6.69v-4.357c4.763-.001 8.516.421 11 4.81z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-resize-100%'>
<path d="M4.1 14.1L1 17l2 2 2.9-3.1L8 18v-6H2l2.1 2.1zM19 3l-2-2-2.9 3.1L12 2v6h6l-2.1-2.1L19 3z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-resize-full-screen'>
<path d="M6.987 10.987l-2.931 3.031L2 11.589V18h6.387l-2.43-2.081 3.03-2.932-2-2zM11.613 2l2.43 2.081-3.03 2.932 2 2 2.931-3.031L18 8.411V2h-6.387z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-retweet'>
<path d="M5 13V8h2L3.5 4 0 8h2v6a2 2 0 0 0 2 2h9.482l-2.638-3H5zm4.156-6L6.518 4H16c1.104 0 2 .897 2 2v6h2l-3.5 4-3.5-4h2V7H9.156z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-rocket'>
<path d="M11.933 13.069s7.059-5.094 6.276-10.924a.465.465 0 0 0-.112-.268.436.436 0 0 0-.263-.115C12.137.961 7.16 8.184 7.16 8.184c-4.318-.517-4.004.344-5.974 5.076-.377.902.234 1.213.904.959l2.148-.811 2.59 2.648-.793 2.199c-.248.686.055 1.311.938.926 4.624-2.016 5.466-1.694 4.96-6.112zm1.009-5.916a1.594 1.594 0 0 1 0-2.217 1.509 1.509 0 0 1 2.166 0 1.594 1.594 0 0 1 0 2.217 1.509 1.509 0 0 1-2.166 0z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-round-brush'>
<path d="M12.135 9.304c-2.558-1.879-6.7 1.17-7.632 5.284-.718 3.17-4.043 3.04-3.996 3.464.046.424 7.473 1.103 10.156-1.123 2.506-2.08 4.277-5.564 1.472-7.625zm2.203-7.796l-3.363 5.156c1.102.179 3.635 1.885 4.121 3.109l4.396-4.246c-.526-1.503-3.438-3.844-5.154-4.019z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-rss'>
<path d="M2.4 2.4v2.367c7.086 0 12.83 5.746 12.83 12.832h2.369C17.599 9.205 10.794 2.4 2.4 2.4zm0 4.737v2.369a8.093 8.093 0 0 1 8.093 8.094h2.368c0-5.778-4.684-10.463-10.461-10.463zm2.269 5.922a2.271 2.271 0 0 0 0 4.541c1.254 0 2.269-1.016 2.269-2.27s-1.015-2.271-2.269-2.271z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-ruler'>
<path d="M14.249.438L.438 14.251a1.505 1.505 0 0 0 .002 2.124l3.185 3.187a1.506 1.506 0 0 0 2.124.002L19.562 5.751a1.508 1.508 0 0 0 0-2.125L16.376.438a1.51 1.51 0 0 0-2.127 0zM3.929 15.312l-.759.759-1.896-1.897.759-.759 1.896 1.897zm3.036 0l-.759.759-3.415-3.415.759-.76 3.415 3.416zm0-3.036l-.759.759-1.898-1.896.76-.76 1.897 1.897zm1.518-1.518l-.759.759-1.896-1.896.759-.76 1.896 1.897zm3.035 0l-.759.759-3.414-3.414.759-.759 3.414 3.414zm0-3.035l-.759.759-1.896-1.896.759-.759 1.896 1.896zm1.518-1.517l-.759.759-1.897-1.897.759-.759 1.897 1.897zm3.036 0l-.76.759-3.414-3.415.759-.76 3.415 3.416zm-.001-3.035l-.759.759-1.896-1.898.759-.758 1.896 1.897z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-save'>
<path d="M15.173 2H4c-1.101 0-2 .9-2 2v12c0 1.1.899 2 2 2h12c1.101 0 2-.9 2-2V5.127L15.173 2zM14 8c0 .549-.45 1-1 1H7c-.55 0-1-.451-1-1V3h8v5zm-1-4h-2v4h2V4z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-scissors'>
<path d="M8.38 5.59a3.69 3.69 0 1 0-3.69 3.69 3.67 3.67 0 0 0 2.483-.976L9 9.991l.012.009-.004.003-1.836 1.693a3.665 3.665 0 0 0-2.482-.976 3.69 3.69 0 1 0 3.69 3.69c0-.297-.044-.582-.111-.858l2.844-1.991 4.127 3.065c2.212 1.549 3.76-.663 3.76-.663L8.269 6.448c.066-.276.111-.561.111-.858zm-3.69 1.8a1.8 1.8 0 1 1 0-3.6 1.8 1.8 0 0 1 0 3.6zm0 8.82a1.8 1.8 0 1 1 0-3.6 1.8 1.8 0 0 1 0 3.6zM19 6.038s-1.548-2.212-3.76-.663L12.035 7.61l2.354 1.648L19 6.038z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-scribd'>
<path d="M4.643 18.284c0 .224-.072.492-.148.716h5.737c.328-.377.513-.831.513-1.342 0-1.385-1.644-2.154-5.241-3.842l-.506-.236C3.225 12.737 1.912 11.995 1 11.111v4.398a4.07 4.07 0 0 1 .558-.042c3.001.001 3.085 2.789 3.085 2.817zM17 1h-3.738c1.748 1.178 2.467 2.842 2.467 4.142 0 2.194-1.836 2.905-2.727 2.905l-.271.002c-2.046 0-3.09-1.247-3.104-3.707-.121-.096-.688-.453-2.347-.453-1.96 0-2.773 1.543-2.773 2.369 0 .973.543 2.055 4.484 3.382 6.736 2.254 6.736 5.255 6.736 7.903v.026c0 .437-.031.924-.117 1.431H17c1.1 0 2-.899 2-2V3c0-1.1-.9-2-2-2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-select-arrows'>
<path d="M10 1L5 8h10l-5-7zm0 18l5-7H5l5 7z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-share-alternative'>
<path d="M9 13h2V4h2l-3-4-3 4h2v9zm8-6h-3v2h2v9H4V9h2V7H3a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-share'>
<path d="M15 13.442c-.633 0-1.204.246-1.637.642l-5.938-3.463c.046-.188.075-.384.075-.584s-.029-.395-.075-.583L13.3 6.025A2.48 2.48 0 0 0 15 6.7c1.379 0 2.5-1.121 2.5-2.5S16.379 1.7 15 1.7s-2.5 1.121-2.5 2.5c0 .2.029.396.075.583L6.7 8.212A2.485 2.485 0 0 0 5 7.537c-1.379 0-2.5 1.121-2.5 2.5s1.121 2.5 2.5 2.5a2.48 2.48 0 0 0 1.7-.675l5.938 3.463a2.339 2.339 0 0 0-.067.546A2.428 2.428 0 1 0 15 13.442z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-shareable'>
<path d="M6.8 10a3.2 3.2 0 1 0 6.401 0A3.2 3.2 0 0 0 6.8 10zM4.529 8.8a5.6 5.6 0 0 1 9.43-2.76 1.2 1.2 0 1 0 1.697-1.697A8.002 8.002 0 0 0 2.367 7.601H0V10h3.199c.999 0 1.245-.813 1.33-1.2zM16.8 10c-.999 0-1.245.814-1.329 1.199a5.6 5.6 0 0 1-9.43 2.759 1.2 1.2 0 0 0-1.698 1.697A7.972 7.972 0 0 0 10 18a8.005 8.005 0 0 0 7.633-5.6H20V10h-3.2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-shield'>
<path d="M17.604 3.332C12.99 4 12.075 2.833 10 1 7.925 2.833 7.01 4 2.396 3.332-.063 15.58 10 19 10 19s10.063-3.42 7.604-15.668zm-5.131 9.977L10 12.009l-2.472 1.3L8 10.556l-2-1.95 2.764-.401L10 5.7l1.236 2.505L14 8.606l-2 1.949.473 2.754z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-shop'>
<path d="M6.123 7.25L6.914 2H2.8L1.081 6.5C1.028 6.66 1 6.826 1 7c0 1.104 1.15 2 2.571 2 1.31 0 2.393-.764 2.552-1.75zM10 9c1.42 0 2.571-.896 2.571-2 0-.041-.003-.082-.005-.121L12.057 2H7.943l-.51 4.875c-.002.041-.004.082-.004.125 0 1.104 1.151 2 2.571 2zm5 1.046V14H5v-3.948c-.438.158-.92.248-1.429.248-.195 0-.384-.023-.571-.049V16.6c0 .77.629 1.4 1.398 1.4H15.6c.77 0 1.4-.631 1.4-1.4v-6.348a4.297 4.297 0 0 1-.571.049A4.155 4.155 0 0 1 15 10.046zM18.92 6.5L17.199 2h-4.113l.79 5.242C14.03 8.232 15.113 9 16.429 9 17.849 9 19 8.104 19 7c0-.174-.028-.34-.08-.5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-shopping-bag'>
<path d="M18.121 3.271c-.295-.256-1.906-1.731-2.207-1.991-.299-.259-.756-.28-1.102-.28H5.188c-.345 0-.802.021-1.102.28-.301.26-1.912 1.736-2.207 1.991-.297.256-.543.643-.464 1.192.079.551 1.89 13.661 1.937 13.973A.67.67 0 0 0 4 19h12a.67.67 0 0 0 .648-.565c.047-.311 1.858-13.422 1.938-13.973.078-.548-.168-.935-.465-1.191zM10 11.973c-3.248 0-3.943-4.596-4.087-5.543H7.75c.276 1.381.904 3.744 2.25 3.744s1.975-2.363 2.25-3.744h1.838c-.145.947-.84 5.543-4.088 5.543zM3.17 4.006L5 2h10l1.83 2.006H3.17z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-shopping-basket'>
<path d="M18.399 7h-5.007L11.58 8.812a2.384 2.384 0 0 1-1.696.702c-.642 0-1.244-.25-1.698-.703a2.387 2.387 0 0 1-.703-1.695c0-.039.01-.077.011-.116H1.6a.6.6 0 0 0-.6.6V10h18V7.6a.6.6 0 0 0-.601-.6zm-7.631.999l5.055-5.055a.6.6 0 0 0 .002-.849l-.92-.92a.603.603 0 0 0-.85 0L9 6.231a1.25 1.25 0 0 0 1.768 1.768zm-6.945 9.272c.097.401.515.729.927.729h10.5c.412 0 .83-.328.927-.729L17.7 11H2.3l1.523 6.271z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-shopping-cart'>
<path d="M13 17a2 2 0 1 0 3.999.001A2 2 0 0 0 13 17zM3 17a2 2 0 1 0 4 0 2 2 0 0 0-4 0zm3.547-4.828L17.615 9.01A.564.564 0 0 0 18 8.5V3H4V1.4c0-.22-.181-.4-.399-.4H.399A.401.401 0 0 0 0 1.4V3h2l1.91 8.957.09.943v1.649c0 .219.18.4.4.4h13.2c.22 0 .4-.182.4-.4V13H6.752c-1.15 0-1.174-.551-.205-.828z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-shuffle'>
<path d="M15.093 6.694h.92v2.862L20 5.532l-3.988-4.025v2.387h-.92c-3.694 0-5.776 2.738-7.614 5.152-1.652 2.172-3.08 4.049-5.386 4.049H0v2.799h2.093c3.694 0 5.776-2.736 7.614-5.152 1.652-2.173 3.08-4.048 5.386-4.048zM5.41 8.458c.158-.203.316-.412.477-.623a47.33 47.33 0 0 1 1.252-1.596C5.817 5.005 4.224 4.095 2.093 4.095H0v2.799h2.093c1.327 0 2.362.623 3.317 1.564zm10.602 4.836h-.92c-1.407 0-2.487-.701-3.491-1.738l-.303.397c-.441.58-.915 1.201-1.439 1.818 1.356 1.324 3 2.324 5.232 2.324h.92v2.398L20 14.468l-3.988-4.025v2.851z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-signal'>
<path d="M10 14a1.99 1.99 0 0 0-1.981 2c0 1.104.887 2 1.981 2a1.99 1.99 0 0 0 1.98-2c0-1.105-.886-2-1.98-2zm-4.2-2.242l1.4 1.414a3.933 3.933 0 0 1 5.601 0l1.399-1.414a5.898 5.898 0 0 0-8.4 0zM3 8.928l1.4 1.414a7.864 7.864 0 0 1 11.199 0L17 8.928a9.831 9.831 0 0 0-14 0zM.199 6.1l1.4 1.414a11.797 11.797 0 0 1 16.801 0L19.8 6.1a13.763 13.763 0 0 0-19.601 0z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-sina-weibo'>
<path d="M14.688 10.068c-.274-.084-.463-.142-.319-.508.311-.797.344-1.484.007-1.975-.633-.92-2.364-.871-4.348-.025 0-.002-.623.277-.464-.227.306-.997.259-1.833-.216-2.315-1.076-1.098-3.937.041-6.392 2.539C1.117 9.428.05 11.41.05 13.125c0 3.281 4.132 5.475 8.175 5.475 5.299 0 8.825-3.334 8.825-5.822 0-1.505-1.244-2.358-2.362-2.71zm-6.452 7.061c-3.225.32-6.011-1.147-6.22-3.275-.209-2.129 2.236-4.115 5.462-4.438 3.226-.32 6.011 1.146 6.22 3.275.209 2.131-2.236 4.118-5.462 4.438zM19.95 7.397a5.998 5.998 0 0 0-6-5.996.698.698 0 1 0 0 1.398 4.602 4.602 0 0 1 4.601 4.602.699.699 0 1 0 1.399-.001v-.003zm-2.781-.102a4.006 4.006 0 0 0-3.113-3.113.7.7 0 1 0-.281 1.371 2.603 2.603 0 0 1 2.024 2.023.701.701 0 0 0 .826.545.701.701 0 0 0 .544-.826zM6.582 11.502c-1.3.262-2.177 1.352-1.959 2.434.218 1.084 1.447 1.75 2.747 1.488 1.299-.262 2.176-1.352 1.959-2.434-.218-1.082-1.449-1.75-2.747-1.488z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-skype-with-circle'>
<path d="M12.164 9.852a3.477 3.477 0 0 0-.841-.395 11.065 11.065 0 0 0-1.087-.293 16.093 16.093 0 0 1-.679-.172 2.031 2.031 0 0 1-.396-.158.89.89 0 0 1-.293-.229.46.46 0 0 1-.098-.295c0-.188.1-.346.305-.484.212-.143.499-.215.851-.215.38 0 .656.064.821.193.17.133.318.322.44.562.106.188.201.318.294.4.099.09.241.137.423.137.201 0 .37-.072.505-.217a.698.698 0 0 0 .202-.488c0-.188-.053-.383-.154-.576a1.812 1.812 0 0 0-.477-.553 2.486 2.486 0 0 0-.811-.416 3.77 3.77 0 0 0-1.147-.156c-.55 0-1.035.078-1.443.234-.413.158-.734.388-.954.683a1.67 1.67 0 0 0-.334 1.023c0 .4.107.74.318 1.012.207.268.492.482.844.637.346.15.778.283 1.289.396.374.08.678.158.901.23.214.068.391.168.525.297a.632.632 0 0 1 .189.481c0 .252-.119.457-.363.631-.251.176-.584.264-.99.264-.296 0-.535-.043-.714-.131a1.097 1.097 0 0 1-.412-.326 2.564 2.564 0 0 1-.282-.516 1.163 1.163 0 0 0-.289-.434.63.63 0 0 0-.432-.154.716.716 0 0 0-.514.195.648.648 0 0 0-.205.479c0 .295.106.604.315.912.207.309.479.557.81.74.462.252 1.054.379 1.76.379.588 0 1.104-.094 1.536-.277.435-.186.771-.449.998-.779a1.96 1.96 0 0 0 .344-1.129c0-.348-.067-.648-.2-.891a1.716 1.716 0 0 0-.555-.601zM10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zm2.301 14.975c-.487 0-.946-.125-1.348-.348a4.68 4.68 0 0 1-.9.086c-2.713 0-4.914-2.266-4.914-5.057 0-.35.035-.69.1-1.018a2.967 2.967 0 0 1-.392-1.481c0-1.619 1.276-2.934 2.851-2.934.557 0 1.076.166 1.516.451.272-.049.554-.074.839-.074 2.715 0 4.915 2.264 4.915 5.057 0 .371-.039.734-.113 1.084.189.393.296.834.296 1.303-.001 1.618-1.276 2.931-2.85 2.931z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-skype'>
<path d="M18.671 12.037a9.347 9.347 0 0 0 .203-1.938c0-4.986-3.93-9.029-8.777-9.029-.511 0-1.012.047-1.5.133A4.962 4.962 0 0 0 5.89.4C3.079.4.8 2.744.8 5.637c0 .965.256 1.871.699 2.648a9.348 9.348 0 0 0-.178 1.815c0 4.986 3.93 9.029 8.775 9.029.551 0 1.087-.051 1.607-.15a4.956 4.956 0 0 0 2.406.621c2.811 0 5.09-2.344 5.09-5.236a5.328 5.328 0 0 0-.528-2.327zm-4.072 2.379c-.406.59-1.006 1.059-1.783 1.391-.769.33-1.692.496-2.742.496-1.26 0-2.317-.227-3.143-.678a4.161 4.161 0 0 1-1.445-1.318c-.372-.555-.561-1.104-.561-1.633 0-.33.123-.617.365-.852.24-.232.549-.352.916-.352.301 0 .562.094.773.277.202.176.375.438.514.773.156.367.326.676.505.92.172.234.42.432.735.586.318.154.748.232 1.275.232.725 0 1.32-.158 1.768-.473.438-.309.65-.676.65-1.127 0-.357-.111-.637-.34-.857a2.409 2.409 0 0 0-.936-.531 18.034 18.034 0 0 0-1.611-.41c-.91-.201-1.683-.439-2.299-.707-.63-.275-1.137-.658-1.508-1.137-.375-.483-.567-1.092-.567-1.807 0-.682.2-1.297.596-1.828.393-.525.965-.935 1.703-1.217.728-.277 1.596-.418 2.576-.418.783 0 1.473.094 2.047.277.578.186 1.066.436 1.449.744.387.311.674.643.854.986.182.35.275.695.275 1.031 0 .322-.121.615-.361.871-.24.258-.543.387-.9.387-.324 0-.58-.082-.756-.242-.164-.148-.336-.383-.524-.717-.219-.428-.484-.766-.788-1.002-.295-.232-.788-.35-1.466-.35-.629 0-1.141.131-1.519.387-.368.249-.545.532-.545.866 0 .207.058.379.176.525.125.158.301.295.523.41.23.12.467.214.705.282.244.07.654.172 1.215.307.711.156 1.363.332 1.939.521a6.22 6.22 0 0 1 1.502.705c.42.283.754.645.989 1.076.237.434.357.969.357 1.59a3.49 3.49 0 0 1-.613 2.016z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-slideshare'>
<path d="M13 7.08a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm5.845-1.137C15.265 8.498 13.616 8.051 12 8c-1.118-.057-1.5.298-1.5 1.08l.001 6c0 5 8.421 3.43 5.165-4.949 1.671-.959 3.076-2.434 3.876-3.412.411-.608-.028-1.245-.697-.776zM7 2.08a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5zM8 8c-1.616.051-3.265.498-6.845-2.057-.669-.469-1.108.168-.697.775.8.979 2.205 2.453 3.876 3.412-3.256 8.379 5.165 9.949 5.165 4.949l.001-6C9.5 8.298 9.118 7.943 8 8z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-smashing'>
<path d="M10.023 16.032c-2.508 0-4.253-1.555-4.253-1.555L4.287 17.84c1.023.547 2.092.936 2.709 1.141l-1.592.381a1.391 1.391 0 0 1-1.675-1.029L.639 5.405a1.39 1.39 0 0 1 1.028-1.676l3.716-.889c-.91 1.029-1.263 2.252-1.174 3.65.139 2.193 2.237 3.879 4.734 4.822 4.701 1.776 3.586 4.72 1.08 4.72zm9.338-1.438L16.27 1.666A1.388 1.388 0 0 0 14.595.639l-2.663.637c.679.105 2.024.4 3.505 1.178l-1.159 3.213s-.965-1.078-3.553-1.209c-2.46-.125-3.828 2.537.969 4.105 3.674 1.201 4.848 3.516 4.787 5.658a5.123 5.123 0 0 1-.872 2.701l2.725-.652a1.39 1.39 0 0 0 1.027-1.676z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-sound-mix'>
<path d="M5 1.6c0-.553-.448-.6-1-.6-.553 0-1 .047-1 .6V10h2V1.6zM3 18.4c0 .551.447.6 1 .6.552 0 1-.049 1-.6V15H3v3.4zM6.399 11h-4.8C1.046 11 1 11.448 1 12v1c0 .553.046 1 .599 1H6.4c.55 0 .6-.447.6-1v-1c0-.552-.05-1-.601-1zm12 1h-4.801c-.552 0-.598.448-.598 1v1c0 .553.046 1 .599 1H18.4c.55 0 .6-.447.6-1v-1c0-.552-.05-1-.601-1zM13 7c0-.552-.05-1-.601-1h-4.8C7.046 6 7 6.448 7 7v1c0 .553.046 1 .599 1H12.4c.55 0 .6-.447.6-1V7zm-2-5.4c0-.553-.448-.6-1-.6-.553 0-1 .047-1 .6V5h2V1.6zM9 18.4c0 .551.447.6 1 .6.552 0 1-.049 1-.6V10H9v8.4zm8-16.8c0-.553-.448-.6-1-.6-.553 0-1 .047-1 .6V11h2V1.6zm-2 16.8c0 .551.447.6 1 .6.552 0 1-.049 1-.6V16h-2v2.4z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-sound-mute'>
<path d="M14.201 9.194c1.389 1.883 1.818 3.517 1.559 3.777-.26.258-1.893-.17-3.778-1.559l-5.526 5.527c4.186 1.838 9.627-2.018 10.605-2.996.925-.922.097-3.309-1.856-5.754l-1.004 1.005zM8.667 7.941c-1.099-1.658-1.431-3.023-1.194-3.26.233-.234 1.6.096 3.257 1.197l1.023-1.025C9.489 3.179 7.358 2.519 6.496 3.384c-.928.926-4.448 5.877-3.231 9.957l5.402-5.4zm9.854-6.463a.999.999 0 0 0-1.414 0L1.478 17.108a.999.999 0 1 0 1.414 1.414l15.629-15.63a.999.999 0 0 0 0-1.414z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-sound'>
<path d="M5.312 4.566C4.19 5.685-.715 12.681 3.523 16.918c4.236 4.238 11.23-.668 12.354-1.789 1.121-1.119-.335-4.395-3.252-7.312-2.919-2.919-6.191-4.376-7.313-3.251zm9.264 9.59c-.332.328-2.895-.457-5.364-2.928-2.467-2.469-3.256-5.033-2.924-5.363.328-.332 2.894.457 5.36 2.926 2.471 2.467 3.258 5.033 2.928 5.365zm.858-8.174l1.904-1.906a.999.999 0 1 0-1.414-1.414L14.02 4.568a.999.999 0 1 0 1.414 1.414zM11.124 3.8a1 1 0 0 0 1.36-.388l1.087-1.926a1 1 0 0 0-1.748-.972L10.736 2.44a1 1 0 0 0 .388 1.36zm8.748 3.016a.999.999 0 0 0-1.36-.388l-1.94 1.061a1 1 0 1 0 .972 1.748l1.94-1.061a1 1 0 0 0 .388-1.36z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-soundcloud'>
<path d="M.672 13.055L1 11.654l-.328-1.447c-.009-.043-.092-.076-.191-.076-.102 0-.184.033-.191.076L0 11.654l.289 1.4c.008.045.09.076.191.076.1.001.183-.03.192-.075zm2.051.777L3 11.668 2.723 8.32c-.009-.084-.114-.152-.239-.152-.127 0-.233.068-.238.152L2 11.668l.246 2.164c.006.086.111.152.238.152.125 0 .23-.066.239-.152zm2.045-.035L5 11.67l-.232-4.457c-.006-.106-.129-.188-.282-.188-.152 0-.275.082-.281.188L4 11.67l.205 2.129c.006.103.129.186.281.186.153-.001.276-.083.282-.188zm2.042-.031L7 11.67l-.19-4.49c-.005-.123-.146-.221-.32-.221-.176 0-.316.098-.321.221L6 11.67l.17 2.096c.004.123.145.221.32.221.174-.001.315-.096.32-.221zm2.04-.028L9 11.672l-.15-5.149c-.004-.142-.164-.255-.358-.255-.194 0-.354.115-.357.256L8 11.67l.135 2.068c.003.141.163.256.357.256.194 0 .354-.113.358-.256zm1.427.258l7.145.004C18.846 14 20 12.883 20 11.506c0-1.377-1.154-2.492-2.578-2.492-.353 0-.689.07-.996.193-.205-2.246-2.153-4.008-4.529-4.008a4.77 4.77 0 0 0-1.648.297c-.196.074-.247.148-.249.295v7.91a.306.306 0 0 0 .277.295z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-sports-club'>
<path d="M6 13.5l4 2.5 4-2.5V5H6v8.5zM4.5 10a2 2 0 1 0-4 0 2 2 0 0 0 4 0zm13-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4zM4.485 6.199A6.71 6.71 0 0 1 10 3.3a6.715 6.715 0 0 1 5.456 2.823 1.4 1.4 0 0 0 2.281-1.624A9.518 9.518 0 0 0 10 .5a9.506 9.506 0 0 0-7.817 4.107 1.402 1.402 0 0 0 .355 1.948 1.401 1.401 0 0 0 1.947-.356zm10.971 7.678A6.713 6.713 0 0 1 10 16.7a6.71 6.71 0 0 1-5.515-2.899 1.4 1.4 0 0 0-2.302 1.592A9.506 9.506 0 0 0 10 19.5a9.518 9.518 0 0 0 7.737-3.999 1.401 1.401 0 0 0-2.281-1.624z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-spotify-with-circle'>
<path d="M10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zm2.964 13.437c-.148 0-.25-.056-.359-.122-1.013-.613-2.268-.935-3.628-.935-.694 0-1.443.082-2.226.242l-.095.024c-.1.024-.201.05-.279.05a.554.554 0 0 1-.562-.559c0-.318.18-.543.479-.6a11.968 11.968 0 0 1 2.687-.316c1.58 0 2.994.365 4.201 1.09.208.121.338.26.338.569a.557.557 0 0 1-.556.557zm.778-2.183c-.177 0-.292-.067-.395-.127-1.825-1.084-4.547-1.443-6.785-.847a7.61 7.61 0 0 0-.102.031c-.084.027-.164.053-.274.053a.67.67 0 0 1-.667-.672c0-.357.186-.607.524-.702a9.95 9.95 0 0 1 2.84-.393c1.886 0 3.714.473 5.146 1.33.261.148.379.353.379.658 0 .37-.299.669-.666.669zm.883-2.488a.774.774 0 0 1-.421-.123c-1.239-.744-3.171-1.186-5.174-1.186-1.043 0-1.99.115-2.817.338a1.295 1.295 0 0 0-.083.024 1.11 1.11 0 0 1-.312.058.78.78 0 0 1-.783-.792c0-.386.217-.681.579-.788.998-.295 2.148-.443 3.415-.443 2.281 0 4.453.506 5.957 1.391.284.16.423.404.423.742a.774.774 0 0 1-.784.779z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-spotify'>
<path d="M10 1.2A8.798 8.798 0 0 0 1.2 10 8.8 8.8 0 1 0 10 1.2zm3.478 13.302c-.173 0-.294-.066-.421-.143-1.189-.721-2.662-1.099-4.258-1.099-.814 0-1.693.097-2.61.285l-.112.028c-.116.028-.235.059-.326.059a.651.651 0 0 1-.661-.656c0-.373.21-.637.562-.703a14.037 14.037 0 0 1 3.152-.372c1.855 0 3.513.43 4.931 1.279.243.142.396.306.396.668a.655.655 0 0 1-.653.654zm.913-2.561c-.207 0-.343-.079-.463-.149-2.143-1.271-5.333-1.693-7.961-.993a3.742 3.742 0 0 0-.12.037c-.099.031-.191.062-.321.062a.786.786 0 0 1-.783-.788c0-.419.219-.712.614-.824 1.013-.278 1.964-.462 3.333-.462 2.212 0 4.357.555 6.038 1.561.306.175.445.414.445.771a.784.784 0 0 1-.782.785zm1.036-2.92c-.195 0-.315-.047-.495-.144-1.453-.872-3.72-1.391-6.069-1.391-1.224 0-2.336.135-3.306.397a2.072 2.072 0 0 0-.098.027 1.281 1.281 0 0 1-.365.068.914.914 0 0 1-.919-.929c0-.453.254-.799.68-.925 1.171-.346 2.519-.521 4.006-.521 2.678 0 5.226.595 6.991 1.631.332.189.495.475.495.872a.908.908 0 0 1-.92.915z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-spreadsheet'>
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 1H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1zm-1 7H9v9H8V8H5V7h3V3h1v4h6v1z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-squared-cross'>
<path d="M16 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2.939 12.789L10 11.729l-3.061 3.06-1.729-1.728L8.271 10l-3.06-3.061L6.94 5.21 10 8.271l3.059-3.061 1.729 1.729L11.729 10l3.06 3.061-1.728 1.728z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-squared-minus'>
<path d="M16 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9H5V9h10v2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-squared-plus'>
<path d="M16 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9h-4v4H9v-4H5V9h4V5h2v4h4v2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-star-outlined'>
<path d="M18.8 8.022h-6.413L10 1.3 7.611 8.022H1.199l5.232 3.947-1.871 6.929L10 14.744l5.438 4.154-1.869-6.929L18.8 8.022zM10 12.783l-3.014 2.5 1.243-3.562-2.851-2.3 3.522.101 1.1-4.04 1.099 4.04 3.521-.101-2.851 2.3 1.243 3.562-3.012-2.5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-star'>
<path d="M10 1.3l2.388 6.722H18.8l-5.232 3.948 1.871 6.928L10 14.744l-5.438 4.154 1.87-6.928-5.233-3.948h6.412L10 1.3z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-stopwatch'>
<path d="M7.376 6.745c-.447.275 1.197 4.242 1.598 4.888a1.206 1.206 0 0 0 2.053-1.266c-.397-.648-3.205-3.898-3.651-3.622zm-.335-4.343a8.98 8.98 0 0 1 5.918 0c.329.114.765-.115.572-.611-.141-.36-.277-.712-.332-.855-.131-.339-.6-.619-.804-.665C11.623.097 10.823 0 10 0S8.377.097 7.604.271c-.204.046-.672.326-.803.665l-.332.855c-.193.496.243.726.572.611zm12.057.784a10.132 10.132 0 0 0-1.283-1.285c-.153-.129-.603-.234-.888.051l-1.648 1.647a9.27 9.27 0 0 1 1.155.966c.362.361.677.752.966 1.155l1.647-1.647c.286-.286.181-.735.051-.887zM10 2.9A8.1 8.1 0 0 0 1.899 11 8.1 8.1 0 0 0 10 19.101 8.1 8.1 0 0 0 10 2.9zm0 14.201A6.1 6.1 0 1 1 10.001 4.9 6.1 6.1 0 0 1 10 17.1z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-stumbleupon-with-circle'>
<path d="M10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zm0 7.385a.53.53 0 0 0-.531.529v3.168a2.262 2.262 0 0 1-4.522 0v-1.326h1.729v1.326a.53.53 0 0 0 .531.529.53.53 0 0 0 .531-.529V8.314a2.262 2.262 0 0 1 4.523.001v.603l-1.04.334-.69-.334v-.604A.53.53 0 0 0 10 7.785zm5.053 3.697a2.262 2.262 0 0 1-4.523 0v-1.354l.69.334 1.04-.334v1.354a.53.53 0 0 0 1.061 0v-1.326h1.731v1.326z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-stumbleupon'>
<path d="M11.051 8.059l1.365.66 2.059-.66V6.865C14.475 4.402 12.467 2.4 10 2.4S5.525 4.402 5.525 6.865v6.27a1.052 1.052 0 0 1-2.102 0V10.51H0v2.625a4.475 4.475 0 0 0 8.949 0v-6.27a1.052 1.052 0 0 1 2.103 0v1.194zm5.525 2.451v2.625a1.051 1.051 0 0 1-2.102 0v-2.678l-2.059.658-1.365-.658v2.678a4.476 4.476 0 0 0 8.95 0V10.51h-3.424z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-suitcase'>
<path d="M18 4h-1v15h1c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM0 6v11c0 1.1.899 2 2 2h1V4H2C.899 4 0 4.9 0 6zm13.5-4.094C12.819 1.59 11.611 1 9.981 1c-1.633 0-2.8.59-3.481.906V4H4v15h12V4h-2.5V1.906zM12 4H8V2.664c.534-.23 1.078-.465 1.981-.465.902 0 1.486.234 2.019.465V4z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-swap'>
<path d="M14 5H4V3L0 6.5 4 10V8h10V5zm6 8.5L16 10v2H6v3h10v2l4-3.5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-swarm'>
<path d="M10.286 18.821a23.855 23.855 0 0 1-3.677-.923 58.46 58.46 0 0 1-1.007-.37.558.558 0 0 1-.317-.71c.086-.225.379-.949.399-.994.4-.92 1-2.153 1.795-3.379a9.16 9.16 0 0 0 2.807 6.376zm-.113-11.794C7.382 1.338 1.183 1.541.205 4.084c-.751 1.952 2.535 6.602 10.097 3.244l.004-.002a4.237 4.237 0 0 1-.133-.299zm1.387-.222l.002-.001c4.271-1.897 3.674-5.191 2.569-5.614-1.487-.569-4.19 1.624-2.647 5.447.015.027.066.14.076.168zm7.853 4.165A5.567 5.567 0 0 0 16.2 7.986a1.243 1.243 0 0 0-.423-.073c-.717 0-1.407.595-1.472 1.338-.109 1.239.137 2.501.68 3.718.535 1.199 1.294 2.213 2.27 2.957.254.194.565.285.875.285.559 0 1.117-.296 1.339-.826a5.542 5.542 0 0 0-.056-4.415zm-3.241 6.369c-1.195-.912-2.142-2.139-2.815-3.646-.682-1.529-.961-3.075-.827-4.596.037-.423.161-.831.36-1.204l-.114.028a5.86 5.86 0 0 0-1.778.784c-.784.514-1.475 1.277-1.772 2.177-.08.243-.141.51-.161.765a7.54 7.54 0 0 0 .636 3.67 7.562 7.562 0 0 0 2.213 2.853c.566.447 1.586.73 2.42.73.783 0 1.556-.233 2.25-.585.217-.11.695-.408.726-.429a3.17 3.17 0 0 1-1.138-.547z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-sweden'>
<path d="M18 4H9v5h10V5a1 1 0 0 0-1-1zM1 15c0 .553.248 1 .8 1H7v-5H1v4zm8 1h9a1 1 0 0 0 1-1v-4H9v5zM1 5v4h6V4H1.8c-.552 0-.8.447-.8 1z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-switch'>
<path d="M13 3H7a7 7 0 1 0 0 14h6a7 7 0 1 0 0-14zm0 12a5 5 0 1 1 .001-10.001A5 5 0 0 1 13 15z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-tablet-mobile-combo'>
<path d="M17.004 5h-5.008A1.996 1.996 0 0 0 10 6.996v11.008c0 1.102.894 1.996 1.996 1.996h5.008A1.996 1.996 0 0 0 19 18.004V6.996A1.996 1.996 0 0 0 17.004 5zM14.5 19c-.69 0-1.25-.447-1.25-1 0-.553.56-1 1.25-1s1.25.447 1.25 1c0 .553-.56 1-1.25 1zm2.5-3h-5V7h5v9zm-9 0H3V2h12v1h2V2c0-1.101-.9-2-2-2H3C1.9 0 1 .899 1 2v16c0 1.1.9 2 2 2h5.555A3.95 3.95 0 0 1 8 18.003V16z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-tablet'>
<path d="M16 0H4C2.9 0 2 .899 2 2v16c0 1.1.9 2 2 2h12c1.101 0 2-.9 2-2V2c0-1.101-.899-2-2-2zm-6 19c-.69 0-1.25-.447-1.25-1s.56-1 1.25-1c.689 0 1.25.447 1.25 1s-.561 1-1.25 1zm6-3H4V2h12v14z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-tag'>
<path d="M18.662 5.521L5.237 19l.707-4.967-4.945.709L14.424 1.263c.391-.392 1.133-.308 1.412 0l2.826 2.839c.5.473.391 1.026 0 1.419z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-text-document-inverted'>
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 1H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1zm-3 14H7v-2h6v2zm0-4H7V9h6v2zm0-4H7V5h6v2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-text-document'>
<path d="M16 1H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1zm-1 16H5V3h10v14zM13 5H7v2h6V5zm0 8H7v2h6v-2zm0-4H7v2h6V9z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-text'>
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.5 11h-11c-.275 0-.5.225-.5.5v1a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm0-4h-11c-.275 0-.5.225-.5.5v1a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm-5 8h-6c-.275 0-.5.225-.5.5v1a.5.5 0 0 0 .5.5h6a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm5-12h-11c-.275 0-.5.225-.5.5v1a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-thermometer'>
<path d="M13 10.123V1a1 1 0 0 0-1-1H7.799C7.247 0 7 .447 7 1v9.123A5.383 5.383 0 0 0 4.6 14.6a5.4 5.4 0 0 0 10.8 0 5.383 5.383 0 0 0-2.4-4.477zM10 17.9a3.3 3.3 0 0 1-3.3-3.3A3.29 3.29 0 0 1 9 11.471V4h2v7.471a3.29 3.29 0 0 1 2.3 3.129 3.3 3.3 0 0 1-3.3 3.3z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-thumbs-down'>
<path d="M6.352 12.638c.133.356-3.539 3.634-1.397 6.291.501.621 2.201-2.975 4.615-4.602 1.331-.899 4.43-2.811 4.43-3.868V3.617C14 2.346 9.086 1 5.352 1 3.983 1 2 9.576 2 10.939c0 1.367 4.221 1.343 4.352 1.699zM15 12.543c.658 0 3-.4 3-3.123V4.572c0-2.721-2.342-3.021-3-3.021-.657 0 1 .572 1 2.26v6.373c0 1.768-1.657 2.359-1 2.359z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-thumbs-up'>
<path d="M13.648 7.362c-.133-.355 3.539-3.634 1.398-6.291-.501-.621-2.201 2.975-4.615 4.603C9.099 6.572 6 8.484 6 9.541v6.842C6 17.654 10.914 19 14.648 19 16.017 19 18 10.424 18 9.062c0-1.368-4.221-1.344-4.352-1.7zM5 7.457c-.658 0-3 .4-3 3.123v4.848c0 2.721 2.342 3.021 3 3.021.657 0-1-.572-1-2.26V9.816c0-1.768 1.657-2.359 1-2.359z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-thunder-cloud'>
<path d="M15.213 6.641c-.276 0-.546.023-.809.066C13.748 4.562 11.715 3 9.309 3c-2.939 0-5.32 2.328-5.32 5.199 0 .258.02.51.057.756a3.815 3.815 0 0 0-.429-.027C1.619 8.928 0 10.512 0 12.463 0 14.416 1.619 16 3.617 16h11.596C17.856 16 20 13.904 20 11.32c0-2.586-2.144-4.679-4.787-4.679zm-3.842 4.31c-.494.703-2.614 2.889-2.704 2.98-.104.129-.391.344-.663.166-.079-.051-.172-.152-.172-.354 0-.193.088-.391.098-.412l1.033-2.287c-.193-.078-.527-.211-.785-.324l-.068-.029c-.262-.111-.588-.25-.588-.607 0-.172.081-.373.249-.609.495-.705 2.614-2.889 2.705-2.982.103-.127.39-.342.663-.166.078.051.171.154.171.354 0 .193-.088.391-.098.414L10.178 9.38c.195.078.528.213.787.324l.068.029c.262.111.588.25.588.609 0 .172-.082.371-.25.609z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-ticket'>
<path d="M4.906 11.541l3.551 3.553 6.518-6.518-3.553-3.551-6.516 6.516zm14.198-4.877l-1.511-1.512a2.024 2.024 0 0 1-2.747-2.746L13.335.894a1.017 1.017 0 0 0-1.432 0L.893 11.904a1.017 1.017 0 0 0 0 1.432l1.512 1.51a2.024 2.024 0 0 1 2.747 2.748l1.512 1.51a1.015 1.015 0 0 0 1.432 0L19.104 8.096a1.015 1.015 0 0 0 0-1.432zM8.457 16.719l-5.176-5.178L11.423 3.4l5.176 5.176-8.142 8.143z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-time-slot'>
<path d="M10 .4A9.6 9.6 0 0 0 .4 10a9.6 9.6 0 1 0 19.2-.001C19.6 4.698 15.301.4 10 .4zm0 17.199a7.6 7.6 0 1 1 0-15.2V10l6.792-3.396A7.548 7.548 0 0 1 17.6 10a7.6 7.6 0 0 1-7.6 7.599z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-tools'>
<path d="M3.135 6.89c.933-.725 1.707-.225 2.74.971.116.135.272-.023.361-.1.088-.078 1.451-1.305 1.518-1.361.066-.059.146-.169.041-.292a36.238 36.238 0 0 1-.743-.951c-1.808-2.365 4.946-3.969 3.909-3.994-.528-.014-2.646-.039-2.963-.004-1.283.135-2.894 1.334-3.705 1.893-1.061.726-1.457 1.152-1.522 1.211-.3.262-.048.867-.592 1.344-.575.503-.934.122-1.267.414-.165.146-.627.492-.759.607-.133.117-.157.314-.021.471 0 0 1.264 1.396 1.37 1.52.105.122.391.228.567.071.177-.156.632-.553.708-.623.078-.066-.05-.861.358-1.177zm5.708.517c-.12-.139-.269-.143-.397-.029L7.012 8.63a.289.289 0 0 0-.027.4l8.294 9.439c.194.223.53.246.751.053l.97-.813a.54.54 0 0 0 .052-.758L8.843 7.407zM19.902 3.39c-.074-.494-.33-.391-.463-.182-.133.211-.721 1.102-.963 1.506-.24.4-.832 1.191-1.934.41-1.148-.811-.749-1.377-.549-1.758.201-.383.818-1.457.907-1.59.089-.135-.015-.527-.371-.363-.357.164-2.523 1.025-2.823 2.26-.307 1.256.257 2.379-.85 3.494l-1.343 1.4 1.349 1.566 1.654-1.57c.394-.396 1.236-.781 1.998-.607 1.633.369 2.524-.244 3.061-1.258.482-.906.402-2.814.327-3.308zM2.739 17.053a.538.538 0 0 0 0 .758l.951.93c.208.209.538.121.746-.088l4.907-4.824-1.503-1.714-5.101 4.938z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-traffic-cone'>
<path d="M10 12.078c2.39 0 4.392-.812 4.513-1.873l-1.125-3.152c-.264.761-1.725 1.301-3.388 1.301s-3.124-.54-3.388-1.301l-1.124 3.152c.121 1.061 2.122 1.873 4.512 1.873zm0-6.705c1.124 0 2.167-.348 2.473-.889-.421-1.182-.782-2.197-1.011-2.836C11.31 1.221 10.621 1 10 1s-1.31.221-1.462.648L7.527 4.484c.306.541 1.35.889 2.473.889zm8.78 7.693l-3.755-1.514.433 1.207c-.022 1.279-2.504 2.299-5.458 2.299-2.953 0-5.437-1.019-5.458-2.299l.433-1.207-3.755 1.514c-1.053.424-1.098 1.209-.098 1.744l7.062 3.787c.998.535 2.633.535 3.632 0l7.063-3.787c.999-.535.954-1.32-.099-1.744z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-trash'>
<path d="M3.389 7.113L4.49 18.021c.061.461 2.287 1.977 5.51 1.979 3.225-.002 5.451-1.518 5.511-1.979l1.102-10.908C14.929 8.055 12.412 8.5 10 8.5c-2.41 0-4.928-.445-6.611-1.387zm9.779-5.603l-.859-.951C11.977.086 11.617 0 10.916 0H9.085c-.7 0-1.061.086-1.392.559l-.859.951C4.264 1.959 2.4 3.15 2.4 4.029v.17C2.4 5.746 5.803 7 10 7c4.198 0 7.601-1.254 7.601-2.801v-.17c0-.879-1.863-2.07-4.433-2.519zM12.07 4.34L11 3H9L7.932 4.34h-1.7s1.862-2.221 2.111-2.522c.19-.23.384-.318.636-.318h2.043c.253 0 .447.088.637.318.248.301 2.111 2.522 2.111 2.522h-1.7z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-tree'>
<path d="M20 10c0-1.361-.758-2.616-2.031-3.622-.002-.001-.004-.001-.005-.003C17.602 2.803 14.177 0 10 0S2.398 2.803 2.036 6.375c-.001.002-.003.002-.005.003C.758 7.384 0 8.639 0 10c0 3.112 3.947 5.669 9 5.97V17c0 1-1.821 1.911-1.821 1.911a.227.227 0 0 0-.109.277S7.375 20 8 20s1.124-.5 2.374-.5 2.439.432 2.439.432a.342.342 0 0 0 .329-.073l.717-.717c.078-.078.058-.173-.046-.212 0 0-1.812-.68-1.812-1.93v-1.121C16.565 15.324 20 12.903 20 10zM2 10c0-1.019.768-1.945 2.022-2.651C4.012 7.233 4 7.117 4 7c0-2.762 2.687-5 6-5s6 2.238 6 5c0 .117-.012.233-.021.349C17.232 8.055 18 8.981 18 10c0 1.864-2.551 3.424-5.999 3.869v-.668a.53.53 0 0 1 .145-.337l1.833-1.726a.534.534 0 0 0 .146-.337V9.95c0-.11-.078-.155-.172-.099l-1.779 1.047c-.096.056-.173.012-.173-.099V7.2c0-.11-.085-.172-.19-.137l-2.621.874a.297.297 0 0 0-.189.263v2.6c0 .11-.079.158-.177.107L6.802 9.843a.289.289 0 0 0-.318.048l-.342.342a.185.185 0 0 0 .009.273l2.7 2.361c.083.073.15.222.15.332v.765C5.056 13.719 2 12.04 2 10z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-triangle-down'>
<path d="M5 6h10l-5 9-5-9z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-triangle-left'>
<path d="M14 5v10l-9-5 9-5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-triangle-right'>
<path d="M15 10l-9 5V5l9 5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-triangle-up'>
<path d="M15 14H5l5-9 5 9z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-tripadvisor'>
<path d="M20 6.009h-2.829C15.211 4.675 12.813 4 10 4s-5.212.675-7.171 2.009H0c.428.42.827 1.34.993 2.04A4.954 4.954 0 0 0 0 11.008c0 2.757 2.243 5 5 5a4.97 4.97 0 0 0 3.423-1.375L10 17l1.577-2.366A4.97 4.97 0 0 0 15 16.01c2.757 0 5-2.243 5-5 0-1.112-.377-2.13-.993-2.96.166-.7.565-1.62.993-2.04zm-15 8.4c-1.875 0-3.4-1.525-3.4-3.4s1.525-3.4 3.4-3.4 3.4 1.525 3.4 3.4-1.525 3.4-3.4 3.4zm5-3.4a5.008 5.008 0 0 0-4.009-4.9C7.195 5.704 8.53 5.5 10 5.5s2.805.204 4.009.61A5.008 5.008 0 0 0 10 11.008zm5 3.4c-1.875 0-3.4-1.525-3.4-3.4s1.525-3.4 3.4-3.4 3.4 1.525 3.4 3.4-1.525 3.4-3.4 3.4zM5 8.86c-1.185 0-2.15.964-2.15 2.15s.965 2.15 2.15 2.15 2.15-.964 2.15-2.15-.965-2.15-2.15-2.15zm0 2.791a.65.65 0 1 1 0-1.3.65.65 0 0 1 0 1.3zm10-2.791c-1.185 0-2.15.964-2.15 2.15s.965 2.15 2.15 2.15 2.15-.964 2.15-2.15-.965-2.15-2.15-2.15zm0 2.791a.65.65 0 1 1 0-1.3.65.65 0 0 1 0 1.3z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-trophy'>
<path d="M11.18 14.356c0-1.451 1.1-2.254 2.894-3.442C16.268 9.458 19 7.649 19 3.354a.703.703 0 0 0-.709-.699h-3.43C14.377 1.759 12.932.8 10 .8c-2.934 0-4.377.959-4.862 1.855H1.707A.703.703 0 0 0 1 3.354c0 4.295 2.73 6.104 4.926 7.559 1.794 1.188 2.894 1.991 2.894 3.442v1.311c-1.884.209-3.269.906-3.269 1.736 0 .994 1.992 1.799 4.449 1.799s4.449-.805 4.449-1.799c0-.83-1.385-1.527-3.269-1.736v-1.31zM13.957 9.3c.566-1.199 1.016-2.826 1.088-5.246h2.51c-.24 2.701-1.862 4.064-3.598 5.246zM10 2.026c2.732-.002 3.799 1.115 3.798 1.529 0 .418-1.066 1.533-3.798 1.535-2.732-.001-3.799-1.116-3.799-1.534C6.2 3.142 7.268 2.024 10 2.026zM2.445 4.054h2.509c.073 2.42.521 4.047 1.089 5.246-1.736-1.182-3.359-2.545-3.598-5.246z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-tumblr-with-circle'>
<path d="M10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zm2.577 13.741a5.508 5.508 0 0 1-1.066.395 4.543 4.543 0 0 1-1.031.113c-.42 0-.791-.055-1.114-.162a2.373 2.373 0 0 1-.826-.459 1.651 1.651 0 0 1-.474-.633c-.088-.225-.132-.549-.132-.973V9.16H6.918V7.846c.359-.119.67-.289.927-.512.257-.221.464-.486.619-.797.156-.31.263-.707.322-1.185h1.307v2.35h2.18V9.16h-2.18v2.385c0 .539.028.885.085 1.037a.7.7 0 0 0 .315.367c.204.123.437.185.697.185.466 0 .928-.154 1.388-.461v1.468z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-tumblr'>
<path d="M15.6 18.196c-.777.371-1.48.631-2.109.781a8.92 8.92 0 0 1-2.043.223c-.831 0-1.566-.107-2.205-.318a4.757 4.757 0 0 1-1.635-.908c-.451-.395-.764-.812-.938-1.254-.174-.443-.261-1.086-.261-1.926V8.339H4.4V5.735c.714-.234 1.326-.57 1.835-1.01a5.04 5.04 0 0 0 1.227-1.58c.308-.613.519-1.396.636-2.345h2.585v4.652h4.314v2.887h-4.314v4.719c0 1.066.056 1.752.168 2.055.111.303.319.545.622.725.403.244.863.367 1.381.367.92 0 1.836-.303 2.746-.908v2.899z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-tv'>
<path d="M18 1H2C.899 1 0 1.9 0 3v11c0 1.1.882 2.178 1.961 2.393l4.372.875S2.57 19 5 19h10c2.43 0-1.334-1.732-1.334-1.732l4.373-.875C19.117 16.178 20 15.1 20 14V3c0-1.1-.9-2-2-2zm0 13H2V3h16v11z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-twitter-with-circle'>
<path d="M10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zm3.905 7.864c.004.082.005.164.005.244 0 2.5-1.901 5.381-5.379 5.381a5.335 5.335 0 0 1-2.898-.85c.147.018.298.025.451.025.886 0 1.701-.301 2.348-.809a1.895 1.895 0 0 1-1.766-1.312 1.9 1.9 0 0 0 .853-.033 1.892 1.892 0 0 1-1.517-1.854v-.023c.255.141.547.227.857.237a1.89 1.89 0 0 1-.585-2.526 5.376 5.376 0 0 0 3.897 1.977 1.891 1.891 0 0 1 3.222-1.725 3.797 3.797 0 0 0 1.2-.459 1.9 1.9 0 0 1-.831 1.047 3.799 3.799 0 0 0 1.086-.299 3.834 3.834 0 0 1-.943.979z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-twitter'>
<path d="M17.316 6.246c.008.162.011.326.011.488 0 4.99-3.797 10.742-10.74 10.742-2.133 0-4.116-.625-5.787-1.697a7.577 7.577 0 0 0 5.588-1.562 3.779 3.779 0 0 1-3.526-2.621 3.858 3.858 0 0 0 1.705-.065 3.779 3.779 0 0 1-3.028-3.703v-.047a3.766 3.766 0 0 0 1.71.473 3.775 3.775 0 0 1-1.168-5.041 10.716 10.716 0 0 0 7.781 3.945 3.813 3.813 0 0 1-.097-.861 3.773 3.773 0 0 1 3.774-3.773 3.77 3.77 0 0 1 2.756 1.191 7.602 7.602 0 0 0 2.397-.916 3.789 3.789 0 0 1-1.66 2.088 7.55 7.55 0 0 0 2.168-.594 7.623 7.623 0 0 1-1.884 1.953z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-typing'>
<path d="M16 4H4c-1.101 0-2 .9-2 2v7c0 1.1.899 2 2 2h4l4 3v-3h4c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM6 10.6a1.1 1.1 0 1 1 0-2.2 1.1 1.1 0 0 1 0 2.2zm4 0a1.1 1.1 0 1 1 0-2.2 1.1 1.1 0 0 1 0 2.2zm4 0a1.1 1.1 0 1 1 0-2.2 1.1 1.1 0 0 1 0 2.2z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-uninstall'>
<path d="M19.059 10.898l-3.171-7.927A1.543 1.543 0 0 0 14.454 2H5.546c-.632 0-1.2.384-1.434.971L.941 10.898a4.25 4.25 0 0 0-.246 2.272l.59 3.539A1.544 1.544 0 0 0 2.808 18h14.383c.755 0 1.399-.546 1.523-1.291l.59-3.539a4.22 4.22 0 0 0-.245-2.272zM5.52 4.786l1.639-1.132 2.868 2.011 2.868-2.011 1.639 1.132-2.869 2.033 2.928 2.06-1.639 1.171-2.927-2.076L7.1 10.05 5.461 8.879l2.928-2.06L5.52 4.786zm11.439 10.459a.902.902 0 0 1-.891.755H3.932a.902.902 0 0 1-.891-.755l-.365-2.193A.902.902 0 0 1 3.567 12h12.867c.558 0 .983.501.891 1.052l-.366 2.193z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-unread'>
<path fill-rule="evenodd" clip-rule="evenodd" d="M17 3a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm-4.5 1h-11a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm0 5h-11a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm0 5h-11a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-untag'>
<path d="M1 14.742l4.945-.709L5.239 19l5.962-5.985-4.069-4.429L1 14.742zm17.664-9.221c.391-.393.5-.945 0-1.419l-2.826-2.839c-.279-.308-1.021-.392-1.412 0l-3.766 3.78 4.068 4.429 3.936-3.951zm.042 9.772l-14.001-14a.999.999 0 1 0-1.414 1.414l14.001 14a.996.996 0 0 0 1.414 0 .999.999 0 0 0 0-1.414z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-upload-to-cloud'>
<path d="M15.213 6.639c-.276 0-.546.025-.809.068C13.748 4.562 11.716 3 9.309 3c-2.939 0-5.32 2.328-5.32 5.199 0 .256.02.508.057.756a3.567 3.567 0 0 0-.429-.027C1.619 8.928 0 10.51 0 12.463S1.619 16 3.617 16H8v-4H5.5L10 7l4.5 5H12v4h3.213C17.856 16 20 13.904 20 11.32c0-2.586-2.144-4.681-4.787-4.681z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-upload'>
<path d="M8 12h4V6h3l-5-5-5 5h3v6zm11.338 1.532c-.21-.224-1.611-1.723-2.011-2.114A1.503 1.503 0 0 0 16.285 11h-1.757l3.064 2.994h-3.544a.274.274 0 0 0-.24.133L12.992 16H7.008l-.816-1.873a.276.276 0 0 0-.24-.133H2.408L5.471 11H3.715c-.397 0-.776.159-1.042.418-.4.392-1.801 1.891-2.011 2.114-.489.521-.758.936-.63 1.449l.561 3.074c.128.514.691.936 1.252.936h16.312c.561 0 1.124-.422 1.252-.936l.561-3.074c.126-.513-.142-.928-.632-1.449z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-user'>
<path d="M7.725 2.146c-1.016.756-1.289 1.953-1.239 2.59.064.779.222 1.793.222 1.793s-.313.17-.313.854c.109 1.717.683.976.801 1.729.284 1.814.933 1.491.933 2.481 0 1.649-.68 2.42-2.803 3.334C3.196 15.845 1 17 1 19v1h18v-1c0-2-2.197-3.155-4.328-4.072-2.123-.914-2.801-1.684-2.801-3.334 0-.99.647-.667.932-2.481.119-.753.692-.012.803-1.729 0-.684-.314-.854-.314-.854s.158-1.014.221-1.793c.065-.817-.398-2.561-2.3-3.096-.333-.34-.558-.881.466-1.424-2.24-.105-2.761 1.067-3.954 1.929z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-users'>
<path d="M15.989 19.129c0-2.246-2.187-3.389-4.317-4.307-2.123-.914-2.801-1.684-2.801-3.334 0-.989.648-.667.932-2.481.12-.752.692-.012.802-1.729 0-.684-.313-.854-.313-.854s.159-1.013.221-1.793c.064-.817-.398-2.56-2.301-3.095-.332-.341-.557-.882.467-1.424-2.24-.104-2.761 1.068-3.954 1.93-1.015.756-1.289 1.953-1.24 2.59.065.78.223 1.793.223 1.793s-.314.17-.314.854c.11 1.718.684.977.803 1.729.284 1.814.933 1.492.933 2.481 0 1.65-.212 2.21-2.336 3.124C.663 15.53 0 17 .011 19.129.014 19.766 0 20 0 20h16s-.011-.234-.011-.871zm2.539-5.764c-1.135-.457-1.605-1.002-1.605-2.066 0-.641.418-.432.602-1.603.077-.484.447-.008.518-1.115 0-.441-.202-.551-.202-.551s.103-.656.143-1.159c.05-.627-.364-2.247-2.268-2.247-1.903 0-2.318 1.62-2.269 2.247.042.502.144 1.159.144 1.159s-.202.109-.202.551c.071 1.107.441.631.518 1.115.184 1.172.602.963.602 1.603 0 1.064-.438 1.562-1.809 2.152-.069.029-.12.068-.183.102 1.64.712 4.226 1.941 4.838 4.447H20v-2.318c0-1-.273-1.834-1.472-2.317z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-v-card'>
<path d="M19 3H1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zm-6 4h4v1h-4V7zm-2 7.803a2.31 2.31 0 0 0-.529-.303c-1.18-.508-2.961-1.26-2.961-2.176 0-.551.359-.371.518-1.379.066-.418.385-.007.445-.961 0-.38-.174-.475-.174-.475s.088-.562.123-.996c.036-.453-.221-1.8-1.277-2.097-.186-.188-.311-.111.258-.412-1.244-.059-1.534.592-2.196 1.071-.564.42-.717 1.085-.689 1.439.037.433.125.996.125.996s-.175.094-.175.474c.061.954.38.543.445.961.158 1.008.519.828.519 1.379 0 .916-1.781 1.668-2.961 2.176a2.503 2.503 0 0 0-.471.26V5h9v9.803zM18 11h-5v-1h5v1z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-video-camera'>
<path d="M10.5 10a2.5 2.5 0 1 1-5.001-.001A2.5 2.5 0 0 1 10.5 10zM16 4v12c0 1.1-.9 2-2 2H2c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2zm-3.5 6a4.5 4.5 0 1 0-9 0 4.5 4.5 0 0 0 9 0zm6.715-4.914L17 6.562v7l2.215 1.477a.505.505 0 0 0 .785-.42V5.506a.505.505 0 0 0-.785-.42z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-video'>
<path d="M20 5V3.799A.798.798 0 0 0 19.201 3H.801A.8.8 0 0 0 0 3.799V5h2v2H0v2h2v2H0v2h2v2H0v1.199A.8.8 0 0 0 .801 17h18.4a.8.8 0 0 0 .799-.801V15h-2v-2h2v-2h-2V9h2V7h-2V5h2zM8 13V7l5 3-5 3z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-vimeo-with-circle'>
<path d="M10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zm4.401 7.75c-.508 2.916-3.348 5.387-4.201 5.951-.854.562-1.634-.227-1.916-.824-.324-.682-1.293-4.373-1.547-4.68-.254-.306-1.016.307-1.016.307l-.369-.494s1.547-1.883 2.724-2.117c1.248-.25 1.246 1.951 1.546 3.174.291 1.183.486 1.859.739 1.859.254 0 .739-.658 1.269-1.67.532-1.012-.022-1.906-1.061-1.27.415-2.54 4.34-3.152 3.832-.236z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-vimeo'>
<path d="M18.91 5.84c-1.006 5.773-6.625 10.66-8.315 11.777-1.69 1.115-3.233-.447-3.792-1.631-.641-1.347-2.559-8.656-3.062-9.261-.503-.606-2.01.605-2.01.605L1 6.354s3.061-3.725 5.391-4.191c2.47-.493 2.466 3.864 3.06 6.282.574 2.342.961 3.68 1.463 3.68.502 0 1.462-1.305 2.512-3.305 1.053-2.004-.045-3.772-2.101-2.514.823-5.027 8.591-6.236 7.585-.466z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-vine-with-circle'>
<path d="M10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zm1.908 6.451c-.37 0-.632.352-.632 1.028 0 1.378.875 2.171 2.011 2.171.201 0 .427-.024.658-.077v1.072a5.1 5.1 0 0 1-1.074.123c-.755 1.591-2.113 2.951-2.565 3.208-.29.163-.561.172-.878-.018-.559-.333-2.668-2.065-3.373-7.508h1.53c.387 3.268 1.325 4.941 2.363 6.196a8.575 8.575 0 0 0 1.552-2.193c-1.025-.522-1.648-1.663-1.648-2.992 0-1.345.775-2.362 2.102-2.362 1.287 0 1.991.802 1.991 2.181 0 .514-.109 1.098-.314 1.548-.957.188-1.305-.423-1.305-.423.07-.236.168-.635.168-.998.001-.64-.234-.956-.586-.956z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-vine'>
<path d="M17.452 9.951a5.587 5.587 0 0 1-1.244.145c-2.145 0-3.797-1.496-3.797-4.102 0-1.277.493-1.941 1.192-1.941.664 0 1.107.596 1.107 1.805 0 .688-.184 1.44-.32 1.887 0 0 .66 1.152 2.469.799.385-.852.593-1.956.593-2.924 0-2.605-1.33-4.119-3.763-4.119-2.504 0-3.968 1.922-3.968 4.461 0 2.512 1.175 4.668 3.113 5.651-.815 1.629-1.852 3.065-2.933 4.146-1.961-2.371-3.734-5.534-4.463-11.706h-2.89c1.335 10.279 5.319 13.553 6.373 14.181.596.358 1.108.341 1.654.034.855-.485 3.422-3.054 4.847-6.061a9.565 9.565 0 0 0 2.03-.231V9.951z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-vinyl'>
<path d="M9.999.8A9.2 9.2 0 0 0 .8 10.001a9.2 9.2 0 0 0 18.399 0A9.2 9.2 0 0 0 9.999.8zM10 13.001a3 3 0 1 1 0-6 3 3 0 0 1 0 6z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-vk-alternitive'>
<path d="M19 17V3c0-1.1-.903-2-2.005-2H3.005C1.855 1 1 1.853 1 3v14c0 1.148.855 2 2.005 2h13.99A2.008 2.008 0 0 0 19 17zm-3.816-5.393s1.132 1.117 1.411 1.635c.008.011.011.021.014.025.113.19.142.34.085.45-.094.183-.414.275-.523.283h-1.999c-.14 0-.43-.036-.782-.279-.27-.188-.537-.499-.797-.802-.388-.45-.724-.84-1.062-.84a.383.383 0 0 0-.126.021c-.257.082-.583.447-.583 1.422 0 .305-.24.479-.41.479h-.916c-.312 0-1.937-.109-3.376-1.628-1.766-1.86-3.352-5.591-3.366-5.624-.1-.241.107-.372.332-.372h2.02c.271 0 .358.164.42.311.07.167.334.841.766 1.599.703 1.233 1.136 1.735 1.481 1.735a.378.378 0 0 0 .184-.049c.451-.249.367-1.857.347-2.189 0-.063-.001-.719-.231-1.034-.166-.228-.447-.315-.617-.348a.738.738 0 0 1 .266-.226C8.031 6.022 8.588 6 9.142 6h.308c.601.008.757.047.974.102.439.105.448.39.409 1.36-.011.276-.023.589-.023.956 0 .079-.003.166-.003.256-.014.496-.03 1.057.32 1.287a.289.289 0 0 0 .151.044c.122 0 .487 0 1.476-1.697.435-.749.77-1.633.793-1.699a.528.528 0 0 1 .148-.183.347.347 0 0 1 .166-.039h2.375c.26 0 .436.039.469.138.057.159-.011.644-1.096 2.11l-.483.64c-.984 1.288-.984 1.354.058 2.332z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-vk-with-circle'>
<path d="M10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zm3.692 10.831s.849.838 1.058 1.227c.006.008.009.016.011.02.085.143.105.254.063.337-.07.138-.31.206-.392.212h-1.5c-.104 0-.322-.027-.586-.209-.203-.142-.403-.375-.598-.602-.291-.338-.543-.63-.797-.63a.305.305 0 0 0-.095.015c-.192.062-.438.336-.438 1.066 0 .228-.18.359-.307.359h-.687c-.234 0-1.453-.082-2.533-1.221-1.322-1.395-2.512-4.193-2.522-4.219-.075-.181.08-.278.249-.278h1.515c.202 0 .268.123.314.232.054.127.252.632.577 1.2.527.926.85 1.302 1.109 1.302a.3.3 0 0 0 .139-.036c.338-.188.275-1.393.26-1.643 0-.047-.001-.539-.174-.775-.124-.171-.335-.236-.463-.26a.55.55 0 0 1 .199-.169c.232-.116.65-.133 1.065-.133h.231c.45.006.566.035.729.076.33.079.337.292.308 1.021-.009.207-.018.441-.018.717 0 .06-.003.124-.003.192-.01.371-.022.792.24.965a.216.216 0 0 0 .114.033c.091 0 .365 0 1.107-1.273a9.718 9.718 0 0 0 .595-1.274c.015-.026.059-.106.111-.137a.266.266 0 0 1 .124-.029h1.781c.194 0 .327.029.352.104.044.119-.008.482-.821 1.583l-.363.479c-.737.966-.737 1.015.046 1.748z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-vk'>
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.802 12.298s1.617 1.597 2.017 2.336a.127.127 0 0 1 .018.035c.163.273.203.487.123.645-.135.261-.592.392-.747.403h-2.858c-.199 0-.613-.052-1.117-.4-.385-.269-.768-.712-1.139-1.145-.554-.643-1.033-1.201-1.518-1.201a.548.548 0 0 0-.18.03c-.367.116-.833.639-.833 2.032 0 .436-.344.684-.585.684H9.674c-.446 0-2.768-.156-4.827-2.327C2.324 10.732.058 5.4.036 5.353c-.141-.345.155-.533.475-.533h2.886c.387 0 .513.234.601.444.102.241.48 1.205 1.1 2.288 1.004 1.762 1.621 2.479 2.114 2.479a.527.527 0 0 0 .264-.07c.644-.354.524-2.654.494-3.128 0-.092-.001-1.027-.331-1.479-.236-.324-.638-.45-.881-.496.065-.094.203-.238.38-.323.441-.22 1.238-.252 2.029-.252h.439c.858.012 1.08.067 1.392.146.628.15.64.557.585 1.943-.016.396-.033.842-.033 1.367 0 .112-.005.237-.005.364-.019.711-.044 1.512.458 1.841a.41.41 0 0 0 .217.062c.174 0 .695 0 2.108-2.425.62-1.071 1.1-2.334 1.133-2.429.028-.053.112-.202.214-.262a.479.479 0 0 1 .236-.056h3.395c.37 0 .621.056.67.196.082.227-.016.92-1.566 3.016-.261.349-.49.651-.691.915-1.405 1.844-1.405 1.937.083 3.337z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-voicemail'>
<path d="M15.4 5.801a4.6 4.6 0 0 0-3.795 7.2H8.394A4.6 4.6 0 1 0 4.6 15h10.8a4.6 4.6 0 0 0 0-9.199zM2 10.4a2.6 2.6 0 1 1 5.2 0 2.6 2.6 0 0 1-5.2 0zM15.4 13a2.6 2.6 0 1 1-.002-5.2A2.6 2.6 0 0 1 15.4 13z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-wallet'>
<path d="M16 6H3.5v-.5l11-.88v.88H16V4c0-1.1-.891-1.872-1.979-1.717L3.98 3.717C2.891 3.873 2 4.9 2 6v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2zm-1.5 7.006a1.5 1.5 0 1 1 .001-3.001 1.5 1.5 0 0 1-.001 3.001z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-warning'>
<path d="M19.511 17.98L10.604 1.348a.697.697 0 0 0-1.208 0L.49 17.98a.675.675 0 0 0 .005.68c.125.211.352.34.598.34h17.814a.694.694 0 0 0 .598-.34.677.677 0 0 0 .006-.68zM11 17H9v-2h2v2zm0-3.5H9V7h2v6.5z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-water'>
<path d="M9.882 9.093c-.511 4.115-3.121 4.847-3.121 7.708C6.761 18.567 8.244 20 10 20c1.756 0 3.238-1.434 3.238-3.199 0-2.861-2.61-3.593-3.121-7.708-.016-.123-.219-.123-.235 0zm-5.999-9C3.372 4.208.762 4.939.762 7.801.762 9.566 2.244 11 4 11s3.238-1.434 3.238-3.199c0-2.861-2.61-3.593-3.121-7.708-.015-.123-.219-.123-.234 0zm12 0c-.511 4.115-3.121 4.847-3.121 7.708C12.762 9.566 14.244 11 16 11s3.238-1.434 3.238-3.199c0-2.861-2.61-3.593-3.121-7.708-.016-.123-.219-.123-.234 0z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-windows-store'>
<path d="M9.5 3.241V9.5H18V2L9.5 3.241zM2 9.5h6.5V3.387L2 4.336V9.5zm7.5 7.259L18 18v-7.5H9.5v6.259zM2 15.664l6.5.949V10.5H2v5.164z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-xing-with-circle'>
<path d="M10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zM8.063 11.5l-.153.309c-.071.138-.236.191-.347.191H6.149c-.25 0-.239-.191-.178-.316l.092-.184 1.125-2.25L6.563 8l-.092-.185c-.061-.125-.072-.315.178-.315h1.414c.111 0 .276.053.347.19l.153.31.625 1.25-1.125 2.25zm5.967-5.685L13.938 6l-2.5 5 1.5 3 .092.184c.062.125.072.316-.178.316h-1.414c-.112 0-.275-.053-.345-.191L10.938 14l-1.5-3 2.5-5 .155-.31c.069-.138.232-.19.345-.19h1.414c.25 0 .239.19.178.315z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-xing'>
<path d="M17.703 1h-2.828c-.223 0-.553.105-.69.381s-.31.619-.31.619l-5 10 3 6 .31.619c.138.275.467.381.69.381h2.828c.5 0 .48-.381.355-.631L15.875 18l-3-6 5-10 .184-.369c.125-.25.144-.631-.356-.631zM6.815 5.381C6.678 5.105 6.348 5 6.125 5H3.297c-.5 0-.48.381-.355.631L3.125 6l1.25 2.5-2.25 4.5-.184.369c-.125.25-.144.631.356.631h2.828c.223 0 .553-.106.691-.381L6.125 13l2.25-4.5L7.125 6l-.31-.619z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-yelp'>
<path d="M12.538 12.471l4.523 1.466s.647.119.64.552c-.004.305-.197.652-.197.652l-1.91 2.756s-.341.286-.686.286c-.344 0-.741-.537-.741-.537l-2.417-4.073s-.272-.594.05-.921c.295-.3.738-.181.738-.181zM11.57 10.6c.231.396.87.281.87.281l4.513-1.331s.615-.253.703-.589c.086-.337-.102-.743-.102-.743l-2.157-2.564s-.187-.324-.575-.357c-.428-.037-.691.486-.691.486l-2.55 4.05c.001-.001-.224.402-.011.767zM9.438 9.021c.531-.132.616-.911.616-.911l-.036-6.485s-.08-.8-.436-1.017c-.559-.342-.724-.164-.884-.14L4.951 1.873s-.367.123-.558.432c-.273.437.277 1.079.277 1.079l3.894 5.358s.385.401.874.279zm-.925 2.624c.013-.5-.595-.801-.595-.801L3.89 8.791s-.597-.248-.887-.075c-.221.132-.418.372-.437.583l-.262 3.259s-.039.565.106.822c.205.364.881.111.881.111l4.702-1.049c.182-.124.502-.136.52-.797zm1.169 1.759c-.404-.209-.887.224-.887.224l-3.148 3.498s-.393.535-.293.863c.094.308.25.461.47.569l3.162 1.007s.383.08.674-.005c.412-.121.336-.772.336-.772l.071-4.736c0 .001-.016-.455-.385-.648z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-youko-with-circle'>
<path d="M10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zm-.404 9.08C9 10.83 8.51 11.96 7.933 13.265c-.283.639-.503 1.345-1.021 1.684-2.144.135-.544-2.254-.227-3.099-.487-.93-1.126-2.011-1.701-3.022-.263-.46-.917-1.34-.265-1.836.241-.184.777-.189 1.02 0 .758.586 1.187 2.186 1.815 2.907.233-.4.442-.948.681-1.492.217-.494.396-1.19.718-1.415.494-.345 1.26-.045 1.361.459.127.636-.47 1.466-.718 2.027zm4.99 3.289c-.396-.086-.757-.647-1.133-.995-.393-.361-.827-.689-1.135-.994-.21-.32-.151.217-.151.535v.919c-.041.328-.218.519-.53.573h-.453c-.328-.038-.464-.27-.53-.573V7.988c.006-.812 1.507-.812 1.513 0v1.491c.242-.124.388-.346.567-.535a2.59 2.59 0 0 0 .416-.421c.255-.227.494-.469.718-.727.299-.626 1.462-.583 1.55.192.122 1.072-1.322 1.45-1.588 2.065.395.537 1.309.925 1.626 1.53.3.573-.058 1.362-.87 1.186z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-youko'>
<path d="M19.418 12.08c-.548-1.046-2.126-1.715-2.806-2.642.459-1.061 2.951-1.714 2.74-3.565-.151-1.337-2.16-1.411-2.675-.33-.386.445-.8.863-1.24 1.254-.212.27-.451.512-.718.726-.31.326-.56.71-.979.925V5.873c-.01-1.4-2.6-1.4-2.61 0v7.33c.113.522.348.923.913.99h.784c.537-.095.843-.425.913-.99v-1.586c0-.55-.101-1.476.261-.924.532.526 1.28 1.093 1.958 1.716.65.6 1.273 1.569 1.958 1.717 1.401.304 2.02-1.057 1.501-2.046zM8.193 4.156c-.556.389-.866 1.589-1.24 2.443-.411.94-.773 1.886-1.174 2.575C4.693 7.93 3.953 5.168 2.646 4.156c-.421-.326-1.346-.317-1.762 0-1.126.857.004 2.374.457 3.17.994 1.744 2.096 3.611 2.937 5.216C3.73 14 .969 18.123 4.669 17.89c.896-.586 1.275-1.804 1.762-2.906.996-2.256 1.842-4.205 2.872-6.537.428-.97 1.459-2.402 1.24-3.5-.175-.87-1.498-1.387-2.35-.792z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-youtube-with-circle'>
<path d="M11.603 9.833L9.357 8.785C9.161 8.694 9 8.796 9 9.013v1.974c0 .217.161.319.357.228l2.245-1.048c.197-.092.197-.242.001-.334zM10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6 9.6-4.298 9.6-9.6S15.302.4 10 .4zm0 13.5c-4.914 0-5-.443-5-3.9s.086-3.9 5-3.9 5 .443 5 3.9-.086 3.9-5 3.9z"></path>
</symbol><symbol viewBox='0 0 20 20' id='entypo-youtube'>
<path d="M10 2.3C.172 2.3 0 3.174 0 10s.172 7.7 10 7.7 10-.874 10-7.7-.172-7.7-10-7.7zm3.205 8.034l-4.49 2.096c-.393.182-.715-.022-.715-.456V8.026c0-.433.322-.638.715-.456l4.49 2.096c.393.184.393.484 0 .668z"></path>
</symbol></svg>

After

Width:  |  Height:  |  Size: 202 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 58 KiB

1952
themes/dash/assets/js/dash.min.js vendored Normal file

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

1
themes/dash/assets/js/dashkit.min.js vendored Normal file

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,29 @@
extends frame
block main-content
#entries-index
#entries-index-wrapper
h2 Entries
#entries-list
- var index = 0;
- for ( index; index < items.length; index++)
- var date = new Date(items[index].created_at)
a.entry-list-link(href="/@/dashboard/entries/edit/"+items[index].slug id=items[index].uuid)
= items[index].title
br
span= date.getFullYear()+"-"+date.getMonth()+"-"+date.getDate()+" "+date.getHours()+":"+date.getMinutes()
- var next = parseInt(page_index, 10) + 1
- var prev = parseInt(page_index, 10) - 1
- if(next > page_count) next = 1
- if(prev <= 0) prev = page_count
br
a.page-btns(href="/@/dashboard/entries/"+prev)
svg(viewBox="0 0 20 20" class="icons")
use(xlink:href='/dash/assets/images/sprite.svg#entypo-chevron-left')
span.paginate= "PAGE "+page_index+" OF "+page_count
a.page-btns(href="/@/dashboard/entries/"+next)
svg(viewBox="0 0 20 20" class="icons")
use(xlink:href='/dash/assets/images/sprite.svg#entypo-chevron-right')

View file

@ -0,0 +1,84 @@
extends frame
block main-content
-var post_title = ''
-var post_plaintext = ''
-var post_feature = 'null'
-var post_tags = ''
-var post_id = ''
-var post_date = 'NOW'
if(edit)
-post_title = post.title
-post_plaintext = post.entry_plaintext
-post_feature = feature
-post_tags = post.tags
-post_date = date
#entries-edit-index
#entries-edit-index-wrapper
//h2 EDIT
=post_title
#entry-header.columns
#entry-title.column
textarea(id="entry_title" type='text', name='entry_title' class='post-edit', placeholder='title', required, autofocus)
=post_title
#entry-meta.column
textarea(id='entry_tags' type='text', name='entry_tags' class='form-control', placeholder='tags [comma seperated]', autofocus)
=post_tags
br
input(id="featured-click" type="file" name="featured-click")
input(id="post-image" type="file" name="post-image")
#entry-feature
//label FEATURE IMAGE
if(post_feature == 'null')
#featured-image-drop
| DRAG AND DROP IMAGE OR
label(for="featured-click") CLICK TO CHOOSE
else
#featured-new-image-btn
button#new-upload-link
svg#new-upload-link(viewBox="0 0 20 20" class="icons")
use(xlink:href='/dash/assets/images/sprite.svg#entypo-image-inverted')
#featured-image-drop
img(src=post_feature)
#edit-content
#edit-control
button#option-bold.content-editor-btn-text.editor-button(href="")
| B
button#option-italic.content-editor-btn-text.editor-button(href="")
| I
button#option-strikethrough.content-editor-btn-text.editor-button(href="")
| S
button#option-link.content-editor-btn-icon.editor-button(href="")
svg#option-link(viewBox="0 0 20 20" class="icons")
use(xlink:href='/dash/assets/images/sprite.svg#entypo-link')
button#option-header1.content-editor-btn-text.editor-button(href="")
| H1
button#option-header2.content-editor-btn-text.editor-button(href="")
| H2
button#option-header3.content-editor-btn-text.editor-button(href="")
| H3
button#option-image.content-editor-btn-icon(for="post-image")
svg#option-link(viewBox="0 0 20 20" class="icons")
use(xlink:href='/dash/assets/images/sprite.svg#entypo-image')
button#option-date.editor-button
svg#option-date(viewBox="0 0 20 20" class="icons")
use(xlink:href='/dash/assets/images/sprite.svg#entypo-calendar')
=post_date
if(edit)
button#post-sumbit-btn.post-sumbit-btn(data-action='blog-update' data-id=post.id type='submit') UPDATE
else
button#post-sumbit-btn.post-sumbit-btn(data-action='blog-add' type='submit') ADD POST
#edit-content-wrapper
pre
code#edit-text-code(contenteditable="true") !{colored}

View file

@ -0,0 +1,28 @@
extends frame
block main-content
section#saved-index-content
header.columns#header
//#float-bg
img(src='/base-assets/images/eye-beamz.png')
#header-one.column
#header-two.column
label#the-title
a(href="/") thetwelfthhouse
#the-intro
//| Twelfth House Admin
#saved-hub-display.columns
#saved-hub-title.column
label EDIT BOOKMARK
#saved-hub-main.column
a(href=bookmark.url target='_blank') SOURCE
br
input(id='saved_title' type='text', name='saved_title' class='form-control', value=bookmark.title, placeholder='saved title', autofocus)
br
input(id='saved_tags' type='text', name='saved_tags' class='form-control', value=bookmark.tags, placeholder='tags [comma seperated]', autofocus)
br
input(id='saved_image' type='text', name='saved_image' class='form-control', value=bookmark.image, placeholder='image url [comma seperated]', autofocus)
br
br
button(id="saved-sumbit-btn", class='saved-sumbit-btn', data-action='saved-edit' data-id=bookmark.id type='submit') UPDATE LINK

View file

@ -0,0 +1,32 @@
extends frame
block main-content
section#saved-index-content
header.columns#header
//#float-bg
img(src='/base-assets/images/eye-beamz.png')
#header-one.column
#header-two.column
label#the-title
a(href="/") thetwelfthhouse
#the-intro
//| Twelfth House Admin
#saved-hub-display.columns
#saved-hub-title.column
label ADD NEW LINK
br
textarea(id="saved_text" name='saved_text' class='post-edit', placeholder='enter link to save', required, autofocus)
button(id="saved-sumbit-btn", class='saved-sumbit-btn', data-action='saved-add' type='submit') SAVE LINK
//a(href='/admin/fipamo/add')
i.fa.fa-plus SAVE NEW LINK
#saved-hub-main.column
label SAVED ENTRIES
br
-var index = 0;
-for (index; index<saved.length; index++)
-var saved_title = saved[index].title
if(saved_title == null || saved_title == '')
-saved_title = 'Saved Entry '+saved[index].id
a(href='/admin/fipamo/edit/'+saved[index].id)
span= saved_title
br

29
themes/dash/frame.pug Normal file
View file

@ -0,0 +1,29 @@
doctype html
html(xmlns='http://www.w3.org/1999/xhtml', lang='en', xml:lang="en")
head
title= title
meta(name='viewport', content='width=device-width, initial-scale=1.0')
meta(name="keywords" content="creative technoglogist, graphic design, web development, designer developer, social thought, political discussion, music producer, creative culture, black creative, black geek")
meta(name="description" content="The home site of Creative Technologist, music maker, and social philoshoper, Ro. Ha, I know. Me too.")
meta(http-equiv="content-type", content="text/html; charset=utf-8")
//meta(property="og:image" content="https://thetwelfth.house/base-assets/images/current.png")
//meta(name="twitter:image" content="https://thetwelfth.house/base-assets/images/current.png")
link(rel='stylesheet', href='/dash/assets/css/dash.css', type='text/css')
body
#loader
i.fa.fa-cog.fa-spin.fa-4x.fa-fw
.main-container#main-content
section#dash-index-content
header#header
#header-wrapper.columns
#header-one.column
a#home(href="/@/dashboard")
svg(viewBox="0 0 20 20" class="icons")
use(xlink:href='/dash/assets/images/sprite.svg#entypo-level-up')
label#the-title= title
#header-two.column
block main-content
script(src='/dash/assets/js/dashkit.min.js' type="text/javascript")
script(src='/dash/assets/js/dash.min.js' type="text/javascript")

9
themes/dash/index.pug Normal file
View file

@ -0,0 +1,9 @@
extends frame
block main-content
#dash-index
#dash-index-wrapper
-if(!user_status)
include partials/login
-else
include partials/front

View file

@ -0,0 +1,21 @@
extends frame
block main-content
header.header#header
//a(href='/')
img(src='/base-assets/images/the-logo.svg')
br
.header-desc
span#the-title
a(href="/") thetwelfthhouse
#the-intro
| Work header
.folio-hub#folio-hub
a.btn-add-project(href="/admin/folio/task/add")
i.fa.fa-plus-circle.fa-2x
span Add New Project
.project-list#project-list
each project, index in projects
.project-item(data-id=project._id)
span.drag-handle
i.fa.fa-arrows-v
a.project-label#edit-project(href="/admin/folio/"+project.slug)= project.title

View file

@ -0,0 +1,39 @@
extends frame
block main-content
div.folio-project-form#folio-project-form
form(class='folio-project', name="folio-project", enctype="multipart/form-data")
//i.fa.fa-minus-circle.fa-spin.icon-loading#icon-loading
span= formTitle
br
if edit
-var title = project.title
-var tools = project.tools
-var url = project.url
-var desc = project.description
//-document.getElementById('type').selectedIndex = 1;
input(type='text', name='title' class='', placeholder='Enter Project Title', value= title, required, autofocus)
input(type='text', id="tools" name='tools' class='', placeholder='Tools Used', value= tools, required, autofocus)
input(type='text', name='url' class='', placeholder='Project URL', required, value= url, autofocus)
select#type(name="type", form="folio-type'")
option(value="option00") Select Project Type
option(value="option01") Design and Development
option(value="option02") Web Design/Front End Development
option(value="option03") Web Development
option(value="option04") Logo/Branding
br
textarea(rows="9" cols="52" name='description' class='', placeholder='Description', required, autofocus) #{desc}
br
.upload-drop#upload-drop
| Drag and Drop files to upload
label(for="upload-click") or click to select
br
if edit
button(id="btn-submit", class='folio-btn-edit', type='submit', data-action='folio-update' data-id=project.id) UPDATE_PROJECT
else
button(id="btn-submit", class='folio-btn-add', type='submit', data-action='folio-add') ADD_PROJECT
.upload-list#upload-list
span Files to Upload
.thumb-list#thumb-list
input(id="upload-click" type="file" name="uploaded" multiple)

View file

@ -0,0 +1,32 @@
#dash-menu
a#settings(href="/@/dashboard/settings")
svg(viewBox="0 0 20 20" class="icons")
use(xlink:href='/dash/assets/images/sprite.svg#entypo-cog')
label Settings
a#entries(href="/@/dashboard/entries")
svg(viewBox="0 0 20 20" class="icons")
use(xlink:href='/dash/assets/images/sprite.svg#entypo-book')
label Entries
a#bookmarks(href="")
svg(viewBox="0 0 20 20" class="icons")
use(xlink:href='/dash/assets/images/sprite.svg#entypo-bookmarks')
label Bookmarks
a#folio(href="")
svg(viewBox="0 0 20 20" class="icons")
use(xlink:href='/dash/assets/images/sprite.svg#entypo-suitcase')
label Folio
a#menu(href="")
svg(viewBox="0 0 20 20" class="icons")
use(xlink:href='/dash/assets/images/sprite.svg#entypo-list')
label Menu
#dash-recent
#recent-list
h3 Recent
br
- var index = 0;
- for ( index; index < items.length; index++)
a(href="/@/dashboard/edit"+items[index].slug id=items[index].uuid)
= items[index].title
br
br

View file

@ -0,0 +1,9 @@
#dash-login.columns
#dash-index-one.column
h1 What up
#dash-index-two.column
.dash-form#dash-form
form(class='login', name="login" action="/login" method="POST")
input(type='text', name='handle' class='form-control', placeholder='handle', required, autofocus)
input(type='password', name='password' class='form-control', placeholder='password', required)
button(id="login-btn", class='login-btn', type='submit') COME ON IN

View file

@ -0,0 +1,14 @@
div.project-display#project-display
i.fa.fa-arrow-circle-left.fa-2x#return-home
div.project-meta#project-meta
p project_details
label= project.title
label= project.type
label= project.tools
label=project.url
p= project.description
ul.image-list#image-list
each image, index in project.images
-var path = String(project.images[index].path).substring(7, project.images[index].path.length)
li.slide-holder(id="slide-holder-"+[index])
img.slide(id="slide-"+[index], src=path)

View file

@ -0,0 +1,10 @@
div.user-form#user-form-signup
form(class='signup', name="signup" action="/signup" method="POST")
label ://apply_for_entry/
br
input(type='text', name='handle' class='form-control', placeholder='handle', required, autofocus)
input(type='text', name='firstname' class='form-control', placeholder='firstname',required, autofocus)
input(type='text', name='lastname' class='form-control', placeholder='lastname',required, autofocus)
input(type='text', name='email' class='form-control', placeholder='email',required, autofocus)
input(type='password', name='password' class='form-control', placeholder='password', required)
button(id="signin-btn", class='signin-btn', type='submit') INIT_ACCOUNT

6
themes/dash/settings.pug Normal file
View file

@ -0,0 +1,6 @@
extends frame
block main-content
#settings-index
#settings-index-wrapper
h2 Settings

View file

@ -0,0 +1,44 @@
import DataUtils, { REQUEST_TYPE_GET, REQUEST_TYPE_PUT, REQUEST_TYPE_POST, REQUEST_TYPE_DELETE, CONTENT_TYPE_JSON, CONTENT_TYPE_FORM } from './tools/utilities/DataUtils.jsx';
import * as DataEvent from './tools/events/DataEvent.jsx';
import DisplayManager from './controllers/DisplayManager.jsx';
export default class Base {
//--------------------------
// constructor
//--------------------------
//TODO: Flip to unified structure defined in BMG, brah
constructor() {
var self = this;
var admin = [];
var folio = [];
var displayManager = [];
this.dataUtils = new DataUtils();
this.settings = [];
this.start();
}
start() {
this.displayManager = new DisplayManager();
}
//--------------------------
// methods
//--------------------------
loadSettings() {
var self = this;
this.dataUtils.request('/base-assets/data/settings.json', DataEvent.SETTINGS_LOADED)
.then((response) => {
this.settings = JSON.parse(response['request'].response);
this.start();
//transfer
})
.catch((err) => {
//console.log(err);
});
}
//--------------------------
// event handlers
//--------------------------
}

View file

@ -0,0 +1,6 @@
import Base from './Base.jsx'
document.addEventListener('DOMContentLoaded', function() {
var base = new Base();
}, false);

View file

@ -0,0 +1,164 @@
//TOOLS
import DataUtils, {
REQUEST_TYPE_GET,
REQUEST_TYPE_PUT,
REQUEST_TYPE_POST,
REQUEST_TYPE_DELETE,
CONTENT_TYPE_JSON,
CONTENT_TYPE_FORM
} from '../tools/utilities/DataUtils';
import * as DataEvent from '../tools/events/DataEvent';
import Animate from '../tools/effects/Animate';
import * as Ease from '../tools/effects/Animate';
import TextEffects from '../tools/effects/TextEffects';
import EntryTasks from '../tasks/EntryTasks';
import TextEditor from '../tools/utilities/TextEditor';
class Entry {
//--------------------------
// constructor
//--------------------------
constructor() {
reframe('iframe');
this.uploadFiles;
this.start();
this.editor = new TextEditor();
}
//--------------------------
// methods
//--------------------------
start() {
new Animate().object({
targets: document.getElementById('loader'),
duration: 300,
opacity: 0,
easing: 'easeInOutQuad',
complete: function() {
document.getElementById('loader').style.display = 'none';
document.getElementById('loader').style.visibility = 'hidden';
new Animate().object({
targets: document.getElementById('header'),
duration: 10,
opacity: 1,
easing: 'easeInOutQuad',
complete: function() {
new TextEffects().scramble(document.getElementById('the-title'), 50, function() {
if (document.getElementById('the-intro'))
document.getElementById('the-intro').style.opacity = 1;
if (document.getElementById('blog-entry'))
document.getElementById('blog-entry').style.opacity = 1;
//START SEcTION
});
}
});
}
});
if (document.getElementById('featured-image-drop')) {
document.getElementById('featured-image-drop').addEventListener('dragover', this.handleDragOver, false);
document.getElementById('featured-image-drop').addEventListener('drop', this.handleDrop, false);
document.getElementById('featured-click').addEventListener('change', this.handleClicked, false);
if(document.getElementById('new-upload-link'))
{
document.getElementById('new-upload-link').addEventListener('click', e=>{
document.getElementById('featured-click').click();
})
}
document.getElementById("post-sumbit-btn").addEventListener('click', f => {
f.preventDefault();
let edit = false;
if (f.target.getAttribute('data-action') == 'blog-update')
edit = true;
console.log('clicked')
new EntryTasks().submitPost(edit, Entry.uploadFiles).then((response) => {
let note = JSON.parse(response['response']['request'].response);
console.log(note.message);
}).catch((err) => {
console.log(err)
});
});
}
}
//--------------------------
// event handlers
//--------------------------
handleDragOver(e) {
e.stopPropagation();
e.preventDefault();
e.dataTransfer.dropEffect = 'copy'; // Explicitly show this is a copy.
}
handleClicked(e) {
e.stopPropagation();
e.preventDefault();
//console.log("IMAGES " + e.target.files);
Entry.uploadFiles = e.target.files;
for (var i = 0, f; f = Entry.uploadFiles[i]; i++) {
// Only process image files.
if (!f.type.match('image.*')) {
continue;
}
var reader = new FileReader();
// Closure to capture the file information.
reader.onload = (function(theFile) {
return function(f) {
// Render thumbnail.
var span = document.createElement('span');
span.innerHTML = [
'<img src="',
f.target.result,
'" title="',
escape(theFile.name),
'"/>'
].join('');
//document.getElementById('featured-image-drop').insertBefore(span, null);
document.getElementById('featured-image-drop').innerHTML = '';
document.getElementById('featured-image-drop').appendChild(span);
};
})(f);
// Read in the image file as a data URL.
reader.readAsDataURL(f);
}
}
handleDrop(e) {
e.stopPropagation();
e.preventDefault();
Entry.uploadFiles = e.dataTransfer.files;
//console.log(MemberArea.uploadFiles.length);
for (var i = 0, f; f = Entry.uploadFiles[i]; i++) {
// Only process image files.
if (!f.type.match('image.*')) {
continue;
}
var reader = new FileReader();
// Closure to capture the file information.
reader.onload = (function(theFile) {
return function(f) {
// Render thumbnail.
var span = document.createElement('span');
span.innerHTML = [
'<img src="',
f.target.result,
'" title="',
escape(theFile.name),
'"/>'
].join('');
//document.getElementById('featured-image-drop').insertBefore(span, null);
document.getElementById('featured-image-drop').innerHTML = '';
document.getElementById('featured-image-drop').appendChild(span);
};
})(f);
// Read in the image file as a data URL.
reader.readAsDataURL(f);
}
}
}
Entry.uploadFiles = [];
export {
Entry as
default
}

View file

@ -0,0 +1,58 @@
import DataUtils, {
REQUEST_TYPE_GET,
REQUEST_TYPE_PUT,
REQUEST_TYPE_POST,
REQUEST_TYPE_DELETE,
CONTENT_TYPE_JSON,
CONTENT_TYPE_FORM
} from '../tools/utilities/DataUtils';
import * as DataEvent from '../tools/events/DataEvent';
import ProjectFolio from '../tasks/ProjectFolio';
import TextEffects from '../tools/effects/TextEffects';
import Animate from '../tools/effects/Animate';
import * as Ease from '../tools/effects/Animate';
import DisplayAdminBlog from './DashEntry'
import DisplayAdminFipamo from './DisplayAdminFipamo';
export default class DisplayAdmin {
//--------------------------
// constructor
//--------------------------
constructor(section, page) {
this.section = section;
this.page = page;
this.current = null;
this.start();
}
//--------------------------
// methods
//--------------------------
start() {
let self = this;
new Animate().object({
targets: document.getElementById('loader'),
duration: 300,
opacity: 0,
easing: 'easeInOutQuad',
complete: function () {
document.getElementById('loader').style.display = 'none';
document.getElementById('loader').style.visibility = 'hidden';
new Animate().object({
targets: document.getElementById('header'),
duration: 10,
opacity: 1,
easing: 'easeInOutQuad',
complete: function () {
document.getElementById('loader').style.display = 'none';
document.getElementById('loader').style.visibility = 'hidden';
}
});
}
});
}
//--------------------------
// event handlers
//--------------------------
}
DisplayAdmin.uploadFiles = [];

View file

@ -0,0 +1,56 @@
import * as DataEvent from '../tools/events/DataEvent.jsx';
import Animate from '../tools/effects/Animate.jsx';
import * as Ease from '../tools/effects/Animate.jsx';
import TextEffects from '../tools/effects/TextEffects.jsx';
import TaskFipamo from '../tasks/TaskFipamo.jsx';
class DisplayAdminFipamo {
//--------------------------
// constructor
//--------------------------
constructor() {
this.start();
}
//--------------------------
// methods
//--------------------------
start() {
document.getElementById("saved-sumbit-btn").addEventListener('click', f => {
console.log('CLICKED');
let edit = false;
if (f.target.getAttribute('data-action') == 'saved-edit')
edit = true;
new TaskFipamo().submitLink(edit).then((response) => {
let note = JSON.parse(response['response']['request'].response);
if(note.message == 'link added' || note.message == 'bookmark updated')
{
switch(note.message)
{
case 'link added':
document.getElementById('saved_text').value = ''
break
case 'bookmark updated':
document.getElementById('saved_text').value = 'updated'
break
}
}else{
console.log(note);
}
}).catch((err) => {
//console.log(err)
});
});
}
//--------------------------
// event handlers
//--------------------------
}
export {
DisplayAdminFipamo as
default
}

View file

@ -0,0 +1,75 @@
import DataUtils, {
REQUEST_TYPE_GET,
REQUEST_TYPE_PUT,
REQUEST_TYPE_POST,
REQUEST_TYPE_DELETE,
CONTENT_TYPE_JSON,
CONTENT_TYPE_FORM
} from '../tools/utilities/DataUtils.jsx';
import * as DataEvent from '../tools/events/DataEvent.jsx';
import ProjectFolio from '../tasks/ProjectFolio.jsx';
import Animate from '../tools/effects/Animate.jsx';
import * as Ease from '../tools/effects/Animate.jsx';
class DisplayAdminFolio {
//--------------------------
// constructor
//--------------------------
constructor() {
var self = this;
this.uploadFiles;
this.start();
}
//--------------------------
// methods
//--------------------------
start() {
let self = this;
new Animate().object({
targets: document.getElementById('loader'),
duration: 300,
opacity: 0,
easing: 'easeInOutQuad',
complete: function () {
document.getElementById('loader').style.display = 'none';
document.getElementById('loader').style.visibility = 'hidden';
if (document.getElementById('project-list')) {
sortable('.project-list', {
handle: '.drag-handle'
})[0].addEventListener('sortupdate', function (e) {
let sortList = [];
let sortItems = document.getElementById('project-list').children;
for (var i = 0; i < sortItems.length; i++) {
sortList.push({
'sortIndex': i,
'sortID': sortItems[i].getAttribute('data-id')
});
}
new DataUtils().request('/api/folio/sort', DataEvent.PROJECTS_SORTED, REQUEST_TYPE_POST, CONTENT_TYPE_JSON, sortList)
.then((response) => {
console.log(JSON.parse(response.request))
}).catch((err) => {
console.log(err)
})
});
}
new Animate().object({
targets: document.getElementById('header'),
duration: 10,
opacity: 1,
easing: 'easeInOutQuad',
complete: function () {}
});
}
});
}
//--------------------------
// event handlers
//--------------------------
}
DisplayAdminFolio.uploadFiles = [];
export {
DisplayAdminFolio as
default
}

View file

@ -0,0 +1,36 @@
//TOOLS
import DataUtils, {
REQUEST_TYPE_GET,
REQUEST_TYPE_PUT,
REQUEST_TYPE_POST,
REQUEST_TYPE_DELETE,
CONTENT_TYPE_JSON,
CONTENT_TYPE_FORM
} from '../tools/utilities/DataUtils.jsx';
import * as DataEvent from '../tools/events/DataEvent.jsx';
import Animate from '../tools/effects/Animate.jsx';
import * as Ease from '../tools/effects/Animate.jsx';
import TextEffects from '../tools/effects/TextEffects.jsx';
class DisplayBlog {
//--------------------------
// constructor
//--------------------------
constructor() {
reframe('iframe');
this.start();
}
//--------------------------
// methods
//--------------------------
start() {
console.log("START BLOG");
}
//--------------------------
// event handlers
//--------------------------
}
export {
DisplayBlog as
default
}

View file

@ -0,0 +1,79 @@
//TOOLS
import DataUtils, {
REQUEST_TYPE_GET,
REQUEST_TYPE_PUT,
REQUEST_TYPE_POST,
REQUEST_TYPE_DELETE,
CONTENT_TYPE_JSON,
CONTENT_TYPE_FORM
} from '../tools/utilities/DataUtils.jsx';
import * as DataEvent from '../tools/events/DataEvent.jsx';
import Animate from '../tools/effects/Animate.jsx';
import * as Ease from '../tools/effects/Animate.jsx';
import TextEffects from '../tools/effects/TextEffects.jsx';
//Client-side Pages
import DisplayIndex from './DisplayIndex.jsx';
import DisplayWork from './DisplayWork.jsx';
import DisplayBlog from './DisplayBlog.jsx';
import DisplayFi from './DisplayFi.jsx';
class DisplayClient {
//--------------------------
// constructor
//--------------------------
constructor(section, page) {
this.section = section;
this.page = page;
this.current = null;
this.start();
}
//--------------------------
// methods
//--------------------------
start() {
let self = this;
new Animate().object({
targets: document.getElementById('loader'),
duration: 300,
opacity: 0,
easing: 'easeInOutQuad',
complete: function () {
document.getElementById('loader').style.display = 'none';
document.getElementById('loader').style.visibility = 'hidden';
new Animate().object({
targets: document.getElementById('header'),
duration: 10,
opacity: 1,
easing: 'easeInOutQuad',
complete: function () {
new TextEffects().scramble(document.getElementById('the-title'), 50, function () {
switch(self.section){
case "blog":
self.current = new DisplayBlog();
break
case "work":
self.current = new DisplayWork();
break
case "fipamo":
self.current = new DisplayFi();
break
default:
self.current = new DisplayIndex();
break
}
});
}
});
}
});
}
//--------------------------
// event handlers
//--------------------------
}
export {
DisplayClient as
default
}

View file

@ -0,0 +1,35 @@
export const DisplayID = "Display-Fi";
import DataUtils, { REQUEST_TYPE_GET, REQUEST_TYPE_PUT, REQUEST_TYPE_POST, REQUEST_TYPE_DELETE, CONTENT_TYPE_JSON, CONTENT_TYPE_FORM } from '../tools/utilities/DataUtils.jsx';
import * as DataEvent from '../tools/events/DataEvent.jsx';
import Animate from '../tools/effects/Animate.jsx';
import * as Ease from '../tools/effects/Animate.jsx';
import TextEffects from '../tools/effects/TextEffects.jsx';
class DisplayFi {
//--------------------------
// constructor
//--------------------------
constructor() {
this.dataUtils = new DataUtils();
//this.mailer = new Mailer();
this.start();
}
//--------------------------
// methods
//--------------------------
start() {
let self = this;
console.log("START BOOKMARKS");
}
//--------------------------
// event handlers
//--------------------------
}
export { DisplayFi as default }

View file

@ -0,0 +1,65 @@
//TOOLS
import DataUtils, {
REQUEST_TYPE_GET,
REQUEST_TYPE_PUT,
REQUEST_TYPE_POST,
REQUEST_TYPE_DELETE,
CONTENT_TYPE_JSON,
CONTENT_TYPE_FORM
} from '../tools/utilities/DataUtils.jsx';
import * as DataEvent from '../tools/events/DataEvent.jsx';
import Animate from '../tools/effects/Animate.jsx';
import * as Ease from '../tools/effects/Animate.jsx';
import TextEffects from '../tools/effects/TextEffects.jsx';
class DisplayIndex {
//--------------------------
// constructor
//--------------------------
constructor() {
this.start();
}
//--------------------------
// methods
//--------------------------
start() {
document.getElementById('the-intro').style.opacity = 1;
new Animate().object({
targets: document.getElementById('recent-work'),
duration: 200,
opacity: 1,
easing: 'easeInOutQuad',
complete: function () {
}
});
new Animate().object({
targets: document.getElementById('recent-blog'),
duration: 500,
opacity: 1,
easing: 'easeInOutQuad',
complete: function () {
}
});
new Animate().object({
targets: document.getElementById('float-bg'),
duration: 2000,
opacity: 1,
easing: 'easeInQuad',
complete: function () {
}
});
}
//--------------------------
// event handlers
//--------------------------
}
export {
DisplayIndex as
default
}

View file

@ -0,0 +1,75 @@
//TOOLS
import DataUtils, {
REQUEST_TYPE_GET,
REQUEST_TYPE_PUT,
REQUEST_TYPE_POST,
REQUEST_TYPE_DELETE,
CONTENT_TYPE_JSON,
CONTENT_TYPE_FORM
} from '../tools/utilities/DataUtils.jsx';
import Entry from './DashEntry';
import Animate from '../tools/effects/Animate.jsx';
class DisplayManager {
//--------------------------
// constructor
//--------------------------
constructor() {
this.dataUtils = new DataUtils();
this.currentDisplay = '';
this.urlPieces = document.URL.split("/");
//grab url so system knows what to display
this.chooseDisplay(this.urlPieces[5], this.urlPieces[6]);
}
//--------------------------
// methods
//--------------------------
start() {
let self = this;
new Animate().object({
targets: document.getElementById('loader'),
duration: 300,
opacity: 0,
easing: 'easeInOutQuad',
complete: function () {
document.getElementById('loader').style.display = 'none';
document.getElementById('loader').style.visibility = 'hidden';
new Animate().object({
targets: document.getElementById('header'),
duration: 10,
opacity: 1,
easing: 'easeInOutQuad',
complete: function () {
document.getElementById('loader').style.display = 'none';
document.getElementById('loader').style.visibility = 'hidden';
}
});
}
});
}
chooseDisplay(section, page) {
this.currentDisplay = '';
//console.log(section+" "+page)
switch (section) {
case 'entries':
this
this.currentDisplay = new Entry();
break;
default:
// just chill
break;
}
this.start();
}
//--------------------------
// event handlers
//--------------------------
}
export {
DisplayManager as
default
}

View file

@ -0,0 +1,130 @@
export const DisplayID = "Display-Work";
import DataUtils, {
REQUEST_TYPE_GET,
REQUEST_TYPE_PUT,
REQUEST_TYPE_POST,
REQUEST_TYPE_DELETE,
CONTENT_TYPE_JSON,
CONTENT_TYPE_FORM
} from '../tools/utilities/DataUtils.jsx';
import * as DataEvent from '../tools/events/DataEvent.jsx';
import Animate from '../tools/effects/Animate.jsx';
import * as Ease from '../tools/effects/Animate.jsx';
import TextEffects from '../tools/effects/TextEffects.jsx';
import Mailer from '../tasks/Mailer.jsx'
class DisplayWork {
//--------------------------
// constructor
//--------------------------
constructor() {
this.dataUtils = new DataUtils();
this.mailer = new Mailer();
this.start();
}
//--------------------------
// methods
//--------------------------
start() {
let self = this;
if (document.getElementById('work-display')) {
new Animate().object({
targets: document.getElementById('work-display'),
duration: 500,
opacity: 1,
easing: 'easeInOutQuad',
complete: function () {
self.sortItemList();
new Animate().object({
targets: document.getElementById('float-bg'),
duration: 2000,
opacity: 1,
easing: 'easeInQuad',
complete: function () {
}
});
}
});
new Animate().object({
targets: document.getElementById('work-header'),
duration: 500,
opacity: 1,
easing: 'easeInOutQuad',
complete: function () {
}
});
} else {
new Animate().object({
targets: document.getElementById('folio-header'),
duration: 500,
opacity: 1,
easing: 'easeInOutQuad',
complete: function () {
self.showFolioImages();
}
});
}
}
sortItemList() {
let workItems = document.getElementById('work-list').children;
let trans = 300;
let self = this;
for (var i = 0; i < workItems.length; i++) {
//item.addEventListener('click', f => this.handleWorkList(f))
new Animate().object({
targets: workItems[i],
duration: trans,
opacity: 1,
easing: 'easeInOutQuad',
complete: function () {
//self.showFolioImages();
}
});
trans = trans + 200;
if (i == workItems.length - 1) {
new Animate().object({
targets: document.getElementById('contact'),
duration: 300,
opacity: 1,
easing: 'easeInOutQuad',
complete: function () {
//self.showFolioImages();
}
});
}
}
}
showFolioImages() {
let images = document.getElementById('project-images').children;
let trans = 300;
let self = this;
for (var i = 0; i < images.length; i++) {
//item.addEventListener('click', f => this.handleWorkList(f))
new Animate().object({
targets: images[i],
duration: trans,
opacity: 1,
easing: 'easeInOutQuad',
complete: function () {
//self.showFolioImages();
}
});
trans = trans + 200
}
}
//--------------------------
// event handlers
//--------------------------
}
export {
DisplayWork as
default
}

View file

@ -0,0 +1,81 @@
import DataUtils, { REQUEST_TYPE_GET, REQUEST_TYPE_PUT, REQUEST_TYPE_POST, REQUEST_TYPE_DELETE, CONTENT_TYPE_JSON, CONTENT_TYPE_FORM } from '../tools/utilities/DataUtils';
import * as DataEvent from '../tools/events/DataEvent';
import StringUtils from '../tools/utilities/StringUtils';
class EntryTasks {
//--------------------------
// constructor
//--------------------------
constructor() {
var folio = [];
this.dataUtils = new DataUtils();
}
//--------------------------
// methods
//--------------------------
start() {}
submitPost(edit, uploadFiles) {
let self = this;
return new Promise(function(resolve, reject) {
//collect form data
//if(!this.validateForm())
var postData = new FormData();
//let projectImages = document.getElementById('projectImages');
//var fileSelect = projectImages;
var files = uploadFiles;
for (var i = 0; i < files.length; i++) {
var file = files[i];
// Check the file type.
if (!file.type.match('image.*')) {
continue;
}
// Add the file to the request.
postData.append('feature_image', file, file.name);
}
//var category = document.getElementById("content_category");
//let project_form = document.forms.namedItem("folio-project");
var txt = document.createElement("textarea");
txt.innerHTML = document.getElementById('edit-text-code').innerHTML;
postData.append("title", document.getElementById('entry_title').value);
postData.append('slug', new StringUtils().cleanString(document.getElementById('entry_title').value));
postData.append("entry_plaintext", txt.value);
postData.append("tags", document.getElementById('entry_tags').value);
let postURL;
let postEventType;
if (edit) {
let postID = document.getElementById('post-sumbit-btn').getAttribute('data-id');
console.log("POST ID: "+postID);
postURL = "/api/blog/update/" + postID;
postEventType = DataEvent.POST_UPDATED;
} else {
postURL = "/api/blog/add";
postEventType = DataEvent.POST_ADDED;
}
self.dataUtils.request(postURL, postEventType, REQUEST_TYPE_POST, CONTENT_TYPE_FORM, postData)
.then((response) => {
resolve({
response
})
}).catch((err) => {
reject({
err
});
})
});
}
validateForm() {
let valid = false;
if (this.entry_form.title.value == "" || this.entry_form.price.value == "" || this.entry_form.description == "") {
return valid;
} else {
valid = true;
return valid;
}
}
//--------------------------
// event handlers
//--------------------------
}
export { EntryTasks as default }

Some files were not shown because too many files have changed in this diff Show more