Added unified '.gitattributes' file.

10.7.0-preview
Michael Keller 2019-10-01 15:02:11 +13:00 committed by mikeller
parent 79cf12a63d
commit af0f0b1155
91 changed files with 2577 additions and 2556 deletions

37
.gitattributes vendored
View File

@ -1,9 +1,30 @@
LICENSE text LICENSE text eol=lf
*.md text *.md text eol=lf
*.js text *.c text eol=lf
*.json text *.cc text eol=lf
*.html text *.h text eol=lf
*.css text *.cc text eol=lf
*.txt text *.S text eol=lf
*.s text eol=lf
*.hex -crlf -diff
*.elf -crlf -diff
*.ld text eol=lf
Makefile text eol=lf
*.mk text eol=lf
*.nomk text eol=lf
*.pl text eol=lf
*.js text eol=lf
*.json text eol=lf
*.html text eol=lf
*.css text eol=lf
*.svg text eol=lf
*.png -crlf -diff *.png -crlf -diff
*.svg -crlf -diff *.yml text eol=lf
*.xml text eol=lf
*.mcm text eol=lf
*.nsi text eol=lf
*.nsh text eol=lf
*.lua text eol=lf
*.txt text eol=lf
*.sh text eol=lf
*.config text eol=lf

View File

@ -1,377 +1,377 @@
/* /*
NSIS Uninstaller Data NSIS Uninstaller Data
Copyright 2014 Aleksandr Ivankiv Copyright 2014 Aleksandr Ivankiv
Modified by the Betaflight Team project to let it be used out of the uninstall section Modified by the Betaflight Team project to let it be used out of the uninstall section
*/ */
;-------------------------------- ;--------------------------------
!ifndef UNINST_INCLUDED !ifndef UNINST_INCLUDED
!define UNINST_INCLUDED !define UNINST_INCLUDED
!verbose push !verbose push
!verbose 3 !verbose 3
!ifndef UNINST_VERBOSE !ifndef UNINST_VERBOSE
!define UNINST_VERBOSE 3 !define UNINST_VERBOSE 3
!endif !endif
!verbose ${UNINST_VERBOSE} !verbose ${UNINST_VERBOSE}
;-------------------------------- ;--------------------------------
;Header files required by Uninstaller Data ;Header files required by Uninstaller Data
!include "FileFunc.nsh" !include "FileFunc.nsh"
!include "TextFunc.nsh" !include "TextFunc.nsh"
;-------------------------------- ;--------------------------------
;Variables ;Variables
Var List Var List
Var Log Var Log
Var Tmp Var Tmp
Var UNINST_DAT Var UNINST_DAT
Var UNINST_EXE Var UNINST_EXE
Var UNINST_DEL_FILE Var UNINST_DEL_FILE
;-------------------------------- ;--------------------------------
;Default language strings ;Default language strings
!define UNINST_EXCLUDE_ERROR_DEFAULT "Error creating an exclusion list." !define UNINST_EXCLUDE_ERROR_DEFAULT "Error creating an exclusion list."
!define UNINST_DATA_ERROR_DEFAULT "Error creating the uninstaller data: $\r$\nCannot find an exclusion list." !define UNINST_DATA_ERROR_DEFAULT "Error creating the uninstaller data: $\r$\nCannot find an exclusion list."
!define UNINST_DAT_NOT_FOUND_DEFAULT "$UNINST_DAT not found, unable to perform uninstall. Manually delete files." !define UNINST_DAT_NOT_FOUND_DEFAULT "$UNINST_DAT not found, unable to perform uninstall. Manually delete files."
!define UNINST_DAT_MISSING_DEFAULT "$UNINST_DAT is missing, some elements could not be removed. These can be removed manually." !define UNINST_DAT_MISSING_DEFAULT "$UNINST_DAT is missing, some elements could not be removed. These can be removed manually."
!define UNINST_DEL_FILE_DEFAULT "Delete File" !define UNINST_DEL_FILE_DEFAULT "Delete File"
;-------------------------------- ;--------------------------------
;Language strings macro ;Language strings macro
!macro SETSTRING NAME !macro SETSTRING NAME
!ifndef "${NAME}" !ifndef "${NAME}"
!ifdef UNINST_LOCALIZE !ifdef UNINST_LOCALIZE
!define "${NAME}" "$(${NAME})" !define "${NAME}" "$(${NAME})"
!else !else
!define "${NAME}" "${${NAME}_DEFAULT}" !define "${NAME}" "${${NAME}_DEFAULT}"
!endif !endif
!endif !endif
!macroend !macroend
;-------------------------------- ;--------------------------------
;Initialization macro ;Initialization macro
!macro UNINST_INIT !macro UNINST_INIT
;Default settings ;Default settings
!ifndef UninstName !ifndef UninstName
!define UninstName "Uninstall" !define UninstName "Uninstall"
!endif !endif
!ifndef UninstHeader !ifndef UninstHeader
!define UninstHeader "=========== Uninstaller Data please do not edit this file ===========" !define UninstHeader "=========== Uninstaller Data please do not edit this file ==========="
!endif !endif
!insertmacro SETSTRING "UNINST_EXCLUDE_ERROR" !insertmacro SETSTRING "UNINST_EXCLUDE_ERROR"
!insertmacro SETSTRING "UNINST_DATA_ERROR" !insertmacro SETSTRING "UNINST_DATA_ERROR"
!insertmacro SETSTRING "UNINST_DAT_NOT_FOUND" !insertmacro SETSTRING "UNINST_DAT_NOT_FOUND"
!insertmacro SETSTRING "UNINST_DAT_MISSING" !insertmacro SETSTRING "UNINST_DAT_MISSING"
!insertmacro SETSTRING "UNINST_DEL_FILE" !insertmacro SETSTRING "UNINST_DEL_FILE"
StrCpy $UNINST_DEL_FILE "${UNINST_DEL_FILE}" StrCpy $UNINST_DEL_FILE "${UNINST_DEL_FILE}"
StrCpy $UNINST_DAT "$OUTDIR\${UninstName}.dat" StrCpy $UNINST_DAT "$OUTDIR\${UninstName}.dat"
StrCpy $UNINST_EXE "$OUTDIR\${UninstName}.exe" StrCpy $UNINST_EXE "$OUTDIR\${UninstName}.exe"
!macroend !macroend
;-------------------------------- ;--------------------------------
;Change name of file ;Change name of file
!macro UNINST_NAME Name !macro UNINST_NAME Name
!ifdef UninstName !ifdef UninstName
!undef UninstName !undef UninstName
!define UninstName "${Name}" !define UninstName "${Name}"
!else !else
!define UninstName "${Name}" !define UninstName "${Name}"
!endif !endif
!insertmacro UNINST_INIT !insertmacro UNINST_INIT
!macroend !macroend
;-------------------------------- ;--------------------------------
;Create an exclusion list ;Create an exclusion list
!macro UNINSTALLER_DATA_BEGIN !macro UNINSTALLER_DATA_BEGIN
!insertmacro UNINST_EXCLUDE !insertmacro UNINST_EXCLUDE
!macroend !macroend
!macro UNINST_EXCLUDE !macro UNINST_EXCLUDE
!verbose push !verbose push
!verbose ${UNINST_VERBOSE} !verbose ${UNINST_VERBOSE}
!insertmacro UNINST_INIT !insertmacro UNINST_INIT
StrCmp "$PLUGINSDIR" "" 0 +2 StrCmp "$PLUGINSDIR" "" 0 +2
InitPluginsDir InitPluginsDir
GetTempFileName $Tmp $PLUGINSDIR GetTempFileName $Tmp $PLUGINSDIR
IfErrors 0 UninstExclude IfErrors 0 UninstExclude
!ifndef UNINST_ERROR !ifndef UNINST_ERROR
!define UNINST_ERROR !define UNINST_ERROR
MessageBox MB_OK|MB_ICONEXCLAMATION "${UNINST_EXCLUDE_ERROR}" /SD IDOK MessageBox MB_OK|MB_ICONEXCLAMATION "${UNINST_EXCLUDE_ERROR}" /SD IDOK
Goto +3 Goto +3
!endif !endif
UninstExclude: UninstExclude:
FileOpen $List "$Tmp" w FileOpen $List "$Tmp" w
${Locate} "$OUTDIR" "/L=FD" "${ExcludeList_Func_CallBack}" ${Locate} "$OUTDIR" "/L=FD" "${ExcludeList_Func_CallBack}"
FileClose $List FileClose $List
!verbose pop !verbose pop
!macroend !macroend
!macro UNINST_FUNCTION_EXCLUDELIST !macro UNINST_FUNCTION_EXCLUDELIST
Function ExcludeList Function ExcludeList
FileWrite $List "$R9$\r$\n" FileWrite $List "$R9$\r$\n"
Push $0 Push $0
FunctionEnd FunctionEnd
!macroend !macroend
!ifndef ExcludeList_Func_CallBack !ifndef ExcludeList_Func_CallBack
!insertmacro UNINST_FUNCTION_EXCLUDELIST !insertmacro UNINST_FUNCTION_EXCLUDELIST
!define ExcludeList_Func_CallBack "ExcludeList" !define ExcludeList_Func_CallBack "ExcludeList"
!endif !endif
;---------------------------------------------------------------- ;----------------------------------------------------------------
;Write Uninstaller Data ;Write Uninstaller Data
!macro UNINSTALLER_DATA_END !macro UNINSTALLER_DATA_END
!insertmacro UNINST_DATA !insertmacro UNINST_DATA
!macroend !macroend
!macro UNINST_DATA !macro UNINST_DATA
!verbose push !verbose push
!verbose ${UNINST_VERBOSE} !verbose ${UNINST_VERBOSE}
!insertmacro UNINST_INIT !insertmacro UNINST_INIT
IfFileExists "$Tmp" UninstData IfFileExists "$Tmp" UninstData
!ifndef UNINST_ERROR !ifndef UNINST_ERROR
!define UNINST_ERROR !define UNINST_ERROR
${GetFileName} "$UNINST_DAT" $R0 ${GetFileName} "$UNINST_DAT" $R0
MessageBox MB_OK|MB_ICONEXCLAMATION "${UNINST_DATA_ERROR}" /SD IDOK MessageBox MB_OK|MB_ICONEXCLAMATION "${UNINST_DATA_ERROR}" /SD IDOK
!endif !endif
Goto DoneUninstData Goto DoneUninstData
UninstData: UninstData:
FileOpen $Log "$UNINST_DAT" a FileOpen $Log "$UNINST_DAT" a
FileOpen $List "$Tmp" r FileOpen $List "$Tmp" r
FileRead $Log $1 FileRead $Log $1
IfErrors 0 +2 IfErrors 0 +2
FileWrite $Log "${UninstHeader}$\r$\n" FileWrite $Log "${UninstHeader}$\r$\n"
${Locate} "$OUTDIR" "/L=FD" "${UninstallData_Func_CallBack}" ${Locate} "$OUTDIR" "/L=FD" "${UninstallData_Func_CallBack}"
FileClose $List FileClose $List
FileClose $Log FileClose $Log
DoneUninstData: DoneUninstData:
StrCpy $Tmp "" StrCpy $Tmp ""
!verbose pop !verbose pop
!macroend !macroend
!macro UNINST_FUNCTION_UNINSTDATA !macro UNINST_FUNCTION_UNINSTDATA
Function UninstallData Function UninstallData
StrCmp $R9 $UNINST_DAT Done StrCmp $R9 $UNINST_DAT Done
FileSeek $List 0 SET FileSeek $List 0 SET
LoopReadList: LoopReadList:
FileRead $List $1 ${NSIS_MAX_STRLEN} FileRead $List $1 ${NSIS_MAX_STRLEN}
IfErrors DoneReadList IfErrors DoneReadList
${TrimNewLines} $1 $R0 ${TrimNewLines} $1 $R0
StrCmp $R0 $R9 Done StrCmp $R0 $R9 Done
Goto LoopReadList Goto LoopReadList
DoneReadList: DoneReadList:
FileSeek $Log 0 SET FileSeek $Log 0 SET
LoopReadLog: LoopReadLog:
FileRead $Log $1 ${NSIS_MAX_STRLEN} FileRead $Log $1 ${NSIS_MAX_STRLEN}
IfErrors DoneReadLog IfErrors DoneReadLog
${TrimNewLines} $1 $R0 ${TrimNewLines} $1 $R0
StrCmp $R0 $R9 Done StrCmp $R0 $R9 Done
Goto LoopReadLog Goto LoopReadLog
DoneReadLog: DoneReadLog:
FileSeek $Log 0 END FileSeek $Log 0 END
FileWrite $Log "$R9$\r$\n" FileWrite $Log "$R9$\r$\n"
Done: Done:
Push $0 Push $0
FunctionEnd FunctionEnd
!macroend !macroend
!ifndef UninstallData_Func_CallBack !ifndef UninstallData_Func_CallBack
!insertmacro UNINST_FUNCTION_UNINSTDATA !insertmacro UNINST_FUNCTION_UNINSTDATA
!define UninstallData_Func_CallBack "UninstallData" !define UninstallData_Func_CallBack "UninstallData"
!endif !endif
;---------------------------------------------------------------- ;----------------------------------------------------------------
;Uninstall Files ;Uninstall Files
!macro INST_DELETE Path Name !macro INST_DELETE Path Name
!insertmacro UNINST_DELETE_MULTIPLE ${Path} ${Name} "" !insertmacro UNINST_DELETE_MULTIPLE ${Path} ${Name} ""
!macroend !macroend
!macro UNINST_DELETE Path Name !macro UNINST_DELETE Path Name
!insertmacro UNINST_DELETE_MULTIPLE ${Path} ${Name} "un." !insertmacro UNINST_DELETE_MULTIPLE ${Path} ${Name} "un."
!macroend !macroend
!macro UNINST_DELETE_MULTIPLE Path Name un !macro UNINST_DELETE_MULTIPLE Path Name un
!verbose push !verbose push
!verbose ${UNINST_VERBOSE} !verbose ${UNINST_VERBOSE}
!if "${Path}" == "" !if "${Path}" == ""
StrCpy $OUTDIR "$INSTDIR" StrCpy $OUTDIR "$INSTDIR"
!else !else
StrCpy $OUTDIR "${Path}" StrCpy $OUTDIR "${Path}"
!endif !endif
!if "${Name}" == "" !if "${Name}" == ""
!insertmacro UNINST_NAME "Uninstall" !insertmacro UNINST_NAME "Uninstall"
!else !else
!insertmacro UNINST_NAME "${Name}" !insertmacro UNINST_NAME "${Name}"
!endif !endif
!insertmacro UNINST_INIT !insertmacro UNINST_INIT
IfFileExists "$UNINST_DAT" +3 IfFileExists "$UNINST_DAT" +3
!ifdef UNINST_TERMINATE !ifdef UNINST_TERMINATE
MessageBox MB_OK|MB_ICONSTOP "${UNINST_DAT_NOT_FOUND}" /SD IDOK MessageBox MB_OK|MB_ICONSTOP "${UNINST_DAT_NOT_FOUND}" /SD IDOK
Quit Quit
!else !else
MessageBox MB_OK|MB_ICONEXCLAMATION "${UNINST_DAT_MISSING}" /SD IDOK MessageBox MB_OK|MB_ICONEXCLAMATION "${UNINST_DAT_MISSING}" /SD IDOK
StrCpy $0 "error" StrCpy $0 "error"
!endif !endif
${If} $0 != "error" ${If} $0 != "error"
FileOpen $Log "$UNINST_DAT" r FileOpen $Log "$UNINST_DAT" r
Call ${un}DeleteList Call ${un}DeleteList
FileClose $Log FileClose $Log
Delete "$UNINST_DAT" Delete "$UNINST_DAT"
!ifdef UNINST_INTERACTIVE !ifdef UNINST_INTERACTIVE
${Locate} "$OUTDIR" "/L=F" "${un.InterActive_Func_CallBack}" ${Locate} "$OUTDIR" "/L=F" "${un.InterActive_Func_CallBack}"
${Locate} "$OUTDIR" "/L=DE" "${un.InterActive_Func_CallBack}" ${Locate} "$OUTDIR" "/L=DE" "${un.InterActive_Func_CallBack}"
!else !else
Call ${un}InterActive Call ${un}InterActive
!endif !endif
${Else} ${Else}
StrCpy $0 "" StrCpy $0 ""
${EndIf} ${EndIf}
Delete "$UNINST_EXE" Delete "$UNINST_EXE"
RMDir $OUTDIR RMDir $OUTDIR
ClearErrors ClearErrors
!verbose pop !verbose pop
!macroend !macroend
!macro UNINST_FUNCTION_DELETE un !macro UNINST_FUNCTION_DELETE un
Function ${un}DeleteList Function ${un}DeleteList
LoopReadFile: LoopReadFile:
FileRead $Log $1 ${NSIS_MAX_STRLEN} FileRead $Log $1 ${NSIS_MAX_STRLEN}
IfErrors DoneReadFile IfErrors DoneReadFile
${TrimNewLines} $1 $R0 ${TrimNewLines} $1 $R0
IfFileExists $R0\*.* +3 IfFileExists $R0\*.* +3
IfFileExists $R0 0 +2 IfFileExists $R0 0 +2
Delete $R0 Delete $R0
Goto LoopReadFile Goto LoopReadFile
DoneReadFile: DoneReadFile:
FileSeek $Log 0 SET FileSeek $Log 0 SET
LoopReadDIR: LoopReadDIR:
FileRead $Log $1 ${NSIS_MAX_STRLEN} FileRead $Log $1 ${NSIS_MAX_STRLEN}
IfErrors DoneReadDIR IfErrors DoneReadDIR
${TrimNewLines} $1 $R0 ${TrimNewLines} $1 $R0
IfFileExists $R0\*.* 0 +3 IfFileExists $R0\*.* 0 +3
RMDir $R0 RMDir $R0
ClearErrors ClearErrors
Goto LoopReadDIR Goto LoopReadDIR
DoneReadDIR: DoneReadDIR:
FunctionEnd FunctionEnd
!macroend !macroend
!insertmacro UNINST_FUNCTION_DELETE "" !insertmacro UNINST_FUNCTION_DELETE ""
!insertmacro UNINST_FUNCTION_DELETE "un." !insertmacro UNINST_FUNCTION_DELETE "un."
!macro UNINST_FUNCTION_INTERACTIVE un !macro UNINST_FUNCTION_INTERACTIVE un
Function ${un}InterActive Function ${un}InterActive
StrCmp $R9 "" +8 StrCmp $R9 "" +8
IfFileExists $R9\*.* 0 +3 IfFileExists $R9\*.* 0 +3
RMDir $R9 RMDir $R9
Goto +4 Goto +4
StrCmp $R9 $UNINST_EXE +3 StrCmp $R9 $UNINST_EXE +3
MessageBox MB_YESNO|MB_ICONQUESTION|MB_DEFBUTTON2 "$UNINST_DEL_FILE '$R9'?" /SD IDNO IDNO +2 MessageBox MB_YESNO|MB_ICONQUESTION|MB_DEFBUTTON2 "$UNINST_DEL_FILE '$R9'?" /SD IDNO IDNO +2
Delete $R9 Delete $R9
Push $0 Push $0
FunctionEnd FunctionEnd
!macroend !macroend
!ifndef un.InterActive_Func_CallBack !ifndef un.InterActive_Func_CallBack
!insertmacro UNINST_FUNCTION_INTERACTIVE "un." !insertmacro UNINST_FUNCTION_INTERACTIVE "un."
!define un.InterActive_Func_CallBack "un.InterActive" !define un.InterActive_Func_CallBack "un.InterActive"
!endif !endif
!ifndef InterActive_Func_CallBack !ifndef InterActive_Func_CallBack
!insertmacro UNINST_FUNCTION_INTERACTIVE "" !insertmacro UNINST_FUNCTION_INTERACTIVE ""
!define InterActive_Func_CallBack "InterActive" !define InterActive_Func_CallBack "InterActive"
!endif !endif
!verbose pop !verbose pop
!endif !endif

View File

@ -1,213 +1,213 @@
!include "MUI2.nsh" !include "MUI2.nsh"
!include "FileFunc.nsh" !include "FileFunc.nsh"
!include "LogicLib.nsh" !include "LogicLib.nsh"
!include "UnInst.nsh" !include "UnInst.nsh"
# Receives variables from the command line # Receives variables from the command line
# ${VERSION} - Version to generate (x.y.z) # ${VERSION} - Version to generate (x.y.z)
# ${PLATFORM} - Platform to generate (win32 or win64) # ${PLATFORM} - Platform to generate (win32 or win64)
# ${DEST_FOLDER} - Destination folder for the installer files # ${DEST_FOLDER} - Destination folder for the installer files
# Some definitions # Some definitions
!define SOURCE_FILES "..\..\apps\betaflight-configurator\${PLATFORM}\*" !define SOURCE_FILES "..\..\apps\betaflight-configurator\${PLATFORM}\*"
!define APP_NAME "Betaflight Configurator" !define APP_NAME "Betaflight Configurator"
!define COMPANY_NAME "The Betaflight open source project." !define COMPANY_NAME "The Betaflight open source project."
!define GROUP_NAME "Betaflight" !define GROUP_NAME "Betaflight"
!define FOLDER_NAME "Betaflight-Configurator" !define FOLDER_NAME "Betaflight-Configurator"
!define FILE_NAME_INSTALLER "betaflight-configurator-installer_${VERSION}_${PLATFORM}.exe" !define FILE_NAME_INSTALLER "betaflight-configurator-installer_${VERSION}_${PLATFORM}.exe"
!define FILE_NAME_UNINSTALLER "uninstall-betaflight-configurator.exe" !define FILE_NAME_UNINSTALLER "uninstall-betaflight-configurator.exe"
!define FILE_NAME_EXECUTABLE "betaflight-configurator.exe" !define FILE_NAME_EXECUTABLE "betaflight-configurator.exe"
!define LICENSE "..\..\LICENSE" !define LICENSE "..\..\LICENSE"
!define MUI_WELCOMEFINISHPAGE_BITMAP ".\bf_installer.bmp" !define MUI_WELCOMEFINISHPAGE_BITMAP ".\bf_installer.bmp"
Name "${APP_NAME}" Name "${APP_NAME}"
BrandingText "${COMPANY_NAME}" BrandingText "${COMPANY_NAME}"
# set the icon # set the icon
!define MUI_ICON ".\bf_installer_icon.ico" !define MUI_ICON ".\bf_installer_icon.ico"
!define MUI_UNICON ".\bf_uninstaller_icon.ico" !define MUI_UNICON ".\bf_uninstaller_icon.ico"
#Define uninstall list name #Define uninstall list name
!define UninstName "uninbf00" !define UninstName "uninbf00"
# Request rights user level # Request rights user level
RequestExecutionLevel highest RequestExecutionLevel highest
# define the resulting installer's name: # define the resulting installer's name:
OutFile "..\..\${DEST_FOLDER}\${FILE_NAME_INSTALLER}" OutFile "..\..\${DEST_FOLDER}\${FILE_NAME_INSTALLER}"
# app dialogs # app dialogs
!insertmacro MUI_PAGE_WELCOME !insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_PAGE_LICENSE ${LICENSE} !insertmacro MUI_PAGE_LICENSE ${LICENSE}
!insertmacro MUI_PAGE_DIRECTORY !insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES !insertmacro MUI_PAGE_INSTFILES
!define MUI_FINISHPAGE_RUN "$INSTDIR\${FILE_NAME_EXECUTABLE}" !define MUI_FINISHPAGE_RUN "$INSTDIR\${FILE_NAME_EXECUTABLE}"
!insertmacro MUI_PAGE_FINISH !insertmacro MUI_PAGE_FINISH
!insertmacro MUI_LANGUAGE "English" !insertmacro MUI_LANGUAGE "English"
!insertmacro MUI_LANGUAGE "Catalan" !insertmacro MUI_LANGUAGE "Catalan"
!insertmacro MUI_LANGUAGE "Croatian" !insertmacro MUI_LANGUAGE "Croatian"
!insertmacro MUI_LANGUAGE "French" !insertmacro MUI_LANGUAGE "French"
!insertmacro MUI_LANGUAGE "Galician" !insertmacro MUI_LANGUAGE "Galician"
!insertmacro MUI_LANGUAGE "German" !insertmacro MUI_LANGUAGE "German"
!insertmacro MUI_LANGUAGE "Indonesian" !insertmacro MUI_LANGUAGE "Indonesian"
!insertmacro MUI_LANGUAGE "Italian" !insertmacro MUI_LANGUAGE "Italian"
!insertmacro MUI_LANGUAGE "Japanese" !insertmacro MUI_LANGUAGE "Japanese"
!insertmacro MUI_LANGUAGE "Korean" !insertmacro MUI_LANGUAGE "Korean"
!insertmacro MUI_LANGUAGE "Latvian" !insertmacro MUI_LANGUAGE "Latvian"
!insertmacro MUI_LANGUAGE "Portuguese" !insertmacro MUI_LANGUAGE "Portuguese"
!insertmacro MUI_LANGUAGE "Russian" !insertmacro MUI_LANGUAGE "Russian"
!insertmacro MUI_LANGUAGE "SimpChinese" !insertmacro MUI_LANGUAGE "SimpChinese"
!insertmacro MUI_LANGUAGE "Spanish" !insertmacro MUI_LANGUAGE "Spanish"
!insertmacro MUI_LANGUAGE "Swedish" !insertmacro MUI_LANGUAGE "Swedish"
# detect default install folder # detect default install folder
Function .onInit Function .onInit
# Check if older version # Check if older version
ReadRegStr $R0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" \ ReadRegStr $R0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" \
"InstallLocation" "InstallLocation"
${If} $R0 != "" ${If} $R0 != ""
StrCpy $INSTDIR $R0 StrCpy $INSTDIR $R0
${Else} ${Else}
# Check if older version without administrative rights # Check if older version without administrative rights
ReadRegStr $R1 HKCU "Software\${GROUP_NAME}\${APP_NAME}" \ ReadRegStr $R1 HKCU "Software\${GROUP_NAME}\${APP_NAME}" \
"InstallLocation" "InstallLocation"
${If} $R1 != "" ${If} $R1 != ""
StrCpy $INSTDIR $R1 StrCpy $INSTDIR $R1
${Else} ${Else}
# New version, select default folder # New version, select default folder
UserInfo::GetAccountType UserInfo::GetAccountType
Pop $R2 Pop $R2
${If} $R2 == "Admin" ${If} $R2 == "Admin"
# set the default installation directory # set the default installation directory
!if ${PLATFORM} == 'win64' !if ${PLATFORM} == 'win64'
StrCpy $INSTDIR "$PROGRAMFILES64\${GROUP_NAME}\${FOLDER_NAME}\" StrCpy $INSTDIR "$PROGRAMFILES64\${GROUP_NAME}\${FOLDER_NAME}\"
!else !else
StrCpy $INSTDIR "$PROGRAMFILES\${GROUP_NAME}\${FOLDER_NAME}\" StrCpy $INSTDIR "$PROGRAMFILES\${GROUP_NAME}\${FOLDER_NAME}\"
!endif !endif
${Else} ${Else}
StrCpy $INSTDIR "$DOCUMENTS\${GROUP_NAME}\${FOLDER_NAME}\" StrCpy $INSTDIR "$DOCUMENTS\${GROUP_NAME}\${FOLDER_NAME}\"
${Endif} ${Endif}
${Endif} ${Endif}
${Endif} ${Endif}
FunctionEnd FunctionEnd
# default section start # default section start
Section Section
# remove the older version, users with admin rights # remove the older version, users with admin rights
ReadRegStr $R3 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" \ ReadRegStr $R3 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" \
"InstallLocation" "InstallLocation"
${If} $R3 != "" ${If} $R3 != ""
# delete the installed files of the older version # delete the installed files of the older version
!insertmacro INST_DELETE $R3 "${UninstName}" !insertmacro INST_DELETE $R3 "${UninstName}"
# remove installation folder if empty # remove installation folder if empty
RMDir "$R3" RMDir "$R3"
${Else} ${Else}
# remove the older version, users without admin rights # remove the older version, users without admin rights
ReadRegStr $R4 HKCU "Software\${GROUP_NAME}\${APP_NAME}" \ ReadRegStr $R4 HKCU "Software\${GROUP_NAME}\${APP_NAME}" \
"InstallLocation" "InstallLocation"
${If} $R4 != "" ${If} $R4 != ""
# delete the installed files of the older version # delete the installed files of the older version
!insertmacro INST_DELETE $R4 "${UninstName}" !insertmacro INST_DELETE $R4 "${UninstName}"
# remove installation folder if empty # remove installation folder if empty
RMDir "$R4" RMDir "$R4"
${EndIf} ${EndIf}
${EndIf} ${EndIf}
# the english shortcut is not installed in actual versions, remove the deletion in a future release # the english shortcut is not installed in actual versions, remove the deletion in a future release
Delete "$SMPROGRAMS\${GROUP_NAME}\${FOLDER_NAME}\${APP_NAME} (English).lnk" Delete "$SMPROGRAMS\${GROUP_NAME}\${FOLDER_NAME}\${APP_NAME} (English).lnk"
# if the registry entries did not exist, we ignore the errors # if the registry entries did not exist, we ignore the errors
ClearErrors ClearErrors
# define the path to which the installer should install # define the path to which the installer should install
SetOutPath $INSTDIR SetOutPath $INSTDIR
# create an exclusion list for the uninstaller # create an exclusion list for the uninstaller
!insertmacro UNINSTALLER_DATA_BEGIN !insertmacro UNINSTALLER_DATA_BEGIN
# specify the files to go in the output path # specify the files to go in the output path
File /r ${SOURCE_FILES} File /r ${SOURCE_FILES}
# create the uninstaller # create the uninstaller
WriteUninstaller "$INSTDIR\${FILE_NAME_UNINSTALLER}" WriteUninstaller "$INSTDIR\${FILE_NAME_UNINSTALLER}"
# store uninstaller data # store uninstaller data
!insertmacro UNINSTALLER_DATA_END !insertmacro UNINSTALLER_DATA_END
# create shortcuts in the start menu and on the desktop # create shortcuts in the start menu and on the desktop
CreateDirectory "$SMPROGRAMS\${GROUP_NAME}\${FOLDER_NAME}" CreateDirectory "$SMPROGRAMS\${GROUP_NAME}\${FOLDER_NAME}"
CreateShortCut "$SMPROGRAMS\${GROUP_NAME}\${FOLDER_NAME}\${APP_NAME}.lnk" "$INSTDIR\${FILE_NAME_EXECUTABLE}" "" "$INSTDIR\images\bf_icon.ico" "0" "" "" "" CreateShortCut "$SMPROGRAMS\${GROUP_NAME}\${FOLDER_NAME}\${APP_NAME}.lnk" "$INSTDIR\${FILE_NAME_EXECUTABLE}" "" "$INSTDIR\images\bf_icon.ico" "0" "" "" ""
CreateShortCut "$SMPROGRAMS\${GROUP_NAME}\${FOLDER_NAME}\Uninstall ${APP_NAME}.lnk" "$INSTDIR\${FILE_NAME_UNINSTALLER}" CreateShortCut "$SMPROGRAMS\${GROUP_NAME}\${FOLDER_NAME}\Uninstall ${APP_NAME}.lnk" "$INSTDIR\${FILE_NAME_UNINSTALLER}"
CreateShortCut "$DESKTOP\${APP_NAME}.lnk" "$INSTDIR\${FILE_NAME_EXECUTABLE}" "" "$INSTDIR\images\bf_icon.ico" "0" "" "" "" CreateShortCut "$DESKTOP\${APP_NAME}.lnk" "$INSTDIR\${FILE_NAME_EXECUTABLE}" "" "$INSTDIR\images\bf_icon.ico" "0" "" "" ""
# include in add/remove programs # include in add/remove programs
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" \ WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" \
"Publisher" "${COMPANY_NAME}" "Publisher" "${COMPANY_NAME}"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" \ WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" \
"DisplayName" "${APP_NAME}" "DisplayName" "${APP_NAME}"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" \ WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" \
"DisplayIcon" "$\"$INSTDIR\${FILE_NAME_EXECUTABLE}$\"" "DisplayIcon" "$\"$INSTDIR\${FILE_NAME_EXECUTABLE}$\""
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" \ WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" \
"UninstallString" "$\"$INSTDIR\${FILE_NAME_UNINSTALLER}$\"" "UninstallString" "$\"$INSTDIR\${FILE_NAME_UNINSTALLER}$\""
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" \ WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" \
"InstallLocation" "$INSTDIR" "InstallLocation" "$INSTDIR"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" \ WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" \
"DisplayVersion" "${VERSION}" "DisplayVersion" "${VERSION}"
# include for users without admin rights # include for users without admin rights
WriteRegStr HKCU "Software\${GROUP_NAME}\${APP_NAME}" \ WriteRegStr HKCU "Software\${GROUP_NAME}\${APP_NAME}" \
"InstallLocation" "$INSTDIR" "InstallLocation" "$INSTDIR"
# estimate the size # estimate the size
${GetSize} "$INSTDIR" "/S=0K" $0 $1 $2 ${GetSize} "$INSTDIR" "/S=0K" $0 $1 $2
IntFmt $0 "0x%08X" $0 IntFmt $0 "0x%08X" $0
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" \ WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" \
"EstimatedSize" "$0" "EstimatedSize" "$0"
SectionEnd SectionEnd
# create a section to define what the uninstaller does # create a section to define what the uninstaller does
Section "Uninstall" Section "Uninstall"
# terminate uninstaller if the .dat file does not exist # terminate uninstaller if the .dat file does not exist
!define UNINST_TERMINATE !define UNINST_TERMINATE
# delete files # delete files
!insertmacro UNINST_DELETE "$INSTDIR" "${UninstName}" !insertmacro UNINST_DELETE "$INSTDIR" "${UninstName}"
# remove installation folder if it is empty # remove installation folder if it is empty
RMDir "$INSTDIR" RMDir "$INSTDIR"
# delete the shortcuts # delete the shortcuts
# the english shortcut is not installed in actual versions, remove the deletion in a future release # the english shortcut is not installed in actual versions, remove the deletion in a future release
Delete "$SMPROGRAMS\${GROUP_NAME}\${FOLDER_NAME}\${APP_NAME}.lnk" Delete "$SMPROGRAMS\${GROUP_NAME}\${FOLDER_NAME}\${APP_NAME}.lnk"
Delete "$SMPROGRAMS\${GROUP_NAME}\${FOLDER_NAME}\${APP_NAME} (English).lnk" Delete "$SMPROGRAMS\${GROUP_NAME}\${FOLDER_NAME}\${APP_NAME} (English).lnk"
Delete "$SMPROGRAMS\${GROUP_NAME}\${FOLDER_NAME}\Uninstall ${APP_NAME}.lnk" Delete "$SMPROGRAMS\${GROUP_NAME}\${FOLDER_NAME}\Uninstall ${APP_NAME}.lnk"
RMDir "$SMPROGRAMS\${GROUP_NAME}\${FOLDER_NAME}" RMDir "$SMPROGRAMS\${GROUP_NAME}\${FOLDER_NAME}"
RMDir "$SMPROGRAMS\${GROUP_NAME}" RMDir "$SMPROGRAMS\${GROUP_NAME}"
Delete "$DESKTOP\${APP_NAME}.lnk" Delete "$DESKTOP\${APP_NAME}.lnk"
# remove from registry # remove from registry
DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}"
DeleteRegKey HKCU "Software\${GROUP_NAME}\${APP_NAME}" DeleteRegKey HKCU "Software\${GROUP_NAME}\${APP_NAME}"
DeleteRegKey /ifempty HKCU "Software\${GROUP_NAME}" DeleteRegKey /ifempty HKCU "Software\${GROUP_NAME}"
SectionEnd SectionEnd

View File

@ -1,24 +1,24 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.0" <svg version="1.0"
id="svg5730" sodipodi:docname="ic_settings_24px.svg" inkscape:version="0.48.5 r10040" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" id="svg5730" sodipodi:docname="ic_settings_24px.svg" inkscape:version="0.48.5 r10040" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-59 59.7 22 22" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-59 59.7 22 22"
enable-background="new -59 59.7 22 22" xml:space="preserve"> enable-background="new -59 59.7 22 22" xml:space="preserve">
<title id="title5799">CF_Settings_Icon</title> <title id="title5799">CF_Settings_Icon</title>
<sodipodi:namedview id="namedview5733" inkscape:window-width="1061" inkscape:window-y="0" inkscape:window-x="0" inkscape:pageopacity="0" fit-margin-right="0" inkscape:pageshadow="2" inkscape:window-height="855" inkscape:current-layer="svg5730" fit-margin-bottom="0" inkscape:window-maximized="0" gridtolerance="10" inkscape:zoom="19.072019" fit-margin-left="0" bordercolor="#666666" inkscape:cx="10.164105" inkscape:cy="10.532446" fit-margin-top="0" borderopacity="1" objecttolerance="10" guidetolerance="10" showgrid="false" pagecolor="#ffffff"> <sodipodi:namedview id="namedview5733" inkscape:window-width="1061" inkscape:window-y="0" inkscape:window-x="0" inkscape:pageopacity="0" fit-margin-right="0" inkscape:pageshadow="2" inkscape:window-height="855" inkscape:current-layer="svg5730" fit-margin-bottom="0" inkscape:window-maximized="0" gridtolerance="10" inkscape:zoom="19.072019" fit-margin-left="0" bordercolor="#666666" inkscape:cx="10.164105" inkscape:cy="10.532446" fit-margin-top="0" borderopacity="1" objecttolerance="10" guidetolerance="10" showgrid="false" pagecolor="#ffffff">
</sodipodi:namedview> </sodipodi:namedview>
<g> <g>
<path d="M-45.4,68.9l-0.4-0.9c0,0,0.9-2,0.8-2.1l-1.2-1.2c-0.1-0.1-2.1,0.9-2.1,0.9l-0.9-0.4c0,0-0.8-2.1-1-2.1h-1.7 <path d="M-45.4,68.9l-0.4-0.9c0,0,0.9-2,0.8-2.1l-1.2-1.2c-0.1-0.1-2.1,0.9-2.1,0.9l-0.9-0.4c0,0-0.8-2.1-1-2.1h-1.7
c-0.1,0-0.9,2.1-0.9,2.1l-0.9,0.4c0,0-2.1-0.9-2.2-0.8l-1.2,1.2c-0.1,0.1,0.9,2.1,0.9,2.1l-0.4,0.9c0,0-2.1,0.8-2.1,0.9v1.7 c-0.1,0-0.9,2.1-0.9,2.1l-0.9,0.4c0,0-2.1-0.9-2.2-0.8l-1.2,1.2c-0.1,0.1,0.9,2.1,0.9,2.1l-0.4,0.9c0,0-2.1,0.8-2.1,0.9v1.7
c0,0.1,2.1,0.9,2.1,0.9l0.4,0.9c0,0-0.9,2.1-0.8,2.1l1.2,1.2c0.1,0.1,2.1-0.9,2.1-0.9l0.9,0.4c0,0,0.8,2.1,1,2.1h1.7 c0,0.1,2.1,0.9,2.1,0.9l0.4,0.9c0,0-0.9,2.1-0.8,2.1l1.2,1.2c0.1,0.1,2.1-0.9,2.1-0.9l0.9,0.4c0,0,0.8,2.1,1,2.1h1.7
c0.1,0,0.9-2.1,0.9-2.1l0.9-0.4c0,0,2.1,0.9,2.2,0.8l1.2-1.2c0.1-0.1-0.9-2.1-0.9-2.1l0.4-0.9c0,0,2.1-0.8,2.1-0.9v-1.7 c0.1,0,0.9-2.1,0.9-2.1l0.9-0.4c0,0,2.1,0.9,2.2,0.8l1.2-1.2c0.1-0.1-0.9-2.1-0.9-2.1l0.4-0.9c0,0,2.1-0.8,2.1-0.9v-1.7
C-43.3,69.6-45.4,68.9-45.4,68.9z M-51,73c-1.4,0-2.5-1.1-2.5-2.4c0-1.3,1.1-2.4,2.5-2.4c1.4,0,2.5,1.1,2.5,2.4 C-43.3,69.6-45.4,68.9-45.4,68.9z M-51,73c-1.4,0-2.5-1.1-2.5-2.4c0-1.3,1.1-2.4,2.5-2.4c1.4,0,2.5,1.1,2.5,2.4
C-48.5,71.9-49.7,73-51,73z"/> C-48.5,71.9-49.7,73-51,73z"/>
<path d="M-38.3,66.9l0-0.5c0,0,0.8-0.7,0.8-0.8l-0.3-0.8c0-0.1-1.1,0-1.1,0l-0.3-0.4c0,0,0-1.1,0-1.1l-0.7-0.3 <path d="M-38.3,66.9l0-0.5c0,0,0.8-0.7,0.8-0.8l-0.3-0.8c0-0.1-1.1,0-1.1,0l-0.3-0.4c0,0,0-1.1,0-1.1l-0.7-0.3
c-0.1,0-0.8,0.7-0.8,0.7l-0.5,0c0,0-0.7-0.8-0.8-0.8l-0.8,0.3c-0.1,0,0,1.1,0,1.1l-0.4,0.3c0,0-1.1-0.1-1.1,0l-0.3,0.7 c-0.1,0-0.8,0.7-0.8,0.7l-0.5,0c0,0-0.7-0.8-0.8-0.8l-0.8,0.3c-0.1,0,0,1.1,0,1.1l-0.4,0.3c0,0-1.1-0.1-1.1,0l-0.3,0.7
c0,0.1,0.8,0.8,0.8,0.8l0,0.5c0,0-0.8,0.7-0.8,0.8l0.3,0.8c0,0.1,1.1,0,1.1,0l0.3,0.4c0,0,0,1.1,0,1.1l0.7,0.3 c0,0.1,0.8,0.8,0.8,0.8l0,0.5c0,0-0.8,0.7-0.8,0.8l0.3,0.8c0,0.1,1.1,0,1.1,0l0.3,0.4c0,0,0,1.1,0,1.1l0.7,0.3
c0.1,0,0.8-0.7,0.8-0.7l0.5,0c0,0,0.7,0.8,0.8,0.8l0.8-0.3c0.1,0,0-1.1,0-1.1l0.4-0.3c0,0,1.1,0.1,1.1,0l0.3-0.7 c0.1,0,0.8-0.7,0.8-0.7l0.5,0c0,0,0.7,0.8,0.8,0.8l0.8-0.3c0.1,0,0-1.1,0-1.1l0.4-0.3c0,0,1.1,0.1,1.1,0l0.3-0.7
C-37.5,67.7-38.3,66.9-38.3,66.9z M-40,67.1c-0.3,0.6-1,0.8-1.6,0.6c-0.6-0.3-0.9-1-0.6-1.6c0.3-0.6,1-0.8,1.6-0.6 C-37.5,67.7-38.3,66.9-38.3,66.9z M-40,67.1c-0.3,0.6-1,0.8-1.6,0.6c-0.6-0.3-0.9-1-0.6-1.6c0.3-0.6,1-0.8,1.6-0.6
C-40,65.8-39.8,66.5-40,67.1z"/> C-40,65.8-39.8,66.5-40,67.1z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -1,22 +1,22 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.0" <svg version="1.0"
id="svg5730" sodipodi:docname="ic_settings_24px.svg" inkscape:version="0.48.5 r10040" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" id="svg5730" sodipodi:docname="ic_settings_24px.svg" inkscape:version="0.48.5 r10040" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 141.7 141.7" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 141.7 141.7"
enable-background="new 0 0 141.7 141.7" xml:space="preserve"> enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<title id="title5799">CF_Settings_Icon</title> <title id="title5799">CF_Settings_Icon</title>
<sodipodi:namedview id="namedview5733" inkscape:window-width="1061" inkscape:window-y="0" inkscape:window-x="0" inkscape:pageopacity="0" fit-margin-right="0" inkscape:pageshadow="2" inkscape:window-height="855" inkscape:current-layer="svg5730" fit-margin-bottom="0" inkscape:window-maximized="0" gridtolerance="10" inkscape:zoom="19.072019" fit-margin-left="0" bordercolor="#666666" inkscape:cx="10.164105" inkscape:cy="10.532446" fit-margin-top="0" borderopacity="1" objecttolerance="10" guidetolerance="10" showgrid="false" pagecolor="#ffffff"> <sodipodi:namedview id="namedview5733" inkscape:window-width="1061" inkscape:window-y="0" inkscape:window-x="0" inkscape:pageopacity="0" fit-margin-right="0" inkscape:pageshadow="2" inkscape:window-height="855" inkscape:current-layer="svg5730" fit-margin-bottom="0" inkscape:window-maximized="0" gridtolerance="10" inkscape:zoom="19.072019" fit-margin-left="0" bordercolor="#666666" inkscape:cx="10.164105" inkscape:cy="10.532446" fit-margin-top="0" borderopacity="1" objecttolerance="10" guidetolerance="10" showgrid="false" pagecolor="#ffffff">
</sodipodi:namedview> </sodipodi:namedview>
<g> <g>
<path fill="#FFFFFF" d="M88.6,67L86,61.2c0,0,5.8-12.9,5.2-13.5L83.5,40C82.9,39.4,70,45.8,70,45.8l-5.8-2.6c0,0-5.2-13.5-6.4-13.5 <path fill="#FFFFFF" d="M88.6,67L86,61.2c0,0,5.8-12.9,5.2-13.5L83.5,40C82.9,39.4,70,45.8,70,45.8l-5.8-2.6c0,0-5.2-13.5-6.4-13.5
h-11c-0.6,0-5.8,13.5-5.8,13.5l-5.8,2.6c0,0-13.5-5.8-14.2-5.2l-7.7,7.7C12.6,48.9,19,61.8,19,61.8l-2.6,5.8c0,0-13.5,5.2-13.5,5.8 h-11c-0.6,0-5.8,13.5-5.8,13.5l-5.8,2.6c0,0-13.5-5.8-14.2-5.2l-7.7,7.7C12.6,48.9,19,61.8,19,61.8l-2.6,5.8c0,0-13.5,5.2-13.5,5.8
v11c0,0.6,13.5,5.8,13.5,5.8L19,96c0,0-5.8,13.5-5.2,13.5l7.7,7.7c0.6,0.6,13.5-5.8,13.5-5.8l5.8,2.6c0,0,5.2,13.5,6.4,13.5h11 v11c0,0.6,13.5,5.8,13.5,5.8L19,96c0,0-5.8,13.5-5.2,13.5l7.7,7.7c0.6,0.6,13.5-5.8,13.5-5.8l5.8,2.6c0,0,5.2,13.5,6.4,13.5h11
c0.6,0,5.8-13.5,5.8-13.5l5.8-2.6c0,0,13.5,5.8,14.2,5.2l7.7-7.7c0.6-0.6-5.8-13.5-5.8-13.5l2.6-5.8c0,0,13.5-5.2,13.5-5.8v-11 c0.6,0,5.8-13.5,5.8-13.5l5.8-2.6c0,0,13.5,5.8,14.2,5.2l7.7-7.7c0.6-0.6-5.8-13.5-5.8-13.5l2.6-5.8c0,0,13.5-5.2,13.5-5.8v-11
C102.1,71.5,88.6,67,88.6,67z M52.5,93.4c-9,0-16.1-7.1-16.1-15.5s7.1-15.5,16.1-15.5s16.1,7.1,16.1,15.5S60.9,93.4,52.5,93.4z"/> C102.1,71.5,88.6,67,88.6,67z M52.5,93.4c-9,0-16.1-7.1-16.1-15.5s7.1-15.5,16.1-15.5s16.1,7.1,16.1,15.5S60.9,93.4,52.5,93.4z"/>
<path fill="#FFFFFF" d="M134.4,54.1v-3.2c0,0,5.2-4.5,5.2-5.2l-1.9-5.2c0-0.6-7.1,0-7.1,0l-1.9-2.6v-7.1L124,29 <path fill="#FFFFFF" d="M134.4,54.1v-3.2c0,0,5.2-4.5,5.2-5.2l-1.9-5.2c0-0.6-7.1,0-7.1,0l-1.9-2.6v-7.1L124,29
c-0.6,0-5.2,4.5-5.2,4.5h-3.2c0,0-4.5-5.2-5.2-5.2l-5.2,1.9c-0.6,0,0,7.1,0,7.1l-2.6,1.9c0,0-7.1-0.6-7.1,0l-1.9,4.5 c-0.6,0-5.2,4.5-5.2,4.5h-3.2c0,0-4.5-5.2-5.2-5.2l-5.2,1.9c-0.6,0,0,7.1,0,7.1l-2.6,1.9c0,0-7.1-0.6-7.1,0l-1.9,4.5
c0,0.6,5.2,5.2,5.2,5.2v3.2c0,0-5.2,4.5-5.2,5.2l1.9,5.2c0,0.6,7.1,0,7.1,0l1.9,2.6v7.1l4.5,1.9c0.6,0,5.2-4.5,5.2-4.5h3.2 c0,0.6,5.2,5.2,5.2,5.2v3.2c0,0-5.2,4.5-5.2,5.2l1.9,5.2c0,0.6,7.1,0,7.1,0l1.9,2.6v7.1l4.5,1.9c0.6,0,5.2-4.5,5.2-4.5h3.2
c0,0,4.5,5.2,5.2,5.2l5.2-1.9c0.6,0,0-7.1,0-7.1l2.6-1.9c0,0,7.1,0.6,7.1,0l1.9-4.5C139.5,59.2,134.4,54.1,134.4,54.1z M123.4,55.4 c0,0,4.5,5.2,5.2,5.2l5.2-1.9c0.6,0,0-7.1,0-7.1l2.6-1.9c0,0,7.1,0.6,7.1,0l1.9-4.5C139.5,59.2,134.4,54.1,134.4,54.1z M123.4,55.4
c-1.9,3.9-6.4,5.2-10.3,3.9c-3.9-1.9-5.8-6.4-3.9-10.3c1.9-3.9,6.4-5.2,10.3-3.9C123.4,47,124.7,51.5,123.4,55.4z"/> c-1.9,3.9-6.4,5.2-10.3,3.9c-3.9-1.9-5.8-6.4-3.9-10.3c1.9-3.9,6.4-5.2,10.3-3.9C123.4,47,124.7,51.5,123.4,55.4z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -1,19 +1,19 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="164 -236.3 612 612" style="enable-background:new 164 -236.3 612 612;" xml:space="preserve"> viewBox="164 -236.3 612 612" style="enable-background:new 164 -236.3 612 612;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#FFBB00;} .st0{fill:#FFBB00;}
</style> </style>
<g> <g>
<g id="Right"> <g id="Right">
<g> <g>
<path class="st0" d="M441.6-57.9L441.6-57.9c-5.2-4.6-11.9-7.6-19.4-7.6c-15.8,0-28.7,12.9-28.7,28.7c0,8.4,3.6,15.8,9.4,21.1 <path class="st0" d="M441.6-57.9L441.6-57.9c-5.2-4.6-11.9-7.6-19.4-7.6c-15.8,0-28.7,12.9-28.7,28.7c0,8.4,3.6,15.8,9.4,21.1
l-0.1,0.1l91.7,84l-91.7,84.1l0.1,0.1c-5.7,5.2-9.4,12.7-9.4,21.1c0,15.8,12.9,28.7,28.7,28.7c7.5,0,14.2-2.9,19.3-7.6l0.1,0.1 l-0.1,0.1l91.7,84l-91.7,84.1l0.1,0.1c-5.7,5.2-9.4,12.7-9.4,21.1c0,15.8,12.9,28.7,28.7,28.7c7.5,0,14.2-2.9,19.3-7.6l0.1,0.1
L556.3,89.6c5.9-5.5,9.3-13.1,9.3-21.2s-3.4-15.7-9.3-21.2L441.6-57.9z M470-237.6c-169,0-306,137-306,306s137,306,306,306 L556.3,89.6c5.9-5.5,9.3-13.1,9.3-21.2s-3.4-15.7-9.3-21.2L441.6-57.9z M470-237.6c-169,0-306,137-306,306s137,306,306,306
s306-137,306-306S639-237.6,470-237.6z M470,317.1c-137.1,0-248.6-111.5-248.6-248.6S332.9-180.2,470-180.2 s306-137,306-306S639-237.6,470-237.6z M470,317.1c-137.1,0-248.6-111.5-248.6-248.6S332.9-180.2,470-180.2
S718.6-68.7,718.6,68.4S607.1,317.1,470,317.1z"/> S718.6-68.7,718.6,68.4S607.1,317.1,470,317.1z"/>
</g> </g>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1023 B

After

Width:  |  Height:  |  Size: 1004 B

View File

@ -1,47 +1,47 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="-70 61.5 141.7 18.2" style="enable-background:new -70 61.5 141.7 18.2;" xml:space="preserve"> viewBox="-70 61.5 141.7 18.2" style="enable-background:new -70 61.5 141.7 18.2;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#FFBB00;} .st0{fill:#FFBB00;}
.st1{fill:#424242;} .st1{fill:#424242;}
.st2{fill:#3A3A3A;} .st2{fill:#3A3A3A;}
</style> </style>
<g> <g>
<g> <g>
<path class="st0" d="M-19.5,70.1h4.1c2,0,2,1.1,1.7,1.9s-0.8,1.2-1.4,1.5c0.6,0.2,1,0.8,0.6,1.9c-0.5,1.5-2.1,2.3-3.4,2.3h-4.2 <path class="st0" d="M-19.5,70.1h4.1c2,0,2,1.1,1.7,1.9s-0.8,1.2-1.4,1.5c0.6,0.2,1,0.8,0.6,1.9c-0.5,1.5-2.1,2.3-3.4,2.3h-4.2
L-19.5,70.1z M-19.2,75.8h1.4c0.5,0,0.9-0.1,1.2-0.7c0.2-0.4,0-0.7-0.6-0.7h-1.4L-19.2,75.8z M-18.2,73h1.2c0.5,0,0.8-0.1,1-0.6 L-19.5,70.1z M-19.2,75.8h1.4c0.5,0,0.9-0.1,1.2-0.7c0.2-0.4,0-0.7-0.6-0.7h-1.4L-19.2,75.8z M-18.2,73h1.2c0.5,0,0.8-0.1,1-0.6
c0.1-0.4-0.1-0.5-0.6-0.5h-1.2L-18.2,73z"/> c0.1-0.4-0.1-0.5-0.6-0.5h-1.2L-18.2,73z"/>
<path class="st0" d="M-11.6,70.1h6.2L-6.1,72H-10l-0.3,0.9h3.5l-0.6,1.8h-3.5l-0.3,0.9h4l-0.7,1.9h-6.3L-11.6,70.1z"/> <path class="st0" d="M-11.6,70.1h6.2L-6.1,72H-10l-0.3,0.9h3.5l-0.6,1.8h-3.5l-0.3,0.9h4l-0.7,1.9h-6.3L-11.6,70.1z"/>
<path class="st0" d="M-3.2,72h-2.1l0.7-1.9h6.5L1.2,72h-2.1l-2,5.6h-2.3L-3.2,72z"/> <path class="st0" d="M-3.2,72h-2.1l0.7-1.9h6.5L1.2,72h-2.1l-2,5.6h-2.3L-3.2,72z"/>
<path class="st0" d="M4,70.1h2.3l0.1,7.5H3.9L4,76.5H1.6l-0.7,1.1h-2.3L4,70.1z M4.1,74.9l0.1-2.3l0,0l-1.5,2.3H4.1z"/> <path class="st0" d="M4,70.1h2.3l0.1,7.5H3.9L4,76.5H1.6l-0.7,1.1h-2.3L4,70.1z M4.1,74.9l0.1-2.3l0,0l-1.5,2.3H4.1z"/>
<path class="st1" d="M9.6,70.1h5.8L14.7,72h-3.5l-0.3,0.9h3l-0.6,1.8h-3l-1,2.9H7L9.6,70.1z"/> <path class="st1" d="M9.6,70.1h5.8L14.7,72h-3.5l-0.3,0.9h3l-0.6,1.8h-3l-1,2.9H7L9.6,70.1z"/>
<path class="st1" d="M16.3,70.1h2.3l-2,5.6h3.3l-0.7,1.9h-5.6L16.3,70.1z"/> <path class="st1" d="M16.3,70.1h2.3l-2,5.6h3.3l-0.7,1.9h-5.6L16.3,70.1z"/>
<path class="st1" d="M22.7,70.1H25l-2.7,7.5H20L22.7,70.1z"/> <path class="st1" d="M22.7,70.1H25l-2.7,7.5H20L22.7,70.1z"/>
<path class="st1" d="M29.4,76.8c-0.7,0.7-1.6,0.9-2.5,0.9c-2.2,0-3-1.7-2.2-3.8c1-2.9,3.4-4,5.1-4c1.9,0,2.7,1,2.5,2.8h-2.2 <path class="st1" d="M29.4,76.8c-0.7,0.7-1.6,0.9-2.5,0.9c-2.2,0-3-1.7-2.2-3.8c1-2.9,3.4-4,5.1-4c1.9,0,2.7,1,2.5,2.8h-2.2
c0.1-0.5-0.2-0.9-0.8-0.9c-1.6,0-2.1,1.7-2.3,2.2c-0.2,0.7-0.4,1.9,1,1.9c0.5,0,1.2-0.3,1.5-0.8h-1l0.6-1.6h3.1l-1.5,4.1h-1.5 c0.1-0.5-0.2-0.9-0.8-0.9c-1.6,0-2.1,1.7-2.3,2.2c-0.2,0.7-0.4,1.9,1,1.9c0.5,0,1.2-0.3,1.5-0.8h-1l0.6-1.6h3.1l-1.5,4.1h-1.5
L29.4,76.8z"/> L29.4,76.8z"/>
<path class="st1" d="M34.6,70.1h2.3L36,72.7h2.2l0.9-2.6h2.3l-2.7,7.5h-2.3l1.1-3h-2.2l-1.1,3h-2.3L34.6,70.1z"/> <path class="st1" d="M34.6,70.1h2.3L36,72.7h2.2l0.9-2.6h2.3l-2.7,7.5h-2.3l1.1-3h-2.2l-1.1,3h-2.3L34.6,70.1z"/>
<path class="st1" d="M43.6,72h-2.1l0.7-1.9h6.5L48,72h-2.1l-2,5.6h-2.3L43.6,72z"/> <path class="st1" d="M43.6,72h-2.1l0.7-1.9h6.5L48,72h-2.1l-2,5.6h-2.3L43.6,72z"/>
</g> </g>
<g> <g>
<path class="st0" d="M-36.4,73.5c0,0-2.5,1.2-1.7,3.5c0.9,2.6,5.3,2.3,7.9,1.2c2.2-0.9,0.4-1.6,0.4-1.6l-2.3-1.3l-3.4-2.1 <path class="st0" d="M-36.4,73.5c0,0-2.5,1.2-1.7,3.5c0.9,2.6,5.3,2.3,7.9,1.2c2.2-0.9,0.4-1.6,0.4-1.6l-2.3-1.3l-3.4-2.1
L-36.4,73.5z"/> L-36.4,73.5z"/>
<path class="st2" d="M-30.3,75.5c-1.7-0.7-2.9-1.7-4-2.2c0.6-0.3,1.2-0.7,1.6-1c0.4-0.4,0.5-0.8,0.5-1.3c1.2,0.8,2.7,0.9,3.5,0.9 <path class="st2" d="M-30.3,75.5c-1.7-0.7-2.9-1.7-4-2.2c0.6-0.3,1.2-0.7,1.6-1c0.4-0.4,0.5-0.8,0.5-1.3c1.2,0.8,2.7,0.9,3.5,0.9
c0.8,0,1.5,0.2,1.7,0.6c0,0,0.2-4.2-8.4-7c0,0,2.6,1.2,3.4,2.1c0,0-0.9-0.1-1.3,0.5c-0.2,0.3-0.2,0.8-0.1,1.3 c0.8,0,1.5,0.2,1.7,0.6c0,0,0.2-4.2-8.4-7c0,0,2.6,1.2,3.4,2.1c0,0-0.9-0.1-1.3,0.5c-0.2,0.3-0.2,0.8-0.1,1.3
c-0.1,0-0.3,0-0.5-0.1l-13.7-7.6l1.4,3.1l-1.4-0.5l0.4,0.8c0,0,0.6,1.1,1.9,3.4c1,1.8,2.9,2.7,5.4,2.6c0.1,0,0.2,0,0.3,0 c-0.1,0-0.3,0-0.5-0.1l-13.7-7.6l1.4,3.1l-1.4-0.5l0.4,0.8c0,0,0.6,1.1,1.9,3.4c1,1.8,2.9,2.7,5.4,2.6c0.1,0,0.2,0,0.3,0
c0.6,0,1.6-0.1,2.5-0.2c-0.1,0.3-0.1,0.7,0,1.2c0.1,0.6,0.3,0.9,0.6,1.2c-0.7,0.3-1.4,1-1.7,1.8c0,0,0,0,0,0c0,0,0,0,0,0.1 c0.6,0,1.6-0.1,2.5-0.2c-0.1,0.3-0.1,0.7,0,1.2c0.1,0.6,0.3,0.9,0.6,1.2c-0.7,0.3-1.4,1-1.7,1.8c0,0,0,0,0,0c0,0,0,0,0,0.1
c0,0,0,0,0,0c-0.2,0.5-0.3,1.1,0,1.8c0,0,0,0,0,0c0,0.1,0.1,0.3,0.2,0.4c0.1,0.1,0.2,0.3,0.3,0.4c1.5,1.8,5.3,1.5,7.6,0.5 c0,0,0,0,0,0c-0.2,0.5-0.3,1.1,0,1.8c0,0,0,0,0,0c0,0.1,0.1,0.3,0.2,0.4c0.1,0.1,0.2,0.3,0.3,0.4c1.5,1.8,5.3,1.5,7.6,0.5
c0,0,0.1,0,0.1,0c0.2-0.1,0.4-0.2,0.6-0.3c0,0,0.1,0,0.1-0.1c0.2-0.1,0.4-0.2,0.6-0.3c2.3-1.4,3.1-2.9,3.1-2.9 c0,0,0.1,0,0.1,0c0.2-0.1,0.4-0.2,0.6-0.3c0,0,0.1,0,0.1-0.1c0.2-0.1,0.4-0.2,0.6-0.3c2.3-1.4,3.1-2.9,3.1-2.9
S-28.1,76.5-30.3,75.5z M-29.7,69.3c0.7,0.3,1.7,1.9,1.7,1.9c-0.8-0.1-2.5-0.7-2.7-1.3S-30.4,69-29.7,69.3z M-40.1,70.5 S-28.1,76.5-30.3,75.5z M-29.7,69.3c0.7,0.3,1.7,1.9,1.7,1.9c-0.8-0.1-2.5-0.7-2.7-1.3S-30.4,69-29.7,69.3z M-40.1,70.5
c-0.9,0-1.7-0.1-2.4-0.3c-1-0.4-1.8-1-2.3-2c-0.7-1.2-1.2-2-1.5-2.6l1.2,0.4l-1.2-2.7l10.8,6c-0.3,0-0.6,0.1-0.9,0.3l-6.9-2.8 c-0.9,0-1.7-0.1-2.4-0.3c-1-0.4-1.8-1-2.3-2c-0.7-1.2-1.2-2-1.5-2.6l1.2,0.4l-1.2-2.7l10.8,6c-0.3,0-0.6,0.1-0.9,0.3l-6.9-2.8
l6,3.4C-38.4,70.4-39.5,70.5-40.1,70.5z M-38.1,76.7c-0.1-0.5-0.1-0.9,0-1.3c0.6,0.4,1.6,0.7,2.9,0.2 l6,3.4C-38.4,70.4-39.5,70.5-40.1,70.5z M-38.1,76.7c-0.1-0.5-0.1-0.9,0-1.3c0.6,0.4,1.6,0.7,2.9,0.2
C-35.1,75.5-36.1,76.7-38.1,76.7z M-34.9,78.9c-0.4-0.1-0.9-0.2-1.3-0.3c-0.2-0.1-0.4-0.2-0.6-0.3c0.9-0.2,2-0.7,3-1.9 C-35.1,75.5-36.1,76.7-38.1,76.7z M-34.9,78.9c-0.4-0.1-0.9-0.2-1.3-0.3c-0.2-0.1-0.4-0.2-0.6-0.3c0.9-0.2,2-0.7,3-1.9
C-33.8,76.4-33.9,77.7-34.9,78.9z M-31.9,78.6c-0.2,0.1-0.5,0.1-0.7,0.2c0.4-0.3,0.8-0.7,0.8-1.4C-31.8,77.4-31.6,78.2-31.9,78.6z C-33.8,76.4-33.9,77.7-34.9,78.9z M-31.9,78.6c-0.2,0.1-0.5,0.1-0.7,0.2c0.4-0.3,0.8-0.7,0.8-1.4C-31.8,77.4-31.6,78.2-31.9,78.6z
M-28.7,77.1c-0.1-0.3-0.2-0.9-0.2-0.9c0.7,0.1,1.6-0.2,1.6-0.2C-27.9,76.6-28.7,77.1-28.7,77.1z"/> M-28.7,77.1c-0.1-0.3-0.2-0.9-0.2-0.9c0.7,0.1,1.6-0.2,1.6-0.2C-27.9,76.6-28.7,77.1-28.7,77.1z"/>
<path class="st0" d="M-34.1,69.8c0,0-2.5-0.6-2.9,1.3c-0.1,0.8,0.2,1.5,0.6,1.8c0.2-0.1,0.5-0.2,1-0.2c-0.1,0-0.3-0.3-0.4-0.6 <path class="st0" d="M-34.1,69.8c0,0-2.5-0.6-2.9,1.3c-0.1,0.8,0.2,1.5,0.6,1.8c0.2-0.1,0.5-0.2,1-0.2c-0.1,0-0.3-0.3-0.4-0.6
c0.2,0,0.4,0.1,0.6,0c0,0-0.6-0.2-0.8-0.9c0,0,0,0,0,0c0.1,0.1,0.2,0.1,0.3,0.1c0,0-0.5-0.4-0.1-0.9C-35.5,70.1-35,69.8-34.1,69.8 c0.2,0,0.4,0.1,0.6,0c0,0-0.6-0.2-0.8-0.9c0,0,0,0,0,0c0.1,0.1,0.2,0.1,0.3,0.1c0,0-0.5-0.4-0.1-0.9C-35.5,70.1-35,69.8-34.1,69.8
z"/> z"/>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -1,49 +1,49 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="-9 23.6 264.9 95.1" style="enable-background:new -9 23.6 264.9 95.1;" xml:space="preserve"> viewBox="-9 23.6 264.9 95.1" style="enable-background:new -9 23.6 264.9 95.1;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#FFBB00;} .st0{fill:#FFBB00;}
.st1{fill:none;} .st1{fill:none;}
.st2{fill:white;} .st2{fill:white;}
.st3{fill:none;stroke:#FCFCFC;stroke-miterlimit:10;} .st3{fill:none;stroke:#FCFCFC;stroke-miterlimit:10;}
.st4{fill:#1B171B;} .st4{fill:#1B171B;}
.st5{fill:#B8B8B9;} .st5{fill:#B8B8B9;}
</style> </style>
<g> <g>
<path class="st0" d="M6.8,90.9c-4.7,0-8.5,3.8-8.5,8.5S3.5,108,6.8,111c2.7-2.7,8.5-7,8.5-11.6C15.3,94.7,11.5,90.9,6.8,90.9z <path class="st0" d="M6.8,90.9c-4.7,0-8.5,3.8-8.5,8.5S3.5,108,6.8,111c2.7-2.7,8.5-7,8.5-11.6C15.3,94.7,11.5,90.9,6.8,90.9z
M10.1,102.5H8.2v-2.2H5.3v2.2H3.4v-6.2h1.9v2.2h2.9v-2.2h1.9V102.5z"/> M10.1,102.5H8.2v-2.2H5.3v2.2H3.4v-6.2h1.9v2.2h2.9v-2.2h1.9V102.5z"/>
<g> <g>
<rect x="180.7" y="54.6" class="st1" width="67.5" height="13.5"/> <rect x="180.7" y="54.6" class="st1" width="67.5" height="13.5"/>
<g class="st2"> <g class="st2">
<path d="M190.1,60.1c0,1.6-0.4,2.9-1.3,3.8c-0.9,0.9-2.2,1.3-3.9,1.3h-2.8v-10h3.1c1.6,0,2.8,0.4,3.6,1.3S190.1,58.6,190.1,60.1z <path d="M190.1,60.1c0,1.6-0.4,2.9-1.3,3.8c-0.9,0.9-2.2,1.3-3.9,1.3h-2.8v-10h3.1c1.6,0,2.8,0.4,3.6,1.3S190.1,58.6,190.1,60.1z
M188.9,60.2c0-1.3-0.3-2.3-1-2.9c-0.7-0.7-1.6-1-2.9-1h-1.7v8h1.4c1.4,0,2.4-0.3,3.1-1C188.5,62.5,188.9,61.5,188.9,60.2z"/> M188.9,60.2c0-1.3-0.3-2.3-1-2.9c-0.7-0.7-1.6-1-2.9-1h-1.7v8h1.4c1.4,0,2.4-0.3,3.1-1C188.5,62.5,188.9,61.5,188.9,60.2z"/>
<path d="M195.6,57.6c0.3,0,0.6,0,0.9,0.1l-0.2,1.1c-0.3-0.1-0.6-0.1-0.8-0.1c-0.6,0-1.1,0.2-1.6,0.7s-0.6,1.1-0.6,1.8v4h-1.1 <path d="M195.6,57.6c0.3,0,0.6,0,0.9,0.1l-0.2,1.1c-0.3-0.1-0.6-0.1-0.8-0.1c-0.6,0-1.1,0.2-1.6,0.7s-0.6,1.1-0.6,1.8v4h-1.1
v-7.5h0.9l0.1,1.4h0.1c0.3-0.5,0.6-0.9,1-1.1C194.7,57.7,195.1,57.6,195.6,57.6z"/> v-7.5h0.9l0.1,1.4h0.1c0.3-0.5,0.6-0.9,1-1.1C194.7,57.7,195.1,57.6,195.6,57.6z"/>
<path d="M204.3,61.5c0,1.2-0.3,2.2-0.9,2.9c-0.6,0.7-1.5,1-2.5,1c-0.7,0-1.3-0.2-1.8-0.5s-0.9-0.8-1.2-1.4 <path d="M204.3,61.5c0,1.2-0.3,2.2-0.9,2.9c-0.6,0.7-1.5,1-2.5,1c-0.7,0-1.3-0.2-1.8-0.5s-0.9-0.8-1.2-1.4
c-0.3-0.6-0.4-1.3-0.4-2.1c0-1.2,0.3-2.2,0.9-2.9c0.6-0.7,1.5-1,2.5-1s1.9,0.3,2.5,1C204,59.3,204.3,60.3,204.3,61.5z c-0.3-0.6-0.4-1.3-0.4-2.1c0-1.2,0.3-2.2,0.9-2.9c0.6-0.7,1.5-1,2.5-1s1.9,0.3,2.5,1C204,59.3,204.3,60.3,204.3,61.5z
M198.6,61.5c0,1,0.2,1.7,0.6,2.2c0.4,0.5,0.9,0.8,1.7,0.8c0.7,0,1.3-0.2,1.7-0.7c0.4-0.5,0.6-1.2,0.6-2.2s-0.2-1.7-0.6-2.2 M198.6,61.5c0,1,0.2,1.7,0.6,2.2c0.4,0.5,0.9,0.8,1.7,0.8c0.7,0,1.3-0.2,1.7-0.7c0.4-0.5,0.6-1.2,0.6-2.2s-0.2-1.7-0.6-2.2
c-0.4-0.5-1-0.7-1.7-0.7c-0.7,0-1.3,0.2-1.7,0.7C198.8,59.8,198.6,60.5,198.6,61.5z"/> c-0.4-0.5-1-0.7-1.7-0.7c-0.7,0-1.3,0.2-1.7,0.7C198.8,59.8,198.6,60.5,198.6,61.5z"/>
<path d="M209.8,65.4c-0.5,0-0.9-0.1-1.3-0.3c-0.4-0.2-0.7-0.5-1-0.8h-0.1c0.1,0.4,0.1,0.9,0.1,1.2v3.1h-1.1V57.7h0.9l0.2,1h0.1 <path d="M209.8,65.4c-0.5,0-0.9-0.1-1.3-0.3c-0.4-0.2-0.7-0.5-1-0.8h-0.1c0.1,0.4,0.1,0.9,0.1,1.2v3.1h-1.1V57.7h0.9l0.2,1h0.1
c0.3-0.4,0.6-0.7,1-0.9c0.4-0.2,0.8-0.3,1.3-0.3c1,0,1.8,0.3,2.3,1s0.8,1.6,0.8,2.9c0,1.2-0.3,2.2-0.8,2.9 c0.3-0.4,0.6-0.7,1-0.9c0.4-0.2,0.8-0.3,1.3-0.3c1,0,1.8,0.3,2.3,1s0.8,1.6,0.8,2.9c0,1.2-0.3,2.2-0.8,2.9
C211.5,65,210.8,65.4,209.8,65.4z M209.6,58.6c-0.8,0-1.3,0.2-1.7,0.6c-0.4,0.4-0.5,1.1-0.5,2v0.3c0,1.1,0.2,1.8,0.5,2.3 C211.5,65,210.8,65.4,209.8,65.4z M209.6,58.6c-0.8,0-1.3,0.2-1.7,0.6c-0.4,0.4-0.5,1.1-0.5,2v0.3c0,1.1,0.2,1.8,0.5,2.3
c0.4,0.5,0.9,0.7,1.7,0.7c0.6,0,1.2-0.3,1.5-0.8c0.4-0.5,0.5-1.2,0.5-2.2c0-0.9-0.2-1.7-0.5-2.1 c0.4,0.5,0.9,0.7,1.7,0.7c0.6,0,1.2-0.3,1.5-0.8c0.4-0.5,0.5-1.2,0.5-2.2c0-0.9-0.2-1.7-0.5-2.1
C210.8,58.8,210.3,58.6,209.6,58.6z"/> C210.8,58.8,210.3,58.6,209.6,58.6z"/>
</g> </g>
<line class="st3" x1="-3.8" y1="113.9" x2="251.2" y2="113.9"/> <line class="st3" x1="-3.8" y1="113.9" x2="251.2" y2="113.9"/>
<polygon points="242.7,105.2 229.4,108.8 238.7,83.8 217.4,112.5 187.4,107.8 206.7,113.8 234.1,113.8 "/> <polygon points="242.7,105.2 229.4,108.8 238.7,83.8 217.4,112.5 187.4,107.8 206.7,113.8 234.1,113.8 "/>
<g> <g>
<g> <g>
<path class="st0" d="M215.9,101.2c-2.5-0.9-5.1,0-6.7,1.9l-22.1-7.7l-1.3,3.8l22.1,7.7c0,2.5,1.5,4.8,4,5.6 <path class="st0" d="M215.9,101.2c-2.5-0.9-5.1,0-6.7,1.9l-22.1-7.7l-1.3,3.8l22.1,7.7c0,2.5,1.5,4.8,4,5.6
c3.1,1.1,6.6-0.6,7.6-3.7C220.5,105.7,219.1,102.3,215.9,101.2z"/> c3.1,1.1,6.6-0.6,7.6-3.7C220.5,105.7,219.1,102.3,215.9,101.2z"/>
<path class="st4" d="M176.9,80.1c-6.8-2.4-14.1-0.1-18.4,5.2l-20.7-7.2c0-2.5-1.6-4.8-4-5.6c-3.1-1.1-6.6,0.6-7.6,3.7 <path class="st4" d="M176.9,80.1c-6.8-2.4-14.1-0.1-18.4,5.2l-20.7-7.2c0-2.5-1.6-4.8-4-5.6c-3.1-1.1-6.6,0.6-7.6,3.7
c-1.1,3.1,0.6,6.6,3.7,7.6c2.5,0.9,5.1,0,6.7-1.9l19.8,6.9l30.1,10.5l1.2,0.4C189.5,91.5,185,83,176.9,80.1z"/> c-1.1,3.1,0.6,6.6,3.7,7.6c2.5,0.9,5.1,0,6.7-1.9l19.8,6.9l30.1,10.5l1.2,0.4C189.5,91.5,185,83,176.9,80.1z"/>
</g> </g>
<rect x="111.1" y="68.9" transform="matrix(-0.944 -0.3299 0.3299 -0.944 237.5038 181.0255)" class="st5" width="46" height="2.9"/> <rect x="111.1" y="68.9" transform="matrix(-0.944 -0.3299 0.3299 -0.944 237.5038 181.0255)" class="st5" width="46" height="2.9"/>
<rect x="192.8" y="97.5" transform="matrix(-0.944 -0.3299 0.3299 -0.944 386.8907 263.5779)" class="st5" width="46" height="2.9"/> <rect x="192.8" y="97.5" transform="matrix(-0.944 -0.3299 0.3299 -0.944 386.8907 263.5779)" class="st5" width="46" height="2.9"/>
</g> </g>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -1,49 +1,49 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="-9 23.6 264.9 95.1" style="enable-background:new -9 23.6 264.9 95.1;" xml:space="preserve"> viewBox="-9 23.6 264.9 95.1" style="enable-background:new -9 23.6 264.9 95.1;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#FFBB00;} .st0{fill:#FFBB00;}
.st1{fill:none;} .st1{fill:none;}
.st2{enable-background:new ;} .st2{enable-background:new ;}
.st3{fill:none;stroke:#1B171B;stroke-miterlimit:10;} .st3{fill:none;stroke:#1B171B;stroke-miterlimit:10;}
.st4{fill:#1B171B;} .st4{fill:#1B171B;}
.st5{fill:#B8B8B9;} .st5{fill:#B8B8B9;}
</style> </style>
<g> <g>
<path class="st0" d="M6.8,90.9c-4.7,0-8.5,3.8-8.5,8.5S3.5,108,6.8,111c2.7-2.7,8.5-7,8.5-11.6C15.3,94.7,11.5,90.9,6.8,90.9z <path class="st0" d="M6.8,90.9c-4.7,0-8.5,3.8-8.5,8.5S3.5,108,6.8,111c2.7-2.7,8.5-7,8.5-11.6C15.3,94.7,11.5,90.9,6.8,90.9z
M10.1,102.5H8.2v-2.2H5.3v2.2H3.4v-6.2h1.9v2.2h2.9v-2.2h1.9V102.5z"/> M10.1,102.5H8.2v-2.2H5.3v2.2H3.4v-6.2h1.9v2.2h2.9v-2.2h1.9V102.5z"/>
<g> <g>
<rect x="180.7" y="54.6" class="st1" width="67.5" height="13.5"/> <rect x="180.7" y="54.6" class="st1" width="67.5" height="13.5"/>
<g class="st2"> <g class="st2">
<path d="M190.1,60.1c0,1.6-0.4,2.9-1.3,3.8c-0.9,0.9-2.2,1.3-3.9,1.3h-2.8v-10h3.1c1.6,0,2.8,0.4,3.6,1.3S190.1,58.6,190.1,60.1z <path d="M190.1,60.1c0,1.6-0.4,2.9-1.3,3.8c-0.9,0.9-2.2,1.3-3.9,1.3h-2.8v-10h3.1c1.6,0,2.8,0.4,3.6,1.3S190.1,58.6,190.1,60.1z
M188.9,60.2c0-1.3-0.3-2.3-1-2.9c-0.7-0.7-1.6-1-2.9-1h-1.7v8h1.4c1.4,0,2.4-0.3,3.1-1C188.5,62.5,188.9,61.5,188.9,60.2z"/> M188.9,60.2c0-1.3-0.3-2.3-1-2.9c-0.7-0.7-1.6-1-2.9-1h-1.7v8h1.4c1.4,0,2.4-0.3,3.1-1C188.5,62.5,188.9,61.5,188.9,60.2z"/>
<path d="M195.6,57.6c0.3,0,0.6,0,0.9,0.1l-0.2,1.1c-0.3-0.1-0.6-0.1-0.8-0.1c-0.6,0-1.1,0.2-1.6,0.7s-0.6,1.1-0.6,1.8v4h-1.1 <path d="M195.6,57.6c0.3,0,0.6,0,0.9,0.1l-0.2,1.1c-0.3-0.1-0.6-0.1-0.8-0.1c-0.6,0-1.1,0.2-1.6,0.7s-0.6,1.1-0.6,1.8v4h-1.1
v-7.5h0.9l0.1,1.4h0.1c0.3-0.5,0.6-0.9,1-1.1C194.7,57.7,195.1,57.6,195.6,57.6z"/> v-7.5h0.9l0.1,1.4h0.1c0.3-0.5,0.6-0.9,1-1.1C194.7,57.7,195.1,57.6,195.6,57.6z"/>
<path d="M204.3,61.5c0,1.2-0.3,2.2-0.9,2.9c-0.6,0.7-1.5,1-2.5,1c-0.7,0-1.3-0.2-1.8-0.5s-0.9-0.8-1.2-1.4 <path d="M204.3,61.5c0,1.2-0.3,2.2-0.9,2.9c-0.6,0.7-1.5,1-2.5,1c-0.7,0-1.3-0.2-1.8-0.5s-0.9-0.8-1.2-1.4
c-0.3-0.6-0.4-1.3-0.4-2.1c0-1.2,0.3-2.2,0.9-2.9c0.6-0.7,1.5-1,2.5-1s1.9,0.3,2.5,1C204,59.3,204.3,60.3,204.3,61.5z c-0.3-0.6-0.4-1.3-0.4-2.1c0-1.2,0.3-2.2,0.9-2.9c0.6-0.7,1.5-1,2.5-1s1.9,0.3,2.5,1C204,59.3,204.3,60.3,204.3,61.5z
M198.6,61.5c0,1,0.2,1.7,0.6,2.2c0.4,0.5,0.9,0.8,1.7,0.8c0.7,0,1.3-0.2,1.7-0.7c0.4-0.5,0.6-1.2,0.6-2.2s-0.2-1.7-0.6-2.2 M198.6,61.5c0,1,0.2,1.7,0.6,2.2c0.4,0.5,0.9,0.8,1.7,0.8c0.7,0,1.3-0.2,1.7-0.7c0.4-0.5,0.6-1.2,0.6-2.2s-0.2-1.7-0.6-2.2
c-0.4-0.5-1-0.7-1.7-0.7c-0.7,0-1.3,0.2-1.7,0.7C198.8,59.8,198.6,60.5,198.6,61.5z"/> c-0.4-0.5-1-0.7-1.7-0.7c-0.7,0-1.3,0.2-1.7,0.7C198.8,59.8,198.6,60.5,198.6,61.5z"/>
<path d="M209.8,65.4c-0.5,0-0.9-0.1-1.3-0.3c-0.4-0.2-0.7-0.5-1-0.8h-0.1c0.1,0.4,0.1,0.9,0.1,1.2v3.1h-1.1V57.7h0.9l0.2,1h0.1 <path d="M209.8,65.4c-0.5,0-0.9-0.1-1.3-0.3c-0.4-0.2-0.7-0.5-1-0.8h-0.1c0.1,0.4,0.1,0.9,0.1,1.2v3.1h-1.1V57.7h0.9l0.2,1h0.1
c0.3-0.4,0.6-0.7,1-0.9c0.4-0.2,0.8-0.3,1.3-0.3c1,0,1.8,0.3,2.3,1s0.8,1.6,0.8,2.9c0,1.2-0.3,2.2-0.8,2.9 c0.3-0.4,0.6-0.7,1-0.9c0.4-0.2,0.8-0.3,1.3-0.3c1,0,1.8,0.3,2.3,1s0.8,1.6,0.8,2.9c0,1.2-0.3,2.2-0.8,2.9
C211.5,65,210.8,65.4,209.8,65.4z M209.6,58.6c-0.8,0-1.3,0.2-1.7,0.6c-0.4,0.4-0.5,1.1-0.5,2v0.3c0,1.1,0.2,1.8,0.5,2.3 C211.5,65,210.8,65.4,209.8,65.4z M209.6,58.6c-0.8,0-1.3,0.2-1.7,0.6c-0.4,0.4-0.5,1.1-0.5,2v0.3c0,1.1,0.2,1.8,0.5,2.3
c0.4,0.5,0.9,0.7,1.7,0.7c0.6,0,1.2-0.3,1.5-0.8c0.4-0.5,0.5-1.2,0.5-2.2c0-0.9-0.2-1.7-0.5-2.1 c0.4,0.5,0.9,0.7,1.7,0.7c0.6,0,1.2-0.3,1.5-0.8c0.4-0.5,0.5-1.2,0.5-2.2c0-0.9-0.2-1.7-0.5-2.1
C210.8,58.8,210.3,58.6,209.6,58.6z"/> C210.8,58.8,210.3,58.6,209.6,58.6z"/>
</g> </g>
<line class="st3" x1="-3.8" y1="113.9" x2="251.2" y2="113.9"/> <line class="st3" x1="-3.8" y1="113.9" x2="251.2" y2="113.9"/>
<polygon points="242.7,105.2 229.4,108.8 238.7,83.8 217.4,112.5 187.4,107.8 206.7,113.8 234.1,113.8 "/> <polygon points="242.7,105.2 229.4,108.8 238.7,83.8 217.4,112.5 187.4,107.8 206.7,113.8 234.1,113.8 "/>
<g> <g>
<g> <g>
<path class="st0" d="M215.9,101.2c-2.5-0.9-5.1,0-6.7,1.9l-22.1-7.7l-1.3,3.8l22.1,7.7c0,2.5,1.5,4.8,4,5.6 <path class="st0" d="M215.9,101.2c-2.5-0.9-5.1,0-6.7,1.9l-22.1-7.7l-1.3,3.8l22.1,7.7c0,2.5,1.5,4.8,4,5.6
c3.1,1.1,6.6-0.6,7.6-3.7C220.5,105.7,219.1,102.3,215.9,101.2z"/> c3.1,1.1,6.6-0.6,7.6-3.7C220.5,105.7,219.1,102.3,215.9,101.2z"/>
<path class="st4" d="M176.9,80.1c-6.8-2.4-14.1-0.1-18.4,5.2l-20.7-7.2c0-2.5-1.6-4.8-4-5.6c-3.1-1.1-6.6,0.6-7.6,3.7 <path class="st4" d="M176.9,80.1c-6.8-2.4-14.1-0.1-18.4,5.2l-20.7-7.2c0-2.5-1.6-4.8-4-5.6c-3.1-1.1-6.6,0.6-7.6,3.7
c-1.1,3.1,0.6,6.6,3.7,7.6c2.5,0.9,5.1,0,6.7-1.9l19.8,6.9l30.1,10.5l1.2,0.4C189.5,91.5,185,83,176.9,80.1z"/> c-1.1,3.1,0.6,6.6,3.7,7.6c2.5,0.9,5.1,0,6.7-1.9l19.8,6.9l30.1,10.5l1.2,0.4C189.5,91.5,185,83,176.9,80.1z"/>
</g> </g>
<rect x="111.1" y="68.9" transform="matrix(-0.944 -0.3299 0.3299 -0.944 237.5038 181.0255)" class="st5" width="46" height="2.9"/> <rect x="111.1" y="68.9" transform="matrix(-0.944 -0.3299 0.3299 -0.944 237.5038 181.0255)" class="st5" width="46" height="2.9"/>
<rect x="192.8" y="97.5" transform="matrix(-0.944 -0.3299 0.3299 -0.944 386.8907 263.5779)" class="st5" width="46" height="2.9"/> <rect x="192.8" y="97.5" transform="matrix(-0.944 -0.3299 0.3299 -0.944 386.8907 263.5779)" class="st5" width="46" height="2.9"/>
</g> </g>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -1,53 +1,53 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="-9 23.6 264.9 95.1" style="enable-background:new -9 23.6 264.9 95.1;" xml:space="preserve"> viewBox="-9 23.6 264.9 95.1" style="enable-background:new -9 23.6 264.9 95.1;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#FFBB00;} .st0{fill:#FFBB00;}
.st1{fill:#1B171B;} .st1{fill:#1B171B;}
.st2{fill:#B8B8B9;} .st2{fill:#B8B8B9;}
.st3{fill:none;} .st3{fill:none;}
.st4{fill:#FFFFFF;} .st4{fill:#FFFFFF;}
.st5{fill:none;stroke:#FFBB00;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:8,8;} .st5{fill:none;stroke:#FFBB00;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:8,8;}
.st6{fill:none;stroke:#FCFCFC;stroke-miterlimit:10;} .st6{fill:none;stroke:#FCFCFC;stroke-miterlimit:10;}
</style> </style>
<g> <g>
<g> <g>
<g> <g>
<g> <g>
<path class="st0" d="M226.8,48.2c-2.6,0-4.8,1.7-5.7,4h-23.4v4h23.4c0.8,2.3,3,4,5.7,4c3.3,0,6-2.7,6-6 <path class="st0" d="M226.8,48.2c-2.6,0-4.8,1.7-5.7,4h-23.4v4h23.4c0.8,2.3,3,4,5.7,4c3.3,0,6-2.7,6-6
C232.8,50.9,230.1,48.2,226.8,48.2z"/> C232.8,50.9,230.1,48.2,226.8,48.2z"/>
<path class="st1" d="M182.9,41.2c-7.2,0-13.3,4.6-15.6,11h-21.9c-0.8-2.3-3-4-5.7-4c-3.3,0-6,2.7-6,6s2.7,6,6,6 <path class="st1" d="M182.9,41.2c-7.2,0-13.3,4.6-15.6,11h-21.9c-0.8-2.3-3-4-5.7-4c-3.3,0-6,2.7-6,6s2.7,6,6,6
c2.6,0,4.8-1.7,5.7-4h21h31.8h1.2C198.7,47.7,191.6,41.2,182.9,41.2z"/> c2.6,0,4.8-1.7,5.7-4h21h31.8h1.2C198.7,47.7,191.6,41.2,182.9,41.2z"/>
</g> </g>
<rect x="116.4" y="44.7" class="st2" width="46" height="2.9"/> <rect x="116.4" y="44.7" class="st2" width="46" height="2.9"/>
<rect x="202.9" y="44.7" class="st2" width="46" height="2.9"/> <rect x="202.9" y="44.7" class="st2" width="46" height="2.9"/>
</g> </g>
<rect x="190.4" y="74.9" class="st3" width="67.5" height="13.5"/> <rect x="190.4" y="74.9" class="st3" width="67.5" height="13.5"/>
<g class="st4"> <g class="st4">
<path d="M191.8,85.5v-10h1.2v8.9h4.4v1.1H191.8z"/> <path d="M191.8,85.5v-10h1.2v8.9h4.4v1.1H191.8z"/>
<path d="M203.5,85.5l-0.2-1.1h-0.1c-0.4,0.5-0.7,0.8-1.1,1c-0.4,0.2-0.8,0.2-1.4,0.2c-0.7,0-1.3-0.2-1.7-0.6 <path d="M203.5,85.5l-0.2-1.1h-0.1c-0.4,0.5-0.7,0.8-1.1,1c-0.4,0.2-0.8,0.2-1.4,0.2c-0.7,0-1.3-0.2-1.7-0.6
c-0.4-0.4-0.6-0.9-0.6-1.6c0-1.5,1.2-2.3,3.6-2.4h1.3v-0.5c0-0.6-0.1-1-0.4-1.3s-0.7-0.4-1.2-0.4c-0.6,0-1.3,0.2-2.1,0.6 c-0.4-0.4-0.6-0.9-0.6-1.6c0-1.5,1.2-2.3,3.6-2.4h1.3v-0.5c0-0.6-0.1-1-0.4-1.3s-0.7-0.4-1.2-0.4c-0.6,0-1.3,0.2-2.1,0.6
l-0.3-0.9c0.4-0.2,0.8-0.4,1.2-0.5c0.4-0.1,0.9-0.2,1.3-0.2c0.9,0,1.6,0.2,2,0.6c0.4,0.4,0.6,1,0.6,1.9v5.1L203.5,85.5 l-0.3-0.9c0.4-0.2,0.8-0.4,1.2-0.5c0.4-0.1,0.9-0.2,1.3-0.2c0.9,0,1.6,0.2,2,0.6c0.4,0.4,0.6,1,0.6,1.9v5.1L203.5,85.5
L203.5,85.5z M200.9,84.7c0.7,0,1.3-0.2,1.7-0.6c0.4-0.4,0.6-0.9,0.6-1.6v-0.7h-1.1c-0.9,0-1.6,0.2-2,0.4 L203.5,85.5z M200.9,84.7c0.7,0,1.3-0.2,1.7-0.6c0.4-0.4,0.6-0.9,0.6-1.6v-0.7h-1.1c-0.9,0-1.6,0.2-2,0.4
c-0.4,0.2-0.6,0.6-0.6,1.2c0,0.4,0.1,0.7,0.4,0.9C200.2,84.6,200.5,84.7,200.9,84.7z"/> c-0.4,0.2-0.6,0.6-0.6,1.2c0,0.4,0.1,0.7,0.4,0.9C200.2,84.6,200.5,84.7,200.9,84.7z"/>
<path d="M211.8,85.5v-4.8c0-0.6-0.1-1.1-0.4-1.4s-0.7-0.5-1.3-0.5c-0.8,0-1.4,0.2-1.7,0.6c-0.4,0.4-0.5,1.1-0.5,2.1v3.9h-1.2 <path d="M211.8,85.5v-4.8c0-0.6-0.1-1.1-0.4-1.4s-0.7-0.5-1.3-0.5c-0.8,0-1.4,0.2-1.7,0.6c-0.4,0.4-0.5,1.1-0.5,2.1v3.9h-1.2
v-7.5h0.9l0.2,1h0.1c0.2-0.4,0.6-0.7,1-0.9c0.4-0.2,0.9-0.3,1.4-0.3c0.9,0,1.6,0.2,2,0.7c0.5,0.4,0.7,1.1,0.7,2.1v4.9L211.8,85.5 v-7.5h0.9l0.2,1h0.1c0.2-0.4,0.6-0.7,1-0.9c0.4-0.2,0.9-0.3,1.4-0.3c0.9,0,1.6,0.2,2,0.7c0.5,0.4,0.7,1.1,0.7,2.1v4.9L211.8,85.5
L211.8,85.5z"/> L211.8,85.5z"/>
<path d="M220.4,84.5L220.4,84.5c-0.6,0.8-1.4,1.1-2.4,1.1s-1.7-0.3-2.3-1c-0.5-0.7-0.8-1.6-0.8-2.9s0.3-2.2,0.8-2.9s1.3-1,2.3-1 <path d="M220.4,84.5L220.4,84.5c-0.6,0.8-1.4,1.1-2.4,1.1s-1.7-0.3-2.3-1c-0.5-0.7-0.8-1.6-0.8-2.9s0.3-2.2,0.8-2.9s1.3-1,2.3-1
s1.8,0.4,2.3,1.1h0.1v-0.5v-0.5v-3h1.1v10.6h-0.9L220.4,84.5z M218.1,84.7c0.8,0,1.3-0.2,1.7-0.6c0.3-0.4,0.5-1.1,0.5-2v-0.2 s1.8,0.4,2.3,1.1h0.1v-0.5v-0.5v-3h1.1v10.6h-0.9L220.4,84.5z M218.1,84.7c0.8,0,1.3-0.2,1.7-0.6c0.3-0.4,0.5-1.1,0.5-2v-0.2
c0-1.1-0.2-1.8-0.5-2.3c-0.4-0.5-0.9-0.7-1.7-0.7c-0.7,0-1.2,0.3-1.5,0.8c-0.4,0.5-0.5,1.2-0.5,2.2s0.2,1.7,0.5,2.2 c0-1.1-0.2-1.8-0.5-2.3c-0.4-0.5-0.9-0.7-1.7-0.7c-0.7,0-1.2,0.3-1.5,0.8c-0.4,0.5-0.5,1.2-0.5,2.2s0.2,1.7,0.5,2.2
C216.9,84.5,217.4,84.7,218.1,84.7z"/> C216.9,84.5,217.4,84.7,218.1,84.7z"/>
</g> </g>
<g> <g>
<path class="st0" d="M186.8,106L186.8,106c0.2-0.2,0.3-0.4,0.3-0.7c0-0.6-0.5-1-1-1c-0.3,0-0.6,0.1-0.7,0.3l0,0l-3,3.3l-3-3.3 <path class="st0" d="M186.8,106L186.8,106c0.2-0.2,0.3-0.4,0.3-0.7c0-0.6-0.5-1-1-1c-0.3,0-0.6,0.1-0.7,0.3l0,0l-3,3.3l-3-3.3
l0,0c-0.2-0.2-0.5-0.3-0.7-0.3c-0.6,0-1,0.5-1,1c0,0.3,0.1,0.5,0.3,0.7l0,0l3.7,4.1c0.2,0.2,0.5,0.3,0.8,0.3 l0,0c-0.2-0.2-0.5-0.3-0.7-0.3c-0.6,0-1,0.5-1,1c0,0.3,0.1,0.5,0.3,0.7l0,0l3.7,4.1c0.2,0.2,0.5,0.3,0.8,0.3
c0.3,0,0.6-0.1,0.8-0.3L186.8,106z"/> c0.3,0,0.6-0.1,0.8-0.3L186.8,106z"/>
<line class="st5" x1="182.3" y1="65.4" x2="182.3" y2="103.4"/> <line class="st5" x1="182.3" y1="65.4" x2="182.3" y2="103.4"/>
</g> </g>
<line class="st6" x1="-4.1" y1="114.7" x2="250.9" y2="114.7"/> <line class="st6" x1="-4.1" y1="114.7" x2="250.9" y2="114.7"/>
</g> </g>
<path class="st0" d="M6.5,93.5C1.8,93.5-2,97.3-2,102s5.2,8.6,8.5,11.6c2.7-2.7,8.5-7,8.5-11.6C15,97.3,11.2,93.5,6.5,93.5z <path class="st0" d="M6.5,93.5C1.8,93.5-2,97.3-2,102s5.2,8.6,8.5,11.6c2.7-2.7,8.5-7,8.5-11.6C15,97.3,11.2,93.5,6.5,93.5z
M9.8,105.1H7.9v-2.2H5v2.2H3.1v-6.2H5v2.2h2.9v-2.2h1.9V105.1z"/> M9.8,105.1H7.9v-2.2H5v2.2H3.1v-6.2H5v2.2h2.9v-2.2h1.9V105.1z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -1,54 +1,54 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="-9 23.6 264.9 95.1" style="enable-background:new -9 23.6 264.9 95.1;" xml:space="preserve"> viewBox="-9 23.6 264.9 95.1" style="enable-background:new -9 23.6 264.9 95.1;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#FFBB00;} .st0{fill:#FFBB00;}
.st1{fill:#1B171B;} .st1{fill:#1B171B;}
.st2{fill:#B8B8B9;} .st2{fill:#B8B8B9;}
.st3{fill:none;} .st3{fill:none;}
.st4{enable-background:new ;} .st4{enable-background:new ;}
.st5{fill:none;stroke:#FFBB00;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:8,8;} .st5{fill:none;stroke:#FFBB00;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:8,8;}
.st6{fill:none;stroke:#1B171B;stroke-miterlimit:10;} .st6{fill:none;stroke:#1B171B;stroke-miterlimit:10;}
</style> </style>
<g> <g>
<g> <g>
<g> <g>
<g> <g>
<path class="st0" d="M226.8,48.2c-2.6,0-4.8,1.7-5.7,4h-23.4v4h23.4c0.8,2.3,3,4,5.7,4c3.3,0,6-2.7,6-6 <path class="st0" d="M226.8,48.2c-2.6,0-4.8,1.7-5.7,4h-23.4v4h23.4c0.8,2.3,3,4,5.7,4c3.3,0,6-2.7,6-6
C232.8,50.9,230.1,48.2,226.8,48.2z"/> C232.8,50.9,230.1,48.2,226.8,48.2z"/>
<path class="st1" d="M182.9,41.2c-7.2,0-13.3,4.6-15.6,11h-21.9c-0.8-2.3-3-4-5.7-4c-3.3,0-6,2.7-6,6s2.7,6,6,6 <path class="st1" d="M182.9,41.2c-7.2,0-13.3,4.6-15.6,11h-21.9c-0.8-2.3-3-4-5.7-4c-3.3,0-6,2.7-6,6s2.7,6,6,6
c2.6,0,4.8-1.7,5.7-4h21h31.8h1.2C198.7,47.7,191.6,41.2,182.9,41.2z"/> c2.6,0,4.8-1.7,5.7-4h21h31.8h1.2C198.7,47.7,191.6,41.2,182.9,41.2z"/>
</g> </g>
<rect x="116.4" y="44.7" class="st2" width="46" height="2.9"/> <rect x="116.4" y="44.7" class="st2" width="46" height="2.9"/>
<rect x="202.9" y="44.7" class="st2" width="46" height="2.9"/> <rect x="202.9" y="44.7" class="st2" width="46" height="2.9"/>
</g> </g>
<rect x="190.4" y="74.9" class="st3" width="67.5" height="13.5"/> <rect x="190.4" y="74.9" class="st3" width="67.5" height="13.5"/>
<g class="st4"> <g class="st4">
<path d="M191.8,85.5v-10h1.2v8.9h4.4v1.1H191.8z"/> <path d="M191.8,85.5v-10h1.2v8.9h4.4v1.1H191.8z"/>
<path d="M203.5,85.5l-0.2-1.1h-0.1c-0.4,0.5-0.7,0.8-1.1,1c-0.4,0.2-0.8,0.2-1.4,0.2c-0.7,0-1.3-0.2-1.7-0.6 <path d="M203.5,85.5l-0.2-1.1h-0.1c-0.4,0.5-0.7,0.8-1.1,1c-0.4,0.2-0.8,0.2-1.4,0.2c-0.7,0-1.3-0.2-1.7-0.6
c-0.4-0.4-0.6-0.9-0.6-1.6c0-1.5,1.2-2.3,3.6-2.4h1.3v-0.5c0-0.6-0.1-1-0.4-1.3s-0.7-0.4-1.2-0.4c-0.6,0-1.3,0.2-2.1,0.6 c-0.4-0.4-0.6-0.9-0.6-1.6c0-1.5,1.2-2.3,3.6-2.4h1.3v-0.5c0-0.6-0.1-1-0.4-1.3s-0.7-0.4-1.2-0.4c-0.6,0-1.3,0.2-2.1,0.6
l-0.3-0.9c0.4-0.2,0.8-0.4,1.2-0.5c0.4-0.1,0.9-0.2,1.3-0.2c0.9,0,1.6,0.2,2,0.6c0.4,0.4,0.6,1,0.6,1.9v5.1L203.5,85.5 l-0.3-0.9c0.4-0.2,0.8-0.4,1.2-0.5c0.4-0.1,0.9-0.2,1.3-0.2c0.9,0,1.6,0.2,2,0.6c0.4,0.4,0.6,1,0.6,1.9v5.1L203.5,85.5
L203.5,85.5z M200.9,84.7c0.7,0,1.3-0.2,1.7-0.6c0.4-0.4,0.6-0.9,0.6-1.6v-0.7h-1.1c-0.9,0-1.6,0.2-2,0.4 L203.5,85.5z M200.9,84.7c0.7,0,1.3-0.2,1.7-0.6c0.4-0.4,0.6-0.9,0.6-1.6v-0.7h-1.1c-0.9,0-1.6,0.2-2,0.4
c-0.4,0.2-0.6,0.6-0.6,1.2c0,0.4,0.1,0.7,0.4,0.9C200.2,84.6,200.5,84.7,200.9,84.7z"/> c-0.4,0.2-0.6,0.6-0.6,1.2c0,0.4,0.1,0.7,0.4,0.9C200.2,84.6,200.5,84.7,200.9,84.7z"/>
<path d="M211.8,85.5v-4.8c0-0.6-0.1-1.1-0.4-1.4s-0.7-0.5-1.3-0.5c-0.8,0-1.4,0.2-1.7,0.6c-0.4,0.4-0.5,1.1-0.5,2.1v3.9h-1.2 <path d="M211.8,85.5v-4.8c0-0.6-0.1-1.1-0.4-1.4s-0.7-0.5-1.3-0.5c-0.8,0-1.4,0.2-1.7,0.6c-0.4,0.4-0.5,1.1-0.5,2.1v3.9h-1.2
v-7.5h0.9l0.2,1h0.1c0.2-0.4,0.6-0.7,1-0.9c0.4-0.2,0.9-0.3,1.4-0.3c0.9,0,1.6,0.2,2,0.7c0.5,0.4,0.7,1.1,0.7,2.1v4.9L211.8,85.5 v-7.5h0.9l0.2,1h0.1c0.2-0.4,0.6-0.7,1-0.9c0.4-0.2,0.9-0.3,1.4-0.3c0.9,0,1.6,0.2,2,0.7c0.5,0.4,0.7,1.1,0.7,2.1v4.9L211.8,85.5
L211.8,85.5z"/> L211.8,85.5z"/>
<path d="M220.4,84.5L220.4,84.5c-0.6,0.8-1.4,1.1-2.4,1.1s-1.7-0.3-2.3-1c-0.5-0.7-0.8-1.6-0.8-2.9s0.3-2.2,0.8-2.9s1.3-1,2.3-1 <path d="M220.4,84.5L220.4,84.5c-0.6,0.8-1.4,1.1-2.4,1.1s-1.7-0.3-2.3-1c-0.5-0.7-0.8-1.6-0.8-2.9s0.3-2.2,0.8-2.9s1.3-1,2.3-1
s1.8,0.4,2.3,1.1h0.1v-0.5v-0.5v-3h1.1v10.6h-0.9L220.4,84.5z M218.1,84.7c0.8,0,1.3-0.2,1.7-0.6c0.3-0.4,0.5-1.1,0.5-2v-0.2 s1.8,0.4,2.3,1.1h0.1v-0.5v-0.5v-3h1.1v10.6h-0.9L220.4,84.5z M218.1,84.7c0.8,0,1.3-0.2,1.7-0.6c0.3-0.4,0.5-1.1,0.5-2v-0.2
c0-1.1-0.2-1.8-0.5-2.3c-0.4-0.5-0.9-0.7-1.7-0.7c-0.7,0-1.2,0.3-1.5,0.8c-0.4,0.5-0.5,1.2-0.5,2.2s0.2,1.7,0.5,2.2 c0-1.1-0.2-1.8-0.5-2.3c-0.4-0.5-0.9-0.7-1.7-0.7c-0.7,0-1.2,0.3-1.5,0.8c-0.4,0.5-0.5,1.2-0.5,2.2s0.2,1.7,0.5,2.2
C216.9,84.5,217.4,84.7,218.1,84.7z"/> C216.9,84.5,217.4,84.7,218.1,84.7z"/>
</g> </g>
<g> <g>
<path class="st0" d="M186.8,106L186.8,106c0.2-0.2,0.3-0.4,0.3-0.7c0-0.6-0.5-1-1-1c-0.3,0-0.6,0.1-0.7,0.3l0,0l-3,3.3l-3-3.3 <path class="st0" d="M186.8,106L186.8,106c0.2-0.2,0.3-0.4,0.3-0.7c0-0.6-0.5-1-1-1c-0.3,0-0.6,0.1-0.7,0.3l0,0l-3,3.3l-3-3.3
l0,0c-0.2-0.2-0.5-0.3-0.7-0.3c-0.6,0-1,0.5-1,1c0,0.3,0.1,0.5,0.3,0.7l0,0l3.7,4.1c0.2,0.2,0.5,0.3,0.8,0.3 l0,0c-0.2-0.2-0.5-0.3-0.7-0.3c-0.6,0-1,0.5-1,1c0,0.3,0.1,0.5,0.3,0.7l0,0l3.7,4.1c0.2,0.2,0.5,0.3,0.8,0.3
c0.3,0,0.6-0.1,0.8-0.3L186.8,106z"/> c0.3,0,0.6-0.1,0.8-0.3L186.8,106z"/>
<line class="st5" x1="182.3" y1="65.4" x2="182.3" y2="103.4"/> <line class="st5" x1="182.3" y1="65.4" x2="182.3" y2="103.4"/>
</g> </g>
<line class="st6" x1="-4.1" y1="114.7" x2="250.9" y2="114.7"/> <line class="st6" x1="-4.1" y1="114.7" x2="250.9" y2="114.7"/>
</g> </g>
<path class="st0" d="M6.5,93.5C1.8,93.5-2,97.3-2,102s5.2,8.6,8.5,11.6c2.7-2.7,8.5-7,8.5-11.6C15,97.3,11.2,93.5,6.5,93.5z <path class="st0" d="M6.5,93.5C1.8,93.5-2,97.3-2,102s5.2,8.6,8.5,11.6c2.7-2.7,8.5-7,8.5-11.6C15,97.3,11.2,93.5,6.5,93.5z
M9.8,105.1H7.9v-2.2H5v2.2H3.1v-6.2H5v2.2h2.9v-2.2h1.9V105.1z"/> M9.8,105.1H7.9v-2.2H5v2.2H3.1v-6.2H5v2.2h2.9v-2.2h1.9V105.1z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -1,56 +1,56 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="-9 23.6 264.9 95.1" style="enable-background:new -9 23.6 264.9 95.1;" xml:space="preserve"> viewBox="-9 23.6 264.9 95.1" style="enable-background:new -9 23.6 264.9 95.1;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#FFBB00;} .st0{fill:#FFBB00;}
.st1{fill:#1B171B;} .st1{fill:#1B171B;}
.st2{fill:#B8B8B9;} .st2{fill:#B8B8B9;}
.st3{fill:none;} .st3{fill:none;}
.st4{enable-background:new ;} .st4{enable-background:new ;}
.st5{fill:none;stroke:#FFBB00;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;} .st5{fill:none;stroke:#FFBB00;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;}
.st6{fill:none;stroke:#1B171B;stroke-miterlimit:10;} .st6{fill:none;stroke:#1B171B;stroke-miterlimit:10;}
</style> </style>
<g> <g>
<g> <g>
<g> <g>
<g> <g>
<path class="st0" d="M226.8,47.3c-2.6,0-4.8,1.7-5.7,4h-23.4v4h23.4c0.8,2.3,3,4,5.7,4c3.3,0,6-2.7,6-6 <path class="st0" d="M226.8,47.3c-2.6,0-4.8,1.7-5.7,4h-23.4v4h23.4c0.8,2.3,3,4,5.7,4c3.3,0,6-2.7,6-6
C232.8,50,230.1,47.3,226.8,47.3z"/> C232.8,50,230.1,47.3,226.8,47.3z"/>
<path class="st1" d="M182.9,40.3c-7.2,0-13.3,4.6-15.6,11h-21.9c-0.8-2.3-3-4-5.7-4c-3.3,0-6,2.7-6,6s2.7,6,6,6 <path class="st1" d="M182.9,40.3c-7.2,0-13.3,4.6-15.6,11h-21.9c-0.8-2.3-3-4-5.7-4c-3.3,0-6,2.7-6,6s2.7,6,6,6
c2.6,0,4.8-1.7,5.7-4h21h31.8h1.2C198.7,46.9,191.6,40.3,182.9,40.3z"/> c2.6,0,4.8-1.7,5.7-4h21h31.8h1.2C198.7,46.9,191.6,40.3,182.9,40.3z"/>
</g> </g>
<rect x="116.4" y="43.8" class="st2" width="46" height="2.9"/> <rect x="116.4" y="43.8" class="st2" width="46" height="2.9"/>
<rect x="202.9" y="43.8" class="st2" width="46" height="2.9"/> <rect x="202.9" y="43.8" class="st2" width="46" height="2.9"/>
</g> </g>
<rect x="190.4" y="74.1" class="st3" width="67.5" height="13.5"/> <rect x="190.4" y="74.1" class="st3" width="67.5" height="13.5"/>
<g class="st4"> <g class="st4">
<path d="M199.4,84.7h-1.2V80h-5.3v4.7h-1.2v-10h1.2V79h5.3v-4.3h1.2V84.7z"/> <path d="M199.4,84.7h-1.2V80h-5.3v4.7h-1.2v-10h1.2V79h5.3v-4.3h1.2V84.7z"/>
<path d="M208.4,80.9c0,1.2-0.3,2.2-0.9,2.9c-0.6,0.7-1.5,1-2.5,1c-0.7,0-1.3-0.2-1.8-0.5s-0.9-0.8-1.2-1.4 <path d="M208.4,80.9c0,1.2-0.3,2.2-0.9,2.9c-0.6,0.7-1.5,1-2.5,1c-0.7,0-1.3-0.2-1.8-0.5s-0.9-0.8-1.2-1.4
c-0.3-0.6-0.4-1.3-0.4-2.1c0-1.2,0.3-2.2,0.9-2.9c0.6-0.7,1.5-1,2.5-1s1.9,0.3,2.5,1C208.1,78.8,208.4,79.8,208.4,80.9z c-0.3-0.6-0.4-1.3-0.4-2.1c0-1.2,0.3-2.2,0.9-2.9c0.6-0.7,1.5-1,2.5-1s1.9,0.3,2.5,1C208.1,78.8,208.4,79.8,208.4,80.9z
M202.7,80.9c0,1,0.2,1.7,0.6,2.2c0.4,0.5,0.9,0.8,1.7,0.8c0.7,0,1.3-0.2,1.7-0.8c0.4-0.5,0.6-1.2,0.6-2.2s-0.2-1.7-0.6-2.2 M202.7,80.9c0,1,0.2,1.7,0.6,2.2c0.4,0.5,0.9,0.8,1.7,0.8c0.7,0,1.3-0.2,1.7-0.8c0.4-0.5,0.6-1.2,0.6-2.2s-0.2-1.7-0.6-2.2
c-0.4-0.5-1-0.7-1.7-0.7c-0.7,0-1.3,0.2-1.7,0.7C202.9,79.3,202.7,80,202.7,80.9z"/> c-0.4-0.5-1-0.7-1.7-0.7c-0.7,0-1.3,0.2-1.7,0.7C202.9,79.3,202.7,80,202.7,80.9z"/>
<path d="M212.1,84.7l-2.8-7.5h1.2l1.6,4.4c0.4,1,0.6,1.7,0.6,2l0,0c0.1-0.2,0.2-0.7,0.5-1.5s0.9-2.4,1.8-5h1.2l-2.8,7.5h-1.3 <path d="M212.1,84.7l-2.8-7.5h1.2l1.6,4.4c0.4,1,0.6,1.7,0.6,2l0,0c0.1-0.2,0.2-0.7,0.5-1.5s0.9-2.4,1.8-5h1.2l-2.8,7.5h-1.3
V84.7z"/> V84.7z"/>
<path d="M220.6,84.8c-1.1,0-2-0.3-2.6-1s-1-1.6-1-2.8c0-1.2,0.3-2.2,0.9-2.9c0.6-0.7,1.4-1.1,2.4-1.1c0.9,0,1.7,0.3,2.2,0.9 <path d="M220.6,84.8c-1.1,0-2-0.3-2.6-1s-1-1.6-1-2.8c0-1.2,0.3-2.2,0.9-2.9c0.6-0.7,1.4-1.1,2.4-1.1c0.9,0,1.7,0.3,2.2,0.9
s0.8,1.4,0.8,2.4V81h-5.2c0,0.9,0.2,1.5,0.7,2c0.4,0.5,1,0.7,1.8,0.7c0.8,0,1.6-0.2,2.4-0.5v1c-0.4,0.2-0.8,0.3-1.1,0.4 s0.8,1.4,0.8,2.4V81h-5.2c0,0.9,0.2,1.5,0.7,2c0.4,0.5,1,0.7,1.8,0.7c0.8,0,1.6-0.2,2.4-0.5v1c-0.4,0.2-0.8,0.3-1.1,0.4
C221.5,84.8,221.1,84.8,220.6,84.8z M220.3,78c-0.6,0-1.1,0.2-1.4,0.6c-0.4,0.4-0.6,0.9-0.6,1.6h3.9c0-0.7-0.2-1.3-0.5-1.6 C221.5,84.8,221.1,84.8,220.6,84.8z M220.3,78c-0.6,0-1.1,0.2-1.4,0.6c-0.4,0.4-0.6,0.9-0.6,1.6h3.9c0-0.7-0.2-1.3-0.5-1.6
C221.3,78.2,220.9,78,220.3,78z"/> C221.3,78.2,220.9,78,220.3,78z"/>
<path d="M228.7,77.1c0.3,0,0.6,0,0.9,0.1l-0.2,1.1c-0.3-0.1-0.6-0.1-0.8-0.1c-0.6,0-1.1,0.2-1.6,0.7s-0.6,1.1-0.6,1.8v4h-1.1 <path d="M228.7,77.1c0.3,0,0.6,0,0.9,0.1l-0.2,1.1c-0.3-0.1-0.6-0.1-0.8-0.1c-0.6,0-1.1,0.2-1.6,0.7s-0.6,1.1-0.6,1.8v4h-1.1
v-7.5h0.9l0.1,1.4h0.1c0.3-0.5,0.6-0.9,1-1.1C227.8,77.2,228.2,77.1,228.7,77.1z"/> v-7.5h0.9l0.1,1.4h0.1c0.3-0.5,0.6-0.9,1-1.1C227.8,77.2,228.2,77.1,228.7,77.1z"/>
</g> </g>
<g> <g>
<path class="st0" d="M186.8,105.1L186.8,105.1c0.2-0.2,0.3-0.4,0.3-0.7c0-0.6-0.5-1-1-1c-0.3,0-0.6,0.1-0.7,0.3l0,0l-3,3.3 <path class="st0" d="M186.8,105.1L186.8,105.1c0.2-0.2,0.3-0.4,0.3-0.7c0-0.6-0.5-1-1-1c-0.3,0-0.6,0.1-0.7,0.3l0,0l-3,3.3
l-3-3.3l0,0c-0.2-0.2-0.5-0.3-0.7-0.3c-0.6,0-1,0.5-1,1c0,0.3,0.1,0.5,0.3,0.7l0,0l3.7,4.1c0.2,0.2,0.5,0.3,0.8,0.3 l-3-3.3l0,0c-0.2-0.2-0.5-0.3-0.7-0.3c-0.6,0-1,0.5-1,1c0,0.3,0.1,0.5,0.3,0.7l0,0l3.7,4.1c0.2,0.2,0.5,0.3,0.8,0.3
c0.3,0,0.6-0.1,0.8-0.3L186.8,105.1z"/> c0.3,0,0.6-0.1,0.8-0.3L186.8,105.1z"/>
<path class="st0" d="M177.9,61.8L177.9,61.8c-0.2,0.2-0.3,0.4-0.3,0.7c0,0.6,0.5,1,1,1c0.3,0,0.6-0.1,0.7-0.3l0,0l3-3.3l3,3.3 <path class="st0" d="M177.9,61.8L177.9,61.8c-0.2,0.2-0.3,0.4-0.3,0.7c0,0.6,0.5,1,1,1c0.3,0,0.6-0.1,0.7-0.3l0,0l3-3.3l3,3.3
l0,0c0.2,0.2,0.5,0.3,0.7,0.3c0.6,0,1-0.5,1-1c0-0.3-0.1-0.5-0.3-0.7l0,0l-3.7-4.1c-0.2-0.2-0.5-0.3-0.8-0.3s-0.6,0.1-0.8,0.3 l0,0c0.2,0.2,0.5,0.3,0.7,0.3c0.6,0,1-0.5,1-1c0-0.3-0.1-0.5-0.3-0.7l0,0l-3.7-4.1c-0.2-0.2-0.5-0.3-0.8-0.3s-0.6,0.1-0.8,0.3
L177.9,61.8z"/> L177.9,61.8z"/>
<line class="st5" x1="182.3" y1="64.6" x2="182.3" y2="102.6"/> <line class="st5" x1="182.3" y1="64.6" x2="182.3" y2="102.6"/>
</g> </g>
<line class="st6" x1="-4.1" y1="113.8" x2="250.9" y2="113.8"/> <line class="st6" x1="-4.1" y1="113.8" x2="250.9" y2="113.8"/>
</g> </g>
<path class="st0" d="M6.5,92.4c-4.7,0-8.5,3.8-8.5,8.5s5.2,8.6,8.5,11.6c2.7-2.7,8.5-7,8.5-11.6C15,96.2,11.2,92.4,6.5,92.4z <path class="st0" d="M6.5,92.4c-4.7,0-8.5,3.8-8.5,8.5s5.2,8.6,8.5,11.6c2.7-2.7,8.5-7,8.5-11.6C15,96.2,11.2,92.4,6.5,92.4z
M9.8,104.1H7.9v-2.2H5v2.2H3.1v-6.2H5v2.2h2.9v-2.2h1.9V104.1z"/> M9.8,104.1H7.9v-2.2H5v2.2H3.1v-6.2H5v2.2h2.9v-2.2h1.9V104.1z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -1,78 +1,78 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="-9 23.6 264.9 95.1" style="enable-background:new -9 23.6 264.9 95.1;" xml:space="preserve"> viewBox="-9 23.6 264.9 95.1" style="enable-background:new -9 23.6 264.9 95.1;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#FFBB00;} .st0{fill:#FFBB00;}
.st1{fill:#1B171B;} .st1{fill:#1B171B;}
.st2{fill:#B8B8B9;} .st2{fill:#B8B8B9;}
.st3{fill:none;} .st3{fill:none;}
.st4{fill:white;} .st4{fill:white;}
.st5{fill:none;stroke:#FFBB00;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;} .st5{fill:none;stroke:#FFBB00;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.st6{fill:none;stroke:#FFBB00;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:7.4103,7.4103;} .st6{fill:none;stroke:#FFBB00;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:7.4103,7.4103;}
.st7{fill:none;stroke:#FFBB00;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:7.7778,7.7778;} .st7{fill:none;stroke:#FFBB00;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:7.7778,7.7778;}
.st8{fill:none;stroke:#FCFCFC;stroke-miterlimit:10;} .st8{fill:none;stroke:#FCFCFC;stroke-miterlimit:10;}
</style> </style>
<g> <g>
<path class="st0" d="M11.2,84.9L11.2,84.9c0.2-0.2,0.3-0.4,0.3-0.7c0-0.6-0.5-1-1-1c-0.3,0-0.6,0.1-0.7,0.3l0,0l-3,3.3l-3-3.3l0,0 <path class="st0" d="M11.2,84.9L11.2,84.9c0.2-0.2,0.3-0.4,0.3-0.7c0-0.6-0.5-1-1-1c-0.3,0-0.6,0.1-0.7,0.3l0,0l-3,3.3l-3-3.3l0,0
c-0.2-0.2-0.5-0.3-0.7-0.3c-0.6,0-1,0.5-1,1c0,0.3,0.1,0.5,0.3,0.7l0,0L6.1,89c0.2,0.2,0.5,0.3,0.8,0.3s0.6-0.1,0.8-0.3L11.2,84.9z c-0.2-0.2-0.5-0.3-0.7-0.3c-0.6,0-1,0.5-1,1c0,0.3,0.1,0.5,0.3,0.7l0,0L6.1,89c0.2,0.2,0.5,0.3,0.8,0.3s0.6-0.1,0.8-0.3L11.2,84.9z
"/> "/>
<g> <g>
<g> <g>
<path class="st0" d="M138.9,46.1c2.6,0,4.8,1.7,5.7,4H168v4h-23.4c-0.8,2.3-3,4-5.7,4c-3.3,0-6-2.7-6-6S135.6,46.1,138.9,46.1z" <path class="st0" d="M138.9,46.1c2.6,0,4.8,1.7,5.7,4H168v4h-23.4c-0.8,2.3-3,4-5.7,4c-3.3,0-6-2.7-6-6S135.6,46.1,138.9,46.1z"
/> />
<path class="st1" d="M182.7,39.1c7.2,0,13.3,4.6,15.6,11h21.9c0.8-2.3,3-4,5.7-4c3.3,0,6,2.7,6,6s-2.7,6-6,6 <path class="st1" d="M182.7,39.1c7.2,0,13.3,4.6,15.6,11h21.9c0.8-2.3,3-4,5.7-4c3.3,0,6,2.7,6,6s-2.7,6-6,6
c-2.6,0-4.8-1.7-5.7-4h-21h-31.8h-1.2C167,45.7,174.1,39.1,182.7,39.1z"/> c-2.6,0-4.8-1.7-5.7-4h-21h-31.8h-1.2C167,45.7,174.1,39.1,182.7,39.1z"/>
</g> </g>
<rect x="203.2" y="42.6" class="st2" width="46" height="2.9"/> <rect x="203.2" y="42.6" class="st2" width="46" height="2.9"/>
<rect x="116.7" y="42.6" class="st2" width="46" height="2.9"/> <rect x="116.7" y="42.6" class="st2" width="46" height="2.9"/>
</g> </g>
<rect x="33" y="66.8" class="st3" width="86.5" height="32.1"/> <rect x="33" y="66.8" class="st3" width="86.5" height="32.1"/>
<g class="st4"> <g class="st4">
<path d="M35.5,73.3v4.2h-1.2v-10H37c1.2,0,2.1,0.2,2.7,0.7s0.9,1.2,0.9,2.1c0,1.3-0.7,2.2-2,2.7l2.7,4.5h-1.4l-2.4-4.2L35.5,73.3 <path d="M35.5,73.3v4.2h-1.2v-10H37c1.2,0,2.1,0.2,2.7,0.7s0.9,1.2,0.9,2.1c0,1.3-0.7,2.2-2,2.7l2.7,4.5h-1.4l-2.4-4.2L35.5,73.3
L35.5,73.3z M35.5,72.3h1.6c0.8,0,1.4-0.2,1.8-0.5s0.6-0.8,0.6-1.5s-0.2-1.1-0.6-1.4s-1-0.4-1.9-0.4h-1.5V72.3z"/> L35.5,73.3z M35.5,72.3h1.6c0.8,0,1.4-0.2,1.8-0.5s0.6-0.8,0.6-1.5s-0.2-1.1-0.6-1.4s-1-0.4-1.9-0.4h-1.5V72.3z"/>
<path d="M46,77.6c-1.1,0-2-0.3-2.6-1s-1-1.6-1-2.8c0-1.2,0.3-2.2,0.9-2.9s1.4-1.1,2.4-1.1c0.9,0,1.7,0.3,2.2,0.9s0.8,1.4,0.8,2.4 <path d="M46,77.6c-1.1,0-2-0.3-2.6-1s-1-1.6-1-2.8c0-1.2,0.3-2.2,0.9-2.9s1.4-1.1,2.4-1.1c0.9,0,1.7,0.3,2.2,0.9s0.8,1.4,0.8,2.4
v0.7h-5.2c0,0.9,0.2,1.5,0.7,2s1,0.7,1.8,0.7s1.6-0.2,2.4-0.5v1c-0.4,0.2-0.8,0.3-1.1,0.4C46.9,77.6,46.5,77.6,46,77.6z v0.7h-5.2c0,0.9,0.2,1.5,0.7,2s1,0.7,1.8,0.7s1.6-0.2,2.4-0.5v1c-0.4,0.2-0.8,0.3-1.1,0.4C46.9,77.6,46.5,77.6,46,77.6z
M45.7,70.8c-0.6,0-1.1,0.2-1.4,0.6s-0.6,0.9-0.6,1.6h3.9c0-0.7-0.2-1.3-0.5-1.6C46.7,71,46.3,70.8,45.7,70.8z"/> M45.7,70.8c-0.6,0-1.1,0.2-1.4,0.6s-0.6,0.9-0.6,1.6h3.9c0-0.7-0.2-1.3-0.5-1.6C46.7,71,46.3,70.8,45.7,70.8z"/>
<path d="M53.1,76.7c0.2,0,0.4,0,0.6,0s0.3-0.1,0.4-0.1v0.9c-0.1,0.1-0.3,0.1-0.5,0.1s-0.5,0.1-0.6,0.1c-1.4,0-2.2-0.8-2.2-2.3 <path d="M53.1,76.7c0.2,0,0.4,0,0.6,0s0.3-0.1,0.4-0.1v0.9c-0.1,0.1-0.3,0.1-0.5,0.1s-0.5,0.1-0.6,0.1c-1.4,0-2.2-0.8-2.2-2.3
v-4.5h-1.1v-0.5l1.1-0.5l0.5-1.6H52V70h2.2v0.9H52v4.4c0,0.5,0.1,0.8,0.3,1S52.7,76.7,53.1,76.7z"/> v-4.5h-1.1v-0.5l1.1-0.5l0.5-1.6H52V70h2.2v0.9H52v4.4c0,0.5,0.1,0.8,0.3,1S52.7,76.7,53.1,76.7z"/>
<path d="M56.7,70v4.9c0,0.6,0.1,1.1,0.4,1.4s0.7,0.5,1.3,0.5c0.8,0,1.4-0.2,1.7-0.6s0.5-1.1,0.5-2.1v-3.9h1.1v7.5h-0.9l-0.2-1 <path d="M56.7,70v4.9c0,0.6,0.1,1.1,0.4,1.4s0.7,0.5,1.3,0.5c0.8,0,1.4-0.2,1.7-0.6s0.5-1.1,0.5-2.1v-3.9h1.1v7.5h-0.9l-0.2-1
h-0.1c-0.2,0.4-0.6,0.7-1,0.8s-0.9,0.3-1.4,0.3c-0.9,0-1.6-0.2-2-0.6s-0.7-1.1-0.7-2.1v-4.9h1.3C56.7,70.2,56.7,70,56.7,70z"/> h-0.1c-0.2,0.4-0.6,0.7-1,0.8s-0.9,0.3-1.4,0.3c-0.9,0-1.6-0.2-2-0.6s-0.7-1.1-0.7-2.1v-4.9h1.3C56.7,70.2,56.7,70,56.7,70z"/>
<path d="M67.6,69.8c0.3,0,0.6,0,0.9,0.1L68.3,71c-0.3-0.1-0.6-0.1-0.8-0.1c-0.6,0-1.1,0.2-1.6,0.7s-0.6,1.1-0.6,1.8v4h-1.1v-7.5 <path d="M67.6,69.8c0.3,0,0.6,0,0.9,0.1L68.3,71c-0.3-0.1-0.6-0.1-0.8-0.1c-0.6,0-1.1,0.2-1.6,0.7s-0.6,1.1-0.6,1.8v4h-1.1v-7.5
h0.9l0.1,1.4h0.1c0.3-0.5,0.6-0.9,1-1.1S67.2,69.8,67.6,69.8z"/> h0.9l0.1,1.4h0.1c0.3-0.5,0.6-0.9,1-1.1S67.2,69.8,67.6,69.8z"/>
<path d="M75.1,77.5v-4.8c0-0.6-0.1-1.1-0.4-1.4s-0.7-0.5-1.3-0.5c-0.8,0-1.4,0.2-1.7,0.6s-0.5,1.1-0.5,2.1v3.9h-1.1v-7.5H71l0.2,1 <path d="M75.1,77.5v-4.8c0-0.6-0.1-1.1-0.4-1.4s-0.7-0.5-1.3-0.5c-0.8,0-1.4,0.2-1.7,0.6s-0.5,1.1-0.5,2.1v3.9h-1.1v-7.5H71l0.2,1
h0.1c0.2-0.4,0.6-0.7,1-0.9c0.4-0.2,0.9-0.3,1.4-0.3c0.9,0,1.6,0.2,2,0.7c0.5,0.4,0.7,1.1,0.7,2.1v4.9L75.1,77.5L75.1,77.5z"/> h0.1c0.2-0.4,0.6-0.7,1-0.9c0.4-0.2,0.9-0.3,1.4-0.3c0.9,0,1.6,0.2,2,0.7c0.5,0.4,0.7,1.1,0.7,2.1v4.9L75.1,77.5L75.1,77.5z"/>
<path d="M84.6,76.7c0.2,0,0.4,0,0.6,0s0.3-0.1,0.4-0.1v0.9c-0.1,0.1-0.3,0.1-0.5,0.1s-0.5,0.1-0.6,0.1c-1.4,0-2.2-0.8-2.2-2.3 <path d="M84.6,76.7c0.2,0,0.4,0,0.6,0s0.3-0.1,0.4-0.1v0.9c-0.1,0.1-0.3,0.1-0.5,0.1s-0.5,0.1-0.6,0.1c-1.4,0-2.2-0.8-2.2-2.3
v-4.5h-1.1v-0.5l1.1-0.5l0.5-1.6h0.7V70h2.2v0.9h-2.2v4.4c0,0.5,0.1,0.8,0.3,1S84.2,76.7,84.6,76.7z"/> v-4.5h-1.1v-0.5l1.1-0.5l0.5-1.6h0.7V70h2.2v0.9h-2.2v4.4c0,0.5,0.1,0.8,0.3,1S84.2,76.7,84.6,76.7z"/>
<path d="M93.6,73.7c0,1.2-0.3,2.2-0.9,2.9c-0.6,0.7-1.5,1-2.5,1c-0.7,0-1.3-0.2-1.8-0.5s-0.9-0.8-1.2-1.4s-0.4-1.3-0.4-2.1 <path d="M93.6,73.7c0,1.2-0.3,2.2-0.9,2.9c-0.6,0.7-1.5,1-2.5,1c-0.7,0-1.3-0.2-1.8-0.5s-0.9-0.8-1.2-1.4s-0.4-1.3-0.4-2.1
c0-1.2,0.3-2.2,0.9-2.9c0.6-0.7,1.5-1,2.5-1s1.9,0.3,2.5,1S93.6,72.5,93.6,73.7z M87.9,73.7c0,1,0.2,1.7,0.6,2.2s0.9,0.8,1.7,0.8 c0-1.2,0.3-2.2,0.9-2.9c0.6-0.7,1.5-1,2.5-1s1.9,0.3,2.5,1S93.6,72.5,93.6,73.7z M87.9,73.7c0,1,0.2,1.7,0.6,2.2s0.9,0.8,1.7,0.8
s1.3-0.2,1.7-0.7c0.4-0.5,0.6-1.2,0.6-2.2s-0.2-1.7-0.6-2.2s-1-0.7-1.7-0.7s-1.3,0.2-1.7,0.7S87.9,72.7,87.9,73.7z"/> s1.3-0.2,1.7-0.7c0.4-0.5,0.6-1.2,0.6-2.2s-0.2-1.7-0.6-2.2s-1-0.7-1.7-0.7s-1.3,0.2-1.7,0.7S87.9,72.7,87.9,73.7z"/>
</g> </g>
<g class="st4"> <g class="st4">
<path d="M41.9,94.3h-1.2v-4.7h-5.3v4.7h-1.2v-10h1.2v4.3h5.3v-4.3h1.2C41.9,84.3,41.9,94.3,41.9,94.3z"/> <path d="M41.9,94.3h-1.2v-4.7h-5.3v4.7h-1.2v-10h1.2v4.3h5.3v-4.3h1.2C41.9,84.3,41.9,94.3,41.9,94.3z"/>
<path d="M51,90.5c0,1.2-0.3,2.2-0.9,2.9c-0.6,0.7-1.5,1-2.5,1c-0.7,0-1.3-0.2-1.8-0.5s-0.9-0.8-1.2-1.4s-0.4-1.3-0.4-2.1 <path d="M51,90.5c0,1.2-0.3,2.2-0.9,2.9c-0.6,0.7-1.5,1-2.5,1c-0.7,0-1.3-0.2-1.8-0.5s-0.9-0.8-1.2-1.4s-0.4-1.3-0.4-2.1
c0-1.2,0.3-2.2,0.9-2.9c0.6-0.7,1.5-1,2.5-1s1.9,0.3,2.5,1S51,89.3,51,90.5z M45.3,90.5c0,1,0.2,1.7,0.6,2.2s0.9,0.8,1.7,0.8 c0-1.2,0.3-2.2,0.9-2.9c0.6-0.7,1.5-1,2.5-1s1.9,0.3,2.5,1S51,89.3,51,90.5z M45.3,90.5c0,1,0.2,1.7,0.6,2.2s0.9,0.8,1.7,0.8
s1.3-0.2,1.7-0.7c0.4-0.5,0.6-1.2,0.6-2.2s-0.2-1.7-0.6-2.2s-1-0.7-1.7-0.7s-1.3,0.2-1.7,0.7S45.3,89.5,45.3,90.5z"/> s1.3-0.2,1.7-0.7c0.4-0.5,0.6-1.2,0.6-2.2s-0.2-1.7-0.6-2.2s-1-0.7-1.7-0.7s-1.3,0.2-1.7,0.7S45.3,89.5,45.3,90.5z"/>
<path d="M62.5,94.3v-4.9c0-0.6-0.1-1-0.4-1.3s-0.7-0.4-1.2-0.4c-0.7,0-1.2,0.2-1.6,0.6s-0.5,1-0.5,1.9v4.2h-1.1v-4.9 <path d="M62.5,94.3v-4.9c0-0.6-0.1-1-0.4-1.3s-0.7-0.4-1.2-0.4c-0.7,0-1.2,0.2-1.6,0.6s-0.5,1-0.5,1.9v4.2h-1.1v-4.9
c0-0.6-0.1-1-0.4-1.3s-0.7-0.4-1.2-0.4c-0.7,0-1.2,0.2-1.6,0.6c-0.3,0.4-0.5,1.1-0.5,2.1v3.9h-1.1v-7.5h0.9l0.2,1h0.1 c0-0.6-0.1-1-0.4-1.3s-0.7-0.4-1.2-0.4c-0.7,0-1.2,0.2-1.6,0.6c-0.3,0.4-0.5,1.1-0.5,2.1v3.9h-1.1v-7.5h0.9l0.2,1h0.1
c0.2-0.4,0.5-0.6,0.9-0.9s0.8-0.3,1.3-0.3c1.2,0,1.9,0.4,2.3,1.3h0.1c0.2-0.4,0.5-0.7,1-0.9s0.9-0.3,1.4-0.3 c0.2-0.4,0.5-0.6,0.9-0.9s0.8-0.3,1.3-0.3c1.2,0,1.9,0.4,2.3,1.3h0.1c0.2-0.4,0.5-0.7,1-0.9s0.9-0.3,1.4-0.3
c0.8,0,1.5,0.2,1.9,0.7c0.4,0.4,0.6,1.1,0.6,2.1v4.9h-1.1L62.5,94.3L62.5,94.3z"/> c0.8,0,1.5,0.2,1.9,0.7c0.4,0.4,0.6,1.1,0.6,2.1v4.9h-1.1L62.5,94.3L62.5,94.3z"/>
<path d="M69.2,94.4c-1.1,0-2-0.3-2.6-1s-1-1.6-1-2.8c0-1.2,0.3-2.2,0.9-2.9s1.4-1.1,2.4-1.1c0.9,0,1.7,0.3,2.2,0.9 <path d="M69.2,94.4c-1.1,0-2-0.3-2.6-1s-1-1.6-1-2.8c0-1.2,0.3-2.2,0.9-2.9s1.4-1.1,2.4-1.1c0.9,0,1.7,0.3,2.2,0.9
s0.8,1.4,0.8,2.4v0.7h-5.2c0,0.9,0.2,1.5,0.7,2s1,0.7,1.8,0.7s1.6-0.2,2.4-0.5v1c-0.4,0.2-0.8,0.3-1.1,0.4 s0.8,1.4,0.8,2.4v0.7h-5.2c0,0.9,0.2,1.5,0.7,2s1,0.7,1.8,0.7s1.6-0.2,2.4-0.5v1c-0.4,0.2-0.8,0.3-1.1,0.4
C70.1,94.4,69.7,94.4,69.2,94.4z M68.9,87.6c-0.6,0-1.1,0.2-1.4,0.6s-0.6,0.9-0.6,1.6h3.9c0-0.7-0.2-1.3-0.5-1.6 C70.1,94.4,69.7,94.4,69.2,94.4z M68.9,87.6c-0.6,0-1.1,0.2-1.4,0.6s-0.6,0.9-0.6,1.6h3.9c0-0.7-0.2-1.3-0.5-1.6
C69.9,87.8,69.4,87.6,68.9,87.6z"/> C69.9,87.8,69.4,87.6,68.9,87.6z"/>
</g> </g>
<g> <g>
<g> <g>
<line class="st5" x1="111.1" y1="49.8" x2="107.1" y2="49.8"/> <line class="st5" x1="111.1" y1="49.8" x2="107.1" y2="49.8"/>
<line class="st6" x1="99.7" y1="49.8" x2="14.4" y2="49.8"/> <line class="st6" x1="99.7" y1="49.8" x2="14.4" y2="49.8"/>
<polyline class="st5" points="10.7,49.8 6.7,49.8 6.7,53.8 "/> <polyline class="st5" points="10.7,49.8 6.7,49.8 6.7,53.8 "/>
<line class="st7" x1="6.7" y1="61.6" x2="6.7" y2="73.2"/> <line class="st7" x1="6.7" y1="61.6" x2="6.7" y2="73.2"/>
<line class="st5" x1="6.7" y1="77.1" x2="6.7" y2="81.1"/> <line class="st5" x1="6.7" y1="77.1" x2="6.7" y2="81.1"/>
</g> </g>
</g> </g>
<line class="st8" x1="-3.8" y1="112.6" x2="251.2" y2="112.6"/> <line class="st8" x1="-3.8" y1="112.6" x2="251.2" y2="112.6"/>
<path class="st0" d="M6.8,91.2c-4.7,0-8.5,3.8-8.5,8.5s5.2,8.6,8.5,11.6c2.7-2.7,8.5-7,8.5-11.6C15.3,95,11.5,91.2,6.8,91.2z <path class="st0" d="M6.8,91.2c-4.7,0-8.5,3.8-8.5,8.5s5.2,8.6,8.5,11.6c2.7-2.7,8.5-7,8.5-11.6C15.3,95,11.5,91.2,6.8,91.2z
M10.1,102.8H8.2v-2.2H5.3v2.2H3.4v-6.2h1.9v2.2h2.9v-2.2h1.9V102.8z"/> M10.1,102.8H8.2v-2.2H5.3v2.2H3.4v-6.2h1.9v2.2h2.9v-2.2h1.9V102.8z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

@ -1,78 +1,78 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="-9 23.6 264.9 95.1" style="enable-background:new -9 23.6 264.9 95.1;" xml:space="preserve"> viewBox="-9 23.6 264.9 95.1" style="enable-background:new -9 23.6 264.9 95.1;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#FFBB00;} .st0{fill:#FFBB00;}
.st1{fill:#1B171B;} .st1{fill:#1B171B;}
.st2{fill:#B8B8B9;} .st2{fill:#B8B8B9;}
.st3{fill:none;} .st3{fill:none;}
.st4{enable-background:new ;} .st4{enable-background:new ;}
.st5{fill:none;stroke:#FFBB00;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;} .st5{fill:none;stroke:#FFBB00;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.st6{fill:none;stroke:#FFBB00;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:7.4103,7.4103;} .st6{fill:none;stroke:#FFBB00;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:7.4103,7.4103;}
.st7{fill:none;stroke:#FFBB00;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:7.7778,7.7778;} .st7{fill:none;stroke:#FFBB00;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:7.7778,7.7778;}
.st8{fill:none;stroke:#1B171B;stroke-miterlimit:10;} .st8{fill:none;stroke:#1B171B;stroke-miterlimit:10;}
</style> </style>
<g> <g>
<path class="st0" d="M11.2,84.9L11.2,84.9c0.2-0.2,0.3-0.4,0.3-0.7c0-0.6-0.5-1-1-1c-0.3,0-0.6,0.1-0.7,0.3l0,0l-3,3.3l-3-3.3l0,0 <path class="st0" d="M11.2,84.9L11.2,84.9c0.2-0.2,0.3-0.4,0.3-0.7c0-0.6-0.5-1-1-1c-0.3,0-0.6,0.1-0.7,0.3l0,0l-3,3.3l-3-3.3l0,0
c-0.2-0.2-0.5-0.3-0.7-0.3c-0.6,0-1,0.5-1,1c0,0.3,0.1,0.5,0.3,0.7l0,0L6.1,89c0.2,0.2,0.5,0.3,0.8,0.3s0.6-0.1,0.8-0.3L11.2,84.9z c-0.2-0.2-0.5-0.3-0.7-0.3c-0.6,0-1,0.5-1,1c0,0.3,0.1,0.5,0.3,0.7l0,0L6.1,89c0.2,0.2,0.5,0.3,0.8,0.3s0.6-0.1,0.8-0.3L11.2,84.9z
"/> "/>
<g> <g>
<g> <g>
<path class="st0" d="M138.9,46.1c2.6,0,4.8,1.7,5.7,4H168v4h-23.4c-0.8,2.3-3,4-5.7,4c-3.3,0-6-2.7-6-6S135.6,46.1,138.9,46.1z" <path class="st0" d="M138.9,46.1c2.6,0,4.8,1.7,5.7,4H168v4h-23.4c-0.8,2.3-3,4-5.7,4c-3.3,0-6-2.7-6-6S135.6,46.1,138.9,46.1z"
/> />
<path class="st1" d="M182.7,39.1c7.2,0,13.3,4.6,15.6,11h21.9c0.8-2.3,3-4,5.7-4c3.3,0,6,2.7,6,6s-2.7,6-6,6 <path class="st1" d="M182.7,39.1c7.2,0,13.3,4.6,15.6,11h21.9c0.8-2.3,3-4,5.7-4c3.3,0,6,2.7,6,6s-2.7,6-6,6
c-2.6,0-4.8-1.7-5.7-4h-21h-31.8h-1.2C167,45.7,174.1,39.1,182.7,39.1z"/> c-2.6,0-4.8-1.7-5.7-4h-21h-31.8h-1.2C167,45.7,174.1,39.1,182.7,39.1z"/>
</g> </g>
<rect x="203.2" y="42.6" class="st2" width="46" height="2.9"/> <rect x="203.2" y="42.6" class="st2" width="46" height="2.9"/>
<rect x="116.7" y="42.6" class="st2" width="46" height="2.9"/> <rect x="116.7" y="42.6" class="st2" width="46" height="2.9"/>
</g> </g>
<rect x="33" y="66.8" class="st3" width="86.5" height="32.1"/> <rect x="33" y="66.8" class="st3" width="86.5" height="32.1"/>
<g class="st4"> <g class="st4">
<path d="M35.5,73.3v4.2h-1.2v-10H37c1.2,0,2.1,0.2,2.7,0.7s0.9,1.2,0.9,2.1c0,1.3-0.7,2.2-2,2.7l2.7,4.5h-1.4l-2.4-4.2L35.5,73.3 <path d="M35.5,73.3v4.2h-1.2v-10H37c1.2,0,2.1,0.2,2.7,0.7s0.9,1.2,0.9,2.1c0,1.3-0.7,2.2-2,2.7l2.7,4.5h-1.4l-2.4-4.2L35.5,73.3
L35.5,73.3z M35.5,72.3h1.6c0.8,0,1.4-0.2,1.8-0.5s0.6-0.8,0.6-1.5s-0.2-1.1-0.6-1.4s-1-0.4-1.9-0.4h-1.5V72.3z"/> L35.5,73.3z M35.5,72.3h1.6c0.8,0,1.4-0.2,1.8-0.5s0.6-0.8,0.6-1.5s-0.2-1.1-0.6-1.4s-1-0.4-1.9-0.4h-1.5V72.3z"/>
<path d="M46,77.6c-1.1,0-2-0.3-2.6-1s-1-1.6-1-2.8c0-1.2,0.3-2.2,0.9-2.9s1.4-1.1,2.4-1.1c0.9,0,1.7,0.3,2.2,0.9s0.8,1.4,0.8,2.4 <path d="M46,77.6c-1.1,0-2-0.3-2.6-1s-1-1.6-1-2.8c0-1.2,0.3-2.2,0.9-2.9s1.4-1.1,2.4-1.1c0.9,0,1.7,0.3,2.2,0.9s0.8,1.4,0.8,2.4
v0.7h-5.2c0,0.9,0.2,1.5,0.7,2s1,0.7,1.8,0.7s1.6-0.2,2.4-0.5v1c-0.4,0.2-0.8,0.3-1.1,0.4C46.9,77.6,46.5,77.6,46,77.6z v0.7h-5.2c0,0.9,0.2,1.5,0.7,2s1,0.7,1.8,0.7s1.6-0.2,2.4-0.5v1c-0.4,0.2-0.8,0.3-1.1,0.4C46.9,77.6,46.5,77.6,46,77.6z
M45.7,70.8c-0.6,0-1.1,0.2-1.4,0.6s-0.6,0.9-0.6,1.6h3.9c0-0.7-0.2-1.3-0.5-1.6C46.7,71,46.3,70.8,45.7,70.8z"/> M45.7,70.8c-0.6,0-1.1,0.2-1.4,0.6s-0.6,0.9-0.6,1.6h3.9c0-0.7-0.2-1.3-0.5-1.6C46.7,71,46.3,70.8,45.7,70.8z"/>
<path d="M53.1,76.7c0.2,0,0.4,0,0.6,0s0.3-0.1,0.4-0.1v0.9c-0.1,0.1-0.3,0.1-0.5,0.1s-0.5,0.1-0.6,0.1c-1.4,0-2.2-0.8-2.2-2.3 <path d="M53.1,76.7c0.2,0,0.4,0,0.6,0s0.3-0.1,0.4-0.1v0.9c-0.1,0.1-0.3,0.1-0.5,0.1s-0.5,0.1-0.6,0.1c-1.4,0-2.2-0.8-2.2-2.3
v-4.5h-1.1v-0.5l1.1-0.5l0.5-1.6H52V70h2.2v0.9H52v4.4c0,0.5,0.1,0.8,0.3,1S52.7,76.7,53.1,76.7z"/> v-4.5h-1.1v-0.5l1.1-0.5l0.5-1.6H52V70h2.2v0.9H52v4.4c0,0.5,0.1,0.8,0.3,1S52.7,76.7,53.1,76.7z"/>
<path d="M56.7,70v4.9c0,0.6,0.1,1.1,0.4,1.4s0.7,0.5,1.3,0.5c0.8,0,1.4-0.2,1.7-0.6s0.5-1.1,0.5-2.1v-3.9h1.1v7.5h-0.9l-0.2-1 <path d="M56.7,70v4.9c0,0.6,0.1,1.1,0.4,1.4s0.7,0.5,1.3,0.5c0.8,0,1.4-0.2,1.7-0.6s0.5-1.1,0.5-2.1v-3.9h1.1v7.5h-0.9l-0.2-1
h-0.1c-0.2,0.4-0.6,0.7-1,0.8s-0.9,0.3-1.4,0.3c-0.9,0-1.6-0.2-2-0.6s-0.7-1.1-0.7-2.1v-4.9h1.3C56.7,70.2,56.7,70,56.7,70z"/> h-0.1c-0.2,0.4-0.6,0.7-1,0.8s-0.9,0.3-1.4,0.3c-0.9,0-1.6-0.2-2-0.6s-0.7-1.1-0.7-2.1v-4.9h1.3C56.7,70.2,56.7,70,56.7,70z"/>
<path d="M67.6,69.8c0.3,0,0.6,0,0.9,0.1L68.3,71c-0.3-0.1-0.6-0.1-0.8-0.1c-0.6,0-1.1,0.2-1.6,0.7s-0.6,1.1-0.6,1.8v4h-1.1v-7.5 <path d="M67.6,69.8c0.3,0,0.6,0,0.9,0.1L68.3,71c-0.3-0.1-0.6-0.1-0.8-0.1c-0.6,0-1.1,0.2-1.6,0.7s-0.6,1.1-0.6,1.8v4h-1.1v-7.5
h0.9l0.1,1.4h0.1c0.3-0.5,0.6-0.9,1-1.1S67.2,69.8,67.6,69.8z"/> h0.9l0.1,1.4h0.1c0.3-0.5,0.6-0.9,1-1.1S67.2,69.8,67.6,69.8z"/>
<path d="M75.1,77.5v-4.8c0-0.6-0.1-1.1-0.4-1.4s-0.7-0.5-1.3-0.5c-0.8,0-1.4,0.2-1.7,0.6s-0.5,1.1-0.5,2.1v3.9h-1.1v-7.5H71l0.2,1 <path d="M75.1,77.5v-4.8c0-0.6-0.1-1.1-0.4-1.4s-0.7-0.5-1.3-0.5c-0.8,0-1.4,0.2-1.7,0.6s-0.5,1.1-0.5,2.1v3.9h-1.1v-7.5H71l0.2,1
h0.1c0.2-0.4,0.6-0.7,1-0.9c0.4-0.2,0.9-0.3,1.4-0.3c0.9,0,1.6,0.2,2,0.7c0.5,0.4,0.7,1.1,0.7,2.1v4.9L75.1,77.5L75.1,77.5z"/> h0.1c0.2-0.4,0.6-0.7,1-0.9c0.4-0.2,0.9-0.3,1.4-0.3c0.9,0,1.6,0.2,2,0.7c0.5,0.4,0.7,1.1,0.7,2.1v4.9L75.1,77.5L75.1,77.5z"/>
<path d="M84.6,76.7c0.2,0,0.4,0,0.6,0s0.3-0.1,0.4-0.1v0.9c-0.1,0.1-0.3,0.1-0.5,0.1s-0.5,0.1-0.6,0.1c-1.4,0-2.2-0.8-2.2-2.3 <path d="M84.6,76.7c0.2,0,0.4,0,0.6,0s0.3-0.1,0.4-0.1v0.9c-0.1,0.1-0.3,0.1-0.5,0.1s-0.5,0.1-0.6,0.1c-1.4,0-2.2-0.8-2.2-2.3
v-4.5h-1.1v-0.5l1.1-0.5l0.5-1.6h0.7V70h2.2v0.9h-2.2v4.4c0,0.5,0.1,0.8,0.3,1S84.2,76.7,84.6,76.7z"/> v-4.5h-1.1v-0.5l1.1-0.5l0.5-1.6h0.7V70h2.2v0.9h-2.2v4.4c0,0.5,0.1,0.8,0.3,1S84.2,76.7,84.6,76.7z"/>
<path d="M93.6,73.7c0,1.2-0.3,2.2-0.9,2.9c-0.6,0.7-1.5,1-2.5,1c-0.7,0-1.3-0.2-1.8-0.5s-0.9-0.8-1.2-1.4s-0.4-1.3-0.4-2.1 <path d="M93.6,73.7c0,1.2-0.3,2.2-0.9,2.9c-0.6,0.7-1.5,1-2.5,1c-0.7,0-1.3-0.2-1.8-0.5s-0.9-0.8-1.2-1.4s-0.4-1.3-0.4-2.1
c0-1.2,0.3-2.2,0.9-2.9c0.6-0.7,1.5-1,2.5-1s1.9,0.3,2.5,1S93.6,72.5,93.6,73.7z M87.9,73.7c0,1,0.2,1.7,0.6,2.2s0.9,0.8,1.7,0.8 c0-1.2,0.3-2.2,0.9-2.9c0.6-0.7,1.5-1,2.5-1s1.9,0.3,2.5,1S93.6,72.5,93.6,73.7z M87.9,73.7c0,1,0.2,1.7,0.6,2.2s0.9,0.8,1.7,0.8
s1.3-0.2,1.7-0.7c0.4-0.5,0.6-1.2,0.6-2.2s-0.2-1.7-0.6-2.2s-1-0.7-1.7-0.7s-1.3,0.2-1.7,0.7S87.9,72.7,87.9,73.7z"/> s1.3-0.2,1.7-0.7c0.4-0.5,0.6-1.2,0.6-2.2s-0.2-1.7-0.6-2.2s-1-0.7-1.7-0.7s-1.3,0.2-1.7,0.7S87.9,72.7,87.9,73.7z"/>
</g> </g>
<g class="st4"> <g class="st4">
<path d="M41.9,94.3h-1.2v-4.7h-5.3v4.7h-1.2v-10h1.2v4.3h5.3v-4.3h1.2C41.9,84.3,41.9,94.3,41.9,94.3z"/> <path d="M41.9,94.3h-1.2v-4.7h-5.3v4.7h-1.2v-10h1.2v4.3h5.3v-4.3h1.2C41.9,84.3,41.9,94.3,41.9,94.3z"/>
<path d="M51,90.5c0,1.2-0.3,2.2-0.9,2.9c-0.6,0.7-1.5,1-2.5,1c-0.7,0-1.3-0.2-1.8-0.5s-0.9-0.8-1.2-1.4s-0.4-1.3-0.4-2.1 <path d="M51,90.5c0,1.2-0.3,2.2-0.9,2.9c-0.6,0.7-1.5,1-2.5,1c-0.7,0-1.3-0.2-1.8-0.5s-0.9-0.8-1.2-1.4s-0.4-1.3-0.4-2.1
c0-1.2,0.3-2.2,0.9-2.9c0.6-0.7,1.5-1,2.5-1s1.9,0.3,2.5,1S51,89.3,51,90.5z M45.3,90.5c0,1,0.2,1.7,0.6,2.2s0.9,0.8,1.7,0.8 c0-1.2,0.3-2.2,0.9-2.9c0.6-0.7,1.5-1,2.5-1s1.9,0.3,2.5,1S51,89.3,51,90.5z M45.3,90.5c0,1,0.2,1.7,0.6,2.2s0.9,0.8,1.7,0.8
s1.3-0.2,1.7-0.7c0.4-0.5,0.6-1.2,0.6-2.2s-0.2-1.7-0.6-2.2s-1-0.7-1.7-0.7s-1.3,0.2-1.7,0.7S45.3,89.5,45.3,90.5z"/> s1.3-0.2,1.7-0.7c0.4-0.5,0.6-1.2,0.6-2.2s-0.2-1.7-0.6-2.2s-1-0.7-1.7-0.7s-1.3,0.2-1.7,0.7S45.3,89.5,45.3,90.5z"/>
<path d="M62.5,94.3v-4.9c0-0.6-0.1-1-0.4-1.3s-0.7-0.4-1.2-0.4c-0.7,0-1.2,0.2-1.6,0.6s-0.5,1-0.5,1.9v4.2h-1.1v-4.9 <path d="M62.5,94.3v-4.9c0-0.6-0.1-1-0.4-1.3s-0.7-0.4-1.2-0.4c-0.7,0-1.2,0.2-1.6,0.6s-0.5,1-0.5,1.9v4.2h-1.1v-4.9
c0-0.6-0.1-1-0.4-1.3s-0.7-0.4-1.2-0.4c-0.7,0-1.2,0.2-1.6,0.6c-0.3,0.4-0.5,1.1-0.5,2.1v3.9h-1.1v-7.5h0.9l0.2,1h0.1 c0-0.6-0.1-1-0.4-1.3s-0.7-0.4-1.2-0.4c-0.7,0-1.2,0.2-1.6,0.6c-0.3,0.4-0.5,1.1-0.5,2.1v3.9h-1.1v-7.5h0.9l0.2,1h0.1
c0.2-0.4,0.5-0.6,0.9-0.9s0.8-0.3,1.3-0.3c1.2,0,1.9,0.4,2.3,1.3h0.1c0.2-0.4,0.5-0.7,1-0.9s0.9-0.3,1.4-0.3 c0.2-0.4,0.5-0.6,0.9-0.9s0.8-0.3,1.3-0.3c1.2,0,1.9,0.4,2.3,1.3h0.1c0.2-0.4,0.5-0.7,1-0.9s0.9-0.3,1.4-0.3
c0.8,0,1.5,0.2,1.9,0.7c0.4,0.4,0.6,1.1,0.6,2.1v4.9h-1.1L62.5,94.3L62.5,94.3z"/> c0.8,0,1.5,0.2,1.9,0.7c0.4,0.4,0.6,1.1,0.6,2.1v4.9h-1.1L62.5,94.3L62.5,94.3z"/>
<path d="M69.2,94.4c-1.1,0-2-0.3-2.6-1s-1-1.6-1-2.8c0-1.2,0.3-2.2,0.9-2.9s1.4-1.1,2.4-1.1c0.9,0,1.7,0.3,2.2,0.9 <path d="M69.2,94.4c-1.1,0-2-0.3-2.6-1s-1-1.6-1-2.8c0-1.2,0.3-2.2,0.9-2.9s1.4-1.1,2.4-1.1c0.9,0,1.7,0.3,2.2,0.9
s0.8,1.4,0.8,2.4v0.7h-5.2c0,0.9,0.2,1.5,0.7,2s1,0.7,1.8,0.7s1.6-0.2,2.4-0.5v1c-0.4,0.2-0.8,0.3-1.1,0.4 s0.8,1.4,0.8,2.4v0.7h-5.2c0,0.9,0.2,1.5,0.7,2s1,0.7,1.8,0.7s1.6-0.2,2.4-0.5v1c-0.4,0.2-0.8,0.3-1.1,0.4
C70.1,94.4,69.7,94.4,69.2,94.4z M68.9,87.6c-0.6,0-1.1,0.2-1.4,0.6s-0.6,0.9-0.6,1.6h3.9c0-0.7-0.2-1.3-0.5-1.6 C70.1,94.4,69.7,94.4,69.2,94.4z M68.9,87.6c-0.6,0-1.1,0.2-1.4,0.6s-0.6,0.9-0.6,1.6h3.9c0-0.7-0.2-1.3-0.5-1.6
C69.9,87.8,69.4,87.6,68.9,87.6z"/> C69.9,87.8,69.4,87.6,68.9,87.6z"/>
</g> </g>
<g> <g>
<g> <g>
<line class="st5" x1="111.1" y1="49.8" x2="107.1" y2="49.8"/> <line class="st5" x1="111.1" y1="49.8" x2="107.1" y2="49.8"/>
<line class="st6" x1="99.7" y1="49.8" x2="14.4" y2="49.8"/> <line class="st6" x1="99.7" y1="49.8" x2="14.4" y2="49.8"/>
<polyline class="st5" points="10.7,49.8 6.7,49.8 6.7,53.8 "/> <polyline class="st5" points="10.7,49.8 6.7,49.8 6.7,53.8 "/>
<line class="st7" x1="6.7" y1="61.6" x2="6.7" y2="73.2"/> <line class="st7" x1="6.7" y1="61.6" x2="6.7" y2="73.2"/>
<line class="st5" x1="6.7" y1="77.1" x2="6.7" y2="81.1"/> <line class="st5" x1="6.7" y1="77.1" x2="6.7" y2="81.1"/>
</g> </g>
</g> </g>
<line class="st8" x1="-3.8" y1="112.6" x2="251.2" y2="112.6"/> <line class="st8" x1="-3.8" y1="112.6" x2="251.2" y2="112.6"/>
<path class="st0" d="M6.8,91.2c-4.7,0-8.5,3.8-8.5,8.5s5.2,8.6,8.5,11.6c2.7-2.7,8.5-7,8.5-11.6C15.3,95,11.5,91.2,6.8,91.2z <path class="st0" d="M6.8,91.2c-4.7,0-8.5,3.8-8.5,8.5s5.2,8.6,8.5,11.6c2.7-2.7,8.5-7,8.5-11.6C15.3,95,11.5,91.2,6.8,91.2z
M10.1,102.8H8.2v-2.2H5.3v2.2H3.4v-6.2h1.9v2.2h2.9v-2.2h1.9V102.8z"/> M10.1,102.8H8.2v-2.2H5.3v2.2H3.4v-6.2h1.9v2.2h2.9v-2.2h1.9V102.8z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

@ -1,13 +1,13 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g id="EQ__x2F__Equalizer__x2F__Mixer"> <g id="EQ__x2F__Equalizer__x2F__Mixer">
<path fill="#818181" d="M37,48.3h-4.5V9.9c0-3.7-3-6.8-6.8-6.8s-6.8,3-6.8,6.8v38.4h-4.5c-5,0-9,4-9,9v9c0,5,4,9,9,9h4.5v56.5 <path fill="#818181" d="M37,48.3h-4.5V9.9c0-3.7-3-6.8-6.8-6.8s-6.8,3-6.8,6.8v38.4h-4.5c-5,0-9,4-9,9v9c0,5,4,9,9,9h4.5v56.5
c0,3.7,3,6.8,6.8,6.8c3.7,0,6.8-3,6.8-6.8V75.4H37c5,0,9-4,9-9v-9C46,52.3,42,48.3,37,48.3z M82.2,88.9h-4.5V9.9 c0,3.7,3,6.8,6.8,6.8c3.7,0,6.8-3,6.8-6.8V75.4H37c5,0,9-4,9-9v-9C46,52.3,42,48.3,37,48.3z M82.2,88.9h-4.5V9.9
c0-3.7-3-6.8-6.8-6.8c-3.7,0-6.8,3-6.8,6.8v79.1h-4.5c-5,0-9,4-9,9v9c0,5,4,9,9,9h4.5v15.8c0,3.7,3,6.8,6.8,6.8 c0-3.7-3-6.8-6.8-6.8c-3.7,0-6.8,3-6.8,6.8v79.1h-4.5c-5,0-9,4-9,9v9c0,5,4,9,9,9h4.5v15.8c0,3.7,3,6.8,6.8,6.8
c3.7,0,6.8-3,6.8-6.8V116h4.5c5,0,9-4,9-9v-9C91.2,93,87.1,88.9,82.2,88.9z M127.3,16.7h-4.5V9.9c0-3.7-3-6.8-6.8-6.8 c3.7,0,6.8-3,6.8-6.8V116h4.5c5,0,9-4,9-9v-9C91.2,93,87.1,88.9,82.2,88.9z M127.3,16.7h-4.5V9.9c0-3.7-3-6.8-6.8-6.8
c-3.7,0-6.8,3-6.8,6.8v6.8h-4.5c-5,0-9,4-9,9v9c0,5,4,9,9,9h4.5v88.1c0,3.7,3,6.8,6.8,6.8c3.7,0,6.8-3,6.8-6.8V43.8h4.5 c-3.7,0-6.8,3-6.8,6.8v6.8h-4.5c-5,0-9,4-9,9v9c0,5,4,9,9,9h4.5v88.1c0,3.7,3,6.8,6.8,6.8c3.7,0,6.8-3,6.8-6.8V43.8h4.5
c5,0,9-4,9-9v-9C136.4,20.7,132.3,16.7,127.3,16.7z"/> c5,0,9-4,9-9v-9C136.4,20.7,132.3,16.7,127.3,16.7z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -1,13 +1,13 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g id="EQ__x2F__Equalizer__x2F__Mixer"> <g id="EQ__x2F__Equalizer__x2F__Mixer">
<path fill="#FFFFFF" d="M37,48.3h-4.5V9.9c0-3.7-3-6.8-6.8-6.8s-6.8,3-6.8,6.8v38.4h-4.5c-5,0-9,4-9,9v9c0,5,4,9,9,9h4.5v56.5 <path fill="#FFFFFF" d="M37,48.3h-4.5V9.9c0-3.7-3-6.8-6.8-6.8s-6.8,3-6.8,6.8v38.4h-4.5c-5,0-9,4-9,9v9c0,5,4,9,9,9h4.5v56.5
c0,3.7,3,6.8,6.8,6.8c3.7,0,6.8-3,6.8-6.8V75.4H37c5,0,9-4,9-9v-9C46,52.3,42,48.3,37,48.3z M82.2,88.9h-4.5V9.9 c0,3.7,3,6.8,6.8,6.8c3.7,0,6.8-3,6.8-6.8V75.4H37c5,0,9-4,9-9v-9C46,52.3,42,48.3,37,48.3z M82.2,88.9h-4.5V9.9
c0-3.7-3-6.8-6.8-6.8c-3.7,0-6.8,3-6.8,6.8v79.1h-4.5c-5,0-9,4-9,9v9c0,5,4,9,9,9h4.5v15.8c0,3.7,3,6.8,6.8,6.8 c0-3.7-3-6.8-6.8-6.8c-3.7,0-6.8,3-6.8,6.8v79.1h-4.5c-5,0-9,4-9,9v9c0,5,4,9,9,9h4.5v15.8c0,3.7,3,6.8,6.8,6.8
c3.7,0,6.8-3,6.8-6.8V116h4.5c5,0,9-4,9-9v-9C91.2,93,87.1,88.9,82.2,88.9z M127.3,16.7h-4.5V9.9c0-3.7-3-6.8-6.8-6.8 c3.7,0,6.8-3,6.8-6.8V116h4.5c5,0,9-4,9-9v-9C91.2,93,87.1,88.9,82.2,88.9z M127.3,16.7h-4.5V9.9c0-3.7-3-6.8-6.8-6.8
c-3.7,0-6.8,3-6.8,6.8v6.8h-4.5c-5,0-9,4-9,9v9c0,5,4,9,9,9h4.5v88.1c0,3.7,3,6.8,6.8,6.8c3.7,0,6.8-3,6.8-6.8V43.8h4.5 c-3.7,0-6.8,3-6.8,6.8v6.8h-4.5c-5,0-9,4-9,9v9c0,5,4,9,9,9h4.5v88.1c0,3.7,3,6.8,6.8,6.8c3.7,0,6.8-3,6.8-6.8V43.8h4.5
c5,0,9-4,9-9v-9C136.4,20.7,132.3,16.7,127.3,16.7z"/> c5,0,9-4,9-9v-9C136.4,20.7,132.3,16.7,127.3,16.7z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<polygon fill="#818181" points="26.8,38.1 31.7,38.1 31.7,29.5 40.4,29.5 40.4,24.6 31.7,24.6 31.7,15.9 26.8,15.9 26.8,24.6 <polygon fill="#818181" points="26.8,38.1 31.7,38.1 31.7,29.5 40.4,29.5 40.4,24.6 31.7,24.6 31.7,15.9 26.8,15.9 26.8,24.6
18.2,24.6 18.2,29.5 26.8,29.5 "/> 18.2,24.6 18.2,29.5 26.8,29.5 "/>
<path fill="#818181" d="M114.8,94.6c-10.8,0-19.8,7.6-21.9,17.7l-39.1,0V71.8l39,0c2,10.3,11.1,18.1,22,18.1 <path fill="#818181" d="M114.8,94.6c-10.8,0-19.8,7.6-21.9,17.7l-39.1,0V71.8l39,0c2,10.3,11.1,18.1,22,18.1
c12.4,0,22.4-10.1,22.4-22.4s-10.1-22.4-22.4-22.4c-10.9,0-20,7.8-22,18.1l-39,0V51.6h0.1V2.4H4.7v49.1h40.6v69.9h0.2v0.3l47.3,0 c12.4,0,22.4-10.1,22.4-22.4s-10.1-22.4-22.4-22.4c-10.9,0-20,7.8-22,18.1l-39,0V51.6h0.1V2.4H4.7v49.1h40.6v69.9h0.2v0.3l47.3,0
c2.2,10.1,11.2,17.7,21.9,17.7c12.4,0,22.4-10.1,22.4-22.4S127.1,94.6,114.8,94.6z M114.8,55.2c6.8,0,12.3,5.5,12.3,12.3 c2.2,10.1,11.2,17.7,21.9,17.7c12.4,0,22.4-10.1,22.4-22.4S127.1,94.6,114.8,94.6z M114.8,55.2c6.8,0,12.3,5.5,12.3,12.3
c0,6.8-5.5,12.3-12.3,12.3s-12.3-5.5-12.3-12.3C102.5,60.7,108,55.2,114.8,55.2z M45,42.7H13.6V11.3H45V42.7z M114.8,129.3 c0,6.8-5.5,12.3-12.3,12.3s-12.3-5.5-12.3-12.3C102.5,60.7,108,55.2,114.8,55.2z M45,42.7H13.6V11.3H45V42.7z M114.8,129.3
c-6.8,0-12.3-5.5-12.3-12.3s5.5-12.3,12.3-12.3s12.3,5.5,12.3,12.3S121.5,129.3,114.8,129.3z"/> c-6.8,0-12.3-5.5-12.3-12.3s5.5-12.3,12.3-12.3s12.3,5.5,12.3,12.3S121.5,129.3,114.8,129.3z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<polygon fill="#FFFFFF" points="26.8,38.1 31.7,38.1 31.7,29.5 40.4,29.5 40.4,24.6 31.7,24.6 31.7,15.9 26.8,15.9 26.8,24.6 <polygon fill="#FFFFFF" points="26.8,38.1 31.7,38.1 31.7,29.5 40.4,29.5 40.4,24.6 31.7,24.6 31.7,15.9 26.8,15.9 26.8,24.6
18.2,24.6 18.2,29.5 26.8,29.5 "/> 18.2,24.6 18.2,29.5 26.8,29.5 "/>
<path fill="#FFFFFF" d="M114.8,94.6c-10.8,0-19.8,7.6-21.9,17.7l-39.1,0V71.8l39,0c2,10.3,11.1,18.1,22,18.1 <path fill="#FFFFFF" d="M114.8,94.6c-10.8,0-19.8,7.6-21.9,17.7l-39.1,0V71.8l39,0c2,10.3,11.1,18.1,22,18.1
c12.4,0,22.4-10.1,22.4-22.4s-10.1-22.4-22.4-22.4c-10.9,0-20,7.8-22,18.1l-39,0V51.6h0.1V2.4H4.7v49.1h40.6v69.9h0.2v0.3l47.3,0 c12.4,0,22.4-10.1,22.4-22.4s-10.1-22.4-22.4-22.4c-10.9,0-20,7.8-22,18.1l-39,0V51.6h0.1V2.4H4.7v49.1h40.6v69.9h0.2v0.3l47.3,0
c2.2,10.1,11.2,17.7,21.9,17.7c12.4,0,22.4-10.1,22.4-22.4S127.1,94.6,114.8,94.6z M114.8,55.2c6.8,0,12.3,5.5,12.3,12.3 c2.2,10.1,11.2,17.7,21.9,17.7c12.4,0,22.4-10.1,22.4-22.4S127.1,94.6,114.8,94.6z M114.8,55.2c6.8,0,12.3,5.5,12.3,12.3
c0,6.8-5.5,12.3-12.3,12.3s-12.3-5.5-12.3-12.3C102.5,60.7,108,55.2,114.8,55.2z M45,42.7H13.6V11.3H45V42.7z M114.8,129.3 c0,6.8-5.5,12.3-12.3,12.3s-12.3-5.5-12.3-12.3C102.5,60.7,108,55.2,114.8,55.2z M45,42.7H13.6V11.3H45V42.7z M114.8,129.3
c-6.8,0-12.3-5.5-12.3-12.3s5.5-12.3,12.3-12.3s12.3,5.5,12.3,12.3S121.5,129.3,114.8,129.3z"/> c-6.8,0-12.3-5.5-12.3-12.3s5.5-12.3,12.3-12.3s12.3,5.5,12.3,12.3S121.5,129.3,114.8,129.3z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,16 +1,16 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="28 -43 141.7 141.7" style="enable-background:new 28 -43 141.7 141.7;" xml:space="preserve"> viewBox="28 -43 141.7 141.7" style="enable-background:new 28 -43 141.7 141.7;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#FFCC00;} .st0{fill:#FFCC00;}
</style> </style>
<g> <g>
<g> <g>
<path class="st0" d="M157.1,71.9l-52-97.5c-1.3-2.4-3.8-4-6.6-4c-2.8,0-5.3,1.5-6.6,4L39.6,71.9c-1.2,2.3-1.2,5.1,0.2,7.4 <path class="st0" d="M157.1,71.9l-52-97.5c-1.3-2.4-3.8-4-6.6-4c-2.8,0-5.3,1.5-6.6,4L39.6,71.9c-1.2,2.3-1.2,5.1,0.2,7.4
c1.4,2.3,3.8,3.7,6.5,3.7h104.3c2.6,0,5.1-1.4,6.4-3.7C158.3,77,158.4,74.2,157.1,71.9L157.1,71.9z M98.5,67.9 c1.4,2.3,3.8,3.7,6.5,3.7h104.3c2.6,0,5.1-1.4,6.4-3.7C158.3,77,158.4,74.2,157.1,71.9L157.1,71.9z M98.5,67.9
c-4.1,0-7.5-3.3-7.5-7.5c0-4.1,3.4-7.5,7.5-7.5c4.1,0,7.5,3.4,7.5,7.5C106,64.6,102.6,67.9,98.5,67.9L98.5,67.9z M106,38 c-4.1,0-7.5-3.3-7.5-7.5c0-4.1,3.4-7.5,7.5-7.5c4.1,0,7.5,3.4,7.5,7.5C106,64.6,102.6,67.9,98.5,67.9L98.5,67.9z M106,38
c0,4.2-3.4,7.5-7.5,7.5c-4.1,0-7.5-3.3-7.5-7.5V8c0-4.1,3.4-7.5,7.5-7.5c4.1,0,7.5,3.4,7.5,7.5V38z M106,38"/> c0,4.2-3.4,7.5-7.5,7.5c-4.1,0-7.5-3.3-7.5-7.5V8c0-4.1,3.4-7.5,7.5-7.5c4.1,0,7.5,3.4,7.5,7.5V38z M106,38"/>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 920 B

After

Width:  |  Height:  |  Size: 904 B

View File

@ -1,16 +1,16 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="28 -43 141.7 141.7" style="enable-background:new 28 -43 141.7 141.7;" xml:space="preserve"> viewBox="28 -43 141.7 141.7" style="enable-background:new 28 -43 141.7 141.7;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#818180;} .st0{fill:#818180;}
</style> </style>
<g> <g>
<g> <g>
<path class="st0" d="M157.1,71.9l-52-97.5c-1.3-2.4-3.8-4-6.6-4c-2.8,0-5.3,1.5-6.6,4L39.6,71.9c-1.2,2.3-1.2,5.1,0.2,7.4 <path class="st0" d="M157.1,71.9l-52-97.5c-1.3-2.4-3.8-4-6.6-4c-2.8,0-5.3,1.5-6.6,4L39.6,71.9c-1.2,2.3-1.2,5.1,0.2,7.4
c1.4,2.3,3.8,3.7,6.5,3.7h104.3c2.6,0,5.1-1.4,6.4-3.7C158.3,77,158.4,74.2,157.1,71.9L157.1,71.9z M98.5,67.9 c1.4,2.3,3.8,3.7,6.5,3.7h104.3c2.6,0,5.1-1.4,6.4-3.7C158.3,77,158.4,74.2,157.1,71.9L157.1,71.9z M98.5,67.9
c-4.1,0-7.5-3.3-7.5-7.5c0-4.1,3.4-7.5,7.5-7.5c4.1,0,7.5,3.4,7.5,7.5C106,64.6,102.6,67.9,98.5,67.9L98.5,67.9z M106,38 c-4.1,0-7.5-3.3-7.5-7.5c0-4.1,3.4-7.5,7.5-7.5c4.1,0,7.5,3.4,7.5,7.5C106,64.6,102.6,67.9,98.5,67.9L98.5,67.9z M106,38
c0,4.2-3.4,7.5-7.5,7.5c-4.1,0-7.5-3.3-7.5-7.5V8c0-4.1,3.4-7.5,7.5-7.5c4.1,0,7.5,3.4,7.5,7.5V38z M106,38"/> c0,4.2-3.4,7.5-7.5,7.5c-4.1,0-7.5-3.3-7.5-7.5V8c0-4.1,3.4-7.5,7.5-7.5c4.1,0,7.5,3.4,7.5,7.5V38z M106,38"/>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 920 B

After

Width:  |  Height:  |  Size: 904 B

View File

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<path fill="#818181" d="M137.3,42.9c-1.4-1.8-3.6-2.8-5.9-2.8h-7.6c0-4.2-3.4-7.6-7.6-7.6h-7.6v-7.6c0-4.2-3.4-7.6-7.6-7.6H9.7 <path fill="#818181" d="M137.3,42.9c-1.4-1.8-3.6-2.8-5.9-2.8h-7.6c0-4.2-3.4-7.6-7.6-7.6h-7.6v-7.6c0-4.2-3.4-7.6-7.6-7.6H9.7
c-4.2,0-7.6,3.4-7.6,7.6v91.3c0,4.2,3.4,7.6,7.6,7.6h15.2h76.1h15.2c3.6,0,6.7-2.5,7.4-6l15.2-68.5 c-4.2,0-7.6,3.4-7.6,7.6v91.3c0,4.2,3.4,7.6,7.6,7.6h15.2h76.1h15.2c3.6,0,6.7-2.5,7.4-6l15.2-68.5
C139.3,47.1,138.7,44.7,137.3,42.9z M100.9,32.5h-7.6c-3.9,0-7.1,3-7.5,6.9v27.5h9.5c1.5,0,2.9,0.9,3.5,2.3 C139.3,47.1,138.7,44.7,137.3,42.9z M100.9,32.5h-7.6c-3.9,0-7.1,3-7.5,6.9v27.5h9.5c1.5,0,2.9,0.9,3.5,2.3
c0.6,1.4,0.3,3.1-0.8,4.1L71.4,99.9c-0.7,0.7-1.7,1.1-2.7,1.1c-1,0-1.9-0.4-2.7-1.1L39.4,73.3c-1.1-1.1-1.4-2.7-0.8-4.1 c0.6,1.4,0.3,3.1-0.8,4.1L71.4,99.9c-0.7,0.7-1.7,1.1-2.7,1.1c-1,0-1.9-0.4-2.7-1.1L39.4,73.3c-1.1-1.1-1.4-2.7-0.8-4.1
c0.6-1.4,2-2.3,3.5-2.3h9.5V40.1H40.1c-3.6,0-6.7,2.5-7.4,6l-15.2,68.5c-0.1,0.6-0.2,1.1-0.2,1.6H9.7V24.9h91.3V32.5z"/> c0.6-1.4,2-2.3,3.5-2.3h9.5V40.1H40.1c-3.6,0-6.7,2.5-7.4,6l-15.2,68.5c-0.1,0.6-0.2,1.1-0.2,1.6H9.7V24.9h91.3V32.5z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 943 B

After

Width:  |  Height:  |  Size: 931 B

View File

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<path fill="#FFFFFF" d="M137.3,42.9c-1.4-1.8-3.6-2.8-5.9-2.8h-7.6c0-4.2-3.4-7.6-7.6-7.6h-7.6v-7.6c0-4.2-3.4-7.6-7.6-7.6H9.7 <path fill="#FFFFFF" d="M137.3,42.9c-1.4-1.8-3.6-2.8-5.9-2.8h-7.6c0-4.2-3.4-7.6-7.6-7.6h-7.6v-7.6c0-4.2-3.4-7.6-7.6-7.6H9.7
c-4.2,0-7.6,3.4-7.6,7.6v91.3c0,4.2,3.4,7.6,7.6,7.6h15.2h76.1h15.2c3.6,0,6.7-2.5,7.4-6l15.2-68.5 c-4.2,0-7.6,3.4-7.6,7.6v91.3c0,4.2,3.4,7.6,7.6,7.6h15.2h76.1h15.2c3.6,0,6.7-2.5,7.4-6l15.2-68.5
C139.3,47.1,138.7,44.7,137.3,42.9z M100.9,32.5h-7.6c-3.9,0-7.1,3-7.5,6.9v27.5h9.5c1.5,0,2.9,0.9,3.5,2.3 C139.3,47.1,138.7,44.7,137.3,42.9z M100.9,32.5h-7.6c-3.9,0-7.1,3-7.5,6.9v27.5h9.5c1.5,0,2.9,0.9,3.5,2.3
c0.6,1.4,0.3,3.1-0.8,4.1L71.4,99.9c-0.7,0.7-1.7,1.1-2.7,1.1c-1,0-1.9-0.4-2.7-1.1L39.4,73.3c-1.1-1.1-1.4-2.7-0.8-4.1 c0.6,1.4,0.3,3.1-0.8,4.1L71.4,99.9c-0.7,0.7-1.7,1.1-2.7,1.1c-1,0-1.9-0.4-2.7-1.1L39.4,73.3c-1.1-1.1-1.4-2.7-0.8-4.1
c0.6-1.4,2-2.3,3.5-2.3h9.5V40.1H40.1c-3.6,0-6.7,2.5-7.4,6l-15.2,68.5c-0.1,0.6-0.2,1.1-0.2,1.6H9.7V24.9h91.3V32.5z"/> c0.6-1.4,2-2.3,3.5-2.3h9.5V40.1H40.1c-3.6,0-6.7,2.5-7.4,6l-15.2,68.5c-0.1,0.6-0.2,1.1-0.2,1.6H9.7V24.9h91.3V32.5z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 943 B

After

Width:  |  Height:  |  Size: 931 B

View File

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 85 56.7" style="enable-background:new 0 0 85 56.7;" xml:space="preserve"> viewBox="0 0 85 56.7" style="enable-background:new 0 0 85 56.7;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#838281;} .st0{fill:#838281;}
</style> </style>
<g> <g>
<path class="st0" d="M7,43.6c1,1,2.1,1.5,3.5,1.5h59.9c1.4,0,2.5-0.5,3.5-1.5c1-1,1.5-2.1,1.5-3.5v-6h2.3c1.3,0,2.3-1,2.3-2.3v-6.1 <path class="st0" d="M7,43.6c1,1,2.1,1.5,3.5,1.5h59.9c1.4,0,2.5-0.5,3.5-1.5c1-1,1.5-2.1,1.5-3.5v-6h2.3c1.3,0,2.3-1,2.3-2.3v-6.1
c0-1.3-1-2.3-2.3-2.3h-2.3v-5.8c0-1.4-0.5-2.5-1.5-3.5c-1-1-2.1-1.5-3.5-1.5l-59.9,0c-1.4,0-2.6,0.5-3.5,1.4c-1,1-1.4,2.2-1.4,3.5 c0-1.3-1-2.3-2.3-2.3h-2.3v-5.8c0-1.4-0.5-2.5-1.5-3.5c-1-1-2.1-1.5-3.5-1.5l-59.9,0c-1.4,0-2.6,0.5-3.5,1.4c-1,1-1.4,2.2-1.4,3.5
v22.4C5.5,41.4,6,42.6,7,43.6L7,43.6z M9.1,16.7c0-0.3,0.1-0.4,0.4-0.4l61.9,0c0.2,0,0.4,0.2,0.4,0.4v24.4c0,0.2-0.2,0.4-0.4,0.4 v22.4C5.5,41.4,6,42.6,7,43.6L7,43.6z M9.1,16.7c0-0.3,0.1-0.4,0.4-0.4l61.9,0c0.2,0,0.4,0.2,0.4,0.4v24.4c0,0.2-0.2,0.4-0.4,0.4
l-61.9,0c-0.3,0-0.4-0.1-0.4-0.4V16.7z M9.1,16.7"/> l-61.9,0c-0.3,0-0.4-0.1-0.4-0.4V16.7z M9.1,16.7"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 870 B

After

Width:  |  Height:  |  Size: 856 B

View File

@ -1,17 +1,17 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<g id="c43_terminal"> <g id="c43_terminal">
<path fill="#818181" d="M125.8,15.9H15.9c-5.1,0-9.2,4.1-9.2,9.2v91.6c0,5.1,4.1,9.2,9.2,9.2h109.9c5.1,0,9.2-4.1,9.2-9.2V25 <path fill="#818181" d="M125.8,15.9H15.9c-5.1,0-9.2,4.1-9.2,9.2v91.6c0,5.1,4.1,9.2,9.2,9.2h109.9c5.1,0,9.2-4.1,9.2-9.2V25
C135,20,130.9,15.9,125.8,15.9z M36.5,22.8c2.5,0,4.6,2,4.6,4.6c0,2.5-2.1,4.6-4.6,4.6c-2.5,0-4.6-2-4.6-4.6 C135,20,130.9,15.9,125.8,15.9z M36.5,22.8c2.5,0,4.6,2,4.6,4.6c0,2.5-2.1,4.6-4.6,4.6c-2.5,0-4.6-2-4.6-4.6
C31.9,24.8,34,22.8,36.5,22.8z M22.8,22.8c2.5,0,4.6,2,4.6,4.6c0,2.5-2,4.6-4.6,4.6s-4.6-2-4.6-4.6C18.2,24.8,20.2,22.8,22.8,22.8 C31.9,24.8,34,22.8,36.5,22.8z M22.8,22.8c2.5,0,4.6,2,4.6,4.6c0,2.5-2,4.6-4.6,4.6s-4.6-2-4.6-4.6C18.2,24.8,20.2,22.8,22.8,22.8
z M125.8,116.7H15.9V38.9h109.9V116.7z"/> z M125.8,116.7H15.9V38.9h109.9V116.7z"/>
<polygon fill="#818181" points="58.1,57.7 28.7,44.3 28.7,50.8 51.4,60.5 51.4,60.6 28.7,70.3 28.7,76.8 58.1,63.3 "/> <polygon fill="#818181" points="58.1,57.7 28.7,44.3 28.7,50.8 51.4,60.5 51.4,60.6 28.7,70.3 28.7,76.8 58.1,63.3 "/>
<rect x="71.9" y="57.4" fill="#818181" width="16" height="6.2"/> <rect x="71.9" y="57.4" fill="#818181" width="16" height="6.2"/>
</g> </g>
<g id="Capa_1_86_"> <g id="Capa_1_86_">
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1013 B

View File

@ -1,17 +1,17 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<g id="c43_terminal"> <g id="c43_terminal">
<path fill="#FFFFFF" d="M125.8,15.9H15.9c-5.1,0-9.2,4.1-9.2,9.2v91.6c0,5.1,4.1,9.2,9.2,9.2h109.9c5.1,0,9.2-4.1,9.2-9.2V25 <path fill="#FFFFFF" d="M125.8,15.9H15.9c-5.1,0-9.2,4.1-9.2,9.2v91.6c0,5.1,4.1,9.2,9.2,9.2h109.9c5.1,0,9.2-4.1,9.2-9.2V25
C135,20,130.9,15.9,125.8,15.9z M36.5,22.8c2.5,0,4.6,2,4.6,4.6c0,2.5-2.1,4.6-4.6,4.6c-2.5,0-4.6-2-4.6-4.6 C135,20,130.9,15.9,125.8,15.9z M36.5,22.8c2.5,0,4.6,2,4.6,4.6c0,2.5-2.1,4.6-4.6,4.6c-2.5,0-4.6-2-4.6-4.6
C31.9,24.8,34,22.8,36.5,22.8z M22.8,22.8c2.5,0,4.6,2,4.6,4.6c0,2.5-2,4.6-4.6,4.6s-4.6-2-4.6-4.6C18.2,24.8,20.2,22.8,22.8,22.8 C31.9,24.8,34,22.8,36.5,22.8z M22.8,22.8c2.5,0,4.6,2,4.6,4.6c0,2.5-2,4.6-4.6,4.6s-4.6-2-4.6-4.6C18.2,24.8,20.2,22.8,22.8,22.8
z M125.8,116.7H15.9V38.9h109.9V116.7z"/> z M125.8,116.7H15.9V38.9h109.9V116.7z"/>
<polygon fill="#FFFFFF" points="58.1,57.7 28.7,44.3 28.7,50.8 51.4,60.5 51.4,60.6 28.7,70.3 28.7,76.8 58.1,63.3 "/> <polygon fill="#FFFFFF" points="58.1,57.7 28.7,44.3 28.7,50.8 51.4,60.5 51.4,60.6 28.7,70.3 28.7,76.8 58.1,63.3 "/>
<rect x="71.9" y="57.4" fill="#FFFFFF" width="16" height="6.2"/> <rect x="71.9" y="57.4" fill="#FFFFFF" width="16" height="6.2"/>
</g> </g>
<g id="Capa_1_86_"> <g id="Capa_1_86_">
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1013 B

View File

@ -1,17 +1,17 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<g> <g>
<g> <g>
<path fill="#818181" d="M119.6,54.2l-2.3-5.5c7.9-18,7.4-18.5,5.9-20.1L113,18.7l-1-0.8h-1.2c-0.6,0-2.5,0-17.9,7l-5.7-2.3 <path fill="#818181" d="M119.6,54.2l-2.3-5.5c7.9-18,7.4-18.5,5.9-20.1L113,18.7l-1-0.8h-1.2c-0.6,0-2.5,0-17.9,7l-5.7-2.3
C79.9,4.4,79.1,4.4,77,4.4H62.7c-2.1,0-3,0-9.8,18.3l-5.7,2.3c-10.4-4.4-16.5-6.6-18.2-6.6l-1.4,0L16.7,29 C79.9,4.4,79.1,4.4,77,4.4H62.7c-2.1,0-3,0-9.8,18.3l-5.7,2.3c-10.4-4.4-16.5-6.6-18.2-6.6l-1.4,0L16.7,29
c-1.7,1.6-2.2,2.1,6.2,19.8l-2.3,5.5C2,61.5,2,62.2,2,64.4v14c0,2.2,0,3,18.7,9.7l2.3,5.5c-7.9,18-7.4,18.5-5.9,20l10.2,9.9 c-1.7,1.6-2.2,2.1,6.2,19.8l-2.3,5.5C2,61.5,2,62.2,2,64.4v14c0,2.2,0,3,18.7,9.7l2.3,5.5c-7.9,18-7.4,18.5-5.9,20l10.2,9.9
l1,0.9h1.2c0.6,0,2.4,0,17.9-7l5.7,2.3c7.3,18.2,8.1,18.2,10.3,18.2h14.3c2.2,0,3,0,9.8-18.3l5.7-2.3c10.4,4.4,16.5,6.6,18.2,6.6 l1,0.9h1.2c0.6,0,2.4,0,17.9-7l5.7,2.3c7.3,18.2,8.1,18.2,10.3,18.2h14.3c2.2,0,3,0,9.8-18.3l5.7-2.3c10.4,4.4,16.5,6.6,18.2,6.6
l1.4,0l11-10.8c1.6-1.6,2.1-2.1-6.2-19.7l2.3-5.5c18.6-7.2,18.6-8,18.6-10.1v-14C138.3,61.6,138.3,60.8,119.6,54.2z M70.1,94.5 l1.4,0l11-10.8c1.6-1.6,2.1-2.1-6.2-19.7l2.3-5.5c18.6-7.2,18.6-8,18.6-10.1v-14C138.3,61.6,138.3,60.8,119.6,54.2z M70.1,94.5
C57,94.5,46.3,84,46.3,71.1c0-12.9,10.7-23.4,23.8-23.4c13.1,0,23.8,10.5,23.8,23.4C93.9,84,83.3,94.5,70.1,94.5z"/> C57,94.5,46.3,84,46.3,71.1c0-12.9,10.7-23.4,23.8-23.4c13.1,0,23.8,10.5,23.8,23.4C93.9,84,83.3,94.5,70.1,94.5z"/>
</g> </g>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,17 +1,17 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<g> <g>
<g> <g>
<path fill="#FFFFFF" d="M119.6,54.2l-2.3-5.5c7.9-18,7.4-18.5,5.9-20.1L113,18.7l-1-0.8h-1.2c-0.6,0-2.5,0-17.9,7l-5.7-2.3 <path fill="#FFFFFF" d="M119.6,54.2l-2.3-5.5c7.9-18,7.4-18.5,5.9-20.1L113,18.7l-1-0.8h-1.2c-0.6,0-2.5,0-17.9,7l-5.7-2.3
C79.9,4.4,79.1,4.4,77,4.4H62.7c-2.1,0-3,0-9.8,18.3l-5.7,2.3c-10.4-4.4-16.5-6.6-18.2-6.6l-1.4,0L16.7,29 C79.9,4.4,79.1,4.4,77,4.4H62.7c-2.1,0-3,0-9.8,18.3l-5.7,2.3c-10.4-4.4-16.5-6.6-18.2-6.6l-1.4,0L16.7,29
c-1.7,1.6-2.2,2.1,6.2,19.8l-2.3,5.5C2,61.5,2,62.2,2,64.4v14c0,2.2,0,3,18.7,9.7l2.3,5.5c-7.9,18-7.4,18.5-5.9,20l10.2,9.9 c-1.7,1.6-2.2,2.1,6.2,19.8l-2.3,5.5C2,61.5,2,62.2,2,64.4v14c0,2.2,0,3,18.7,9.7l2.3,5.5c-7.9,18-7.4,18.5-5.9,20l10.2,9.9
l1,0.9h1.2c0.6,0,2.4,0,17.9-7l5.7,2.3c7.3,18.2,8.1,18.2,10.3,18.2h14.3c2.2,0,3,0,9.8-18.3l5.7-2.3c10.4,4.4,16.5,6.6,18.2,6.6 l1,0.9h1.2c0.6,0,2.4,0,17.9-7l5.7,2.3c7.3,18.2,8.1,18.2,10.3,18.2h14.3c2.2,0,3,0,9.8-18.3l5.7-2.3c10.4,4.4,16.5,6.6,18.2,6.6
l1.4,0l11-10.8c1.6-1.6,2.1-2.1-6.2-19.7l2.3-5.5c18.6-7.2,18.6-8,18.6-10.1v-14C138.3,61.6,138.3,60.8,119.6,54.2z M70.1,94.5 l1.4,0l11-10.8c1.6-1.6,2.1-2.1-6.2-19.7l2.3-5.5c18.6-7.2,18.6-8,18.6-10.1v-14C138.3,61.6,138.3,60.8,119.6,54.2z M70.1,94.5
C57,94.5,46.3,84,46.3,71.1c0-12.9,10.7-23.4,23.8-23.4c13.1,0,23.8,10.5,23.8,23.4C93.9,84,83.3,94.5,70.1,94.5z"/> C57,94.5,46.3,84,46.3,71.1c0-12.9,10.7-23.4,23.8-23.4c13.1,0,23.8,10.5,23.8,23.4C93.9,84,83.3,94.5,70.1,94.5z"/>
</g> </g>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,23 +1,23 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<g> <g>
<path fill="#818181" d="M17.8,93.4c-1.5-1.9-3.9-3.2-6.6-3.2c-4.6,0-8.4,3.8-8.4,8.4c0,4.6,3.8,8.4,8.4,8.4c2.7,0,5-1.2,6.6-3.2 <path fill="#818181" d="M17.8,93.4c-1.5-1.9-3.9-3.2-6.6-3.2c-4.6,0-8.4,3.8-8.4,8.4c0,4.6,3.8,8.4,8.4,8.4c2.7,0,5-1.2,6.6-3.2
h11.3V93.4H17.8z"/> h11.3V93.4H17.8z"/>
<path fill="#818181" d="M17.8,65.6c-1.5-1.9-3.9-3.2-6.6-3.2c-4.6,0-8.4,3.8-8.4,8.4c0,4.6,3.8,8.4,8.4,8.4c2.7,0,5-1.2,6.6-3.2 <path fill="#818181" d="M17.8,65.6c-1.5-1.9-3.9-3.2-6.6-3.2c-4.6,0-8.4,3.8-8.4,8.4c0,4.6,3.8,8.4,8.4,8.4c2.7,0,5-1.2,6.6-3.2
h11.3V65.6L17.8,65.6L17.8,65.6z"/> h11.3V65.6L17.8,65.6L17.8,65.6z"/>
<path fill="#818181" d="M17.8,37.8c-1.5-1.9-3.9-3.2-6.6-3.2c-4.6,0-8.4,3.8-8.4,8.4s3.8,8.4,8.4,8.4c2.7,0,5-1.2,6.6-3.2h11.3 <path fill="#818181" d="M17.8,37.8c-1.5-1.9-3.9-3.2-6.6-3.2c-4.6,0-8.4,3.8-8.4,8.4s3.8,8.4,8.4,8.4c2.7,0,5-1.2,6.6-3.2h11.3
V37.8H17.8z"/> V37.8H17.8z"/>
<path fill="#818181" d="M123.9,103.8c1.5,1.9,3.9,3.2,6.6,3.2c4.6,0,8.4-3.8,8.4-8.4c0-4.6-3.8-8.4-8.4-8.4c-2.7,0-5,1.2-6.6,3.2 <path fill="#818181" d="M123.9,103.8c1.5,1.9,3.9,3.2,6.6,3.2c4.6,0,8.4-3.8,8.4-8.4c0-4.6-3.8-8.4-8.4-8.4c-2.7,0-5,1.2-6.6,3.2
h-11.3v10.4H123.9z"/> h-11.3v10.4H123.9z"/>
<path fill="#818181" d="M123.9,76c1.5,1.9,3.9,3.2,6.6,3.2c4.6,0,8.4-3.8,8.4-8.4c0-4.6-3.8-8.4-8.4-8.4c-2.7,0-5,1.2-6.6,3.2 <path fill="#818181" d="M123.9,76c1.5,1.9,3.9,3.2,6.6,3.2c4.6,0,8.4-3.8,8.4-8.4c0-4.6-3.8-8.4-8.4-8.4c-2.7,0-5,1.2-6.6,3.2
h-11.3V76L123.9,76L123.9,76z"/> h-11.3V76L123.9,76L123.9,76z"/>
<path fill="#818181" d="M123.9,48.2c1.5,1.9,3.9,3.2,6.6,3.2c4.6,0,8.4-3.8,8.4-8.4s-3.8-8.4-8.4-8.4c-2.7,0-5,1.2-6.6,3.2h-11.3 <path fill="#818181" d="M123.9,48.2c1.5,1.9,3.9,3.2,6.6,3.2c4.6,0,8.4-3.8,8.4-8.4s-3.8-8.4-8.4-8.4c-2.7,0-5,1.2-6.6,3.2h-11.3
v10.4L123.9,48.2L123.9,48.2z"/> v10.4L123.9,48.2L123.9,48.2z"/>
<path fill="#818181" d="M98.2,14.9H43.5c-2.9,0-5.2,2.3-5.2,5.2v101.4c0,2.9,2.3,5.2,5.2,5.2h54.7c2.9,0,5.2-2.3,5.2-5.2V20.1 <path fill="#818181" d="M98.2,14.9H43.5c-2.9,0-5.2,2.3-5.2,5.2v101.4c0,2.9,2.3,5.2,5.2,5.2h54.7c2.9,0,5.2-2.3,5.2-5.2V20.1
C103.4,17.3,101.1,14.9,98.2,14.9z M89.2,32.6c-2.2,0-4-1.8-4-4s1.8-4,4-4c2.2,0,4,1.8,4,4S91.4,32.6,89.2,32.6z"/> C103.4,17.3,101.1,14.9,98.2,14.9z M89.2,32.6c-2.2,0-4-1.8-4-4s1.8-4,4-4c2.2,0,4,1.8,4,4S91.4,32.6,89.2,32.6z"/>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1,23 +1,23 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<g> <g>
<path fill="#FFFFFF" d="M17.8,93.4c-1.5-1.9-3.9-3.2-6.6-3.2c-4.6,0-8.4,3.8-8.4,8.4c0,4.6,3.8,8.4,8.4,8.4c2.7,0,5-1.2,6.6-3.2 <path fill="#FFFFFF" d="M17.8,93.4c-1.5-1.9-3.9-3.2-6.6-3.2c-4.6,0-8.4,3.8-8.4,8.4c0,4.6,3.8,8.4,8.4,8.4c2.7,0,5-1.2,6.6-3.2
h11.3V93.4H17.8z"/> h11.3V93.4H17.8z"/>
<path fill="#FFFFFF" d="M17.8,65.6c-1.5-1.9-3.9-3.2-6.6-3.2c-4.6,0-8.4,3.8-8.4,8.4c0,4.6,3.8,8.4,8.4,8.4c2.7,0,5-1.2,6.6-3.2 <path fill="#FFFFFF" d="M17.8,65.6c-1.5-1.9-3.9-3.2-6.6-3.2c-4.6,0-8.4,3.8-8.4,8.4c0,4.6,3.8,8.4,8.4,8.4c2.7,0,5-1.2,6.6-3.2
h11.3V65.6L17.8,65.6L17.8,65.6z"/> h11.3V65.6L17.8,65.6L17.8,65.6z"/>
<path fill="#FFFFFF" d="M17.8,37.8c-1.5-1.9-3.9-3.2-6.6-3.2c-4.6,0-8.4,3.8-8.4,8.4s3.8,8.4,8.4,8.4c2.7,0,5-1.2,6.6-3.2h11.3 <path fill="#FFFFFF" d="M17.8,37.8c-1.5-1.9-3.9-3.2-6.6-3.2c-4.6,0-8.4,3.8-8.4,8.4s3.8,8.4,8.4,8.4c2.7,0,5-1.2,6.6-3.2h11.3
V37.8H17.8z"/> V37.8H17.8z"/>
<path fill="#FFFFFF" d="M123.9,103.8c1.5,1.9,3.9,3.2,6.6,3.2c4.6,0,8.4-3.8,8.4-8.4c0-4.6-3.8-8.4-8.4-8.4c-2.7,0-5,1.2-6.6,3.2 <path fill="#FFFFFF" d="M123.9,103.8c1.5,1.9,3.9,3.2,6.6,3.2c4.6,0,8.4-3.8,8.4-8.4c0-4.6-3.8-8.4-8.4-8.4c-2.7,0-5,1.2-6.6,3.2
h-11.3v10.4H123.9z"/> h-11.3v10.4H123.9z"/>
<path fill="#FFFFFF" d="M123.9,76c1.5,1.9,3.9,3.2,6.6,3.2c4.6,0,8.4-3.8,8.4-8.4c0-4.6-3.8-8.4-8.4-8.4c-2.7,0-5,1.2-6.6,3.2 <path fill="#FFFFFF" d="M123.9,76c1.5,1.9,3.9,3.2,6.6,3.2c4.6,0,8.4-3.8,8.4-8.4c0-4.6-3.8-8.4-8.4-8.4c-2.7,0-5,1.2-6.6,3.2
h-11.3V76L123.9,76L123.9,76z"/> h-11.3V76L123.9,76L123.9,76z"/>
<path fill="#FFFFFF" d="M123.9,48.2c1.5,1.9,3.9,3.2,6.6,3.2c4.6,0,8.4-3.8,8.4-8.4s-3.8-8.4-8.4-8.4c-2.7,0-5,1.2-6.6,3.2h-11.3 <path fill="#FFFFFF" d="M123.9,48.2c1.5,1.9,3.9,3.2,6.6,3.2c4.6,0,8.4-3.8,8.4-8.4s-3.8-8.4-8.4-8.4c-2.7,0-5,1.2-6.6,3.2h-11.3
v10.4L123.9,48.2L123.9,48.2z"/> v10.4L123.9,48.2L123.9,48.2z"/>
<path fill="#FFFFFF" d="M98.2,14.9H43.5c-2.9,0-5.2,2.3-5.2,5.2v101.4c0,2.9,2.3,5.2,5.2,5.2h54.7c2.9,0,5.2-2.3,5.2-5.2V20.1 <path fill="#FFFFFF" d="M98.2,14.9H43.5c-2.9,0-5.2,2.3-5.2,5.2v101.4c0,2.9,2.3,5.2,5.2,5.2h54.7c2.9,0,5.2-2.3,5.2-5.2V20.1
C103.4,17.3,101.1,14.9,98.2,14.9z M89.2,32.6c-2.2,0-4-1.8-4-4s1.8-4,4-4c2.2,0,4,1.8,4,4S91.4,32.6,89.2,32.6z"/> C103.4,17.3,101.1,14.9,98.2,14.9z M89.2,32.6c-2.2,0-4-1.8-4-4s1.8-4,4-4c2.2,0,4,1.8,4,4S91.4,32.6,89.2,32.6z"/>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="28 -43 141.7 141.7" style="enable-background:new 28 -43 141.7 141.7;" xml:space="preserve"> viewBox="28 -43 141.7 141.7" style="enable-background:new 28 -43 141.7 141.7;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#E60000;} .st0{fill:#E60000;}
</style> </style>
<g> <g>
<path class="st0" d="M98.9,87l60.9-61.9c0.8-0.8,1.2-1.9,1.1-3l0,0C156.7-8.4,130.5-32,98.9-32c-31.5,0-57.7,23.5-62,53.8v0.1V22 <path class="st0" d="M98.9,87l60.9-61.9c0.8-0.8,1.2-1.9,1.1-3l0,0C156.7-8.4,130.5-32,98.9-32c-31.5,0-57.7,23.5-62,53.8v0.1V22
l0,0c-0.1,1,0.3,2.1,1.1,2.9l42.9,43.8 M107,68.2l14.8-49.6c3.3-4.7,8.7-7.8,14.9-7.8c7.2,0,13.4,4.2,16.4,10.3L107,68.2z M83.7,19 l0,0c-0.1,1,0.3,2.1,1.1,2.9l42.9,43.8 M107,68.2l14.8-49.6c3.3-4.7,8.7-7.8,14.9-7.8c7.2,0,13.4,4.2,16.4,10.3L107,68.2z M83.7,19
c3.2-4.9,8.8-8.2,15.2-8.2c6.2,0,11.7,3.1,15,7.9L99,68.7L83.7,19z M44.5,20.8c3-6,9.1-10.1,16.2-10.1c6.2,0,11.7,3.1,14.9,7.8 c3.2-4.9,8.8-8.2,15.2-8.2c6.2,0,11.7,3.1,15,7.9L99,68.7L83.7,19z M44.5,20.8c3-6,9.1-10.1,16.2-10.1c6.2,0,11.7,3.1,14.9,7.8
l15.1,49.4L44.5,20.8z"/> l15.1,49.4L44.5,20.8z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 854 B

After

Width:  |  Height:  |  Size: 840 B

View File

@ -1,15 +1,15 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="28 -43 141.7 141.7" style="enable-background:new 28 -43 141.7 141.7;" xml:space="preserve"> viewBox="28 -43 141.7 141.7" style="enable-background:new 28 -43 141.7 141.7;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#818181;} .st0{fill:#818181;}
</style> </style>
<g> <g>
<path class="st0" d="M98.9,87l60.9-61.9c0.8-0.8,1.2-1.9,1.1-3l0,0C156.7-8.4,130.5-32,98.9-32c-31.5,0-57.7,23.5-62,53.8v0.1V22 <path class="st0" d="M98.9,87l60.9-61.9c0.8-0.8,1.2-1.9,1.1-3l0,0C156.7-8.4,130.5-32,98.9-32c-31.5,0-57.7,23.5-62,53.8v0.1V22
l0,0c-0.1,1,0.3,2.1,1.1,2.9l42.9,43.8 M107,68.2l14.8-49.6c3.3-4.7,8.7-7.8,14.9-7.8c7.2,0,13.4,4.2,16.4,10.3L107,68.2z M83.7,19 l0,0c-0.1,1,0.3,2.1,1.1,2.9l42.9,43.8 M107,68.2l14.8-49.6c3.3-4.7,8.7-7.8,14.9-7.8c7.2,0,13.4,4.2,16.4,10.3L107,68.2z M83.7,19
c3.2-4.9,8.8-8.2,15.2-8.2c6.2,0,11.7,3.1,15,7.9L99,68.7L83.7,19z M44.5,20.8c3-6,9.1-10.1,16.2-10.1c6.2,0,11.7,3.1,14.9,7.8 c3.2-4.9,8.8-8.2,15.2-8.2c6.2,0,11.7,3.1,15,7.9L99,68.7L83.7,19z M44.5,20.8c3-6,9.1-10.1,16.2-10.1c6.2,0,11.7,3.1,14.9,7.8
l15.1,49.4L44.5,20.8z"/> l15.1,49.4L44.5,20.8z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 854 B

After

Width:  |  Height:  |  Size: 840 B

View File

@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="141.7px" height="141.7px" viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> width="141.7px" height="141.7px" viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<path fill="#FFFFFF" d="M70.9,130l60.9-61.9c0.8-0.8,1.2-1.9,1.1-3h0c-4.2-30.5-30.4-54.1-62-54.1c-31.5,0-57.7,23.5-62,53.8 <path fill="#FFFFFF" d="M70.9,130l60.9-61.9c0.8-0.8,1.2-1.9,1.1-3h0c-4.2-30.5-30.4-54.1-62-54.1c-31.5,0-57.7,23.5-62,53.8
c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.1h0c-0.1,1,0.3,2.1,1.1,2.9l42.9,43.8 M79,111.2l14.8-49.6c3.3-4.7,8.7-7.8,14.9-7.8 c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.1h0c-0.1,1,0.3,2.1,1.1,2.9l42.9,43.8 M79,111.2l14.8-49.6c3.3-4.7,8.7-7.8,14.9-7.8
c7.2,0,13.4,4.2,16.4,10.3L79,111.2z M55.7,62c3.2-4.9,8.8-8.2,15.2-8.2c6.2,0,11.7,3.1,15,7.9l-14.9,50L55.7,62z M16.5,63.8 c7.2,0,13.4,4.2,16.4,10.3L79,111.2z M55.7,62c3.2-4.9,8.8-8.2,15.2-8.2c6.2,0,11.7,3.1,15,7.9l-14.9,50L55.7,62z M16.5,63.8
c3-6,9.1-10.1,16.2-10.1c6.2,0,11.7,3.1,14.9,7.8l15.1,49.4L16.5,63.8z"/> c3-6,9.1-10.1,16.2-10.1c6.2,0,11.7,3.1,14.9,7.8l15.1,49.4L16.5,63.8z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 844 B

After

Width:  |  Height:  |  Size: 833 B

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<path d="M4.7,26l49.6,49.6v49.6l33.1-8.3V75.6L137,26C137,26,4.7,26,4.7,26z"/> <path d="M4.7,26l49.6,49.6v49.6l33.1-8.3V75.6L137,26C137,26,4.7,26,4.7,26z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 452 B

After

Width:  |  Height:  |  Size: 444 B

View File

@ -1,23 +1,23 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<g> <g>
<path fill="#818181" d="M84.7,129.5c0,3.6,2.9,6.5,6.5,6.5c3.6,0,6.5-2.9,6.5-6.5v-10.5h-13L84.7,129.5L84.7,129.5z"/> <path fill="#818181" d="M84.7,129.5c0,3.6,2.9,6.5,6.5,6.5c3.6,0,6.5-2.9,6.5-6.5v-10.5h-13L84.7,129.5L84.7,129.5z"/>
<path fill="#818181" d="M84.7,14.5v10.5h13V14.5c0-3.6-2.9-6.5-6.5-6.5C87.6,8,84.7,10.9,84.7,14.5z"/> <path fill="#818181" d="M84.7,14.5v10.5h13V14.5c0-3.6-2.9-6.5-6.5-6.5C87.6,8,84.7,10.9,84.7,14.5z"/>
<path fill="#818181" d="M63.5,14.5v10.5h13V14.5c0-3.6-2.9-6.5-6.5-6.5S63.5,10.9,63.5,14.5z"/> <path fill="#818181" d="M63.5,14.5v10.5h13V14.5c0-3.6-2.9-6.5-6.5-6.5S63.5,10.9,63.5,14.5z"/>
<path fill="#818181" d="M63.5,129.5c0,3.6,2.9,6.5,6.5,6.5s6.5-2.9,6.5-6.5v-10.5h-13V129.5z"/> <path fill="#818181" d="M63.5,129.5c0,3.6,2.9,6.5,6.5,6.5s6.5-2.9,6.5-6.5v-10.5h-13V129.5z"/>
<path fill="#818181" d="M42.3,14.5v10.5h13V14.5c0-3.6-2.9-6.5-6.5-6.5S42.3,10.9,42.3,14.5z"/> <path fill="#818181" d="M42.3,14.5v10.5h13V14.5c0-3.6-2.9-6.5-6.5-6.5S42.3,10.9,42.3,14.5z"/>
<path fill="#818181" d="M42.3,129.5c0,3.6,2.9,6.5,6.5,6.5s6.5-2.9,6.5-6.5v-10.5h-13V129.5z"/> <path fill="#818181" d="M42.3,129.5c0,3.6,2.9,6.5,6.5,6.5s6.5-2.9,6.5-6.5v-10.5h-13V129.5z"/>
<path fill="#818181" d="M6,93.2c0,3.6,2.9,6.5,6.5,6.5h10.5v-13H12.5C8.9,86.7,6,89.6,6,93.2z"/> <path fill="#818181" d="M6,93.2c0,3.6,2.9,6.5,6.5,6.5h10.5v-13H12.5C8.9,86.7,6,89.6,6,93.2z"/>
<path fill="#818181" d="M127.5,86.7h-10.5v13h10.5c3.6,0,6.5-2.9,6.5-6.5C134,89.6,131.1,86.7,127.5,86.7z"/> <path fill="#818181" d="M127.5,86.7h-10.5v13h10.5c3.6,0,6.5-2.9,6.5-6.5C134,89.6,131.1,86.7,127.5,86.7z"/>
<path fill="#818181" d="M6,72c0,3.6,2.9,6.5,6.5,6.5h10.5v-13H12.5C8.9,65.5,6,68.4,6,72z"/> <path fill="#818181" d="M6,72c0,3.6,2.9,6.5,6.5,6.5h10.5v-13H12.5C8.9,65.5,6,68.4,6,72z"/>
<path fill="#818181" d="M127.5,65.5h-10.5v13h10.5c3.6,0,6.5-2.9,6.5-6.5C134,68.4,131.1,65.5,127.5,65.5z"/> <path fill="#818181" d="M127.5,65.5h-10.5v13h10.5c3.6,0,6.5-2.9,6.5-6.5C134,68.4,131.1,65.5,127.5,65.5z"/>
<path fill="#818181" d="M6,50.8c0,3.6,2.9,6.5,6.5,6.5h10.5v-13H12.5C8.9,44.3,6,47.2,6,50.8z"/> <path fill="#818181" d="M6,50.8c0,3.6,2.9,6.5,6.5,6.5h10.5v-13H12.5C8.9,44.3,6,47.2,6,50.8z"/>
<path fill="#818181" d="M127.5,44.3h-10.5v13h10.5c3.6,0,6.5-2.9,6.5-6.5S131.1,44.3,127.5,44.3z"/> <path fill="#818181" d="M127.5,44.3h-10.5v13h10.5c3.6,0,6.5-2.9,6.5-6.5S131.1,44.3,127.5,44.3z"/>
<path fill="#818181" d="M29.3,105.9c0,3.8,3,6.8,6.8,6.8h67.8c3.8,0,6.8-3,6.8-6.8V38.1c0-3.8-3-6.8-6.8-6.8H36.1 <path fill="#818181" d="M29.3,105.9c0,3.8,3,6.8,6.8,6.8h67.8c3.8,0,6.8-3,6.8-6.8V38.1c0-3.8-3-6.8-6.8-6.8H36.1
c-3.8,0-6.8,3-6.8,6.8V105.9z"/> c-3.8,0-6.8,3-6.8,6.8V105.9z"/>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1,23 +1,23 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<g> <g>
<path fill="#FFFFFF" d="M84.7,129.5c0,3.6,2.9,6.5,6.5,6.5c3.6,0,6.5-2.9,6.5-6.5v-10.5h-13L84.7,129.5L84.7,129.5z"/> <path fill="#FFFFFF" d="M84.7,129.5c0,3.6,2.9,6.5,6.5,6.5c3.6,0,6.5-2.9,6.5-6.5v-10.5h-13L84.7,129.5L84.7,129.5z"/>
<path fill="#FFFFFF" d="M84.7,14.5v10.5h13V14.5c0-3.6-2.9-6.5-6.5-6.5C87.6,8,84.7,10.9,84.7,14.5z"/> <path fill="#FFFFFF" d="M84.7,14.5v10.5h13V14.5c0-3.6-2.9-6.5-6.5-6.5C87.6,8,84.7,10.9,84.7,14.5z"/>
<path fill="#FFFFFF" d="M63.5,14.5v10.5h13V14.5c0-3.6-2.9-6.5-6.5-6.5S63.5,10.9,63.5,14.5z"/> <path fill="#FFFFFF" d="M63.5,14.5v10.5h13V14.5c0-3.6-2.9-6.5-6.5-6.5S63.5,10.9,63.5,14.5z"/>
<path fill="#FFFFFF" d="M63.5,129.5c0,3.6,2.9,6.5,6.5,6.5s6.5-2.9,6.5-6.5v-10.5h-13V129.5z"/> <path fill="#FFFFFF" d="M63.5,129.5c0,3.6,2.9,6.5,6.5,6.5s6.5-2.9,6.5-6.5v-10.5h-13V129.5z"/>
<path fill="#FFFFFF" d="M42.3,14.5v10.5h13V14.5c0-3.6-2.9-6.5-6.5-6.5S42.3,10.9,42.3,14.5z"/> <path fill="#FFFFFF" d="M42.3,14.5v10.5h13V14.5c0-3.6-2.9-6.5-6.5-6.5S42.3,10.9,42.3,14.5z"/>
<path fill="#FFFFFF" d="M42.3,129.5c0,3.6,2.9,6.5,6.5,6.5s6.5-2.9,6.5-6.5v-10.5h-13V129.5z"/> <path fill="#FFFFFF" d="M42.3,129.5c0,3.6,2.9,6.5,6.5,6.5s6.5-2.9,6.5-6.5v-10.5h-13V129.5z"/>
<path fill="#FFFFFF" d="M6,93.2c0,3.6,2.9,6.5,6.5,6.5h10.5v-13H12.5C8.9,86.7,6,89.6,6,93.2z"/> <path fill="#FFFFFF" d="M6,93.2c0,3.6,2.9,6.5,6.5,6.5h10.5v-13H12.5C8.9,86.7,6,89.6,6,93.2z"/>
<path fill="#FFFFFF" d="M127.5,86.7h-10.5v13h10.5c3.6,0,6.5-2.9,6.5-6.5C134,89.6,131.1,86.7,127.5,86.7z"/> <path fill="#FFFFFF" d="M127.5,86.7h-10.5v13h10.5c3.6,0,6.5-2.9,6.5-6.5C134,89.6,131.1,86.7,127.5,86.7z"/>
<path fill="#FFFFFF" d="M6,72c0,3.6,2.9,6.5,6.5,6.5h10.5v-13H12.5C8.9,65.5,6,68.4,6,72z"/> <path fill="#FFFFFF" d="M6,72c0,3.6,2.9,6.5,6.5,6.5h10.5v-13H12.5C8.9,65.5,6,68.4,6,72z"/>
<path fill="#FFFFFF" d="M127.5,65.5h-10.5v13h10.5c3.6,0,6.5-2.9,6.5-6.5C134,68.4,131.1,65.5,127.5,65.5z"/> <path fill="#FFFFFF" d="M127.5,65.5h-10.5v13h10.5c3.6,0,6.5-2.9,6.5-6.5C134,68.4,131.1,65.5,127.5,65.5z"/>
<path fill="#FFFFFF" d="M6,50.8c0,3.6,2.9,6.5,6.5,6.5h10.5v-13H12.5C8.9,44.3,6,47.2,6,50.8z"/> <path fill="#FFFFFF" d="M6,50.8c0,3.6,2.9,6.5,6.5,6.5h10.5v-13H12.5C8.9,44.3,6,47.2,6,50.8z"/>
<path fill="#FFFFFF" d="M127.5,44.3h-10.5v13h10.5c3.6,0,6.5-2.9,6.5-6.5S131.1,44.3,127.5,44.3z"/> <path fill="#FFFFFF" d="M127.5,44.3h-10.5v13h10.5c3.6,0,6.5-2.9,6.5-6.5S131.1,44.3,127.5,44.3z"/>
<path fill="#FFFFFF" d="M29.3,105.9c0,3.8,3,6.8,6.8,6.8h67.8c3.8,0,6.8-3,6.8-6.8V38.1c0-3.8-3-6.8-6.8-6.8H36.1 <path fill="#FFFFFF" d="M29.3,105.9c0,3.8,3,6.8,6.8,6.8h67.8c3.8,0,6.8-3,6.8-6.8V38.1c0-3.8-3-6.8-6.8-6.8H36.1
c-3.8,0-6.8,3-6.8,6.8V105.9z"/> c-3.8,0-6.8,3-6.8,6.8V105.9z"/>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1,19 +1,19 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<path fill="#818181" d="M34.1,28.1l23,23l20-20l-23-23c-1.1-1.1-2.9-1.1-4,0l-16,16C33,25.2,33,27,34.1,28.1"/> <path fill="#818181" d="M34.1,28.1l23,23l20-20l-23-23c-1.1-1.1-2.9-1.1-4,0l-16,16C33,25.2,33,27,34.1,28.1"/>
<path fill="#818181" d="M117.9,107.8l16-16c1.1-1.1,1.1-2.9,0-4l-23-23l-20,20l23,23C115,109,116.8,109,117.9,107.8"/> <path fill="#818181" d="M117.9,107.8l16-16c1.1-1.1,1.1-2.9,0-4l-23-23l-20,20l23,23C115,109,116.8,109,117.9,107.8"/>
<path fill="#818181" d="M71.6,70.4c-7.1-7.1-18.6-7.1-25.6,0c0,0,0,0,0,0c-0.5,0.5-0.5,1.4,0,2l0,0l23.7,23.7c0.5,0.5,1.4,0.5,2,0 <path fill="#818181" d="M71.6,70.4c-7.1-7.1-18.6-7.1-25.6,0c0,0,0,0,0,0c-0.5,0.5-0.5,1.4,0,2l0,0l23.7,23.7c0.5,0.5,1.4,0.5,2,0
C78.6,89,78.6,77.5,71.6,70.4"/> C78.6,89,78.6,77.5,71.6,70.4"/>
<path fill="#818181" d="M75,67c6.6,6.6,8.4,16.1,5.5,24.3l37-37c2.2-2.2,2.2-5.9,0-8.1L95.8,24.5c-2.2-2.2-5.9-2.2-8.1,0l-37,37 <path fill="#818181" d="M75,67c6.6,6.6,8.4,16.1,5.5,24.3l37-37c2.2-2.2,2.2-5.9,0-8.1L95.8,24.5c-2.2-2.2-5.9-2.2-8.1,0l-37,37
C59,58.6,68.5,60.4,75,67"/> C59,58.6,68.5,60.4,75,67"/>
<path fill="#818181" d="M30.4,75.6c-1.7,9.9,1.6,20.1,8.7,27.2c7.1,7.1,17.3,10.4,27.2,8.7c2.8-0.5,4.7-3.2,4.3-6 <path fill="#818181" d="M30.4,75.6c-1.7,9.9,1.6,20.1,8.7,27.2c7.1,7.1,17.3,10.4,27.2,8.7c2.8-0.5,4.7-3.2,4.3-6
c-0.2-1.1-0.7-2.1-1.4-2.8c-1.1-1.1-2.8-1.7-4.5-1.5c-6.6,1.1-13.4-1.1-18.2-5.8S39.6,84,40.7,77.3c0.5-2.8-1.4-5.5-4.3-6 c-0.2-1.1-0.7-2.1-1.4-2.8c-1.1-1.1-2.8-1.7-4.5-1.5c-6.6,1.1-13.4-1.1-18.2-5.8S39.6,84,40.7,77.3c0.5-2.8-1.4-5.5-4.3-6
S30.9,72.8,30.4,75.6"/> S30.9,72.8,30.4,75.6"/>
<path fill="#818181" d="M68.8,125.9c-0.1-1.3-0.6-2.5-1.5-3.4c-1-1-2.4-1.6-4-1.5c-11.4,0.6-22.6-3.7-30.7-11.7S20.3,90,21,78.6 <path fill="#818181" d="M68.8,125.9c-0.1-1.3-0.6-2.5-1.5-3.4c-1-1-2.4-1.6-4-1.5c-11.4,0.6-22.6-3.7-30.7-11.7S20.3,90,21,78.6
c0.2-2.9-2-5.3-4.9-5.5c-2.9-0.2-5.3,2-5.5,4.9c-0.8,14.4,4.6,28.4,14.8,38.6s24.2,15.5,38.6,14.8C66.8,131.3,69,128.8,68.8,125.9" c0.2-2.9-2-5.3-4.9-5.5c-2.9-0.2-5.3,2-5.5,4.9c-0.8,14.4,4.6,28.4,14.8,38.6s24.2,15.5,38.6,14.8C66.8,131.3,69,128.8,68.8,125.9"
/> />
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -1,19 +1,19 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<path fill="#FFFFFF" d="M34.1,28.1l23,23l20-20l-23-23c-1.1-1.1-2.9-1.1-4,0l-16,16C33,25.2,33,27,34.1,28.1"/> <path fill="#FFFFFF" d="M34.1,28.1l23,23l20-20l-23-23c-1.1-1.1-2.9-1.1-4,0l-16,16C33,25.2,33,27,34.1,28.1"/>
<path fill="#FFFFFF" d="M117.9,107.8l16-16c1.1-1.1,1.1-2.9,0-4l-23-23l-20,20l23,23C115,109,116.8,109,117.9,107.8"/> <path fill="#FFFFFF" d="M117.9,107.8l16-16c1.1-1.1,1.1-2.9,0-4l-23-23l-20,20l23,23C115,109,116.8,109,117.9,107.8"/>
<path fill="#FFFFFF" d="M71.6,70.4c-7.1-7.1-18.6-7.1-25.6,0c0,0,0,0,0,0c-0.5,0.5-0.5,1.4,0,2l0,0l23.7,23.7c0.5,0.5,1.4,0.5,2,0 <path fill="#FFFFFF" d="M71.6,70.4c-7.1-7.1-18.6-7.1-25.6,0c0,0,0,0,0,0c-0.5,0.5-0.5,1.4,0,2l0,0l23.7,23.7c0.5,0.5,1.4,0.5,2,0
C78.6,89,78.6,77.5,71.6,70.4"/> C78.6,89,78.6,77.5,71.6,70.4"/>
<path fill="#FFFFFF" d="M75,67c6.6,6.6,8.4,16.1,5.5,24.3l37-37c2.2-2.2,2.2-5.9,0-8.1L95.8,24.5c-2.2-2.2-5.9-2.2-8.1,0l-37,37 <path fill="#FFFFFF" d="M75,67c6.6,6.6,8.4,16.1,5.5,24.3l37-37c2.2-2.2,2.2-5.9,0-8.1L95.8,24.5c-2.2-2.2-5.9-2.2-8.1,0l-37,37
C59,58.6,68.5,60.4,75,67"/> C59,58.6,68.5,60.4,75,67"/>
<path fill="#FFFFFF" d="M30.4,75.6c-1.7,9.9,1.6,20.1,8.7,27.2c7.1,7.1,17.3,10.4,27.2,8.7c2.8-0.5,4.7-3.2,4.3-6 <path fill="#FFFFFF" d="M30.4,75.6c-1.7,9.9,1.6,20.1,8.7,27.2c7.1,7.1,17.3,10.4,27.2,8.7c2.8-0.5,4.7-3.2,4.3-6
c-0.2-1.1-0.7-2.1-1.4-2.8c-1.1-1.1-2.8-1.7-4.5-1.5c-6.6,1.1-13.4-1.1-18.2-5.8S39.6,84,40.7,77.3c0.5-2.8-1.4-5.5-4.3-6 c-0.2-1.1-0.7-2.1-1.4-2.8c-1.1-1.1-2.8-1.7-4.5-1.5c-6.6,1.1-13.4-1.1-18.2-5.8S39.6,84,40.7,77.3c0.5-2.8-1.4-5.5-4.3-6
S30.9,72.8,30.4,75.6"/> S30.9,72.8,30.4,75.6"/>
<path fill="#FFFFFF" d="M68.8,125.9c-0.1-1.3-0.6-2.5-1.5-3.4c-1-1-2.4-1.6-4-1.5c-11.4,0.6-22.6-3.7-30.7-11.7S20.3,90,21,78.6 <path fill="#FFFFFF" d="M68.8,125.9c-0.1-1.3-0.6-2.5-1.5-3.4c-1-1-2.4-1.6-4-1.5c-11.4,0.6-22.6-3.7-30.7-11.7S20.3,90,21,78.6
c0.2-2.9-2-5.3-4.9-5.5c-2.9-0.2-5.3,2-5.5,4.9c-0.8,14.4,4.6,28.4,14.8,38.6s24.2,15.5,38.6,14.8C66.8,131.3,69,128.8,68.8,125.9" c0.2-2.9-2-5.3-4.9-5.5c-2.9-0.2-5.3,2-5.5,4.9c-0.8,14.4,4.6,28.4,14.8,38.6s24.2,15.5,38.6,14.8C66.8,131.3,69,128.8,68.8,125.9"
/> />
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -1,15 +1,15 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<path fill="#818181" d="M119.8,21.5H113c0,0.1,0,0.2,0,0.3v26.7h6.8c3.9,0,7-3.1,7-7v-13C126.8,24.7,123.7,21.5,119.8,21.5z"/> <path fill="#818181" d="M119.8,21.5H113c0,0.1,0,0.2,0,0.3v26.7h6.8c3.9,0,7-3.1,7-7v-13C126.8,24.7,123.7,21.5,119.8,21.5z"/>
<path fill="#818181" d="M126.8,76.6v-13c0-3.9-3.1-7-7-7H113v27h6.8C123.7,83.6,126.8,80.5,126.8,76.6z"/> <path fill="#818181" d="M126.8,76.6v-13c0-3.9-3.1-7-7-7H113v27h6.8C123.7,83.6,126.8,80.5,126.8,76.6z"/>
<path fill="#818181" d="M113,117.8c0,0.3,0,0.6,0,0.9h6.8c3.9,0,7-3.1,7-7v-13c0-3.9-3.1-7-7-7H113V117.8z"/> <path fill="#818181" d="M113,117.8c0,0.3,0,0.6,0,0.9h6.8c3.9,0,7-3.1,7-7v-13c0-3.9-3.1-7-7-7H113V117.8z"/>
<path fill="#818181" d="M101.3,15.2c-0.7-0.2-1.5-0.4-2.2-0.4H36.5v0.4v109.6h62.5c3.6,0,6.5-2.7,6.9-6.1c0-0.3,0.1-0.6,0.1-0.9 <path fill="#818181" d="M101.3,15.2c-0.7-0.2-1.5-0.4-2.2-0.4H36.5v0.4v109.6h62.5c3.6,0,6.5-2.7,6.9-6.1c0-0.3,0.1-0.6,0.1-0.9
V91.6v-8v-27v-8V21.8c0-0.1,0-0.2,0-0.3C105.9,18.6,104,16.1,101.3,15.2z M68.8,67.8H51.2c-2.6,0-4.7-2.1-4.7-4.7 V91.6v-8v-27v-8V21.8c0-0.1,0-0.2,0-0.3C105.9,18.6,104,16.1,101.3,15.2z M68.8,67.8H51.2c-2.6,0-4.7-2.1-4.7-4.7
c0-2.6,2.1-4.7,4.7-4.7h17.5c2.6,0,4.7,2.1,4.7,4.7C73.4,65.7,71.4,67.8,68.8,67.8z M86.3,46.6H51.2c-2.6,0-4.7-2.1-4.7-4.7 c0-2.6,2.1-4.7,4.7-4.7h17.5c2.6,0,4.7,2.1,4.7,4.7C73.4,65.7,71.4,67.8,68.8,67.8z M86.3,46.6H51.2c-2.6,0-4.7-2.1-4.7-4.7
s2.1-4.7,4.7-4.7h35.1c2.6,0,4.7,2.1,4.7,4.7C91,44.5,88.9,46.6,86.3,46.6z"/> s2.1-4.7,4.7-4.7h35.1c2.6,0,4.7,2.1,4.7,4.7C91,44.5,88.9,46.6,86.3,46.6z"/>
<path fill="#818181" d="M19.6,15.2c-2.8,0.9-4.7,3.5-4.7,6.6v96c0,3.9,3.1,7,7,7h6.6V15.2v-0.4h-6.6C21,14.8,20.3,15,19.6,15.2z"/> <path fill="#818181" d="M19.6,15.2c-2.8,0.9-4.7,3.5-4.7,6.6v96c0,3.9,3.1,7,7,7h6.6V15.2v-0.4h-6.6C21,14.8,20.3,15,19.6,15.2z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -1,15 +1,15 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<path fill="#FFFFFF" d="M119.8,21.5H113c0,0.1,0,0.2,0,0.3v26.7h6.8c3.9,0,7-3.1,7-7v-13C126.8,24.7,123.7,21.5,119.8,21.5z"/> <path fill="#FFFFFF" d="M119.8,21.5H113c0,0.1,0,0.2,0,0.3v26.7h6.8c3.9,0,7-3.1,7-7v-13C126.8,24.7,123.7,21.5,119.8,21.5z"/>
<path fill="#FFFFFF" d="M126.8,76.6v-13c0-3.9-3.1-7-7-7H113v27h6.8C123.7,83.6,126.8,80.5,126.8,76.6z"/> <path fill="#FFFFFF" d="M126.8,76.6v-13c0-3.9-3.1-7-7-7H113v27h6.8C123.7,83.6,126.8,80.5,126.8,76.6z"/>
<path fill="#FFFFFF" d="M113,117.8c0,0.3,0,0.6,0,0.9h6.8c3.9,0,7-3.1,7-7v-13c0-3.9-3.1-7-7-7H113V117.8z"/> <path fill="#FFFFFF" d="M113,117.8c0,0.3,0,0.6,0,0.9h6.8c3.9,0,7-3.1,7-7v-13c0-3.9-3.1-7-7-7H113V117.8z"/>
<path fill="#FFFFFF" d="M101.3,15.2c-0.7-0.2-1.5-0.4-2.2-0.4H36.5v0.4v109.6h62.5c3.6,0,6.5-2.7,6.9-6.1c0-0.3,0.1-0.6,0.1-0.9 <path fill="#FFFFFF" d="M101.3,15.2c-0.7-0.2-1.5-0.4-2.2-0.4H36.5v0.4v109.6h62.5c3.6,0,6.5-2.7,6.9-6.1c0-0.3,0.1-0.6,0.1-0.9
V91.6v-8v-27v-8V21.8c0-0.1,0-0.2,0-0.3C105.9,18.6,104,16.1,101.3,15.2z M68.8,67.8H51.2c-2.6,0-4.7-2.1-4.7-4.7 V91.6v-8v-27v-8V21.8c0-0.1,0-0.2,0-0.3C105.9,18.6,104,16.1,101.3,15.2z M68.8,67.8H51.2c-2.6,0-4.7-2.1-4.7-4.7
c0-2.6,2.1-4.7,4.7-4.7h17.5c2.6,0,4.7,2.1,4.7,4.7C73.4,65.7,71.4,67.8,68.8,67.8z M86.3,46.6H51.2c-2.6,0-4.7-2.1-4.7-4.7 c0-2.6,2.1-4.7,4.7-4.7h17.5c2.6,0,4.7,2.1,4.7,4.7C73.4,65.7,71.4,67.8,68.8,67.8z M86.3,46.6H51.2c-2.6,0-4.7-2.1-4.7-4.7
s2.1-4.7,4.7-4.7h35.1c2.6,0,4.7,2.1,4.7,4.7C91,44.5,88.9,46.6,86.3,46.6z"/> s2.1-4.7,4.7-4.7h35.1c2.6,0,4.7,2.1,4.7,4.7C91,44.5,88.9,46.6,86.3,46.6z"/>
<path fill="#FFFFFF" d="M19.6,15.2c-2.8,0.9-4.7,3.5-4.7,6.6v96c0,3.9,3.1,7,7,7h6.6V15.2v-0.4h-6.6C21,14.8,20.3,15,19.6,15.2z"/> <path fill="#FFFFFF" d="M19.6,15.2c-2.8,0.9-4.7,3.5-4.7,6.6v96c0,3.9,3.1,7,7,7h6.6V15.2v-0.4h-6.6C21,14.8,20.3,15,19.6,15.2z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -1,16 +1,16 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="-95 24.7 92 92" style="enable-background:new -95 24.7 92 92;" xml:space="preserve"> viewBox="-95 24.7 92 92" style="enable-background:new -95 24.7 92 92;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#FFBB00;} .st0{fill:#FFBB00;}
</style> </style>
<g> <g>
<path class="st0" d="M-49.6,24.7C-75,25-95.3,45.9-95,71.3c0.3,25.4,21.2,45.7,46.6,45.4C-23,116.4-2.7,95.5-3,70.1 <path class="st0" d="M-49.6,24.7C-75,25-95.3,45.9-95,71.3c0.3,25.4,21.2,45.7,46.6,45.4C-23,116.4-2.7,95.5-3,70.1
C-3.3,44.7-24.2,24.4-49.6,24.7z M-49.8,98.7h-0.3c-3.9-0.1-6.7-3-6.6-6.9c0.1-3.8,2.9-6.5,6.7-6.5h0.2c4,0.1,6.7,3,6.6,6.9 C-3.3,44.7-24.2,24.4-49.6,24.7z M-49.8,98.7h-0.3c-3.9-0.1-6.7-3-6.6-6.9c0.1-3.8,2.9-6.5,6.7-6.5h0.2c4,0.1,6.7,3,6.6,6.9
C-43.1,96-45.9,98.7-49.8,98.7z M-33.3,66c-0.9,1.3-2.9,2.9-5.5,4.9l-2.8,1.9c-1.5,1.2-2.5,2.3-2.8,3.4c-0.3,0.9-0.4,1.1-0.4,2.9 C-43.1,96-45.9,98.7-49.8,98.7z M-33.3,66c-0.9,1.3-2.9,2.9-5.5,4.9l-2.8,1.9c-1.5,1.2-2.5,2.3-2.8,3.4c-0.3,0.9-0.4,1.1-0.4,2.9
v0.5h-10.7v-0.9c0.1-3.7,0.2-5.9,1.8-7.7c2.4-2.8,7.8-6.3,8-6.4c0.8-0.6,1.4-1.2,1.9-1.9c1.1-1.6,1.6-2.8,1.6-4 v0.5h-10.7v-0.9c0.1-3.7,0.2-5.9,1.8-7.7c2.4-2.8,7.8-6.3,8-6.4c0.8-0.6,1.4-1.2,1.9-1.9c1.1-1.6,1.6-2.8,1.6-4
c0-1.7-0.5-3.2-1.5-4.6c-0.9-1.3-2.7-2-5.3-2c-2.6,0-4.3,0.8-5.4,2.5S-56,58.1-56,60v0.5h-11.1V60c0.3-6.8,2.7-11.6,7.2-14.5 c0-1.7-0.5-3.2-1.5-4.6c-0.9-1.3-2.7-2-5.3-2c-2.6,0-4.3,0.8-5.4,2.5S-56,58.1-56,60v0.5h-11.1V60c0.3-6.8,2.7-11.6,7.2-14.5
c2.8-1.8,6.3-2.7,10.4-2.7c5.3,0,9.9,1.3,13.4,3.9c3.6,2.6,5.4,6.5,5.4,11.6C-30.6,61-31.5,63.6-33.3,66z"/> c2.8-1.8,6.3-2.7,10.4-2.7c5.3,0,9.9,1.3,13.4,3.9c3.6,2.6,5.4,6.5,5.4,11.6C-30.6,61-31.5,63.6-33.3,66z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,47 +1,47 @@
<?xml version="1.0" encoding="iso-8859-1"?> <?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 92 92" style="enable-background:new 0 0 92 92;" xml:space="preserve"> viewBox="0 0 92 92" style="enable-background:new 0 0 92 92;" xml:space="preserve">
<g> <g>
<path style="fill:#030104;" d="M45.386,0.004C19.983,0.344-0.333,21.215,0.005,46.619c0.34,25.393,21.209,45.715,46.611,45.377 <path style="fill:#030104;" d="M45.386,0.004C19.983,0.344-0.333,21.215,0.005,46.619c0.34,25.393,21.209,45.715,46.611,45.377
c25.398-0.342,45.718-21.213,45.38-46.615C91.656,19.986,70.786-0.335,45.386,0.004z M45.25,74l-0.254-0.004 c25.398-0.342,45.718-21.213,45.38-46.615C91.656,19.986,70.786-0.335,45.386,0.004z M45.25,74l-0.254-0.004
c-3.912-0.116-6.67-2.998-6.559-6.852c0.109-3.788,2.934-6.538,6.717-6.538l0.227,0.004c4.021,0.119,6.748,2.972,6.635,6.937 c-3.912-0.116-6.67-2.998-6.559-6.852c0.109-3.788,2.934-6.538,6.717-6.538l0.227,0.004c4.021,0.119,6.748,2.972,6.635,6.937
C51.904,71.346,49.123,74,45.25,74z M61.705,41.341c-0.92,1.307-2.943,2.93-5.492,4.916l-2.807,1.938 C51.904,71.346,49.123,74,45.25,74z M61.705,41.341c-0.92,1.307-2.943,2.93-5.492,4.916l-2.807,1.938
c-1.541,1.198-2.471,2.325-2.82,3.434c-0.275,0.873-0.41,1.104-0.434,2.88l-0.004,0.451H39.43l0.031-0.907 c-1.541,1.198-2.471,2.325-2.82,3.434c-0.275,0.873-0.41,1.104-0.434,2.88l-0.004,0.451H39.43l0.031-0.907
c0.131-3.728,0.223-5.921,1.768-7.733c2.424-2.846,7.771-6.289,7.998-6.435c0.766-0.577,1.412-1.234,1.893-1.936 c0.131-3.728,0.223-5.921,1.768-7.733c2.424-2.846,7.771-6.289,7.998-6.435c0.766-0.577,1.412-1.234,1.893-1.936
c1.125-1.551,1.623-2.772,1.623-3.972c0-1.665-0.494-3.205-1.471-4.576c-0.939-1.323-2.723-1.993-5.303-1.993 c1.125-1.551,1.623-2.772,1.623-3.972c0-1.665-0.494-3.205-1.471-4.576c-0.939-1.323-2.723-1.993-5.303-1.993
c-2.559,0-4.311,0.812-5.359,2.478c-1.078,1.713-1.623,3.512-1.623,5.35v0.457H27.936l0.02-0.477 c-2.559,0-4.311,0.812-5.359,2.478c-1.078,1.713-1.623,3.512-1.623,5.35v0.457H27.936l0.02-0.477
c0.285-6.769,2.701-11.643,7.178-14.487C37.947,18.918,41.447,18,45.531,18c5.346,0,9.859,1.299,13.412,3.861 c0.285-6.769,2.701-11.643,7.178-14.487C37.947,18.918,41.447,18,45.531,18c5.346,0,9.859,1.299,13.412,3.861
c3.6,2.596,5.426,6.484,5.426,11.556C64.369,36.254,63.473,38.919,61.705,41.341z"/> c3.6,2.596,5.426,6.484,5.426,11.556C64.369,36.254,63.473,38.919,61.705,41.341z"/>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1,47 +1,47 @@
<?xml version="1.0" encoding="iso-8859-1"?> <?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 92 92" style="enable-background:new 0 0 92 92;" xml:space="preserve"> viewBox="0 0 92 92" style="enable-background:new 0 0 92 92;" xml:space="preserve">
<g> <g>
<path style="fill:#FFFFFF;" d="M45.386,0.004C19.983,0.344-0.333,21.215,0.005,46.619c0.34,25.393,21.209,45.715,46.611,45.377 <path style="fill:#FFFFFF;" d="M45.386,0.004C19.983,0.344-0.333,21.215,0.005,46.619c0.34,25.393,21.209,45.715,46.611,45.377
c25.398-0.342,45.718-21.213,45.38-46.615C91.656,19.986,70.786-0.335,45.386,0.004z M45.25,74l-0.254-0.004 c25.398-0.342,45.718-21.213,45.38-46.615C91.656,19.986,70.786-0.335,45.386,0.004z M45.25,74l-0.254-0.004
c-3.912-0.116-6.67-2.998-6.559-6.852c0.109-3.788,2.934-6.538,6.717-6.538l0.227,0.004c4.021,0.119,6.748,2.972,6.635,6.937 c-3.912-0.116-6.67-2.998-6.559-6.852c0.109-3.788,2.934-6.538,6.717-6.538l0.227,0.004c4.021,0.119,6.748,2.972,6.635,6.937
C51.904,71.346,49.123,74,45.25,74z M61.705,41.341c-0.92,1.307-2.943,2.93-5.492,4.916l-2.807,1.938 C51.904,71.346,49.123,74,45.25,74z M61.705,41.341c-0.92,1.307-2.943,2.93-5.492,4.916l-2.807,1.938
c-1.541,1.198-2.471,2.325-2.82,3.434c-0.275,0.873-0.41,1.104-0.434,2.88l-0.004,0.451H39.43l0.031-0.907 c-1.541,1.198-2.471,2.325-2.82,3.434c-0.275,0.873-0.41,1.104-0.434,2.88l-0.004,0.451H39.43l0.031-0.907
c0.131-3.728,0.223-5.921,1.768-7.733c2.424-2.846,7.771-6.289,7.998-6.435c0.766-0.577,1.412-1.234,1.893-1.936 c0.131-3.728,0.223-5.921,1.768-7.733c2.424-2.846,7.771-6.289,7.998-6.435c0.766-0.577,1.412-1.234,1.893-1.936
c1.125-1.551,1.623-2.772,1.623-3.972c0-1.665-0.494-3.205-1.471-4.576c-0.939-1.323-2.723-1.993-5.303-1.993 c1.125-1.551,1.623-2.772,1.623-3.972c0-1.665-0.494-3.205-1.471-4.576c-0.939-1.323-2.723-1.993-5.303-1.993
c-2.559,0-4.311,0.812-5.359,2.478c-1.078,1.713-1.623,3.512-1.623,5.35v0.457H27.936l0.02-0.477 c-2.559,0-4.311,0.812-5.359,2.478c-1.078,1.713-1.623,3.512-1.623,5.35v0.457H27.936l0.02-0.477
c0.285-6.769,2.701-11.643,7.178-14.487C37.947,18.918,41.447,18,45.531,18c5.346,0,9.859,1.299,13.412,3.861 c0.285-6.769,2.701-11.643,7.178-14.487C37.947,18.918,41.447,18,45.531,18c5.346,0,9.859,1.299,13.412,3.861
c3.6,2.596,5.426,6.484,5.426,11.556C64.369,36.254,63.473,38.919,61.705,41.341z"/> c3.6,2.596,5.426,6.484,5.426,11.556C64.369,36.254,63.473,38.919,61.705,41.341z"/>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<path fill="#818181" d="M99.6,50.6h-61V33.4c0-16.8,13.7-30.5,30.5-30.5c16.8,0,30.5,13.7,30.5,30.5L99.6,50.6L99.6,50.6z <path fill="#818181" d="M99.6,50.6h-61V33.4c0-16.8,13.7-30.5,30.5-30.5c16.8,0,30.5,13.7,30.5,30.5L99.6,50.6L99.6,50.6z
M32.3,55.3v17.9h76.2V55.3L32.3,55.3L32.3,55.3z M82.4,106.8h2.2V138h4.5v-31.2h2.2V78h-9V106.8z M46.3,106.8h2.2v23.7H53v-23.7 M32.3,55.3v17.9h76.2V55.3L32.3,55.3L32.3,55.3z M82.4,106.8h2.2V138h4.5v-31.2h2.2V78h-9V106.8z M46.3,106.8h2.2v23.7H53v-23.7
h2.2V78h-9V106.8z"/> h2.2V78h-9V106.8z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 645 B

After

Width:  |  Height:  |  Size: 635 B

View File

@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<path fill="#FFFFFF" d="M99.6,50.6h-61V33.4c0-16.8,13.7-30.5,30.5-30.5c16.8,0,30.5,13.7,30.5,30.5L99.6,50.6L99.6,50.6z <path fill="#FFFFFF" d="M99.6,50.6h-61V33.4c0-16.8,13.7-30.5,30.5-30.5c16.8,0,30.5,13.7,30.5,30.5L99.6,50.6L99.6,50.6z
M32.3,55.3v17.9h76.2V55.3L32.3,55.3L32.3,55.3z M82.4,106.8h2.2V138h4.5v-31.2h2.2V78h-9V106.8z M46.3,106.8h2.2v23.7H53v-23.7 M32.3,55.3v17.9h76.2V55.3L32.3,55.3L32.3,55.3z M82.4,106.8h2.2V138h4.5v-31.2h2.2V78h-9V106.8z M46.3,106.8h2.2v23.7H53v-23.7
h2.2V78h-9V106.8z"/> h2.2V78h-9V106.8z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 645 B

After

Width:  |  Height:  |  Size: 635 B

View File

@ -1,18 +1,18 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="-70 0 141.7 141.7" style="enable-background:new -70 0 141.7 141.7;" xml:space="preserve"> viewBox="-70 0 141.7 141.7" style="enable-background:new -70 0 141.7 141.7;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#FFBB00;} .st0{fill:#FFBB00;}
</style> </style>
<g> <g>
<g> <g>
<path class="st0" d="M49.1,65.3l-21,21c-11.6,11.6-30.4,11.6-42,0c-1.8-1.8-3.3-3.9-4.5-6l9.8-9.8c0.5-0.5,1-0.7,1.6-1.1 <path class="st0" d="M49.1,65.3l-21,21c-11.6,11.6-30.4,11.6-42,0c-1.8-1.8-3.3-3.9-4.5-6l9.8-9.8c0.5-0.5,1-0.7,1.6-1.1
c0.7,2.3,1.9,4.5,3.7,6.3c5.8,5.8,15.2,5.8,21,0l21-21c5.8-5.8,5.8-15.2,0-21s-15.2-5.8-21,0l-7.5,7.5c-6.1-2.4-12.6-3-18.9-2.1 c0.7,2.3,1.9,4.5,3.7,6.3c5.8,5.8,15.2,5.8,21,0l21-21c5.8-5.8,5.8-15.2,0-21s-15.2-5.8-21,0l-7.5,7.5c-6.1-2.4-12.6-3-18.9-2.1
L7.2,23.2c11.6-11.6,30.4-11.6,42,0C60.7,35,60.7,53.8,49.1,65.3L49.1,65.3z M-6.4,99.8l-7.5,7.5c-5.8,5.8-15.2,5.8-21,0 L7.2,23.2c11.6-11.6,30.4-11.6,42,0C60.7,35,60.7,53.8,49.1,65.3L49.1,65.3z M-6.4,99.8l-7.5,7.5c-5.8,5.8-15.2,5.8-21,0
s-5.8-15.2,0-21l21-21c5.8-5.8,15.2-5.8,21,0c1.8,1.8,3,4,3.7,6.3c0.6-0.3,1.1-0.6,1.6-1l9.8-9.7c-1.2-2.1-2.7-4.2-4.5-6 s-5.8-15.2,0-21l21-21c5.8-5.8,15.2-5.8,21,0c1.8,1.8,3,4,3.7,6.3c0.6-0.3,1.1-0.6,1.6-1l9.8-9.7c-1.2-2.1-2.7-4.2-4.5-6
c-11.6-11.6-30.4-11.6-42,0l-21,21c-11.6,11.6-11.6,30.4,0,42c11.6,11.6,30.4,11.6,42,0L12.6,102C6.2,102.8-0.3,102.2-6.4,99.8 c-11.6-11.6-30.4-11.6-42,0l-21,21c-11.6,11.6-11.6,30.4,0,42c11.6,11.6,30.4,11.6,42,0L12.6,102C6.2,102.8-0.3,102.2-6.4,99.8
L-6.4,99.8z"/> L-6.4,99.8z"/>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -1,18 +1,18 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="28 -43 141.7 141.7" style="enable-background:new 28 -43 141.7 141.7;" xml:space="preserve"> viewBox="28 -43 141.7 141.7" style="enable-background:new 28 -43 141.7 141.7;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#818180;} .st0{fill:#818180;}
</style> </style>
<g> <g>
<g> <g>
<path class="st0" d="M146.1,18.3l-21,21c-11.6,11.6-30.4,11.6-42,0c-1.8-1.8-3.3-3.9-4.5-6l9.8-9.8c0.5-0.5,1-0.7,1.6-1.1 <path class="st0" d="M146.1,18.3l-21,21c-11.6,11.6-30.4,11.6-42,0c-1.8-1.8-3.3-3.9-4.5-6l9.8-9.8c0.5-0.5,1-0.7,1.6-1.1
c0.7,2.3,1.9,4.5,3.7,6.3c5.8,5.8,15.2,5.8,21,0l21-21c5.8-5.8,5.8-15.2,0-21s-15.2-5.8-21,0l-7.5,7.5c-6.1-2.4-12.6-3-18.9-2.1 c0.7,2.3,1.9,4.5,3.7,6.3c5.8,5.8,15.2,5.8,21,0l21-21c5.8-5.8,5.8-15.2,0-21s-15.2-5.8-21,0l-7.5,7.5c-6.1-2.4-12.6-3-18.9-2.1
l15.9-15.9c11.6-11.6,30.4-11.6,42,0C157.7-12,157.7,6.8,146.1,18.3L146.1,18.3z M90.6,52.8l-7.5,7.5c-5.8,5.8-15.2,5.8-21,0 l15.9-15.9c11.6-11.6,30.4-11.6,42,0C157.7-12,157.7,6.8,146.1,18.3L146.1,18.3z M90.6,52.8l-7.5,7.5c-5.8,5.8-15.2,5.8-21,0
s-5.8-15.2,0-21l21-21c5.8-5.8,15.2-5.8,21,0c1.8,1.8,3,4,3.7,6.3c0.6-0.3,1.1-0.6,1.6-1l9.8-9.7c-1.2-2.1-2.7-4.2-4.5-6 s-5.8-15.2,0-21l21-21c5.8-5.8,15.2-5.8,21,0c1.8,1.8,3,4,3.7,6.3c0.6-0.3,1.1-0.6,1.6-1l9.8-9.7c-1.2-2.1-2.7-4.2-4.5-6
c-11.6-11.6-30.4-11.6-42,0l-21,21c-11.6,11.6-11.6,30.4,0,42s30.4,11.6,42,0L109.6,55C103.2,55.8,96.7,55.2,90.6,52.8L90.6,52.8z c-11.6-11.6-30.4-11.6-42,0l-21,21c-11.6,11.6-11.6,30.4,0,42s30.4,11.6,42,0L109.6,55C103.2,55.8,96.7,55.2,90.6,52.8L90.6,52.8z
"/> "/>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -1,16 +1,16 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<g> <g>
<path fill="#818181" d="M123.5,25.8h-6c-2.9,0-6.4,2.2-7.8,4.7L101.4,45c-1.7,3-4.9,4.4-8.3,4.4H46.2c-3.5,0-6.6-1.3-8.3-4.3 <path fill="#818181" d="M123.5,25.8h-6c-2.9,0-6.4,2.2-7.8,4.7L101.4,45c-1.7,3-4.9,4.4-8.3,4.4H46.2c-3.5,0-6.6-1.3-8.3-4.3
l-8.3-14.9c-1.4-2.5-4.9-4.4-7.8-4.4h-6c-7,0-12.2,5.9-12.2,12.9v63.4c0,7,5.2,12.9,12.2,12.9h107.8c7,0,13.9-5.9,13.9-12.9V38.8 l-8.3-14.9c-1.4-2.5-4.9-4.4-7.8-4.4h-6c-7,0-12.2,5.9-12.2,12.9v63.4c0,7,5.2,12.9,12.2,12.9h107.8c7,0,13.9-5.9,13.9-12.9V38.8
C137.4,31.8,130.5,25.8,123.5,25.8z M38,85.5c-5.2,0-9.5-4.3-9.5-9.5c0-5.2,4.3-9.5,9.5-9.5s9.5,4.3,9.5,9.5S43.3,85.5,38,85.5z C137.4,31.8,130.5,25.8,123.5,25.8z M38,85.5c-5.2,0-9.5-4.3-9.5-9.5c0-5.2,4.3-9.5,9.5-9.5s9.5,4.3,9.5,9.5S43.3,85.5,38,85.5z
M84.4,80.1c0,2.6-2.1,4.6-4.6,4.6H58.8c-2.5,0-4.6-2.1-4.6-4.6v-8.8c0-2.6,2.1-4.6,4.6-4.6h20.9c2.6,0,4.6,2.1,4.6,4.6V80.1z M84.4,80.1c0,2.6-2.1,4.6-4.6,4.6H58.8c-2.5,0-4.6-2.1-4.6-4.6v-8.8c0-2.6,2.1-4.6,4.6-4.6h20.9c2.6,0,4.6,2.1,4.6,4.6V80.1z
M100.6,85.5c-5.2,0-9.5-4.3-9.5-9.5c0-5.2,4.3-9.5,9.5-9.5c5.2,0,9.5,4.3,9.5,9.5S105.9,85.5,100.6,85.5z"/> M100.6,85.5c-5.2,0-9.5-4.3-9.5-9.5c0-5.2,4.3-9.5,9.5-9.5c5.2,0,9.5,4.3,9.5,9.5S105.9,85.5,100.6,85.5z"/>
<path fill="#818181" d="M43.6,36.7c1.4,2.5,4.9,4.9,7.8,4.9h36.4c2.9,0,6.4-2.3,7.8-4.8l3.2-6.1c1.4-2.5,0.2-4.8-2.7-4.8h-53 <path fill="#818181" d="M43.6,36.7c1.4,2.5,4.9,4.9,7.8,4.9h36.4c2.9,0,6.4-2.3,7.8-4.8l3.2-6.1c1.4-2.5,0.2-4.8-2.7-4.8h-53
c-2.9,0-4.1,2.2-2.7,4.7L43.6,36.7z"/> c-2.9,0-4.1,2.2-2.7,4.7L43.6,36.7z"/>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,16 +1,16 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<g> <g>
<path fill="#FFFFFF" d="M123.5,25.8h-6c-2.9,0-6.4,2.2-7.8,4.7L101.4,45c-1.7,3-4.9,4.4-8.3,4.4H46.2c-3.5,0-6.6-1.3-8.3-4.3 <path fill="#FFFFFF" d="M123.5,25.8h-6c-2.9,0-6.4,2.2-7.8,4.7L101.4,45c-1.7,3-4.9,4.4-8.3,4.4H46.2c-3.5,0-6.6-1.3-8.3-4.3
l-8.3-14.9c-1.4-2.5-4.9-4.4-7.8-4.4h-6c-7,0-12.2,5.9-12.2,12.9v63.4c0,7,5.2,12.9,12.2,12.9h107.8c7,0,13.9-5.9,13.9-12.9V38.8 l-8.3-14.9c-1.4-2.5-4.9-4.4-7.8-4.4h-6c-7,0-12.2,5.9-12.2,12.9v63.4c0,7,5.2,12.9,12.2,12.9h107.8c7,0,13.9-5.9,13.9-12.9V38.8
C137.4,31.8,130.5,25.8,123.5,25.8z M38,85.5c-5.2,0-9.5-4.3-9.5-9.5c0-5.2,4.3-9.5,9.5-9.5s9.5,4.3,9.5,9.5S43.3,85.5,38,85.5z C137.4,31.8,130.5,25.8,123.5,25.8z M38,85.5c-5.2,0-9.5-4.3-9.5-9.5c0-5.2,4.3-9.5,9.5-9.5s9.5,4.3,9.5,9.5S43.3,85.5,38,85.5z
M84.4,80.1c0,2.6-2.1,4.6-4.6,4.6H58.8c-2.5,0-4.6-2.1-4.6-4.6v-8.8c0-2.6,2.1-4.6,4.6-4.6h20.9c2.6,0,4.6,2.1,4.6,4.6V80.1z M84.4,80.1c0,2.6-2.1,4.6-4.6,4.6H58.8c-2.5,0-4.6-2.1-4.6-4.6v-8.8c0-2.6,2.1-4.6,4.6-4.6h20.9c2.6,0,4.6,2.1,4.6,4.6V80.1z
M100.6,85.5c-5.2,0-9.5-4.3-9.5-9.5c0-5.2,4.3-9.5,9.5-9.5c5.2,0,9.5,4.3,9.5,9.5S105.9,85.5,100.6,85.5z"/> M100.6,85.5c-5.2,0-9.5-4.3-9.5-9.5c0-5.2,4.3-9.5,9.5-9.5c5.2,0,9.5,4.3,9.5,9.5S105.9,85.5,100.6,85.5z"/>
<path fill="#FFFFFF" d="M43.6,36.7c1.4,2.5,4.9,4.9,7.8,4.9h36.4c2.9,0,6.4-2.3,7.8-4.8l3.2-6.1c1.4-2.5,0.2-4.8-2.7-4.8h-53 <path fill="#FFFFFF" d="M43.6,36.7c1.4,2.5,4.9,4.9,7.8,4.9h36.4c2.9,0,6.4-2.3,7.8-4.8l3.2-6.1c1.4-2.5,0.2-4.8-2.7-4.8h-53
c-2.9,0-4.1,2.2-2.7,4.7L43.6,36.7z"/> c-2.9,0-4.1,2.2-2.7,4.7L43.6,36.7z"/>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,15 +1,15 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<g> <g>
<g> <g>
<path fill="#818181" d="M70.9,2.8c-26.4,0-47.7,21.4-47.7,47.7c0,2,0.2,4,0.4,5.9c4.1,37.3,44.2,80.3,44.2,80.3 <path fill="#818181" d="M70.9,2.8c-26.4,0-47.7,21.4-47.7,47.7c0,2,0.2,4,0.4,5.9c4.1,37.3,44.2,80.3,44.2,80.3
c0.7,0.8,1.4,1.3,2.1,1.7l0,0l1.3,0.4l1.3-0.4l0,0c0.7-0.4,1.4-0.9,2.1-1.7c0,0,39.6-43.1,43.6-80.3c0.2-1.9,0.4-3.9,0.4-5.9 c0.7,0.8,1.4,1.3,2.1,1.7l0,0l1.3,0.4l1.3-0.4l0,0c0.7-0.4,1.4-0.9,2.1-1.7c0,0,39.6-43.1,43.6-80.3c0.2-1.9,0.4-3.9,0.4-5.9
C118.6,24.2,97.2,2.8,70.9,2.8z M70.9,81.3c-16.9,0-30.7-13.8-30.7-30.7s13.8-30.7,30.7-30.7s30.7,13.8,30.7,30.7 C118.6,24.2,97.2,2.8,70.9,2.8z M70.9,81.3c-16.9,0-30.7-13.8-30.7-30.7s13.8-30.7,30.7-30.7s30.7,13.8,30.7,30.7
S87.8,81.3,70.9,81.3z"/> S87.8,81.3,70.9,81.3z"/>
</g> </g>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 784 B

After

Width:  |  Height:  |  Size: 769 B

View File

@ -1,15 +1,15 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<g> <g>
<g> <g>
<path fill="#FFFFFF" d="M70.9,2.8c-26.4,0-47.7,21.4-47.7,47.7c0,2,0.2,4,0.4,5.9c4.1,37.3,44.2,80.3,44.2,80.3 <path fill="#FFFFFF" d="M70.9,2.8c-26.4,0-47.7,21.4-47.7,47.7c0,2,0.2,4,0.4,5.9c4.1,37.3,44.2,80.3,44.2,80.3
c0.7,0.8,1.4,1.3,2.1,1.7l0,0l1.3,0.4l1.3-0.4l0,0c0.7-0.4,1.4-0.9,2.1-1.7c0,0,39.6-43.1,43.6-80.3c0.2-1.9,0.4-3.9,0.4-5.9 c0.7,0.8,1.4,1.3,2.1,1.7l0,0l1.3,0.4l1.3-0.4l0,0c0.7-0.4,1.4-0.9,2.1-1.7c0,0,39.6-43.1,43.6-80.3c0.2-1.9,0.4-3.9,0.4-5.9
C118.6,24.2,97.2,2.8,70.9,2.8z M70.9,81.3c-16.9,0-30.7-13.8-30.7-30.7s13.8-30.7,30.7-30.7s30.7,13.8,30.7,30.7 C118.6,24.2,97.2,2.8,70.9,2.8z M70.9,81.3c-16.9,0-30.7-13.8-30.7-30.7s13.8-30.7,30.7-30.7s30.7,13.8,30.7,30.7
S87.8,81.3,70.9,81.3z"/> S87.8,81.3,70.9,81.3z"/>
</g> </g>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 784 B

After

Width:  |  Height:  |  Size: 769 B

View File

@ -1,16 +1,16 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<g> <g>
<g> <g>
<path fill="#818181" d="M44.2,62.8h53.2c15.1,0,27.4-12.3,27.4-27.4S112.5,8,97.4,8H44.2C29,8,16.8,20.3,16.8,35.4 <path fill="#818181" d="M44.2,62.8h53.2c15.1,0,27.4-12.3,27.4-27.4S112.5,8,97.4,8H44.2C29,8,16.8,20.3,16.8,35.4
S29,62.8,44.2,62.8z M44.2,17.9c9.7,0,17.5,7.8,17.5,17.5s-7.8,17.5-17.5,17.5s-17.5-7.8-17.5-17.5S34.5,17.9,44.2,17.9z"/> S29,62.8,44.2,62.8z M44.2,17.9c9.7,0,17.5,7.8,17.5,17.5s-7.8,17.5-17.5,17.5s-17.5-7.8-17.5-17.5S34.5,17.9,44.2,17.9z"/>
<path fill="#818181" d="M97.6,79H44.4C29.3,79,17,91.2,17,106.4s12.3,27.4,27.4,27.4h53.2c15.1,0,27.4-12.3,27.4-27.4 <path fill="#818181" d="M97.6,79H44.4C29.3,79,17,91.2,17,106.4s12.3,27.4,27.4,27.4h53.2c15.1,0,27.4-12.3,27.4-27.4
S112.8,79,97.6,79z M97.6,123.9c-9.7,0-17.5-7.8-17.5-17.5S88,88.9,97.6,88.9c9.7,0,17.5,7.8,17.5,17.5S107.3,123.9,97.6,123.9z" S112.8,79,97.6,79z M97.6,123.9c-9.7,0-17.5-7.8-17.5-17.5S88,88.9,97.6,88.9c9.7,0,17.5,7.8,17.5,17.5S107.3,123.9,97.6,123.9z"
/> />
</g> </g>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 898 B

After

Width:  |  Height:  |  Size: 882 B

View File

@ -1,16 +1,16 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<g> <g>
<g> <g>
<path fill="#FFFFFF" d="M44.2,62.8h53.2c15.1,0,27.4-12.3,27.4-27.4S112.5,8,97.4,8H44.2C29,8,16.8,20.3,16.8,35.4 <path fill="#FFFFFF" d="M44.2,62.8h53.2c15.1,0,27.4-12.3,27.4-27.4S112.5,8,97.4,8H44.2C29,8,16.8,20.3,16.8,35.4
S29,62.8,44.2,62.8z M44.2,17.9c9.7,0,17.5,7.8,17.5,17.5s-7.8,17.5-17.5,17.5s-17.5-7.8-17.5-17.5S34.5,17.9,44.2,17.9z"/> S29,62.8,44.2,62.8z M44.2,17.9c9.7,0,17.5,7.8,17.5,17.5s-7.8,17.5-17.5,17.5s-17.5-7.8-17.5-17.5S34.5,17.9,44.2,17.9z"/>
<path fill="#FFFFFF" d="M97.6,79H44.4C29.3,79,17,91.2,17,106.4s12.3,27.4,27.4,27.4h53.2c15.1,0,27.4-12.3,27.4-27.4 <path fill="#FFFFFF" d="M97.6,79H44.4C29.3,79,17,91.2,17,106.4s12.3,27.4,27.4,27.4h53.2c15.1,0,27.4-12.3,27.4-27.4
S112.8,79,97.6,79z M97.6,123.9c-9.7,0-17.5-7.8-17.5-17.5S88,88.9,97.6,88.9c9.7,0,17.5,7.8,17.5,17.5S107.3,123.9,97.6,123.9z" S112.8,79,97.6,79z M97.6,123.9c-9.7,0-17.5-7.8-17.5-17.5S88,88.9,97.6,88.9c9.7,0,17.5,7.8,17.5,17.5S107.3,123.9,97.6,123.9z"
/> />
</g> </g>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 898 B

After

Width:  |  Height:  |  Size: 882 B

View File

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<path fill="#818181" d="M106.9,71v-2.2l-11.6-8H80.1v-6.5l-2-3.3V26.2h-7.4h-0.4h-7.4V51l-2,3.3v6.5H45.7l-11.6,8V71h-4v56.5 <path fill="#818181" d="M106.9,71v-2.2l-11.6-8H80.1v-6.5l-2-3.3V26.2h-7.4h-0.4h-7.4V51l-2,3.3v6.5H45.7l-11.6,8V71h-4v56.5
l2.9,0.9c0,0,0.4,5.1,5.1,5.1c3.3,0,19.4,0,29,0v1.5c0,1.3,1,2.3,2.3,2.3h2c1.3,0,2.3-1,2.3-2.3v-1.5c0.1,0,0.3,0,0.4,0 l2.9,0.9c0,0,0.4,5.1,5.1,5.1c3.3,0,19.4,0,29,0v1.5c0,1.3,1,2.3,2.3,2.3h2c1.3,0,2.3-1,2.3-2.3v-1.5c0.1,0,0.3,0,0.4,0
c7.6,0,24.9,0,28.6,0c4.7,0,5.1-5.1,5.1-5.1l2.9-0.9V71H106.9z"/> c7.6,0,24.9,0,28.6,0c4.7,0,5.1-5.1,5.1-5.1l2.9-0.9V71H106.9z"/>
<path fill="#818181" d="M70.1,48.5l18.3,0v-4.7h-3.1C85.2,23.7,76.3,5,70.9,5l-0.9,0c-5.4,0-14.3,18.7-14.3,38.8h-3.1v4.7l18.3,0"/> <path fill="#818181" d="M70.1,48.5l18.3,0v-4.7h-3.1C85.2,23.7,76.3,5,70.9,5l-0.9,0c-5.4,0-14.3,18.7-14.3,38.8h-3.1v4.7l18.3,0"/>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 798 B

After

Width:  |  Height:  |  Size: 789 B

View File

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<path fill="#FFFFFF" d="M106.9,71v-2.2l-11.6-8H80.1v-6.5l-2-3.3V26.2h-7.4h-0.4h-7.4V51l-2,3.3v6.5H45.7l-11.6,8V71h-4v56.5 <path fill="#FFFFFF" d="M106.9,71v-2.2l-11.6-8H80.1v-6.5l-2-3.3V26.2h-7.4h-0.4h-7.4V51l-2,3.3v6.5H45.7l-11.6,8V71h-4v56.5
l2.9,0.9c0,0,0.4,5.1,5.1,5.1c3.3,0,19.4,0,29,0v1.5c0,1.3,1,2.3,2.3,2.3h2c1.3,0,2.3-1,2.3-2.3v-1.5c0.1,0,0.3,0,0.4,0 l2.9,0.9c0,0,0.4,5.1,5.1,5.1c3.3,0,19.4,0,29,0v1.5c0,1.3,1,2.3,2.3,2.3h2c1.3,0,2.3-1,2.3-2.3v-1.5c0.1,0,0.3,0,0.4,0
c7.6,0,24.9,0,28.6,0c4.7,0,5.1-5.1,5.1-5.1l2.9-0.9V71H106.9z"/> c7.6,0,24.9,0,28.6,0c4.7,0,5.1-5.1,5.1-5.1l2.9-0.9V71H106.9z"/>
<path fill="#FFFFFF" d="M70.1,48.5l18.3,0v-4.7h-3.1C85.2,23.7,76.3,5,70.9,5l-0.9,0c-5.4,0-14.3,18.7-14.3,38.8h-3.1v4.7l18.3,0"/> <path fill="#FFFFFF" d="M70.1,48.5l18.3,0v-4.7h-3.1C85.2,23.7,76.3,5,70.9,5l-0.9,0c-5.4,0-14.3,18.7-14.3,38.8h-3.1v4.7l18.3,0"/>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 798 B

After

Width:  |  Height:  |  Size: 789 B

View File

@ -1,20 +1,20 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<g id="_x34_29._Network"> <g id="_x34_29._Network">
<g> <g>
<path fill="#818181" d="M122.4,98.3V77.6c0-7.2-5.9-13.1-13.1-13.1H76.6V43.7c7.6-2.7,13.1-10,13.1-18.5 <path fill="#818181" d="M122.4,98.3V77.6c0-7.2-5.9-13.1-13.1-13.1H76.6V43.7c7.6-2.7,13.1-10,13.1-18.5
c0-10.8-8.8-19.6-19.6-19.6c-10.8,0-19.6,8.8-19.6,19.6c0,8.6,5.5,15.8,13.1,18.5v20.8H30.7c-7.2,0-13.1,5.9-13.1,13.1v20.8 c0-10.8-8.8-19.6-19.6-19.6c-10.8,0-19.6,8.8-19.6,19.6c0,8.6,5.5,15.8,13.1,18.5v20.8H30.7c-7.2,0-13.1,5.9-13.1,13.1v20.8
C10,101,4.5,108.3,4.5,116.8c0,10.8,8.8,19.6,19.6,19.6s19.6-8.8,19.6-19.6c0-8.5-5.5-15.8-13.1-18.5V77.6h32.7v20.8 C10,101,4.5,108.3,4.5,116.8c0,10.8,8.8,19.6,19.6,19.6s19.6-8.8,19.6-19.6c0-8.5-5.5-15.8-13.1-18.5V77.6h32.7v20.8
c-7.6,2.7-13.1,9.9-13.1,18.5c0,10.8,8.8,19.6,19.6,19.6c10.8,0,19.6-8.8,19.6-19.6c0-8.5-5.5-15.8-13.1-18.5V77.6h32.7v20.8 c-7.6,2.7-13.1,9.9-13.1,18.5c0,10.8,8.8,19.6,19.6,19.6c10.8,0,19.6-8.8,19.6-19.6c0-8.5-5.5-15.8-13.1-18.5V77.6h32.7v20.8
c-7.6,2.7-13.1,9.9-13.1,18.5c0,10.8,8.8,19.6,19.6,19.6c10.8,0,19.6-8.8,19.6-19.6C135.5,108.3,130,101,122.4,98.3z M24.2,123.4 c-7.6,2.7-13.1,9.9-13.1,18.5c0,10.8,8.8,19.6,19.6,19.6c10.8,0,19.6-8.8,19.6-19.6C135.5,108.3,130,101,122.4,98.3z M24.2,123.4
c-3.6,0-6.5-2.9-6.5-6.5c0-3.6,2.9-6.5,6.5-6.5c3.6,0,6.5,2.9,6.5,6.5C30.7,120.5,27.8,123.4,24.2,123.4z M70,123.4 c-3.6,0-6.5-2.9-6.5-6.5c0-3.6,2.9-6.5,6.5-6.5c3.6,0,6.5,2.9,6.5,6.5C30.7,120.5,27.8,123.4,24.2,123.4z M70,123.4
c-3.6,0-6.5-2.9-6.5-6.5c0-3.6,2.9-6.5,6.5-6.5c3.6,0,6.5,2.9,6.5,6.5C76.6,120.5,73.6,123.4,70,123.4z M70,31.7 c-3.6,0-6.5-2.9-6.5-6.5c0-3.6,2.9-6.5,6.5-6.5c3.6,0,6.5,2.9,6.5,6.5C76.6,120.5,73.6,123.4,70,123.4z M70,31.7
c-3.6,0-6.5-2.9-6.5-6.6c0-3.6,2.9-6.5,6.5-6.5c3.6,0,6.5,2.9,6.5,6.5C76.6,28.8,73.6,31.7,70,31.7z M115.8,123.4 c-3.6,0-6.5-2.9-6.5-6.6c0-3.6,2.9-6.5,6.5-6.5c3.6,0,6.5,2.9,6.5,6.5C76.6,28.8,73.6,31.7,70,31.7z M115.8,123.4
c-3.6,0-6.5-2.9-6.5-6.5c0-3.6,2.9-6.5,6.5-6.5c3.6,0,6.5,2.9,6.5,6.5C122.4,120.5,119.5,123.4,115.8,123.4z"/> c-3.6,0-6.5-2.9-6.5-6.5c0-3.6,2.9-6.5,6.5-6.5c3.6,0,6.5,2.9,6.5,6.5C122.4,120.5,119.5,123.4,115.8,123.4z"/>
</g> </g>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -1,20 +1,20 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<g id="_x34_29._Network"> <g id="_x34_29._Network">
<g> <g>
<path fill="#FFFFFF" d="M122.4,98.3V77.6c0-7.2-5.9-13.1-13.1-13.1H76.6V43.7c7.6-2.7,13.1-10,13.1-18.5 <path fill="#FFFFFF" d="M122.4,98.3V77.6c0-7.2-5.9-13.1-13.1-13.1H76.6V43.7c7.6-2.7,13.1-10,13.1-18.5
c0-10.8-8.8-19.6-19.6-19.6c-10.8,0-19.6,8.8-19.6,19.6c0,8.6,5.5,15.8,13.1,18.5v20.8H30.7c-7.2,0-13.1,5.9-13.1,13.1v20.8 c0-10.8-8.8-19.6-19.6-19.6c-10.8,0-19.6,8.8-19.6,19.6c0,8.6,5.5,15.8,13.1,18.5v20.8H30.7c-7.2,0-13.1,5.9-13.1,13.1v20.8
C10,101,4.5,108.3,4.5,116.8c0,10.8,8.8,19.6,19.6,19.6s19.6-8.8,19.6-19.6c0-8.5-5.5-15.8-13.1-18.5V77.6h32.7v20.8 C10,101,4.5,108.3,4.5,116.8c0,10.8,8.8,19.6,19.6,19.6s19.6-8.8,19.6-19.6c0-8.5-5.5-15.8-13.1-18.5V77.6h32.7v20.8
c-7.6,2.7-13.1,9.9-13.1,18.5c0,10.8,8.8,19.6,19.6,19.6c10.8,0,19.6-8.8,19.6-19.6c0-8.5-5.5-15.8-13.1-18.5V77.6h32.7v20.8 c-7.6,2.7-13.1,9.9-13.1,18.5c0,10.8,8.8,19.6,19.6,19.6c10.8,0,19.6-8.8,19.6-19.6c0-8.5-5.5-15.8-13.1-18.5V77.6h32.7v20.8
c-7.6,2.7-13.1,9.9-13.1,18.5c0,10.8,8.8,19.6,19.6,19.6c10.8,0,19.6-8.8,19.6-19.6C135.5,108.3,130,101,122.4,98.3z M24.2,123.4 c-7.6,2.7-13.1,9.9-13.1,18.5c0,10.8,8.8,19.6,19.6,19.6c10.8,0,19.6-8.8,19.6-19.6C135.5,108.3,130,101,122.4,98.3z M24.2,123.4
c-3.6,0-6.5-2.9-6.5-6.5c0-3.6,2.9-6.5,6.5-6.5c3.6,0,6.5,2.9,6.5,6.5C30.7,120.5,27.8,123.4,24.2,123.4z M70,123.4 c-3.6,0-6.5-2.9-6.5-6.5c0-3.6,2.9-6.5,6.5-6.5c3.6,0,6.5,2.9,6.5,6.5C30.7,120.5,27.8,123.4,24.2,123.4z M70,123.4
c-3.6,0-6.5-2.9-6.5-6.5c0-3.6,2.9-6.5,6.5-6.5c3.6,0,6.5,2.9,6.5,6.5C76.6,120.5,73.6,123.4,70,123.4z M70,31.7 c-3.6,0-6.5-2.9-6.5-6.5c0-3.6,2.9-6.5,6.5-6.5c3.6,0,6.5,2.9,6.5,6.5C76.6,120.5,73.6,123.4,70,123.4z M70,31.7
c-3.6,0-6.5-2.9-6.5-6.6c0-3.6,2.9-6.5,6.5-6.5c3.6,0,6.5,2.9,6.5,6.5C76.6,28.8,73.6,31.7,70,31.7z M115.8,123.4 c-3.6,0-6.5-2.9-6.5-6.6c0-3.6,2.9-6.5,6.5-6.5c3.6,0,6.5,2.9,6.5,6.5C76.6,28.8,73.6,31.7,70,31.7z M115.8,123.4
c-3.6,0-6.5-2.9-6.5-6.5c0-3.6,2.9-6.5,6.5-6.5c3.6,0,6.5,2.9,6.5,6.5C122.4,120.5,119.5,123.4,115.8,123.4z"/> c-3.6,0-6.5-2.9-6.5-6.5c0-3.6,2.9-6.5,6.5-6.5c3.6,0,6.5,2.9,6.5,6.5C122.4,120.5,119.5,123.4,115.8,123.4z"/>
</g> </g>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -1,16 +1,16 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 85 85" style="enable-background:new 0 0 85 85;" xml:space="preserve"> viewBox="0 0 85 85" style="enable-background:new 0 0 85 85;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#707173;} .st0{fill:#707173;}
.st1{fill:#9C9E9F;} .st1{fill:#9C9E9F;}
</style> </style>
<path class="st0" d="M35.8,82h21.4c9.4-6.7,16-22.1,16-39.9C73.2,24.8,67,9.8,58,2.8H35.6c9,7,15.2,22,15.2,39.3 <path class="st0" d="M35.8,82h21.4c9.4-6.7,16-22.1,16-39.9C73.2,24.8,67,9.8,58,2.8H35.6c9,7,15.2,22,15.2,39.3
c0,17.5-6.4,32.6-15.5,39.5C35.4,81.8,35.6,81.9,35.8,82z"/> c0,17.5-6.4,32.6-15.5,39.5C35.4,81.8,35.6,81.9,35.8,82z"/>
<g> <g>
<path class="st1" d="M39.7,37.1c1.1-15.2,6.9-27.9,15-34.3H32.3c-8.1,6.3-14,19.1-15,34.3H39.7z"/> <path class="st1" d="M39.7,37.1c1.1-15.2,6.9-27.9,15-34.3H32.3c-8.1,6.3-14,19.1-15,34.3H39.7z"/>
<path class="st1" d="M42.4,61.6H19.9c2.8,9.1,7.5,16.3,13.2,20.4h21.4c0.2-0.1,0.4-0.2,0.5-0.4C49.6,77.5,45.1,70.4,42.4,61.6z"/> <path class="st1" d="M42.4,61.6H19.9c2.8,9.1,7.5,16.3,13.2,20.4h21.4c0.2-0.1,0.4-0.2,0.5-0.4C49.6,77.5,45.1,70.4,42.4,61.6z"/>
</g> </g>
<polygon class="st1" points="12.5,28.9 29.8,58.3 47.7,28.7 "/> <polygon class="st1" points="12.5,28.9 29.8,58.3 47.7,28.7 "/>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 911 B

After

Width:  |  Height:  |  Size: 895 B

View File

@ -1,16 +1,16 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<g> <g>
<path fill="#818181" d="M37.7,25c-0.6-0.6-1.5-1-2.4-1c-0.9,0-1.8,0.4-2.4,1.1C13,47.1,23.8,94.5,25,99.2l-20,20 <path fill="#818181" d="M37.7,25c-0.6-0.6-1.5-1-2.4-1c-0.9,0-1.8,0.4-2.4,1.1C13,47.1,23.8,94.5,25,99.2l-20,20
c-0.6,0.6-1,1.5-1,2.3c0,0.9,0.3,1.7,1,2.3l12,12c0.6,0.6,1.5,1,2.3,1c0.8,0,1.7-0.3,2.3-1l20-20c9.7,2.5,21.9,4,32.6,4 c-0.6,0.6-1,1.5-1,2.3c0,0.9,0.3,1.7,1,2.3l12,12c0.6,0.6,1.5,1,2.3,1c0.8,0,1.7-0.3,2.3-1l20-20c9.7,2.5,21.9,4,32.6,4
c12.9,0,30.5-2.1,41.4-11.9c0.7-0.6,1.1-1.5,1.1-2.4c0-0.9-0.3-1.8-1-2.4L37.7,25z"/> c12.9,0,30.5-2.1,41.4-11.9c0.7-0.6,1.1-1.5,1.1-2.4c0-0.9-0.3-1.8-1-2.4L37.7,25z"/>
<path fill="#818181" d="M66.5,44.8c0.6,0.6,1.5,1,2.3,1c0.8,0,1.7-0.3,2.3-1L96,20c1.8-1.8,2.7-4.1,2.7-6.6c0-2.5-1-4.8-2.7-6.6 <path fill="#818181" d="M66.5,44.8c0.6,0.6,1.5,1,2.3,1c0.8,0,1.7-0.3,2.3-1L96,20c1.8-1.8,2.7-4.1,2.7-6.6c0-2.5-1-4.8-2.7-6.6
c-1.8-1.8-4.1-2.7-6.6-2.7c-2.5,0-4.8,1-6.6,2.7L58.1,31.7c-1.3,1.3-1.3,3.4,0,4.7L66.5,44.8z"/> c-1.8-1.8-4.1-2.7-6.6-2.7c-2.5,0-4.8,1-6.6,2.7L58.1,31.7c-1.3,1.3-1.3,3.4,0,4.7L66.5,44.8z"/>
<path fill="#818181" d="M134.3,45.2c-1.8-1.8-4.1-2.7-6.6-2.7c-2.5,0-4.8,1-6.6,2.7L96.4,69.9c-0.6,0.6-1,1.5-1,2.3s0.3,1.7,1,2.3 <path fill="#818181" d="M134.3,45.2c-1.8-1.8-4.1-2.7-6.6-2.7c-2.5,0-4.8,1-6.6,2.7L96.4,69.9c-0.6,0.6-1,1.5-1,2.3s0.3,1.7,1,2.3
l8.4,8.4c0.6,0.6,1.5,1,2.3,1c0.8,0,1.7-0.3,2.3-1l24.7-24.7C137.9,54.7,137.9,48.8,134.3,45.2z"/> l8.4,8.4c0.6,0.6,1.5,1,2.3,1c0.8,0,1.7-0.3,2.3-1l24.7-24.7C137.9,54.7,137.9,48.8,134.3,45.2z"/>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,16 +1,16 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<g> <g>
<path fill="#FFFFFF" d="M37.7,25c-0.6-0.6-1.5-1-2.4-1c-0.9,0-1.8,0.4-2.4,1.1C13,47.1,23.8,94.5,25,99.2l-20,20 <path fill="#FFFFFF" d="M37.7,25c-0.6-0.6-1.5-1-2.4-1c-0.9,0-1.8,0.4-2.4,1.1C13,47.1,23.8,94.5,25,99.2l-20,20
c-0.6,0.6-1,1.5-1,2.3c0,0.9,0.3,1.7,1,2.3l12,12c0.6,0.6,1.5,1,2.3,1c0.8,0,1.7-0.3,2.3-1l20-20c9.7,2.5,21.9,4,32.6,4 c-0.6,0.6-1,1.5-1,2.3c0,0.9,0.3,1.7,1,2.3l12,12c0.6,0.6,1.5,1,2.3,1c0.8,0,1.7-0.3,2.3-1l20-20c9.7,2.5,21.9,4,32.6,4
c12.9,0,30.5-2.1,41.4-11.9c0.7-0.6,1.1-1.5,1.1-2.4c0-0.9-0.3-1.8-1-2.4L37.7,25z"/> c12.9,0,30.5-2.1,41.4-11.9c0.7-0.6,1.1-1.5,1.1-2.4c0-0.9-0.3-1.8-1-2.4L37.7,25z"/>
<path fill="#FFFFFF" d="M66.5,44.8c0.6,0.6,1.5,1,2.3,1c0.8,0,1.7-0.3,2.3-1L96,20c1.8-1.8,2.7-4.1,2.7-6.6c0-2.5-1-4.8-2.7-6.6 <path fill="#FFFFFF" d="M66.5,44.8c0.6,0.6,1.5,1,2.3,1c0.8,0,1.7-0.3,2.3-1L96,20c1.8-1.8,2.7-4.1,2.7-6.6c0-2.5-1-4.8-2.7-6.6
c-1.8-1.8-4.1-2.7-6.6-2.7c-2.5,0-4.8,1-6.6,2.7L58.1,31.7c-1.3,1.3-1.3,3.4,0,4.7L66.5,44.8z"/> c-1.8-1.8-4.1-2.7-6.6-2.7c-2.5,0-4.8,1-6.6,2.7L58.1,31.7c-1.3,1.3-1.3,3.4,0,4.7L66.5,44.8z"/>
<path fill="#FFFFFF" d="M134.3,45.2c-1.8-1.8-4.1-2.7-6.6-2.7c-2.5,0-4.8,1-6.6,2.7L96.4,69.9c-0.6,0.6-1,1.5-1,2.3s0.3,1.7,1,2.3 <path fill="#FFFFFF" d="M134.3,45.2c-1.8-1.8-4.1-2.7-6.6-2.7c-2.5,0-4.8,1-6.6,2.7L96.4,69.9c-0.6,0.6-1,1.5-1,2.3s0.3,1.7,1,2.3
l8.4,8.4c0.6,0.6,1.5,1,2.3,1c0.8,0,1.7-0.3,2.3-1l24.7-24.7C137.9,54.7,137.9,48.8,134.3,45.2z"/> l8.4,8.4c0.6,0.6,1.5,1,2.3,1c0.8,0,1.7-0.3,2.3-1l24.7-24.7C137.9,54.7,137.9,48.8,134.3,45.2z"/>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="-99 43 85 56.7" style="enable-background:new -99 43 85 56.7;" xml:space="preserve"> viewBox="-99 43 85 56.7" style="enable-background:new -99 43 85 56.7;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#838281;} .st0{fill:#838281;}
</style> </style>
<g> <g>
<path class="st0" d="M-21.5,60h-2.6v-7c0-1.8-1.5-3.3-3.3-3.3h-63.6c-1.8,0-3.3,1.5-3.3,3.3v37.9c0,1.8,1.5,3.3,3.3,3.3h63.6 <path class="st0" d="M-21.5,60h-2.6v-7c0-1.8-1.5-3.3-3.3-3.3h-63.6c-1.8,0-3.3,1.5-3.3,3.3v37.9c0,1.8,1.5,3.3,3.3,3.3h63.6
c1.8,0,3.3-1.5,3.3-3.3v-6.7h2.6c1.8,0,3.3-1.5,3.3-3.3V63.3C-18.2,61.4-19.7,60-21.5,60L-21.5,60z M-30.6,87.6h-57V56.3h57V87.6z c1.8,0,3.3-1.5,3.3-3.3v-6.7h2.6c1.8,0,3.3-1.5,3.3-3.3V63.3C-18.2,61.4-19.7,60-21.5,60L-21.5,60z M-30.6,87.6h-57V56.3h57V87.6z
M-30.6,87.6"/> M-30.6,87.6"/>
<path class="st0" d="M-61.4,61.9L-61.4,61.9l-17.1,15.6l15.8-6.7l5.9,11.2l17.1-15.6L-55.5,73L-61.4,61.9z M-61.4,61.9"/> <path class="st0" d="M-61.4,61.9L-61.4,61.9l-17.1,15.6l15.8-6.7l5.9,11.2l17.1-15.6L-55.5,73L-61.4,61.9z M-61.4,61.9"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 828 B

After

Width:  |  Height:  |  Size: 814 B

View File

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="-99 43 85 56.7" style="enable-background:new -99 43 85 56.7;" xml:space="preserve"> viewBox="-99 43 85 56.7" style="enable-background:new -99 43 85 56.7;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#FFFFFF;} .st0{fill:#FFFFFF;}
</style> </style>
<g> <g>
<path class="st0" d="M-21.5,60h-2.6v-7c0-1.8-1.5-3.3-3.3-3.3h-63.6c-1.8,0-3.3,1.5-3.3,3.3v37.9c0,1.8,1.5,3.3,3.3,3.3h63.6 <path class="st0" d="M-21.5,60h-2.6v-7c0-1.8-1.5-3.3-3.3-3.3h-63.6c-1.8,0-3.3,1.5-3.3,3.3v37.9c0,1.8,1.5,3.3,3.3,3.3h63.6
c1.8,0,3.3-1.5,3.3-3.3v-6.7h2.6c1.8,0,3.3-1.5,3.3-3.3V63.3C-18.2,61.4-19.7,60-21.5,60L-21.5,60z M-30.6,87.6h-57V56.3h57V87.6z c1.8,0,3.3-1.5,3.3-3.3v-6.7h2.6c1.8,0,3.3-1.5,3.3-3.3V63.3C-18.2,61.4-19.7,60-21.5,60L-21.5,60z M-30.6,87.6h-57V56.3h57V87.6z
M-30.6,87.6"/> M-30.6,87.6"/>
<path class="st0" d="M-61.4,61.9L-61.4,61.9l-17.1,15.6l15.8-6.7l5.9,11.2l17.1-15.6L-55.5,73L-61.4,61.9z M-61.4,61.9"/> <path class="st0" d="M-61.4,61.9L-61.4,61.9l-17.1,15.6l15.8-6.7l5.9,11.2l17.1-15.6L-55.5,73L-61.4,61.9z M-61.4,61.9"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 828 B

After

Width:  |  Height:  |  Size: 814 B

View File

@ -1,26 +1,26 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<path d="M29.1,56.4c3.1,0,6-0.6,8.7-1.5l-2.6-5.8c-1.9,0.6-4,1-6.1,1c-10.8,0-19.6-8.8-19.6-19.6s8.8-19.6,19.6-19.6 <path d="M29.1,56.4c3.1,0,6-0.6,8.7-1.5l-2.6-5.8c-1.9,0.6-4,1-6.1,1c-10.8,0-19.6-8.8-19.6-19.6s8.8-19.6,19.6-19.6
s19.6,8.8,19.6,19.6c0,1.6-0.2,3.2-0.6,4.8l5.7,3c0.8-2.5,1.2-5.1,1.2-7.8c0-14.3-11.6-25.9-25.9-25.9S3.2,16.2,3.2,30.5 s19.6,8.8,19.6,19.6c0,1.6-0.2,3.2-0.6,4.8l5.7,3c0.8-2.5,1.2-5.1,1.2-7.8c0-14.3-11.6-25.9-25.9-25.9S3.2,16.2,3.2,30.5
S14.8,56.4,29.1,56.4z"/> S14.8,56.4,29.1,56.4z"/>
<path d="M48.1,107.1c0.4,1.5,0.6,3.1,0.6,4.8c0,10.8-8.8,19.6-19.6,19.6s-19.6-8.8-19.6-19.6s8.8-19.6,19.6-19.6 <path d="M48.1,107.1c0.4,1.5,0.6,3.1,0.6,4.8c0,10.8-8.8,19.6-19.6,19.6s-19.6-8.8-19.6-19.6s8.8-19.6,19.6-19.6
c2.1,0,4.2,0.4,6.1,1l2.6-5.8c-2.7-1-5.7-1.5-8.7-1.5c-14.3,0-25.9,11.6-25.9,25.9s11.6,25.9,25.9,25.9s25.9-11.6,25.9-25.9 c2.1,0,4.2,0.4,6.1,1l2.6-5.8c-2.7-1-5.7-1.5-8.7-1.5c-14.3,0-25.9,11.6-25.9,25.9s11.6,25.9,25.9,25.9s25.9-11.6,25.9-25.9
c0-2.7-0.4-5.3-1.2-7.8L48.1,107.1z"/> c0-2.7-0.4-5.3-1.2-7.8L48.1,107.1z"/>
<path d="M92.2,35.2c-0.4-1.5-0.6-3.1-0.6-4.8c0-10.8,8.8-19.6,19.6-19.6s19.6,8.8,19.6,19.6s-8.8,19.6-19.6,19.6 <path d="M92.2,35.2c-0.4-1.5-0.6-3.1-0.6-4.8c0-10.8,8.8-19.6,19.6-19.6s19.6,8.8,19.6,19.6s-8.8,19.6-19.6,19.6
c-2.1,0-4.2-0.4-6.1-1l-2.6,5.8c2.7,1,5.7,1.5,8.7,1.5c14.3,0,25.9-11.6,25.9-25.9S125.5,4.5,111.2,4.5S85.2,16.2,85.2,30.5 c-2.1,0-4.2-0.4-6.1-1l-2.6,5.8c2.7,1,5.7,1.5,8.7,1.5c14.3,0,25.9-11.6,25.9-25.9S125.5,4.5,111.2,4.5S85.2,16.2,85.2,30.5
c0,2.7,0.4,5.3,1.2,7.8L92.2,35.2z"/> c0,2.7,0.4,5.3,1.2,7.8L92.2,35.2z"/>
<path d="M111.2,85.9c-3.1,0-6,0.6-8.7,1.5l2.6,5.8c1.9-0.6,4-1,6.1-1c10.8,0,19.6,8.8,19.6,19.6s-8.8,19.6-19.6,19.6 <path d="M111.2,85.9c-3.1,0-6,0.6-8.7,1.5l2.6,5.8c1.9-0.6,4-1,6.1-1c10.8,0,19.6,8.8,19.6,19.6s-8.8,19.6-19.6,19.6
s-19.6-8.8-19.6-19.6c0-1.6,0.2-3.2,0.6-4.8l-5.7-3c-0.8,2.5-1.2,5.1-1.2,7.8c0,14.3,11.6,25.9,25.9,25.9s25.9-11.6,25.9-25.9 s-19.6-8.8-19.6-19.6c0-1.6,0.2-3.2,0.6-4.8l-5.7-3c-0.8,2.5-1.2,5.1-1.2,7.8c0,14.3,11.6,25.9,25.9,25.9s25.9-11.6,25.9-25.9
S125.5,85.9,111.2,85.9z"/> S125.5,85.9,111.2,85.9z"/>
<path d="M111.2,103.1c-1.6,0-3.2,0.5-4.5,1.2C97.2,93.5,89.2,80,89.2,71.5c0-0.1,0-0.2,0-0.4c0-0.1,0-0.2,0-0.4 <path d="M111.2,103.1c-1.6,0-3.2,0.5-4.5,1.2C97.2,93.5,89.2,80,89.2,71.5c0-0.1,0-0.2,0-0.4c0-0.1,0-0.2,0-0.4
c0-8.4,8-22,17.5-32.8c1.3,0.8,2.8,1.2,4.5,1.2c4.8,0,8.8-3.9,8.8-8.8s-3.9-8.8-8.8-8.8c-4.8,0-8.8,3.9-8.8,8.8 c0-8.4,8-22,17.5-32.8c1.3,0.8,2.8,1.2,4.5,1.2c4.8,0,8.8-3.9,8.8-8.8s-3.9-8.8-8.8-8.8c-4.8,0-8.8,3.9-8.8,8.8
c0,1.4,0.3,2.7,0.9,3.9C91.2,44.5,79.4,49.1,70.4,49.1h-0.4c-9.1,0-20.8-4.6-32.9-14.8c0.6-1.2,0.9-2.5,0.9-3.9 c0,1.4,0.3,2.7,0.9,3.9C91.2,44.5,79.4,49.1,70.4,49.1h-0.4c-9.1,0-20.8-4.6-32.9-14.8c0.6-1.2,0.9-2.5,0.9-3.9
c0-4.8-3.9-8.8-8.8-8.8s-8.8,3.9-8.8,8.8s3.9,8.8,8.8,8.8c1.6,0,3.2-0.5,4.5-1.2c9.5,10.8,17.5,24.4,17.5,32.8c0,0.1,0,0.2,0,0.4 c0-4.8-3.9-8.8-8.8-8.8s-8.8,3.9-8.8,8.8s3.9,8.8,8.8,8.8c1.6,0,3.2-0.5,4.5-1.2c9.5,10.8,17.5,24.4,17.5,32.8c0,0.1,0,0.2,0,0.4
c0,0.1,0,0.2,0,0.4c0,8.4-8,22-17.5,32.8c-1.3-0.8-2.8-1.2-4.5-1.2c-4.8,0-8.8,3.9-8.8,8.8s3.9,8.8,8.8,8.8s8.8-3.9,8.8-8.8 c0,0.1,0,0.2,0,0.4c0,8.4-8,22-17.5,32.8c-1.3-0.8-2.8-1.2-4.5-1.2c-4.8,0-8.8,3.9-8.8,8.8s3.9,8.8,8.8,8.8s8.8-3.9,8.8-8.8
c0-1.4-0.3-2.7-0.9-3.9c12.1-10.1,23.9-14.8,32.9-14.8h0.4c9.1,0,20.8,4.6,32.9,14.8c-0.6,1.2-0.9,2.5-0.9,3.9 c0-1.4-0.3-2.7-0.9-3.9c12.1-10.1,23.9-14.8,32.9-14.8h0.4c9.1,0,20.8,4.6,32.9,14.8c-0.6,1.2-0.9,2.5-0.9,3.9
c0,4.8,3.9,8.8,8.8,8.8c4.8,0,8.8-3.9,8.8-8.8S116,103.1,111.2,103.1z M70.3,81l-11.9,3.8l10.7-28.1L82.7,86L70.3,81z"/> c0,4.8,3.9,8.8,8.8,8.8c4.8,0,8.8-3.9,8.8-8.8S116,103.1,111.2,103.1z M70.3,81l-11.9,3.8l10.7-28.1L82.7,86L70.3,81z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 85 85" style="enable-background:new 0 0 85 85;" xml:space="preserve"> viewBox="0 0 85 85" style="enable-background:new 0 0 85 85;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#707173;} .st0{fill:#707173;}
</style> </style>
<path class="st0" d="M44.8,5.1C25,5.1,8.7,20.6,7.5,40.1h14.4c1.2-11.6,11-20.7,22.9-20.7c12.7,0,23.1,10.3,23.1,23.1 <path class="st0" d="M44.8,5.1C25,5.1,8.7,20.6,7.5,40.1h14.4c1.2-11.6,11-20.7,22.9-20.7c12.7,0,23.1,10.3,23.1,23.1
S57.5,65.5,44.8,65.5c-5,0-9.6-1.6-13.4-4.3v0l-11.3,9.2c6.6,5.8,15.2,9.4,24.7,9.4c20.6,0,37.4-16.8,37.4-37.4S65.4,5.1,44.8,5.1z" S57.5,65.5,44.8,65.5c-5,0-9.6-1.6-13.4-4.3v0l-11.3,9.2c6.6,5.8,15.2,9.4,24.7,9.4c20.6,0,37.4-16.8,37.4-37.4S65.4,5.1,44.8,5.1z"
/> />
<polygon class="st0" points="1.7,31 12.8,58.2 30.9,35.1 "/> <polygon class="st0" points="1.7,31 12.8,58.2 30.9,35.1 "/>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 726 B

After

Width:  |  Height:  |  Size: 714 B

View File

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<path fill="#818181" d="M111.4,49.1H98.6c-2.7-4-7.3-6.6-12.4-6.6H75.3V6c0-2.4-2-4.4-4.4-4.4s-4.4,2-4.4,4.4v36.5H56.5 <path fill="#818181" d="M111.4,49.1H98.6c-2.7-4-7.3-6.6-12.4-6.6H75.3V6c0-2.4-2-4.4-4.4-4.4s-4.4,2-4.4,4.4v36.5H56.5
c-5.1,0-9.7,2.6-12.4,6.6H30.5c-8.2,0-15,6.7-15,15v61.1c0,8.2,6.7,15,15,15h80.9c8.2,0,15-6.7,15-15V64.1 c-5.1,0-9.7,2.6-12.4,6.6H30.5c-8.2,0-15,6.7-15,15v61.1c0,8.2,6.7,15,15,15h80.9c8.2,0,15-6.7,15-15V64.1
C126.4,55.8,119.6,49.1,111.4,49.1z M45.9,106.5c-9.6,0-17.4-7.8-17.4-17.4c0-9.6,7.8-17.4,17.4-17.4c9.6,0,17.4,7.8,17.4,17.4 C126.4,55.8,119.6,49.1,111.4,49.1z M45.9,106.5c-9.6,0-17.4-7.8-17.4-17.4c0-9.6,7.8-17.4,17.4-17.4c9.6,0,17.4,7.8,17.4,17.4
C63.3,98.7,55.5,106.5,45.9,106.5z M95.3,106.5c-9.6,0-17.4-7.8-17.4-17.4c0-9.6,7.8-17.4,17.4-17.4s17.4,7.8,17.4,17.4 C63.3,98.7,55.5,106.5,45.9,106.5z M95.3,106.5c-9.6,0-17.4-7.8-17.4-17.4c0-9.6,7.8-17.4,17.4-17.4s17.4,7.8,17.4,17.4
C112.7,98.7,104.9,106.5,95.3,106.5z"/> C112.7,98.7,104.9,106.5,95.3,106.5z"/>
<circle fill="#818181" cx="95.5" cy="89.1" r="5.1"/> <circle fill="#818181" cx="95.5" cy="89.1" r="5.1"/>
<circle fill="#818181" cx="46.4" cy="89.1" r="5.1"/> <circle fill="#818181" cx="46.4" cy="89.1" r="5.1"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 994 B

After

Width:  |  Height:  |  Size: 980 B

View File

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<path fill="#FFFFFF" d="M111.4,49.1H98.6c-2.7-4-7.3-6.6-12.4-6.6H75.3V6c0-2.4-2-4.4-4.4-4.4s-4.4,2-4.4,4.4v36.5H56.5 <path fill="#FFFFFF" d="M111.4,49.1H98.6c-2.7-4-7.3-6.6-12.4-6.6H75.3V6c0-2.4-2-4.4-4.4-4.4s-4.4,2-4.4,4.4v36.5H56.5
c-5.1,0-9.7,2.6-12.4,6.6H30.5c-8.2,0-15,6.7-15,15v61.1c0,8.2,6.7,15,15,15h80.9c8.2,0,15-6.7,15-15V64.1 c-5.1,0-9.7,2.6-12.4,6.6H30.5c-8.2,0-15,6.7-15,15v61.1c0,8.2,6.7,15,15,15h80.9c8.2,0,15-6.7,15-15V64.1
C126.4,55.8,119.6,49.1,111.4,49.1z M45.9,106.5c-9.6,0-17.4-7.8-17.4-17.4c0-9.6,7.8-17.4,17.4-17.4c9.6,0,17.4,7.8,17.4,17.4 C126.4,55.8,119.6,49.1,111.4,49.1z M45.9,106.5c-9.6,0-17.4-7.8-17.4-17.4c0-9.6,7.8-17.4,17.4-17.4c9.6,0,17.4,7.8,17.4,17.4
C63.3,98.7,55.5,106.5,45.9,106.5z M95.3,106.5c-9.6,0-17.4-7.8-17.4-17.4c0-9.6,7.8-17.4,17.4-17.4s17.4,7.8,17.4,17.4 C63.3,98.7,55.5,106.5,45.9,106.5z M95.3,106.5c-9.6,0-17.4-7.8-17.4-17.4c0-9.6,7.8-17.4,17.4-17.4s17.4,7.8,17.4,17.4
C112.7,98.7,104.9,106.5,95.3,106.5z"/> C112.7,98.7,104.9,106.5,95.3,106.5z"/>
<circle fill="#FFFFFF" cx="95.5" cy="89.1" r="5.1"/> <circle fill="#FFFFFF" cx="95.5" cy="89.1" r="5.1"/>
<circle fill="#FFFFFF" cx="46.4" cy="89.1" r="5.1"/> <circle fill="#FFFFFF" cx="46.4" cy="89.1" r="5.1"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 994 B

After

Width:  |  Height:  |  Size: 980 B

View File

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<g> <g>
<path fill="#818181" d="M52.7,113.6c-2.4,0-4.4-1.1-4.9-3.4l-6.7-32l-4.4,7.6c-0.9,1.5-2.6,2.6-4.3,2.6H8c-2.8,0-5-2.3-5-5 <path fill="#818181" d="M52.7,113.6c-2.4,0-4.4-1.1-4.9-3.4l-6.7-32l-4.4,7.6c-0.9,1.5-2.6,2.6-4.3,2.6H8c-2.8,0-5-2.3-5-5
c0-2.8,2.3-5,5-5h21.4L39,62.3c1.1-1.8,3.1-2.8,5.2-2.4c2,0.3,3.7,1.9,4.1,3.9l4,19.5l9.2-51.1c0.4-2.4,2.5-4.1,5-4.1c0,0,0,0,0,0 c0-2.8,2.3-5,5-5h21.4L39,62.3c1.1-1.8,3.1-2.8,5.2-2.4c2,0.3,3.7,1.9,4.1,3.9l4,19.5l9.2-51.1c0.4-2.4,2.5-4.1,5-4.1c0,0,0,0,0,0
c2.4,0,4.5,1.7,4.9,4.1l9.8,57.4l3.2-8c0.8-1.9,2.6-3.2,4.7-3.2h44.6c2.8,0,5,2.2,5,5c0,2.8-2.2,5-5,5H92.5L84,110 c2.4,0,4.5,1.7,4.9,4.1l9.8,57.4l3.2-8c0.8-1.9,2.6-3.2,4.7-3.2h44.6c2.8,0,5,2.2,5,5c0,2.8-2.2,5-5,5H92.5L84,110
c-0.8,2.1-2.9,3.4-5.2,3.2c-2.2-0.2-4-1.9-4.4-4.2l-8-46.9l-8.7,48C57.2,112.4,55.1,113.6,52.7,113.6 c-0.8,2.1-2.9,3.4-5.2,3.2c-2.2-0.2-4-1.9-4.4-4.2l-8-46.9l-8.7,48C57.2,112.4,55.1,113.6,52.7,113.6
C52.7,113.6,52.7,113.6,52.7,113.6z"/> C52.7,113.6,52.7,113.6,52.7,113.6z"/>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 897 B

After

Width:  |  Height:  |  Size: 883 B

View File

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<g> <g>
<path fill="#FFFFFF" d="M52.7,113.6c-2.4,0-4.4-1.1-4.9-3.4l-6.7-32l-4.4,7.6c-0.9,1.5-2.6,2.6-4.3,2.6H8c-2.8,0-5-2.3-5-5 <path fill="#FFFFFF" d="M52.7,113.6c-2.4,0-4.4-1.1-4.9-3.4l-6.7-32l-4.4,7.6c-0.9,1.5-2.6,2.6-4.3,2.6H8c-2.8,0-5-2.3-5-5
c0-2.8,2.3-5,5-5h21.4L39,62.3c1.1-1.8,3.1-2.8,5.2-2.4c2,0.3,3.7,1.9,4.1,3.9l4,19.5l9.2-51.1c0.4-2.4,2.5-4.1,5-4.1c0,0,0,0,0,0 c0-2.8,2.3-5,5-5h21.4L39,62.3c1.1-1.8,3.1-2.8,5.2-2.4c2,0.3,3.7,1.9,4.1,3.9l4,19.5l9.2-51.1c0.4-2.4,2.5-4.1,5-4.1c0,0,0,0,0,0
c2.4,0,4.5,1.7,4.9,4.1l9.8,57.4l3.2-8c0.8-1.9,2.6-3.2,4.7-3.2h44.6c2.8,0,5,2.2,5,5c0,2.8-2.2,5-5,5H92.5L84,110 c2.4,0,4.5,1.7,4.9,4.1l9.8,57.4l3.2-8c0.8-1.9,2.6-3.2,4.7-3.2h44.6c2.8,0,5,2.2,5,5c0,2.8-2.2,5-5,5H92.5L84,110
c-0.8,2.1-2.9,3.4-5.2,3.2c-2.2-0.2-4-1.9-4.4-4.2l-8-46.9l-8.7,48C57.2,112.4,55.1,113.6,52.7,113.6 c-0.8,2.1-2.9,3.4-5.2,3.2c-2.2-0.2-4-1.9-4.4-4.2l-8-46.9l-8.7,48C57.2,112.4,55.1,113.6,52.7,113.6
C52.7,113.6,52.7,113.6,52.7,113.6z"/> C52.7,113.6,52.7,113.6,52.7,113.6z"/>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 897 B

After

Width:  |  Height:  |  Size: 883 B

View File

@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<path fill="#818181" d="M137.6,57h-16l-13-12.3h-78l-9.3,14h-18v16h21.2v33.7c0,8.8,7.2,15.9,15.9,15.9h60.4 <path fill="#818181" d="M137.6,57h-16l-13-12.3h-78l-9.3,14h-18v16h21.2v33.7c0,8.8,7.2,15.9,15.9,15.9h60.4
c8.8,0,15.9-7.2,15.9-15.9V74.7h20.9V57z"/> c8.8,0,15.9-7.2,15.9-15.9V74.7h20.9V57z"/>
<polygon fill="#818181" points="78.9,30.3 66.6,30.3 66.6,17.5 45.9,17.5 45.9,30.3 33.6,30.3 33.6,39.3 78.9,39.3 "/> <polygon fill="#818181" points="78.9,30.3 66.6,30.3 66.6,17.5 45.9,17.5 45.9,30.3 33.6,30.3 33.6,39.3 78.9,39.3 "/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 645 B

After

Width:  |  Height:  |  Size: 635 B

View File

@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<path fill="#FFFFFF" d="M137.6,57h-16l-13-12.3h-78l-9.3,14h-18v16h21.2v33.7c0,8.8,7.2,15.9,15.9,15.9h60.4 <path fill="#FFFFFF" d="M137.6,57h-16l-13-12.3h-78l-9.3,14h-18v16h21.2v33.7c0,8.8,7.2,15.9,15.9,15.9h60.4
c8.8,0,15.9-7.2,15.9-15.9V74.7h20.9V57z"/> c8.8,0,15.9-7.2,15.9-15.9V74.7h20.9V57z"/>
<polygon fill="#FFFFFF" points="78.9,30.3 66.6,30.3 66.6,17.5 45.9,17.5 45.9,30.3 33.6,30.3 33.6,39.3 78.9,39.3 "/> <polygon fill="#FFFFFF" points="78.9,30.3 66.6,30.3 66.6,17.5 45.9,17.5 45.9,30.3 33.6,30.3 33.6,39.3 78.9,39.3 "/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 645 B

After

Width:  |  Height:  |  Size: 635 B

View File

@ -1,19 +1,19 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<path fill="#FFFFFF" d="M89,59.3l-2.6-6.2c0,0,6.1-13.7,5.5-14.2l-8-7.8c-0.6-0.5-14.2,5.7-14.2,5.7l-6.3-2.5 <path fill="#FFFFFF" d="M89,59.3l-2.6-6.2c0,0,6.1-13.7,5.5-14.2l-8-7.8c-0.6-0.5-14.2,5.7-14.2,5.7l-6.3-2.5
c0,0-5.6-13.9-6.3-13.9H45.7c-0.8,0-5.9,13.9-5.9,13.9l-6.3,2.6c0,0-14-5.9-14.5-5.4l-8,7.9c-0.6,0.5,5.8,13.9,5.8,13.9l-2.6,6.2 c0,0-5.6-13.9-6.3-13.9H45.7c-0.8,0-5.9,13.9-5.9,13.9l-6.3,2.6c0,0-14-5.9-14.5-5.4l-8,7.9c-0.6,0.5,5.8,13.9,5.8,13.9l-2.6,6.2
c0,0-14.2,5.4-14.2,6.2v11.1c0,0.8,14.2,5.8,14.2,5.8l2.6,6.2c0,0-6.1,13.7-5.5,14.2l8,7.8c0.5,0.5,14.2-5.7,14.2-5.7l6.3,2.6 c0,0-14.2,5.4-14.2,6.2v11.1c0,0.8,14.2,5.8,14.2,5.8l2.6,6.2c0,0-6.1,13.7-5.5,14.2l8,7.8c0.5,0.5,14.2-5.7,14.2-5.7l6.3,2.6
c0,0,5.6,13.8,6.3,13.8h11.3c0.8,0,5.9-13.9,5.9-13.9l6.3-2.6c0,0,14,5.9,14.5,5.4l8-7.9c0.5-0.5-5.8-13.9-5.8-13.9l2.6-6.2 c0,0,5.6,13.8,6.3,13.8h11.3c0.8,0,5.9-13.9,5.9-13.9l6.3-2.6c0,0,14,5.9,14.5,5.4l8-7.9c0.5-0.5-5.8-13.9-5.8-13.9l2.6-6.2
c0,0,14.2-5.5,14.2-6.2V65.1C103.2,64.3,89,59.3,89,59.3z M51.6,87.1c-9.1,0-16.5-7.3-16.5-16.2c0-8.9,7.4-16.2,16.5-16.2 c0,0,14.2-5.5,14.2-6.2V65.1C103.2,64.3,89,59.3,89,59.3z M51.6,87.1c-9.1,0-16.5-7.3-16.5-16.2c0-8.9,7.4-16.2,16.5-16.2
c9.1,0,16.5,7.3,16.5,16.2C68.2,79.8,60.7,87.1,51.6,87.1z"/> c9.1,0,16.5,7.3,16.5,16.2C68.2,79.8,60.7,87.1,51.6,87.1z"/>
<path fill="#FFFFFF" d="M136.4,46.3l0.1-3.2c0,0,5.3-4.8,5.2-5.1l-2-5c-0.1-0.3-7.4-0.3-7.4-0.3l-2.3-2.4c0,0,0.3-7.2-0.1-7.3 <path fill="#FFFFFF" d="M136.4,46.3l0.1-3.2c0,0,5.3-4.8,5.2-5.1l-2-5c-0.1-0.3-7.4-0.3-7.4-0.3l-2.3-2.4c0,0,0.3-7.2-0.1-7.3
l-5-2.2c-0.4-0.2-5.3,4.9-5.3,4.9l-3.3-0.1c0,0-5-5.4-5.3-5.2l-5.1,1.9c-0.3,0.1-0.2,7.3-0.2,7.3l-2.4,2.2c0,0-7.3-0.4-7.4-0.1 l-5-2.2c-0.4-0.2-5.3,4.9-5.3,4.9l-3.3-0.1c0,0-5-5.4-5.3-5.2l-5.1,1.9c-0.3,0.1-0.2,7.3-0.2,7.3l-2.4,2.2c0,0-7.3-0.4-7.4-0.1
l-2.2,4.9c-0.2,0.3,5.1,5.4,5.1,5.4l-0.1,3.2c0,0-5.3,4.8-5.2,5.2l2,5c0.1,0.3,7.4,0.3,7.4,0.3l2.3,2.4c0,0-0.3,7.2,0.1,7.3l5,2.2 l-2.2,4.9c-0.2,0.3,5.1,5.4,5.1,5.4l-0.1,3.2c0,0-5.3,4.8-5.2,5.2l2,5c0.1,0.3,7.4,0.3,7.4,0.3l2.3,2.4c0,0-0.3,7.2,0.1,7.3l5,2.2
c0.3,0.2,5.3-4.9,5.3-4.9l3.3,0.1c0,0,5,5.4,5.3,5.2l5.1-1.9c0.3-0.1,0.2-7.3,0.2-7.3l2.4-2.2c0,0,7.3,0.4,7.4,0l2.2-4.9 c0.3,0.2,5.3-4.9,5.3-4.9l3.3,0.1c0,0,5,5.4,5.3,5.2l5.1-1.9c0.3-0.1,0.2-7.3,0.2-7.3l2.4-2.2c0,0,7.3,0.4,7.4,0l2.2-4.9
C141.7,51.4,136.4,46.3,136.4,46.3z M125,47.3c-1.8,3.9-6.4,5.7-10.5,3.9c-4-1.8-5.8-6.4-4.1-10.4c1.7-3.9,6.4-5.6,10.4-3.9 C141.7,51.4,136.4,46.3,136.4,46.3z M125,47.3c-1.8,3.9-6.4,5.7-10.5,3.9c-4-1.8-5.8-6.4-4.1-10.4c1.7-3.9,6.4-5.6,10.4-3.9
C124.9,38.8,126.8,43.4,125,47.3z"/> C124.9,38.8,126.8,43.4,125,47.3z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<path fill="#818181" d="M137.9,36.3c-0.1-1.2-0.9-2.2-2-2.6c-1.1-0.4-2.4-0.1-3.2,0.7l-17.4,17.4l-19.3-6.1l-6.1-19.3l17.4-17.4 <path fill="#818181" d="M137.9,36.3c-0.1-1.2-0.9-2.2-2-2.6c-1.1-0.4-2.4-0.1-3.2,0.7l-17.4,17.4l-19.3-6.1l-6.1-19.3l17.4-17.4
c0.9-0.9,1.1-2.1,0.7-3.2c-0.4-1.1-1.4-1.9-2.6-2C94.7,2.7,84.3,6.5,76.8,14c-10.3,10.3-13,25.3-8.2,38c-0.5,0.4-1,0.9-1.6,1.4 c0.9-0.9,1.1-2.1,0.7-3.2c-0.4-1.1-1.4-1.9-2.6-2C94.7,2.7,84.3,6.5,76.8,14c-10.3,10.3-13,25.3-8.2,38c-0.5,0.4-1,0.9-1.6,1.4
L9,108.3c0,0,0,0-0.1,0.1c-6.8,6.8-6.8,18,0,24.8c6.8,6.8,17.9,6.8,24.7-0.1c0,0,0.1-0.1,0.1-0.1l54.4-58.6c0.5-0.5,1-1,1.4-1.6 L9,108.3c0,0,0,0-0.1,0.1c-6.8,6.8-6.8,18,0,24.8c6.8,6.8,17.9,6.8,24.7-0.1c0,0,0.1-0.1,0.1-0.1l54.4-58.6c0.5-0.5,1-1,1.4-1.6
c12.8,4.8,27.8,2.1,38-8.2C135,57.2,138.8,46.9,137.9,36.3z M24.9,125.8c-2.5,2.5-6.6,2.5-9.1,0c-2.5-2.5-2.5-6.6,0-9.1 c12.8,4.8,27.8,2.1,38-8.2C135,57.2,138.8,46.9,137.9,36.3z M24.9,125.8c-2.5,2.5-6.6,2.5-9.1,0c-2.5-2.5-2.5-6.6,0-9.1
c2.5-2.5,6.6-2.5,9.1,0C27.4,119.2,27.4,123.3,24.9,125.8z"/> c2.5-2.5,6.6-2.5,9.1,0C27.4,119.2,27.4,123.3,24.9,125.8z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 934 B

After

Width:  |  Height:  |  Size: 922 B

View File

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<path fill="#FFFFFF" d="M137.9,36.3c-0.1-1.2-0.9-2.2-2-2.6c-1.1-0.4-2.4-0.1-3.2,0.7l-17.4,17.4l-19.3-6.1l-6.1-19.3l17.4-17.4 <path fill="#FFFFFF" d="M137.9,36.3c-0.1-1.2-0.9-2.2-2-2.6c-1.1-0.4-2.4-0.1-3.2,0.7l-17.4,17.4l-19.3-6.1l-6.1-19.3l17.4-17.4
c0.9-0.9,1.1-2.1,0.7-3.2c-0.4-1.1-1.4-1.9-2.6-2C94.7,2.7,84.3,6.5,76.8,14c-10.3,10.3-13,25.3-8.2,38c-0.5,0.4-1,0.9-1.6,1.4 c0.9-0.9,1.1-2.1,0.7-3.2c-0.4-1.1-1.4-1.9-2.6-2C94.7,2.7,84.3,6.5,76.8,14c-10.3,10.3-13,25.3-8.2,38c-0.5,0.4-1,0.9-1.6,1.4
L9,108.3c0,0,0,0-0.1,0.1c-6.8,6.8-6.8,18,0,24.8c6.8,6.8,17.9,6.8,24.7-0.1c0,0,0.1-0.1,0.1-0.1l54.4-58.6c0.5-0.5,1-1,1.4-1.6 L9,108.3c0,0,0,0-0.1,0.1c-6.8,6.8-6.8,18,0,24.8c6.8,6.8,17.9,6.8,24.7-0.1c0,0,0.1-0.1,0.1-0.1l54.4-58.6c0.5-0.5,1-1,1.4-1.6
c12.8,4.8,27.8,2.1,38-8.2C135,57.2,138.8,46.9,137.9,36.3z M24.9,125.8c-2.5,2.5-6.6,2.5-9.1,0c-2.5-2.5-2.5-6.6,0-9.1 c12.8,4.8,27.8,2.1,38-8.2C135,57.2,138.8,46.9,137.9,36.3z M24.9,125.8c-2.5,2.5-6.6,2.5-9.1,0c-2.5-2.5-2.5-6.6,0-9.1
c2.5-2.5,6.6-2.5,9.1,0C27.4,119.2,27.4,123.3,24.9,125.8z"/> c2.5-2.5,6.6-2.5,9.1,0C27.4,119.2,27.4,123.3,24.9,125.8z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 934 B

After

Width:  |  Height:  |  Size: 922 B

View File

@ -1,27 +1,27 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="595.281px" height="841.891px" viewBox="0 0 595.281 841.891" enable-background="new 0 0 595.281 841.891" width="595.281px" height="841.891px" viewBox="0 0 595.281 841.891" enable-background="new 0 0 595.281 841.891"
xml:space="preserve"> xml:space="preserve">
<g> <g>
<path fill="#818181" d="M127.71,440.9c-7.142,41.59,6.722,84.439,36.549,114.267s72.677,43.69,114.267,36.549 <path fill="#818181" d="M127.71,440.9c-7.142,41.59,6.722,84.439,36.549,114.267s72.677,43.69,114.267,36.549
c11.763-2.101,19.745-13.443,18.064-25.206c-0.84-4.621-2.94-8.822-5.881-11.763c-4.621-4.621-11.763-7.142-18.904-6.302 c11.763-2.101,19.745-13.443,18.064-25.206c-0.84-4.621-2.94-8.822-5.881-11.763c-4.621-4.621-11.763-7.142-18.904-6.302
c-27.727,4.621-56.293-4.621-76.458-24.365c-20.165-19.745-28.987-47.892-24.366-76.038c2.1-11.763-5.881-23.105-18.064-25.206 c-27.727,4.621-56.293-4.621-76.458-24.365c-20.165-19.745-28.987-47.892-24.366-76.038c2.1-11.763-5.881-23.105-18.064-25.206
C140.733,420.735,129.811,429.137,127.71,440.9"/> C140.733,420.735,129.811,429.137,127.71,440.9"/>
<path fill="#818181" d="M289.028,652.21c-0.42-5.461-2.521-10.502-6.302-14.283c-4.201-4.201-10.083-6.722-16.804-6.302 <path fill="#818181" d="M289.028,652.21c-0.42-5.461-2.521-10.502-6.302-14.283c-4.201-4.201-10.083-6.722-16.804-6.302
c-47.892,2.521-94.942-15.543-128.971-49.151c-34.028-33.607-51.672-81.079-48.731-128.971c0.84-12.183-8.402-22.265-20.585-23.105 c-47.892,2.521-94.942-15.543-128.971-49.151c-34.028-33.607-51.672-81.079-48.731-128.971c0.84-12.183-8.402-22.265-20.585-23.105
c-12.183-0.84-22.265,8.402-23.105,20.585c-3.36,60.494,19.325,119.309,62.175,162.158c42.85,42.851,101.664,65.115,162.158,62.175 c-12.183-0.84-22.265,8.402-23.105,20.585c-3.36,60.494,19.325,119.309,62.175,162.158c42.85,42.851,101.664,65.115,162.158,62.175
C280.626,674.895,289.868,664.392,289.028,652.21"/> C280.626,674.895,289.868,664.392,289.028,652.21"/>
</g> </g>
<g> <g>
<path fill="#818181" d="M480.616,308.596c-10.826,0-19.984,13.633-23.733,32.085h-97.416v32.084h97.416 <path fill="#818181" d="M480.616,308.596c-10.826,0-19.984,13.633-23.733,32.085h-97.416v32.084h97.416
c3.332,18.451,12.491,32.088,23.733,32.088c13.735,0,24.977-21.659,24.977-48.131C505.592,330.255,494.351,308.596,480.616,308.596 c3.332,18.451,12.491,32.088,23.733,32.088c13.735,0,24.977-21.659,24.977-48.131C505.592,330.255,494.351,308.596,480.616,308.596
z"/> z"/>
<path fill="#818181" d="M297.853,252.445c-29.975,0-55.369,36.899-64.945,88.236h-91.171 <path fill="#818181" d="M297.853,252.445c-29.975,0-55.369,36.899-64.945,88.236h-91.171
c-3.331-18.452-12.491-32.085-23.729-32.085c-13.739,0-24.979,21.658-24.979,48.126c0,26.472,11.24,48.131,24.979,48.131 c-3.331-18.452-12.491-32.085-23.729-32.085c-13.739,0-24.979,21.658-24.979,48.126c0,26.472,11.24,48.131,24.979,48.131
c10.822,0,19.982-13.637,23.729-32.088h87.426h132.386h4.995C363.631,304.584,334.073,252.445,297.853,252.445z"/> c10.822,0,19.982-13.637,23.729-32.088h87.426h132.386h4.995C363.631,304.584,334.073,252.445,297.853,252.445z"/>
<rect x="21.007" y="280.52" fill="#818181" width="191.502" height="23.262"/> <rect x="21.007" y="280.52" fill="#818181" width="191.502" height="23.262"/>
<rect x="381.115" y="280.52" fill="#818181" width="191.504" height="23.262"/> <rect x="381.115" y="280.52" fill="#818181" width="191.504" height="23.262"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -1,27 +1,27 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="595.281px" height="841.891px" viewBox="0 0 595.281 841.891" enable-background="new 0 0 595.281 841.891" width="595.281px" height="841.891px" viewBox="0 0 595.281 841.891" enable-background="new 0 0 595.281 841.891"
xml:space="preserve"> xml:space="preserve">
<g> <g>
<path fill="#FFFFFF" d="M127.71,440.9c-7.142,41.59,6.722,84.439,36.549,114.267s72.677,43.69,114.267,36.549 <path fill="#FFFFFF" d="M127.71,440.9c-7.142,41.59,6.722,84.439,36.549,114.267s72.677,43.69,114.267,36.549
c11.763-2.101,19.745-13.443,18.064-25.206c-0.84-4.621-2.94-8.822-5.881-11.763c-4.621-4.621-11.763-7.142-18.904-6.302 c11.763-2.101,19.745-13.443,18.064-25.206c-0.84-4.621-2.94-8.822-5.881-11.763c-4.621-4.621-11.763-7.142-18.904-6.302
c-27.727,4.621-56.293-4.621-76.458-24.365c-20.165-19.745-28.987-47.892-24.366-76.038c2.1-11.763-5.881-23.105-18.064-25.206 c-27.727,4.621-56.293-4.621-76.458-24.365c-20.165-19.745-28.987-47.892-24.366-76.038c2.1-11.763-5.881-23.105-18.064-25.206
C140.733,420.735,129.811,429.137,127.71,440.9"/> C140.733,420.735,129.811,429.137,127.71,440.9"/>
<path fill="#FFFFFF" d="M289.028,652.21c-0.42-5.461-2.521-10.502-6.302-14.283c-4.201-4.201-10.083-6.722-16.804-6.302 <path fill="#FFFFFF" d="M289.028,652.21c-0.42-5.461-2.521-10.502-6.302-14.283c-4.201-4.201-10.083-6.722-16.804-6.302
c-47.892,2.521-94.942-15.543-128.971-49.151c-34.028-33.607-51.672-81.079-48.731-128.971c0.84-12.183-8.402-22.265-20.585-23.105 c-47.892,2.521-94.942-15.543-128.971-49.151c-34.028-33.607-51.672-81.079-48.731-128.971c0.84-12.183-8.402-22.265-20.585-23.105
c-12.183-0.84-22.265,8.402-23.105,20.585c-3.36,60.494,19.325,119.309,62.175,162.158c42.85,42.851,101.664,65.115,162.158,62.175 c-12.183-0.84-22.265,8.402-23.105,20.585c-3.36,60.494,19.325,119.309,62.175,162.158c42.85,42.851,101.664,65.115,162.158,62.175
C280.626,674.895,289.868,664.392,289.028,652.21"/> C280.626,674.895,289.868,664.392,289.028,652.21"/>
</g> </g>
<g> <g>
<path fill="#FFFFFF" d="M480.616,308.596c-10.826,0-19.984,13.633-23.733,32.085h-97.416v32.084h97.416 <path fill="#FFFFFF" d="M480.616,308.596c-10.826,0-19.984,13.633-23.733,32.085h-97.416v32.084h97.416
c3.332,18.451,12.491,32.088,23.733,32.088c13.735,0,24.977-21.659,24.977-48.131C505.592,330.255,494.351,308.596,480.616,308.596 c3.332,18.451,12.491,32.088,23.733,32.088c13.735,0,24.977-21.659,24.977-48.131C505.592,330.255,494.351,308.596,480.616,308.596
z"/> z"/>
<path fill="#FFFFFF" d="M297.853,252.445c-29.975,0-55.369,36.899-64.945,88.236h-91.171 <path fill="#FFFFFF" d="M297.853,252.445c-29.975,0-55.369,36.899-64.945,88.236h-91.171
c-3.331-18.452-12.491-32.085-23.729-32.085c-13.739,0-24.979,21.658-24.979,48.126c0,26.472,11.24,48.131,24.979,48.131 c-3.331-18.452-12.491-32.085-23.729-32.085c-13.739,0-24.979,21.658-24.979,48.126c0,26.472,11.24,48.131,24.979,48.131
c10.822,0,19.982-13.637,23.729-32.088h87.426h132.386h4.995C363.631,304.584,334.073,252.445,297.853,252.445z"/> c10.822,0,19.982-13.637,23.729-32.088h87.426h132.386h4.995C363.631,304.584,334.073,252.445,297.853,252.445z"/>
<rect x="21.007" y="280.52" fill="#FFFFFF" width="191.502" height="23.262"/> <rect x="21.007" y="280.52" fill="#FFFFFF" width="191.502" height="23.262"/>
<rect x="381.115" y="280.52" fill="#FFFFFF" width="191.504" height="23.262"/> <rect x="381.115" y="280.52" fill="#FFFFFF" width="191.504" height="23.262"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -1,15 +1,15 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<g> <g>
<path fill="#FFFFFF" d="M59.1,20.5h9v6.8h-9V20.5z M72.5,27.3h9v-6.8h-9V27.3z M89.4,40h9.2v39.5h-0.1c0,0.7,0.1,1.5,0.1,2.3 <path fill="#FFFFFF" d="M59.1,20.5h9v6.8h-9V20.5z M72.5,27.3h9v-6.8h-9V27.3z M89.4,40h9.2v39.5h-0.1c0,0.7,0.1,1.5,0.1,2.3
c0,18.3-12.5,28.6-27.9,28.6s-27.8-10.4-27.8-28.6c0-0.7,0.1-1.5,0.1-2.3h-0.1V40H52V12.1h37.4V40z M56.5,40h28.5V16.5H56.5V40z c0,18.3-12.5,28.6-27.9,28.6s-27.8-10.4-27.8-28.6c0-0.7,0.1-1.5,0.1-2.3h-0.1V40H52V12.1h37.4V40z M56.5,40h28.5V16.5H56.5V40z
M77.5,74l9.8-9.8c0.7-0.7,0.7-1.8,0-2.5l-3.4-3.4c-0.7-0.7-1.8-0.7-2.5,0l-9.8,9.8l-9.9-9.9c-0.7-0.7-1.8-0.7-2.5,0l-3.4,3.4 M77.5,74l9.8-9.8c0.7-0.7,0.7-1.8,0-2.5l-3.4-3.4c-0.7-0.7-1.8-0.7-2.5,0l-9.8,9.8l-9.9-9.9c-0.7-0.7-1.8-0.7-2.5,0l-3.4,3.4
c-0.7,0.7-0.7,1.8,0,2.5l9.8,9.9l-9.8,9.8c-0.7,0.7-0.7,1.8,0,2.5l3.4,3.4c0.7,0.7,1.8,0.7,2.5,0l9.8-9.8l9.8,9.8 c-0.7,0.7-0.7,1.8,0,2.5l9.8,9.9l-9.8,9.8c-0.7,0.7-0.7,1.8,0,2.5l3.4,3.4c0.7,0.7,1.8,0.7,2.5,0l9.8-9.8l9.8,9.8
c0.7,0.7,1.8,0.7,2.5,0l3.4-3.4c0.7-0.7,0.7-1.8,0-2.5L77.5,74z"/> c0.7,0.7,1.8,0.7,2.5,0l3.4-3.4c0.7-0.7,0.7-1.8,0-2.5L77.5,74z"/>
</g> </g>
<rect x="66.2" y="104.9" fill="#FFFFFF" width="9" height="36.8"/> <rect x="66.2" y="104.9" fill="#FFFFFF" width="9" height="36.8"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1015 B

After

Width:  |  Height:  |  Size: 1000 B

View File

@ -1,13 +1,13 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<g> <g>
<path fill="#FFFFFF" d="M59.1,21.5h9v6.8h-9V21.5z M72.5,28.3h9v-6.8h-9V28.3z M89.4,41h9.2v39.5h-0.1c0,0.7,0.1,1.5,0.1,2.3 <path fill="#FFFFFF" d="M59.1,21.5h9v6.8h-9V21.5z M72.5,28.3h9v-6.8h-9V28.3z M89.4,41h9.2v39.5h-0.1c0,0.7,0.1,1.5,0.1,2.3
c0,18.3-12.5,28.6-27.9,28.6s-27.8-10.4-27.8-28.6c0-0.7,0.1-1.5,0.1-2.3h-0.1V41H52V13.1h37.4V41z M56.5,41h28.5V17.5H56.5V41z" c0,18.3-12.5,28.6-27.9,28.6s-27.8-10.4-27.8-28.6c0-0.7,0.1-1.5,0.1-2.3h-0.1V41H52V13.1h37.4V41z M56.5,41h28.5V17.5H56.5V41z"
/> />
</g> </g>
<rect x="66.2" y="105.9" fill="#FFFFFF" width="9" height="36.8"/> <rect x="66.2" y="105.9" fill="#FFFFFF" width="9" height="36.8"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 714 B

After

Width:  |  Height:  |  Size: 701 B

View File

@ -1,22 +1,22 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="-70 0 141.7 141.7" style="enable-background:new -70 0 141.7 141.7;" xml:space="preserve"> viewBox="-70 0 141.7 141.7" style="enable-background:new -70 0 141.7 141.7;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#818181;} .st0{fill:#818181;}
</style> </style>
<g> <g>
<path class="st0" d="M-52.5,63.5c0.1-12.6,5-24.4,14-33.2c2.7-2.7,2.7-7.1,0-9.8c-2.7-2.7-7.1-2.7-9.8,0 <path class="st0" d="M-52.5,63.5c0.1-12.6,5-24.4,14-33.2c2.7-2.7,2.7-7.1,0-9.8c-2.7-2.7-7.1-2.7-9.8,0
c-11.6,11.5-18,26.7-18.1,43c-0.1,16.3,6.2,31.6,17.6,43.2c1.4,1.4,3.1,2.1,4.9,2.1c1.8,0,3.5-0.7,4.9-2c2.7-2.7,2.7-7.1,0-9.8 c-11.6,11.5-18,26.7-18.1,43c-0.1,16.3,6.2,31.6,17.6,43.2c1.4,1.4,3.1,2.1,4.9,2.1c1.8,0,3.5-0.7,4.9-2c2.7-2.7,2.7-7.1,0-9.8
C-47.8,88-52.6,76.1-52.5,63.5z"/> C-47.8,88-52.6,76.1-52.5,63.5z"/>
<path class="st0" d="M-17.9,34.9c-2.7-2.7-7.1-2.7-9.8,0c-7.8,7.7-12.1,18-12.2,28.9c-0.1,11,4.2,21.3,11.9,29.1 <path class="st0" d="M-17.9,34.9c-2.7-2.7-7.1-2.7-9.8,0c-7.8,7.7-12.1,18-12.2,28.9c-0.1,11,4.2,21.3,11.9,29.1
c1.4,1.4,3.1,2.1,4.9,2.1c1.8,0,3.5-0.7,4.9-2c2.7-2.7,2.7-7.1,0-9.8c-5.1-5.1-7.9-12-7.8-19.2c0-7.2,2.9-14,8-19.1 c1.4,1.4,3.1,2.1,4.9,2.1c1.8,0,3.5-0.7,4.9-2c2.7-2.7,2.7-7.1,0-9.8c-5.1-5.1-7.9-12-7.8-19.2c0-7.2,2.9-14,8-19.1
C-15.2,42-15.2,37.6-17.9,34.9z"/> C-15.2,42-15.2,37.6-17.9,34.9z"/>
<path class="st0" d="M49.5,20.5c-2.7-2.7-7.1-2.7-9.8,0c-2.7,2.7-2.7,7.1,0,9.8c8.8,8.9,13.7,20.8,13.6,33.4 <path class="st0" d="M49.5,20.5c-2.7-2.7-7.1-2.7-9.8,0c-2.7,2.7-2.7,7.1,0,9.8c8.8,8.9,13.7,20.8,13.6,33.4
c-0.1,12.6-5,24.4-14,33.2c-2.7,2.7-2.7,7.1,0,9.8c1.4,1.4,3.2,2.1,4.9,2.1c1.8,0,3.5-0.7,4.9-2C72.9,83.1,73.1,44.4,49.5,20.5z"/> c-0.1,12.6-5,24.4-14,33.2c-2.7,2.7-2.7,7.1,0,9.8c1.4,1.4,3.2,2.1,4.9,2.1c1.8,0,3.5-0.7,4.9-2C72.9,83.1,73.1,44.4,49.5,20.5z"/>
<path class="st0" d="M28.7,34.7c-2.7-2.7-7.1-2.8-9.8,0c-2.7,2.7-2.7,7.1,0,9.8c5.1,5.1,7.9,12,7.9,19.2c0,7.2-2.9,14-8,19.1 <path class="st0" d="M28.7,34.7c-2.7-2.7-7.1-2.8-9.8,0c-2.7,2.7-2.7,7.1,0,9.8c5.1,5.1,7.9,12,7.9,19.2c0,7.2-2.9,14-8,19.1
c-2.7,2.7-2.7,7.1,0,9.8c1.4,1.4,3.1,2.1,4.9,2.1c1.8,0,3.5-0.7,4.9-2C44.5,76.8,44.6,50.8,28.7,34.7z"/> c-2.7,2.7-2.7,7.1,0,9.8c1.4,1.4,3.1,2.1,4.9,2.1c1.8,0,3.5-0.7,4.9-2C44.5,76.8,44.6,50.8,28.7,34.7z"/>
<path class="st0" d="M0.6,50.2l-0.2,0c-3.6,0-7,1.4-9.5,4c-2.5,2.5-3.9,5.9-3.9,9.4c0,5.1,3,9.5,7.3,11.8v50.2H6.3V75.7 <path class="st0" d="M0.6,50.2l-0.2,0c-3.6,0-7,1.4-9.5,4c-2.5,2.5-3.9,5.9-3.9,9.4c0,5.1,3,9.5,7.3,11.8v50.2H6.3V75.7
c1.4-0.6,2.6-1.5,3.7-2.6c2.5-2.5,3.9-5.9,3.9-9.5C13.9,56.2,8.1,50.3,0.6,50.2z"/> c1.4-0.6,2.6-1.5,3.7-2.6c2.5-2.5,3.9-5.9,3.9-9.5C13.9,56.2,8.1,50.3,0.6,50.2z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1,22 +1,22 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="-70 0 141.7 141.7" style="enable-background:new -70 0 141.7 141.7;" xml:space="preserve"> viewBox="-70 0 141.7 141.7" style="enable-background:new -70 0 141.7 141.7;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#FFFFFF;} .st0{fill:#FFFFFF;}
</style> </style>
<g> <g>
<path class="st0" d="M-52.5,63.5c0.1-12.6,5-24.4,14-33.2c2.7-2.7,2.7-7.1,0-9.8c-2.7-2.7-7.1-2.7-9.8,0 <path class="st0" d="M-52.5,63.5c0.1-12.6,5-24.4,14-33.2c2.7-2.7,2.7-7.1,0-9.8c-2.7-2.7-7.1-2.7-9.8,0
c-11.6,11.5-18,26.7-18.1,43c-0.1,16.3,6.2,31.6,17.6,43.2c1.4,1.4,3.1,2.1,4.9,2.1c1.8,0,3.5-0.7,4.9-2c2.7-2.7,2.7-7.1,0-9.8 c-11.6,11.5-18,26.7-18.1,43c-0.1,16.3,6.2,31.6,17.6,43.2c1.4,1.4,3.1,2.1,4.9,2.1c1.8,0,3.5-0.7,4.9-2c2.7-2.7,2.7-7.1,0-9.8
C-47.8,88-52.6,76.1-52.5,63.5z"/> C-47.8,88-52.6,76.1-52.5,63.5z"/>
<path class="st0" d="M-17.9,34.9c-2.7-2.7-7.1-2.7-9.8,0c-7.8,7.7-12.1,18-12.2,28.9c-0.1,11,4.2,21.3,11.9,29.1 <path class="st0" d="M-17.9,34.9c-2.7-2.7-7.1-2.7-9.8,0c-7.8,7.7-12.1,18-12.2,28.9c-0.1,11,4.2,21.3,11.9,29.1
c1.4,1.4,3.1,2.1,4.9,2.1c1.8,0,3.5-0.7,4.9-2c2.7-2.7,2.7-7.1,0-9.8c-5.1-5.1-7.9-12-7.8-19.2c0-7.2,2.9-14,8-19.1 c1.4,1.4,3.1,2.1,4.9,2.1c1.8,0,3.5-0.7,4.9-2c2.7-2.7,2.7-7.1,0-9.8c-5.1-5.1-7.9-12-7.8-19.2c0-7.2,2.9-14,8-19.1
C-15.2,42-15.2,37.6-17.9,34.9z"/> C-15.2,42-15.2,37.6-17.9,34.9z"/>
<path class="st0" d="M49.5,20.5c-2.7-2.7-7.1-2.7-9.8,0c-2.7,2.7-2.7,7.1,0,9.8c8.8,8.9,13.7,20.8,13.6,33.4 <path class="st0" d="M49.5,20.5c-2.7-2.7-7.1-2.7-9.8,0c-2.7,2.7-2.7,7.1,0,9.8c8.8,8.9,13.7,20.8,13.6,33.4
c-0.1,12.6-5,24.4-14,33.2c-2.7,2.7-2.7,7.1,0,9.8c1.4,1.4,3.2,2.1,4.9,2.1c1.8,0,3.5-0.7,4.9-2C72.9,83.1,73.1,44.4,49.5,20.5z"/> c-0.1,12.6-5,24.4-14,33.2c-2.7,2.7-2.7,7.1,0,9.8c1.4,1.4,3.2,2.1,4.9,2.1c1.8,0,3.5-0.7,4.9-2C72.9,83.1,73.1,44.4,49.5,20.5z"/>
<path class="st0" d="M28.7,34.7c-2.7-2.7-7.1-2.8-9.8,0c-2.7,2.7-2.7,7.1,0,9.8c5.1,5.1,7.9,12,7.9,19.2c0,7.2-2.9,14-8,19.1 <path class="st0" d="M28.7,34.7c-2.7-2.7-7.1-2.8-9.8,0c-2.7,2.7-2.7,7.1,0,9.8c5.1,5.1,7.9,12,7.9,19.2c0,7.2-2.9,14-8,19.1
c-2.7,2.7-2.7,7.1,0,9.8c1.4,1.4,3.1,2.1,4.9,2.1c1.8,0,3.5-0.7,4.9-2C44.5,76.8,44.6,50.8,28.7,34.7z"/> c-2.7,2.7-2.7,7.1,0,9.8c1.4,1.4,3.1,2.1,4.9,2.1c1.8,0,3.5-0.7,4.9-2C44.5,76.8,44.6,50.8,28.7,34.7z"/>
<path class="st0" d="M0.6,50.2l-0.2,0c-3.6,0-7,1.4-9.5,4c-2.5,2.5-3.9,5.9-3.9,9.4c0,5.1,3,9.5,7.3,11.8v50.2H6.3V75.7 <path class="st0" d="M0.6,50.2l-0.2,0c-3.6,0-7,1.4-9.5,4c-2.5,2.5-3.9,5.9-3.9,9.4c0,5.1,3,9.5,7.3,11.8v50.2H6.3V75.7
c1.4-0.6,2.6-1.5,3.7-2.6c2.5-2.5,3.9-5.9,3.9-9.5C13.9,56.2,8.1,50.3,0.6,50.2z"/> c1.4-0.6,2.6-1.5,3.7-2.6c2.5-2.5,3.9-5.9,3.9-9.5C13.9,56.2,8.1,50.3,0.6,50.2z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1,22 +1,22 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="-70 0 141.7 141.7" style="enable-background:new -70 0 141.7 141.7;" xml:space="preserve"> viewBox="-70 0 141.7 141.7" style="enable-background:new -70 0 141.7 141.7;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#818181;} .st0{fill:#818181;}
</style> </style>
<g> <g>
<path class="st0" d="M8.4,34.1c0,0,16.2,7.3,21.5,13.4c0,0-5.9-0.2-8.1,3.3c-2.6,3.8-1.3,11.4,6.8,17.1s17.7,6.3,22.5,6.6 <path class="st0" d="M8.4,34.1c0,0,16.2,7.3,21.5,13.4c0,0-5.9-0.2-8.1,3.3c-2.6,3.8-1.3,11.4,6.8,17.1s17.7,6.3,22.5,6.6
c4.8,0.2,9.6,1.3,10.6,3.5C61.4,78.1,62.9,51.6,8.4,34.1z M38.7,61.1c-1-4,2.2-5.5,6.6-3.8c4,1.8,10.6,12.1,10.6,12.1 c4.8,0.2,9.6,1.3,10.6,3.5C61.4,78.1,62.9,51.6,8.4,34.1z M38.7,61.1c-1-4,2.2-5.5,6.6-3.8c4,1.8,10.6,12.1,10.6,12.1
C50.6,68.7,39.9,65.2,38.7,61.1z"/> C50.6,68.7,39.9,65.2,38.7,61.1z"/>
<path class="st0" d="M-68.6,10.4l9,19.7l-8.6-3l2.6,4.8c0,0,3.5,6.8,11.9,21.5c6.6,11.4,18.2,17.1,33.8,16.4c0.5,0,1.3,0,2,0 <path class="st0" d="M-68.6,10.4l9,19.7l-8.6-3l2.6,4.8c0,0,3.5,6.8,11.9,21.5c6.6,11.4,18.2,17.1,33.8,16.4c0.5,0,1.3,0,2,0
c9.6-0.5,31.6-3,32.6-3h0.2l10.3-4L-68.6,10.4z M-20.1,65.5c-5.5,0.2-10.6-0.5-14.9-2c-6.3-2.2-11.4-6.3-14.9-12.3 c9.6-0.5,31.6-3,32.6-3h0.2l10.3-4L-68.6,10.4z M-20.1,65.5c-5.5,0.2-10.6-0.5-14.9-2c-6.3-2.2-11.4-6.3-14.9-12.3
c-4.3-7.6-7.3-12.9-9-16.4l7.9,2.8L-59,20.8l74.2,40.9l-1.3,0.5c-0.5,0-1.8,0.2-3.8,0.5l-50-20.2L-2.2,64 c-4.3-7.6-7.3-12.9-9-16.4l7.9,2.8L-59,20.8l74.2,40.9l-1.3,0.5c-0.5,0-1.8,0.2-3.8,0.5l-50-20.2L-2.2,64
C-9,64.4-16.4,65.2-20.1,65.5z"/> C-9,64.4-16.4,65.2-20.1,65.5z"/>
<path class="st0" d="M24.8,59.4c0,0-31.6-8.3-26.8,16.4c3.1,16.2,21.3,6.8,27.9,0.7C32.4,70.5,27,60.2,24.8,59.4z"/> <path class="st0" d="M24.8,59.4c0,0-31.6-8.3-26.8,16.4c3.1,16.2,21.3,6.8,27.9,0.7C32.4,70.5,27,60.2,24.8,59.4z"/>
<path class="st0" d="M41.5,96.8c-14.2-6.1-22.8-16-33.6-15.2C1.3,82.1-5.7,87.6-8.5,95c4,3.3,10.1,5.5,19.7,2c0,0-6.6,8.1-20.4,7.3 <path class="st0" d="M41.5,96.8c-14.2-6.1-22.8-16-33.6-15.2C1.3,82.1-5.7,87.6-8.5,95c4,3.3,10.1,5.5,19.7,2c0,0-6.6,8.1-20.4,7.3
c0.2,1.8,1,3.3,1.8,5c1.3,2,3,4,5,5.5c5.9-0.7,13.9-3.5,21.7-12.1c0,0-0.7,9-7.9,17.1c3.8,0.5,7.9,0.5,12.1,0.2 c0.2,1.8,1,3.3,1.8,5c1.3,2,3,4,5,5.5c5.9-0.7,13.9-3.5,21.7-12.1c0,0-0.7,9-7.9,17.1c3.8,0.5,7.9,0.5,12.1,0.2
c3.3-1.8,7.9-5,7.9-10.9c0,0,1.5,4.6-0.7,9.9c6.6-1.3,13.4-3.8,19.9-7.6C65.2,103,70,93.2,70,93.2S55.9,102.5,41.5,96.8z c3.3-1.8,7.9-5,7.9-10.9c0,0,1.5,4.6-0.7,9.9c6.6-1.3,13.4-3.8,19.9-7.6C65.2,103,70,93.2,70,93.2S55.9,102.5,41.5,96.8z
M51.8,107.3c-0.7-2-1-6.1-1-6.1c4.6,0.5,10.1-1.5,10.1-1.5C57.2,104.6,51.8,107.3,51.8,107.3z"/> M51.8,107.3c-0.7-2-1-6.1-1-6.1c4.6,0.5,10.1-1.5,10.1-1.5C57.2,104.6,51.8,107.3,51.8,107.3z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1,22 +1,22 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="-70 0 141.7 141.7" style="enable-background:new -70 0 141.7 141.7;" xml:space="preserve"> viewBox="-70 0 141.7 141.7" style="enable-background:new -70 0 141.7 141.7;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#FFFFFF;} .st0{fill:#FFFFFF;}
</style> </style>
<g> <g>
<path class="st0" d="M8.4,34.1c0,0,16.2,7.3,21.5,13.4c0,0-5.9-0.2-8.1,3.3c-2.6,3.8-1.3,11.4,6.8,17.1s17.7,6.3,22.5,6.6 <path class="st0" d="M8.4,34.1c0,0,16.2,7.3,21.5,13.4c0,0-5.9-0.2-8.1,3.3c-2.6,3.8-1.3,11.4,6.8,17.1s17.7,6.3,22.5,6.6
c4.8,0.2,9.6,1.3,10.6,3.5C61.4,78.1,62.9,51.6,8.4,34.1z M38.7,61.1c-1-4,2.2-5.5,6.6-3.8c4,1.8,10.6,12.1,10.6,12.1 c4.8,0.2,9.6,1.3,10.6,3.5C61.4,78.1,62.9,51.6,8.4,34.1z M38.7,61.1c-1-4,2.2-5.5,6.6-3.8c4,1.8,10.6,12.1,10.6,12.1
C50.6,68.7,39.9,65.2,38.7,61.1z"/> C50.6,68.7,39.9,65.2,38.7,61.1z"/>
<path class="st0" d="M-68.6,10.4l9,19.7l-8.6-3l2.6,4.8c0,0,3.5,6.8,11.9,21.5c6.6,11.4,18.2,17.1,33.8,16.4c0.5,0,1.3,0,2,0 <path class="st0" d="M-68.6,10.4l9,19.7l-8.6-3l2.6,4.8c0,0,3.5,6.8,11.9,21.5c6.6,11.4,18.2,17.1,33.8,16.4c0.5,0,1.3,0,2,0
c9.6-0.5,31.6-3,32.6-3h0.2l10.3-4L-68.6,10.4z M-20.1,65.5c-5.5,0.2-10.6-0.5-14.9-2c-6.3-2.2-11.4-6.3-14.9-12.3 c9.6-0.5,31.6-3,32.6-3h0.2l10.3-4L-68.6,10.4z M-20.1,65.5c-5.5,0.2-10.6-0.5-14.9-2c-6.3-2.2-11.4-6.3-14.9-12.3
c-4.3-7.6-7.3-12.9-9-16.4l7.9,2.8L-59,20.8l74.2,40.9l-1.3,0.5c-0.5,0-1.8,0.2-3.8,0.5l-50-20.2L-2.2,64 c-4.3-7.6-7.3-12.9-9-16.4l7.9,2.8L-59,20.8l74.2,40.9l-1.3,0.5c-0.5,0-1.8,0.2-3.8,0.5l-50-20.2L-2.2,64
C-9,64.4-16.4,65.2-20.1,65.5z"/> C-9,64.4-16.4,65.2-20.1,65.5z"/>
<path class="st0" d="M24.8,59.4c0,0-31.6-8.3-26.8,16.4c3.1,16.2,21.3,6.8,27.9,0.7C32.4,70.5,27,60.2,24.8,59.4z"/> <path class="st0" d="M24.8,59.4c0,0-31.6-8.3-26.8,16.4c3.1,16.2,21.3,6.8,27.9,0.7C32.4,70.5,27,60.2,24.8,59.4z"/>
<path class="st0" d="M41.5,96.8c-14.2-6.1-22.8-16-33.6-15.2C1.3,82.1-5.7,87.6-8.5,95c4,3.3,10.1,5.5,19.7,2c0,0-6.6,8.1-20.4,7.3 <path class="st0" d="M41.5,96.8c-14.2-6.1-22.8-16-33.6-15.2C1.3,82.1-5.7,87.6-8.5,95c4,3.3,10.1,5.5,19.7,2c0,0-6.6,8.1-20.4,7.3
c0.2,1.8,1,3.3,1.8,5c1.3,2,3,4,5,5.5c5.9-0.7,13.9-3.5,21.7-12.1c0,0-0.7,9-7.9,17.1c3.8,0.5,7.9,0.5,12.1,0.2 c0.2,1.8,1,3.3,1.8,5c1.3,2,3,4,5,5.5c5.9-0.7,13.9-3.5,21.7-12.1c0,0-0.7,9-7.9,17.1c3.8,0.5,7.9,0.5,12.1,0.2
c3.3-1.8,7.9-5,7.9-10.9c0,0,1.5,4.6-0.7,9.9c6.6-1.3,13.4-3.8,19.9-7.6C65.2,103,70,93.2,70,93.2S55.9,102.5,41.5,96.8z c3.3-1.8,7.9-5,7.9-10.9c0,0,1.5,4.6-0.7,9.9c6.6-1.3,13.4-3.8,19.9-7.6C65.2,103,70,93.2,70,93.2S55.9,102.5,41.5,96.8z
M51.8,107.3c-0.7-2-1-6.1-1-6.1c4.6,0.5,10.1-1.5,10.1-1.5C57.2,104.6,51.8,107.3,51.8,107.3z"/> M51.8,107.3c-0.7-2-1-6.1-1-6.1c4.6,0.5,10.1-1.5,10.1-1.5C57.2,104.6,51.8,107.3,51.8,107.3z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<path fill="#818181" d="M35.8,27.4L18.9,10.5h-8.5v8.5l16.9,16.9L35.8,27.4z M44.3,2h8.5v16.9h-8.5L44.3,2L44.3,2z M78.1,44.3H95 <path fill="#818181" d="M35.8,27.4L18.9,10.5h-8.5v8.5l16.9,16.9L35.8,27.4z M44.3,2h8.5v16.9h-8.5L44.3,2L44.3,2z M78.1,44.3H95
v8.5H78.1V44.3z M86.6,18.9v-8.5h-8.5L61.2,27.4l8.5,8.5L86.6,18.9z M2,44.3h16.9v8.5H2V44.3z M44.3,78.1h8.5V95h-8.5L44.3,78.1 v8.5H78.1V44.3z M86.6,18.9v-8.5h-8.5L61.2,27.4l8.5,8.5L86.6,18.9z M2,44.3h16.9v8.5H2V44.3z M44.3,78.1h8.5V95h-8.5L44.3,78.1
L44.3,78.1z M10.5,78.1v8.5h8.5l16.9-16.9l-8.5-8.5L10.5,78.1z M135.5,118.6L51.4,34.5c-2.5-2.5-6.5-2.5-9,0l-7.9,7.9 L44.3,78.1z M10.5,78.1v8.5h8.5l16.9-16.9l-8.5-8.5L10.5,78.1z M135.5,118.6L51.4,34.5c-2.5-2.5-6.5-2.5-9,0l-7.9,7.9
c-2.5,2.5-2.5,6.5,0,9l84.1,84.1c2.5,2.5,6.5,2.5,9,0l7.9-7.9C138,125.1,138,121,135.5,118.6z M65.4,73.9L40.1,48.5l8.5-8.5 c-2.5,2.5-2.5,6.5,0,9l84.1,84.1c2.5,2.5,6.5,2.5,9,0l7.9-7.9C138,125.1,138,121,135.5,118.6z M65.4,73.9L40.1,48.5l8.5-8.5
l25.4,25.4L65.4,73.9z"/> l25.4,25.4L65.4,73.9z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 895 B

After

Width:  |  Height:  |  Size: 883 B

View File

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<path fill="#FFFFFF" d="M35.8,27.4L18.9,10.5h-8.5v8.5l16.9,16.9L35.8,27.4z M44.3,2h8.5v16.9h-8.5L44.3,2L44.3,2z M78.1,44.3H95 <path fill="#FFFFFF" d="M35.8,27.4L18.9,10.5h-8.5v8.5l16.9,16.9L35.8,27.4z M44.3,2h8.5v16.9h-8.5L44.3,2L44.3,2z M78.1,44.3H95
v8.5H78.1V44.3z M86.6,18.9v-8.5h-8.5L61.2,27.4l8.5,8.5L86.6,18.9z M2,44.3h16.9v8.5H2V44.3z M44.3,78.1h8.5V95h-8.5L44.3,78.1 v8.5H78.1V44.3z M86.6,18.9v-8.5h-8.5L61.2,27.4l8.5,8.5L86.6,18.9z M2,44.3h16.9v8.5H2V44.3z M44.3,78.1h8.5V95h-8.5L44.3,78.1
L44.3,78.1z M10.5,78.1v8.5h8.5l16.9-16.9l-8.5-8.5L10.5,78.1z M135.5,118.6L51.4,34.5c-2.5-2.5-6.5-2.5-9,0l-7.9,7.9 L44.3,78.1z M10.5,78.1v8.5h8.5l16.9-16.9l-8.5-8.5L10.5,78.1z M135.5,118.6L51.4,34.5c-2.5-2.5-6.5-2.5-9,0l-7.9,7.9
c-2.5,2.5-2.5,6.5,0,9l84.1,84.1c2.5,2.5,6.5,2.5,9,0l7.9-7.9C138,125.1,138,121,135.5,118.6z M65.4,73.9L40.1,48.5l8.5-8.5 c-2.5,2.5-2.5,6.5,0,9l84.1,84.1c2.5,2.5,6.5,2.5,9,0l7.9-7.9C138,125.1,138,121,135.5,118.6z M65.4,73.9L40.1,48.5l8.5-8.5
l25.4,25.4L65.4,73.9z"/> l25.4,25.4L65.4,73.9z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 895 B

After

Width:  |  Height:  |  Size: 883 B

View File

@ -1,18 +1,18 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 85 85" style="enable-background:new 0 0 85 85;" xml:space="preserve"> viewBox="0 0 85 85" style="enable-background:new 0 0 85 85;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#707173;} .st0{fill:#707173;}
.st1{fill:#9C9E9F;} .st1{fill:#9C9E9F;}
</style> </style>
<g> <g>
<path class="st0" d="M82.4,48.7V26.9C75.6,17.3,60,10.6,41.9,10.6C24.3,10.6,9.1,16.9,2,26.1v22.8c7.1-9.2,22.3-15.5,39.9-15.5 <path class="st0" d="M82.4,48.7V26.9C75.6,17.3,60,10.6,41.9,10.6C24.3,10.6,9.1,16.9,2,26.1v22.8c7.1-9.2,22.3-15.5,39.9-15.5
c17.8,0,33.1,6.5,40.1,15.8C82.2,49,82.3,48.8,82.4,48.7z"/> c17.8,0,33.1,6.5,40.1,15.8C82.2,49,82.3,48.8,82.4,48.7z"/>
<g> <g>
<path class="st1" d="M61.7,64.8c9.2-2.9,16.6-7.6,20.7-13.4V29.7c-0.1-0.2-0.2-0.4-0.4-0.5c-4.2,5.6-11.4,10.1-20.3,12.9V64.8z"/> <path class="st1" d="M61.7,64.8c9.2-2.9,16.6-7.6,20.7-13.4V29.7c-0.1-0.2-0.2-0.4-0.4-0.5c-4.2,5.6-11.4,10.1-20.3,12.9V64.8z"/>
<path class="st1" d="M36.8,67.4V44.6C21.4,43.5,8.4,37.6,2,29.3v22.9C8.4,60.4,21.4,66.4,36.8,67.4z"/> <path class="st1" d="M36.8,67.4V44.6C21.4,43.5,8.4,37.6,2,29.3v22.9C8.4,60.4,21.4,66.4,36.8,67.4z"/>
</g> </g>
<polygon class="st1" points="28.4,72.3 58.3,54.8 28.3,36.6 "/> <polygon class="st1" points="28.4,72.3 58.3,54.8 28.3,36.6 "/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 948 B

After

Width:  |  Height:  |  Size: 930 B

View File

@ -1,41 +1,41 @@
<?xml version="1.0" encoding="iso-8859-1"?> <?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 543.987 543.987" style="enable-background:new 0 0 543.987 543.987;" xml:space="preserve"> viewBox="0 0 543.987 543.987" style="enable-background:new 0 0 543.987 543.987;" xml:space="preserve">
<g> <g>
<path style="fill:#010002;" d="M85.265,74.203C-23.952,177.311-28.901,349.431,74.207,458.647c1.811,1.925,3.655,3.818,5.526,5.684 <path style="fill:#010002;" d="M85.265,74.203C-23.952,177.311-28.901,349.431,74.207,458.647c1.811,1.925,3.655,3.818,5.526,5.684
c106.203,106.209,278.398,106.209,384.596,0c106.209-106.198,106.209-278.393,0-384.596C360.297-24.391,192.3-26.844,85.265,74.203 c106.203,106.209,278.398,106.209,384.596,0c106.209-106.198,106.209-278.393,0-384.596C360.297-24.391,192.3-26.844,85.265,74.203
z M137.431,191.268l53.841-53.841l80.765,80.765l80.765-80.765l53.847,53.841l-80.765,80.792l80.77,80.737l-53.847,53.847 z M137.431,191.268l53.841-53.841l80.765,80.765l80.765-80.765l53.847,53.841l-80.765,80.792l80.77,80.737l-53.847,53.847
l-80.765-80.77l-80.765,80.77l-53.841-53.847l80.759-80.737L137.431,191.268z"/> l-80.765-80.77l-80.765,80.77l-53.841-53.847l80.759-80.737L137.431,191.268z"/>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1019 B

After

Width:  |  Height:  |  Size: 978 B

View File

@ -1,39 +1,39 @@
<?xml version="1.0" encoding="iso-8859-1"?> <?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 49.498 49.498" style="enable-background:new 0 0 49.498 49.498;" xml:space="preserve"> viewBox="0 0 49.498 49.498" style="enable-background:new 0 0 49.498 49.498;" xml:space="preserve">
<g> <g>
<path style="fill:#010002;" d="M0,9.899L9.899,0l14.849,14.849L39.597,0.001l9.9,9.899L34.648,24.753l14.85,14.844l-9.9,9.9 <path style="fill:#010002;" d="M0,9.899L9.899,0l14.849,14.849L39.597,0.001l9.9,9.899L34.648,24.753l14.85,14.844l-9.9,9.9
l-14.849-14.85L9.9,49.498l-9.899-9.9l14.848-14.844L0,9.899z"/> l-14.849-14.85L9.9,49.498l-9.899-9.9l14.848-14.844L0,9.899z"/>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
<g> <g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 742 B

After

Width:  |  Height:  |  Size: 703 B

View File

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="227 -351.2 220 690.7" style="enable-background:new 227 -351.2 220 690.7;" xml:space="preserve"> viewBox="227 -351.2 220 690.7" style="enable-background:new 227 -351.2 220 690.7;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#818181;} .st0{fill:#818181;}
</style> </style>
<path class="st0" d="M300.8,334.5h-61.4v-20h61.4c37.1,0,67.2-30.2,67.2-67.2V46.6c0-13.8,7.9-27.7,23.4-41.2 <path class="st0" d="M300.8,334.5h-61.4v-20h61.4c37.1,0,67.2-30.2,67.2-67.2V46.6c0-13.8,7.9-27.7,23.4-41.2
c2.5-2.1,4.9-4.1,7.3-5.9C385.3-9.3,368-24.6,368-45.4v-209.8c0-37.1-30.2-67.2-67.2-67.2h-61.4v-20h61.4 c2.5-2.1,4.9-4.1,7.3-5.9C385.3-9.3,368-24.6,368-45.4v-209.8c0-37.1-30.2-67.2-67.2-67.2h-61.4v-20h61.4
c48.1,0,87.2,39.1,87.2,87.2v209.8c0,16.6,24.5,30.9,34,35l18.8,8.2l-18,9.8c-9,4.9-34.8,22.7-34.8,39v200.7 c48.1,0,87.2,39.1,87.2,87.2v209.8c0,16.6,24.5,30.9,34,35l18.8,8.2l-18,9.8c-9,4.9-34.8,22.7-34.8,39v200.7
C388,295.4,348.9,334.5,300.8,334.5z"/> C388,295.4,348.9,334.5,300.8,334.5z"/>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 795 B

After

Width:  |  Height:  |  Size: 783 B

View File

@ -1,25 +1,25 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="227 -351.2 595.3 841.9" style="enable-background:new 227 -351.2 595.3 841.9;" xml:space="preserve"> viewBox="227 -351.2 595.3 841.9" style="enable-background:new 227 -351.2 595.3 841.9;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#818181;} .st0{fill:#818181;}
</style> </style>
<g> <g>
<path class="st0" d="M677.5,19.8h-13.3v94.8h10.2c13.9,0,24.1-4,30.5-12.1c6.5-8.1,9.7-20.4,9.7-37c0-15.5-3.1-27-9.2-34.5 <path class="st0" d="M677.5,19.8h-13.3v94.8h10.2c13.9,0,24.1-4,30.5-12.1c6.5-8.1,9.7-20.4,9.7-37c0-15.5-3.1-27-9.2-34.5
C699.3,23.5,690,19.8,677.5,19.8z"/> C699.3,23.5,690,19.8,677.5,19.8z"/>
<path class="st0" d="M369.2,17.7c-22.9,0-34.4,16.5-34.4,49.5c0,32.7,11.4,49.1,34.1,49.1c11.6,0,20.1-4,25.7-11.9 <path class="st0" d="M369.2,17.7c-22.9,0-34.4,16.5-34.4,49.5c0,32.7,11.4,49.1,34.1,49.1c11.6,0,20.1-4,25.7-11.9
c5.6-7.9,8.4-20.3,8.4-37.1c0-16.9-2.8-29.4-8.5-37.4C388.9,21.7,380.4,17.7,369.2,17.7z"/> c5.6-7.9,8.4-20.3,8.4-37.1c0-16.9-2.8-29.4-8.5-37.4C388.9,21.7,380.4,17.7,369.2,17.7z"/>
<path class="st0" d="M726.8-134.3H321.9c-36.3,0-65.9,29.5-65.9,65.9V207c0,36.3,29.5,65.9,65.9,65.9h404.9 <path class="st0" d="M726.8-134.3H321.9c-36.3,0-65.9,29.5-65.9,65.9V207c0,36.3,29.5,65.9,65.9,65.9h404.9
c36.3,0,65.9-29.5,65.9-65.9V-68.4C792.7-104.8,763.1-134.3,726.8-134.3z M430.3,132.1c-14,14.8-34.4,22.2-61.3,22.2 c36.3,0,65.9-29.5,65.9-65.9V-68.4C792.7-104.8,763.1-134.3,726.8-134.3z M430.3,132.1c-14,14.8-34.4,22.2-61.3,22.2
c-26.5,0-46.9-7.4-61-22.3c-14.2-14.9-21.2-36.6-21.2-65c0-28.1,7-49.7,21.1-64.5c14.1-14.8,34.5-22.3,61.4-22.3 c-26.5,0-46.9-7.4-61-22.3c-14.2-14.9-21.2-36.6-21.2-65c0-28.1,7-49.7,21.1-64.5c14.1-14.8,34.5-22.3,61.4-22.3
c26.9,0,47.3,7.4,61.2,22.1c13.9,14.7,20.8,36.4,20.8,64.9C451.2,95.7,444.2,117.3,430.3,132.1z M525.5,36.8 c26.9,0,47.3,7.4,61.2,22.1c13.9,14.7,20.8,36.4,20.8,64.9C451.2,95.7,444.2,117.3,430.3,132.1z M525.5,36.8
c3.4,2.6,12.7,7.4,27.9,14.3c14.6,6.6,24.7,13.6,30.4,21.1c5.7,7.5,8.5,17,8.5,28.4c0,10.5-2.7,19.8-8,27.9c-5.3,8.1-13,14.5-23,19 c3.4,2.6,12.7,7.4,27.9,14.3c14.6,6.6,24.7,13.6,30.4,21.1c5.7,7.5,8.5,17,8.5,28.4c0,10.5-2.7,19.8-8,27.9c-5.3,8.1-13,14.5-23,19
c-10,4.5-21.8,6.8-35.3,6.8c-11.3,0-20.7-0.8-28.3-2.4s-15.6-4.3-23.8-8.3V103c8.7,4.5,17.8,8,27.2,10.5c9.4,2.5,18,3.8,25.9,3.8 c-10,4.5-21.8,6.8-35.3,6.8c-11.3,0-20.7-0.8-28.3-2.4s-15.6-4.3-23.8-8.3V103c8.7,4.5,17.8,8,27.2,10.5c9.4,2.5,18,3.8,25.9,3.8
c6.8,0,11.8-1.2,14.9-3.5c3.1-2.3,4.7-5.4,4.7-9.1c0-2.3-0.6-4.3-1.9-6.1s-3.3-3.5-6.1-5.3c-2.8-1.8-10.3-5.4-22.5-10.9 c6.8,0,11.8-1.2,14.9-3.5c3.1-2.3,4.7-5.4,4.7-9.1c0-2.3-0.6-4.3-1.9-6.1s-3.3-3.5-6.1-5.3c-2.8-1.8-10.3-5.4-22.5-10.9
c-11-5-19.3-9.9-24.8-14.6c-5.5-4.7-9.6-10.1-12.3-16.2c-2.7-6.1-4-13.3-4-21.6c0-15.6,5.7-27.7,17-36.4 c-11-5-19.3-9.9-24.8-14.6c-5.5-4.7-9.6-10.1-12.3-16.2c-2.7-6.1-4-13.3-4-21.6c0-15.6,5.7-27.7,17-36.4
c11.3-8.7,26.9-13.1,46.7-13.1c17.5,0,35.4,4,53.6,12.1l-14,35.3c-15.8-7.2-29.5-10.9-41-10.9c-5.9,0-10.3,1-13,3.1s-4,4.7-4,7.8 c11.3-8.7,26.9-13.1,46.7-13.1c17.5,0,35.4,4,53.6,12.1l-14,35.3c-15.8-7.2-29.5-10.9-41-10.9c-5.9,0-10.3,1-13,3.1s-4,4.7-4,7.8
C520.4,31.2,522.1,34.2,525.5,36.8z M738.8,129.1c-15.5,15.3-37.4,22.9-65.5,22.9h-54.7V-17.1H677c27.2,0,48.1,6.9,62.9,20.8 C520.4,31.2,522.1,34.2,525.5,36.8z M738.8,129.1c-15.5,15.3-37.4,22.9-65.5,22.9h-54.7V-17.1H677c27.2,0,48.1,6.9,62.9,20.8
c14.8,13.9,22.2,33.9,22.2,60.2C762.1,92.1,754.3,113.8,738.8,129.1z"/> c14.8,13.9,22.2,33.9,22.2,60.2C762.1,92.1,754.3,113.8,738.8,129.1z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -1,25 +1,25 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="227 -351.2 595.3 841.9" style="enable-background:new 227 -351.2 595.3 841.9;" xml:space="preserve"> viewBox="227 -351.2 595.3 841.9" style="enable-background:new 227 -351.2 595.3 841.9;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#FFFFFF;} .st0{fill:#FFFFFF;}
</style> </style>
<g> <g>
<path class="st0" d="M677.5,19.8h-13.3v94.8h10.2c13.9,0,24.1-4,30.5-12.1c6.5-8.1,9.7-20.4,9.7-37c0-15.5-3.1-27-9.2-34.5 <path class="st0" d="M677.5,19.8h-13.3v94.8h10.2c13.9,0,24.1-4,30.5-12.1c6.5-8.1,9.7-20.4,9.7-37c0-15.5-3.1-27-9.2-34.5
C699.3,23.5,690,19.8,677.5,19.8z"/> C699.3,23.5,690,19.8,677.5,19.8z"/>
<path class="st0" d="M369.2,17.7c-22.9,0-34.4,16.5-34.4,49.5c0,32.7,11.4,49.1,34.1,49.1c11.6,0,20.1-4,25.7-11.9 <path class="st0" d="M369.2,17.7c-22.9,0-34.4,16.5-34.4,49.5c0,32.7,11.4,49.1,34.1,49.1c11.6,0,20.1-4,25.7-11.9
c5.6-7.9,8.4-20.3,8.4-37.1c0-16.9-2.8-29.4-8.5-37.4C388.9,21.7,380.4,17.7,369.2,17.7z"/> c5.6-7.9,8.4-20.3,8.4-37.1c0-16.9-2.8-29.4-8.5-37.4C388.9,21.7,380.4,17.7,369.2,17.7z"/>
<path class="st0" d="M726.8-134.3H321.9c-36.3,0-65.9,29.5-65.9,65.9V207c0,36.3,29.5,65.9,65.9,65.9h404.9 <path class="st0" d="M726.8-134.3H321.9c-36.3,0-65.9,29.5-65.9,65.9V207c0,36.3,29.5,65.9,65.9,65.9h404.9
c36.3,0,65.9-29.5,65.9-65.9V-68.4C792.7-104.8,763.1-134.3,726.8-134.3z M430.3,132.1c-14,14.8-34.4,22.2-61.3,22.2 c36.3,0,65.9-29.5,65.9-65.9V-68.4C792.7-104.8,763.1-134.3,726.8-134.3z M430.3,132.1c-14,14.8-34.4,22.2-61.3,22.2
c-26.5,0-46.9-7.4-61-22.3c-14.2-14.9-21.2-36.6-21.2-65c0-28.1,7-49.7,21.1-64.5c14.1-14.8,34.5-22.3,61.4-22.3 c-26.5,0-46.9-7.4-61-22.3c-14.2-14.9-21.2-36.6-21.2-65c0-28.1,7-49.7,21.1-64.5c14.1-14.8,34.5-22.3,61.4-22.3
c26.9,0,47.3,7.4,61.2,22.1c13.9,14.7,20.8,36.4,20.8,64.9C451.2,95.7,444.2,117.3,430.3,132.1z M525.5,36.8 c26.9,0,47.3,7.4,61.2,22.1c13.9,14.7,20.8,36.4,20.8,64.9C451.2,95.7,444.2,117.3,430.3,132.1z M525.5,36.8
c3.4,2.6,12.7,7.4,27.9,14.3c14.6,6.6,24.7,13.6,30.4,21.1c5.7,7.5,8.5,17,8.5,28.4c0,10.5-2.7,19.8-8,27.9c-5.3,8.1-13,14.5-23,19 c3.4,2.6,12.7,7.4,27.9,14.3c14.6,6.6,24.7,13.6,30.4,21.1c5.7,7.5,8.5,17,8.5,28.4c0,10.5-2.7,19.8-8,27.9c-5.3,8.1-13,14.5-23,19
c-10,4.5-21.8,6.8-35.3,6.8c-11.3,0-20.7-0.8-28.3-2.4s-15.6-4.3-23.8-8.3V103c8.7,4.5,17.8,8,27.2,10.5c9.4,2.5,18,3.8,25.9,3.8 c-10,4.5-21.8,6.8-35.3,6.8c-11.3,0-20.7-0.8-28.3-2.4s-15.6-4.3-23.8-8.3V103c8.7,4.5,17.8,8,27.2,10.5c9.4,2.5,18,3.8,25.9,3.8
c6.8,0,11.8-1.2,14.9-3.5c3.1-2.3,4.7-5.4,4.7-9.1c0-2.3-0.6-4.3-1.9-6.1s-3.3-3.5-6.1-5.3c-2.8-1.8-10.3-5.4-22.5-10.9 c6.8,0,11.8-1.2,14.9-3.5c3.1-2.3,4.7-5.4,4.7-9.1c0-2.3-0.6-4.3-1.9-6.1s-3.3-3.5-6.1-5.3c-2.8-1.8-10.3-5.4-22.5-10.9
c-11-5-19.3-9.9-24.8-14.6c-5.5-4.7-9.6-10.1-12.3-16.2c-2.7-6.1-4-13.3-4-21.6c0-15.6,5.7-27.7,17-36.4 c-11-5-19.3-9.9-24.8-14.6c-5.5-4.7-9.6-10.1-12.3-16.2c-2.7-6.1-4-13.3-4-21.6c0-15.6,5.7-27.7,17-36.4
c11.3-8.7,26.9-13.1,46.7-13.1c17.5,0,35.4,4,53.6,12.1l-14,35.3c-15.8-7.2-29.5-10.9-41-10.9c-5.9,0-10.3,1-13,3.1s-4,4.7-4,7.8 c11.3-8.7,26.9-13.1,46.7-13.1c17.5,0,35.4,4,53.6,12.1l-14,35.3c-15.8-7.2-29.5-10.9-41-10.9c-5.9,0-10.3,1-13,3.1s-4,4.7-4,7.8
C520.4,31.2,522.1,34.2,525.5,36.8z M738.8,129.1c-15.5,15.3-37.4,22.9-65.5,22.9h-54.7V-17.1H677c27.2,0,48.1,6.9,62.9,20.8 C520.4,31.2,522.1,34.2,525.5,36.8z M738.8,129.1c-15.5,15.3-37.4,22.9-65.5,22.9h-54.7V-17.1H677c27.2,0,48.1,6.9,62.9,20.8
c14.8,13.9,22.2,33.9,22.2,60.2C762.1,92.1,754.3,113.8,738.8,129.1z"/> c14.8,13.9,22.2,33.9,22.2,60.2C762.1,92.1,754.3,113.8,738.8,129.1z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -1,32 +1,32 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve"> viewBox="0 0 141.7 141.7" enable-background="new 0 0 141.7 141.7" xml:space="preserve">
<g> <g>
<path fill="#FFFFFF" stroke="#000000" stroke-width="0.3" stroke-miterlimit="10" d="M84,41c0.5,0.5,1.3,0.5,1.7,0 <path fill="#FFFFFF" stroke="#000000" stroke-width="0.3" stroke-miterlimit="10" d="M84,41c0.5,0.5,1.3,0.5,1.7,0
c0.5-0.5,0.5-1.3,0-1.7L71.9,25.6c-0.5-0.5-1.3-0.5-1.7,0L56.3,39.3c-0.5,0.5-0.5,1.3,0,1.7c0.5,0.5,1.3,0.5,1.7,0l13-12.5L84,41z" c0.5-0.5,0.5-1.3,0-1.7L71.9,25.6c-0.5-0.5-1.3-0.5-1.7,0L56.3,39.3c-0.5,0.5-0.5,1.3,0,1.7c0.5,0.5,1.3,0.5,1.7,0l13-12.5L84,41z"
/> />
</g> </g>
<g> <g>
<path fill="#FFFFFF" stroke="#000000" stroke-width="0.3" stroke-miterlimit="10" d="M58,100.1c-0.5-0.5-1.3-0.5-1.7,0 <path fill="#FFFFFF" stroke="#000000" stroke-width="0.3" stroke-miterlimit="10" d="M58,100.1c-0.5-0.5-1.3-0.5-1.7,0
c-0.5,0.5-0.5,1.3,0,1.7l13.9,13.7c0.5,0.5,1.3,0.5,1.7,0l13.9-13.6c0.5-0.5,0.5-1.3,0-1.7c-0.5-0.5-1.3-0.5-1.7,0L71,112.6 c-0.5,0.5-0.5,1.3,0,1.7l13.9,13.7c0.5,0.5,1.3,0.5,1.7,0l13.9-13.6c0.5-0.5,0.5-1.3,0-1.7c-0.5-0.5-1.3-0.5-1.7,0L71,112.6
L58,100.1z"/> L58,100.1z"/>
</g> </g>
<g> <g>
<path fill="#FFFFFF" stroke="#000000" stroke-width="0.3" stroke-miterlimit="10" d="M20.4,77.3c1.9,1.1,4.6,2.1,7.4,2.1 <path fill="#FFFFFF" stroke="#000000" stroke-width="0.3" stroke-miterlimit="10" d="M20.4,77.3c1.9,1.1,4.6,2.1,7.4,2.1
c4.2,0,6.7-2.2,6.7-5.5c0-3-1.7-4.7-6-6.4c-5.2-1.8-8.5-4.5-8.5-9c0-5,4.1-8.7,10.4-8.7c3.3,0,5.7,0.8,7.1,1.6l-1.1,3.4 c4.2,0,6.7-2.2,6.7-5.5c0-3-1.7-4.7-6-6.4c-5.2-1.8-8.5-4.5-8.5-9c0-5,4.1-8.7,10.4-8.7c3.3,0,5.7,0.8,7.1,1.6l-1.1,3.4
c-1-0.6-3.2-1.5-6.1-1.5c-4.4,0-6,2.6-6,4.8c0,3,2,4.5,6.4,6.2c5.4,2.1,8.2,4.7,8.2,9.4c0,4.9-3.7,9.2-11.2,9.2 c-1-0.6-3.2-1.5-6.1-1.5c-4.4,0-6,2.6-6,4.8c0,3,2,4.5,6.4,6.2c5.4,2.1,8.2,4.7,8.2,9.4c0,4.9-3.7,9.2-11.2,9.2
c-3.1,0-6.5-0.9-8.2-2L20.4,77.3z"/> c-3.1,0-6.5-0.9-8.2-2L20.4,77.3z"/>
<path fill="#FFFFFF" stroke="#000000" stroke-width="0.3" stroke-miterlimit="10" d="M61,81.5c-1.1,0.6-3.5,1.3-6.6,1.3 <path fill="#FFFFFF" stroke="#000000" stroke-width="0.3" stroke-miterlimit="10" d="M61,81.5c-1.1,0.6-3.5,1.3-6.6,1.3
c-6.9,0-11.5-4.7-11.5-11.8c0-7.1,4.9-12.2,12.4-12.2c2.5,0,4.7,0.6,5.8,1.2l-1,3.2c-1-0.6-2.6-1.1-4.9-1.1c-5.3,0-8.1,3.9-8.1,8.7 c-6.9,0-11.5-4.7-11.5-11.8c0-7.1,4.9-12.2,12.4-12.2c2.5,0,4.7,0.6,5.8,1.2l-1,3.2c-1-0.6-2.6-1.1-4.9-1.1c-5.3,0-8.1,3.9-8.1,8.7
c0,5.3,3.4,8.6,8,8.6c2.4,0,4-0.6,5.1-1.1L61,81.5z"/> c0,5.3,3.4,8.6,8,8.6c2.4,0,4-0.6,5.1-1.1L61,81.5z"/>
<path fill="#FFFFFF" stroke="#000000" stroke-width="0.3" stroke-miterlimit="10" d="M65.9,66.5c0-2.7,0-5-0.2-7.2h3.7l0.1,4.5h0.2 <path fill="#FFFFFF" stroke="#000000" stroke-width="0.3" stroke-miterlimit="10" d="M65.9,66.5c0-2.7,0-5-0.2-7.2h3.7l0.1,4.5h0.2
c1-3.1,3.6-5,6.4-5c0.5,0,0.8,0,1.2,0.1v4c-0.4-0.1-0.9-0.1-1.4-0.1c-3,0-5,2.2-5.6,5.4c-0.1,0.6-0.2,1.2-0.2,2v12.3H66v-16H65.9z" c1-3.1,3.6-5,6.4-5c0.5,0,0.8,0,1.2,0.1v4c-0.4-0.1-0.9-0.1-1.4-0.1c-3,0-5,2.2-5.6,5.4c-0.1,0.6-0.2,1.2-0.2,2v12.3H66v-16H65.9z"
/> />
<path fill="#FFFFFF" stroke="#000000" stroke-width="0.3" stroke-miterlimit="10" d="M101.9,70.6c0,8.5-5.9,12.2-11.5,12.2 <path fill="#FFFFFF" stroke="#000000" stroke-width="0.3" stroke-miterlimit="10" d="M101.9,70.6c0,8.5-5.9,12.2-11.5,12.2
c-6.2,0-11-4.6-11-11.8c0-7.7,5-12.2,11.4-12.2C97.4,58.8,101.9,63.6,101.9,70.6z M83.6,70.9c0,5,2.9,8.9,7,8.9c4,0,7-3.8,7-8.9 c-6.2,0-11-4.6-11-11.8c0-7.7,5-12.2,11.4-12.2C97.4,58.8,101.9,63.6,101.9,70.6z M83.6,70.9c0,5,2.9,8.9,7,8.9c4,0,7-3.8,7-8.9
c0-3.9-2-8.9-6.9-8.9C85.7,61.9,83.6,66.5,83.6,70.9z"/> c0-3.9-2-8.9-6.9-8.9C85.7,61.9,83.6,66.5,83.6,70.9z"/>
<path fill="#FFFFFF" stroke="#000000" stroke-width="0.3" stroke-miterlimit="10" d="M107.2,48.6h4.2v33.8h-4.2V48.6z"/> <path fill="#FFFFFF" stroke="#000000" stroke-width="0.3" stroke-miterlimit="10" d="M107.2,48.6h4.2v33.8h-4.2V48.6z"/>
<path fill="#FFFFFF" stroke="#000000" stroke-width="0.3" stroke-miterlimit="10" d="M118.4,48.6h4.2v33.8h-4.2V48.6z"/> <path fill="#FFFFFF" stroke="#000000" stroke-width="0.3" stroke-miterlimit="10" d="M118.4,48.6h4.2v33.8h-4.2V48.6z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1,46 +1,46 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" <svg version="1.1"
id="svg4057" sodipodi:docname="light-wide-1.svg" inkscape:version="0.91 r13725" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns:dc="http://purl.org/dc/elements/1.1/" id="svg4057" sodipodi:docname="light-wide-1.svg" inkscape:version="0.91 r13725" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-21 39.4 239.9 62.3" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-21 39.4 239.9 62.3"
style="enable-background:new -21 39.4 239.9 62.3;" xml:space="preserve"> style="enable-background:new -21 39.4 239.9 62.3;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#4F4F4F;} .st0{fill:#4F4F4F;}
</style> </style>
<sodipodi:namedview inkscape:window-maximized="0" inkscape:pageopacity="0.0" inkscape:current-layer="layer1" inkscape:showpageshadow="false" inkscape:window-y="241" inkscape:window-height="666" inkscape:pageshadow="2" fit-margin-bottom="0" inkscape:window-x="2360" fit-margin-right="0" inkscape:window-width="1011" inkscape:document-units="px" id="base" borderopacity="1.0" bordercolor="#666666" fit-margin-left="0" inkscape:cx="271.31351" inkscape:zoom="1.4" showgrid="true" inkscape:cy="-40.407035" fit-margin-top="0" borderlayer="false" showborder="true" showguides="false" pagecolor="#ffffff"> <sodipodi:namedview inkscape:window-maximized="0" inkscape:pageopacity="0.0" inkscape:current-layer="layer1" inkscape:showpageshadow="false" inkscape:window-y="241" inkscape:window-height="666" inkscape:pageshadow="2" fit-margin-bottom="0" inkscape:window-x="2360" fit-margin-right="0" inkscape:window-width="1011" inkscape:document-units="px" id="base" borderopacity="1.0" bordercolor="#666666" fit-margin-left="0" inkscape:cx="271.31351" inkscape:zoom="1.4" showgrid="true" inkscape:cy="-40.407035" fit-margin-top="0" borderlayer="false" showborder="true" showguides="false" pagecolor="#ffffff">
<inkscape:grid type="xygrid" id="grid4093" originy="-961.96023" originx="-10.04131"></inkscape:grid> <inkscape:grid type="xygrid" id="grid4093" originy="-961.96023" originx="-10.04131"></inkscape:grid>
</sodipodi:namedview> </sodipodi:namedview>
<g> <g>
<g> <g>
<path class="st0" d="M51.2,66.4h9.9c4.8,0,4.8,2.7,4.2,4.5c-0.6,1.8-1.9,2.8-3.5,3.5c1.4,0.6,2.5,1.9,1.5,4.5 <path class="st0" d="M51.2,66.4h9.9c4.8,0,4.8,2.7,4.2,4.5c-0.6,1.8-1.9,2.8-3.5,3.5c1.4,0.6,2.5,1.9,1.5,4.5
c-1.3,3.6-5.1,5.5-8.3,5.5H44.8L51.2,66.4z M51.9,80.2h3.3c1.2,0,2.3-0.3,2.8-1.7c0.4-1.1,0-1.6-1.4-1.6h-3.5L51.9,80.2z c-1.3,3.6-5.1,5.5-8.3,5.5H44.8L51.2,66.4z M51.9,80.2h3.3c1.2,0,2.3-0.3,2.8-1.7c0.4-1.1,0-1.6-1.4-1.6h-3.5L51.9,80.2z
M54.3,73.4h2.9c1.2,0,2-0.3,2.4-1.5c0.3-0.9-0.3-1.2-1.5-1.2h-2.9L54.3,73.4z"/> M54.3,73.4h2.9c1.2,0,2-0.3,2.4-1.5c0.3-0.9-0.3-1.2-1.5-1.2h-2.9L54.3,73.4z"/>
<path class="st0" d="M70.2,66.4h15L83.6,71h-9.4l-0.8,2.3h8.5l-1.5,4.3h-8.5l-0.8,2.3h9.7l-1.6,4.6H63.8L70.2,66.4z"/> <path class="st0" d="M70.2,66.4h15L83.6,71h-9.4l-0.8,2.3h8.5l-1.5,4.3h-8.5l-0.8,2.3h9.7l-1.6,4.6H63.8L70.2,66.4z"/>
<path class="st0" d="M90.5,71h-5.1l1.6-4.6h15.7l-1.6,4.6H96l-4.8,13.5h-5.6L90.5,71z"/> <path class="st0" d="M90.5,71h-5.1l1.6-4.6h15.7l-1.6,4.6H96l-4.8,13.5h-5.6L90.5,71z"/>
<path class="st0" d="M107.9,66.4h5.5l0.2,18.1h-5.8l0.2-2.6h-5.8l-1.7,2.6h-5.6L107.9,66.4z M108.2,78l0.4-5.6h-0.1l-3.7,5.6 <path class="st0" d="M107.9,66.4h5.5l0.2,18.1h-5.8l0.2-2.6h-5.8l-1.7,2.6h-5.6L107.9,66.4z M108.2,78l0.4-5.6h-0.1l-3.7,5.6
H108.2z"/> H108.2z"/>
<path class="st0" d="M121.5,66.4h14l-1.6,4.6h-8.4l-0.8,2.3h7.2l-1.5,4.3h-7.2l-2.4,6.9h-5.6L121.5,66.4z"/> <path class="st0" d="M121.5,66.4h14l-1.6,4.6h-8.4l-0.8,2.3h7.2l-1.5,4.3h-7.2l-2.4,6.9h-5.6L121.5,66.4z"/>
<path class="st0" d="M137.6,66.4h5.6l-4.8,13.5h8l-1.6,4.6h-13.6L137.6,66.4z"/> <path class="st0" d="M137.6,66.4h5.6l-4.8,13.5h8l-1.6,4.6h-13.6L137.6,66.4z"/>
<path class="st0" d="M153.2,66.4h5.6l-6.4,18.1h-5.6L153.2,66.4z"/> <path class="st0" d="M153.2,66.4h5.6l-6.4,18.1h-5.6L153.2,66.4z"/>
<path class="st0" d="M169.3,82.6c-1.8,1.6-4,2.3-6,2.3c-5.3,0-7.2-4.2-5.3-9.3c2.4-6.9,8.3-9.7,12.3-9.7c4.6,0,6.6,2.5,5.9,6.8 <path class="st0" d="M169.3,82.6c-1.8,1.6-4,2.3-6,2.3c-5.3,0-7.2-4.2-5.3-9.3c2.4-6.9,8.3-9.7,12.3-9.7c4.6,0,6.6,2.5,5.9,6.8
h-5.3c0.3-1.3-0.5-2.3-1.8-2.3c-3.8,0-5.1,4-5.6,5.3c-0.6,1.7-1,4.7,2.4,4.7c1.3,0,2.8-0.7,3.6-2H167l1.4-3.9h7.4l-3.5,10h-3.5 h-5.3c0.3-1.3-0.5-2.3-1.8-2.3c-3.8,0-5.1,4-5.6,5.3c-0.6,1.7-1,4.7,2.4,4.7c1.3,0,2.8-0.7,3.6-2H167l1.4-3.9h7.4l-3.5,10h-3.5
L169.3,82.6z"/> L169.3,82.6z"/>
<path class="st0" d="M181.9,66.4h5.6l-2.2,6.3h5.2l2.2-6.3h5.6l-6.4,18.1h-5.6l2.5-7.2h-5.2l-2.5,7.2h-5.6L181.9,66.4z"/> <path class="st0" d="M181.9,66.4h5.6l-2.2,6.3h5.2l2.2-6.3h5.6l-6.4,18.1h-5.6l2.5-7.2h-5.2l-2.5,7.2h-5.6L181.9,66.4z"/>
<path class="st0" d="M203.6,71h-5.1l1.6-4.6h15.8l-1.6,4.6h-5.1l-4.8,13.5h-5.6L203.6,71z"/> <path class="st0" d="M203.6,71h-5.1l1.6-4.6h15.8l-1.6,4.6h-5.1l-4.8,13.5h-5.6L203.6,71z"/>
</g> </g>
<path class="st0" d="M26.2,80.8C22,79.1,19,76.5,16,75.4c1.6-0.7,3-1.7,3.9-2.5c1-0.9,1.3-2.1,1.2-3.2c3.1,2.1,6.8,2.3,8.7,2.4 <path class="st0" d="M26.2,80.8C22,79.1,19,76.5,16,75.4c1.6-0.7,3-1.7,3.9-2.5c1-0.9,1.3-2.1,1.2-3.2c3.1,2.1,6.8,2.3,8.7,2.4
c1.9,0.1,3.8,0.5,4.2,1.4c0,0,0.6-10.6-21.2-17.6c0,0,6.5,2.9,8.5,5.3c0,0-2.3-0.1-3.3,1.3c-0.5,0.8-0.6,1.9-0.2,3.2 c1.9,0.1,3.8,0.5,4.2,1.4c0,0,0.6-10.6-21.2-17.6c0,0,6.5,2.9,8.5,5.3c0,0-2.3-0.1-3.3,1.3c-0.5,0.8-0.6,1.9-0.2,3.2
c-0.4-0.1-0.8-0.1-1.2-0.1l-34.5-19.2l3.6,7.8l-3.4-1.2l1,1.9c0,0,1.4,2.8,4.7,8.6C-9.2,68-4.6,70.3,1.6,70c0.2,0,0.5,0,0.8,0 c-0.4-0.1-0.8-0.1-1.2-0.1l-34.5-19.2l3.6,7.8l-3.4-1.2l1,1.9c0,0,1.4,2.8,4.7,8.6C-9.2,68-4.6,70.3,1.6,70c0.2,0,0.5,0,0.8,0
c1.6-0.1,4-0.3,6.3-0.5c-0.2,0.9-0.1,1.9,0.1,3.1c0.3,1.4,0.8,2.3,1.6,2.9c-1.8,0.9-3.5,2.6-4.3,4.6c0,0,0,0,0,0 c1.6-0.1,4-0.3,6.3-0.5c-0.2,0.9-0.1,1.9,0.1,3.1c0.3,1.4,0.8,2.3,1.6,2.9c-1.8,0.9-3.5,2.6-4.3,4.6c0,0,0,0,0,0
c-0.5,1.3-0.7,2.8,0,4.6c0,0,0,0,0,0c0.1,0.4,0.3,0.7,0.5,1.1c0.2,0.4,0.5,0.7,0.7,1c3.8,4.6,13.2,3.8,19.1,1.4 c-0.5,1.3-0.7,2.8,0,4.6c0,0,0,0,0,0c0.1,0.4,0.3,0.7,0.5,1.1c0.2,0.4,0.5,0.7,0.7,1c3.8,4.6,13.2,3.8,19.1,1.4
c0.1,0,0.2-0.1,0.2-0.1c0.5-0.2,0.9-0.4,1.4-0.6c0.1,0,0.2-0.1,0.3-0.1c0.5-0.2,1-0.5,1.5-0.8c5.8-3.4,7.8-7.4,7.8-7.4 c0.1,0,0.2-0.1,0.2-0.1c0.5-0.2,0.9-0.4,1.4-0.6c0.1,0,0.2-0.1,0.3-0.1c0.5-0.2,1-0.5,1.5-0.8c5.8-3.4,7.8-7.4,7.8-7.4
S31.9,83.2,26.2,80.8z M27.6,65.2c1.6,0.7,4.2,4.8,4.2,4.8c-2.1-0.3-6.4-1.7-6.8-3.3C24.6,65.1,26,64.4,27.6,65.2z M22.2,85.6 S31.9,83.2,26.2,80.8z M27.6,65.2c1.6,0.7,4.2,4.8,4.2,4.8c-2.1-0.3-6.4-1.7-6.8-3.3C24.6,65.1,26,64.4,27.6,65.2z M22.2,85.6
c0,0,0.4,1.4-0.1,3.2c-0.6,0.2-1.2,0.3-1.8,0.4C21.3,88.4,22.2,87.3,22.2,85.6z M-6.3,59.2l15,8.5C5.9,68,3,68.2,1.6,68.3 c0,0,0.4,1.4-0.1,3.2c-0.6,0.2-1.2,0.3-1.8,0.4C21.3,88.4,22.2,87.3,22.2,85.6z M-6.3,59.2l15,8.5C5.9,68,3,68.2,1.6,68.3
c-2.2,0.1-4.2-0.2-6-0.8C-7,66.6-9,65-10.3,62.6c-1.7-3-2.9-5.1-3.7-6.5l3.1,1.1l-3.1-6.7l27.3,15.1c-0.8,0.1-1.5,0.3-2.1,0.6 c-2.2,0.1-4.2-0.2-6-0.8C-7,66.6-9,65-10.3,62.6c-1.7-3-2.9-5.1-3.7-6.5l3.1,1.1l-3.1-6.7l27.3,15.1c-0.8,0.1-1.5,0.3-2.1,0.6
L-6.3,59.2z M9.6,69.8c1.1-5.1,7.6-3.5,7.6-3.5c-2.4,0-3.7,0.6-4.4,1.5c-1,1.4,0.2,2.5,0.2,2.5c-0.4-0.1-0.7-0.2-0.9-0.3 L-6.3,59.2z M9.6,69.8c1.1-5.1,7.6-3.5,7.6-3.5c-2.4,0-3.7,0.6-4.4,1.5c-1,1.4,0.2,2.5,0.2,2.5c-0.4-0.1-0.7-0.2-0.9-0.3
c0,0,0,0,0,0.1c0.5,2,2.1,2.5,2.1,2.5c-0.6,0.1-1.1,0-1.6-0.1c0.4,0.8,0.8,1.4,1.2,1.6c-1.4,0-2.2,0.3-2.7,0.6 c0,0,0,0,0,0.1c0.5,2,2.1,2.5,2.1,2.5c-0.6,0.1-1.1,0-1.6-0.1c0.4,0.8,0.8,1.4,1.2,1.6c-1.4,0-2.2,0.3-2.7,0.6
C10,73.9,9.1,72,9.6,69.8z M14.1,80.9c0,0-2.4,2.9-7.4,2.9c-0.3-1.1-0.2-2.3,0.1-3.3C8.3,81.6,10.7,82.2,14.1,80.9z M9.8,87.8 C10,73.9,9.1,72,9.6,69.8z M14.1,80.9c0,0-2.4,2.9-7.4,2.9c-0.3-1.1-0.2-2.3,0.1-3.3C8.3,81.6,10.7,82.2,14.1,80.9z M9.8,87.8
c2.2-0.5,4.9-1.7,7.6-4.7c0,0-0.3,3.3-2.7,6.3c-1.1-0.1-2.2-0.4-3.3-0.9C10.8,88.3,10.2,88.1,9.8,87.8z M30.2,85.1 c2.2-0.5,4.9-1.7,7.6-4.7c0,0-0.3,3.3-2.7,6.3c-1.1-0.1-2.2-0.4-3.3-0.9C10.8,88.3,10.2,88.1,9.8,87.8z M30.2,85.1
c-0.3-0.8-0.4-2.4-0.4-2.4c1.8,0.2,4-0.6,4-0.6C32.4,84,30.2,85.1,30.2,85.1z"/> c-0.3-0.8-0.4-2.4-0.4-2.4c1.8,0.2,4-0.6,4-0.6C32.4,84,30.2,85.1,30.2,85.1z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -1,47 +1,47 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" <svg version="1.1"
id="svg4057" sodipodi:docname="light-wide-1.svg" inkscape:version="0.91 r13725" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns:dc="http://purl.org/dc/elements/1.1/" id="svg4057" sodipodi:docname="light-wide-1.svg" inkscape:version="0.91 r13725" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-21 39.4 239.9 62.3" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-21 39.4 239.9 62.3"
style="enable-background:new -21 39.4 239.9 62.3;" xml:space="preserve"> style="enable-background:new -21 39.4 239.9 62.3;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#FFBB00;} .st0{fill:#FFBB00;}
.st1{fill:#FFFFFF;} .st1{fill:#FFFFFF;}
</style> </style>
<sodipodi:namedview inkscape:window-maximized="0" inkscape:pageopacity="0.0" inkscape:current-layer="layer1" inkscape:showpageshadow="false" inkscape:window-y="241" inkscape:window-height="666" inkscape:pageshadow="2" fit-margin-bottom="0" inkscape:window-x="2360" fit-margin-right="0" inkscape:window-width="1011" inkscape:document-units="px" id="base" borderopacity="1.0" bordercolor="#666666" fit-margin-left="0" inkscape:cx="271.31351" inkscape:zoom="1.4" showgrid="true" inkscape:cy="-40.407035" fit-margin-top="0" borderlayer="false" showborder="true" showguides="false" pagecolor="#ffffff"> <sodipodi:namedview inkscape:window-maximized="0" inkscape:pageopacity="0.0" inkscape:current-layer="layer1" inkscape:showpageshadow="false" inkscape:window-y="241" inkscape:window-height="666" inkscape:pageshadow="2" fit-margin-bottom="0" inkscape:window-x="2360" fit-margin-right="0" inkscape:window-width="1011" inkscape:document-units="px" id="base" borderopacity="1.0" bordercolor="#666666" fit-margin-left="0" inkscape:cx="271.31351" inkscape:zoom="1.4" showgrid="true" inkscape:cy="-40.407035" fit-margin-top="0" borderlayer="false" showborder="true" showguides="false" pagecolor="#ffffff">
<inkscape:grid type="xygrid" id="grid4093" originy="-961.96023" originx="-10.04131"></inkscape:grid> <inkscape:grid type="xygrid" id="grid4093" originy="-961.96023" originx="-10.04131"></inkscape:grid>
</sodipodi:namedview> </sodipodi:namedview>
<g> <g>
<g> <g>
<path class="st0" d="M56.2,61.9h9.7c4.7,0,4.7,2.6,4.1,4.4c-0.6,1.8-1.8,2.8-3.4,3.5c1.4,0.5,2.4,1.8,1.5,4.4 <path class="st0" d="M56.2,61.9h9.7c4.7,0,4.7,2.6,4.1,4.4c-0.6,1.8-1.8,2.8-3.4,3.5c1.4,0.5,2.4,1.8,1.5,4.4
c-1.3,3.6-5,5.4-8.1,5.4H49.9L56.2,61.9z M56.9,75.4h3.2c1.1,0,2.3-0.3,2.7-1.7c0.4-1,0-1.6-1.3-1.6h-3.4L56.9,75.4z M59.2,68.8 c-1.3,3.6-5,5.4-8.1,5.4H49.9L56.2,61.9z M56.9,75.4h3.2c1.1,0,2.3-0.3,2.7-1.7c0.4-1,0-1.6-1.3-1.6h-3.4L56.9,75.4z M59.2,68.8
h2.9c1.1,0,2-0.3,2.4-1.5c0.3-0.9-0.3-1.2-1.4-1.2h-2.9L59.2,68.8z"/> h2.9c1.1,0,2-0.3,2.4-1.5c0.3-0.9-0.3-1.2-1.4-1.2h-2.9L59.2,68.8z"/>
<path class="st0" d="M74.9,61.9h14.7L88,66.4h-9.3l-0.8,2.2h8.4l-1.5,4.2h-8.4L75.7,75h9.5l-1.6,4.5h-15L74.9,61.9z"/> <path class="st0" d="M74.9,61.9h14.7L88,66.4h-9.3l-0.8,2.2h8.4l-1.5,4.2h-8.4L75.7,75h9.5l-1.6,4.5h-15L74.9,61.9z"/>
<path class="st0" d="M94.7,66.4h-5l1.6-4.5h15.4l-1.6,4.5h-5l-4.7,13.2h-5.5L94.7,66.4z"/> <path class="st0" d="M94.7,66.4h-5l1.6-4.5h15.4l-1.6,4.5h-5l-4.7,13.2h-5.5L94.7,66.4z"/>
<path class="st0" d="M111.8,61.9h5.3l0.2,17.7h-5.6l0.2-2.5h-5.6l-1.7,2.5h-5.5L111.8,61.9z M112.1,73.3l0.3-5.5l0,0l-3.7,5.5 <path class="st0" d="M111.8,61.9h5.3l0.2,17.7h-5.6l0.2-2.5h-5.6l-1.7,2.5h-5.5L111.8,61.9z M112.1,73.3l0.3-5.5l0,0l-3.7,5.5
H112.1z"/> H112.1z"/>
<path class="st1" d="M125.1,61.9h13.7l-1.6,4.5H129l-0.8,2.2h7.1l-1.5,4.2h-7.1l-2.4,6.8h-5.5L125.1,61.9z"/> <path class="st1" d="M125.1,61.9h13.7l-1.6,4.5H129l-0.8,2.2h7.1l-1.5,4.2h-7.1l-2.4,6.8h-5.5L125.1,61.9z"/>
<path class="st1" d="M140.9,61.9h5.5L141.7,75h7.9l-1.6,4.5h-13.3L140.9,61.9z"/> <path class="st1" d="M140.9,61.9h5.5L141.7,75h7.9l-1.6,4.5h-13.3L140.9,61.9z"/>
<path class="st1" d="M156.2,61.9h5.5l-6.3,17.7h-5.5L156.2,61.9z"/> <path class="st1" d="M156.2,61.9h5.5l-6.3,17.7h-5.5L156.2,61.9z"/>
<path class="st1" d="M172,77.8c-1.8,1.6-3.9,2.2-5.8,2.2c-5.2,0-7-4.1-5.2-9.1c2.4-6.8,8.1-9.5,12.1-9.5c4.5,0,6.5,2.5,5.8,6.6 <path class="st1" d="M172,77.8c-1.8,1.6-3.9,2.2-5.8,2.2c-5.2,0-7-4.1-5.2-9.1c2.4-6.8,8.1-9.5,12.1-9.5c4.5,0,6.5,2.5,5.8,6.6
h-5.2c0.3-1.3-0.5-2.2-1.8-2.2c-3.8,0-5,4-5.5,5.2c-0.6,1.7-0.9,4.6,2.4,4.6c1.3,0,2.8-0.6,3.5-2h-2.4l1.3-3.8h7.3l-3.5,9.8h-3.5 h-5.2c0.3-1.3-0.5-2.2-1.8-2.2c-3.8,0-5,4-5.5,5.2c-0.6,1.7-0.9,4.6,2.4,4.6c1.3,0,2.8-0.6,3.5-2h-2.4l1.3-3.8h7.3l-3.5,9.8h-3.5
L172,77.8z"/> L172,77.8z"/>
<path class="st1" d="M184.3,61.9h5.5l-2.2,6.2h5.1l2.2-6.2h5.5l-6.3,17.7h-5.5l2.5-7H186l-2.5,7H178L184.3,61.9z"/> <path class="st1" d="M184.3,61.9h5.5l-2.2,6.2h5.1l2.2-6.2h5.5l-6.3,17.7h-5.5l2.5-7H186l-2.5,7H178L184.3,61.9z"/>
<path class="st1" d="M205.6,66.4h-5l1.6-4.5h15.4l-1.6,4.5h-5l-4.7,13.2h-5.5L205.6,66.4z"/> <path class="st1" d="M205.6,66.4h-5l1.6-4.5h15.4l-1.6,4.5h-5l-4.7,13.2h-5.5L205.6,66.4z"/>
</g> </g>
<path class="st0" d="M30.5,84c-4.8-2-8.3-5-11.7-6.3c1.8-0.8,3.5-1.9,4.5-2.9c1.1-1.1,1.5-2.4,1.4-3.7c3.6,2.4,7.8,2.6,10,2.7 <path class="st0" d="M30.5,84c-4.8-2-8.3-5-11.7-6.3c1.8-0.8,3.5-1.9,4.5-2.9c1.1-1.1,1.5-2.4,1.4-3.7c3.6,2.4,7.8,2.6,10,2.7
c2.2,0.1,4.4,0.6,4.8,1.6c0,0,0.7-12.2-24.4-20.3c0,0,7.5,3.4,9.8,6.1c0,0-2.7-0.2-3.8,1.6c-0.6,0.9-0.7,2.2-0.2,3.7 c2.2,0.1,4.4,0.6,4.8,1.6c0,0,0.7-12.2-24.4-20.3c0,0,7.5,3.4,9.8,6.1c0,0-2.7-0.2-3.8,1.6c-0.6,0.9-0.7,2.2-0.2,3.7
c-0.4-0.1-0.9-0.1-1.4-0.2l-39.8-22.1l4.2,9l-3.9-1.4l1.2,2.2c0,0,1.7,3.2,5.5,9.9c3,5.3,8.4,7.9,15.6,7.6c0.3,0,0.6,0,0.9,0 c-0.4-0.1-0.9-0.1-1.4-0.2l-39.8-22.1l4.2,9l-3.9-1.4l1.2,2.2c0,0,1.7,3.2,5.5,9.9c3,5.3,8.4,7.9,15.6,7.6c0.3,0,0.6,0,0.9,0
c1.8-0.1,4.6-0.4,7.3-0.6c-0.2,1-0.2,2.2,0.1,3.6c0.3,1.6,1,2.7,1.8,3.3c-2.1,1-4.1,3-4.9,5.3c0,0,0,0,0,0c-0.6,1.5-0.8,3.2,0,5.3 c1.8-0.1,4.6-0.4,7.3-0.6c-0.2,1-0.2,2.2,0.1,3.6c0.3,1.6,1,2.7,1.8,3.3c-2.1,1-4.1,3-4.9,5.3c0,0,0,0,0,0c-0.6,1.5-0.8,3.2,0,5.3
c0,0,0,0,0,0c0.1,0.4,0.3,0.8,0.6,1.3c0.2,0.4,0.5,0.8,0.9,1.2c4.4,5.3,15.2,4.4,22,1.6c0.1,0,0.2-0.1,0.3-0.1 c0,0,0,0,0,0c0.1,0.4,0.3,0.8,0.6,1.3c0.2,0.4,0.5,0.8,0.9,1.2c4.4,5.3,15.2,4.4,22,1.6c0.1,0,0.2-0.1,0.3-0.1
c0.5-0.2,1.1-0.5,1.6-0.7c0.1-0.1,0.2-0.1,0.3-0.2c0.6-0.3,1.1-0.6,1.7-0.9c6.7-3.9,9-8.5,9-8.5S37,86.7,30.5,84z M32.2,65.9 c0.5-0.2,1.1-0.5,1.6-0.7c0.1-0.1,0.2-0.1,0.3-0.2c0.6-0.3,1.1-0.6,1.7-0.9c6.7-3.9,9-8.5,9-8.5S37,86.7,30.5,84z M32.2,65.9
c1.9,0.8,4.8,5.6,4.8,5.6c-2.4-0.4-7.3-2-7.8-3.8S30.3,65.1,32.2,65.9z M25.9,89.5c0,0,0.5,1.6-0.1,3.7c-0.7,0.2-1.4,0.3-2.1,0.5 c1.9,0.8,4.8,5.6,4.8,5.6c-2.4-0.4-7.3-2-7.8-3.8S30.3,65.1,32.2,65.9z M25.9,89.5c0,0,0.5,1.6-0.1,3.7c-0.7,0.2-1.4,0.3-2.1,0.5
C24.9,92.8,25.9,91.4,25.9,89.5z M-7,59l17.3,9.8c-3.2,0.3-6.5,0.6-8.2,0.7c-2.6,0.1-4.9-0.2-6.9-0.9c-3-1-5.2-3-6.8-5.7 C24.9,92.8,25.9,91.4,25.9,89.5z M-7,59l17.3,9.8c-3.2,0.3-6.5,0.6-8.2,0.7c-2.6,0.1-4.9-0.2-6.9-0.9c-3-1-5.2-3-6.8-5.7
c-2-3.4-3.3-5.9-4.2-7.5l3.6,1.2l-3.6-7.7l31.5,17.4c-0.9,0.1-1.7,0.4-2.5,0.7L-7,59z M11.4,71.3c1.2-5.8,8.7-4,8.7-4 c-2-3.4-3.3-5.9-4.2-7.5l3.6,1.2l-3.6-7.7l31.5,17.4c-0.9,0.1-1.7,0.4-2.5,0.7L-7,59z M11.4,71.3c1.2-5.8,8.7-4,8.7-4
c-2.7,0-4.3,0.7-5.1,1.8c-1.2,1.6,0.3,2.9,0.3,2.9c-0.4-0.1-0.8-0.2-1-0.4c0,0,0,0,0,0.1c0.6,2.3,2.5,2.9,2.5,2.9 c-2.7,0-4.3,0.7-5.1,1.8c-1.2,1.6,0.3,2.9,0.3,2.9c-0.4-0.1-0.8-0.2-1-0.4c0,0,0,0,0,0.1c0.6,2.3,2.5,2.9,2.5,2.9
c-0.7,0.1-1.3,0-1.8-0.1c0.4,0.9,1,1.6,1.3,1.8c-1.7,0-2.5,0.4-3.1,0.6C11.9,76,10.8,73.8,11.4,71.3z M16.5,84.1 c-0.7,0.1-1.3,0-1.8-0.1c0.4,0.9,1,1.6,1.3,1.8c-1.7,0-2.5,0.4-3.1,0.6C11.9,76,10.8,73.8,11.4,71.3z M16.5,84.1
c0,0-2.7,3.4-8.6,3.4c-0.3-1.3-0.2-2.6,0.1-3.8C9.9,84.9,12.7,85.5,16.5,84.1z M11.6,92c2.5-0.6,5.7-2,8.7-5.4c0,0-0.4,3.8-3.2,7.3 c0,0-2.7,3.4-8.6,3.4c-0.3-1.3-0.2-2.6,0.1-3.8C9.9,84.9,12.7,85.5,16.5,84.1z M11.6,92c2.5-0.6,5.7-2,8.7-5.4c0,0-0.4,3.8-3.2,7.3
c-1.3-0.2-2.6-0.5-3.8-1C12.7,92.6,12.1,92.3,11.6,92z M35.2,88.9c-0.3-0.9-0.5-2.8-0.5-2.8c2.1,0.2,4.6-0.7,4.6-0.7 c-1.3-0.2-2.6-0.5-3.8-1C12.7,92.6,12.1,92.3,11.6,92z M35.2,88.9c-0.3-0.9-0.5-2.8-0.5-2.8c2.1,0.2,4.6-0.7,4.6-0.7
C37.6,87.6,35.2,88.9,35.2,88.9z"/> C37.6,87.6,35.2,88.9,35.2,88.9z"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB