Update ckeditor

Avoid empty commands
Small fixes
This commit is contained in:
RainLoop Team 2016-09-01 23:41:36 +03:00
parent 969f15dd6b
commit a60ffc06e1
167 changed files with 12173 additions and 12278 deletions

6
.gitignore vendored
View file

@ -7,15 +7,15 @@
/rainloop.sublime-project
/rainloop.sublime-workspace
/rainloop/v/0.0.0/static/ckeditor/*
!/rainloop/v/0.0.0/static/ckeditor/.gitempty
/rainloop/v/0.0.0/static/svg/*
!/rainloop/v/0.0.0/static/svg/.gitempty
/rainloop/v/0.0.0/static/css/fonts/*
!/rainloop/v/0.0.0/static/css/fonts/.gitempty
/rainloop/v/0.0.0/static/css/*.css
/rainloop/v/0.0.0/static/js/*.js
/rainloop/v/0.0.0/static/js/**/*.js
!/rainloop/v/0.0.0/static/js/min/.gitempty
/rainloop/v/0.0.0/app/localization/moment/*
!/rainloop/v/0.0.0/app/localization/moment/.gitempty
/vendors/.*
/node_modules
/build/local
/build/dist

View file

@ -232,6 +232,11 @@ class CmdContoller
cmdParts = trim(cmdLine).replace().split(/[\s]+/),
cmd = cmdParts.shift();
if ('' === trim(cmdLine))
{
return false;
}
if (isTab)
{
if (-1 < inArray(cmd, this.cmds))
@ -274,6 +279,8 @@ class CmdContoller
}, 50);
}
}
return true;
}
onEsc() {

3
dev/External/ko.js vendored
View file

@ -131,9 +131,8 @@ ko.bindingHandlers.pikaday = {
ko.bindingHandlers.visibleAnimated = {
init: (element, fValueAccessor) => {
const $el = $(element);
$el.addClass('rl-animated-visible');
if (ko.unwrap(fValueAccessor())) {
$el.how();
$el.show();
} else {
$el.hide();
}

View file

@ -145,36 +145,34 @@
.submitting-pane {
position: relative;
&.submitting {
&:before{
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: transparent;
background: rgba(0,0,0,.3);
z-index: 1051;
border-radius: 8px;
}
&:after{
content: '';
position: absolute;
width: 60px;
height: 60px;
top: 50%;
left: 50%;
margin-top: -30px;
margin-left: -30px;
&.submitting:before{
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: transparent;
background: rgba(0,0,0,.3);
z-index: 1051;
border-radius: 8px;
}
html.cssanimations &.submitting:after{
content: '';
position: absolute;
width: 60px;
height: 60px;
top: 50%;
left: 50%;
margin-top: -30px;
margin-left: -30px;
border: 8px solid transparent;
border-color: transparent;
border-top-color: #fff;
animation: loginRotation 1s infinite ease-in-out;
border: 8px solid transparent;
border-color: transparent;
border-top-color: #fff;
animation: loginRotation 1s infinite ease-in-out;
border-radius: 50%;
z-index: 1052;
}
border-radius: 50%;
z-index: 1052;
}
}

View file

@ -16,13 +16,9 @@ import * as Settings from 'Storage/Settings';
import {getApp} from 'Helper/Apps/User';
import {view, ViewType, showScreenPopup, setHash} from 'Knoin/Knoin';
import {showScreenPopup, setHash} from 'Knoin/Knoin';
import {AbstractViewNext} from 'Knoin/AbstractViewNext';
@view({
type: ViewType.Right,
templateID: 'SystemDropDown'
})
class AbstractSystemDropDownUserView extends AbstractViewNext
{
constructor() {

View file

@ -15,7 +15,7 @@ import {
import {
trim, inArray, pInt,
convertLangName,
createCommand,
createCommand, createCommandLegacy,
triggerAutocompleteInputChange
} from 'Common/Utils';
@ -150,137 +150,6 @@ class LoginUserView extends AbstractViewNext
() => LoginSignMeType.Unused !== this.signMeType()
);
this.submitCommand = createCommand(() => {
triggerAutocompleteInputChange();
this.emailError(false);
this.passwordError(false);
this.emailError('' === trim(this.email()));
this.passwordError('' === trim(this.password()));
if (this.additionalCode.visibility())
{
this.additionalCode.error(false);
this.additionalCode.error('' === trim(this.additionalCode()));
}
if (this.emailError() || this.passwordError() ||
(this.additionalCode.visibility() && this.additionalCode.error()))
{
switch (true)
{
case this.emailError():
this.emailFocus(true);
break;
case this.passwordError():
this.passwordFocus(true);
break;
case this.additionalCode.visibility() && this.additionalCode.error():
this.additionalCode.focused(true);
break;
// no default
}
return false;
}
let
pluginResultCode = 0,
pluginResultMessage = '';
const
fSubmitResult = (iResultCode, sResultMessage) => {
pluginResultCode = iResultCode || 0;
pluginResultMessage = sResultMessage || '';
};
Plugins.runHook('user-login-submit', [fSubmitResult]);
if (0 < pluginResultCode)
{
this.submitError(getNotification(pluginResultCode));
return false;
}
else if ('' !== pluginResultMessage)
{
this.submitError(pluginResultMessage);
return false;
}
this.submitRequest(true);
const
fLoginRequest = (sLoginPassword) => {
Remote.login((sResult, oData) => {
if (StorageResultType.Success === sResult && oData && 'Login' === oData.Action)
{
if (oData.Result)
{
if (oData.TwoFactorAuth)
{
this.additionalCode('');
this.additionalCode.visibility(true);
this.submitRequest(false);
_.delay(() => this.additionalCode.focused(true), Magics.Time100ms);
}
else if (oData.Admin)
{
getApp().redirectToAdminPanel();
}
else
{
getApp().loginAndLogoutReload(false);
}
}
else if (oData.ErrorCode)
{
this.submitRequest(false);
if (-1 < inArray(oData.ErrorCode, [Notification.InvalidInputArgument]))
{
oData.ErrorCode = Notification.AuthError;
}
this.submitError(getNotificationFromResponse(oData));
if ('' === this.submitError())
{
this.submitError(getNotification(Notification.UnknownError));
}
else if (oData.ErrorMessageAdditional)
{
this.submitErrorAddidional(oData.ErrorMessageAdditional);
}
}
else
{
this.submitRequest(false);
}
}
else
{
this.submitRequest(false);
this.submitError(getNotification(Notification.UnknownError));
}
}, this.email(), '', sLoginPassword, !!this.signMe(),
this.bSendLanguage ? this.language() : '',
this.additionalCode.visibility() ? this.additionalCode() : '',
this.additionalCode.visibility() ? !!this.additionalCodeSignMe() : false
);
Local.set(ClientSideKeyName.LastSignMe, this.signMe() ? '-1-' : '-0-');
};
fLoginRequest(this.password());
return true;
}, () => !this.submitRequest());
this.facebookLoginEnabled = ko.observable(false);
this.facebookCommand = createCommand(() => {
@ -325,6 +194,140 @@ class LoginUserView extends AbstractViewNext
{
this.submitError(Settings.settingsGet('AdditionalLoginError'));
}
// commands // todo
this.submitCommand = createCommandLegacy(this, this.submitCommand, () => !this.submitRequest());
}
submitCommand() {
triggerAutocompleteInputChange();
this.emailError(false);
this.passwordError(false);
this.emailError('' === trim(this.email()));
this.passwordError('' === trim(this.password()));
if (this.additionalCode.visibility())
{
this.additionalCode.error(false);
this.additionalCode.error('' === trim(this.additionalCode()));
}
if (this.emailError() || this.passwordError() ||
(this.additionalCode.visibility() && this.additionalCode.error()))
{
switch (true)
{
case this.emailError():
this.emailFocus(true);
break;
case this.passwordError():
this.passwordFocus(true);
break;
case this.additionalCode.visibility() && this.additionalCode.error():
this.additionalCode.focused(true);
break;
// no default
}
return false;
}
let
pluginResultCode = 0,
pluginResultMessage = '';
const
fSubmitResult = (iResultCode, sResultMessage) => {
pluginResultCode = iResultCode || 0;
pluginResultMessage = sResultMessage || '';
};
Plugins.runHook('user-login-submit', [fSubmitResult]);
if (0 < pluginResultCode)
{
this.submitError(getNotification(pluginResultCode));
return false;
}
else if ('' !== pluginResultMessage)
{
this.submitError(pluginResultMessage);
return false;
}
this.submitRequest(true);
const
fLoginRequest = (sLoginPassword) => {
Remote.login((sResult, oData) => {
if (StorageResultType.Success === sResult && oData && 'Login' === oData.Action)
{
if (oData.Result)
{
if (oData.TwoFactorAuth)
{
this.additionalCode('');
this.additionalCode.visibility(true);
this.submitRequest(false);
_.delay(() => this.additionalCode.focused(true), Magics.Time100ms);
}
else if (oData.Admin)
{
getApp().redirectToAdminPanel();
}
else
{
getApp().loginAndLogoutReload(false);
}
}
else if (oData.ErrorCode)
{
this.submitRequest(false);
if (-1 < inArray(oData.ErrorCode, [Notification.InvalidInputArgument]))
{
oData.ErrorCode = Notification.AuthError;
}
this.submitError(getNotificationFromResponse(oData));
if ('' === this.submitError())
{
this.submitError(getNotification(Notification.UnknownError));
}
else if (oData.ErrorMessageAdditional)
{
this.submitErrorAddidional(oData.ErrorMessageAdditional);
}
}
else
{
this.submitRequest(false);
}
}
else
{
this.submitRequest(false);
this.submitError(getNotification(Notification.UnknownError));
}
}, this.email(), '', sLoginPassword, !!this.signMe(),
this.bSendLanguage ? this.language() : '',
this.additionalCode.visibility() ? this.additionalCode() : '',
this.additionalCode.visibility() ? !!this.additionalCodeSignMe() : false
);
Local.set(ClientSideKeyName.LastSignMe, this.signMe() ? '-1-' : '-0-');
};
fLoginRequest(this.password());
return true;
}
displayMainForm() {

View file

@ -1,9 +1,11 @@
import {view} from 'Knoin/Knoin';
import {view, ViewType} from 'Knoin/Knoin';
import {AbstractSystemDropDownUserView} from 'View/User/AbstractSystemDropDown';
@view({
name: 'View/User/MailBox/SystemDropDown'
name: 'View/User/MailBox/SystemDropDown',
type: ViewType.Right,
templateID: 'SystemDropDown'
})
class SystemDropDownMailBoxUserView extends AbstractSystemDropDownUserView {}

View file

@ -1,9 +1,11 @@
import {view} from 'Knoin/Knoin';
import {view, ViewType} from 'Knoin/Knoin';
import {AbstractSystemDropDownUserView} from 'View/User/AbstractSystemDropDown';
@view({
name: 'View/User/Settings/SystemDropDown'
name: 'View/User/Settings/SystemDropDown',
type: ViewType.Right,
templateID: 'SystemDropDown'
})
class SystemDropDownSettingsUserView extends AbstractSystemDropDownUserView {}

View file

@ -337,17 +337,6 @@ gulp.task('js:libs', function() {
.pipe(gulp.dest(cfg.paths.staticJS));
});
gulp.task('js:ckeditor:beautify', function() {
var beautify = require('gulp-beautify');
return gulp.src(cfg.paths.static + 'ckeditor/ckeditor.js')
.pipe(beautify({
'indentSize': 2
}))
.pipe(rename('ckeditor.beautify.js'))
.pipe(eol('\n', true))
.pipe(gulp.dest(cfg.paths.static + 'ckeditor/'));
});
gulp.task('js:clean', function() {
return cleanDir(cfg.paths.staticJS + '/**/*.js');
});
@ -421,10 +410,6 @@ gulp.task('fontastic-fonts:clear', function() {
return cleanDir('rainloop/v/' + cfg.devVersion + '/static/css/fonts/rainloop.*');
});
gulp.task('fontastic-svg:clear', function() {
return cleanDir('rainloop/v/' + cfg.devVersion + '/static/css/svg/*.svg');
});
gulp.task('lightgallery-fonts:copy', ['lightgallery-fonts:clear'], function() {
return gulp.src('node_modules/lightgallery/dist/fonts/lg.*')
.pipe(gulp.dest('rainloop/v/' + cfg.devVersion + '/static/css/fonts'));
@ -435,20 +420,15 @@ gulp.task('fontastic-fonts:copy', ['fontastic-fonts:clear'], function() {
.pipe(gulp.dest('rainloop/v/' + cfg.devVersion + '/static/css/fonts'));
});
gulp.task('fontastic-svg:copy', ['fontastic-svg:clear'], function() {
return gulp.src('vendors/fontastic/svg/*.svg')
.pipe(gulp.dest('rainloop/v/' + cfg.devVersion + '/static/css/svg'));
});
gulp.task('lightgallery', ['lightgallery-fonts:copy']);
gulp.task('fontastic', ['fontastic-fonts:copy', 'fontastic-svg:copy']);
gulp.task('fontastic', ['fontastic-fonts:copy']);
gulp.task('ckeditor:clear', function() {
return cleanDir('rainloop/v/' + cfg.devVersion + '/static/ckeditor');
});
gulp.task('ckeditor:copy', ['ckeditor:clear'], function() {
return gulp.src(['vendors/ckeditor/**/*', 'vendors/ckeditor/.gitempty', '!vendors/ckeditor/samples{,/**}', '!vendors/ckeditor/adapters{,/**}', '!vendors/ckeditor/*.md'])
return gulp.src(['vendors/ckeditor/**/*', '!vendors/ckeditor/samples{,/**}', '!vendors/ckeditor/adapters{,/**}', '!vendors/ckeditor/*.md'])
.pipe(gulp.dest('rainloop/v/' + cfg.devVersion + '/static/ckeditor'));
});
@ -457,7 +437,7 @@ gulp.task('ckeditor:copy-plugins', ['ckeditor:copy'], function() {
.pipe(gulp.dest('rainloop/v/' + cfg.devVersion + '/static/ckeditor/plugins'));
});
gulp.task('ckeditor', ['ckeditor:copy-plugins'], function () {
gulp.task('ckeditor', ['ckeditor:copy-plugins', 'ckeditor:copy', 'ckeditor:clear'], function () {
return gulp.src('rainloop/v/' + cfg.devVersion + '/static/ckeditor/*.js')
.pipe(stripbom())
.pipe(header("\uFEFF")) // BOM

55
npm-shrinkwrap.json generated
View file

@ -1,6 +1,6 @@
{
"name": "rainloop",
"version": "1.10.3",
"version": "1.10.4",
"dependencies": {
"abbrev": {
"version": "1.0.9",
@ -526,9 +526,9 @@
"resolved": "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.14.0.tgz"
},
"babel-plugin-transform-runtime": {
"version": "6.12.0",
"from": "babel-plugin-transform-runtime@>=6.9.0 <7.0.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.12.0.tgz"
"version": "6.15.0",
"from": "babel-plugin-transform-runtime@6.15.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.15.0.tgz"
},
"babel-plugin-transform-strict-mode": {
"version": "6.11.3",
@ -949,11 +949,6 @@
"from": "concat-with-sourcemaps@*",
"resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.0.4.tgz"
},
"config-chain": {
"version": "1.1.10",
"from": "config-chain@>=1.1.5 <1.2.0",
"resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.10.tgz"
},
"configstore": {
"version": "2.0.0",
"from": "configstore@>=2.0.0 <3.0.0",
@ -1708,11 +1703,6 @@
"from": "gulp-autoprefixer@>=3.1.1 <4.0.0",
"resolved": "https://registry.npmjs.org/gulp-autoprefixer/-/gulp-autoprefixer-3.1.1.tgz"
},
"gulp-beautify": {
"version": "2.0.0",
"from": "gulp-beautify@>=2.0.0 <3.0.0",
"resolved": "https://registry.npmjs.org/gulp-beautify/-/gulp-beautify-2.0.0.tgz"
},
"gulp-cached": {
"version": "1.1.0",
"from": "gulp-cached@>=1.1.0 <2.0.0",
@ -2455,11 +2445,6 @@
"from": "js-base64@>=2.1.9 <3.0.0",
"resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.1.9.tgz"
},
"js-beautify": {
"version": "1.6.3",
"from": "js-beautify@>=1.5.10 <2.0.0",
"resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.6.3.tgz"
},
"js-cookie": {
"version": "2.1.2",
"from": "js-cookie@>=2.1.2 <3.0.0",
@ -2761,11 +2746,6 @@
"from": "lodash.assignwith@>=4.0.7 <5.0.0",
"resolved": "https://registry.npmjs.org/lodash.assignwith/-/lodash.assignwith-4.2.0.tgz"
},
"lodash.clonedeep": {
"version": "4.5.0",
"from": "lodash.clonedeep@>=4.3.2 <5.0.0",
"resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz"
},
"lodash.defaults": {
"version": "2.4.1",
"from": "lodash.defaults@>=2.4.1 <3.0.0",
@ -3139,11 +3119,6 @@
"from": "node.extend@>=1.1.3 <2.0.0",
"resolved": "https://registry.npmjs.org/node.extend/-/node.extend-1.1.5.tgz"
},
"nopt": {
"version": "3.0.6",
"from": "nopt@>=3.0.1 <3.1.0",
"resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz"
},
"normalize-package-data": {
"version": "2.3.5",
"from": "normalize-package-data@>=2.3.4 <3.0.0",
@ -3456,11 +3431,6 @@
"from": "promise-finally@>=2.0.1 <3.0.0",
"resolved": "https://registry.npmjs.org/promise-finally/-/promise-finally-2.2.1.tgz"
},
"proto-list": {
"version": "1.2.4",
"from": "proto-list@>=1.2.1 <1.3.0",
"resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz"
},
"prr": {
"version": "0.0.0",
"from": "prr@>=0.0.0 <0.1.0",
@ -3528,23 +3498,6 @@
"from": "rc@>=1.1.5 <2.0.0",
"resolved": "https://registry.npmjs.org/rc/-/rc-1.1.6.tgz"
},
"rcfinder": {
"version": "0.1.9",
"from": "rcfinder@>=0.1.6 <0.2.0",
"resolved": "https://registry.npmjs.org/rcfinder/-/rcfinder-0.1.9.tgz"
},
"rcloader": {
"version": "0.1.4",
"from": "rcloader@>=0.1.2 <0.2.0",
"resolved": "https://registry.npmjs.org/rcloader/-/rcloader-0.1.4.tgz",
"dependencies": {
"lodash": {
"version": "3.10.1",
"from": "lodash@>=3.0.1 <4.0.0",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz"
}
}
},
"read-all-stream": {
"version": "3.1.0",
"from": "read-all-stream@>=3.0.0 <4.0.0",

View file

@ -54,7 +54,7 @@
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-es2016": "^6.11.3",
"babel-preset-stage-0": "^6.5.0",
@ -64,7 +64,6 @@
"es6-promise-polyfill": "^1.2.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-beautify": "^2.0.0",
"gulp-cached": "^1.1.0",
"gulp-clean-css": "^2.0.7",
"gulp-concat-util": "^0.5.5",

View file

@ -1,42 +0,0 @@
<?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">
<metadata>
<json>
<![CDATA[
{
"fontFamily": "lg",
"majorVersion": 1,
"minorVersion": 0,
"fontURL": "https://github.com/sachinchoolur/lightGallery",
"copyright": "sachin",
"license": "MLT",
"licenseURL": "http://opensource.org/licenses/MIT",
"version": "Version 1.0",
"fontId": "lg",
"psName": "lg",
"subFamily": "Regular",
"fullName": "lg",
"description": "Font generated by IcoMoon."
}
]]>
</json>
</metadata>
<defs>
<font id="lg" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
<glyph unicode="&#xe01a;" glyph-name="pause_circle_outline" data-tags="pause_circle_outline" d="M554 256.667v340h86v-340h-86zM512 84.667q140 0 241 101t101 241-101 241-241 101-241-101-101-241 101-241 241-101zM512 852.667q176 0 301-125t125-301-125-301-301-125-301 125-125 301 125 301 301 125zM384 256.667v340h86v-340h-86z" />
<glyph unicode="&#xe01d;" glyph-name="play_circle_outline" data-tags="play_circle_outline" d="M512 84.667q140 0 241 101t101 241-101 241-241 101-241-101-101-241 101-241 241-101zM512 852.667q176 0 301-125t125-301-125-301-301-125-301 125-125 301 125 301 301 125zM426 234.667v384l256-192z" />
<glyph unicode="&#xe033;" glyph-name="stack-2" data-tags="stack-2" d="M384 853.334h426.667q53 0 90.5-37.5t37.5-90.5v-426.667q0-53-37.5-90.5t-90.5-37.5h-426.667q-53 0-90.5 37.5t-37.5 90.5v426.667q0 53 37.5 90.5t90.5 37.5zM170.667 675.334v-547.333q0-17.667 12.5-30.167t30.167-12.5h547.333q-13.333-37.667-46.333-61.5t-74.333-23.833h-426.667q-53 0-90.5 37.5t-37.5 90.5v426.667q0 41.333 23.833 74.333t61.5 46.333zM810.667 768h-426.667q-17.667 0-30.167-12.5t-12.5-30.167v-426.667q0-17.667 12.5-30.167t30.167-12.5h426.667q17.667 0 30.167 12.5t12.5 30.167v426.667q0 17.667-12.5 30.167t-30.167 12.5z" />
<glyph unicode="&#xe070;" glyph-name="clear" data-tags="clear" d="M810 664.667l-238-238 238-238-60-60-238 238-238-238-60 60 238 238-238 238 60 60 238-238 238 238z" />
<glyph unicode="&#xe094;" glyph-name="arrow-left" data-tags="arrow-left" d="M426.667 768q17.667 0 30.167-12.5t12.5-30.167q0-18-12.667-30.333l-225.667-225.667h665q17.667 0 30.167-12.5t12.5-30.167-12.5-30.167-30.167-12.5h-665l225.667-225.667q12.667-12.333 12.667-30.333 0-17.667-12.5-30.167t-30.167-12.5q-18 0-30.333 12.333l-298.667 298.667q-12.333 13-12.333 30.333t12.333 30.333l298.667 298.667q12.667 12.333 30.333 12.333z" />
<glyph unicode="&#xe095;" glyph-name="arrow-right" data-tags="arrow-right" d="M597.333 768q18 0 30.333-12.333l298.667-298.667q12.333-12.333 12.333-30.333t-12.333-30.333l-298.667-298.667q-12.333-12.333-30.333-12.333-18.333 0-30.5 12.167t-12.167 30.5q0 18 12.333 30.333l226 225.667h-665q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5h665l-226 225.667q-12.333 12.333-12.333 30.333 0 18.333 12.167 30.5t30.5 12.167z" />
<glyph unicode="&#xe0f2;" glyph-name="vertical_align_bottom" data-tags="vertical_align_bottom" d="M170 128.667h684v-86h-684v86zM682 384.667l-170-172-170 172h128v426h84v-426h128z" />
<glyph unicode="&#xe1ff;" glyph-name="apps" data-tags="apps" d="M682 84.667v172h172v-172h-172zM682 340.667v172h172v-172h-172zM426 596.667v172h172v-172h-172zM682 768.667h172v-172h-172v172zM426 340.667v172h172v-172h-172zM170 340.667v172h172v-172h-172zM170 84.667v172h172v-172h-172zM426 84.667v172h172v-172h-172zM170 596.667v172h172v-172h-172z" />
<glyph unicode="&#xe20c;" glyph-name="fullscreen" data-tags="fullscreen" d="M598 724.667h212v-212h-84v128h-128v84zM726 212.667v128h84v-212h-212v84h128zM214 512.667v212h212v-84h-128v-128h-84zM298 340.667v-128h128v-84h-212v212h84z" />
<glyph unicode="&#xe20d;" glyph-name="fullscreen_exit" data-tags="fullscreen_exit" d="M682 596.667h128v-84h-212v212h84v-128zM598 128.667v212h212v-84h-128v-128h-84zM342 596.667v128h84v-212h-212v84h128zM214 256.667v84h212v-212h-84v128h-128z" />
<glyph unicode="&#xe311;" glyph-name="zoom_in" data-tags="zoom_in" d="M512 512.667h-86v-86h-42v86h-86v42h86v86h42v-86h86v-42zM406 340.667q80 0 136 56t56 136-56 136-136 56-136-56-56-136 56-136 136-56zM662 340.667l212-212-64-64-212 212v34l-12 12q-76-66-180-66-116 0-197 80t-81 196 81 197 197 81 196-81 80-197q0-104-66-180l12-12h34z" />
<glyph unicode="&#xe312;" glyph-name="zoom_out" data-tags="zoom_out" d="M298 554.667h214v-42h-214v42zM406 340.667q80 0 136 56t56 136-56 136-136 56-136-56-56-136 56-136 136-56zM662 340.667l212-212-64-64-212 212v34l-12 12q-76-66-180-66-116 0-197 80t-81 196 81 197 197 81 196-81 80-197q0-104-66-180l12-12h34z" />
</font></defs></svg>

Before

Width:  |  Height:  |  Size: 4.6 KiB

View file

@ -1,127 +0,0 @@
<?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">
<metadata>Generated by Fontastic.me</metadata>
<defs>
<font id="rainloop" horiz-adv-x="512">
<font-face font-family="rainloop" units-per-em="512" ascent="480" descent="-32"/>
<missing-glyph horiz-adv-x="512" />
<glyph glyph-name="arrows-in" unicode="&#57344;" d="M184 54l24 145c1 3 0 5-2 7 0 0 0 0 0 0-2 2-5 3-7 3l-145-25c-3 0-5-2-6-5-1-3 0-7 2-9l28-28-76-76c-3-3-3-8 0-11l53-53c3-3 8-3 11 0l76 76 28-28c3-2 6-3 9-2 3 1 5 3 5 6z m144 404l-24-145c-1-3 0-5 2-7 0 0 0 0 0 0 2-2 5-3 7-3l145 25c3 0 5 2 6 5 1 3 0 7-2 9l-28 28 76 76c3 3 3 8 0 11l-53 53c-3 3-8 3-11 0l-76-76-28 28c-3 2-6 3-9 2-3-1-5-3-5-6z m130-274l-145 24c-3 1-5 0-7-2 0 0 0 0 0 0-2-2-3-5-3-7l25-145c0-3 2-5 5-6 3-1 7 0 9 2l28 28 76-76c3-3 8-3 11 0l53 53c3 3 3 8 0 11l-76 76 28 28c2 3 3 6 2 9-1 3-3 5-6 5z m-404 144l145-24c3-1 5 0 7 2 0 0 0 0 0 0 2 2 3 5 3 7l-25 145c0 3-2 5-5 6-3 1-6 0-9-2l-28-28-76 76c-3 3-8 3-11 0l-53-53c-3-3-3-8 0-11l76-76-28-28c-2-3-3-6-2-9 1-3 3-5 6-5z"/>
<glyph glyph-name="arrows-out" unicode="&#57345;" d="M24 154l-24-144c0-3 1-6 2-8 0 0 0 0 0 0 2-1 5-2 8-2l144 25c3 0 6 2 6 5 1 3 1 6-2 8l-28 29 76 75c3 4 3 9 0 12l-52 52c-3 4-9 4-12 0l-76-75-28 28c-2 2-5 3-8 2-3-1-5-4-6-7z m464 204l24 144c0 3-1 6-2 8 0 0 0 0 0 0-2 1-5 2-8 2l-144-25c-3 0-6-2-6-5-1-3-1-6 2-8l28-29-76-75c-3-4-3-9 0-12l52-52c3-4 9-4 12 0l76 75 28-28c2-2 5-3 8-2 3 1 5 4 6 7z m-130-334l144-24c3 0 6 1 8 2 0 0 0 0 0 0 1 2 2 5 2 8l-25 144c0 3-2 6-5 6-3 1-6 1-8-2l-29-28-75 76c-4 3-9 3-12 0l-52-52c-4-3-4-9 0-12l75-76-28-28c-2-2-3-5-2-8 1-3 4-5 7-6z m-204 464l-144 24c-3 0-6-1-8-2 0 0 0 0 0 0-1-2-2-5-2-8l25-144c0-3 2-6 5-6 3-1 6-1 8 2l29 28 75-76c4-3 9-3 12 0l52 52c4 3 4 9 0 12l-75 76 28 28c2 2 3 5 2 8-1 3-4 5-7 6z"/>
<glyph glyph-name="list" unicode="&#57346;" d="M90 357l0 0c0-6 5-12 11-12l0 0 310 0 0 0c6 0 11 6 11 12l0 0 0 54c0 6-5 11-11 11l-310 0c-6 0-11-5-11-11 0-1 0-1 0-1z m321-63l-310 0c-6 0-11-5-11-11 0 0 0-1 0-1l0-53 0 0c0-6 5-11 11-11l0 0 310 0 0 0c6 0 11 5 11 11l0 0 0 54c0 6-5 11-11 11z m0-127l-310 0c-6 0-11-6-11-12 0 0 0 0 0-1l0-53 0 0c0-6 5-11 11-11l0 0 310 0 0 0c6 0 11 5 11 11l0 0 0 54c0 6-5 12-11 12z"/>
<glyph glyph-name="search" unicode="&#57347;" d="M291 459c-91 0-164-74-164-164 0-31 8-60 23-85l-79-79 0 0c-8-8-14-20-14-33 0-25 21-45 46-45 12 0 24 5 32 14l0-1 82 82c22-11 47-17 74-17 90 0 164 73 164 164 0 90-74 164-164 164z m1-263c-57 0-103 45-103 102 0 56 46 102 103 102 56 0 102-46 102-102 0-57-46-102-102-102z"/>
<glyph glyph-name="user" unicode="&#57348;" d="M392 142c70-24 105-45 105-62 0 0 0-54 0-54 0 0-241 0-241 0 0 0-241 0-241 0 0 0 0 54 0 54 0 17 35 38 105 62 32 12 54 24 65 36 12 12 18 28 18 48 0 8-4 16-12 25-7 10-12 22-16 38-1 4-2 7-5 9-2 2-4 3-7 4-2 1-4 4-7 9-2 5-4 12-4 22 0 5 0 10 2 13 2 4 3 6 5 6 0 0 2 2 2 2-3 17-5 32-6 45-2 19 5 38 21 58 15 19 42 29 80 29 38 0 65-10 81-29 16-20 22-39 20-58 0 0-6-45-6-45 6-2 9-10 9-21 0-10-2-17-4-22-3-5-5-8-7-9-3-1-5-2-7-4-3-2-4-5-5-9-3-17-8-29-16-38-8-9-12-17-12-25 0-20 6-36 18-48 12-12 34-24 65-36"/>
<glyph glyph-name="user-add" unicode="&#57349;" d="M317 142c62-22 93-42 93-62 0 0 0-54 0-54 0 0-410 0-410 0 0 0 0 103 0 103 12 5 26 9 42 13 32 12 54 24 66 36 12 12 18 28 18 48 0 8-4 16-12 25-8 9-13 21-16 38 0 4-4 8-11 13-8 4-12 14-13 31 0 5 1 10 2 13 2 4 4 6 5 6 0 0 2 2 2 2-3 17-5 32-6 45-2 19 5 38 20 58 16 19 43 29 82 29 39 0 66-10 82-29 16-20 23-39 22-58 0 0-8-45-8-45 7-2 10-10 10-21-1-10-3-17-5-22-2-5-5-8-7-9-2-1-5-2-7-4-3-2-4-5-5-9-3-16-9-28-17-38-8-9-12-17-12-25 0-20 7-36 19-48 12-12 34-24 66-36m118 140c0 0 77 0 77 0 0 0 0-52 0-52 0 0-77 0-77 0 0 0 0-76 0-76 0 0-51 0-51 0 0 0 0 76 0 76 0 0-77 0-77 0 0 0 0 52 0 52 0 0 77 0 77 0 0 0 0 76 0 76 0 0 51 0 51 0 0 0 0-76 0-76"/>
<glyph glyph-name="tags" unicode="&#57350;" d="M119 375c0 10-3 18-10 25-6 6-14 10-24 10-9 0-17-4-24-10-6-7-10-15-10-25 0-9 4-17 10-24 7-6 15-10 24-10 10 0 18 4 24 10 7 7 10 15 10 24z m285-153c0-10-3-18-10-24l-131-131c-7-7-15-10-24-10-9 0-17 3-24 10l-191 191c-6 6-12 15-17 27-5 11-7 21-7 31l0 111c0 9 3 17 10 24 7 6 15 10 24 10l111 0c9 0 20-3 31-7 12-5 21-11 27-17l191-191c7-7 10-15 10-24z m102 0c0-10-3-18-9-24l-131-131c-7-7-15-10-25-10-6 0-11 1-15 4-4 2-9 6-15 12l126 125c6 6 10 14 10 24 0 9-4 17-10 24l-191 191c-7 6-16 12-27 17-11 4-22 7-31 7l59 0c10 0 20-3 32-7 11-5 20-11 27-17l191-191c6-7 9-15 9-24z"/>
<glyph glyph-name="paper-plane" unicode="&#57351;" d="M478 445c5 2 8 1 11-1 3-2 4-6 2-10 0-2-13-55-37-159-23-103-36-157-37-161-1-5-4-8-8-10-4-2-8-2-12 0 0 0-127 69-127 69 0 0-15 8-15 8 0 0 11 14 11 14 132 143 200 216 202 218 1 1 1 3-1 4-2 2-3 2-4 1 0 0-282-206-282-206 0 0-57 22-57 22 0 0-98 39-98 39-4 2-6 4-6 7 0 2 2 4 6 6 3 1 78 28 226 80 148 52 223 79 226 79m-298-372c0 0 0 104 0 104 0 0 82-42 82-42-44-39-69-61-73-65-6-5-9-4-9 3"/>
<glyph glyph-name="reply" unicode="&#57352;" d="M486 82c-29 52-64 85-106 101-42 15-98 23-169 23 0 0 0-112 0-112 0 0-185 171-185 171 0 0 185 165 185 165 0 0 0-98 0-98 31 0 59-5 86-14 27-9 49-21 67-36 18-15 35-31 49-49 15-17 27-35 36-53 8-18 16-34 22-48 6-15 10-27 12-36 0 0 3-14 3-14"/>
<glyph glyph-name="reply-all" unicode="&#57353;" d="M185 361c0 0-108-96-108-96 0 0 108-100 108-100 0 0 0-71 0-71 0 0-185 171-185 171 0 0 185 165 185 165 0 0 0-69 0-69m128-29c36 0 67-9 94-26 26-17 46-38 58-62 13-25 23-49 31-74 8-25 13-45 14-62 0 0 2-26 2-26-29 52-58 86-86 101-28 15-66 23-113 23 0 0 0-112 0-112 0 0-185 171-185 171 0 0 185 165 185 165 0 0 0-98 0-98"/>
<glyph glyph-name="forward" unicode="&#57354;" d="M302 206c-72 0-128-8-170-23-42-16-77-49-106-101 1 7 3 16 6 27 3 11 12 31 26 60 14 29 30 54 49 76 19 22 45 42 80 60 34 18 73 27 115 27 0 0 0 98 0 98 0 0 184-165 184-165 0 0-184-171-184-171 0 0 0 112 0 112"/>
<glyph glyph-name="info" unicode="&#57355;" d="M318 512c17 0 29-5 38-14 9-9 14-21 14-35 0-17-7-32-20-45-14-13-30-20-49-20-16 0-29 5-38 14-9 9-13 21-12 37 0 15 6 30 18 43 12 13 28 20 49 20m-105-512c-34 0-43 30-28 91 0 0 31 130 31 130 5 19 5 29 0 29-4 0-13-3-28-9-14-7-26-13-36-20 0 0-14 23-14 23 31 26 63 48 97 64 34 17 60 25 77 25 27 0 33-28 19-83 0 0-36-136-36-136-6-22-5-33 3-33 15 0 35 10 60 31 0 0 16-21 16-21-29-29-59-52-90-67-31-16-55-24-71-24"/>
<glyph glyph-name="right-dir" unicode="&#57356;" d="M154 374c0 0 204-118 204-118 0 0-204-118-204-118 0 0 0 236 0 236"/>
<glyph glyph-name="down-dir" unicode="&#57357;" d="M374 358c0 0-118-204-118-204 0 0-118 204-118 204 0 0 236 0 236 0"/>
<glyph glyph-name="image" unicode="&#57358;" d="M171 341c0-14-5-26-15-36-10-10-22-15-37-15-14 0-26 5-36 15-10 10-15 22-15 36 0 15 5 27 15 37 10 10 22 15 36 15 15 0 27-5 37-15 10-10 15-22 15-37z m273-102l0-120-376 0 0 52 86 85 42-43 137 137z m25 188l-426 0c-3 0-5-1-6-3-2-2-3-4-3-6l0-324c0-2 1-4 3-6 1-2 3-3 6-3l426 0c3 0 5 1 6 3 2 2 3 4 3 6l0 324c0 2-1 4-3 6-1 2-3 3-6 3z m43-9l0-324c0-12-4-22-13-30-8-9-18-13-30-13l-426 0c-12 0-22 4-30 13-9 8-13 18-13 30l0 324c0 12 4 22 13 30 8 9 18 13 30 13l426 0c12 0 22-4 30-13 9-8 13-18 13-30z"/>
<glyph glyph-name="print" unicode="&#57359;" d="M39 346c-9 0-13 4-11 11 1 4 3 6 6 8 0 0 9 2 25 8 16 6 32 12 47 17 16 5 26 7 30 7 0 0 23 0 23 0 0 0 0 77 0 77 0 0 194 0 194 0 0 0 0-77 0-77 0 0 24 0 24 0 4 0 14-2 29-7 15-5 31-11 47-17 16-6 25-8 25-8 6-3 8-8 6-14-1-3-4-5-10-5 0 0-435 0-435 0m440-29c7 0 13-3 19-9 6-7 9-14 9-21 0 0 0-89 0-89 0-8-3-15-9-21-6-7-12-10-19-10 0 0-51 0-51 0 0 0 23-128 23-128 0 0-390 0-390 0 0 0 23 128 23 128 0 0-50 0-50 0-7 0-14 3-20 10-6 6-9 13-9 21 0 0 0 89 0 89 0 7 3 14 9 21 6 6 13 9 20 9 0 0 445 0 445 0m-366-227c0 0 286 0 286 0 0 0-35 166-35 166 0 0-216 0-216 0 0 0-35-166-35-166"/>
<glyph glyph-name="calendar" unicode="&#57360;" d="M55 37l82 0 0 82-82 0z m100 0l92 0 0 82-92 0z m-100 100l82 0 0 92-82 0z m100 0l92 0 0 92-92 0z m-100 110l82 0 0 82-82 0z m210-210l92 0 0 82-92 0z m-110 210l92 0 0 82-92 0z m220-210l82 0 0 82-82 0z m-110 100l92 0 0 92-92 0z m-100 247l0 82c0 3-1 5-3 7-2 2-4 2-7 2l-18 0c-2 0-4 0-6-2-2-2-3-4-3-7l0-82c0-2 1-5 3-6 2-2 4-3 6-3l18 0c3 0 5 1 7 3 2 1 3 4 3 6z m210-247l82 0 0 92-82 0z m-110 110l92 0 0 82-92 0z m110 0l82 0 0 82-82 0z m9 137l0 82c0 3-1 5-3 7-2 2-4 2-6 2l-18 0c-3 0-5 0-7-2-2-2-3-4-3-7l0-82c0-2 1-5 3-6 2-2 4-3 7-3l18 0c2 0 4 1 6 3 2 1 3 4 3 6z m110 18l0-365c0-10-4-19-11-26-7-7-16-11-26-11l-402 0c-10 0-19 4-26 11-7 7-11 16-11 26l0 365c0 10 4 19 11 26 7 7 16 11 26 11l36 0 0 27c0 13 5 24 14 33 9 9 20 13 32 13l18 0c13 0 24-4 33-13 9-9 13-20 13-33l0-27 110 0 0 27c0 13 4 24 13 33 9 9 20 13 33 13l18 0c12 0 23-4 32-13 9-9 14-20 14-33l0-27 36 0c10 0 19-4 26-11 7-7 11-16 11-26z"/>
<glyph glyph-name="cog" unicode="&#57361;" d="M430 256c0-25 14-45 41-62-4-14-10-28-17-42-24 6-47-2-70-23-18-20-24-43-17-70-14-6-28-13-43-18-16 28-39 42-68 42-29 0-52-14-68-42-15 5-29 12-43 18 7 28 1 51-17 70-18 18-42 24-70 17-4 9-10 23-17 42 28 18 42 41 42 68 0 25-14 46-42 63 7 20 13 34 17 42 26-6 49 2 70 23 18 19 24 42 17 70 15 7 29 13 43 17 16-27 39-41 68-41 29 0 52 14 68 41 14-4 28-10 43-17-7-27-1-50 17-70 23-21 46-29 70-23 7-14 13-28 17-42-27-17-41-38-41-63m-174-93c26 0 48 9 66 27 18 18 27 40 27 66 0 26-9 48-27 67-18 18-40 27-66 27-26 0-48-9-66-27-18-19-27-41-27-67 0-26 9-48 27-66 18-18 40-27 66-27"/>
<glyph glyph-name="wrench" unicode="&#57362;" d="M442 392l-20-20-19-19-25-24c-13-1-26 4-36 13-9 10-14 23-13 36l63 64c1 1 1 3 0 4 0 1 0 1-1 1l0 0c0 0 0 0 0 0 0 0 0 0 0 0-14 6-29 10-45 10-61 0-111-50-111-111 0-12 2-23 6-33l-116-116c-39-1-70-32-70-71 0-39 32-71 71-71 39 0 70 31 71 70l116 116c10-4 21-6 33-6 61 0 111 50 111 111 0 16-4 31-10 45 0 0 0 0 0 0 0 0 0 1 0 1l0 0c0 0-1 0-1 0-1 1-3 1-4 0z m-286-266c0-16-14-29-30-29-16 0-29 13-29 29 0 16 13 30 29 30 16 0 30-14 30-30z"/>
<glyph glyph-name="rocket" unicode="&#57363;" d="M314 198c3-17 4-31 5-42 0-10-1-20-5-30-3-10-5-16-6-21-1-4-7-9-18-16-11-7-19-11-23-13-5-2-17-8-36-16-19-9-34-15-43-19-11-4-19-3-24 2-4 5-4 13-1 23 0 0 20 56 20 56 0 0-66 67-66 67 0 0-54-20-54-20-10-4-17-4-22 1-6 5-6 13-2 24 4 10 9 23 16 40 6 17 11 28 14 33 2 6 6 13 11 23 5 10 9 16 13 19 4 2 9 6 15 10 6 4 13 7 21 7 0 0 26 0 26 0 0 0 12-1 37-3 3 4 8 11 14 20 7 8 20 23 40 43 20 21 40 38 60 53 21 15 46 28 75 39 29 10 57 14 84 9 3 0 5-1 7-3 2-1 3-3 3-7 4-28 1-56-9-86-10-29-22-55-39-77-16-22-33-42-50-61-17-18-32-31-44-41 0 0-19-14-19-14m26 151c8-7 17-11 28-11 11 0 20 4 27 11 8 8 12 18 12 29 0 11-4 20-12 29-7 7-16 11-27 11-11 0-20-4-28-11-7-9-11-18-11-29 0-11 4-21 11-29"/>
<glyph glyph-name="fire" unicode="&#57364;" d="M176 36c-90 51-114 99-100 165 10 48 43 87 46 136 14-26 20-44 21-71 45 55 74 130 76 210 0 0 116-68 123-171 10 21 15 55 5 76 30-21 206-215-23-345 43 84 11 197-64 249 5-22-4-106-37-143 9 62-9 88-9 88 0 0-6-35-29-69-22-32-37-66-9-125z"/>
<glyph glyph-name="purchase" unicode="&#57365;" d="M201 73c0-10-3-19-11-26-7-7-15-10-25-10-11 0-19 3-26 10-7 7-11 16-11 26 0 10 4 19 11 26 7 7 15 11 26 11 10 0 18-4 25-11 8-7 11-16 11-26z m256 0c0-10-3-19-11-26-7-7-15-10-25-10-11 0-19 3-26 10-7 7-11 16-11 26 0 10 4 19 11 26 7 7 15 11 26 11 10 0 18-4 25-11 8-7 11-16 11-26z m37 311l0-146c0-5-2-9-5-12-3-4-7-6-12-7l-298-34c0-2 1-4 1-7 1-2 2-5 2-7 1-2 1-5 1-6 0-3-2-10-7-19l263 0c5 0 9-2 13-5 3-4 5-8 5-13 0-5-2-9-5-13-4-3-8-5-13-5l-293 0c-5 0-9 2-13 5-3 4-5 8-5 13 0 3 1 6 3 11 2 5 5 11 9 17 3 7 5 10 5 11l-50 235-58 0c-5 0-10 2-13 6-4 3-6 8-6 13 0 5 2 9 6 12 3 4 8 6 13 6l73 0c3 0 5-1 8-2 2-1 4-3 6-4 1-2 2-4 3-7 1-3 2-6 2-8 1-2 1-5 2-8 1-4 1-6 1-8l343 0c5 0 10-2 13-5 4-4 6-8 6-13z"/>
<glyph glyph-name="apple" unicode="&#57366;" d="M280 451c16 20 44 34 67 35 3-27-8-54-24-73-16-20-42-35-68-33-3 27 10 54 25 71z m131-368c-19-28-39-56-70-57-31 0-41 19-76 19-35 0-46-18-75-19-30-2-53 30-73 58-39 57-69 162-29 232 20 35 56 57 95 58 30 0 58-20 76-20 18 0 52 25 88 21 15-1 57-6 84-46-2-1-50-29-50-87 1-70 61-93 62-94-1-1-10-33-32-65z"/>
<glyph glyph-name="dropbox" unicode="&#57367;" d="M399 303l-137 84 87 72 137-85z m-51-159l132 78-80 67-129-78z m-107 67l-129 78-80-67 132-78z m-123-56l0-25 132-81 0 154-87-72z m276 0l-45-24-87 72 0-154 132 81z m-144 232l-86 72-138-85 87-71z"/>
<glyph glyph-name="skype" unicode="&#57368;" d="M465 221c2 10 3 22 3 33 0 118-96 214-214 214-11 0-22-1-33-3-20 12-43 19-68 19-71 0-129-57-129-129 0-25 7-48 19-68-2-11-2-22-2-33 0-118 95-214 213-214 12 0 23 1 34 3 19-12 43-19 68-19 71 0 129 57 129 129 0 25-7 48-20 68z m-109-64c-9-13-23-23-40-31-17-7-38-11-62-11-28 0-52 5-70 15-13 7-24 17-32 29-9 12-13 24-13 36 0 6 3 12 8 17 5 5 12 7 19 7 7 0 12-2 16-5 5-4 9-10 12-17 3-8 7-15 11-21 4-5 10-10 18-14 7-3 17-5 30-5 17 0 31 4 41 11 11 7 16 16 16 27 0 9-3 15-8 21-6 5-13 9-23 12-9 3-21 6-36 9-21 5-38 10-52 16-14 6-26 15-34 25-8 11-12 24-12 39 0 15 4 28 13 40 9 11 21 20 38 26 16 7 35 10 58 10 17 0 33-2 46-6 13-5 23-10 32-17 9-7 15-14 19-21 4-8 6-15 6-22 0-7-3-13-8-18-5-6-11-8-19-8-7 0-12 1-16 5-3 3-7 8-11 15-5 10-11 18-19 23-7 6-18 8-34 8-15 0-27-3-36-9-9-6-13-13-13-21 0-5 1-9 4-13 3-4 7-7 13-10 5-3 11-5 16-6 6-2 15-4 28-7 16-4 31-8 44-12 13-4 24-9 34-15 9-7 16-14 22-24 5-9 7-21 7-34 0-17-4-31-13-44z"/>
<glyph glyph-name="creative-commons" unicode="&#57369;" d="M258 256c0 45 30 71 67 71 26 0 48-9 61-33l-30-16c-7 16-20 19-26 19-23 0-31-18-31-41 0-23 10-41 31-41 12 0 22 5 29 20l28-14c-12-22-34-36-60-36-41 0-69 25-69 71z m-64-71c26 0 48 14 60 36l-29 14c-6-15-16-20-28-20-21 0-31 18-31 41 0 23 8 41 31 41 6 0 19-3 26-19l30 16c-13 24-35 33-61 33-37 0-67-26-67-71 0-46 28-71 69-71z m-101-91c-44 44-67 101-67 162 0 61 24 119 68 163 43 44 98 67 162 67 63 0 120-23 164-67 44-44 66-101 66-163 0-63-22-119-65-162-46-44-105-68-165-68-61 0-119 24-163 68z m-26 162c0-49 21-97 57-133 36-36 82-55 132-55 50 0 98 19 135 56 35 35 54 80 54 132 0 51-19 98-55 133-36 36-82 56-134 56-52 0-97-19-132-55-36-37-57-84-57-134z"/>
<glyph glyph-name="ellipsis" unicode="&#57370;" d="M77 312c16 0 29-5 40-16 11-11 16-24 16-40 0-15-5-28-16-39-11-12-24-17-40-17-16 0-29 5-40 17-11 11-17 24-17 39 0 16 6 29 17 40 11 11 24 16 40 16m179 0c16 0 29-5 40-16 11-11 16-24 16-40 0-15-5-28-17-39-11-12-24-17-39-17-15 0-28 5-39 17-12 11-17 24-17 39 0 16 5 29 16 40 11 11 24 16 40 16m179 0c16 0 29-5 40-16 11-11 17-24 17-40 0-15-6-28-17-39-11-12-24-17-40-17-15 0-29 5-40 17-11 11-16 24-16 39 0 16 5 29 16 40 11 11 25 16 40 16"/>
<glyph glyph-name="left" unicode="&#57371;" d="M263 87c0 0-194 169-194 169 0 0 194 169 194 169 0 0 0-97 0-97 0 0 180 0 180 0 0 0 0-143 0-143 0 0-180 0-180 0 0 0 0-98 0-98"/>
<glyph glyph-name="right" unicode="&#57372;" d="M248 425c0 0 195-169 195-169 0 0-195-169-195-169 0 0 0 98 0 98 0 0-179 0-179 0 0 0 0 143 0 143 0 0 179 0 179 0 0 0 0 97 0 97"/>
<glyph glyph-name="down" unicode="&#57373;" d="M425 264c0 0-169-194-169-194 0 0-169 194-169 194 0 0 98 0 98 0 0 0 0 179 0 179 0 0 142 0 142 0 0 0 0-179 0-179 0 0 98 0 98 0"/>
<glyph glyph-name="right-mini" unicode="&#57374;" d="M195 169c0 0 81 87 81 87 0 0-81 88-81 88-9 9-9 17 0 25 9 9 17 9 24 0 0 0 99-100 99-100 8-9 8-17 0-25 0 0-99-100-99-100-7-8-15-8-24 0-9 8-9 16 0 25"/>
<glyph glyph-name="down-mini" unicode="&#57375;" d="M344 317c8 9 16 9 25 0 9-7 9-15 0-24 0 0-101-98-101-98-7-8-15-8-24 0 0 0-101 98-101 98-9 9-9 17 0 24 9 9 17 9 26 0 0 0 87-79 87-79 0 0 88 79 88 79"/>
<glyph glyph-name="up" unicode="&#57376;" d="M425 249c0 0-98 0-98 0 0 0 0-179 0-179 0 0-142 0-142 0 0 0 0 179 0 179 0 0-98 0-98 0 0 0 169 194 169 194 0 0 169-194 169-194"/>
<glyph glyph-name="star-empty" unicode="&#57377;" d="M343 225l88 85-121 18-54 109-54-109-121-18 88-85-21-120 108 57 108-57z m151 102c0-4-3-9-8-14l-103-101 24-143c0-1 0-3 0-5 0-10-3-15-11-15-4 0-8 2-12 4l-128 67-128-67c-4-2-8-4-12-4-4 0-7 2-9 5-2 2-3 6-3 10 0 1 0 3 1 5l24 143-104 101c-4 6-7 10-7 14 0 7 6 12 16 13l144 21 64 130c4 8 8 12 14 12 6 0 10-4 14-12l64-130 144-21c10-1 16-6 16-13z"/>
<glyph glyph-name="star" unicode="&#57378;" d="M494 327c0-4-3-9-8-14l-103-101 24-143c0-1 0-3 0-5 0-4-1-8-3-10-2-3-4-5-8-5-4 0-8 2-12 4l-128 67-128-67c-4-2-8-4-12-4-4 0-7 2-9 5-2 2-3 6-3 10 0 1 0 3 1 5l24 143-104 101c-4 6-7 10-7 14 0 7 6 12 16 13l144 21 64 130c4 8 8 12 14 12 6 0 10-4 14-12l64-130 144-21c10-1 16-6 16-13z"/>
<glyph glyph-name="at" unicode="&#57379;" d="M418 127l-7-5c-17-13-34-24-50-31-29-13-61-20-95-20-49 0-91 14-126 44-39 33-58 78-58 135 0 51 16 95 50 131 36 41 85 61 146 61 33 0 63-8 89-22 42-24 63-62 63-115 0-36-7-65-23-87-15-22-31-33-46-33-8 0-14 3-18 8-3 5-5 10-5 16 0 4 1 8 2 13 1 5 3 13 5 23l35 126-51 0-9-37c-3 12-8 22-16 30-11 12-25 17-44 17-32 0-59-15-81-46-22-30-33-63-33-98 0-31 8-54 22-71 15-17 32-25 54-25 21 0 39 7 55 22 8 8 16 20 22 34 0-2 0-4 0-6 0-2 0-3 0-4 0-11 4-22 13-32 9-10 22-15 38-15 32 0 60 16 85 47 24 32 37 70 37 114 0 56-20 101-59 135-37 32-83 48-139 48-70 0-126-24-171-71-42-44-63-98-63-162 0-57 17-106 51-147 41-51 98-76 172-76 32 0 63 6 92 17 30 11 57 28 83 49 0 0 12 11 5 27-7 16-21 9-25 6z m-132 104c-12-32-28-47-47-47-11 0-19 4-25 13-6 8-9 20-9 34 0 24 7 48 20 73 13 25 29 38 48 38 10 0 17-4 23-11 5-7 8-15 8-26 0-18-6-43-18-74z"/>
<glyph glyph-name="list-add" unicode="&#57380;" d="M179 282c8 0 14-3 19-8 4-5 7-11 7-18 0-7-3-13-8-18-5-5-11-8-18-8 0 0-153 0-153 0-7 0-13 3-18 8-5 5-8 11-8 18 0 7 2 13 7 18 5 5 11 8 19 8 0 0 153 0 153 0m0-103c8 0 14-2 19-7 4-6 7-12 7-18 0-7-3-13-8-18-5-5-11-8-18-8 0 0-153 0-153 0-7 0-13 3-18 8-5 5-8 11-8 18 0 6 2 12 7 18 5 5 11 7 19 7 0 0 153 0 153 0m318 103c10 0 15-9 15-26 0-17-5-26-15-26 0 0-87 0-87 0 0 0 0-87 0-87 0-10-9-15-26-15-17 0-26 5-26 15 0 0 0 87 0 87 0 0-84 0-84 0-10 0-15 9-15 26 0 17 5 26 15 26 0 0 84 0 84 0 0 0 0 87 0 87 0 10 9 15 26 15 17 0 26-5 26-15 0 0 0-87 0-87 0 0 87 0 87 0m-318 102c8 0 14-3 19-8 4-5 7-11 7-18 0-6-3-12-8-18-5-5-11-7-18-7 0 0-153 0-153 0-7 0-13 2-18 7-5 6-8 12-8 18 0 7 2 13 7 18 5 5 11 8 19 8 0 0 153 0 153 0"/>
<glyph glyph-name="google" unicode="&#57381;" d="M407 486l-125 0c-32 0-73-4-108-33-26-22-39-53-39-81 0-47 37-95 101-95 6 0 12 1 19 1-3-7-6-13-6-23 0-19 10-30 18-41-27-2-78-5-115-28-36-21-47-52-47-74 0-45 42-86 130-86 104 0 159 57 159 114 0 42-24 62-50 85l-22 17c-7 5-16 12-16 26 0 13 9 21 17 29 25 20 51 41 51 86 0 46-29 70-43 82l37 0z m-53-370c0-37-31-65-89-65-65 0-107 31-107 74 0 43 39 57 52 62 26 9 58 10 64 10 6 0 9 0 14-1 46-32 66-49 66-80z m-49 195c-9-10-26-17-41-17-52 0-75 67-75 108 0 15 3 32 13 45 10 12 26 19 42 19 50 0 77-67 77-111 0-11-2-30-16-44z"/>
<glyph glyph-name="google-plus" unicode="&#57382;" d="M269 93c0 4-1 8-2 12-1 4-1 7-2 10-1 3-3 7-5 10-3 4-5 6-6 9-2 2-5 5-8 8-3 4-6 6-8 8-2 1-5 4-9 7-4 3-7 5-9 6-1 2-5 4-9 7-5 3-8 5-9 6-3 0-8 1-14 1-11 0-21-1-31-2-9-2-20-4-30-8-11-3-20-7-28-13-8-5-15-12-20-21-5-9-8-19-8-31 0-13 4-24 10-34 7-11 16-19 27-24 11-6 22-11 34-13 12-3 24-5 37-5 11 0 22 1 32 4 10 2 19 6 28 11 9 5 16 12 22 21 5 9 8 19 8 31z m-35 247c0 11-1 23-4 36-4 13-8 25-14 37-6 12-14 22-24 30-10 8-21 12-34 12-18 0-31-7-41-20-10-13-15-29-15-47 0-9 1-18 4-28 2-10 5-20 10-30 4-10 10-19 16-27 6-8 13-14 22-19 9-5 18-7 28-7 18 0 32 5 40 17 8 11 12 27 12 46z m-37 135l125 0-39-22-38 0c13-9 24-21 31-36 7-16 11-32 11-48 0-15-2-27-6-38-5-11-10-20-16-26-7-7-13-13-19-19-7-5-12-11-16-17-5-6-7-13-7-20 0-5 2-9 5-14 3-5 7-9 12-14 5-4 11-9 17-14 6-4 12-10 18-15 6-6 12-13 17-19 5-7 9-15 12-25 3-9 5-19 5-30 0-30-13-57-40-81-29-25-69-37-120-37-11 0-23 1-34 3-12 2-23 5-35 9-12 5-22 10-31 17-9 7-16 15-22 25-6 11-9 22-9 35 0 12 4 25 11 39 6 12 15 22 27 31 12 9 26 16 42 21 15 4 30 8 44 10 14 2 28 3 43 4-12 16-18 30-18 42 0 3 0 5 0 7 1 2 1 4 2 6 0 1 1 3 2 6 1 2 1 4 2 6-8-1-14-2-20-2-29 0-53 10-73 28-20 19-31 43-31 71 0 26 9 50 28 71 18 21 40 35 66 41 18 4 36 5 54 5z m297-73l0-36-73 0 0-73-37 0 0 73-73 0 0 36 73 0 0 73 37 0 0-73z"/>
<glyph glyph-name="twitter" unicode="&#57383;" d="M492 402c-13-18-29-35-49-50 0 0 0-12 0-12 0-44-10-87-30-128-21-41-53-76-96-104-43-28-92-42-148-42-55 0-104 14-149 43 5-1 13-1 24-1 45 0 85 13 120 40-21 1-40 8-56 20-17 12-28 28-34 48 3-1 9-2 17-2 9 0 18 1 26 3-23 5-41 16-56 34-14 18-21 38-21 61 0 0 0 1 0 1 12-6 27-11 43-12-29 20-43 47-43 81 0 16 4 32 13 48 53-64 119-98 200-100-2 6-3 13-3 21 0 27 9 50 28 68 19 19 42 28 69 28 28 0 51-9 70-29 20 4 41 11 61 22-7-22-21-40-42-53 19 3 38 8 56 15"/>
<glyph glyph-name="youtube" unicode="&#57384;" d="M486 346c0 38-30 69-68 69l-324 0c-38 0-68-31-68-69l0-185c0-38 30-69 68-69l324 0c38 0 68 31 68 69z m-276-171l0 174 132-87z"/>
<glyph glyph-name="warning" unicode="&#57385;" d="M499 65c4-6 4-12 0-18-3-5-8-8-15-8 0 0-457 0-457 0-6 0-11 3-14 8-4 6-4 12-1 18 0 0 228 400 228 400 3 6 8 9 16 9 7 0 12-3 15-9 0 0 228-400 228-400m-215 25c0 0 0 51 0 51 0 0-56 0-56 0 0 0 0-51 0-51 0 0 56 0 56 0m0 89c0 0 0 154 0 154 0 0-56 0-56 0 0 0 0-154 0-154 0 0 56 0 56 0"/>
<glyph glyph-name="warning-alt" unicode="&#57386;" d="M256 484c-126 0-228-102-228-228 0-126 102-228 228-228 126 0 228 102 228 228 0 126-102 228-228 228z m0-399c-94 0-171 77-171 171 0 94 77 171 171 171 94 0 171-77 171-171 0-94-77-171-171-171z m-2 312c-23-2-40-23-37-46l12-118c2-13 12-24 26-26 16-1 30 10 31 26l13 118c0 3 0 6 0 8-2 23-22 40-45 38z m-21-220c-7-7-11-16-11-25 0-10 4-19 11-26 7-6 16-10 25-10 9 0 19 4 25 10 7 7 11 16 11 26 0 9-4 18-11 25-13 13-37 13-50 0z"/>
<glyph glyph-name="power" unicode="&#57387;" d="M392 396l0 0c-2 2-5 3-8 3-3 0-5-1-7-3l0 0-1 0c0 0 0 0 0 0l-21-19c0 0 0 0 0-1l0 0 0 0c-2-2-3-4-3-7 0-4 2-8 5-10 25-25 40-60 40-98 0-78-63-141-141-141-78 0-141 63-141 141 0 38 16 73 41 99l0 0c2 2 4 5 4 9 0 3-2 5-4 7l0 0 0 0c0 1 0 1 0 1l-21 19c0 0 0 0 0 0l-1 0 0 0c-2 2-4 3-7 3-4 0-8-2-10-6-33-34-53-81-53-132 0-106 86-192 192-192 106 0 192 86 192 192 0 52-21 100-56 135z m-150-205l28 0c0 0 0 0 0 0 6 0 11 5 11 11l0 230 0 0c0 0 0 0 0 0 0 6-5 11-11 11 0 0 0 0 0 0l-28 0c-6 0-11-5-11-11 0 0 0 0 0 0l0 0 0-230c0-6 5-11 11-11z"/>
<glyph glyph-name="plus" unicode="&#57388;" d="M432 309l-123 0 0 123c0 5-5 10-10 10l-86 0c-5 0-10-5-10-10l0-123-123 0c-5 0-10-5-10-10l0-86c0-3 1-5 3-7 2-2 4-3 7-3l123 0 0-123c0-3 1-5 3-7 2-2 4-3 7-3l86 0c3 0 5 1 7 3 2 2 3 4 3 7l0 123 123 0c3 0 5 1 7 3 2 2 3 4 3 7l0 86c0 5-5 10-10 10z"/>
<glyph glyph-name="ok" unicode="&#57389;" d="M451 357l-66 66c-3 2-6 4-9 4-3 0-7-2-9-4l-176-176-46 47c-5 5-13 5-18 0l-66-66c-2-3-3-6-3-9 0-3 1-7 3-9l121-121c3-2 6-4 9-4 0 0 0 1 0 1 1 0 1-1 1-1 3 0 6 2 9 4l250 250c5 5 5 13 0 18z"/>
<glyph glyph-name="remove" unicode="&#57390;" d="M434 160l-96 96 96 96c4 4 4 10 0 14l-68 68c-4 4-10 4-14 0l-96-96-96 96c-4 4-11 4-14 0l-68-68c-2-1-3-4-3-7 0-2 1-5 3-7l96-96-96-96c-2-2-3-5-3-7 0-3 1-6 3-7l68-68c1-2 4-3 7-3 2 0 5 1 7 3l96 96 96-96c2-2 5-3 7-3 3 0 5 1 7 3l68 68c4 4 4 10 0 14z"/>
<glyph glyph-name="file" unicode="&#57391;" d="M96 448l179 0 13-13 0-83 83 0 13-13 0-275-288 0z m-64 64l0-512 416 0 0 365-147 147z"/>
<glyph glyph-name="file-code" unicode="&#57392;" d="M96 448l211 0 109-109 0-275-320 0z m-64 64l0-512 448 0 0 365-147 147z m96-290l96-96 0 45-51 51 51 50 0 46-73-74z m160 56l51-51-51-51 0-45 73 73 23 23-96 96z"/>
<glyph glyph-name="file-chart-graph" unicode="&#57393;" d="M96 448l211 0 109-109 0-275-320 0z m-64 64l0-512 448 0 0 365-147 147z m96-352l64 0 0-64-64 0z m96 160l64 0 0-224-64 0z m96-96l64 0 0-128-64 0z"/>
<glyph glyph-name="file-zip" unicode="&#57394;" d="M192 160l128 0 0-128-128 0z m96 32l-32 0 0 32 32 0z m0 96l0-32-32 0 0-32-32 0 0 32 32 0 0 32z m32 147l96-96 0-275-64 0 0 128-32 0z m-224 13l96 0 0-256-32 0 0-128-64 0z m128 0l32 0 0-32 32 0 0-32-32 0 0-32 32 0 0-32-32 0 0-32-32 0 0 32 32 0 0 32-32 0 0 32 32 0 0 32-32 0z m-192 64l0-512 448 0 0 365-147 147z m192-384l64 0 0-32-64 0z"/>
<glyph glyph-name="file-music" unicode="&#57395;" d="M96 448l211 0 109-109 0-275-320 0z m-64 64l0-512 448 0 0 365-147 147z m224-96l-32-6 0-225c-9 4-20 7-32 7-35 0-64-22-64-48 0-26 29-48 64-48 12 0 23 3 32 7 19 8 32 23 32 41l0 179c64 0 96-67 96-99 0 128-64 163-96 163z"/>
<glyph glyph-name="file-text" unicode="&#57396;" d="M96 448l211 0 109-109 0-275-320 0z m-64 64l0-512 448 0 0 365-147 147z m128-224l192 0 0-32-192 0z m0 64l128 0 0-32-128 0z m0-128l192 0 0-32-192 0z m0-64l192 0 0-32-192 0z"/>
<glyph glyph-name="file-bookmark" unicode="&#57397;" d="M288 448l19 0 109-109 0-275-320 0 0 384 64 0 0-288 64 96 64-96z m-256 64l0-512 448 0 0 365-147 147z"/>
<glyph glyph-name="file-image" unicode="&#57398;" d="M96 448l211 0 109-109 0-275-320 0z m-64 64l0-512 448 0 0 365-147 147z m144-253c26 0 48 22 48 48 0 27-22 48-48 48-26 0-48-21-48-48 0-26 22-48 48-48m16-64l-64-96 256 0-64 224-64-192z"/>
<glyph glyph-name="file-analytics" unicode="&#57399;" d="M96 448l211 0 109-109 0-275-320 0z m-64 64l0-512 448 0 0 365-147 147z m192-262l-96-96 0-45 96 96 64-64 96 96 0 45-96-96z"/>
<glyph glyph-name="file-certificate" unicode="&#57400;" d="M384 320c-53 0-96-43-96-96 0-28 13-53 32-71l0-153 64 64 64-64 0 153c20 18 32 43 32 71 0 53-43 96-96 96m0-160c-35 0-64 29-64 64 0 35 29 64 64 64 35 0 64-29 64-64 0-35-29-64-64-64m-170-96l-150 0 0 384 179 0 96-96 77 0 0 13-147 147-269 0 0-512 275 0-60 63z m-118 288l160 0 0-32-160 0z m0-64l160 0 0-32-160 0z m0-64l160 0 0-32-160 0z"/>
<glyph glyph-name="attachment" unicode="&#57401;" d="M111 10c-20 0-39 9-57 27l-3 3c-19 18-96 83 0 172 40 37 89 90 143 144 30 29 60 59 90 89 55 55 95 42 157-17 73-69 87-138 55-175-42-48-201-207-208-214-9-9-23-9-32 0-9 9-9 23 0 32 1 2 164 165 205 212 10 11 11 52-51 112-37 35-47 64-93 18-31-30-61-61-90-90-55-53-105-105-143-142-59-60-21-89-1-109l3-3c17-16 31-21 55 4 7 6 21 20 39 37 49 48 141 138 160 161 6 7 14 25 6 32-11 10-32-10-38-16-65-68-149-149-150-150-9-8-23-8-32 1-9 9-8 24 1 32 1 1 84 81 148 148 41 44 79 39 101 20 26-24 20-69-1-96-19-23-91-94-163-164-18-17-32-31-39-38-20-20-41-30-62-30"/>
<glyph glyph-name="file-excel" unicode="&#57402;" d="M96 448l211 0 109-109 0-275-320 0z m-64 64l0-512 448 0 0 365-147 147z m96-416l256 0 0 224-256 0z m128 192l96 0 0-64-96 0z m0-96l96 0 0-64-96 0z m-96 96l64 0 0-64-64 0z m0-96l64 0 0-64-64 0z"/>
<glyph glyph-name="file-movie" unicode="&#57403;" d="M96 448l211 0 109-109 0-275-320 0z m-64 64l0-512 448 0 0 365-147 147z m160-381l170 96-170 96z"/>
<glyph glyph-name="folder-add" unicode="&#57404;" d="M440 389l-188 0c-10 12-20 25-23 28-2 6-8 10-14 10l-75 0c-5 0-9-3-13-6l-25-32-30 0c-16 0-28-13-28-28l0-248c0-15 12-28 28-28l368 0c16 0 28 13 28 28l0 248c0 15-12 28-28 28z m-22-201c0-1-1-2-1-2-1-1-2-1-3-1l-45 0 0-45c0-1 0-2-1-3 0 0-1-1-2-1l-32 0c-1 0-1 1-2 1-1 1-1 2-1 3l0 45-45 0c-1 0-2 0-2 1-1 0-1 1-1 2l0 31c0 2 1 4 3 4l45 0 0 45c0 2 1 3 3 3l32 0c2 0 3-1 3-3l0-45 45 0c2 0 4-2 4-4z"/>
<glyph glyph-name="folder" unicode="&#57405;" d="M440 389l-188 0c-10 12-20 25-23 28-2 6-8 10-14 10l-75 0c-5 0-9-3-13-6l-25-32-30 0c-16 0-28-13-28-28l0-248c0-15 12-28 28-28l368 0c16 0 28 13 28 28l0 248c0 15-12 28-28 28z"/>
<glyph glyph-name="floppy" unicode="&#57406;" d="M448 96l32 0 0-32-32 0z m-384 128l352 0 0-192-352 0z m64 288l256 0 0-160-256 0z m-128 0l0-512 512 0 0 448-64 64z m288-32l64 0 0-96-64 0z m-160-384l224 0 0-32-224 0z m0 64l160 0 0-32-160 0z"/>
<glyph glyph-name="eye" unicode="&#57407;" d="M475 238c-29 45-65 78-108 101 11-20 17-42 17-65 0-35-13-65-38-90-25-25-55-38-90-38-35 0-65 13-90 38-25 25-38 55-38 90 0 23 6 45 17 65-43-23-79-56-108-101 25-39 57-70 95-94 38-23 79-34 124-34 45 0 86 11 124 34 38 24 70 55 95 94z m-205 109c0 4-2 7-4 10-3 3-6 4-10 4-24 0-44-8-61-25-17-17-26-38-26-62 0-4 1-7 4-9 3-3 6-4 10-4 4 0 7 1 10 4 2 2 4 5 4 9 0 17 5 31 17 42 12 12 26 18 42 18 4 0 7 1 10 4 2 2 4 6 4 9z m242-109c0-7-2-13-6-20-26-44-62-79-107-105-45-27-93-40-143-40-50 0-98 13-143 40-45 26-81 61-107 105-4 7-6 13-6 20 0 6 2 13 6 19 26 44 62 79 107 106 45 26 93 39 143 39 50 0 98-13 143-39 45-27 81-62 107-106 4-6 6-13 6-19z"/>
<glyph glyph-name="facebook-alt" unicode="&#57408;" d="M195 397c0-11 0-63 0-63l-47 0 0-78 47 0 0-230 95 0 0 230 65 0c0 0 6 37 8 78-8 0-72 0-72 0 0 0 0 45 0 53 0 8 10 19 21 19 10 0 31 0 52 0 0 10 0 47 0 80-27 0-58 0-71 0-100 0-98-77-98-89z"/>
<glyph glyph-name="facebook" unicode="&#57409;" d="M486 410c0 40-36 76-76 76l-308 0c-40 0-76-36-76-76l0-308c0-40 36-76 76-76l154 0 0 174-56 0 0 76 56 0 0 30c0 52 39 98 86 98l62 0 0-76-62 0c-6 0-14-9-14-21l0-31 76 0 0-76-76 0 0-174 82 0c40 0 76 36 76 76z"/>
<glyph glyph-name="bolt" unicode="&#57410;" d="M195 37l68 223 26-73-104 41-66 26 39 47 149 180c2 3 6 3 9 1 2-2 3-4 2-7l-68-223-26 73 104-41 65-26-38-47-149-180c-3-3-6-3-9-1-2 2-3 4-2 7z"/>
<glyph glyph-name="download" unicode="&#57411;" d="M480 288c-18 0-32-14-32-32l0-192-384 0 0 192c0 18-14 32-32 32-18 0-32-14-32-32l0-224c0-18 14-32 32-32l448 0c18 0 32 14 32 32l0 224c0 18-14 32-32 32z m-192 0l0 196c0 15-14 28-32 28-18 0-32-13-32-28l0-196-96 0 128-128 128 128z"/>
<glyph glyph-name="upload" unicode="&#57412;" d="M480 288c-18 0-32-14-32-32l0-192-384 0 0 192c0 18-14 32-32 32-18 0-32-14-32-32l0-224c0-18 14-32 32-32l448 0c18 0 32 14 32 32l0 224c0 18-14 32-32 32z m-256-96c0-18 14-32 32-32 18 0 32 14 32 32l0 192 96 0-128 128-128-128 96 0z"/>
<glyph glyph-name="popup" unicode="&#57413;" d="M410 461c14 0 26-5 36-15 10-10 15-22 15-36 0 0 0-205 0-205 0-14-5-26-15-36-10-10-22-15-36-15 0 0-205 0-205 0-14 0-26 5-36 15-10 10-15 22-15 36 0 0 0 206 0 206 0 13 5 25 14 35 10 10 22 15 37 15 0 0 205 0 205 0m0-256c0 0 0 205 0 205 0 0-205 0-205 0 0 0 0-205 0-205 0 0 205 0 205 0m-308 51c0 0 0-154 0-154 0 0 154 0 154 0 0 0 0-51 0-51 0 0-154 0-154 0-13 0-25 5-35 16-11 10-16 22-16 35 0 0 0 154 0 154 0 0 51 0 51 0"/>
<glyph glyph-name="github" unicode="&#57414;" d="M446 256c0 51-22 100-56 134-34 34-83 56-134 56-51 0-100-22-134-56-34-34-56-83-56-134 0-83 55-156 133-181l0 50c-11-1-17-2-20-2-22 0-37 10-46 30-3 7-6 13-10 19-1 1-3 2-7 5-3 3-6 5-8 7-3 2-4 4-4 5 0 2 3 4 9 4 11 0 20-7 26-15 6-8 12-17 22-23 4-3 10-4 16-4 8 0 16 1 24 4 3 11 10 20 19 26-66 7-97 30-97 92 0 23 7 43 22 58-3 9-4 17-4 25 0 12 2 22 8 32 22 0 37-7 60-23 15 3 31 5 50 5 15 0 30-1 45-5 22 16 37 23 59 23 6-10 8-20 8-32 0-8-1-16-4-24 15-17 22-36 22-59 0-62-31-86-97-92 14-9 21-22 21-39l0-67c78 25 133 98 133 181z m7 114c20-35 31-73 31-114 0-83-44-156-114-197-35-20-73-31-114-31-83 0-156 44-197 114-20 35-31 73-31 114 0 83 44 156 114 197 35 20 73 31 114 31 83 0 156-44 197-114z"/>
<glyph glyph-name="telephone" unicode="&#57415;" d="M435 152c-1 6-4 10-9 13l-74 43 0 0c-3 2-7 3-10 3-6 0-12-3-16-7l-22-21c-1-1-4-2-5-3 0 0-25 2-71 48-46 46-48 71-48 71 0 1 2 4 3 5l18 19c7 6 8 17 5 26l-41 76c-3 6-9 10-15 10-5 0-9-2-13-5l-50-50c-5-5-9-14-10-20 0-4-9-81 97-186 89-90 159-97 179-97 4 0 6 0 7 0 6 1 15 5 20 10l50 50c4 5 6 10 5 15z"/>
<glyph glyph-name="mobile" unicode="&#57416;" d="M279 110c0 6-2 11-7 16-4 4-10 7-16 7-6 0-12-3-16-7-5-5-7-10-7-16 0-7 2-12 7-16 4-5 10-7 16-7 6 0 12 2 16 7 5 4 7 9 7 16z m59 45l0 202c0 2-1 4-2 6-2 2-4 3-7 3l-146 0c-3 0-5-1-7-3-1-2-2-4-2-6l0-202c0-2 1-4 2-6 2-2 4-3 7-3l146 0c3 0 5 1 7 3 1 2 2 4 2 6z m-55 243c0 3-1 4-4 4l-46 0c-3 0-4-1-4-4 0-3 1-5 4-5l46 0c3 0 4 2 4 5z m83 4l0-292c0-10-4-19-11-26-7-7-16-11-26-11l-146 0c-10 0-19 4-26 11-7 7-11 16-11 26l0 292c0 10 4 19 11 26 7 7 16 11 26 11l146 0c10 0 19-4 26-11 7-7 11-16 11-26z"/>
<glyph glyph-name="pencil" unicode="&#57417;" d="M11 78l-11-78 79 11 78 11-67 68-68 67z m168 12l-22 22 202 202-45 45-202-202-23 23 202 202-22 22-224-224 134-135 224 225-22 22z m294 290l-90 90c-12 12-32 13-44 1l-2-3 0 0-43-43 134-134 43 43 0 0 3 2c12 12 12 32-1 44"/>
<glyph glyph-name="trash" unicode="&#57418;" d="M480 403c-2 25-23 45-48 45l-48 0 0 16c0 26-22 48-48 48l-160 0c-27 0-48-22-48-48l0-16-48 0c-26 0-46-20-48-45l0 0 0-35c0-18 14-32 32-32l0-272c0-35 29-64 64-64l256 0c35 0 64 29 64 64l0 272c18 0 32 14 32 32l0 35z m-320 61c0 9 7 16 16 16l160 0c9 0 16-7 16-16l0-16-192 0z m256-400c0-18-14-32-32-32l-256 0c-18 0-32 14-32 32l0 272 320 0z m32 320l0-16-384 0 0 32c0 9 7 16 16 16l352 0c9 0 16-7 16-16z m-304-320l32 0c9 0 16 7 16 16l0 208c0 9-7 16-16 16l-32 0c-9 0-16-7-16-16l0-208c0-9 7-16 16-16z m0 224l32 0 0-208-32 0z m96-224l32 0c9 0 16 7 16 16l0 208c0 9-7 16-16 16l-32 0c-9 0-16-7-16-16l0-208c0-9 7-16 16-16z m0 224l32 0 0-208-32 0z m96-224l32 0c9 0 16 7 16 16l0 208c0 9-7 16-16 16l-32 0c-9 0-16-7-16-16l0-208c0-9 7-16 16-16z m0 224l32 0 0-208-32 0z"/>
<glyph glyph-name="left-middle" unicode="&#57419;" d="M293 397c4 6 11 9 20 9 8 0 15-3 21-9 13-12 13-26 0-41 0 0-96-100-96-100 0 0 96-99 96-99 13-15 13-29 0-41-6-6-13-8-21-8-8 0-15 2-20 8 0 0-116 121-116 121-6 5-8 11-8 19 0 8 2 15 8 20 70 74 109 114 116 121"/>
<glyph glyph-name="right-middle" unicode="&#57420;" d="M219 397c0 0 116-121 116-121 5-5 8-12 8-20 0-8-3-14-8-19 0 0-116-121-116-121-5-6-12-8-20-8-9 0-15 2-21 8-12 12-12 26 0 41 0 0 95 99 95 99 0 0-95 100-95 100-12 15-12 29 0 41 6 6 13 9 21 9 9 0 15-3 20-9"/>
<glyph glyph-name="repeat" unicode="&#57421;" d="M256 480c-60 0-117-24-158-66l-66 66 0-192 192 0-81 81c30 30 70 47 113 47 88 0 160-72 160-160 0-88-72-160-160-160-57 0-110 31-139 80l-55-32c40-69 114-112 194-112 124 0 224 101 224 224 0 123-100 224-224 224"/>
<glyph glyph-name="key" unicode="&#57422;" d="M352 448c53 0 96-43 96-96 0-53-43-96-96-96-5 0-10 1-17 2l-33 6-24-24-3-3-19-19 0-26-64 0 0-64-64 0 0-64-64 0 0 38 200 200-6 33c-1 7-2 12-2 17 0 53 43 96 96 96m0 64c-88 0-160-72-160-160 0-10 1-20 3-29l-195-195 0-128 192 0 0 64 64 0 0 64 64 0 0 64 3 3c9-2 19-3 29-3 88 0 160 72 160 160 0 88-72 160-160 160z m32-160c0-18-14-32-32-32-18 0-32 14-32 32 0 18 14 32 32 32 18 0 32-14 32-32z"/>
<glyph glyph-name="lock" unicode="&#57423;" d="M420 286l-45 0 0 43c0 0 0 0 0 0 0 67-54 122-121 122-67 0-122-55-122-122l0-43-40 0c-8 0-14-6-14-14l0-197c0-8 6-14 14-14l328 0c8 0 14 6 14 14l0 197c0 8-6 14-14 14z m-216 43c0 28 22 50 50 50 27 0 49-22 50-49 0 0 0 0 0 0l0 0c0-1 0-1 0-1l0-43-100 0z"/>
<glyph glyph-name="home" unicode="&#57424;" d="M480 249c6-6 8-10 6-14-2-4-6-6-14-6 0 0-43 0-43 0 0 0 0-158 0-158 0-5 0-9 0-11-1-2-2-5-4-7-3-2-7-3-12-3 0 0-105 0-105 0 0 0 0 159 0 159 0 0-104 0-104 0 0 0 0-159 0-159 0 0-99 0-99 0-10 0-16 2-18 5-3 4-4 9-4 16 0 0 0 158 0 158 0 0-43 0-43 0-7 0-12 2-14 6-1 4 0 8 6 14 0 0 205 206 205 206 5 5 12 8 19 8 8 0 14-3 20-8 0 0 204-206 204-206"/>
<glyph glyph-name="address-book" unicode="&#57425;" d="M37 475l0-438 438 0 0 77-47 0 0 43 47 0 0 78-47 0 0 42 47 0 0 78-47 0 0 43 47 0 0 77-438 0z m195-76c35 0 64-29 64-64 0-24-15-46-36-56l82-49 1 0 0-69-221 0 0 69 1 0 81 49c-21 10-35 32-35 56 0 35 28 64 63 64z"/>
<glyph glyph-name="share" unicode="&#57426;" d="M384 179c21 0 39-7 54-22 15-14 23-33 23-55 0-21-8-39-23-54-15-15-33-22-54-22-21 0-39 7-54 22-15 15-23 33-23 54 0 2 0 5 1 8 0 2 0 4 0 6 0 0-133 80-133 80-14-11-30-17-47-17-21 0-39 8-54 23-15 15-23 33-23 54 0 21 8 39 23 54 15 15 33 23 54 23 18 0 34-5 47-16 0 0 133 80 133 80 0 2 0 4 0 6-1 3-1 5-1 7 0 21 8 39 23 54 15 15 33 22 54 22 21 0 39-7 54-22 15-14 23-33 23-54 0-22-8-40-23-55-15-15-33-22-54-22-18 0-33 5-46 16 0 0-134-80-134-80 0-2 1-7 1-13 0-5-1-10-1-12 0 0 134-80 134-80 12 10 28 15 46 15"/>
<glyph glyph-name="suitcase" unicode="&#57427;" d="M461 410c14 0 26-6 36-16 10-10 15-22 15-36 0 0 0-281 0-281 0-15-5-27-15-37-10-9-22-14-36-14 0 0-26 0-26 0 0 0 0 384 0 384 0 0 26 0 26 0m-461-52c0 14 5 26 15 36 11 10 23 16 36 16 0 0 26 0 26 0 0 0 0-384 0-384 0 0-26 0-26 0-13 0-25 5-36 14-10 10-15 22-15 37 0 0 0 281 0 281m343 105c0 0 0-53 0-53 0 0 56 0 56 0 0 0 0-384 0-384 0 0-286 0-286 0 0 0 0 384 0 384 0 0 56 0 56 0 0 0 0 53 0 53 33 16 62 23 87 23 25 0 54-7 87-23m-31-53c0 0 0 33 0 33-17 9-36 13-56 13-18 0-37-4-56-13 0 0 0-33 0-33 0 0 112 0 112 0"/>
<glyph glyph-name="new-sign" unicode="&#57428;" d="M480 384l-448 0c-18 0-32-14-32-32l0-224c0-18 14-32 32-32l448 0c18 0 32 14 32 32l0 224c0 18-14 32-32 32m-288-224l-32 0-64 107 0-107-32 0 0 160 32 0 64-107 0 107 32 0z m96 128l-32 0 0-32 32 0 0-32-32 0 0-32 32 0 0-32-64 0 0 160 64 0z m160-128l-32 0-32 64-32-64-32 0 0 160 32 0 0-96 32 64 32-64 0 96 32 0z"/>
<glyph glyph-name="users" unicode="&#57429;" d="M492 217l-83 40c20 12 33 36 33 63 0 40-28 72-62 72-12 0-23-4-32-11 6-14 9-29 9-46 0-24-7-48-20-67 4-5 9-9 15-12l0 0 53-25c15-8 25-24 25-41l0-70 57 0c7 0 14 7 14 16l0 66c0 7-4 13-9 15z m-330 40c4 3 8 6 12 10-13 19-21 43-21 68 0 17 4 33 10 47-10 6-20 10-31 10-34 0-62-32-62-72 0-28 14-52 34-64l-84-39c-5-2-9-8-9-15l0-66c0-9 7-16 14-16l55 0 0 70c0 17 10 34 26 41z m232-49l-72 34-31 15c14 8 25 21 32 37 5 12 9 26 9 41 0 9-2 17-4 24-9 38-38 65-73 65-34 0-63-26-73-63-2-8-3-17-3-26 0-16 3-31 10-44 7-14 18-27 31-35l-29-13-75-35c-6-3-10-10-10-18l0-82c0-11 7-20 17-20l264 0c10 0 18 9 18 20l0 82c0 8-5 15-11 18z"/>
<glyph glyph-name="earth" unicode="&#57430;" d="M256 476c-121 0-220-99-220-220 0-121 99-220 220-220 121 0 220 99 220 220 0 121-99 220-220 220z m-54-60c8-4 17-8 28-12 11-4 22-6 32-6 8 0 16 2 23 7 7 4 13 7 21 6 9-1 18-4 27-4 11-6 23-14 33-23-5 0-10-1-16-2-6-1-12-2-17-3-6-2-11-4-16-6-4-3-8-6-10-9-3-6-6-11-7-15-3-8-2-20-9-26-1-1-2-2-3-3-1-2-1-3-1-5 0-2 1-5 3-9 1-2 1-4 2-8 6 0 12 1 17 5l31-3c7 9 17 9 24 0 3-2 6-6 8-11l-13-9c-3 1-6 3-11 6-2 1-4 3-6 4-12 6-36-1-50-2-2-3-3-7-7-8-1-2 0-4-1-6-6-10-8-19-6-30 3-16 11-24 25-24l5 0c6 0 11 0 13 0 3-1 4-2 4-2-1-4-2-6-1-9 1-7 6-12 6-19-1-10-4-18-1-27 4-10 9-20 12-29 2-3 4-5 6-5 6-1 13 2 21 11 6 6 10 14 11 22 1 7 6 13 8 21l0 6c1 3 2 6 4 9 1 4 1 9 2 14 4 5 9 9 13 15 2 4 2 7 1 10 0 1-1 1-2 2l-7 3c0 4 7 3 11 2l16 11c0-21-4-42-12-61-7-20-19-37-33-53-20-21-44-37-71-46-28-9-56-11-85-6 5 9 8 19 14 28 0 5 0 9 2 12 5 13 15 17 26 28 11 11 11 25 12 42 0 10-17 17-25 23-18 12-30 30-55 25-10-1-12-3-19 3l-2 1 0 1 1 2c3 3-1 7-5 5-1 0-1 0-2 0-1 4-4 8-5 13 5-4 8-6 12-8 3-2 5-3 7-3 3-1 4-2 6-1 3 0 5 4 6 10 0 6 0 13-1 21 1 1 2 3 2 4 3 17 12 13 25 18 2 1 2 3 1 4 0 1 0 1 0 1 0 0 0 0 0 0 7 4 11 11 15 18-3 6-9 11-16 14-3 5-17 2-20 9-3 0-4 1-6 1-12 8-17 23-31 28-5 1-10 1-16 0 16 13 33 22 52 28z m-113-130c3-5 7-9 11-12 20-20 40-24 66-33 2-1 3-3 6-5 2-2 5-5 8-7 0-1 0-3-1-6 0-3 0-7 0-14 1-17 15-30 19-47-4-21-4-42-6-63-21 9-39 21-55 37-16 16-28 35-37 56-6 15-10 31-12 47-1 16-1 31 1 47z"/>
<glyph glyph-name="mail" unicode="&#57431;" d="M485 415l-5 1-448 0-3-1 227-202z m25-20l-161-143 159-139c2 5 4 9 4 15l0 256c0 4-1 7-2 11m-508 1c-1-3-2-8-2-12l0-256c0-5 1-9 3-13l161 138z m254-225l-68 60-158-135 2 0 447 0-155 135z"/>
<glyph glyph-name="checkbox-checked" unicode="&#57432;" d="M0 512l0-512 512 0 0 512z m480-480l-448 0 0 448 448 0z m-96 368l-160-160-96 96-64-64 160-160 224 224z"/>
<glyph glyph-name="checkbox-unchecked" unicode="&#57433;" d="M0 512l0-512 512 0 0 512z m480-480l-448 0 0 448 448 0z"/>
<glyph glyph-name="checkbox-partial" unicode="&#57434;" d="M0 512l0-512 512 0 0 512z m480-480l-448 0 0 448 448 0z m-352 352l256 0 0-256-256 0z"/>
<glyph glyph-name="radio-checked" unicode="&#57435;" d="M256 512c-141 0-256-115-256-256 0-141 115-256 256-256 141 0 256 115 256 256 0 141-115 256-256 256z m0-448c-106 0-192 86-192 192 0 106 86 192 192 192 106 0 192-86 192-192 0-106-86-192-192-192z m-96 192c0 53 43 96 96 96 53 0 96-43 96-96 0-53-43-96-96-96-53 0-96 43-96 96z"/>
<glyph glyph-name="radio-unchecked" unicode="&#57436;" d="M256 512c-141 0-256-115-256-256 0-141 115-256 256-256 141 0 256 115 256 256 0 141-115 256-256 256z m0-448c-106 0-192 86-192 192 0 106 86 192 192 192 106 0 192-86 192-192 0-106-86-192-192-192z"/>
<glyph glyph-name="google-drive" unicode="&#57437;" d="M230 182l-86-148 283 0 85 148z m258 42l-147 254-170 0 146-254z m-342 212l-146-254 85-148 147 254z"/>
<glyph glyph-name="spinner" unicode="&#57438;" d="M256 512c-139 0-253-111-256-250 3 121 95 218 208 218 115 0 208-100 208-224 0-27 21-48 48-48 27 0 48 21 48 48 0 141-115 256-256 256z m0-512c139 0 253 111 256 250-3-121-95-218-208-218-115 0-208 100-208 224 0 27-21 48-48 48-27 0-48-21-48-48 0-141 115-256 256-256z"/>
<glyph glyph-name="archive" unicode="&#57439;" d="M456 343c0 1 0 1 0 1 0 5-2 10-5 13l0 1-40 69c-1 6-6 10-13 10 0 0 0 0-1 0l0 0-283 0 0 0c0 0 0 0 0 0-5 0-9-3-12-7l0 0-42-72 0 0c-3-4-4-9-4-14 0 0 0 0 0-1l0-247c0 0 0 0 0 0 0-12 9-21 20-21 1 0 1 0 1 0l358 0c0 0 0 0 0 0 12 0 21 9 21 21 0 0 0 0 0 0l0 247z m-131-125l-64-90c-1-1-3-2-5-2 0 0 0 0 0 0-2 0-4 1-5 2l-64 90c-1 2-1 4 0 6 1 2 3 3 5 3l30 0 0 81c0 3 3 6 6 6l56 0c3 0 6-3 6-6l0-81 30 0c2 0 4-1 5-3 1-2 1-4 0-6z m-231 147l27 47 270 0 27-47z"/>
<glyph glyph-name="buy-sign" unicode="&#57440;" d="M96 288l64 0 0-32-64 0z m0-64l64 0 0-32-64 0z m384 160l-448 0c-18 0-32-14-32-32l0-224c0-18 14-32 32-32l448 0c18 0 32 14 32 32l0 224c0 18-14 32-32 32m-288-224l-128 0 0 160 128 0z m128 0l-96 0 0 160 32 0 0-128 32 0 0 128 32 0z m128 64l-32 0 0-64-32 0 0 64-32 0 0 96 32 0 0-64 32 0 0 64 32 0z"/>
<glyph glyph-name="filter" unicode="&#57441;" d="M456 428c3-8 2-15-4-20l-141-141 0-212c0-8-4-14-11-17-3-1-5-1-7-1-6 0-10 1-13 5l-73 73c-4 4-6 8-6 13l0 139-141 141c-6 5-7 12-4 20 4 7 9 11 17 11l366 0c8 0 13-4 17-11z"/>
<glyph glyph-name="sync" unicode="&#57442;" d="M341 94c0-2-1-4-2-6-2-2-4-3-6-3l-256 0c-2 0-3 1-4 1-1 0-2 1-2 2-1 1-1 1-2 2 0 0 0 1 0 3-1 1-1 2-1 3l0 160-51 0c-5 0-9 2-12 5-3 3-5 7-5 12 0 4 1 8 4 11l85 102c4 4 8 6 13 6 6 0 10-2 13-6l86-102c2-3 4-7 4-11 0-5-2-9-5-12-4-3-8-5-12-5l-51 0 0-102 153 0c3 0 5-1 7-3l42-52c2-1 2-3 2-5z m171 111c0-4-1-8-4-11l-85-103c-4-4-8-6-13-6-6 0-10 2-13 6l-86 103c-2 3-4 7-4 11 0 4 2 8 5 12 4 3 8 5 12 5l51 0 0 102-153 0c-3 0-5 1-7 3l-42 52c-2 1-2 3-2 5 0 2 1 4 2 6 2 2 4 3 6 3l256 0c2 0 3-1 4-1 1 0 2-1 2-2 1-1 1-1 2-2 0-1 0-2 0-3 1-2 1-3 1-3l0-160 51 0c5 0 9-2 12-5 3-4 5-8 5-12z"/>
<glyph glyph-name="ellipsis-alt" unicode="&#57443;" d="M311 155l0-54c0-8-3-15-8-20-5-5-12-8-20-8l-54 0c-8 0-15 3-20 8-5 5-8 12-8 20l0 54c0 8 3 15 8 20 5 5 12 8 20 8l54 0c8 0 15-3 20-8 5-5 8-12 8-20z m0 147l0-55c0-8-3-14-8-20-5-5-12-8-20-8l-54 0c-8 0-15 3-20 8-5 6-8 12-8 20l0 55c0 7 3 14 8 19 5 5 12 8 20 8l54 0c8 0 15-3 20-8 5-5 8-12 8-19z m0 146l0-55c0-7-3-14-8-19-5-6-12-8-20-8l-54 0c-8 0-15 2-20 8-5 5-8 12-8 19l0 55c0 8 3 14 8 19 5 6 12 8 20 8l54 0c8 0 15-2 20-8 5-5 8-11 8-19z"/>
<glyph glyph-name="cloud-up" unicode="&#57444;" d="M341 265c0 2 0 4-2 6l-94 94c-2 1-4 2-6 2-3 0-5-1-6-2l-94-94c-2-2-2-4-2-6 0-3 0-5 2-7 2-1 4-2 6-2l60 0 0-94c0-2 1-4 2-6 2-2 4-2 6-2l52 0c2 0 4 0 6 2 1 2 2 4 2 6l0 94 60 0c2 0 4 1 6 3 1 1 2 3 2 6z m171-77c0-29-10-53-30-73-20-20-44-30-72-30l-291 0c-32 0-61 12-84 35-23 24-35 52-35 85 0 23 6 44 19 64 12 19 29 34 50 44-1 5-1 9-1 11 0 38 14 70 40 97 27 26 59 40 97 40 28 0 53-8 76-23 23-16 40-36 50-62 13 11 28 17 44 17 19 0 35-7 49-20 13-14 20-30 20-49 0-13-4-26-11-37 23-5 42-17 57-36 15-18 22-39 22-63z"/>
<glyph glyph-name="cloud-down" unicode="&#57445;" d="M341 247c0 3 0 5-2 7-2 1-4 2-6 2l-60 0 0 94c0 2-1 4-2 6-2 2-4 2-6 2l-52 0c-2 0-4 0-6-2-1-2-2-4-2-6l0-94-60 0c-2 0-4-1-6-3-2-1-2-3-2-6 0-2 0-4 2-6l94-94c1-1 3-2 6-2 2 0 4 1 6 2l94 94c1 2 2 4 2 6z m171-59c0-29-10-53-30-73-20-20-44-30-72-30l-291 0c-32 0-61 12-84 35-23 24-35 52-35 85 0 23 6 44 19 64 12 19 29 34 50 44-1 5-1 9-1 11 0 38 14 70 40 97 27 26 59 40 97 40 28 0 53-8 76-23 23-16 40-36 50-62 13 11 28 17 44 17 19 0 35-7 49-20 13-14 20-30 20-49 0-13-4-26-11-37 23-5 42-17 57-36 15-18 22-39 22-63z"/>
<glyph glyph-name="import" unicode="&#57446;" d="M375 256c0-5-2-9-6-13l-155-155c-4-4-8-6-13-6-5 0-9 2-13 6-3 3-5 8-5 13l0 82-128 0c-5 0-9 2-13 5-4 4-5 8-5 13l0 110c0 5 1 9 5 13 4 3 8 5 13 5l128 0 0 82c0 5 2 10 5 13 4 4 8 6 13 6 5 0 9-2 13-6l155-155c4-4 6-8 6-13z m100 101l0-202c0-22-8-42-24-58-16-16-35-24-58-24l-91 0c-3 0-5 1-7 3-2 2-2 4-2 6 0 1-1 3-1 6 0 3 0 6 0 8 0 2 1 4 1 6 0 3 1 5 3 6 1 1 3 2 6 2l91 0c13 0 23 4 32 13 9 9 14 20 14 32l0 202c0 12-5 23-14 32-9 9-19 13-32 13l-89 0c0 0-1 0-3 1-2 0-4 0-4 0 0 1 0 1-2 2-1 1-2 2-2 3 0 1 0 2 0 3 0 1-1 3-1 6 0 3 0 6 0 8 0 2 1 4 1 6 0 3 1 5 3 6 1 1 3 2 6 2l91 0c23 0 42-8 58-24 16-16 24-36 24-58z"/>
<glyph glyph-name="export" unicode="&#57447;" d="M201 101c0-1 0-3 0-6 1-3 1-6 1-8-1-2-1-4-1-6-1-3-2-5-3-6-2-1-4-2-6-2l-91 0c-23 0-42 8-59 24-16 16-24 36-24 58l0 202c0 22 8 42 24 58 17 16 36 24 59 24l91 0c2 0 5-1 6-3 2-2 3-4 3-6 0-1 0-3 0-6 1-3 1-6 1-8-1-2-1-4-1-6-1-3-2-5-3-6-2-1-4-2-6-2l-91 0c-13 0-24-4-33-13-9-9-13-20-13-32l0-202c0-12 4-23 13-32 9-9 20-13 33-13l89 0c0 0 1 0 3-1 2 0 3 0 3 0 0-1 1-1 3-2 1-1 2-2 2-3-1-1 0-2 0-3z m265 155c0-5-2-9-5-13l-156-155c-3-4-7-6-12-6-5 0-10 2-13 6-4 3-6 8-6 13l0 82-128 0c-5 0-9 2-13 5-3 4-5 8-5 13l0 110c0 5 2 9 5 13 4 3 8 5 13 5l128 0 0 82c0 5 2 10 6 13 3 4 8 6 13 6 5 0 9-2 12-6l156-155c3-4 5-8 5-13z"/>
<glyph glyph-name="copy" unicode="&#57448;" d="M485 402c7 0 14-2 19-8 5-5 8-12 8-19l0-348c0-7-3-14-8-19-5-5-12-8-19-8l-275 0c-7 0-14 3-19 8-5 5-8 12-8 19l0 83-156 0c-7 0-14 2-19 8-5 5-8 12-8 19l0 192c0 8 2 16 6 25 4 9 8 17 13 22l117 117c5 5 13 9 22 13 9 4 17 6 25 6l119 0c7 0 14-3 19-8 5-5 8-12 8-19l0-94c13 7 25 11 37 11z m-156-61l-85-85 85 0z m-183 110l-85-85 85 0z m56-185l91 91 0 118-110 0 0-118c0-8-3-15-8-20-5-5-12-8-20-8l-118 0 0-183 146 0 0 73c0 8 2 16 6 26 3 9 8 16 13 21z m273-229l0 329-109 0 0-119c0-8-3-14-8-20-6-5-12-8-20-8l-119 0 0-182z"/>
<glyph glyph-name="angry-smiley" unicode="&#57449;" d="M256 512c-141 0-256-115-256-256 0-141 115-256 256-256 141 0 256 115 256 256 0 141-115 256-256 256m0-480c-123 0-224 100-224 224 0 123 101 224 224 224 123 0 224-101 224-224 0-124-101-224-224-224m0 192c-81 0-113-38-160-96l4 0c40 39 95 64 156 64 61 0 116-25 157-64l3 0c-47 58-79 96-160 96m-64 64c18 0 32 21 32 48 0 26-14 48-32 48-18 0-32-22-32-48 0-27 14-48 32-48m128 0c18 0 32 21 32 48 0 26-14 48-32 48-18 0-32-22-32-48 0-27 14-48 32-48"/>
<glyph glyph-name="happy-smiley" unicode="&#57450;" d="M256 512c-141 0-256-115-256-256 0-141 115-256 256-256 141 0 256 115 256 256 0 141-115 256-256 256m0-480c-123 0-224 100-224 224 0 123 101 224 224 224 123 0 224-101 224-224 0-124-101-224-224-224m157 192c-41-40-96-64-157-64-61 0-116 24-156 64l-4 0c47-58 79-96 160-96 81 0 113 38 160 96z m-221 64c18 0 32 21 32 48 0 26-14 48-32 48-18 0-32-22-32-48 0-27 14-48 32-48m128 0c18 0 32 21 32 48 0 26-14 48-32 48-18 0-32-22-32-48 0-27 14-48 32-48"/>
<glyph glyph-name="help" unicode="&#57451;" d="M256 484c-126 0-228-102-228-228 0-126 102-228 228-228 126 0 228 102 228 228 0 126-102 228-228 228z m0-399c-94 0-171 77-171 171 0 94 77 171 171 171 94 0 171-77 171-171 0-94-77-171-171-171z m58 173c-10-9-27-16-31-18-4-2-4-4-4-10l0-8-57 0 0 18c0 14 1 22 16 30l20 10c7 5 16 8 16 15 0 8-7 11-24 11-16 0-33-6-45-14l-15 50c8 4 30 18 72 18 42 0 72-26 72-57 0-26-9-36-20-45z m-64-111c-22 0-37 12-37 32 0 21 15 33 37 33 22 0 37-12 37-33 0-20-15-32-37-32z"/>
<glyph glyph-name="resize-in" unicode="&#57452;" d="M411 475l-88-88-65 65 0-194 194 0-65 65 88 88z m-351-221l65-65-88-88 64-64 88 88 65-65 0 194z"/>
<glyph glyph-name="resize-out" unicode="&#57453;" d="M282 475l65-64-89-89 64-64 89 89 64-65 0 193z m-92-221l-89-89-64 65 0-193 193 0-65 64 89 89z"/>
<glyph glyph-name="world" unicode="&#57455;" d="M256 484c-126 0-228-102-228-228 0-126 102-228 228-228 126 0 228 102 228 228 0 126-102 228-228 228z m-185-228c0 39 12 75 33 105 3 1 7 2 9 1 3-2 2-3 2-7 1-6 2-13 10-9 7 4 5 15 9 21 3 4 7 9 10 12 5 4 9 6 9 12 1 7-5 9-11 10 8 7 16 12 26 17 2-1 5-5 4-9-2-3-10-3-8-10 10-5 33 18 32-4-9-3-30-6-31-18-1-12 20-9 27-8 9 1 16 3 23 9 9 6 23 18 25 28 4 18-23 9-29 17-2 3-2 7-1 11 0 0 0 0 0 1 15 4 30 6 46 6 22 0 43-4 62-11-8-13-3-36-3-50 0-8-4-8-9-13-5-6-10-10-17-9-16 3-31 10-45-3-5-5-10-9-10-17 0-5-2-13 4-15 3-2 12-2 15 1 4 3 4 10 6 15 3 6 11 9 15 3 3-6 1-12-2-17-5-7-8-10-16-13-2-1-4-3-7-2-3 1-4 4-6 5-6 2-12-4-15-7-4-4-9-6-15-7-4-1-13 1-10-7 1-5 7-5 6-13-7 0-17 2-21-3-2-3-7-18-5-21 2-4 12-3 16-3 6-1 12 0 13 7 4 2 5 6 8 8 3 2 6 3 10 3 12 2 13-5 18-13 4-6 10-11 10-1-1 8-8 12-7 21 7 2 9-7 11-12 2-4 3-7 6-10 1-2 3-4 5-6 2 6 6 10 8 15 2 5 5 10 9 14 7 7 36 7 25-5-5-4-36-11-26-20 4-5 14 0 19-3 5-2 2-9 2-14 0-1 0-2 0-3-13-7-36-3-48-2-9 0-15 4-22 9-7 5-11 6-20 7-22 1-39-3-56-17-16-13-23-29-19-50 6-35 45-29 72-31 11-1 13-2 17-12 3-9 6-17 8-26 2-8 2-17 3-25 1-8 2-13 6-17-100 3-180 85-180 185z m242-176c7 4 11 8 18 13 3 2 6 2 8 6 2 5-1 8-3 13-4 10 4 14 10 21 7 6 12 15 16 23 4 6 10 20 10 26-8 0-17-4-26-3-11 2-19 9-25 16-7 7-11 16-10 26 0 4 0 5 3 6 5-6 14-9 19-16 4-5 6-9 11-13 3-2 5-6 8-9 4-4 13-1 17 3 6 5 5 11 7 17 1 5 4 7 6 12 1 5 0 11 0 15-5 1-8 0-12-2-3-2-3-5-8-5-7 0-11 8-12 15 6 3 15 2 22 2 7 0 13 1 19 4 11 5 19 0 28-6 5-4 12-14 16-8 4 5 2 16 2 22 0 3 1 6 1 10 1 2 1 4 2 5 1-5 1-11 1-17 0-82-54-152-128-176z"/>
<glyph glyph-name="braille" unicode="&#57454;" d="M218 63c0-35-29-63-64-63-35 0-64 28-64 63 0 36 29 64 64 64 35 0 64-28 64-64z m0 193c0-35-29-64-64-64-35 0-64 29-64 64 0 35 29 64 64 64 35 0 64-29 64-64z m0 193c0-36-29-64-64-64-35 0-64 28-64 64 0 35 29 63 64 63 35 0 64-28 64-63z m204-386c0-35-29-63-64-63-35 0-64 28-64 63 0 36 29 64 64 64 35 0 64-28 64-64z m0 193c0-35-29-64-64-64-35 0-64 29-64 64 0 35 29 64 64 64 35 0 64-29 64-64z m0 193c0-36-29-64-64-64-35 0-64 28-64 64 0 35 29 63 64 63 35 0 64-28 64-63z"/>
<glyph glyph-name="play" unicode="&#57456;" d="M377 269c5-3 7-8 7-13 0-5-2-9-7-12 0 0-219-136-219-136-8-6-15-7-21-4-6 4-9 11-9 21 0 0 0 263 0 263 0 10 3 17 9 21 6 3 13 2 21-3 0 0 219-137 219-137"/>
<glyph glyph-name="pause" unicode="&#57457;" d="M346 435c30 0 46-11 46-33 0 0 0-291 0-291 0-23-16-34-46-34-31 0-46 11-46 34 0 0 0 291 0 291 0 22 15 33 46 33m-180 0c31 0 46-11 46-33 0 0 0-291 0-291 0-23-15-34-46-34-30 0-46 11-46 34 0 0 0 291 0 291 0 22 16 33 46 33"/>
<glyph glyph-name="stop" unicode="&#57458;" d="M372 410c25 0 38-11 38-33 0 0 0-241 0-241 0-22-13-34-38-34 0 0-231 0-231 0-26 0-39 12-39 34 0 0 0 241 0 241 0 12 3 21 10 25 6 5 16 8 29 8 0 0 231 0 231 0"/>
<glyph glyph-name="check-mark-circle-two" unicode="&#57459;" d="M371 280l-120-121c-4-3-8-5-13-5-5 0-10 2-13 5l-84 84c-4 4-6 8-6 13 0 5 2 9 6 13l29 29c4 4 8 5 13 5 5 0 9-1 13-5l42-42 78 79c4 3 8 5 13 5 5 0 9-2 13-5l29-30c4-3 6-7 6-12 0-5-2-10-6-13z m40-24c0 28-7 54-20 78-14 24-33 43-57 57-24 13-50 20-78 20-28 0-54-7-78-20-24-14-43-33-57-57-13-24-20-50-20-78 0-28 7-54 20-78 14-24 33-43 57-57 24-13 50-20 78-20 28 0 54 7 78 20 24 14 43 33 57 57 13 24 20 50 20 78z m64 0c0-40-9-77-29-110-20-34-46-60-80-80-33-20-70-29-110-29-40 0-77 9-110 29-34 20-60 46-80 80-20 33-29 70-29 110 0 40 9 77 29 110 20 34 46 60 80 80 33 20 70 29 110 29 40 0 77-9 110-29 34-20 60-46 80-80 20-33 29-70 29-110z"/>
<glyph glyph-name="laptop" unicode="&#57461;" d="M101 146c-13 0-24 5-33 14-9 9-13 19-13 32l0 201c0 13 4 23 13 32 9 9 20 14 33 14l310 0c13 0 24-5 33-14 9-9 13-19 13-32l0-201c0-13-4-23-13-32-9-9-20-14-33-14z m-10 247l0-201c0-2 1-5 3-6 2-2 4-3 7-3l310 0c3 0 5 1 7 3 2 1 3 4 3 6l0 201c0 3-1 5-3 7-2 1-4 2-7 2l-310 0c-3 0-5-1-7-2-2-2-3-4-3-7z m394-265l45 0 0-27c0-8-4-15-13-20-9-5-20-8-32-8l-458 0c-12 0-23 3-32 8-9 5-13 12-13 20l0 27z m-206-27c3 0 4 1 4 4 0 3-1 5-4 5l-46 0c-3 0-4-2-4-5 0-3 1-4 4-4z"/>
</font></defs></svg>

Before

Width:  |  Height:  |  Size: 49 KiB

View file

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,7 @@
CKEditor 4
==========
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
http://ckeditor.com - See LICENSE.md for license information.
CKEditor is a text editor to be used inside web pages. It's not a replacement

View file

@ -1,5 +1,5 @@
/*
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
(function(a){if("undefined"==typeof a)throw Error("jQuery should be loaded before CKEditor jQuery adapter.");if("undefined"==typeof CKEDITOR)throw Error("CKEditor should be loaded before CKEditor jQuery adapter.");CKEDITOR.config.jqueryOverrideVal="undefined"==typeof CKEDITOR.config.jqueryOverrideVal?!0:CKEDITOR.config.jqueryOverrideVal;a.extend(a.fn,{ckeditorGet:function(){var a=this.eq(0).data("ckeditorInstance");if(!a)throw"CKEditor is not initialized yet, use ckeditor() with a callback.";return a},

View file

@ -1,54 +1,54 @@
/**
* @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or http://ckeditor.com/license
*/
/**
* This file was added automatically by CKEditor builder.
* You may re-use it at any time to build CKEditor again.
*
* If you would like to build CKEditor online again
* (for example to upgrade), visit one the following links:
*
* (1) http://ckeditor.com/builder
* Visit online builder to build CKEditor from scratch.
*
* (2) http://ckeditor.com/builder/05718fb4520c12f746e349774d0ef00f
* Visit online builder to build CKEditor, starting with the same setup as before.
*
* (3) http://ckeditor.com/builder/download/05718fb4520c12f746e349774d0ef00f
* Straight download link to the latest version of CKEditor (Optimized) with the same setup as before.
*
* NOTE:
* This file is not used by CKEditor, you may remove it.
* Changing this file will not change your CKEditor configuration.
*/
var CKBUILDER_CONFIG = {
skin: 'icy_orange',
preset: 'basic',
ignore: [
'.bender',
'bender.js',
'bender-err.log',
'bender-out.log',
'dev',
'.DS_Store',
'.editorconfig',
'.gitattributes',
'.gitignore',
'gruntfile.js',
'.idea',
'.jscsrc',
'.jshintignore',
'.jshintrc',
'less',
'.mailmap',
'node_modules',
'package.json',
'README.md',
'tests'
],
/**
* @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or http://ckeditor.com/license
*/
/**
* This file was added automatically by CKEditor builder.
* You may re-use it at any time to build CKEditor again.
*
* If you would like to build CKEditor online again
* (for example to upgrade), visit one the following links:
*
* (1) http://ckeditor.com/builder
* Visit online builder to build CKEditor from scratch.
*
* (2) http://ckeditor.com/builder/9c8f8c7cb398fa35c352de7ead534613
* Visit online builder to build CKEditor, starting with the same setup as before.
*
* (3) http://ckeditor.com/builder/download/9c8f8c7cb398fa35c352de7ead534613
* Straight download link to the latest version of CKEditor (Optimized) with the same setup as before.
*
* NOTE:
* This file is not used by CKEditor, you may remove it.
* Changing this file will not change your CKEditor configuration.
*/
var CKBUILDER_CONFIG = {
skin: 'icy_orange',
preset: 'basic',
ignore: [
'.bender',
'bender.js',
'bender-err.log',
'bender-out.log',
'dev',
'.DS_Store',
'.editorconfig',
'.gitattributes',
'.gitignore',
'gruntfile.js',
'.idea',
'.jscsrc',
'.jshintignore',
'.jshintrc',
'less',
'.mailmap',
'node_modules',
'package.json',
'README.md',
'tests'
],
plugins : {
'about' : 1,
'autolink' : 1,
@ -73,7 +73,6 @@ var CKBUILDER_CONFIG = {
'quicktable' : 1,
'removeformat' : 1,
'sourcearea' : 1,
'table' : 1,
'toolbar' : 1,
'undo' : 1,
'wysiwygarea' : 1
@ -89,6 +88,7 @@ var CKBUILDER_CONFIG = {
'cy' : 1,
'da' : 1,
'de' : 1,
'de-ch' : 1,
'el' : 1,
'en' : 1,
'en-au' : 1,

File diff suppressed because it is too large Load diff

View file

@ -1,5 +1,5 @@
/**
* @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
* @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or http://ckeditor.com/license
*/

View file

@ -1,132 +1,135 @@
/*
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
body
{
/* Font */
font-family: sans-serif, Arial, Verdana, "Trebuchet MS";
font-size: 12px;
/* Text color */
color: #333;
/* Remove the background color to make it transparent */
background-color: #fff;
margin: 20px;
}
.cke_editable
{
font-size: 13px;
line-height: 1.6;
}
blockquote
{
font-style: italic;
font-family: Georgia, Times, "Times New Roman", serif;
padding: 2px 0;
border-style: solid;
border-color: #ccc;
border-width: 0;
}
.cke_contents_ltr blockquote
{
padding-left: 20px;
padding-right: 8px;
border-left-width: 5px;
}
.cke_contents_rtl blockquote
{
padding-left: 8px;
padding-right: 20px;
border-right-width: 5px;
}
a
{
color: #0782C1;
}
ol,ul,dl
{
/* IE7: reset rtl list margin. (#7334) */
*margin-right: 0px;
/* preserved spaces for list items with text direction other than the list. (#6249,#8049)*/
padding: 0 40px;
}
h1,h2,h3,h4,h5,h6
{
font-weight: normal;
line-height: 1.2;
}
hr
{
border: 0px;
border-top: 1px solid #ccc;
}
img.right
{
border: 1px solid #ccc;
float: right;
margin-left: 15px;
padding: 5px;
}
img.left
{
border: 1px solid #ccc;
float: left;
margin-right: 15px;
padding: 5px;
}
pre
{
white-space: pre-wrap; /* CSS 2.1 */
word-wrap: break-word; /* IE7 */
-moz-tab-size: 4;
tab-size: 4;
}
.marker
{
background-color: Yellow;
}
span[lang]
{
font-style: italic;
}
figure
{
text-align: center;
border: solid 1px #ccc;
border-radius: 2px;
background: rgba(0,0,0,0.05);
padding: 10px;
margin: 10px 20px;
display: inline-block;
}
figure > figcaption
{
text-align: center;
display: block; /* For IE8 */
}
a > img {
padding: 1px;
margin: 1px;
border: none;
outline: 1px solid #0782C1;
}
/*
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
body
{
/* Font */
font-family: sans-serif, Arial, Verdana, "Trebuchet MS";
font-size: 12px;
/* Text color */
color: #333;
/* Remove the background color to make it transparent */
background-color: #fff;
margin: 20px;
}
.cke_editable
{
font-size: 13px;
line-height: 1.6;
/* Fix for missing scrollbars with RTL texts. (#10488) */
word-wrap: break-word;
}
blockquote
{
font-style: italic;
font-family: Georgia, Times, "Times New Roman", serif;
padding: 2px 0;
border-style: solid;
border-color: #ccc;
border-width: 0;
}
.cke_contents_ltr blockquote
{
padding-left: 20px;
padding-right: 8px;
border-left-width: 5px;
}
.cke_contents_rtl blockquote
{
padding-left: 8px;
padding-right: 20px;
border-right-width: 5px;
}
a
{
color: #0782C1;
}
ol,ul,dl
{
/* IE7: reset rtl list margin. (#7334) */
*margin-right: 0px;
/* preserved spaces for list items with text direction other than the list. (#6249,#8049)*/
padding: 0 40px;
}
h1,h2,h3,h4,h5,h6
{
font-weight: normal;
line-height: 1.2;
}
hr
{
border: 0px;
border-top: 1px solid #ccc;
}
img.right
{
border: 1px solid #ccc;
float: right;
margin-left: 15px;
padding: 5px;
}
img.left
{
border: 1px solid #ccc;
float: left;
margin-right: 15px;
padding: 5px;
}
pre
{
white-space: pre-wrap; /* CSS 2.1 */
word-wrap: break-word; /* IE7 */
-moz-tab-size: 4;
tab-size: 4;
}
.marker
{
background-color: Yellow;
}
span[lang]
{
font-style: italic;
}
figure
{
text-align: center;
border: solid 1px #ccc;
border-radius: 2px;
background: rgba(0,0,0,0.05);
padding: 10px;
margin: 10px 20px;
display: inline-block;
}
figure > figcaption
{
text-align: center;
display: block; /* For IE8 */
}
a > img {
padding: 1px;
margin: 1px;
border: none;
outline: 1px solid #0782C1;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

5
vendors/ckeditor/lang/de-ch.js vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,5 +1,5 @@
/*
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.dialog.add("about",function(a){a=a.lang.about;var b=CKEDITOR.getUrl(CKEDITOR.plugins.get("about").path+"dialogs/"+(CKEDITOR.env.hidpi?"hidpi/":"")+"logo_ckeditor.png");return{title:CKEDITOR.env.ie?a.dlgTitle:a.title,minWidth:390,minHeight:230,contents:[{id:"tab1",label:"",title:"",expand:!0,padding:0,elements:[{type:"html",html:'\x3cstyle type\x3d"text/css"\x3e.cke_about_container{color:#000 !important;padding:10px 10px 0;margin-top:5px}.cke_about_container p{margin: 0 0 10px;}.cke_about_container .cke_about_logo{height:81px;background-color:#fff;background-image:url('+

File diff suppressed because it is too large Load diff

View file

@ -1,21 +1,21 @@
Base64Image Plugin for CKEditor 4
=================================
Created by ALL-INKL.COM - Neue Medien Münnich - 04. Feb 2014
Adds images from local client as base64 string into the source without server
side processing. You can also add external image urls into the source.
## Requirements
The Browser must support the JavaScript File API.
## Installation
1. Download the plugin from http://github.com/nmmf/base64image
2. Extract (decompress) the downloaded file into the plugins folder of your
CKEditor installation.
Example: http://example.com/ckeditor/plugins/base64image
3. Enable the plugin by using the extraPlugins configuration setting.
Example: CKEDITOR.config.extraPlugins = "base64image";
Base64Image Plugin for CKEditor 4
=================================
Created by ALL-INKL.COM - Neue Medien Münnich - 04. Feb 2014
Adds images from local client as base64 string into the source without server
side processing. You can also add external image urls into the source.
## Requirements
The Browser must support the JavaScript File API.
## Installation
1. Download the plugin from http://github.com/nmmf/base64image
2. Extract (decompress) the downloaded file into the plugins folder of your
CKEditor installation.
Example: http://example.com/ckeditor/plugins/base64image
3. Enable the plugin by using the extraPlugins configuration setting.
Example: CKEDITOR.config.extraPlugins = "base64image";

View file

@ -1,11 +1,12 @@
/*
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.dialog.add("paste",function(c){function h(a){var b=new CKEDITOR.dom.document(a.document),f=b.getBody(),d=b.getById("cke_actscrpt");d&&d.remove();f.setAttribute("contenteditable",!0);if(CKEDITOR.env.ie&&8>CKEDITOR.env.version)b.getWindow().on("blur",function(){b.$.selection.empty()});b.on("keydown",function(a){a=a.data;var b;switch(a.getKeystroke()){case 27:this.hide();b=1;break;case 9:case CKEDITOR.SHIFT+9:this.changeFocus(1),b=1}b&&a.preventDefault()},this);c.fire("ariaWidget",new CKEDITOR.dom.element(a.frameElement));
b.getWindow().getFrame().removeCustomData("pendingFocus")&&f.focus()}var e=c.lang.clipboard;c.on("pasteDialogCommit",function(a){a.data&&c.fire("paste",{type:"auto",dataValue:a.data,method:"paste",dataTransfer:CKEDITOR.plugins.clipboard.initPasteDataTransfer()})},null,null,1E3);return{title:e.title,minWidth:CKEDITOR.env.ie&&CKEDITOR.env.quirks?370:350,minHeight:CKEDITOR.env.quirks?250:245,onShow:function(){this.parts.dialog.$.offsetHeight;this.setupContent();this.parts.title.setHtml(this.customTitle||
e.title);this.customTitle=null},onLoad:function(){(CKEDITOR.env.ie7Compat||CKEDITOR.env.ie6Compat)&&"rtl"==c.lang.dir&&this.parts.contents.setStyle("overflow","hidden")},onOk:function(){this.commitContent()},contents:[{id:"general",label:c.lang.common.generalTab,elements:[{type:"html",id:"securityMsg",html:'\x3cdiv style\x3d"white-space:normal;width:340px"\x3e'+e.securityMsg+"\x3c/div\x3e"},{type:"html",id:"pasteMsg",html:'\x3cdiv style\x3d"white-space:normal;width:340px"\x3e'+e.pasteMsg+"\x3c/div\x3e"},
{type:"html",id:"editing_area",style:"width:100%;height:100%",html:"",focus:function(){var a=this.getInputElement(),b=a.getFrameDocument().getBody();!b||b.isReadOnly()?a.setCustomData("pendingFocus",1):b.focus()},setup:function(){var a=this.getDialog(),b='\x3chtml dir\x3d"'+c.config.contentsLangDirection+'" lang\x3d"'+(c.config.contentsLanguage||c.langCode)+'"\x3e\x3chead\x3e\x3cstyle\x3ebody{margin:3px;height:95%;word-break:break-all;}\x3c/style\x3e\x3c/head\x3e\x3cbody\x3e\x3cscript id\x3d"cke_actscrpt" type\x3d"text/javascript"\x3ewindow.parent.CKEDITOR.tools.callFunction('+
CKEDITOR.tools.addFunction(h,a)+",this);\x3c/script\x3e\x3c/body\x3e\x3c/html\x3e",f=CKEDITOR.env.air?"javascript:void(0)":CKEDITOR.env.ie&&!CKEDITOR.env.edge?"javascript:void((function(){"+encodeURIComponent("document.open();("+CKEDITOR.tools.fixDomain+")();document.close();")+'})())"':"",d=CKEDITOR.dom.element.createFromHtml('\x3ciframe class\x3d"cke_pasteframe" frameborder\x3d"0" allowTransparency\x3d"true" src\x3d"'+f+'" aria-label\x3d"'+e.pasteArea+'" aria-describedby\x3d"'+a.getContentElement("general",
"pasteMsg").domId+'"\x3e\x3c/iframe\x3e');d.on("load",function(a){a.removeListener();a=d.getFrameDocument();a.write(b);c.focusManager.add(a.getBody());CKEDITOR.env.air&&h.call(this,a.getWindow().$)},a);d.setCustomData("dialog",a);a=this.getElement();a.setHtml("");a.append(d);if(CKEDITOR.env.ie&&!CKEDITOR.env.edge){var g=CKEDITOR.dom.element.createFromHtml('\x3cspan tabindex\x3d"-1" style\x3d"position:absolute" role\x3d"presentation"\x3e\x3c/span\x3e');g.on("focus",function(){setTimeout(function(){d.$.contentWindow.focus()})});
a.append(g);this.focus=function(){g.focus();this.fire("focus")}}this.getInputElement=function(){return d};CKEDITOR.env.ie&&(a.setStyle("display","block"),a.setStyle("height",d.$.offsetHeight+2+"px"))},commit:function(){var a=this.getDialog().getParentEditor(),b=this.getInputElement().getFrameDocument().getBody(),c=b.getBogus(),d;c&&c.remove();d=b.getHtml();setTimeout(function(){a.fire("pasteDialogCommit",d)},0)}}]}]}});
CKEDITOR.dialog.add("paste",function(c){function k(a){var b=new CKEDITOR.dom.document(a.document),g=b.getBody(),d=b.getById("cke_actscrpt");d&&d.remove();g.setAttribute("contenteditable",!0);g.on(e.mainPasteEvent,function(a){a=e.initPasteDataTransfer(a);f?a!=f&&(f=e.initPasteDataTransfer()):f=a});if(CKEDITOR.env.ie&&8>CKEDITOR.env.version)b.getWindow().on("blur",function(){b.$.selection.empty()});b.on("keydown",function(a){a=a.data;var b;switch(a.getKeystroke()){case 27:this.hide();b=1;break;case 9:case CKEDITOR.SHIFT+
9:this.changeFocus(1),b=1}b&&a.preventDefault()},this);c.fire("ariaWidget",new CKEDITOR.dom.element(a.frameElement));b.getWindow().getFrame().removeCustomData("pendingFocus")&&g.focus()}var h=c.lang.clipboard,e=CKEDITOR.plugins.clipboard,f;c.on("pasteDialogCommit",function(a){a.data&&c.fire("paste",{type:"auto",dataValue:a.data.dataValue,method:"paste",dataTransfer:a.data.dataTransfer||e.initPasteDataTransfer()})},null,null,1E3);return{title:h.title,minWidth:CKEDITOR.env.ie&&CKEDITOR.env.quirks?370:
350,minHeight:CKEDITOR.env.quirks?250:245,onShow:function(){this.parts.dialog.$.offsetHeight;this.setupContent();this.parts.title.setHtml(this.customTitle||h.title);this.customTitle=null},onLoad:function(){(CKEDITOR.env.ie7Compat||CKEDITOR.env.ie6Compat)&&"rtl"==c.lang.dir&&this.parts.contents.setStyle("overflow","hidden")},onOk:function(){this.commitContent()},contents:[{id:"general",label:c.lang.common.generalTab,elements:[{type:"html",id:"securityMsg",html:'\x3cdiv style\x3d"white-space:normal;width:340px"\x3e'+
h.securityMsg+"\x3c/div\x3e"},{type:"html",id:"pasteMsg",html:'\x3cdiv style\x3d"white-space:normal;width:340px"\x3e'+h.pasteMsg+"\x3c/div\x3e"},{type:"html",id:"editing_area",style:"width:100%;height:100%",html:"",focus:function(){var a=this.getInputElement(),b=a.getFrameDocument().getBody();!b||b.isReadOnly()?a.setCustomData("pendingFocus",1):b.focus()},setup:function(){var a=this.getDialog(),b='\x3chtml dir\x3d"'+c.config.contentsLangDirection+'" lang\x3d"'+(c.config.contentsLanguage||c.langCode)+
'"\x3e\x3chead\x3e\x3cstyle\x3ebody{margin:3px;height:95%;word-break:break-all;}\x3c/style\x3e\x3c/head\x3e\x3cbody\x3e\x3cscript id\x3d"cke_actscrpt" type\x3d"text/javascript"\x3ewindow.parent.CKEDITOR.tools.callFunction('+CKEDITOR.tools.addFunction(k,a)+",this);\x3c/script\x3e\x3c/body\x3e\x3c/html\x3e",g=CKEDITOR.env.air?"javascript:void(0)":CKEDITOR.env.ie&&!CKEDITOR.env.edge?"javascript:void((function(){"+encodeURIComponent("document.open();("+CKEDITOR.tools.fixDomain+")();document.close();")+
'})())"':"",d=CKEDITOR.dom.element.createFromHtml('\x3ciframe class\x3d"cke_pasteframe" frameborder\x3d"0" allowTransparency\x3d"true" src\x3d"'+g+'" aria-label\x3d"'+h.pasteArea+'" aria-describedby\x3d"'+a.getContentElement("general","pasteMsg").domId+'"\x3e\x3c/iframe\x3e');f=null;d.on("load",function(a){a.removeListener();a=d.getFrameDocument();a.write(b);c.focusManager.add(a.getBody());CKEDITOR.env.air&&k.call(this,a.getWindow().$)},a);d.setCustomData("dialog",a);a=this.getElement();a.setHtml("");
a.append(d);if(CKEDITOR.env.ie&&!CKEDITOR.env.edge){var e=CKEDITOR.dom.element.createFromHtml('\x3cspan tabindex\x3d"-1" style\x3d"position:absolute" role\x3d"presentation"\x3e\x3c/span\x3e');e.on("focus",function(){setTimeout(function(){d.$.contentWindow.focus()})});a.append(e);this.focus=function(){e.focus();this.fire("focus")}}this.getInputElement=function(){return d};CKEDITOR.env.ie&&(a.setStyle("display","block"),a.setStyle("height",d.$.offsetHeight+2+"px"))},commit:function(){var a=this.getDialog().getParentEditor(),
b=this.getInputElement().getFrameDocument().getBody(),c=b.getBogus(),d;c&&c.remove();d=b.getHtml();setTimeout(function(){a.fire("pasteDialogCommit",{dataValue:d,dataTransfer:f||e.initPasteDataTransfer()})},0)}}]}]}});

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