Downgrade OnlyOffice to 7.1.0

This commit is contained in:
Wolfgang Ginolas 2023-04-26 16:30:40 +02:00
parent 20141d3ba3
commit 62f5fd6327
16306 changed files with 98496 additions and 140623 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -31,7 +31,7 @@
*/
var editor = undefined;
var window = ("undefined" === typeof window) ? {} : window;
var window = {};
var navigator = {};
navigator.userAgent = "chrome";
window.navigator = navigator;
@ -74,21 +74,9 @@ var AscCommonExcel = window["AscCommonExcel"];
window["AscCommonWord"] = {};
var AscCommonWord = window["AscCommonWord"];
window["AscMath"] = {};
var AscMath = window["AscMath"];
window["AscCommonSlide"] = {};
var AscCommonSlide = window["AscCommonSlide"];
window["AscBuilder"] = {};
var AscBuilder = window["AscBuilder"];
window["AscWord"] = {};
var AscWord = window["AscWord"];
window["AscJsonConverter"] = {};
var AscJsonConverter = window["AscJsonConverter"];
function Image()
{
this.src = "";
@ -319,8 +307,7 @@ var setInterval = window.setInterval = function() {};
var console = {
log: function (param) { window.native.ConsoleLog(param); },
time: function (param) {},
timeEnd: function (param) {},
warn: function() {}
timeEnd: function (param) {}
};
var performance = window.performance = (function(){
@ -329,42 +316,3 @@ var performance = window.performance = (function(){
now : function() { return Date.now() - basePerformanceOffset; }
};
})();
(function(window, undefined){
function ZLib()
{
this.engine = CreateNativeZip();
this.files = {};
}
ZLib.prototype.isModuleInit = true;
ZLib.prototype.open = function(buf)
{
return this.engine.open((undefined !== buf.byteLength) ? new Uint8Array(buf) : buf);
};
ZLib.prototype.create = function()
{
return this.engine.create();
};
ZLib.prototype.save = function()
{
return this.engine.save();
};
ZLib.prototype.getFile = function(path)
{
return this.engine.getFile(path);
};
ZLib.prototype.addFile = function(path, data)
{
return this.engine.addFile(path, (undefined !== data.byteLength) ? new Uint8Array(data) : data);
};
ZLib.prototype.removeFile = function(path)
{
return this.engine.removeFile(path);
};
ZLib.prototype.close = function()
{
return this.engine.close();
};
window.nativeZlibEngine = new ZLib();
})(window, undefined);

View File

@ -35,8 +35,6 @@ function CNativeGraphics()
{
this.Native = CreateNativeGraphics();
this.isNativeGraphics = true;
this.width = 0;
this.height = 0;
this.m_dWidthMM = 0;
@ -155,8 +153,6 @@ CNativeGraphics.prototype =
},
_m : function(x, y)
{
x = isNaN(x) ? 0 : x;
y = isNaN(y) ? 0 : y;
this.Native["_m"](x, y);
if (false === this.GetIntegerGrid() && this.ArrayPoints != null)
@ -164,8 +160,6 @@ CNativeGraphics.prototype =
},
_l : function(x, y)
{
x = isNaN(x) ? 0 : x;
y = isNaN(y) ? 0 : y;
this.Native["_l"](x, y);
if (false === this.GetIntegerGrid() && this.ArrayPoints != null)
@ -173,12 +167,6 @@ CNativeGraphics.prototype =
},
_c : function(x1, y1, x2, y2, x3, y3)
{
x1 = isNaN(x1) ? 0 : x1;
y1 = isNaN(y1) ? 0 : y1;
x2 = isNaN(x2) ? 0 : x2;
y2 = isNaN(y2) ? 0 : y2;
x3 = isNaN(x3) ? 0 : x3;
y3 = isNaN(y3) ? 0 : y3;
this.Native["_c"](x1, y1, x2, y2, x3, y3);
if (false === this.GetIntegerGrid() && this.ArrayPoints != null)
@ -190,10 +178,6 @@ CNativeGraphics.prototype =
},
_c2 : function(x1, y1, x2, y2)
{
x1 = isNaN(x1) ? 0 : x1;
y1 = isNaN(y1) ? 0 : y1;
x2 = isNaN(x2) ? 0 : x2;
y2 = isNaN(y2) ? 0 : y2;
this.Native["_c2"](x1, y1, x2, y2);
if (false === this.GetIntegerGrid() && this.ArrayPoints != null)
@ -289,12 +273,6 @@ CNativeGraphics.prototype =
this.m_oGrFonts = this.m_oTextPr.RFonts;
}
},
SetFontInternal : function(name, size, style)
{
this.Native["SetFont"](name, -1, size, style);
},
SetFontSlot : function(slot, fontSizeKoef)
{
var _lastFont = {FontFamily : {Name : "Arial", Index : -1}, FontSize : 16, Italic : true, Bold : true};
@ -366,9 +344,10 @@ CNativeGraphics.prototype =
{
this.Native["FillTextCode"](x, y, lUnicode);
},
tg : function(code, x, y)
tg : function(text, x, y)
{
this.Native["tg"](code, x, y);
var _code = text.charCodeAt(0);
this.Native["tg"](_code, x, y);
},
charspace : function(space)
{
@ -749,10 +728,5 @@ CNativeGraphics.prototype =
GetPen : function()
{
return { Color : this.Native["GetPenColor"]()};
},
Destroy : function()
{
this.Native["Destroy"]();
}
};

View File

@ -107,7 +107,7 @@ else
if (undefined === start)
start = 0;
if (undefined === len)
len = buffer.length - start;
len = buffer.length;
var result = "";
var index = start;
@ -209,27 +209,6 @@ else
return new Uint8Array(tmpStrings, 0, outputIndex);
};
function StringPointer(pointer, len)
{
this.ptr = pointer;
this.length = len;
}
StringPointer.prototype.free = function()
{
if (0 !== this.ptr)
Module["_free"](this.ptr);
};
String.prototype.toUtf8Pointer = function(isNoEndNull) {
var tmp = this.toUtf8(isNoEndNull);
var pointer = Module["_malloc"](tmp.length);
if (0 == pointer)
return null;
Module["HEAP8"].set(tmp, pointer);
return new StringPointer(pointer, tmp.length);
};
})();

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,133 @@
/*
* Copyright (C) Ascensio System SIA 2012-2023. All rights reserved
*
* https://www.onlyoffice.com/
*
* Version: 0.0.0 (build:0)
*/
(function(window,undefined){var AscFonts=window["AscFonts"];var printErr=undefined;var FS=undefined;var print=undefined;var fetch=window.fetch;var getBinaryPromise=null;if(window["AscDesktopEditor"]&&document.currentScript&&0==document.currentScript.src.indexOf("file:///")){fetch=undefined;getBinaryPromise=function(){var wasmPath="ascdesktop://fonts/"+wasmBinaryFile.substr(8);return new Promise(function(resolve,reject){var xhr=new XMLHttpRequest;xhr.open("GET",wasmPath,true);xhr.responseType="arraybuffer";
if(xhr.overrideMimeType)xhr.overrideMimeType("text/plain; charset=x-user-defined");else xhr.setRequestHeader("Accept-Charset","x-user-defined");xhr.onload=function(){if(this.status==200)resolve(new Uint8Array(this.response))};xhr.send(null)})}}else getBinaryPromise=function(){return getBinaryPromise2()};var Module=typeof Module!=="undefined"?Module:{};var moduleOverrides={};var key;for(key in Module)if(Module.hasOwnProperty(key))moduleOverrides[key]=Module[key];var arguments_=[];var thisProgram="./this.program";
var quit_=function(status,toThrow){throw toThrow;};var ENVIRONMENT_IS_WEB=true;var ENVIRONMENT_IS_WORKER=false;var scriptDirectory="";function locateFile(path){if(Module["locateFile"])return Module["locateFile"](path,scriptDirectory);return scriptDirectory+path}var read_,readAsync,readBinary,setWindowTitle;if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER)scriptDirectory=self.location.href;else if(document.currentScript)scriptDirectory=document.currentScript.src;if(scriptDirectory.indexOf("blob:")!==
0)scriptDirectory=scriptDirectory.substr(0,scriptDirectory.lastIndexOf("/")+1);else scriptDirectory="";{read_=function shell_read(url){var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.send(null);return xhr.responseText};if(ENVIRONMENT_IS_WORKER)readBinary=function readBinary(url){var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)};readAsync=function readAsync(url,onload,onerror){var xhr=new XMLHttpRequest;
xhr.open("GET",url,true);xhr.responseType="arraybuffer";xhr.onload=function xhr_onload(){if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}onerror()};xhr.onerror=onerror;xhr.send(null)}}setWindowTitle=function(title){document.title=title}}else;var out=Module["print"]||console.log.bind(console);var err=Module["printErr"]||console.warn.bind(console);for(key in moduleOverrides)if(moduleOverrides.hasOwnProperty(key))Module[key]=moduleOverrides[key];moduleOverrides=null;if(Module["arguments"])arguments_=
Module["arguments"];if(Module["thisProgram"])thisProgram=Module["thisProgram"];if(Module["quit"])quit_=Module["quit"];var tempRet0=0;var setTempRet0=function(value){tempRet0=value};var getTempRet0=function(){return tempRet0};var wasmBinary;if(Module["wasmBinary"])wasmBinary=Module["wasmBinary"];var noExitRuntime;if(Module["noExitRuntime"])noExitRuntime=Module["noExitRuntime"];if(typeof WebAssembly!=="object")err("no native wasm support detected");var wasmMemory;var wasmTable=new WebAssembly.Table({"initial":573,
"maximum":573+0,"element":"anyfunc"});var ABORT=false;var EXITSTATUS=0;var UTF8Decoder=typeof TextDecoder!=="undefined"?new TextDecoder("utf8"):undefined;function UTF8ArrayToString(u8Array,idx,maxBytesToRead){var endIdx=idx+maxBytesToRead;var endPtr=idx;while(u8Array[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&u8Array.subarray&&UTF8Decoder)return UTF8Decoder.decode(u8Array.subarray(idx,endPtr));else{var str="";while(idx<endPtr){var u0=u8Array[idx++];if(!(u0&128)){str+=String.fromCharCode(u0);
continue}var u1=u8Array[idx++]&63;if((u0&224)==192){str+=String.fromCharCode((u0&31)<<6|u1);continue}var u2=u8Array[idx++]&63;if((u0&240)==224)u0=(u0&15)<<12|u1<<6|u2;else u0=(u0&7)<<18|u1<<12|u2<<6|u8Array[idx++]&63;if(u0<65536)str+=String.fromCharCode(u0);else{var ch=u0-65536;str+=String.fromCharCode(55296|ch>>10,56320|ch&1023)}}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):""}var UTF16Decoder=typeof TextDecoder!=="undefined"?new TextDecoder("utf-16le"):
undefined;function writeAsciiToMemory(str,buffer,dontAddNull){for(var i=0;i<str.length;++i)HEAP8[buffer++>>0]=str.charCodeAt(i);if(!dontAddNull)HEAP8[buffer>>0]=0}var WASM_PAGE_SIZE=65536;function alignUp(x,multiple){if(x%multiple>0)x+=multiple-x%multiple;return x}var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferAndViews(buf){buffer=buf;Module["HEAP8"]=HEAP8=new Int8Array(buf);Module["HEAP16"]=HEAP16=new Int16Array(buf);Module["HEAP32"]=HEAP32=new Int32Array(buf);
Module["HEAPU8"]=HEAPU8=new Uint8Array(buf);Module["HEAPU16"]=HEAPU16=new Uint16Array(buf);Module["HEAPU32"]=HEAPU32=new Uint32Array(buf);Module["HEAPF32"]=HEAPF32=new Float32Array(buf);Module["HEAPF64"]=HEAPF64=new Float64Array(buf)}var DYNAMIC_BASE=5353008,DYNAMICTOP_PTR=109968;var INITIAL_TOTAL_MEMORY=Module["TOTAL_MEMORY"]||16777216;if(Module["wasmMemory"])wasmMemory=Module["wasmMemory"];else wasmMemory=new WebAssembly.Memory({"initial":INITIAL_TOTAL_MEMORY/WASM_PAGE_SIZE});if(wasmMemory)buffer=
wasmMemory.buffer;INITIAL_TOTAL_MEMORY=buffer.byteLength;updateGlobalBufferAndViews(buffer);HEAP32[DYNAMICTOP_PTR>>2]=DYNAMIC_BASE;function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback=="function"){callback();continue}var func=callback.func;if(typeof func==="number")if(callback.arg===undefined)Module["dynCall_v"](func);else Module["dynCall_vi"](func,callback.arg);else func(callback.arg===undefined?null:callback.arg)}}var __ATPRERUN__=
[];var __ATINIT__=[];var __ATMAIN__=[];var __ATPOSTRUN__=[function(){window["AscFonts"].onLoadModule()}];var runtimeInitialized=false;function preRun(){if(Module["preRun"]){if(typeof Module["preRun"]=="function")Module["preRun"]=[Module["preRun"]];while(Module["preRun"].length)addOnPreRun(Module["preRun"].shift())}callRuntimeCallbacks(__ATPRERUN__)}function initRuntime(){runtimeInitialized=true;callRuntimeCallbacks(__ATINIT__)}function preMain(){callRuntimeCallbacks(__ATMAIN__)}function postRun(){if(Module["postRun"]){if(typeof Module["postRun"]==
"function")Module["postRun"]=[Module["postRun"]];while(Module["postRun"].length)addOnPostRun(Module["postRun"].shift())}callRuntimeCallbacks(__ATPOSTRUN__)}function addOnPreRun(cb){__ATPRERUN__.unshift(cb)}function addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;function addRunDependency(id){runDependencies++;if(Module["monitorRunDependencies"])Module["monitorRunDependencies"](runDependencies)}function removeRunDependency(id){runDependencies--;
if(Module["monitorRunDependencies"])Module["monitorRunDependencies"](runDependencies);if(runDependencies==0){if(runDependencyWatcher!==null){clearInterval(runDependencyWatcher);runDependencyWatcher=null}if(dependenciesFulfilled){var callback=dependenciesFulfilled;dependenciesFulfilled=null;callback()}}}Module["preloadedImages"]={};Module["preloadedAudios"]={};function abort(what){if(Module["onAbort"])Module["onAbort"](what);what+="";out(what);err(what);ABORT=true;EXITSTATUS=1;what="abort("+what+"). Build with -s ASSERTIONS=1 for more info.";
throw new WebAssembly.RuntimeError(what);}var dataURIPrefix="data:application/octet-stream;base64,";function isDataURI(filename){return String.prototype.startsWith?filename.startsWith(dataURIPrefix):filename.indexOf(dataURIPrefix)===0}var wasmBinaryFile="fonts.wasm?"+window.CP_urlArgs;if(!isDataURI(wasmBinaryFile))wasmBinaryFile=locateFile(wasmBinaryFile);function getBinary(){try{if(wasmBinary)return new Uint8Array(wasmBinary);if(readBinary)return readBinary(wasmBinaryFile);else throw"both async and sync fetching of the wasm failed";
}catch(err$0){abort(err$0)}}function getBinaryPromise2(){if(!wasmBinary&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)&&typeof fetch==="function")return fetch(wasmBinaryFile,{credentials:"same-origin"}).then(function(response){if(!response["ok"])throw"failed to load wasm binary file at '"+wasmBinaryFile+"'";return response["arrayBuffer"]()}).catch(function(){return getBinary()});return new Promise(function(resolve,reject){resolve(getBinary())})}function createWasm(){var info={"a":asmLibraryArg};function receiveInstance(instance,
module){var exports=instance.exports;Module["asm"]=exports;removeRunDependency("wasm-instantiate")}addRunDependency("wasm-instantiate");function receiveInstantiatedSource(output){receiveInstance(output["instance"])}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){return WebAssembly.instantiate(binary,info)}).then(receiver,function(reason){err("failed to asynchronously prepare wasm: "+reason);abort(reason)})}function instantiateAsync(){if(!wasmBinary&&typeof WebAssembly.instantiateStreaming===
"function"&&!isDataURI(wasmBinaryFile)&&typeof fetch==="function")fetch(wasmBinaryFile,{credentials:"same-origin"}).then(function(response){var result=WebAssembly.instantiateStreaming(response,info);return result.then(receiveInstantiatedSource,function(reason){err("wasm streaming compile failed: "+reason);err("falling back to ArrayBuffer instantiation");instantiateArrayBuffer(receiveInstantiatedSource)})});else return instantiateArrayBuffer(receiveInstantiatedSource)}if(Module["instantiateWasm"])try{var exports=
Module["instantiateWasm"](info,receiveInstance);return exports}catch(e){err("Module.instantiateWasm callback failed with error: "+e);return false}instantiateAsync();return{}}__ATINIT__.push({func:function(){___wasm_call_ctors()}});function ___lock(){}var PATH={splitPath:function(filename){var splitPathRe=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;return splitPathRe.exec(filename).slice(1)},normalizeArray:function(parts,allowAboveRoot){var up=0;for(var i=parts.length-1;i>=0;i--){var last=
parts[i];if(last===".")parts.splice(i,1);else if(last===".."){parts.splice(i,1);up++}else if(up){parts.splice(i,1);up--}}if(allowAboveRoot)for(;up;up--)parts.unshift("..");return parts},normalize:function(path){var isAbsolute=path.charAt(0)==="/",trailingSlash=path.substr(-1)==="/";path=PATH.normalizeArray(path.split("/").filter(function(p){return!!p}),!isAbsolute).join("/");if(!path&&!isAbsolute)path=".";if(path&&trailingSlash)path+="/";return(isAbsolute?"/":"")+path},dirname:function(path){var result=
PATH.splitPath(path),root=result[0],dir=result[1];if(!root&&!dir)return".";if(dir)dir=dir.substr(0,dir.length-1);return root+dir},basename:function(path){if(path==="/")return"/";var lastSlash=path.lastIndexOf("/");if(lastSlash===-1)return path;return path.substr(lastSlash+1)},extname:function(path){return PATH.splitPath(path)[3]},join:function(){var paths=Array.prototype.slice.call(arguments,0);return PATH.normalize(paths.join("/"))},join2:function(l,r){return PATH.normalize(l+"/"+r)}};var SYSCALLS=
{buffers:[null,[],[]],printChar:function(stream,curr){var buffer=SYSCALLS.buffers[stream];if(curr===0||curr===10){(stream===1?out:err)(UTF8ArrayToString(buffer,0));buffer.length=0}else buffer.push(curr)},varargs:0,get:function(varargs){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(){var ret=UTF8ToString(SYSCALLS.get());return ret},get64:function(){var low=SYSCALLS.get(),high=SYSCALLS.get();return low},getZero:function(){SYSCALLS.get()}};function ___syscall221(which,
varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall5(which,varargs){SYSCALLS.varargs=varargs;try{var pathname=SYSCALLS.getStr(),flags=SYSCALLS.get(),mode=SYSCALLS.get();var stream=FS.open(pathname,flags,mode);return stream.fd}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall54(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS===
"undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___unlock(){}function _emscripten_get_heap_size(){return HEAP8.length}var setjmpId=0;function _saveSetjmp(env,label,table,size){env=env|0;label=label|0;table=table|0;size=size|0;var i=0;setjmpId=setjmpId+1|0;HEAP32[env>>2]=setjmpId;while((i|0)<(size|0)){if((HEAP32[table+(i<<3)>>2]|0)==0){HEAP32[table+(i<<3)>>2]=setjmpId;HEAP32[table+((i<<3)+4)>>2]=label;HEAP32[table+((i<<3)+8)>>2]=0;setTempRet0(size|0);return table|0}i=i+
1|0}size=size*2|0;table=_realloc(table|0,8*(size+1|0)|0)|0;table=_saveSetjmp(env|0,label|0,table|0,size|0)|0;setTempRet0(size|0);return table|0}function _testSetjmp(id,table,size){id=id|0;table=table|0;size=size|0;var i=0,curr=0;while((i|0)<(size|0)){curr=HEAP32[table+(i<<3)>>2]|0;if((curr|0)==0)break;if((curr|0)==(id|0))return HEAP32[table+((i<<3)+4)>>2]|0;i=i+1|0}return 0}function _longjmp(env,value){_setThrew(env,value||1);throw"longjmp";}function _emscripten_longjmp(env,value){_longjmp(env,value)}
function _emscripten_memcpy_big(dest,src,num){HEAPU8.set(HEAPU8.subarray(src,src+num),dest)}function emscripten_realloc_buffer(size){try{wasmMemory.grow(size-buffer.byteLength+65535>>16);updateGlobalBufferAndViews(wasmMemory.buffer);return 1}catch(e){}}function _emscripten_resize_heap(requestedSize){var oldSize=_emscripten_get_heap_size();var PAGE_MULTIPLE=65536;var maxHeapSize=2147483648-PAGE_MULTIPLE;if(requestedSize>maxHeapSize)return false;var minHeapSize=16777216;for(var cutDown=1;cutDown<=4;cutDown*=
2){var overGrownHeapSize=oldSize*(1+.2/cutDown);overGrownHeapSize=Math.min(overGrownHeapSize,requestedSize+100663296);var newSize=Math.min(maxHeapSize,alignUp(Math.max(minHeapSize,requestedSize,overGrownHeapSize),PAGE_MULTIPLE));var replacement=emscripten_realloc_buffer(newSize);if(replacement)return true}return false}var ENV={};function _emscripten_get_environ(){if(!_emscripten_get_environ.strings){var env={"USER":"web_user","LOGNAME":"web_user","PATH":"/","PWD":"/","HOME":"/home/web_user","LANG":(typeof navigator===
"object"&&navigator.languages&&navigator.languages[0]||"C").replace("-","_")+".UTF-8","_":thisProgram};for(var x in ENV)env[x]=ENV[x];var strings=[];for(var x in env)strings.push(x+"="+env[x]);_emscripten_get_environ.strings=strings}return _emscripten_get_environ.strings}function _environ_get(__environ,environ_buf){var strings=_emscripten_get_environ();var bufSize=0;strings.forEach(function(string,i){var ptr=environ_buf+bufSize;HEAP32[__environ+i*4>>2]=ptr;writeAsciiToMemory(string,ptr);bufSize+=
string.length+1});return 0}function _environ_sizes_get(penviron_count,penviron_buf_size){var strings=_emscripten_get_environ();HEAP32[penviron_count>>2]=strings.length;var bufSize=0;strings.forEach(function(string){bufSize+=string.length+1});HEAP32[penviron_buf_size>>2]=bufSize;return 0}function _fd_close(fd){try{return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}function _fd_read(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=
SYSCALLS.doReadv(stream,iov,iovcnt);HEAP32[pnum>>2]=num;return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}function _fd_seek(fd,offset_low,offset_high,whence,newOffset){try{return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}function _fd_write(fd,iov,iovcnt,pnum){try{var num=0;for(var i=0;i<iovcnt;i++){var ptr=HEAP32[iov+i*8>>2];var len=HEAP32[iov+(i*8+4)>>2];for(var j=0;j<len;j++)SYSCALLS.printChar(fd,
HEAPU8[ptr+j]);num+=len}HEAP32[pnum>>2]=num;return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}function _getTempRet0(){return getTempRet0()|0}function _setTempRet0($i){setTempRet0($i|0)}var asmLibraryArg={"v":___lock,"f":___syscall221,"i":___syscall5,"u":___syscall54,"e":___unlock,"b":_emscripten_longjmp,"n":_emscripten_memcpy_big,"p":_emscripten_resize_heap,"q":_environ_get,"r":_environ_sizes_get,"g":_fd_close,"t":_fd_read,"m":_fd_seek,"s":_fd_write,
"a":_getTempRet0,"k":invoke_iii,"o":invoke_iiii,"j":invoke_iiiii,"l":invoke_vii,"memory":wasmMemory,"h":_saveSetjmp,"c":_setTempRet0,"table":wasmTable,"d":_testSetjmp};var asm=createWasm();Module["asm"]=asm;var ___wasm_call_ctors=Module["___wasm_call_ctors"]=function(){return(___wasm_call_ctors=Module["___wasm_call_ctors"]=Module["asm"]["w"]).apply(null,arguments)};var _FT_Load_Glyph=Module["_FT_Load_Glyph"]=function(){return(_FT_Load_Glyph=Module["_FT_Load_Glyph"]=Module["asm"]["x"]).apply(null,
arguments)};var _FT_Set_Transform=Module["_FT_Set_Transform"]=function(){return(_FT_Set_Transform=Module["_FT_Set_Transform"]=Module["asm"]["y"]).apply(null,arguments)};var _FT_Done_Face=Module["_FT_Done_Face"]=function(){return(_FT_Done_Face=Module["_FT_Done_Face"]=Module["asm"]["z"]).apply(null,arguments)};var _FT_Set_Char_Size=Module["_FT_Set_Char_Size"]=function(){return(_FT_Set_Char_Size=Module["_FT_Set_Char_Size"]=Module["asm"]["A"]).apply(null,arguments)};var _FT_Get_Glyph=Module["_FT_Get_Glyph"]=
function(){return(_FT_Get_Glyph=Module["_FT_Get_Glyph"]=Module["asm"]["B"]).apply(null,arguments)};var _FT_Done_FreeType=Module["_FT_Done_FreeType"]=function(){return(_FT_Done_FreeType=Module["_FT_Done_FreeType"]=Module["asm"]["C"]).apply(null,arguments)};var _malloc=Module["_malloc"]=function(){return(_malloc=Module["_malloc"]=Module["asm"]["D"]).apply(null,arguments)};var _realloc=Module["_realloc"]=function(){return(_realloc=Module["_realloc"]=Module["asm"]["E"]).apply(null,arguments)};var _free=
Module["_free"]=function(){return(_free=Module["_free"]=Module["asm"]["F"]).apply(null,arguments)};var _ASC_FT_Malloc=Module["_ASC_FT_Malloc"]=function(){return(_ASC_FT_Malloc=Module["_ASC_FT_Malloc"]=Module["asm"]["G"]).apply(null,arguments)};var _ASC_FT_Free=Module["_ASC_FT_Free"]=function(){return(_ASC_FT_Free=Module["_ASC_FT_Free"]=Module["asm"]["H"]).apply(null,arguments)};var _ASC_FT_Init=Module["_ASC_FT_Init"]=function(){return(_ASC_FT_Init=Module["_ASC_FT_Init"]=Module["asm"]["I"]).apply(null,
arguments)};var _ASC_FT_Open_Face=Module["_ASC_FT_Open_Face"]=function(){return(_ASC_FT_Open_Face=Module["_ASC_FT_Open_Face"]=Module["asm"]["J"]).apply(null,arguments)};var _ASC_FT_SetCMapForCharCode=Module["_ASC_FT_SetCMapForCharCode"]=function(){return(_ASC_FT_SetCMapForCharCode=Module["_ASC_FT_SetCMapForCharCode"]=Module["asm"]["K"]).apply(null,arguments)};var _ASC_FT_GetFaceInfo=Module["_ASC_FT_GetFaceInfo"]=function(){return(_ASC_FT_GetFaceInfo=Module["_ASC_FT_GetFaceInfo"]=Module["asm"]["L"]).apply(null,
arguments)};var _ASC_FT_GetFaceMaxAdvanceX=Module["_ASC_FT_GetFaceMaxAdvanceX"]=function(){return(_ASC_FT_GetFaceMaxAdvanceX=Module["_ASC_FT_GetFaceMaxAdvanceX"]=Module["asm"]["M"]).apply(null,arguments)};var _ASC_FT_GetKerningX=Module["_ASC_FT_GetKerningX"]=function(){return(_ASC_FT_GetKerningX=Module["_ASC_FT_GetKerningX"]=Module["asm"]["N"]).apply(null,arguments)};var _ASC_FT_Glyph_Get_CBox=Module["_ASC_FT_Glyph_Get_CBox"]=function(){return(_ASC_FT_Glyph_Get_CBox=Module["_ASC_FT_Glyph_Get_CBox"]=
Module["asm"]["O"]).apply(null,arguments)};var _ASC_FT_Get_Glyph_Measure_Params=Module["_ASC_FT_Get_Glyph_Measure_Params"]=function(){return(_ASC_FT_Get_Glyph_Measure_Params=Module["_ASC_FT_Get_Glyph_Measure_Params"]=Module["asm"]["P"]).apply(null,arguments)};var _ASC_FT_Get_Glyph_Render_Params=Module["_ASC_FT_Get_Glyph_Render_Params"]=function(){return(_ASC_FT_Get_Glyph_Render_Params=Module["_ASC_FT_Get_Glyph_Render_Params"]=Module["asm"]["Q"]).apply(null,arguments)};var _ASC_FT_Get_Glyph_Render_Buffer=
Module["_ASC_FT_Get_Glyph_Render_Buffer"]=function(){return(_ASC_FT_Get_Glyph_Render_Buffer=Module["_ASC_FT_Get_Glyph_Render_Buffer"]=Module["asm"]["R"]).apply(null,arguments)};var _ASC_FT_Set_Transform=Module["_ASC_FT_Set_Transform"]=function(){return(_ASC_FT_Set_Transform=Module["_ASC_FT_Set_Transform"]=Module["asm"]["S"]).apply(null,arguments)};var _ASC_FT_Set_TrueType_HintProp=Module["_ASC_FT_Set_TrueType_HintProp"]=function(){return(_ASC_FT_Set_TrueType_HintProp=Module["_ASC_FT_Set_TrueType_HintProp"]=
Module["asm"]["T"]).apply(null,arguments)};var _setThrew=Module["_setThrew"]=function(){return(_setThrew=Module["_setThrew"]=Module["asm"]["U"]).apply(null,arguments)};var dynCall_vii=Module["dynCall_vii"]=function(){return(dynCall_vii=Module["dynCall_vii"]=Module["asm"]["V"]).apply(null,arguments)};var dynCall_iii=Module["dynCall_iii"]=function(){return(dynCall_iii=Module["dynCall_iii"]=Module["asm"]["W"]).apply(null,arguments)};var dynCall_iiii=Module["dynCall_iiii"]=function(){return(dynCall_iiii=
Module["dynCall_iiii"]=Module["asm"]["X"]).apply(null,arguments)};var dynCall_iiiii=Module["dynCall_iiiii"]=function(){return(dynCall_iiiii=Module["dynCall_iiiii"]=Module["asm"]["Y"]).apply(null,arguments)};var stackSave=Module["stackSave"]=function(){return(stackSave=Module["stackSave"]=Module["asm"]["Z"]).apply(null,arguments)};var stackRestore=Module["stackRestore"]=function(){return(stackRestore=Module["stackRestore"]=Module["asm"]["_"]).apply(null,arguments)};var dynCall_vi=Module["dynCall_vi"]=
function(){return(dynCall_vi=Module["dynCall_vi"]=Module["asm"]["$"]).apply(null,arguments)};function invoke_iiii(index,a1,a2,a3){var sp=stackSave();try{return dynCall_iiii(index,a1,a2,a3)}catch(e){stackRestore(sp);if(e!==e+0&&e!=="longjmp")throw e;_setThrew(1,0)}}function invoke_vii(index,a1,a2){var sp=stackSave();try{dynCall_vii(index,a1,a2)}catch(e){stackRestore(sp);if(e!==e+0&&e!=="longjmp")throw e;_setThrew(1,0)}}function invoke_iii(index,a1,a2){var sp=stackSave();try{return dynCall_iii(index,
a1,a2)}catch(e){stackRestore(sp);if(e!==e+0&&e!=="longjmp")throw e;_setThrew(1,0)}}function invoke_iiiii(index,a1,a2,a3,a4){var sp=stackSave();try{return dynCall_iiiii(index,a1,a2,a3,a4)}catch(e){stackRestore(sp);if(e!==e+0&&e!=="longjmp")throw e;_setThrew(1,0)}}Module["asm"]=asm;var calledRun;dependenciesFulfilled=function runCaller(){if(!calledRun)run();if(!calledRun)dependenciesFulfilled=runCaller};function run(args){args=args||arguments_;if(runDependencies>0)return;preRun();if(runDependencies>
0)return;function doRun(){if(calledRun)return;calledRun=true;if(ABORT)return;initRuntime();preMain();if(Module["onRuntimeInitialized"])Module["onRuntimeInitialized"]();postRun()}if(Module["setStatus"]){Module["setStatus"]("Running...");setTimeout(function(){setTimeout(function(){Module["setStatus"]("")},1);doRun()},1)}else doRun()}Module["run"]=run;if(Module["preInit"]){if(typeof Module["preInit"]=="function")Module["preInit"]=[Module["preInit"]];while(Module["preInit"].length>0)Module["preInit"].pop()()}noExitRuntime=
true;run();window["AscFonts"]=window["AscFonts"]||{};var AscFonts=window["AscFonts"];AscFonts.CreateLibrary=function(){return Module["_ASC_FT_Init"]()};AscFonts.TT_INTERPRETER_VERSION_35=35;AscFonts.TT_INTERPRETER_VERSION_38=38;AscFonts.TT_INTERPRETER_VERSION_40=40;AscFonts.FT_Set_TrueType_HintProp=function(library,tt_interpreter){return Module["_ASC_FT_Set_TrueType_HintProp"](library,tt_interpreter)};AscFonts.CreateNativeStream=function(_typed_array){var _fontStreamPointer=Module["_ASC_FT_Malloc"](_typed_array.size);
Module["HEAP8"].set(_typed_array.data,_fontStreamPointer);return{asc_marker:true,data:_fontStreamPointer,len:_typed_array.size}};AscFonts.CreateNativeStreamByIndex=function(stream_index){var _stream_pos=AscFonts.g_fonts_streams[stream_index];if(_stream_pos&&true!==_stream_pos.asc_marker){var _native_stream=AscFonts.CreateNativeStream(AscFonts.g_fonts_streams[stream_index]);AscFonts.g_fonts_streams[stream_index]=null;AscFonts.g_fonts_streams[stream_index]=_native_stream}};function CFaceInfo(){this.units_per_EM=
0;this.ascender=0;this.descender=0;this.height=0;this.face_flags=0;this.num_faces=0;this.num_glyphs=0;this.num_charmaps=0;this.style_flags=0;this.face_index=0;this.family_name="";this.style_name="";this.os2_version=0;this.os2_usWeightClass=0;this.os2_fsSelection=0;this.os2_usWinAscent=0;this.os2_usWinDescent=0;this.os2_usDefaultChar=0;this.os2_sTypoAscender=0;this.os2_sTypoDescender=0;this.os2_sTypoLineGap=0;this.os2_ulUnicodeRange1=0;this.os2_ulUnicodeRange2=0;this.os2_ulUnicodeRange3=0;this.os2_ulUnicodeRange4=
0;this.os2_ulCodePageRange1=0;this.os2_ulCodePageRange2=0;this.os2_nSymbolic=0;this.header_yMin=0;this.header_yMax=0;this.monochromeSizes=[]}CFaceInfo.prototype.load=function(face){var _bufferPtr=Module["_ASC_FT_GetFaceInfo"](face);if(!_bufferPtr)return;var _len_buffer=Math.min(Module["HEAP8"].length-_bufferPtr>>2,250);var _buffer=new Int32Array(Module["HEAP8"].buffer,_bufferPtr,_len_buffer);var _index=0;this.units_per_EM=Math.abs(_buffer[_index++]);this.ascender=_buffer[_index++];this.descender=
_buffer[_index++];this.height=_buffer[_index++];this.face_flags=_buffer[_index++];this.num_faces=_buffer[_index++];this.num_glyphs=_buffer[_index++];this.num_charmaps=_buffer[_index++];this.style_flags=_buffer[_index++];this.face_index=_buffer[_index++];var c=_buffer[_index++];while(c){this.family_name+=String.fromCharCode(c);c=_buffer[_index++]}c=_buffer[_index++];while(c){this.style_name+=String.fromCharCode(c);c=_buffer[_index++]}this.os2_version=_buffer[_index++];this.os2_usWeightClass=_buffer[_index++];
this.os2_fsSelection=_buffer[_index++];this.os2_usWinAscent=_buffer[_index++];this.os2_usWinDescent=_buffer[_index++];this.os2_usDefaultChar=_buffer[_index++];this.os2_sTypoAscender=_buffer[_index++];this.os2_sTypoDescender=_buffer[_index++];this.os2_sTypoLineGap=_buffer[_index++];this.os2_ulUnicodeRange1=AscFonts.FT_Common.IntToUInt(_buffer[_index++]);this.os2_ulUnicodeRange2=AscFonts.FT_Common.IntToUInt(_buffer[_index++]);this.os2_ulUnicodeRange3=AscFonts.FT_Common.IntToUInt(_buffer[_index++]);
this.os2_ulUnicodeRange4=AscFonts.FT_Common.IntToUInt(_buffer[_index++]);this.os2_ulCodePageRange1=AscFonts.FT_Common.IntToUInt(_buffer[_index++]);this.os2_ulCodePageRange2=AscFonts.FT_Common.IntToUInt(_buffer[_index++]);this.os2_nSymbolic=_buffer[_index++];this.header_yMin=_buffer[_index++];this.header_yMax=_buffer[_index++];var fixedSizesCount=_buffer[_index++];for(var i=0;i<fixedSizesCount;i++)this.monochromeSizes.push(_buffer[_index++]);Module["_ASC_FT_Free"](_bufferPtr)};function CGlyphMetrics(){this.bbox_xMin=
0;this.bbox_yMin=0;this.bbox_xMax=0;this.bbox_yMax=0;this.width=0;this.height=0;this.horiAdvance=0;this.horiBearingX=0;this.horiBearingY=0;this.vertAdvance=0;this.vertBearingX=0;this.vertBearingY=0;this.linearHoriAdvance=0;this.linearVertAdvance=0}function CGlyphBitmapImage(){this.left=0;this.top=0;this.width=0;this.rows=0;this.pitch=0;this.mode=0}AscFonts.CFaceInfo=CFaceInfo;AscFonts.CGlyphMetrics=CGlyphMetrics;AscFonts.CGlyphBitmapImage=CGlyphBitmapImage;AscFonts.FT_Open_Face=function(library,stream,
face_index){return Module["_ASC_FT_Open_Face"](library,stream.data,stream.len,face_index)};AscFonts.FT_Glyph_Get_Measure=function(face,vector_worker,painter){var _bufferPtr=Module["_ASC_FT_Get_Glyph_Measure_Params"](face,vector_worker?1:0);if(!_bufferPtr)return null;var _len=15;if(vector_worker)_len=Module["HEAP32"][_bufferPtr>>2];var _buffer=new Int32Array(Module["HEAP8"].buffer,_bufferPtr,_len);var _info=new CGlyphMetrics;_info.bbox_xMin=_buffer[1];_info.bbox_yMin=_buffer[2];_info.bbox_xMax=_buffer[3];
_info.bbox_yMax=_buffer[4];_info.width=_buffer[5];_info.height=_buffer[6];_info.horiAdvance=_buffer[7];_info.horiBearingX=_buffer[8];_info.horiBearingY=_buffer[9];_info.vertAdvance=_buffer[10];_info.vertBearingX=_buffer[11];_info.vertBearingY=_buffer[12];_info.linearHoriAdvance=_buffer[13];_info.linearVertAdvance=_buffer[14];if(vector_worker){painter.start(vector_worker);var _pos=15;while(_pos<_len)switch(_buffer[_pos++]){case 0:{painter._move_to(_buffer[_pos++],_buffer[_pos++],vector_worker);break}case 1:{painter._line_to(_buffer[_pos++],
_buffer[_pos++],vector_worker);break}case 2:{painter._conic_to(_buffer[_pos++],_buffer[_pos++],_buffer[_pos++],_buffer[_pos++],vector_worker);break}case 3:{painter._cubic_to(_buffer[_pos++],_buffer[_pos++],_buffer[_pos++],_buffer[_pos++],_buffer[_pos++],_buffer[_pos++],vector_worker);break}default:break}painter.end(vector_worker)}Module["_ASC_FT_Free"](_bufferPtr);_buffer=null;return _info};AscFonts.FT_Glyph_Get_Raster=function(face,render_mode){var _bufferPtr=Module["_ASC_FT_Get_Glyph_Render_Params"](face,
render_mode);if(!_bufferPtr)return null;var _buffer=new Int32Array(Module["HEAP8"].buffer,_bufferPtr,6);var _info=new CGlyphBitmapImage;_info.left=_buffer[0];_info.top=_buffer[1];_info.width=_buffer[2];_info.rows=_buffer[3];_info.pitch=_buffer[4];_info.mode=_buffer[5];Module["_ASC_FT_Free"](_bufferPtr);return _info};AscFonts.FT_Load_Glyph=Module["_FT_Load_Glyph"];AscFonts.FT_Set_Transform=Module["_ASC_FT_Set_Transform"];AscFonts.FT_Set_Char_Size=Module["_FT_Set_Char_Size"];AscFonts.FT_SetCMapForCharCode=
Module["_ASC_FT_SetCMapForCharCode"];AscFonts.FT_GetKerningX=Module["_ASC_FT_GetKerningX"];AscFonts.FT_GetFaceMaxAdvanceX=Module["_ASC_FT_GetFaceMaxAdvanceX"];AscFonts.FT_Get_Glyph_Render_Buffer=function(face,rasterInfo,isCopyToRasterMemory){var _bufferPtr=Module["_ASC_FT_Get_Glyph_Render_Buffer"](face);var tmp=new Uint8Array(Module["HEAP8"].buffer,_bufferPtr,rasterInfo.pitch*rasterInfo.rows);if(!isCopyToRasterMemory)return tmp;AscFonts.raster_memory.CheckSize(rasterInfo.width,rasterInfo.rows);var offsetSrc=
0;var offsetDst=3;var dstData=AscFonts.raster_memory.m_oBuffer.data;if(rasterInfo.pitch>=rasterInfo.width)for(var j=0;j<rasterInfo.rows;++j,offsetSrc+=rasterInfo.pitch){offsetDst=3+j*AscFonts.raster_memory.pitch;for(var i=0;i<rasterInfo.width;i++,offsetDst+=4)dstData[offsetDst]=tmp[offsetSrc+i]}else{var bitNumber=0;var byteNumber=0;for(var j=0;j<rasterInfo.rows;++j,offsetSrc+=rasterInfo.pitch){offsetDst=3+j*AscFonts.raster_memory.pitch;bitNumber=0;byteNumber=0;for(var i=0;i<rasterInfo.width;i++,offsetDst+=
4,bitNumber++){if(8==bitNumber){bitNumber=0;byteNumber++}dstData[offsetDst]=tmp[offsetSrc+byteNumber]&1<<7-bitNumber?255:0}}}tmp=null};AscFonts.onLoadModule()})(window,undefined);"use strict";
(function(window,undefined){var AscFonts=window["AscFonts"];var AscCommon=window["AscCommon"];AscFonts.FT_Load_Mode={FT_LOAD_DEFAULT:0,FT_LOAD_NO_SCALE:1<<0,FT_LOAD_NO_HINTING:1<<1,FT_LOAD_RENDER:1<<2,FT_LOAD_NO_BITMAP:1<<3,FT_LOAD_VERTICAL_LAYOUT:1<<4,FT_LOAD_FORCE_AUTOHINT:1<<5,FT_LOAD_CROP_BITMAP:1<<6,FT_LOAD_PEDANTIC:1<<7,FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH:1<<9,FT_LOAD_NO_RECURSE:1<<10,FT_LOAD_IGNORE_TRANSFORM:1<<11,FT_LOAD_MONOCHROME:1<<12,FT_LOAD_LINEAR_DESIGN:1<<13,FT_LOAD_NO_AUTOHINT:1<<
15,FT_LOAD_COLOR:1<<20,FT_LOAD_COMPUTE_METRICS:1<<21,FT_LOAD_BITMAP_METRICS_ONLY:1<<22};AscFonts.FT_Render_Mode={FT_RENDER_MODE_NORMAL:0,FT_RENDER_MODE_LIGHT:1,FT_RENDER_MODE_MONO:2,FT_RENDER_MODE_LCD:3,FT_RENDER_MODE_LCD_V:4,FT_RENDER_MODE_MAX:5};function _ft_load_target(val){return(val&15)<<16}AscFonts.FT_Load_Target_Mode={FT_LOAD_TARGET_NORMAL:_ft_load_target(AscFonts.FT_Render_Mode.FT_RENDER_MODE_NORMAL),FT_LOAD_TARGET_LIGHT:_ft_load_target(AscFonts.FT_Render_Mode.FT_RENDER_MODE_LIGHT),FT_LOAD_TARGET_MONO:_ft_load_target(AscFonts.FT_Render_Mode.FT_RENDER_MODE_MONO),
FT_LOAD_TARGET_LCD:_ft_load_target(AscFonts.FT_Render_Mode.FT_RENDER_MODE_LCD),FT_LOAD_TARGET_LCD_V:_ft_load_target(AscFonts.FT_Render_Mode.FT_RENDER_MODE_LCD_V)};AscFonts.LOAD_MODE_DEFAULT=AscFonts.FT_Load_Mode.FT_LOAD_DEFAULT|AscFonts.FT_Load_Mode.FT_LOAD_NO_HINTING|AscFonts.FT_Load_Mode.FT_LOAD_LINEAR_DESIGN|AscFonts.FT_Load_Mode.FT_LOAD_NO_AUTOHINT;AscFonts.LOAD_MODE_HINTING=AscFonts.FT_Load_Mode.FT_LOAD_DEFAULT|AscFonts.FT_Load_Mode.FT_LOAD_LINEAR_DESIGN|AscFonts.FT_Load_Mode.FT_LOAD_NO_AUTOHINT;
AscFonts.isUseBitmapStrikes=function(symbol){if(!AscFonts.mRanges){AscFonts.mRanges=[];AscFonts.mRanges.push(4352);AscFonts.mRanges.push(4607);AscFonts.mRanges.push(11904);AscFonts.mRanges.push(40959);AscFonts.mRanges.push(44032);AscFonts.mRanges.push(55215);AscFonts.mRanges.push(63744);AscFonts.mRanges.push(64255);AscFonts.mRanges.push(65280);AscFonts.mRanges.push(65519);AscFonts.mRanges.push(131072);AscFonts.mRanges.push(173791);AscFonts.mRanges.push(194560);AscFonts.mRanges.push(195103)}if(symbol<
AscFonts.mRanges[0])return false;var _m=AscFonts.mRanges;var _l=AscFonts.mRanges.length;for(var i=0;i<_l;i+=2)if(symbol>=_m[i]&&symbol<=_m[i+1])return true;return false};var raster_memory=AscFonts.raster_memory;AscFonts.initVariables=function(){};var FONT_ITALIC_ANGLE=.3090169943749;var FT_ENCODING_UNICODE=1970170211;var FT_ENCODING_NONE=0;var FT_ENCODING_MS_SYMBOL=1937337698;var FT_ENCODING_APPLE_ROMAN=1634889070;var REND_MODE=AscFonts.FT_Render_Mode.FT_RENDER_MODE_NORMAL;var EGlyphState={glyphstateNormal:0,
glyphstateDefault:1,glyphstateMiss:2};function get_raster_bounds(data,width,height,stride){var ret={dist_l:0,dist_t:0,dist_r:0,dist_b:0};var bIsBreak=false;for(var i=0;i<width;i++){var _ind=i*4+3;for(var j=0;j<height;j++,_ind+=stride)if(data[_ind]!=0){bIsBreak=true;break}if(bIsBreak)break;ret.dist_l++}bIsBreak=false;for(var i=width-1;i>=0;i--){var _ind=i*4+3;for(var j=0;j<height;j++,_ind+=stride)if(data[_ind]!=0){bIsBreak=true;break}if(bIsBreak)break;ret.dist_r++}var bIsBreak=false;for(var j=0;j<
height;j++){var _ind=j*stride+3;for(var i=0;i<width;i++,_ind+=4)if(data[_ind]!=0){bIsBreak=true;break}if(bIsBreak)break;ret.dist_t++}var bIsBreak=false;for(var j=height-1;j>=0;j--){var _ind=j*stride+3;for(var i=0;i<width;i++,_ind+=4)if(data[_ind]!=0){bIsBreak=true;break}if(bIsBreak)break;ret.dist_b++}if(null!=raster_memory.m_oBuffer){var nIndexDst=3;var nPitch=4*(raster_memory.width-width);var dst=raster_memory.m_oBuffer.data;for(var j=0;j<height;j++){for(var i=0;i<width;i++){dst[nIndexDst]=0;nIndexDst+=
4}nIndexDst+=nPitch}}return ret}function CGlyphData(){this.m_oCanvas=null;this.m_oContext=null;this.R=0;this.G=0;this.B=0;this.RasterData=null;this.TempImage=null}CGlyphData.prototype={checkColorAppleDevices:function(r,g,b,w,h){if(r==this.R&&g==this.G&&b==this.B)return;this.R=r;this.G=g;this.B=b;this.TempImage=document.createElement("canvas");this.TempImage.width=w;this.TempImage.height=h;var ctxD=this.TempImage.getContext("2d");var pixDst=null;if(this.m_oCanvas!=null){pixDst=this.m_oContext.getImageData(0,
0,w,h);var dataPx=pixDst.data;var cur=0;var cnt=w*h;for(var i=0;i<cnt;i++){dataPx[cur++]=r;dataPx[cur++]=g;dataPx[cur++]=b;cur++}}else{var _raster=this.RasterData;var _x=_raster.Line.Height*_raster.Index;var _y=_raster.Line.Y;pixDst=_raster.Chunk.CanvasCtx.getImageData(_x,_y,w,h);var dataPx=pixDst.data;var cur=0;var cnt=w*h;for(var i=0;i<cnt;i++){dataPx[cur++]=r;dataPx[cur++]=g;dataPx[cur++]=b;cur++}}ctxD.putImageData(pixDst,0,0,0,0,w,h)},checkColorMozillaLinux:function(r,g,b,w,h){if(r==this.R&&g==
this.G&&b==this.B)return;this.R=r;this.G=g;this.B=b;if(this.m_oCanvas!=null){this.m_oContext.fillStyle=this.R==255&&this.G==255&&this.B==255?"rgb(255,255,254)":"rgb("+this.R+","+this.G+","+this.B+")";this.m_oContext.fillRect(0,0,w,h)}else{var _raster=this.RasterData;_raster.Chunk.CanvasCtx.fillStyle=this.R==255&&this.G==255&&this.B==255?"rgb(255,255,254)":"rgb("+this.R+","+this.G+","+this.B+")";var _x=_raster.Line.Height*_raster.Index;var _y=_raster.Line.Y;this.RasterData.Chunk.CanvasCtx.fillRect(_x,
_y,w,h)}},checkColorNormal:function(r,g,b,w,h){if(r==this.R&&g==this.G&&b==this.B)return;this.R=r;this.G=g;this.B=b;if(this.m_oCanvas!=null){this.m_oContext.fillStyle="rgb("+this.R+","+this.G+","+this.B+")";this.m_oContext.fillRect(0,0,w,h)}else{var _raster=this.RasterData;_raster.Chunk.CanvasCtx.fillStyle="rgb("+this.R+","+this.G+","+this.B+")";var _x=_raster.Line.Height*_raster.Index;var _y=_raster.Line.Y;this.RasterData.Chunk.CanvasCtx.fillRect(_x,_y,w,h)}},checkColor:undefined,init:function(width,
height){if(width==0||height==0)return;this.m_oCanvas=document.createElement("canvas");this.m_oCanvas.width=width==0?1:width;this.m_oCanvas.height=height==0?1:height;this.m_oContext=this.m_oCanvas.getContext("2d");this.m_oContext.globalCompositeOperation="source-in"}};CGlyphData.prototype.checkColor=AscCommon.AscBrowser.isMozilla&&AscCommon.AscBrowser.isLinuxOS?CGlyphData.prototype.checkColorMozillaLinux:CGlyphData.prototype.checkColorNormal;function CGlyphBitmap(){this.nX=0;this.nY=0;this.nWidth=
0;this.nHeight=0;this.oGlyphData=new CGlyphData}CGlyphBitmap.prototype={fromAlphaMask:function(font_manager){var bIsCanvas=false;var _chunk_size=font_manager.RasterMemory==null?0:font_manager.RasterMemory.ChunkHeapSize;if(Math.max(this.nWidth,this.nHeight)>_chunk_size/10)bIsCanvas=true;var _x=0;var _y=0;var ctx=null;if(bIsCanvas){this.oGlyphData.init(this.nWidth,this.nHeight);ctx=this.oGlyphData.m_oContext}else{this.oGlyphData.RasterData=font_manager.RasterMemory.Alloc(this.nWidth,this.nHeight);ctx=
this.oGlyphData.RasterData.Chunk.CanvasCtx;_x=this.oGlyphData.RasterData.Line.Height*this.oGlyphData.RasterData.Index;_y=this.oGlyphData.RasterData.Line.Y}if(true){if(this.nWidth>0&&this.nHeight>0)ctx.putImageData(raster_memory.m_oBuffer,_x,_y,0,0,this.nWidth,this.nHeight)}else{var gamma=1.1;var nIndexDst=3;var nPitch=4*(raster_memory.width-this.nWidth);var dst=raster_memory.m_oBuffer.data;for(var j=0;j<this.nHeight;j++){for(var i=0;i<this.nWidth;i++){dst[nIndexDst]=Math.min(dst[nIndexDst]*gamma>>
0,255);nIndexDst+=4}nIndexDst+=nPitch}if(this.nWidth>0&&this.nHeight>0)ctx.putImageData(raster_memory.m_oBuffer,_x,_y,0,0,this.nWidth,this.nHeight)}if(null!=raster_memory.m_oBuffer){var nIndexDst=3;var nPitch=4*(raster_memory.width-this.nWidth);var dst=raster_memory.m_oBuffer.data;for(var j=0;j<this.nHeight;j++){for(var i=0;i<this.nWidth;i++){dst[nIndexDst]=0;nIndexDst+=4}nIndexDst+=nPitch}}},draw:function(context2D,x,y){var nW=this.nWidth;var nH=this.nHeight;if(null!=this.oGlyphData.TempImage){context2D.drawImage(this.oGlyphData.TempImage,
0,0,nW,nH,x,y,nW,nH);this.oGlyphData.TempImage=null}else if(null!=this.oGlyphData.m_oCanvas)context2D.drawImage(this.oGlyphData.m_oCanvas,0,0,nW,nH,x,y,nW,nH);else{var _raster=this.oGlyphData.RasterData;var _x=_raster.Line.Height*_raster.Index;var _y=_raster.Line.Y;context2D.drawImage(_raster.Chunk.CanvasImage,_x,_y,nW,nH,x,y,nW,nH)}},drawCrop:function(context2D,x,y,w,h,cx){if(null!=this.oGlyphData.TempImage){context2D.drawImage(this.oGlyphData.TempImage,cx,0,w,h,x,y,w,h);this.oGlyphData.TempImage=
null}else if(null!=this.oGlyphData.m_oCanvas)context2D.drawImage(this.oGlyphData.m_oCanvas,cx,0,w,h,x,y,w,h);else{var _raster=this.oGlyphData.RasterData;var _x=_raster.Line.Height*_raster.Index;var _y=_raster.Line.Y;context2D.drawImage(_raster.Chunk.CanvasImage,_x+cx,_y,w,h,x,y,w,h)}},drawCropInRect:function(context2D,x,y,clipRect){var _x=x;var _y=y;var _r=x+this.nWidth;var _b=y+this.nHeight;var _dstX=0;var _dstY=0;var _dstW=this.nWidth;var _dstH=this.nHeight;if(_x<clipRect.l){_dstX=clipRect.l-_x;
_x+=_dstX;_dstW-=_dstX}if(_y<clipRect.t){_dstY=clipRect.t-_y;_y+=_dstY;_dstH-=_dstY}if(_r>clipRect.r)_dstW-=_r-clipRect.r;if(_b>clipRect.b)_dstH-=_b-clipRect.b;if(_dstW<=0||_dstH<=0)return;if(null!=this.oGlyphData.TempImage){context2D.drawImage(this.oGlyphData.TempImage,_dstX,_dstY,_dstW,_dstH,_x,_y,_dstW,_dstH);this.oGlyphData.TempImage=null}else if(null!=this.oGlyphData.m_oCanvas)context2D.drawImage(this.oGlyphData.m_oCanvas,_dstX,_dstY,_dstW,_dstH,_x,_y,_dstW,_dstH);else{var _raster=this.oGlyphData.RasterData;
var __x=_raster.Line.Height*_raster.Index;var __y=_raster.Line.Y;context2D.drawImage(_raster.Chunk.CanvasImage,__x+_dstX,__y+_dstY,_dstW,_dstH,_x,_y,_dstW,_dstH)}},Free:function(){if(null!=this.oGlyphData.RasterData)this.oGlyphData.RasterData.Chunk.Free(this.oGlyphData.RasterData)}};function CBBox(){this.fMinX=0;this.fMaxX=0;this.fMinY=0;this.fMaxY=0;this.rasterDistances=null}function CMetrics(){this.fWidth=0;this.fHeight=0;this.fHoriBearingX=0;this.fHoriBearingY=0;this.fHoriAdvance=0;this.fVertBearingX=
0;this.fVertBearingY=0;this.fVertAdvance=0}function CFontCacheSizes(){this.ushUnicode;this.eState;this.nCMapIndex;this.ushGID;this.fAdvanceX;this.oBBox=new CBBox;this.oMetrics=new CMetrics;this.bBitmap=false;this.oBitmap=null}function CCMapIndex(){this.index=0}function CGlyphVectorPainter(){this.X=0;this.Y=0;this.KoefX=25.4/72;this.KoefY=25.4/72;this.NeedClosed=false;this.shift=0;this.delta=0;this.CurX=0;this.CurY=0}CGlyphVectorPainter.prototype={start:function(){},_move_to:function(x,y,worker){if(this.NeedClosed){worker._z();
this.NeedClosed=false}this.CurX=this.X+this.KoefX*(x/64);this.CurY=this.Y-this.KoefY*(y/64);worker._m(this.CurX,this.CurY);return 0},move_to:function(to,worker){return this._move_to(to.x,to.y,worker)},_line_to:function(x,y,worker){this.CurX=this.X+this.KoefX*(x/64);this.CurY=this.Y-this.KoefY*(y/64);worker._l(this.CurX,this.CurY);this.NeedClosed=true;return 0},line_to:function(to,worker){return this._line_to(to.x,to.y,worker)},_conic_to:function(control_x,control_y,to_x,to_y,worker){var dX0=this.CurX;
var dY0=this.CurY;var dXc=this.X+this.KoefX*(control_x/64);var dYc=this.Y-this.KoefY*(control_y/64);var dX3=this.X+this.KoefX*(to_x/64);var dY3=this.Y-this.KoefY*(to_y/64);var dX1=1/3*(dX0+2*dXc);var dY1=1/3*(dY0+2*dYc);var dX2=1/3*(2*dXc+dX3);var dY2=1/3*(2*dYc+dY3);worker._c(dX1,dY1,dX2,dY2,dX3,dY3);this.CurX=dX3;this.CurY=dY3;this.NeedClosed=true;return 0},conic_to:function(control,to,worker){return this._conic_to(control.x,control.y,to.x,to.y,worker)},_cubic_to:function(control1_x,control1_y,
control2_x,control2_y,to_x,to_y,worker){this.CurX=this.X+this.KoefX*(to_x/64);this.CurY=this.Y-this.KoefY*(to_y/64);worker._c(this.X+this.KoefX*(control1_x/64),this.Y-this.KoefY*(control1_y/64),this.X+this.KoefX*(control2_x/64),this.Y-this.KoefY*(control2_y/64),this.CurX,this.CurY);this.NeedClosed=true;return 0},cubic_to:function(control1,control2,to,worker){return this._cubic_to(control1.x,control1.y,control2.x,control2.y,to.x,to.y,worker)},end:function(worker){if(this.NeedClosed){worker._z();this.NeedClosed=
false}}};function CFontFile(){this.m_arrdFontMatrix="undefined"==typeof Float64Array?new Array(6):new Float64Array(6);this.m_arrdTextMatrix="undefined"==typeof Float64Array?new Array(6):new Float64Array(6);this.m_bAntiAliasing=true;this.m_bUseKerning=false;this.m_fSize=1;this.m_unHorDpi=0;this.m_unVerDpi=0;this.m_bNeedDoItalic=false;this.m_bNeedDoBold=false;this.m_fCharSpacing=0;this.m_oBox=new AscFonts.CGlyphBounds;this.m_nError=0;this.m_pFace=null;this.m_pFaceInfo=null;this.m_dUnitsKoef=1;this.m_nDefaultChar=
-1;this.m_nSymbolic=-1;this.m_dTextScale=0;this.m_bStringGID=false;this.m_nNum_charmaps=0;this.m_lAscender=0;this.m_lDescender=0;this.m_lLineHeight=0;this.m_lUnits_Per_Em=0;this.m_arrCacheSizes=[];this.m_arrCacheSizesGid=[];this.m_oFontManager=null;this.HintsSupport=true;this.HintsSubpixelSupport=true;this.m_bIsTransform=true;this.fixed_sizes=undefined;this.Picker=new CFontLoaderBySymbol;this.FT_Load_Glyph_Wrapper=function(pFace,unGID,_LOAD_MODE){var err=AscFonts.FT_Load_Glyph(pFace,unGID,_LOAD_MODE);
if(0!=err&&this.HintsSupport){var err2=AscFonts.FT_Load_Glyph(pFace,unGID,AscFonts.LOAD_MODE_DEFAULT);if(err2!=0)return err;this.HintsSupport=false;return err2}return err};this.ResetFontMatrix=function(){var m=this.m_arrdFontMatrix;if(this.m_bNeedDoItalic){m[0]=1;m[1]=0;m[2]=FONT_ITALIC_ANGLE;m[3]=1;m[4]=0;m[5]=0}else{m[0]=1;m[1]=0;m[2]=0;m[3]=1;m[4]=0;m[5]=0}this.UpdateMatrix()};this.ResetTextMatrix=function(){var m=this.m_arrdTextMatrix;m[0]=1;m[1]=0;m[2]=0;m[3]=1;m[4]=0;m[5]=0;this.CheckTextMatrix()};
this.CheckTextMatrix=function(){this.m_bIsTransform=true;var m=this.m_arrdTextMatrix;if(m[0]==1&&m[1]==0&&m[2]==0&&m[3]==1){this.m_bIsTransform=false;this.UpdateMatrix()}};this.UpdateMatrix=function(){var m=this.m_arrdFontMatrix;var t=this.m_arrdTextMatrix;var xx=(m[0]*t[0]+m[1]*t[2])*65536>>0;var yx=(m[0]*t[1]+m[1]*t[3])*65536>>0;var xy=(m[2]*t[0]+m[3]*t[2])*65536>>0;var yy=(m[2]*t[1]+m[3]*t[3])*65536>>0;AscFonts.FT_Set_Transform(this.m_pFace,xx,yx,xy,yy)};this.SetSizeAndDpi=function(dSize,unHorDpi,
unVerDpi){var dpiX=unHorDpi+.5>>0;var dpiY=unVerDpi+.5>>0;var dOldSize=this.m_fSize;var dNewSize=dSize;var dKoef=dNewSize/dOldSize;var isResize=dKoef>1.001||dKoef<.999?true:false;if(isResize||dpiX!=this.m_unHorDpi||dpiY!=this.m_unVerDpi){this.m_unHorDpi=dpiX;this.m_unVerDpi=dpiY;if(isResize){this.m_fSize=dNewSize;this.UpdateMatrix()}this.m_dUnitsKoef=this.m_unHorDpi/72*this.m_fSize;this.m_nError=AscFonts.FT_Set_Char_Size(this.m_pFace,0,dNewSize*64>>0,dpiX,dpiY);this.ClearCache()}};this.ClearCache=
function(){this.Destroy();this.ClearCacheNoAttack();if(this.Picker)this.Picker.ClearCache()};this.ClearCacheNoAttack=function(){this.m_arrCacheSizes=[];this.m_arrCacheSizesGid=[];if(this.Picker)this.Picker.ClearCacheNoAttack()};this.Destroy=function(){if(this.m_oFontManager!=null&&this.m_oFontManager.RasterMemory!=null){var _arr=this.m_arrCacheSizes;for(var i in _arr)if(_arr[i].oBitmap!=null)_arr[i].oBitmap.Free();_arr=this.m_arrCacheSizesGid;for(var i in _arr)if(_arr[i].oBitmap!=null)_arr[i].oBitmap.Free()}};
this.SetTextMatrix=function(fA,fB,fC,fD,fE,fF){var m=this.m_arrdTextMatrix;var b1=m[0]==fA&&m[1]==-fB&&m[2]==-fC&&m[3]==fD;if(b1&&m[4]==fE&&m[5]==fF)return false;m[0]=fA;m[1]=-fB;m[2]=-fC;m[3]=fD;m[4]=fE;m[5]=fF;if(!b1)this.ClearCache();this.CheckTextMatrix();return true};this.SetFontMatrix=function(fA,fB,fC,fD,fE,fF){var m=this.m_arrdFontMatrix;if(this.m_bNeedDoItalic){m[0]=fA;m[1]=fB;m[2]=fC+fA*FONT_ITALIC_ANGLE;m[3]=fD+fB*FONT_ITALIC_ANGLE;m[4]=fE;m[5]=fF}else{m[0]=fA;m[1]=fB;m[2]=fC;m[3]=fD;m[4]=
fE;m[5]=fF}this.ClearCache()};this.GetGIDByUnicode=function(glyph){var unGID=AscFonts.FT_SetCMapForCharCode(this.m_pFace,glyph);if(unGID>0)return unGID;if(-1!=this.m_nSymbolic&&glyph<61440)unGID=AscFonts.FT_SetCMapForCharCode(this.m_pFace,glyph+61440);return unGID};this.CacheGlyph=function(glyph_index_or_unicode,isRaster,isRasterDistances,workerVector,workerVectorX,workerVectorY,isFromPicker){var oSizes=new CFontCacheSizes;oSizes.ushUnicode=glyph_index_or_unicode;var nUnicodeForHintTest=this.m_bStringGID?
0:glyph_index_or_unicode;var unGID=this.m_bStringGID?glyph_index_or_unicode:AscFonts.FT_SetCMapForCharCode(this.m_pFace,glyph_index_or_unicode);if(unGID<=0&&!this.m_bStringGID)if(-1!=this.m_nSymbolic&&glyph_index_or_unicode<61440)unGID=AscFonts.FT_SetCMapForCharCode(this.m_pFace,glyph_index_or_unicode+61440);if(unGID<=0){if(isFromPicker===true)return null;if(!this.m_bStringGID&&this.Picker){var oSizesCheck=this.Picker.LoadSymbol(this,glyph_index_or_unicode,isRaster,isRasterDistances,workerVector,
workerVectorX,workerVectorY);if(oSizesCheck)return oSizesCheck}if(this.m_nDefaultChar>=0){unGID=this.m_nDefaultChar;oSizes.eState=EGlyphState.glyphstateDefault}else{oSizes.eState=EGlyphState.glyphstateMiss;oSizes.ushGID=-1;oSizes.fAdvanceX=(AscFonts.FT_GetFaceMaxAdvanceX(this.m_pFace)>>6)/2;return oSizes}}else oSizes.eState=EGlyphState.glyphstateNormal;oSizes.ushGID=unGID;oSizes.nCMapIndex=0;var load_mode=this.GetCharLoadMode(nUnicodeForHintTest);if(this.m_bStringGID||!isRaster||this.m_bNeedDoBold)load_mode|=
AscFonts.FT_Load_Mode.FT_LOAD_NO_BITMAP;else if(!AscFonts.isUseBitmapStrikes(glyph_index_or_unicode))load_mode|=AscFonts.FT_Load_Mode.FT_LOAD_NO_BITMAP;else if(Math.abs(this.m_arrdTextMatrix[1])>.001||Math.abs(this.m_arrdTextMatrix[2])>.001)load_mode|=AscFonts.FT_Load_Mode.FT_LOAD_NO_BITMAP;if(this.FT_Load_Glyph_Wrapper(this.m_pFace,unGID,load_mode)){oSizes.fAdvanceX=(AscFonts.FT_GetFaceMaxAdvanceX(this.m_pFace)>>6)/2;return oSizes}var _painter=null;if(undefined!==workerVector){_painter=new CGlyphVectorPainter;
_painter.KoefX=25.4/this.m_unHorDpi;_painter.KoefY=25.4/this.m_unVerDpi;if(workerVectorX!==undefined)_painter.X=workerVectorX;if(workerVectorY!==undefined)_painter.Y=workerVectorY}var measureInfo=AscFonts.FT_Glyph_Get_Measure(this.m_pFace,workerVector,_painter);if(null==measureInfo||undefined!==workerVector)return oSizes;var isDisableNeedBold=this.m_pFaceInfo.os2_version!=65535&&this.m_pFaceInfo.os2_usWeightClass>=800?true:false;oSizes.fAdvanceX=measureInfo.linearHoriAdvance*this.m_dUnitsKoef/this.m_lUnits_Per_Em;
if(this.m_bNeedDoBold&&this.m_oFontManager.IsAdvanceNeedBoldFonts&&!isDisableNeedBold)oSizes.fAdvanceX+=1;oSizes.oBBox.fMinX=measureInfo.bbox_xMin>>6;oSizes.oBBox.fMaxX=measureInfo.bbox_xMax>>6;oSizes.oBBox.fMinY=measureInfo.bbox_yMin>>6;oSizes.oBBox.fMaxY=measureInfo.bbox_yMax>>6;var dstM=oSizes.oMetrics;dstM.fWidth=measureInfo.width>>6;dstM.fHeight=measureInfo.height>>6;dstM.fHoriBearingX=measureInfo.horiBearingX>>6;dstM.fHoriBearingY=measureInfo.horiBearingY>>6;dstM.fHoriAdvance=measureInfo.horiAdvance>>
6;dstM.fVertBearingX=measureInfo.vertBearingX>>6;dstM.fVertBearingY=measureInfo.vertBearingY>>6;dstM.fVertAdvance=measureInfo.vertAdvance>>6;if(isFromPicker&&(0==dstM.fHoriAdvance&&0==measureInfo.width)){if(this.m_bStringGID)return null;switch(glyph_index_or_unicode){case 65279:{return oSizes}default:break}return null}if(!isRaster){if(isRasterDistances){var rasterInfo=AscFonts.FT_Glyph_Get_Raster(this.m_pFace,REND_MODE);if(rasterInfo){var rasterBitmap=AscFonts.FT_Get_Glyph_Render_Buffer(this.m_pFace,
rasterInfo,false);oSizes.oBBox.rasterDistances=get_raster_bounds(rasterBitmap.data,rasterBitmap.width,rasterBitmap.rows,rasterBitmap.pitch)}}return oSizes}oSizes.bBitmap=true;var rasterInfo=AscFonts.FT_Glyph_Get_Raster(this.m_pFace,REND_MODE);if(!rasterInfo||rasterInfo.pitch==0)return oSizes;oSizes.oBitmap=new CGlyphBitmap;oSizes.oBitmap.nX=rasterInfo.left;oSizes.oBitmap.nY=rasterInfo.top;oSizes.oBitmap.nWidth=rasterInfo.width;oSizes.oBitmap.nHeight=rasterInfo.rows;var rasterBitmap=AscFonts.FT_Get_Glyph_Render_Buffer(this.m_pFace,
rasterInfo,true);if(this.m_bNeedDoBold&&this.m_bAntiAliasing&&!isDisableNeedBold){oSizes.oBitmap.nWidth++;var _width_im=oSizes.oBitmap.nWidth;var _height=oSizes.oBitmap.nHeight;var nY,nX;var pDstBuffer;var _input=raster_memory.m_oBuffer.data;for(nY=0,pDstBuffer=0;nY<_height;++nY,pDstBuffer+=raster_memory.pitch)for(nX=_width_im-1;nX>=0;--nX)if(0!=nX){var _pos_x=pDstBuffer+nX*4+3;if(_width_im-1==nX)_input[_pos_x]=_input[_pos_x-4];else _input[_pos_x]=Math.min(255,_input[_pos_x-4]+_input[_pos_x])}}oSizes.oBitmap.fromAlphaMask(this.m_oFontManager);
return oSizes};this.GetString=function(pString){if(pString.GetLength()<=0)return true;var unPrevGID=0;var fPenX=0,fPenY=0;if(this.m_bIsTransform)this.UpdateMatrix();var _cache_array=this.m_bStringGID===false?this.m_arrCacheSizes:this.m_arrCacheSizesGid;for(var nIndex=0;nIndex<pString.GetLength();++nIndex){var pCurGlyph=pString.GetAt(nIndex);var ushUnicode=pCurGlyph.lUnicode;var charSymbolObj=_cache_array[ushUnicode];if(undefined==charSymbolObj){_cache_array[ushUnicode]=this.CacheGlyph(ushUnicode,
false);charSymbolObj=_cache_array[ushUnicode]}var unGID=charSymbolObj.ushGID;var eState=charSymbolObj.eState;if(EGlyphState.glyphstateMiss==eState){pString.SetStartPoint(nIndex,fPenX,fPenY);pString.SetBBox(nIndex,0,0,0,0);pString.SetState(nIndex,EGlyphState.glyphstateMiss);fPenX+=charSymbolObj.fAdvanceX+this.m_fCharSpacing;unPrevGID=0;continue}else if(EGlyphState.glyphstateDefault==eState)pString.SetState(nIndex,EGlyphState.glyphstateDefault);else pString.SetState(nIndex,EGlyphState.glyphstateNormal);
if(this.m_bUseKerning&&unPrevGID&&(nIndex>0&&pString.GetAt(nIndex).eState==pString.GetAt(nIndex-1).eState))fPenX+=this.GetKerning(unPrevGID,unGID);var fX=pString.m_fX+fPenX;var fY=pString.m_fY+fPenY;var fXX=pString.m_arrCTM[4]+fX*pString.m_arrCTM[0]+fY*pString.m_arrCTM[2]-pString.m_fX;var fYY=pString.m_arrCTM[5]+fX*pString.m_arrCTM[1]+fY*pString.m_arrCTM[3]-pString.m_fY;pString.SetStartPoint(nIndex,fXX,fYY);var _metrics=charSymbolObj.oMetrics;pString.SetMetrics(nIndex,_metrics.fWidth,_metrics.fHeight,
_metrics.fHoriAdvance,_metrics.fHoriBearingX,_metrics.fHoriBearingY,_metrics.fVertAdvance,_metrics.fVertBearingX,_metrics.fVertBearingY);pString.SetBBox(nIndex,charSymbolObj.oBBox.fMinX,charSymbolObj.oBBox.fMaxY,charSymbolObj.oBBox.fMaxX,charSymbolObj.oBBox.fMinY);fPenX+=charSymbolObj.fAdvanceX+this.m_fCharSpacing;unPrevGID=unGID}pString.m_fEndX=fPenX+pString.m_fX;pString.m_fEndY=fPenY+pString.m_fY};this.GetString2=function(pString){if(pString.GetLength()<=0)return true;if(this.m_bIsTransform)this.UpdateMatrix();
var unPrevGID=0;var fPenX=0,fPenY=0;var _cache_array=this.m_bStringGID===false?this.m_arrCacheSizes:this.m_arrCacheSizesGid;for(var nIndex=0;nIndex<pString.GetLength();++nIndex){var pCurGlyph=pString.GetAt(nIndex);var ushUnicode=pCurGlyph.lUnicode;var charSymbolObj=_cache_array[ushUnicode];if(undefined==charSymbolObj||null==charSymbolObj.oBitmap){_cache_array[ushUnicode]=this.CacheGlyph(ushUnicode,true);charSymbolObj=_cache_array[ushUnicode]}var nCMapIndex=charSymbolObj.nCMapIndex;var unGID=charSymbolObj.ushGID;
var eState=charSymbolObj.eState;if(EGlyphState.glyphstateMiss==eState){pString.SetStartPoint(nIndex,fPenX,fPenY);pString.SetBBox(nIndex,0,0,0,0);pString.SetState(nIndex,EGlyphState.glyphstateMiss);fPenX+=charSymbolObj.fAdvanceX+this.m_fCharSpacing;unPrevGID=0;continue}else if(EGlyphState.glyphstateDefault==eState)pString.SetState(nIndex,EGlyphState.glyphstateDefault);else pString.SetState(nIndex,EGlyphState.glyphstateNormal);if(this.m_bUseKerning&&unPrevGID&&(nIndex>0&&pString.GetAt(nIndex).eState==
pString.GetAt(nIndex-1).eState))fPenX+=this.GetKerning(unPrevGID,unGID);var fX=pString.m_fX+fPenX;var fY=pString.m_fY+fPenY;var fXX=pString.m_arrCTM[4]+fX*pString.m_arrCTM[0]+fY*pString.m_arrCTM[2]-pString.m_fX;var fYY=pString.m_arrCTM[5]+fX*pString.m_arrCTM[1]+fY*pString.m_arrCTM[3]-pString.m_fY;pString.SetStartPoint(nIndex,fXX,fYY);pCurGlyph.oMetrics=charSymbolObj.oMetrics;pString.SetBBox(nIndex,charSymbolObj.oBBox.fMinX,charSymbolObj.oBBox.fMaxY,charSymbolObj.oBBox.fMaxX,charSymbolObj.oBBox.fMinY);
fPenX+=charSymbolObj.fAdvanceX+this.m_fCharSpacing;pCurGlyph.bBitmap=charSymbolObj.bBitmap;pCurGlyph.oBitmap=charSymbolObj.oBitmap;unPrevGID=unGID}pString.m_fEndX=fPenX+pString.m_fX;pString.m_fEndY=fPenY+pString.m_fY};this.GetString2C=function(pString){if(this.m_bIsTransform)this.UpdateMatrix();var pCurGlyph=pString.m_pGlyphsBuffer[0];var ushUnicode=pCurGlyph.lUnicode;var _cache_array=this.m_bStringGID===false?this.m_arrCacheSizes:this.m_arrCacheSizesGid;var charSymbolObj=_cache_array[ushUnicode];
if(undefined==charSymbolObj||null==charSymbolObj.oBitmap&&charSymbolObj.bBitmap===false){_cache_array[ushUnicode]=this.CacheGlyph(ushUnicode,true);charSymbolObj=_cache_array[ushUnicode]}if(!charSymbolObj)return;var eState=charSymbolObj.eState;pCurGlyph.eState=charSymbolObj.eState;if(EGlyphState.glyphstateMiss==eState){pCurGlyph.fX=0;pCurGlyph.fY=0;pCurGlyph.fLeft=0;pCurGlyph.fTop=0;pCurGlyph.fRight=0;pCurGlyph.fBottom=0;return}var fX=pString.m_fX;var fY=pString.m_fY;var _m=pString.m_arrCTM;pCurGlyph.fX=
_m[4]+fX*_m[0]+fY*_m[2]-pString.m_fX;pCurGlyph.fY=_m[5]+fX*_m[1]+fY*_m[3]-pString.m_fY;pCurGlyph.oMetrics=charSymbolObj.oMetrics;pCurGlyph.bBitmap=charSymbolObj.bBitmap;pCurGlyph.oBitmap=charSymbolObj.oBitmap;pString.m_fEndX=charSymbolObj.fAdvanceX+this.m_fCharSpacing+pString.m_fX;pString.m_fEndY=pString.m_fY};this.GetChar=function(lUnicode,is_raster_distances){var Result=undefined;var ushUnicode=lUnicode;if(this.m_bIsTransform)this.UpdateMatrix();var _cache_array=this.m_bStringGID===false?this.m_arrCacheSizes:
this.m_arrCacheSizesGid;var charSymbolObj=_cache_array[ushUnicode];if(undefined==charSymbolObj){_cache_array[ushUnicode]=this.CacheGlyph(ushUnicode,false,is_raster_distances);charSymbolObj=_cache_array[ushUnicode]}return charSymbolObj};this.GetCharPath=function(lUnicode,worker,x,y){var pFace=this.m_pFace;var pCurentGliph=pFace.glyph;var Result;var ushUnicode=lUnicode;if(this.m_bIsTransform)this.UpdateMatrix();this.CacheGlyph(ushUnicode,false,false,worker,x,y)};this.GetStringPath=function(string,worker){var _len=
string.GetLength();if(_len<=0)return true;for(var nIndex=0;nIndex<_len;++nIndex){var _glyph=string.m_pGlyphsBuffer[nIndex];var _x=string.m_fX+25.4*_glyph.fX/this.m_unHorDpi;var _y=string.m_fY+25.4*_glyph.fY/this.m_unVerDpi;worker._s();this.GetCharPath(_glyph.lUnicode,worker,_x,_y);worker.df();worker._e()}};this.GetCharLoadMode=function(code){if(this.HintsSupport&&this.HintsSubpixelSupport){if(code===95&&this.m_pFaceInfo.family_name==="Wingdings 3")return AscFonts.LOAD_MODE_DEFAULT;return this.m_oFontManager.LOAD_MODE}return AscFonts.LOAD_MODE_DEFAULT};
this.GetKerning=function(unPrevGID,unGID){var delta=AscFonts.FT_GetKerningX(this.m_pFace,unPrevGID,unGID);return delta>>6};this.SetStringGID=function(bGID){if(this.m_bStringGID==bGID)return;this.m_bStringGID=bGID};this.GetStringGID=function(){return this.m_bStringGID};this.SetCharSpacing=function(fCharSpacing){this.m_fCharSpacing=fCharSpacing};this.GetCharSpacing=function(){return this.m_fCharSpacing};this.GetStyleName=function(){return this.m_pFaceInfo.style_name};this.UpdateStyles=function(bBold,
bItalic){var sStyle=this.GetStyleName();var bSrcBold=-1!=sStyle.indexOf("Bold");var bSrcItalic=-1!=sStyle.indexOf("Italic");this.SetNeedBold(bBold&&!bSrcBold);this.SetNeedItalic(bItalic&&!bSrcItalic)};this.IsBold=function(){if(this.m_bNeedDoBold)return true;return-1!=this.m_pFaceInfo.style_name.indexOf("Bold")?true:false};this.IsItalic=function(){if(this.m_bNeedDoItalic)return true;return-1!=this.m_pFaceInfo.style_name.indexOf("Italic")?true:false};this.SetNeedItalic=function(value){if(this.m_bNeedDoItalic!=
value){this.ClearCache();this.m_bNeedDoItalic=value;this.ResetFontMatrix()}};this.SetNeedBold=function(value){if(this.m_bNeedDoBold!=value){this.ClearCache();this.m_bNeedDoBold=value}};this.IsSuccess=function(){return 0==this.m_nError};this.GetAscender=function(){return this.m_lAscender};this.GetDescender=function(){return this.m_lDescender};this.GetHeight=function(){return this.m_lLineHeight};this.Units_Per_Em=function(){return this.m_lUnits_Per_Em};this.CheckHintsSupport=function(){this.HintsSupport=
true;this.HintsSubpixelSupport=true};this.cellGetMetrics=function(){var face=this.m_pFaceInfo;var ret=[];ret.push(face.units_per_EM);if(face.os2_version!=65535){ret.push(face.os2_usWinAscent);ret.push(-face.os2_usWinDescent)}else{ret.push(face.header_yMax);ret.push(face.header_yMin)}return ret};this.GetLimitsY=function(){return{min:this.m_pFaceInfo.header_yMin,max:this.m_pFaceInfo.header_yMax}};this.SetFace=function(face,fontManager){this.m_pFace=face;this.m_pFaceInfo=new AscFonts.CFaceInfo;this.m_pFaceInfo.load(this.m_pFace);
this.m_lUnits_Per_Em=this.m_pFaceInfo.units_per_EM;this.m_lAscender=this.m_pFaceInfo.ascender;this.m_lDescender=this.m_pFaceInfo.descender;this.m_lLineHeight=this.m_pFaceInfo.height;if(fontManager.IsUseWinOS2Params&&this.m_pFaceInfo.os2_version!=65535)if(fontManager.Mode===AscFonts.TextMeasureMode.Cell){var _winAscent=this.m_pFaceInfo.os2_usWinAscent;var _winDescent=-this.m_pFaceInfo.os2_usWinDescent;if((this.m_pFaceInfo.os2_ulUnicodeRange2&770703360)!=0){var _addidive=.3*(_winAscent-_winDescent)>>
0;_winAscent+=_addidive+1>>1;_winDescent-=_addidive>>1}if(this.m_pFaceInfo.height<_winAscent-_winDescent){this.m_lAscender=_winAscent;this.m_lDescender=_winDescent;this.m_lLineHeight=_winAscent-_winDescent}}else{var bIsUseTypeAttack=(this.m_pFaceInfo.os2_fsSelection&128)==128?true:false;if(bIsUseTypeAttack){this.m_lAscender=this.m_pFaceInfo.os2_sTypoAscender;this.m_lDescender=this.m_pFaceInfo.os2_sTypoDescender;this.m_lLineHeight=this.m_pFaceInfo.os2_sTypoAscender-this.m_pFaceInfo.os2_sTypoDescender+
this.m_pFaceInfo.os2_sTypoLineGap}else if(false){this.m_lAscender=this.m_pFaceInfo.os2_usWinAscent;this.m_lDescender=-this.m_pFaceInfo.os2_usWinDescent;this.m_lLineHeight=this.m_pFaceInfo.os2_usWinAscent+this.m_pFaceInfo.os2_usWinDescent}if(fontManager.Mode!==AscFonts.TextMeasureMode.Slide&&(this.m_pFaceInfo.os2_ulUnicodeRange2&770703360||this.m_pFaceInfo.os2_ulCodePageRange1&4063232)){var nAscent=this.m_lAscender;var nDescent=this.m_lDescender;this.m_lLineHeight=(nAscent-nDescent)*1.3|0;this.m_lDescender=
nDescent-(nAscent-nDescent)*.15|0;this.m_lAscender=this.m_lLineHeight+this.m_lDescender}}this.m_nNum_charmaps=this.m_pFaceInfo.num_charmaps;this.m_nDefaultChar=this.m_pFaceInfo.os2_usDefaultChar;this.m_nSymbolic=this.m_pFaceInfo.os2_nSymbolic;this.m_nError=AscFonts.FT_Set_Char_Size(face,0,this.m_fSize*64,0,0);this.ResetTextMatrix();this.ResetFontMatrix();if(true===fontManager.m_bUseKerning)this.m_bUseKerning=(this.m_pFaceInfo.face_flags&64)!=0?true:false;if(0!=this.m_pFaceInfo.monochromeSizes.length){this.fixed_sizes=
[];for(var i=this.m_pFaceInfo.monochromeSizes.length-1;i>=0;i--)this.fixed_sizes[this.m_pFaceInfo.monochromeSizes[i]>>6]=true}}}function CFontLoaderBySymbol(){this.FontFiles={};this.LoadSymbol=function(pFontFile,symbol,isRaster,isRasterDistances,workerVector,workerVectorX,workerVectorY,isFromPicker){var fontManager=pFontFile.m_oFontManager;var name=AscFonts.FontPickerByCharacter.getFontBySymbol(symbol);if(undefined===name||name=="")return null;var _fontFilePick=this.FontFiles[name];if(!_fontFilePick){var _font_info=
AscFonts.g_font_infos[AscFonts.g_map_font_index[name]];var _style=AscFonts.FontStyle.FontStyleRegular;if(pFontFile.IsBold())_style|=AscFonts.FontStyle.FontStyleBold;if(pFontFile.IsItalic())_style|=AscFonts.FontStyle.FontStyleItalic;_fontFilePick=_font_info.LoadFont(AscCommon.g_font_loader,fontManager,pFontFile.m_fSize,_style,pFontFile.m_unHorDpi,pFontFile.m_unVerDpi,undefined,true);if(!_fontFilePick)return null;_fontFilePick.CheckHintsSupport();this.FontFiles[name]=_fontFilePick}if(!_fontFilePick)return null;
_fontFilePick.SetSizeAndDpi(pFontFile.m_fSize,pFontFile.m_unHorDpi,pFontFile.m_unVerDpi);var s=pFontFile.m_arrdTextMatrix;var d=_fontFilePick.m_arrdTextMatrix;d[0]=s[0];d[1]=s[1];d[2]=s[2];d[3]=s[3];d[4]=s[4];d[5]=s[5];_fontFilePick.UpdateMatrix();return _fontFilePick.CacheGlyph(symbol,isRaster,isRasterDistances,workerVector,workerVectorX,workerVectorY,true)};this.ClearCache=function(){if(this.FontClearCache_checker)return;this.FontClearCache_checker=true;for(var font in this.FontFiles)this.FontFiles[font].ClearCache();
delete this.FontClearCache_checker};this.ClearCacheNoAttack=function(){if(this.FontClearCacheNoAttack_checker)return;this.FontClearCacheNoAttack_checker=true;for(var font in this.FontFiles)this.FontFiles[font].ClearCacheNoAttack();delete this.FontClearCacheNoAttack_checker}}window["AscFonts"].EGlyphState=EGlyphState;window["AscFonts"].CFontFile=CFontFile;window["AscFonts"].onLoadModule()})(window);"use strict";
(function(window,undefined){var AscFonts=window["AscFonts"];function CFontManagerEngine(){this.library=AscFonts.CreateLibrary();this.manager=null;this.openFont=function(stream,faceindex){var face=AscFonts.FT_Open_Face(this.library,stream,faceindex);if(!face)return null;var font=new AscFonts.CFontFile;font.SetFace(face,this.manager);if(!font.IsSuccess()){font=null;face=null;return null}return font};this.setHintsProps=function(bIsHinting,bIsSubpixHinting){var REND_MODE_SUBPIX=bIsHinting&&bIsSubpixHinting?
AscFonts.TT_INTERPRETER_VERSION_40:AscFonts.TT_INTERPRETER_VERSION_35;this.manager.LOAD_MODE=bIsHinting?AscFonts.LOAD_MODE_HINTING:AscFonts.LOAD_MODE_DEFAULT;AscFonts.FT_Set_TrueType_HintProp(this.library,REND_MODE_SUBPIX)}}window["AscFonts"].engine_Create=function(fontManager){var engine=new CFontManagerEngine;engine.manager=fontManager;engine.setHintsProps(fontManager.bIsHinting,fontManager.bIsSubpixHinting);fontManager._engine=engine;AscFonts.initVariables()};window["AscFonts"].engine_Destroy=
function(fontManager){};window["AscFonts"].onLoadModule()})(window);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -26,7 +26,6 @@
options: <advanced options>,
key: 'key',
vkey: 'vkey',
referenceData: 'data for external paste',
info: {
owner: 'owner name',
folder: 'path to document',
@ -119,7 +118,6 @@
address: 'New-York, 125f-25',
mail: 'support@gmail.com',
www: 'www.superpuper.com',
phone: '1234567890',
info: 'Some info',
logo: '',
logoDark: '', // logo for dark theme
@ -178,12 +176,9 @@
},
leftMenu: {
navigation: false/true,
spellcheck: false/true // spellcheck button in sse,
mode: false/true // init value for left panel, true - is visible, false - is hidden, used for option "Left panel" on the View Tab
spellcheck: false/true // spellcheck button in sse
} / false / true, // use instead of customization.leftMenu
rightMenu: {
mode: false/true // init value for right panel, true - is visible, false - is hidden, used for option "Right panel" on the View Tab
} / false/true, // use instead of customization.rightMenu
rightMenu: false/true, // use instead of customization.rightMenu
statusBar: {
textLang: false/true // text language button in de/pe
docLang: false/true // document language button in de/pe
@ -196,9 +191,6 @@
change: false/true // hide/show feature in de/pe/sse
} / false / true // if false/true - use as init value in de/pe. use instead of customization.spellcheck parameter
},
font: {
name: "Arial",
},
chat: true,
comments: true,
zoom: 100,
@ -228,12 +220,10 @@
hideRulers: false // hide or show rulers on first loading (presentation or document editor)
hideNotes: false // hide or show notes panel on first loading (presentation editor)
uiTheme: 'theme-dark' // set interface theme: id or default-dark/default-light
integrationMode: "embed" // turn off scroll to frame
},
coEditing: {
mode: 'fast', // <coauthoring mode>, 'fast' or 'strict'. if 'fast' and 'customization.autosave'=false -> set 'customization.autosave'=true. 'fast' - default for editor
// for viewer: 'strict' is default, offline viewer; 'fast' - live viewer, show changes from other users
change: true, // can change co-authoring mode. true - default for editor, false - default for viewer
mode: 'fast', // <coauthoring mode>, 'fast' or 'strict'. if 'fast' and 'customization.autosave'=false -> set 'customization.autosave'=true
change: true, // can change co-authoring mode
},
plugins: {
autostart: ['asc.{FFE1F462-1EA2-4391-990D-4CC84940B754}'],
@ -274,7 +264,6 @@
'onRequestCompareFile': <request file to compare>,// must call setRevisedFile method
'onRequestSharingSettings': <request sharing settings>,// must call setSharingSettings method
'onRequestCreateNew': <try to create document>,
'onRequestReferenceData': <try to refresh external data>,
}
}
@ -338,7 +327,6 @@
_config.editorConfig.canRequestCompareFile = _config.events && !!_config.events.onRequestCompareFile;
_config.editorConfig.canRequestSharingSettings = _config.events && !!_config.events.onRequestSharingSettings;
_config.editorConfig.canRequestCreateNew = _config.events && !!_config.events.onRequestCreateNew;
_config.editorConfig.canRequestReferenceData = _config.events && !!_config.events.onRequestReferenceData;
_config.frameEditorId = placeholderId;
_config.parentOrigin = window.location.origin;
@ -391,7 +379,7 @@
if ( msg ) {
if ( msg.type === "onExternalPluginMessage" ) {
_sendCommand(msg);
} else if ((window.parent !== window) && msg.type === "onExternalPluginMessageCallback") {
} else if (msg.type === "onExternalPluginMessageCallback") {
postMessage(window.parent, msg);
} else
if ( msg.frameEditorId == placeholderId ) {
@ -503,9 +491,6 @@
if (target && _checkConfigParams()) {
iframe = createIframe(_config);
if (_config.editorConfig.customization && _config.editorConfig.customization.integrationMode==='embed')
window.AscEmbed && window.AscEmbed.initWorker(iframe);
if (iframe.src) {
var pathArray = iframe.src.split('/');
this.frameOrigin = pathArray[0] + '//' + pathArray[2];
@ -748,13 +733,6 @@
});
};
var _setReferenceData = function(data) {
_sendCommand({
command: 'setReferenceData',
data: data
});
};
var _serviceCommand = function(command, data) {
_sendCommand({
command: 'internalCommand',
@ -789,8 +767,7 @@
setFavorite : _setFavorite,
requestClose : _requestClose,
grabFocus : _grabFocus,
blurFocus : _blurFocus,
setReferenceData : _setReferenceData
blurFocus : _blurFocus
}
};
@ -943,7 +920,7 @@
if ( typeof(customization) == 'object' && ( customization.toolbarNoTabs ||
(config.editorConfig.targetApp!=='desktop') && (customization.loaderName || customization.loaderLogo))) {
index = "/index_loader.html";
} else if (config.editorConfig.mode === 'editdiagram' || config.editorConfig.mode === 'editmerge' || config.editorConfig.mode === 'editole')
} else if (config.editorConfig.mode === 'editdiagram' || config.editorConfig.mode === 'editmerge')
index = "/index_internal.html";
}
@ -980,7 +957,7 @@
if (window.APP && window.APP.urlArgs) {
params += "&"+ window.APP.urlArgs;
}
if (config.editorConfig && (config.editorConfig.mode == 'editdiagram' || config.editorConfig.mode == 'editmerge' || config.editorConfig.mode == 'editole'))
if (config.editorConfig && (config.editorConfig.mode == 'editdiagram' || config.editorConfig.mode == 'editmerge'))
params += "&internal=true";
if (config.frameEditorId)
@ -1005,6 +982,25 @@
return params;
}
function getFrameTitle(config) {
var title = 'Powerful online editor for text documents, spreadsheets, and presentations';
var appMap = {
'text': 'text documents',
'spreadsheet': 'spreadsheets',
'presentation': 'presentations',
'word': 'text documents',
'cell': 'spreadsheets',
'slide': 'presentations'
};
if (typeof config.documentType === 'string') {
var app = appMap[config.documentType.toLowerCase()];
if (app)
title = 'Powerful online editor for ' + app;
}
return title;
}
function createIframe(config) {
var iframe = document.createElement("iframe");
@ -1014,12 +1010,12 @@
iframe.align = "top";
iframe.frameBorder = 0;
iframe.name = "frameEditor";
config.title && (typeof config.title === 'string') && (iframe.title = config.title);
iframe.title = getFrameTitle(config);
iframe.allowFullscreen = true;
iframe.setAttribute("allowfullscreen",""); // for IE11
iframe.setAttribute("onmousewheel",""); // for Safari on Mac
iframe.setAttribute("allow", "autoplay; camera; microphone; display-capture; clipboard-write;");
iframe.setAttribute("allow", "autoplay; camera; microphone; display-capture");
if (config.type == "mobile")
{
iframe.style.position = "fixed";

View File

@ -10,7 +10,7 @@
</head>
<body>
<script type="text/javascript" src="../../../vendor/jquery/jquery.min.js"></script>
<script type="text/javascript" src="../../../vendor/socketio/socket.io.min.js"></script>
<script type="text/javascript" src="../../../vendor/sockjs/sockjs.min.js"></script>
<script type="text/javascript" src="../../../vendor/xregexp/xregexp-all-min.js"></script>
<script type="text/javascript" src="../../../../sdkjs/common/AllFonts.js"></script>
<script type="text/javascript" src="../../../../sdkjs/word/sdk-all-min.js"></script>

View File

@ -1,272 +0,0 @@
<!DOCTYPE html>
<html>
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<!--
*
* (c) Copyright Ascensio System SIA 2021
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
-->
<title>ONLYOFFICE</title>
<style type="text/css">
html {
height: 100%;
width: 100%;
font-family: Arial, Helvetica, "Helvetica Neue", sans-serif;
}
body {
background: #fff;
color: #333;
font-size: 12px;
font-weight: normal;
height: 100%;
margin: 0;
overflow-y: hidden;
padding: 0;
text-decoration: none;
}
.form {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-end;
}
.title {
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 160%;
display: flex;
align-items: center;
text-align: center;
color: #333333;
}
.description {
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 160%;
display: flex;
align-items: center;
text-align: center;
margin-top: 8px;
color: #333333;
}
.icon {
margin-top: 49px;
width: 34px;
height: 48px;
}
.icon-succes {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAwCAYAAAB0WahSAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAENSURBVHgB7ZnBDYJAEEX/oN4pQTvQmxcTO7EEsQLtQKyA2AF2QOLFm5ZAB3InZB0WRDOJXCQbNPMSkmX3wGMyn8NAYEywHMMUES+nfPlwRwzKNxReUqolro4F3slYZjZkib2VIByBQUBhksEBtgAodjBYwYwiMuuFsSeUT8oSwSEs43Mh7rzMvOema4nqmU31fQ89QUUkKiLpjciw7bD5xnQEHc706ew3KtL2Bl2jzSrR1Eg0NRJtVommRqKpkWizSjQ1Ek2NRJtV8n+p+bafNDUSbVaJikhURFKK2FmnHb46ppo+v0Ru1W6xN8F8DEfUU+dtdYNTb34KeDyGTkGDGWvFcAu3hElKiXL8/gBwm2fFT+wjuQAAAABJRU5ErkJggg==");
}
.icon-error {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAwCAYAAAB0WahSAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAEBSURBVHgB7ZfRDYIwEIavtAM4QkfpA3uoE6gTiJswCIl99NEJSNyAAUhqz0BiGoOoVyjmvoTk6EP7c/ffAQDM0snz3OEFkciAiQBF2bg0DBmfGPIb8yZjVgEz02cuo5gBFHsomJmqqt5XhepFN2YfnqzMYhC9m1+1EfWn4dAZyXTN4EAbNWyISCYjLCRk0CNTdE0Pd00ImzXk/7rmVz9x14SwWUNYSAgLCUEhDQbGmBVMzPOZKOSKgVJqDxMjpVx3ocXfCeODc7dwaNu2tNY2EBHMhH/wnQ8LvHfObR6T04vBhSPMw8lP8EJiVNe11VrfhBBYMw3xwYxf/LX1IkpcuAMGtltNGCBFYAAAAABJRU5ErkJggg==");
}
#error .icon {
margin-bottom: 107px;
}
.spiner-image {
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCI+PGNpcmNsZSBjeD0iMTAiIGN5PSIxMCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNDQ0IiBzdHJva2Utd2lkdGg9IjEuNSIgcj0iNy4yNSIgc3Ryb2tlLWRhc2hhcnJheT0iMTYwJSwgNDAlIiAvPjwvc3ZnPg==");
margin-top: 49px;
width: 48px;
height: 48px;
}
#spiner {
animation-duration: .8s;
animation-name: rotation;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes rotation {
from {
transform: rotate(0);
}
to {
transform: rotate(360deg);
}
}
.button {
margin-top: 50px;
cursor: pointer;
display: inline-block;
border-width: 0px;
border-radius: 3px;
font-weight: 600;
line-height: 133%;
letter-spacing: 0.04em;
padding: 19px 24px;
text-align: center;
text-transform: uppercase;
}
button:disabled, button[disabled]{
cursor: default;
}
.button.gray {
color: #AAAAAA;
background: #444444;
}
.button.orange {
color: #FFFFFF;
border: 1px solid #FF6F3D;
background: #FF6F3D;
}
.button.orange:not(:disabled):hover {
background: #ff7a4b;
}
.button.orange:disabled, .button.orange[disabled]{
background: #EDC2B3;
border: 1px solid #EDC2B3;
cursor: default;
}
</style>
</head>
<body>
<div class="form">
<div id="progress">
<div class="content">
<div class="title">Converting your file so you can edit it...</div>
<i id="spiner" class="spiner-image"></i>
<button class="button orange" disabled>Open converted file</button>
</div>
</div>
<div id="success" style="display: none;">
<div class="content">
<div class="title">Converting your file so you can edit it...</div>
<i class="icon icon-succes"></i>
<button class="button orange" id="btn_end">Open converted file</button>
</div>
</div>
<div id="error" style="display: none;">
<div class="content">
<div class="title">Conversion failed</div>
<div class="description">Sorry, we weren't able to convert the file for editing.</div>
<i class="icon icon-error"></i>
</div>
</div>
</div>
<script type="text/javascript" language="javascript">
function redirect(url) {
try {
window.top.location.replace(url);
}
catch (err) {
console.err(err);
}
}
function makeXHRRequest(url, success, error) {
var xhr = new XMLHttpRequest;
xhr.onreadystatechange = function() {
if (xhr.readyState == 4)
if (xhr.status == 200) {
success(xhr.responseText)
} else {
error()
}
}
;
xhr.open("GET", url, !0);
xhr.send();
}
function checkStatus(url, success, error) {
makeXHRRequest(url, function(responseText) {
let data = JSON.parse(responseText);
if(undefined !== data.error) {
error();
} else if(data.endConvert) {
success(data.fileUrl);
} else {
setTimeout(function(){
checkStatus(url, success, error);
}, 1000);
}
}, error);
}
function success(url) {
document.getElementById('progress').style.display = 'none';
document.getElementById('success').style.display = 'block';
document.getElementById('btn_end').onclick = function() {
redirect(url);
};
}
function error() {
document.getElementById('progress').style.display = 'none';
document.getElementById('error').style.display = 'block';
}
var convertFile = function () {
let statusHandler = <%- JSON.stringify(statusHandler) %>;
if(!statusHandler) {
error();
}
checkStatus(statusHandler, success, error);
};
if (window.addEventListener) {
window.addEventListener("load", convertFile);
} else if (window.attachEvent) {
window.attachEvent("onload", convertFile);
}
</script>
</body>
</html>

View File

@ -262,7 +262,7 @@ div {
var config = {
"width": "100%",
"height": "100%",
"type": queryParams.embed==="1" ? "embedded" : "desktop",
"type": "desktop",
"documentType": documentType,
"token": token,
"document": {
@ -302,7 +302,7 @@ div {
"uiTheme": queryParams.thm==="1" ? "default-light" : (queryParams.thm==="2" ? "default-dark" : undefined)
},
"coEditing": {
"mode": userAuth.mode !== "view" ? "fast" : "strict",
"mode": "fast",
"change": false
},
"wopi": {
@ -312,7 +312,7 @@ div {
"events": {
"onAppReady": onAppReady,
"onDocumentStateChange": fileInfo.EditNotificationPostMessage ? onDocumentStateChange : undefined,
'onRequestEditRights': fileInfo.EditModePostMessage || (fileInfo.HostEditUrl && !fileInfo.UserCanNotWriteRelative) ? onRequestEditRights : undefined,
'onRequestEditRights': fileInfo.EditModePostMessage || fileInfo.HostEditUrl ? onRequestEditRights : undefined,
"onError": onError,
"onRequestClose": fileInfo.ClosePostMessage || fileInfo.CloseUrl ? onRequestClose : undefined,
"onRequestRename": fileInfo.SupportsRename && fileInfo.UserCanRename ? onRequestRename : undefined,

Binary file not shown.

Before

Width:  |  Height:  |  Size: 857 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

View File

@ -1,23 +0,0 @@
<html>
<head>
<style>
body {
font-family: Arial,Helvetica,"Helvetica Neue",sans-serif;
color: #444;
}
.centered {
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
height: 100%;
}
</style>
</head>
<body>
<div class="centered">
<h1>There is no help installed</h1>
<h2>please, download it from <a href='#'>www.onlyoffice.com</a></h1>
</div>
</body>
</html>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 760 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 760 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 119 B

After

Width:  |  Height:  |  Size: 86 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 120 B

After

Width:  |  Height:  |  Size: 89 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 119 B

After

Width:  |  Height:  |  Size: 96 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 120 B

After

Width:  |  Height:  |  Size: 97 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 120 B

After

Width:  |  Height:  |  Size: 102 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 119 B

After

Width:  |  Height:  |  Size: 85 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 120 B

After

Width:  |  Height:  |  Size: 96 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 119 B

After

Width:  |  Height:  |  Size: 95 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 121 B

After

Width:  |  Height:  |  Size: 97 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 120 B

After

Width:  |  Height:  |  Size: 101 B

View File

@ -1 +0,0 @@
<svg fill="none" height="96" width="96" xmlns="http://www.w3.org/2000/svg"><path d="M94 9.5c.8284 0 1.5.6716 1.5 1.5v74c0 .8284-.6716 1.5-1.5 1.5H2c-.8284 0-1.5-.6716-1.5-1.5V11c0-.8284.6716-1.5 1.5-1.5h92z" fill="#fff" stroke="#BFBFBF"/></svg>

Before

Width:  |  Height:  |  Size: 244 B

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="127"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#646464"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z"/><path d="M43.6868 106.822c-.6836 0-1.2129.258-1.5879.774-.375.511-.5625 1.226-.5625 2.144 0 1.91.7168 2.865 2.1504 2.865.6015 0 1.33-.15 2.1855-.451v1.524c-.7031.293-1.4883.439-2.3555.439-1.246 0-2.1992-.377-2.8593-1.131-.6602-.757-.9903-1.843-.9903-3.257 0-.891.1621-1.67.4864-2.338.3242-.672.789-1.186 1.3945-1.541.6094-.36 1.3223-.539 2.1387-.539.832 0 1.6679.201 2.5078.603l-.586 1.477a9.4774 9.4774 0 00-.9668-.399c-.3242-.113-.6425-.17-.955-.17zm9.0703 4.799c0 .774-.2793 1.383-.8379 1.828-.5547.446-1.3281.668-2.3203.668-.9141 0-1.7227-.172-2.4258-.515v-1.688c.5781.258 1.0664.44 1.4648.545.4024.105.7696.158 1.1016.158.3984 0 .7031-.076.9141-.228.2148-.153.3222-.379.3222-.68 0-.168-.0468-.316-.1406-.445-.0937-.133-.2324-.26-.416-.381-.1797-.121-.5488-.315-1.1074-.58-.5235-.246-.916-.483-1.1778-.709-.2617-.227-.4707-.49-.6269-.791-.1563-.301-.2344-.653-.2344-1.055 0-.758.2559-1.353.7676-1.787.5156-.434 1.2265-.65 2.1328-.65.4453 0 .8691.052 1.2715.158.4062.105.8301.254 1.2715.445l-.586 1.412c-.457-.187-.8359-.318-1.1367-.392-.2969-.075-.5898-.112-.8789-.112-.3437 0-.6074.08-.791.24-.1836.161-.2754.37-.2754.627 0 .161.0371.301.1113.422.0742.118.1914.233.3516.346.164.109.5488.309 1.1543.598.8008.383 1.3496.767 1.6465 1.154.2968.383.4453.853.4453 1.412zm6.4394-6.187h1.834L58.1184 114h-1.9805l-2.9062-8.566h1.834l1.6113 5.097c.0898.301.1816.653.2754 1.055.0976.398.1582.676.1816.832.043-.359.1895-.988.4395-1.887l1.623-5.097zM38 90H21v2h17v-2zM38 83H21v2h17v-2zM38 76H21v2h17v-2zM38 69H21v2h17v-2zM38 62H21v2h17v-2zM38 55H21v2h17v-2zM38 48H21v2h17v-2zM38 41H21v2h17v-2zM38 34H21v2h17v-2zM59 90H42v2h17v-2zM59 83H42v2h17v-2zM59 76H42v2h17v-2zM59 69H42v2h17v-2zM59 62H42v2h17v-2zM59 55H42v2h17v-2zM59 48H42v2h17v-2zM59 41H42v2h17v-2zM59 34H42v2h17v-2zM80 90H63v2h17v-2zM80 83H63v2h17v-2zM80 76H63v2h17v-2zM80 69H63v2h17v-2zM80 62H63v2h17v-2zM80 55H63v2h17v-2zM80 48H63v2h17v-2zM80 41H63v2h17v-2zM80 34H63v2h17v-2z" fill="#fff"/></svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -1 +0,0 @@
<svg style="position:absolute;width:0;height:0" xmlns="http://www.w3.org/2000/svg" width="100" height="127" overflow="hidden"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#BC8C18"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z"/><path d="M44.5845 109.635c0 1.41-.4024 2.49-1.2071 3.24-.8007.75-1.9589 1.125-3.4746 1.125h-2.4257v-8.566h2.6894c1.3984 0 2.4844.369 3.2578 1.107.7735.738 1.1602 1.77 1.1602 3.094zm-1.8867.047c0-1.84-.8125-2.76-2.4375-2.76h-.9668v5.578h.7793c1.75 0 2.625-.939 2.625-2.818zm2.9941 7.201c-.457 0-.8496-.049-1.1777-.147v-1.406c.2734.074.5527.111.8379.111.3007 0 .5195-.084.6562-.252.1406-.168.2109-.416.2109-.744v-6.996h1.7871v7.26c0 .695-.2011 1.23-.6035 1.605-.4023.379-.9726.569-1.7109.569zm.4512-11.127c0-.582.3242-.873.9726-.873.6485 0 .9727.291.9727.873 0 .277-.0821.494-.2461.65-.1602.153-.4024.229-.7266.229-.6484 0-.9726-.293-.9726-.879zm8.7715-.322h1.8339L53.8364 114H51.856l-2.9063-8.566h1.834l1.6113 5.097c.0899.301.1817.653.2754 1.055.0977.398.1582.676.1817.832.0429-.359.1894-.988.4394-1.887l1.6231-5.097zM62.3325 114l-.2402-.838h-.0938c-.1914.305-.4629.541-.8144.709-.3516.164-.752.246-1.2012.246-.7695 0-1.3496-.205-1.7402-.615-.3906-.414-.586-1.008-.586-1.781v-4.272h1.7871v3.826c0 .473.084.829.252 1.067.168.234.4355.351.8027.351.5 0 .8614-.166 1.084-.498.2227-.336.334-.89.334-1.664v-3.082h1.7871V114h-1.3711z" fill="#fff"/><path fill-rule="evenodd" clip-rule="evenodd" d="M27 58v-8h25v8h-2v-6h-6v22h5v2H30v-2h5V52h-6v6h-2z" fill="#fff"/><path fill-rule="evenodd" clip-rule="evenodd" d="M27 58v-8h25v8h-2v-6h-6v22h5v2H30v-2h5V52h-6v6h-2z" fill="#fff"/><path fill="#fff" d="M55 50h19v2H55z"/><path fill="#fff" d="M55 50h19v2H55zM55 58h19v2H55z"/><path fill="#fff" d="M55 58h19v2H55zM55 66h19v2H55z"/><path fill="#fff" d="M55 66h19v2H55zM55 74h19v2H55z"/><path fill="#fff" d="M55 74h19v2H55z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M80 43.4348H21v39.1305h59V43.4348zm-61-2v43.1305h63V41.4348H19z" fill="#fff"/></svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -1 +0,0 @@
<svg style="position:absolute;width:0;height:0" width="100" height="127" fill="none" xmlns="http://www.w3.org/2000/svg" overflow="hidden"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#214479"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z" fill="#000"/><path d="M39.4824 109.635c0 1.41-.4023 2.49-1.207 3.24-.8008.75-1.959 1.125-3.4746 1.125H32.375v-8.566h2.6895c1.3984 0 2.4843.369 3.2578 1.107.7734.738 1.1601 1.77 1.1601 3.094zm-1.8867.047c0-1.84-.8125-2.76-2.4375-2.76h-.9668v5.578h.7793c1.75 0 2.625-.939 2.625-2.818zm11.4375.023c0 1.418-.3516 2.508-1.0547 3.27-.7031.761-1.7109 1.142-3.0234 1.142s-2.3203-.381-3.0235-1.142c-.7031-.762-1.0546-1.856-1.0546-3.282 0-1.425.3515-2.513 1.0546-3.263.7071-.754 1.7188-1.131 3.0352-1.131s2.3223.379 3.0176 1.137c.6992.757 1.0488 1.847 1.0488 3.269zm-6.252 0c0 .957.1817 1.678.545 2.162.3633.485.9062.727 1.6289.727 1.4492 0 2.1738-.963 2.1738-2.889 0-1.93-.7207-2.894-2.1621-2.894-.7227 0-1.2676.244-1.6348.732-.3672.484-.5508 1.205-.5508 2.162zm11.6661-2.883c-.6836 0-1.2129.258-1.5879.774-.375.511-.5625 1.226-.5625 2.144 0 1.91.7168 2.865 2.1504 2.865.6015 0 1.33-.15 2.1855-.451v1.524c-.7031.293-1.4883.439-2.3555.439-1.2461 0-2.1992-.377-2.8593-1.131-.6602-.757-.9903-1.843-.9903-3.257 0-.891.1621-1.67.4864-2.338.3242-.672.789-1.186 1.3945-1.541.6094-.36 1.3223-.539 2.1387-.539.832 0 1.6679.201 2.5078.603l-.586 1.477a9.4774 9.4774 0 00-.9668-.399c-.3242-.113-.6425-.17-.955-.17zM62.0879 114l-2.0625-6.721h-.0527c.0742 1.367.1113 2.28.1113 2.737V114h-1.6231v-8.566h2.4727l2.0273 6.55h.0352l2.1504-6.55h2.4726V114h-1.6933v-4.055c0-.191.0019-.412.0058-.662.0079-.25.0352-.914.0821-1.992h-.0528L63.752 114h-1.6641zM67.8 48l-6.3 27-7-27h-6l-7 27-6.3-27h-5.8l8.5 34h6.4l7.2-27.9L58.7 82h6.4l8.5-34h-5.8zM15 17c0-1.1046.8954-2 2-2h12c1.1046 0 2 .8954 2 2v9c0 1.1046-.8954 2-2 2H17c-1.1046 0-2-.8954-2-2v-9z" fill="#fff"/><path d="M22.2969 26l-2.4844-7.1543h-.0469c.0664 1.0625.0996 2.0586.0996 2.9883V26h-1.2714v-8.5664h1.9746l2.3789 6.8144h.0351l2.4492-6.8144h1.9805V26h-1.3476v-4.2363c0-.4258.0097-.9805.0293-1.6641.0234-.6836.0429-1.0976.0585-1.2422h-.0468L23.5332 26h-1.2363z" fill="#214479"/></svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="127"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#214479"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z"/><path d="M41.6406 109.635c0 1.41-.4023 2.49-1.207 3.24-.8008.75-1.959 1.125-3.4746 1.125h-2.4258v-8.566h2.6895c1.3984 0 2.4843.369 3.2578 1.107.7734.738 1.1601 1.77 1.1601 3.094zm-1.8867.047c0-1.84-.8125-2.76-2.4375-2.76h-.9668v5.578h.7793c1.75 0 2.625-.939 2.625-2.818zm11.4375.023c0 1.418-.3516 2.508-1.0547 3.27-.7031.761-1.7109 1.142-3.0234 1.142s-2.3203-.381-3.0235-1.142c-.7031-.762-1.0546-1.856-1.0546-3.282 0-1.425.3515-2.513 1.0546-3.263.7071-.754 1.7188-1.131 3.0352-1.131s2.3223.379 3.0176 1.137c.6992.757 1.0488 1.847 1.0488 3.269zm-6.2519 0c0 .957.1816 1.678.5449 2.162.3633.485.9062.727 1.6289.727 1.4492 0 2.1738-.963 2.1738-2.889 0-1.93-.7207-2.894-2.1621-2.894-.7227 0-1.2676.244-1.6348.732-.3672.484-.5507 1.205-.5507 2.162zm11.666-2.883c-.6836 0-1.2129.258-1.5879.774-.375.511-.5625 1.226-.5625 2.144 0 1.91.7168 2.865 2.1504 2.865.6015 0 1.33-.15 2.1855-.451v1.524c-.7031.293-1.4883.439-2.3555.439-1.246 0-2.1992-.377-2.8593-1.131-.6602-.757-.9903-1.843-.9903-3.257 0-.891.1621-1.67.4864-2.338.3242-.672.789-1.186 1.3945-1.541.6094-.36 1.3223-.539 2.1387-.539.832 0 1.6679.201 2.5078.603l-.586 1.477a9.4774 9.4774 0 00-.9668-.399c-.3242-.113-.6425-.17-.955-.17zM67.5449 114h-2.0742l-1.9922-3.24-1.9922 3.24H59.541l2.8418-4.418-2.6601-4.148h2.0039l1.8457 3.082 1.8105-3.082h1.957l-2.6894 4.248L67.5449 114zM67.8 48l-6.3 27-7-27h-6l-7 27-6.3-27h-5.8l8.5 34h6.4l7.2-27.9L58.7 82h6.4l8.5-34h-5.8z" fill="#fff"/></svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1 +0,0 @@
<svg width="100" height="127" fill="none" xmlns="http://www.w3.org/2000/svg"><path id="Vector" d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#27ABA3"/><path id="Vector_2" opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z" fill="#000"/><g id="DOCXF" fill="#fff"><path d="M38.3176 109.635c0 1.41-.4023 2.49-1.207 3.24-.8008.75-1.959 1.125-3.4746 1.125h-2.4258v-8.566h2.6895c1.3984 0 2.4843.369 3.2578 1.107.7734.738 1.1601 1.77 1.1601 3.094zm-1.8867.047c0-1.84-.8125-2.76-2.4375-2.76h-.9668v5.578h.7793c1.75 0 2.625-.939 2.625-2.818zM47.8684 109.705c0 1.418-.3516 2.508-1.0547 3.27-.7031.761-1.7109 1.142-3.0234 1.142s-2.3203-.381-3.0235-1.142c-.7031-.762-1.0546-1.856-1.0546-3.282 0-1.425.3515-2.513 1.0546-3.263.7071-.754 1.7188-1.131 3.0352-1.131s2.3223.379 3.0176 1.137c.6992.757 1.0488 1.847 1.0488 3.269zm-6.2519 0c0 .957.1816 1.678.5449 2.162.3633.485.9062.727 1.6289.727 1.4492 0 2.1738-.963 2.1738-2.889 0-1.93-.7207-2.894-2.1621-2.894-.7227 0-1.2676.244-1.6348.732-.3672.484-.5507 1.205-.5507 2.162zM53.2825 106.822c-.6836 0-1.2129.258-1.5879.774-.375.511-.5625 1.226-.5625 2.144 0 1.91.7168 2.865 2.1504 2.865.6015 0 1.33-.15 2.1855-.451v1.524c-.7031.293-1.4883.439-2.3555.439-1.246 0-2.1992-.377-2.8593-1.131-.6602-.757-.9903-1.843-.9903-3.257 0-.891.1621-1.67.4864-2.338.3242-.672.789-1.186 1.3945-1.541.6094-.36 1.3223-.539 2.1387-.539.832 0 1.6679.201 2.5078.603l-.586 1.477a9.4774 9.4774 0 00-.9668-.399c-.3242-.113-.6425-.17-.955-.17zM64.2219 114h-2.0742l-1.9922-3.24-1.9922 3.24H56.218l2.8418-4.418-2.6601-4.148h2.0039l1.8457 3.082 1.8105-3.082h1.957l-2.6894 4.248L64.2219 114zM67.0872 114H65.3v-8.566h4.9102v1.488h-3.123v2.209h2.9062v1.482h-2.9062V114z"/></g><path id="Rectangle 381 (Stroke)" fill-rule="evenodd" clip-rule="evenodd" d="M22 58h56V44H22v14zm-2-16v18h60V42H20z" fill="#fff"/><path id="Rectangle 387 (Stroke)" fill-rule="evenodd" clip-rule="evenodd" d="M22 82h56V68H22v14zm-2-16v18h60V66H20z" fill="#fff"/></svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="127"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#214479"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z"/><path d="M41.1855 109.635c0 1.41-.4023 2.49-1.207 3.24-.8008.75-1.959 1.125-3.4746 1.125h-2.4258v-8.566h2.6895c1.3984 0 2.4844.369 3.2578 1.107.7734.738 1.1601 1.77 1.1601 3.094zm-1.8867.047c0-1.84-.8125-2.76-2.4375-2.76h-.9668v5.578h.7793c1.75 0 2.625-.939 2.625-2.818zm11.4375.023c0 1.418-.3515 2.508-1.0547 3.27-.7031.761-1.7109 1.142-3.0234 1.142s-2.3203-.381-3.0234-1.142c-.7032-.762-1.0547-1.856-1.0547-3.282 0-1.425.3515-2.513 1.0547-3.263.707-.754 1.7187-1.131 3.0351-1.131s2.3223.379 3.0176 1.137c.6992.757 1.0488 1.847 1.0488 3.269zm-6.2519 0c0 .957.1816 1.678.5449 2.162.3633.485.9062.727 1.6289.727 1.4492 0 2.1738-.963 2.1738-2.889 0-1.93-.7207-2.894-2.1621-2.894-.7226 0-1.2676.244-1.6347.732-.3672.484-.5508 1.205-.5508 2.162zM55.8164 114H54v-7.055h-2.3262v-1.511h6.4688v1.511h-2.3262V114zm10.5703 0h-2.0742l-1.9922-3.24-1.9922 3.24h-1.9453l2.8418-4.418-2.6601-4.148h2.0039l1.8457 3.082 1.8105-3.082h1.957l-2.6894 4.248L66.3867 114zM67.8 48l-6.3 27-7-27h-6l-7 27-6.3-27h-5.8l8.5 34h6.4l7.2-27.9L58.7 82h6.4l8.5-34h-5.8z" fill="#fff"/><rect x="15" y="15" width="16" height="14" rx="2" fill="#fff"/><path d="M23.0898 26h-1.4003v-7.3652h-2.5196v-1.2012h6.4395v1.2012h-2.5196V26z" fill="#214479"/></svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1 +0,0 @@
<svg width="100" height="127" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#5892B6"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z" fill="#000"/><path d="M40.3217 114h-4.9336v-8.566h4.9336v1.488h-3.1172v1.881h2.9004v1.488h-2.9004v2.209h3.1172v1.5zm3.6094-4.535h.5976c.5586 0 .9766-.11 1.254-.328.2773-.223.416-.545.416-.967 0-.426-.1172-.74-.3516-.943-.2305-.204-.5937-.305-1.0898-.305h-.8262v2.543zm4.1016-1.36c0 .922-.2891 1.627-.8672 2.116-.5743.488-1.3926.732-2.4551.732h-.7793V114h-1.8164v-8.566h2.7363c1.0391 0 1.8281.224 2.3672.673.543.446.8145 1.112.8145 1.998zm8.5898-2.671v5.543c0 .632-.1426 1.187-.4277 1.664-.2813.476-.6895.841-1.2246 1.095-.5352.254-1.168.381-1.8985.381-1.1015 0-1.957-.281-2.5664-.844-.6094-.566-.9141-1.339-.9141-2.32v-5.519h1.8106v5.244c0 .66.1328 1.144.3984 1.453.2657.308.7051.463 1.3184.463.5937 0 1.0234-.155 1.2891-.463.2695-.313.4043-.801.4043-1.465v-5.232h1.8105zm2.0977 0h2.666c1.2148 0 2.0957.173 2.6425.521.5508.344.8262.893.8262 1.647 0 .511-.1211.931-.3633 1.259-.2382.328-.5566.526-.955.592v.059c.5429.121.9336.347 1.1718.679.2422.332.3633.774.3633 1.325 0 .781-.2832 1.39-.8496 1.828-.5625.437-1.3281.656-2.2969.656h-3.205v-8.566zm1.8164 3.392h1.0546c.4922 0 .8477-.076 1.0665-.228.2226-.153.3339-.405.3339-.756 0-.328-.1211-.563-.3632-.703-.2383-.145-.6172-.217-1.1368-.217h-.955v1.904zm0 1.442v2.232h1.1836c.5 0 .8691-.096 1.1074-.287.2383-.192.3574-.484.3574-.879 0-.711-.5078-1.066-1.5234-1.066h-1.125zM49 84V49s-9-6-24-7v33s17 1 24 9zM75 75V42c-15 1-24 7-24 7v35c7-8 24-9 24-9z" fill="#fff"/><path d="M77 47v32s-15 0-27 8.3C38 79 23 79 23 79V47h-3v35s13-2 30 6c17-8 30-6 30-6V47h-3z" fill="#fff"/></svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -1 +0,0 @@
<svg width="100" height="127" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#B07408"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z" fill="#000"/><path d="M41.8652 114h-1.7871v-8.566h4.9102v1.488h-3.1231v2.209h2.9063v1.482h-2.9063V114zm4.7989-8.566h2.666c1.2148 0 2.0957.173 2.6426.521.5507.344.8261.893.8261 1.647 0 .511-.1211.931-.3633 1.259-.2382.328-.5566.526-.955.592v.059c.5429.121.9336.347 1.1718.679.2422.332.3633.774.3633 1.325 0 .781-.2832 1.39-.8496 1.828-.5625.437-1.3281.656-2.2969.656h-3.205v-8.566zm1.8164 3.392h1.0547c.4921 0 .8476-.076 1.0664-.228.2226-.153.3339-.405.3339-.756 0-.328-.121-.563-.3632-.703-.2383-.145-.6172-.217-1.1368-.217h-.955v1.904zm0 1.442v2.232h1.1836c.5 0 .8691-.096 1.1074-.287.2383-.192.3574-.484.3574-.879 0-.711-.5078-1.066-1.5234-1.066h-1.125zM60.1172 114h-5.9883v-1.26l2.1504-2.174c.6367-.652 1.0527-1.103 1.248-1.353.1954-.254.336-.488.4219-.703a1.784 1.784 0 00.1289-.668c0-.344-.0957-.6-.2871-.768-.1875-.168-.4394-.252-.7558-.252-.3321 0-.6543.076-.9668.229-.3125.152-.6387.369-.9786.65l-.9843-1.166c.4218-.359.7715-.613 1.0488-.762.2773-.148.5801-.261.9082-.339.3281-.082.6953-.123 1.1016-.123.5351 0 1.0078.097 1.4179.293.4102.195.7285.468.9551.82.2266.351.3399.754.3399 1.207 0 .394-.0704.765-.211 1.113-.1367.344-.3515.697-.6445 1.061-.2891.363-.8008.881-1.5352 1.552l-1.1015 1.038v.082h3.7324V114zM49 84V49s-9-6-24-7v33s17 1 24 9zM75 75V42c-15 1-24 7-24 7v35c7-8 24-9 24-9z" fill="#fff"/><path d="M77 47v32s-15 0-27 8.3C38 79 23 79 23 79V47h-3v35s13-2 30 6c17-8 30-6 30-6V47h-3z" fill="#fff"/></svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1 +0,0 @@
<svg width="100" height="127" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#7C9A34"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z" fill="#000"/><path d="M40.9877 114h-1.8106v-3.697h-3.3926V114h-1.8164v-8.566h1.8164v3.357h3.3926v-3.357h1.8106V114zm5.4726 0h-1.8164v-7.055h-2.3262v-1.511h6.4688v1.511h-2.3262V114zm7.2715 0l-2.0625-6.721h-.0527c.0742 1.367.1113 2.28.1113 2.737V114h-1.623v-8.566h2.4726l2.0274 6.55h.0351l2.1504-6.55h2.4727V114h-1.6934v-4.055c0-.191.002-.412.0059-.662.0078-.25.0351-.914.082-1.992h-.0527L55.3959 114h-1.6641zm7.6934 0v-8.566h1.8164v7.066h3.4746v1.5h-5.291zM62 53v4.8l13.5 4.7L62 67.2V72l18-7.8v-3.4L62 53zM40 75h5.5l14-25H54L40 75zM19 64.2L37 72v-4.8l-13.5-4.7L37 57.8V53l-18 7.8v3.4z" fill="#fff"/></svg>

Before

Width:  |  Height:  |  Size: 909 B

View File

@ -1 +0,0 @@
<svg width="100" height="127" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M95 22v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 121H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 118V7a3 3 0 013-3h69l18 18z" fill="#7371D8"/><g fill="#fff"><path d="M39.5801 115.52c-.4102 0-.7676-.043-1.0723-.129v-1.512c.3125.078.5977.117.8555.117.3984 0 .6836-.125.8555-.375.1718-.246.2578-.633.2578-1.16v-8.027h1.8164v8.015c0 1-.2285 1.762-.6856 2.285-.457.524-1.1328.786-2.0273.786zM46.2656 108.465h.5977c.5586 0 .9765-.11 1.2539-.328.2773-.223.416-.545.416-.967 0-.426-.1172-.74-.3516-.943-.2304-.204-.5937-.305-1.0898-.305h-.8262v2.543zm4.1016-1.36c0 .922-.2891 1.627-.8672 2.116-.5742.488-1.3926.732-2.4551.732h-.7793V113h-1.8164v-8.566h2.7363c1.0391 0 1.8282.224 2.3672.673.543.446.8145 1.112.8145 1.998zM55.2363 108.189h3.3985v4.442c-.5508.18-1.0703.305-1.5586.375a9.8426 9.8426 0 01-1.4883.111c-1.293 0-2.2813-.379-2.9649-1.137-.6796-.761-1.0195-1.853-1.0195-3.275 0-1.383.3945-2.461 1.1836-3.234.793-.774 1.8906-1.16 3.293-1.16.8789 0 1.7265.175 2.5429.527l-.6035 1.453c-.625-.312-1.2754-.469-1.9511-.469-.7852 0-1.4141.264-1.8868.791-.4726.528-.7089 1.237-.7089 2.127 0 .93.1894 1.641.5683 2.133.3828.488.9375.732 1.6641.732.3789 0 .7637-.039 1.1543-.117v-1.787h-1.6231v-1.512z"/></g><path d="M56 51.869L73.183 79H27.7869L39.5 59.912l4.774 7.7799.839 1.3671.8582-1.3551L56 51.869zM36 51.5c0 2.4853-2.0147 4.5-4.5 4.5S27 53.9853 27 51.5s2.0147-4.5 4.5-4.5 4.5 2.0147 4.5 4.5z" fill="#fff" stroke="#fff" stroke-width="2"/><path opacity=".2" d="M95 22H80a3 3 0 01-3-3V4l18 18z" fill="#000"/></svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="127"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#DD9426"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z"/><path d="M45.8735 109.705c0 1.418-.3515 2.508-1.0547 3.27-.7031.761-1.7109 1.142-3.0234 1.142s-2.3203-.381-3.0234-1.142c-.7032-.762-1.0547-1.856-1.0547-3.282 0-1.425.3515-2.513 1.0547-3.263.707-.754 1.7187-1.131 3.0351-1.131s2.3223.379 3.0176 1.137c.6992.757 1.0488 1.847 1.0488 3.269zm-6.2519 0c0 .957.1816 1.678.5449 2.162.3633.485.9063.727 1.6289.727 1.4492 0 2.1738-.963 2.1738-2.889 0-1.93-.7207-2.894-2.1621-2.894-.7226 0-1.2675.244-1.6347.732-.3672.484-.5508 1.205-.5508 2.162zm15.1347-.07c0 1.41-.4023 2.49-1.207 3.24-.8008.75-1.959 1.125-3.4746 1.125h-2.4258v-8.566h2.6895c1.3984 0 2.4844.369 3.2578 1.107.7734.738 1.1601 1.77 1.1601 3.094zm-1.8867.047c0-1.84-.8125-2.76-2.4375-2.76h-.9668v5.578h.7793c1.75 0 2.625-.939 2.625-2.818zm5.4785-.217h.5977c.5586 0 .9766-.11 1.2539-.328.2774-.223.416-.545.416-.967 0-.426-.1172-.74-.3515-.943-.2305-.204-.5938-.305-1.0899-.305h-.8262v2.543zm4.1016-1.36c0 .922-.2891 1.627-.8672 2.116-.5742.488-1.3926.732-2.4551.732h-.7793V114h-1.8164v-8.566h2.7364c1.039 0 1.8281.224 2.3672.673.5429.446.8144 1.112.8144 1.998zM78 52.74l-.29-.15a14.9994 14.9994 0 00-14 .53 14.9293 14.9293 0 00-14.3-.24h-.08a.2491.2491 0 00-.1.2c0 .069.0274.1351.0761.1839a.2603.2603 0 00.1839.0761h.06a14.6174 14.6174 0 014.14-.18c4 .37 7.43 1.6 9.86 4.36.13.13.24.12.37 0C67 54 71.68 52.6 76.72 53.07c.28 0 .56.06.83.11h.33a.2302.2302 0 00.26-.25.25.25 0 00-.14-.19zM72.16 65.21A25.9997 25.9997 0 0047.19 68a26 26 0 00-25.09 2.19h-.05a.4101.4101 0 00-.14.3.3903.3903 0 00.38.39h.08a26.09 26.09 0 017.49-1.1c6.93 0 13.1 1.64 17.74 6a.38.38 0 00.25.09.3697.3697 0 00.3-.14l.22-.31c4.72-6.45 12.5-9.63 21.16-9.63.62 0 1.23 0 1.84.06h.55a.3998.3998 0 00.39-.39.3805.3805 0 00-.15-.25z" fill="#fff"/></svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="127"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#237453"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z"/><path d="M46.3335 109.705c0 1.418-.3516 2.508-1.0547 3.27-.7031.761-1.7109 1.142-3.0234 1.142s-2.3203-.381-3.0235-1.142c-.7031-.762-1.0547-1.856-1.0547-3.282 0-1.425.3516-2.513 1.0547-3.263.7071-.754 1.7188-1.131 3.0352-1.131s2.3223.379 3.0176 1.137c.6992.757 1.0488 1.847 1.0488 3.269zm-6.252 0c0 .957.1817 1.678.545 2.162.3632.485.9062.727 1.6289.727 1.4492 0 2.1738-.963 2.1738-2.889 0-1.93-.7207-2.894-2.1621-2.894-.7227 0-1.2676.244-1.6348.732-.3672.484-.5508 1.205-.5508 2.162zm15.1348-.07c0 1.41-.4023 2.49-1.207 3.24-.8008.75-1.959 1.125-3.4746 1.125h-2.4258v-8.566h2.6894c1.3985 0 2.4844.369 3.2579 1.107.7734.738 1.1601 1.77 1.1601 3.094zm-1.8867.047c0-1.84-.8125-2.76-2.4375-2.76h-.9668v5.578h.7793c1.75 0 2.625-.939 2.625-2.818zm8.7187 1.939c0 .774-.2793 1.383-.8379 1.828-.5546.446-1.3281.668-2.3203.668-.914 0-1.7226-.172-2.4257-.515v-1.688c.5781.258 1.0664.44 1.4648.545.4023.105.7695.158 1.1016.158.3984 0 .7031-.076.914-.228.2149-.153.3223-.379.3223-.68 0-.168-.0469-.316-.1406-.445-.0938-.133-.2325-.26-.4161-.381-.1796-.121-.5488-.315-1.1074-.58-.5234-.246-.916-.483-1.1777-.709-.2617-.227-.4707-.49-.627-.791-.1562-.301-.2343-.653-.2343-1.055 0-.758.2558-1.353.7675-1.787.5157-.434 1.2266-.65 2.1329-.65.4453 0 .8691.052 1.2714.158.4063.105.8301.254 1.2715.445l-.5859 1.412c-.457-.187-.836-.318-1.1367-.392-.2969-.075-.5899-.112-.8789-.112-.3438 0-.6075.08-.7911.24-.1835.161-.2753.37-.2753.627 0 .161.0371.301.1113.422.0742.118.1914.233.3515.346.1641.109.5489.309 1.1543.598.8008.383 1.3497.767 1.6465 1.154.2969.383.4453.853.4453 1.412zM78 52.74l-.29-.15a14.9994 14.9994 0 00-14 .53 14.9293 14.9293 0 00-14.3-.24h-.08a.2491.2491 0 00-.1.2c0 .069.0274.1351.0761.1839a.2603.2603 0 00.1839.0761h.06a14.6174 14.6174 0 014.14-.18c4 .37 7.43 1.6 9.86 4.36.13.13.24.12.37 0C67 54 71.68 52.6 76.72 53.07c.28 0 .56.06.83.11h.33a.2302.2302 0 00.26-.25.25.25 0 00-.14-.19zM72.16 65.21A25.9997 25.9997 0 0047.19 68a26 26 0 00-25.09 2.19h-.05a.4101.4101 0 00-.14.3.3903.3903 0 00.38.39h.08a26.09 26.09 0 017.49-1.1c6.93 0 13.1 1.64 17.74 6a.38.38 0 00.25.09.3697.3697 0 00.3-.14l.22-.31c4.72-6.45 12.5-9.63 21.16-9.63.62 0 1.23 0 1.84.06h.55a.3998.3998 0 00.39-.39.3805.3805 0 00-.15-.25z" fill="#fff"/></svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="127"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#3C6D88"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z"/><path d="M46.1636 109.705c0 1.418-.3516 2.508-1.0547 3.27-.7031.761-1.711 1.142-3.0235 1.142-1.3125 0-2.3203-.381-3.0234-1.142-.7031-.762-1.0547-1.856-1.0547-3.282 0-1.425.3516-2.513 1.0547-3.263.707-.754 1.7188-1.131 3.0352-1.131s2.3222.379 3.0175 1.137c.6993.757 1.0489 1.847 1.0489 3.269zm-6.252 0c0 .957.1817 1.678.5449 2.162.3633.485.9063.727 1.6289.727 1.4493 0 2.1739-.963 2.1739-2.889 0-1.93-.7207-2.894-2.1621-2.894-.7227 0-1.2676.244-1.6348.732-.3672.484-.5508 1.205-.5508 2.162zm15.1348-.07c0 1.41-.4024 2.49-1.207 3.24-.8008.75-1.959 1.125-3.4747 1.125H47.939v-8.566h2.6894c1.3985 0 2.4844.369 3.2578 1.107.7735.738 1.1602 1.77 1.1602 3.094zm-1.8867.047c0-1.84-.8125-2.76-2.4375-2.76h-.9668v5.578h.7793c1.75 0 2.625-.939 2.625-2.818zM60.1265 114h-1.8164v-7.055h-2.3262v-1.511h6.4687v1.511h-2.3261V114zM78 52.74l-.29-.15a14.9994 14.9994 0 00-14 .53 14.9293 14.9293 0 00-14.3-.24h-.08a.2491.2491 0 00-.1.2c0 .069.0274.1351.0761.1839a.2603.2603 0 00.1839.0761h.06a14.6174 14.6174 0 014.14-.18c4 .37 7.43 1.6 9.86 4.36.13.13.24.12.37 0C67 54 71.68 52.6 76.72 53.07c.28 0 .56.06.83.11h.33a.2302.2302 0 00.26-.25.25.25 0 00-.14-.19zM72.1599 65.21a25.9999 25.9999 0 00-24.97 2.79 25.9992 25.9992 0 00-25.09 2.19h-.05a.4101.4101 0 00-.14.3.3903.3903 0 00.38.39h.08a26.0895 26.0895 0 017.49-1.1c6.93 0 13.1 1.64 17.74 6a.38.38 0 00.25.09.3701.3701 0 00.3-.14l.22-.31c4.72-6.45 12.5-9.63 21.16-9.63.62 0 1.23 0 1.84.06h.55a.4.4 0 00.39-.39.3789.3789 0 00-.15-.25z" fill="#fff"/></svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1 +0,0 @@
<svg width="100" height="127" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#2CA498"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z" fill="#000"/><path d="M36.8535 109.705c0 1.418-.3515 2.508-1.0547 3.27-.7031.761-1.7109 1.142-3.0234 1.142s-2.3203-.381-3.0234-1.142c-.7032-.762-1.0547-1.856-1.0547-3.282 0-1.425.3515-2.513 1.0547-3.263.707-.754 1.7187-1.131 3.0351-1.131s2.3223.379 3.0176 1.137c.6992.757 1.0488 1.847 1.0488 3.269zm-6.2519 0c0 .957.1816 1.678.5449 2.162.3633.485.9062.727 1.6289.727 1.4492 0 2.1738-.963 2.1738-2.889 0-1.93-.7207-2.894-2.1621-2.894-.7226 0-1.2676.244-1.6348.732-.3671.484-.5507 1.205-.5507 2.162zM40.416 114h-1.7871v-8.566h4.9102v1.488H40.416v2.209h2.9063v1.482H40.416V114zM52.9902 109.705c0 1.418-.3515 2.508-1.0547 3.27-.7031.761-1.7109 1.142-3.0234 1.142s-2.3203-.381-3.0234-1.142c-.7032-.762-1.0547-1.856-1.0547-3.282 0-1.425.3515-2.513 1.0547-3.263.707-.754 1.7187-1.131 3.0351-1.131s2.3223.379 3.0176 1.137c.6992.757 1.0488 1.847 1.0488 3.269zm-6.2519 0c0 .957.1816 1.678.5449 2.162.3633.485.9063.727 1.6289.727 1.4492 0 2.1738-.963 2.1738-2.889 0-1.93-.7207-2.894-2.1621-2.894-.7226 0-1.2676.244-1.6347.732-.3672.484-.5508 1.205-.5508 2.162zM56.582 109.236h.586c.5742 0 .998-.095 1.2715-.287.2734-.191.4101-.492.4101-.902 0-.406-.1406-.695-.4219-.867-.2773-.172-.7089-.258-1.2949-.258h-.5508v2.314zm0 1.477V114h-1.8164v-8.566h2.4961c1.1641 0 2.0254.212 2.584.638.5586.422.8379 1.065.8379 1.928 0 .504-.1387.953-.416 1.348-.2774.39-.6699.697-1.1778.92 1.2891 1.925 2.129 3.17 2.5196 3.732h-2.0156l-2.045-3.287h-.9668zM66.3145 114l-2.0625-6.721h-.0528c.0742 1.367.1113 2.28.1113 2.737V114h-1.623v-8.566h2.4727l2.0273 6.55h.0352l2.1503-6.55h2.4727V114h-1.6934v-4.055c0-.191.002-.412.0059-.662.0078-.25.0352-.914.082-1.992h-.0527L67.9785 114h-1.664z" fill="#fff"/><path fill-rule="evenodd" clip-rule="evenodd" d="M19 85h62V41H19v44zm-2-46v48h66V39H17z" fill="#fff"/><path fill="#41ADA2" d="M19 41h62v44H19z"/><path fill="#fff" d="M29 50h5v2h-5zM36 50h5v2h-5zM29 74h5v2h-5zM36 74h5v2h-5zM34 52v22h2V52z"/></svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="127"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#DD9426"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z"/><path d="M45.8735 109.705c0 1.418-.3515 2.508-1.0547 3.27-.7031.761-1.7109 1.142-3.0234 1.142s-2.3203-.381-3.0234-1.142c-.7032-.762-1.0547-1.856-1.0547-3.282 0-1.425.3515-2.513 1.0547-3.263.707-.754 1.7187-1.131 3.0351-1.131s2.3223.379 3.0176 1.137c.6992.757 1.0488 1.847 1.0488 3.269zm-6.2519 0c0 .957.1816 1.678.5449 2.162.3633.485.9063.727 1.6289.727 1.4492 0 2.1738-.963 2.1738-2.889 0-1.93-.7207-2.894-2.1621-2.894-.7226 0-1.2675.244-1.6347.732-.3672.484-.5508 1.205-.5508 2.162zM50.9536 114h-1.8164v-7.055H46.811v-1.511h6.4688v1.511h-2.3262V114zm5.461-4.535h.5976c.5586 0 .9766-.11 1.2539-.328.2774-.223.416-.545.416-.967 0-.426-.1172-.74-.3515-.943-.2305-.204-.5938-.305-1.0899-.305h-.8261v2.543zm4.1015-1.36c0 .922-.289 1.627-.8672 2.116-.5742.488-1.3926.732-2.4551.732h-.7792V114h-1.8165v-8.566h2.7364c1.039 0 1.8281.224 2.3672.673.5429.446.8144 1.112.8144 1.998zM78 52.74l-.29-.15a15.0007 15.0007 0 00-14 .53 14.9304 14.9304 0 00-14.3-.24h-.08a.2491.2491 0 00-.1.2c0 .069.0274.1351.0761.1839a.2603.2603 0 00.1839.0761h.06a14.621 14.621 0 014.14-.18c4 .37 7.43 1.6 9.86 4.36.13.13.24.12.37 0C67 54 71.68 52.6 76.72 53.07c.28 0 .56.06.83.11h.33a.23.23 0 00.26-.25.2503.2503 0 00-.14-.19zM72.1602 65.21a25.9999 25.9999 0 00-24.97 2.79 26.0005 26.0005 0 00-25.09 2.19h-.05a.4094.4094 0 00-.14.3.39.39 0 00.38.39h.08a26.093 26.093 0 017.49-1.1c6.93 0 13.1 1.64 17.74 6a.3796.3796 0 00.25.09.3695.3695 0 00.3-.14l.22-.31c4.72-6.45 12.5-9.63 21.16-9.63.62 0 1.23 0 1.84.06h.55a.3997.3997 0 00.39-.39.382.382 0 00-.15-.25z" fill="#fff"/><rect x="15" y="15" width="16" height="14" rx="2" fill="#fff"/><path d="M23.0898 26h-1.4003v-7.3652h-2.5196v-1.2012h6.4395v1.2012h-2.5196V26z" fill="#DD9426"/></svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="127"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#237453"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z"/><path d="M46.3335 109.705c0 1.418-.3516 2.508-1.0547 3.27-.7031.761-1.7109 1.142-3.0234 1.142s-2.3203-.381-3.0235-1.142c-.7031-.762-1.0547-1.856-1.0547-3.282 0-1.425.3516-2.513 1.0547-3.263.7071-.754 1.7188-1.131 3.0352-1.131s2.3223.379 3.0176 1.137c.6992.757 1.0488 1.847 1.0488 3.269zm-6.252 0c0 .957.1817 1.678.545 2.162.3632.485.9062.727 1.6289.727 1.4492 0 2.1738-.963 2.1738-2.889 0-1.93-.7207-2.894-2.1621-2.894-.7227 0-1.2676.244-1.6348.732-.3672.484-.5508 1.205-.5508 2.162zM51.4136 114h-1.8164v-7.055H47.271v-1.511h6.4687v1.511h-2.3261V114zm8.7011-2.379c0 .774-.2793 1.383-.8378 1.828-.5547.446-1.3282.668-2.3204.668-.914 0-1.7226-.172-2.4257-.515v-1.688c.5781.258 1.0664.44 1.4648.545.4023.105.7695.158 1.1016.158.3984 0 .7031-.076.914-.228.2149-.153.3223-.379.3223-.68 0-.168-.0469-.316-.1406-.445-.0938-.133-.2325-.26-.416-.381-.1797-.121-.5489-.315-1.1075-.58-.5234-.246-.916-.483-1.1777-.709-.2617-.227-.4707-.49-.627-.791-.1562-.301-.2343-.653-.2343-1.055 0-.758.2558-1.353.7675-1.787.5157-.434 1.2266-.65 2.1329-.65.4453 0 .8691.052 1.2714.158.4063.105.8301.254 1.2715.445l-.5859 1.412c-.457-.187-.8359-.318-1.1367-.392-.2969-.075-.5899-.112-.8789-.112-.3438 0-.6075.08-.791.24-.1836.161-.2754.37-.2754.627 0 .161.0371.301.1113.422.0742.118.1914.233.3516.346.164.109.5488.309 1.1542.598.8008.383 1.3497.767 1.6465 1.154.2969.383.4453.853.4453 1.412zM78 52.74l-.29-.15a14.9994 14.9994 0 00-14 .53 14.9293 14.9293 0 00-14.3-.24h-.08a.2491.2491 0 00-.1.2.26.26 0 00.26.26h.06a14.6174 14.6174 0 014.14-.18c4 .37 7.43 1.6 9.86 4.36.13.13.24.12.37 0C67 54 71.68 52.6 76.72 53.07c.28 0 .56.06.83.11h.33a.2302.2302 0 00.26-.25.2506.2506 0 00-.14-.19zM72.16 65.21A25.9997 25.9997 0 0047.19 68a26 26 0 00-25.09 2.19h-.05a.4101.4101 0 00-.14.3.3903.3903 0 00.38.39h.08a26.09 26.09 0 017.49-1.1c6.93 0 13.1 1.64 17.74 6a.38.38 0 00.25.09.3697.3697 0 00.3-.14l.22-.31c4.72-6.45 12.5-9.63 21.16-9.63.62 0 1.23 0 1.84.06h.55a.3998.3998 0 00.39-.39.3805.3805 0 00-.15-.25z" fill="#fff"/><rect x="15" y="15" width="16" height="14" rx="2" fill="#fff"/><path d="M23.0898 26h-1.4003v-7.3652h-2.5196v-1.2012h6.4395v1.2012h-2.5196V26z" fill="#237453"/></svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="127"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#3C6D88"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z"/><path d="M46.1636 109.705c0 1.418-.3516 2.508-1.0547 3.27-.7031.761-1.711 1.142-3.0235 1.142-1.3125 0-2.3203-.381-3.0234-1.142-.7031-.762-1.0547-1.856-1.0547-3.282 0-1.425.3516-2.513 1.0547-3.263.707-.754 1.7188-1.131 3.0352-1.131s2.3222.379 3.0175 1.137c.6993.757 1.0489 1.847 1.0489 3.269zm-6.252 0c0 .957.1817 1.678.5449 2.162.3633.485.9063.727 1.6289.727 1.4493 0 2.1739-.963 2.1739-2.889 0-1.93-.7207-2.894-2.1621-2.894-.7227 0-1.2676.244-1.6348.732-.3672.484-.5508 1.205-.5508 2.162zM51.2437 114h-1.8165v-7.055h-2.3261v-1.511h6.4687v1.511h-2.3261V114zm6.9492 0h-1.8164v-7.055h-2.3262v-1.511h6.4687v1.511h-2.3261V114zM78 52.74l-.29-.15a14.9994 14.9994 0 00-14 .53 14.9293 14.9293 0 00-14.3-.24h-.08a.2491.2491 0 00-.1.2.26.26 0 00.26.26h.06a14.6174 14.6174 0 014.14-.18c4 .37 7.43 1.6 9.86 4.36.13.13.24.12.37 0C67 54 71.68 52.6 76.72 53.07c.28 0 .56.06.83.11h.33a.2302.2302 0 00.26-.25.2506.2506 0 00-.14-.19zM72.1602 65.21a25.9999 25.9999 0 00-24.97 2.79 25.9993 25.9993 0 00-25.09 2.19h-.05a.409.409 0 00-.14.3.3897.3897 0 00.38.39h.08a26.0895 26.0895 0 017.49-1.1c6.93 0 13.1 1.64 17.74 6a.3796.3796 0 00.25.09.3696.3696 0 00.3-.14l.22-.31c4.72-6.45 12.5-9.63 21.16-9.63.62 0 1.23 0 1.84.06h.55a.3997.3997 0 00.39-.39.3804.3804 0 00-.15-.25z" fill="#fff"/><rect x="15" y="15" width="16" height="14" rx="2" fill="#fff"/><path d="M23.0898 26h-1.4003v-7.3652h-2.5196v-1.2012h6.4395v1.2012h-2.5196V26z" fill="#3C6D88"/></svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1 +0,0 @@
<svg style="position:absolute;width:0;height:0" xmlns="http://www.w3.org/2000/svg" width="100" height="127" overflow="hidden"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#51968F"/><circle cx="44.5" cy="62.5" r="2.5" fill="#fff"/><circle cx="54.5" cy="62.5" r="2.5" fill="#fff"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z"/><path d="M42.894 109.705c0 1.418-.3515 2.508-1.0546 3.27-.7032.761-1.711 1.142-3.0235 1.142-1.3125 0-2.3203-.381-3.0234-1.142-.7031-.762-1.0547-1.856-1.0547-3.282 0-1.425.3516-2.513 1.0547-3.263.707-.754 1.7187-1.131 3.0351-1.131s2.3223.379 3.0176 1.137c.6992.757 1.0488 1.847 1.0488 3.269zm-6.2519 0c0 .957.1816 1.678.5449 2.162.3633.485.9063.727 1.6289.727 1.4492 0 2.1738-.963 2.1738-2.889 0-1.93-.7207-2.894-2.1621-2.894-.7226 0-1.2675.244-1.6347.732-.3672.484-.5508 1.205-.5508 2.162zM51.5952 114H49.521l-1.9922-3.24-1.9922 3.24h-1.9453l2.8418-4.418-2.6602-4.148h2.004l1.8457 3.082 1.8105-3.082h1.957l-2.6894 4.248L51.5952 114zm2.8945-4.535h.5977c.5586 0 .9766-.11 1.2539-.328.2774-.223.416-.545.416-.967 0-.426-.1172-.74-.3515-.943-.2305-.204-.5938-.305-1.0899-.305h-.8262v2.543zm4.1016-1.36c0 .922-.2891 1.627-.8672 2.116-.5742.488-1.3926.732-2.4551.732h-.7793V114h-1.8164v-8.566h2.7364c1.039 0 1.8281.224 2.3672.673.5429.446.8144 1.112.8144 1.998zm6.6738 3.516c0 .774-.2793 1.383-.8379 1.828-.5546.446-1.3281.668-2.3203.668-.914 0-1.7226-.172-2.4257-.515v-1.688c.5781.258 1.0664.44 1.4648.545.4023.105.7695.158 1.1016.158.3984 0 .7031-.076.914-.228.2149-.153.3223-.379.3223-.68 0-.168-.0469-.316-.1406-.445-.0938-.133-.2325-.26-.4161-.381-.1796-.121-.5488-.315-1.1074-.58-.5234-.246-.916-.483-1.1777-.709-.2617-.227-.4707-.49-.627-.791-.1562-.301-.2343-.653-.2343-1.055 0-.758.2558-1.353.7675-1.787.5157-.434 1.2266-.65 2.1329-.65.4453 0 .8691.052 1.2714.158.4063.105.8301.254 1.2715.445l-.5859 1.412c-.457-.187-.836-.318-1.1367-.392-.2969-.075-.5899-.112-.8789-.112-.3438 0-.6075.08-.7911.24-.1836.161-.2753.37-.2753.627 0 .161.0371.301.1113.422.0742.118.1914.233.3515.346.1641.109.5489.309 1.1543.598.8008.383 1.3496.767 1.6465 1.154.2969.383.4453.853.4453 1.412zM62 53v4.8l13.5 4.7L62 67.2V72l18-7.8v-3.4L62 53zM19 64.2L37 72v-4.8l-13.5-4.7L37 57.8V53l-18 7.8v3.4z" fill="#fff"/></svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="127"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#BA4C3F"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z"/><path d="M41.3945 109.465h.5977c.5586 0 .9766-.11 1.2539-.328.2773-.223.416-.545.416-.967 0-.426-.1172-.74-.3516-.943-.2304-.204-.5937-.305-1.0898-.305h-.8262v2.543zm4.1016-1.36c0 .922-.2891 1.627-.8672 2.116-.5742.488-1.3926.732-2.4551.732h-.7793V114h-1.8164v-8.566h2.7364c1.039 0 1.8281.224 2.3671.673.543.446.8145 1.112.8145 1.998zm8.7246 1.53c0 1.41-.4023 2.49-1.207 3.24-.8008.75-1.959 1.125-3.4746 1.125h-2.4258v-8.566h2.6894c1.3985 0 2.4844.369 3.2578 1.107.7735.738 1.1602 1.77 1.1602 3.094zm-1.8867.047c0-1.84-.8125-2.76-2.4375-2.76h-.9668v5.578h.7793c1.75 0 2.625-.939 2.625-2.818zM57.7832 114h-1.7871v-8.566h4.9101v1.488h-3.123v2.209h2.9063v1.482h-2.9063V114zM40.42 66.69C42 63.55 43.84 60 45.3 56.46l.58-1.4c-1.9-7.25-3.05-13.07-2-16.83a2.5897 2.5897 0 012.62-1.57h.88c1.66 0 2.44 2.09 2.53 2.91a13.1248 13.1248 0 01-.48 3.68 9.1103 9.1103 0 00-.56-3.75c-.71-1.5-1.37-2.4-1.96-2.5a1.8204 1.8204 0 00-.68 1.4 19.6565 19.6565 0 00-.23 3.19A36.001 36.001 0 0047.45 51c.18-.54.34-1 .48-1.54.2-.76 1.49-5.81 1.49-5.81s-.33 6.72-.78 8.76c-.1.43-.21.86-.32 1.29a29.59 29.59 0 007.37 11.52 23.7484 23.7484 0 004.31 2.9 57.7233 57.7233 0 018.65-.65c3.28 0 5.69.53 6.66 1.49a2.5502 2.5502 0 01.69 1.66 5.9257 5.9257 0 01-.14 1c0-.18 0-1-2.6-1.88-2.07-.66-6-.64-10.61-.15 5.39 2.64 10.64 4 12.3 3.16a3.481 3.481 0 00.9-.87 9.45 9.45 0 01-.51 1.66 2.5406 2.5406 0 01-1.29.88c-2.63.71-9.46-.92-15.42-4.32a125.0032 125.0032 0 00-19.83 4.69C33 84.88 28.71 89.51 25.19 87.75l-1.29-.65a1.5003 1.5003 0 01-.49-1.63c.41-2 2.93-5 8-8.06.55-.33 3-1.61 3-1.61s-1.79 1.74-2.21 2.08c-4 3.31-7 7.47-6.95 9.09v.14c3.43-.49 8.57-7.48 15.19-20.42h-.02zm2.12 1.07c-1.11 2.08-2.19 4-3.19 5.79a84.5997 84.5997 0 0117.1-4.84c-.76-.53-1.49-1.08-2.19-1.67A29.2799 29.2799 0 0147 57.66a81.0053 81.0053 0 01-4.52 10.1" fill="#fff"/></svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="127"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#BA4C3F"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z"/><path d="M34.8945 109.465h.5977c.5586 0 .9766-.11 1.2539-.328.2773-.223.416-.545.416-.967 0-.426-.1172-.74-.3516-.943-.2304-.204-.5937-.305-1.0898-.305h-.8262v2.543zm4.1016-1.36c0 .922-.2891 1.627-.8672 2.116-.5742.488-1.3926.732-2.4551.732h-.7793V114h-1.8164v-8.566h2.7364c1.039 0 1.8281.224 2.3671.673.543.446.8145 1.112.8145 1.998zm8.7246 1.53c0 1.41-.4023 2.49-1.207 3.24-.8008.75-1.959 1.125-3.4746 1.125h-2.4258v-8.566h2.6894c1.3985 0 2.4844.369 3.2578 1.107.7735.738 1.1602 1.77 1.1602 3.094zm-1.8867.047c0-1.84-.8125-2.76-2.4375-2.76h-.9668v5.578h.7793c1.75 0 2.625-.939 2.625-2.818zM51.2832 114h-1.7871v-8.566h4.9101v1.488h-3.123v2.209h2.9063v1.482h-2.9063V114zm8.6191-8.566L56.709 114h-1.6231l3.1934-8.566h1.623zM66.2832 114l-.6211-2.039h-3.123L61.918 114h-1.9571l3.0235-8.602h2.2207L68.2402 114h-1.957zm-1.0547-3.562c-.5742-1.848-.8984-2.893-.9726-3.135-.0704-.242-.1211-.434-.1524-.574-.1289.5-.498 1.736-1.1074 3.709h2.2324zM40.42 66.69C42 63.55 43.84 60 45.3 56.46l.58-1.4c-1.9-7.25-3.05-13.07-2-16.83a2.5897 2.5897 0 012.62-1.57h.88c1.66 0 2.44 2.09 2.53 2.91a13.1248 13.1248 0 01-.48 3.68 9.11 9.11 0 00-.56-3.75c-.71-1.5-1.37-2.4-1.96-2.5a1.8194 1.8194 0 00-.68 1.4 19.6565 19.6565 0 00-.23 3.19A36.0017 36.0017 0 0047.45 51c.18-.54.34-1 .48-1.54.2-.76 1.49-5.81 1.49-5.81s-.33 6.72-.78 8.76c-.1.43-.21.86-.32 1.29a29.59 29.59 0 007.37 11.52 23.7535 23.7535 0 004.31 2.9 57.7233 57.7233 0 018.65-.65c3.28 0 5.69.53 6.66 1.49a2.55 2.55 0 01.69 1.66 5.9257 5.9257 0 01-.14 1c0-.18 0-1-2.6-1.88-2.07-.66-6-.64-10.61-.15 5.39 2.64 10.64 4 12.3 3.16a3.481 3.481 0 00.9-.87 9.45 9.45 0 01-.51 1.66 2.5406 2.5406 0 01-1.29.88c-2.63.71-9.46-.92-15.42-4.32a124.9922 124.9922 0 00-19.83 4.69C33 84.88 28.71 89.51 25.19 87.75l-1.29-.65a1.5003 1.5003 0 01-.49-1.63c.41-2 2.93-5 8-8.06.55-.33 3-1.61 3-1.61s-1.79 1.74-2.21 2.08c-4 3.31-7 7.47-6.95 9.09v.14c3.43-.49 8.57-7.48 15.19-20.42h-.02zm2.12 1.07c-1.11 2.08-2.19 4-3.19 5.79a84.5997 84.5997 0 0117.1-4.84c-.76-.53-1.49-1.08-2.19-1.67A29.2799 29.2799 0 0147 57.66a81.0119 81.0119 0 01-4.52 10.1" fill="#fff"/><rect x="15" y="15" width="16" height="14" rx="2" fill="#fff"/><path d="M25.4453 26l-.8555-2.3789h-3.2753L20.4766 26H19l3.2051-8.6016h1.5234L26.9336 26h-1.4883zm-1.2246-3.5859l-.8027-2.3321c-.0586-.1562-.1407-.4023-.2461-.7382-.1016-.336-.1719-.5821-.211-.7383-.1054.4804-.2597 1.0058-.4629 1.5761l-.7734 2.2325h2.4961z" fill="#BA4C3F"/></svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -1 +0,0 @@
<svg width="100" height="127" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#D871D6"/><g fill="#fff"><path d="M39.8984 109.465h.5977c.5586 0 .9766-.11 1.2539-.328.2773-.223.416-.545.416-.967 0-.426-.1172-.74-.3515-.943-.2305-.204-.5938-.305-1.0899-.305h-.8262v2.543zM44 108.105c0 .922-.2891 1.627-.8672 2.116-.5742.488-1.3926.732-2.4551.732h-.7793V114H38.082v-8.566h2.7364c1.039 0 1.8281.224 2.3671.673.543.446.8145 1.112.8145 1.998zM53.2168 114h-2.3086l-3.7266-6.48h-.0527c.0742 1.144.1113 1.96.1113 2.449V114h-1.623v-8.566h2.291l3.7207 6.416h.041c-.0586-1.114-.0879-1.901-.0879-2.362v-4.054h1.6348V114zM58.6309 109.189h3.3984v4.442c-.5508.18-1.0703.305-1.5586.375a9.8426 9.8426 0 01-1.4883.111c-1.2929 0-2.2812-.379-2.9648-1.137-.6797-.761-1.0196-1.853-1.0196-3.275 0-1.383.3946-2.461 1.1836-3.234.793-.774 1.8907-1.16 3.293-1.16.8789 0 1.7266.175 2.543.527l-.6035 1.453c-.625-.312-1.2754-.469-1.9512-.469-.7852 0-1.4141.264-1.8867.791-.4727.528-.709 1.237-.709 2.127 0 .93.1894 1.641.5683 2.133.3829.488.9375.732 1.6641.732.3789 0 .7637-.039 1.1543-.117v-1.787h-1.623v-1.512z"/></g><path d="M56 51.869L73.183 79H27.7869L39.5 59.912l4.774 7.7799.839 1.3671.8582-1.3551L56 51.869zM36 51.5c0 2.4853-2.0147 4.5-4.5 4.5S27 53.9853 27 51.5s2.0147-4.5 4.5-4.5 4.5 2.0147 4.5 4.5z" fill="#fff" stroke="#fff" stroke-width="2"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z" fill="#000"/></svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="127"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#DD682B"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z"/><path d="M37.8845 109.465h.5977c.5586 0 .9765-.11 1.2539-.328.2773-.223.416-.545.416-.967 0-.426-.1172-.74-.3516-.943-.2304-.204-.5937-.305-1.0898-.305h-.8262v2.543zm4.1016-1.36c0 .922-.2891 1.627-.8672 2.116-.5742.488-1.3926.732-2.4551.732h-.7793V114h-1.8164v-8.566h2.7363c1.0391 0 1.8282.224 2.3672.673.543.446.8145 1.112.8145 1.998zm9.3926 1.6c0 1.418-.3516 2.508-1.0547 3.27-.7032.761-1.711 1.142-3.0235 1.142-1.3125 0-2.3203-.381-3.0234-1.142-.7031-.762-1.0547-1.856-1.0547-3.282 0-1.425.3516-2.513 1.0547-3.263.707-.754 1.7187-1.131 3.0352-1.131 1.3164 0 2.3222.379 3.0175 1.137.6993.757 1.0489 1.847 1.0489 3.269zm-6.252 0c0 .957.1816 1.678.5449 2.162.3633.485.9063.727 1.6289.727 1.4493 0 2.1739-.963 2.1739-2.889 0-1.93-.7207-2.894-2.1621-2.894-.7227 0-1.2676.244-1.6348.732-.3672.484-.5508 1.205-.5508 2.162zM56.4587 114h-1.8164v-7.055h-2.3261v-1.511h6.4687v1.511h-2.3262V114zm10.5704 0h-2.0743l-1.9922-3.24-1.9921 3.24h-1.9454l2.8418-4.418-2.6601-4.148h2.0039l1.8457 3.082 1.8105-3.082h1.9571l-2.6895 4.248L67.0291 114zM50 69a15.9999 15.9999 0 0016-16H50V37a15.9999 15.9999 0 00-11.3137 27.3137A15.9999 15.9999 0 0050 69z" fill="#fff"/><path d="M53 34v16h16a15.9999 15.9999 0 00-16-16zM75 89H25v2h50v-2zM75 83H25v2h50v-2zM75 77H25v2h50v-2z" fill="#fff"/><rect x="15" y="15" width="16" height="14" rx="2" fill="#fff"/><path d="M23.0898 26h-1.4003v-7.3652h-2.5196v-1.2012h6.4395v1.2012h-2.5196V26z" fill="#DD682B"/></svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1 +0,0 @@
<svg width="100" height="127" fill="none" xmlns="http://www.w3.org/2000/svg"><path id="Vector" d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#E87616"/><path id="Vector_2" opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z" fill="#000"/><g fill="#fff"><path d="M38.0527 109.465h.5977c.5586 0 .9766-.11 1.2539-.328.2773-.223.416-.545.416-.967 0-.426-.1172-.74-.3515-.943-.2305-.204-.5938-.305-1.0899-.305h-.8262v2.543zm4.1016-1.36c0 .922-.2891 1.627-.8672 2.116-.5742.488-1.3926.732-2.4551.732h-.7793V114h-1.8164v-8.566h2.7364c1.039 0 1.8281.224 2.3671.673.543.446.8145 1.112.8145 1.998zM45.5879 109.465h.5976c.5586 0 .9766-.11 1.254-.328.2773-.223.416-.545.416-.967 0-.426-.1172-.74-.3516-.943-.2305-.204-.5937-.305-1.0898-.305h-.8262v2.543zm4.1016-1.36c0 .922-.2891 1.627-.8672 2.116-.5743.488-1.3926.732-2.4551.732h-.7793V114h-1.8164v-8.566h2.7363c1.0391 0 1.8281.224 2.3672.673.543.446.8145 1.112.8145 1.998zM56.3633 111.621c0 .774-.2793 1.383-.8379 1.828-.5547.446-1.3281.668-2.3203.668-.9141 0-1.7227-.172-2.4258-.515v-1.688c.5781.258 1.0664.44 1.4648.545.4024.105.7696.158 1.1016.158.3984 0 .7031-.076.9141-.228.2148-.153.3222-.379.3222-.68 0-.168-.0468-.316-.1406-.445-.0937-.133-.2324-.26-.416-.381-.1797-.121-.5488-.315-1.1074-.58-.5235-.246-.916-.483-1.1778-.709-.2617-.227-.4707-.49-.6269-.791-.1563-.301-.2344-.653-.2344-1.055 0-.758.2559-1.353.7676-1.787.5156-.434 1.2265-.65 2.1328-.65.4453 0 .8691.052 1.2715.158.4062.105.8301.254 1.2715.445l-.586 1.412c-.457-.187-.8359-.318-1.1367-.392-.2969-.075-.5898-.112-.8789-.112-.3437 0-.6074.08-.791.24-.1836.161-.2754.37-.2754.627 0 .161.0371.301.1113.422.0742.118.1914.233.3516.346.164.109.5488.309 1.1543.598.8008.383 1.3496.767 1.6465 1.154.2968.383.4453.853.4453 1.412zM64.8418 114h-2.0742l-1.9922-3.24-1.9922 3.24h-1.9453l2.8418-4.418-2.6602-4.148h2.0039l1.8457 3.082 1.8106-3.082h1.957l-2.6894 4.248L64.8418 114z"/></g><path id="Vector_3" d="M50 69a15.9999 15.9999 0 0016-16H50V37a15.9999 15.9999 0 00-11.3137 27.3137A15.9999 15.9999 0 0050 69z" fill="#fff"/><path id="Vector_4" d="M53 34v16h16a15.9999 15.9999 0 00-16-16z" fill="#fff"/><path id="Vector_5" d="M75 89H25v2h50v-2z" fill="#fff"/><path id="Vector_6" d="M75 83H25v2h50v-2z" fill="#fff"/><path id="Vector_7" d="M75 77H25v2h50v-2z" fill="#fff"/></svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1 +0,0 @@
<svg width="100" height="127" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#DD682B"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z" fill="#000"/><path d="M37.2146 109.465h.5977c.5585 0 .9765-.11 1.2539-.328.2773-.223.416-.545.416-.967 0-.426-.1172-.74-.3516-.943-.2305-.204-.5937-.305-1.0898-.305h-.8262v2.543zm4.1016-1.36c0 .922-.2891 1.627-.8672 2.116-.5742.488-1.3926.732-2.4551.732h-.7793V114h-1.8164v-8.566h2.7363c1.0391 0 1.8281.224 2.3672.673.543.446.8145 1.112.8145 1.998zm3.4336 1.36h.5976c.5586 0 .9766-.11 1.2539-.328.2774-.223.416-.545.416-.967 0-.426-.1172-.74-.3515-.943-.2305-.204-.5938-.305-1.0899-.305h-.8261v2.543zm4.1015-1.36c0 .922-.289 1.627-.8672 2.116-.5742.488-1.3925.732-2.455.732h-.7793V114h-1.8165v-8.566h2.7364c1.039 0 1.8281.224 2.3672.673.5429.446.8144 1.112.8144 1.998zM53.7732 114h-1.8164v-7.055h-2.3262v-1.511h6.4688v1.511h-2.3262V114zm7.2715 0l-2.0625-6.721h-.0528c.0743 1.367.1114 2.28.1114 2.737V114h-1.6231v-8.566h2.4727l2.0273 6.55h.0352l2.1504-6.55h2.4726V114h-1.6933v-4.055c0-.191.0019-.412.0058-.662.0078-.25.0352-.914.0821-1.992h-.0528L62.7087 114h-1.664zM50 69a15.9999 15.9999 0 0016-16H50V37a15.9999 15.9999 0 00-11.3137 27.3137A15.9999 15.9999 0 0050 69z" fill="#fff"/><path d="M53 34v16h16a15.9999 15.9999 0 00-16-16zM75 89H25v2h50v-2zM75 83H25v2h50v-2zM75 77H25v2h50v-2zM15 17c0-1.1046.8954-2 2-2h12c1.1046 0 2 .8954 2 2v9c0 1.1046-.8954 2-2 2H17c-1.1046 0-2-.8954-2-2v-9z" fill="#fff"/><path d="M22.2969 26l-2.4844-7.1543h-.0469c.0664 1.0625.0996 2.0586.0996 2.9883V26h-1.2714v-8.5664h1.9746l2.3789 6.8144h.0351l2.4492-6.8144h1.9805V26h-1.3476v-4.2363c0-.4258.0097-.9805.0293-1.6641.0234-.6836.0429-1.0976.0585-1.2422h-.0468L23.5332 26h-1.2363z" fill="#DD682B"/></svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="127"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#DD682B"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z"/><path d="M37.8845 109.465h.5977c.5586 0 .9765-.11 1.2539-.328.2773-.223.416-.545.416-.967 0-.426-.1172-.74-.3516-.943-.2304-.204-.5937-.305-1.0898-.305h-.8262v2.543zm4.1016-1.36c0 .922-.2891 1.627-.8672 2.116-.5742.488-1.3926.732-2.4551.732h-.7793V114h-1.8164v-8.566h2.7363c1.0391 0 1.8282.224 2.3672.673.543.446.8145 1.112.8145 1.998zm3.4336 1.36h.5976c.5586 0 .9766-.11 1.2539-.328.2774-.223.4161-.545.4161-.967 0-.426-.1172-.74-.3516-.943-.2305-.204-.5938-.305-1.0899-.305h-.8261v2.543zm4.1015-1.36c0 .922-.289 1.627-.8671 2.116-.5743.488-1.3926.732-2.4551.732h-.7793V114h-1.8164v-8.566h2.7363c1.0391 0 1.8281.224 2.3672.673.543.446.8144 1.112.8144 1.998zM54.4431 114h-1.8164v-7.055h-2.3262v-1.511h6.4688v1.511h-2.3262V114zm10.5703 0h-2.0742l-1.9922-3.24-1.9922 3.24h-1.9453l2.8418-4.418-2.6601-4.148h2.0039l1.8457 3.082 1.8105-3.082h1.957l-2.6894 4.248L65.0134 114zM50 69a15.9999 15.9999 0 0016-16H50V37a15.9999 15.9999 0 00-11.3137 27.3137A15.9999 15.9999 0 0050 69z" fill="#fff"/><path d="M53 34v16h16a15.9999 15.9999 0 00-16-16zM75 89H25v2h50v-2zM75 83H25v2h50v-2zM75 77H25v2h50v-2z" fill="#fff"/></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="127"><path d="M95 23v96c0 1.7-1.3 3-3 3H8c-1.7 0-3-1.3-3-3V8c0-1.7 1.3-3 3-3h69l18 18z" fill="#635E9B"/><path opacity=".2" d="M95 23H80c-1.7 0-3-1.3-3-3V5l18 18z"/><path d="M75 39H50v2h25v-2zM75 45H50v2h25v-2zM75 51H50v2h25v-2zM75 57H50v2h25v-2zM75 63H26v2h49v-2zM75 69H26v2h49v-2zM75 75H26v2h49v-2zM75 81H26v2h49v-2zM75 87H26v2h49v-2zM46 39H26v20h20V39zM41.8945 109.236h.586c.5742 0 .998-.095 1.2715-.287.2734-.191.4101-.492.4101-.902 0-.406-.1406-.695-.4219-.867-.2773-.172-.709-.258-1.2949-.258h-.5508v2.314zm0 1.477V114h-1.8164v-8.566h2.4961c1.1641 0 2.0254.212 2.584.638.5586.422.8379 1.065.8379 1.928 0 .504-.1387.953-.416 1.348-.2774.39-.6699.697-1.1778.92 1.2891 1.925 2.1289 3.17 2.5196 3.732h-2.0157l-2.0449-3.287h-.9668zM51.3047 114h-1.8164v-7.055h-2.3262v-1.511h6.4688v1.511h-2.3262V114zm5.4316 0h-1.7871v-8.566h4.9102v1.488h-3.1231v2.209h2.9063v1.482h-2.9063V114z" fill="#fff"/></svg>

Before

Width:  |  Height:  |  Size: 957 B

View File

@ -1 +0,0 @@
<svg width="100" height="127" fill="none" xmlns="http://www.w3.org/2000/svg"><symbol id="svg-format-svg"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#507C8B"/><g fill="#fff"><path d="M44.5801 111.621c0 .774-.2793 1.383-.8379 1.828-.5547.446-1.3281.668-2.3203.668-.9141 0-1.7227-.172-2.4258-.515v-1.688c.5781.258 1.0664.44 1.4648.545.4024.105.7696.158 1.1016.158.3984 0 .7031-.076.9141-.228.2148-.153.3222-.379.3222-.68 0-.168-.0468-.316-.1406-.445-.0937-.133-.2324-.26-.416-.381-.1797-.121-.5488-.315-1.1074-.58-.5235-.246-.916-.483-1.1778-.709-.2617-.227-.4707-.49-.6269-.791-.1563-.301-.2344-.653-.2344-1.055 0-.758.2559-1.353.7676-1.787.5156-.434 1.2265-.65 2.1328-.65.4453 0 .8691.052 1.2715.158.4062.105.8301.254 1.2715.445l-.586 1.412c-.457-.187-.8359-.318-1.1367-.392-.2969-.075-.5898-.112-.8789-.112-.3437 0-.6074.08-.791.24-.1836.161-.2754.37-.2754.627 0 .161.0371.301.1113.422.0742.118.1914.233.3516.346.164.109.5488.309 1.1543.598.8008.383 1.3496.767 1.6465 1.154.2968.383.4453.853.4453 1.412zM51.0195 105.434h1.834L49.9414 114h-1.9805l-2.9062-8.566h1.834l1.6113 5.097c.0898.301.1816.653.2754 1.055.0976.398.1582.676.1816.832.043-.359.1895-.988.4395-1.887l1.623-5.097zM57.1895 109.189h3.3984v4.442c-.5508.18-1.0703.305-1.5586.375a9.8426 9.8426 0 01-1.4883.111c-1.293 0-2.2812-.379-2.9648-1.137-.6797-.761-1.0196-1.853-1.0196-3.275 0-1.383.3946-2.461 1.1836-3.234.793-.774 1.8907-1.16 3.293-1.16.8789 0 1.7266.175 2.543.527l-.6035 1.453c-.625-.312-1.2754-.469-1.9512-.469-.7852 0-1.4141.264-1.8867.791-.4727.528-.709 1.237-.709 2.127 0 .93.1894 1.641.5683 2.133.3829.488.9375.732 1.6641.732.3789 0 .7637-.039 1.1543-.117v-1.787h-1.623v-1.512z"/></g><path d="M51 58.917c2.8377-.476 5-2.944 5-5.917 0-3.3137-2.6863-6-6-6s-6 2.6863-6 6c0 2.973 2.1623 5.441 5 5.917v12.6688l-9.1092-9.1093C40.5892 61.4957 41 60.2958 41 59c0-3.3137-2.6863-6-6-6s-6 2.6863-6 6 2.6863 6 6 6c1.2958 0 2.4957-.4108 3.4766-1.1093L48.5858 74H36.917c-.476-2.8377-2.944-5-5.917-5-3.3137 0-6 2.6863-6 6 0 .3407.0284.6748.083 1h49.834A6.0363 6.0363 0 0075 75c0-3.3137-2.6863-6-6-6-2.973 0-5.441 2.1623-5.917 5H51.5563l10.0508-10.0508C62.5721 64.6121 63.7408 65 65 65c3.3137 0 6-2.6863 6-6s-2.6863-6-6-6-6 2.6863-6 6c0 1.3323.4343 2.5633 1.169 3.5589L51 71.7279V58.917z" fill="#fff"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z" fill="#000"/></symbol></svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="127"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#7C7C7D"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z"/><path d="M43.4329 114h-1.8164v-7.055h-2.3262v-1.511h6.4687v1.511h-2.3261V114zm10.5703 0H51.929l-1.9922-3.24-1.9922 3.24h-1.9453l2.8418-4.418-2.6602-4.148h2.0039l1.8457 3.082 1.8106-3.082h1.957l-2.6895 4.248L54.0032 114zm4.3828 0h-1.8164v-7.055h-2.3262v-1.511h6.4688v1.511H58.386V114zM74 38H25v2h49v-2zM74 44H25v2h49v-2zM74 50H25v2h49v-2zM74 56H25v2h49v-2zM74 62H25v2h49v-2zM74 68H25v2h49v-2zM74 74H25v2h49v-2zM74 80H25v2h49v-2zM74 86H25v2h49v-2z" fill="#fff"/></svg>

Before

Width:  |  Height:  |  Size: 760 B

View File

@ -1 +0,0 @@
<svg width="100" height="127" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#1F7244"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z" fill="#000"/><path d="M42.4446 114h-2.0742l-1.9922-3.24L36.386 114h-1.9453l2.8418-4.418-2.6602-4.148h2.0039l1.8457 3.082 1.8106-3.082h1.957l-2.6895 4.248L42.4446 114zm1.0781 0v-8.566h1.8164v7.066h3.4746v1.5h-5.291zm11.8418-2.379c0 .774-.2793 1.383-.8379 1.828-.5547.446-1.3281.668-2.3203.668-.9141 0-1.7227-.172-2.4258-.515v-1.688c.5781.258 1.0664.44 1.4649.545.4023.105.7695.158 1.1015.158.3985 0 .7031-.076.9141-.228.2148-.153.3223-.379.3223-.68 0-.168-.0469-.316-.1407-.445-.0937-.133-.2324-.26-.416-.381-.1797-.121-.5488-.315-1.1074-.58-.5234-.246-.916-.483-1.1777-.709-.2618-.227-.4707-.49-.627-.791-.1562-.301-.2344-.653-.2344-1.055 0-.758.2559-1.353.7676-1.787.5156-.434 1.2266-.65 2.1328-.65.4453 0 .8692.052 1.2715.158.4063.105.8301.254 1.2715.445l-.586 1.412c-.457-.187-.8359-.318-1.1367-.392-.2968-.075-.5898-.112-.8789-.112-.3437 0-.6074.08-.791.24-.1836.161-.2754.37-.2754.627 0 .161.0371.301.1113.422.0743.118.1915.233.3516.346.1641.109.5488.309 1.1543.598.8008.383 1.3496.767 1.6465 1.154.2969.383.4453.853.4453 1.412zM60.5442 114l-2.0625-6.721h-.0527c.0742 1.367.1113 2.28.1113 2.737V114h-1.6231v-8.566h2.4727l2.0273 6.55h.0352l2.1504-6.55h2.4726V114h-1.6933v-4.055c0-.191.0019-.412.0058-.662.0079-.25.0352-.914.0821-1.992h-.0528L62.2083 114h-1.6641zM52.75 61.63L64 45h-5.5L50 57.56 41.5 45H36l11.25 16.63L35.5 79H41l9-13.3L59 79h5.5L52.75 61.63zM15 15c0-1.1046.8954-2 2-2h12c1.1046 0 2 .8954 2 2v9c0 1.1046-.8954 2-2 2H17c-1.1046 0-2-.8954-2-2v-9z" fill="#fff"/><path d="M22.2969 24l-2.4844-7.1543h-.0469c.0664 1.0625.0996 2.0586.0996 2.9883V24h-1.2714v-8.5664h1.9746l2.3789 6.8144h.0351l2.4492-6.8144h1.9805V24h-1.3476v-4.2363c0-.4258.0097-.9805.0293-1.6641.0234-.6836.0429-1.0976.0585-1.2422h-.0468L23.5332 24h-1.2363z" fill="#1F7244"/></svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="127"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#1F7244"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z"/><path d="M43.304 114h-2.0743l-1.9922-3.24-1.9921 3.24H35.3l2.8418-4.418-2.6601-4.148h2.0039l1.8457 3.082 1.8105-3.082h1.9571l-2.6895 4.248L43.304 114zm1.0781 0v-8.566h1.8164v7.066h3.4746v1.5h-5.291zm11.8418-2.379c0 .774-.2793 1.383-.8379 1.828-.5547.446-1.3281.668-2.3203.668-.9141 0-1.7227-.172-2.4258-.515v-1.688c.5781.258 1.0664.44 1.4648.545.4024.105.7696.158 1.1016.158.3984 0 .7031-.076.9141-.228.2148-.153.3222-.379.3222-.68 0-.168-.0468-.316-.1406-.445-.0937-.133-.2324-.26-.416-.381-.1797-.121-.5488-.315-1.1074-.58-.5235-.246-.9161-.483-1.1778-.709-.2617-.227-.4707-.49-.6269-.791-.1563-.301-.2344-.653-.2344-1.055 0-.758.2559-1.353.7676-1.787.5156-.434 1.2265-.65 2.1328-.65.4453 0 .8691.052 1.2715.158.4062.105.8301.254 1.2715.445l-.586 1.412c-.457-.187-.8359-.318-1.1367-.392-.2969-.075-.5898-.112-.8789-.112-.3438 0-.6074.08-.791.24-.1836.161-.2754.37-.2754.627 0 .161.0371.301.1113.422.0742.118.1914.233.3516.346.164.109.5488.309 1.1543.598.8008.383 1.3496.767 1.6465 1.154.2968.383.4453.853.4453 1.412zM64.7024 114h-2.0742l-1.9922-3.24-1.9922 3.24h-1.9453l2.8418-4.418-2.6602-4.148h2.0039l1.8457 3.082 1.8106-3.082h1.957l-2.6894 4.248L64.7024 114zM52.75 61.63L64 45h-5.5L50 57.56 41.5 45H36l11.25 16.63L35.5 79H41l9-13.3L59 79h5.5L52.75 61.63z" fill="#fff"/></svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="127"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#1F7244"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z"/><path d="M43.304 114h-2.0743l-1.9922-3.24-1.9921 3.24H35.3l2.8418-4.418-2.6601-4.148h2.0039l1.8457 3.082 1.8105-3.082h1.9571l-2.6895 4.248L43.304 114zm1.0781 0v-8.566h1.8164v7.066h3.4746v1.5h-5.291zm10.0898 0h-1.8164v-7.055h-2.3262v-1.511h6.4688v1.511h-2.3262V114zm10.5703 0H62.968l-1.9922-3.24-1.9922 3.24h-1.9453l2.8418-4.418-2.6601-4.148h2.0039l1.8457 3.082 1.8105-3.082h1.9571l-2.6895 4.248L65.0422 114zM52.75 61.63L64 45h-5.5L50 57.56 41.5 45H36l11.25 16.63L35.5 79H41l9-13.3L59 79h5.5L52.75 61.63z" fill="#fff"/><rect x="15" y="15" width="16" height="14" rx="2" fill="#fff"/><path d="M23.0898 26h-1.4003v-7.3652h-2.5196v-1.2012h6.4395v1.2012h-2.5196V26z" fill="#1F7244"/></svg>

Before

Width:  |  Height:  |  Size: 977 B

View File

@ -1 +0,0 @@
<svg style="position:absolute;width:0;height:0" xmlns="http://www.w3.org/2000/svg" width="100" height="127" overflow="hidden"><path d="M95 23v96c0 .796-.3161 1.559-.8787 2.121A2.9987 2.9987 0 0192 122H8a2.9987 2.9987 0 01-2.1213-.879A2.9976 2.9976 0 015 119V8a3 3 0 013-3h69l18 18z" fill="#51968F"/><circle cx="44.5" cy="62.5" r="2.5" fill="#fff"/><circle cx="54.5" cy="62.5" r="2.5" fill="#fff"/><path opacity=".2" d="M95 23H80a3 3 0 01-3-3V5l18 18z"/><path d="M47.3198 114h-2.0742l-1.9922-3.24-1.9922 3.24h-1.9453l2.8418-4.418-2.6601-4.148h2.0039l1.8457 3.082 1.8105-3.082h1.957l-2.6894 4.248L47.3198 114zm2.8946-4.535h.5976c.5586 0 .9766-.11 1.2539-.328.2774-.223.416-.545.416-.967 0-.426-.1172-.74-.3515-.943-.2305-.204-.5938-.305-1.0899-.305h-.8261v2.543zm4.1015-1.36c0 .922-.289 1.627-.8672 2.116-.5742.488-1.3925.732-2.455.732h-.7793V114h-1.8165v-8.566h2.7364c1.039 0 1.8281.224 2.3672.673.5429.446.8144 1.112.8144 1.998zm6.6738 3.516c0 .774-.2793 1.383-.8378 1.828-.5547.446-1.3282.668-2.3204.668-.914 0-1.7226-.172-2.4257-.515v-1.688c.5781.258 1.0664.44 1.4648.545.4023.105.7695.158 1.1016.158.3984 0 .7031-.076.914-.228.2149-.153.3223-.379.3223-.68 0-.168-.0469-.316-.1406-.445-.0938-.133-.2325-.26-.416-.381-.1797-.121-.5489-.315-1.1075-.58-.5234-.246-.916-.483-1.1777-.709-.2617-.227-.4707-.49-.627-.791-.1562-.301-.2343-.653-.2343-1.055 0-.758.2558-1.353.7675-1.787.5157-.434 1.2266-.65 2.1329-.65.4453 0 .8691.052 1.2714.158.4063.105.8301.254 1.2715.445l-.5859 1.412c-.457-.187-.8359-.318-1.1367-.392-.2969-.075-.5899-.112-.8789-.112-.3438 0-.6075.08-.791.24-.1836.161-.2754.37-.2754.627 0 .161.0371.301.1113.422.0742.118.1914.233.3516.346.164.109.5488.309 1.1542.598.8008.383 1.3497.767 1.6465 1.154.2969.383.4453.853.4453 1.412zM62 53v4.8l13.5 4.7L62 67.2V72l18-7.8v-3.4L62 53zM19 64.2L37 72v-4.8l-13.5-4.7L37 57.8V53l-18 7.8v3.4z" fill="#fff"/></svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="60"><symbol id="svg-icon-crypted" viewBox="0 0 20 20"><path fill-rule="evenodd" clip-rule="evenodd" d="M10 3.0005c-3.0001 1.999-6 1.9997-6 1.9997v3.5c0 1.9999.5628 7.4765 5.9996 8.4999C15.4364 15.9767 16 10.5001 16 8.5002v-3.5s-2.9999-.0007-6-1.9997zm4.0232 4.9648l-1.0464-.9301-3.5495 3.9932-2.4792-2.066-.8962 1.0756 3.5208 2.934 4.4505-5.0067z" fill="#fff"/></symbol><symbol id="svg-icon-users" viewBox="0 0 28 20"><path fill-rule="evenodd" clip-rule="evenodd" d="M27 10c0 4.9706-4.0294 9-9 9s-9-4.0294-9-9 4.0294-9 9-9 9 4.0294 9 9zm1 0c0 5.5228-4.4772 10-10 10-2.6253 0-5.0143-1.0116-6.7984-2.6664C10.2212 17.7622 9.1384 18 8 18c-4.4183 0-8-3.5817-8-8s3.5817-8 8-8c1.1384 0 2.2212.2378 3.2016.6664C12.9857 1.0116 15.3747 0 18 0c5.5228 0 10 4.4771 10 10zM10.4512 3.4412A6.9851 6.9851 0 008 3c-3.866 0-7 3.134-7 7 0 1.5218.4856 2.9302 1.3103 4.0786a10.8167 10.8167 0 011.1237-.7596C4.5435 12.6664 6.1317 12 8 12c.0672 0 .134.0009.2006.0026a9.9847 9.9847 0 01-.1513-1.003A2.7009 2.7009 0 018 11c-1.6569 0-3-1.3431-3-3s1.3431-3 3-3c.426 0 .8314.0888 1.1985.249a10.0216 10.0216 0 011.2527-1.8078zM8.767 6.1524A1.9939 1.9939 0 008 6c-1.1046 0-2 .8954-2 2s.8954 2 2 2c0-1.3635.2729-2.6632.767-3.8476zm-.3043 6.8632A6.9148 6.9148 0 008 13c-1.6317 0-3.0435.5836-4.059 1.181a9.8046 9.8046 0 00-.9906.6668C4.2242 16.1743 6.0157 17 8 17a6.9835 6.9835 0 002.4512-.4412 9.9832 9.9832 0 01-1.9885-3.5432z"/></symbol></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg"><style>use{display:none}use:target{display:inline}</style><symbol id="symb-middle" viewBox="0 0 28 28"><circle cx="14" cy="14" fill="none" stroke="#fff" stroke-width="1.5" r="10.25" stroke-dasharray="160%, 40%"/></symbol><symbol id="symb-small1" viewBox="0 0 20 20"><circle cx="10" cy="10" fill="none" stroke="#444" stroke-width="1.5" r="7.25" stroke-dasharray="160%, 40%"/></symbol><use id="middle" href="#symb-middle"/><use id="small" href="#symb-small"/></svg>

Before

Width:  |  Height:  |  Size: 503 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 23 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 58 KiB

File diff suppressed because one or more lines are too long

View File

@ -220,7 +220,7 @@
<script type="text/javascript" src="../../../vendor/jquery/jquery.min.js"></script>
<script type="text/javascript" src="../../../vendor/jquery/jquery.browser.min.js"></script>
<script type="text/javascript" src="../../../vendor/bootstrap/dist/js/bootstrap.min.js"></script>
<script type="text/javascript" src="../../../vendor/socketio/socket.io.min.js"></script>
<script type="text/javascript" src="../../../vendor/sockjs/sockjs.min.js"></script>
<script type="text/javascript" src="../../../vendor/xregexp/xregexp-all-min.js"></script>
<script src="../../../vendor/requirejs/require.js"></script>
<script>

View File

@ -320,7 +320,7 @@
<script type="text/javascript" src="../../../vendor/jquery/jquery.min.js"></script>
<script type="text/javascript" src="../../../vendor/jquery/jquery.browser.min.js"></script>
<script type="text/javascript" src="../../../vendor/bootstrap/dist/js/bootstrap.min.js"></script>
<script type="text/javascript" src="../../../vendor/socketio/socket.io.min.js"></script>
<script type="text/javascript" src="../../../vendor/sockjs/sockjs.min.js"></script>
<script type="text/javascript" src="../../../vendor/xregexp/xregexp-all-min.js"></script>
<!--sdk-->

View File

@ -4,7 +4,6 @@
"common.view.modals.txtHeight": "Вышыня",
"common.view.modals.txtShare": "Падзяліцца спасылкай",
"common.view.modals.txtWidth": "Шырыня",
"common.view.SearchBar.textFind": "Пошук",
"DE.ApplicationController.convertationErrorText": "Пераўтварыць не атрымалася.",
"DE.ApplicationController.convertationTimeoutText": "Час чакання пераўтварэння сышоў.",
"DE.ApplicationController.criticalErrorTitle": "Памылка",
@ -26,7 +25,6 @@
"DE.ApplicationController.scriptLoadError": "Занадта павольнае злучэнне, не ўсе кампаненты атрымалася загрузіць. Калі ласка, абнавіце старонку.",
"DE.ApplicationController.textAnonymous": "Ананімны карыстальнік",
"DE.ApplicationController.textClear": "Ачысціць усе палі",
"DE.ApplicationController.textCtrl": "Ctrl",
"DE.ApplicationController.textGotIt": "Добра",
"DE.ApplicationController.textGuest": "Госць",
"DE.ApplicationController.textLoadingDocument": "Загрузка дакумента",
@ -47,7 +45,6 @@
"DE.ApplicationView.txtEmbed": "Убудаваць",
"DE.ApplicationView.txtFileLocation": "Перайсці да дакументаў",
"DE.ApplicationView.txtFullScreen": "Поўнаэкранны рэжым",
"DE.ApplicationView.txtPrint": "Друкаванне",
"DE.ApplicationView.txtSearch": "Пошук",
"DE.ApplicationView.txtPrint": "Друк",
"DE.ApplicationView.txtShare": "Падзяліцца"
}

View File

@ -1,34 +1,29 @@
{
"common.view.modals.txtCopy": "Copiar al porta-retalls",
"common.view.modals.txtEmbed": "Incrustar",
"common.view.modals.txtCopy": "Copia al porta-retalls",
"common.view.modals.txtEmbed": "Incrusta",
"common.view.modals.txtHeight": "Alçada",
"common.view.modals.txtShare": "Comparteix l'enllaç",
"common.view.modals.txtWidth": "Amplada",
"common.view.SearchBar.textFind": "Cercar",
"common.view.SearchBar.textFind": "Cerca",
"DE.ApplicationController.convertationErrorText": "No s'ha pogut convertir.",
"DE.ApplicationController.convertationTimeoutText": "S'ha superat el temps de conversió.",
"DE.ApplicationController.criticalErrorTitle": "Error",
"DE.ApplicationController.downloadErrorText": "S'ha produït un error en la descàrrega",
"DE.ApplicationController.downloadErrorText": "La baixada ha fallat.",
"DE.ApplicationController.downloadTextText": "S'està baixant el document...",
"DE.ApplicationController.errorAccessDeny": "No tens permisos per realitzar aquesta acció. <br>Posa't en contacte amb l'administrador del servidor de documents.",
"DE.ApplicationController.errorAccessDeny": "No teniu permisos per realitzar aquesta acció.<br>Contacteu amb l'administrador del servidor de documents.",
"DE.ApplicationController.errorDefaultMessage": "Codi d'error: %1",
"DE.ApplicationController.errorEditingDownloadas": "S'ha produït un error mentre es treballava amb el document. <br>Utilitza l'opció «Anomena i baixa...» per desar la còpia de seguretat del fitxer al disc dur de l'ordinador.",
"DE.ApplicationController.errorEditingDownloadas": "S'ha produït un error mentre es treballava amb el document. <br>Utilitzeu l'opció «Anomena i baixa...» per desar la còpia de seguretat del fitxer al disc dur de l'ordinador.",
"DE.ApplicationController.errorFilePassProtect": "El fitxer està protegit amb contrasenya i no es pot obrir.",
"DE.ApplicationController.errorFileSizeExceed": "La mida del fitxer supera el límit establert per al servidor. <br>Posa't en contacte amb l'administrador del servidor de documents per a obtenir més informació.",
"DE.ApplicationController.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitza l'opció «Anomena i baixa» per desar el fitxer al disc dur de lordinador o torna-ho a provar més endavant.",
"DE.ApplicationController.errorInconsistentExt": "S'ha produït un error en obrir el fitxer. <br>El contingut del fitxer no es correspon amb la seva extensió.",
"DE.ApplicationController.errorInconsistentExtDocx": "S'ha produït un error en obrir el fitxer. <br>El contingut del fitxer correspon a documents de text (per exemple, docx), però el fitxer té l'extensió incoherent: %1.",
"DE.ApplicationController.errorInconsistentExtPdf": "S'ha produït un error en obrir el fitxer. <br>El contingut del fitxer correspon a un dels formats següents: pdf/djvu/xps/oxps, però el fitxer té l'extensió incoherent: %1.",
"DE.ApplicationController.errorInconsistentExtPptx": "S'ha produït un error en obrir el fitxer. <br>El contingut del fitxer correspon a presentacions (per exemple, pptx), però el fitxer té l'extensió incongruent: %1.",
"DE.ApplicationController.errorInconsistentExtXlsx": "S'ha produït un error en obrir el fitxer. <br>El contingut del fitxer correspon a full de càlcul (per exemple, xlsx), però el fitxer té l'extensió incoherent: %1.",
"DE.ApplicationController.errorLoadingFont": "No s'han carregat les famílies tipogràfiques. <br>Posa't en contacte amb l'administrador del servidor de documents.",
"DE.ApplicationController.errorFileSizeExceed": "La mida del fitxer supera el límit establert per al servidor.<br>Contacteu amb l'administrador del servidor de documents per a obtenir més informació.",
"DE.ApplicationController.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció «Anomena i baixa» per desar el fitxer al disc dur de lordinador o torneu-ho a provar més endavant.",
"DE.ApplicationController.errorLoadingFont": "No s'han carregat les lletres tipogràfiques.<br> Contacteu amb l'administrador del Servidor de Documents.",
"DE.ApplicationController.errorSubmit": "No s'ha pogut enviar.",
"DE.ApplicationController.errorTokenExpire": "El testimoni de seguretat del document ha caducat. <br>Posa't en contacte amb l'administrador del servidor de documents.",
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "S'ha restaurat la connexió a internet i la versió del fitxer ha canviat. <br> Abans de continuar treballant, has de baixar el fitxer o copiar-ne el contingut per assegurar-te que no es perdi res i, després, torna a carregar aquesta pàgina.",
"DE.ApplicationController.errorTokenExpire": "El testimoni de seguretat del document ha caducat.<br>Contacteu amb l'administrador del servidor de documents.",
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "S'ha restaurat la connexió a internet i la versió del fitxer ha canviat.<br>Abans de continuar treballant, heu de baixar el fitxer o copiar-ne el contingut per a assegurar-vos que no es perdi res i, després, torneu a carregar la pàgina.",
"DE.ApplicationController.errorUserDrop": "No es pot accedir al fitxer.",
"DE.ApplicationController.notcriticalErrorTitle": "Advertiment",
"DE.ApplicationController.openErrorText": "S'ha produït un error en obrir el fitxer.",
"DE.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no shan pogut carregar. Torna a carregar la pàgina.",
"DE.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no s'han pogut carregar. Torneu a carregar la pàgina.",
"DE.ApplicationController.textAnonymous": "Anònim",
"DE.ApplicationController.textClear": "Esborra tots els camps",
"DE.ApplicationController.textCtrl": "Ctrl",
@ -37,22 +32,22 @@
"DE.ApplicationController.textLoadingDocument": "S'està carregant el document",
"DE.ApplicationController.textNext": "Camp següent",
"DE.ApplicationController.textOf": "de",
"DE.ApplicationController.textRequired": "Emplena tots els camps necessaris per enviar el formulari.",
"DE.ApplicationController.textSubmit": "Enviar",
"DE.ApplicationController.textSubmited": "<b>El formulari s'ha enviat amb èxit </b><br>Fes clic per a tancar el consell",
"DE.ApplicationController.txtClose": "Tancar",
"DE.ApplicationController.textRequired": "Empleneu tots els camps necessaris per enviar el formulari.",
"DE.ApplicationController.textSubmit": "Envia",
"DE.ApplicationController.textSubmited": "<b>El formulari s'ha enviat amb èxit</b><br>Feu clic per a tancar el consell",
"DE.ApplicationController.txtClose": "Tanca",
"DE.ApplicationController.txtEmpty": "(Buit)",
"DE.ApplicationController.txtPressLink": "Prem %1 i fes clic a l'enllaç",
"DE.ApplicationController.txtPressLink": "Premeu %1 i feu clic a l'enllaç",
"DE.ApplicationController.unknownErrorText": "Error desconegut.",
"DE.ApplicationController.unsupportedBrowserErrorText": "El navegador no és compatible.",
"DE.ApplicationController.waitText": "Espera...",
"DE.ApplicationView.txtDownload": "Baixar",
"DE.ApplicationView.txtDownloadDocx": "Baixar-ho com a .docx",
"DE.ApplicationView.txtDownloadPdf": "Baixar-ho com a .pdf",
"DE.ApplicationView.txtEmbed": "Incrustar",
"DE.ApplicationController.unsupportedBrowserErrorText": "El vostre navegador no és compatible.",
"DE.ApplicationController.waitText": "Espereu...",
"DE.ApplicationView.txtDownload": "Baixa",
"DE.ApplicationView.txtDownloadDocx": "Baixa-ho com a .docx",
"DE.ApplicationView.txtDownloadPdf": "Baixa-ho com a .pdf",
"DE.ApplicationView.txtEmbed": "Incrusta",
"DE.ApplicationView.txtFileLocation": "Obre la ubicació del fitxer",
"DE.ApplicationView.txtFullScreen": "Pantalla completa",
"DE.ApplicationView.txtPrint": "Imprimir",
"DE.ApplicationView.txtSearch": "Cercar",
"DE.ApplicationView.txtShare": "Compartir"
"DE.ApplicationView.txtPrint": "Imprimeix",
"DE.ApplicationView.txtSearch": "Cerca",
"DE.ApplicationView.txtShare": "Comparteix"
}

View File

@ -4,7 +4,6 @@
"common.view.modals.txtHeight": "Højde",
"common.view.modals.txtShare": "Del link",
"common.view.modals.txtWidth": "Bredde",
"common.view.SearchBar.textFind": "Find",
"DE.ApplicationController.convertationErrorText": "Konvertering fejlede.",
"DE.ApplicationController.convertationTimeoutText": "Konverteringstidsfrist er overskredet",
"DE.ApplicationController.criticalErrorTitle": "Fejl",
@ -19,14 +18,13 @@
"DE.ApplicationController.errorLoadingFont": "Skrifttyper er ikke indlæst.<br>Kontakt din dokument server administrator.",
"DE.ApplicationController.errorSubmit": "Send mislykkedes.",
"DE.ApplicationController.errorTokenExpire": "Dokumentets sikkerhedstoken er udløbet.<br>Kontakt venligst din Document Server administrator. ",
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "Internetforbindelsen er blevet genoprettet og filversionen er blevet ændret.<br>Før du kan fortsætte arbejdet, skal du hente filen eller kopiere indholdet for at sikre, at intet vil blive tabt - og derefter genindlæse denne side.",
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "Internetforbindelsen er blevet genoprettet, og filversionen er blevet ændret.<br>Før du kan fortsætte arbejdet, skal du hente filen eller kopiere indholdet for at sikre, at intet vil blive tabt - og derefter genindlæse denne side.",
"DE.ApplicationController.errorUserDrop": "Der kan ikke opnås adgang til filen lige nu. ",
"DE.ApplicationController.notcriticalErrorTitle": "Advarsel",
"DE.ApplicationController.openErrorText": "Der skete en fejl under åbningen af filen",
"DE.ApplicationController.scriptLoadError": "Forbindelsen er for langsom, og nogle komponenter kunne ikke indlæses. Indlæs siden igen.",
"DE.ApplicationController.textAnonymous": "Anonym",
"DE.ApplicationController.textClear": "Ryd alle felter",
"DE.ApplicationController.textCtrl": "Ctrl",
"DE.ApplicationController.textGotIt": "Forstået",
"DE.ApplicationController.textGuest": "Gæst",
"DE.ApplicationController.textLoadingDocument": "Indlæser dokument",
@ -48,6 +46,5 @@
"DE.ApplicationView.txtFileLocation": "Åben filplacering",
"DE.ApplicationView.txtFullScreen": "Fuld skærm",
"DE.ApplicationView.txtPrint": "Udskriv",
"DE.ApplicationView.txtSearch": "Søg",
"DE.ApplicationView.txtShare": "Del"
}

View File

@ -16,11 +16,6 @@
"DE.ApplicationController.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.",
"DE.ApplicationController.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung.<br>Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.",
"DE.ApplicationController.errorForceSave": "Beim Speichern der Datei ist ein Fehler aufgetreten. Verwenden Sie die Option \"Herunterladen als\", um die Datei auf Ihrer Computerfestplatte zu speichern oder versuchen Sie es später erneut.",
"DE.ApplicationController.errorInconsistentExt": "Beim Öffnen der Datei ist ein Fehler aufgetreten.<br>Der Inhalt der Datei stimmt nicht mit der Dateierweiterung überein.",
"DE.ApplicationController.errorInconsistentExtDocx": "Beim Öffnen der Datei ist ein Fehler aufgetreten.<br>Der Inhalt der Datei entspricht Textdokumenten (z.B. docx), aber die Datei hat die inkonsistente Erweiterung: %1.",
"DE.ApplicationController.errorInconsistentExtPdf": "Beim Öffnen der Datei ist ein Fehler aufgetreten.<br>Der Inhalt der Datei entspricht einem der folgenden Formate: pdf/djvu/xps/oxps, aber die Datei hat die inkonsistente Erweiterung: %1.",
"DE.ApplicationController.errorInconsistentExtPptx": "Beim Öffnen der Datei ist ein Fehler aufgetreten.<br>Der Inhalt der Datei entspricht Präsentationen (z.B. pptx), aber die Datei hat die inkonsistente Erweiterung: %1.",
"DE.ApplicationController.errorInconsistentExtXlsx": "Beim Öffnen der Datei ist ein Fehler aufgetreten.<br>Der Inhalt der Datei entspricht Tabellenkalkulationen (z.B. xlsx), aber die Datei hat die inkonsistente Erweiterung: %1.",
"DE.ApplicationController.errorLoadingFont": "Schriftarten nicht hochgeladen.<br>Bitte wenden Sie sich an Administratoren von Ihrem Document Server.",
"DE.ApplicationController.errorSubmit": "Fehler beim Senden.",
"DE.ApplicationController.errorTokenExpire": "Sicherheitstoken des Dokuments ist abgelaufen.<br>Wenden Sie sich an Ihren Serveradministrator.",

View File

@ -16,11 +16,6 @@
"DE.ApplicationController.errorFilePassProtect": "Το αρχείο προστατεύεται με συνθηματικό και δεν μπορεί να ανοίξει.",
"DE.ApplicationController.errorFileSizeExceed": "Το μέγεθος του αρχείου υπερβαίνει το όριο που έχει οριστεί για τον διακομιστή σας.<br>Παρακαλούμε επικοινωνήστε με τον διαχειριστή του διακομιστή εγγράφων για λεπτομέρειες.",
"DE.ApplicationController.errorForceSave": "Παρουσιάστηκε σφάλμα κατά την αποθήκευση του αρχείου. Χρησιμοποιήστε την επιλογή «Λήψη ως» για να αποθηκεύσετε το αρχείο στον σκληρό δίσκο του υπολογιστή σας ή δοκιμάστε ξανά αργότερα.",
"DE.ApplicationController.errorInconsistentExt": "Συνέβη ένα σφάλμα κατά το άνοιγμα του αρχείου.<br>Τα περιεχόμενα του αρχείου δεν αντιστοιχούν στην κατάληξή του ονόματός του.",
"DE.ApplicationController.errorInconsistentExtDocx": "Συνέβη ένα σφάλμα κατά το άνοιγμα του αρχείου.<br>Τα περιεχόμενα του αρχείου αντιστοιχούν σε αρχεία κειμένου (π.χ. docx), αλλά το αρχείο έχει ασύμφωνη κατάληξη: %1.",
"DE.ApplicationController.errorInconsistentExtPdf": "Συνέβη ένα σφάλμα κατά το άνοιγμα του αρχείου.<br>Τα περιεχόμενα του αρχείου αντιστοιχούν σε μια από τις ακόλουθες μορφές: pdf/djvu/xps/oxps, αλλά το αρχείο έχει ασύμφωνη κατάληξη: %1.",
"DE.ApplicationController.errorInconsistentExtPptx": "Συνέβη ένα σφάλμα κατά το άνοιγμα του αρχείου.<br>Τα περιεχόμενα του αρχείου αντιστοιχούν σε παρουσιάσεις (π.χ. pptx), αλλά το αρχείο έχει ασύμφωνη κατάληξη: %1.",
"DE.ApplicationController.errorInconsistentExtXlsx": "Συνέβη ένα σφάλμα κατά το άνοιγμα του αρχείου.<br>Τα περιεχόμενα του αρχείου αντιστοιχούν σε παρουσιάσεις (π.χ. xlsx), αλλά το αρχείο έχει ασύμφωνη κατάληξη: %1.",
"DE.ApplicationController.errorLoadingFont": "Οι γραμματοσειρές δεν έχουν φορτωθεί.<br>Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων σας.",
"DE.ApplicationController.errorSubmit": "Η υποβολή απέτυχε.",
"DE.ApplicationController.errorTokenExpire": "Το κλειδί ασφαλείας του εγγράφου έληξε.<br>Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων.",
@ -31,7 +26,6 @@
"DE.ApplicationController.scriptLoadError": "Η σύνδεση είναι πολύ αργή, δεν ήταν δυνατή η φόρτωση ορισμένων στοιχείων. Φορτώστε ξανά τη σελίδα.",
"DE.ApplicationController.textAnonymous": "Ανώνυμος",
"DE.ApplicationController.textClear": "Εκκαθάριση Όλων των Πεδίων",
"DE.ApplicationController.textCtrl": "Ctrl",
"DE.ApplicationController.textGotIt": "Ελήφθη",
"DE.ApplicationController.textGuest": "Επισκέπτης",
"DE.ApplicationController.textLoadingDocument": "Φόρτωση εγγράφου",

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