Removes some files that won't be used in jitsi meet library.
|
@ -1,8 +0,0 @@
|
|||
/**
|
||||
* Google Analytics
|
||||
*/
|
||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
||||
ga('create', 'UA-319188-14', 'jit.si');
|
||||
ga('send', 'pageview');
|
55
app.js
|
@ -1,55 +0,0 @@
|
|||
/* jshint -W117 */
|
||||
/* application specific logic */
|
||||
|
||||
var APP =
|
||||
{
|
||||
init: function () {
|
||||
this.UI = require("./modules/UI/UI");
|
||||
this.API = require("./modules/API/API");
|
||||
this.connectionquality = require("./modules/connectionquality/connectionquality");
|
||||
this.statistics = require("./modules/statistics/statistics");
|
||||
this.RTC = require("./modules/RTC/RTC");
|
||||
this.desktopsharing = require("./modules/desktopsharing/desktopsharing");
|
||||
this.xmpp = require("./modules/xmpp/xmpp");
|
||||
this.keyboardshortcut = require("./modules/keyboardshortcut/keyboardshortcut");
|
||||
this.translation = require("./modules/translation/translation");
|
||||
this.settings = require("./modules/settings/Settings");
|
||||
this.DTMF = require("./modules/DTMF/DTMF");
|
||||
this.members = require("./modules/members/MemberList");
|
||||
}
|
||||
};
|
||||
|
||||
function init() {
|
||||
|
||||
APP.desktopsharing.init();
|
||||
APP.RTC.start();
|
||||
APP.xmpp.start();
|
||||
APP.statistics.start();
|
||||
APP.connectionquality.init();
|
||||
APP.keyboardshortcut.init();
|
||||
APP.members.start();
|
||||
}
|
||||
|
||||
|
||||
$(document).ready(function () {
|
||||
|
||||
var URLProcessor = require("./modules/URLProcessor/URLProcessor");
|
||||
URLProcessor.setConfigParametersFromUrl();
|
||||
APP.init();
|
||||
|
||||
APP.translation.init();
|
||||
|
||||
if(APP.API.isEnabled())
|
||||
APP.API.init();
|
||||
|
||||
APP.UI.start(init);
|
||||
|
||||
});
|
||||
|
||||
$(window).bind('beforeunload', function () {
|
||||
if(APP.API.isEnabled())
|
||||
APP.API.dispose();
|
||||
});
|
||||
|
||||
module.exports = APP;
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
if ! which git > /dev/null 2>&1 ;then
|
||||
echo "Cannot find git executable, not bumping js versions."
|
||||
exit
|
||||
fi
|
||||
if ! git status > /dev/null 2>&1 ;then
|
||||
echo "Not a git repository, not bumping js versions."
|
||||
exit
|
||||
fi
|
||||
|
||||
# This script finds all js files included from index.html which have been
|
||||
# modified and bumps their version (the value of the "v" parameter used
|
||||
# in index.html)
|
||||
|
||||
# contents of index.html at HEAD (excluding not-committed changes)
|
||||
index=`git show HEAD:index.html`
|
||||
|
||||
# js files included from index.html. The sort needed for comm
|
||||
jsfiles=.bump-js-versions-jsfiles.tmp
|
||||
echo "$index" | grep '<script src=".*"' -o | sed -e 's/<script src="//' | sed -e 's/\?.*//' | tr -d \" | sort > $jsfiles
|
||||
|
||||
# modified files since the last commit
|
||||
gitmodified=.bump-js-versions-gitmodified.tmp
|
||||
git ls-files -m | sort > $gitmodified
|
||||
|
||||
for file in `comm -12 $jsfiles $gitmodified` ;do
|
||||
old_version=`echo "$index" | grep "<script src=\"${file}?v=[0-9]*" -o | sed -e 's/.*v=//'| tr -d \"`
|
||||
new_version=$((1+$old_version))
|
||||
echo Bumping version of $file from $old_version to $new_version
|
||||
sed -i.tmp -e "s%script src=\"${file}\?v=.*\"%script src=\"$file?v=$new_version\"%" index.html
|
||||
done
|
||||
|
||||
rm -f $jsfiles $gitmodified index.html.tmp
|
43
config.js
|
@ -1,43 +0,0 @@
|
|||
var config = {
|
||||
hosts: {
|
||||
domain: 'jitsi-meet.example.com',
|
||||
//anonymousdomain: 'guest.example.com',
|
||||
muc: 'conference.jitsi-meet.example.com', // FIXME: use XEP-0030
|
||||
bridge: 'jitsi-videobridge.jitsi-meet.example.com', // FIXME: use XEP-0030
|
||||
//jirecon: 'jirecon.jitsi-meet.example.com',
|
||||
//call_control: 'callcontrol.jitsi-meet.example.com',
|
||||
//focus: 'focus.jitsi-meet.example.com' - defaults to 'focus.jitsi-meet.example.com'
|
||||
},
|
||||
// getroomnode: function (path) { return 'someprefixpossiblybasedonpath'; },
|
||||
// useStunTurn: true, // use XEP-0215 to fetch STUN and TURN server
|
||||
// useIPv6: true, // ipv6 support. use at your own risk
|
||||
useNicks: false,
|
||||
bosh: '//jitsi-meet.example.com/http-bind', // FIXME: use xep-0156 for that
|
||||
clientNode: 'http://jitsi.org/jitsimeet', // The name of client node advertised in XEP-0115 'c' stanza
|
||||
//focusUserJid: 'focus@auth.jitsi-meet.example.com', // The real JID of focus participant - can be overridden here
|
||||
//defaultSipNumber: '', // Default SIP number
|
||||
desktopSharing: 'ext', // Desktop sharing method. Can be set to 'ext', 'webrtc' or false to disable.
|
||||
chromeExtensionId: 'diibjkoicjeejcmhdnailmkgecihlobk', // Id of desktop streamer Chrome extension
|
||||
desktopSharingSources: ['screen', 'window'],
|
||||
minChromeExtVersion: '0.1', // Required version of Chrome extension
|
||||
openSctp: true, // Toggle to enable/disable SCTP channels
|
||||
disableStats: false,
|
||||
disableAudioLevels: false,
|
||||
channelLastN: -1, // The default value of the channel attribute last-n.
|
||||
adaptiveLastN: false,
|
||||
adaptiveSimulcast: false,
|
||||
enableRecording: false,
|
||||
enableWelcomePage: true,
|
||||
enableSimulcast: false, // blocks FF support
|
||||
logStats: false, // Enable logging of PeerConnection stats via the focus
|
||||
// requireDisplayName: true,//Forces the participants that doesn't have display name to enter it when they enter the room.
|
||||
// startAudioMuted: 10, //every participant after the Nth will start audio muted
|
||||
// startVideoMuted: 10, //every participant after the Nth will start video muted
|
||||
// defaultLanguage: "en",
|
||||
// To enable sending statistics to callstats.io you should provide Applicaiton ID and Secret.
|
||||
// callStatsID: "",//Application ID for callstats.io API
|
||||
// callStatsSecret: ""//Secret for callstats.io API
|
||||
/*noticeMessage: 'Service update is scheduled for 16th March 2015. ' +
|
||||
'During that time service will not be available. ' +
|
||||
'Apologise for inconvenience.'*/
|
||||
};
|
239
css/chat.css
|
@ -1,239 +0,0 @@
|
|||
#chatspace {
|
||||
background-color: black;
|
||||
border-left: 1px solid #424242;
|
||||
}
|
||||
|
||||
#chatspace * {
|
||||
-webkit-user-select: text;
|
||||
user-select: text;
|
||||
}
|
||||
|
||||
#chatconversation {
|
||||
visibility: hidden;
|
||||
position: relative;
|
||||
top: 5px;
|
||||
padding: 5px;
|
||||
text-align: left;
|
||||
line-height: 20px;
|
||||
font-size: 10pt;
|
||||
width: 100%;
|
||||
height: 90%;
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
.localuser {
|
||||
color: #087dba;
|
||||
}
|
||||
|
||||
.errorMessage {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.remoteuser {
|
||||
color: white;
|
||||
}
|
||||
|
||||
#usermsg {
|
||||
visibility:hidden;
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
right: 0px;
|
||||
width: 83%;
|
||||
height: 30px;
|
||||
padding: 5px 5px 5px 0px;
|
||||
max-height:150px;
|
||||
min-height:35px;
|
||||
border: 0px none;
|
||||
background: #3a3a3a;
|
||||
color: #a7a7a7;
|
||||
box-shadow: none;
|
||||
border-radius:0;
|
||||
font-size: 10pt;
|
||||
line-height: 30px;
|
||||
overflow: hidden;
|
||||
resize: none;
|
||||
}
|
||||
|
||||
#usermsg:hover {
|
||||
border: 0px none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
#nickname {
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
color: #9d9d9d;
|
||||
font-size: 18px;
|
||||
top: 100px;
|
||||
left: 5px;
|
||||
right: 5px;
|
||||
width: 95%;
|
||||
}
|
||||
|
||||
#nickinput {
|
||||
margin-top: 20px;
|
||||
font-size: 14px;
|
||||
background: #3a3a3a;
|
||||
box-shadow: inset 0 0 3px 2px #a7a7a7;
|
||||
border: 1px solid #a7a7a7;
|
||||
color: #a7a7a7;
|
||||
}
|
||||
|
||||
#unreadMessages {
|
||||
font-size: 8px;
|
||||
position: absolute;
|
||||
left: 46%;
|
||||
top: 27%
|
||||
}
|
||||
|
||||
#bottomUnreadMessages {
|
||||
top: 5px;
|
||||
left: 10px;
|
||||
position: absolute;
|
||||
font-size: 8px;
|
||||
}
|
||||
|
||||
#chatspace .username {
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#chatspace .timestamp {
|
||||
float: right;
|
||||
padding-right: 5px;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
#chatspace .usermessage {
|
||||
padding-top: 20px;
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
.chatArrow {
|
||||
position: absolute;
|
||||
height: 15px;
|
||||
left: 5px;
|
||||
}
|
||||
|
||||
.chatmessage {
|
||||
background: #3a3a3a;
|
||||
width: 93%;
|
||||
margin-left: 5%;
|
||||
margin-right: auto;
|
||||
border-radius: 5px;
|
||||
border-top-left-radius: 0px;
|
||||
margin-top: 3px;
|
||||
left: 5px;
|
||||
color: #a7a7a7;
|
||||
overflow: hidden;
|
||||
padding-bottom: 3px;
|
||||
}
|
||||
|
||||
.smiley {
|
||||
height: 26px;
|
||||
}
|
||||
|
||||
#smileys {
|
||||
position: absolute;
|
||||
bottom: 7px;
|
||||
right: 5px;
|
||||
background: white;
|
||||
border-radius: 50px;
|
||||
height: 26px;
|
||||
margin: auto;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#smileys img {
|
||||
width: 22px;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
#smileysarea {
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
left: 0px;
|
||||
width: 17%;
|
||||
min-width: 31px;
|
||||
height: 40px;
|
||||
padding: 0px;
|
||||
max-height:150px;
|
||||
min-height:35px;
|
||||
border: 0px none;
|
||||
background: #3a3a3a;
|
||||
overflow: hidden;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
#smileysContainer {
|
||||
display: none;
|
||||
position: absolute;
|
||||
background: #3a3a3a;
|
||||
border-bottom: 1px solid;
|
||||
border-top: 1px solid;
|
||||
width: 100%;
|
||||
bottom: 10%;
|
||||
}
|
||||
|
||||
#smileysContainer .smiley {
|
||||
padding: 7px;
|
||||
}
|
||||
|
||||
.smileyContainer {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.smileyContainer:hover {
|
||||
background: #3e3e3e;
|
||||
}
|
||||
|
||||
#usermsg::-webkit-input-placeholder {
|
||||
line-height: 30px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
background: #06a5df;
|
||||
width: 7px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-button {
|
||||
display: none;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background: black;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track-piece {
|
||||
background: black;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: #06a5df;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
#usermsg::-webkit-scrollbar-track-piece {
|
||||
background: #3a3a3a;
|
||||
}
|
||||
|
||||
a:link {
|
||||
color: rgb(184, 184, 184);
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: white;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: rgb(213, 213, 213);
|
||||
}
|
||||
|
||||
a:active {
|
||||
color: black;
|
||||
}
|
|
@ -1,51 +0,0 @@
|
|||
#contactlist {
|
||||
background-color: black;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
#contactlist>div.title {
|
||||
text-align: left;
|
||||
padding: 7px 10px;
|
||||
margin: 2px;
|
||||
color: #00ccff;
|
||||
font-size: 11pt;
|
||||
border-bottom: 1px solid #676767;
|
||||
}
|
||||
|
||||
#contactlist>ul#contacts {
|
||||
position: absolute;
|
||||
top: 31px;
|
||||
bottom: 0px;
|
||||
width: 100%;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
#contacts>li {
|
||||
list-style-type: none;
|
||||
text-align: left;
|
||||
color: #FFF;
|
||||
font-size: 10pt;
|
||||
padding: 7px 10px;
|
||||
margin: 2px;
|
||||
}
|
||||
|
||||
#contacts>li>p {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
.avatar {
|
||||
padding: 0px;
|
||||
margin-right: 10px;
|
||||
vertical-align: middle;
|
||||
font-size: 22pt;
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
#contactlist .clickable {
|
||||
cursor: pointer;
|
||||
}
|
126
css/font.css
|
@ -1,126 +0,0 @@
|
|||
@font-face {
|
||||
font-family: 'jitsi';
|
||||
src:url('../fonts/jitsi.eot?94d075');
|
||||
src:url('../fonts/jitsi.eot?#iefix94d075') format('embedded-opentype'),
|
||||
url('../fonts/jitsi.woff?94d075') format('woff'),
|
||||
url('../fonts/jitsi.ttf?94d075') format('truetype'),
|
||||
url('../fonts/jitsi.svg?94d075#jitsi') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
[class^="icon-"], [class*=" icon-"] {
|
||||
font-family: 'jitsi';
|
||||
speak: none;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
line-height: 0.75em;
|
||||
font-size: 1.22em;
|
||||
|
||||
/* Better Font Rendering =========== */
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.icon-contactList:before {
|
||||
content: "\e615";
|
||||
}
|
||||
.icon-avatar:before {
|
||||
content: "\e616";
|
||||
}
|
||||
.icon-callRetro:before {
|
||||
content: "\e611";
|
||||
}
|
||||
.icon-callModern:before {
|
||||
content: "\e612";
|
||||
}
|
||||
.icon-recDisable:before {
|
||||
content: "\e613";
|
||||
}
|
||||
.icon-recEnable:before {
|
||||
content: "\e614";
|
||||
}
|
||||
.icon-authenticate:before {
|
||||
content: "\e1ae";
|
||||
}
|
||||
.icon-kick1:before {
|
||||
content: "\e60f";
|
||||
}
|
||||
.icon-kick:before {
|
||||
content: "\e610";
|
||||
}
|
||||
.icon-share-desktop:before {
|
||||
content: "\e602";
|
||||
}
|
||||
.icon-chat-simple:before {
|
||||
content: "\e606";
|
||||
}
|
||||
.icon-full-screen:before {
|
||||
content: "\e60d";
|
||||
}
|
||||
.icon-exit-full-screen:before {
|
||||
content: "\e60e";
|
||||
}
|
||||
.icon-prezi:before {
|
||||
content: "\e60c";
|
||||
}
|
||||
.icon-link:before {
|
||||
content: "\e600";
|
||||
}
|
||||
.icon-chat:before {
|
||||
content: "\e601";
|
||||
}
|
||||
.icon-presentation:before {
|
||||
content: "\e603";
|
||||
}
|
||||
.icon-security:before {
|
||||
content: "\e604";
|
||||
}
|
||||
.icon-share-doc:before {
|
||||
content: "\e605";
|
||||
}
|
||||
.icon-telephone:before {
|
||||
content: "\e611";
|
||||
}
|
||||
.icon-security-locked:before {
|
||||
content: "\e607";
|
||||
}
|
||||
.icon-camera:before {
|
||||
content: "\e608";
|
||||
}
|
||||
.icon-camera-disabled:before {
|
||||
content: "\e609";
|
||||
}
|
||||
.icon-mic-disabled:before {
|
||||
content: "\e60a";
|
||||
}
|
||||
.icon-microphone:before {
|
||||
content: "\e60b";
|
||||
}
|
||||
|
||||
.icon-hangup:before {
|
||||
content: "\e617";
|
||||
}
|
||||
|
||||
.icon-reload:before {
|
||||
content: "\e618";
|
||||
}
|
||||
|
||||
.icon-filmstrip:before {
|
||||
content: "\e619";
|
||||
}
|
||||
|
||||
.icon-connection:before {
|
||||
line-height: normal;
|
||||
content: "\e61a";
|
||||
}
|
||||
|
||||
.icon-settings:before {
|
||||
content: "\e61b";
|
||||
}
|
||||
|
||||
.icon-dialPad:before {
|
||||
content: "\e61c";
|
||||
}
|
|
@ -1,105 +0,0 @@
|
|||
.jitsipopover {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 1010;
|
||||
display: none;
|
||||
max-width: 300px;
|
||||
min-width: 100px;
|
||||
padding: 1px;
|
||||
text-align: left;
|
||||
color: #333333;
|
||||
background-color: #ffffff;
|
||||
background-clip: padding-box;
|
||||
border: 1px solid #cccccc;
|
||||
border: 1px solid rgba(0, 0, 0, 0.2);
|
||||
border-radius: 6px;
|
||||
/*-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);*/
|
||||
/*box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);*/
|
||||
white-space: normal;
|
||||
margin-top: -10px;
|
||||
margin-bottom: 35px;
|
||||
}
|
||||
|
||||
.jitsipopover.black
|
||||
{
|
||||
background-color: rgba(0,0,0,0.8);
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.jitsipopover-content {
|
||||
padding: 9px 14px;
|
||||
font-size: 10pt;
|
||||
white-space:pre-wrap;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.jitsipopover > .arrow,
|
||||
.jitsipopover > .arrow:after {
|
||||
position: absolute;
|
||||
display: block;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-color: transparent;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.jitsipopover > .arrow {
|
||||
border-width: 11px;
|
||||
left: 50%;
|
||||
margin-left: -11px;
|
||||
border-bottom-width: 0;
|
||||
border-top-color: #999999;
|
||||
border-top-color: rgba(0, 0, 0, 0.25);
|
||||
bottom: -11px;
|
||||
}
|
||||
.jitsipopover > .arrow:after {
|
||||
border-width: 10px;
|
||||
content: " ";
|
||||
bottom: 1px;
|
||||
margin-left: -10px;
|
||||
border-bottom-width: 0;
|
||||
border-top-color: #ffffff;
|
||||
}
|
||||
|
||||
.jitsipopover.black > .arrow:after
|
||||
{
|
||||
border-top-color: rgba(0, 0, 0, 0.8);
|
||||
}
|
||||
|
||||
.jitsiPopupmenuPadding {
|
||||
height: 35px;
|
||||
width: 100px;
|
||||
position: absolute;
|
||||
bottom: -35;
|
||||
}
|
||||
|
||||
.jitsipopover_green
|
||||
{
|
||||
color: #4abd04;
|
||||
}
|
||||
|
||||
.jitsipopover_orange
|
||||
{
|
||||
color: #ffa800;
|
||||
}
|
||||
|
||||
.jitsipopover_blue
|
||||
{
|
||||
color: #06a5df;
|
||||
}
|
||||
|
||||
.jitsipopover_showmore
|
||||
{
|
||||
background-color: #06a5df;
|
||||
color: #ffffff;
|
||||
cursor: pointer;
|
||||
border-radius: 3px;
|
||||
text-align: center;
|
||||
width: 90px;
|
||||
height: 16px;
|
||||
padding-top: 4px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
margin: 15px auto 0px auto;
|
||||
}
|
|
@ -1,128 +0,0 @@
|
|||
/*
|
||||
------------------------------
|
||||
Impromptu
|
||||
------------------------------
|
||||
*/
|
||||
.jqifade{
|
||||
position: absolute;
|
||||
background-color: #000;
|
||||
}
|
||||
div.jqi{
|
||||
width: 400px;
|
||||
position: absolute;
|
||||
background-color: #ffffff;
|
||||
font-size: 11px;
|
||||
text-align: left;
|
||||
border: solid 1px #eeeeee;
|
||||
border-radius: 6px;
|
||||
-moz-border-radius: 6px;
|
||||
-webkit-border-radius: 6px;
|
||||
padding: 7px;
|
||||
}
|
||||
div.jqi .jqicontainer{
|
||||
}
|
||||
div.jqi .jqiclose{
|
||||
position: absolute;
|
||||
top: 4px; right: -2px;
|
||||
width: 18px;
|
||||
cursor: default;
|
||||
color: #bbbbbb;
|
||||
font-weight: bold;
|
||||
}
|
||||
div.jqi .jqistate{
|
||||
background-color: #fff;
|
||||
}
|
||||
div.jqi .jqititle{
|
||||
padding: 5px 10px;
|
||||
font-size: 16px;
|
||||
line-height: 20px;
|
||||
border-bottom: solid 1px #eeeeee;
|
||||
}
|
||||
div.jqi .jqimessage{
|
||||
padding: 10px;
|
||||
line-height: 20px;
|
||||
color: #444444;
|
||||
}
|
||||
div.jqi .jqibuttons{
|
||||
text-align: right;
|
||||
margin: 0 -7px -7px -7px;
|
||||
border-top: solid 1px #e4e4e4;
|
||||
background-color: #f4f4f4;
|
||||
border-radius: 0 0 6px 6px;
|
||||
-moz-border-radius: 0 0 6px 6px;
|
||||
-webkit-border-radius: 0 0 6px 6px;
|
||||
}
|
||||
div.jqi .jqibuttons button{
|
||||
margin: 0;
|
||||
padding: 5px 20px;
|
||||
background-color: transparent;
|
||||
font-weight: normal;
|
||||
border: none;
|
||||
border-left: solid 1px #e4e4e4;
|
||||
color: #777;
|
||||
font-weight: bold;
|
||||
font-size: 12px;
|
||||
}
|
||||
div.jqi .jqibuttons button.jqidefaultbutton{
|
||||
color: #489afe;
|
||||
}
|
||||
|
||||
div.jqi .jqibuttons button:disabled {
|
||||
color: #b6b6b6 !important;
|
||||
}
|
||||
div.jqi .jqibuttons button:hover,
|
||||
div.jqi .jqibuttons button:focus{
|
||||
color: #287ade;
|
||||
outline: none;
|
||||
}
|
||||
.jqiwarning .jqi .jqibuttons{
|
||||
background-color: #b95656;
|
||||
}
|
||||
|
||||
/* sub states */
|
||||
div.jqi .jqiparentstate::after{
|
||||
background-color: #777;
|
||||
opacity: 0.6;
|
||||
filter: alpha(opacity=60);
|
||||
content: '';
|
||||
position: absolute;
|
||||
top:0;left:0;bottom:0;right:0;
|
||||
border-radius: 6px;
|
||||
-moz-border-radius: 6px;
|
||||
-webkit-border-radius: 6px;
|
||||
}
|
||||
div.jqi .jqisubstate{
|
||||
position: absolute;
|
||||
top:0;
|
||||
left: 20%;
|
||||
width: 60%;
|
||||
padding: 7px;
|
||||
border: solid 1px #eeeeee;
|
||||
border-top: none;
|
||||
border-radius: 0 0 6px 6px;
|
||||
-moz-border-radius: 0 0 6px 6px;
|
||||
-webkit-border-radius: 0 0 6px 6px;
|
||||
}
|
||||
div.jqi .jqisubstate .jqibuttons button{
|
||||
padding: 10px 18px;
|
||||
}
|
||||
|
||||
/* arrows for tooltips/tours */
|
||||
.jqi .jqiarrow{ position: absolute; height: 0; width:0; line-height: 0; font-size: 0; border: solid 10px transparent;}
|
||||
|
||||
.jqi .jqiarrowtl{ left: 10px; top: -20px; border-bottom-color: #ffffff; }
|
||||
.jqi .jqiarrowtc{ left: 50%; top: -20px; border-bottom-color: #ffffff; margin-left: -10px; }
|
||||
.jqi .jqiarrowtr{ right: 10px; top: -20px; border-bottom-color: #ffffff; }
|
||||
|
||||
.jqi .jqiarrowbl{ left: 10px; bottom: -20px; border-top-color: #ffffff; }
|
||||
.jqi .jqiarrowbc{ left: 50%; bottom: -20px; border-top-color: #ffffff; margin-left: -10px; }
|
||||
.jqi .jqiarrowbr{ right: 10px; bottom: -20px; border-top-color: #ffffff; }
|
||||
|
||||
.jqi .jqiarrowlt{ left: -20px; top: 10px; border-right-color: #ffffff; }
|
||||
.jqi .jqiarrowlm{ left: -20px; top: 50%; border-right-color: #ffffff; margin-top: -10px; }
|
||||
.jqi .jqiarrowlb{ left: -20px; bottom: 10px; border-right-color: #ffffff; }
|
||||
|
||||
.jqi .jqiarrowrt{ right: -20px; top: 10px; border-left-color: #ffffff; }
|
||||
.jqi .jqiarrowrm{ right: -20px; top: 50%; border-left-color: #ffffff; margin-top: -10px; }
|
||||
.jqi .jqiarrowrb{ right: -20px; bottom: 10px; border-left-color: #ffffff; }
|
||||
|
|
@ -1,61 +0,0 @@
|
|||
/*Initialize*/
|
||||
ul.loginmenu {
|
||||
display:none;
|
||||
position: absolute;
|
||||
margin: 0;
|
||||
padding: 5px;
|
||||
padding-bottom: 7px;
|
||||
top: 45px;
|
||||
left: -5px;
|
||||
background-color: rgba(0,0,0,0.9);
|
||||
border: 1px solid rgba(256, 256, 256, 0.2);
|
||||
border-radius:8px;
|
||||
}
|
||||
|
||||
ul.loginmenu li {
|
||||
list-style-type: none;
|
||||
padding: 7px;
|
||||
}
|
||||
|
||||
ul.loginmenu li.identity {
|
||||
color: #fff;
|
||||
font-size: 11pt;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
ul.loginmenu:after {
|
||||
content: url('../images/dropdownPointer.png');
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: -7px;
|
||||
left: 18px;
|
||||
}
|
||||
|
||||
li a.authButton{
|
||||
background-color: #06a5df;
|
||||
padding-top: 3px;
|
||||
padding-bottom: 3px;
|
||||
padding-left: 29px;
|
||||
padding-right: 29px;
|
||||
border-radius: 4px;
|
||||
color: #fff;
|
||||
font-size: 11pt;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
span.authentication:hover ul.loginmenu, ul.loginmenu:hover {
|
||||
display:block !important;
|
||||
}
|
||||
|
||||
a.disabled {
|
||||
color: gray !important;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.loginmenuPadding {
|
||||
width: 50px;
|
||||
height: 30px;
|
||||
position: absolute;
|
||||
top: -30px;
|
||||
left: 0px;
|
||||
}
|
377
css/main.css
|
@ -1,377 +0,0 @@
|
|||
* {
|
||||
-webkit-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
html, body{
|
||||
margin:0px;
|
||||
height:100%;
|
||||
color: #424242;
|
||||
font-family:'Helvetica Neue', Helvetica, sans-serif;
|
||||
font-weight: 400;
|
||||
background: #000000;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.right-panel {
|
||||
display:none;
|
||||
position:absolute;
|
||||
float: right;
|
||||
top: 0px;
|
||||
bottom: 0px;
|
||||
right: 0px;
|
||||
width: 20%;
|
||||
max-width: 200px;
|
||||
overflow: hidden;
|
||||
/* background-color:#dfebf1;*/
|
||||
background-color:#FFFFFF;
|
||||
border-left:1px solid #424242;
|
||||
z-index: 5;
|
||||
}
|
||||
|
||||
#nowebrtc {
|
||||
display:none;
|
||||
}
|
||||
|
||||
.toolbar_span {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#toolbar a.button::after {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
left: 40px;
|
||||
width: 1px;
|
||||
height: 20px;
|
||||
background: #373737;
|
||||
}
|
||||
|
||||
#toolbar a.button:last-child::after {
|
||||
content: none;
|
||||
}
|
||||
|
||||
.button {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
color: #FFFFFF;
|
||||
top: 0;
|
||||
padding: 10px 0;
|
||||
width: 38px;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
text-shadow: 0 1px 0 rgba(255,255,255,.3), 0 -1px 0 rgba(0,0,0,.6);
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.toolbar_span>span {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
font-size: 7pt;
|
||||
color: #ffffff;
|
||||
text-align:center;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#toolbar_button_chat, #chatBottomButton, #contactListButton, #numberOfParticipants {
|
||||
-webkit-transition: all .5s ease-in-out;
|
||||
-moz-transition: all .5s ease-in-out;
|
||||
transition: all .5s ease-in-out;
|
||||
}
|
||||
/*#ffde00*/
|
||||
#toolbar_button_chat.active, #contactListButton.glowing, #chatBottomButton.glowing {
|
||||
-webkit-text-shadow: -1px 0 10px #00ccff,
|
||||
0 1px 10px #00ccff,
|
||||
1px 0 10px #00ccff,
|
||||
0 -1px 10px #00ccff;
|
||||
-moz-text-shadow: 1px 0 10px #00ccff,
|
||||
0 1px 10px #00ccff,
|
||||
1px 0 10px #00ccff,
|
||||
0 -1px 10px #00ccff;
|
||||
text-shadow: -1px 0 10px #00ccff,
|
||||
0 1px 10px #00ccff,
|
||||
1px 0 10px #00ccff,
|
||||
0 -1px 10px #00ccff;
|
||||
}
|
||||
|
||||
#toolbar_button_hangup {
|
||||
color: #ff0000;
|
||||
font-size: 1.4em;
|
||||
}
|
||||
|
||||
#numberOfParticipants {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
right: -1;
|
||||
color: white;
|
||||
width: 13px;
|
||||
height: 13px;
|
||||
line-height: 13px;
|
||||
font-weight: bold;
|
||||
border-radius: 2px;
|
||||
font-size: 11px;
|
||||
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
|
||||
}
|
||||
|
||||
#contactListButton.active #numberOfParticipants {
|
||||
color: #00ccff;
|
||||
}
|
||||
|
||||
#toolbar_button_record {
|
||||
-webkit-transition: all .5s ease-in-out;
|
||||
-moz-transition: all .5s ease-in-out;
|
||||
transition: all .5s ease-in-out;
|
||||
}
|
||||
/*#ffde00*/
|
||||
#toolbar_button_record.active {
|
||||
-webkit-text-shadow: -1px 0 10px #00ccff,
|
||||
0 1px 10px #00ccff,
|
||||
1px 0 10px #00ccff,
|
||||
0 -1px 10px #00ccff;
|
||||
-moz-text-shadow: 1px 0 10px #00ccff,
|
||||
0 1px 10px #00ccff,
|
||||
1px 0 10px #00ccff,
|
||||
0 -1px 10px #00ccff;
|
||||
text-shadow: -1px 0 10px #00ccff,
|
||||
0 1px 10px #00ccff,
|
||||
1px 0 10px #00ccff,
|
||||
0 -1px 10px #00ccff;
|
||||
}
|
||||
|
||||
a.button:hover,
|
||||
a.bottomToolbarButton:hover {
|
||||
top: 0px;
|
||||
cursor: pointer;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border-radius: 6px;
|
||||
background-clip: padding-box;
|
||||
-webkit-border-radius: 6px;
|
||||
-webkit-background-clip: padding-box;
|
||||
}
|
||||
|
||||
.no-fa-video-camera, .fa-microphone-slash {
|
||||
color: #636363;
|
||||
}
|
||||
|
||||
.header_button_separator {
|
||||
display: inline-block;
|
||||
position:relative;
|
||||
top: 5;
|
||||
width: 1px;
|
||||
height: 20px;
|
||||
background: #373737;
|
||||
}
|
||||
|
||||
.bottom_button_separator {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
left: 5;
|
||||
width: 20px;
|
||||
height: 1px;
|
||||
background: #373737;
|
||||
}
|
||||
|
||||
input[type='text'], input[type='password'], textarea {
|
||||
-webkit-user-select: text;
|
||||
user-select: text;
|
||||
display: inline-block;
|
||||
font-size: 14px;
|
||||
padding: 5px;
|
||||
background: #f3f3f3;
|
||||
border-radius: 3px;
|
||||
font-weight: 100;
|
||||
line-height: 20px;
|
||||
height: 40px;
|
||||
color: #333;
|
||||
text-align: left;
|
||||
border:1px solid #ACD8F0;
|
||||
outline: none; /* removes the default outline */
|
||||
resize: none; /* prevents the user-resizing, adjust to taste */
|
||||
}
|
||||
|
||||
input[type='text'], input[type='password'], textarea:focus {
|
||||
box-shadow: inset 0 0 3px 2px #ACD8F0; /* provides a more style-able
|
||||
replacement to the outline */
|
||||
}
|
||||
|
||||
textarea {
|
||||
overflow: hidden;
|
||||
word-wrap: break-word;
|
||||
resize: horizontal;
|
||||
}
|
||||
|
||||
button.no-icon {
|
||||
padding: 0 1em;
|
||||
}
|
||||
|
||||
button {
|
||||
border: none;
|
||||
height: 35px;
|
||||
padding: 0 1em 0 2em;
|
||||
position: relative;
|
||||
border-radius: 3px;
|
||||
font-weight: bold;
|
||||
color: #fff;
|
||||
line-height: 35px;
|
||||
background: #2c8ad2;
|
||||
}
|
||||
|
||||
button, input, select, textarea {
|
||||
margin: 0;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
button, input[type="button"], input[type="reset"], input[type="submit"] {
|
||||
cursor: pointer;
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
form {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#downloadlog {
|
||||
position: absolute;
|
||||
bottom: 5;
|
||||
left: 5;
|
||||
overflow: visible;
|
||||
z-index: 100;
|
||||
color: rgba(255,255,255,.50);
|
||||
}
|
||||
|
||||
#bottomToolbar {
|
||||
display:block;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
margin-right: 5px;
|
||||
bottom: 40px;
|
||||
width: 29px;
|
||||
border-radius: 6px;
|
||||
color: #FFF;
|
||||
border: 1px solid rgba(256, 256, 256, 0.2);
|
||||
background: rgba(0,0,0,0.8);
|
||||
z-index: 6; /*+1 from #remoteVideos*/
|
||||
}
|
||||
|
||||
.bottomToolbarButton {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
color: #FFFFFF;
|
||||
top: 0;
|
||||
padding-top: 6px;
|
||||
margin: 2px;
|
||||
width: 25px;
|
||||
height: 20px;
|
||||
cursor: pointer;
|
||||
font-size: 10pt;
|
||||
text-align: center;
|
||||
text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.active {
|
||||
color: #00ccff;
|
||||
}
|
||||
|
||||
.bottomToolbar_span>span {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
font-size: 7pt;
|
||||
color: #ffffff;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.glow
|
||||
{
|
||||
text-shadow: 0px 0px 30px #06a5df, 0px 0px 10px #06a5df, 0px 0px 5px #06a5df,0px 0px 3px #06a5df;
|
||||
}
|
||||
|
||||
.watermark {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 15;
|
||||
width: 186px;
|
||||
height: 74px;
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.leftwatermark {
|
||||
display: none;
|
||||
left: 15;
|
||||
background-image:url(../images/watermark.png);
|
||||
background-position: center left;
|
||||
}
|
||||
|
||||
.rightwatermark {
|
||||
display: none;
|
||||
right: 15;
|
||||
background-position: center right;
|
||||
}
|
||||
|
||||
.poweredby {
|
||||
display: none;
|
||||
position: absolute;
|
||||
left: 25;
|
||||
bottom: 7;
|
||||
font-size: 11pt;
|
||||
color: rgba(255,255,255,.50);
|
||||
text-decoration: none;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
#toast-container.notification-bottom-right {
|
||||
bottom: 120px;
|
||||
right: 5px;
|
||||
}
|
||||
|
||||
#toast-container.notification-bottom-right-center {
|
||||
right: 205px;
|
||||
}
|
||||
|
||||
#toast-container .toast-info {
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.toast-close-button {
|
||||
right: -7px;
|
||||
top: -19px;
|
||||
}
|
||||
|
||||
#toast-container .toast-info {
|
||||
background-color: black;
|
||||
border: 1px solid #3a3a3a;
|
||||
width: 220px;
|
||||
padding: 10px 10px 10px 50px;
|
||||
}
|
||||
|
||||
.connected {
|
||||
color: forestgreen;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.disconnected {
|
||||
color: darkred;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.lastN {
|
||||
color: #a3a3a3;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.toast-close-button:hover,
|
||||
.toast-close-button:focus {
|
||||
color: #ffffff;
|
||||
opacity: 1;
|
||||
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
|
||||
filter: alpha(opacity=100);
|
||||
}
|
||||
|
||||
.toast-message .nickname {
|
||||
font-weight: bold;
|
||||
}
|
|
@ -1,34 +0,0 @@
|
|||
.jqistates {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.jqistates h2 {
|
||||
padding-bottom: 10px;
|
||||
border-bottom: 1px solid #eee;
|
||||
font-size: 18px;
|
||||
line-height: 25px;
|
||||
text-align: center;
|
||||
color: #424242;
|
||||
}
|
||||
|
||||
.jqistates input {
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.jqistates input[type='text'], input[type='password'] {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.jqibuttons button {
|
||||
margin-right: 5px;
|
||||
float:right;
|
||||
}
|
||||
|
||||
button.jqidefaultbutton #inviteLinkRef {
|
||||
color: #2c8ad2;
|
||||
}
|
||||
|
||||
#inviteLinkRef {
|
||||
-webkit-user-select: text;
|
||||
user-select: text;
|
||||
}
|
|
@ -1,11 +0,0 @@
|
|||
#notice {
|
||||
position: relative;
|
||||
z-index: 3;
|
||||
margin-top: 6px;
|
||||
}
|
||||
#noticeText {
|
||||
background-color: #000000;
|
||||
color: white;
|
||||
padding: 3px;
|
||||
border-radius: 5px;
|
||||
}
|
124
css/popover.css
|
@ -1,124 +0,0 @@
|
|||
.popover {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 1010;
|
||||
display: none;
|
||||
max-width: 300px;
|
||||
min-width: 100px;
|
||||
padding: 1px;
|
||||
text-align: left;
|
||||
color: #333333;
|
||||
background-color: #ffffff;
|
||||
background-clip: padding-box;
|
||||
border: 1px solid #cccccc;
|
||||
border: 1px solid rgba(0, 0, 0, 0.2);
|
||||
border-radius: 6px;
|
||||
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
||||
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
|
||||
white-space: normal;
|
||||
}
|
||||
.popover.top {
|
||||
margin-top: -10px;
|
||||
}
|
||||
.popover.right {
|
||||
margin-left: 10px;
|
||||
}
|
||||
.popover.bottom {
|
||||
margin-top: 10px;
|
||||
}
|
||||
.popover.left {
|
||||
margin-left: -10px;
|
||||
}
|
||||
.popover-title {
|
||||
margin: 0;
|
||||
padding: 8px 14px;
|
||||
font-size: 11pt;
|
||||
font-weight: normal;
|
||||
line-height: 18px;
|
||||
background-color: #f7f7f7;
|
||||
border-bottom: 1px solid #ebebeb;
|
||||
border-radius: 5px 5px 0 0;
|
||||
}
|
||||
.popover-content {
|
||||
padding: 9px 14px;
|
||||
font-size: 10pt;
|
||||
white-space:pre-wrap;
|
||||
text-align: center;
|
||||
}
|
||||
.popover > .arrow,
|
||||
.popover > .arrow:after {
|
||||
position: absolute;
|
||||
display: block;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-color: transparent;
|
||||
border-style: solid;
|
||||
}
|
||||
.popover > .arrow {
|
||||
border-width: 11px;
|
||||
}
|
||||
.popover > .arrow:after {
|
||||
border-width: 10px;
|
||||
content: "";
|
||||
}
|
||||
.popover.top > .arrow {
|
||||
left: 50%;
|
||||
margin-left: -11px;
|
||||
border-bottom-width: 0;
|
||||
border-top-color: #999999;
|
||||
border-top-color: rgba(0, 0, 0, 0.25);
|
||||
bottom: -11px;
|
||||
}
|
||||
.popover.top > .arrow:after {
|
||||
content: " ";
|
||||
bottom: 1px;
|
||||
margin-left: -10px;
|
||||
border-bottom-width: 0;
|
||||
border-top-color: #ffffff;
|
||||
}
|
||||
.popover.right > .arrow {
|
||||
top: 50%;
|
||||
left: -11px;
|
||||
margin-top: -11px;
|
||||
border-left-width: 0;
|
||||
border-right-color: #999999;
|
||||
border-right-color: rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
.popover.right > .arrow:after {
|
||||
content: " ";
|
||||
left: 1px;
|
||||
bottom: -10px;
|
||||
border-left-width: 0;
|
||||
border-right-color: #ffffff;
|
||||
}
|
||||
.popover.bottom > .arrow {
|
||||
left: 50%;
|
||||
margin-left: -11px;
|
||||
border-top-width: 0;
|
||||
border-bottom-color: #999999;
|
||||
border-bottom-color: rgba(0, 0, 0, 0.25);
|
||||
top: -11px;
|
||||
}
|
||||
.popover.bottom > .arrow:after {
|
||||
content: " ";
|
||||
top: 1px;
|
||||
margin-left: -10px;
|
||||
border-top-width: 0;
|
||||
border-bottom-color: #ffffff;
|
||||
}
|
||||
.popover.left > .arrow {
|
||||
top: 50%;
|
||||
right: -11px;
|
||||
margin-top: -11px;
|
||||
border-right-width: 0;
|
||||
border-left-color: #999999;
|
||||
border-left-color: rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
.popover.left > .arrow:after {
|
||||
content: " ";
|
||||
right: 1px;
|
||||
border-right-width: 0;
|
||||
border-left-color: #ffffff;
|
||||
bottom: -10px;
|
||||
}
|
|
@ -1,72 +0,0 @@
|
|||
/*Initialize*/
|
||||
ul.popupmenu {
|
||||
display:none;
|
||||
position: absolute;
|
||||
padding:10px;
|
||||
margin: 0;
|
||||
bottom: 0;
|
||||
margin-bottom: 35px;
|
||||
padding-bottom: 10px;
|
||||
padding-top: 10px;
|
||||
right: 10px;
|
||||
left: -5px;
|
||||
width: 100px;
|
||||
background-color: rgba(0,0,0,0.9);
|
||||
border: 1px solid rgba(256, 256, 256, 0.2);
|
||||
border-radius:8px;
|
||||
}
|
||||
|
||||
ul.popupmenu:after {
|
||||
content: url('../images/popupPointer.png');
|
||||
display: block;
|
||||
position: absolute;
|
||||
bottom: -8px;
|
||||
left: 11px;
|
||||
}
|
||||
|
||||
ul.popupmenu li {
|
||||
list-style-type: none;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
ul.popupmenu li:hover {
|
||||
background-color: rgba(256, 256, 256, .2);
|
||||
border-radius:6px;
|
||||
}
|
||||
|
||||
/*Link Appearance*/
|
||||
ul.popupmenu li a {
|
||||
text-decoration: none;
|
||||
color: #fff;
|
||||
padding: 5px;
|
||||
display: inline-block;
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
ul.popupmenu li a i.icon-kick {
|
||||
font-size: 8pt;
|
||||
}
|
||||
|
||||
ul.popupmenu li a span {
|
||||
display: inline-block;
|
||||
width: 20px;
|
||||
height: 16px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
span.remotevideomenu:hover ul.popupmenu, ul.popupmenu:hover {
|
||||
display:block !important;
|
||||
}
|
||||
|
||||
a.disabled {
|
||||
color: gray !important;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.popupmenuPadding {
|
||||
height: 35px;
|
||||
width: 100px;
|
||||
position: absolute;
|
||||
bottom: -35;
|
||||
left: 0px;
|
||||
}
|
|
@ -1,68 +0,0 @@
|
|||
#settingsmenu {
|
||||
background: black;
|
||||
color: #00ccff;
|
||||
}
|
||||
|
||||
#settingsmenu input, select {
|
||||
margin-top: 10px;
|
||||
margin-left: 10%;
|
||||
width: 80%;
|
||||
font-size: 14px;
|
||||
background: #3a3a3a;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
color: #a7a7a7;
|
||||
}
|
||||
|
||||
#settingsmenu .arrow-up {
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-left: 5px solid transparent;
|
||||
border-right: 5px solid transparent;
|
||||
border-bottom: 5px solid #3a3a3a;
|
||||
position: relative;
|
||||
top: 10px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
#settingsmenu button {
|
||||
width: 45%;
|
||||
left: 26%;
|
||||
padding: 0;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
#settingsmenu #avatar {
|
||||
width: 24%;
|
||||
left: 38%;
|
||||
border-radius: 25px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#settingsmenu .icon-settings {
|
||||
padding: 34px;
|
||||
}
|
||||
|
||||
#languages_selectbox{
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
|
||||
#startMutedOptions {
|
||||
padding-left: 10%;
|
||||
text-indent: -10%;
|
||||
}
|
||||
|
||||
#startAudioMuted {
|
||||
width: 13px !important;
|
||||
}
|
||||
|
||||
#startVideoMuted {
|
||||
width: 13px !important;
|
||||
}
|
||||
|
||||
.startMutedLabel {
|
||||
width: 94%;
|
||||
float: left;
|
||||
}
|
180
css/toastr.css
|
@ -1,180 +0,0 @@
|
|||
/*
|
||||
* Toastr
|
||||
* Copyright 2012-2014 John Papa and Hans Fjällemark.
|
||||
* All Rights Reserved.
|
||||
* Use, reproduction, distribution, and modification of this code is subject to the terms and
|
||||
* conditions of the MIT license, available at http://www.opensource.org/licenses/mit-license.php
|
||||
*
|
||||
* Author: John Papa and Hans Fjällemark
|
||||
* Project: https://github.com/CodeSeven/toastr
|
||||
*/
|
||||
.toast-title {
|
||||
font-weight: bold;
|
||||
}
|
||||
.toast-message {
|
||||
-ms-word-wrap: break-word;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
.toast-message a,
|
||||
.toast-message label {
|
||||
color: #ffffff;
|
||||
}
|
||||
.toast-message a:hover {
|
||||
color: #cccccc;
|
||||
text-decoration: none;
|
||||
}
|
||||
.toast-close-button {
|
||||
position: relative;
|
||||
right: -0.3em;
|
||||
top: -0.3em;
|
||||
float: right;
|
||||
font-size: 20px;
|
||||
font-weight: bold;
|
||||
color: #ffffff;
|
||||
-webkit-text-shadow: 0 1px 0 #ffffff;
|
||||
text-shadow: 0 1px 0 #ffffff;
|
||||
opacity: 0.8;
|
||||
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
|
||||
filter: alpha(opacity=80);
|
||||
}
|
||||
.toast-close-button:hover,
|
||||
.toast-close-button:focus {
|
||||
color: #000000;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
opacity: 0.4;
|
||||
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
|
||||
filter: alpha(opacity=40);
|
||||
}
|
||||
/*Additional properties for button version
|
||||
iOS requires the button element instead of an anchor tag.
|
||||
If you want the anchor version, it requires `href="#"`.*/
|
||||
button.toast-close-button {
|
||||
padding: 0;
|
||||
cursor: pointer;
|
||||
background: transparent;
|
||||
border: 0;
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
.toast-top-full-width {
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 100%;
|
||||
}
|
||||
.toast-bottom-full-width {
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
width: 100%;
|
||||
}
|
||||
.toast-top-left {
|
||||
top: 12px;
|
||||
left: 12px;
|
||||
}
|
||||
.toast-top-right {
|
||||
top: 12px;
|
||||
right: 12px;
|
||||
}
|
||||
.toast-bottom-right {
|
||||
right: 12px;
|
||||
bottom: 12px;
|
||||
}
|
||||
.toast-bottom-left {
|
||||
bottom: 12px;
|
||||
left: 12px;
|
||||
}
|
||||
#toast-container {
|
||||
position: fixed;
|
||||
z-index: 999999;
|
||||
/*overrides*/
|
||||
|
||||
}
|
||||
#toast-container * {
|
||||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
#toast-container > div {
|
||||
margin: 0 0 6px;
|
||||
padding: 15px 15px 15px 50px;
|
||||
width: 300px;
|
||||
-moz-border-radius: 3px 3px 3px 3px;
|
||||
-webkit-border-radius: 3px 3px 3px 3px;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
background-position: 15px center;
|
||||
background-repeat: no-repeat;
|
||||
-moz-box-shadow: 0 0 12px #999999;
|
||||
-webkit-box-shadow: 0 0 12px #999999;
|
||||
box-shadow: 0 0 12px #999999;
|
||||
color: #ffffff;
|
||||
opacity: 0.8;
|
||||
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
|
||||
filter: alpha(opacity=80);
|
||||
}
|
||||
#toast-container > :hover {
|
||||
-moz-box-shadow: 0 0 12px #000000;
|
||||
-webkit-box-shadow: 0 0 12px #000000;
|
||||
box-shadow: 0 0 12px #000000;
|
||||
opacity: 1;
|
||||
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
|
||||
filter: alpha(opacity=100);
|
||||
cursor: pointer;
|
||||
}
|
||||
#toast-container > .toast-info {
|
||||
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
|
||||
}
|
||||
#toast-container > .toast-error {
|
||||
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
|
||||
}
|
||||
#toast-container > .toast-success {
|
||||
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
|
||||
}
|
||||
#toast-container > .toast-warning {
|
||||
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
|
||||
}
|
||||
#toast-container.toast-top-full-width > div,
|
||||
#toast-container.toast-bottom-full-width > div {
|
||||
width: 96%;
|
||||
margin: auto;
|
||||
}
|
||||
.toast {
|
||||
background-color: #030303;
|
||||
}
|
||||
.toast-success {
|
||||
background-color: #51a351;
|
||||
}
|
||||
.toast-error {
|
||||
background-color: #bd362f;
|
||||
}
|
||||
.toast-info {
|
||||
background-color: #2f96b4;
|
||||
}
|
||||
.toast-warning {
|
||||
background-color: #f89406;
|
||||
}
|
||||
/*Responsive Design*/
|
||||
@media all and (max-width: 240px) {
|
||||
#toast-container > div {
|
||||
padding: 8px 8px 8px 50px;
|
||||
width: 11em;
|
||||
}
|
||||
#toast-container .toast-close-button {
|
||||
right: -0.2em;
|
||||
top: -0.2em;
|
||||
}
|
||||
}
|
||||
@media all and (min-width: 241px) and (max-width: 480px) {
|
||||
#toast-container > div {
|
||||
padding: 8px 8px 8px 50px;
|
||||
width: 18em;
|
||||
}
|
||||
#toast-container .toast-close-button {
|
||||
right: -0.2em;
|
||||
top: -0.2em;
|
||||
}
|
||||
}
|
||||
@media all and (min-width: 481px) and (max-width: 768px) {
|
||||
#toast-container > div {
|
||||
padding: 15px 15px 15px 50px;
|
||||
width: 25em;
|
||||
}
|
||||
}
|
|
@ -1,118 +0,0 @@
|
|||
body {
|
||||
width:100%;
|
||||
height:100%;
|
||||
background-color: white;
|
||||
color: #424242;
|
||||
font-family:Helvetica,'YanoneKaffeesatzLight',Verdana,Tahoma,Arial;
|
||||
font-size: 28px;
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
#wrap{
|
||||
display: block;
|
||||
position: absolute;
|
||||
width:900px;
|
||||
height: 365px;
|
||||
overflow:hidden;
|
||||
text-align: center;
|
||||
margin: auto;
|
||||
top: 0; left: 0; bottom: 0; right: 0;
|
||||
}
|
||||
.firefox{
|
||||
font-size: 11pt;
|
||||
color: #c8c8c8;
|
||||
width: 468px;
|
||||
text-align: center;
|
||||
margin: 30px auto 0px auto;
|
||||
padding-left: 15px;
|
||||
}
|
||||
#text{
|
||||
display:inline-block;
|
||||
font-size: 28px;
|
||||
width: 568px;
|
||||
vertical-align:middle;
|
||||
padding-top: 25px;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #087dba;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.browser {
|
||||
width: 138px;
|
||||
height: 163px;
|
||||
margin-top: 5px;
|
||||
background-color: #e8e8e8;
|
||||
border: 1px solid #cfcfcf;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.browser_wrapper
|
||||
{
|
||||
width: 138px;
|
||||
height: 188px;
|
||||
vertical-align: middle;
|
||||
color: #929391;
|
||||
font-size: 20px;
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
.supported_browsers
|
||||
{
|
||||
margin: 0px auto 0px auto;
|
||||
width: 660px;
|
||||
}
|
||||
|
||||
.clear
|
||||
{
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.button
|
||||
{
|
||||
background-color: #62c82a;
|
||||
border: 1px solid #3c8117;
|
||||
border-radius: 10px;
|
||||
color: #FFFFFF;
|
||||
font-size: 12px;
|
||||
text-align: center;
|
||||
width: 115px;
|
||||
height: 26px;
|
||||
padding-top: 13px;
|
||||
margin: 15px auto 0px auto;
|
||||
}
|
||||
|
||||
.logo
|
||||
{
|
||||
margin: 20px auto 0px auto;
|
||||
}
|
||||
|
||||
#chrome_logo
|
||||
{
|
||||
width: 78px;
|
||||
height: 78px;
|
||||
background-image: url('/images/chrome.png');
|
||||
}
|
||||
#chromium_logo
|
||||
{
|
||||
width: 77px;
|
||||
height: 79px;
|
||||
background-image: url('/images/chromium.png');
|
||||
}
|
||||
#firefox-nightly_logo
|
||||
{
|
||||
width: 73px;
|
||||
height: 79px;
|
||||
background-image: url('/images/firefox-nightly.png');
|
||||
}
|
||||
|
||||
#opera_logo
|
||||
{
|
||||
width: 73px;
|
||||
height: 78px;
|
||||
background-image: url('/images/opera.png');
|
||||
}
|
||||
|
||||
|
|
@ -1,474 +0,0 @@
|
|||
#videospace {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
right: 0px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#remoteVideos {
|
||||
display:block;
|
||||
position:absolute;
|
||||
text-align:right;
|
||||
height:196px;
|
||||
padding: 18px;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 20px;
|
||||
width:auto;
|
||||
border:1px solid transparent;
|
||||
z-index: 5;
|
||||
transition: bottom 2s;
|
||||
overflow: visible !important;
|
||||
}
|
||||
|
||||
#remotevideos.hidden {
|
||||
bottom: -196px;
|
||||
}
|
||||
|
||||
.videocontainer {
|
||||
position: relative;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
#remoteVideos .videocontainer {
|
||||
display: inline-block;
|
||||
background-color: black;
|
||||
background-size: contain;
|
||||
border-radius:8px;
|
||||
border: 2px solid #212425;
|
||||
margin-right: 3px;
|
||||
}
|
||||
|
||||
#remoteVideos .videocontainer:hover,
|
||||
#remoteVideos .videocontainer.videoContainerFocused {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
content:"";
|
||||
cursor: pointer;
|
||||
cursor: hand;
|
||||
/* transform:scale(1.08, 1.08);
|
||||
-webkit-transform:scale(1.08, 1.08); */
|
||||
transition-duration: 0.5s;
|
||||
-webkit-transition-duration: 0.5s;
|
||||
-webkit-animation-name: greyPulse;
|
||||
-webkit-animation-duration: 2s;
|
||||
-webkit-animation-iteration-count: 1;
|
||||
overflow: visible !important;
|
||||
}
|
||||
|
||||
#remoteVideos .videocontainer:hover {
|
||||
box-shadow: inset 0 0 10px #FFFFFF, 0 0 10px #FFFFFF;
|
||||
border: 2px solid #FFFFFF;
|
||||
}
|
||||
|
||||
#remoteVideos .videocontainer.videoContainerFocused {
|
||||
box-shadow: inset 0 0 28px #006d91;
|
||||
border: 2px solid #006d91;
|
||||
}
|
||||
|
||||
#remoteVideos .videocontainer.videoContainerFocused:hover {
|
||||
box-shadow: inset 0 0 5px #FFFFFF, 0 0 10px #FFFFFF, inset 0 0 60px #006d91;
|
||||
border: 2px solid #FFFFFF;
|
||||
}
|
||||
|
||||
#localVideoWrapper {
|
||||
display:inline-block;
|
||||
-webkit-mask-box-image: url(../images/videomask.svg);
|
||||
border-radius:4px !important;
|
||||
border: 0px !important;
|
||||
}
|
||||
|
||||
/* With TemasysWebRTC plugin <object/> element is used
|
||||
instead of <video/> */
|
||||
#remoteVideos .videocontainer>video,
|
||||
#remoteVideos .videocontainer>object {
|
||||
border-radius:4px;
|
||||
}
|
||||
|
||||
.flipVideoX {
|
||||
transform: scale(-1, 1);
|
||||
-moz-transform: scale(-1, 1);
|
||||
-webkit-transform: scale(-1, 1);
|
||||
-o-transform: scale(-1, 1);
|
||||
}
|
||||
|
||||
#localVideoWrapper>video,
|
||||
#localVideoWrapper>object {
|
||||
border-radius:4px !important;
|
||||
}
|
||||
|
||||
#largeVideo,
|
||||
#largeVideoContainer {
|
||||
overflow: hidden;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#largeVideo
|
||||
{
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
#presentation,
|
||||
#etherpad,
|
||||
#localVideoWrapper>video,
|
||||
#localVideoWrapper>object,
|
||||
#localVideoWrapper,
|
||||
.videocontainer>video,
|
||||
.videocontainer>object {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
z-index: 1;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#etherpad,
|
||||
#presentation {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#etherpad {
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
#toolbar_button_etherpad {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#remoteVideos .videocontainer>span.focusindicator,
|
||||
#remoteVideos .videocontainer>span.remotevideomenu {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
color: #FFFFFF;
|
||||
top: 0;
|
||||
left: 0;
|
||||
padding: 5px 0px;
|
||||
width: 25px;
|
||||
font-size: 11pt;
|
||||
text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
|
||||
border: 0px;
|
||||
z-index: 2;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#remoteVideos .nick {
|
||||
display: none; /* enable when you want nicks to be shown */
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
bottom: -20px;
|
||||
z-index: 0;
|
||||
width: 100%;
|
||||
font-size: 10pt;
|
||||
}
|
||||
|
||||
.videocontainer>span.displayname,
|
||||
.videocontainer>input.displayname {
|
||||
display: none;
|
||||
position: absolute;
|
||||
color: #FFFFFF;
|
||||
background: rgba(0,0,0,.7);
|
||||
text-align: center;
|
||||
text-overflow: ellipsis;
|
||||
width: 70%;
|
||||
height: 20%;
|
||||
left: 15%;
|
||||
top: 40%;
|
||||
padding: 5px;
|
||||
font-size: 11pt;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
z-index: 2;
|
||||
border-radius:20px;
|
||||
}
|
||||
|
||||
.videocontainer>span.status {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
color: #FFFFFF;
|
||||
background: rgba(0,0,0,.7);
|
||||
text-align: center;
|
||||
text-overflow: ellipsis;
|
||||
width: 70%;
|
||||
height: 15%;
|
||||
left: 15%;
|
||||
bottom: 2%;
|
||||
padding: 5px;
|
||||
font-size: 10pt;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
z-index: 2;
|
||||
border-radius:20px;
|
||||
}
|
||||
|
||||
.connectionindicator
|
||||
{
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
top: 7px;
|
||||
right: 0;
|
||||
padding: 0px 5px;
|
||||
z-index: 3;
|
||||
width: 18px;
|
||||
height: 13px;
|
||||
}
|
||||
|
||||
.connection.connection_empty
|
||||
{
|
||||
color: #8B8B8B;/*#FFFFFF*/
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.connection.connection_full
|
||||
{
|
||||
color: #FFFFFF;/*#15A1ED*/
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.connection
|
||||
{
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
font-size: 8pt;
|
||||
border: 0px;
|
||||
width: 18px;
|
||||
height: 13px;
|
||||
}
|
||||
|
||||
.connection_info
|
||||
{
|
||||
float: left;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
.connection_info > table
|
||||
{
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.connection_info, .connection_info > table
|
||||
{
|
||||
text-align: left;
|
||||
font-size: 11px;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#localVideoContainer>span.status:hover,
|
||||
#localVideoContainer>span.displayname:hover {
|
||||
cursor: text;
|
||||
}
|
||||
|
||||
.videocontainer>span.status,
|
||||
.videocontainer>span.displayname {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.videocontainer>input.displayname {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
#localDisplayName {
|
||||
pointer-events: auto !important;
|
||||
}
|
||||
|
||||
.videocontainer>a.status,
|
||||
.videocontainer>a.displayname {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
color: #FFFFFF;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
padding: 3px 5px;
|
||||
font-size: 9pt;
|
||||
cursor: pointer;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.videocontainer>span.audioMuted {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
color: #FFFFFF;
|
||||
top: 0;
|
||||
padding: 8px 5px;
|
||||
width: 25px;
|
||||
font-size: 8pt;
|
||||
text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
|
||||
border: 0px;
|
||||
z-index: 3;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.videocontainer>span.videoMuted {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
color: #FFFFFF;
|
||||
top: 0;
|
||||
right: 0;
|
||||
padding: 8px 5px;
|
||||
width: 25px;
|
||||
font-size: 8pt;
|
||||
text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
|
||||
border: 0px;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
#reloadPresentation {
|
||||
display: none;
|
||||
position: absolute;
|
||||
color: #FFFFFF;
|
||||
top: 0;
|
||||
right:0;
|
||||
padding: 10px 10px;
|
||||
font-size: 11pt;
|
||||
cursor: pointer;
|
||||
background: rgba(0, 0, 0, 0.3);
|
||||
border-radius: 5px;
|
||||
background-clip: padding-box;
|
||||
-webkit-border-radius: 5px;
|
||||
-webkit-background-clip: padding-box;
|
||||
z-index: 20; /*The reload button should appear on top of the header!*/
|
||||
}
|
||||
|
||||
#header{
|
||||
display:none;
|
||||
position:absolute;
|
||||
text-align:center;
|
||||
top:0;
|
||||
left:0;
|
||||
right:0;
|
||||
z-index:10;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
#toolbar {
|
||||
display:inline-block;
|
||||
position:relative;
|
||||
margin-top:5px;
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
padding-left:2px;
|
||||
padding-right:2px;
|
||||
height:38px;
|
||||
width:auto;
|
||||
background-color: rgba(0,0,0,0.8);
|
||||
border: 1px solid rgba(256, 256, 256, 0.2);
|
||||
border-radius: 6px;
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
#subject {
|
||||
position: relative;
|
||||
z-index: 3;
|
||||
width: auto;
|
||||
padding: 5px;
|
||||
margin-left: 40%;
|
||||
margin-right: 40%;
|
||||
text-align: center;
|
||||
background: linear-gradient(to bottom, rgba(255,255,255,.85) , rgba(255,255,255,.35));
|
||||
box-shadow: 0 0 2px #000000, 0 0 10px #000000;
|
||||
border-bottom-left-radius: 12px;
|
||||
border-bottom-right-radius: 12px;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.audiolevel {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
z-index: 0;
|
||||
border-radius:10px;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
#activeSpeaker {
|
||||
visibility: hidden;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
margin: auto;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#activeSpeakerAudioLevel {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
z-index: 1;
|
||||
visibility: inherit;
|
||||
}
|
||||
|
||||
#mixedstream {
|
||||
display:none !important;
|
||||
}
|
||||
|
||||
#activeSpeakerAvatar {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
top: 25px;
|
||||
margin: auto;
|
||||
position: relative;
|
||||
border-radius: 50px;
|
||||
z-index: 2;
|
||||
visibility: inherit;
|
||||
}
|
||||
|
||||
.userAvatar {
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
left: 35px;
|
||||
border-radius: 200px;
|
||||
}
|
||||
|
||||
.noMic {
|
||||
position: absolute;
|
||||
border-radius: 8px;
|
||||
z-index: 1;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image: url("../images/noMic.png");
|
||||
background-color: #000;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
.noVideo {
|
||||
position: absolute;
|
||||
border-radius: 8px;
|
||||
z-index: 1;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image: url("../images/noVideo.png");
|
||||
background-color: #000;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
.videoMessageFilter {
|
||||
-webkit-filter: grayscale(.5) opacity(0.8);
|
||||
filter: grayscale(.5) opacity(0.8);
|
||||
}
|
||||
|
||||
.videoProblemFilter {
|
||||
-webkit-filter: blur(10px) grayscale(.5) opacity(0.8);
|
||||
filter: blur(10px) grayscale(.5) opacity(0.8);
|
||||
}
|
||||
|
||||
#videoConnectionMessage {
|
||||
display: none;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
top:50%;
|
||||
z-index: 10000;
|
||||
font-weight: 600;
|
||||
font-size: 14px;
|
||||
text-align: center;
|
||||
color: #FFF;
|
||||
opacity: .80;
|
||||
text-shadow: 0px 0px 1px rgba(0,0,0,0.3),
|
||||
0px 1px 1px rgba(0,0,0,0.3),
|
||||
1px 0px 1px rgba(0,0,0,0.3),
|
||||
0px 0px 1px rgba(0,0,0,0.3);
|
||||
}
|
|
@ -1,205 +0,0 @@
|
|||
|
||||
#disable_welcome {
|
||||
display:none;
|
||||
}
|
||||
|
||||
.disable_welcome_position
|
||||
{
|
||||
margin: -139px auto 0px auto;
|
||||
padding-left: 39px;
|
||||
padding-top: 7px;
|
||||
width: 269px;
|
||||
height: 31px;
|
||||
display:block;
|
||||
}
|
||||
|
||||
#disable_welcome + label
|
||||
{
|
||||
background-image: url(../images/welcome_page/disable-welcome.png);
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
background-repeat: no-repeat;
|
||||
font-weight: 500;
|
||||
font-family: Helvetica;
|
||||
font-size: 16px;
|
||||
color: #acacac;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
#disable_welcome:checked + label
|
||||
{
|
||||
background-image: url(../images/welcome_page/disable-welcome-selected.png);
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
background-repeat: no-repeat;
|
||||
font-weight: 500;
|
||||
font-family: Helvetica;
|
||||
font-size: 16px;
|
||||
color: #acacac;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
#enter_room_form {
|
||||
border-radius: 10px;
|
||||
background-color: #FFFFFF;
|
||||
border: none;
|
||||
-moz-border-radius: 10px;
|
||||
-webkit-border-radius: 10px;
|
||||
-webkit-appearance: none;
|
||||
height: 55px;
|
||||
box-shadow: none;
|
||||
float: left;
|
||||
}
|
||||
|
||||
#domain_name
|
||||
{
|
||||
float: left;
|
||||
padding: 20px 0px 10px 20px;
|
||||
font-size: 18px;
|
||||
font-weight: 500;
|
||||
font-family: Helvetica;
|
||||
}
|
||||
|
||||
#enter_room_field {
|
||||
font-size: 15px;
|
||||
padding: 15px 0px 10px 10px;
|
||||
border: none;
|
||||
-webkit-appearance: none;
|
||||
width: 228px;
|
||||
height: 55px;
|
||||
font-weight: 500;
|
||||
font-family: Helvetica;
|
||||
box-shadow: none;
|
||||
float: left;
|
||||
background-color: #FFFFFF;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
#enter_room_button {
|
||||
width: 73px;
|
||||
height: 45px;
|
||||
background-color: #16a8fe;
|
||||
moz-border-radius: 10px;
|
||||
-webkit-border-radius: 10px;
|
||||
color: #ffffff;
|
||||
font-weight: 600;
|
||||
border: none;
|
||||
margin-top: 5px;
|
||||
font-size: 19px;
|
||||
font-family: Helvetica;
|
||||
padding-top: 6px;
|
||||
outline: none;
|
||||
float:left;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
#enter_room_container {
|
||||
margin: 70px auto 0px auto;
|
||||
display: table;
|
||||
}
|
||||
|
||||
#enter_room{
|
||||
float:left;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
#welcome_page_header
|
||||
{
|
||||
background-image: url(../images/welcome_page/pattern-header.png);
|
||||
height: 290px;
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
#welcome_page_main
|
||||
{
|
||||
background-image:url(../images/welcome_page/pattern-body.png);
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
margin-top: 290px;
|
||||
}
|
||||
|
||||
#brand_header
|
||||
{
|
||||
background-image:url(../images/welcome_page/header-big.png);
|
||||
width: 583px;
|
||||
height: 274px;
|
||||
margin: -110px auto 0px auto;
|
||||
}
|
||||
|
||||
#header_text
|
||||
{
|
||||
width: 885px;
|
||||
height: 100px;
|
||||
color: #ffffff;
|
||||
font-family: Helvetica;
|
||||
font-size: 24px;
|
||||
text-align: center;
|
||||
margin: 0px auto 0px auto;
|
||||
}
|
||||
|
||||
#features
|
||||
{
|
||||
margin-top: 30px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.feature_row
|
||||
{
|
||||
position: relative;
|
||||
width: 976px;
|
||||
margin: 0px auto 30px auto;
|
||||
padding-right: 75px;
|
||||
|
||||
}
|
||||
|
||||
.feature_holder
|
||||
{
|
||||
float:left;
|
||||
width: 169px;
|
||||
padding-left: 75px;
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
|
||||
.feature_icon
|
||||
{
|
||||
background-image:url(../images/welcome_page/bubble.png);
|
||||
background-repeat: no-repeat;
|
||||
width: 169px;
|
||||
height: 169px;
|
||||
font-family: Helvetica;
|
||||
color: #ffffff;
|
||||
font-size: 22px;
|
||||
/*font-weight: bold;*/
|
||||
text-align: center;
|
||||
display: table-cell;
|
||||
padding: 50px 26px 0px 20px;
|
||||
}
|
||||
|
||||
.feature_description
|
||||
{
|
||||
width: 190px;
|
||||
font-family: Helvetica;
|
||||
color: #ffffff;
|
||||
font-size: 16px;
|
||||
padding-top: 30px;
|
||||
line-height: 22px;
|
||||
font-weight: 200;
|
||||
}
|
||||
|
||||
#reload_roomname
|
||||
{
|
||||
width: 30px;
|
||||
height: 19px;
|
||||
color: #acacac;
|
||||
margin-top: 22px;
|
||||
z-index: 3;
|
||||
float: left;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
display: none;
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
jitsi-meet (1.0.1-1) unstable; urgency=low
|
||||
|
||||
* Initial release. (Closes: #760485)
|
||||
|
||||
-- Damian Minkov <damencho@jitsi.org> Wed, 22 Oct 2014 10:30:00 +0200
|
|
@ -1 +0,0 @@
|
|||
8
|
|
@ -1,35 +0,0 @@
|
|||
Source: jitsi-meet
|
||||
Section: net
|
||||
Priority: extra
|
||||
Maintainer: Jitsi Team <dev@jitsi.org>
|
||||
Uploaders: Emil Ivov <emcho@jitsi.org>, Damian Minkov <damencho@jitsi.org>
|
||||
Build-Depends: debhelper (>= 8.0.0), libjs-strophe (>= 1.1.3), yui-compressor,
|
||||
libjs-jquery, libjs-jquery-ui
|
||||
Standards-Version: 3.9.6
|
||||
Homepage: https://jitsi.org/meet
|
||||
|
||||
Package: jitsi-meet
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}, jitsi-videobridge, jitsi-meet-prosody, libjs-strophe (>= 1.1.3),
|
||||
libjs-jquery, libjs-jquery-ui, openjdk-8-jre-headless | nginx
|
||||
Description: WebRTC JavaScript video conferences
|
||||
Jitsi Meet is a WebRTC JavaScript application that uses Jitsi
|
||||
Videobridge to provide high quality, scalable video conferences.
|
||||
.
|
||||
It is a web interface to Jitsi Videobridge for audio and video
|
||||
forwarding and relaying, configured to work with jetty instance
|
||||
running embedded into Jitsi Videobridge
|
||||
|
||||
Package: jitsi-meet-prosody
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}, openssl, prosody | prosody-trunk, jitsi-videobridge, jicofo
|
||||
Description: Prosody configuration for Jitsi Meet
|
||||
Jitsi Meet is a WebRTC JavaScript application that uses Jitsi
|
||||
Videobridge to provide high quality, scalable video conferences.
|
||||
.
|
||||
It is a web interface to Jitsi Videobridge for audio and video
|
||||
forwarding and relaying, configured to work with jetty instance
|
||||
running embedded into Jitsi Videobridge
|
||||
.
|
||||
This package contains configuration for Prosody to be used with
|
||||
Jitsi Meet.
|
|
@ -1,31 +0,0 @@
|
|||
Format: http://dep.debian.net/deps/dep5
|
||||
Upstream-Name: Jitsi Meet
|
||||
Upstream-Contact: Emil Ivov <emcho@jitsi.org>
|
||||
Source: https://github.com/jitsi/jitsi-meet
|
||||
|
||||
Files: *
|
||||
Copyright: 2013-2014 Jitsi
|
||||
License: MIT
|
||||
|
||||
License: MIT
|
||||
The MIT License (MIT)
|
||||
.
|
||||
Copyright (c) 2013 ESTOS GmbH
|
||||
Copyright (c) 2013 BlueJimp SARL
|
||||
.
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
the Software without restriction, including without limitation the rights to
|
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
subject to the following conditions:
|
||||
.
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
.
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@ -1,7 +0,0 @@
|
|||
Prosody configuration for Jitsi Meet for Debian
|
||||
----------------------------
|
||||
|
||||
Jitsi Meet is a WebRTC video conferencing application. This package contains
|
||||
configuration of prosody which are needed for Jitsi Meet to work.
|
||||
|
||||
-- Yasen Pramatarov <yasen@bluejimp.com> Mon, 30 Jun 2014 23:05:18 +0100
|
|
@ -1,4 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
# Source debconf library.
|
||||
. /usr/share/debconf/confmodule
|
|
@ -1,2 +0,0 @@
|
|||
doc/debian/jitsi-meet-prosody/prosody.cfg.lua-jvb.example
|
||||
doc/debian/jitsi-meet-prosody/README
|
|
@ -1,131 +0,0 @@
|
|||
#!/bin/bash
|
||||
# postinst script for jitsi-meet-prosody
|
||||
#
|
||||
# see: dh_installdeb(1)
|
||||
|
||||
set -e
|
||||
|
||||
# summary of how this script can be called:
|
||||
# * <postinst> `configure' <most-recently-configured-version>
|
||||
# * <old-postinst> `abort-upgrade' <new version>
|
||||
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
|
||||
# <new-version>
|
||||
# * <postinst> `abort-remove'
|
||||
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
|
||||
# <failed-install-package> <version> `removing'
|
||||
# <conflicting-package> <version>
|
||||
# for details, see http://www.debian.org/doc/debian-policy/ or
|
||||
# the debian-policy package
|
||||
|
||||
|
||||
case "$1" in
|
||||
configure)
|
||||
|
||||
. /etc/jitsi/videobridge/config
|
||||
|
||||
. /etc/jitsi/jicofo/config
|
||||
|
||||
# loading debconf
|
||||
. /usr/share/debconf/confmodule
|
||||
|
||||
# detect dpkg-reconfigure, just delete old links
|
||||
db_get jitsi-meet-prosody/jvb-hostname
|
||||
JVB_HOSTNAME_OLD=$RET
|
||||
if [ -n "$RET" ] && [ ! "$JVB_HOSTNAME_OLD" = "$JVB_HOSTNAME" ] ; then
|
||||
rm -f /etc/prosody/conf.d/$JVB_HOSTNAME_OLD.cfg.lua
|
||||
rm -f /etc/prosody/certs/$JVB_HOSTNAME_OLD.key
|
||||
rm -f /etc/prosody/certs/$JVB_HOSTNAME_OLD.crt
|
||||
fi
|
||||
|
||||
# stores the hostname so we will reuse it later, like in purge
|
||||
db_set jitsi-meet-prosody/jvb-hostname $JVB_HOSTNAME
|
||||
|
||||
# and we're done with debconf
|
||||
db_stop
|
||||
|
||||
PROSODY_CONFIG_PRESENT="true"
|
||||
PROSODY_CREATE_JICOFO_USER="false"
|
||||
PROSODY_HOST_CONFIG="/etc/prosody/conf.avail/$JVB_HOSTNAME.cfg.lua"
|
||||
PROSODY_CONFIG_OLD="/etc/prosody/prosody.cfg.lua"
|
||||
# if there is no prosody config extract our template
|
||||
# check for config in conf.avail or check whether it wasn't already configured in main config
|
||||
if [ ! -f $PROSODY_HOST_CONFIG ] && ! grep -q "VirtualHost \"$JVB_HOSTNAME\"" $PROSODY_CONFIG_OLD; then
|
||||
PROSODY_CONFIG_PRESENT="false"
|
||||
mkdir -p /etc/prosody/conf.avail/
|
||||
cp /usr/share/doc/jitsi-meet-prosody/prosody.cfg.lua-jvb.example $PROSODY_HOST_CONFIG
|
||||
sed -i "s/jitmeet.example.com/$JVB_HOSTNAME/g" $PROSODY_HOST_CONFIG
|
||||
sed -i "s/jitmeetSecret/$JVB_SECRET/g" $PROSODY_HOST_CONFIG
|
||||
sed -i "s/focusSecret/$JICOFO_SECRET/g" $PROSODY_HOST_CONFIG
|
||||
sed -i "s/focusUser/$JICOFO_AUTH_USER/g" $PROSODY_HOST_CONFIG
|
||||
if [ ! -f /etc/prosody/conf.d/$JVB_HOSTNAME.cfg.lua ]; then
|
||||
ln -s $PROSODY_HOST_CONFIG /etc/prosody/conf.d/$JVB_HOSTNAME.cfg.lua
|
||||
fi
|
||||
PROSODY_CREATE_JICOFO_USER="true"
|
||||
# on some distributions main prosody config doesn't include configs
|
||||
# from conf.d folder enable it as this where we put our config by default
|
||||
if ! grep -q "Include \"conf\.d\/\*\.cfg.lua\"" $PROSODY_CONFIG_OLD; then
|
||||
echo -e "\nInclude \"conf.d/*.cfg.lua\"" >> $PROSODY_CONFIG_OLD
|
||||
fi
|
||||
fi
|
||||
# UPGRADE to server side focus check if focus is configured
|
||||
if [ -f $PROSODY_HOST_CONFIG ] && ! grep -q "VirtualHost \"auth.$JVB_HOSTNAME\"" $PROSODY_HOST_CONFIG; then
|
||||
echo -e "\nVirtualHost \"auth.$JVB_HOSTNAME\"" >> $PROSODY_HOST_CONFIG
|
||||
echo -e " authentication = \"internal_plain\"\n" >> $PROSODY_HOST_CONFIG
|
||||
sed -i "s/Component \"conference.$JVB_HOSTNAME\" \"muc\"/Component \"conference.$JVB_HOSTNAME\" \"muc\"\nadmins = { \"$JICOFO_AUTH_USER@auth.$JVB_HOSTNAME\" }\n/g" $PROSODY_HOST_CONFIG
|
||||
echo -e "Component \"focus.$JVB_HOSTNAME\"" >> $PROSODY_HOST_CONFIG
|
||||
echo -e " component_secret=\"$JICOFO_SECRET\"\n" >> $PROSODY_HOST_CONFIG
|
||||
PROSODY_CREATE_JICOFO_USER="true"
|
||||
# UPGRADE to server side focus on old config(/etc/prosody/prosody.cfg.lua)
|
||||
elif [ ! -f $PROSODY_HOST_CONFIG ] && ! grep -q "VirtualHost \"auth.$JVB_HOSTNAME\"" $PROSODY_CONFIG_OLD; then
|
||||
echo -e "\nVirtualHost \"auth.$JVB_HOSTNAME\"" >> $PROSODY_CONFIG_OLD
|
||||
echo -e " authentication = \"internal_plain\"\n" >> $PROSODY_CONFIG_OLD
|
||||
if ! grep -q "admins = { }" $PROSODY_CONFIG_OLD; then
|
||||
echo -e "admins = { \"$JICOFO_AUTH_USER@auth.$JVB_HOSTNAME\" }\n" >> $PROSODY_CONFIG_OLD
|
||||
else
|
||||
sed -i "s/admins = { }/admins = { \"$JICOFO_AUTH_USER@auth.$JVB_HOSTNAME\" }\n/g" $PROSODY_CONFIG_OLD
|
||||
fi
|
||||
echo -e "Component \"focus.$JVB_HOSTNAME\"" >> $PROSODY_CONFIG_OLD
|
||||
echo -e " component_secret=\"$JICOFO_SECRET\"\n" >> $PROSODY_CONFIG_OLD
|
||||
PROSODY_CREATE_JICOFO_USER="true"
|
||||
fi
|
||||
|
||||
if [ "$PROSODY_CREATE_JICOFO_USER" = "true" ]; then
|
||||
# create 'focus@auth.domain' prosody user
|
||||
prosodyctl register $JICOFO_AUTH_USER $JICOFO_AUTH_DOMAIN $JICOFO_AUTH_PASSWORD
|
||||
# trigger a restart
|
||||
PROSODY_CONFIG_PRESENT="false"
|
||||
fi
|
||||
|
||||
if [ ! -f /var/lib/prosody/$JVB_HOSTNAME.crt ]; then
|
||||
HOST="$( (hostname -s; echo localhost) | head -n 1)"
|
||||
DOMAIN="$( (hostname -d; echo localdomain) | head -n 1)"
|
||||
openssl req -new -newkey rsa:4096 -days 365 -nodes -x509 -subj \
|
||||
"/O=$DOMAIN/OU=$HOST/CN=$JVB_HOSTNAME/emailAddress=webmaster@$HOST.$DOMAIN" \
|
||||
-keyout /var/lib/prosody/$JVB_HOSTNAME.key \
|
||||
-out /var/lib/prosody/$JVB_HOSTNAME.crt
|
||||
fi
|
||||
ln -sf /var/lib/prosody/$JVB_HOSTNAME.key /etc/prosody/certs/$JVB_HOSTNAME.key
|
||||
ln -sf /var/lib/prosody/$JVB_HOSTNAME.crt /etc/prosody/certs/$JVB_HOSTNAME.crt
|
||||
|
||||
if [ "$PROSODY_CONFIG_PRESENT" = "false" ]; then
|
||||
invoke-rc.d prosody restart
|
||||
invoke-rc.d jitsi-videobridge restart
|
||||
invoke-rc.d jicofo restart
|
||||
fi
|
||||
;;
|
||||
|
||||
abort-upgrade|abort-remove|abort-deconfigure)
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "postinst called with unknown argument \`$1'" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# dh_installdeb will replace this with shell code automatically
|
||||
# generated by other debhelper scripts.
|
||||
|
||||
#DEBHELPER#
|
||||
|
||||
exit 0
|
|
@ -1,57 +0,0 @@
|
|||
#!/bin/sh
|
||||
# postrm script for jitsi-meet-prosody
|
||||
#
|
||||
# see: dh_installdeb(1)
|
||||
|
||||
set -e
|
||||
|
||||
# summary of how this script can be called:
|
||||
# * <postrm> `remove'
|
||||
# * <postrm> `purge'
|
||||
# * <old-postrm> `upgrade' <new-version>
|
||||
# * <new-postrm> `failed-upgrade' <old-version>
|
||||
# * <new-postrm> `abort-install'
|
||||
# * <new-postrm> `abort-install' <old-version>
|
||||
# * <new-postrm> `abort-upgrade' <old-version>
|
||||
# * <disappearer's-postrm> `disappear' <overwriter>
|
||||
# <overwriter-version>
|
||||
# for details, see http://www.debian.org/doc/debian-policy/ or
|
||||
# the debian-policy package
|
||||
|
||||
# Load debconf
|
||||
. /usr/share/debconf/confmodule
|
||||
|
||||
|
||||
case "$1" in
|
||||
remove)
|
||||
if [ -x "/etc/init.d/prosody" ]; then
|
||||
invoke-rc.d prosody reload
|
||||
fi
|
||||
;;
|
||||
|
||||
purge)
|
||||
db_get jitsi-meet-prosody/jvb-hostname
|
||||
JVB_HOSTNAME=$RET
|
||||
if [ -n "$RET" ]; then
|
||||
rm -f /etc/prosody/conf.avail/$JVB_HOSTNAME.cfg.lua
|
||||
rm -f /etc/prosody/conf.d/$JVB_HOSTNAME.cfg.lua
|
||||
fi
|
||||
;;
|
||||
|
||||
upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "postrm called with unknown argument \`$1'" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# dh_installdeb will replace this with shell code automatically
|
||||
# generated by other debhelper scripts.
|
||||
|
||||
#DEBHELPER#
|
||||
|
||||
db_stop
|
||||
|
||||
exit 0
|
|
@ -1,4 +0,0 @@
|
|||
Template: jitsi-meet-prosody/jvb-hostname
|
||||
Type: string
|
||||
_Description: The hostname of the current installation:
|
||||
The value for the hostname that is set in Jitsi Videobridge installation.
|
|
@ -1,8 +0,0 @@
|
|||
Jitsi Meet for Debian
|
||||
----------------------------
|
||||
|
||||
This is a WebRTC frontend of the video conferencing tool Jitsi Meet. It depends on the
|
||||
jitsi-videobridge package, which is a SFU (Selective Forwarding Unit) and both packages
|
||||
are designed to work together.
|
||||
|
||||
-- Yasen Pramatarov <yasen@bluejimp.com> Mon, 30 Jun 2014 23:05:18 +0100
|
|
@ -1,24 +0,0 @@
|
|||
jitsi-meet for Debian
|
||||
---------------------
|
||||
|
||||
The jitsi-meet package is built from the sources of Jitsi Meet.
|
||||
|
||||
Jitsi Meet is downloaded from https://github.com/jitsi/jitsi-meet and the git files are removed. you can recreate the source with 'git clone https://github.com/jitsi/jitsi-meet.git'.
|
||||
Use something like the script below to update from Git
|
||||
|
||||
#!/bin/bash
|
||||
|
||||
VERSION=1.0.1
|
||||
|
||||
echo "*.min.js export-ignore" > .gitattributes
|
||||
echo "jquery-2.1.1.* export-ignore" >> .gitattributes
|
||||
echo "jquery-ui.js export-ignore" >> .gitattributes
|
||||
echo ".gitignore export-ignore" >> .gitattributes
|
||||
|
||||
sed -i "s/1.0.1/$VERSION/g" debian/changelog
|
||||
|
||||
git archive --worktree-attributes --format tar --prefix jitsi-meet-$VERSION/ -o ../jitsi-meet_${VERSION}.orig.tar master
|
||||
tar --transform "s,^,jitsi-meet-$VERSION/," -rf ../jitsi-meet_${VERSION}.orig.tar
|
||||
cd ..
|
||||
|
||||
bzip2 jitsi-meet_${VERSION}.orig.tar
|
|
@ -1,8 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
# Source debconf library.
|
||||
. /usr/share/debconf/confmodule
|
||||
|
||||
# certificate type choice
|
||||
db_input critical jitsi-meet/cert-choice || true
|
||||
db_go
|
|
@ -1 +0,0 @@
|
|||
etc/jitsi/meet/
|
|
@ -1,4 +0,0 @@
|
|||
README.md
|
||||
doc/debian/jitsi-meet/jitsi-meet.example
|
||||
doc/debian/jitsi-meet/README
|
||||
config.js
|
|
@ -1,11 +0,0 @@
|
|||
*.js /usr/share/jitsi-meet/
|
||||
*.json /usr/share/jitsi-meet/
|
||||
*.html /usr/share/jitsi-meet/
|
||||
*.ico /usr/share/jitsi-meet/
|
||||
libs /usr/share/jitsi-meet/
|
||||
service /usr/share/jitsi-meet/
|
||||
css /usr/share/jitsi-meet/
|
||||
sounds /usr/share/jitsi-meet/
|
||||
fonts /usr/share/jitsi-meet/
|
||||
images /usr/share/jitsi-meet/
|
||||
lang /usr/share/jitsi-meet/
|
|
@ -1,3 +0,0 @@
|
|||
usr/share/javascript/strophe/strophe.min.js usr/share/jitsi-meet/libs/strophe/strophe.min.js
|
||||
usr/share/javascript/jquery/jquery.min.js usr/share/jitsi-meet/libs/jquery.min.js
|
||||
usr/share/javascript/jquery-ui/jquery-ui.min.js usr/share/jitsi-meet/libs/jquery-ui.min.js
|
|
@ -1,192 +0,0 @@
|
|||
#!/bin/bash
|
||||
# postinst script for jitsi-meet
|
||||
#
|
||||
# see: dh_installdeb(1)
|
||||
|
||||
set -e
|
||||
|
||||
# summary of how this script can be called:
|
||||
# * <postinst> `configure' <most-recently-configured-version>
|
||||
# * <old-postinst> `abort-upgrade' <new version>
|
||||
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
|
||||
# <new-version>
|
||||
# * <postinst> `abort-remove'
|
||||
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
|
||||
# <failed-install-package> <version> `removing'
|
||||
# <conflicting-package> <version>
|
||||
# for details, see http://www.debian.org/doc/debian-policy/ or
|
||||
# the debian-policy package
|
||||
|
||||
case "$1" in
|
||||
configure)
|
||||
|
||||
JVB_ETC_CONFIG="/etc/jitsi/videobridge/config"
|
||||
JVB_CONFIG="/usr/share/jitsi-videobridge/.sip-communicator/sip-communicator.properties"
|
||||
|
||||
. $JVB_ETC_CONFIG
|
||||
|
||||
# loading debconf
|
||||
. /usr/share/debconf/confmodule
|
||||
|
||||
# detect dpkg-reconfigure
|
||||
RECONFIGURING="false"
|
||||
db_get jitsi-meet/jvb-hostname
|
||||
JVB_HOSTNAME_OLD=$RET
|
||||
if [ -n "$RET" ] && [ ! "$JVB_HOSTNAME_OLD" = "$JVB_HOSTNAME" ] ; then
|
||||
RECONFIGURING="true"
|
||||
rm -f /etc/jitsi/meet/$JVB_HOSTNAME_OLD-config.js
|
||||
fi
|
||||
|
||||
JVB_SERVE="false"
|
||||
db_get jitsi-meet/jvb-serve
|
||||
if [ -n "$RET" ] && [ "$RET" = "true" ] ; then
|
||||
JVB_SERVE="true"
|
||||
fi
|
||||
|
||||
# stores the hostname so we will reuse it later, like in purge
|
||||
db_set jitsi-meet/jvb-hostname $JVB_HOSTNAME
|
||||
|
||||
NGINX_INSTALL_CHECK="$(dpkg-query -W -f '${PackageSpec}:${Status}\n' nginx 2>&1 | grep -v "ok installed" || :)"
|
||||
if [ -z "${NGINX_INSTALL_CHECK}" ]; then
|
||||
FORCE_NGINX="true"
|
||||
fi
|
||||
|
||||
# SSL for nginx
|
||||
db_get jitsi-meet/cert-choice
|
||||
CERT_CHOICE="$RET"
|
||||
UPLOADED_CERT_CHOICE="A certificate is available and the files are uploaded on the server"
|
||||
|
||||
# jitsi meet
|
||||
JITSI_MEET_CONFIG="/etc/jitsi/meet/$JVB_HOSTNAME-config.js"
|
||||
if [ ! -f $JITSI_MEET_CONFIG ] ; then
|
||||
cp /usr/share/doc/jitsi-meet/config.js $JITSI_MEET_CONFIG
|
||||
sed -i "s/jitsi-meet.example.com/$JVB_HOSTNAME/g" $JITSI_MEET_CONFIG
|
||||
fi
|
||||
|
||||
# this is new install let's configure jvb to serve meet
|
||||
if [[ -z $FORCE_NGINX && ( -z $JVB_HOSTNAME_OLD || "$JVB_SERVE" = "true" ) ]] ; then
|
||||
# this is a reconfigure, lets just delete old links
|
||||
if [ "$RECONFIGURING" = "true" ] ; then
|
||||
rm -f $JVB_CONFIG
|
||||
fi
|
||||
|
||||
# configure jvb
|
||||
echo "AUTHBIND=yes" >> $JVB_ETC_CONFIG
|
||||
sed -i "s/JVB_OPTS=.*/JVB_OPTS=--apis=rest,xmpp/g" $JVB_ETC_CONFIG
|
||||
|
||||
echo "org.jitsi.videobridge.rest.jetty.host=::" >> $JVB_CONFIG
|
||||
echo "org.jitsi.videobridge.rest.jetty.port=443" >> $JVB_CONFIG
|
||||
echo "org.jitsi.videobridge.rest.jetty.ProxyServlet.hostHeader=$JVB_HOSTNAME" >> $JVB_CONFIG
|
||||
echo "org.jitsi.videobridge.rest.jetty.ProxyServlet.pathSpec=/http-bind" >> $JVB_CONFIG
|
||||
echo "org.jitsi.videobridge.rest.jetty.ProxyServlet.proxyTo=http://localhost:5280/http-bind" >> $JVB_CONFIG
|
||||
echo "org.jitsi.videobridge.rest.jetty.ResourceHandler.resourceBase=/usr/share/jitsi-meet" >> $JVB_CONFIG
|
||||
echo "org.jitsi.videobridge.rest.jetty.ResourceHandler.alias./config.js=/etc/jitsi/meet/$JVB_HOSTNAME-config.js" >> $JVB_CONFIG
|
||||
echo "org.jitsi.videobridge.rest.jetty.RewriteHandler.regex=^/([a-zA-Z0-9]+)$" >> $JVB_CONFIG
|
||||
echo "org.jitsi.videobridge.rest.jetty.RewriteHandler.replacement=/" >> $JVB_CONFIG
|
||||
echo "org.jitsi.videobridge.rest.jetty.tls.port=443" >> $JVB_CONFIG
|
||||
echo "org.jitsi.videobridge.TCP_HARVESTER_PORT=443" >> $JVB_CONFIG
|
||||
echo "org.jitsi.videobridge.rest.jetty.sslContextFactory.keyStorePath=/etc/jitsi/videobridge/$JVB_HOSTNAME.jks" >> $JVB_CONFIG
|
||||
echo "org.jitsi.videobridge.rest.jetty.sslContextFactory.keyStorePassword=changeit" >> $JVB_CONFIG
|
||||
|
||||
# configure authbind to allow jvb to bind to privileged ports
|
||||
OWNER=$(stat -c '%U' /usr/share/jitsi-videobridge)
|
||||
GROUP=$(stat -c '%G' /usr/share/jitsi-videobridge)
|
||||
JVB_UID="`id -u $OWNER`"
|
||||
if [ ! -f "/etc/authbind/byuid/$JVB_UID" ] ; then
|
||||
if [ ! -d "/etc/authbind/byuid" ] ; then
|
||||
mkdir -p /etc/authbind/byuid
|
||||
chmod 755 /etc/authbind
|
||||
chmod 755 /etc/authbind/byuid
|
||||
fi
|
||||
echo '::,443' >/etc/authbind/byuid/$JVB_UID
|
||||
chown $OWNER:$GROUP /etc/authbind/byuid/$JVB_UID
|
||||
chmod 700 /etc/authbind/byuid/$JVB_UID
|
||||
fi
|
||||
|
||||
if [ "$CERT_CHOICE" = "$UPLOADED_CERT_CHOICE" ] ; then
|
||||
# create jks from uploaded certs
|
||||
openssl pkcs12 -export \
|
||||
-in /etc/ssl/$JVB_HOSTNAME.crt \
|
||||
-inkey /etc/ssl/$JVB_HOSTNAME.key \
|
||||
-passout pass:changeit > /etc/jitsi/videobridge/$JVB_HOSTNAME.p12
|
||||
keytool -importkeystore \
|
||||
-srckeystore /etc/jitsi/videobridge/$JVB_HOSTNAME.p12 \
|
||||
-destkeystore /etc/jitsi/videobridge/$JVB_HOSTNAME.jks \
|
||||
-srcstoretype pkcs12 \
|
||||
-noprompt -storepass changeit -srcstorepass changeit
|
||||
else
|
||||
# create jks from self-signed certs
|
||||
openssl pkcs12 -export \
|
||||
-in /var/lib/prosody/$JVB_HOSTNAME.crt \
|
||||
-inkey /var/lib/prosody/$JVB_HOSTNAME.key \
|
||||
-passout pass:changeit > /etc/jitsi/videobridge/$JVB_HOSTNAME.p12
|
||||
keytool -importkeystore \
|
||||
-srckeystore /etc/jitsi/videobridge/$JVB_HOSTNAME.p12 \
|
||||
-destkeystore /etc/jitsi/videobridge/$JVB_HOSTNAME.jks \
|
||||
-srcstoretype pkcs12 \
|
||||
-noprompt -storepass changeit -srcstorepass changeit
|
||||
fi
|
||||
|
||||
db_set jitsi-meet/jvb-serve "true"
|
||||
|
||||
invoke-rc.d jitsi-videobridge restart
|
||||
elif [[ "$FORCE_NGINX" = "true" || ( -n $JVB_HOSTNAME_OLD && "$JVB_SERVE" = "false" ) ]] ; then
|
||||
# this is a reconfigure, lets just delete old links
|
||||
if [ "$RECONFIGURING" = "true" ] ; then
|
||||
rm -f /etc/nginx/sites-enabled/$JVB_HOSTNAME_OLD.conf
|
||||
rm -f /etc/jitsi/meet/$JVB_HOSTNAME_OLD-config.js
|
||||
fi
|
||||
|
||||
# nginx conf
|
||||
if [ ! -f /etc/nginx/sites-available/$JVB_HOSTNAME.conf ] ; then
|
||||
cp /usr/share/doc/jitsi-meet/jitsi-meet.example /etc/nginx/sites-available/$JVB_HOSTNAME.conf
|
||||
if [ ! -f /etc/nginx/sites-enabled/$JVB_HOSTNAME.conf ] ; then
|
||||
ln -s /etc/nginx/sites-available/$JVB_HOSTNAME.conf /etc/nginx/sites-enabled/$JVB_HOSTNAME.conf
|
||||
fi
|
||||
sed -i "s/jitsi-meet.example.com/$JVB_HOSTNAME/g" /etc/nginx/sites-available/$JVB_HOSTNAME.conf
|
||||
fi
|
||||
|
||||
if [ "$CERT_CHOICE" = "$UPLOADED_CERT_CHOICE" ] ; then
|
||||
db_set jitsi-meet/cert-path-key "/etc/ssl/$JVB_HOSTNAME.key"
|
||||
db_input critical jitsi-meet/cert-path-key || true
|
||||
db_go
|
||||
db_get jitsi-meet/cert-path-key
|
||||
CERT_KEY="$RET"
|
||||
db_set jitsi-meet/cert-path-crt "/etc/ssl/$JVB_HOSTNAME.crt"
|
||||
db_input critical jitsi-meet/cert-path-crt || true
|
||||
db_go
|
||||
db_get jitsi-meet/cert-path-crt
|
||||
CERT_CRT="$RET"
|
||||
# replace self-signed certificate paths with user provided ones
|
||||
CERT_KEY_ESC=$(echo $CERT_KEY | sed 's/\./\\\./g')
|
||||
CERT_KEY_ESC=$(echo $CERT_KEY_ESC | sed 's/\//\\\//g')
|
||||
sed -i "s/ssl_certificate_key\ \/var\/lib\/prosody\/.*key/ssl_certificate_key\ $CERT_KEY_ESC/g" \
|
||||
/etc/nginx/sites-available/$JVB_HOSTNAME.conf
|
||||
CERT_CRT_ESC=$(echo $CERT_CRT | sed 's/\./\\\./g')
|
||||
CERT_CRT_ESC=$(echo $CERT_CRT_ESC | sed 's/\//\\\//g')
|
||||
sed -i "s/ssl_certificate\ \/var\/lib\/prosody\/.*crt/ssl_certificate\ $CERT_CRT_ESC/g" \
|
||||
/etc/nginx/sites-available/$JVB_HOSTNAME.conf
|
||||
fi
|
||||
|
||||
invoke-rc.d nginx reload
|
||||
fi
|
||||
|
||||
# and we're done with debconf
|
||||
db_stop
|
||||
;;
|
||||
|
||||
abort-upgrade|abort-remove|abort-deconfigure)
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "postinst called with unknown argument \`$1'" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# dh_installdeb will replace this with shell code automatically
|
||||
# generated by other debhelper scripts.
|
||||
|
||||
#DEBHELPER#
|
||||
|
||||
exit 0
|
|
@ -1,56 +0,0 @@
|
|||
#!/bin/sh
|
||||
# postrm script for jitsi-meet
|
||||
#
|
||||
# see: dh_installdeb(1)
|
||||
|
||||
set -e
|
||||
|
||||
# summary of how this script can be called:
|
||||
# * <postrm> `remove'
|
||||
# * <postrm> `purge'
|
||||
# * <old-postrm> `upgrade' <new-version>
|
||||
# * <new-postrm> `failed-upgrade' <old-version>
|
||||
# * <new-postrm> `abort-install'
|
||||
# * <new-postrm> `abort-install' <old-version>
|
||||
# * <new-postrm> `abort-upgrade' <old-version>
|
||||
# * <disappearer's-postrm> `disappear' <overwriter>
|
||||
# <overwriter-version>
|
||||
# for details, see http://www.debian.org/doc/debian-policy/ or
|
||||
# the debian-policy package
|
||||
|
||||
# Load debconf
|
||||
. /usr/share/debconf/confmodule
|
||||
|
||||
|
||||
case "$1" in
|
||||
remove)
|
||||
if [ -x "/etc/init.d/nginx" ]; then
|
||||
invoke-rc.d nginx reload
|
||||
fi
|
||||
;;
|
||||
purge)
|
||||
db_get jitsi-meet/jvb-hostname
|
||||
JVB_HOSTNAME=$RET
|
||||
if [ -n "$RET" ]; then
|
||||
rm -f /etc/jitsi/meet/$JVB_HOSTNAME-config.js
|
||||
rm -f /etc/nginx/sites-available/$JVB_HOSTNAME.conf
|
||||
rm -f /etc/nginx/sites-enabled/$JVB_HOSTNAME.conf
|
||||
fi
|
||||
;;
|
||||
upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "postrm called with unknown argument \`$1'" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# dh_installdeb will replace this with shell code automatically
|
||||
# generated by other debhelper scripts.
|
||||
|
||||
#DEBHELPER#
|
||||
|
||||
db_stop
|
||||
|
||||
exit 0
|
|
@ -1,32 +0,0 @@
|
|||
Template: jitsi-meet/cert-choice
|
||||
Type: select
|
||||
__Choices: Self-signed certificate will be generated, A certificate is available and the files are uploaded on the server
|
||||
_Description: SSL certificate for the Jitsi Meet instance
|
||||
Jitsi Meet is best to be set up with an SSL certificate.
|
||||
Having no certificate, a self-signed one will be generated.
|
||||
Having a certificate signed by a recognised CA, it can be uploaded on the server
|
||||
and point its location. The default filenames will be /etc/ssl/--domain.name--.key
|
||||
for the key and /etc/ssl/--domain.name--.crt for the certificate.
|
||||
|
||||
Template: jitsi-meet/cert-path-key
|
||||
Type: string
|
||||
_Description: Full local server path to the SSL key file:
|
||||
The full path to the SSL key file on the server.
|
||||
If it has not been uploaded, now is a good time to do so.
|
||||
|
||||
Template: jitsi-meet/cert-path-crt
|
||||
Type: string
|
||||
_Description: Full local server path to the SSL certificate file:
|
||||
The full path to the SSL certificate file on the server.
|
||||
If you haven't uploaded it, now is a good time to upload it in another console.
|
||||
|
||||
Template: jitsi-meet/jvb-hostname
|
||||
Type: string
|
||||
_Description: The hostname of the current installation:
|
||||
The value for the hostname that is set in Jitsi Videobridge installation.
|
||||
|
||||
Template: jitsi-meet/jvb-serve
|
||||
Type: boolean
|
||||
Default: false
|
||||
_Description: for internal use
|
||||
for internal use.
|
|
@ -1,202 +0,0 @@
|
|||
/*
|
||||
* A JavaScript implementation of the Secure Hash Algorithm, SHA-1, as defined
|
||||
* in FIPS PUB 180-1
|
||||
* Version 2.1a Copyright Paul Johnston 2000 - 2002.
|
||||
* Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet
|
||||
* Distributed under the BSD License
|
||||
* See http://pajhome.org.uk/crypt/md5 for details.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Configurable variables. You may need to tweak these to be compatible with
|
||||
* the server-side, but the defaults work in most cases.
|
||||
*/
|
||||
var hexcase = 0; /* hex output format. 0 - lowercase; 1 - uppercase */
|
||||
var b64pad = ""; /* base-64 pad character. "=" for strict RFC compliance */
|
||||
var chrsz = 8; /* bits per input character. 8 - ASCII; 16 - Unicode */
|
||||
|
||||
/*
|
||||
* These are the functions you'll usually want to call
|
||||
* They take string arguments and return either hex or base-64 encoded strings
|
||||
*/
|
||||
function hex_sha1(s){return binb2hex(core_sha1(str2binb(s),s.length * chrsz));}
|
||||
function b64_sha1(s){return binb2b64(core_sha1(str2binb(s),s.length * chrsz));}
|
||||
function str_sha1(s){return binb2str(core_sha1(str2binb(s),s.length * chrsz));}
|
||||
function hex_hmac_sha1(key, data){ return binb2hex(core_hmac_sha1(key, data));}
|
||||
function b64_hmac_sha1(key, data){ return binb2b64(core_hmac_sha1(key, data));}
|
||||
function str_hmac_sha1(key, data){ return binb2str(core_hmac_sha1(key, data));}
|
||||
|
||||
/*
|
||||
* Perform a simple self-test to see if the VM is working
|
||||
*/
|
||||
function sha1_vm_test()
|
||||
{
|
||||
return hex_sha1("abc") == "a9993e364706816aba3e25717850c26c9cd0d89d";
|
||||
}
|
||||
|
||||
/*
|
||||
* Calculate the SHA-1 of an array of big-endian words, and a bit length
|
||||
*/
|
||||
function core_sha1(x, len)
|
||||
{
|
||||
/* append padding */
|
||||
x[len >> 5] |= 0x80 << (24 - len % 32);
|
||||
x[((len + 64 >> 9) << 4) + 15] = len;
|
||||
|
||||
var w = Array(80);
|
||||
var a = 1732584193;
|
||||
var b = -271733879;
|
||||
var c = -1732584194;
|
||||
var d = 271733878;
|
||||
var e = -1009589776;
|
||||
|
||||
for(var i = 0; i < x.length; i += 16)
|
||||
{
|
||||
var olda = a;
|
||||
var oldb = b;
|
||||
var oldc = c;
|
||||
var oldd = d;
|
||||
var olde = e;
|
||||
|
||||
for(var j = 0; j < 80; j++)
|
||||
{
|
||||
if(j < 16) w[j] = x[i + j];
|
||||
else w[j] = rol(w[j-3] ^ w[j-8] ^ w[j-14] ^ w[j-16], 1);
|
||||
var t = safe_add(safe_add(rol(a, 5), sha1_ft(j, b, c, d)),
|
||||
safe_add(safe_add(e, w[j]), sha1_kt(j)));
|
||||
e = d;
|
||||
d = c;
|
||||
c = rol(b, 30);
|
||||
b = a;
|
||||
a = t;
|
||||
}
|
||||
|
||||
a = safe_add(a, olda);
|
||||
b = safe_add(b, oldb);
|
||||
c = safe_add(c, oldc);
|
||||
d = safe_add(d, oldd);
|
||||
e = safe_add(e, olde);
|
||||
}
|
||||
return Array(a, b, c, d, e);
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
* Perform the appropriate triplet combination function for the current
|
||||
* iteration
|
||||
*/
|
||||
function sha1_ft(t, b, c, d)
|
||||
{
|
||||
if(t < 20) return (b & c) | ((~b) & d);
|
||||
if(t < 40) return b ^ c ^ d;
|
||||
if(t < 60) return (b & c) | (b & d) | (c & d);
|
||||
return b ^ c ^ d;
|
||||
}
|
||||
|
||||
/*
|
||||
* Determine the appropriate additive constant for the current iteration
|
||||
*/
|
||||
function sha1_kt(t)
|
||||
{
|
||||
return (t < 20) ? 1518500249 : (t < 40) ? 1859775393 :
|
||||
(t < 60) ? -1894007588 : -899497514;
|
||||
}
|
||||
|
||||
/*
|
||||
* Calculate the HMAC-SHA1 of a key and some data
|
||||
*/
|
||||
function core_hmac_sha1(key, data)
|
||||
{
|
||||
var bkey = str2binb(key);
|
||||
if(bkey.length > 16) bkey = core_sha1(bkey, key.length * chrsz);
|
||||
|
||||
var ipad = Array(16), opad = Array(16);
|
||||
for(var i = 0; i < 16; i++)
|
||||
{
|
||||
ipad[i] = bkey[i] ^ 0x36363636;
|
||||
opad[i] = bkey[i] ^ 0x5C5C5C5C;
|
||||
}
|
||||
|
||||
var hash = core_sha1(ipad.concat(str2binb(data)), 512 + data.length * chrsz);
|
||||
return core_sha1(opad.concat(hash), 512 + 160);
|
||||
}
|
||||
|
||||
/*
|
||||
* Add integers, wrapping at 2^32. This uses 16-bit operations internally
|
||||
* to work around bugs in some JS interpreters.
|
||||
*/
|
||||
function safe_add(x, y)
|
||||
{
|
||||
var lsw = (x & 0xFFFF) + (y & 0xFFFF);
|
||||
var msw = (x >> 16) + (y >> 16) + (lsw >> 16);
|
||||
return (msw << 16) | (lsw & 0xFFFF);
|
||||
}
|
||||
|
||||
/*
|
||||
* Bitwise rotate a 32-bit number to the left.
|
||||
*/
|
||||
function rol(num, cnt)
|
||||
{
|
||||
return (num << cnt) | (num >>> (32 - cnt));
|
||||
}
|
||||
|
||||
/*
|
||||
* Convert an 8-bit or 16-bit string to an array of big-endian words
|
||||
* In 8-bit function, characters >255 have their hi-byte silently ignored.
|
||||
*/
|
||||
function str2binb(str)
|
||||
{
|
||||
var bin = Array();
|
||||
var mask = (1 << chrsz) - 1;
|
||||
for(var i = 0; i < str.length * chrsz; i += chrsz)
|
||||
bin[i>>5] |= (str.charCodeAt(i / chrsz) & mask) << (32 - chrsz - i%32);
|
||||
return bin;
|
||||
}
|
||||
|
||||
/*
|
||||
* Convert an array of big-endian words to a string
|
||||
*/
|
||||
function binb2str(bin)
|
||||
{
|
||||
var str = "";
|
||||
var mask = (1 << chrsz) - 1;
|
||||
for(var i = 0; i < bin.length * 32; i += chrsz)
|
||||
str += String.fromCharCode((bin[i>>5] >>> (32 - chrsz - i%32)) & mask);
|
||||
return str;
|
||||
}
|
||||
|
||||
/*
|
||||
* Convert an array of big-endian words to a hex string.
|
||||
*/
|
||||
function binb2hex(binarray)
|
||||
{
|
||||
var hex_tab = hexcase ? "0123456789ABCDEF" : "0123456789abcdef";
|
||||
var str = "";
|
||||
for(var i = 0; i < binarray.length * 4; i++)
|
||||
{
|
||||
str += hex_tab.charAt((binarray[i>>2] >> ((3 - i%4)*8+4)) & 0xF) +
|
||||
hex_tab.charAt((binarray[i>>2] >> ((3 - i%4)*8 )) & 0xF);
|
||||
}
|
||||
return str;
|
||||
}
|
||||
|
||||
/*
|
||||
* Convert an array of big-endian words to a base-64 string
|
||||
*/
|
||||
function binb2b64(binarray)
|
||||
{
|
||||
var tab = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
|
||||
var str = "";
|
||||
for(var i = 0; i < binarray.length * 4; i += 3)
|
||||
{
|
||||
var triplet = (((binarray[i >> 2] >> 8 * (3 - i %4)) & 0xFF) << 16)
|
||||
| (((binarray[i+1 >> 2] >> 8 * (3 - (i+1)%4)) & 0xFF) << 8 )
|
||||
| ((binarray[i+2 >> 2] >> 8 * (3 - (i+2)%4)) & 0xFF);
|
||||
for(var j = 0; j < 4; j++)
|
||||
{
|
||||
if(i * 8 + j * 6 > binarray.length * 32) str += b64pad;
|
||||
else str += tab.charAt((triplet >> 6*(3-j)) & 0x3F);
|
||||
}
|
||||
}
|
||||
return str;
|
||||
}
|
|
@ -1,240 +0,0 @@
|
|||
/**
|
||||
* Entity Capabilities (XEP-0115)
|
||||
*
|
||||
* Depends on disco plugin.
|
||||
*
|
||||
* See: http://xmpp.org/extensions/xep-0115.html
|
||||
*
|
||||
* Authors:
|
||||
* - Michael Weibel <michael.weibel@gmail.com>
|
||||
*
|
||||
* Copyright:
|
||||
* - Michael Weibel <michael.weibel@gmail.com>
|
||||
*/
|
||||
|
||||
Strophe.addConnectionPlugin('caps', {
|
||||
/** Constant: HASH
|
||||
* Hash used
|
||||
*
|
||||
* Currently only sha-1 is supported.
|
||||
*/
|
||||
HASH: 'sha-1',
|
||||
/** Variable: node
|
||||
* Client which is being used.
|
||||
*
|
||||
* Can be overwritten as soon as Strophe has been initialized.
|
||||
*/
|
||||
node: 'http://strophe.im/strophejs/',
|
||||
/** PrivateVariable: _ver
|
||||
* Own generated version string
|
||||
*/
|
||||
_ver: '',
|
||||
/** PrivateVariable: _connection
|
||||
* Strophe connection
|
||||
*/
|
||||
_connection: null,
|
||||
/** PrivateVariable: _knownCapabilities
|
||||
* A hashtable containing version-strings and their capabilities, serialized
|
||||
* as string.
|
||||
*
|
||||
* TODO: Maybe those caps shouldn't be serialized.
|
||||
*/
|
||||
_knownCapabilities: {},
|
||||
/** PrivateVariable: _jidVerIndex
|
||||
* A hashtable containing jids and their versions for better lookup of capabilities.
|
||||
*/
|
||||
_jidVerIndex: {},
|
||||
|
||||
/** Function: init
|
||||
* Initialize plugin:
|
||||
* - Add caps namespace
|
||||
* - Add caps feature to disco plugin
|
||||
* - Add handler for caps stanzas
|
||||
*
|
||||
* Parameters:
|
||||
* (Strophe.Connection) conn - Strophe connection
|
||||
*/
|
||||
init: function(conn) {
|
||||
this._connection = conn;
|
||||
|
||||
Strophe.addNamespace('CAPS', 'http://jabber.org/protocol/caps');
|
||||
|
||||
if (!this._connection.disco) {
|
||||
throw "Caps plugin requires the disco plugin to be installed.";
|
||||
}
|
||||
|
||||
this._connection.disco.addFeature(Strophe.NS.CAPS);
|
||||
this._connection.addHandler(this._delegateCapabilities.bind(this), Strophe.NS.CAPS);
|
||||
},
|
||||
|
||||
/** Function: generateCapsAttrs
|
||||
* Returns the attributes for generating the "c"-stanza containing the own version
|
||||
*
|
||||
* Returns:
|
||||
* (Object) - attributes
|
||||
*/
|
||||
generateCapsAttrs: function() {
|
||||
return {
|
||||
'xmlns': Strophe.NS.CAPS,
|
||||
'hash': this.HASH,
|
||||
'node': this.node,
|
||||
'ver': this.generateVer()
|
||||
};
|
||||
},
|
||||
|
||||
/** Function: generateVer
|
||||
* Returns the base64 encoded version string (encoded itself with sha1)
|
||||
*
|
||||
* Returns:
|
||||
* (String) - version
|
||||
*/
|
||||
generateVer: function() {
|
||||
if (this._ver !== "") {
|
||||
return this._ver;
|
||||
}
|
||||
|
||||
var ver = "",
|
||||
identities = this._connection.disco._identities.sort(this._sortIdentities),
|
||||
identitiesLen = identities.length,
|
||||
features = this._connection.disco._features.sort(),
|
||||
featuresLen = features.length;
|
||||
for(var i = 0; i < identitiesLen; i++) {
|
||||
var curIdent = identities[i];
|
||||
ver += curIdent.category + "/" + curIdent.type + "/" + curIdent.lang + "/" + curIdent.name + "<";
|
||||
}
|
||||
for(var i = 0; i < featuresLen; i++) {
|
||||
ver += features[i] + '<';
|
||||
}
|
||||
|
||||
this._ver = b64_sha1(ver);
|
||||
return this._ver;
|
||||
},
|
||||
|
||||
/** Function: getCapabilitiesByJid
|
||||
* Returns serialized capabilities of a jid (if available).
|
||||
* Otherwise null.
|
||||
*
|
||||
* Parameters:
|
||||
* (String) jid - Jabber id
|
||||
*
|
||||
* Returns:
|
||||
* (String|null) - capabilities, serialized; or null when not available.
|
||||
*/
|
||||
getCapabilitiesByJid: function(jid) {
|
||||
if (this._jidVerIndex[jid]) {
|
||||
return this._knownCapabilities[this._jidVerIndex[jid]];
|
||||
}
|
||||
return null;
|
||||
},
|
||||
|
||||
/** PrivateFunction: _delegateCapabilities
|
||||
* Checks if the version has already been saved.
|
||||
* If yes: do nothing.
|
||||
* If no: Request capabilities
|
||||
*
|
||||
* Parameters:
|
||||
* (Strophe.Builder) stanza - Stanza
|
||||
*
|
||||
* Returns:
|
||||
* (Boolean)
|
||||
*/
|
||||
_delegateCapabilities: function(stanza) {
|
||||
var from = stanza.getAttribute('from'),
|
||||
c = stanza.querySelector('c'),
|
||||
ver = c.getAttribute('ver'),
|
||||
node = c.getAttribute('node');
|
||||
if (!this._knownCapabilities[ver]) {
|
||||
return this._requestCapabilities(from, node, ver);
|
||||
} else {
|
||||
this._jidVerIndex[from] = ver;
|
||||
}
|
||||
if (!this._jidVerIndex[from] || !this._jidVerIndex[from] !== ver) {
|
||||
this._jidVerIndex[from] = ver;
|
||||
}
|
||||
return true;
|
||||
},
|
||||
|
||||
/** PrivateFunction: _requestCapabilities
|
||||
* Requests capabilities from the one which sent the caps-info stanza.
|
||||
* This is done using disco info.
|
||||
*
|
||||
* Additionally, it registers a handler for handling the reply.
|
||||
*
|
||||
* Parameters:
|
||||
* (String) to - Destination jid
|
||||
* (String) node - Node attribute of the caps-stanza
|
||||
* (String) ver - Version of the caps-stanza
|
||||
*
|
||||
* Returns:
|
||||
* (Boolean) - true
|
||||
*/
|
||||
_requestCapabilities: function(to, node, ver) {
|
||||
if (to !== this._connection.jid) {
|
||||
var id = this._connection.disco.info(to, node + '#' + ver);
|
||||
this._connection.addHandler(this._handleDiscoInfoReply.bind(this), Strophe.NS.DISCO_INFO, 'iq', 'result', id, to);
|
||||
}
|
||||
return true;
|
||||
},
|
||||
|
||||
/** PrivateFunction: _handleDiscoInfoReply
|
||||
* Parses the disco info reply and adds the version & it's capabilities to the _knownCapabilities variable.
|
||||
* Additionally, it adds the jid & the version to the _jidVerIndex variable for a better lookup.
|
||||
*
|
||||
* Parameters:
|
||||
* (Strophe.Builder) stanza - Disco info stanza
|
||||
*
|
||||
* Returns:
|
||||
* (Boolean) - false, to automatically remove the handler.
|
||||
*/
|
||||
_handleDiscoInfoReply: function(stanza) {
|
||||
var query = stanza.querySelector('query'),
|
||||
node = query.getAttribute('node').split('#'),
|
||||
ver = node[1],
|
||||
from = stanza.getAttribute('from');
|
||||
if (!this._knownCapabilities[ver]) {
|
||||
var childNodes = query.childNodes,
|
||||
childNodesLen = childNodes.length;
|
||||
this._knownCapabilities[ver] = [];
|
||||
for(var i = 0; i < childNodesLen; i++) {
|
||||
var node = childNodes[i];
|
||||
this._knownCapabilities[ver].push({name: node.nodeName, attributes: node.attributes});
|
||||
}
|
||||
this._jidVerIndex[from] = ver;
|
||||
} else if (!this._jidVerIndex[from] || !this._jidVerIndex[from] !== ver) {
|
||||
this._jidVerIndex[from] = ver;
|
||||
}
|
||||
return false;
|
||||
},
|
||||
|
||||
/** PrivateFunction: _sortIdentities
|
||||
* Sorts two identities according the sorting requirements in XEP-0115.
|
||||
*
|
||||
* Parameters:
|
||||
* (Object) a - Identity a
|
||||
* (Object) b - Identity b
|
||||
*
|
||||
* Returns:
|
||||
* (Integer) - 1, 0 or -1; according to which one's greater.
|
||||
*/
|
||||
_sortIdentities: function(a, b) {
|
||||
if (a.category > b.category) {
|
||||
return 1;
|
||||
}
|
||||
if (a.category < b.category) {
|
||||
return -1;
|
||||
}
|
||||
if (a.type > b.type) {
|
||||
return 1;
|
||||
}
|
||||
if (a.type < b.type) {
|
||||
return -1;
|
||||
}
|
||||
if (a.lang > b.lang) {
|
||||
return 1;
|
||||
}
|
||||
if (a.lang < b.lang) {
|
||||
return -1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
});
|
|
@ -1,232 +0,0 @@
|
|||
/*
|
||||
Copyright 2010, François de Metz <francois@2metz.fr>
|
||||
*/
|
||||
|
||||
/**
|
||||
* Disco Strophe Plugin
|
||||
* Implement http://xmpp.org/extensions/xep-0030.html
|
||||
* TODO: manage node hierarchies, and node on info request
|
||||
*/
|
||||
Strophe.addConnectionPlugin('disco',
|
||||
{
|
||||
_connection: null,
|
||||
_identities : [],
|
||||
_features : [],
|
||||
_items : [],
|
||||
/** Function: init
|
||||
* Plugin init
|
||||
*
|
||||
* Parameters:
|
||||
* (Strophe.Connection) conn - Strophe connection
|
||||
*/
|
||||
init: function(conn)
|
||||
{
|
||||
this._connection = conn;
|
||||
this._identities = [];
|
||||
this._features = [];
|
||||
this._items = [];
|
||||
// disco info
|
||||
conn.addHandler(this._onDiscoInfo.bind(this), Strophe.NS.DISCO_INFO, 'iq', 'get', null, null);
|
||||
// disco items
|
||||
conn.addHandler(this._onDiscoItems.bind(this), Strophe.NS.DISCO_ITEMS, 'iq', 'get', null, null);
|
||||
},
|
||||
/** Function: addIdentity
|
||||
* See http://xmpp.org/registrar/disco-categories.html
|
||||
* Parameters:
|
||||
* (String) category - category of identity (like client, automation, etc ...)
|
||||
* (String) type - type of identity (like pc, web, bot , etc ...)
|
||||
* (String) name - name of identity in natural language
|
||||
* (String) lang - lang of name parameter
|
||||
*
|
||||
* Returns:
|
||||
* Boolean
|
||||
*/
|
||||
addIdentity: function(category, type, name, lang)
|
||||
{
|
||||
for (var i=0; i<this._identities.length; i++)
|
||||
{
|
||||
if (this._identities[i].category == category &&
|
||||
this._identities[i].type == type &&
|
||||
this._identities[i].name == name &&
|
||||
this._identities[i].lang == lang)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
this._identities.push({category: category, type: type, name: name, lang: lang});
|
||||
return true;
|
||||
},
|
||||
/** Function: addFeature
|
||||
*
|
||||
* Parameters:
|
||||
* (String) var_name - feature name (like jabber:iq:version)
|
||||
*
|
||||
* Returns:
|
||||
* boolean
|
||||
*/
|
||||
addFeature: function(var_name)
|
||||
{
|
||||
for (var i=0; i<this._features.length; i++)
|
||||
{
|
||||
if (this._features[i] == var_name)
|
||||
return false;
|
||||
}
|
||||
this._features.push(var_name);
|
||||
return true;
|
||||
},
|
||||
/** Function: removeFeature
|
||||
*
|
||||
* Parameters:
|
||||
* (String) var_name - feature name (like jabber:iq:version)
|
||||
*
|
||||
* Returns:
|
||||
* boolean
|
||||
*/
|
||||
removeFeature: function(var_name)
|
||||
{
|
||||
for (var i=0; i<this._features.length; i++)
|
||||
{
|
||||
if (this._features[i] === var_name){
|
||||
this._features.splice(i,1)
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
},
|
||||
/** Function: addItem
|
||||
*
|
||||
* Parameters:
|
||||
* (String) jid
|
||||
* (String) name
|
||||
* (String) node
|
||||
* (Function) call_back
|
||||
*
|
||||
* Returns:
|
||||
* boolean
|
||||
*/
|
||||
addItem: function(jid, name, node, call_back)
|
||||
{
|
||||
if (node && !call_back)
|
||||
return false;
|
||||
this._items.push({jid: jid, name: name, node: node, call_back: call_back});
|
||||
return true;
|
||||
},
|
||||
/** Function: info
|
||||
* Info query
|
||||
*
|
||||
* Parameters:
|
||||
* (Function) call_back
|
||||
* (String) jid
|
||||
* (String) node
|
||||
*/
|
||||
info: function(jid, node, success, error, timeout)
|
||||
{
|
||||
var attrs = {xmlns: Strophe.NS.DISCO_INFO};
|
||||
if (node)
|
||||
attrs.node = node;
|
||||
|
||||
var info = $iq({from:this._connection.jid,
|
||||
to:jid, type:'get'}).c('query', attrs);
|
||||
this._connection.sendIQ(info, success, error, timeout);
|
||||
},
|
||||
/** Function: items
|
||||
* Items query
|
||||
*
|
||||
* Parameters:
|
||||
* (Function) call_back
|
||||
* (String) jid
|
||||
* (String) node
|
||||
*/
|
||||
items: function(jid, node, success, error, timeout)
|
||||
{
|
||||
var attrs = {xmlns: Strophe.NS.DISCO_ITEMS};
|
||||
if (node)
|
||||
attrs.node = node;
|
||||
|
||||
var items = $iq({from:this._connection.jid,
|
||||
to:jid, type:'get'}).c('query', attrs);
|
||||
this._connection.sendIQ(items, success, error, timeout);
|
||||
},
|
||||
|
||||
/** PrivateFunction: _buildIQResult
|
||||
*/
|
||||
_buildIQResult: function(stanza, query_attrs)
|
||||
{
|
||||
var id = stanza.getAttribute('id');
|
||||
var from = stanza.getAttribute('from');
|
||||
var iqresult = $iq({type: 'result', id: id});
|
||||
|
||||
if (from !== null) {
|
||||
iqresult.attrs({to: from});
|
||||
}
|
||||
|
||||
return iqresult.c('query', query_attrs);
|
||||
},
|
||||
|
||||
/** PrivateFunction: _onDiscoInfo
|
||||
* Called when receive info request
|
||||
*/
|
||||
_onDiscoInfo: function(stanza)
|
||||
{
|
||||
var node = stanza.getElementsByTagName('query')[0].getAttribute('node');
|
||||
var attrs = {xmlns: Strophe.NS.DISCO_INFO};
|
||||
if (node)
|
||||
{
|
||||
attrs.node = node;
|
||||
}
|
||||
var iqresult = this._buildIQResult(stanza, attrs);
|
||||
for (var i=0; i<this._identities.length; i++)
|
||||
{
|
||||
var attrs = {category: this._identities[i].category,
|
||||
type : this._identities[i].type};
|
||||
if (this._identities[i].name)
|
||||
attrs.name = this._identities[i].name;
|
||||
if (this._identities[i].lang)
|
||||
attrs['xml:lang'] = this._identities[i].lang;
|
||||
iqresult.c('identity', attrs).up();
|
||||
}
|
||||
for (var i=0; i<this._features.length; i++)
|
||||
{
|
||||
iqresult.c('feature', {'var':this._features[i]}).up();
|
||||
}
|
||||
this._connection.send(iqresult.tree());
|
||||
return true;
|
||||
},
|
||||
/** PrivateFunction: _onDiscoItems
|
||||
* Called when receive items request
|
||||
*/
|
||||
_onDiscoItems: function(stanza)
|
||||
{
|
||||
var query_attrs = {xmlns: Strophe.NS.DISCO_ITEMS};
|
||||
var node = stanza.getElementsByTagName('query')[0].getAttribute('node');
|
||||
if (node)
|
||||
{
|
||||
query_attrs.node = node;
|
||||
var items = [];
|
||||
for (var i = 0; i < this._items.length; i++)
|
||||
{
|
||||
if (this._items[i].node == node)
|
||||
{
|
||||
items = this._items[i].call_back(stanza);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
var items = this._items;
|
||||
}
|
||||
var iqresult = this._buildIQResult(stanza, query_attrs);
|
||||
for (var i = 0; i < items.length; i++)
|
||||
{
|
||||
var attrs = {jid: items[i].jid};
|
||||
if (items[i].name)
|
||||
attrs.name = items[i].name;
|
||||
if (items[i].node)
|
||||
attrs.node = items[i].node;
|
||||
iqresult.c('item', attrs).up();
|
||||
}
|
||||
this._connection.send(iqresult.tree());
|
||||
return true;
|
||||
}
|
||||
});
|
|
@ -1,22 +0,0 @@
|
|||
Description: Update the used js files for jquery to generic ones, to be able to use local system installed version (through symlinks).
|
||||
Index: jitsi-meet/index.html
|
||||
===================================================================
|
||||
--- jitsi-meet.orig/index.html
|
||||
+++ jitsi-meet/index.html
|
||||
@@ -10,14 +10,14 @@
|
||||
<meta itemprop="description" content="Join a WebRTC video conference powered by the Jitsi Videobridge"/>
|
||||
<meta itemprop="image" content="/images/jitsilogo.png"/>
|
||||
<script src="https://api.callstats.io/static/callstats.min.js"></script>
|
||||
- <script src="libs/jquery-2.1.1.min.js"></script>
|
||||
+ <script src="libs/jquery.min.js"></script>
|
||||
<script src="https://cdn.socket.io/socket.io-1.2.0.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jsSHA/1.5.0/sha.js"></script>
|
||||
<script src="config.js?v=11"></script><!-- adapt to your needs, i.e. set hosts and bosh path -->
|
||||
<script src="libs/strophe/strophe.min.js?v=2"></script>
|
||||
<script src="libs/strophe/strophe.disco.min.js?v=1"></script>
|
||||
<script src="libs/strophe/strophe.caps.jsonly.min.js?v=1"></script>
|
||||
- <script src="libs/jquery-ui.js"></script>
|
||||
+ <script src="libs/jquery-ui.min.js"></script>
|
||||
<script src="libs/tooltip.js?v=1"></script><!-- bootstrap tooltip lib -->
|
||||
<script src="libs/popover.js?v=1"></script><!-- bootstrap tooltip lib -->
|
||||
<script src="libs/toastr.js?v=1"></script><!-- notifications lib -->
|
|
@ -1 +0,0 @@
|
|||
jquery-package
|
|
@ -1 +0,0 @@
|
|||
[type: gettext/rfc822deb] jitsi-meet.templates
|
|
@ -1,98 +0,0 @@
|
|||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: jitsi-meet\n"
|
||||
"Report-Msgid-Bugs-To: jitsi-meet@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2014-09-03 17:26+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#. Type: select
|
||||
#. Choices
|
||||
#: ../jitsi-meet.templates:1001
|
||||
msgid "Self-signed certificate will be generated"
|
||||
msgstr ""
|
||||
|
||||
#. Type: select
|
||||
#. Choices
|
||||
#: ../jitsi-meet.templates:1001
|
||||
msgid "A certificate is available and the files are uploaded on the server"
|
||||
msgstr ""
|
||||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../jitsi-meet.templates:1002
|
||||
msgid "SSL certificate for the Jitsi Meet instance"
|
||||
msgstr ""
|
||||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../jitsi-meet.templates:1002
|
||||
msgid ""
|
||||
"Jitsi Meet is best to be set up with an SSL certificate. Having no "
|
||||
"certificate, a self-signed one will be generated. Having a certificate "
|
||||
"signed by a recognised CA, it can be uploaded on the server and point its "
|
||||
"location. The default filenames will be /etc/ssl/--domain.name--.key for the "
|
||||
"key and /etc/ssl/--domain.name--.crt for the certificate."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../jitsi-meet.templates:2001
|
||||
msgid "Full local server path to the SSL key file:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../jitsi-meet.templates:2001
|
||||
msgid ""
|
||||
"The full path to the SSL key file on the server. If it has not been "
|
||||
"uploaded, now is a good time to do so."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../jitsi-meet.templates:3001
|
||||
msgid "Full local server path to the SSL certificate file:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../jitsi-meet.templates:3001
|
||||
msgid ""
|
||||
"The full path to the SSL certificate file on the server. If you haven't "
|
||||
"uploaded it, now is a good time to upload it in another console."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../jitsi-meet.templates:4001
|
||||
msgid "The hostname of the current installation:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../jitsi-meet.templates:4001
|
||||
msgid ""
|
||||
"The value for the hostname that is set in Jitsi Videobridge installation."
|
||||
msgstr ""
|
||||
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../jitsi-meet.templates:5001
|
||||
msgid "for internal use"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../jitsi-meet.templates:5001
|
||||
msgid ""
|
||||
"Jitsi Videobridge installation can use its internal jetty to serve static meet pages."
|
||||
msgstr ""
|
|
@ -1,19 +0,0 @@
|
|||
#!/usr/bin/make -f
|
||||
|
||||
# Uncomment this to turn on verbose mode.
|
||||
#export DH_VERBOSE=1
|
||||
|
||||
%:
|
||||
dh $@
|
||||
|
||||
# we skip making Makefile exists for updating browserify modules when developing
|
||||
override_dh_auto_build:
|
||||
|
||||
override_dh_install:
|
||||
dh_installdirs
|
||||
dh_install -X/config.js
|
||||
yui-compressor -o debian/jitsi-meet/usr/share/jitsi-meet/libs/strophe/strophe.caps.jsonly.min.js \
|
||||
debian/missing-source/libs/strophe/strophe.caps.jsonly.js
|
||||
yui-compressor -o debian/jitsi-meet/usr/share/jitsi-meet/libs/strophe/strophe.disco.min.js \
|
||||
debian/missing-source/libs/strophe/sha1.js \
|
||||
debian/missing-source/libs/strophe/strophe.disco.js
|
|
@ -1 +0,0 @@
|
|||
3.0 (quilt)
|
|
@ -1,2 +0,0 @@
|
|||
version=3
|
||||
opts="uversionmangle=s/^/1.0./" https://github.com/jitsi/jitsi-meet/releases/ /jitsi/jitsi-meet/archive/(\S+)\.tar\.gz
|
|
@ -1,12 +0,0 @@
|
|||
### Adding an icon to the font file (e.g. for the floating menu)
|
||||
1. Go to https://icomoon.io/app/
|
||||
2. Go to "Manage Projects" from the menu on the top left.
|
||||
3. Use "Import project" and select <code>fonts/selection.json</code> from Jitsi Meet.
|
||||
4. Import icons (e.g. svg files) using the "import items" button.
|
||||
5. Go to "generate font" and make sure the identifiers for the new icons are correct.
|
||||
6. Download the result in a zip file using the "download" button.
|
||||
7. Copy <code>selection.json</code> and <code>fonts/jitsi.*</code> from the zip file to <code>fonts/</code> in Jitsi Meet
|
||||
8. Copy the class for the new icon from <code>style.css</code> in the zip file to <code>css/font.css</code> in Jitsi Meet (do *not* copy the whole file)
|
||||
|
||||
Sample commit: https://github.com/jitsi/jitsi-meet/commit/68bc819b89aec12364fcf07b81efa83a1900eed6
|
||||
|
174
doc/api.md
|
@ -1,174 +0,0 @@
|
|||
Jitsi Meet API
|
||||
============
|
||||
|
||||
You can use Jitsi Meet API to embed Jitsi Meet in to your application.
|
||||
|
||||
Installation
|
||||
==========
|
||||
|
||||
To embed Jitsi Meet in your application you need to add Jitsi Meet API library
|
||||
```javascript
|
||||
<script src="https://meet.jit.si/external_api.js"></script>
|
||||
```
|
||||
|
||||
The next step for embedding Jitsi Meet is to create the Jitsi Meet API object
|
||||
```javascript
|
||||
<script>
|
||||
var domain = "meet.jit.si";
|
||||
var room = "JitsiMeetAPIExample";
|
||||
var width = 700;
|
||||
var height = 700;
|
||||
var api = new JitsiMeetExternalAPI(domain, room, width, height);
|
||||
</script>
|
||||
```
|
||||
You can paste that lines in your html code where you want to be placed the Jitsi Meet conference
|
||||
or you can specify the parent HTML element for the Jitsi Meet conference in the JitsiMeetExternalAPI
|
||||
constructor.
|
||||
```javascript
|
||||
var api = new JitsiMeetExternalAPI(domain, room, width, height, htmlElement);
|
||||
```
|
||||
If you don't specify room the user will enter in new conference with random room name.
|
||||
|
||||
You can enable the "film strip only" mode(only the small videos are visible) by setting 6th parameter to ```true```:
|
||||
```javascript
|
||||
var api = new JitsiMeetExternalAPI(domain, room, width, height, htmlElement, true);
|
||||
```
|
||||
|
||||
Controlling embedded Jitsi Meet Conference
|
||||
=========
|
||||
|
||||
You can control the embedded Jitsi Meet conference using the JitsiMeetExternalAPI object.
|
||||
|
||||
You can send command to Jitsi Meet conference using ```executeCommand```.
|
||||
```
|
||||
api.executeCommand(command, arguments)
|
||||
```
|
||||
The ```command``` parameter is String object with the name of the command.
|
||||
The ```arguments``` parameter is array with the arguments required by the command.
|
||||
If no arguments are required by the command this parameter can be omitted or you can pass empty array.
|
||||
Currently we support the following commands:
|
||||
|
||||
|
||||
* **displayName** - sets the display name of the local participant. This command requires one argument -
|
||||
the new display name to be set
|
||||
```
|
||||
api.executeCommand('displayName', ['New Nickname']);
|
||||
```
|
||||
* **toggleAudio** - mutes / unmutes the audio for the local participant. No arguments are required.
|
||||
```
|
||||
api.executeCommand('toggleAudio', [])
|
||||
```
|
||||
* **toggleVideo** - mutes / unmutes the video for the local participant. No arguments are required.
|
||||
```
|
||||
api.executeCommand('toggleVideo', [])
|
||||
```
|
||||
* **toggleFilmStrip** - hides / shows the film strip. No arguments are required.
|
||||
```
|
||||
api.executeCommand('filmStrip', [])
|
||||
```
|
||||
* **toggleChat** - hides / shows the chat. No arguments are required.
|
||||
```
|
||||
api.executeCommand('toggleChat', [])
|
||||
```
|
||||
* **toggleContactList** - hides / shows the contact list. No arguments are required.
|
||||
```
|
||||
api.executeCommand('toggleContactList', [])
|
||||
```
|
||||
|
||||
You can also execute multiple commands using the method ```executeCommands```.
|
||||
```
|
||||
api.executeCommands(commands)
|
||||
```
|
||||
The ```commands``` parameter is object with keys the names of the commands and values the arguments for the
|
||||
commands.
|
||||
|
||||
```
|
||||
api.executeCommands({displayName: ['nickname'], toggleAudio: []});
|
||||
```
|
||||
|
||||
You can add event listeners to the embedded Jitsi Meet using ```addEventListener``` method.
|
||||
```
|
||||
api.addEventListener(event, listener)
|
||||
```
|
||||
The ```event``` parameter is String object with the name of the event.
|
||||
The ```listener``` paramenter is Function object with one argument that will be notified when the event occurs
|
||||
with data related to the event.
|
||||
|
||||
Currently we support the following events:
|
||||
|
||||
* **incomingMessage** - event notifications about incoming
|
||||
messages. The listener will receive object with the following structure:
|
||||
```
|
||||
{
|
||||
"from": from,//JID of the user that sent the message
|
||||
"nick": nick,//the nickname of the user that sent the message
|
||||
"message": txt//the text of the message
|
||||
}
|
||||
```
|
||||
* **outgoingMessage** - event notifications about outgoing
|
||||
messages. The listener will receive object with the following structure:
|
||||
```
|
||||
{
|
||||
"message": txt//the text of the message
|
||||
}
|
||||
```
|
||||
* **displayNameChanged** - event notifications about display name
|
||||
change. The listener will receive object with the following structure:
|
||||
```
|
||||
{
|
||||
jid: jid,//the JID of the participant that changed his display name
|
||||
displayname: displayName //the new display name
|
||||
}
|
||||
```
|
||||
* **participantJoined** - event notifications about new participant.
|
||||
The listener will receive object with the following structure:
|
||||
```
|
||||
{
|
||||
jid: jid //the jid of the participant
|
||||
}
|
||||
```
|
||||
* **participantLeft** - event notifications about participant that left room.
|
||||
The listener will receive object with the following structure:
|
||||
```
|
||||
{
|
||||
jid: jid //the jid of the participant
|
||||
}
|
||||
```
|
||||
|
||||
You can also add multiple event listeners by using ```addEventListeners```.
|
||||
This method requires one argument of type Object. The object argument must
|
||||
have keys with the names of the events and values the listeners of the events.
|
||||
|
||||
```
|
||||
function incomingMessageListener(object)
|
||||
{
|
||||
...
|
||||
}
|
||||
|
||||
function outgoingMessageListener(object)
|
||||
{
|
||||
...
|
||||
}
|
||||
|
||||
api.addEventListeners({
|
||||
incomingMessage: incomingMessageListener,
|
||||
outgoingMessage: outgoingMessageListener})
|
||||
```
|
||||
|
||||
If you want to remove a listener you can use ```removeEventListener``` method with argument the name of the event.
|
||||
```
|
||||
api.removeEventListener("incomingMessage");
|
||||
```
|
||||
|
||||
If you want to remove more than one event you can use ```removeEventListeners``` method with argument
|
||||
array with the names of the events.
|
||||
```
|
||||
api.removeEventListeners(["incomingMessage", "outgoingMessageListener"]);
|
||||
```
|
||||
|
||||
You can remove the embedded Jitsi Meet Conference with the following code:
|
||||
```
|
||||
api.dispose()
|
||||
```
|
||||
|
||||
It is a good practice to remove the conference before the page is unloaded.
|
|
@ -1 +0,0 @@
|
|||
Prosody configuration for Jitsi Meet
|
|
@ -1,28 +0,0 @@
|
|||
VirtualHost "jitmeet.example.com"
|
||||
-- enabled = false -- Remove this line to enable this host
|
||||
authentication = "anonymous"
|
||||
-- Assign this host a certificate for TLS, otherwise it would use the one
|
||||
-- set in the global section (if any).
|
||||
-- Note that old-style SSL on port 5223 only supports one certificate, and will always
|
||||
-- use the global one.
|
||||
ssl = {
|
||||
key = "/etc/prosody/certs/jitmeet.example.com.key";
|
||||
certificate = "/etc/prosody/certs/jitmeet.example.com.crt";
|
||||
}
|
||||
-- we need bosh
|
||||
modules_enabled = {
|
||||
"bosh";
|
||||
"pubsub";
|
||||
}
|
||||
|
||||
Component "conference.jitmeet.example.com" "muc"
|
||||
admins = { "focusUser@auth.jitmeet.example.com" }
|
||||
|
||||
Component "jitsi-videobridge.jitmeet.example.com"
|
||||
component_secret = "jitmeetSecret"
|
||||
|
||||
VirtualHost "auth.jitmeet.example.com"
|
||||
authentication = "internal_plain"
|
||||
|
||||
Component "focus.jitmeet.example.com"
|
||||
component_secret = "focusSecret"
|
|
@ -1,13 +0,0 @@
|
|||
Jitsi Meet
|
||||
|
||||
====
|
||||
|
||||
A WebRTC-powered multi-user videochat. For a live demo, check out either
|
||||
https://meet.estos.de/ or https://meet.jit.si/.
|
||||
|
||||
Built using colibri.js[0] and strophe.jingle[1], powered by the jitsi-videobridge[2]
|
||||
|
||||
|
||||
[0] https://github.com/ESTOS/colibri.js
|
||||
[1] https://github.com/ESTOS/strophe.jingle
|
||||
[3] https://github.com/jitsi/jitsi-videobridge
|
|
@ -1,36 +0,0 @@
|
|||
server_names_hash_bucket_size 64;
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
server_name jitsi-meet.example.com;
|
||||
return 301 https://$host$request_uri;
|
||||
}
|
||||
server {
|
||||
listen 443 ssl;
|
||||
server_name jitsi-meet.example.com;
|
||||
|
||||
ssl_certificate /var/lib/prosody/jitsi-meet.example.com.crt;
|
||||
ssl_certificate_key /var/lib/prosody/jitsi-meet.example.com.key;
|
||||
|
||||
root /usr/share/jitsi-meet;
|
||||
index index.html index.htm;
|
||||
|
||||
location /config.js {
|
||||
alias /etc/jitsi/meet/jitsi-meet.example.com-config.js;
|
||||
}
|
||||
|
||||
location ~ ^/([a-zA-Z0-9=\?]+)$ {
|
||||
rewrite ^/(.*)$ / break;
|
||||
}
|
||||
|
||||
location / {
|
||||
ssi on;
|
||||
}
|
||||
|
||||
# BOSH
|
||||
location /http-bind {
|
||||
proxy_pass http://localhost:5280/http-bind;
|
||||
proxy_set_header X-Forwarded-For $remote_addr;
|
||||
proxy_set_header Host $http_host;
|
||||
}
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
var config = {
|
||||
hosts: {
|
||||
domain: 'jitsi.example.com',
|
||||
muc: 'conference.jitsi.example.com', // FIXME: use XEP-0030
|
||||
bridge: 'jitsi-videobridge.jitsi.example.com' // FIXME: use XEP-0030
|
||||
},
|
||||
useNicks: false,
|
||||
bosh: '//jitsi.example.com/http-bind' // FIXME: use xep-0156 for that
|
||||
};
|
|
@ -1,33 +0,0 @@
|
|||
server {
|
||||
listen 80;
|
||||
|
||||
server_name jitsi.example.com;
|
||||
# set the root
|
||||
root /srv/jitsi.example.com;
|
||||
index index.html;
|
||||
|
||||
location ~ ^/([a-zA-Z0-9=\?]+)$ {
|
||||
rewrite ^/(.*)$ / break;
|
||||
}
|
||||
|
||||
location / {
|
||||
ssi on;
|
||||
}
|
||||
|
||||
# BOSH
|
||||
location /http-bind {
|
||||
proxy_pass http://localhost:5280/http-bind;
|
||||
proxy_set_header X-Forwarded-For $remote_addr;
|
||||
proxy_set_header Host $http_host;
|
||||
}
|
||||
|
||||
# xmpp websockets
|
||||
location /xmpp-websocket {
|
||||
proxy_pass http://localhost:5280;
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "upgrade";
|
||||
proxy_set_header Host $host;
|
||||
tcp_nodelay on;
|
||||
}
|
||||
}
|
|
@ -1,54 +0,0 @@
|
|||
user www-data;
|
||||
worker_processes 1;
|
||||
|
||||
error_log /var/log/nginx/error.log;
|
||||
pid /var/run/nginx.pid;
|
||||
|
||||
events {
|
||||
worker_connections 1024;
|
||||
# multi_accept on;
|
||||
}
|
||||
|
||||
http {
|
||||
include /etc/nginx/mime.types;
|
||||
|
||||
access_log /var/log/nginx/access.log;
|
||||
|
||||
sendfile on;
|
||||
#tcp_nopush on;
|
||||
|
||||
#keepalive_timeout 0;
|
||||
keepalive_timeout 65;
|
||||
tcp_nodelay on;
|
||||
|
||||
tcp_nopush on;
|
||||
types_hash_max_size 2048;
|
||||
server_names_hash_bucket_size 64;
|
||||
|
||||
gzip on;
|
||||
gzip_disable "MSIE [1-6]\.(?!.*SV1)";
|
||||
|
||||
include /etc/nginx/conf.d/*.conf;
|
||||
include /etc/nginx/sites-enabled/*;
|
||||
}
|
||||
|
||||
# mail {
|
||||
# # See sample authentication script at:
|
||||
# # http://wiki.nginx.org/NginxImapAuthenticateWithApachePhpScript
|
||||
#
|
||||
# # auth_http localhost/auth.php;
|
||||
# # pop3_capabilities "TOP" "USER";
|
||||
# # imap_capabilities "IMAP4rev1" "UIDPLUS";
|
||||
#
|
||||
# server {
|
||||
# listen localhost:110;
|
||||
# protocol pop3;
|
||||
# proxy on;
|
||||
# }
|
||||
#
|
||||
# server {
|
||||
# listen localhost:143;
|
||||
# protocol imap;
|
||||
# proxy on;
|
||||
# }
|
||||
# }
|
|
@ -1,205 +0,0 @@
|
|||
-- Prosody XMPP Server Configuration
|
||||
--
|
||||
-- Information on configuring Prosody can be found on our
|
||||
-- website at http://prosody.im/doc/configure
|
||||
--
|
||||
-- Tip: You can check that the syntax of this file is correct
|
||||
-- when you have finished by running: prosodyctl check config
|
||||
-- If there are any errors, it will let you know what and where
|
||||
-- they are, otherwise it will keep quiet.
|
||||
--
|
||||
-- Good luck, and happy Jabbering!
|
||||
|
||||
|
||||
---------- Server-wide settings ----------
|
||||
-- Settings in this section apply to the whole server and are the default settings
|
||||
-- for any virtual hosts
|
||||
|
||||
-- This is a (by default, empty) list of accounts that are admins
|
||||
-- for the server. Note that you must create the accounts separately
|
||||
-- (see http://prosody.im/doc/creating_accounts for info)
|
||||
-- Example: admins = { "user1@example.com", "user2@example.net" }
|
||||
admins = { }
|
||||
daemonize = true
|
||||
cross_domain_bosh = true;
|
||||
component_ports = { 5347 }
|
||||
--component_interface = "192.168.0.10"
|
||||
|
||||
-- Enable use of libevent for better performance under high load
|
||||
-- For more information see: http://prosody.im/doc/libevent
|
||||
--use_libevent = true
|
||||
|
||||
-- This is the list of modules Prosody will load on startup.
|
||||
-- It looks for mod_modulename.lua in the plugins folder, so make sure that exists too.
|
||||
-- Documentation on modules can be found at: http://prosody.im/doc/modules
|
||||
modules_enabled = {
|
||||
|
||||
-- Generally required
|
||||
"roster"; -- Allow users to have a roster. Recommended ;)
|
||||
"saslauth"; -- Authentication for clients and servers. Recommended if you want to log in.
|
||||
"tls"; -- Add support for secure TLS on c2s/s2s connections
|
||||
"dialback"; -- s2s dialback support
|
||||
"disco"; -- Service discovery
|
||||
"posix"; -- POSIX functionality, sends server to background, enables syslog, etc.
|
||||
|
||||
-- Not essential, but recommended
|
||||
"private"; -- Private XML storage (for room bookmarks, etc.)
|
||||
"vcard"; -- Allow users to set vCards
|
||||
|
||||
-- These are commented by default as they have a performance impact
|
||||
--"privacy"; -- Support privacy lists
|
||||
"compression"; -- Stream compression (requires the lua-zlib package installed)
|
||||
|
||||
-- Nice to have
|
||||
"version"; -- Replies to server version requests
|
||||
"uptime"; -- Report how long server has been running
|
||||
"time"; -- Let others know the time here on this server
|
||||
"ping"; -- Replies to XMPP pings with pongs
|
||||
"pep"; -- Enables users to publish their mood, activity, playing music and more
|
||||
"register"; -- Allow users to register on this server using a client and change passwords
|
||||
|
||||
-- Admin interfaces
|
||||
"admin_adhoc"; -- Allows administration via an XMPP client that supports ad-hoc commands
|
||||
--"admin_telnet"; -- Opens telnet console interface on localhost port 5582
|
||||
|
||||
-- HTTP modules
|
||||
"bosh"; -- Enable BOSH clients, aka "Jabber over HTTP"
|
||||
--"http_files"; -- Serve static files from a directory over HTTP
|
||||
|
||||
-- Other specific functionality
|
||||
--"groups"; -- Shared roster support
|
||||
--"announce"; -- Send announcement to all online users
|
||||
--"welcome"; -- Welcome users who register accounts
|
||||
--"watchregistrations"; -- Alert admins of registrations
|
||||
--"motd"; -- Send a message to users when they log in
|
||||
--"legacyauth"; -- Legacy authentication. Only used by some old clients and bots.
|
||||
-- jitsi
|
||||
"smacks";
|
||||
"carbons";
|
||||
"mam";
|
||||
"lastactivity";
|
||||
"offline";
|
||||
"pubsub";
|
||||
"adhoc";
|
||||
"websocket";
|
||||
"http_altconnect";
|
||||
}
|
||||
|
||||
-- These modules are auto-loaded, but should you want
|
||||
-- to disable them then uncomment them here:
|
||||
modules_disabled = {
|
||||
-- "offline"; -- Store offline messages
|
||||
-- "c2s"; -- Handle client connections
|
||||
-- "s2s"; -- Handle server-to-server connections
|
||||
}
|
||||
|
||||
-- Disable account creation by default, for security
|
||||
-- For more information see http://prosody.im/doc/creating_accounts
|
||||
allow_registration = false
|
||||
|
||||
-- These are the SSL/TLS-related settings. If you don't want
|
||||
-- to use SSL/TLS, you may comment or remove this
|
||||
ssl = {
|
||||
key = "/etc/prosody/certs/localhost.key";
|
||||
certificate = "/etc/prosody/certs/localhost.crt";
|
||||
}
|
||||
|
||||
-- Force clients to use encrypted connections? This option will
|
||||
-- prevent clients from authenticating unless they are using encryption.
|
||||
|
||||
-- c2s_require_encryption = true
|
||||
|
||||
-- Force certificate authentication for server-to-server connections?
|
||||
-- This provides ideal security, but requires servers you communicate
|
||||
-- with to support encryption AND present valid, trusted certificates.
|
||||
-- NOTE: Your version of LuaSec must support certificate verification!
|
||||
-- For more information see http://prosody.im/doc/s2s#security
|
||||
|
||||
-- s2s_secure_auth = false
|
||||
|
||||
-- Many servers don't support encryption or have invalid or self-signed
|
||||
-- certificates. You can list domains here that will not be required to
|
||||
-- authenticate using certificates. They will be authenticated using DNS.
|
||||
|
||||
--s2s_insecure_domains = { "gmail.com" }
|
||||
|
||||
-- Even if you leave s2s_secure_auth disabled, you can still require valid
|
||||
-- certificates for some domains by specifying a list here.
|
||||
|
||||
--s2s_secure_domains = { "jabber.org" }
|
||||
|
||||
-- Required for init scripts and prosodyctl
|
||||
pidfile = "/var/run/prosody/prosody.pid"
|
||||
|
||||
-- Select the authentication backend to use. The 'internal' providers
|
||||
-- use Prosody's configured data storage to store the authentication data.
|
||||
-- To allow Prosody to offer secure authentication mechanisms to clients, the
|
||||
-- default provider stores passwords in plaintext. If you do not trust your
|
||||
-- server please see http://prosody.im/doc/modules/mod_auth_internal_hashed
|
||||
-- for information about using the hashed backend.
|
||||
|
||||
-- authentication = "internal_plain"
|
||||
authentication = "internal_hashed"
|
||||
|
||||
-- Select the storage backend to use. By default Prosody uses flat files
|
||||
-- in its configured data directory, but it also supports more backends
|
||||
-- through modules. An "sql" backend is included by default, but requires
|
||||
-- additional dependencies. See http://prosody.im/doc/storage for more info.
|
||||
|
||||
--storage = "sql" -- Default is "internal"
|
||||
|
||||
-- For the "sql" backend, you can uncomment *one* of the below to configure:
|
||||
--sql = { driver = "SQLite3", database = "prosody.sqlite" } -- Default. 'database' is the filename.
|
||||
--sql = { driver = "MySQL", database = "prosody", username = "prosody", password = "secret", host = "localhost" }
|
||||
--sql = { driver = "PostgreSQL", database = "prosody", username = "prosody", password = "secret", host = "localhost" }
|
||||
|
||||
-- Logging configuration
|
||||
-- For advanced logging see http://prosody.im/doc/logging
|
||||
log = {
|
||||
info = "/var/log/prosody/prosody.log"; -- Change 'info' to 'debug' for verbose logging
|
||||
error = "/var/log/prosody/prosody.err";
|
||||
"*syslog";
|
||||
}
|
||||
|
||||
----------- Virtual hosts -----------
|
||||
-- You need to add a VirtualHost entry for each domain you wish Prosody to serve.
|
||||
-- Settings under each VirtualHost entry apply *only* to that host.
|
||||
|
||||
--VirtualHost "localhost"
|
||||
|
||||
VirtualHost "jitsi.example.com"
|
||||
-- enabled = false -- Remove this line to enable this host
|
||||
authentication = "anonymous"
|
||||
-- Assign this host a certificate for TLS, otherwise it would use the one
|
||||
-- set in the global section (if any).
|
||||
-- Note that old-style SSL on port 5223 only supports one certificate, and will always
|
||||
-- use the global one.
|
||||
ssl = {
|
||||
key = "/var/lib/prosody/jitsi.example.com.key";
|
||||
certificate = "/var/lib/prosody/jitsi.example.com.crt";
|
||||
}
|
||||
|
||||
------ Components ------
|
||||
-- You can specify components to add hosts that provide special services,
|
||||
-- like multi-user conferences, and transports.
|
||||
-- For more information on components, see http://prosody.im/doc/components
|
||||
|
||||
---Set up a MUC (multi-user chat) room server on conference.example.com:
|
||||
--Component "conference.example.com" "muc"
|
||||
|
||||
-- Set up a SOCKS5 bytestream proxy for server-proxied file transfers:
|
||||
--Component "proxy.example.com" "proxy65"
|
||||
|
||||
---Set up an external component (default component port is 5347)
|
||||
--
|
||||
-- External components allow adding various services, such as gateways/
|
||||
-- transports to other networks like ICQ, MSN and Yahoo. For more info
|
||||
-- see: http://prosody.im/doc/components#adding_an_external_component
|
||||
--
|
||||
--Component "gateway.example.com"
|
||||
-- component_secret = "password"
|
||||
|
||||
Component "conference.jitsi.example.com" "muc"
|
||||
|
||||
Component "jitsi-videobridge.jitsi.example.com"
|
||||
component_secret = "IfGaish6"
|
|
@ -1,29 +0,0 @@
|
|||
# Overview
|
||||
Jitsi Meet supports logging to an [InfluxDB](http://influxdb.com/) database.
|
||||
|
||||
# Configuration
|
||||
The following needs to be done to enable this functionality.
|
||||
|
||||
## Install InfluxDB
|
||||
The details are outside the scope of the document, see http://influxdb.com/download/ .
|
||||
|
||||
## Create an InfluxDB database
|
||||
Use the InfluxDB admin interface (running on port 8083) and create a database. In this example we name it <code>jitsi_database</code>
|
||||
|
||||
## Enable logging for Jitsi Videobridge
|
||||
Add the following properties to <code>/usr/share/jitsi-videobridge/.sip-communicator/sip-communicator.properties</code>.
|
||||
|
||||
- org.jitsi.videobridge.log.INFLUX_DB_ENABLED=true
|
||||
- org.jitsi.videobridge.log.INFLUX_URL_BASE=http://influxdb.example.com:8086
|
||||
- org.jitsi.videobridge.log.INFLUX_DATABASE=jitsi_database
|
||||
- org.jitsi.videobridge.log.INFLUX_USER=user
|
||||
- org.jitsi.videobridge.log.INFLUX_PASS=pass
|
||||
|
||||
## Enable logging for Jicofo
|
||||
Add the same properties as above to <code>/usr/share/jicofo/.sip-communicator/sip-communicator.properties</code>.
|
||||
|
||||
## Enable logging for Jitsi Meet itself
|
||||
Change "logStats" to "true" in <code>/etc/jitsi/meet/you-domain.config.js</code> or the <code>config.js</code> file used in your installation.
|
||||
|
||||
# User interface
|
||||
You can explore the database using the [Jiloin](https://github.com/jitsi/jiloin) web interface.
|
|
@ -1,223 +0,0 @@
|
|||
# Server Installation for Jitsi Meet
|
||||
|
||||
This describes configuring a server `jitsi.example.com` running Debian or a Debian Derivative. You will need to
|
||||
change references to that to match your host, and generate some passwords for
|
||||
`YOURSECRET1`, `YOURSECRET2`, `YOURSECRET3` and `YOURSECRET4`.
|
||||
|
||||
There are also some complete [example config files](https://github.com/jitsi/jitsi-meet/tree/master/doc/example-config-files/) available, mentioned in each section.
|
||||
|
||||
## Install prosody
|
||||
```sh
|
||||
apt-get install prosody
|
||||
```
|
||||
|
||||
## Configure prosody
|
||||
Add config file in `/etc/prosody/conf.avail/jitsi.example.com.cfg.lua` :
|
||||
|
||||
- add your domain virtual host section:
|
||||
|
||||
```
|
||||
VirtualHost "jitsi.example.com"
|
||||
authentication = "anonymous"
|
||||
ssl = {
|
||||
key = "/var/lib/prosody/jitsi.example.com.key";
|
||||
certificate = "/var/lib/prosody/jitsi.example.com.crt";
|
||||
}
|
||||
modules_enabled = {
|
||||
"bosh";
|
||||
"pubsub";
|
||||
}
|
||||
```
|
||||
- add domain with authentication for conference focus user:
|
||||
```
|
||||
VirtualHost "auth.jitsi.example.com"
|
||||
authentication = "internal_plain"
|
||||
```
|
||||
- add focus user to server admins:
|
||||
```
|
||||
admins = { "focus@auth.jitsi.example.com" }
|
||||
```
|
||||
- and finally configure components:
|
||||
```
|
||||
Component "conference.jitsi.example.com" "muc"
|
||||
Component "jitsi-videobridge.jitsi.example.com"
|
||||
component_secret = "YOURSECRET1"
|
||||
Component "focus.jitsi.example.com"
|
||||
component_secret = "YOURSECRET2"
|
||||
```
|
||||
|
||||
Add link for the added configuration
|
||||
```sh
|
||||
ln -s /etc/prosody/conf.avail/jitsi.example.com.cfg.lua /etc/prosody/conf.d/jitsi.example.com.cfg.lua
|
||||
```
|
||||
|
||||
Generate certs for the domain:
|
||||
```sh
|
||||
prosodyctl cert generate jitsi.example.com
|
||||
```
|
||||
|
||||
Create conference focus user:
|
||||
```sh
|
||||
prosodyctl register focus auth.jitsi.example.com YOURSECRET3
|
||||
```
|
||||
|
||||
Restart prosody XMPP server with the new config
|
||||
```sh
|
||||
prosodyctl restart
|
||||
```
|
||||
|
||||
## Install nginx
|
||||
```sh
|
||||
apt-get install nginx
|
||||
```
|
||||
|
||||
Add a new file `jitsi.example.com` in `/etc/nginx/sites-available` (see also the example config file):
|
||||
```
|
||||
server_names_hash_bucket_size 64;
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
server_name jitsi.example.com;
|
||||
# set the root
|
||||
root /srv/jitsi.example.com;
|
||||
index index.html;
|
||||
location ~ ^/([a-zA-Z0-9=\?]+)$ {
|
||||
rewrite ^/(.*)$ / break;
|
||||
}
|
||||
location / {
|
||||
ssi on;
|
||||
}
|
||||
# BOSH
|
||||
location /http-bind {
|
||||
proxy_pass http://localhost:5280/http-bind;
|
||||
proxy_set_header X-Forwarded-For $remote_addr;
|
||||
proxy_set_header Host $http_host;
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
Add link for the added configuration
|
||||
```sh
|
||||
cd /etc/nginx/sites-enabled
|
||||
ln -s ../sites-available/jitsi.example.com jitsi.example.com
|
||||
```
|
||||
|
||||
## Install Jitsi Videobridge
|
||||
```sh
|
||||
wget https://download.jitsi.org/jitsi-videobridge/linux/jitsi-videobridge-linux-{arch-buildnum}.zip
|
||||
unzip jitsi-videobridge-linux-{arch-buildnum}.zip
|
||||
```
|
||||
|
||||
Install JRE if missing:
|
||||
```
|
||||
apt-get install default-jre
|
||||
```
|
||||
|
||||
_NOTE: When installing on older Debian releases keep in mind that you need JRE >= 1.7._
|
||||
|
||||
In the user home that will be starting Jitsi Videobridge create `.sip-communicator` folder and add the file `sip-communicator.properties` with one line in it:
|
||||
```
|
||||
org.jitsi.impl.neomedia.transform.srtp.SRTPCryptoContext.checkReplay=false
|
||||
```
|
||||
|
||||
Start the videobridge with:
|
||||
```sh
|
||||
./jvb.sh --host=localhost --domain=jitsi.example.com --port=5347 --secret=YOURSECRET1 &
|
||||
```
|
||||
Or autostart it by adding the line in `/etc/rc.local`:
|
||||
```sh
|
||||
/bin/bash /root/jitsi-videobridge-linux-{arch-buildnum}/jvb.sh --host=localhost --domain=jitsi.example.com --port=5347 --secret=YOURSECRET1 </dev/null >> /var/log/jvb.log 2>&1
|
||||
```
|
||||
|
||||
## Install Jitsi Conference Focus (jicofo)
|
||||
|
||||
Install JDK and Ant if missing:
|
||||
```
|
||||
apt-get install default-jdk ant
|
||||
```
|
||||
|
||||
_NOTE: When installing on older Debian releases keep in mind that you need JDK >= 1.7._
|
||||
|
||||
Clone source from Github repo:
|
||||
```sh
|
||||
git clone https://github.com/jitsi/jicofo.git
|
||||
```
|
||||
Build distribution package. Replace {os-name} with one of: 'lin', 'lin64', 'macosx', 'win', 'win64'.
|
||||
```sh
|
||||
cd jicofo
|
||||
ant dist.{os-name}
|
||||
```
|
||||
Run jicofo:
|
||||
```sh
|
||||
cd dist/{os-name}'
|
||||
./jicofo.sh --domain=jitsi.example.com --secret=YOURSECRET2 --user_domain=auth.jitsi.example.com --user_name=focus --user_password=YOURSECRET3
|
||||
```
|
||||
|
||||
## Deploy Jitsi Meet
|
||||
Checkout and configure Jitsi Meet:
|
||||
```sh
|
||||
cd /srv
|
||||
git clone https://github.com/jitsi/jitsi-meet.git
|
||||
mv jitsi-meet/ jitsi.example.com
|
||||
```
|
||||
|
||||
Edit host names in `/srv/jitsi.example.com/config.js` (see also the example config file):
|
||||
```
|
||||
var config = {
|
||||
hosts: {
|
||||
domain: 'jitsi.example.com',
|
||||
muc: 'conference.jitsi.example.com',
|
||||
bridge: 'jitsi-videobridge.jitsi.example.com'
|
||||
},
|
||||
useNicks: false,
|
||||
bosh: '//jitsi.example.com/http-bind', // FIXME: use xep-0156 for that
|
||||
desktopSharing: 'false' // Desktop sharing method. Can be set to 'ext', 'webrtc' or false to disable.
|
||||
//chromeExtensionId: 'diibjkoicjeejcmhdnailmkgecihlobk', // Id of desktop streamer Chrome extension
|
||||
//minChromeExtVersion: '0.1' // Required version of Chrome extension
|
||||
};
|
||||
```
|
||||
|
||||
Restart nginx to get the new configuration:
|
||||
```sh
|
||||
invoke-rc.d nginx restart
|
||||
```
|
||||
|
||||
## Running behind NAT
|
||||
In case of videobridge being installed on a machine behind NAT, add the following extra lines to the file `~/.sip-communicator/sip-communicator.properties` (in the home of user running the videobridge):
|
||||
```
|
||||
org.jitsi.videobridge.NAT_HARVESTER_LOCAL_ADDRESS=<Local.IP.Address>
|
||||
org.jitsi.videobridge.NAT_HARVESTER_PUBLIC_ADDRESS=<Public.IP.Address>
|
||||
```
|
||||
|
||||
So the file should look like this at the end:
|
||||
```
|
||||
org.jitsi.impl.neomedia.transform.srtp.SRTPCryptoContext.checkReplay=false
|
||||
org.jitsi.videobridge.NAT_HARVESTER_LOCAL_ADDRESS=<Local.IP.Address>
|
||||
org.jitsi.videobridge.NAT_HARVESTER_PUBLIC_ADDRESS=<Public.IP.Address>
|
||||
```
|
||||
|
||||
# Hold your first conference
|
||||
You are now all set and ready to have your first meet by going to http://jitsi.example.com
|
||||
|
||||
|
||||
## Enabling recording
|
||||
Currently recording is only supported for linux-64 and macos. To enable it, add
|
||||
the following properties to sip-communicator.properties:
|
||||
```
|
||||
org.jitsi.videobridge.ENABLE_MEDIA_RECORDING=true
|
||||
org.jitsi.videobridge.MEDIA_RECORDING_PATH=/path/to/recordings/dir
|
||||
org.jitsi.videobridge.MEDIA_RECORDING_TOKEN=secret
|
||||
```
|
||||
|
||||
where /path/to/recordings/dir is the path to a pre-existing directory where recordings
|
||||
will be stored (needs to be writeable by the user running jitsi-videobridge),
|
||||
and "secret" is a string which will be used for authentication.
|
||||
|
||||
Then, edit the Jitsi-Meet config.js file and set:
|
||||
```
|
||||
enableRecording: true
|
||||
```
|
||||
|
||||
Restart jitsi-videobridge and start a new conference (making sure that the page
|
||||
is reloaded with the new config.js) -- the organizer of the conference should
|
||||
now have a "recording" button in the floating menu, near the "mute" button.
|
|
@ -1,74 +0,0 @@
|
|||
# Jitsi Meet quick install
|
||||
|
||||
This document describes the required steps for a quick Jitsi Meet installation on a Debian based GNU/Linux system.
|
||||
|
||||
N.B.: All commands are supposed to be run by root. If you are logged in as a regular user with sudo rights, please prepend ___sudo___ to each of the commands.
|
||||
|
||||
## Basic Jitsi Meet install
|
||||
|
||||
### Add the repository
|
||||
```sh
|
||||
echo 'deb http://download.jitsi.org/nightly/deb unstable/' >> /etc/apt/sources.list
|
||||
wget -qO - https://download.jitsi.org/nightly/deb/unstable/archive.key | apt-key add -
|
||||
```
|
||||
|
||||
### Update the package lists
|
||||
|
||||
```sh
|
||||
apt-get update
|
||||
```
|
||||
|
||||
### Install Jitsi Meet
|
||||
|
||||
```sh
|
||||
apt-get -y install jitsi-meet
|
||||
```
|
||||
|
||||
During the installation, you will be asked to enter the hostname of the Jitsi Meet instance. If you have a FQDN hostname for the instance already set up in DNS, enter it there. If you don't have a resolvable hostname, you can enter the IP address of the machine (if it is static or doesn't change).
|
||||
|
||||
This hostname (or IP address) will be used for virtualhost configuration inside the Jitsi Meet and also, you and your correspondents will be using it to access the web conferences.
|
||||
|
||||
### Open a conference
|
||||
|
||||
Launch a web browser (Chrome, Chromium or latest Opera) and enter in the URL bar the hostname (or IP address) you used in the previous step.
|
||||
|
||||
Confirm that you trust the self-signed certificate of the newly installed Jitsi Meet.
|
||||
|
||||
Enjoy!
|
||||
|
||||
## Adding sip-gateway to Jitsi Meet
|
||||
|
||||
### Install Jigasi
|
||||
|
||||
```sh
|
||||
apt-get -y install jigasi
|
||||
```
|
||||
or
|
||||
|
||||
```sh
|
||||
wget https://download.jitsi.org/jigasi_1.0-1_amd64.deb
|
||||
dpkg -i jigasi_1.0-1_amd64.deb
|
||||
```
|
||||
|
||||
During the installation, you will be asked to enter your SIP account and password. This account will be used to invite the other SIP participants.
|
||||
|
||||
### Reload Jitsi Meet
|
||||
|
||||
Launch again a browser with the Jitsi Meet URL and you'll see a telephone icon on the right end of the toolbar. Use it to invite SIP accounts to join the current conference.
|
||||
|
||||
Enjoy!
|
||||
|
||||
## Uninstall
|
||||
|
||||
```sh
|
||||
apt-get purge jigasi jitsi-meet jicofo jitsi-videobridge
|
||||
```
|
||||
|
||||
Sometimes the following packages will fail to uninstall properly:
|
||||
|
||||
- jigasi
|
||||
- jitsi-videobridge
|
||||
|
||||
When this happens, just run the uninstall command a second time and it should be ok.
|
||||
|
||||
The reason for failure is that sometimes, the uninstall script is faster than the process that stops the daemons. The second run of the uninstall command fixes this, as by then the jigasi or jvb daemons are already stopped.
|
355
external_api.js
|
@ -1,355 +0,0 @@
|
|||
/**
|
||||
* Implements API class that embeds Jitsi Meet in external applications.
|
||||
*/
|
||||
var JitsiMeetExternalAPI = (function()
|
||||
{
|
||||
/**
|
||||
* The minimum width for the Jitsi Meet frame
|
||||
* @type {number}
|
||||
*/
|
||||
var MIN_WIDTH = 790;
|
||||
|
||||
/**
|
||||
* The minimum height for the Jitsi Meet frame
|
||||
* @type {number}
|
||||
*/
|
||||
var MIN_HEIGHT = 300;
|
||||
|
||||
/**
|
||||
* Constructs new API instance. Creates iframe element that loads
|
||||
* Jitsi Meet.
|
||||
* @param domain the domain name of the server that hosts the conference
|
||||
* @param room_name the name of the room to join
|
||||
* @param width width of the iframe
|
||||
* @param height height of the iframe
|
||||
* @param parent_node the node that will contain the iframe
|
||||
* @param filmStripOnly if the value is true only the small videos will be
|
||||
* visible.
|
||||
* @constructor
|
||||
*/
|
||||
function JitsiMeetExternalAPI(domain, room_name, width, height, parentNode,
|
||||
filmStripOnly) {
|
||||
if(!width || width < MIN_WIDTH)
|
||||
width = MIN_WIDTH;
|
||||
if(!height || height < MIN_HEIGHT)
|
||||
height = MIN_HEIGHT;
|
||||
|
||||
this.parentNode = null;
|
||||
if (parentNode) {
|
||||
this.parentNode = parentNode;
|
||||
} else {
|
||||
var scriptTag = document.scripts[document.scripts.length - 1];
|
||||
this.parentNode = scriptTag.parentNode;
|
||||
}
|
||||
|
||||
this.iframeHolder =
|
||||
this.parentNode.appendChild(document.createElement("div"));
|
||||
this.iframeHolder.id = "jitsiConference" + JitsiMeetExternalAPI.id;
|
||||
this.iframeHolder.style.width = width + "px";
|
||||
this.iframeHolder.style.height = height + "px";
|
||||
this.frameName = "jitsiConferenceFrame" + JitsiMeetExternalAPI.id;
|
||||
this.url = "//" + domain + "/";
|
||||
if(room_name)
|
||||
this.url += room_name;
|
||||
this.url += "#external=true";
|
||||
if(filmStripOnly)
|
||||
this.url += "&interfaceConfig.filmStripOnly=true";
|
||||
|
||||
JitsiMeetExternalAPI.id++;
|
||||
|
||||
this.frame = document.createElement("iframe");
|
||||
this.frame.src = this.url;
|
||||
this.frame.name = this.frameName;
|
||||
this.frame.id = this.frameName;
|
||||
this.frame.width = "100%";
|
||||
this.frame.height = "100%";
|
||||
this.frame.setAttribute("allowFullScreen","true");
|
||||
this.frame = this.iframeHolder.appendChild(this.frame);
|
||||
|
||||
|
||||
this.frameLoaded = false;
|
||||
this.initialCommands = [];
|
||||
this.eventHandlers = {};
|
||||
this.initListeners();
|
||||
}
|
||||
|
||||
/**
|
||||
* Last id of api object
|
||||
* @type {number}
|
||||
*/
|
||||
JitsiMeetExternalAPI.id = 0;
|
||||
|
||||
/**
|
||||
* Sends the passed object to Jitsi Meet
|
||||
* @param object the object to be sent
|
||||
*/
|
||||
JitsiMeetExternalAPI.prototype.sendMessage = function(object) {
|
||||
if (this.frameLoaded) {
|
||||
this.frame.contentWindow.postMessage(
|
||||
JSON.stringify(object), this.frame.src);
|
||||
}
|
||||
else {
|
||||
this.initialCommands.push(object);
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
* Executes command. The available commands are:
|
||||
* displayName - sets the display name of the local participant to the value
|
||||
* passed in the arguments array.
|
||||
* toggleAudio - mutes / unmutes audio with no arguments
|
||||
* toggleVideo - mutes / unmutes video with no arguments
|
||||
* filmStrip - hides / shows the film strip with no arguments
|
||||
* If the command doesn't require any arguments the parameter should be set
|
||||
* to empty array or it may be omitted.
|
||||
* @param name the name of the command
|
||||
* @param arguments array of arguments
|
||||
*/
|
||||
JitsiMeetExternalAPI.prototype.executeCommand = function(name,
|
||||
argumentsList) {
|
||||
var argumentsArray = argumentsList;
|
||||
if (!argumentsArray)
|
||||
argumentsArray = [];
|
||||
var object = {type: "command", action: "execute"};
|
||||
object[name] = argumentsArray;
|
||||
this.sendMessage(object);
|
||||
};
|
||||
|
||||
/**
|
||||
* Executes commands. The available commands are:
|
||||
* displayName - sets the display name of the local participant to the value
|
||||
* passed in the arguments array.
|
||||
* toggleAudio - mutes / unmutes audio with no arguments
|
||||
* toggleVideo - mutes / unmutes video with no arguments
|
||||
* filmStrip - hides / shows the film strip with no arguments
|
||||
* @param object the object with commands to be executed. The keys of the
|
||||
* object are the commands that will be executed and the values are the
|
||||
* arguments for the command.
|
||||
*/
|
||||
JitsiMeetExternalAPI.prototype.executeCommands = function (object) {
|
||||
object.type = "command";
|
||||
object.action = "execute";
|
||||
this.sendMessage(object);
|
||||
};
|
||||
|
||||
/**
|
||||
* Adds event listeners to Meet Jitsi. The object key should be the name of
|
||||
* the event and value - the listener.
|
||||
* Currently we support the following
|
||||
* events:
|
||||
* incomingMessage - receives event notifications about incoming
|
||||
* messages. The listener will receive object with the following structure:
|
||||
* {{
|
||||
* "from": from,//JID of the user that sent the message
|
||||
* "nick": nick,//the nickname of the user that sent the message
|
||||
* "message": txt//the text of the message
|
||||
* }}
|
||||
* outgoingMessage - receives event notifications about outgoing
|
||||
* messages. The listener will receive object with the following structure:
|
||||
* {{
|
||||
* "message": txt//the text of the message
|
||||
* }}
|
||||
* displayNameChanged - receives event notifications about display name
|
||||
* change. The listener will receive object with the following structure:
|
||||
* {{
|
||||
* jid: jid,//the JID of the participant that changed his display name
|
||||
* displayname: displayName //the new display name
|
||||
* }}
|
||||
* participantJoined - receives event notifications about new participant.
|
||||
* The listener will receive object with the following structure:
|
||||
* {{
|
||||
* jid: jid //the jid of the participant
|
||||
* }}
|
||||
* participantLeft - receives event notifications about participant that left room.
|
||||
* The listener will receive object with the following structure:
|
||||
* {{
|
||||
* jid: jid //the jid of the participant
|
||||
* }}
|
||||
* @param object
|
||||
*/
|
||||
JitsiMeetExternalAPI.prototype.addEventListeners
|
||||
= function (object) {
|
||||
|
||||
var message = {type: "event", action: "add", events: []};
|
||||
for(var i in object)
|
||||
{
|
||||
message.events.push(i);
|
||||
this.eventHandlers[i] = object[i];
|
||||
}
|
||||
this.sendMessage(message);
|
||||
};
|
||||
|
||||
/**
|
||||
* Adds event listeners to Meet Jitsi. Currently we support the following
|
||||
* events:
|
||||
* incomingMessage - receives event notifications about incoming
|
||||
* messages. The listener will receive object with the following structure:
|
||||
* {{
|
||||
* "from": from,//JID of the user that sent the message
|
||||
* "nick": nick,//the nickname of the user that sent the message
|
||||
* "message": txt//the text of the message
|
||||
* }}
|
||||
* outgoingMessage - receives event notifications about outgoing
|
||||
* messages. The listener will receive object with the following structure:
|
||||
* {{
|
||||
* "message": txt//the text of the message
|
||||
* }}
|
||||
* displayNameChanged - receives event notifications about display name
|
||||
* change. The listener will receive object with the following structure:
|
||||
* {{
|
||||
* jid: jid,//the JID of the participant that changed his display name
|
||||
* displayname: displayName //the new display name
|
||||
* }}
|
||||
* participantJoined - receives event notifications about new participant.
|
||||
* The listener will receive object with the following structure:
|
||||
* {{
|
||||
* jid: jid //the jid of the participant
|
||||
* }}
|
||||
* participantLeft - receives event notifications about participant that left room.
|
||||
* The listener will receive object with the following structure:
|
||||
* {{
|
||||
* jid: jid //the jid of the participant
|
||||
* }}
|
||||
* @param event the name of the event
|
||||
* @param listener the listener
|
||||
*/
|
||||
JitsiMeetExternalAPI.prototype.addEventListener
|
||||
= function (event, listener) {
|
||||
|
||||
var message = {type: "event", action: "add", events: [event]};
|
||||
this.eventHandlers[event] = listener;
|
||||
this.sendMessage(message);
|
||||
};
|
||||
|
||||
/**
|
||||
* Removes event listener.
|
||||
* @param event the name of the event.
|
||||
*/
|
||||
JitsiMeetExternalAPI.prototype.removeEventListener
|
||||
= function (event) {
|
||||
if(!this.eventHandlers[event])
|
||||
{
|
||||
console.error("The event " + event + " is not registered.");
|
||||
return;
|
||||
}
|
||||
var message = {type: "event", action: "remove", events: [event]};
|
||||
delete this.eventHandlers[event];
|
||||
this.sendMessage(message);
|
||||
};
|
||||
|
||||
/**
|
||||
* Removes event listeners.
|
||||
* @param events array with the names of the events.
|
||||
*/
|
||||
JitsiMeetExternalAPI.prototype.removeEventListeners
|
||||
= function (events) {
|
||||
var eventsArray = [];
|
||||
for(var i = 0; i < events.length; i++)
|
||||
{
|
||||
var event = events[i];
|
||||
if(!this.eventHandlers[event])
|
||||
{
|
||||
console.error("The event " + event + " is not registered.");
|
||||
continue;
|
||||
}
|
||||
delete this.eventHandlers[event];
|
||||
eventsArray.push(event);
|
||||
}
|
||||
|
||||
if(eventsArray.length > 0)
|
||||
{
|
||||
this.sendMessage(
|
||||
{type: "event", action: "remove", events: eventsArray});
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
* Processes message events sent from Jitsi Meet
|
||||
* @param event the event
|
||||
*/
|
||||
JitsiMeetExternalAPI.prototype.processMessage = function(event) {
|
||||
var message;
|
||||
try {
|
||||
message = JSON.parse(event.data);
|
||||
} catch (e) {}
|
||||
|
||||
if(!message.type) {
|
||||
console.error("Message without type is received.");
|
||||
return;
|
||||
}
|
||||
switch (message.type) {
|
||||
case "system":
|
||||
if(message.loaded) {
|
||||
this.onFrameLoaded();
|
||||
}
|
||||
break;
|
||||
case "event":
|
||||
if(message.action != "result" ||
|
||||
!message.event || !this.eventHandlers[message.event]) {
|
||||
console.warn("The received event cannot be parsed.");
|
||||
return;
|
||||
}
|
||||
this.eventHandlers[message.event](message.result);
|
||||
break;
|
||||
default :
|
||||
console.error("Unknown message type.");
|
||||
return;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* That method is called when the Jitsi Meet is loaded. Executes saved
|
||||
* commands that are send before the frame was loaded.
|
||||
*/
|
||||
JitsiMeetExternalAPI.prototype.onFrameLoaded = function () {
|
||||
this.frameLoaded = true;
|
||||
for (var i = 0; i < this.initialCommands.length; i++) {
|
||||
this.sendMessage(this.initialCommands[i]);
|
||||
}
|
||||
this.initialCommands = null;
|
||||
};
|
||||
|
||||
/**
|
||||
* Setups the listener for message events from Jitsi Meet.
|
||||
*/
|
||||
JitsiMeetExternalAPI.prototype.initListeners = function () {
|
||||
var self = this;
|
||||
this.eventListener = function (event) {
|
||||
self.processMessage(event);
|
||||
};
|
||||
if (window.addEventListener) {
|
||||
window.addEventListener('message',
|
||||
this.eventListener, false);
|
||||
}
|
||||
else {
|
||||
window.attachEvent('onmessage', this.eventListener);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Removes the listeners and removes the Jitsi Meet frame.
|
||||
*/
|
||||
JitsiMeetExternalAPI.prototype.dispose = function () {
|
||||
if (window.removeEventListener) {
|
||||
window.removeEventListener('message',
|
||||
this.eventListener, false);
|
||||
}
|
||||
else {
|
||||
window.detachEvent('onmessage',
|
||||
this.eventListener);
|
||||
}
|
||||
var frame = document.getElementById(this.frameName);
|
||||
if(frame)
|
||||
frame.src = 'about:blank';
|
||||
var self = this;
|
||||
window.setTimeout(function () {
|
||||
self.iframeHolder.removeChild(self.frame);
|
||||
self.iframeHolder.parentNode.removeChild(self.iframeHolder);
|
||||
}, 10);
|
||||
};
|
||||
|
||||
return JitsiMeetExternalAPI;
|
||||
|
||||
})();
|
BIN
favicon.ico
Before Width: | Height: | Size: 3.6 KiB |
BIN
fonts/jitsi.eot
|
@ -1,39 +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 IcoMoon</metadata>
|
||||
<defs>
|
||||
<font id="jitsi" horiz-adv-x="1024">
|
||||
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
||||
<missing-glyph horiz-adv-x="1024" />
|
||||
<glyph unicode=" " d="" horiz-adv-x="512" />
|
||||
<glyph unicode="" d="M831.678 16.386h-144.885v258.653c-45.729 29.159-41.794 84.953-24.574 109.307 11.939 16.905 22.43 34.662 23.663 57.004 0.423 8.241 8.303 19.031 15.847 23.364 26.122 15.037 38.223 39.632 50.12 65.116 3.143 6.714 7.392 13.187 12.3 18.753 8.471 9.686 12.295 19.264 6.115 31.922-1.466 2.972 1.318 8.326 2.779 12.362 4.335 12.106 10.326 23.745 13.169 36.148 3.522 15.399 5.398 31.305 6.244 47.086 0.379 6.543-6.074 13.574-5.351 19.986 3.486 32.030-14.612 56.346-24.785 84.189-12.509 34.28-37.036 55.732-58.681 81.26-4.074 4.843-5.225 13.125-5.563 19.942-0.722 14.63-6.752 21.875-22.048 19.898-6.161-0.805-12.808-2.526-18.474-1.019-4.969 1.316-12.408 6.288-12.702 10.13-1.553 19.393-8.285 22.577-28.098 19.305-12.406-2.062-28.527 9.134-40.677 17.587-10.15 7.049-18.941 10.065-30.751 7.175-4.928-1.187-11.598-0.973-15.716 1.466-4.461 2.634-8.837 4.226-13.169 5.119v0.722c-0.975 0-1.976-0.17-2.934-0.276-0.975 0.106-1.951 0.276-2.908 0.276v-0.722c-4.355-0.893-8.726-2.485-13.169-5.119-4.167-2.441-10.811-2.652-15.718-1.466-11.851 2.89-20.598-0.126-30.751-7.175-12.212-8.453-28.287-19.648-40.671-17.587-19.816 3.272-26.591 0.085-28.119-19.305-0.299-3.844-7.73-8.816-12.7-10.13-5.692-1.509-12.32 0.212-18.497 1.019-15.27 1.976-21.302-5.269-22.024-19.898-0.338-6.819-1.486-15.102-5.565-19.942-21.622-25.528-46.154-46.98-58.684-81.26-10.171-27.843-28.271-52.161-24.765-84.189 0.699-6.412-5.736-13.443-5.395-19.986 0.87-15.78 2.74-31.687 6.267-47.086 2.843-12.403 8.835-24.042 13.187-36.148 1.466-4.033 4.229-9.387 2.784-12.362-6.203-12.658-2.379-22.236 6.115-31.922 4.887-5.565 9.134-12.039 12.277-18.753 11.874-25.484 24.001-50.079 50.125-65.116 7.516-4.332 15.417-15.122 15.863-23.364 1.21-22.342 11.701-40.099 23.64-57.004 18.33-25.954 21.194-86.95-34.216-114.687-76.673-38.336-154.083-75.357-232.624-109.632-49.189-21.498-73.891-57.6-82.238-108.192-2.549-15.331-5.862-30.539-7.88-45.961-3.014-22.956-7.839-69.874-7.839-69.874h831.678v80.386zM1188.556 80.89h-144.89v-144.89h-147.481v144.89h-144.885v147.481h144.885v144.888h147.481v-144.888h144.89v-147.481z" horiz-adv-x="1189" />
|
||||
<glyph unicode="" d="M956.063 962.932h-819.824c-73.036 0-132.489-60.717-132.489-135.316v-540.205c0-74.537 59.453-135.246 132.489-135.246h35.826v-212.941l344.987 212.941h439.011c72.964 0 132.42 60.711 132.42 135.246v540.202c0 74.602-59.456 135.318-132.42 135.318zM496.5 293.887l-195.714-123.997v123.997h-158.261v527.257h807.189l0.064-527.255h-453.278zM239.062 715.554h605.126v-110.62h-605.126v110.62zM239.062 522.476h605.126v-110.615h-605.126v110.615z" horiz-adv-x="1088" />
|
||||
<glyph unicode="" d="M955.816 960.317h-822.841c-73.303 0-132.975-60.931-132.975-135.844v-542.186c0-74.851 59.672-135.785 132.975-135.785h822.841c73.239 0 132.916 60.934 132.916 135.785v542.186c0 74.913-59.677 135.844-132.916 135.844zM949.51 288.784h-810.226v529.223h810.164l0.062-529.223zM945.219 0.34c0-35.738-28.261-64.66-63.207-64.66h-675.228c-34.949 0-63.209 28.921-63.209 64.66v29.618c0 35.7 28.261 64.657 63.209 64.657h675.228c34.946 0 63.207-28.957 63.207-64.657v-29.618zM776.792 342.434l-302.669 302.605 112.411 112.316 302.545-302.602v-112.318z" horiz-adv-x="1089" />
|
||||
<glyph unicode="" d="M952.495 955.065h-818.689c-72.81 0-132.183-60.63-132.183-135.162v-750.719c0-74.473 59.372-135.101 132.183-135.101h818.686c72.936 0 132.314 60.625 132.314 135.101v750.722c0.003 74.532-59.378 135.159-132.311 135.159zM946.346 75.651h-806.14v737.822h806.015l0.126-737.822zM685.753 674.544h216.911v-566.758h-216.911v566.758zM428.672 546.002h216.911v-438.216h-216.911v438.216zM172.339 417.46h216.161v-309.677h-216.161v309.677z" horiz-adv-x="1088" />
|
||||
<glyph unicode="" d="M878.259 965.513c-163.545 0-296.573-133.036-296.573-296.612v-43.752h-448.909c-73.14 0-132.777-60.909-132.777-135.751v-412.768c0-74.777 59.637-135.678 132.777-135.678h564.152c73.265 0 132.919 60.901 132.919 135.678v412.768c0 70.054-52.267 127.895-119.040 135.009v44.494c0 92.367 75.154 167.49 167.451 167.49 92.305 0 167.462-75.12 167.462-167.49v-77.422c0-35.681 28.883-64.564 64.556-64.564 35.69 0 64.569 28.883 64.569 64.564v77.422c-0.003 163.576-133.028 296.612-296.587 296.612z" horiz-adv-x="1179" />
|
||||
<glyph unicode="" d="M1.518 641.614h277.533v319.798c0 0-78.033-8.102-176.18-111.633-98.139-103.529-101.353-208.165-101.353-208.165zM683.281 961.412h-339.684v-384.596l-342.080 0.251-1.515 3.468v-510.502c0-73.845 61.4-133.979 136.847-133.979h546.434c75.514 0 136.911 60.137 136.911 133.979v757.403c-0.003 73.843-61.397 133.976-136.914 133.976zM691.854 145.164h-572.848v92.788h572.845v-92.788zM691.854 338.802h-572.848v92.783h572.845v-92.783z" horiz-adv-x="820" />
|
||||
<glyph unicode="" d="M953.901 962.387h-819.775c-72.965 0-132.418-60.712-132.418-135.344v-540.168c0-74.567 59.453-135.279 132.418-135.279h35.823v-212.891l344.966 212.891h438.986c72.963 0 132.415 60.709 132.415 135.279v540.168c0.003 74.632-59.45 135.344-132.415 135.344zM494.429 293.354l-195.769-124.001v124.001h-158.184v527.252h807.078l0.124-527.252h-453.249z" horiz-adv-x="1089" />
|
||||
<glyph unicode="" d="M709.515 620.094v44.455c0 163.090-132.662 295.749-295.749 295.749-163.093 0-295.752-132.659-295.752-295.749v-44.455c-66.226-7.393-118.013-64.915-118.013-134.607v-411.623c0-74.629 59.481-135.365 132.472-135.365h562.583c73.059 0 132.534 60.736 132.534 135.365v411.623c0 69.697-51.792 127.219-118.074 134.607zM413.765 831.537c92.043 0 166.987-74.944 166.987-166.987v-43.632h-333.978v43.632c0 92.043 74.883 166.987 166.99 166.987z" horiz-adv-x="828" />
|
||||
<glyph unicode="" d="M1223.129 717.217l-180.128-175.796v217.716c0 74.673-59.512 135.496-132.599 135.496h-634.716c-73.084 0-132.596-60.823-132.596-135.496v-609.237c0-74.673 59.512-135.496 132.596-135.496h634.716c73.084 0 132.599 60.82 132.599 135.496v172.679l193.45-153.712c48.784-35.558 96.695 5.178 96.695 40.424v483.533c-0.003 35.248-55.897 71.306-110.017 24.393zM601.169 199.935c-141.111 0-255.524 114.411-255.524 255.521s114.411 255.521 255.524 255.521c141.108 0 255.519-114.411 255.519-255.521 0-141.113-114.408-255.521-255.519-255.521zM599.045 600.249c-80.474 0-145.727-65.253-145.727-145.729 0-80.471 65.25-145.727 145.727-145.727s145.729 65.256 145.729 145.727c0 80.474-65.253 145.729-145.729 145.729z" horiz-adv-x="1334" />
|
||||
<glyph unicode="" d="M1223.934 717.147l-180.299-175.956v217.848c0 7.661-0.666 15.148-1.902 22.432l73.695 65.346c26.349 23.41 28.841 63.8 5.369 90.24-23.475 26.406-63.803 28.872-90.273 5.4l-1009.019-894.712c-26.408-23.41-28.841-63.806-5.398-90.209 12.607-14.237 30.183-21.539 47.85-21.539 15.076 0 30.214 5.305 42.39 16.1l95.841 84.979c20.995-14.627 46.26-23.232 73.592-23.232h635.191c73.099 0 132.66 60.807 132.66 135.537v172.868l193.659-153.955c48.815-35.46 96.765 5.248 96.765 40.584v483.829c0.003 35.305-55.933 71.386-110.123 24.44zM601.515 199.448c-58.81 0-112.566 20.216-155.526 53.797l82.93 73.533c20.863-11.665 44.849-18.386 70.47-18.386 80.533 0 145.832 65.299 145.832 145.835 0 19.421-3.896 37.857-10.857 54.713l86.847 77.001c22.848-38.259 36.012-82.969 36.012-130.782 0-141.214-114.493-255.71-255.707-255.71zM345.797 455.16c0 141.216 114.496 255.715 255.717 255.715 21.501 0 42.075-3.434 61.986-8.429l216.757 192.191h-604.474c-73.138 0-132.697-60.838-132.697-135.597v-518.074l205.894 182.543c-1.308 10.486-3.184 20.853-3.184 31.651z" horiz-adv-x="1334" />
|
||||
<glyph unicode="" d="M1121.124 938.866c-23.48 26.413-63.883 28.849-90.296 5.372l-1009.306-894.905c-26.413-23.418-28.852-63.816-5.434-90.232 12.612-14.243 30.224-21.547 47.893-21.547 15.050 0 30.224 5.307 42.403 16.108l257.072 227.934c33.225-22.863 69.988-39.678 108.611-49.713-70.191-35.653-118.771-107.715-118.771-191.894h431.872c0 85.737-50.329 159.115-122.765 194.079 54.95 14.49 105.842 39.965 147.497 77.496 51.888 46.712 113.712 131.515 113.712 270.329v130.323c0 18.812-7.924 35.767-20.585 47.798l212.664 188.558c26.419 23.477 28.849 63.816 5.434 90.294zM791.535 481.891c0-157.985-117.649-229.923-226.99-229.923-35.214 0-68.659 7.217-98.285 20.786l55.735 49.416c14.733-4.59 30.356-7.132 46.609-7.132 89.357 0 161.984 72.687 161.984 161.979v30.1l60.947 54.042v-79.269zM730.589 793.867c0 89.298-72.625 161.984-161.984 161.984-89.298 0-161.984-72.687-161.984-161.984v-316.85c0-0.25 0-0.498 0-0.748l323.969 287.25v30.348zM350.795 426.69c-3.246 17.483-5.119 35.782-5.119 55.201v130.323c0 36.406-29.6 66.004-66.006 66.004-36.466 0-66.004-29.597-66.004-66.004v-130.323c0-57.198 11.115-107.026 29.099-150.931l108.030 95.73z" horiz-adv-x="1137" />
|
||||
<glyph unicode="" d="M858.414 679.944c-36.595 0-66.246-29.652-66.246-66.182v-130.725c0-158.421-117.982-230.597-227.635-230.597-58.674 0-112.618 19.87-151.86 55.959-44.23 40.819-67.696 101.203-67.696 174.64v130.725c0 36.53-29.654 66.182-66.182 66.182-36.53 0-66.182-29.652-66.182-66.182v-130.725c0-195.834 119.494-314.763 259.177-351.040-70.408-35.71-119.176-108.014-119.176-192.431h433.118c0 85.993-50.409 159.621-123.029 194.572 55.079 14.64 106.121 40.127 147.886 77.79 52.050 46.877 114.008 131.925 114.008 271.106v130.725c0 36.53-29.59 66.182-66.184 66.182zM568.571 315.719c-89.589 0-162.459 72.932-162.459 162.521v317.665c0 89.589 72.87 162.459 162.459 162.459 89.592 0 162.524-72.87 162.524-162.459v-317.665c0.003-89.592-72.929-162.521-162.524-162.521z" horiz-adv-x="1137" />
|
||||
<glyph unicode="" d="M512.356 960c-282.456 0-512.356-229.838-512.356-512.478 0-282.389 229.9-512.227 512.356-512.227 282.515 0 512.414 229.838 512.414 512.227 0 282.64-229.9 512.478-512.414 512.478zM512.356 14.856c-238.545 0-432.671 194.126-432.671 432.666 0 238.796 194.126 432.858 432.671 432.858 238.601 0 432.856-194.062 432.856-432.858 0-238.54-194.255-432.666-432.856-432.666zM512.545 854.962c-224.755 0-407.508-182.75-407.508-407.315 0-224.563 182.75-407.315 407.508-407.315 224.437 0 407.187 182.755 407.187 407.315-0.003 224.566-182.75 407.315-407.187 407.315zM512.545 127.323c-176.715 0-320.453 143.804-320.453 320.324 0 176.523 143.737 320.324 320.453 320.324 176.523 0 320.196-143.802 320.196-320.324 0-176.52-143.673-320.324-320.196-320.324zM283.851 562.789l-0.954-1.398v-234.413l0.954-1.398c15.757-23.060 36.473-44.542 61.699-63.797l8.961-6.801v378.341l-8.961-6.735c-25.1-19.191-45.814-40.544-61.699-63.799zM415.637 665.729l-3.621-1.334v-440.36l3.621-1.398c18.683-7.055 38.887-11.94 61.766-14.931l6.224-0.762v474.415l-6.163-0.762c-22.237-2.795-43.016-7.753-61.827-14.869zM547.367 680.599l-6.165 0.762v-474.415l6.165 0.762c22.301 2.793 43.077 7.811 61.763 14.864l3.685 1.4v440.488l-3.685 1.334c-18.811 7.053-39.525 12.010-61.763 14.805zM740.98 562.789c-15.692 23.002-36.473 44.48-61.699 63.797l-8.894 6.86v-378.469l8.894 6.801c25.351 19.381 46.132 40.862 61.699 63.861l0.89 1.398v234.352l-0.89 1.4z" horiz-adv-x="1025" />
|
||||
<glyph unicode="" d="M952.366 960.134h-820.477c-73.027 0-132.531-60.761-132.531-135.455v-752.358c0-74.66 59.504-135.424 132.531-135.424h820.48c73.089 0 132.596 60.766 132.596 135.424v752.358c-0.003 74.694-59.507 135.455-132.599 135.455zM946.135 78.801h-807.894v739.462h807.834l0.059-739.462zM569.742 511.875l91.772 96.865-77.305 77.308 316.393 85.040-84.981-316.391-75.357 75.293-91.834-96.865zM514.763 384.563l-91.767-96.865 77.3-77.305-316.388-85.043 84.979 316.388 75.357-75.29 91.834 96.871z" horiz-adv-x="1089" />
|
||||
<glyph unicode="" d="M953.225 959.18h-820.663c-73.045 0-132.562-60.776-132.562-135.488v-752.525c0-74.647 59.517-135.421 132.562-135.421h820.66c73.107 0 132.624 60.776 132.624 135.421v752.525c0.003 74.712-59.515 135.488-132.622 135.488zM946.994 77.647h-808.079v739.596h808.017l0.062-739.596zM915.539 706.7l-91.795-96.889 77.326-77.323-316.463-85.030 84.999 316.463 75.373-75.339 91.852 96.889zM170.625 188.221l91.793 96.884-77.323 77.326 316.463 85.028-84.997-316.46-75.373 75.342-91.857-96.891z" horiz-adv-x="1089" />
|
||||
<glyph unicode="" d="M513.036 960c283.57-0.188 512.414-229.474 512.037-512.664-0.377-283.756-228.965-512.228-512.541-512.288-283.191-0.067-512.912 229.474-512.533 512.099 0.374 284.638 228.965 513.103 513.036 512.853zM512.285 810.729c-200.79-0.126-362.957-162.291-362.831-363.014 0-201.105 161.788-363.081 362.831-363.334 201.164-0.312 363.581 162.294 363.455 363.772-0.25 200.852-162.417 362.702-363.455 362.575zM597.392 447.588h-0.503l-0.126 0.126h0.63l115.615 115.866c0 0-78.247 78.505-82.153 82.153l-117.754-116.183-119.014 118.196-82.024-82.279 88.815-88.818 26.674-29.061h0.503l0.253-0.253h-0.756l-115.489-115.806c0 0 78.249-78.564 82.024-82.212l117.76 116.245 119.008-118.26 82.153 82.406-88.815 88.82-26.8 29.061z" horiz-adv-x="1025" />
|
||||
<glyph unicode="" d="M66.491-63.997h1027.94zM1198.596 487.986c-135.702 135.893-271.415 271.66-407.367 407.241-6.244 6.089-13.868 11.714-21.867 14.653-31.236 11.399-63.48-12.808-63.728-47.674-0.253-67.663-0.126-135.331-0.126-202.965 0-4.281 0-8.62 0-13.964-6.123 0-10.87 0-15.62 0-106.247 0-212.334 0.062-318.485 0-35.178-0.031-54.86-19.71-54.86-54.922-0.059-92.778-0.059-185.5 0-278.345 0-35.8 19.682-55.479 55.611-55.479 105.775-0.062 211.423 0 317.11 0 4.877 0 9.622 0 16.245 0 0-5.375 0-9.374 0-13.309 0-66.793 0.25-133.703 0-200.496 0-23.057 9.247-40.241 30.242-49.547 21.116-9.371 39.361-2.81 55.231 12.937 135.955 136.079 272.031 272.034 407.989 408.175 23.49 23.431 23.24 50.112-0.374 73.695zM532.596 44.729c-2.627 19.62-22.055 32.116-27.928 35.426-8.811 5.186-18.371 5.811-25.683 5.811l-6.37-0.126-227.926 0.188c-56.042 0.124-98.468 42.173-98.591 97.717-0.188 177.127-0.188 354.321 0.065 531.51 0.059 53.983 42.671 96.53 96.968 96.811l235.922 0.062c33.426 0.031 51.294 16.121 54.481 49.235 1.001 12.965 0.81 26.052 0.439 39.172-1.128 39.737-19.369 57.481-59.107 57.512l-217.866-0.121c-15.494 0-30.926-0.562-46.361-2.343-115.52-13.154-207.555-113.649-209.681-228.798-1.313-63.888-0.996-127.804-0.684-191.718l0.186-60.201h-0.377c0 0-0.121-227.954 0.065-289.811 0.248-135.702 101.528-240.796 235.545-244.48 33.176-0.875 66.419-1.189 99.654-1.189h0.065l148.012 0.753c29.368 0 47.483 17.37 49.73 47.545 1.755 22.058 1.628 40.173-0.557 57.045z" horiz-adv-x="1216" />
|
||||
<glyph unicode="" d="M839.334 386.487c0-79.199-64.257-143.461-143.486-143.461-79.174 0-143.431 64.262-143.431 143.461 0 79.227 64.257 143.431 143.431 143.431 79.23-0.003 143.486-64.204 143.486-143.431zM1372.769 706.485c-6.595 39.459-29.496 64.168-70.606 69.276-23.788 2.918-38.256 15.637-44.726 39.040-9.706 35.519-33.678 58.993-67.811 70.76-24.807 8.595-50.3 16.462-76.186 20.491-69.655 10.911-140.51 15.924-209.526 29.943-69.53 14.178-139.053 23.342-208.893 24.073-69.845-0.731-139.371-9.895-208.893-24.073-69.022-14.016-139.876-19.029-209.526-29.94-25.884-4.028-51.385-11.896-76.189-20.491-34.13-11.767-58.105-35.24-67.814-70.76-6.469-23.403-20.934-36.122-44.723-39.040-41.105-5.108-64.006-29.82-70.601-69.278-6.788-40.41-11.737-81.202-16.811-121.885-2.728-22.109 6.405-32.576 30.386-32.448 120.839 0.697 241.692 0.697 362.595 0.095 24.045-0.128 33.115 9.388 33.433 33.338 0.762 57.369-4.631 111.895-47.136 156.618-7.041 7.39-10.849 25.281-6.726 33.846 4.062 8.5 40.856 16.716 45.992 16.716 43.328-0.19 43.138-0.223 49.418-43.423 1.205-8.28 2.539-18.46 7.803-23.853 30.319-30.863 21.252-66.706 7.234-97.634-30.389-67.139-61.537-134.827-100.867-196.869-73.458-115.831-104.41-160.744-198.679-260.844-58.675-62.293-68.573-101.687-68.573-137.466 0-70.989 41.038-96.744 137.148-96.744 181.614 0 260.908 0.315 442.528 0.315 181.614 0 260.905-0.315 442.528-0.315 96.102 0 137.142 25.752 137.142 96.744 0 35.779-9.898 75.173-68.573 137.466-94.264 100.1-125.222 145.012-198.679 260.844-39.333 62.042-70.475 129.73-100.861 196.869-14.019 30.927-23.091 66.77 7.234 97.634 5.264 5.393 6.595 15.575 7.803 23.853 6.28 43.202 6.090 43.233 49.412 43.423 5.139 0 41.933-8.216 45.992-16.716 4.126-8.565 0.318-26.453-6.723-33.846-42.502-44.723-47.898-99.249-47.136-156.618 0.315-23.947 9.388-33.466 33.43-33.338 120.909 0.603 241.753 0.603 362.601-0.095 23.975-0.126 33.109 10.342 30.383 32.448-5.075 40.686-10.018 81.475-16.806 121.885zM959.991 383.505c0-146.315-118.624-264.936-264.97-264.936s-264.973 118.621-264.973 264.936c0 146.318 118.624 264.936 264.973 264.936 146.343 0 264.97-118.621 264.97-264.936z" horiz-adv-x="1390" />
|
||||
<glyph unicode="" d="M310.262 30.43c0-52.13-42.207-94.43-94.399-94.43h-121.405c-52.195 0-94.458 42.3-94.458 94.43v835.67c0 52.158 42.266 94.458 94.458 94.458h121.403c52.195 0 94.399-42.3 94.399-94.458v-835.67zM1077.118 960.56h-561.987c-72.919 0-132.33-60.673-132.33-135.253v-754.115c0-74.518 59.411-135.191 132.33-135.191h561.987c72.98 0 132.394 60.673 132.394 135.191v754.115c0 74.58-59.414 135.253-132.394 135.253zM529.83 826.906h532.653l0.062-143.298h-532.715v143.298zM643.255 51.628h-113.551v113.551h113.551v-113.551zM643.255 256.748h-113.551v113.554h113.551v-113.554zM643.382 463.756h-113.551v113.554h113.551v-113.554zM852.9 51.628h-113.551v113.551h113.551v-113.551zM852.9 256.748h-113.551v113.554h113.551v-113.554zM853.027 463.756h-113.556v113.554h113.556v-113.554zM1062.548 51.628h-113.556v113.551h113.556v-113.551zM1062.548 256.748h-113.556v113.554h113.556v-113.554zM1062.669 463.756h-113.554v113.554h113.554v-113.554z" horiz-adv-x="1210" />
|
||||
<glyph unicode="" d="M1123.444 939.015c-23.593 26.481-64.131 28.989-90.74 5.395l-1008.269-893.436c-26.609-23.468-28.991-64.131-5.46-90.676 12.674-14.306 30.308-21.649 48.126-21.649 15.123 0 30.372 5.401 42.544 16.195l130.045 115.22c90.743-81.844 210.569-132.165 342.473-132.101 282.816 0.061 510.913 227.969 511.287 510.972 0.126 109.934-34.682 211.367-93.499 294.72l118.088 104.625c26.483 23.526 28.997 64.129 5.404 90.735zM944.422 449.818c0.128-200.922-161.896-363.201-362.509-362.952-87.56 0.123-167.573 31.151-230.061 82.569l331.277 293.509v-73.176c1.071-60.993 32.696-92.18 94.944-93.692 61.997 1.512 93.686 32.763 95.131 93.756v41.096h-72.227v-47.499c0.251-4.642-0.564-10.607-2.511-17.949-1.25-3.261-3.448-6.020-6.525-8.093-3.197-2.572-7.845-3.828-13.868-3.828-10.543 0.31-17.132 4.268-19.827 11.921-1.068 3.512-1.947 6.905-2.508 10.163-0.254 2.887-0.377 5.532-0.377 7.786v143.511l42.477 37.634c0.215-0.432 0.452-0.851 0.63-1.303 1.947-6.467 2.762-12.799 2.511-19.076v-36.772h72.227v30.121c-0.246 31.245-9.086 54.699-26.363 70.447l40.711 36.069c35.787-56.055 56.803-122.585 56.867-194.244zM239.795 331.47c-12.613 37.023-19.827 76.557-19.827 117.913-0.19 200.236 161.584 362.009 361.945 362.135 56.853 0 110.313-13.302 158.133-36.398l117.846 104.421c-79.444 50.952-173.758 80.817-275.292 80.948-283.377 0.181-511.354-227.729-511.789-511.675-0.126-79.567 18.636-154.679 51.137-221.882l117.848 104.538zM388.576 626.020h-97.514v-249.057l72.23 64.070v0.689h0.815l117.72 104.418c0 0.564 0.123 0.94 0.123 1.509 0.753 53.898-30.369 80.069-93.374 78.37zM405.959 561.517c1.942-2.767 3.074-6.469 3.323-11.112 0.312-4.452 0.438-9.6 0.438-15.246 0.251-10.916-0.689-19.83-2.949-26.985-2.952-7.594-10.983-11.357-24.159-11.357h-19.325v74.043h15.31c7.842 0 13.865-0.683 18.072-2.19 4.397-1.573 7.468-3.953 9.29-7.153z" horiz-adv-x="1140" />
|
||||
<glyph unicode="" d="M581.278 961.708c284.857-0.19 514.807-230.517 514.427-514.997-0.378-285.047-230.073-514.553-514.869-514.615-284.541-0.062-515.311 230.517-514.933 514.422 0.439 285.936 230.009 515.439 515.375 515.19zM580.579 811.756c-201.764-0.123-364.666-163.032-364.478-364.663 0-202.018 162.524-364.735 364.478-364.984 202.018-0.316 365.174 163.030 365.048 365.423-0.252 201.767-163.156 364.35-365.048 364.224zM287.698 624.907h98.196c63.442 1.767 94.785-24.518 94.027-78.863 0.254-19.081-2.211-34.882-7.456-47.521-6.005-12.508-18.706-21.988-38.167-28.181v-0.819c28.373-6.259 43.031-23.573 43.981-51.946v-57.689c0-11.247 0.254-22.813 0.758-34.756 0.819-12.005 3.033-20.979 6.696-27.043h-71.846c-3.727 6.064-6.128 15.038-7.14 27.043-1.012 11.943-1.454 23.509-1.138 34.756v52.321c0 9.603-2.214 16.553-6.573 20.979-4.675 4.107-12.701 6.19-24.012 6.19h-14.599v-141.291h-72.73v326.82zM360.428 494.861h19.463c13.271 0 21.359 3.794 24.331 11.375 2.276 7.204 3.221 16.304 2.969 27.171 0 5.815-0.126 10.867-0.442 15.418-0.252 4.675-1.392 8.404-3.352 11.247-1.831 3.157-4.926 5.561-9.352 7.14-4.233 1.454-10.299 2.211-18.2 2.211h-15.418v-74.564zM498.372 624.907h162.082v-62.687h-89.35v-65.587h78.103v-62.685h-78.103v-73.11h92.822v-62.749h-165.557v326.818zM682.507 535.999c0.316 31.782 9.416 55.542 27.425 71.407 17.44 15.29 40.185 22.936 68.181 22.936 28.247 0 51.119-7.646 68.623-23 17.82-15.798 26.92-39.623 27.171-71.407v-30.333h-72.73v37.031c0.254 6.192-0.57 12.639-2.527 19.209-1.264 3.157-3.475 5.938-6.573 8.214-3.221 1.515-7.898 2.404-13.964 2.404-10.615-0.316-17.249-3.855-19.967-10.618-2.211-6.573-3.223-13.017-2.907-19.209v-161.956c0-2.273 0.126-4.865 0.38-7.772 0.568-3.411 1.454-6.824 2.527-10.233 2.717-7.775 9.352-11.756 19.967-12.007 6.067 0 10.744 1.261 13.964 3.791 3.098 2.15 5.309 4.867 6.573 8.216 1.96 7.33 2.782 13.33 2.527 18.007v47.837h72.73v-41.328c-1.451-61.547-33.364-93.015-95.794-94.469-62.685 1.454-94.53 32.922-95.607 94.343v148.937z" horiz-adv-x="1142" />
|
||||
<glyph unicode="" d="M1016.824 5.766c-2.051 15.373-5.331 30.537-7.859 45.847-8.334 50.458-33.006 86.503-82.063 107.922-78.373 34.198-155.103 72.121-232.111 109.395-55.686 27.025-52.409 88.519-34.097 114.413 11.89 16.88 22.344 34.572 23.575 56.852 0.444 8.226 8.303 18.99 15.817 23.294 26.070 15.035 38.161 39.565 50.020 64.982 3.109 6.696 7.379 13.187 12.266 18.722 8.471 9.668 12.264 19.235 6.079 31.842-1.435 2.97 1.331 8.334 2.8 12.367 4.304 12.026 10.285 23.676 13.12 36.043 3.556 15.339 5.398 31.225 6.252 46.975 0.374 6.523-6.045 13.528-5.362 19.95 3.483 31.912-14.557 56.202-24.739 83.977-12.465 34.198-36.928 55.619-58.519 81.106-4.066 4.784-5.227 13.051-5.571 19.886-0.72 14.588-6.732 21.797-22.004 19.813-6.11-0.787-12.772-2.495-18.41-0.991-4.957 1.334-12.406 6.288-12.676 10.112-1.538 19.336-8.264 22.517-28.016 19.235-12.364-2.049-28.457 9.155-40.584 17.561-10.145 7.041-18.89 10.045-30.681 7.176-4.915-1.195-11.544-0.991-15.716 1.435-4.441 2.663-8.775 4.237-13.118 5.124v0.748c-0.957-0.031-1.982-0.204-2.939-0.307-0.955 0.103-1.912 0.274-2.867 0.307v-0.751c-4.371-0.888-8.749-2.462-13.156-5.124-4.133-2.425-10.762-2.632-15.68-1.435-11.822 2.867-20.569-0.137-30.684-7.176-12.158-8.404-28.217-19.609-40.584-17.561-19.746 3.282-26.509 0.103-28.047-19.235-0.307-3.824-7.686-8.778-12.676-10.112-5.669-1.504-12.297 0.204-18.446 0.991-15.236 1.984-21.25-5.225-21.97-19.813-0.338-6.832-1.502-15.102-5.568-19.886-21.588-25.485-46.051-46.908-58.555-81.106-10.117-27.773-28.189-52.063-24.669-83.975 0.686-6.422-5.744-13.427-5.4-19.95 0.89-15.749 2.735-31.636 6.254-46.975 2.836-12.367 8.814-24.019 13.151-36.043 1.437-4.033 4.242-9.397 2.769-12.367-6.182-12.607-2.358-22.174 6.115-31.842 4.853-5.535 9.121-12.026 12.23-18.722 11.859-25.417 23.947-49.947 50.014-64.982 7.519-4.304 15.378-15.068 15.858-23.294 1.192-22.28 11.65-39.972 23.57-56.852 18.281-25.895 21.147-86.738-34.162-114.413-76.456-38.264-153.741-75.2-232.042-109.395-49.129-21.418-73.726-57.463-82.063-107.922-2.526-15.311-5.878-30.475-7.859-45.847-3.009-22.928-7.823-69.766-7.823-69.766h1024.611c-0.003 0-4.781 46.838-7.787 69.766z" horiz-adv-x="1025" />
|
||||
<glyph unicode="" d="M1026.175 449.067c0-283.345-229.709-513.051-513.108-513.051-283.348 0-513.069 229.703-513.069 513.051 0 283.384 229.721 513.106 513.069 513.106 283.4 0 513.108-229.721 513.108-513.106zM513.069-63.985c135.725 0 259.112 52.711 350.874 138.739-9.717 11.65-22.551 21.114-39.113 28.343-58.934 25.745-116.627 54.256-174.534 82.256-41.871 20.322-39.405 66.587-25.639 86.057 8.943 12.692 16.805 25.998 17.728 42.746 0.333 6.169 6.241 14.284 11.889 17.522 19.604 11.304 28.697 29.747 37.604 48.861 2.34 5.031 5.555 9.89 9.229 14.077 6.37 7.243 9.224 14.436 4.572 23.942-1.086 2.209 1.004 6.241 2.105 9.273 3.238 9.067 7.733 17.801 9.861 27.115 2.67 11.549 4.059 23.48 4.701 35.323 0.281 4.902-4.544 10.184-4.033 14.986 2.621 24.022-10.943 42.271-18.598 63.158-9.376 25.714-27.771 41.82-44.005 60.97-3.058 3.623-3.927 9.838-4.188 14.952-0.539 10.981-5.060 16.415-16.544 14.924-4.598-0.601-9.611-1.886-13.843-0.756-3.728 0.988-9.327 4.724-9.534 7.604-1.153 14.539-6.213 16.929-21.065 14.475-9.296-1.543-21.395 6.858-30.513 13.203-7.632 5.292-14.209 7.555-23.069 5.38-3.697-0.9-8.682-0.746-11.815 1.094-3.341 1.976-6.605 3.184-9.867 3.839v0.552c-0.72-0.013-1.489-0.129-2.209-0.217-0.722 0.088-1.44 0.206-2.157 0.217v-0.552c-3.29-0.653-6.574-1.863-9.89-3.839-3.112-1.837-8.091-1.992-11.797-1.094-8.886 2.173-15.448-0.088-23.064-5.38-9.157-6.345-21.222-14.746-30.518-13.203-14.862 2.451-19.94 0.062-21.093-14.475-0.219-2.879-5.793-6.616-9.516-7.604-4.278-1.13-9.247 0.155-13.887 0.756-11.456 1.491-15.987-3.943-16.516-14.924-0.261-5.111-1.13-11.33-4.19-14.952-16.222-19.15-34.616-35.258-44.018-60.97-7.627-20.887-21.204-39.136-18.57-63.158 0.511-4.802-4.304-10.083-4.046-14.986 0.655-11.846 2.041-23.776 4.701-35.323 2.131-9.312 6.626-18.048 9.89-27.115 1.094-3.032 3.174-7.062 2.082-9.273-4.649-9.508-1.788-16.702 4.582-23.942 3.674-4.188 6.874-9.046 9.224-14.077 8.899-19.111 17.992-37.557 37.596-48.861 5.653-3.238 11.559-11.353 11.905-17.522 0.913-16.748 8.773-30.054 17.739-42.746 13.745-19.47 15.902-65.245-25.673-86.057-57.52-28.772-115.6-56.511-174.503-82.256-16.57-7.23-29.409-16.694-39.123-28.338 91.759-86.031 215.138-138.744 350.843-138.744z" horiz-adv-x="1026" />
|
||||
<glyph unicode="" d="M65.774 516.748c10.052 9.358 25.988 21.772 43.285 32.699 51.335 32.619 108.115 50.897 166.829 64.133 48.763 10.95 98.246 16.887 148.066 20.203 55.755 3.754 111.559 3.78 167.392 0.797 39.944-2.185 79.686-6.502 119.119-13.211 43.956-7.506 87.037-17.994 128.785-33.751 24.419-9.175 48.172-20.105 70.534-33.573 29.716-17.891 56.552-39.224 77.22-67.348 20.819-28.302 31.721-60.407 33.829-95.392 1.747-27.402 0.717-54.697-5.656-81.588-2.877-12.083-8.226-23.134-16.554-32.386-11.417-12.648-26.424-17.021-42.772-17.636-20.463-0.668-40.411 4.113-60.361 8.226-38.912 7.97-77.836 16.245-116.699 24.728-14.137 3.034-28.689 5.093-41.649 12.596-22.308 12.955-34.445 31.775-34.033 57.783 0.258 16.869 2.216 33.782 2.469 50.695 0.312 25.010-9.923 45.161-30.898 59.042-14.395 9.539-30.694 14.911-47.452 18.665-40.411 9.046-81.387 10.179-122.561 10.050-28.821-0.126-57.582-1.669-86.093-6.143-19.947-3.161-39.562-7.813-57.732-17.014-24.318-12.364-39.353-31.465-40.073-59.352-0.441-16.351 0.973-32.802 1.927-49.15 0.642-11.822-0.080-23.446-5.295-34.288-9.26-19.385-24.935-31.672-45.37-36.964-22.646-5.865-45.605-10.54-68.504-15.223-38.102-7.764-76.216-15.368-114.416-22.517-14.526-2.774-29.254-1.951-43.133 3.602-18.742 7.457-28.924 22.775-34.138 41.337-7.096 25.397-7.841 51.513-6.966 77.731 0.9 27.040 5.883 53.237 18.404 77.607 9.794 19.065 22.491 35.955 42.493 55.642z" horiz-adv-x="1026" />
|
||||
<glyph unicode="" d="M797.086 112.301c-0.059 0.163-0.119 0.328-0.16 0.485-71.399-45.638-151.782-69.931-234.023-69.931-0.013 0-0.021 0-0.028 0-122.52 0-237.501 52.772-315.469 144.741-99.778 117.698-134.252 329.954-73.022 427.789 4.004-1.662 7.875-3.233 11.68-4.773 13.585-5.511 26.413-10.716 42.305-19.096 6.063-3.202 12.338-4.812 18.673-4.812 11.714 0 22.6 5.648 29.848 15.486 7.815 10.617 10.313 24.778 6.538 36.951l-3.525 11.41c-10.687 34.59-21.723 70.354-34.211 105.078-9.983 27.765-22.399 62.327-59.226 62.327-12.057 0-26.037-3.656-46.73-12.204-44.294-18.319-71.058-29.961-114.534-49.81-15.102-6.887-25.234-22.698-25.203-39.343 0.028-15.842 8.992-29.337 23.975-36.115 18.208-8.257 30.536-13.716 43.468-19.447l10.687-4.753c-101.938-259.102 24.803-526.458 211.314-639.212 83.497-50.474 178.5-77.14 274.769-77.14h0.041c102.72 0 205.561 31.099 284.501 85.198-31.729 28.803-45.566 69.167-51.671 87.171zM1098.203 210.090c-18.113 8.577-30.356 14.258-43.221 20.244l-10.496 4.892c106.448 257.268-15.569 526.801-200.067 642.788-85.36 53.663-183.123 82.032-282.716 82.032-104.848 0-206.41-30.593-285.967-86.165l-5.385-3.764c31.597-27.564 45.86-66.788 52.917-86.41 72.926 47.94 155.675 73.409 239.895 73.409 125.407 0 242.142-54.785 320.294-150.316 97.683-119.447 128.439-332.255 65.498-429.015-3.989 1.736-7.815 3.385-11.624 4.998-13.471 5.759-26.204 11.18-41.954 19.821-6.203 3.424-12.645 5.155-19.212 5.155-11.585 0-22.399-5.558-29.69-15.267-7.813-10.434-10.478-24.432-6.966-36.515l3.279-11.301c10.096-34.845 20.531-70.857 32.412-105.842 9.588-28.238 21.514-63.382 59.179-63.382 11.843 0 25.577 3.424 45.881 11.399 44.351 17.439 71.319 28.601 115.409 47.777 15.19 6.623 25.601 22.252 25.859 38.894 0.281 15.822-8.445 29.499-23.325 36.569z" horiz-adv-x="1122" />
|
||||
<glyph unicode="" d="M46.993 961.7c461.234 0 553.793 0 1015.024 0 35.919 0 53.356-25.959 53.356-57.959-0.581-303.259-0.325-606.488-0.449-909.809 0-43.984-13.203-57.058-57.703-57.058-443.072-0.126-556.453-0.126-999.553 0-44.534 0-57.799 13.009-57.799 57.058-0.098 303.257 0.485 608.072-0.093 911.329-0.034 26.21 11.301 53.761 47.217 56.439zM311.405 450.298c0-119.045-0.072-172.168 0.057-291.249 0.036-50.043 11.208-61.050 62.12-61.050 233.352 0 137.075 0 370.522 0 47.075 0 59.249 11.982 59.249 58.095 0.126 239.111 0.126 346.338 0 585.389 0 48.138-10.687 58.991-57.768 58.991-235.323 0.101-140.844 0.101-376.157 0-47.044 0-57.93-11.043-57.966-58.89-0.129-119.109-0.057-172.209-0.057-291.287zM153.944 838.566c-74.929-0.062-66.687 5.958-66.845-66.685-0.201-63.95-7.054-63.534 62.528-63.372 72.999 0.194 67.201-3.764 67.302 67.554 0 67.722 4.087 62.595-62.985 62.502zM963.644 838.566c-71.159-0.034-65.56 6.185-65.751-65.364-0.129-67.302-4.508-64.693 64.528-64.693 73.089 0 65.299-2.031 65.299 66.238-0.003 68.646 6.956 63.911-64.076 63.818zM216.828 122.408c0.359 73.094 4.639 66.914-67.358 67.17-68.104 0.191-62.569 2.763-62.407-63.31 0.129-73.476-6.954-66.52 67.074-66.649 66.042-0.065 63.142-6.056 62.691 62.789zM1027.718 124.4c0.134 68.334 6.443 65.304-63.297 65.178-70.132-0.132-66.656 5.793-66.527-65.304 0.129-70.645-4.384-64.721 63.756-64.657 71.995 0.132 66.202-6.698 66.068 64.783zM1027.718 342.077c0 70.55 7.219 66.842-67.485 66.522-0.898 0-1.873 0-2.838 0-59.375 0-59.375 0-59.375-58.023 0-77.922-6.443-69.936 69.293-70.196 66.076-0.387 60.539-3.091 60.405 61.697zM151.307 489.873c68.295-0.163 65.815-5.568 65.624 62.982-0.194 71.128 4.895 64.917-66.014 65.010-69.905 0.101-63.813 4.704-63.885-63.978-0.062-67.431-5.7-64.463 64.275-64.014zM961.263 489.873c72.511-0.258 66.589-4.603 66.455 64.494 0 68.558 6.185 63.537-64.267 63.498-70.196-0.028-65.686 6.053-65.498-65.493 0.132-62.5 0.067-62.5 63.31-62.5zM150.399 280.38c71.004 0 66.659-6.567 66.466 64.528-0.163 63.694-0.036 63.501-65.013 63.756-70.805 0.258-64.822 2.673-64.822-63.756 0.036-69.167-5.919-64.788 63.369-64.528z" horiz-adv-x="1115" />
|
||||
<glyph unicode="" d="M3.881 146.835h220.26v-210.835h-220.26v210.835zM308.817 350.143h220.27v-414.143h-220.27v414.143zM613.764 553.412h220.268v-617.412h-220.268v617.412zM918.685 756.715h220.265v-820.715h-220.265v820.715zM1223.629 960h220.263v-1024h-220.263v1024z" horiz-adv-x="1444" />
|
||||
<glyph unicode="" d="M526.071 234.749c-28.637-30.869-56.465-60.861-84.282-90.859-51.578-55.636-103.047-111.376-154.842-166.832-7.606-8.135-15.958-16.1-25.317-22.012-28.075-17.708-58.31-18.090-88.472-6.492-59.84 23.028-80.004 90.727-59.734 139.234 5.413 12.95 13.721 23.601 23.709 33.173 70.256 67.351 140.506 134.717 210.76 202.077 15.638 14.993 31.264 29.995 47.364 45.45-9.302 9.529-18.386 18.833-27.451 28.137-12.122 12.442-13.234 20.28-5.067 35.498 4.735 8.816 4.789 8.878-2.627 16.198-20.012 19.72-40.168 39.198-63.498 55.188-27.167 18.624-57.161 24.233-89.083 19.849-53.402-7.328-91.609-38.372-121.413-81.046-12.774-18.299-15.365-40.313-17.517-61.875-3.23-32.245-2.415-64.479 2.209-96.597 1.654-11.515-3.863-16.539-13.835-11.175-8.306 4.448-16.095 11.048-22.115 18.353-15.574 18.89-22.223 42.042-27.474 65.395-12.955 57.652-8.86 114.49 12.191 169.495 32.345 84.537 79.743 159.571 145.953 221.932 13.659 12.857 176.841 180.564 202.944 207.021 7.493 7.599 14.895 7.635 22.393 0.028 43.009-43.641 85.985-87.316 128.927-131.029 8.117-8.267 8.019-15.097-0.222-23.49-26.339-26.834-52.726-53.627-79.106-80.419-6.244-6.334-97.34-82.437-73.027-128.816 22.693-25.090 46.196-49.449 69.575-73.904 1.189-1.238 4.686-1.386 6.523-0.632 3.63 1.499 6.848 3.997 10.248 6.066 9.745 5.94 19.545 4.918 27.812-3.083 11.755-11.381 23.405-22.858 35.392-34.59 4.807 4.575 9.939 9.41 15.027 14.294 27.128 26.039 54.272 52.071 81.351 78.146 16.413 15.778 18.652 28.418 11.038 49.658-10.473 29.221-14.356 59.677-13.85 90.624 1.017 61.045 20.438 115.334 61.003 161.416 32.825 37.286 72.054 64.311 121.643 74.325 35.227 7.101 69.139 4.513 100.663-14.026 6.365-3.752 11.908-9.007 17.455-14.005 3.491-3.125 3.153-6.236-0.565-9.98-42.503-42.885-84.772-86.013-127.154-129.035-12.442-12.638-12.356-23.167 0.196-35.914 40.344-40.978 80.597-82.050 120.936-123.052 10.076-10.233 19.537-10.021 29.504 0.134 43.195 44.077 86.449 88.090 129.706 132.118 1.21 1.233 2.572 2.322 5.135 4.624 5.491-5.893 11.895-10.924 15.961-17.406 19.452-30.944 22.608-64.83 17.073-100.25-14.253-91.080-97.188-175.638-197.712-190.123-39.977-5.764-79.372-2.562-118.067 9.031-5.898 1.775-11.541 4.629-17.538 5.829-12.47 2.474-23.872-0.366-32.74-9.877-30.921-33.168-61.674-66.484-92.474-99.758-0.73-0.805-1.349-1.718-0.181-1.099 8.992-10.006 17.354-20.662 27.061-29.94 81.064-77.54 164.91-151.986 250.882-224.063 9.936-8.347 10.274-15.695 1.040-25.1-42.338-43.068-84.689-86.111-127.059-129.154-9.413-9.575-16.846-9.152-25.291 1.295-76.686 94.78-156.8 186.609-239.707 276.002-1.334 1.453-2.562 3.029-4.257 5.042z" horiz-adv-x="1105" />
|
||||
<glyph unicode="" d="M74.418 881.299h239.304v-228.491h-239.304v228.491zM393.455 881.299h239.304v-228.491h-239.304v228.491zM712.494 881.299h239.263v-228.491h-239.263v228.491zM74.418 562.265h239.304v-228.555h-239.304v228.555zM393.455 562.265h239.304v-228.555h-239.304v228.555zM712.494 562.265h239.263v-228.555h-239.263v228.555zM74.418 243.166h239.304v-228.465h-239.304v228.465zM393.455 243.166h239.304v-228.465h-239.304v228.465zM712.494 243.166h239.263v-228.465h-239.263v228.465z" horiz-adv-x="1026" />
|
||||
</font></defs></svg>
|
Before Width: | Height: | Size: 34 KiB |
BIN
fonts/jitsi.ttf
BIN
fonts/jitsi.woff
|
@ -1,916 +0,0 @@
|
|||
{
|
||||
"IcoMoonType": "selection",
|
||||
"icons": [
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M74.418 78.701h239.304v228.491h-239.304v-228.491z",
|
||||
"M393.455 78.701h239.304v228.491h-239.304v-228.491z",
|
||||
"M712.494 78.701h239.263v228.491h-239.263v-228.491z",
|
||||
"M74.418 397.735h239.304v228.555h-239.304v-228.555z",
|
||||
"M393.455 397.735h239.304v228.555h-239.304v-228.555z",
|
||||
"M712.494 397.735h239.263v228.555h-239.263v-228.555z",
|
||||
"M74.418 716.834h239.304v228.465h-239.304v-228.465z",
|
||||
"M393.455 716.834h239.304v228.465h-239.304v-228.465z",
|
||||
"M712.494 716.834h239.263v228.465h-239.263v-228.465z"
|
||||
],
|
||||
"attrs": [
|
||||
{},
|
||||
{},
|
||||
{},
|
||||
{},
|
||||
{},
|
||||
{},
|
||||
{},
|
||||
{},
|
||||
{}
|
||||
],
|
||||
"isMulticolor": false,
|
||||
"width": 1026,
|
||||
"grid": 0,
|
||||
"tags": [
|
||||
"dailPad"
|
||||
]
|
||||
},
|
||||
"attrs": [
|
||||
{},
|
||||
{},
|
||||
{},
|
||||
{},
|
||||
{},
|
||||
{},
|
||||
{},
|
||||
{},
|
||||
{}
|
||||
],
|
||||
"properties": {
|
||||
"order": 29,
|
||||
"id": 0,
|
||||
"prevSize": 32,
|
||||
"code": 58908,
|
||||
"name": "dialPad"
|
||||
},
|
||||
"setIdx": 0,
|
||||
"setId": 2,
|
||||
"iconIdx": 0
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M526.071 725.251c-28.637 30.869-56.465 60.861-84.282 90.859-51.578 55.636-103.047 111.376-154.842 166.832-7.606 8.135-15.958 16.1-25.317 22.012-28.075 17.708-58.31 18.090-88.472 6.492-59.84-23.028-80.004-90.727-59.734-139.234 5.413-12.95 13.721-23.601 23.709-33.173 70.256-67.351 140.506-134.717 210.76-202.077 15.638-14.993 31.264-29.995 47.364-45.45-9.302-9.529-18.386-18.833-27.451-28.137-12.122-12.442-13.234-20.28-5.067-35.498 4.735-8.816 4.789-8.878-2.627-16.198-20.012-19.72-40.168-39.198-63.498-55.188-27.167-18.624-57.161-24.233-89.083-19.849-53.402 7.328-91.609 38.372-121.413 81.046-12.774 18.299-15.365 40.313-17.517 61.875-3.23 32.245-2.415 64.479 2.209 96.597 1.654 11.515-3.863 16.539-13.835 11.175-8.306-4.448-16.095-11.048-22.115-18.353-15.574-18.89-22.223-42.042-27.474-65.395-12.955-57.652-8.86-114.49 12.191-169.495 32.345-84.537 79.743-159.571 145.953-221.932 13.659-12.857 176.841-180.564 202.944-207.021 7.493-7.599 14.895-7.635 22.393-0.028 43.009 43.641 85.985 87.316 128.927 131.029 8.117 8.267 8.019 15.097-0.222 23.49-26.339 26.834-52.726 53.627-79.106 80.419-6.244 6.334-97.34 82.437-73.027 128.816 22.693 25.090 46.196 49.449 69.575 73.904 1.189 1.238 4.686 1.386 6.523 0.632 3.63-1.499 6.848-3.997 10.248-6.066 9.745-5.94 19.545-4.918 27.812 3.083 11.755 11.381 23.405 22.858 35.392 34.59 4.807-4.575 9.939-9.41 15.027-14.294 27.128-26.039 54.272-52.071 81.351-78.146 16.413-15.778 18.652-28.418 11.038-49.658-10.473-29.221-14.356-59.677-13.85-90.624 1.017-61.045 20.438-115.334 61.003-161.416 32.825-37.286 72.054-64.311 121.643-74.325 35.227-7.101 69.139-4.513 100.663 14.026 6.365 3.752 11.908 9.007 17.455 14.005 3.491 3.125 3.153 6.236-0.565 9.98-42.503 42.885-84.772 86.013-127.154 129.035-12.442 12.638-12.356 23.167 0.196 35.914 40.344 40.978 80.597 82.050 120.936 123.052 10.076 10.233 19.537 10.021 29.504-0.134 43.195-44.077 86.449-88.090 129.706-132.118 1.21-1.233 2.572-2.322 5.135-4.624 5.491 5.893 11.895 10.924 15.961 17.406 19.452 30.944 22.608 64.83 17.073 100.25-14.253 91.080-97.188 175.638-197.712 190.123-39.977 5.764-79.372 2.562-118.067-9.031-5.898-1.775-11.541-4.629-17.538-5.829-12.47-2.474-23.872 0.366-32.74 9.877-30.921 33.168-61.674 66.484-92.474 99.758-0.73 0.805-1.349 1.718-0.181 1.099 8.992 10.006 17.354 20.662 27.061 29.94 81.064 77.54 164.91 151.986 250.882 224.063 9.936 8.347 10.274 15.695 1.040 25.1-42.338 43.068-84.689 86.111-127.059 129.154-9.413 9.575-16.846 9.152-25.291-1.295-76.686-94.78-156.8-186.609-239.707-276.002-1.334-1.453-2.562-3.029-4.257-5.042z"
|
||||
],
|
||||
"attrs": [
|
||||
{
|
||||
"opacity": 1,
|
||||
"visibility": false
|
||||
}
|
||||
],
|
||||
"width": 1105,
|
||||
"grid": 0,
|
||||
"tags": [
|
||||
"settings"
|
||||
]
|
||||
},
|
||||
"attrs": [
|
||||
{
|
||||
"opacity": 1,
|
||||
"visibility": false
|
||||
}
|
||||
],
|
||||
"properties": {
|
||||
"order": 1,
|
||||
"id": 33,
|
||||
"prevSize": 32,
|
||||
"code": 58907,
|
||||
"name": "settings"
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 0
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M1223.129 242.783l-180.128 175.796v-217.716c0-74.673-59.512-135.496-132.599-135.496h-634.716c-73.084 0-132.596 60.823-132.596 135.496v609.237c0 74.673 59.512 135.496 132.596 135.496h634.716c73.084 0 132.599-60.82 132.599-135.496v-172.679l193.45 153.712c48.784 35.558 96.695-5.178 96.695-40.424v-483.533c-0.003-35.248-55.897-71.306-110.017-24.393zM601.169 760.065c-141.111 0-255.524-114.411-255.524-255.521s114.411-255.521 255.524-255.521c141.108 0 255.519 114.411 255.519 255.521-0 141.113-114.408 255.521-255.519 255.521z",
|
||||
"M599.045 359.751c-80.474 0-145.727 65.253-145.727 145.729 0 80.471 65.25 145.727 145.727 145.727s145.729-65.256 145.729-145.727c0-80.474-65.253-145.729-145.729-145.729z"
|
||||
],
|
||||
"width": 1334,
|
||||
"attrs": [
|
||||
{
|
||||
"opacity": 1,
|
||||
"visibility": false
|
||||
},
|
||||
{
|
||||
"opacity": 1,
|
||||
"visibility": false
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
"webCam"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [
|
||||
{
|
||||
"opacity": 1,
|
||||
"visibility": false
|
||||
},
|
||||
{
|
||||
"opacity": 1,
|
||||
"visibility": false
|
||||
}
|
||||
],
|
||||
"properties": {
|
||||
"order": 4,
|
||||
"id": 32,
|
||||
"prevSize": 32,
|
||||
"code": 58888,
|
||||
"name": "webCam",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 1
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M3.881 813.165h220.26v210.835h-220.26v-210.835z",
|
||||
"M308.817 609.857h220.27v414.143h-220.27v-414.143z",
|
||||
"M613.764 406.588h220.268v617.412h-220.268v-617.412z",
|
||||
"M918.685 203.285h220.265v820.715h-220.265v-820.715z",
|
||||
"M1223.629 0h220.263v1024h-220.263v-1024z"
|
||||
],
|
||||
"width": 1444,
|
||||
"attrs": [
|
||||
{
|
||||
"opacity": 1,
|
||||
"visibility": false
|
||||
},
|
||||
{
|
||||
"opacity": 1,
|
||||
"visibility": false
|
||||
},
|
||||
{
|
||||
"opacity": 1,
|
||||
"visibility": false
|
||||
},
|
||||
{
|
||||
"opacity": 1,
|
||||
"visibility": false
|
||||
},
|
||||
{
|
||||
"opacity": 1,
|
||||
"visibility": false
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
"connection-2"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [
|
||||
{
|
||||
"opacity": 1,
|
||||
"visibility": false
|
||||
},
|
||||
{
|
||||
"opacity": 1,
|
||||
"visibility": false
|
||||
},
|
||||
{
|
||||
"opacity": 1,
|
||||
"visibility": false
|
||||
},
|
||||
{
|
||||
"opacity": 1,
|
||||
"visibility": false
|
||||
},
|
||||
{
|
||||
"opacity": 1,
|
||||
"visibility": false
|
||||
}
|
||||
],
|
||||
"properties": {
|
||||
"order": 27,
|
||||
"id": 31,
|
||||
"prevSize": 32,
|
||||
"code": 58906,
|
||||
"name": "connection",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 2
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M46.993-1.7c461.234 0 553.793 0 1015.024 0 35.919 0 53.356 25.959 53.356 57.959-0.581 303.259-0.325 606.488-0.449 909.809 0 43.984-13.203 57.058-57.703 57.058-443.072 0.126-556.453 0.126-999.553 0-44.534 0-57.799-13.009-57.799-57.058-0.098-303.257 0.485-608.072-0.093-911.329-0.034-26.21 11.301-53.761 47.217-56.439zM311.405 509.702c0 119.045-0.072 172.168 0.057 291.249 0.036 50.043 11.208 61.050 62.12 61.050 233.352 0 137.075 0 370.522 0 47.075 0 59.249-11.982 59.249-58.095 0.126-239.111 0.126-346.338 0-585.389 0-48.138-10.687-58.991-57.768-58.991-235.323-0.101-140.844-0.101-376.157 0-47.044 0-57.93 11.043-57.966 58.89-0.129 119.109-0.057 172.209-0.057 291.287zM153.944 121.434c-74.929 0.062-66.687-5.958-66.845 66.685-0.201 63.95-7.054 63.534 62.528 63.372 72.999-0.194 67.201 3.764 67.302-67.554 0-67.722 4.087-62.595-62.985-62.502zM963.644 121.434c-71.159 0.034-65.56-6.185-65.751 65.364-0.129 67.302-4.508 64.693 64.528 64.693 73.089 0 65.299 2.031 65.299-66.238-0.003-68.646 6.956-63.911-64.076-63.818zM216.828 837.592c0.359-73.094 4.639-66.914-67.358-67.17-68.104-0.191-62.569-2.763-62.407 63.31 0.129 73.476-6.954 66.52 67.074 66.649 66.042 0.065 63.142 6.056 62.691-62.789zM1027.718 835.6c0.134-68.334 6.443-65.304-63.297-65.178-70.132 0.132-66.656-5.793-66.527 65.304 0.129 70.645-4.384 64.721 63.756 64.657 71.995-0.132 66.202 6.698 66.068-64.783zM1027.718 617.923c0-70.55 7.219-66.842-67.485-66.522-0.898 0-1.873 0-2.838 0-59.375 0-59.375 0-59.375 58.023 0 77.922-6.443 69.936 69.293 70.196 66.076 0.387 60.539 3.091 60.405-61.697zM151.307 470.127c68.295 0.163 65.815 5.568 65.624-62.982-0.194-71.128 4.895-64.917-66.014-65.010-69.905-0.101-63.813-4.704-63.885 63.978-0.062 67.431-5.7 64.463 64.275 64.014zM961.263 470.127c72.511 0.258 66.589 4.603 66.455-64.494 0-68.558 6.185-63.537-64.267-63.498-70.196 0.028-65.686-6.053-65.498 65.493 0.132 62.5 0.067 62.5 63.31 62.5zM150.399 679.62c71.004 0 66.659 6.567 66.466-64.528-0.163-63.694-0.036-63.501-65.013-63.756-70.805-0.258-64.822-2.673-64.822 63.756 0.036 69.167-5.919 64.788 63.369 64.528z"
|
||||
],
|
||||
"width": 1115,
|
||||
"attrs": [],
|
||||
"tags": [
|
||||
"filmstrip"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [],
|
||||
"properties": {
|
||||
"order": 25,
|
||||
"id": 29,
|
||||
"prevSize": 32,
|
||||
"code": 58905,
|
||||
"name": "filmstrip",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 3
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"",
|
||||
"M797.086 847.699c-0.059-0.163-0.119-0.328-0.16-0.485-71.399 45.638-151.782 69.931-234.023 69.931-0.013 0-0.021 0-0.028 0-122.52 0-237.501-52.772-315.469-144.741-99.778-117.698-134.252-329.954-73.022-427.789 4.004 1.662 7.875 3.233 11.68 4.773 13.585 5.511 26.413 10.716 42.305 19.096 6.063 3.202 12.338 4.812 18.673 4.812 11.714 0 22.6-5.648 29.848-15.486 7.815-10.617 10.313-24.778 6.538-36.951l-3.525-11.41c-10.687-34.59-21.723-70.354-34.211-105.078-9.983-27.765-22.399-62.327-59.226-62.327-12.057 0-26.037 3.656-46.73 12.204-44.294 18.319-71.058 29.961-114.534 49.81-15.102 6.887-25.234 22.698-25.203 39.343 0.028 15.842 8.992 29.337 23.975 36.115 18.208 8.257 30.536 13.716 43.468 19.447l10.687 4.753c-101.938 259.102 24.803 526.458 211.314 639.212 83.497 50.474 178.5 77.14 274.769 77.14h0.041c102.72 0 205.561-31.099 284.501-85.198-31.729-28.803-45.566-69.167-51.671-87.171z",
|
||||
"M1098.203 749.91c-18.113-8.577-30.356-14.258-43.221-20.244l-10.496-4.892c106.448-257.268-15.569-526.801-200.067-642.788-85.36-53.663-183.123-82.032-282.716-82.032-104.848 0-206.41 30.593-285.967 86.165l-5.385 3.764c31.597 27.564 45.86 66.788 52.917 86.41 72.926-47.94 155.675-73.409 239.895-73.409 125.407 0 242.142 54.785 320.294 150.316 97.683 119.447 128.439 332.255 65.498 429.015-3.989-1.736-7.815-3.385-11.624-4.998-13.471-5.759-26.204-11.18-41.954-19.821-6.203-3.424-12.645-5.155-19.212-5.155-11.585 0-22.399 5.558-29.69 15.267-7.813 10.434-10.478 24.432-6.966 36.515l3.279 11.301c10.096 34.845 20.531 70.857 32.412 105.842 9.588 28.238 21.514 63.382 59.179 63.382 11.843 0 25.577-3.424 45.881-11.399 44.351-17.439 71.319-28.601 115.409-47.777 15.19-6.623 25.601-22.252 25.859-38.894 0.281-15.822-8.445-29.499-23.325-36.569z"
|
||||
],
|
||||
"width": 1122,
|
||||
"attrs": [],
|
||||
"tags": [
|
||||
"reload"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [],
|
||||
"properties": {
|
||||
"order": 24,
|
||||
"id": 28,
|
||||
"prevSize": 32,
|
||||
"code": 58904,
|
||||
"name": "reload",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 4
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M65.774 443.252c10.052-9.358 25.988-21.772 43.285-32.699 51.335-32.619 108.115-50.897 166.829-64.133 48.763-10.95 98.246-16.887 148.066-20.203 55.755-3.754 111.559-3.78 167.392-0.797 39.944 2.185 79.686 6.502 119.119 13.211 43.956 7.506 87.037 17.994 128.785 33.751 24.419 9.175 48.172 20.105 70.534 33.573 29.716 17.891 56.552 39.224 77.22 67.348 20.819 28.302 31.721 60.407 33.829 95.392 1.747 27.402 0.717 54.697-5.656 81.588-2.877 12.083-8.226 23.134-16.554 32.386-11.417 12.648-26.424 17.021-42.772 17.636-20.463 0.668-40.411-4.113-60.361-8.226-38.912-7.97-77.836-16.245-116.699-24.728-14.137-3.034-28.689-5.093-41.649-12.596-22.308-12.955-34.445-31.775-34.033-57.783 0.258-16.869 2.216-33.782 2.469-50.695 0.312-25.010-9.923-45.161-30.898-59.042-14.395-9.539-30.694-14.911-47.452-18.665-40.411-9.046-81.387-10.179-122.561-10.050-28.821 0.126-57.582 1.669-86.093 6.143-19.947 3.161-39.562 7.813-57.732 17.014-24.318 12.364-39.353 31.465-40.073 59.352-0.441 16.351 0.973 32.802 1.927 49.15 0.642 11.822-0.080 23.446-5.295 34.288-9.26 19.385-24.935 31.672-45.37 36.964-22.646 5.865-45.605 10.54-68.504 15.223-38.102 7.764-76.216 15.368-114.416 22.517-14.526 2.774-29.254 1.951-43.133-3.602-18.742-7.457-28.924-22.775-34.138-41.337-7.096-25.397-7.841-51.513-6.966-77.731 0.9-27.040 5.883-53.237 18.404-77.607 9.794-19.065 22.491-35.955 42.493-55.642z"
|
||||
],
|
||||
"width": 1026,
|
||||
"attrs": [],
|
||||
"tags": [
|
||||
"hangup"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [],
|
||||
"properties": {
|
||||
"order": 23,
|
||||
"id": 27,
|
||||
"prevSize": 32,
|
||||
"code": 58903,
|
||||
"name": "hangup",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 5
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M1016.824 954.234c-2.051-15.373-5.331-30.537-7.859-45.847-8.334-50.458-33.006-86.503-82.063-107.922-78.373-34.198-155.103-72.121-232.111-109.395-55.686-27.025-52.409-88.519-34.097-114.413 11.89-16.88 22.344-34.572 23.575-56.852 0.444-8.226 8.303-18.99 15.817-23.294 26.070-15.035 38.161-39.565 50.020-64.982 3.109-6.696 7.379-13.187 12.266-18.722 8.471-9.668 12.264-19.235 6.079-31.842-1.435-2.97 1.331-8.334 2.8-12.367 4.304-12.026 10.285-23.676 13.12-36.043 3.556-15.339 5.398-31.225 6.252-46.975 0.374-6.523-6.045-13.528-5.362-19.95 3.483-31.912-14.557-56.202-24.739-83.977-12.465-34.198-36.928-55.619-58.519-81.106-4.066-4.784-5.227-13.051-5.571-19.886-0.72-14.588-6.732-21.797-22.004-19.813-6.11 0.787-12.772 2.495-18.41 0.991-4.957-1.334-12.406-6.288-12.676-10.112-1.538-19.336-8.264-22.517-28.016-19.235-12.364 2.049-28.457-9.155-40.584-17.561-10.145-7.041-18.89-10.045-30.681-7.176-4.915 1.195-11.544 0.991-15.716-1.435-4.441-2.663-8.775-4.237-13.118-5.124v-0.748c-0.957 0.031-1.982 0.204-2.939 0.307-0.955-0.103-1.912-0.274-2.867-0.307v0.751c-4.371 0.888-8.749 2.462-13.156 5.124-4.133 2.425-10.762 2.632-15.68 1.435-11.822-2.867-20.569 0.137-30.684 7.176-12.158 8.404-28.217 19.609-40.584 17.561-19.746-3.282-26.509-0.103-28.047 19.235-0.307 3.824-7.686 8.778-12.676 10.112-5.669 1.504-12.297-0.204-18.446-0.991-15.236-1.984-21.25 5.225-21.97 19.813-0.338 6.832-1.502 15.102-5.568 19.886-21.588 25.485-46.051 46.908-58.555 81.106-10.117 27.773-28.189 52.063-24.669 83.975 0.686 6.422-5.744 13.427-5.4 19.95 0.89 15.749 2.735 31.636 6.254 46.975 2.836 12.367 8.814 24.019 13.151 36.043 1.437 4.033 4.242 9.397 2.769 12.367-6.182 12.607-2.358 22.174 6.115 31.842 4.853 5.535 9.121 12.026 12.23 18.722 11.859 25.417 23.947 49.947 50.014 64.982 7.519 4.304 15.378 15.068 15.858 23.294 1.192 22.28 11.65 39.972 23.57 56.852 18.281 25.895 21.147 86.738-34.162 114.413-76.456 38.264-153.741 75.2-232.042 109.395-49.129 21.418-73.726 57.463-82.063 107.922-2.526 15.311-5.878 30.475-7.859 45.847-3.009 22.928-7.823 69.766-7.823 69.766h1024.611c-0.003 0-4.781-46.838-7.787-69.766z"
|
||||
],
|
||||
"width": 1025,
|
||||
"attrs": [],
|
||||
"tags": [
|
||||
"contactListIcon"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [],
|
||||
"properties": {
|
||||
"order": 21,
|
||||
"id": 26,
|
||||
"prevSize": 32,
|
||||
"code": 58901,
|
||||
"name": "contactList",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 6
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M1026.175 510.933c0 283.345-229.709 513.051-513.108 513.051-283.348 0-513.069-229.703-513.069-513.051 0-283.384 229.721-513.106 513.069-513.106 283.4-0 513.108 229.721 513.108 513.106z",
|
||||
"M513.069 1023.985c135.725 0 259.112-52.711 350.874-138.739-9.717-11.65-22.551-21.114-39.113-28.343-58.934-25.745-116.627-54.256-174.534-82.256-41.871-20.322-39.405-66.587-25.639-86.057 8.943-12.692 16.805-25.998 17.728-42.746 0.333-6.169 6.241-14.284 11.889-17.522 19.604-11.304 28.697-29.747 37.604-48.861 2.34-5.031 5.555-9.89 9.229-14.077 6.37-7.243 9.224-14.436 4.572-23.942-1.086-2.209 1.004-6.241 2.105-9.273 3.238-9.067 7.733-17.801 9.861-27.115 2.67-11.549 4.059-23.48 4.701-35.323 0.281-4.902-4.544-10.184-4.033-14.986 2.621-24.022-10.943-42.271-18.598-63.158-9.376-25.714-27.771-41.82-44.005-60.97-3.058-3.623-3.927-9.838-4.188-14.952-0.539-10.981-5.060-16.415-16.544-14.924-4.598 0.601-9.611 1.886-13.843 0.756-3.728-0.988-9.327-4.724-9.534-7.604-1.153-14.539-6.213-16.929-21.065-14.475-9.296 1.543-21.395-6.858-30.513-13.203-7.632-5.292-14.209-7.555-23.069-5.38-3.697 0.9-8.682 0.746-11.815-1.094-3.341-1.976-6.605-3.184-9.867-3.839v-0.552c-0.72 0.013-1.489 0.129-2.209 0.217-0.722-0.088-1.44-0.206-2.157-0.217v0.552c-3.29 0.653-6.574 1.863-9.89 3.839-3.112 1.837-8.091 1.992-11.797 1.094-8.886-2.173-15.448 0.088-23.064 5.38-9.157 6.345-21.222 14.746-30.518 13.203-14.862-2.451-19.94-0.062-21.093 14.475-0.219 2.879-5.793 6.616-9.516 7.604-4.278 1.13-9.247-0.155-13.887-0.756-11.456-1.491-15.987 3.943-16.516 14.924-0.261 5.111-1.13 11.33-4.19 14.952-16.222 19.15-34.616 35.258-44.018 60.97-7.627 20.887-21.204 39.136-18.57 63.158 0.511 4.802-4.304 10.083-4.046 14.986 0.655 11.846 2.041 23.776 4.701 35.323 2.131 9.312 6.626 18.048 9.89 27.115 1.094 3.032 3.174 7.062 2.082 9.273-4.649 9.508-1.788 16.702 4.582 23.942 3.674 4.188 6.874 9.046 9.224 14.077 8.899 19.111 17.992 37.557 37.596 48.861 5.653 3.238 11.559 11.353 11.905 17.522 0.913 16.748 8.773 30.054 17.739 42.746 13.745 19.47 15.902 65.245-25.673 86.057-57.52 28.772-115.6 56.511-174.503 82.256-16.57 7.23-29.409 16.694-39.123 28.338 91.759 86.031 215.138 138.744 350.843 138.744z"
|
||||
],
|
||||
"width": 1026,
|
||||
"attrs": [],
|
||||
"tags": [
|
||||
"avatar"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [],
|
||||
"properties": {
|
||||
"order": 22,
|
||||
"id": 25,
|
||||
"prevSize": 32,
|
||||
"code": 58902,
|
||||
"name": "avatar",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 7
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M839.334 573.513c0 79.199-64.257 143.461-143.486 143.461-79.174 0-143.431-64.262-143.431-143.461 0-79.227 64.257-143.431 143.431-143.431 79.23 0.003 143.486 64.204 143.486 143.431z",
|
||||
"M1372.769 253.515c-6.595-39.459-29.496-64.168-70.606-69.276-23.788-2.918-38.256-15.637-44.726-39.040-9.706-35.519-33.678-58.993-67.811-70.76-24.807-8.595-50.3-16.462-76.186-20.491-69.655-10.911-140.51-15.924-209.526-29.943-69.53-14.178-139.053-23.342-208.893-24.073-69.845 0.731-139.371 9.895-208.893 24.073-69.022 14.016-139.876 19.029-209.526 29.94-25.884 4.028-51.385 11.896-76.189 20.491-34.13 11.767-58.105 35.24-67.814 70.76-6.469 23.403-20.934 36.122-44.723 39.040-41.105 5.108-64.006 29.82-70.601 69.278-6.788 40.41-11.737 81.202-16.811 121.885-2.728 22.109 6.405 32.576 30.386 32.448 120.839-0.697 241.692-0.697 362.595-0.095 24.045 0.128 33.115-9.388 33.433-33.338 0.762-57.369-4.631-111.895-47.136-156.618-7.041-7.39-10.849-25.281-6.726-33.846 4.062-8.5 40.856-16.716 45.992-16.716 43.328 0.19 43.138 0.223 49.418 43.423 1.205 8.28 2.539 18.46 7.803 23.853 30.319 30.863 21.252 66.706 7.234 97.634-30.389 67.139-61.537 134.827-100.867 196.869-73.458 115.831-104.41 160.744-198.679 260.844-58.675 62.293-68.573 101.687-68.573 137.466 0 70.989 41.038 96.744 137.148 96.744 181.614 0 260.908-0.315 442.528-0.315 181.614 0 260.905 0.315 442.528 0.315 96.102 0 137.142-25.752 137.142-96.744 0-35.779-9.898-75.173-68.573-137.466-94.264-100.1-125.222-145.012-198.679-260.844-39.333-62.042-70.475-129.73-100.861-196.869-14.019-30.927-23.091-66.77 7.234-97.634 5.264-5.393 6.595-15.575 7.803-23.853 6.28-43.202 6.090-43.233 49.412-43.423 5.139 0 41.933 8.216 45.992 16.716 4.126 8.565 0.318 26.453-6.723 33.846-42.502 44.723-47.898 99.249-47.136 156.618 0.315 23.947 9.388 33.466 33.43 33.338 120.909-0.603 241.753-0.603 362.601 0.095 23.975 0.126 33.109-10.342 30.383-32.448-5.075-40.686-10.018-81.475-16.806-121.885zM959.991 576.495c0 146.315-118.624 264.936-264.97 264.936s-264.973-118.621-264.973-264.936c0-146.318 118.624-264.936 264.973-264.936 146.343-0 264.97 118.621 264.97 264.936z"
|
||||
],
|
||||
"width": 1390,
|
||||
"attrs": [],
|
||||
"tags": [
|
||||
"callRetro"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [],
|
||||
"properties": {
|
||||
"order": 17,
|
||||
"id": 24,
|
||||
"prevSize": 32,
|
||||
"code": 58897,
|
||||
"name": "callRetro",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 8
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M310.262 929.57c0 52.13-42.207 94.43-94.399 94.43h-121.405c-52.195 0-94.458-42.3-94.458-94.43v-835.67c0-52.158 42.266-94.458 94.458-94.458h121.403c52.195 0 94.399 42.3 94.399 94.458v835.67z",
|
||||
"M1077.118-0.56h-561.987c-72.919 0-132.33 60.673-132.33 135.253v754.115c0 74.518 59.411 135.191 132.33 135.191h561.987c72.98 0 132.394-60.673 132.394-135.191v-754.115c0-74.58-59.414-135.253-132.394-135.253zM529.83 133.094h532.653l0.062 143.298h-532.715v-143.298zM643.255 908.372h-113.551v-113.551h113.551v113.551zM643.255 703.252h-113.551v-113.554h113.551v113.554zM643.382 496.244h-113.551v-113.554h113.551v113.554zM852.9 908.372h-113.551v-113.551h113.551v113.551zM852.9 703.252h-113.551v-113.554h113.551v113.554zM853.027 496.244h-113.556v-113.554h113.556v113.554zM1062.548 908.372h-113.556v-113.551h113.556v113.551zM1062.548 703.252h-113.556v-113.554h113.556v113.554zM1062.669 496.244h-113.554v-113.554h113.554v113.554z"
|
||||
],
|
||||
"width": 1210,
|
||||
"attrs": [],
|
||||
"tags": [
|
||||
"callModern"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [],
|
||||
"properties": {
|
||||
"order": 18,
|
||||
"id": 23,
|
||||
"prevSize": 32,
|
||||
"code": 58898,
|
||||
"name": "callModern",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 9
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M1123.444 20.985c-23.593-26.481-64.131-28.989-90.74-5.395l-1008.269 893.436c-26.609 23.468-28.991 64.131-5.46 90.676 12.674 14.306 30.308 21.649 48.126 21.649 15.123 0 30.372-5.401 42.544-16.195l130.045-115.22c90.743 81.844 210.569 132.165 342.473 132.101 282.816-0.061 510.913-227.969 511.287-510.972 0.126-109.934-34.682-211.367-93.499-294.72l118.088-104.625c26.483-23.526 28.997-64.129 5.404-90.735zM944.422 510.182c0.128 200.922-161.896 363.201-362.509 362.952-87.56-0.123-167.573-31.151-230.061-82.569l331.277-293.509v73.176c1.071 60.993 32.696 92.18 94.944 93.692 61.997-1.512 93.686-32.763 95.131-93.756v-41.096h-72.227v47.499c0.251 4.642-0.564 10.607-2.511 17.949-1.25 3.261-3.448 6.020-6.525 8.093-3.197 2.572-7.845 3.828-13.868 3.828-10.543-0.31-17.132-4.268-19.827-11.921-1.068-3.512-1.947-6.905-2.508-10.163-0.254-2.887-0.377-5.532-0.377-7.786v-143.511l42.477-37.634c0.215 0.432 0.452 0.851 0.63 1.303 1.947 6.467 2.762 12.799 2.511 19.076v36.772h72.227v-30.121c-0.246-31.245-9.086-54.699-26.363-70.447l40.711-36.069c35.787 56.055 56.803 122.585 56.867 194.244z",
|
||||
"M239.795 628.53c-12.613-37.023-19.827-76.557-19.827-117.913-0.19-200.236 161.584-362.009 361.945-362.135 56.853 0 110.313 13.302 158.133 36.398l117.846-104.421c-79.444-50.952-173.758-80.817-275.292-80.948-283.377-0.181-511.354 227.729-511.789 511.675-0.126 79.567 18.636 154.679 51.137 221.882l117.848-104.538z",
|
||||
"M388.576 333.98h-97.514v249.057l72.23-64.070v-0.689h0.815l117.72-104.418c0-0.564 0.123-0.94 0.123-1.509 0.753-53.898-30.369-80.069-93.374-78.37zM405.959 398.483c1.942 2.767 3.074 6.469 3.323 11.112 0.312 4.452 0.438 9.6 0.438 15.246 0.251 10.916-0.689 19.83-2.949 26.985-2.952 7.594-10.983 11.357-24.159 11.357h-19.325v-74.043h15.31c7.842 0 13.865 0.683 18.072 2.19 4.397 1.573 7.468 3.953 9.29 7.153z"
|
||||
],
|
||||
"width": 1140,
|
||||
"attrs": [],
|
||||
"tags": [
|
||||
"recDisable"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [],
|
||||
"properties": {
|
||||
"order": 19,
|
||||
"id": 22,
|
||||
"prevSize": 32,
|
||||
"code": 58899,
|
||||
"name": "recDisable",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 10
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M581.278-1.708c284.857 0.19 514.807 230.517 514.427 514.997-0.378 285.047-230.073 514.553-514.869 514.615-284.541 0.062-515.311-230.517-514.933-514.422 0.439-285.936 230.009-515.439 515.375-515.19zM580.579 148.244c-201.764 0.123-364.666 163.032-364.478 364.663 0 202.018 162.524 364.735 364.478 364.984 202.018 0.316 365.174-163.030 365.048-365.423-0.252-201.767-163.156-364.35-365.048-364.224z",
|
||||
"M287.698 335.093h98.196c63.442-1.767 94.785 24.518 94.027 78.863 0.254 19.081-2.211 34.882-7.456 47.521-6.005 12.508-18.706 21.988-38.167 28.181v0.819c28.373 6.259 43.031 23.573 43.981 51.946v57.689c0 11.247 0.254 22.813 0.758 34.756 0.819 12.005 3.033 20.979 6.696 27.043h-71.846c-3.727-6.064-6.128-15.038-7.14-27.043-1.012-11.943-1.454-23.509-1.138-34.756v-52.321c0-9.603-2.214-16.553-6.573-20.979-4.675-4.107-12.701-6.19-24.012-6.19h-14.599v141.291h-72.73v-326.82zM360.428 465.139h19.463c13.271 0 21.359-3.794 24.331-11.375 2.276-7.204 3.221-16.304 2.969-27.171 0-5.815-0.126-10.867-0.442-15.418-0.252-4.675-1.392-8.404-3.352-11.247-1.831-3.157-4.926-5.561-9.352-7.14-4.233-1.454-10.299-2.211-18.2-2.211h-15.418v74.564z",
|
||||
"M498.372 335.093h162.082v62.687h-89.35v65.587h78.103v62.685h-78.103v73.11h92.822v62.749h-165.557v-326.818z",
|
||||
"M682.507 424.001c0.316-31.782 9.416-55.542 27.425-71.407 17.44-15.29 40.185-22.936 68.181-22.936 28.247 0 51.119 7.646 68.623 23 17.82 15.798 26.92 39.623 27.171 71.407v30.333h-72.73v-37.031c0.254-6.192-0.57-12.639-2.527-19.209-1.264-3.157-3.475-5.938-6.573-8.214-3.221-1.515-7.898-2.404-13.964-2.404-10.615 0.316-17.249 3.855-19.967 10.618-2.211 6.573-3.223 13.017-2.907 19.209v161.956c0 2.273 0.126 4.865 0.38 7.772 0.568 3.411 1.454 6.824 2.527 10.233 2.717 7.775 9.352 11.756 19.967 12.007 6.067 0 10.744-1.261 13.964-3.791 3.098-2.15 5.309-4.867 6.573-8.216 1.96-7.33 2.782-13.33 2.527-18.007v-47.837h72.73v41.328c-1.451 61.547-33.364 93.015-95.794 94.469-62.685-1.454-94.53-32.922-95.607-94.343v-148.937z"
|
||||
],
|
||||
"width": 1142,
|
||||
"attrs": [],
|
||||
"tags": [
|
||||
"recEnable"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [],
|
||||
"properties": {
|
||||
"order": 20,
|
||||
"id": 21,
|
||||
"prevSize": 32,
|
||||
"code": 58900,
|
||||
"name": "recEnable",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 11
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M513.036 0c283.57 0.188 512.414 229.474 512.037 512.664-0.377 283.756-228.965 512.228-512.541 512.288-283.191 0.067-512.912-229.474-512.533-512.099 0.374-284.638 228.965-513.103 513.036-512.853zM512.285 149.271c-200.79 0.126-362.957 162.291-362.831 363.014 0 201.105 161.788 363.081 362.831 363.334 201.164 0.312 363.581-162.294 363.455-363.772-0.25-200.852-162.417-362.702-363.455-362.575z",
|
||||
"M597.392 512.412h-0.503l-0.126-0.126h0.63l115.615-115.866c0 0-78.247-78.505-82.153-82.153l-117.754 116.183-119.014-118.196-82.024 82.279 88.815 88.818 26.674 29.061h0.503l0.253 0.253h-0.756l-115.489 115.806c0 0 78.249 78.564 82.024 82.212l117.76-116.245 119.008 118.26 82.153-82.406-88.815-88.82-26.8-29.061z"
|
||||
],
|
||||
"width": 1025,
|
||||
"attrs": [],
|
||||
"tags": [
|
||||
"kickUser1"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [],
|
||||
"properties": {
|
||||
"order": 16,
|
||||
"id": 20,
|
||||
"prevSize": 32,
|
||||
"code": 58895,
|
||||
"name": "kick1",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 12
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M66.491 1023.997h1027.94z",
|
||||
"M1198.596 472.014c-135.702-135.893-271.415-271.66-407.367-407.241-6.244-6.089-13.868-11.714-21.867-14.653-31.236-11.399-63.48 12.808-63.728 47.674-0.253 67.663-0.126 135.331-0.126 202.965 0 4.281 0 8.62 0 13.964-6.123 0-10.87 0-15.62 0-106.247 0-212.334-0.062-318.485 0-35.178 0.031-54.86 19.71-54.86 54.922-0.059 92.778-0.059 185.5 0 278.345 0 35.8 19.682 55.479 55.611 55.479 105.775 0.062 211.423 0 317.11 0 4.877 0 9.622 0 16.245 0 0 5.375 0 9.374 0 13.309 0 66.793 0.25 133.703 0 200.496 0 23.057 9.247 40.241 30.242 49.547 21.116 9.371 39.361 2.81 55.231-12.937 135.955-136.079 272.031-272.034 407.989-408.175 23.49-23.431 23.24-50.112-0.374-73.695z",
|
||||
"M532.596 915.271c-2.627-19.62-22.055-32.116-27.928-35.426-8.811-5.186-18.371-5.811-25.683-5.811l-6.37 0.126-227.926-0.188c-56.042-0.124-98.468-42.173-98.591-97.717-0.188-177.127-0.188-354.321 0.065-531.51 0.059-53.983 42.671-96.53 96.968-96.811l235.922-0.062c33.426-0.031 51.294-16.121 54.481-49.235 1.001-12.965 0.81-26.052 0.439-39.172-1.128-39.737-19.369-57.481-59.107-57.512l-217.866 0.121c-15.494 0-30.926 0.562-46.361 2.343-115.52 13.154-207.555 113.649-209.681 228.798-1.313 63.888-0.996 127.804-0.684 191.718l0.186 60.201h-0.377c0 0-0.121 227.954 0.065 289.811 0.248 135.702 101.528 240.796 235.545 244.48 33.176 0.875 66.419 1.189 99.654 1.189h0.065l148.012-0.753c29.368 0 47.483-17.37 49.73-47.545 1.755-22.058 1.628-40.173-0.557-57.045z"
|
||||
],
|
||||
"width": 1216,
|
||||
"attrs": [],
|
||||
"tags": [
|
||||
"kickUser"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [],
|
||||
"properties": {
|
||||
"order": 15,
|
||||
"id": 19,
|
||||
"prevSize": 32,
|
||||
"code": 58896,
|
||||
"name": "kick",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 13
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M955.816-0.317h-822.841c-73.303 0-132.975 60.931-132.975 135.844v542.186c0 74.851 59.672 135.785 132.975 135.785h822.841c73.239 0 132.916-60.934 132.916-135.785v-542.186c0-74.913-59.677-135.844-132.916-135.844zM949.51 671.216h-810.226v-529.223h810.164l0.062 529.223z",
|
||||
"M945.219 959.66c0 35.738-28.261 64.66-63.207 64.66h-675.228c-34.949 0-63.209-28.921-63.209-64.66v-29.618c0-35.7 28.261-64.657 63.209-64.657h675.228c34.946 0 63.207 28.957 63.207 64.657v29.618z",
|
||||
"M776.792 617.566l-302.669-302.605 112.411-112.316 302.545 302.602v112.318z"
|
||||
],
|
||||
"width": 1089,
|
||||
"attrs": [],
|
||||
"tags": [
|
||||
"shareDesktop"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [],
|
||||
"properties": {
|
||||
"order": 14,
|
||||
"id": 18,
|
||||
"prevSize": 32,
|
||||
"code": 58882,
|
||||
"name": "share-desktop",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 14
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M953.901-2.387h-819.775c-72.965 0-132.418 60.712-132.418 135.344v540.168c0 74.567 59.453 135.279 132.418 135.279h35.823v212.891l344.966-212.891h438.986c72.963 0 132.415-60.709 132.415-135.279v-540.168c0.003-74.632-59.45-135.344-132.415-135.344zM494.429 666.646l-195.769 124.001v-124.001h-158.184v-527.252h807.078l0.124 527.252h-453.249z"
|
||||
],
|
||||
"width": 1089,
|
||||
"attrs": [],
|
||||
"tags": [
|
||||
"chatNoLines"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [],
|
||||
"properties": {
|
||||
"order": 13,
|
||||
"id": 17,
|
||||
"prevSize": 32,
|
||||
"code": 58886,
|
||||
"name": "chat-simple",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 15
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M952.366-0.134h-820.477c-73.027 0-132.531 60.761-132.531 135.455v752.358c0 74.66 59.504 135.424 132.531 135.424h820.48c73.089 0 132.596-60.766 132.596-135.424v-752.358c-0.003-74.694-59.507-135.455-132.599-135.455zM946.135 881.199h-807.894v-739.462h807.834l0.059 739.462z",
|
||||
"M569.742 448.125l91.772-96.865-77.305-77.308 316.393-85.040-84.981 316.391-75.357-75.293-91.834 96.865z",
|
||||
"M514.763 575.437l-91.767 96.865 77.3 77.305-316.388 85.043 84.979-316.388 75.357 75.29 91.834-96.871z"
|
||||
],
|
||||
"width": 1089,
|
||||
"attrs": [],
|
||||
"tags": [
|
||||
"fullScreen 1"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [],
|
||||
"properties": {
|
||||
"order": 12,
|
||||
"id": 16,
|
||||
"prevSize": 32,
|
||||
"code": 58893,
|
||||
"name": "full-screen",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 16
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M953.225 0.82h-820.663c-73.045 0-132.562 60.776-132.562 135.488v752.525c0 74.647 59.517 135.421 132.562 135.421h820.66c73.107 0 132.624-60.776 132.624-135.421v-752.525c0.003-74.712-59.515-135.488-132.622-135.488zM946.994 882.353h-808.079v-739.596h808.017l0.062 739.596z",
|
||||
"M915.539 253.3l-91.795 96.889 77.326 77.323-316.463 85.030 84.999-316.463 75.373 75.339 91.852-96.889z",
|
||||
"M170.625 771.779l91.793-96.884-77.323-77.326 316.463-85.028-84.997 316.46-75.373-75.342-91.857 96.891z"
|
||||
],
|
||||
"width": 1089,
|
||||
"attrs": [],
|
||||
"tags": [
|
||||
"exitFullScreen 1"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [],
|
||||
"properties": {
|
||||
"order": 11,
|
||||
"id": 15,
|
||||
"prevSize": 32,
|
||||
"code": 58894,
|
||||
"name": "exit-full-screen",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 17
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M512.356-0c-282.456 0-512.356 229.838-512.356 512.478 0 282.389 229.9 512.227 512.356 512.227 282.515 0 512.414-229.838 512.414-512.227 0-282.64-229.9-512.478-512.414-512.478zM512.356 945.144c-238.545 0-432.671-194.126-432.671-432.666 0-238.796 194.126-432.858 432.671-432.858 238.601 0 432.856 194.062 432.856 432.858 0 238.54-194.255 432.666-432.856 432.666z",
|
||||
"M512.545 105.038c-224.755 0-407.508 182.75-407.508 407.315 0 224.563 182.75 407.315 407.508 407.315 224.437 0 407.187-182.755 407.187-407.315-0.003-224.566-182.75-407.315-407.187-407.315zM512.545 832.677c-176.715 0-320.453-143.804-320.453-320.324 0-176.523 143.737-320.324 320.453-320.324 176.523 0 320.196 143.802 320.196 320.324 0 176.52-143.673 320.324-320.196 320.324z",
|
||||
"M283.851 397.211l-0.954 1.398v234.413l0.954 1.398c15.757 23.060 36.473 44.542 61.699 63.797l8.961 6.801v-378.341l-8.961 6.735c-25.1 19.191-45.814 40.544-61.699 63.799z",
|
||||
"M415.637 294.271l-3.621 1.334v440.36l3.621 1.398c18.683 7.055 38.887 11.94 61.766 14.931l6.224 0.762v-474.415l-6.163 0.762c-22.237 2.795-43.016 7.753-61.827 14.869z",
|
||||
"M547.367 279.401l-6.165-0.762v474.415l6.165-0.762c22.301-2.793 43.077-7.811 61.763-14.864l3.685-1.4v-440.488l-3.685-1.334c-18.811-7.053-39.525-12.010-61.763-14.805z",
|
||||
"M740.98 397.211c-15.692-23.002-36.473-44.48-61.699-63.797l-8.894-6.86v378.469l8.894-6.801c25.351-19.381 46.132-40.862 61.699-63.861l0.89-1.398v-234.352l-0.89-1.4z"
|
||||
],
|
||||
"width": 1025,
|
||||
"attrs": [],
|
||||
"tags": [
|
||||
"prezisimple"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [],
|
||||
"properties": {
|
||||
"order": 10,
|
||||
"id": 14,
|
||||
"prevSize": 32,
|
||||
"code": 58892,
|
||||
"name": "prezi",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 18
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M831.678 943.614h-144.885v-258.653c-45.729-29.159-41.794-84.953-24.574-109.307 11.939-16.905 22.43-34.662 23.663-57.004 0.423-8.241 8.303-19.031 15.847-23.364 26.122-15.037 38.223-39.632 50.12-65.116 3.143-6.714 7.392-13.187 12.3-18.753 8.471-9.686 12.295-19.264 6.115-31.922-1.466-2.972 1.318-8.326 2.779-12.362 4.335-12.106 10.326-23.745 13.169-36.148 3.522-15.399 5.398-31.305 6.244-47.086 0.379-6.543-6.074-13.574-5.351-19.986 3.486-32.030-14.612-56.346-24.785-84.189-12.509-34.28-37.036-55.732-58.681-81.26-4.074-4.843-5.225-13.125-5.563-19.942-0.722-14.63-6.752-21.875-22.048-19.898-6.161 0.805-12.808 2.526-18.474 1.019-4.969-1.316-12.408-6.288-12.702-10.13-1.553-19.393-8.285-22.577-28.098-19.305-12.406 2.062-28.527-9.134-40.677-17.587-10.15-7.049-18.941-10.065-30.751-7.175-4.928 1.187-11.598 0.973-15.716-1.466-4.461-2.634-8.837-4.226-13.169-5.119v-0.722c-0.975 0-1.976 0.17-2.934 0.276-0.975-0.106-1.951-0.276-2.908-0.276v0.722c-4.355 0.893-8.726 2.485-13.169 5.119-4.167 2.441-10.811 2.652-15.718 1.466-11.851-2.89-20.598 0.126-30.751 7.175-12.212 8.453-28.287 19.648-40.671 17.587-19.816-3.272-26.591-0.085-28.119 19.305-0.299 3.844-7.73 8.816-12.7 10.13-5.692 1.509-12.32-0.212-18.497-1.019-15.27-1.976-21.302 5.269-22.024 19.898-0.338 6.819-1.486 15.102-5.565 19.942-21.622 25.528-46.154 46.98-58.684 81.26-10.171 27.843-28.271 52.161-24.765 84.189 0.699 6.412-5.736 13.443-5.395 19.986 0.87 15.78 2.74 31.687 6.267 47.086 2.843 12.403 8.835 24.042 13.187 36.148 1.466 4.033 4.229 9.387 2.784 12.362-6.203 12.658-2.379 22.236 6.115 31.922 4.887 5.565 9.134 12.039 12.277 18.753 11.874 25.484 24.001 50.079 50.125 65.116 7.516 4.332 15.417 15.122 15.863 23.364 1.21 22.342 11.701 40.099 23.64 57.004 18.33 25.954 21.194 86.95-34.216 114.687-76.673 38.336-154.083 75.357-232.624 109.632-49.189 21.498-73.891 57.6-82.238 108.192-2.549 15.331-5.862 30.539-7.88 45.961-3.014 22.956-7.839 69.874-7.839 69.874h831.678v-80.386z",
|
||||
"M1188.556 879.11h-144.89v144.89h-147.481v-144.89h-144.885v-147.481h144.885v-144.888h147.481v144.888h144.89v147.481z"
|
||||
],
|
||||
"width": 1189,
|
||||
"attrs": [
|
||||
{
|
||||
"opacity": 1,
|
||||
"visibility": false
|
||||
},
|
||||
{
|
||||
"opacity": 1,
|
||||
"visibility": false
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
"addNew-V5"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [
|
||||
{
|
||||
"opacity": 1,
|
||||
"visibility": false
|
||||
},
|
||||
{
|
||||
"opacity": 1,
|
||||
"visibility": false
|
||||
}
|
||||
],
|
||||
"properties": {
|
||||
"order": 26,
|
||||
"id": 30,
|
||||
"prevSize": 32,
|
||||
"code": 58880,
|
||||
"name": "addNew-V5",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 19
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M956.063-2.932h-819.824c-73.036 0-132.489 60.717-132.489 135.316v540.205c0 74.537 59.453 135.246 132.489 135.246h35.826v212.941l344.987-212.941h439.011c72.964 0 132.42-60.711 132.42-135.246v-540.202c0-74.602-59.456-135.318-132.42-135.318zM496.5 666.113l-195.714 123.997v-123.997h-158.261v-527.257h807.189l0.064 527.255h-453.278z",
|
||||
"M239.062 244.446h605.126v110.62h-605.126v-110.62z",
|
||||
"M239.062 437.524h605.126v110.615h-605.126v-110.615z"
|
||||
],
|
||||
"width": 1088,
|
||||
"attrs": [],
|
||||
"tags": [
|
||||
"chat"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [],
|
||||
"properties": {
|
||||
"order": 1,
|
||||
"id": 11,
|
||||
"prevSize": 32,
|
||||
"code": 58881,
|
||||
"name": "chat",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 20
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M952.495 4.935h-818.689c-72.81 0-132.183 60.63-132.183 135.162v750.719c0 74.473 59.372 135.101 132.183 135.101h818.686c72.936 0 132.314-60.625 132.314-135.101v-750.722c0.003-74.532-59.378-135.159-132.311-135.159zM946.346 884.349h-806.14v-737.822h806.015l0.126 737.822z",
|
||||
"M685.753 285.456h216.911v566.758h-216.911v-566.758z",
|
||||
"M428.672 413.998h216.911v438.216h-216.911v-438.216z",
|
||||
"M172.339 542.54h216.161v309.677h-216.161v-309.677z"
|
||||
],
|
||||
"width": 1088,
|
||||
"attrs": [],
|
||||
"tags": [
|
||||
"presentation"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [],
|
||||
"properties": {
|
||||
"order": 3,
|
||||
"id": 9,
|
||||
"prevSize": 32,
|
||||
"code": 58883,
|
||||
"name": "presentation",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 21
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M878.259-5.513c-163.545 0-296.573 133.036-296.573 296.612v43.752h-448.909c-73.14 0-132.777 60.909-132.777 135.751v412.768c0 74.777 59.637 135.678 132.777 135.678h564.152c73.265 0 132.919-60.901 132.919-135.678v-412.768c0-70.054-52.267-127.895-119.040-135.009v-44.494c0-92.367 75.154-167.49 167.451-167.49 92.305 0 167.462 75.12 167.462 167.49v77.422c0 35.681 28.883 64.564 64.556 64.564 35.69 0 64.569-28.883 64.569-64.564v-77.422c-0.003-163.576-133.028-296.612-296.587-296.612z"
|
||||
],
|
||||
"width": 1179,
|
||||
"attrs": [],
|
||||
"tags": [
|
||||
"security"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [],
|
||||
"properties": {
|
||||
"order": 5,
|
||||
"id": 8,
|
||||
"prevSize": 32,
|
||||
"code": 58884,
|
||||
"name": "security",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 22
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M1.518 318.386h277.533v-319.798c0 0-78.033 8.102-176.18 111.633-98.139 103.529-101.353 208.165-101.353 208.165z",
|
||||
"M683.281-1.412h-339.684v384.596l-342.080-0.251-1.515-3.468v510.502c0 73.845 61.4 133.979 136.847 133.979h546.434c75.514 0 136.911-60.137 136.911-133.979v-757.403c-0.003-73.843-61.397-133.976-136.914-133.976zM691.854 814.836h-572.848v-92.788h572.845v92.788zM691.854 621.198h-572.848v-92.783h572.845v92.783z"
|
||||
],
|
||||
"width": 820,
|
||||
"attrs": [],
|
||||
"tags": [
|
||||
"shareDoc"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [],
|
||||
"properties": {
|
||||
"order": 6,
|
||||
"id": 7,
|
||||
"prevSize": 32,
|
||||
"code": 58885,
|
||||
"name": "share-doc",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 23
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M709.515 339.906v-44.455c0-163.090-132.662-295.749-295.749-295.749-163.093 0-295.752 132.659-295.752 295.749v44.455c-66.226 7.393-118.013 64.915-118.013 134.607v411.623c0 74.629 59.481 135.365 132.472 135.365h562.583c73.059 0 132.534-60.736 132.534-135.365v-411.623c-0-69.697-51.792-127.219-118.074-134.607zM413.765 128.463c92.043 0 166.987 74.944 166.987 166.987v43.632h-333.978v-43.632c0-92.043 74.883-166.987 166.99-166.987z"
|
||||
],
|
||||
"width": 828,
|
||||
"attrs": [],
|
||||
"tags": [
|
||||
"securityLock"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [],
|
||||
"properties": {
|
||||
"order": 2,
|
||||
"id": 5,
|
||||
"prevSize": 32,
|
||||
"code": 58887,
|
||||
"name": "security-locked",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 24
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M1223.934 242.853l-180.299 175.956v-217.848c0-7.661-0.666-15.148-1.902-22.432l73.695-65.346c26.349-23.41 28.841-63.8 5.369-90.24-23.475-26.406-63.803-28.872-90.273-5.4l-1009.019 894.712c-26.408 23.41-28.841 63.806-5.398 90.209 12.607 14.237 30.183 21.539 47.85 21.539 15.076 0 30.214-5.305 42.39-16.1l95.841-84.979c20.995 14.627 46.26 23.232 73.592 23.232h635.191c73.099 0 132.66-60.807 132.66-135.537v-172.868l193.659 153.955c48.815 35.46 96.765-5.248 96.765-40.584v-483.829c0.003-35.305-55.933-71.386-110.123-24.44zM601.515 760.552c-58.81 0-112.566-20.216-155.526-53.797l82.93-73.533c20.863 11.665 44.849 18.386 70.47 18.386 80.533 0 145.832-65.299 145.832-145.835 0-19.421-3.896-37.857-10.857-54.713l86.847-77.001c22.848 38.259 36.012 82.969 36.012 130.782 0 141.214-114.493 255.71-255.707 255.71z",
|
||||
"M345.797 504.84c0-141.216 114.496-255.715 255.717-255.715 21.501 0 42.075 3.434 61.986 8.429l216.757-192.191h-604.474c-73.138 0-132.697 60.838-132.697 135.597v518.074l205.894-182.543c-1.308-10.486-3.184-20.853-3.184-31.651z"
|
||||
],
|
||||
"width": 1334,
|
||||
"attrs": [],
|
||||
"tags": [
|
||||
"disableWebCam"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [],
|
||||
"properties": {
|
||||
"order": 7,
|
||||
"id": 3,
|
||||
"prevSize": 32,
|
||||
"code": 58889,
|
||||
"name": "camera-disabled",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 25
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M1121.124 21.134c-23.48-26.413-63.883-28.849-90.296-5.372l-1009.306 894.905c-26.413 23.418-28.852 63.816-5.434 90.232 12.612 14.243 30.224 21.547 47.893 21.547 15.050 0 30.224-5.307 42.403-16.108l257.072-227.934c33.225 22.863 69.988 39.678 108.611 49.713-70.191 35.653-118.771 107.715-118.771 191.894h431.872c0-85.737-50.329-159.115-122.765-194.079 54.95-14.49 105.842-39.965 147.497-77.496 51.888-46.712 113.712-131.515 113.712-270.329v-130.323c0-18.812-7.924-35.767-20.585-47.798l212.664-188.558c26.419-23.477 28.849-63.816 5.434-90.294zM791.535 478.109c0 157.985-117.649 229.923-226.99 229.923-35.214 0-68.659-7.217-98.285-20.786l55.735-49.416c14.733 4.59 30.356 7.132 46.609 7.132 89.357 0 161.984-72.687 161.984-161.979v-30.1l60.947-54.042v79.269z",
|
||||
"M730.589 166.133c0-89.298-72.625-161.984-161.984-161.984-89.298 0-161.984 72.687-161.984 161.984v316.85c0 0.25 0 0.498 0 0.748l323.969-287.25v-30.348z",
|
||||
"M350.795 533.31c-3.246-17.483-5.119-35.782-5.119-55.201v-130.323c0-36.406-29.6-66.004-66.006-66.004-36.466 0-66.004 29.597-66.004 66.004v130.323c0 57.198 11.115 107.026 29.099 150.931l108.030-95.73z"
|
||||
],
|
||||
"width": 1137,
|
||||
"attrs": [],
|
||||
"tags": [
|
||||
"disableMic"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [],
|
||||
"properties": {
|
||||
"order": 8,
|
||||
"id": 2,
|
||||
"prevSize": 32,
|
||||
"code": 58890,
|
||||
"name": "mic-disabled",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 26
|
||||
},
|
||||
{
|
||||
"icon": {
|
||||
"paths": [
|
||||
"M858.414 280.056c-36.595 0-66.246 29.652-66.246 66.182v130.725c0 158.421-117.982 230.597-227.635 230.597-58.674 0-112.618-19.87-151.86-55.959-44.23-40.819-67.696-101.203-67.696-174.64v-130.725c0-36.53-29.654-66.182-66.182-66.182-36.53 0-66.182 29.652-66.182 66.182v130.725c0 195.834 119.494 314.763 259.177 351.040-70.408 35.71-119.176 108.014-119.176 192.431h433.118c0-85.993-50.409-159.621-123.029-194.572 55.079-14.64 106.121-40.127 147.886-77.79 52.050-46.877 114.008-131.925 114.008-271.106v-130.725c0-36.53-29.59-66.182-66.184-66.182z",
|
||||
"M568.571 644.281c-89.589 0-162.459-72.932-162.459-162.521v-317.665c0-89.589 72.87-162.459 162.459-162.459 89.592 0 162.524 72.87 162.524 162.459v317.665c0.003 89.592-72.929 162.521-162.524 162.521z"
|
||||
],
|
||||
"width": 1137,
|
||||
"attrs": [],
|
||||
"tags": [
|
||||
"mic"
|
||||
],
|
||||
"grid": 0
|
||||
},
|
||||
"attrs": [],
|
||||
"properties": {
|
||||
"order": 9,
|
||||
"id": 1,
|
||||
"prevSize": 32,
|
||||
"code": 58891,
|
||||
"name": "microphone",
|
||||
"ligatures": ""
|
||||
},
|
||||
"setIdx": 1,
|
||||
"setId": 1,
|
||||
"iconIdx": 27
|
||||
}
|
||||
],
|
||||
"height": 1024,
|
||||
"metadata": {
|
||||
"name": "jitsi"
|
||||
},
|
||||
"preferences": {
|
||||
"showGlyphs": true,
|
||||
"showQuickUse": true,
|
||||
"showQuickUse2": true,
|
||||
"showSVGs": true,
|
||||
"fontPref": {
|
||||
"prefix": "icon-",
|
||||
"metadata": {
|
||||
"fontFamily": "jitsi",
|
||||
"majorVersion": 1,
|
||||
"minorVersion": 0
|
||||
},
|
||||
"metrics": {
|
||||
"emSize": 1024,
|
||||
"baseline": 6.25,
|
||||
"whitespace": 50
|
||||
}
|
||||
},
|
||||
"imagePref": {
|
||||
"prefix": "icon-",
|
||||
"png": true,
|
||||
"useClassSelector": true
|
||||
},
|
||||
"historySize": 100,
|
||||
"showCodes": true,
|
||||
"search": ""
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 8.5 KiB |
|
@ -1,12 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="258.559px" height="396.871px" viewBox="0 0 258.559 396.871" enable-background="new 0 0 258.559 396.871"
|
||||
xml:space="preserve">
|
||||
<g id="u6PRpE_1_">
|
||||
<g>
|
||||
<path fill="#3A3A3A" d="M341.829,396.871c0,0-16.524-193.936-258.445-396.871c86.17,0,258.445,0,258.445,0V396.871z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 668 B |
Before Width: | Height: | Size: 8.1 KiB |
Before Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 234 B |
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 9.5 KiB |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 3.3 KiB |
BIN
images/noMic.png
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 2.8 KiB |
BIN
images/opera.png
Before Width: | Height: | Size: 8.0 KiB |
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1,25 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="394.595px" height="396.871px" viewBox="83.27 0 394.595 396.871" enable-background="new 83.27 0 394.595 396.871"
|
||||
xml:space="preserve">
|
||||
<g>
|
||||
<path d="M280.573,396.025c-108.796,0-197.303-88.533-197.303-197.305c0-108.797,88.507-197.305,197.303-197.305
|
||||
c108.784,0,197.292,88.508,197.292,197.305C477.865,307.492,389.357,396.025,280.573,396.025z M280.573,54.997
|
||||
c-79.246,0-143.722,64.478-143.722,143.724c0,79.26,64.476,143.724,143.722,143.724c79.247,0,143.711-64.464,143.711-143.724
|
||||
C424.284,119.475,359.82,54.997,280.573,54.997z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M252.547,174.154c0,16.339-13.239,29.577-29.591,29.577c-16.326,0-29.576-13.238-29.576-29.577
|
||||
c0-16.326,13.25-29.577,29.576-29.577C239.308,144.577,252.547,157.828,252.547,174.154z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M366.457,174.154c0,16.339-13.239,29.577-29.615,29.577c-16.326,0-29.565-13.238-29.565-29.577
|
||||
c0-16.326,13.239-29.577,29.565-29.577C353.217,144.577,366.457,157.828,366.457,174.154z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M369.579,226.074c0,0-23.966,55.255-89.843,55.255c-67.119,0-89.856-55.255-89.856-55.255s31.252,30.139,89.856,30.139
|
||||
C338.549,256.213,369.579,226.074,369.579,226.074z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |
|
@ -1,34 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="550px" height="550px" viewBox="-85.106 -76.564 550 550" enable-background="new -85.106 -76.564 550 550"
|
||||
xml:space="preserve">
|
||||
<path fill="#FFFFFF" d="M372.248,107.851C339.151,40.429,274.366,0.178,198.949,0.178c-80.411,0-149.197,47.67-171.166,118.624
|
||||
c-16.011,51.71-25.219,126.751,21.835,190.569c48.128,65.281,132.732,88.441,190.568,88.441c0.006,0,0.013,0,0.019,0
|
||||
c2.147,0,4.292-0.033,6.383-0.094c21.169-0.604,31.88-17.354,38.017-29.355c48.385-23.785,82.444-61.1,98.547-107.961
|
||||
C399.895,211.666,395.92,156.065,372.248,107.851z"/>
|
||||
<path fill="#231F20" d="M344.649,119.812C280.709-10.436,92.562,5.397,55.103,126.384c-55.37,178.83,97.09,243.395,189.835,240.728
|
||||
c7.195-0.205,11.967-13.817,16.975-23.18c2.725-0.688,5.336-1.609,7.793-2.805C369.67,292.52,378.961,189.702,344.649,119.812z
|
||||
M336.959,225.568c-33.385,127.58-148.073,96.354-154.979,97.659C42.987,280.825-1.426,137.46,153.207,62.316
|
||||
C253.958,13.355,364.406,120.68,336.959,225.568z"/>
|
||||
<path fill="#231F20" d="M162.596,162.239c4.438,11.093-15.069,24.402-27.729,24.402c-12.659,0-21.074-17.657-21.074-30.316
|
||||
c0-12.659,9.523-27.358,22.183-27.358C148.636,128.967,157.895,150.487,162.596,162.239z"/>
|
||||
<path fill="#231F20" d="M288.049,158.705c0,8.158-1.366,14.828-7.185,19.149c-3.609,2.68-10.833,9.577-15.562,9.577
|
||||
c-22.736,0-24.337-20.694-24.337-33.914c0-13.222,10.003-23.938,22.343-23.938C275.649,129.579,288.049,145.482,288.049,158.705z"/>
|
||||
<g>
|
||||
<path fill="#EC1C24" d="M118.379,254.148c-0.418-0.569-0.588-0.766-0.631-1.903c-0.174-1.904-0.23-3.902,0.406-5.953
|
||||
c0.598-2.013,1.649-3.72,3.172-4.839c1.573-1.124,3.509-1.684,5.92-1.74c2.424-0.07,5.022,0.252,8.26,0.669
|
||||
c0.223,0.036,1.113,0.275,1.457,0.513c2.61,3.606,6.503,7.162,10.902,10.217c4.414,3.074,9.353,5.729,14.524,7.949
|
||||
c4.23,1.896,8.709,3.317,13.197,4.643c4.537,1.166,9.12,2.226,13.768,2.767c6.275,0.834,12.607,1.089,18.845,0.728
|
||||
c0,0,0.483,0.004,1.372,0c0.886-0.026,2.197,0.061,3.808-0.041c3.224-0.174,7.804-0.4,12.942-1.405
|
||||
c10.383-1.633,22.947-6.716,32.402-13.301c2.045-1.339,3.75-2.776,5.353-4.056c0.808-0.636,1.58-1.244,2.315-1.817
|
||||
c0.692-0.616,1.352-1.206,1.976-1.765c1.26-1.11,2.444-2.059,3.461-2.92c0.963-0.896,1.837-1.649,2.612-2.268
|
||||
c3.129-2.467,4.673-2.768,5.023-1.256c0.293,1.466-0.531,4.812-2.597,9.178c-2.155,4.282-5.472,9.703-10.267,14.79
|
||||
c0.602-0.41-1.855,2.508-6.584,6.507c-4.732,3.948-11.853,8.863-19.804,12.461c-1.997,0.846-3.995,1.746-6.007,2.52
|
||||
c-2.04,0.699-4.05,1.388-5.999,2.058c-1.985,0.536-3.911,1.054-5.735,1.546c-1.836,0.481-3.602,0.758-5.222,1.104
|
||||
c-6.506,1.219-10.944,1.514-10.944,1.514c-6.701,0.304-13.359-0.182-19.938-0.999c-5.676-0.691-11.252-1.938-16.773-3.355
|
||||
c-5.477-1.586-10.922-3.322-16.192-5.649c-6.415-2.763-12.654-6.076-18.596-10.205
|
||||
C128.892,265.673,123.195,260.766,118.379,254.148z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.1 KiB |
|
@ -1,61 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="550px" height="550px" viewBox="-85.961 -76.564 550 550" enable-background="new -85.961 -76.564 550 550"
|
||||
xml:space="preserve">
|
||||
<path fill="#FFFFFF" d="M205.199,396.419c-0.004,0,0,0-0.004,0c-1.295-0.003-2.603-0.073-3.889-0.215"/>
|
||||
<path fill="#FFFFFF" d="M225.126,397.08c-57.758,0-142.257-23.135-190.316-88.328c-25.936-35.177-50.769-96.746-21.804-190.293
|
||||
C34.943,47.605,103.633,0,183.932,0c75.313,0,140.007,40.195,173.061,107.523c23.636,48.15,27.604,103.677,10.884,152.344
|
||||
c-16.079,46.794-50.091,84.05-98.4,107.802c-6.131,11.986-16.83,28.716-37.966,29.321c-2.097,0.06-4.221,0.09-6.375,0.09
|
||||
C225.132,397.08,225.129,397.08,225.126,397.08z"/>
|
||||
<path fill="#231F20" d="M329.688,120.928C266.169-8.457,79.271,7.271,42.063,127.455c-55.002,177.641,96.446,241.78,188.576,239.129
|
||||
c7.155-0.204,11.899-13.762,16.879-23.062c2.693-0.684,5.291-1.567,7.719-2.749C354.542,292.488,363.77,190.353,329.688,120.928z
|
||||
M322.044,225.98c-33.132,126.628-146.884,95.768-153.913,97.015C30.039,280.886-14.103,138.464,139.513,63.812
|
||||
C239.595,15.176,349.314,121.789,322.044,225.98z"/>
|
||||
<path fill="#231F20" d="M88.652,158.686c0,0,0.039-0.397,0.116-1.138c0.083-0.73,0.19-1.795,0.618-3.193
|
||||
c0.392-1.396,0.99-3.012,1.938-4.803c0.933-1.797,2.233-3.706,3.9-5.605c3.321-3.805,8.243-7.359,14.011-9.767
|
||||
c1.438-0.621,2.926-1.157,4.454-1.617c1.526-0.486,3.083-0.897,4.669-1.212c3.164-0.725,6.414-1.013,9.646-1.212
|
||||
c3.24-0.115,6.455,0,9.592,0.337c1.56,0.192,3.113,0.359,4.616,0.683c1.509,0.27,2.998,0.56,4.426,0.961
|
||||
c2.89,0.704,5.593,1.641,8.115,2.607c1.248,0.53,2.46,1.031,3.612,1.559c1.129,0.569,2.219,1.123,3.271,1.652
|
||||
c2.056,1.152,3.885,2.265,5.448,3.368c1.578,1.059,2.87,2.139,3.927,3c1.051,0.877,1.817,1.68,2.361,2.173
|
||||
c0.529,0.514,0.796,0.812,0.796,0.812s-1.616-0.046-4.292-0.284c-1.354-0.076-2.935-0.285-4.762-0.425
|
||||
c-1.782-0.171-3.799-0.367-5.998-0.581c-4.349-0.406-9.306-0.834-14.508-1.115c-2.596-0.184-5.27-0.194-7.945-0.301
|
||||
c-2.68,0.021-5.383-0.056-8.06,0.112c-2.673,0.093-5.338,0.28-7.913,0.576c-2.572,0.327-5.094,0.667-7.491,1.172
|
||||
c-2.386,0.519-4.69,1.073-6.827,1.773c-2.121,0.715-4.15,1.458-5.95,2.335c-1.815,0.854-3.463,1.766-4.893,2.699
|
||||
c-1.44,0.909-2.676,1.859-3.669,2.645c-0.514,0.411-0.962,0.782-1.36,1.102c-0.392,0.365-0.722,0.676-0.992,0.928
|
||||
C88.953,158.421,88.652,158.686,88.652,158.686z"/>
|
||||
<path fill="#231F20" d="M284.468,157.075c0,0-0.278-0.284-0.802-0.813c-0.25-0.271-0.562-0.604-0.924-0.997
|
||||
c-0.374-0.348-0.803-0.747-1.281-1.192c-0.936-0.856-2.107-1.888-3.48-2.896c-1.356-1.026-2.938-2.055-4.693-3.031
|
||||
c-1.733-1-3.706-1.879-5.771-2.739c-2.078-0.848-4.346-1.56-6.687-2.243c-2.353-0.67-4.851-1.182-7.396-1.688
|
||||
c-2.546-0.474-5.189-0.845-7.852-1.124c-2.659-0.352-5.359-0.46-8.032-0.668c-2.683-0.077-5.347-0.252-7.948-0.248
|
||||
c-5.207-0.083-10.184,0.002-14.545,0.107c-2.216,0.061-4.234,0.116-6.029,0.164c-1.83,0.01-3.424,0.113-4.778,0.093
|
||||
c-2.687,0.052-4.299-0.013-4.299-0.013s0.282-0.279,0.853-0.753c0.573-0.458,1.393-1.203,2.501-2.007
|
||||
c1.117-0.787,2.48-1.771,4.126-2.721c1.637-0.991,3.541-1.977,5.665-2.982c1.087-0.456,2.216-0.933,3.38-1.424
|
||||
c1.188-0.446,2.428-0.86,3.715-1.301c2.582-0.79,5.346-1.537,8.274-2.041c1.456-0.299,2.955-0.487,4.481-0.651
|
||||
c1.52-0.217,3.08-0.28,4.649-0.363c3.151-0.119,6.369-0.01,9.595,0.327c3.211,0.422,6.435,0.936,9.537,1.879
|
||||
c1.562,0.426,3.084,0.94,4.572,1.535c1.487,0.566,2.943,1.201,4.331,1.92c5.591,2.801,10.251,6.688,13.308,10.715
|
||||
c1.53,2.009,2.697,4.004,3.5,5.86c0.819,1.851,1.305,3.507,1.599,4.927c0.333,1.423,0.362,2.494,0.397,3.229
|
||||
C284.455,156.679,284.468,157.075,284.468,157.075z"/>
|
||||
<path fill="#EC1C24" d="M159.606,193.566c8.195-14.061,26.514-13.454,39.519-7.108c3.211,1.565,7.952-4.404,21.914-3.785
|
||||
c14.748,0.652,25.139,14.76,26.169,29.503c0.842,11.993,10.032,16.975,10.032,16.975s-9.206,15.434-20.797,38.101
|
||||
c-14.689,26.586-64.421,25.285-82.202-8.062c-10.557-19.803-21.771-35.438-21.771-35.438S143.681,220.877,159.606,193.566z"/>
|
||||
<path fill="#F3CEA5" d="M233.488,231.941c0,0-0.211,0.23-0.618,0.633c-0.415,0.391-1.004,1.001-1.791,1.703
|
||||
c-0.39,0.359-0.824,0.746-1.31,1.156c-0.513,0.393-1.088,0.785-1.703,1.226c-0.614,0.44-1.293,0.877-2.008,1.358
|
||||
c-0.717,0.489-1.5,0.846-2.311,1.308c-0.812,0.44-1.678,0.866-2.573,1.327c-0.913,0.395-1.876,0.76-2.864,1.16
|
||||
c-1.974,0.834-4.149,1.369-6.405,1.983c-1.132,0.276-2.302,0.45-3.484,0.661c-0.593,0.102-1.188,0.204-1.789,0.307
|
||||
c-0.604,0.053-1.212,0.104-1.821,0.156c-1.222,0.079-2.453,0.249-3.693,0.251c-1.24,0.006-2.487-0.014-3.733-0.034
|
||||
c-1.245-0.018-2.483-0.188-3.72-0.302c-0.617-0.063-1.232-0.127-1.846-0.207c-0.608-0.095-1.213-0.221-1.815-0.33
|
||||
c-1.205-0.226-2.402-0.435-3.563-0.741c-1.158-0.326-2.301-0.637-3.41-0.992c-1.116-0.319-2.183-0.76-3.22-1.182
|
||||
c-0.518-0.212-1.029-0.422-1.534-0.63c-0.507-0.196-1-0.414-1.47-0.676c-1.9-0.979-3.681-1.884-5.206-2.96
|
||||
c-0.767-0.523-1.503-1.01-2.185-1.495c-0.666-0.521-1.283-1.033-1.852-1.522c-1.141-0.974-2.107-1.828-2.817-2.658
|
||||
c-0.735-0.785-1.264-1.452-1.638-1.881c-0.367-0.438-0.549-0.687-0.549-0.687s0.302,0.072,0.867,0.207
|
||||
c0.55,0.153,1.375,0.343,2.365,0.644c0.979,0.32,2.211,0.604,3.581,0.961c0.689,0.166,1.39,0.397,2.151,0.58
|
||||
c0.762,0.172,1.562,0.354,2.397,0.541c1.626,0.447,3.447,0.73,5.302,1.14c0.921,0.224,1.906,0.329,2.882,0.506
|
||||
c0.99,0.131,1.958,0.405,2.992,0.487c1.025,0.111,2.051,0.275,3.089,0.431c0.517,0.087,1.052,0.097,1.581,0.149
|
||||
c0.526,0.058,1.057,0.115,1.588,0.174c0.531,0.055,1.062,0.127,1.6,0.168c0.539,0.019,1.077,0.053,1.615,0.089
|
||||
c1.08,0.042,2.156,0.2,3.24,0.198c1.084,0.025,2.166,0.053,3.246,0.104c1.079,0.025,2.155-0.006,3.226-0.003
|
||||
c2.146,0.053,4.239-0.169,6.302-0.194c2.031-0.224,4.055-0.238,5.934-0.523c0.95-0.096,1.875-0.209,2.787-0.282
|
||||
c0.894-0.132,1.756-0.28,2.602-0.39c1.716-0.188,3.214-0.48,4.596-0.711c0.696-0.104,1.348-0.219,1.971-0.297
|
||||
c0.622-0.131,1.192-0.25,1.709-0.357c1.032-0.217,1.873-0.328,2.435-0.432C233.178,231.973,233.488,231.941,233.488,231.941z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 6.1 KiB |
|
@ -1,60 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="550px" height="550px" viewBox="-119.308 -76.564 550 550" enable-background="new -119.308 -76.564 550 550"
|
||||
xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#FFFFFF" d="M170.544,137.515c-20.367,14.509-6.455,36.763,15.367,35.446c22.026-1.311,72.6,11.714,84.758-13.486
|
||||
C297.285,104.302,191.251,122.738,170.544,137.515C161.852,143.705,185.56,126.801,170.544,137.515z"/>
|
||||
<path fill="#FFFFFF" d="M162.255,96.077c-7.345,6.5-7.59,16.066-2.086,23.809c8.896,12.441,22.86,7.643,35.291,5.155
|
||||
c15.899-3.181,60.977-0.028,64.656-20.233C270.22,49.553,181.905,78.69,162.255,96.077
|
||||
C154.837,102.647,184.021,76.819,162.255,96.077z"/>
|
||||
<path fill="#FFFFFF" d="M239.044,174.366c-20.393-0.729-54.571-6.287-69.414,11.935c-17.746,21.795,21.174,34.35,35.566,38.506
|
||||
c18.034,5.209,44.348,12.816,57.229-6.117C275.306,199.764,261.093,175.138,239.044,174.366
|
||||
C220.919,173.717,256.907,174.991,239.044,174.366z"/>
|
||||
<path fill="#FFFFFF" d="M157.497,93.978c16.782-12.917,36.779-20.151,57.432-23.992c14.131-2.635,30.313-7.809,12.996-23.727
|
||||
C202.874,23.241,129.894,61.457,157.497,93.978C177.938,78.245,147.569,82.283,157.497,93.978z"/>
|
||||
<g>
|
||||
<path fill="#FFFFFF" d="M92.718,252.908c19.169,12.041,36.049,28.307,42.513,50.615c6.091,21.039,1.184,50.614,30.805,53.139
|
||||
c26.652,2.301,29.416-33.986,28.387-52.596c-1.551-28.18-14.588-52.062-37.713-68.379c12.183-2.088,24.364-4.181,36.545-6.271
|
||||
c-15.277-6.637-61.725-34.374-31.276-52.983c-17.726-12.784-17.2-30.642-0.359-43.938c-18.104-12.907-12.999-21.332-18.258-40.033
|
||||
c-5.771-20.531-6.353-35.972,20.394-41.561c-40.553,5.912-106.982,4.196-118.688,55.019c-2.496,10.832-2.359,22.149-1.183,33.135
|
||||
c1.54,14.219-4.803,27.1-5.206,41.146C37.729,212.992,67.358,237.014,92.718,252.908
|
||||
C118.691,269.221,77.217,243.191,92.718,252.908z"/>
|
||||
<path fill="#FFFFFF" d="M170.771,9.064c-2.172,1.105-4.34,2.323-6.484,3.641c-11.731,2.444-32.728,4.51-44.623,5.678
|
||||
c-9.721,0.956-13.568,1.352-16.61,1.962C35.832,33.059,6.568,68.877,5.217,140.062c-0.093,4.819-1.099,10.639-2.168,16.804
|
||||
c-2.884,16.69-6.481,37.458,3.703,59.669c11.805,25.738,37.366,52.957,64.044,68.335l0.219,0.169l1.02,0.639
|
||||
c16.979,10.733,23.158,20.396,28.316,44.558c6.011,39.879,31.678,65.578,65.624,65.578c5.088,0,10.346-0.599,15.622-1.775
|
||||
c34.767-7.756,54.046-40.525,51.565-87.652c-0.601-11.399-2.707-24.752-6.544-37.76c3.499,0.34,6.849,0.509,10.114,0.509
|
||||
c38.864,0,54.842-23.876,60.908-38.102c6.27-14.71,6.545-30.86,1.619-45.295c6.902-9.824,11.149-21.776,11.978-34.765
|
||||
c1.037-16.193-3.489-31.422-12.351-43.338c0.531-7.476-0.354-15.351-2.698-23.349c-4.067-13.879-12.147-26.453-22.511-35.696
|
||||
c-1.397-5.847-3.959-11.559-7.65-16.938c-13.191-19.216-38.652-30.387-55.914-31.14c-1.221-0.054-2.426-0.08-3.613-0.08
|
||||
c-12.428,0-24.442,2.899-35.713,8.623"/>
|
||||
<path fill="#231F20" d="M33.621,204.215c10.037,21.887,32.566,44.321,53.376,55.86c0.295,0.221,0.575,0.429,0.831,0.62
|
||||
c26.339,16.649,35.521,35.17,41.635,64.338c3.314,23.511,17.321,46.489,45.697,40.155c49.61-11.065,25.081-120.181-0.976-123.173
|
||||
c12.129-2.125,24.266-4.188,36.403-6.255c22.026,5.441,49.221,8.646,59.862-16.321c6.162-14.455,1.271-30.441-9.7-39.282
|
||||
c25.539-10.25,28.693-49.963,4.916-63.24c10.34-15.362-1.771-44.087-21.164-52.482c6.088-18.129-21.521-33.777-35.679-34.394
|
||||
c-9.442-0.417-17.42,1.695-24.651,5.369c0-0.012,0.002-0.025,0-0.034c0.002,0.009-0.006,0.022-0.004,0.036
|
||||
c-2.748,1.396-5.395,3.009-7.964,4.818c-18.286,5.097-62.049,7.953-67.427,9.114C53.167,59.8,35.801,86.287,34.771,140.622
|
||||
C34.366,161.877,24.077,183.406,33.621,204.215z M260.833,207.342c-7.533,19.649-32.582,14.041-47.851,10.115
|
||||
c-8.812-2.266-53.341-13.945-32.733-28.58c3.228-2.297,8.034-3.867,13.741-4.913c17.504,1.494,37.365,1.641,54.101-0.909
|
||||
c3.312,0.188,6.309,0.362,8.832,0.484C262.154,189.916,264.335,198.487,260.833,207.342z M250.484,163.634
|
||||
c-9.089,0.304-18.396,0.611-27.707,0.734c-6.405-0.289-13.135-0.44-19.783-0.096c-4.521-0.121-9.013-0.312-13.44-0.618
|
||||
c-24.941,2.332-18.954-18.59-18.288-27.658c0.598-0.455,1.184-0.905,1.743-1.33c4.961,1.284,10.067,1.793,14.83,1.339
|
||||
c17.727-1.69,35.725-5.71,53.545-8.507c6.438,1.39,12.142,3.514,16.406,6.643C267.833,142.295,264.917,163.448,250.484,163.634z
|
||||
M242.423,108.709c-2.104,1.033-4.445,1.888-6.938,2.618c-8.097,0.327-16.578,1.729-24.844,3.938
|
||||
c-10.044,0.874-20.067,1.43-27.9,3.031c-7.136,1.456-19.395-0.354-17.135-10.994c1.256-5.628-0.376-8.416-3.564-11.875
|
||||
c14.508-7.146,34.487-11.958,47.807-14.984c3.761-0.853,8.478-1.31,13.211-2.083c3.926,0.277,7.629,0.902,10.921,2.04
|
||||
C245.925,84.51,261.615,106.587,242.423,108.709z M155.544,60.764c26-12.812,69.963-14.247,69.963-1.807
|
||||
c-24.998,3.814-55.776,12.289-77.252,27.11c-1.78-7.684-3.121-13.859-3.221-14.248C147.189,68.28,151.057,64.517,155.544,60.764z
|
||||
M148.866,176.693c-0.066,0.103-0.107,0.207-0.172,0.312C148.686,176.951,148.747,176.901,148.866,176.693z M62.385,90.061
|
||||
C74.368,74.97,94.09,70.775,112.027,67.396c6.252-1.376,32.013-13.519,37.185-8.872c-5.177-3.663-28.547,7.563-18.721,28.005
|
||||
c1.782,8.326,4.832,13.434,5.207,23.274c-0.006-0.102,9.381,25.433,11.584,23.884c-11.205,12.959-10.665,31.013,1.412,43.322
|
||||
c-11.304,18.524,0.622,38.056,17.116,47.907c0.118,0.088,1.532-0.104,3.176-0.385c-10.535,2.451-31.194,7.506-34.351,5.975
|
||||
c31.017,23.391,60.317,50.249,49.885,95.066c-7.186,29.937-32.71,24.183-36.773-2.441c-4.156-34.713-27.054-59.17-56.686-77.898
|
||||
c-9.724-2.244-15.367-2.838-18.262-2.377c-15.498-21.883-23.021-49.957-16.223-77.92C62.527,140.44,45.479,111.354,62.385,90.061z
|
||||
"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 5.8 KiB |
|
@ -1,99 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="550px" height="550px" viewBox="-85.961 -76.564 550 550" enable-background="new -85.961 -76.564 550 550"
|
||||
xml:space="preserve">
|
||||
<path fill="#FFFFFF" d="M375.337,306.797c-0.469-4.74-1.526-9.275-3.114-13.497c1.934-10.411,0.559-21.495-4.283-31.819
|
||||
c-0.162-0.34-0.363-0.644-0.529-0.979c0.09-0.258,0.195-0.508,0.285-0.766c16.713-48.639,12.746-104.139-10.879-152.264
|
||||
C323.779,40.176,259.117,0,183.84,0C103.582,0,34.926,47.582,13,118.4c-28.951,93.5-4.13,155.04,21.792,190.2
|
||||
c48.036,65.161,132.493,88.283,190.222,88.283c0.004,0,0.006,0,0.01,0c2.152,0,4.275-0.029,6.371-0.089
|
||||
c13.791-0.395,23.117-7.666,29.648-15.994c4.46,2.898,10.195,5.138,17.535,5.745c8.615,3.305,19.753,7.126,32.374,7.126
|
||||
c0,0,0,0,0.003,0c8.932,0,17.656-1.896,25.936-5.638c13.137-5.941,28.543-21.57,32.572-39.955c0.826-3.771,1.148-7.541,0.989-11.231
|
||||
C374.557,327.583,376.355,317.076,375.337,306.797z"/>
|
||||
<g>
|
||||
<path fill="#F0584F" d="M123.774,226.914c-0.133-0.514-0.174-0.708,0.095-1.488c0.687-2.66,2.555-5.93,5.501-7.16
|
||||
c0.738-0.258,1.528-0.408,2.366-0.422c0.419-0.006,0.85,0.022,1.293,0.09c0.441,0.049,0.896,0.112,1.365,0.229
|
||||
c1.878,0.437,3.955,1.407,6.389,2.94c0.183,0.114,0.861,0.674,1.029,0.996c1.099,4.151,2.818,8.189,4.974,11.875
|
||||
c2.216,3.649,4.833,7.021,7.983,9.825c2.338,2.166,4.933,4.062,7.761,5.638c2.824,1.573,5.798,2.97,9.003,3.939
|
||||
c4.671,1.536,9.667,2.463,14.797,2.921c0,0,0.396,0.062,1.122,0.173c0.731,0.096,1.776,0.328,3.135,0.434
|
||||
c1.356,0.113,2.974,0.361,4.838,0.463c0.937,0.052,1.923,0.105,2.956,0.164c0.518,0.029,1.047,0.062,1.587,0.094
|
||||
c0.492,0.008,0.994,0.016,1.505,0.023c1.029,0.051,2.069-0.039,3.159-0.055c1.068-0.102,2.188-0.145,3.298-0.322
|
||||
c2.239-0.285,4.545-0.75,6.822-1.439c4.569-1.343,9.059-3.521,12.936-6.031c3.222-2.205,5.746-4.355,7.771-6.165
|
||||
c2.021-1.85,3.589-3.282,4.766-4.358c2.387-2.125,3.51-2.598,3.984-1.395c0.391,1.283-0.109,4.118-1.755,7.784
|
||||
c-1.633,3.651-4.435,8.106-8.465,12.33c0.489-0.359-1.573,2.084-5.726,5.229c-2.07,1.568-4.675,3.297-7.695,4.859
|
||||
c-3.014,1.568-6.445,2.956-10.014,3.971c-1.783,0.496-3.593,0.941-5.396,1.264c-0.9,0.19-1.798,0.308-2.688,0.432
|
||||
c-0.896,0.13-1.781,0.249-2.563,0.309c-1.62,0.146-3.188,0.287-4.679,0.422c-1.494,0.119-2.933,0.129-4.254,0.189
|
||||
c-2.639,0.148-4.89,0.014-6.458-0.001c-0.786-0.021-1.404-0.022-1.828-0.052c-0.424-0.033-0.651-0.053-0.651-0.053
|
||||
c-5.439-0.601-10.915-1.764-16.291-3.489c-4.259-1.325-8.418-3.209-12.4-5.429c-3.989-2.221-7.755-4.939-11.153-8.061
|
||||
c-4.546-4.08-8.348-8.93-11.464-14.099C127.672,238.273,125.326,232.734,123.774,226.914z"/>
|
||||
</g>
|
||||
<path fill="#231F20" d="M329.523,120.868C266.038-8.453,79.232,7.267,42.043,127.394c-54.975,177.551,96.398,241.658,188.482,239.01
|
||||
c7.151-0.205,11.892-13.756,16.869-23.053c2.693-0.683,5.289-1.566,7.717-2.749C354.366,292.344,363.589,190.257,329.523,120.868z
|
||||
M321.886,225.87c-33.116,126.562-146.812,95.719-153.837,96.966C30.024,280.747-14.096,138.397,139.444,63.779
|
||||
C239.479,15.169,349.143,121.729,321.886,225.87z"/>
|
||||
<path fill="#231F20" d="M276.364,165.563c0,8.1-1.354,14.72-7.13,19.011c-3.582,2.66-10.756,9.507-15.449,9.507
|
||||
c-22.58,0-24.165-20.543-24.165-33.672c0-13.126,9.935-23.764,22.185-23.764S276.364,152.435,276.364,165.563z"/>
|
||||
<circle fill="#231F20" cx="245.201" cy="161.605" r="77.524"/>
|
||||
<circle fill="#26A9E0" cx="246.434" cy="161.772" r="57.766"/>
|
||||
<g>
|
||||
<path fill="#FFFFFF" d="M276.572,307.569c-15.525-3.474-12.379-19.646,0.955-24.13c13.459-4.533,40.652-24.197,53.761-12.595
|
||||
C359.986,296.257,292.367,311.117,276.572,307.569C269.948,306.091,288.029,310.135,276.572,307.569z"/>
|
||||
<path fill="#FFFFFF" d="M281.229,333.453c-5.886-1.986-8.254-7.443-6.762-13.228c2.424-9.309,11.889-9.898,19.887-11.451
|
||||
c10.229-1.989,36.432-14.642,43.315-3.882C356.514,334.326,297.005,338.753,281.229,333.453
|
||||
C275.277,331.446,298.703,339.32,281.229,333.453z"/>
|
||||
<path fill="#FFFFFF" d="M308.943,269.859c-12.014,5.32-31.141,16.742-44.225,9.804c-15.662-8.298,4.67-24.894,12.307-30.747
|
||||
c9.563-7.334,23.516-18.04,35.6-10.223C324.712,246.505,321.934,264.117,308.943,269.859
|
||||
C298.27,274.592,319.473,265.207,308.943,269.859z"/>
|
||||
<g>
|
||||
<path fill="#FFFFFF" d="M278.879,335.802c13.021,3.411,26.643,2.778,39.871,0.032c9.053-1.876,19.919-2.785,13.27,10.552
|
||||
C322.391,365.676,269.932,361.189,278.879,335.802C294.732,339.958,275.663,344.929,278.879,335.802z"/>
|
||||
<g>
|
||||
<path fill="#231F20" d="M338.177,296.574c11.107-13.36,0.026-35.477-17.589-35.27c4.483-7.736,3.688-18.129-3.337-24.976
|
||||
c-12.551-12.231-28.678-2.877-40.715,5.812c-11.662,8.426-36.786,30.599-14.849,42.565c0.701,0.384,1.422,0.681,2.146,0.978
|
||||
c-6.666,8.979,0.023,21.068,12.973,24.43c-8.686,7.328-13.363,18.951-3.453,25.862c-0.185,1.903-0.09,3.521-0.828,5.998
|
||||
c16.658,4.278,38.404,1.689,55.099-2.328c3.437,8.539-34.906,20.703-51.631,13.824c0.112,0.169,0.208,0.332,0.325,0.504
|
||||
c2.537,3.757,6.918,1.344,10.337,3.095c12.805,4.993,24.423,9.267,37.712,3.261c8.308-3.756,21.115-19.382,13.308-28.378
|
||||
C347.342,322.459,347.934,302.955,338.177,296.574z M313.293,331.024c-8.669,1.461-21.691,3.449-32.021,2.812
|
||||
c1.09-2.74,1.408-4.738-0.642-7.666c-3.812-5.591,3.085-9.578,7.688-10.454c5.052-0.959,11.171-3.049,17.373-4.961
|
||||
c5.444-0.713,10.834-1.938,15.742-3.696c1.658-0.176,3.26-0.246,4.762-0.156c11.947-3.389,7.701,13.113,1.518,18.349
|
||||
c-1.701,1.442-3.768,2.695-6.045,3.8C318.661,329.742,315.736,330.611,313.293,331.024z M283.377,251.282
|
||||
c8.216-5.929,21.87-15.188,30.936-5.671c4.145,4.267,4.834,9.731,3.186,14.664c-1.487,0.683-3.23,1.496-5.178,2.408
|
||||
c-10.562,2.547-22.342,7.377-32.428,12.431c-3.677,0.778-6.957,1.062-9.431,0.508
|
||||
C254.759,272.141,278.645,254.705,283.377,251.282z M281.869,287.932c2.556-1.231,5.189-2.406,7.847-3.557
|
||||
c4.035-1.396,7.986-3.094,11.73-4.795c5.624-2.184,11.288-4.264,16.819-6.282c8.664-3.358,15.313,8.129,11.211,15.249
|
||||
c-1.809,2.803-4.683,5.373-8.162,7.704c-11.332,2.688-23.036,4.731-34.062,8.031c-3.281,0.983-6.538,2.755-9.427,5.003
|
||||
c-0.009,0-0.015,0-0.021,0C276.223,304.787,265.296,292.92,281.869,287.932z"/>
|
||||
<path fill="#231F20" d="M275.993,353.471c-3.812-5.691-5.179-10.645-6.95-15.042
|
||||
C266.952,346.395,270.174,351.077,275.993,353.471z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path fill="#FFFFFF" d="M229.84,155.754c0,7.553-6.125,13.681-13.682,13.681s-13.682-6.128-13.682-13.681
|
||||
c0-7.56,6.125-13.682,13.682-13.682S229.84,148.194,229.84,155.754z"/>
|
||||
<circle fill="#FFFFFF" cx="245.292" cy="189.446" r="22.549"/>
|
||||
<path fill="#231F20" d="M87.469,204.523c0,0-0.08-0.394-0.229-1.121c-0.128-0.721-0.333-1.771-0.335-3.232
|
||||
c-0.033-1.448,0.068-3.17,0.457-5.157c0.365-1.989,1.054-4.195,2.096-6.493c2.069-4.608,5.736-9.438,10.552-13.42
|
||||
c1.194-1.01,2.461-1.959,3.789-2.841c1.318-0.912,2.687-1.755,4.115-2.521c2.812-1.612,5.834-2.833,8.866-3.966
|
||||
c3.067-1.054,6.178-1.876,9.271-2.471c1.547-0.267,3.079-0.561,4.611-0.688c1.523-0.184,3.028-0.338,4.513-0.368
|
||||
c2.969-0.169,5.828-0.06,8.518,0.131c1.348,0.142,2.651,0.267,3.907,0.436c1.247,0.217,2.452,0.428,3.61,0.629
|
||||
c2.298,0.502,4.37,1.033,6.188,1.633c1.817,0.556,3.364,1.212,4.632,1.726c1.256,0.534,2.224,1.081,2.886,1.395
|
||||
c0.656,0.333,1.003,0.541,1.003,0.541s-1.565,0.428-4.186,0.979c-1.324,0.321-2.895,0.582-4.677,0.98
|
||||
c-1.757,0.356-3.744,0.754-5.905,1.194c-4.278,0.873-9.142,1.906-14.198,3.153c-2.542,0.582-5.095,1.348-7.687,2.025
|
||||
c-2.553,0.802-5.166,1.514-7.672,2.452c-2.532,0.867-5.023,1.823-7.402,2.856c-2.363,1.06-4.679,2.12-6.823,3.302
|
||||
c-2.129,1.188-4.171,2.39-6.012,3.682c-1.814,1.3-3.542,2.601-5.003,3.963c-1.49,1.339-2.803,2.699-3.895,4.002
|
||||
c-1.114,1.292-2.019,2.56-2.741,3.602c-0.368,0.54-0.698,1.027-0.98,1.448c-0.267,0.464-0.49,0.854-0.677,1.176
|
||||
C87.677,204.186,87.469,204.523,87.469,204.523z"/>
|
||||
<path fill="#231F20" d="M84.328,129.534c0,0,0.392-0.074,1.125-0.208c0.359-0.08,0.801-0.175,1.324-0.288
|
||||
c0.505-0.071,1.084-0.151,1.734-0.244c1.25-0.163,2.806-0.338,4.507-0.374c1.695-0.065,3.583,0.003,5.582,0.205
|
||||
c1.989,0.175,4.109,0.585,6.292,1.06c2.188,0.502,4.454,1.214,6.763,2.001c2.312,0.799,4.653,1.812,7.025,2.854
|
||||
c2.36,1.072,4.736,2.283,7.075,3.578c2.373,1.229,4.652,2.696,6.962,4.056c2.239,1.473,4.522,2.856,6.65,4.347
|
||||
c4.312,2.918,8.337,5.837,11.85,8.426c1.778,1.318,3.402,2.518,4.846,3.586c1.493,1.057,2.74,2.052,3.859,2.815
|
||||
c2.173,1.582,3.536,2.452,3.536,2.452s-0.077-0.392-0.27-1.104c-0.208-0.704-0.458-1.781-0.9-3.073
|
||||
c-0.466-1.286-1.018-2.877-1.826-4.599c-0.769-1.746-1.764-3.643-2.927-5.686c-0.63-0.995-1.283-2.034-1.954-3.103
|
||||
c-0.715-1.045-1.493-2.097-2.295-3.195c-1.663-2.123-3.5-4.323-5.608-6.407c-1.019-1.087-2.141-2.096-3.296-3.106
|
||||
c-1.119-1.048-2.366-1.995-3.601-2.963c-2.518-1.9-5.208-3.655-8.043-5.226c-2.874-1.496-5.81-2.921-8.889-3.928
|
||||
c-1.52-0.543-3.07-0.998-4.625-1.363c-1.544-0.392-3.097-0.707-4.646-0.909c-6.182-0.911-12.227-0.398-17.036,1.152
|
||||
c-2.405,0.769-4.504,1.73-6.224,2.791c-1.736,1.048-3.079,2.126-4.133,3.121c-1.083,0.977-1.725,1.835-2.176,2.417
|
||||
C84.565,129.217,84.328,129.534,84.328,129.534z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 9.1 KiB |
|
@ -1,19 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="550px" height="550px" viewBox="0 0 550 550" enable-background="new 0 0 550 550" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#FFFFFF" d="M405.188,83.625c-12.981-4.652-26.33-7.009-39.682-7.009c-32.229,0-64.362,14.062-92.078,39.577
|
||||
c-4.251-4.12-7.979-7.578-9.813-9.096c-22.675-18.704-49.315-28.593-77.035-28.593c-20.612,0-41.31,5.714-59.878,16.522
|
||||
c-31.396,17.634-59.658,48.545-75.659,82.785c-20.474,43.936-28.3,110.994,50.703,180.941
|
||||
c46.296,40.986,108.883,71.457,154.583,93.705l2.356,1.146c0.929,0.508,1.88,0.969,2.851,1.391l37.554,18.391
|
||||
c0,0,180.547-113.275,208.379-208.913C528.599,189.847,484.63,112.101,405.188,83.625z"/>
|
||||
<path fill="#EE4036" d="M276.211,417.891c12.285,1.695,12.34-4.02,6.492,8.115c-85.112-41.695-253.535-117.604-199.63-233.271
|
||||
c12.292-26.302,35.257-52.559,61.172-67.035c32.051-18.783,68.468-14.787,96.885,8.659c3.176,2.623,34.549,32.413,31.713,36.136
|
||||
c27.132-38.738,71.108-71.279,120.424-53.604c57.24,20.519,97.48,76.929,80.199,137.95
|
||||
c-25.957,89.207-117.41,140.075-195.729,176.312c51.723-41.762,206.95-182.596,129.942-248.605
|
||||
c-34.086-29.215-76.645-27.041-103.692,13.896c-2.963,4.49-36.04,61.062-32.605,64.044
|
||||
c-18.579-43.202-50.354-123.388-103.915-97.417C63.586,249.091,192.26,376.773,276.211,417.891z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
|
@ -1,98 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="550px" height="550px" viewBox="-85.106 -60.017 550 550" enable-background="new -85.106 -60.017 550 550"
|
||||
xml:space="preserve">
|
||||
<path fill="#FFFFFF" d="M358.26,107.159C325.2,39.814,260.49-0.39,185.16-0.39c-80.315,0-149.021,47.616-170.962,118.485
|
||||
C-8.917,192.74,2.227,247.009,20.843,283.776c2.24,14.188,10.557,28.049,24.308,39.6c2.642,2.222,3.657,6.07,5.568,17.295
|
||||
c1.946,11.453,4.578,26.938,14.747,41.339c15.615,26.611,66.25,47.957,87.813,47.957c25.41,0,44.236-14.791,59.025-33.646
|
||||
c4.824,0.293,9.532,0.452,14.062,0.452c0.002,0,0.006,0,0.01,0c2.153,0,4.278-0.027,6.375-0.086
|
||||
c21.142-0.606,31.842-17.339,37.978-29.322c48.32-23.761,82.34-61.033,98.418-107.836
|
||||
C385.871,210.853,381.899,155.315,358.26,107.159z"/>
|
||||
<path fill="#231F20" d="M330.949,120.564C267.418-8.848,80.478,6.881,43.26,127.095c-55.014,177.678,96.467,241.83,188.619,239.18
|
||||
c7.159-0.204,11.904-13.765,16.888-23.065c2.692-0.681,5.285-1.566,7.717-2.748C355.81,292.16,365.037,190.007,330.949,120.564z
|
||||
M323.306,225.644c-33.135,126.631-146.877,95.798-153.946,97.033c-138.125-42.119-182.278-184.57-28.627-259.24
|
||||
C240.836,14.79,350.581,121.426,323.306,225.644z"/>
|
||||
<path fill="#231F20" d="M78.057,116.319c0,0,0.098-0.386,0.282-1.109c0.189-0.71,0.45-1.747,1.081-3.066
|
||||
c0.595-1.325,1.42-2.834,2.627-4.465c1.185-1.64,2.757-3.333,4.686-4.97c3.85-3.271,9.242-6.058,15.307-7.587
|
||||
c1.513-0.403,3.067-0.71,4.644-0.94c1.58-0.258,3.185-0.431,4.799-0.51c3.235-0.25,6.494-0.054,9.725,0.227
|
||||
c3.22,0.365,6.384,0.958,9.436,1.753c1.512,0.419,3.025,0.817,4.463,1.358c1.457,0.492,2.882,0.998,4.236,1.604
|
||||
c2.752,1.125,5.295,2.454,7.643,3.78c1.158,0.71,2.281,1.384,3.342,2.074c1.034,0.733,2.033,1.439,2.992,2.12
|
||||
c1.858,1.444,3.509,2.817,4.889,4.136c1.403,1.284,2.521,2.544,3.441,3.553c0.915,1.023,1.551,1.929,2.012,2.497
|
||||
c0.447,0.588,0.673,0.921,0.673,0.921s-1.598-0.285-4.207-0.915c-1.324-0.273-2.862-0.716-4.646-1.124
|
||||
c-1.742-0.434-3.709-0.927-5.848-1.461c-4.242-1.046-9.083-2.205-14.185-3.251c-2.547-0.565-5.182-0.968-7.818-1.473
|
||||
c-2.656-0.375-5.321-0.856-7.988-1.082c-2.66-0.303-5.321-0.511-7.915-0.601c-2.592-0.056-5.14-0.094-7.582,0.055
|
||||
c-2.437,0.159-4.802,0.365-7.018,0.742c-2.202,0.393-4.32,0.826-6.228,1.433c-1.923,0.57-3.689,1.233-5.237,1.943
|
||||
c-1.562,0.686-2.928,1.444-4.026,2.073c-0.566,0.333-1.071,0.63-1.511,0.889c-0.439,0.304-0.812,0.562-1.114,0.773
|
||||
C78.389,116.103,78.057,116.319,78.057,116.319z"/>
|
||||
<path fill="#231F20" d="M287.028,103.677c0,0-0.361-0.164-1.043-0.47c-0.332-0.16-0.739-0.359-1.217-0.595
|
||||
c-0.478-0.187-1.021-0.403-1.629-0.647c-1.183-0.455-2.65-0.992-4.297-1.432c-1.638-0.466-3.486-0.847-5.474-1.122
|
||||
c-1.978-0.303-4.138-0.407-6.371-0.46c-2.249-0.035-4.616,0.125-7.049,0.338c-2.439,0.23-4.954,0.66-7.507,1.113
|
||||
c-2.545,0.481-5.146,1.097-7.729,1.8c-2.602,0.637-5.162,1.516-7.73,2.295c-2.523,0.903-5.066,1.705-7.494,2.649
|
||||
c-4.885,1.816-9.49,3.703-13.52,5.384c-2.035,0.854-3.904,1.643-5.56,2.341c-1.701,0.672-3.151,1.346-4.421,1.819
|
||||
c-2.481,1.022-4.016,1.551-4.016,1.551s0.17-0.365,0.522-1.016c0.374-0.63,0.864-1.623,1.604-2.776
|
||||
c0.758-1.14,1.668-2.551,2.86-4.034c1.16-1.515,2.58-3.125,4.199-4.838c0.847-0.816,1.724-1.669,2.632-2.554
|
||||
c0.941-0.844,1.95-1.682,2.982-2.558c2.119-1.671,4.432-3.373,6.974-4.906c1.252-0.807,2.58-1.527,3.946-2.235
|
||||
c1.337-0.754,2.769-1.378,4.201-2.025c2.895-1.254,5.931-2.32,9.06-3.178c3.146-0.771,6.337-1.461,9.573-1.71
|
||||
c1.604-0.168,3.218-0.243,4.814-0.229c1.596-0.014,3.18,0.051,4.736,0.216c6.229,0.581,11.982,2.513,16.287,5.157
|
||||
c2.158,1.32,3.971,2.755,5.393,4.194c1.439,1.425,2.486,2.795,3.28,4.01c0.823,1.208,1.239,2.195,1.538,2.866
|
||||
C286.874,103.308,287.028,103.677,287.028,103.677z"/>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M239.692,290.942c-5.336,6.43-10.916,12.652-16.469,18.897c-9.596,10.784-18.562,21.673-24.002,35.575
|
||||
c-5.517,14.116-13.546,27.227-25.332,37.434c-9.469,8.211-20.563,12.253-32.34,7.313c-12.619-5.295-24.652-11.919-37.638-16.567
|
||||
c-3.888-1.392-7.949-5.414-9.634-9.243c-4.009-9.109-8.737-18.688-9.36-28.323c-1.013-15.735-6.005-28.363-18.041-38.489
|
||||
c-3.431-2.883-6.335-6.599-8.785-10.39c-6.215-9.596-6.106-20.307-0.212-26.857c6.097-6.775,16.962-7.541,27.442-2.386
|
||||
c10.298,5.062,14.339,14.46,17.929,24.364c1.455,4.019,3.277,7.91,4.926,11.859c0.832-0.109,1.66-0.223,2.495-0.335
|
||||
c1.729-5.731,3.893-11.37,5.113-17.201c4.134-19.825,7.412-39.846,12.01-59.562c5.104-21.915,18.181-26.901,37.135-14.512
|
||||
c6.081-8.083,13.824-13.007,24.6-10.351c10.861,2.679,14.592,11.299,16.365,21.292c10.057-2.977,18.357-1.611,24.265,6.127
|
||||
c8.508,11.149,4.174,21.935-2.979,32.65C249.168,258.837,253.676,274.078,239.692,290.942z M161.032,280.884
|
||||
c6.56,2.896,8.581-1.529,10.836-6.389c8.407-18.135,17.166-36.105,25.539-54.258c4.629-10.039,1.713-18.89-6.855-22.399
|
||||
c-8.96-3.675-18.396,0.148-21.989,10.404c-7.032,20.065-13.176,40.442-19.677,60.684c-0.692,2.166-1.311,4.353-1.96,6.525
|
||||
c-0.851-0.263-1.695-0.522-2.542-0.791c1.308-4.607,2.552-9.236,3.934-13.827c3.711-12.369,7.551-24.702,11.171-37.098
|
||||
c0.919-3.131,2.407-6.805,1.549-9.585c-1.379-4.472-3.572-10.361-7.123-12.021c-3.569-1.665-10.683-0.452-13.583,2.305
|
||||
c-4.04,3.832-6.708,10.013-8.043,15.646c-5.712,24.133-10.591,48.469-16.139,72.646c-0.782,3.395-3.57,6.323-5.434,9.467
|
||||
c-2.915-2.899-6.629-5.359-8.554-8.816c-2.808-5.029-4.204-10.831-6.43-16.21c-3.938-9.532-10.557-16.108-21.124-17.56
|
||||
c-11.224-1.539-19.205,7.432-15.163,17.901c2.275,5.9,6.301,11.659,10.913,16.022c11.335,10.726,18.35,22.353,18.813,38.899
|
||||
c0.286,10.032,4.87,20.692,10.099,29.549c3.109,5.271,11.079,7.847,17.131,11.138c4.694,2.555,10.329,3.589,14.637,6.603
|
||||
c15.066,10.535,29.124,10.424,41.551-3.08c7.763-8.438,14.971-18.196,19.5-28.632c7.717-17.797,18.735-32.812,31.799-46.722
|
||||
c4.153-4.427,8.217-8.974,11.963-13.748c2.311-2.942,4.461-6.22,5.765-9.697c2.42-6.454-0.347-14.456-5.748-17.387
|
||||
c-6.335-3.448-12.19-1.584-16.366,3.538c-7.991,9.796-15.377,20.087-23.01,30.186c-1.346,1.774-2.643,3.59-3.904,5.305
|
||||
C181.851,293.151,171.441,287.017,161.032,280.884z M219.938,217.924c-6.561-2.568-13.465-0.643-17.57,6.591
|
||||
c-10.361,18.234-20.175,36.797-29.837,55.411c-0.729,1.408,1.093,5.989,2.346,6.263c6.214,1.35,11.215,13.365,16.599,6.795
|
||||
c13.59-16.553,24.765-35.084,36.83-52.877c0.826-1.207,1.051-2.821,1.314-3.562C230.974,228.613,226.526,220.502,219.938,217.924z
|
||||
"/>
|
||||
<path fill="#FFFFFF" d="M192.589,299.481c-10.738-6.33-21.147-12.467-31.557-18.599c6.56,2.896,8.581-1.53,10.836-6.389
|
||||
c8.407-18.136,17.166-36.104,25.539-54.257c4.629-10.04,1.713-18.892-6.855-22.4c-8.96-3.675-18.396,0.148-21.989,10.404
|
||||
c-7.032,20.064-13.176,40.441-19.677,60.684c-0.692,2.166-1.311,4.352-1.96,6.525c-0.851-0.262-1.695-0.522-2.542-0.791
|
||||
c1.308-4.607,2.552-9.236,3.934-13.827c3.711-12.369,7.551-24.702,11.171-37.099c0.919-3.131,2.407-6.803,1.549-9.584
|
||||
c-1.379-4.472-3.572-10.361-7.123-12.021c-3.569-1.665-10.683-0.452-13.583,2.305c-4.04,3.832-6.708,10.013-8.043,15.646
|
||||
c-5.712,24.133-10.591,48.469-16.139,72.646c-0.782,3.394-3.57,6.322-5.434,9.467c-2.915-2.9-6.629-5.36-8.554-8.817
|
||||
c-2.808-5.028-4.204-10.831-6.43-16.21c-3.938-9.532-10.557-16.109-21.124-17.559c-11.224-1.539-19.205,7.431-15.163,17.9
|
||||
c2.275,5.9,6.301,11.659,10.913,16.022c11.335,10.726,18.35,22.353,18.813,38.899c0.286,10.032,4.87,20.692,10.099,29.548
|
||||
c3.109,5.271,11.079,7.848,17.131,11.139c4.694,2.555,10.329,3.589,14.637,6.603c15.066,10.535,29.124,10.424,41.551-3.08
|
||||
c7.763-8.438,14.971-18.196,19.5-28.632c7.717-17.797,18.735-32.812,31.799-46.722c4.153-4.428,8.217-8.973,11.963-13.748
|
||||
c2.311-2.941,4.461-6.221,5.765-9.697c2.42-6.453-0.347-14.457-5.748-17.387c-6.335-3.448-12.19-1.584-16.366,3.538
|
||||
c-7.991,9.796-15.377,20.087-23.01,30.185C195.147,295.951,193.851,297.767,192.589,299.481z"/>
|
||||
<path fill="#FFFFFF" d="M229.619,236.544c1.354-7.931-3.093-16.042-9.683-18.62c-6.56-2.568-13.465-0.643-17.569,6.591
|
||||
c-10.361,18.234-20.175,36.797-29.837,55.411c-0.729,1.408,1.093,5.989,2.346,6.263c6.214,1.35,11.215,13.365,16.6,6.795
|
||||
c13.588-16.553,24.764-35.084,36.828-52.877C229.131,238.899,229.354,237.284,229.619,236.544z"/>
|
||||
<path d="M91.228,365.693c-15.424-20.092-5.426-47.884-26.494-65.604c-41.165-34.588,18.842-71.379,44.35-12.301
|
||||
c7.229-22.468,5.515-95.252,37.838-95.252c17.28,0,9.786,6.56,26.485-1.942c5.525-2.609,11.168-3.165,16.92-1.664
|
||||
c10.365,2.562,15.842,10.637,18.136,20.444c5.603-1.316,11.095-0.812,16.483,1.526c24.072,11.999,1.879,33.343,16.937,44.743
|
||||
c18.105,13.694,4.091,33.385-7.212,46.301c-22.38,25.58-42.62,97.596-81.393,97.596
|
||||
C139.123,399.541,97.626,380.263,91.228,365.693z M184.641,298.667c-24.317-14.329-23.609-8.719-15.798-25.581
|
||||
c8.408-18.127,17.165-36.094,25.536-54.242c5.586-12.127-6.643-25.337-17.88-16.507c-16.056,12.612-21.667,58.025-27.345,77.295
|
||||
c-28.057-6.123,27.994-62.957,3.351-74.48c-18.177-8.504-32.095,90.061-41.103,102.429c-8.8-6.755-32.177-63.882-48.154-40.589
|
||||
c-8.726,12.727,19.61,34.041,24.147,43.466c9.595,19.931,1.838,45.89,25.738,57.305c46.05,21.997,56.762,12.236,81.92-33.33
|
||||
c3.109-5.628,62.97-72.404,34.433-72.404C206.233,262.026,208.031,312.45,184.641,298.667z M226.173,236.481
|
||||
c3.012-11.623-13.062-24.126-20.91-10.322c-10.262,18.068-19.978,36.436-29.544,54.876
|
||||
C180.321,315.068,224.386,243.399,226.173,236.481C226.239,236.222,226.021,237.05,226.173,236.481z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path fill="#231F20" d="M143.944,188.777c2.941,11.502-9.445-15.486-21.914-17.12c-12.474-1.634-27.036,17.464-25.401,4.991
|
||||
c1.636-12.47,14.003-33.443,26.473-31.809C135.575,146.473,140.83,176.588,143.944,188.777z"/>
|
||||
<path fill="#231F20" d="M230.502,185.633c-1.262,11.802,13.406-13.254,25.519-16.656c12.107-3.402,22.979,9.992,19.576-2.116
|
||||
c-3.402-12.11-18.619-28.999-30.729-25.599C232.755,144.667,231.843,173.125,230.502,185.633z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 9.9 KiB |
|
@ -1,54 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="550px" height="550px" viewBox="-85.106 -76.564 550 550" enable-background="new -85.106 -76.564 550 550"
|
||||
xml:space="preserve">
|
||||
<path fill="#FFFFFF" d="M224.294,395.615c-57.543,0-141.731-23.049-189.614-88C8.843,272.566-15.898,211.225,12.958,118.02
|
||||
C34.814,47.429,103.249,0,183.252,0c75.036,0,139.491,40.048,172.422,107.126c23.552,47.974,27.503,103.292,10.843,151.778
|
||||
c-16.017,46.621-49.908,83.742-98.035,107.405c-6.109,11.943-16.771,28.612-37.826,29.217c-2.09,0.06-4.205,0.089-6.353,0.089
|
||||
C224.3,395.615,224.298,395.615,224.294,395.615z"/>
|
||||
<path fill="#231F20" d="M328.469,120.482C265.187-8.426,78.979,7.245,41.908,126.984c-54.799,176.985,96.089,240.888,187.879,238.25
|
||||
c7.13-0.208,11.856-13.715,16.815-22.98c2.685-0.681,5.271-1.562,7.691-2.739C353.231,291.409,362.425,189.649,328.469,120.482z
|
||||
M320.854,225.148c-33.011,126.157-146.341,95.411-153.347,96.654C29.928,279.85-14.049,137.952,138.998,63.579
|
||||
C238.711,15.12,348.022,121.34,320.854,225.148z"/>
|
||||
<path fill="#231F20" d="M151.592,172.969c3.6,11.267-16.591,23.031-29.087,22.14c-12.5-0.891-19.564-18.912-18.673-31.413
|
||||
c0.891-12.492,11.326-26.333,23.823-25.443C140.153,139.145,147.779,161.04,151.592,172.969z"/>
|
||||
<path fill="#231F20" d="M276.548,166.215c-0.574,8.053-2.392,14.543-8.435,18.399c-3.753,2.392-11.371,8.688-16.037,8.357
|
||||
c-22.448-1.601-22.573-22.14-21.642-35.188c0.93-13.054,11.562-22.93,23.741-22.06C266.354,136.59,277.478,153.164,276.548,166.215z
|
||||
"/>
|
||||
<path fill="#231F20" d="M89.101,115.895c0,0,0.197-0.349,0.567-0.991c0.371-0.63,0.902-1.554,1.858-2.652
|
||||
c0.922-1.11,2.125-2.338,3.715-3.584c1.58-1.251,3.537-2.459,5.826-3.513c4.568-2.11,10.488-3.344,16.714-3.191
|
||||
c1.56,0.021,3.133,0.137,4.706,0.34c1.593,0.178,3.174,0.438,4.741,0.8c3.171,0.621,6.25,1.681,9.268,2.811
|
||||
c2.995,1.214,5.871,2.625,8.585,4.206c1.344,0.811,2.688,1.595,3.926,2.5c1.265,0.859,2.496,1.726,3.634,2.67
|
||||
c2.342,1.814,4.422,3.771,6.322,5.67c0.921,0.991,1.82,1.936,2.652,2.888c0.797,0.974,1.562,1.921,2.302,2.833
|
||||
c1.406,1.882,2.616,3.637,3.587,5.28c1.004,1.601,1.74,3.111,2.354,4.321c0.601,1.228,0.968,2.27,1.262,2.941
|
||||
c0.271,0.681,0.395,1.06,0.395,1.06s-1.45-0.702-3.788-2.001c-1.199-0.622-2.554-1.456-4.157-2.323
|
||||
c-1.555-0.881-3.312-1.879-5.222-2.965c-3.788-2.137-8.123-4.546-12.741-6.914c-2.29-1.22-4.715-2.317-7.107-3.504
|
||||
c-2.446-1.068-4.87-2.241-7.377-3.173c-2.471-1-4.969-1.915-7.433-2.696c-2.471-0.746-4.904-1.461-7.288-1.98
|
||||
c-2.379-0.494-4.706-0.926-6.931-1.157c-2.219-0.213-4.365-0.361-6.361-0.292c-1.997,0.035-3.869,0.192-5.549,0.464
|
||||
c-1.68,0.243-3.188,0.604-4.416,0.917c-0.63,0.163-1.188,0.317-1.681,0.447c-0.504,0.171-0.931,0.323-1.277,0.438
|
||||
C89.48,115.776,89.101,115.895,89.101,115.895z"/>
|
||||
<path fill="#231F20" d="M291.419,114.264c0,0-0.387-0.088-1.109-0.26c-0.357-0.092-0.793-0.207-1.308-0.346
|
||||
c-0.497-0.095-1.071-0.201-1.717-0.319c-1.243-0.222-2.776-0.471-4.47-0.583c-1.692-0.145-3.568-0.172-5.569-0.057
|
||||
c-1.991,0.083-4.119,0.394-6.315,0.767c-2.201,0.394-4.486,0.998-6.83,1.672c-2.334,0.687-4.713,1.589-7.121,2.519
|
||||
c-2.396,0.956-4.823,2.054-7.209,3.232c-2.427,1.118-4.763,2.465-7.125,3.714c-2.299,1.362-4.634,2.634-6.826,4.022
|
||||
c-4.424,2.702-8.57,5.428-12.188,7.834c-1.834,1.231-3.504,2.353-4.989,3.347c-1.531,0.986-2.822,1.92-3.975,2.625
|
||||
c-2.234,1.474-3.628,2.278-3.628,2.278s0.092-0.387,0.315-1.089c0.237-0.693,0.535-1.755,1.039-3.022
|
||||
c0.519-1.255,1.146-2.812,2.027-4.486c0.85-1.708,1.93-3.551,3.182-5.528c0.672-0.965,1.371-1.965,2.09-3.001
|
||||
c0.761-1.006,1.582-2.015,2.43-3.072c1.756-2.039,3.688-4.143,5.884-6.123c1.065-1.027,2.229-1.986,3.429-2.936
|
||||
c1.161-0.995,2.448-1.877,3.723-2.782c2.593-1.776,5.355-3.397,8.257-4.833c2.924-1.352,5.913-2.639,9.028-3.495
|
||||
c1.535-0.473,3.097-0.852,4.668-1.142c1.558-0.316,3.119-0.557,4.668-0.689c6.199-0.621,12.195,0.172,16.912,1.938
|
||||
c2.359,0.876,4.401,1.936,6.066,3.072c1.676,1.119,2.967,2.255,3.973,3.297c1.032,1.021,1.629,1.906,2.051,2.507
|
||||
C291.197,113.936,291.419,114.264,291.419,114.264z"/>
|
||||
<g>
|
||||
<path fill="#F0584F" d="M137.265,260.023c-0.214,0.277-0.289,0.375-0.944,0.487c-2,0.546-5.06,1.273-8.214,0.548
|
||||
c-3.011-0.764-6.262-2.933-6.518-10.261c0.004-0.261,0.188-1.418,0.448-1.897c3.785-5.188,8.577-9.68,13.905-12.991
|
||||
c5.318-3.339,11.03-5.7,16.795-7.341c14.016-3.836,28.189-3.574,41.648-1.168c6.216,1.156,12.345,2.695,18.272,4.839
|
||||
c0,0,7.292,2.899,16.123,8.541c4.365,2.909,9.15,6.399,13.445,10.551c4.299,4.132,8.193,8.739,11.108,13.295
|
||||
c5.088,7.638,6.694,13.492,7.101,16.863c0.399,3.399-0.256,4.462-1.424,3.962c-2.406-0.993-6.795-8.021-14.056-14.562
|
||||
c0.51,0.928-7.581-7.56-18.289-13.011c-5.244-2.826-10.854-5.062-15.129-6.514c-4.294-1.425-7.239-2.116-7.239-2.116
|
||||
c-4.326-1.43-8.76-2.557-13.23-3.333c-11.256-2.054-22.925-2.074-33.254,0.808C149.303,249.105,141.855,253.514,137.265,260.023z"
|
||||
/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 5.0 KiB |
|
@ -1,195 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="550px" height="550px" viewBox="-5.453 -43.611 550 550" enable-background="new -5.453 -43.611 550 550"
|
||||
xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#FFFFFF" d="M539.033,125.536l-0.236-4.41l-0.07-0.95c-0.131-1.541-0.314-2.885-0.518-4.241l-0.188-1.277
|
||||
c-0.516-3.321-1.209-6.684-2.064-9.997l-0.129-0.496l-0.768-2.597c-0.354-1.174-0.729-2.387-1.395-4.135l-1.549-3.94l-1.932-3.909
|
||||
c-3.496-6.919-8.115-12.93-13.732-17.877c-9.973-8.862-22.974-13.739-36.627-13.739c-2.852,0-5.726,0.216-8.545,0.648
|
||||
c-3.854,0.557-7.061,1.471-9.771,2.292l-0.869,0.276c-2.961,0.989-6.03,2.248-8.682,3.552c-2.198,1.058-3.729,1.939-4.757,2.528
|
||||
l-1.698,0.995c-1.532,0.943-3.079,1.917-4.312,2.783c-6.645,4.589-12.059,9.314-16.732,13.873c0.765-2.915,1.189-6.082,1.18-9.509
|
||||
c0,0,3.064-25.032-19.373-40.036l-0.809-0.685c-3.489-2.853-7.258-5.47-11.118-7.73c-6.938-4.096-13.451-6.787-19.011-8.989
|
||||
l-0.439-0.171c-10.908-4.129-22.677-7.447-35.963-10.146c-6.36-1.365-12.637-2.335-18.284-3.153
|
||||
c-6.364-0.962-12.799-1.709-18.951-2.208c-6.258-0.547-12.414-1.056-18.598-1.272c-3.185-0.141-6.441-0.251-9.889-0.306
|
||||
l-8.998-0.082c-12.519,0.027-25.199,0.658-37.425,1.854c-6.056,0.542-12.25,1.299-18.868,2.312
|
||||
c-7.388,1.111-13.104,2.14-18.499,3.331c-13.461,2.837-25.344,6.344-36.33,10.723l-0.532,0.22
|
||||
c-6.153,2.587-12.749,5.502-19.722,10.083c-4.866,3.171-9.073,6.618-13.026,10.702c-3.4,3.57-6.156,7.297-8.562,11.652
|
||||
c-0.586,1.082-1.137,2.173-1.646,3.273l-0.785,1.716l-0.842,2.281c-0.215,0.623-0.418,1.245-0.607,1.852
|
||||
c-2.35-1.719-4.838-3.432-7.479-5.097l-0.524-0.322c-5.702-3.435-12.827-7.294-22.453-9.854
|
||||
c-5.214-1.389-10.601-2.096-16.007-2.096c-10.913,0-21.315,2.88-30.094,8.329c-6.69,4.103-12.474,9.527-17.18,16.128l-0.215,0.306
|
||||
c-4.437,6.384-6.787,12.113-8.176,15.863L5.047,84.42c-1.356,3.889-2.428,7.832-3.23,11.883l-0.096,0.505
|
||||
c-0.325,1.67-0.625,3.356-0.8,4.709l-0.067,0.451c-0.164,1.121-0.426,2.9-0.559,5.175c-1.37,15.543,2.08,32.108,9.647,46.524
|
||||
c3.096,6.018,6.583,11.31,10.081,15.941c-1.955,5.952-2.864,12.126-2.626,18.279c0.072,8.515,2.378,15.849,4.146,20.711
|
||||
l0.196,0.541l0.22,0.536c0.974,2.394,2.261,5.355,4.13,8.691l-0.132,0.324l0.895,0.999c0.68,1.153,1.429,2.347,2.258,3.573
|
||||
l0.324,0.48c0.093,1.317,0.216,2.443,0.316,3.363l0.095,0.877l0.147,0.872c1.044,6.198,2.673,10.754,3.457,12.946l2.447,6.951
|
||||
l0.568,1.243c1.43,3.129,2.987,5.588,3.916,7.054l0.929,1.484l0.703,0.954c2.904,3.938,5.987,7.368,9.173,10.196
|
||||
c5.392,4.91,10.327,8.037,13.392,9.854c3.624,2.188,6.618,3.604,8.251,4.38l0.308,0.147c0.856,0.394,2.042,0.943,3.526,1.484
|
||||
c3.047,1.42,5.963,2.733,8.698,3.911c7.197,53.384,35.26,97.829,82.045,129.46c40.046,27.074,93.856,43.232,143.942,43.232
|
||||
c2.178,0,4.326-0.029,6.452-0.09c21.384-0.611,32.209-17.539,38.412-29.668c57.974-28.5,95.192-75.82,106.325-134.549
|
||||
c0.164-0.078,0.865-0.402,0.865-0.402c1.965-0.874,3.977-1.775,6.506-3.021l0.656-0.332c2.99-1.558,6.542-3.512,10.356-6.227
|
||||
c2.04-1.403,3.999-2.934,5.838-4.557c2.438-2.041,4.426-4.138,5.971-5.869c2.987-3.174,4.923-6.282,6.243-8.403l0.82-1.312
|
||||
l0.449-0.812c1.752-3.202,2.785-6.058,3.471-7.944l0.271-0.738c0.826-1.969,1.6-4.137,1.752-4.582
|
||||
c1.256-3.473,2.221-7.137,2.854-10.885l0.104-0.588l0.074-0.59c0.08-0.627,0.201-1.537,0.299-2.689l0.578-0.834
|
||||
c1.902-2.817,3.434-5.396,4.672-7.875c1.57-3.027,2.562-5.539,3.443-7.859l0.248-0.689c1.389-3.934,2.402-7.892,3.018-11.769
|
||||
l0.121-0.832c1.174-8.98,0.475-17.405-2.08-25.095c2.914-3.854,5.824-8.164,8.521-12.951
|
||||
C535.574,156.998,539.641,140.858,539.033,125.536z"/>
|
||||
<path fill="#FFFFFF" d="M141.465,173.221c-12.726-30.26-88.338-127.471-96.12-63.515c-3.461,28.454,27.828,49.004,38.39,61.538
|
||||
c-4.454,0.877-8.777,0.52-12.25,2.743c-3.607,2.31-8.296,6.535-9.005,11.004c-0.667,4.252,2.356,11.406,5.266,14.609
|
||||
c5.836,6.435,10.952,9.011,16.819,13.888c-17.979-0.603-11.878,10.877-10.771,16.927c1.359,7.403,10.639,13.932,15.574,16.881
|
||||
c15.653,9.336,13.075,8.639,30.554,17.485"/>
|
||||
<path fill="#FFFFFF" d="M405.626,189.893c12.727-30.259,80.426-129.783,88.207-65.827c3.456,28.453-27.83,49.005-38.39,61.537
|
||||
c4.453,0.878,8.772,0.521,12.246,2.745c3.61,2.308,8.299,6.534,9.004,11.003c0.668,4.252-2.352,11.405-5.262,14.61
|
||||
c-5.841,6.435-10.955,9.01-16.82,13.888c17.98-0.604,11.879,10.876,10.771,16.927c-1.358,7.404-10.64,13.931-15.575,16.879
|
||||
c-15.648,9.339-12.34,9.67-29.82,18.514"/>
|
||||
<g>
|
||||
<path fill="#231F20" d="M83.363,222.282C84.658,222.767,84.334,222.643,83.363,222.282L83.363,222.282z"/>
|
||||
<path fill="#231F20" d="M78.313,190.01L78.313,190.01C78.313,190.01,78.319,190.004,78.313,190.01L78.313,190.01z"/>
|
||||
<path fill="#231F20" d="M480.94,180.494l1.819-1.797c0.713-0.685,1.424-1.467,2.137-2.197c5.678-5.93,11.354-12.578,15.965-20.774
|
||||
c4.617-8.084,7.84-18.408,7.422-28.975l-0.219-3.934c-0.105-1.258-0.297-2.279-0.449-3.426c-0.354-2.261-0.83-4.603-1.455-7.019
|
||||
l-0.551-1.866c-0.182-0.601-0.355-1.208-0.699-2.106l-0.959-2.435l-1.23-2.498c-1.682-3.324-3.93-6.318-6.66-8.707
|
||||
c-5.439-4.865-13.014-6.847-20.26-5.702c-1.827,0.252-3.612,0.773-5.396,1.311c-1.761,0.589-3.584,1.346-4.961,2.035
|
||||
c-1.629,0.775-2.479,1.311-3.67,1.981c-1.056,0.648-2.131,1.306-3.092,1.979c-7.827,5.404-13.641,11.286-19.223,17.276
|
||||
c-5.512,6.008-10.504,12.19-15.254,18.496c-7.045,9.449-13.543,19.055-19.598,29.15c-64.121-93.689-201.778-89.608-259.128-10.669
|
||||
c-7.57-12.313-15.86-23.551-24.938-34.497c-5.218-6.212-10.697-12.262-16.674-18.083c-6.015-5.81-12.401-11.437-20.393-16.473
|
||||
c-4.093-2.468-8.512-4.884-14.492-6.474c-7.172-1.912-15.563-1.356-22.019,2.69c-3.252,1.977-6.047,4.674-8.28,7.802
|
||||
c-2.3,3.306-3.625,6.384-4.571,8.951c-0.915,2.621-1.593,5.157-2.067,7.562c-0.232,1.199-0.48,2.418-0.631,3.57
|
||||
c-0.16,1.181-0.364,2.254-0.416,3.679c-1.079,10.797,1.809,21.663,6.312,30.244c4.489,8.727,10.314,15.631,16.114,21.78
|
||||
l4.731,4.806l-1.184,1.09c-5.405,5.259-9.281,12.361-8.798,19.899c-0.068,3.688,1.062,7.528,2.292,10.913
|
||||
c1.126,2.771,2.286,5.205,4.144,7.955c-0.043-0.105,1.016,1.628,3.717,4.214c2.131,1.956,1.447,1.013,1.925,1.202
|
||||
c0.29,0.006,0.76,0.065,1.448,0.297l0.472,0.168c0.002,0.012-0.009,0.012-0.034,0.033c-0.051,0.039-0.172,0.106-0.297,0.313
|
||||
c-0.042,0.062-0.072,0.142-0.098,0.24c-0.026,0.065,0.03-0.046-0.065,0.166l-0.235,0.535l-0.24,0.535
|
||||
c-0.042,0.117-0.065,0.117-0.129,0.328l-0.194,0.669c-1.155,3.886-0.798,6.634-0.537,9.024c0.74,4.398,2.038,7.422,2.415,8.628
|
||||
c0.569,1.623,1.135,3.229,1.694,4.811c0.677,1.479,1.548,2.773,2.333,4.029c1.649,2.24,3.342,4.142,4.964,5.561
|
||||
c3.257,2.99,6.229,4.917,8.723,6.396c2.491,1.502,4.572,2.463,5.593,2.951c1.136,0.526,1.651,0.715,1.388,0.48
|
||||
c3.649,1.73,7.173,3.333,10.46,4.744c3.21,1.468,6.629,2.445,9.41,3.347c2.726,0.827,5.091,1.422,7.029,1.761
|
||||
c3.29,121.516,124.154,167.086,202.566,164.834c7.239-0.207,12.039-13.924,17.077-23.336c2.728-0.689,5.354-1.588,7.812-2.781
|
||||
c60.36-29.348,87.793-78.359,92.63-128.043c0.342-0.15,0.657-0.26,1.01-0.429c1.061-0.479,2.18-0.983,3.36-1.521
|
||||
c1.081-0.547,2.22-1.12,3.416-1.725c2.365-1.299,5.021-2.397,7.844-3.771c1.915-0.855,3.798-1.678,6.267-2.891
|
||||
c2.307-1.203,4.637-2.494,6.942-4.162c1.161-0.782,2.314-1.674,3.455-2.707c1.152-0.92,2.278-2.12,3.384-3.377
|
||||
c1.131-1.123,2.131-2.834,3.143-4.439c0.924-1.688,1.484-3.682,2.244-5.55c0.248-0.563,0.787-1.933,1.296-3.384
|
||||
c0.524-1.454,1.081-3.385,1.453-5.579c0.307-2.353,0.482-5.279-0.604-8.847c-0.201-0.641-0.3-0.773-0.452-1.181l-0.202-0.484
|
||||
l-0.02-0.086c-0.016-0.118-0.046-0.208-0.079-0.283c-0.124-0.246-0.229-0.331-0.253-0.375c0-0.057-0.132-0.002,0.441-0.191
|
||||
c0.791-0.253,1.307-0.325,1.644-0.341c0.336-0.015,0.513,0.042,0.623,0.103l0.069,0.039c-0.025,0.038,0.041-0.01,0.16-0.118
|
||||
c0.095-0.078,0.18-0.149,0.254-0.216c0.3-0.255,0.457-0.392,0.457-0.392l0.592-0.58l0.295-0.292l0.149-0.145l0.072-0.072
|
||||
l0.603-0.628l0.069-0.078c0.71-0.845,1.405-1.714,2.068-2.6c1.051-1.554,2.026-3.132,2.75-4.613
|
||||
c0.838-1.59,1.35-2.853,2.099-4.824c0.732-2.079,1.306-4.204,1.647-6.362c0.561-4.293,0.414-8.722-1.274-12.736
|
||||
c-1.484-4.055-4.171-7.655-7.315-10.736c-0.369-0.298-0.714-0.617-1.061-0.932l-0.041-0.034l-0.014-0.011l-0.037-0.015
|
||||
c-0.022-0.003-0.053-0.003-0.018-0.028l0.06-0.05C480.932,180.498,480.969,180.465,480.94,180.494z M78.156,220.341l-0.036-0.018
|
||||
l-0.005-0.003c-0.156-0.057-0.054-0.021,0.189,0.072c-0.024-0.013-0.047-0.01-0.073-0.021L78.156,220.341z M114.3,258.09
|
||||
c-3.82-3.406-9.614-7.898-17.837-14.574c-3.605-2.918-6.6-5.37-9.146-8.367c-0.652-0.719-1.223-1.439-1.683-2.158
|
||||
c-0.574-0.712-0.892-1.401-1.217-2.036c-0.457-0.665-0.375-1.186-0.568-1.609c-0.084-0.442,0.057-0.802-0.021-1.132
|
||||
c-0.241-1.566-0.479-3.126-0.716-4.668c-0.087-0.568-0.117-1.022-0.126-1.403c0.133,0.05,0.258,0.096,0.376,0.141
|
||||
c-0.079-0.029-0.129-0.047-0.223-0.083l0.068,0.019l0.136,0.039l1.088,0.318l2.179,0.638l4.37,1.28
|
||||
c1.445,0.387,2.955,0.946,4.354,1.196l3.923-0.054c6.001-0.062,11.95-0.124,17.84-0.18c-2.84-2.417-3.513-3.122-4.974-4.438
|
||||
l-1.905-1.747l-0.817-0.875l-0.83-0.875c-0.24-0.261-0.669-0.673-0.653-0.724l-0.479-0.76l-0.254-0.383
|
||||
c-0.055-0.1,0.018-0.095,0.018-0.149l0.086-0.245c0.62,0.25-1.316-1.3-2.463-2.298c-5.179-4.373-9.792-8.268-13.643-11.521
|
||||
c-4.147-3.383-7.603-6.155-9.691-8.283c-2.548-2.329-2.406-2.413-2.565-2.537l-0.616-0.61c0,0,0,0-0.002,0.004l0,0
|
||||
c0,0,0,0,0.002-0.004l-0.009-0.006c-0.102-0.196-0.261-0.441-0.429-0.749c0.045-0.072,0.059-0.093-0.003-0.003
|
||||
c-0.054-0.098-0.105-0.181-0.163-0.303c-0.238-0.35-0.489-1.152-0.584-1.274l-0.002-0.025c0-0.03,0.025-0.054,0.046-0.066
|
||||
c0.012-0.045,0.044-0.072,0.075-0.095c-0.045,0.008,0.269-0.163,0.457-0.271l0.631-0.354c0.458-0.22,0.763-0.524,1.341-0.671
|
||||
l2.031-0.258c2.614-0.283,5.631-0.841,8.652-1.347l17.191-2.895l3.424-0.574c0.209-0.062,0.726-0.06,0.685-0.18l-0.388-0.433
|
||||
l-0.775-0.866l-2.626-2.936l-6.919-7.676l-7.125-7.892c-2.561-2.654-5.119-5.357-7.896-8.011l-7.985-7.667
|
||||
c-1.31-1.267-2.533-2.533-3.727-3.794c-4.785-5.038-8.905-10.174-11.448-15.232c-2.584-5.083-3.646-9.773-3.228-14.402
|
||||
c0.187-2.682,0.869-5.885,1.561-7.809c0.408-1.04,0.665-1.521,0.58-1.376l0.018-0.012c0.073,0.012-0.108-0.048,0.168,0.045
|
||||
c1.506,0.366,4.028,1.539,6.507,3.08c5.09,3.188,10.437,7.729,15.487,12.655c5.076,4.947,9.974,10.345,14.676,15.951
|
||||
c9.599,11.523,18.716,24.108,25.882,36.678c0.403,0.463,1.674,1.091,1.99,1.205c2.029,0.7,3.858,1.172,5.554,1.481
|
||||
c-2.218,4.938-4.183,10.073-5.838,15.422C118.346,214.467,114.656,237.331,114.3,258.09z M409.399,289.041
|
||||
c-33.523,128.116-148.614,96.894-155.726,98.155C113.955,344.59,69.294,200.49,224.718,124.963
|
||||
C325.979,75.75,436.99,183.62,409.399,289.041z M454.42,243.069c-0.057,0.249-0.209,0.535-0.281,0.893
|
||||
c-0.411,0.766-0.88,1.68-1.674,2.59c-1.412,1.828-3.264,3.543-4.844,4.862c-1.562,1.356-2.863,2.271-4.012,3.204
|
||||
c-1.031,0.822-1.447,1.216-1.109,1.073c-2.6,2.04-5.088,4.016-7.274,5.991c0.037-7.172-0.351-14.314-1.187-21.375
|
||||
c1.932,0.021,3.852,0.039,5.783,0.06l2.116,0.03c0.698,0.037,1.398,0.058,2.222-0.273l4.732-1.406l4.71-1.399l1.172-0.347
|
||||
l0.587-0.174l0.078-0.024c-0.152,1.178-0.523,2.942-0.998,5.624C454.397,242.602,454.361,242.805,454.42,243.069z
|
||||
M461.054,234.686l-0.039,0.015l-0.312,0.127c-0.026,0.009-0.051,0.006-0.078,0.015l0.439-0.162L461.054,234.686z
|
||||
M475.811,141.814c-2.771,4.941-6.844,9.927-11.566,14.841c-0.603,0.613-1.151,1.229-1.793,1.849l-2.209,2.166l-8.19,7.838
|
||||
c-2.549,2.603-5.267,5.253-7.583,7.833l-6.971,7.719l-6.646,7.36l-2.675,2.967l-0.77,0.851c-0.026,0.059-0.209,0.162-0.109,0.191
|
||||
l0.414,0.069l0.829,0.143l3.403,0.571l16.945,2.852c2.939,0.49,5.91,1.031,8.467,1.304l1.993,0.256
|
||||
c0.622,0.104,0.884,0.429,1.343,0.633l1.155,0.658l0.106,0.084l-1.115,2.198c0.02-0.046-0.062,0.179-0.034,0.132l0.017,0.008
|
||||
c0.025,0.025,0.062,0.051,0.088,0.075c-0.641,0.695-0.955,1.179-3.135,3.145c-0.929,0.862-1.923,1.785-2.973,2.758
|
||||
c-1.121,0.904-2.302,1.858-3.54,2.855c-5.076,4.052-10.155,8.341-16.008,13.188c-0.718,0.599-1.442,1.204-2.175,1.809
|
||||
l-0.812,0.677c-2.544-13.797-6.642-27.15-12.116-39.591c0.399-0.184,0.785-0.37,1.146-0.559c0.997-0.426,1.104-0.631,1.416-1.196
|
||||
c6.942-13.023,15.428-26.049,24.442-38.113c4.305-5.719,8.787-11.255,13.453-16.343c4.625-5.032,9.596-9.819,14.193-12.945
|
||||
l3.168-1.894l0.072,0.201l0.428,1.411c0.306,1.228,0.595,2.572,0.823,4.027c0.084,0.715,0.246,1.551,0.277,2.167l0.06,1.698
|
||||
C479.787,132.197,478.609,136.852,475.811,141.814z"/>
|
||||
</g>
|
||||
<path fill="#231F20" d="M237.51,236.051c3.655,11.44-16.852,23.388-29.541,22.483c-12.694-0.905-19.866-19.206-18.963-31.901
|
||||
c0.907-12.686,11.505-26.742,24.194-25.837C225.891,201.7,233.637,223.936,237.51,236.051z"/>
|
||||
<path fill="#231F20" d="M364.402,229.192c-0.58,8.178-2.423,14.77-8.565,18.685c-3.808,2.431-11.546,8.825-16.284,8.488
|
||||
c-22.8-1.626-22.92-22.483-21.977-35.735c0.944-13.257,11.739-23.287,24.11-22.403
|
||||
C354.056,199.108,365.349,215.937,364.402,229.192z"/>
|
||||
<path fill="#231F20" d="M177.205,193.782c0,0-0.007-0.347-0.016-0.987c0-0.634-0.009-1.554,0.216-2.794
|
||||
c0.199-1.233,0.557-2.677,1.191-4.305c0.625-1.626,1.551-3.386,2.792-5.184c2.475-3.58,6.341-7.105,11.046-9.729
|
||||
c1.168-0.671,2.391-1.278,3.654-1.818c1.262-0.568,2.554-1.07,3.882-1.494c2.633-0.931,5.393-1.496,8.137-1.982
|
||||
c2.765-0.416,5.526-0.628,8.247-0.65c1.357,0.015,2.701,0.007,4.021,0.136c1.322,0.081,2.621,0.187,3.879,0.391
|
||||
c2.549,0.318,4.959,0.86,7.21,1.439c1.119,0.333,2.204,0.64,3.243,0.982c1.023,0.372,2.005,0.742,2.963,1.098
|
||||
c1.872,0.781,3.549,1.556,4.995,2.352c1.451,0.749,2.663,1.551,3.651,2.18c0.986,0.652,1.72,1.268,2.237,1.637
|
||||
c0.503,0.387,0.763,0.617,0.763,0.617s-1.391,0.111-3.702,0.176c-1.169,0.064-2.545,0.04-4.121,0.1
|
||||
c-1.546,0.024-3.295,0.057-5.194,0.091c-3.76,0.075-8.048,0.188-12.529,0.455c-2.243,0.1-4.533,0.352-6.838,0.521
|
||||
c-2.287,0.282-4.61,0.474-6.889,0.882c-2.28,0.346-4.543,0.764-6.72,1.266c-2.173,0.532-4.298,1.067-6.302,1.734
|
||||
c-1.986,0.68-3.908,1.379-5.668,2.188c-1.747,0.817-3.412,1.653-4.869,2.58c-1.47,0.907-2.794,1.847-3.925,2.789
|
||||
c-1.145,0.922-2.106,1.854-2.884,2.626c-0.397,0.399-0.746,0.761-1.056,1.076c-0.303,0.349-0.551,0.649-0.758,0.887
|
||||
C177.436,193.526,177.205,193.782,177.205,193.782z"/>
|
||||
<path fill="#231F20" d="M371.652,176.605c0,0-0.3-0.188-0.852-0.535c-0.277-0.177-0.613-0.401-1.001-0.665
|
||||
c-0.392-0.222-0.843-0.474-1.345-0.76c-0.978-0.538-2.193-1.189-3.575-1.76c-1.375-0.607-2.943-1.17-4.646-1.642
|
||||
c-1.697-0.503-3.563-0.851-5.518-1.17c-1.951-0.297-4.039-0.439-6.191-0.546c-2.155-0.093-4.397-0.015-6.686,0.071
|
||||
c-2.282,0.118-4.623,0.342-6.962,0.643c-2.349,0.25-4.696,0.708-7.027,1.077c-2.313,0.484-4.634,0.881-6.864,1.418
|
||||
c-4.479,0.998-8.73,2.094-12.448,3.078c-1.892,0.507-3.611,0.97-5.14,1.376c-1.568,0.385-2.912,0.8-4.081,1.064
|
||||
c-2.285,0.592-3.683,0.869-3.683,0.869s0.185-0.3,0.577-0.821c0.393-0.51,0.945-1.316,1.729-2.229
|
||||
c0.795-0.906,1.76-2.033,2.979-3.183c1.204-1.188,2.63-2.42,4.246-3.725c0.845-0.613,1.706-1.251,2.608-1.912
|
||||
c0.92-0.628,1.909-1.236,2.915-1.878c2.05-1.206,4.271-2.42,6.673-3.444c1.187-0.56,2.438-1.031,3.711-1.476
|
||||
c1.261-0.509,2.588-0.881,3.917-1.272c2.675-0.742,5.46-1.317,8.292-1.689c2.84-0.294,5.708-0.517,8.565-0.342
|
||||
c1.425,0.042,2.838,0.168,4.23,0.375c1.395,0.178,2.774,0.424,4.107,0.754c5.368,1.256,10.17,3.633,13.609,6.461
|
||||
c1.727,1.408,3.135,2.876,4.208,4.308c1.08,1.412,1.837,2.732,2.377,3.892c0.578,1.15,0.818,2.062,1.006,2.688
|
||||
C371.568,176.265,371.652,176.605,371.652,176.605z"/>
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#FAAF40" d="M195.908,96.297c0,0-1.457,0.177-4.168,0.378c-2.69,0.156-6.748,0.466-11.86,0.394
|
||||
c-5.137-0.076-11.367-0.376-18.733-1.684c-3.714-0.718-7.641-1.677-12.136-3.6c-1.13-0.534-2.272-0.992-3.5-1.815
|
||||
c-0.61-0.388-1.202-0.73-1.83-1.187l-1.936-1.611c-0.623-0.478-1.323-1.334-1.972-2.119l-0.959-1.229
|
||||
c-0.312-0.445-0.62-1.058-0.907-1.605c-0.568-1.154-1.134-2.221-1.416-3.736c-0.16-0.715-0.292-1.446-0.388-2.179l-0.067-0.55
|
||||
c0.021-0.628-0.093,1.016,0.043-1.479v-0.098l-0.012-0.4l-0.019-0.803c0.093-0.767,0.3-1.803,0.55-2.692
|
||||
c0.126-0.46,0.27-0.92,0.427-1.368l0.249-0.67l0.196-0.43c0.261-0.559,0.54-1.114,0.837-1.665
|
||||
c1.181-2.133,2.517-3.742,3.783-5.071c2.559-2.647,5.099-4.553,7.539-6.142c4.936-3.243,9.837-5.393,14.854-7.502
|
||||
c10.032-4,20.517-6.936,31.417-9.226c5.433-1.204,10.981-2.137,16.593-2.982c5.604-0.857,11.285-1.578,17.018-2.089
|
||||
c11.461-1.121,23.113-1.71,34.756-1.734l8.648,0.082c2.959,0.044,5.914,0.147,8.798,0.277c5.802,0.204,11.576,0.685,17.31,1.184
|
||||
c5.729,0.465,11.411,1.134,17.018,1.981c5.609,0.811,11.152,1.673,16.589,2.849c10.892,2.203,21.369,5.019,31.365,8.803
|
||||
c4.992,1.978,9.865,4.027,14.705,6.883c2.395,1.403,4.849,3.065,7.281,5.055c2.407,2.11,5.174,4.572,7.301,9.098
|
||||
c0.52,1.004,0.933,2.524,1.243,3.778c0.167,0.64,0.214,1.433,0.275,2.146l0.053,1.091l0.009,0.541l-0.002,0.267
|
||||
c0.023-0.18-0.189,2.699-0.111,1.518l-0.459,1.614c-0.432,1.583-1.072,3.168-1.854,4.568c-1.236,1.83-2.551,3.324-3.784,4.295
|
||||
c-1.282,1.189-2.448,1.788-3.643,2.549c-4.66,2.572-8.604,3.6-12.351,4.448c-7.425,1.613-13.651,1.947-18.804,2.091
|
||||
c-5.13,0.132-9.152-0.147-11.871-0.276c-2.727-0.18-4.179-0.349-4.179-0.349s1.327-0.652,3.802-1.743
|
||||
c2.485-1.052,6.073-2.801,10.562-4.859c4.43-2.146,9.867-4.725,15.24-8.142c2.611-1.692,5.45-3.604,7.026-5.587
|
||||
c0.746-0.905,1.146-1.929,0.677-1.675c-0.391,0.466-0.646,1.11-0.682,1.75l-0.014-1.437c0.078-1.247-0.108,1.569-0.1,1.323
|
||||
l-0.023,0.078l-0.035,0.154c-0.022,0.105-0.036,0.213-0.038,0.319c-0.031,0.201,0.056,0.454,0.022,0.606
|
||||
c-0.094,0.292,0.149,0.74,0.067,0.863c0.106,0.796-0.429,0.286-1.595-0.136c-1.209-0.465-2.674-1.013-4.43-1.487
|
||||
c-3.428-0.995-7.535-1.903-11.854-2.579c-8.663-1.466-18.321-2.383-28.354-3.125c-5.026-0.306-10.159-0.682-15.375-0.911
|
||||
c-5.229-0.198-10.522-0.396-15.859-0.598c-5.345-0.187-10.745-0.195-16.166-0.297c-5.431-0.027-10.877-0.054-16.327-0.081
|
||||
c-10.905,0.023-21.793,0.171-32.48,0.502c-5.333,0.225-10.619,0.447-15.843,0.669c-5.184,0.339-10.309,0.676-15.346,1.007
|
||||
c-9.998,0.823-19.617,1.839-28.143,3.423c-4.231,0.742-8.259,1.752-11.385,2.781c-1.614,0.492-2.846,1.07-3.574,1.337
|
||||
c-0.372,0.126-0.514,0.159-0.472-0.147c0.021-0.088,0.03-0.181,0.018-0.276c0.003-0.027-0.012-0.036-0.002-0.082l0.114-0.292
|
||||
c0.069-0.198,0.124-0.403,0.163-0.613c0.075-0.385,0.087-0.923,0.031-1.181l-0.206,0.775l-0.101,0.388l-0.026,0.096
|
||||
c0.137-2.431,0.039-0.722,0.068-1.283l-0.013-0.16c-0.023-0.212-0.081-0.426-0.167-0.625c-0.253-0.445-0.278-0.592-0.461-0.791
|
||||
c-0.068-0.078-0.225-0.186-0.267-0.198c-0.011,0-0.036,0.009-0.066,0.024c-0.036,0.036-0.222,0.069-0.068,0.256
|
||||
c0.076,0.156,0.141,0.328,0.205,0.517c0.119,0.202,0.345,0.427,0.512,0.652c0.294,0.451,0.853,0.956,1.352,1.449
|
||||
c2.133,2.02,5.028,3.787,7.742,5.463c5.608,3.24,11.045,5.756,15.525,7.842C190.655,93.958,195.908,96.297,195.908,96.297z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#EC1C24" d="M204.868,308.284c-0.392-0.459-0.553-0.609-0.667-1.566c-0.271-1.586-0.457-3.256-0.048-5.01
|
||||
c0.379-1.711,1.16-3.199,2.385-4.21c1.269-1.024,2.886-1.59,4.942-1.761c2.064-0.184,4.307-0.043,7.096,0.138
|
||||
c0.195,0.022,0.971,0.181,1.279,0.358c2.468,2.891,6.031,5.674,9.991,8.01c3.979,2.35,8.367,4.32,12.936,5.926
|
||||
c3.737,1.371,7.657,2.336,11.577,3.221c3.952,0.742,7.938,1.396,11.942,1.611c5.417,0.383,10.839,0.277,16.143-0.342
|
||||
c0,0,0.416-0.023,1.171-0.068c0.756-0.068,1.884-0.062,3.248-0.232c2.741-0.303,6.636-0.729,10.961-1.832
|
||||
c8.754-1.893,19.148-6.789,26.782-12.785c1.658-1.225,3.017-2.516,4.301-3.667c0.646-0.574,1.266-1.124,1.855-1.644
|
||||
c0.548-0.557,1.07-1.08,1.569-1.58c0.998-0.993,1.944-1.848,2.757-2.617c0.766-0.807,1.458-1.48,2.082-2.037
|
||||
c2.504-2.221,3.81-2.547,4.205-1.307c0.35,1.215-0.133,4.062-1.603,7.822c-1.554,3.7-4.027,8.41-7.785,12.912
|
||||
c0.494-0.373-1.416,2.195-5.182,5.785c-3.779,3.549-9.528,8.029-16.079,11.447c-1.649,0.805-3.298,1.666-4.964,2.414
|
||||
c-1.695,0.688-3.367,1.369-4.982,2.027c-1.662,0.547-3.271,1.08-4.797,1.588c-1.535,0.492-3.022,0.816-4.385,1.188
|
||||
c-5.474,1.346-9.245,1.824-9.245,1.824c-5.702,0.592-11.421,0.523-17.095,0.172c-4.89-0.293-9.735-1.055-14.548-1.965
|
||||
c-4.785-1.049-9.55-2.23-14.206-3.908c-5.661-1.99-11.208-4.451-16.557-7.607C214.616,317.407,209.424,313.583,204.868,308.284z"
|
||||
/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 20 KiB |
|
@ -1,152 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="550px" height="550px" viewBox="-25 -25 550 550" enable-background="new -25 -25 550 550" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#FFFFFF" d="M448.888,124.827c-3.846-14.126-11.569-24.497-15.752-29.332c-1.373-1.603-2.719-3.054-3.91-4.237
|
||||
l-1.593-1.596l-1.535-1.434c-2.126-2-4.332-3.691-6.609-5.07c-4.72-3.118-11.389-5.868-20.227-5.868
|
||||
c-1.163,0-2.312,0.049-3.424,0.133l-0.062,0.003c-9.865-6.591-19.97-12.406-30.076-17.309
|
||||
c-13.064-6.322-26.439-11.146-39.717-14.331c-13.902-3.352-28.289-5.053-42.928-5.056c-3.466,0-6.979,0.098-10.513,0.286
|
||||
c-2.107-2.123-4.33-4.092-6.644-5.883c-10.263-8.02-22.424-13.021-34.983-14.436c-2.59-0.309-5.243-0.463-7.892-0.463
|
||||
c-3.289,0-6.638,0.239-9.895,0.708c-3.582,0.509-6.839,1.33-8.268,1.722l-22.567,6.03c-2.87,0.806-5.265,1.599-7.361,2.431
|
||||
c-5.2,2.021-10.111,4.596-14.49,7.579c-9.864,6.654-17.857,15.614-23.002,25.702c-5.534,10.641-8.002,22.92-7.049,34.905
|
||||
c-7.376,3.692-14.348,7.506-21.018,11.497c-6.897,4.162-12.946,8.218-18.574,12.468c-5.366,4.077-12.406,9.759-19.45,17.77
|
||||
c-3.074,3.563-7.051,8.542-10.598,15.556c-1.053,2.105-1.933,4.147-2.677,6.203c-0.823,2.26-1.94,5.818-2.561,9.826
|
||||
c-0.907,5.681-0.805,11.429,0.25,16.865c-0.76,1.492-1.393,2.873-1.795,3.784l-0.265,0.619c-1.145,2.76-2.036,5.337-2.707,7.813
|
||||
c-2.722,9.974-3.098,20.354-1.088,30.013l0.218,1.062l0.301,1.044c2.008,7.049,5.499,13.152,10.374,18.147
|
||||
c0.49,0.504,1.02,0.983,1.543,1.465c-8.879,65.836,11.192,111.379,32.003,139.605c47.185,64.006,130.146,86.717,186.853,86.717
|
||||
c0.004,0,0.006,0,0.008,0c2.115,0,4.201-0.029,6.26-0.088c20.75-0.594,31.256-17.02,37.275-28.787
|
||||
c47.429-23.318,80.819-59.898,96.605-105.842c14.217-41.381,13.171-87.807-2.433-130.214c1.089-3.417,1.839-7.063,2.227-10.927
|
||||
c0.234-2.24,0.335-4.51,0.297-6.79c5.796-3.644,11.017-8.103,15.396-13.197c0.728-0.857,2.228-2.712,3.98-5.413
|
||||
c2.721-4.139,4.958-8.594,6.658-13.252c2.301-6.31,3.631-13.203,3.842-19.718C451.586,138.671,450.766,131.687,448.888,124.827z"/>
|
||||
<path fill="#231F20" d="M383.855,208.642C321.492,81.611,138,97.055,101.47,215.05c-54,174.405,94.689,237.376,185.144,234.774
|
||||
c7.022-0.201,11.682-13.51,16.568-22.641c2.646-0.672,5.194-1.543,7.579-2.703C408.256,377.078,417.316,276.801,383.855,208.642z
|
||||
M376.351,311.781c-32.528,124.322-144.209,94.023-151.11,95.248C89.664,365.688,46.326,225.857,197.144,152.568
|
||||
C295.404,104.815,403.121,209.486,376.351,311.781z"/>
|
||||
<path fill="#231F20" d="M209.557,260.363c3.546,11.104-10.094,23.395-28.666,21.818c-12.307-1.045-19.277-18.637-18.402-30.955
|
||||
c0.88-12.312,13.427,3.426,25.028,7.645C198.468,262.852,209.557,260.363,209.557,260.363z"/>
|
||||
<path fill="#231F20" d="M155.222,250.766c0,0-0.082-0.324-0.228-0.927c-0.14-0.602-0.347-1.467-0.403-2.692
|
||||
c-0.079-1.208-0.055-2.65,0.192-4.328c0.239-1.674,0.732-3.541,1.517-5.509c1.563-3.922,4.456-8.096,8.338-11.595
|
||||
c0.959-0.89,1.987-1.728,3.062-2.514c1.07-0.812,2.185-1.566,3.348-2.255c2.291-1.452,4.774-2.584,7.266-3.64
|
||||
c2.525-0.992,5.092-1.793,7.661-2.403c1.286-0.279,2.555-0.58,3.833-0.743c1.269-0.209,2.521-0.391,3.753-0.473
|
||||
c2.479-0.251,4.876-0.263,7.134-0.201c1.127,0.073,2.222,0.128,3.277,0.229c1.047,0.131,2.059,0.266,3.042,0.394
|
||||
c1.939,0.333,3.695,0.703,5.235,1.145c1.533,0.394,2.854,0.89,3.925,1.268c1.072,0.403,1.9,0.829,2.469,1.065
|
||||
c0.563,0.256,0.854,0.417,0.854,0.417s-1.288,0.408-3.461,0.971c-1.094,0.312-2.4,0.589-3.875,0.986
|
||||
c-1.455,0.357-3.104,0.77-4.894,1.213c-3.538,0.887-7.572,1.925-11.751,3.149c-2.1,0.577-4.211,1.315-6.354,1.975
|
||||
c-2.104,0.762-4.259,1.447-6.324,2.327c-2.085,0.821-4.132,1.709-6.083,2.653c-1.939,0.975-3.833,1.942-5.586,3.008
|
||||
c-1.732,1.072-3.394,2.151-4.887,3.298c-1.473,1.151-2.867,2.305-4.045,3.497c-1.193,1.176-2.243,2.354-3.106,3.487
|
||||
c-0.884,1.12-1.593,2.211-2.162,3.11c-0.288,0.466-0.539,0.88-0.764,1.248c-0.211,0.396-0.379,0.731-0.524,1.003
|
||||
C155.385,250.474,155.222,250.766,155.222,250.766z"/>
|
||||
<path fill="#231F20" d="M336.417,255.875c0,0-0.056-0.338-0.157-0.963c-0.052-0.314-0.104-0.705-0.16-1.154
|
||||
c-0.091-0.43-0.195-0.919-0.312-1.467c-0.235-1.057-0.545-2.359-1.019-3.73c-0.44-1.392-1.043-2.894-1.791-4.433
|
||||
c-0.726-1.558-1.674-3.139-2.696-4.762c-1.037-1.61-2.274-3.218-3.582-4.854c-1.314-1.625-2.817-3.208-4.349-4.815
|
||||
c-1.553-1.582-3.221-3.141-4.944-4.646c-1.688-1.549-3.526-2.961-5.295-4.418c-1.841-1.371-3.619-2.804-5.444-4.078
|
||||
c-3.604-2.619-7.134-5.002-10.236-7.076c-1.586-1.046-3.024-2-4.305-2.849c-1.289-0.896-2.452-1.604-3.396-2.283
|
||||
c-1.897-1.28-2.995-2.12-2.995-2.12s0.336-0.058,0.965-0.107c0.625-0.041,1.565-0.157,2.733-0.176
|
||||
c1.169-0.002,2.604-0.024,4.229,0.12c1.638,0.113,3.445,0.355,5.436,0.694c0.988,0.219,2.007,0.437,3.064,0.668
|
||||
c1.049,0.265,2.127,0.592,3.24,0.913c2.192,0.714,4.504,1.548,6.793,2.636c1.17,0.504,2.314,1.108,3.459,1.75
|
||||
c1.178,0.589,2.305,1.315,3.441,2.03c2.256,1.467,4.463,3.124,6.555,4.943c2.039,1.875,4.047,3.816,5.756,6.008
|
||||
c0.887,1.062,1.697,2.17,2.444,3.315c0.769,1.129,1.478,2.29,2.093,3.475c2.536,4.71,3.895,9.726,4.051,14.045
|
||||
c0.086,2.158-0.078,4.129-0.43,5.827c-0.332,1.69-0.805,3.091-1.302,4.232c-0.466,1.157-0.973,1.918-1.31,2.455
|
||||
C336.609,255.595,336.417,255.875,336.417,255.875z"/>
|
||||
<g>
|
||||
<path fill="#EC1C24" d="M179.016,343.953c-0.38,0.447-0.537,0.592-0.648,1.521c-0.263,1.539-0.444,3.16-0.046,4.859
|
||||
c0.367,1.664,1.125,3.107,2.314,4.088c1.231,0.994,2.8,1.543,4.796,1.707c2.003,0.18,4.179,0.041,6.885-0.133
|
||||
c0.189-0.021,0.941-0.176,1.242-0.348c2.395-2.805,5.85-5.508,9.694-7.771c3.862-2.281,8.12-4.193,12.553-5.752
|
||||
c3.627-1.33,7.43-2.266,11.233-3.123c3.835-0.723,7.703-1.355,11.591-1.564c5.254-0.371,10.516-0.271,15.663,0.332
|
||||
c0,0,0.402,0.021,1.135,0.064c0.734,0.068,1.828,0.062,3.15,0.227c2.66,0.295,6.439,0.709,10.638,1.779
|
||||
c8.494,1.834,18.58,6.588,25.987,12.406c1.609,1.188,2.928,2.439,4.175,3.559c0.627,0.557,1.228,1.09,1.799,1.594
|
||||
c0.533,0.541,1.041,1.049,1.524,1.531c0.969,0.967,1.889,1.795,2.675,2.541c0.743,0.781,1.413,1.438,2.021,1.979
|
||||
c2.43,2.154,3.695,2.475,4.08,1.27c0.339-1.18-0.129-3.941-1.555-7.592c-1.508-3.592-3.907-8.16-7.555-12.527
|
||||
c0.479,0.359-1.373-2.135-5.026-5.615c-3.669-3.443-9.247-7.791-15.603-11.107c-1.604-0.779-3.203-1.615-4.819-2.344
|
||||
c-1.646-0.666-3.267-1.326-4.834-1.967c-1.612-0.529-3.177-1.047-4.654-1.541c-1.491-0.479-2.937-0.793-4.256-1.15
|
||||
c-5.312-1.307-8.972-1.771-8.972-1.771c-5.531-0.574-11.082-0.51-16.587-0.166c-4.744,0.285-9.446,1.021-14.115,1.906
|
||||
c-4.643,1.016-9.268,2.166-13.786,3.793c-5.492,1.93-10.876,4.316-16.066,7.381C188.477,335.104,183.437,338.812,179.016,343.953z
|
||||
"/>
|
||||
</g>
|
||||
<path fill="#231F20" d="M278.455,254.391c-3.547,11.104,10.095,23.393,28.664,21.818c12.309-1.045,19.277-18.637,18.404-30.955
|
||||
c-0.883-12.311-13.428,3.427-25.029,7.645C289.544,256.879,278.455,254.391,278.455,254.391z"/>
|
||||
<g>
|
||||
<path fill="#00ADEE" d="M380.642,114.527c-41.798-29.659-80.543-39.569-127.589-31.121c-0.104-0.478-0.18-0.956-0.307-1.432
|
||||
c-4.354-16.279-21.074-25.944-37.351-21.596l-22.674,6.061c-16.273,4.349-28.027,20.123-21.594,37.341
|
||||
c6.435,17.22,53.464-0.815,54.22,0.797c-119.454,35.833-150.84,80.812-120.451,84.612c14.99,1.875-19.911,5.472-16.924,33.347
|
||||
c1.499,13.999,39.377-30.024,124.433-45.292c77.646-13.938,165.601,39.481,169.23,25.879
|
||||
c7.964-29.863-57.295-44.979-41.812-39.817c72.634,24.211,88.645-22.781,60.267-50.346
|
||||
C398.131,111.059,383.021,116.215,380.642,114.527z"/>
|
||||
<path fill="#231F20" d="M420.07,132.666c-2.059-7.568-6.197-13.797-9.595-17.72c-0.849-0.988-1.645-1.854-2.368-2.571
|
||||
c-0.447-0.45-0.865-0.869-1.244-1.249c-0.457-0.43-0.871-0.814-1.235-1.155c-1.446-1.362-2.298-1.624-1.954-1.382
|
||||
c-1.503-1.423-3.689-1.531-5.564-1.388c-0.963,0.091-1.91,0.238-2.824,0.442c-0.924,0.19-1.851,0.438-2.327,0.604
|
||||
c-2.334,0.747-4.291,1.524-5.976,2.214c-1.674,0.693-3.043,1.3-4.029,1.777c-0.485,0.237-0.856,0.437-1.12,0.622
|
||||
c1.175-2.928,0.477-6.32-0.584-8.671c-0.255-0.714-0.396-0.808-0.781-1.072c-8.806-5.962-18.062-11.406-27.771-16.116
|
||||
c-10.692-5.174-22-9.374-33.709-12.183c-11.703-2.818-23.773-4.22-35.771-4.223c-5.999-0.006-11.979,0.324-17.907,0.945
|
||||
l-4.433,0.52l-2.054,0.286h-0.004l-0.678-1.281c-0.906-1.589-1.881-3.146-2.984-4.602c-2.192-2.925-4.761-5.564-7.646-7.798
|
||||
c-5.743-4.488-12.733-7.479-20.129-8.312c-3.329-0.396-6.726-0.32-10.054,0.158c-1.6,0.227-3.45,0.647-4.782,1.012l-3.701,0.986
|
||||
l-14.793,3.955l-3.697,0.988c-1.54,0.432-3.098,0.913-4.601,1.508c-3.015,1.172-5.913,2.666-8.611,4.503
|
||||
c-5.396,3.64-10.094,8.619-13.211,14.728c-3.156,6.066-4.485,13.322-3.628,20.183c0.216,1.707,0.531,3.395,0.972,5.027
|
||||
c0.225,0.813,0.446,1.632,0.729,2.415l0.412,1.185c0.216,0.548,0.46,1.144,0.728,1.703c1.108,2.287,2.753,4.375,4.623,5.978
|
||||
c0.107,0.094,0.222,0.169,0.332,0.263c-14.775,6.132-29.298,13.061-43.3,21.434c-5.418,3.269-10.756,6.767-15.936,10.675
|
||||
c-5.174,3.931-10.226,8.177-14.903,13.497c-2.323,2.695-4.583,5.616-6.499,9.408c-0.476,0.951-0.928,1.96-1.327,3.062
|
||||
c-0.474,1.298-0.905,2.854-1.132,4.316c-0.476,2.978-0.269,6.037,0.74,8.825c0.907,2.563,2.508,4.838,4.535,6.673
|
||||
c-1.283,1.195-2.53,2.479-3.697,3.894c-1.278,1.534-2.45,3.217-3.485,5.007c-0.438,0.704-1.213,2.262-1.811,3.614
|
||||
c-0.578,1.391-1.094,2.806-1.479,4.229c-1.551,5.683-1.641,11.353-0.66,16.062c0.655,2.302,1.58,4.01,3.064,5.52
|
||||
c0.753,0.783,1.8,1.536,2.756,2.032c0.966,0.504,1.89,0.822,2.861,1.038c1.911,0.449,4.109,0.397,6.597-0.224
|
||||
c2.482-0.619,5.18-1.837,7.84-3.193c1.335-0.688,2.665-1.402,3.989-2.144l2.925-1.646l3.978-2.273l7.831-4.441
|
||||
c20.7-11.66,42.322-21.03,64.991-27.429c5.659-1.604,11.363-3.048,17.111-4.305c5.751-1.226,11.589-2.417,17.13-3.139
|
||||
c11.278-1.476,22.848-1.557,34.422-0.645c28.969,2.298,57.518,10.609,86.001,20.138c7.185,2.362,14.323,4.826,21.996,7.037
|
||||
c1.972,0.557,3.808,1.056,6.099,1.569c3.674,0.822,7.498,1.396,10.901,0.968c3.369-0.414,6.339-1.785,8.558-4.357
|
||||
c1.998-2.405,2.892-5.822,3.25-9.398c0.375-3.538-0.037-7.47-1.104-10.939c-0.822-2.65-1.988-5.083-3.329-7.262
|
||||
c-0.825-1.335-1.725-2.555-2.646-3.726c2.166-0.256,4.351-0.62,6.549-1.113c2.201-0.49,4.416-1.141,6.607-1.96l1.238-0.473
|
||||
l0.453-0.189c0.598-0.262,1.2-0.496,1.796-0.79c4.757-2.205,9.378-5.425,13.077-9.728c0,0,0.714-0.84,1.771-2.461
|
||||
c1.057-1.606,2.439-4.018,3.561-7.087c1.117-3.062,1.932-6.773,2.057-10.668C421.628,140.459,421.101,136.426,420.07,132.666z
|
||||
M102.059,184.267l-0.006,0.002l0,0C102.053,184.269,102.062,184.264,102.059,184.267z M405.406,141.023
|
||||
c-0.375,3.533-1.551,6.132-2.553,7.771c-1.027,1.639-1.814,2.452-1.814,2.452c-1.621,2.267-3.875,4.19-6.674,5.679
|
||||
c-0.701,0.371-1.43,0.72-2.188,1.032l-0.283,0.12c-0.17,0.068-0.021,0.021-0.454,0.177c-1.396,0.557-2.904,0.989-4.455,1.355
|
||||
c-3.103,0.738-6.459,1.077-9.892,1.167c-6.899,0.123-14.13-0.862-21.308-2.524c-1.18-0.274-2.355-0.592-3.535-0.901
|
||||
c-2.575-1.035-5.176-2.012-7.911-2.879c-1.027-0.317-2.032-0.621-3.265-0.93l-1.076-0.248l-0.883-0.155l-0.32-0.043l-0.643-0.059
|
||||
c-0.355-0.021-0.717-0.023-1.07-0.009c2-0.706-7.205,0.945-8.069,5.396c-3.826,4.287,4.286,14.083,2.8,11.327
|
||||
c0.314,0.24,0.648,0.464,0.986,0.668l0.605,0.333l0.293,0.146l0.816,0.361l1.02,0.391c1.182,0.43,2.064,0.697,3.021,1.01
|
||||
l2.856,0.897c1.725,0.524,3.47,1.019,5.219,1.487c4.839,2.01,9.529,4.375,13.719,7.076c5.792,3.691,10.691,8.474,12.123,12.659
|
||||
c0.061,0.189,0.157,0.458,0.195,0.602l-0.004,0.028c-0.031,0.018-0.013,0.018-0.103-0.002c-6.83-1.61-14.437-4.232-21.901-6.68
|
||||
c-30.086-10.106-61.514-19.787-94.562-22.415c-12.625-0.987-25.476-0.927-38.287,0.747c-6.5,0.854-12.57,2.108-18.691,3.409
|
||||
c-6.115,1.339-12.191,2.876-18.216,4.582c-24.104,6.786-47.348,16.889-68.956,29.068l-12.999,7.39
|
||||
c-0.017,0.011-0.066,0.032-0.057-0.009l0.008-0.041l0.251-0.455c0.49-0.837,1.05-1.662,1.721-2.461
|
||||
c1.327-1.607,3.012-3.13,5.007-4.591c1.008-0.731,2.071-1.443,3.27-2.201l1.945-1.229c0.75-0.5,1.447-0.878,2.876-2.047
|
||||
c0.383-0.335,0.816-0.693,1.496-1.486l0.514-0.657c0.204-0.276,0.478-0.708,0.682-1.079l0.309-0.602
|
||||
c0.147-0.317,0.277-0.646,0.395-0.982c0.225-0.708,0.393-1.226,0.499-2.342c0.075-1.021,0.038-1.969-0.208-3.008
|
||||
c-0.207-0.968-0.719-2.162-1.1-2.759c-0.395-0.671-0.923-1.355-1.423-1.866c-0.347-0.353-0.726-0.688-1.12-0.991
|
||||
c-0.46-0.354-0.667-0.473-0.93-0.634l-0.799-0.445c-0.396-0.193-0.723-0.333-1.097-0.48c-2.233-0.775-3.108-0.808-4.164-1
|
||||
l-1.945-0.283c-0.467-0.082-0.884-0.188-1.242-0.292c-0.408-0.131-0.243-0.078-0.283-0.09l-0.009-0.002l-0.009-0.019
|
||||
c-0.005-0.002-0.003-0.013-0.003-0.019l0.028-0.079c0.118-0.325,0.288-0.708,0.491-1.113c0.813-1.647,2.237-3.619,3.89-5.506
|
||||
c3.34-3.82,7.597-7.486,12.094-10.884c4.519-3.406,9.351-6.585,14.33-9.586l0.002,0.002c16.813-10.069,35.15-18.233,53.845-25.384
|
||||
c9.365-3.562,18.857-6.855,28.441-9.921l7.2-2.257l3.613-1.097l0.453-0.138l0.055-0.017c-5.109,11.502,7.247-15.343,4.94-14.218
|
||||
c-0.82-1.179-2.013-2.221-3.209-2.861c-1.097-0.56-0.984-0.451-1.56-0.671c-0.417-0.136-0.843-0.247-1.269-0.326
|
||||
c-0.524-0.096-0.764-0.113-0.845-0.123c-0.309-0.026-0.619-0.043-0.927-0.05c-0.966,0-1.394,0.07-1.759,0.111l-0.75,0.116
|
||||
c-0.56-1.913-0.769-2.609-0.023,0.003l-0.157,0.023c-1.012,0.184-1.692,0.35-2.404,0.519c-5.319,1.327-9.9,2.588-14.696,3.632
|
||||
c-4.724,1.034-9.417,1.869-13.854,2.228c-4.329,0.397-8.823,0.1-10.794-0.79c-1.011-0.461-0.81-0.521-0.836-0.478
|
||||
c-0.005-0.016,0.002-0.018-0.025-0.057l-0.21-0.626c-0.161-0.414-0.259-0.834-0.379-1.249c-0.229-0.833-0.374-1.663-0.485-2.483
|
||||
c-0.385-3.29,0.184-6.52,1.729-9.525c1.522-3.004,4.016-5.737,7.075-7.79c1.52-1.044,3.191-1.898,4.935-2.578
|
||||
c0.873-0.35,1.759-0.615,2.674-0.878l3.698-0.988l14.794-3.952l3.698-0.988c1.131-0.3,1.779-0.438,2.704-0.583
|
||||
c1.723-0.236,3.472-0.289,5.217-0.078c3.86,0.423,7.67,2.029,10.831,4.503c1.589,1.225,2.995,2.687,4.196,4.281
|
||||
c0.609,0.793,1.125,1.647,1.631,2.505l0.347,0.662c-0.032-0.062,0.329,0.634,0.415,0.901l0.39,1.007
|
||||
c0.558,1.304,0.979,2.75,1.395,4.208l1.278,4.33c0.237,0.645,0.337,1.54,0.695,1.98l2.081-0.347l8.381-1.395l4.176-0.65
|
||||
l2.176-0.31l3.99-0.467c5.321-0.557,10.647-0.849,15.955-0.842c21.262-0.07,42.131,5.141,61.42,14.562
|
||||
c8.767,4.255,17.267,9.239,25.463,14.801c0.385,0.167,1.361,0.184,1.586,0.16c4.689-0.432,7.496-1.95,9.066-3.926
|
||||
c0.327,0.671,1.512,1.275,3.072,1.555c1.724,0.335,4.019,0.423,6.876,0.367c1.383-0.017,3.106-0.104,4.559-0.087
|
||||
c0.531,0.041,1.056,0.093,1.568,0.188c0.487,0.119,1.084,0.151,1.41,0.699c0.378,0.631,0.683,1.196,0.977,1.798
|
||||
c0.571,0.911,1.24,1.982,1.788,3.012c1.141,2.085,2.131,4.261,2.861,6.454C405.346,133.124,405.826,137.517,405.406,141.023z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#231F20" d="M298.717,149.631c-2.293-1.108-5.316-1.884-8.662-2.799c-1.74-0.307-3.554-0.693-5.482-0.98
|
||||
c-1.973-0.158-3.988-0.479-6.127-0.627c-4.306-0.198-8.955-0.195-13.891,0.114c-4.936,0.32-10.135,0.84-15.505,1.675
|
||||
c-5.369,0.734-10.897,1.845-16.513,2.98c-5.608,1.181-11.297,2.514-16.97,3.947c-22.699,5.784-45.184,13.086-62.228,18.368
|
||||
c-8.533,2.692-15.65,4.936-20.627,6.507c-5.034,1.534-7.91,2.409-7.91,2.409s2.447-1.782,6.927-4.559
|
||||
c4.476-2.779,10.965-6.601,19.018-10.673c4.022-2.042,8.399-4.224,13.121-6.342c4.719-2.113,9.729-4.28,15.003-6.316
|
||||
c5.252-2.082,10.761-4.053,16.417-5.895c5.646-1.878,11.482-3.511,17.337-5.073c5.901-1.424,11.827-2.791,17.755-3.761
|
||||
c2.964-0.496,5.895-1,8.841-1.294c2.928-0.371,5.825-0.69,8.71-0.834c5.731-0.446,11.345-0.426,16.649-0.134
|
||||
c2.646,0.099,5.242,0.495,7.725,0.76c2.482,0.349,4.878,0.916,7.155,1.336c2.272,0.558,4.436,1.196,6.466,1.8
|
||||
c2.01,0.74,3.876,1.562,5.623,2.269c3.424,1.68,6.277,3.331,8.372,5.072c2.235,1.502,3.591,3.182,4.59,4.186
|
||||
c0.959,1.036,1.468,1.587,1.468,1.587"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 16 KiB |
|
@ -1,102 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="550px" height="550px" viewBox="-85.106 -76.564 550 550" enable-background="new -85.106 -76.564 550 550"
|
||||
xml:space="preserve">
|
||||
<path fill="#FFFFFF" d="M224.786,396.477c-57.67,0-142.044-23.1-190.028-88.19c-25.896-35.123-50.691-96.601-21.77-190.007
|
||||
C34.892,47.533,103.478,0,183.654,0c75.197,0,139.796,40.133,172.799,107.357c23.601,48.079,27.563,103.521,10.866,152.113
|
||||
c-16.051,46.725-50.019,83.927-98.254,107.644c-6.118,11.965-16.799,28.669-37.905,29.273c-2.095,0.061-4.214,0.089-6.364,0.089
|
||||
C224.792,396.477,224.79,396.477,224.786,396.477z"/>
|
||||
<g>
|
||||
<path fill="#26A9E0" d="M98.1,182.815c0,0,7.379,13.48,7.142,18.91c-0.234,5.428,0.756,13.625-8.326,13.625
|
||||
c-7.104,0-9.319-7.438-9.082-12.867C88.066,197.058,98.1,182.815,98.1,182.815z"/>
|
||||
<path fill="#231F20" d="M98.1,182.815c0,0,0.742,1,1.908,2.838c0.576,0.922,1.284,2.042,2.018,3.371
|
||||
c0.74,1.326,1.57,2.833,2.348,4.552c0.773,1.727,1.62,3.597,2.128,5.855c0.131,0.563,0.227,1.168,0.274,1.82
|
||||
c0.015,0.566,0.03,1.141,0.045,1.719c0.042,1.1,0.071,2.26,0.029,3.478s-0.131,2.497-0.442,3.842
|
||||
c-0.298,1.331-0.852,2.776-1.9,4.012c-1.023,1.255-2.513,2.134-3.975,2.554c-1.468,0.431-2.922,0.524-4.285,0.471
|
||||
c-0.81-0.057-1.564-0.182-2.302-0.393c-0.741-0.221-1.464-0.529-2.136-0.92c-1.351-0.789-2.427-1.921-3.235-3.117
|
||||
c-1.572-2.451-2.159-5.109-2.352-7.613c-0.041-0.631-0.035-1.256-0.013-1.873c0.012-0.309,0.033-0.616,0.059-0.922
|
||||
c0.049-0.456,0.055-0.547,0.143-0.981c0.292-1.382,0.727-2.387,1.187-3.425c0.942-2.014,2.014-3.751,3.011-5.343
|
||||
c1.007-1.584,2.014-2.973,2.9-4.201c0.891-1.226,1.719-2.257,2.391-3.11C97.264,183.735,98.1,182.815,98.1,182.815z M98.1,182.815
|
||||
c0,0-0.583,1.093-1.603,3.006c-1.009,1.912-2.47,4.634-4.047,7.941c-0.792,1.646-1.602,3.459-2.274,5.368
|
||||
c-0.334,0.925-0.642,1.983-0.737,2.797c-0.029,0.11-0.047,0.582-0.044,0.685c0.005,0.258,0.015,0.516,0.033,0.773
|
||||
c0.033,0.52,0.097,1.039,0.168,1.561c0.279,2.076,0.968,4.187,2.138,5.771c1.129,1.6,2.812,2.524,4.648,2.614
|
||||
c1.096,0.043,2.138-0.026,3.034-0.282c0.889-0.27,1.612-0.658,2.153-1.277c1.113-1.211,1.612-3.369,1.793-5.532
|
||||
c0.098-1.091,0.141-2.207,0.229-3.335c0.04-0.532,0.078-1.061,0.117-1.581c0.008-0.433-0.015-0.9-0.083-1.378
|
||||
c-0.273-1.914-0.8-3.834-1.338-5.562c-1.104-3.474-2.207-6.363-2.969-8.385C98.543,183.973,98.1,182.815,98.1,182.815z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#26A9E0" d="M278.317,154.134c0,0,11.211,17.487,10.904,24.499c-0.303,7.012,1.262,17.612-12.389,17.529
|
||||
c-10.675-0.062-14.073-9.696-13.766-16.708C263.365,172.446,278.317,154.134,278.317,154.134z"/>
|
||||
<path fill="#231F20" d="M278.317,154.134c0,0,0.252,0.333,0.726,0.958c0.464,0.631,1.167,1.545,1.991,2.755
|
||||
c0.83,1.206,1.837,2.675,2.906,4.417c1.076,1.738,2.27,3.72,3.418,5.985c1.135,2.275,2.363,4.749,3.09,7.775
|
||||
c0.16,0.773,0.322,1.561,0.322,2.474c0.011,0.73,0.021,1.47,0.031,2.218c0.045,1.497,0.059,3.069-0.042,4.718
|
||||
c-0.104,1.646-0.327,3.384-0.938,5.149c-0.604,1.75-1.697,3.551-3.316,4.795c-1.587,1.271-3.48,1.998-5.308,2.364
|
||||
c-1.835,0.37-3.673,0.472-5.425,0.378c-1.004-0.086-1.924-0.201-2.852-0.438c-0.923-0.234-1.841-0.528-2.712-0.947
|
||||
c-1.752-0.808-3.321-2.006-4.563-3.422c-2.472-2.886-3.635-6.399-4.056-9.727c-0.198-1.689-0.208-3.314,0.019-4.983
|
||||
c0.189-0.993,0.437-1.744,0.729-2.487c0.286-0.742,0.611-1.433,0.939-2.105c1.355-2.658,2.904-4.926,4.35-6.999
|
||||
c1.454-2.066,2.895-3.869,4.168-5.462c1.278-1.591,2.452-2.928,3.411-4.032C277.144,155.325,278.317,154.134,278.317,154.134z
|
||||
M278.317,154.134c0,0-0.924,1.39-2.539,3.822c-0.81,1.211-1.756,2.708-2.848,4.411c-1.093,1.703-2.27,3.658-3.519,5.793
|
||||
c-1.241,2.134-2.521,4.498-3.593,7.025c-0.262,0.63-0.514,1.271-0.715,1.915c-0.217,0.634-0.357,1.323-0.436,1.808
|
||||
c-0.109,1.318,0.043,2.787,0.286,4.184c0.476,2.819,1.64,5.623,3.547,7.665c0.938,1.031,2.063,1.86,3.334,2.422
|
||||
c1.242,0.571,2.734,0.869,4.077,0.956c3.096,0.144,6.202-0.226,8.191-1.788c1.002-0.757,1.705-1.819,2.227-3.062
|
||||
c0.504-1.254,0.773-2.684,0.93-4.143c0.159-1.462,0.193-2.963,0.279-4.47c0.044-0.754,0.088-1.5,0.131-2.237
|
||||
c0.049-0.559-0.031-1.212-0.118-1.844c-0.454-2.585-1.368-5.128-2.256-7.407c-1.838-4.573-3.667-8.321-4.938-10.94
|
||||
c-0.645-1.309-1.151-2.337-1.498-3.039C278.507,154.506,278.317,154.134,278.317,154.134z"/>
|
||||
</g>
|
||||
<path fill="#231F20" d="M329.188,120.743C265.769-8.444,79.153,7.258,42.001,127.262c-54.918,177.373,96.3,241.411,188.291,238.766
|
||||
c7.145-0.204,11.878-13.738,16.854-23.024c2.689-0.683,5.281-1.565,7.707-2.747C354.006,292.044,363.219,190.064,329.188,120.743z
|
||||
M321.558,225.639c-33.082,126.432-146.656,95.626-153.68,96.866C29.995,280.459-14.08,138.251,139.304,63.716
|
||||
C239.233,15.153,348.786,121.603,321.558,225.639z"/>
|
||||
<path fill="#231F20" d="M102.68,176.562c0,0-0.131-0.374-0.374-1.073c-0.229-0.7-0.575-1.711-0.774-3.156
|
||||
c-0.229-1.43-0.365-3.144-0.252-5.167c0.092-2.017,0.475-4.292,1.192-6.712c1.421-4.84,4.396-10.117,8.619-14.714
|
||||
c1.044-1.163,2.171-2.272,3.364-3.328c1.18-1.08,2.42-2.105,3.725-3.055c2.565-1.979,5.392-3.601,8.24-5.131
|
||||
c2.889-1.459,5.855-2.699,8.838-3.705c1.495-0.478,2.972-0.976,4.47-1.311c1.483-0.388,2.951-0.744,4.417-0.981
|
||||
c2.913-0.567,5.76-0.848,8.447-1.026c1.353-0.042,2.661-0.095,3.927-0.098c1.264,0.045,2.483,0.089,3.657,0.131
|
||||
c2.343,0.187,4.47,0.43,6.347,0.774c1.875,0.303,3.494,0.742,4.817,1.08c1.32,0.356,2.349,0.766,3.046,0.985
|
||||
c0.697,0.243,1.068,0.403,1.068,0.403s-1.489,0.635-4.013,1.537c-1.26,0.498-2.782,0.967-4.493,1.604
|
||||
c-1.691,0.59-3.601,1.257-5.683,1.984c-4.114,1.447-8.788,3.132-13.62,5.054c-2.432,0.919-4.858,2.026-7.332,3.049
|
||||
c-2.42,1.139-4.906,2.201-7.261,3.47c-2.385,1.204-4.722,2.485-6.935,3.832c-2.195,1.37-4.342,2.734-6.303,4.194
|
||||
c-1.946,1.471-3.805,2.936-5.449,4.464c-1.622,1.533-3.152,3.058-4.416,4.606c-1.291,1.531-2.405,3.049-3.307,4.491
|
||||
c-0.925,1.427-1.652,2.806-2.225,3.933c-0.291,0.587-0.546,1.112-0.771,1.569c-0.202,0.495-0.371,0.917-0.51,1.254
|
||||
C102.84,176.201,102.68,176.562,102.68,176.562z"/>
|
||||
<path fill="#231F20" d="M282.63,143.869c0,0-0.281-0.279-0.812-0.801c-0.256-0.264-0.566-0.593-0.936-0.979
|
||||
c-0.379-0.341-0.812-0.732-1.299-1.171c-0.949-0.836-2.135-1.851-3.523-2.833c-1.369-1.006-2.969-2.002-4.732-2.951
|
||||
c-1.747-0.97-3.73-1.815-5.805-2.643c-2.092-0.813-4.363-1.486-6.713-2.133c-2.36-0.629-4.863-1.101-7.412-1.563
|
||||
c-2.551-0.433-5.195-0.762-7.856-0.997c-2.657-0.312-5.358-0.377-8.031-0.537c-2.679-0.035-5.339-0.166-7.938-0.125
|
||||
c-5.202,0.003-10.167,0.167-14.521,0.344c-2.207,0.095-4.224,0.184-6.015,0.261c-1.827,0.039-3.417,0.167-4.77,0.169
|
||||
c-2.682,0.095-4.295,0.056-4.295,0.056s0.281-0.285,0.84-0.768c0.565-0.466,1.373-1.222,2.465-2.043
|
||||
c1.103-0.801,2.449-1.811,4.078-2.782c1.615-1.015,3.502-2.029,5.607-3.067c1.076-0.475,2.195-0.967,3.352-1.477
|
||||
c1.179-0.463,2.408-0.898,3.685-1.358c2.562-0.831,5.315-1.62,8.229-2.171c1.448-0.32,2.943-0.534,4.467-0.724
|
||||
c1.512-0.24,3.072-0.326,4.639-0.436c3.145-0.169,6.354-0.112,9.58,0.172c3.215,0.371,6.439,0.833,9.553,1.723
|
||||
c1.562,0.4,3.098,0.89,4.59,1.459c1.497,0.54,2.959,1.151,4.355,1.845c5.627,2.708,10.343,6.513,13.454,10.485
|
||||
c1.561,1.984,2.759,3.954,3.592,5.795c0.849,1.836,1.358,3.479,1.673,4.891c0.354,1.417,0.403,2.485,0.451,3.218
|
||||
C282.61,143.474,282.63,143.869,282.63,143.869z"/>
|
||||
<path fill="#EC1C24" d="M113.778,263.947c0.602-13.463,6.279-38.303,21.797-56.787c10.876-12.962,25.712-22.056,50.781-25.09
|
||||
c61.135-7.4,82.814,51.698,81.788,74.598c0,0-29.754-14.506-74.257-16.496C149.385,238.18,113.778,263.947,113.778,263.947z"/>
|
||||
<path fill="#231F20" d="M269.771,98.4c0,0-0.392-0.071-1.123-0.205c-0.358-0.074-0.801-0.169-1.322-0.279
|
||||
c-0.508-0.068-1.086-0.148-1.732-0.234c-1.255-0.157-2.809-0.323-4.508-0.353c-1.697-0.06-3.58,0.018-5.574,0.231
|
||||
c-1.99,0.184-4.104,0.605-6.281,1.091c-2.186,0.51-4.442,1.234-6.748,2.029c-2.305,0.81-4.635,1.833-7.002,2.886
|
||||
c-2.35,1.083-4.72,2.305-7.051,3.61c-2.367,1.24-4.636,2.714-6.935,4.084c-2.229,1.483-4.502,2.874-6.623,4.375
|
||||
c-4.295,2.936-8.302,5.873-11.799,8.477c-1.769,1.323-3.384,2.533-4.819,3.606c-1.486,1.062-2.729,2.064-3.844,2.83
|
||||
c-2.16,1.59-3.516,2.468-3.516,2.468s0.073-0.392,0.262-1.106c0.203-0.703,0.443-1.783,0.884-3.076
|
||||
c0.457-1.287,1.003-2.877,1.797-4.601c0.763-1.75,1.75-3.651,2.901-5.697c0.623-0.997,1.27-2.035,1.937-3.108
|
||||
c0.709-1.047,1.479-2.1,2.274-3.197c1.648-2.136,3.477-4.339,5.57-6.437c1.015-1.085,2.129-2.1,3.28-3.114
|
||||
c1.111-1.05,2.353-2.005,3.582-2.978c2.504-1.91,5.187-3.675,8.009-5.262c2.865-1.507,5.786-2.942,8.862-3.963
|
||||
c1.517-0.552,3.058-1.014,4.612-1.388c1.542-0.397,3.093-0.718,4.639-0.932c6.172-0.938,12.211-0.451,17.021,1.068
|
||||
c2.408,0.759,4.509,1.714,6.234,2.764c1.734,1.035,3.084,2.106,4.141,3.097c1.089,0.967,1.734,1.821,2.187,2.402
|
||||
C269.534,98.083,269.771,98.4,269.771,98.4z"/>
|
||||
<path fill="#231F20" d="M96.741,100.426c0,0,0.392-0.071,1.125-0.205c0.359-0.074,0.801-0.169,1.323-0.281
|
||||
c0.507-0.065,1.085-0.146,1.732-0.231c1.255-0.16,2.809-0.326,4.508-0.356c1.697-0.057,3.58,0.021,5.573,0.231
|
||||
c1.99,0.187,4.105,0.605,6.282,1.092c2.186,0.51,4.443,1.234,6.748,2.029c2.304,0.812,4.636,1.833,7.002,2.889
|
||||
c2.349,1.08,4.719,2.302,7.05,3.61c2.367,1.24,4.636,2.714,6.935,4.084c2.23,1.483,4.502,2.874,6.623,4.375
|
||||
c4.295,2.936,8.302,5.87,11.799,8.474c1.768,1.323,3.384,2.533,4.82,3.606c1.486,1.062,2.729,2.064,3.844,2.83
|
||||
c2.159,1.59,3.515,2.468,3.515,2.468s-0.074-0.392-0.261-1.104c-0.205-0.706-0.445-1.786-0.884-3.079
|
||||
c-0.457-1.287-1.003-2.877-1.798-4.597c-0.762-1.75-1.75-3.651-2.9-5.698c-0.623-0.999-1.27-2.037-1.937-3.108
|
||||
c-0.709-1.047-1.48-2.103-2.275-3.2c-1.649-2.132-3.476-4.336-5.57-6.433c-1.014-1.085-2.129-2.104-3.28-3.117
|
||||
c-1.112-1.05-2.352-2.005-3.583-2.978c-2.503-1.91-5.185-3.672-8.008-5.259c-2.865-1.51-5.787-2.945-8.863-3.965
|
||||
c-1.516-0.552-3.058-1.011-4.612-1.385c-1.542-0.397-3.094-0.718-4.639-0.931c-6.172-0.938-12.211-0.454-17.021,1.068
|
||||
c-2.409,0.759-4.508,1.711-6.235,2.761c-1.735,1.038-3.084,2.109-4.141,3.096c-1.088,0.97-1.735,1.824-2.186,2.403
|
||||
C96.979,100.105,96.741,100.426,96.741,100.426z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 10 KiB |
|
@ -1,27 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="550px" height="550px" viewBox="-25 -25 550 550" enable-background="new -25 -25 550 550" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#FFFFFF" d="M408.907,216.767c-18.509-37.7-48.32-67.012-85.167-84.189c-10.82-6.583-10.241-15.138,0.883-17.768
|
||||
c17.299-4.089,25.402-22.61,13.566-37.413c-18.651-23.316-43.651-51.155-87.496-50.936c-48.265,0.241-81.341,42.486-93.678,71.126
|
||||
c-9.15,21.248,12.894,27.865,12.894,27.865l10.511,1.749c-0.035,0.101-0.086,0.196-0.122,0.297
|
||||
c-46.708,17.722-80.958,53.219-95.305,99.565c-27.275,88.092-3.893,146.068,20.53,179.195
|
||||
c45.257,61.387,124.825,83.172,179.214,83.172c0.002,0,0.005,0,0.008,0c2.026,0,4.024-0.026,6.002-0.084
|
||||
c19.901-0.569,29.978-16.324,35.751-27.608c45.491-22.367,77.519-57.451,92.659-101.519
|
||||
C434.904,314.395,431.165,262.109,408.907,216.767z"/>
|
||||
<path fill="#231F20" stroke="#231F20" stroke-width="0.5" stroke-miterlimit="10" d="M383.198,229.39
|
||||
c-19.742-40.212-52.142-65.529-87.949-77.347c1.13-1.391,1.799-2.904,1.799-4.565c0-20.302-20.521-36.758-45.829-36.758
|
||||
c-25.312,0-45.829,16.456-45.829,36.758c0,0.66,0.107,1.298,0.293,1.916c-42.697,11.328-79.305,40.847-93.329,86.142
|
||||
C60.561,402.812,203.174,463.21,289.93,460.714c6.737-0.19,11.204-12.959,15.895-21.717c2.535-0.646,4.98-1.479,7.27-2.59
|
||||
C406.601,390.942,415.288,294.762,383.198,229.39z M257.501,168.728c-74.127,0-134.221,59.667-134.221,133.267
|
||||
c0,18.479,3.793,36.072,10.638,52.069c-39.84-56.656-26.048-131.684,70.202-178.455c35.526-17.268,72.341-13.749,103.05,2.584
|
||||
C291.802,172.109,275.053,168.728,257.501,168.728z"/>
|
||||
<polygon fill="#F6921E" points="227.802,74.527 243.17,101.162 219.12,82.002 "/>
|
||||
<polygon fill="#F6921E" points="315.88,88.135 275.327,102.365 310.677,77.926 "/>
|
||||
<polygon fill="#F6921E" points="288.73,62.536 263.866,97.587 278.588,57.21 "/>
|
||||
<polygon fill="#BE1E2D" points="249.727,52.994 253.755,95.78 238.566,55.579 "/>
|
||||
<polygon fill="#BE1E2D" points="189.227,88.122 228.25,106.124 185.858,99.069 "/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.3 KiB |
|
@ -1,59 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="550px" height="550px" viewBox="-85.106 -76.564 550 550" enable-background="new -85.106 -76.564 550 550"
|
||||
xml:space="preserve">
|
||||
<path fill="#FFFFFF" d="M220.97,396.623l-0.887-0.035c-62.638-2.661-144.771-34.32-187.029-99.041
|
||||
c-43.651-66.855-29.273-141.315-9.528-192.007C48.528,41.355,112.677-0.117,186.956-0.117c79.85,0,147.957,45.644,177.741,119.12
|
||||
c19.989,49.314,19.995,104.539,0.015,151.521c-19.211,45.171-55.499,79.64-104.982,99.734
|
||||
c-6.901,11.461-17.949,26.365-38.111,26.365H220.97z"/>
|
||||
<path fill="#231F20" d="M336.729,130.339C283.009-2.179,96.949,0.191,51.646,116.495
|
||||
c-66.967,171.903,78.372,246.062,169.728,249.945c7.098,0.302,12.747-12.777,18.33-21.632c2.716-0.481,5.347-1.178,7.834-2.174
|
||||
C349.214,301.864,365.554,201.445,336.729,130.339z M321.751,233.756c-41.721,122.955-152.091,84.407-159.155,85.139
|
||||
c-133.68-51.418-167.307-195.47-10.022-258.5C255.043,19.332,356.092,132.578,321.751,233.756z"/>
|
||||
<path fill="#231F20" d="M153.935,171.317c3.587,11.215-16.52,22.931-28.965,22.042c-12.445-0.887-19.479-18.834-18.59-31.278
|
||||
c0.887-12.443,11.278-26.225,23.724-25.336C142.548,137.632,150.139,159.435,153.935,171.317z"/>
|
||||
<path fill="#231F20" d="M278.362,164.6c-0.572,8.02-2.381,14.48-8.401,18.32c-3.737,2.383-11.323,8.654-15.972,8.322
|
||||
c-22.352-1.595-22.473-22.048-21.543-35.044c0.928-12.996,11.512-22.829,23.643-21.963C268.217,135.1,279.288,151.604,278.362,164.6
|
||||
z"/>
|
||||
<g>
|
||||
<path fill="#EC1C24" d="M271.964,257.25c0.348,0.602,0.502,0.811,0.423,1.934c-0.032,1.881-0.185,3.849-1.023,5.793
|
||||
c-0.796,1.91-2,3.474-3.612,4.409c-1.659,0.938-3.615,1.285-5.98,1.087c-2.386-0.183-4.898-0.77-8.023-1.515
|
||||
c-0.217-0.062-1.062-0.39-1.374-0.653c-2.183-3.806-5.627-7.697-9.617-11.148c-4.006-3.479-8.569-6.59-13.405-9.307
|
||||
c-3.949-2.3-8.188-4.156-12.447-5.924c-4.323-1.615-8.705-3.13-13.206-4.144c-6.062-1.474-12.239-2.386-18.392-2.683
|
||||
c0,0-0.475-0.051-1.342-0.142c-0.872-0.065-2.145-0.289-3.736-0.354c-3.176-0.166-7.688-0.424-12.83,0.03
|
||||
c-10.342,0.517-23.187,4.188-33.139,9.654c-2.146,1.096-3.967,2.325-5.667,3.413c-0.857,0.542-1.68,1.054-2.458,1.54
|
||||
c-0.746,0.536-1.45,1.041-2.124,1.524c-1.348,0.957-2.605,1.762-3.689,2.498c-1.043,0.778-1.971,1.43-2.802,1.951
|
||||
c-3.318,2.092-4.863,2.219-5.054,0.706c-0.133-1.467,1.022-4.661,3.503-8.723c2.558-3.976,6.375-8.938,11.605-13.425
|
||||
c-0.636,0.338,2.077-2.266,7.125-5.688c5.051-3.378,12.539-7.45,20.706-10.147c2.046-0.617,4.1-1.295,6.154-1.84
|
||||
c2.068-0.473,4.109-0.938,6.088-1.393c2.003-0.318,3.946-0.625,5.788-0.917c1.844-0.279,3.604-0.368,5.228-0.536
|
||||
c6.501-0.516,10.883-0.345,10.883-0.345c6.595,0.403,13.07,1.573,19.437,3.065c5.488,1.268,10.821,3.066,16.086,5.035
|
||||
c5.201,2.125,10.36,4.395,15.279,7.223c5.994,3.379,11.766,7.273,17.155,11.942C262.863,244.863,267.933,250.266,271.964,257.25z"
|
||||
/>
|
||||
</g>
|
||||
<path fill="#231F20" d="M148.105,88.274c0,0,0.102,0.38,0.292,1.094c0.176,0.708,0.45,1.734,0.544,3.179
|
||||
c0.128,1.434,0.14,3.145-0.115,5.139c-0.232,1.993-0.775,4.221-1.656,6.569c-1.75,4.697-5.072,9.717-9.583,13.974
|
||||
c-1.118,1.079-2.311,2.098-3.568,3.06c-1.247,0.988-2.547,1.915-3.908,2.762c-2.681,1.781-5.599,3.187-8.528,4.505
|
||||
c-2.965,1.242-5.995,2.261-9.021,3.047c-1.515,0.368-3.015,0.756-4.524,0.983c-1.496,0.277-2.976,0.528-4.447,0.658
|
||||
c-2.926,0.358-5.767,0.436-8.443,0.423c-1.343-0.055-2.644-0.094-3.899-0.181c-1.25-0.135-2.454-0.264-3.616-0.388
|
||||
c-2.307-0.351-4.399-0.741-6.236-1.218c-1.836-0.431-3.409-0.979-4.697-1.41c-1.282-0.446-2.272-0.922-2.95-1.188
|
||||
c-0.671-0.291-1.028-0.476-1.028-0.476s1.521-0.523,4.084-1.238c1.285-0.405,2.827-0.765,4.568-1.274
|
||||
c1.718-0.467,3.658-0.993,5.773-1.563c4.179-1.146,8.932-2.483,13.854-4.045c2.476-0.74,4.96-1.667,7.482-2.503
|
||||
c2.481-0.96,5.019-1.835,7.441-2.928c2.449-1.024,4.857-2.131,7.143-3.309c2.272-1.204,4.498-2.405,6.545-3.711
|
||||
c2.031-1.317,3.979-2.639,5.715-4.038c1.718-1.407,3.342-2.808,4.703-4.251c1.385-1.426,2.599-2.854,3.595-4.219
|
||||
c1.017-1.348,1.836-2.665,2.481-3.741c0.33-0.561,0.619-1.062,0.875-1.5c0.235-0.475,0.434-0.88,0.595-1.208
|
||||
C147.92,88.622,148.105,88.274,148.105,88.274z"/>
|
||||
<path fill="#231F20" d="M212.599,82.544c0,0,0.258,0.296,0.748,0.853c0.235,0.281,0.521,0.627,0.857,1.035
|
||||
c0.354,0.366,0.755,0.784,1.204,1.251c0.881,0.897,1.987,1.986,3.292,3.059c1.289,1.092,2.8,2.196,4.482,3.26
|
||||
c1.66,1.085,3.568,2.064,5.565,3.029c2.015,0.954,4.218,1.78,6.502,2.586c2.296,0.793,4.742,1.436,7.235,2.074
|
||||
c2.496,0.61,5.095,1.122,7.715,1.543c2.613,0.496,5.285,0.752,7.924,1.103c2.652,0.223,5.277,0.542,7.857,0.68
|
||||
c5.155,0.367,10.086,0.555,14.416,0.688c2.192,0.062,4.198,0.118,5.979,0.167c1.814,0.089,3.398,0.076,4.739,0.169
|
||||
c2.663,0.095,4.259,0.249,4.259,0.249s-0.297,0.26-0.884,0.699c-0.597,0.42-1.448,1.114-2.589,1.852
|
||||
c-1.147,0.718-2.555,1.619-4.236,2.47c-1.674,0.893-3.615,1.763-5.775,2.645c-1.103,0.391-2.244,0.802-3.428,1.226
|
||||
c-1.201,0.376-2.449,0.719-3.747,1.087c-2.599,0.64-5.383,1.229-8.308,1.568c-1.461,0.217-2.957,0.321-4.479,0.399
|
||||
c-1.515,0.132-3.067,0.107-4.628,0.105c-3.128-0.056-6.305-0.336-9.482-0.847c-3.158-0.595-6.324-1.28-9.344-2.383
|
||||
c-1.523-0.507-3.007-1.101-4.447-1.769c-1.443-0.642-2.851-1.351-4.187-2.139c-5.386-3.081-9.788-7.185-12.595-11.341
|
||||
c-1.404-2.075-2.452-4.114-3.146-5.997c-0.713-1.879-1.104-3.547-1.313-4.967c-0.247-1.428-0.224-2.49-0.218-3.22
|
||||
C212.589,82.937,212.599,82.544,212.599,82.544z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 5.5 KiB |
|
@ -1,172 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="550px" height="550px" viewBox="-23.674 -24.532 550 550" enable-background="new -23.674 -24.532 550 550"
|
||||
xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#FFFFFF" d="M473.386,235.012c-4.621-27.617-30.078-47.659-60.53-47.659c-1.607,0-3.303,0.054-5.07,0.179
|
||||
c2.752-13.448,4.938-27.284,5.282-40.504c0.511-19.698-3.59-54.653-36.791-67.417c-7.479-2.876-13.17-4.19-17.95-4.816
|
||||
c-0.555-0.599-2.521-2.754-2.521-2.754c-10.107-10.587-23.009-17.05-37.323-18.699c-2.48-0.302-4.979-0.456-7.432-0.456
|
||||
c-12.735,0-24.654,4.053-34.938,11.699c-3.748-0.681-7.597-1.023-11.536-1.023c-0.916,0-1.843,0.017-2.774,0.057l-0.787,0.032
|
||||
l-0.788,0.073c-39.173,3.746-47.534,33.645-51.104,46.41c-0.219,0.786-0.469,1.683-0.721,2.543
|
||||
c-16.601,6.294-25.184,17.362-29.531,25.931c-1.103,2.176-1.985,4.395-2.766,6.631c0,0,4.533-32.356-11.066-34.103
|
||||
c-1.672-0.188-3.543-0.128-5.575-0.128c-7.004,0-14.146,0.592-21.426,1.798c-4.917,0.849-10.786,1.991-17.206,4.039
|
||||
c-2.471,0.715-4.678,1.513-6.481,2.162l-2.769,0.978l-1.968,0.82c-2.268,0.94-5.056,2.096-8.07,3.649
|
||||
c-6.295,3.045-12.557,6.805-18.616,11.177l-0.569,0.414c0,0-1.61,1.268-2.146,1.681c-1.914,1.481-4.281,3.307-6.765,5.625
|
||||
l-3.752,3.381l-3.601,3.678c-2.495,2.489-4.387,4.843-5.914,6.742c-0.439,0.547-0.878,1.097-1.331,1.629l-0.444,0.521l-0.418,0.542
|
||||
c-1.804,2.333-3.367,4.578-4.746,6.557l-1.715,2.447l-1.359,2.239c-1.373,2.251-2.928,4.797-4.438,7.706
|
||||
c0,0-1.15,2.333-1.521,3.083c-1.049,2.099-2.071,4.184-2.983,6.289c0,0-0.945,2.308-1.253,3.048
|
||||
c-0.868,2.097-1.711,4.168-2.453,6.244l-0.193,0.542l-2.578,8.261c-0.792,2.658-1.359,5.102-1.814,7.064l-0.353,1.51l-1.049,4.697
|
||||
l-1.72,10.981l-0.068,0.612c-0.183,1.617-0.308,3.191-0.425,4.701l-0.11,1.399c-0.424,4.546-0.783,8.454-0.564,11.91
|
||||
c1.892,29.77,63.236,19.186,63.236,19.186c-2.288,3.304-4.299,6.84-5.962,10.6l-0.319,0.722l-0.279,0.733
|
||||
c-13.964,36.793,9.155,57.515,19.025,66.361c0.607,0.543,1.299,1.164,1.96,1.769c-1.695,17.673,4.433,30.267,10.195,37.955
|
||||
c15.767,21.03,43.896,26.274,63.685,28.392c10.748,1.148,28.11,7.161,44.902,12.979c27.361,9.478,58.373,20.219,86.666,20.219
|
||||
c22.151,0,40.464-6.534,54.416-19.418c15.047-13.882,26.63-43.384,29.822-52.098c7.805-21.301,10.997-39.146,9.695-53.375
|
||||
c7.534-12.575,11.668-18.113,18.929-20.619C466.541,288.102,477.089,257.14,473.386,235.012z"/>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M241.1,140.932c-3.662-16.259-3.89-31.309,11.57-40.825c10.73-6.606,21.393-4.399,32.166,3.874
|
||||
c6.785-11.249,15.291-19.932,29.664-18.12c14.25,1.794,21.32,11.34,24.908,23.942c28.652-6.17,42.139,5.93,38.116,34.778
|
||||
c-3.606,25.956-8.946,51.668-13.161,77.544c-1.234,7.613-1.248,15.424-1.812,23.146c0.953,0.529,1.896,1.043,2.854,1.567
|
||||
c3.824-4.002,7.833-7.856,11.466-12.042c8.938-10.294,18.185-19.77,32.974-21.111c15.053-1.35,27.831,4.624,32.047,15.646
|
||||
c4.08,10.652-0.769,23.642-12.737,32.349c-4.717,3.434-9.953,6.579-15.439,8.465c-19.245,6.639-31.144,19.581-39.678,38.116
|
||||
c-5.227,11.353-15.394,20.724-24.468,29.871c-3.815,3.842-10.587,6.821-15.937,6.69c-17.846-0.416-35.461,1.992-53.161,2.528
|
||||
c-16.529,0.494-28.05-9.541-35.68-23.868c-9.495-17.8-13.101-37.369-13.211-56.988c-0.11-19.323-5.888-36.644-12.466-54.13
|
||||
c-3.808-10.121-7.654-20.236-11.112-30.488C198.943,155.008,211.473,138.688,241.1,140.932z M260.938,214.08
|
||||
c-0.72-2.656-1.446-5.452-2.247-8.221c-4.527-15.744-8.674-31.607-13.778-47.158c-2.662-8.13-8.871-13.1-18.123-11.881
|
||||
c-7.888,1.032-14.954,9.42-15.025,18.336c-0.041,4.805,1.034,9.766,2.455,14.394c2.313,7.511,5.104,14.889,8.072,22.17
|
||||
c9.312,22.872,15.646,46.133,16.708,71.214c0.614,14.715,4.794,29.852,10.246,43.655c8.738,22.087,25.672,28.752,48.772,23.024
|
||||
c6.601-1.637,13.892-0.269,20.74-1.172c8.843-1.164,19.676-0.574,25.876-5.494c10.436-8.27,20.925-19.021,25.938-31.008
|
||||
c8.24-19.777,22.118-30.562,40.793-38.256c7.605-3.125,15.145-8.215,20.629-14.286c9.756-10.774,4.281-25.32-9.99-28.67
|
||||
c-13.443-3.158-24.5,1.713-33.684,11.397c-5.187,5.463-9.57,11.823-15.301,16.595c-3.932,3.28-9.562,4.522-14.429,6.677
|
||||
c-0.792-4.661-2.804-9.499-2.163-13.958c4.527-31.791,9.941-63.454,14.251-95.267c1.006-7.423,0.653-16.128-2.448-22.638
|
||||
c-2.22-4.677-10.256-9.451-15.334-9.101c-5.064,0.361-10.451,6.458-14.188,11.223c-2.334,2.955-2.241,8.089-2.592,12.297
|
||||
c-1.375,16.659-2.473,33.34-3.74,50.013c-0.454,6.184-1.104,12.354-1.666,18.534c-1.151-0.078-2.29-0.151-3.438-0.228
|
||||
c0.224-2.935,0.493-5.861,0.662-8.795c1.556-27.477,3.595-54.948,4.425-82.454c0.432-14.067-9.197-23.069-21.732-22.795
|
||||
c-11.977,0.262-19.612,9.6-18.69,23.877c1.688,25.825,3.915,51.599,5.647,77.418c0.466,6.914,0.849,13.206,10.123,12.75
|
||||
C292.279,208.851,276.857,211.431,260.938,214.08z M245.454,120.842c-0.031,1.02-0.508,3.073-0.08,4.917
|
||||
c6.315,27.099,11.206,54.685,19.933,80.994c3.456,10.44,15.077-1.755,23.207-0.493c1.646,0.248,5.971-4.439,5.742-6.48
|
||||
c-3.017-26.974-6.252-53.96-10.287-80.809c-1.607-10.639-9.059-16.177-18.174-16.125
|
||||
C256.636,102.901,247.497,110.635,245.454,120.842z"/>
|
||||
<path fill="#A6A8AB" d="M260.938,214.08c15.919-2.649,31.341-5.229,46.771-7.805c-9.275,0.455-9.658-5.837-10.123-12.75
|
||||
c-1.733-25.819-3.961-51.593-5.648-77.418c-0.922-14.277,6.715-23.615,18.689-23.877c12.537-0.273,22.166,8.728,21.733,22.795
|
||||
c-0.831,27.505-2.87,54.977-4.425,82.454c-0.169,2.936-0.439,5.86-0.662,8.794c1.148,0.077,2.287,0.15,3.438,0.229
|
||||
c0.562-6.18,1.213-12.35,1.666-18.534c1.27-16.673,2.365-33.354,3.74-50.013c0.352-4.208,0.258-9.342,2.594-12.297
|
||||
c3.734-4.766,9.121-10.862,14.187-11.223c5.078-0.351,13.114,4.423,15.334,9.101c3.103,6.51,3.454,15.215,2.448,22.638
|
||||
c-4.311,31.813-9.725,63.475-14.251,95.268c-0.64,4.457,1.37,9.295,2.163,13.958c4.865-2.154,10.496-3.397,14.429-6.678
|
||||
c5.729-4.771,10.114-11.132,15.301-16.595c9.185-9.686,20.239-14.557,33.683-11.397c14.272,3.351,19.746,17.896,9.991,28.671
|
||||
c-5.484,6.07-13.022,11.16-20.629,14.285c-18.675,7.694-32.553,18.479-40.793,38.255c-5.014,11.988-15.503,22.739-25.938,31.01
|
||||
c-6.2,4.92-17.033,4.33-25.876,5.494c-6.851,0.902-14.141-0.466-20.74,1.172c-23.102,5.727-40.034-0.938-48.772-23.025
|
||||
c-5.452-13.805-9.632-28.941-10.246-43.655c-1.062-25.081-7.396-48.342-16.708-71.214c-2.968-7.281-5.759-14.659-8.072-22.17
|
||||
c-1.421-4.628-2.496-9.589-2.455-14.394c0.071-8.916,7.138-17.304,15.025-18.336c9.252-1.219,15.461,3.751,18.123,11.881
|
||||
c5.104,15.55,9.25,31.415,13.778,47.159C259.492,208.629,260.219,211.424,260.938,214.08z"/>
|
||||
<path fill="#A6A8AB" d="M245.454,120.842c2.043-10.207,11.183-17.941,20.341-17.997c9.115-0.051,16.565,5.486,18.174,16.125
|
||||
c4.035,26.848,7.271,53.835,10.287,80.808c0.229,2.041-4.096,6.729-5.742,6.481c-8.13-1.263-19.751,10.933-23.207,0.493
|
||||
c-8.727-26.309-13.616-53.895-19.933-80.994C244.946,123.915,245.422,121.862,245.454,120.842z"/>
|
||||
<path d="M261.941,353.963c-46.845-18.019-37.829-114.419-52.983-155.726c-7.651-20.854-15.439-51.155,12.799-59.285
|
||||
c23.483-6.776,6.6-42.876,41.247-46.189c7.599-0.313,14.476,1.629,20.625,5.819c7.33-10.785,17.694-17.998,31.414-16.274
|
||||
c7.648,0.858,14.199,4.15,19.662,9.874c16.221,18.025,10.223,6.623,31.098,14.652c39.05,15.016,3.162,102.152,1.458,132.658
|
||||
c58.265-59.521,113.663,12.805,47.86,35.464c-33.681,11.617-34.516,49.841-62.488,66.943
|
||||
C338.133,356.524,279.043,360.537,261.941,353.963z M233.767,152.423c-34.478-13.259,6.819,95.226,7.956,103.471
|
||||
c9.224,66.734,17.633,83.504,83.486,78.326c34.17-2.684,36.867-37.652,57.721-57.271c9.865-9.276,54-21.856,49.364-41.296
|
||||
c-8.477-35.559-63.27,22.593-77.033,26.671c-5.138-19.13,23.852-144.678-2.064-142.851c-35.126,2.473,6.185,97.18-30.554,91.542
|
||||
c2.094-25.919,16.409-83.392,2.877-106.093c-9.479-15.886-30.393-5.605-29.273,11.637c1.682,25.817,3.912,51.591,5.651,77.398
|
||||
c1.597,23.999,5.056,17.554-30.978,23.567C236.265,223.307,261.857,163.226,233.767,152.423z M249.643,123.097
|
||||
c-1.061,9.19,18.88,116.249,40.252,77.269c-2.991-26.723-6.195-53.425-10.195-80.02
|
||||
C276.636,100.019,251.402,107.656,249.643,123.097C249.554,123.855,249.685,122.753,249.643,123.097z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M146.761,331.268c-16.202-3.903-29.798-10.36-31.493-28.428c-1.179-12.552,5.509-21.14,17.692-27.142
|
||||
c-7.084-11.062-11.107-22.53-3.13-34.62c7.911-11.985,19.604-14.105,32.491-11.75c7.141-28.434,23.95-35.165,48.052-18.811
|
||||
c21.688,14.717,42.379,30.877,63.721,46.103c6.283,4.471,13.291,7.939,19.966,11.865c0.892-0.627,1.78-1.244,2.669-1.871
|
||||
c-1.9-5.201-3.583-10.506-5.73-15.603c-5.28-12.573-9.688-25.057-4.348-38.917c5.442-14.094,16.445-22.913,28.198-21.819
|
||||
c11.356,1.054,20.862,11.143,23.384,25.726c0.997,5.75,1.499,11.84,0.768,17.592c-2.56,20.192,3.781,36.589,16.632,52.448
|
||||
c7.87,9.703,11.784,22.967,15.973,35.15c1.761,5.121,1.435,12.514-1.042,17.254c-8.271,15.822-13.898,32.686-21.247,48.799
|
||||
c-6.86,15.037-20.964,20.94-37.187,21.443c-20.159,0.643-39.312-4.776-56.954-13.355c-17.384-8.448-35.469-10.931-54.061-12.76
|
||||
c-10.769-1.06-21.536-2.082-32.262-3.519C140.747,375.301,131.653,356.847,146.761,331.268z M221.151,345.821
|
||||
c-2.71-0.525-5.536-1.107-8.373-1.617c-16.124-2.898-32.187-6.201-48.393-8.5c-8.469-1.207-15.669,2.166-18.672,11
|
||||
c-2.56,7.533,1.841,17.575,9.805,21.591c4.287,2.159,9.215,3.39,13.992,4.159c7.76,1.253,15.619,2.011,23.458,2.568
|
||||
c24.628,1.757,48.303,6.364,71.26,16.512c13.468,5.95,28.891,8.898,43.689,10.105c23.674,1.932,37.139-10.307,42.215-33.554
|
||||
c1.455-6.646,5.902-12.579,8.123-19.128c2.867-8.443,8.186-17.896,6.516-25.635c-2.803-13.012-7.805-27.179-16.336-36.972
|
||||
c-14.095-16.141-17.636-33.356-16.271-53.512c0.557-8.201-0.672-17.213-3.691-24.822c-5.352-13.507-20.811-15.032-30.137-3.708
|
||||
c-8.774,10.656-9.297,22.726-4.672,35.243c2.607,7.068,6.371,13.817,8.123,21.063c1.198,4.981-0.172,10.582-0.398,15.896
|
||||
c-4.529-1.353-9.76-1.688-13.475-4.231c-26.508-18.121-52.514-36.98-79.142-54.909c-6.212-4.188-14.174-7.724-21.39-7.828
|
||||
c-5.176-0.069-13.01,5.021-14.938,9.736c-1.919,4.696,1.168,12.229,3.786,17.689c1.62,3.395,6.267,5.581,9.887,7.759
|
||||
c14.331,8.6,28.807,16.959,43.201,25.465c5.343,3.154,10.591,6.461,15.885,9.7c-0.571,0.996-1.151,1.981-1.727,2.979
|
||||
c-2.532-1.495-5.037-3.027-7.599-4.483c-23.954-13.542-47.694-27.523-71.992-40.43c-12.428-6.606-24.756-1.952-30.052,9.412
|
||||
c-5.064,10.858-0.068,21.833,13.149,27.323c23.902,9.904,48.01,19.308,71.926,29.168c6.41,2.643,12.221,5.075,15.921-3.435
|
||||
C230.312,315.399,225.805,330.372,221.151,345.821z M130.664,318.479c0.906,0.479,2.539,1.814,4.384,2.239
|
||||
c27.099,6.324,53.998,14.135,81.45,17.948c10.896,1.518,5.102-14.3,9.826-21.034c0.95-1.361-1.343-7.314-3.271-8.012
|
||||
c-25.534-9.229-51.166-18.262-77.028-26.506c-10.254-3.271-18.51,0.961-22.5,9.162
|
||||
C119.524,300.516,122.418,312.129,130.664,318.479z"/>
|
||||
<path fill="#FFFFFF" d="M221.151,345.821c4.654-15.449,9.161-30.422,13.681-45.392c-3.699,8.511-9.511,6.076-15.921,3.435
|
||||
c-23.916-9.86-48.024-19.264-71.926-29.168c-13.217-5.488-18.213-16.465-13.149-27.323c5.296-11.364,17.624-16.019,30.052-9.412
|
||||
c24.298,12.906,48.038,26.888,71.992,40.43c2.562,1.456,5.065,2.988,7.599,4.484c0.574-0.998,1.154-1.984,1.727-2.98
|
||||
c-5.294-3.239-10.542-6.546-15.885-9.7c-14.394-8.506-28.87-16.865-43.201-25.465c-3.621-2.179-8.267-4.364-9.887-7.759
|
||||
c-2.618-5.462-5.706-12.993-3.786-17.689c1.928-4.715,9.762-9.806,14.938-9.736c7.216,0.105,15.178,3.64,21.39,7.828
|
||||
c26.628,17.929,52.634,36.788,79.142,54.909c3.716,2.543,8.944,2.879,13.475,4.231c0.227-5.312,1.598-10.913,0.398-15.896
|
||||
c-1.752-7.246-5.516-13.995-8.123-21.063c-4.625-12.518-4.104-24.587,4.672-35.243c9.326-11.324,24.785-9.799,30.137,3.708
|
||||
c3.021,7.609,4.248,16.621,3.691,24.822c-1.363,20.153,2.178,37.371,16.271,53.512c8.531,9.793,13.533,23.96,16.336,36.972
|
||||
c1.67,7.738-3.648,17.19-6.515,25.635c-2.222,6.549-6.669,12.481-8.124,19.128c-5.076,23.247-18.541,35.485-42.215,33.554
|
||||
c-14.799-1.207-30.223-4.155-43.689-10.105c-22.957-10.146-46.631-14.754-71.26-16.512c-7.839-0.559-15.699-1.315-23.458-2.568
|
||||
c-4.777-0.771-9.705-2-13.992-4.159c-7.964-4.015-12.365-14.058-9.805-21.59c3.003-8.835,10.204-12.208,18.672-11.001
|
||||
c16.206,2.299,32.269,5.602,48.393,8.501C215.615,344.713,218.441,345.295,221.151,345.821z"/>
|
||||
<path fill="#FFFFFF" d="M130.664,318.479c-8.246-6.35-11.14-17.963-7.141-26.202c3.991-8.201,12.246-12.433,22.5-9.162
|
||||
c25.863,8.246,51.494,17.277,77.028,26.508c1.929,0.695,4.222,6.648,3.271,8.011c-4.724,6.733,1.07,22.552-9.826,21.034
|
||||
c-27.452-3.813-54.351-11.624-81.45-17.948C133.203,320.293,131.57,318.957,130.664,318.479z"/>
|
||||
<path d="M346.391,407.193c-36.876,34.049-119.351-16.671-163.104-21.347c-22.085-2.361-52.705-8.776-47.509-37.7
|
||||
c4.31-24.058-35.536-24.876-23.185-57.419c3.079-6.957,7.862-12.263,14.34-15.93c-6.429-11.342-8.314-23.829-0.701-35.367
|
||||
c4.147-6.479,10.004-10.899,17.551-13.274c23.346-6.578,10.459-6.232,26.895-21.404c30.74-28.383,93.019,42.341,119.625,57.36
|
||||
c-27.618-78.583,61.753-96.287,52.97-27.241c-4.474,35.346,29.438,52.995,32.409,85.649
|
||||
C382.391,339.991,359.858,394.766,346.391,407.193z M153.172,343.333c-27.136,25.052,88.428,35.996,96.321,38.622
|
||||
c63.938,21.243,82.69,21.113,107.175-40.233c12.707-31.844-17.467-49.718-25.84-77.096c-3.961-12.953,4.274-58.105-15.207-62.543
|
||||
c-35.641-8.115-7.713,66.734-10.149,80.885c-19.429-3.855-119.208-85.371-129.027-61.324
|
||||
c-13.317,32.602,89.891,37.43,68.583,67.895c-22.315-13.342-67.527-51.601-93.875-49.501
|
||||
c-18.439,1.474-18.47,24.771-2.516,31.396c23.9,9.912,48.005,19.307,71.915,29.167c22.236,9.183,17.99,3.224,7.443,38.2
|
||||
C217.848,372.444,175.285,322.917,153.172,343.333z M133.893,316.126c7.776,5.01,112.612,34.479,87.1-1.936
|
||||
c-25.287-9.129-50.653-18.064-76.276-26.238C125.133,281.712,120.82,307.717,133.893,316.126
|
||||
C134.531,316.534,133.602,315.937,133.893,316.126z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path fill="#231F20" d="M164.683,194.081c0,0-1.604,0.268-4.304,0.899c-2.703,0.619-6.492,1.65-10.833,3.165
|
||||
c-4.313,1.604-9.204,3.655-13.943,6.553c-2.402,1.39-4.694,3.084-6.982,4.828c-2.202,1.846-4.427,3.734-6.366,5.916
|
||||
c-2.041,2.086-3.803,4.422-5.532,6.736c-0.798,1.211-1.587,2.414-2.371,3.602c-0.718,1.242-1.427,2.467-2.127,3.672
|
||||
c-0.644,1.25-1.276,2.479-1.897,3.681c-0.563,1.245-1.117,2.46-1.652,3.644c-0.553,1.188-0.949,2.401-1.441,3.541
|
||||
c-0.507,1.139-0.934,2.268-1.291,3.371c-0.761,2.189-1.501,4.213-2.037,6.051c-0.563,1.828-1.131,3.429-1.473,4.774
|
||||
c-0.766,2.68-1.31,4.229-1.31,4.229s-0.22-1.598-0.419-4.426c-0.127-1.418-0.176-3.141-0.102-5.116
|
||||
c0.026-0.991,0.051-2.049,0.08-3.162c0.117-1.111,0.242-2.275,0.367-3.492c0.203-2.455,0.767-5.073,1.373-7.852
|
||||
c0.387-1.373,0.783-2.783,1.19-4.228c0.47-1.427,1.052-2.854,1.595-4.329c1.211-2.9,2.687-5.826,4.45-8.663
|
||||
c1.817-2.803,3.871-5.538,6.219-8.021c4.673-4.991,10.365-8.99,16.134-11.605c5.746-2.695,11.511-4.029,16.422-4.578
|
||||
c4.923-0.59,9.033-0.367,11.859-0.017C163.122,193.588,164.683,194.081,164.683,194.081z"/>
|
||||
<path fill="#231F20" d="M169.893,166.578c0,0-2.356,0.213-6.373,0.914c-4.017,0.684-9.682,1.906-16.225,3.919
|
||||
c-3.26,1.057-6.743,2.28-10.315,3.792c-3.584,1.481-7.218,3.333-10.858,5.383c-3.692,1.986-7.145,4.587-10.657,7.15
|
||||
c-3.398,2.72-6.759,5.614-9.69,8.93c-1.592,1.532-2.909,3.324-4.364,4.976c-1.361,1.731-2.652,3.517-3.959,5.269
|
||||
c-1.151,1.859-2.404,3.64-3.53,5.475c-1.042,1.883-2.168,3.7-3.119,5.575c-0.92,1.899-1.826,3.766-2.711,5.595
|
||||
c-0.801,1.879-1.584,3.716-2.347,5.509c-0.758,1.802-1.288,3.63-1.958,5.353c-0.686,1.721-1.256,3.416-1.724,5.074
|
||||
c-1.022,3.289-1.968,6.322-2.629,9.071c-0.715,2.731-1.404,5.121-1.797,7.125c-0.903,3.987-1.524,6.286-1.524,6.286
|
||||
s-0.142-2.345-0.204-6.483c-0.08-2.078-0.003-4.587,0.222-7.466c0.103-1.441,0.165-2.986,0.322-4.605
|
||||
c0.228-1.61,0.467-3.305,0.717-5.071c0.417-3.563,1.367-7.347,2.376-11.349c0.601-1.985,1.216-4.021,1.846-6.105
|
||||
c0.712-2.062,1.615-4.104,2.444-6.223c0.892-2.092,1.974-4.146,2.982-6.271c1.071-2.095,2.341-4.123,3.569-6.193
|
||||
c1.376-1.978,2.709-4.021,4.219-5.941c1.589-1.858,3.036-3.857,4.793-5.583c3.347-3.612,7.153-6.763,10.994-9.691
|
||||
c3.919-2.826,8.027-5.253,12.159-7.207c4.091-2.051,8.259-3.538,12.247-4.712c3.965-1.256,7.831-1.968,11.383-2.532
|
||||
c7.121-1.091,13.112-1.06,17.25-0.772C167.579,166.032,169.893,166.578,169.893,166.578z"/>
|
||||
<path fill="#231F20" d="M171.642,141.084c0,0-0.712,0.03-2.037,0.174c-1.325,0.122-3.262,0.404-5.702,0.751
|
||||
c-4.885,0.727-11.794,2.074-19.794,4.419c-3.983,1.227-8.25,2.654-12.625,4.463c-4.39,1.763-8.854,3.97-13.32,6.46
|
||||
c-4.526,2.404-8.782,5.537-13.086,8.677c-2.051,1.709-4.228,3.295-6.15,5.195l-2.962,2.763l-2.783,2.955
|
||||
c-1.957,1.877-3.578,4.062-5.369,6.082c-1.687,2.108-3.23,4.321-4.816,6.472c-1.391,2.291-2.906,4.478-4.268,6.729
|
||||
c-1.265,2.31-2.624,4.54-3.772,6.839c-1.105,2.327-2.193,4.615-3.258,6.852c-0.955,2.304-1.886,4.555-2.795,6.75
|
||||
c-0.9,2.199-1.527,4.437-2.313,6.544c-0.379,1.061-0.754,2.103-1.122,3.126c-0.302,1.045-0.599,2.07-0.892,3.072
|
||||
c-0.589,2.018-1.153,3.945-1.692,5.783c-0.516,1.846-0.903,3.624-1.324,5.287c-0.815,3.334-1.587,6.244-2.014,8.68
|
||||
c-1.005,4.854-1.664,7.649-1.664,7.649s-0.08-2.841-0.066-7.847c-0.042-2.51,0.114-5.543,0.439-9.021
|
||||
c0.154-1.736,0.259-3.603,0.479-5.555c0.302-1.941,0.619-3.986,0.952-6.117c0.168-1.068,0.342-2.16,0.518-3.273
|
||||
c0.245-1.1,0.494-2.219,0.747-3.361c0.545-2.27,1.043-4.646,1.755-7.032c0.744-2.387,1.51-4.837,2.293-7.341
|
||||
c0.883-2.477,1.977-4.939,2.991-7.484c1.091-2.515,2.407-4.983,3.631-7.537c1.305-2.513,2.846-4.945,4.344-7.423
|
||||
c1.67-2.37,3.305-4.8,5.102-7.125c1.906-2.239,3.632-4.652,5.74-6.734l3.099-3.167l3.287-2.963
|
||||
c2.142-2.025,4.541-3.729,6.811-5.541c4.712-3.401,9.623-6.363,14.59-8.74c2.439-1.281,4.959-2.272,7.395-3.293
|
||||
c2.499-0.863,4.897-1.817,7.313-2.49c4.768-1.552,9.42-2.473,13.696-3.209c8.577-1.419,15.81-1.513,20.818-1.271
|
||||
c2.506,0.089,4.466,0.345,5.796,0.505C170.94,140.952,171.642,141.084,171.642,141.084z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 18 KiB |