Add shape prefix to symbol IDs, fix brand naming, add assets

- Symbol IDs now include shape for uniqueness: {shape}_{brand}_{mode}
  e.g., text-only_paypal_lm, rectangle_visa_la, icon_mastercard_dm
- Fixed brand name inconsistencies:
  - amazon_pay → amazon
  - naverpay → naver_pay
  - p24 → przelewy24
  - direct_debit → bacs (unified BACS Direct Debit name)
- Added font assets (FontAwesome, Material Icons)
- Added MprIconsAssets and MprIconsConfig classes
- Updated preview.html with shape parameter support
- All 752 icons complete (38 payment × 4 shapes × 4 modes + 12 social × 3 shapes × 4 modes)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-28 10:10:13 +00:00
parent f292284a2e
commit 99a8f5bf9b
39 changed files with 5996 additions and 4417 deletions

View File

@@ -70,6 +70,55 @@ Front office icon set is stored in `ps_mpr_config`:
MprIcons::saveIconSet('material');
```
## Admin Configuration Form
Add icon settings to your module's admin page using `MprIconsConfig`:
```php
use MyPrestaRocks\Icons\MprIconsConfig;
// In getConfigForm() - add fields to your form
$fields_form[]['form'] = [
'legend' => ['title' => 'Icon Settings'],
'input' => MprIconsConfig::getFormFields(),
'submit' => ['title' => $this->l('Save')],
];
// In getConfigFormValues() - get current values
$values = array_merge($values, MprIconsConfig::getFormValues());
// In postProcess() - save when form submitted
if (Tools::isSubmit('submitConfig')) {
MprIconsConfig::processForm();
}
```
This creates a form with:
- **Icon Set selector**: Font Awesome or Material Icons
- **Self-host toggle**: Include icon fonts from module (for themes without icons)
## Self-Hosted Icon Fonts
If a theme doesn't include Font Awesome or Material Icons, enable self-hosting:
```php
// In hookHeader or setMedia
public function hookHeader()
{
MprIcons::registerAssets($this);
}
```
This will:
1. Check if self-hosting is enabled in config
2. Register the appropriate CSS file (Font Awesome or Material Icons)
3. Load fonts from `assets/fontawesome/` or `assets/material-icons/`
**Bundled assets:**
- Font Awesome 4.7.0 (~30KB CSS + ~80KB woff2)
- Material Icons (~1KB CSS + ~128KB woff2)
## Available Icons
| Name | Font Awesome | Material |
@@ -185,24 +234,25 @@ copy(
<!-- Include sprite (hidden) -->
{include file="module:yourmodule/views/img/payments.svg"}
<!-- Use icons -->
<svg width="45" height="45"><use href="#visa_lm"/></svg>
<svg width="45" height="45"><use href="#mastercard_lm"/></svg>
<svg width="45" height="45"><use href="#paypal_lm"/></svg>
<!-- Use icons - format: {shape}_{brand}_{mode} -->
<svg width="45" height="45"><use href="#square_visa_lm"/></svg>
<svg width="45" height="45"><use href="#square_mastercard_lm"/></svg>
<svg width="45" height="45"><use href="#square_paypal_lm"/></svg>
```
**Available payment brands (38):**
afterpay, alipay, alma, amazon_pay, american_express, apple_pay, bacs, bancontact, bank, billie, blik, cartes_bancaires, cod, credit_pay, eps, google_pay, ideal, jcb, kakao_pay, klarna, link, mastercard, mobilepay, multibanco, naverpay, p24, payco, paypal, pickup, point_of_sale, quote, revolut, samsung_pay, satispay, sepa, twint, visa, wechat_pay
afterpay, alipay, alma, amazon, american_express, apple_pay, bacs, bancontact, bank, billie, blik, cartes_bancaires, cod, credit_pay, eps, google_pay, ideal, jcb, kakao_pay, klarna, link, mastercard, mobilepay, multibanco, naver_pay, przelewy24, payco, paypal, pickup, point_of_sale, quote, revolut, samsung_pay, satispay, sepa, twint, visa, wechat_pay
### Social Icons
```html
{include file="module:yourmodule/views/img/socials.svg"}
<svg width="24" height="24"><use href="#facebook_lm"/></svg>
<svg width="24" height="24"><use href="#x_lm"/></svg>
<svg width="24" height="24"><use href="#instagram_lm"/></svg>
<!-- format: {shape}_{brand}_{mode} -->
<svg width="24" height="24"><use href="#icon_facebook_lm"/></svg>
<svg width="24" height="24"><use href="#icon_x_lm"/></svg>
<svg width="24" height="24"><use href="#icon_google_lm"/></svg>
```
**Available social brands (12):**
@@ -211,13 +261,14 @@ amazon, apple, facebook, google, linkedin, microsoft, outlook, paypal, reddit, t
### Icon ID Format
Icon IDs follow the pattern: `{brand}_{mode}`
Icon IDs follow the pattern: `{shape}_{brand}_{mode}`
Examples:
- `visa_lm` - Visa, light mode
- `visa_dm` - Visa, dark mode
- `paypal_la` - PayPal, light accent
- `facebook_da` - Facebook, dark accent
- `icon_visa_lm` - Visa icon, light mode
- `square_visa_dm` - Visa square, dark mode
- `rectangle_paypal_la` - PayPal rectangle, light accent
- `text-only_mastercard_lm` - Mastercard text only, light mode
- `full-logo_facebook_da` - Facebook full logo, dark accent
### Styling

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,25 @@
/* Material Icons - Self-hosted version */
@font-face {
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
font-display: block;
src: url('./fonts/MaterialIcons-Regular.woff2') format('woff2');
}
.material-icons {
font-family: 'Material Icons';
font-weight: normal;
font-style: normal;
font-size: 24px;
line-height: 1;
letter-spacing: normal;
text-transform: none;
display: inline-block;
white-space: nowrap;
word-wrap: normal;
direction: ltr;
-webkit-font-feature-settings: 'liga';
font-feature-settings: 'liga';
-webkit-font-smoothing: antialiased;
}

View File

@@ -109,7 +109,7 @@ function processIcon(string $content, string $iconId): array
/**
* Build a sprite from a directory of SVG files
*/
function buildSprite(string $sourceDir, string $outputFile, string $modeSuffix): void
function buildSprite(string $sourceDir, string $outputFile, string $modeSuffix, string $shape): void
{
if (!is_dir($sourceDir)) {
echo " Skipping: $sourceDir (not found)\n";
@@ -128,6 +128,9 @@ function buildSprite(string $sourceDir, string $outputFile, string $modeSuffix):
foreach ($files as $file) {
$filename = strtolower(basename($file, '.svg'));
// Symbol ID includes shape for uniqueness: {shape}_{brand}_{mode}
// e.g., text-only_paypal_lm, rectangle_visa_la, icon_mastercard_dm
$symbolId = $shape . '_' . $filename;
$content = file_get_contents($file);
// Extract viewBox from original SVG
@@ -135,7 +138,7 @@ function buildSprite(string $sourceDir, string $outputFile, string $modeSuffix):
$viewBox = $viewBoxMatch[1] ?? '0 0 45 45';
// Process the icon (convert styles, prefix IDs, extract defs)
$result = processIcon($content, $filename);
$result = processIcon($content, $symbolId);
if (empty($result['content'])) {
echo " Warning: Could not parse $filename\n";
@@ -152,7 +155,7 @@ function buildSprite(string $sourceDir, string $outputFile, string $modeSuffix):
$internalSymbols .= $result['symbols'];
}
$symbols[] = " <symbol id=\"$filename\" viewBox=\"$viewBox\">{$result['content']}</symbol>";
$symbols[] = " <symbol id=\"$symbolId\" viewBox=\"$viewBox\">{$result['content']}</symbol>";
}
if (empty($symbols)) {
@@ -180,7 +183,7 @@ foreach ($paymentShapes as $shape) {
foreach ($modes as $modeDir => $modeSuffix) {
$sourceDir = "$materialsDir/payment-icons/$shape/$modeDir";
$outputFile = "$outputDir/payments/$shape-$modeSuffix.svg";
buildSprite($sourceDir, $outputFile, $modeSuffix);
buildSprite($sourceDir, $outputFile, $modeSuffix, $shape);
}
}
@@ -190,7 +193,7 @@ foreach ($socialShapes as $shape) {
foreach ($modes as $modeDir => $modeSuffix) {
$sourceDir = "$materialsDir/socials-icons/$shape/$modeDir";
$outputFile = "$outputDir/socials/$shape-$modeSuffix.svg";
buildSprite($sourceDir, $outputFile, $modeSuffix);
buildSprite($sourceDir, $outputFile, $modeSuffix, $shape);
}
}

View File

@@ -143,11 +143,38 @@
<h3>Square (logo in square frame) - Light Accent</h3>
<div class="grid" id="payments-square-la"></div>
<h3>Square (logo in square frame) - Dark Accent on Dark Background</h3>
<div class="grid" id="payments-square-da"></div>
<h3>Square (logo in square frame) - Light Mode (monochrome)</h3>
<div class="grid" id="payments-square-lm"></div>
<h3>Square (logo in square frame) - Dark Mode (monochrome) on Dark Background</h3>
<div class="grid" id="payments-square-dm"></div>
<h3>Rectangle (icon + brand text, 150×100) - Light Accent</h3>
<div class="grid grid-wide" id="payments-rectangle-la"></div>
<h3>Rectangle (icon + brand text, 150×100) - Dark Accent on Dark Background</h3>
<div class="grid grid-wide" id="payments-rectangle-da"></div>
<h3>Rectangle (icon + brand text, 150×100) - Light Mode (monochrome)</h3>
<div class="grid grid-wide" id="payments-rectangle-lm"></div>
<h3>Rectangle (icon + brand text, 150×100) - Dark Mode (monochrome) on Dark Background</h3>
<div class="grid grid-wide" id="payments-rectangle-dm"></div>
<h3>Text Only (brand name) - Light Accent</h3>
<div class="grid grid-wide" id="payments-text-only-la"></div>
<h3>Text Only (brand name) - Dark Accent on Dark Background</h3>
<div class="grid grid-wide" id="payments-text-only-da"></div>
<h3>Text Only (brand name) - Light Mode (monochrome)</h3>
<div class="grid grid-wide" id="payments-text-only-lm"></div>
<h3>Text Only (brand name) - Dark Mode (monochrome) on Dark Background</h3>
<div class="grid grid-wide" id="payments-text-only-dm"></div>
</div>
<div id="socials" class="section">
@@ -159,19 +186,43 @@
<h3>Icon (logo mark only) - Dark Accent on Dark Background</h3>
<div class="grid" id="socials-icon-da"></div>
<h3>Icon (logo mark only) - Light Mode (monochrome)</h3>
<div class="grid" id="socials-icon-lm"></div>
<h3>Icon (logo mark only) - Dark Mode (monochrome) on Dark Background</h3>
<div class="grid" id="socials-icon-dm"></div>
<h3>Full Logo (icon + brand text, 150×100) - Light Accent</h3>
<div class="grid grid-wide" id="socials-full-logo-la"></div>
<h3>Full Logo (icon + brand text, 150×100) - Dark Accent on Dark Background</h3>
<div class="grid grid-wide" id="socials-full-logo-da"></div>
<h3>Full Logo (icon + brand text, 150×100) - Light Mode (monochrome)</h3>
<div class="grid grid-wide" id="socials-full-logo-lm"></div>
<h3>Full Logo (icon + brand text, 150×100) - Dark Mode (monochrome) on Dark Background</h3>
<div class="grid grid-wide" id="socials-full-logo-dm"></div>
<h3>Text Only (brand name) - Light Accent</h3>
<div class="grid grid-wide" id="socials-text-only-la"></div>
<h3>Text Only (brand name) - Dark Accent on Dark Background</h3>
<div class="grid grid-wide" id="socials-text-only-da"></div>
<h3>Text Only (brand name) - Light Mode (monochrome)</h3>
<div class="grid grid-wide" id="socials-text-only-lm"></div>
<h3>Text Only (brand name) - Dark Mode (monochrome) on Dark Background</h3>
<div class="grid grid-wide" id="socials-text-only-dm"></div>
</div>
<script>
const paymentBrands = [
'afterpay', 'alipay', 'alma', 'amazon_pay', 'american_express', 'apple_pay',
'afterpay', 'alipay', 'alma', 'amazon', 'american_express', 'apple_pay',
'bacs', 'bancontact', 'bank', 'billie', 'blik', 'cartes_bancaires', 'cod',
'credit_pay', 'eps', 'google_pay', 'ideal', 'jcb', 'kakao_pay', 'klarna',
'link', 'mastercard', 'mobilepay', 'multibanco', 'naverpay', 'p24', 'payco',
'link', 'mastercard', 'mobilepay', 'multibanco', 'naver_pay', 'przelewy24', 'payco',
'paypal', 'pickup', 'point_of_sale', 'quote', 'revolut', 'samsung_pay', 'satispay',
'sepa', 'twint', 'visa', 'wechat_pay'
];
@@ -181,7 +232,7 @@
'outlook', 'paypal', 'reddit', 'tiktok', 'x', 'yahoo'
];
function renderIcons(containerId, brands, spriteFile, suffix, size, isDark = false) {
function renderIcons(containerId, brands, spriteFile, suffix, size, isDark = false, shape = 'icon') {
const container = document.getElementById(containerId);
if (!container) return;
@@ -208,9 +259,9 @@
const symbolIds = Array.from(symbols).map(s => s.id);
console.log(`[${containerId}] Found ${symbols.length} symbols:`, symbolIds);
// Render icons
// Render icons - symbol ID format: {shape}_{brand}_{mode}
brands.forEach(brand => {
const id = `${brand}_${suffix}`;
const id = `${shape}_${brand}_${suffix}`;
const exists = symbolIds.includes(id);
if (!exists) {
@@ -259,7 +310,7 @@
}
// Render wide icons (150x100 aspect ratio)
function renderIconsWide(containerId, brands, spriteFile, suffix, width, height, isDark = false) {
function renderIconsWide(containerId, brands, spriteFile, suffix, width, height, isDark = false, shape = 'rectangle') {
const container = document.getElementById(containerId);
if (!container) return;
@@ -276,8 +327,9 @@
const symbols = div.querySelectorAll('symbol');
const symbolIds = Array.from(symbols).map(s => s.id);
// Symbol ID format: {shape}_{brand}_{mode}
brands.forEach(brand => {
const id = `${brand}_${suffix}`;
const id = `${shape}_${brand}_${suffix}`;
const exists = symbolIds.includes(id);
if (!exists) {
@@ -342,20 +394,47 @@
// Run debug after all sprites loaded
setTimeout(debugInvisibleIcons, 2000);
// Payment icons
renderIcons('payments-icon-la', paymentBrands, 'sprites/payments/icon-la.svg', 'la', 45);
renderIcons('payments-icon-da', paymentBrands, 'sprites/payments/icon-da.svg', 'da', 45, true);
renderIcons('payments-icon-lm', paymentBrands, 'sprites/payments/icon-lm.svg', 'lm', 45);
renderIcons('payments-icon-dm', paymentBrands, 'sprites/payments/icon-dm.svg', 'dm', 45, true);
renderIcons('payments-square-la', paymentBrands, 'sprites/payments/square-la.svg', 'la', 45);
renderIconsWide('payments-rectangle-la', paymentBrands, 'sprites/payments/rectangle-la.svg', 'la', 150, 100);
renderIconsWide('payments-text-only-la', paymentBrands, 'sprites/payments/text-only-la.svg', 'la', 150, 100);
// Payment icons - Icon
renderIcons('payments-icon-la', paymentBrands, 'sprites/payments/icon-la.svg', 'la', 45, false, 'icon');
renderIcons('payments-icon-da', paymentBrands, 'sprites/payments/icon-da.svg', 'da', 45, true, 'icon');
renderIcons('payments-icon-lm', paymentBrands, 'sprites/payments/icon-lm.svg', 'lm', 45, false, 'icon');
renderIcons('payments-icon-dm', paymentBrands, 'sprites/payments/icon-dm.svg', 'dm', 45, true, 'icon');
// Social icons
renderIcons('socials-icon-la', socialBrands, 'sprites/socials/icon-la.svg', 'la', 45);
renderIcons('socials-icon-da', socialBrands, 'sprites/socials/icon-da.svg', 'da', 45, true);
renderIconsWide('socials-full-logo-la', socialBrands, 'sprites/socials/full-logo-la.svg', 'la', 150, 100);
renderIconsWide('socials-text-only-la', socialBrands, 'sprites/socials/text-only-la.svg', 'la', 150, 100);
// Payment icons - Square
renderIcons('payments-square-la', paymentBrands, 'sprites/payments/square-la.svg', 'la', 45, false, 'square');
renderIcons('payments-square-da', paymentBrands, 'sprites/payments/square-da.svg', 'da', 45, true, 'square');
renderIcons('payments-square-lm', paymentBrands, 'sprites/payments/square-lm.svg', 'lm', 45, false, 'square');
renderIcons('payments-square-dm', paymentBrands, 'sprites/payments/square-dm.svg', 'dm', 45, true, 'square');
// Payment icons - Rectangle
renderIconsWide('payments-rectangle-la', paymentBrands, 'sprites/payments/rectangle-la.svg', 'la', 150, 100, false, 'rectangle');
renderIconsWide('payments-rectangle-da', paymentBrands, 'sprites/payments/rectangle-da.svg', 'da', 150, 100, true, 'rectangle');
renderIconsWide('payments-rectangle-lm', paymentBrands, 'sprites/payments/rectangle-lm.svg', 'lm', 150, 100, false, 'rectangle');
renderIconsWide('payments-rectangle-dm', paymentBrands, 'sprites/payments/rectangle-dm.svg', 'dm', 150, 100, true, 'rectangle');
// Payment icons - Text Only
renderIconsWide('payments-text-only-la', paymentBrands, 'sprites/payments/text-only-la.svg', 'la', 150, 100, false, 'text-only');
renderIconsWide('payments-text-only-da', paymentBrands, 'sprites/payments/text-only-da.svg', 'da', 150, 100, true, 'text-only');
renderIconsWide('payments-text-only-lm', paymentBrands, 'sprites/payments/text-only-lm.svg', 'lm', 150, 100, false, 'text-only');
renderIconsWide('payments-text-only-dm', paymentBrands, 'sprites/payments/text-only-dm.svg', 'dm', 150, 100, true, 'text-only');
// Social icons - Icon
renderIcons('socials-icon-la', socialBrands, 'sprites/socials/icon-la.svg', 'la', 45, false, 'icon');
renderIcons('socials-icon-da', socialBrands, 'sprites/socials/icon-da.svg', 'da', 45, true, 'icon');
renderIcons('socials-icon-lm', socialBrands, 'sprites/socials/icon-lm.svg', 'lm', 45, false, 'icon');
renderIcons('socials-icon-dm', socialBrands, 'sprites/socials/icon-dm.svg', 'dm', 45, true, 'icon');
// Social icons - Full Logo
renderIconsWide('socials-full-logo-la', socialBrands, 'sprites/socials/full-logo-la.svg', 'la', 150, 100, false, 'full-logo');
renderIconsWide('socials-full-logo-da', socialBrands, 'sprites/socials/full-logo-da.svg', 'da', 150, 100, true, 'full-logo');
renderIconsWide('socials-full-logo-lm', socialBrands, 'sprites/socials/full-logo-lm.svg', 'lm', 150, 100, false, 'full-logo');
renderIconsWide('socials-full-logo-dm', socialBrands, 'sprites/socials/full-logo-dm.svg', 'dm', 150, 100, true, 'full-logo');
// Social icons - Text Only
renderIconsWide('socials-text-only-la', socialBrands, 'sprites/socials/text-only-la.svg', 'la', 150, 100, false, 'text-only');
renderIconsWide('socials-text-only-da', socialBrands, 'sprites/socials/text-only-da.svg', 'da', 150, 100, true, 'text-only');
renderIconsWide('socials-text-only-lm', socialBrands, 'sprites/socials/text-only-lm.svg', 'lm', 150, 100, false, 'text-only');
renderIconsWide('socials-text-only-dm', socialBrands, 'sprites/socials/text-only-dm.svg', 'dm', 150, 100, true, 'text-only');
function showSection(name) {
document.querySelectorAll('.section').forEach(s => s.classList.remove('active'));

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 116 KiB

After

Width:  |  Height:  |  Size: 123 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 101 KiB

After

Width:  |  Height:  |  Size: 108 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 105 KiB

After

Width:  |  Height:  |  Size: 112 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 96 KiB

After

Width:  |  Height:  |  Size: 103 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 180 KiB

After

Width:  |  Height:  |  Size: 203 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 162 KiB

After

Width:  |  Height:  |  Size: 181 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 180 KiB

After

Width:  |  Height:  |  Size: 185 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 157 KiB

After

Width:  |  Height:  |  Size: 318 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 116 KiB

After

Width:  |  Height:  |  Size: 124 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 102 KiB

After

Width:  |  Height:  |  Size: 109 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 114 KiB

After

Width:  |  Height:  |  Size: 121 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 84 KiB

After

Width:  |  Height:  |  Size: 88 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 106 KiB

After

Width:  |  Height:  |  Size: 111 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 107 KiB

After

Width:  |  Height:  |  Size: 114 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 102 KiB

After

Width:  |  Height:  |  Size: 107 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 101 KiB

After

Width:  |  Height:  |  Size: 106 KiB

View File

@@ -1,57 +1,57 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs><clipPath id="amazon_da_b"><rect width="150" height="100" fill="none"/></clipPath>
<rect id="apple_da_SVGID_1_" width="150" height="100"/>
<clipPath id="apple_da_SVGID_00000169518954997074378040000002210711490692467639_">
<use xlink:href="#apple_da_SVGID_1_" style="overflow:visible;"/>
<defs><clipPath id="full-logo_amazon_da_b"><rect width="150" height="100" fill="none"/></clipPath>
<rect id="full-logo_apple_da_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_apple_da_SVGID_00000169518954997074378040000002210711490692467639_">
<use xlink:href="#full-logo_apple_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="facebook_da_SVGID_1_" width="150" height="100"/>
<clipPath id="facebook_da_SVGID_00000034801697883640781140000005727051432592256421_">
<use xlink:href="#facebook_da_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_facebook_da_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_facebook_da_SVGID_00000034801697883640781140000005727051432592256421_">
<use xlink:href="#full-logo_facebook_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="google_da_SVGID_1_" width="150" height="100"/>
<clipPath id="google_da_SVGID_00000010298734730609544400000000568488005254226823_">
<use xlink:href="#google_da_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_google_da_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_google_da_SVGID_00000010298734730609544400000000568488005254226823_">
<use xlink:href="#full-logo_google_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="linkedin_da_SVGID_1_" width="150" height="100"/>
<clipPath id="linkedin_da_SVGID_00000094593000543461315860000016705246333699746980_">
<use xlink:href="#linkedin_da_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_linkedin_da_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_linkedin_da_SVGID_00000094593000543461315860000016705246333699746980_">
<use xlink:href="#full-logo_linkedin_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="microsoft_da_SVGID_1_" width="150" height="100"/>
<clipPath id="microsoft_da_SVGID_00000054963972630066602830000003078374796115819711_">
<use xlink:href="#microsoft_da_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_microsoft_da_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_microsoft_da_SVGID_00000054963972630066602830000003078374796115819711_">
<use xlink:href="#full-logo_microsoft_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="outlook_da_SVGID_1_" width="150" height="100"/>
<clipPath id="outlook_da_SVGID_00000090976044247208368260000004242403662620913295_">
<use xlink:href="#outlook_da_SVGID_1_" style="overflow:visible;"/>
</clipPath><linearGradient id="outlook_da_SVGID_00000147216626394290373350000012694634894475375752_" gradientUnits="userSpaceOnUse" x1="15.15" y1="530.7631" x2="15.15" y2="519.9203" gradientTransform="matrix(1 0 0 -1 0 581.3334)">
<rect id="full-logo_outlook_da_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_outlook_da_SVGID_00000090976044247208368260000004242403662620913295_">
<use xlink:href="#full-logo_outlook_da_SVGID_1_" style="overflow:visible;"/>
</clipPath><linearGradient id="full-logo_outlook_da_SVGID_00000147216626394290373350000012694634894475375752_" gradientUnits="userSpaceOnUse" x1="15.15" y1="530.7631" x2="15.15" y2="519.9203" gradientTransform="matrix(1 0 0 -1 0 581.3334)">
<stop offset="0" style="stop-color:#35B8F1"/>
<stop offset="1" style="stop-color:#28A8EA"/>
</linearGradient><linearGradient id="outlook_da_SVGID_00000135691447010867119560000009743860802622061185_" gradientUnits="userSpaceOnUse" x1="2.1756" y1="538.44" x2="10.3682" y2="524.2508" gradientTransform="matrix(1 0 0 -1 0 581.3334)">
</linearGradient><linearGradient id="full-logo_outlook_da_SVGID_00000135691447010867119560000009743860802622061185_" gradientUnits="userSpaceOnUse" x1="2.1756" y1="538.44" x2="10.3682" y2="524.2508" gradientTransform="matrix(1 0 0 -1 0 581.3334)">
<stop offset="0" style="stop-color:#1784D9"/>
<stop offset="0.5" style="stop-color:#107AD5"/>
<stop offset="1" style="stop-color:#0A63C9"/>
</linearGradient><clipPath id="paypal_da_b"><rect x=".207" width="150" height="100" fill="none"/></clipPath>
<rect id="reddit_da_SVGID_1_" width="150" height="100"/>
<clipPath id="reddit_da_SVGID_00000009578584649892226830000014123196028576955545_">
<use xlink:href="#reddit_da_SVGID_1_" style="overflow:visible;"/>
</linearGradient><clipPath id="full-logo_paypal_da_b"><rect x=".207" width="150" height="100" fill="none"/></clipPath>
<rect id="full-logo_reddit_da_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_reddit_da_SVGID_00000009578584649892226830000014123196028576955545_">
<use xlink:href="#full-logo_reddit_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="tiktok_da_SVGID_1_" width="150" height="100"/>
<clipPath id="tiktok_da_SVGID_00000113322938044091049210000007912536715844678064_">
<use xlink:href="#tiktok_da_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_tiktok_da_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_tiktok_da_SVGID_00000113322938044091049210000007912536715844678064_">
<use xlink:href="#full-logo_tiktok_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="x_da_SVGID_1_" width="45" height="45"/>
<clipPath id="x_da_SVGID_00000164514804879238509620000002248351286751785613_">
<use xlink:href="#x_da_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_x_da_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_x_da_SVGID_00000142893863811930832530000010155980440211544999_">
<use xlink:href="#full-logo_x_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="yahoo_da_SVGID_1_" width="150" height="100"/>
<clipPath id="yahoo_da_SVGID_00000079456815953310622440000010919934911467776653_">
<use xlink:href="#yahoo_da_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_yahoo_da_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_yahoo_da_SVGID_00000079456815953310622440000010919934911467776653_">
<use xlink:href="#full-logo_yahoo_da_SVGID_1_" style="overflow:visible;"/>
</clipPath></defs>
<symbol id="amazon_da" viewBox="0 0 150 100"><g clip-path="url(#amazon_da_b)"><g><g><path d="M93.058,67.749c-8.715,6.431-21.35,9.852-32.23,9.852-15.249,0-28.98-5.636-39.372-15.02-.816-.736-.088-1.743,.893-1.173,11.211,6.524,25.075,10.453,39.394,10.453,9.659,0,20.278-2.005,30.048-6.149,1.474-.625,2.709,.971,1.267,2.036Z" fill="#f90" fill-rule="evenodd"/><path d="M96.685,63.609c-1.115-1.428-7.369-.677-10.178-.34-.851,.102-.983-.641-.215-1.18,4.988-3.504,13.163-2.492,14.113-1.32,.958,1.184-.25,9.379-4.926,13.291-.719,.602-1.403,.281-1.084-.514,1.052-2.627,3.407-8.509,2.292-9.937Z" fill="#f90" fill-rule="evenodd"/></g><path d="M86.705,37.336v-3.405c.002-.518,.392-.864,.863-.863l15.26-.002c.488,0,.879,.355,.88,.86v2.92c-.005,.49-.417,1.129-1.15,2.143l-7.904,11.286c2.934-.069,6.038,.37,8.704,1.869,.601,.338,.762,.839,.809,1.329v3.633c0,.501-.548,1.08-1.123,.779-4.697-2.46-10.93-2.729-16.124,.03-.531,.283-1.086-.288-1.086-.789v-3.454c0-.552,.01-1.498,.568-2.34l9.158-13.138-7.974-.002c-.487,0-.878-.347-.881-.857Z" fill="#fff" fill-rule="evenodd"/><path d="M31.04,58.601h-4.642c-.442-.029-.795-.361-.831-.785l.003-23.827c0-.477,.401-.858,.896-.858h4.323c.453,.022,.816,.364,.844,.799v3.111h.087c1.127-3.008,3.25-4.412,6.11-4.412,2.904,0,4.724,1.404,6.024,4.412,1.126-3.008,3.683-4.412,6.413-4.412,1.95,0,4.073,.802,5.374,2.607,1.473,2.006,1.17,4.914,1.17,7.471l-.004,15.036c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856v-12.632c-.001-1.003,.086-3.51-.131-4.463-.347-1.604-1.386-2.056-2.73-2.056-1.127,0-2.297,.752-2.774,1.956-.477,1.203-.433,3.209-.433,4.563v12.63c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856l-.005-12.632c0-2.657,.434-6.569-2.86-6.569-3.337,0-3.207,3.811-3.207,6.569l-.002,12.63c0,.476-.401,.858-.895,.858Z" fill="#fff" fill-rule="evenodd"/><path d="M116.845,32.629c6.891,0,10.617,5.917,10.617,13.438,0,7.27-4.116,13.037-10.617,13.037-6.761,0-10.444-5.917-10.444-13.287,0-7.421,3.727-13.187,10.444-13.187Zm.043,4.864c-3.424,0-3.641,4.663-3.641,7.571s-.043,9.126,3.597,9.126c3.597,0,3.77-5.014,3.77-8.073,0-2.006-.086-4.412-.693-6.318-.52-1.655-1.561-2.306-3.034-2.306Z" fill="#fff" fill-rule="evenodd"/><path d="M136.398,58.601h-4.625c-.465-.03-.833-.399-.833-.856l-.007-23.837c.039-.436,.424-.778,.892-.778h4.307c.405,.02,.74,.296,.825,.666v3.645h.087c1.3-3.259,3.12-4.814,6.327-4.814,2.08,0,4.117,.752,5.417,2.808,1.214,1.905,1.214,5.114,1.214,7.421v14.993c-.052,.423-.431,.751-.89,.751h-4.654c-.43-.028-.777-.344-.827-.751v-12.937c0-2.607,.303-6.418-2.904-6.418-1.127,0-2.167,.752-2.686,1.905-.65,1.454-.737,2.908-.737,4.513v12.83c-.008,.476-.409,.858-.904,.858Z" fill="#fff" fill-rule="evenodd"/><path d="M74.54,47.223c0,1.809,.043,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.906-4.673v1.005Zm4.68,11.319c-.308,.276-.75,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.549,2.596-4.354,3.375-7.654,3.375-3.908,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.73-1.608v-.603c0-1.105,.087-2.412-.565-3.367-.565-.854-1.65-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.08,.418-.386,.832-.806,.853l-4.5-.487c-.38-.086-.802-.39-.693-.97,1.034-5.459,5.964-7.108,10.382-7.108,2.258,0,5.212,.603,6.992,2.312,2.259,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.753,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.633,2.259-3.56,3.084l-.011-.01Z" fill="#fff" fill-rule="evenodd"/><path d="M13.68,47.223c0,1.809,.044,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.905-4.673v1.005Zm4.681,11.319c-.308,.276-.751,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.548,2.596-4.353,3.375-7.654,3.375-3.909,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.729-1.608v-.603c0-1.105,.087-2.412-.564-3.367-.565-.854-1.651-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.081,.418-.386,.832-.807,.853l-4.499-.487c-.38-.086-.803-.39-.693-.97,1.034-5.459,5.963-7.108,10.382-7.108,2.259,0,5.212,.603,6.992,2.312,2.258,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.752,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.634,2.259-3.56,3.084l-.011-.01Z" fill="#fff" fill-rule="evenodd"/></g></g></symbol>
<symbol id="apple_da" viewBox="0 0 150 100"><g>
<symbol id="full-logo_amazon_da" viewBox="0 0 150 100"><g clip-path="url(#full-logo_amazon_da_b)"><g><g><path d="M93.058,67.749c-8.715,6.431-21.35,9.852-32.23,9.852-15.249,0-28.98-5.636-39.372-15.02-.816-.736-.088-1.743,.893-1.173,11.211,6.524,25.075,10.453,39.394,10.453,9.659,0,20.278-2.005,30.048-6.149,1.474-.625,2.709,.971,1.267,2.036Z" fill="#f90" fill-rule="evenodd"/><path d="M96.685,63.609c-1.115-1.428-7.369-.677-10.178-.34-.851,.102-.983-.641-.215-1.18,4.988-3.504,13.163-2.492,14.113-1.32,.958,1.184-.25,9.379-4.926,13.291-.719,.602-1.403,.281-1.084-.514,1.052-2.627,3.407-8.509,2.292-9.937Z" fill="#f90" fill-rule="evenodd"/></g><path d="M86.705,37.336v-3.405c.002-.518,.392-.864,.863-.863l15.26-.002c.488,0,.879,.355,.88,.86v2.92c-.005,.49-.417,1.129-1.15,2.143l-7.904,11.286c2.934-.069,6.038,.37,8.704,1.869,.601,.338,.762,.839,.809,1.329v3.633c0,.501-.548,1.08-1.123,.779-4.697-2.46-10.93-2.729-16.124,.03-.531,.283-1.086-.288-1.086-.789v-3.454c0-.552,.01-1.498,.568-2.34l9.158-13.138-7.974-.002c-.487,0-.878-.347-.881-.857Z" fill="#fff" fill-rule="evenodd"/><path d="M31.04,58.601h-4.642c-.442-.029-.795-.361-.831-.785l.003-23.827c0-.477,.401-.858,.896-.858h4.323c.453,.022,.816,.364,.844,.799v3.111h.087c1.127-3.008,3.25-4.412,6.11-4.412,2.904,0,4.724,1.404,6.024,4.412,1.126-3.008,3.683-4.412,6.413-4.412,1.95,0,4.073,.802,5.374,2.607,1.473,2.006,1.17,4.914,1.17,7.471l-.004,15.036c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856v-12.632c-.001-1.003,.086-3.51-.131-4.463-.347-1.604-1.386-2.056-2.73-2.056-1.127,0-2.297,.752-2.774,1.956-.477,1.203-.433,3.209-.433,4.563v12.63c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856l-.005-12.632c0-2.657,.434-6.569-2.86-6.569-3.337,0-3.207,3.811-3.207,6.569l-.002,12.63c0,.476-.401,.858-.895,.858Z" fill="#fff" fill-rule="evenodd"/><path d="M116.845,32.629c6.891,0,10.617,5.917,10.617,13.438,0,7.27-4.116,13.037-10.617,13.037-6.761,0-10.444-5.917-10.444-13.287,0-7.421,3.727-13.187,10.444-13.187Zm.043,4.864c-3.424,0-3.641,4.663-3.641,7.571s-.043,9.126,3.597,9.126c3.597,0,3.77-5.014,3.77-8.073,0-2.006-.086-4.412-.693-6.318-.52-1.655-1.561-2.306-3.034-2.306Z" fill="#fff" fill-rule="evenodd"/><path d="M136.398,58.601h-4.625c-.465-.03-.833-.399-.833-.856l-.007-23.837c.039-.436,.424-.778,.892-.778h4.307c.405,.02,.74,.296,.825,.666v3.645h.087c1.3-3.259,3.12-4.814,6.327-4.814,2.08,0,4.117,.752,5.417,2.808,1.214,1.905,1.214,5.114,1.214,7.421v14.993c-.052,.423-.431,.751-.89,.751h-4.654c-.43-.028-.777-.344-.827-.751v-12.937c0-2.607,.303-6.418-2.904-6.418-1.127,0-2.167,.752-2.686,1.905-.65,1.454-.737,2.908-.737,4.513v12.83c-.008,.476-.409,.858-.904,.858Z" fill="#fff" fill-rule="evenodd"/><path d="M74.54,47.223c0,1.809,.043,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.906-4.673v1.005Zm4.68,11.319c-.308,.276-.75,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.549,2.596-4.354,3.375-7.654,3.375-3.908,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.73-1.608v-.603c0-1.105,.087-2.412-.565-3.367-.565-.854-1.65-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.08,.418-.386,.832-.806,.853l-4.5-.487c-.38-.086-.802-.39-.693-.97,1.034-5.459,5.964-7.108,10.382-7.108,2.258,0,5.212,.603,6.992,2.312,2.259,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.753,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.633,2.259-3.56,3.084l-.011-.01Z" fill="#fff" fill-rule="evenodd"/><path d="M13.68,47.223c0,1.809,.044,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.905-4.673v1.005Zm4.681,11.319c-.308,.276-.751,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.548,2.596-4.353,3.375-7.654,3.375-3.909,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.729-1.608v-.603c0-1.105,.087-2.412-.564-3.367-.565-.854-1.651-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.081,.418-.386,.832-.807,.853l-4.499-.487c-.38-.086-.803-.39-.693-.97,1.034-5.459,5.963-7.108,10.382-7.108,2.259,0,5.212,.603,6.992,2.312,2.258,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.752,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.634,2.259-3.56,3.084l-.011-.01Z" fill="#fff" fill-rule="evenodd"/></g></g></symbol>
<symbol id="full-logo_apple_da" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#apple_da_SVGID_00000169518954997074378040000002210711490692467639_);">
<g style="clip-path:url(#full-logo_apple_da_SVGID_00000169518954997074378040000002210711490692467639_);">
<path style="fill:#FFFFFF;" d="M34.9,51.6c-0.1-6.5,5.3-9.6,5.5-9.8c-3-4.4-7.7-5-9.4-5.1c-4-0.4-7.8,2.4-9.8,2.4s-5.2-2.3-8.5-2.2
c-4.4,0.1-8.4,2.5-10.6,6.4C-2.4,51.2,1,62.8,5.4,69.2c2.2,3.1,4.7,6.6,8.1,6.5c3.3-0.1,4.5-2.1,8.4-2.1s5,2.1,8.5,2
c3.5-0.1,5.7-3.2,7.9-6.3c2.5-3.6,3.5-7.1,3.5-7.3C41.7,61.9,35,59.4,34.9,51.6"/>
@@ -68,18 +68,18 @@
L135.4,57.4z M146.4,54.7c0-2.4-1-6.1-5.2-6.1c-3.8,0-5.4,3.5-5.7,6.1H146.4z"/>
</g>
</g></symbol>
<symbol id="facebook_da" viewBox="0 0 150 100"><g>
<symbol id="full-logo_facebook_da" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#facebook_da_SVGID_00000034801697883640781140000005727051432592256421_);">
<g id="facebook_da_Logo">
<path id="facebook_da_Initiator" style="fill:#0866FF;" d="M34.6,50c0-9.6-7.7-17.3-17.3-17.3S0,40.4,0,50c0,8.1,5.6,14.9,13.1,16.8V55.3H9.6V50h3.6
<g style="clip-path:url(#full-logo_facebook_da_SVGID_00000034801697883640781140000005727051432592256421_);">
<g id="full-logo_facebook_da_Logo">
<path id="full-logo_facebook_da_Initiator" style="fill:#0866FF;" d="M34.6,50c0-9.6-7.7-17.3-17.3-17.3S0,40.4,0,50c0,8.1,5.6,14.9,13.1,16.8V55.3H9.6V50h3.6
v-2.3c0-5.9,2.7-8.6,8.4-8.6c1.1,0,3,0.2,3.8,0.4v4.8c-0.4,0-1.1-0.1-2-0.1c-2.8,0-3.9,1.1-3.9,3.9V50H25l-1,5.3h-4.7v11.9
C28,66.1,34.6,58.8,34.6,50z"/>
<path id="facebook_da_F" style="fill:#FFFFFF;" d="M24.1,55.3l1-5.3h-5.6v-1.9c0-2.8,1.1-3.9,3.9-3.9c0.9,0,1.6,0,2,0.1v-4.8c-0.8-0.2-2.7-0.4-3.8-0.4
<path id="full-logo_facebook_da_F" style="fill:#FFFFFF;" d="M24.1,55.3l1-5.3h-5.6v-1.9c0-2.8,1.1-3.9,3.9-3.9c0.9,0,1.6,0,2,0.1v-4.8c-0.8-0.2-2.7-0.4-3.8-0.4
c-5.8,0-8.4,2.7-8.4,8.6V50H9.6v5.3h3.6v11.5c1.3,0.3,2.7,0.5,4.2,0.5c0.7,0,1.4,0,2.1-0.1V55.3H24.1z"/>
</g>
<path id="facebook_da_path46" style="fill:#0766FF;" d="M137.4,59.1h3.5v-5.6l4.9,5.6h4.3l-5.7-6.5l4.8-5.6h-3.9l-4.4,5.2V40.6l-3.5,0.5L137.4,59.1
<path id="full-logo_facebook_da_path46" style="fill:#0766FF;" d="M137.4,59.1h3.5v-5.6l4.9,5.6h4.3l-5.7-6.5l4.8-5.6h-3.9l-4.4,5.2V40.6l-3.5,0.5L137.4,59.1
L137.4,59.1z M129.3,46.6c-3.9,0-6.6,2.6-6.6,6.4s2.7,6.4,6.6,6.4c3.9,0,6.6-2.6,6.6-6.4S133.2,46.6,129.3,46.6z M129.3,56.4
c-1.8,0-3-1.4-3-3.4c0-2,1.2-3.4,3-3.4c1.8,0,3,1.4,3,3.4C132.3,55,131.1,56.4,129.3,56.4z M115.1,46.6c-3.9,0-6.6,2.6-6.6,6.4
s2.7,6.4,6.6,6.4s6.6-2.6,6.6-6.4S119,46.6,115.1,46.6z M115.1,56.4c-1.8,0-3-1.4-3-3.4c0-2,1.2-3.4,3-3.4s3,1.4,3,3.4
@@ -95,10 +95,10 @@
c0.5,0,0.9,0,1.1,0v-2.7c-0.4-0.1-1.5-0.2-2.1-0.2c-3.2,0-4.7,1.5-4.7,4.8v1.3h-2v2.9h2v9.2h3.5v-9.2h2.6L53.7,46.9z"/>
</g>
</g></symbol>
<symbol id="google_da" viewBox="0 0 150 100"><g>
<symbol id="full-logo_google_da" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#google_da_SVGID_00000010298734730609544400000000568488005254226823_);">
<g style="clip-path:url(#full-logo_google_da_SVGID_00000010298734730609544400000000568488005254226823_);">
<path style="fill:#3780FF;" d="M18.5,25.5h1.3c4.6,0.1,9.2,2,12.5,5.3c-1.2,1.2-2.4,2.4-3.6,3.6c-1.8-1.7-4.1-2.9-6.5-3.4
c-3.6-0.8-7.4-0.1-10.4,2c-3.3,2.1-5.5,5.8-6,9.6c-0.5,3.8,0.6,7.9,3,10.8c2.4,2.9,6,4.7,9.8,4.8c3.5,0.2,7.2-0.9,9.8-3.3
c2-1.7,2.9-4.4,3.2-6.9c-4.2,0-8.4,0-12.5,0v-5.2h17.6c0.9,5.6-0.4,11.8-4.6,15.8c-2.8,2.8-6.7,4.5-10.7,4.8
@@ -123,44 +123,44 @@
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
</g>
</g></symbol>
<symbol id="linkedin_da" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="linkedin_da_base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
<symbol id="full-logo_linkedin_da" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="full-logo_linkedin_da_base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<g>
<g id="linkedin_da_layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#linkedin_da_SVGID_00000094593000543461315860000016705246333699746980_);">
<g id="linkedin_da_g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
<path id="linkedin_da_path14" inkscape:connector-curvature="0" style="fill:#006699;" d="M137.9,69.8c0,1.5,1.3,2.8,2.9,2.8h33c1.6,0,2.9-1.3,2.9-2.8
<g id="full-logo_linkedin_da_layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#full-logo_linkedin_da_SVGID_00000094593000543461315860000016705246333699746980_);">
<g id="full-logo_linkedin_da_g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
<path id="full-logo_linkedin_da_path14" inkscape:connector-curvature="0" style="fill:#006699;" d="M137.9,69.8c0,1.5,1.3,2.8,2.9,2.8h33c1.6,0,2.9-1.3,2.9-2.8
V36.4c0-1.5-1.3-2.8-2.9-2.8h-33c-1.6,0-2.9,1.3-2.9,2.8V69.8z"/>
<path id="linkedin_da_path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M29.4,39.9h16.2v5.3H35.3v20.3h-5.9
<path id="full-logo_linkedin_da_path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M29.4,39.9h16.2v5.3H35.3v20.3h-5.9
C29.4,65.5,29.4,39.9,29.4,39.9z"/>
<path id="linkedin_da_path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M53.8,39.9v17.6h-5.9V39.9H53.8z M50.8,59.9
<path id="full-logo_linkedin_da_path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M53.8,39.9v17.6h-5.9V39.9H53.8z M50.8,59.9
c2,0,3.3,1.4,3.3,3c0,1.7-1.3,3-3.3,3c-2,0-3.3-1.3-3.3-3C47.6,61.3,48.8,59.9,50.8,59.9L50.8,59.9L50.8,59.9z"/>
<path id="linkedin_da_path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M56.5,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
<path id="full-logo_linkedin_da_path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M56.5,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
c0.4,1.1,1.4,2.1,3,2.1c2.1,0,3-1.6,3-4v-9.4h5.9V50c0,5.4-2.9,7.9-6.7,7.9c-3.2,0-4.5-1.8-5.3-3h0v2.6h-5.9
C56.6,55.9,56.5,39.9,56.5,39.9L56.5,39.9z"/>
<path id="linkedin_da_path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M82.6,65.5h-5.9V39.9h5.9v5.7l1.5,1.8l4.6-7.6h7.2l-7.7,10.9
<path id="full-logo_linkedin_da_path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M82.6,65.5h-5.9V39.9h5.9v5.7l1.5,1.8l4.6-7.6h7.2l-7.7,10.9
l6.7,7.4h-7c0,0-4.8-6.7-5.2-7.4L82.6,65.5L82.6,65.5z"/>
<path id="linkedin_da_path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M111.5,47.2c0.1,0.5,0.2,1.3,0.2,2.3c0,4.6-2.3,9.2-8.4,9.2
<path id="full-logo_linkedin_da_path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M111.5,47.2c0.1,0.5,0.2,1.3,0.2,2.3c0,4.6-2.3,9.2-8.4,9.2
c-6.5,0-9.5-5.1-9.5-9.8c0-5.8,3.7-9.4,10-9.4c2.5,0,4.9,0.4,6.8,1.2l-0.8,3.9c-1.6-0.5-3.2-0.8-5.2-0.8c-2.7,0-5.1,1.1-5.3,3.5
L111.5,47.2L111.5,47.2z M99.3,51.2c0.2,1.5,1.2,3.7,3.7,3.7c2.7,0,3.3-2.4,3.3-3.7H99.3z"/>
<path id="linkedin_da_path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M126.1,65.5v-8.8h-0.1c-0.8,1.2-2.6,2.1-5,2.1
<path id="full-logo_linkedin_da_path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M126.1,65.5v-8.8h-0.1c-0.8,1.2-2.6,2.1-5,2.1
c-4.5,0-8.5-3.6-8.4-9.8c0-5.7,3.6-9.4,8-9.4c2.4,0,4.7,1.1,5.9,3.1h0.1l0.2-2.7h5.2c-0.1,1.2-0.2,3.4-0.2,5.5v20.1H126.1
L126.1,65.5z M126.1,48.1c0-0.5,0-0.9-0.1-1.3c-0.3-1.6-1.7-2.7-3.4-2.7c-2.4,0-4,2-4,5c0,2.9,1.3,5.2,4,5.2
c1.8,0,3.1-1.2,3.4-2.8c0.1-0.3,0.1-0.7,0.1-1.1L126.1,48.1L126.1,48.1z"/>
<path id="linkedin_da_path28" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M149.6,39.9v17.6h-5.9V39.9H149.6z M146.7,59.9
<path id="full-logo_linkedin_da_path28" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M149.6,39.9v17.6h-5.9V39.9H149.6z M146.7,59.9
c2,0,3.3,1.4,3.3,3c0,1.7-1.3,3-3.3,3c-2,0-3.3-1.3-3.3-3C143.4,61.3,144.7,59.9,146.7,59.9L146.7,59.9L146.7,59.9z"/>
<path id="linkedin_da_path30" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M152.9,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
<path id="full-logo_linkedin_da_path30" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M152.9,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
c0.4,1.1,1.4,2.1,3,2.1c2.1,0,3-1.6,3-4v-9.4h5.9V50c0,5.4-2.9,7.9-6.7,7.9c-3.2,0-4.5-1.8-5.3-3h0v2.6h-5.9
C152.9,55.9,152.9,39.9,152.9,39.9L152.9,39.9z"/>
</g>
</g>
</g></symbol>
<symbol id="microsoft_da" viewBox="0 0 150 100"><g>
<symbol id="full-logo_microsoft_da" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#microsoft_da_SVGID_00000054963972630066602830000003078374796115819711_);">
<g style="clip-path:url(#full-logo_microsoft_da_SVGID_00000054963972630066602830000003078374796115819711_);">
<path style="fill:#FFFFFF;" d="M62.4,40.4v19.2H59V44.5h0l-6,15.1h-2.2l-6.1-15.1h0v15.1h-3.1V40.4h4.8l5.5,14.2H52l5.8-14.2
C57.8,40.4,62.4,40.4,62.4,40.4z M65.1,41.9c0-0.5,0.2-1,0.6-1.3c0.4-0.4,0.8-0.5,1.4-0.5c0.6,0,1.1,0.2,1.4,0.5
c0.4,0.4,0.6,0.8,0.6,1.3s-0.2,1-0.6,1.3s-0.8,0.5-1.4,0.5c-0.6,0-1-0.2-1.4-0.5C65.4,42.8,65.1,42.4,65.1,41.9z M68.7,45.8v13.8
@@ -191,12 +191,12 @@
<rect x="16.8" y="50.8" style="fill:#FFB900;" width="15.2" height="15.2"/>
</g>
</g></symbol>
<symbol id="outlook_da" viewBox="0 0 150 100"><g>
<symbol id="full-logo_outlook_da" viewBox="0 0 150 100"><g>
<g>
<g>
<g style="clip-path:url(#outlook_da_SVGID_00000090976044247208368260000004242403662620913295_);">
<g style="clip-path:url(#full-logo_outlook_da_SVGID_00000090976044247208368260000004242403662620913295_);">
<g>
<path style="fill:#0A2767;" d="M24.5,50.6c0-0.2-0.1-0.4-0.3-0.5l0,0l0,0l-8.5-5c0,0-0.1,0-0.1-0.1c-0.3-0.2-0.7-0.2-1,0
c0,0-0.1,0-0.1,0.1l-8.5,5l0,0c-0.3,0.2-0.3,0.5-0.2,0.8c0,0,0.1,0.1,0.2,0.1l8.5,5c0,0,0.1,0,0.1,0.1c0.3,0.2,0.7,0.2,1,0
@@ -211,7 +211,7 @@
<path style="fill:#0078D4;" d="M18.3,52.3h5.1v5.1h-5.1V52.3z"/>
<path style="fill:url(#outlook_da_SVGID_00000147216626394290373350000012694634894475375752_);" d="M24.3,51L24.3,51l-8.5,4.8
<path style="fill:url(#full-logo_outlook_da_SVGID_00000147216626394290373350000012694634894475375752_);" d="M24.3,51L24.3,51l-8.5,4.8
c0,0-0.1,0-0.1,0.1C15.6,56,15.4,56,15.2,56l-0.5-0.3c0,0-0.1,0-0.1-0.1L6,50.7l0,0l-0.3-0.2v9.7c0,0.6,0.5,1.2,1.2,1.2h16.5
l0,0c0.1,0,0.3,0,0.4-0.1c0.1,0,0.1-0.1,0.2-0.1l0.1-0.1c0.3-0.2,0.5-0.6,0.5-0.9v-9.7C24.5,50.8,24.4,50.9,24.3,51z"/>
<path style="opacity:0.5;fill:#0A2767;enable-background:new ;" d="M24.1,50.5v0.6l-8.9,6.1L6,50.7l0,0l0,0l-0.8-0.5v-0.4h0.3l0.7,0.4l0,0h0.1l8.7,4.9l0.3,0.2h0.1
@@ -233,7 +233,7 @@
<path style="opacity:0.2;enable-background:new ;" d="M12.6,44.8v11c0,0.6-0.5,1-1,1H5.7V43.7h5.8C12.1,43.7,12.6,44.2,12.6,44.8L12.6,44.8z"/>
<path style="fill:url(#outlook_da_SVGID_00000135691447010867119560000009743860802622061185_);" d="M1,43.7h10.5c0.6,0,1,0.5,1,1v10.5
<path style="fill:url(#full-logo_outlook_da_SVGID_00000135691447010867119560000009743860802622061185_);" d="M1,43.7h10.5c0.6,0,1,0.5,1,1v10.5
c0,0.6-0.5,1-1,1H1c-0.6,0-1-0.5-1-1V44.8C0,44.2,0.5,43.7,1,43.7z"/>
<path style="fill:#FFFFFF;" d="M3.3,48.1c0.3-0.5,0.7-1,1.2-1.3c0.6-0.3,1.2-0.5,1.9-0.5c0.6,0,1.2,0.1,1.8,0.5C8.6,47.1,9,47.5,9.3,48
c0.3,0.6,0.4,1.2,0.4,1.9s-0.1,1.3-0.4,1.9c-0.3,0.5-0.7,1-1.2,1.3c-0.6,0.3-1.2,0.5-1.8,0.5S5,53.5,4.5,53.1
@@ -280,11 +280,11 @@
</g>
</g>
</g></symbol>
<symbol id="paypal_da" viewBox="0 0 150.207 100"><g clip-path="url(#paypal_da_b)"><g><path d="M56.088,39.878h-8.301c-.568,0-1.051,.413-1.14,.973l-3.357,21.285c-.067,.42,.259,.799,.685,.799h3.963c.568,0,1.051-.413,1.14-.975l.905-5.741c.087-.562,.572-.975,1.138-.975h2.628c5.468,0,8.624-2.646,9.448-7.889,.371-2.294,.016-4.096-1.058-5.359-1.18-1.386-3.272-2.119-6.05-2.119Zm.958,7.774c-.454,2.978-2.73,2.978-4.93,2.978h-1.253l.879-5.563c.052-.336,.343-.584,.683-.584h.574c1.499,0,2.913,0,3.644,.854,.436,.51,.569,1.267,.403,2.313Z" fill="#253b80"/><path d="M80.9,47.556h-3.975c-.339,0-.631,.248-.683,.584l-.176,1.112-.278-.403c-.861-1.249-2.779-1.666-4.695-1.666-4.392,0-8.144,3.327-8.875,7.994-.38,2.328,.16,4.554,1.481,6.106,1.211,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.682,.801h3.58c.569,0,1.05-.413,1.14-.975l2.148-13.605c.068-.419-.256-.799-.681-.799Zm-5.541,7.736c-.384,2.271-2.186,3.795-4.485,3.795-1.154,0-2.077-.37-2.669-1.072-.587-.697-.811-1.688-.624-2.793,.358-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.606,.715,.846,1.713,.672,2.812Z" fill="#253b80"/><path d="M102.07,47.556h-3.994c-.381,0-.739,.189-.955,.506l-5.509,8.115-2.335-7.798c-.147-.488-.597-.823-1.107-.823h-3.925c-.477,0-.808,.466-.657,.915l4.4,12.912-4.136,5.839c-.325,.46,.002,1.092,.564,1.092h3.99c.379,0,.733-.184,.948-.495l13.285-19.177c.318-.459-.009-1.086-.568-1.086Z" fill="#253b80"/><path d="M115.294,39.878h-8.302c-.567,0-1.05,.413-1.138,.973l-3.357,21.285c-.067,.42,.259,.799,.682,.799h4.26c.396,0,.734-.289,.796-.682l.953-6.033c.087-.562,.572-.975,1.138-.975h2.627c5.469,0,8.624-2.646,9.449-7.889,.373-2.294,.015-4.096-1.06-5.359-1.179-1.386-3.27-2.119-6.048-2.119Zm.958,7.774c-.453,2.978-2.728,2.978-4.93,2.978h-1.251l.88-5.563c.052-.336,.341-.584,.682-.584h.574c1.498,0,2.913,0,3.644,.854,.436,.51,.568,1.267,.402,2.313Z" fill="#179bd7"/><path d="M140.105,47.556h-3.973c-.341,0-.631,.248-.682,.584l-.176,1.112-.279-.403c-.861-1.249-2.778-1.666-4.693-1.666-4.392,0-8.143,3.327-8.874,7.994-.379,2.328,.159,4.554,1.48,6.106,1.214,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.685,.801h3.579c.567,0,1.05-.413,1.138-.975l2.15-13.605c.066-.419-.26-.799-.686-.799Zm-5.541,7.736c-.381,2.271-2.186,3.795-4.485,3.795-1.152,0-2.077-.37-2.669-1.072-.587-.697-.808-1.688-.624-2.793,.36-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.608,.715,.848,1.713,.672,2.812Z" fill="#179bd7"/><path d="M144.792,40.461l-3.407,21.675c-.067,.42,.259,.799,.682,.799h3.425c.569,0,1.052-.413,1.14-.975l3.36-21.284c.067-.42-.259-.8-.682-.8h-3.835c-.339,.001-.63,.249-.682,.585Z" fill="#179bd7"/><path d="M8.819,67.071l.635-4.032-1.414-.033H1.288l4.692-29.752c.015-.09,.062-.174,.131-.233,.069-.059,.158-.092,.25-.092h11.385c3.78,0,6.388,.786,7.75,2.339,.638,.728,1.045,1.489,1.242,2.327,.206,.879,.21,1.929,.008,3.209l-.015,.093v.82l.638,.362c.538,.285,.965,.612,1.293,.986,.546,.623,.899,1.414,1.049,2.352,.154,.965,.103,2.113-.149,3.413-.291,1.495-.762,2.798-1.398,3.863-.585,.982-1.33,1.796-2.215,2.427-.845,.6-1.849,1.055-2.983,1.346-1.1,.286-2.353,.431-3.729,.431h-.886c-.634,0-1.249,.228-1.732,.637-.484,.418-.805,.988-.903,1.612l-.067,.363-1.121,7.106-.051,.261c-.013,.083-.036,.124-.07,.152-.03,.025-.074,.042-.117,.042,0,0-5.47,0-5.47,0Z" fill="#253b80"/><path d="M27.974,40.992h0c-.034,.217-.073,.439-.117,.668-1.501,7.708-6.638,10.371-13.198,10.371h-3.34c-.802,0-1.478,.583-1.603,1.374h0l-1.71,10.846-.484,3.074c-.081,.519,.319,.988,.844,.988h5.924c.702,0,1.297-.51,1.408-1.202l.058-.301,1.115-7.078,.072-.388c.109-.694,.706-1.204,1.408-1.204h.886c5.74,0,10.233-2.33,11.546-9.074,.549-2.817,.265-5.169-1.187-6.824-.439-.499-.984-.913-1.622-1.25Z" fill="#179bd7"/><path d="M26.403,40.365c-.229-.067-.466-.127-.709-.182-.244-.053-.494-.101-.751-.142-.901-.146-1.887-.215-2.945-.215H13.075c-.22,0-.428,.05-.615,.14-.411,.198-.717,.587-.791,1.064l-1.898,12.023-.055,.351c.125-.791,.801-1.374,1.603-1.374h3.34c6.56,0,11.697-2.664,13.198-10.371,.045-.228,.083-.45,.117-.668-.38-.201-.791-.374-1.234-.521-.109-.036-.222-.072-.336-.106Z" fill="#222d65"/><path d="M11.669,41.031c.074-.477,.38-.867,.791-1.063,.188-.09,.396-.14,.615-.14h8.923c1.057,0,2.044,.069,2.945,.215,.257,.041,.507,.089,.751,.142,.243,.055,.479,.115,.709,.182,.114,.034,.227,.069,.337,.104,.443,.147,.854,.32,1.234,.521,.447-2.849-.004-4.788-1.544-6.544-1.698-1.933-4.763-2.761-8.684-2.761H6.362c-.801,0-1.484,.583-1.608,1.375L.012,63.119c-.093,.595,.365,1.131,.965,1.131h7.029l1.765-11.197,1.898-12.023Z" fill="#253b80"/></g></g></symbol>
<symbol id="reddit_da" viewBox="0 0 150 100"><g>
<symbol id="full-logo_paypal_da" viewBox="0 0 150.207 100"><g clip-path="url(#full-logo_paypal_da_b)"><g><path d="M56.088,39.878h-8.301c-.568,0-1.051,.413-1.14,.973l-3.357,21.285c-.067,.42,.259,.799,.685,.799h3.963c.568,0,1.051-.413,1.14-.975l.905-5.741c.087-.562,.572-.975,1.138-.975h2.628c5.468,0,8.624-2.646,9.448-7.889,.371-2.294,.016-4.096-1.058-5.359-1.18-1.386-3.272-2.119-6.05-2.119Zm.958,7.774c-.454,2.978-2.73,2.978-4.93,2.978h-1.253l.879-5.563c.052-.336,.343-.584,.683-.584h.574c1.499,0,2.913,0,3.644,.854,.436,.51,.569,1.267,.403,2.313Z" fill="#253b80"/><path d="M80.9,47.556h-3.975c-.339,0-.631,.248-.683,.584l-.176,1.112-.278-.403c-.861-1.249-2.779-1.666-4.695-1.666-4.392,0-8.144,3.327-8.875,7.994-.38,2.328,.16,4.554,1.481,6.106,1.211,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.682,.801h3.58c.569,0,1.05-.413,1.14-.975l2.148-13.605c.068-.419-.256-.799-.681-.799Zm-5.541,7.736c-.384,2.271-2.186,3.795-4.485,3.795-1.154,0-2.077-.37-2.669-1.072-.587-.697-.811-1.688-.624-2.793,.358-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.606,.715,.846,1.713,.672,2.812Z" fill="#253b80"/><path d="M102.07,47.556h-3.994c-.381,0-.739,.189-.955,.506l-5.509,8.115-2.335-7.798c-.147-.488-.597-.823-1.107-.823h-3.925c-.477,0-.808,.466-.657,.915l4.4,12.912-4.136,5.839c-.325,.46,.002,1.092,.564,1.092h3.99c.379,0,.733-.184,.948-.495l13.285-19.177c.318-.459-.009-1.086-.568-1.086Z" fill="#253b80"/><path d="M115.294,39.878h-8.302c-.567,0-1.05,.413-1.138,.973l-3.357,21.285c-.067,.42,.259,.799,.682,.799h4.26c.396,0,.734-.289,.796-.682l.953-6.033c.087-.562,.572-.975,1.138-.975h2.627c5.469,0,8.624-2.646,9.449-7.889,.373-2.294,.015-4.096-1.06-5.359-1.179-1.386-3.27-2.119-6.048-2.119Zm.958,7.774c-.453,2.978-2.728,2.978-4.93,2.978h-1.251l.88-5.563c.052-.336,.341-.584,.682-.584h.574c1.498,0,2.913,0,3.644,.854,.436,.51,.568,1.267,.402,2.313Z" fill="#179bd7"/><path d="M140.105,47.556h-3.973c-.341,0-.631,.248-.682,.584l-.176,1.112-.279-.403c-.861-1.249-2.778-1.666-4.693-1.666-4.392,0-8.143,3.327-8.874,7.994-.379,2.328,.159,4.554,1.48,6.106,1.214,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.685,.801h3.579c.567,0,1.05-.413,1.138-.975l2.15-13.605c.066-.419-.26-.799-.686-.799Zm-5.541,7.736c-.381,2.271-2.186,3.795-4.485,3.795-1.152,0-2.077-.37-2.669-1.072-.587-.697-.808-1.688-.624-2.793,.36-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.608,.715,.848,1.713,.672,2.812Z" fill="#179bd7"/><path d="M144.792,40.461l-3.407,21.675c-.067,.42,.259,.799,.682,.799h3.425c.569,0,1.052-.413,1.14-.975l3.36-21.284c.067-.42-.259-.8-.682-.8h-3.835c-.339,.001-.63,.249-.682,.585Z" fill="#179bd7"/><path d="M8.819,67.071l.635-4.032-1.414-.033H1.288l4.692-29.752c.015-.09,.062-.174,.131-.233,.069-.059,.158-.092,.25-.092h11.385c3.78,0,6.388,.786,7.75,2.339,.638,.728,1.045,1.489,1.242,2.327,.206,.879,.21,1.929,.008,3.209l-.015,.093v.82l.638,.362c.538,.285,.965,.612,1.293,.986,.546,.623,.899,1.414,1.049,2.352,.154,.965,.103,2.113-.149,3.413-.291,1.495-.762,2.798-1.398,3.863-.585,.982-1.33,1.796-2.215,2.427-.845,.6-1.849,1.055-2.983,1.346-1.1,.286-2.353,.431-3.729,.431h-.886c-.634,0-1.249,.228-1.732,.637-.484,.418-.805,.988-.903,1.612l-.067,.363-1.121,7.106-.051,.261c-.013,.083-.036,.124-.07,.152-.03,.025-.074,.042-.117,.042,0,0-5.47,0-5.47,0Z" fill="#253b80"/><path d="M27.974,40.992h0c-.034,.217-.073,.439-.117,.668-1.501,7.708-6.638,10.371-13.198,10.371h-3.34c-.802,0-1.478,.583-1.603,1.374h0l-1.71,10.846-.484,3.074c-.081,.519,.319,.988,.844,.988h5.924c.702,0,1.297-.51,1.408-1.202l.058-.301,1.115-7.078,.072-.388c.109-.694,.706-1.204,1.408-1.204h.886c5.74,0,10.233-2.33,11.546-9.074,.549-2.817,.265-5.169-1.187-6.824-.439-.499-.984-.913-1.622-1.25Z" fill="#179bd7"/><path d="M26.403,40.365c-.229-.067-.466-.127-.709-.182-.244-.053-.494-.101-.751-.142-.901-.146-1.887-.215-2.945-.215H13.075c-.22,0-.428,.05-.615,.14-.411,.198-.717,.587-.791,1.064l-1.898,12.023-.055,.351c.125-.791,.801-1.374,1.603-1.374h3.34c6.56,0,11.697-2.664,13.198-10.371,.045-.228,.083-.45,.117-.668-.38-.201-.791-.374-1.234-.521-.109-.036-.222-.072-.336-.106Z" fill="#222d65"/><path d="M11.669,41.031c.074-.477,.38-.867,.791-1.063,.188-.09,.396-.14,.615-.14h8.923c1.057,0,2.044,.069,2.945,.215,.257,.041,.507,.089,.751,.142,.243,.055,.479,.115,.709,.182,.114,.034,.227,.069,.337,.104,.443,.147,.854,.32,1.234,.521,.447-2.849-.004-4.788-1.544-6.544-1.698-1.933-4.763-2.761-8.684-2.761H6.362c-.801,0-1.484,.583-1.608,1.375L.012,63.119c-.093,.595,.365,1.131,.965,1.131h7.029l1.765-11.197,1.898-12.023Z" fill="#253b80"/></g></g></symbol>
<symbol id="full-logo_reddit_da" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#reddit_da_SVGID_00000009578584649892226830000014123196028576955545_);">
<g style="clip-path:url(#full-logo_reddit_da_SVGID_00000009578584649892226830000014123196028576955545_);">
<g>
<circle style="fill:#FF4500;" cx="23.8" cy="50.6" r="24.2"/>
<path style="fill:#FFFFFF;" d="M40,50.6c-0.1-2-1.7-3.5-3.7-3.4c-0.9,0-1.7,0.4-2.3,1c-2.8-1.9-6-2.9-9.3-3l1.6-7.6l5.2,1.1
@@ -321,10 +321,10 @@
</g>
</g>
</g></symbol>
<symbol id="tiktok_da" viewBox="0 0 150 100"><g>
<symbol id="full-logo_tiktok_da" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#tiktok_da_SVGID_00000113322938044091049210000007912536715844678064_);">
<g style="clip-path:url(#full-logo_tiktok_da_SVGID_00000113322938044091049210000007912536715844678064_);">
<path style="fill:#FF004F;" d="M28.7,43.9c2.8,2,6.3,3.2,10,3.2v-7.2c-0.7,0-1.4-0.1-2.1-0.2v5.7c-3.7,0-7.2-1.2-10-3.2v14.7
c0,7.3-5.9,13.3-13.3,13.3c-2.7,0-5.3-0.8-7.4-2.2c2.4,2.5,5.8,4,9.5,4c7.3,0,13.3-5.9,13.3-13.3L28.7,43.9L28.7,43.9z M31.3,36.7
c-1.4-1.6-2.4-3.6-2.6-5.9v-0.9h-2C27.2,32.8,28.9,35.2,31.3,36.7L31.3,36.7z M10.5,62.2c-0.8-1.1-1.2-2.3-1.2-3.7
@@ -349,22 +349,19 @@
z M114.2,54.7c0-2.5,2.1-4.6,4.6-4.6c2.6,0,4.6,2.1,4.6,4.6s-2.1,4.6-4.6,4.6C116.3,59.3,114.2,57.2,114.2,54.7z"/>
</g>
</g></symbol>
<symbol id="x_da" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="x_da_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
<inkscape:page bleed="0" height="799.33301" id="x_da_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
</sodipodi:namedview>
<g>
<symbol id="full-logo_x_da" viewBox="0 0 150 100"><g>
<path id="x_da_path1-93" style="clip-path:url(#x_da_SVGID_00000164514804879238509620000002248351286751785613_);fill:#FFFFFF;" d="
M35.6,2.2h6.9L27.3,19.4L45,42.8H31.1L20.2,28.6L7.8,42.8H0.9l16-18.4L0,2.2h14.2l9.8,13L35.6,2.2z M33.1,38.8H37L12.2,6.1H8.1
L33.1,38.8z"/>
<path id="full-logo_x_da_path1-93" style="clip-path:url(#full-logo_x_da_SVGID_00000142893863811930832530000010155980440211544999_);fill:#FFFFFF;" d="M107.3,0
h17L86.8,42.4l43.6,57.6H96.2L69.3,65l-30.5,35h-17l39.4-45.3L19.6,0h35l24.1,32L107.3,0z M101.1,90.1h9.6L49.6,9.6H39.5
L101.1,90.1z"/>
</g></symbol>
<symbol id="yahoo_da" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="yahoo_da_base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
<symbol id="full-logo_yahoo_da" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="full-logo_yahoo_da_base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
</sodipodi:namedview>
<g>
<path id="yahoo_da_path1" style="clip-path:url(#yahoo_da_SVGID_00000079456815953310622440000010919934911467776653_);fill:#7D2EFF;" d="M53.8,29.2
<path id="full-logo_yahoo_da_path1" style="clip-path:url(#full-logo_yahoo_da_SVGID_00000079456815953310622440000010919934911467776653_);fill:#7D2EFF;" d="M53.8,29.2
v33.1h8.1V49.8c0-1.8,1-3.5,3-3.5c1.9,0,2.8,1.7,2.8,3.5v12.5h8.1V47.8c0-5.3-2.9-9-7.9-9c-4,0-6,2.7-6,2.7V29.2H53.8z M140.3,29.2
L131.7,50h9.7l8.6-20.7H140.3z M37.1,38.8c-6.7,0-10.9,6-10.9,12c0,6.7,4.6,12.1,10.8,12.1c4.6,0,6.3-2.8,6.3-2.8v2.2h7.8V39.3
h-7.8v2.1C43.3,41.4,41.4,38.8,37.1,38.8L37.1,38.8z M89.7,38.8c-7.7,0-12.3,5.8-12.3,12.1c0,7.1,5.5,12,12.3,12

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 42 KiB

View File

@@ -1,50 +1,50 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs><clipPath id="amazon_dm_b"><rect width="150" height="100" fill="none"/></clipPath>
<rect id="apple_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="apple_dm_SVGID_00000177441954738934506310000015251009647771493794_">
<use xlink:href="#apple_dm_SVGID_1_" style="overflow:visible;"/>
<defs><clipPath id="full-logo_amazon_dm_b"><rect width="150" height="100" fill="none"/></clipPath>
<rect id="full-logo_apple_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_apple_dm_SVGID_00000177441954738934506310000015251009647771493794_">
<use xlink:href="#full-logo_apple_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="facebook_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="facebook_dm_SVGID_00000109026708041419030190000015983849048534277035_">
<use xlink:href="#facebook_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_facebook_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_facebook_dm_SVGID_00000109026708041419030190000015983849048534277035_">
<use xlink:href="#full-logo_facebook_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="google_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="google_dm_SVGID_00000053523213113259821400000013631981694104637080_">
<use xlink:href="#google_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_google_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_google_dm_SVGID_00000053523213113259821400000013631981694104637080_">
<use xlink:href="#full-logo_google_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="linkedin_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="linkedin_dm_SVGID_00000170998448929004504650000012104473076896983693_">
<use xlink:href="#linkedin_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_linkedin_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_linkedin_dm_SVGID_00000170998448929004504650000012104473076896983693_">
<use xlink:href="#full-logo_linkedin_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="microsoft_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="microsoft_dm_SVGID_00000036236485145583007710000002577935605413961867_">
<use xlink:href="#microsoft_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_microsoft_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_microsoft_dm_SVGID_00000036236485145583007710000002577935605413961867_">
<use xlink:href="#full-logo_microsoft_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="outlook_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="outlook_dm_SVGID_00000016769387302581064570000017733187879555159223_">
<use xlink:href="#outlook_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath><clipPath id="paypal_dm_b"><rect width="150" height="100" fill="none"/></clipPath>
<rect id="reddit_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="reddit_dm_SVGID_00000015314544618797176570000006537095503431260085_">
<use xlink:href="#reddit_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_outlook_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_outlook_dm_SVGID_00000016769387302581064570000017733187879555159223_">
<use xlink:href="#full-logo_outlook_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath><clipPath id="full-logo_paypal_dm_b"><rect width="150" height="100" fill="none"/></clipPath>
<rect id="full-logo_reddit_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_reddit_dm_SVGID_00000015314544618797176570000006537095503431260085_">
<use xlink:href="#full-logo_reddit_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="tiktok_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="tiktok_dm_SVGID_00000029018499450441652170000018265823308205564063_">
<use xlink:href="#tiktok_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_tiktok_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_tiktok_dm_SVGID_00000029018499450441652170000018265823308205564063_">
<use xlink:href="#full-logo_tiktok_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="x_dm_SVGID_1_" width="45" height="45"/>
<clipPath id="x_dm_SVGID_00000078743550890106176290000000360767509830120849_">
<use xlink:href="#x_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_x_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_x_dm_SVGID_00000170970368726400743500000018182471966051747235_">
<use xlink:href="#full-logo_x_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="yahoo_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="yahoo_dm_SVGID_00000177476906562754991750000014625481674889339810_">
<use xlink:href="#yahoo_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_yahoo_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_yahoo_dm_SVGID_00000177476906562754991750000014625481674889339810_">
<use xlink:href="#full-logo_yahoo_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath></defs>
<symbol id="amazon_dm" viewBox="0 0 150 100"><g clip-path="url(#amazon_dm_b)"><g><g><path d="M93.058,67.749c-8.715,6.431-21.35,9.852-32.23,9.852-15.249,0-28.98-5.636-39.372-15.02-.816-.736-.088-1.743,.893-1.173,11.211,6.524,25.075,10.453,39.394,10.453,9.659,0,20.278-2.005,30.048-6.149,1.474-.625,2.709,.971,1.267,2.036Z" fill="#fff" fill-rule="evenodd"/><path d="M96.685,63.609c-1.115-1.428-7.369-.677-10.178-.34-.851,.102-.983-.641-.215-1.18,4.988-3.504,13.163-2.492,14.113-1.32,.958,1.184-.25,9.379-4.926,13.291-.719,.602-1.403,.281-1.084-.514,1.052-2.627,3.407-8.509,2.292-9.937Z" fill="#fff" fill-rule="evenodd"/></g><path d="M86.705,37.336v-3.405c.002-.518,.392-.864,.863-.863l15.26-.002c.488,0,.879,.355,.88,.86v2.92c-.005,.49-.417,1.129-1.15,2.143l-7.904,11.286c2.934-.069,6.038,.37,8.704,1.869,.601,.338,.762,.839,.809,1.329v3.633c0,.501-.548,1.08-1.123,.779-4.697-2.46-10.93-2.729-16.124,.03-.531,.283-1.086-.288-1.086-.789v-3.454c0-.552,.01-1.498,.568-2.34l9.158-13.138-7.974-.002c-.487,0-.878-.347-.881-.857Z" fill="#fff" fill-rule="evenodd"/><path d="M31.04,58.601h-4.642c-.442-.029-.795-.361-.831-.785l.003-23.827c0-.477,.401-.858,.896-.858h4.323c.453,.022,.816,.364,.844,.799v3.111h.087c1.127-3.008,3.25-4.412,6.11-4.412,2.904,0,4.724,1.404,6.024,4.412,1.126-3.008,3.683-4.412,6.413-4.412,1.95,0,4.073,.802,5.374,2.607,1.473,2.006,1.17,4.914,1.17,7.471l-.004,15.036c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856v-12.632c-.001-1.003,.086-3.51-.131-4.463-.347-1.604-1.386-2.056-2.73-2.056-1.127,0-2.297,.752-2.774,1.956-.477,1.203-.433,3.209-.433,4.563v12.63c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856l-.005-12.632c0-2.657,.434-6.569-2.86-6.569-3.337,0-3.207,3.811-3.207,6.569l-.002,12.63c0,.476-.401,.858-.895,.858Z" fill="#fff" fill-rule="evenodd"/><path d="M116.845,32.629c6.891,0,10.617,5.917,10.617,13.438,0,7.27-4.116,13.037-10.617,13.037-6.761,0-10.444-5.917-10.444-13.287,0-7.421,3.727-13.187,10.444-13.187Zm.043,4.864c-3.424,0-3.641,4.663-3.641,7.571s-.043,9.126,3.597,9.126c3.597,0,3.77-5.014,3.77-8.073,0-2.006-.086-4.412-.693-6.318-.52-1.655-1.561-2.306-3.034-2.306Z" fill="#fff" fill-rule="evenodd"/><path d="M136.398,58.601h-4.625c-.465-.03-.833-.399-.833-.856l-.007-23.837c.039-.436,.424-.778,.892-.778h4.307c.405,.02,.74,.296,.825,.666v3.645h.087c1.3-3.259,3.12-4.814,6.327-4.814,2.08,0,4.117,.752,5.417,2.808,1.214,1.905,1.214,5.114,1.214,7.421v14.993c-.052,.423-.431,.751-.89,.751h-4.654c-.43-.028-.777-.344-.827-.751v-12.937c0-2.607,.303-6.418-2.904-6.418-1.127,0-2.167,.752-2.686,1.905-.65,1.454-.737,2.908-.737,4.513v12.83c-.008,.476-.409,.858-.904,.858Z" fill="#fff" fill-rule="evenodd"/><path d="M74.54,47.223c0,1.809,.043,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.906-4.673v1.005Zm4.68,11.319c-.308,.276-.75,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.549,2.596-4.354,3.375-7.654,3.375-3.908,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.73-1.608v-.603c0-1.105,.087-2.412-.565-3.367-.565-.854-1.65-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.08,.418-.386,.832-.806,.853l-4.5-.487c-.38-.086-.802-.39-.693-.97,1.034-5.459,5.964-7.108,10.382-7.108,2.258,0,5.212,.603,6.992,2.312,2.259,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.753,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.633,2.259-3.56,3.084l-.011-.01Z" fill="#fff" fill-rule="evenodd"/><path d="M13.68,47.223c0,1.809,.044,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.905-4.673v1.005Zm4.681,11.319c-.308,.276-.751,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.548,2.596-4.353,3.375-7.654,3.375-3.909,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.729-1.608v-.603c0-1.105,.087-2.412-.564-3.367-.565-.854-1.651-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.081,.418-.386,.832-.807,.853l-4.499-.487c-.38-.086-.803-.39-.693-.97,1.034-5.459,5.963-7.108,10.382-7.108,2.259,0,5.212,.603,6.992,2.312,2.258,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.752,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.634,2.259-3.56,3.084l-.011-.01Z" fill="#fff" fill-rule="evenodd"/></g></g></symbol>
<symbol id="apple_dm" viewBox="0 0 150 100"><g>
<symbol id="full-logo_amazon_dm" viewBox="0 0 150 100"><g clip-path="url(#full-logo_amazon_dm_b)"><g><g><path d="M93.058,67.749c-8.715,6.431-21.35,9.852-32.23,9.852-15.249,0-28.98-5.636-39.372-15.02-.816-.736-.088-1.743,.893-1.173,11.211,6.524,25.075,10.453,39.394,10.453,9.659,0,20.278-2.005,30.048-6.149,1.474-.625,2.709,.971,1.267,2.036Z" fill="#fff" fill-rule="evenodd"/><path d="M96.685,63.609c-1.115-1.428-7.369-.677-10.178-.34-.851,.102-.983-.641-.215-1.18,4.988-3.504,13.163-2.492,14.113-1.32,.958,1.184-.25,9.379-4.926,13.291-.719,.602-1.403,.281-1.084-.514,1.052-2.627,3.407-8.509,2.292-9.937Z" fill="#fff" fill-rule="evenodd"/></g><path d="M86.705,37.336v-3.405c.002-.518,.392-.864,.863-.863l15.26-.002c.488,0,.879,.355,.88,.86v2.92c-.005,.49-.417,1.129-1.15,2.143l-7.904,11.286c2.934-.069,6.038,.37,8.704,1.869,.601,.338,.762,.839,.809,1.329v3.633c0,.501-.548,1.08-1.123,.779-4.697-2.46-10.93-2.729-16.124,.03-.531,.283-1.086-.288-1.086-.789v-3.454c0-.552,.01-1.498,.568-2.34l9.158-13.138-7.974-.002c-.487,0-.878-.347-.881-.857Z" fill="#fff" fill-rule="evenodd"/><path d="M31.04,58.601h-4.642c-.442-.029-.795-.361-.831-.785l.003-23.827c0-.477,.401-.858,.896-.858h4.323c.453,.022,.816,.364,.844,.799v3.111h.087c1.127-3.008,3.25-4.412,6.11-4.412,2.904,0,4.724,1.404,6.024,4.412,1.126-3.008,3.683-4.412,6.413-4.412,1.95,0,4.073,.802,5.374,2.607,1.473,2.006,1.17,4.914,1.17,7.471l-.004,15.036c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856v-12.632c-.001-1.003,.086-3.51-.131-4.463-.347-1.604-1.386-2.056-2.73-2.056-1.127,0-2.297,.752-2.774,1.956-.477,1.203-.433,3.209-.433,4.563v12.63c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856l-.005-12.632c0-2.657,.434-6.569-2.86-6.569-3.337,0-3.207,3.811-3.207,6.569l-.002,12.63c0,.476-.401,.858-.895,.858Z" fill="#fff" fill-rule="evenodd"/><path d="M116.845,32.629c6.891,0,10.617,5.917,10.617,13.438,0,7.27-4.116,13.037-10.617,13.037-6.761,0-10.444-5.917-10.444-13.287,0-7.421,3.727-13.187,10.444-13.187Zm.043,4.864c-3.424,0-3.641,4.663-3.641,7.571s-.043,9.126,3.597,9.126c3.597,0,3.77-5.014,3.77-8.073,0-2.006-.086-4.412-.693-6.318-.52-1.655-1.561-2.306-3.034-2.306Z" fill="#fff" fill-rule="evenodd"/><path d="M136.398,58.601h-4.625c-.465-.03-.833-.399-.833-.856l-.007-23.837c.039-.436,.424-.778,.892-.778h4.307c.405,.02,.74,.296,.825,.666v3.645h.087c1.3-3.259,3.12-4.814,6.327-4.814,2.08,0,4.117,.752,5.417,2.808,1.214,1.905,1.214,5.114,1.214,7.421v14.993c-.052,.423-.431,.751-.89,.751h-4.654c-.43-.028-.777-.344-.827-.751v-12.937c0-2.607,.303-6.418-2.904-6.418-1.127,0-2.167,.752-2.686,1.905-.65,1.454-.737,2.908-.737,4.513v12.83c-.008,.476-.409,.858-.904,.858Z" fill="#fff" fill-rule="evenodd"/><path d="M74.54,47.223c0,1.809,.043,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.906-4.673v1.005Zm4.68,11.319c-.308,.276-.75,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.549,2.596-4.354,3.375-7.654,3.375-3.908,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.73-1.608v-.603c0-1.105,.087-2.412-.565-3.367-.565-.854-1.65-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.08,.418-.386,.832-.806,.853l-4.5-.487c-.38-.086-.802-.39-.693-.97,1.034-5.459,5.964-7.108,10.382-7.108,2.258,0,5.212,.603,6.992,2.312,2.259,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.753,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.633,2.259-3.56,3.084l-.011-.01Z" fill="#fff" fill-rule="evenodd"/><path d="M13.68,47.223c0,1.809,.044,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.905-4.673v1.005Zm4.681,11.319c-.308,.276-.751,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.548,2.596-4.353,3.375-7.654,3.375-3.909,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.729-1.608v-.603c0-1.105,.087-2.412-.564-3.367-.565-.854-1.651-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.081,.418-.386,.832-.807,.853l-4.499-.487c-.38-.086-.803-.39-.693-.97,1.034-5.459,5.963-7.108,10.382-7.108,2.259,0,5.212,.603,6.992,2.312,2.258,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.752,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.634,2.259-3.56,3.084l-.011-.01Z" fill="#fff" fill-rule="evenodd"/></g></g></symbol>
<symbol id="full-logo_apple_dm" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#apple_dm_SVGID_00000177441954738934506310000015251009647771493794_);">
<g style="clip-path:url(#full-logo_apple_dm_SVGID_00000177441954738934506310000015251009647771493794_);">
<path style="fill:#FFFFFF;" d="M34.9,51.6c-0.1-6.5,5.3-9.6,5.5-9.8c-3-4.4-7.7-5-9.4-5.1c-4-0.4-7.8,2.4-9.8,2.4s-5.2-2.3-8.5-2.2
c-4.4,0.1-8.4,2.5-10.6,6.4C-2.4,51.2,1,62.8,5.4,69.2c2.2,3.1,4.7,6.6,8.1,6.5c3.3-0.1,4.5-2.1,8.4-2.1s5,2.1,8.5,2
c3.5-0.1,5.7-3.2,7.9-6.3c2.5-3.6,3.5-7.1,3.5-7.3C41.7,61.9,35,59.4,34.9,51.6"/>
@@ -61,18 +61,18 @@
L135.4,57.4z M146.4,54.7c0-2.4-1-6.1-5.2-6.1c-3.8,0-5.4,3.5-5.7,6.1H146.4z"/>
</g>
</g></symbol>
<symbol id="facebook_dm" viewBox="0 0 150 100"><g>
<symbol id="full-logo_facebook_dm" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#facebook_dm_SVGID_00000109026708041419030190000015983849048534277035_);">
<g id="facebook_dm_Logo">
<g style="clip-path:url(#full-logo_facebook_dm_SVGID_00000109026708041419030190000015983849048534277035_);">
<g id="full-logo_facebook_dm_Logo">
<path style="fill:#FFFFFF;" d="M34.6,50c0,8.8-6.6,16.1-15.2,17.2V55.3h4.7v0l1-5.3h-5.6v-1.9c0-1.4,0.3-2.4,0.9-3c0.1-0.1,0.2-0.1,0.2-0.2
c0.1-0.1,0.2-0.1,0.3-0.2c0.2-0.1,0.4-0.2,0.7-0.3c0.5-0.1,1.1-0.2,1.8-0.2c0.4,0,0.8,0,1.2,0c0.2,0,0.5,0,0.6,0
c0.1,0,0.1,0,0.2,0v-4.8c-0.2-0.1-0.6-0.1-1-0.2c-0.2,0-0.3,0-0.5-0.1c-0.1,0-0.2,0-0.3,0c-0.4,0-0.7-0.1-1.1-0.1
c-0.3,0-0.7,0-0.9,0c-2.9,0-5,0.7-6.4,2.1c-1.4,1.4-2,3.6-2,6.5V50H9.5v5.3h3.6v11.5C5.6,64.9,0,58.1,0,50
c0-9.6,7.7-17.3,17.3-17.3C26.8,32.7,34.6,40.4,34.6,50z"/>
</g>
<path id="facebook_dm_path46" style="fill:#FFFFFF;" d="M137.4,59.1h3.5v-5.6l4.9,5.6h4.3l-5.7-6.5l4.8-5.6h-3.9l-4.4,5.2V40.6l-3.5,0.5L137.4,59.1
<path id="full-logo_facebook_dm_path46" style="fill:#FFFFFF;" d="M137.4,59.1h3.5v-5.6l4.9,5.6h4.3l-5.7-6.5l4.8-5.6h-3.9l-4.4,5.2V40.6l-3.5,0.5L137.4,59.1
L137.4,59.1z M129.3,46.6c-3.9,0-6.6,2.6-6.6,6.4s2.7,6.4,6.6,6.4c3.9,0,6.6-2.6,6.6-6.4S133.2,46.6,129.3,46.6z M129.3,56.4
c-1.8,0-3-1.4-3-3.4c0-2,1.2-3.4,3-3.4c1.8,0,3,1.4,3,3.4C132.3,55,131.1,56.4,129.3,56.4z M115.1,46.6c-3.9,0-6.6,2.6-6.6,6.4
s2.7,6.4,6.6,6.4s6.6-2.6,6.6-6.4S119,46.6,115.1,46.6z M115.1,56.4c-1.8,0-3-1.4-3-3.4c0-2,1.2-3.4,3-3.4s3,1.4,3,3.4
@@ -88,10 +88,10 @@
c0.5,0,0.9,0,1.1,0v-2.7c-0.4-0.1-1.5-0.2-2.1-0.2c-3.2,0-4.7,1.5-4.7,4.8v1.3h-2v2.9h2v9.2h3.5v-9.2h2.6L53.7,46.9z"/>
</g>
</g></symbol>
<symbol id="google_dm" viewBox="0 0 150 100"><g>
<symbol id="full-logo_google_dm" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#google_dm_SVGID_00000053523213113259821400000013631981694104637080_);">
<g style="clip-path:url(#full-logo_google_dm_SVGID_00000053523213113259821400000013631981694104637080_);">
<path style="fill:#FFFFFF;" d="M18.5,25.5h1.3c4.6,0.1,9.2,2,12.5,5.3c-1.2,1.2-2.4,2.4-3.6,3.6c-1.8-1.7-4.1-2.9-6.5-3.4
c-3.6-0.8-7.4-0.1-10.4,2c-3.3,2.1-5.5,5.8-6,9.6c-0.5,3.8,0.6,7.9,3,10.8c2.4,2.9,6,4.7,9.8,4.8c3.5,0.2,7.2-0.9,9.8-3.3
c2-1.7,2.9-4.4,3.2-6.9c-4.2,0-8.4,0-12.5,0v-5.2h17.6c0.9,5.6-0.4,11.8-4.6,15.8c-2.8,2.8-6.7,4.5-10.7,4.8
@@ -116,32 +116,32 @@
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
</g>
</g></symbol>
<symbol id="linkedin_dm" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="linkedin_dm_base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
<symbol id="full-logo_linkedin_dm" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="full-logo_linkedin_dm_base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<g>
<g id="linkedin_dm_layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#linkedin_dm_SVGID_00000170998448929004504650000012104473076896983693_);">
<g id="linkedin_dm_g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
<g id="full-logo_linkedin_dm_layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#full-logo_linkedin_dm_SVGID_00000170998448929004504650000012104473076896983693_);">
<g id="full-logo_linkedin_dm_g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
<path style="fill:#FFFFFF;" d="M173.8,72.6h-33c-1.6,0-2.9-1.3-2.9-2.8V36.4c0-1.5,1.3-2.8,2.9-2.8h33c1.6,0,2.9,1.3,2.9,2.8v33.4
C176.6,71.3,175.3,72.6,173.8,72.6z M149.6,39.9h-5.9v17.6h5.9V39.9z M146.7,59.9L146.7,59.9c-2,0-3.3,1.3-3.3,3
c0,1.7,1.3,3,3.3,3c2,0,3.2-1.3,3.3-3C150,61.3,148.7,59.9,146.7,59.9z M170.7,39.9h-5.8v9.4c0,2.4-0.9,4-3,4
c-1.6,0-2.6-1.1-3-2.1c-0.2-0.4-0.2-0.9-0.2-1.4v-9.8h-5.8c0,0,0.1,15.9,0,17.6h5.8V55c0.8,1.2,2.2,2.9,5.3,2.9
c3.9,0,6.7-2.5,6.7-7.9V39.9z M158.7,55L158.7,55C158.7,55,158.7,55,158.7,55L158.7,55z"/>
<path id="linkedin_dm_path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M29.4,39.9h16.2v5.3H35.3v20.3h-5.9
<path id="full-logo_linkedin_dm_path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M29.4,39.9h16.2v5.3H35.3v20.3h-5.9
C29.4,65.5,29.4,39.9,29.4,39.9z"/>
<path id="linkedin_dm_path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M53.8,39.9v17.6h-5.9V39.9H53.8z M50.8,59.9
<path id="full-logo_linkedin_dm_path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M53.8,39.9v17.6h-5.9V39.9H53.8z M50.8,59.9
c2,0,3.3,1.4,3.3,3c0,1.7-1.3,3-3.3,3c-2,0-3.3-1.3-3.3-3C47.6,61.3,48.8,59.9,50.8,59.9L50.8,59.9L50.8,59.9z"/>
<path id="linkedin_dm_path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M56.5,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
<path id="full-logo_linkedin_dm_path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M56.5,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
c0.4,1.1,1.4,2.1,3,2.1c2.1,0,3-1.6,3-4v-9.4h5.9V50c0,5.4-2.9,7.9-6.7,7.9c-3.2,0-4.5-1.8-5.3-3h0v2.6h-5.9
C56.6,55.9,56.5,39.9,56.5,39.9L56.5,39.9z"/>
<path id="linkedin_dm_path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M82.6,65.5h-5.9V39.9h5.9v5.7l1.5,1.8l4.6-7.6h7.2l-7.7,10.9
<path id="full-logo_linkedin_dm_path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M82.6,65.5h-5.9V39.9h5.9v5.7l1.5,1.8l4.6-7.6h7.2l-7.7,10.9
l6.7,7.4h-7c0,0-4.8-6.7-5.2-7.4L82.6,65.5L82.6,65.5z"/>
<path id="linkedin_dm_path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M111.5,47.2c0.1,0.5,0.2,1.3,0.2,2.3c0,4.6-2.3,9.2-8.4,9.2
<path id="full-logo_linkedin_dm_path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M111.5,47.2c0.1,0.5,0.2,1.3,0.2,2.3c0,4.6-2.3,9.2-8.4,9.2
c-6.5,0-9.5-5.1-9.5-9.8c0-5.8,3.7-9.4,10-9.4c2.5,0,4.9,0.4,6.8,1.2l-0.8,3.9c-1.6-0.5-3.2-0.8-5.2-0.8c-2.7,0-5.1,1.1-5.3,3.5
L111.5,47.2L111.5,47.2z M99.3,51.2c0.2,1.5,1.2,3.7,3.7,3.7c2.7,0,3.3-2.4,3.3-3.7H99.3z"/>
<path id="linkedin_dm_path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M126.1,65.5v-8.8h-0.1c-0.8,1.2-2.6,2.1-5,2.1
<path id="full-logo_linkedin_dm_path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M126.1,65.5v-8.8h-0.1c-0.8,1.2-2.6,2.1-5,2.1
c-4.5,0-8.5-3.6-8.4-9.8c0-5.7,3.6-9.4,8-9.4c2.4,0,4.7,1.1,5.9,3.1h0.1l0.2-2.7h5.2c-0.1,1.2-0.2,3.4-0.2,5.5v20.1H126.1
L126.1,65.5z M126.1,48.1c0-0.5,0-0.9-0.1-1.3c-0.3-1.6-1.7-2.7-3.4-2.7c-2.4,0-4,2-4,5c0,2.9,1.3,5.2,4,5.2
c1.8,0,3.1-1.2,3.4-2.8c0.1-0.3,0.1-0.7,0.1-1.1L126.1,48.1L126.1,48.1z"/>
@@ -149,10 +149,10 @@
</g>
</g>
</g></symbol>
<symbol id="microsoft_dm" viewBox="0 0 150 100"><g>
<symbol id="full-logo_microsoft_dm" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#microsoft_dm_SVGID_00000036236485145583007710000002577935605413961867_);">
<g style="clip-path:url(#full-logo_microsoft_dm_SVGID_00000036236485145583007710000002577935605413961867_);">
<path style="fill:#FFFFFF;" d="M62.4,40.4v19.2H59V44.5h0l-6,15.1h-2.2l-6.1-15.1h0v15.1h-3.1V40.4h4.8l5.5,14.2H52l5.8-14.2
C57.8,40.4,62.4,40.4,62.4,40.4z M65.1,41.9c0-0.5,0.2-1,0.6-1.3c0.4-0.4,0.8-0.5,1.4-0.5c0.6,0,1.1,0.2,1.4,0.5
c0.4,0.4,0.6,0.8,0.6,1.3s-0.2,1-0.6,1.3s-0.8,0.5-1.4,0.5c-0.6,0-1-0.2-1.4-0.5C65.4,42.8,65.1,42.4,65.1,41.9z M68.7,45.8v13.8
@@ -183,11 +183,11 @@
<rect x="16.8" y="50.8" style="fill:#FFFFFF;" width="15.2" height="15.2"/>
</g>
</g></symbol>
<symbol id="outlook_dm" viewBox="0 0 150 100"><g>
<symbol id="full-logo_outlook_dm" viewBox="0 0 150 100"><g>
<g>
<g style="clip-path:url(#outlook_dm_SVGID_00000016769387302581064570000017733187879555159223_);">
<g style="clip-path:url(#full-logo_outlook_dm_SVGID_00000016769387302581064570000017733187879555159223_);">
<g>
<path style="fill:#FFFFFF;" d="M8.1,48.9c0.1,0.4,0.2,0.8,0.2,1.1c0,0.4-0.1,0.8-0.2,1.2c0,0,0,0,0,0c-0.1,0.2-0.2,0.3-0.3,0.5
c0,0.1-0.1,0.1-0.1,0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0.1-0.1,0.1c-0.1,0.1-0.3,0.2-0.4,0.2c-0.2,0.1-0.5,0.1-0.7,0.1
@@ -250,11 +250,11 @@
</g>
</g>
</g></symbol>
<symbol id="paypal_dm" viewBox="0 0 150 100"><g clip-path="url(#paypal_dm_b)"><g><path d="M55.881,39.878h-8.301c-.568,0-1.051,.413-1.14,.973l-3.357,21.285c-.067,.42,.259,.799,.685,.799h3.963c.568,0,1.051-.413,1.14-.975l.905-5.741c.087-.562,.572-.975,1.138-.975h2.628c5.468,0,8.624-2.646,9.448-7.889,.371-2.294,.016-4.096-1.058-5.359-1.18-1.386-3.272-2.119-6.05-2.119Zm.958,7.774c-.454,2.978-2.73,2.978-4.93,2.978h-1.253l.879-5.563c.052-.336,.343-.584,.683-.584h.574c1.499,0,2.913,0,3.644,.854,.436,.51,.569,1.267,.403,2.313Z" fill="#fff"/><path d="M80.693,47.556h-3.975c-.339,0-.631,.248-.683,.584l-.176,1.112-.278-.403c-.861-1.249-2.779-1.666-4.695-1.666-4.392,0-8.144,3.327-8.875,7.994-.38,2.328,.16,4.554,1.481,6.106,1.211,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.682,.801h3.58c.569,0,1.05-.413,1.14-.975l2.148-13.605c.068-.419-.256-.799-.681-.799Zm-5.541,7.736c-.384,2.271-2.186,3.795-4.485,3.795-1.154,0-2.077-.37-2.669-1.072-.587-.697-.811-1.688-.624-2.793,.358-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.606,.715,.846,1.713,.672,2.812Z" fill="#fff"/><path d="M101.863,47.556h-3.994c-.381,0-.739,.189-.955,.506l-5.509,8.115-2.335-7.798c-.147-.488-.597-.823-1.107-.823h-3.925c-.477,0-.808,.466-.657,.915l4.4,12.912-4.136,5.839c-.325,.46,.002,1.092,.564,1.092h3.99c.379,0,.733-.184,.948-.495l13.285-19.177c.318-.459-.009-1.086-.568-1.086Z" fill="#fff"/><path d="M115.088,39.878h-8.302c-.567,0-1.05,.413-1.138,.973l-3.357,21.285c-.067,.42,.259,.799,.682,.799h4.26c.396,0,.734-.289,.796-.682l.953-6.033c.087-.562,.572-.975,1.138-.975h2.627c5.469,0,8.624-2.646,9.449-7.889,.373-2.294,.015-4.096-1.06-5.359-1.179-1.386-3.27-2.119-6.048-2.119Zm.958,7.774c-.453,2.978-2.728,2.978-4.93,2.978h-1.251l.88-5.563c.052-.336,.341-.584,.682-.584h.574c1.498,0,2.913,0,3.644,.854,.436,.51,.568,1.267,.402,2.313Z" fill="#fff"/><path d="M139.899,47.556h-3.973c-.341,0-.631,.248-.682,.584l-.176,1.112-.279-.403c-.861-1.249-2.778-1.666-4.693-1.666-4.392,0-8.143,3.327-8.874,7.994-.379,2.328,.159,4.554,1.48,6.106,1.214,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.685,.801h3.579c.567,0,1.05-.413,1.138-.975l2.15-13.605c.066-.419-.26-.799-.686-.799Zm-5.541,7.736c-.381,2.271-2.186,3.795-4.485,3.795-1.152,0-2.077-.37-2.669-1.072-.587-.697-.808-1.688-.624-2.793,.36-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.608,.715,.848,1.713,.672,2.812Z" fill="#fff"/><path d="M144.585,40.461l-3.407,21.675c-.067,.42,.259,.799,.682,.799h3.425c.569,0,1.052-.413,1.14-.975l3.36-21.284c.067-.42-.259-.8-.682-.8h-3.835c-.339,.001-.63,.249-.682,.585Z" fill="#fff"/><g><path d="M25.677,40.069h0c.081-4.558-3.663-8.383-8.872-8.383H5.736c-.488,0-.977,.407-1.058,.895L.364,60.011c-.081,.488,.326,.977,.814,.977H7.608l1.628-10.093h0c.081-.488,.488-.895,1.058-.895h5.046c5.128,0,9.442-3.744,10.255-8.79,.081-.326,.081-.733,.081-1.139h0Z" fill="#fff"/><path d="M27.875,41.697c-.977,6.186-6.267,10.581-12.453,10.581h-3.988l-1.709,10.988h-2.36l-.651,4.07c-.081,.488,.244,.895,.733,.977h5.697c.488,0,.977-.407,1.058-.895l1.465-9.197c.081-.488,.488-.895,1.058-.895h3.256c5.128,0,9.442-3.744,10.255-8.79,.244-2.605-.651-5.046-2.36-6.837h0Z" fill="#fff"/></g></g></g></symbol>
<symbol id="reddit_dm" viewBox="0 0 150 100"><g>
<symbol id="full-logo_paypal_dm" viewBox="0 0 150 100"><g clip-path="url(#full-logo_paypal_dm_b)"><g><path d="M55.881,39.878h-8.301c-.568,0-1.051,.413-1.14,.973l-3.357,21.285c-.067,.42,.259,.799,.685,.799h3.963c.568,0,1.051-.413,1.14-.975l.905-5.741c.087-.562,.572-.975,1.138-.975h2.628c5.468,0,8.624-2.646,9.448-7.889,.371-2.294,.016-4.096-1.058-5.359-1.18-1.386-3.272-2.119-6.05-2.119Zm.958,7.774c-.454,2.978-2.73,2.978-4.93,2.978h-1.253l.879-5.563c.052-.336,.343-.584,.683-.584h.574c1.499,0,2.913,0,3.644,.854,.436,.51,.569,1.267,.403,2.313Z" fill="#fff"/><path d="M80.693,47.556h-3.975c-.339,0-.631,.248-.683,.584l-.176,1.112-.278-.403c-.861-1.249-2.779-1.666-4.695-1.666-4.392,0-8.144,3.327-8.875,7.994-.38,2.328,.16,4.554,1.481,6.106,1.211,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.682,.801h3.58c.569,0,1.05-.413,1.14-.975l2.148-13.605c.068-.419-.256-.799-.681-.799Zm-5.541,7.736c-.384,2.271-2.186,3.795-4.485,3.795-1.154,0-2.077-.37-2.669-1.072-.587-.697-.811-1.688-.624-2.793,.358-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.606,.715,.846,1.713,.672,2.812Z" fill="#fff"/><path d="M101.863,47.556h-3.994c-.381,0-.739,.189-.955,.506l-5.509,8.115-2.335-7.798c-.147-.488-.597-.823-1.107-.823h-3.925c-.477,0-.808,.466-.657,.915l4.4,12.912-4.136,5.839c-.325,.46,.002,1.092,.564,1.092h3.99c.379,0,.733-.184,.948-.495l13.285-19.177c.318-.459-.009-1.086-.568-1.086Z" fill="#fff"/><path d="M115.088,39.878h-8.302c-.567,0-1.05,.413-1.138,.973l-3.357,21.285c-.067,.42,.259,.799,.682,.799h4.26c.396,0,.734-.289,.796-.682l.953-6.033c.087-.562,.572-.975,1.138-.975h2.627c5.469,0,8.624-2.646,9.449-7.889,.373-2.294,.015-4.096-1.06-5.359-1.179-1.386-3.27-2.119-6.048-2.119Zm.958,7.774c-.453,2.978-2.728,2.978-4.93,2.978h-1.251l.88-5.563c.052-.336,.341-.584,.682-.584h.574c1.498,0,2.913,0,3.644,.854,.436,.51,.568,1.267,.402,2.313Z" fill="#fff"/><path d="M139.899,47.556h-3.973c-.341,0-.631,.248-.682,.584l-.176,1.112-.279-.403c-.861-1.249-2.778-1.666-4.693-1.666-4.392,0-8.143,3.327-8.874,7.994-.379,2.328,.159,4.554,1.48,6.106,1.214,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.685,.801h3.579c.567,0,1.05-.413,1.138-.975l2.15-13.605c.066-.419-.26-.799-.686-.799Zm-5.541,7.736c-.381,2.271-2.186,3.795-4.485,3.795-1.152,0-2.077-.37-2.669-1.072-.587-.697-.808-1.688-.624-2.793,.36-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.608,.715,.848,1.713,.672,2.812Z" fill="#fff"/><path d="M144.585,40.461l-3.407,21.675c-.067,.42,.259,.799,.682,.799h3.425c.569,0,1.052-.413,1.14-.975l3.36-21.284c.067-.42-.259-.8-.682-.8h-3.835c-.339,.001-.63,.249-.682,.585Z" fill="#fff"/><g><path d="M25.677,40.069h0c.081-4.558-3.663-8.383-8.872-8.383H5.736c-.488,0-.977,.407-1.058,.895L.364,60.011c-.081,.488,.326,.977,.814,.977H7.608l1.628-10.093h0c.081-.488,.488-.895,1.058-.895h5.046c5.128,0,9.442-3.744,10.255-8.79,.081-.326,.081-.733,.081-1.139h0Z" fill="#fff"/><path d="M27.875,41.697c-.977,6.186-6.267,10.581-12.453,10.581h-3.988l-1.709,10.988h-2.36l-.651,4.07c-.081,.488,.244,.895,.733,.977h5.697c.488,0,.977-.407,1.058-.895l1.465-9.197c.081-.488,.488-.895,1.058-.895h3.256c5.128,0,9.442-3.744,10.255-8.79,.244-2.605-.651-5.046-2.36-6.837h0Z" fill="#fff"/></g></g></g></symbol>
<symbol id="full-logo_reddit_dm" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#reddit_dm_SVGID_00000015314544618797176570000006537095503431260085_);">
<g style="clip-path:url(#full-logo_reddit_dm_SVGID_00000015314544618797176570000006537095503431260085_);">
<g>
<path style="fill:#FFFFFF;" d="M20.6,53c0,1.3-1.1,2.4-2.4,2.4c-1.3,0-2.4-1.1-2.4-2.4c0-1.3,1.1-2.4,2.4-2.4C19.5,50.6,20.6,51.7,20.6,53z
"/>
@@ -293,10 +293,10 @@
</g>
</g>
</g></symbol>
<symbol id="tiktok_dm" viewBox="0 0 150 100"><g>
<symbol id="full-logo_tiktok_dm" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#tiktok_dm_SVGID_00000029018499450441652170000018265823308205564063_);">
<g style="clip-path:url(#full-logo_tiktok_dm_SVGID_00000029018499450441652170000018265823308205564063_);">
<path style="fill:#FFFFFF;" d="M37.1,39.8v7.3c-3.8,0-7.3-1.2-10.2-3.2v14.9c0,7.4-6,13.5-13.5,13.5c-1.9,0-3.7-0.4-5.3-1.1
c-1.6-0.7-3.1-1.7-4.3-3C1.5,65.7,0,62.3,0,58.7c0-7.3,5.9-13.3,13.2-13.5c0.7,0,1.4,0,2.1,0.1v7.4c-0.6-0.2-1.2-0.3-1.9-0.3
c-3.4,0-6.2,2.8-6.2,6.2c0,1.3,0.4,2.7,1.3,3.7c1.1,1.5,2.9,2.4,4.9,2.4c3.4,0,6.1-2.7,6.2-6.1V29.6h7.3v0.9
@@ -309,22 +309,19 @@
z M113.7,54.7c0-2.6,2.1-4.6,4.7-4.6c2.6,0,4.7,2.1,4.7,4.6c0,2.6-2.1,4.6-4.7,4.6C115.8,59.4,113.7,57.3,113.7,54.7z"/>
</g>
</g></symbol>
<symbol id="x_dm" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="x_dm_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
<inkscape:page bleed="0" height="799.33301" id="x_dm_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
</sodipodi:namedview>
<g>
<symbol id="full-logo_x_dm" viewBox="0 0 150 100"><g>
<path id="x_dm_path1-93" style="clip-path:url(#x_dm_SVGID_00000078743550890106176290000000360767509830120849_);fill:#FFFFFF;" d="
M35.6,2.2h6.9L27.3,19.4L45,42.8H31.1L20.2,28.6L7.8,42.8H0.9l16-18.4L0,2.2h14.2l9.8,13L35.6,2.2z M33.1,38.8H37L12.2,6.1H8.1
L33.1,38.8z"/>
<path id="full-logo_x_dm_path1-93" style="clip-path:url(#full-logo_x_dm_SVGID_00000170970368726400743500000018182471966051747235_);fill:#FFFFFF;" d="M107.3,0
h17L86.8,42.4l43.6,57.6H96.2L69.3,65l-30.5,35h-17l39.4-45.3L19.6,0h35l24.1,32L107.3,0z M101.1,90.1h9.6L49.6,9.6H39.5
L101.1,90.1z"/>
</g></symbol>
<symbol id="yahoo_dm" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="yahoo_dm_base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
<symbol id="full-logo_yahoo_dm" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="full-logo_yahoo_dm_base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
</sodipodi:namedview>
<g>
<path id="yahoo_dm_path1" style="clip-path:url(#yahoo_dm_SVGID_00000177476906562754991750000014625481674889339810_);fill:#FFFFFF;" d="M53.8,29.2
<path id="full-logo_yahoo_dm_path1" style="clip-path:url(#full-logo_yahoo_dm_SVGID_00000177476906562754991750000014625481674889339810_);fill:#FFFFFF;" d="M53.8,29.2
v33.1h8.1V49.8c0-1.8,1-3.5,3-3.5c1.9,0,2.8,1.7,2.8,3.5v12.5h8.1V47.8c0-5.3-2.9-9-7.9-9c-4,0-6,2.7-6,2.7V29.2H53.8z M140.3,29.2
L131.7,50h9.7l8.6-20.7H140.3z M37.1,38.8c-6.7,0-10.9,6-10.9,12c0,6.7,4.6,12.1,10.8,12.1c4.6,0,6.3-2.8,6.3-2.8v2.2h7.8V39.3
h-7.8v2.1C43.3,41.4,41.4,38.8,37.1,38.8L37.1,38.8z M89.7,38.8c-7.7,0-12.3,5.8-12.3,12.1c0,7.1,5.5,12,12.3,12

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

View File

@@ -1,57 +1,57 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs><clipPath id="amazon_la_b"><rect width="150" height="100" fill="none"/></clipPath>
<rect id="apple_la_SVGID_1_" width="150" height="100"/>
<clipPath id="apple_la_SVGID_00000081647517059607176170000008484062834122158216_">
<use xlink:href="#apple_la_SVGID_1_" style="overflow:visible;"/>
<defs><clipPath id="full-logo_amazon_la_b"><rect width="150" height="100" fill="none"/></clipPath>
<rect id="full-logo_apple_la_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_apple_la_SVGID_00000081647517059607176170000008484062834122158216_">
<use xlink:href="#full-logo_apple_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="facebook_la_SVGID_1_" width="150" height="100"/>
<clipPath id="facebook_la_SVGID_00000075865216647744801580000014916326942865744290_">
<use xlink:href="#facebook_la_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_facebook_la_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_facebook_la_SVGID_00000075865216647744801580000014916326942865744290_">
<use xlink:href="#full-logo_facebook_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="google_la_SVGID_1_" width="150" height="100"/>
<clipPath id="google_la_SVGID_00000153666185488983044530000005209633213846120369_">
<use xlink:href="#google_la_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_google_la_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_google_la_SVGID_00000153666185488983044530000005209633213846120369_">
<use xlink:href="#full-logo_google_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="linkedin_la_SVGID_1_" width="150" height="100"/>
<clipPath id="linkedin_la_SVGID_00000065070852576844334280000001281980592361120161_">
<use xlink:href="#linkedin_la_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_linkedin_la_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_linkedin_la_SVGID_00000065070852576844334280000001281980592361120161_">
<use xlink:href="#full-logo_linkedin_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="microsoft_la_SVGID_1_" width="150" height="100"/>
<clipPath id="microsoft_la_SVGID_00000129928352737962937240000016489009966998995616_">
<use xlink:href="#microsoft_la_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_microsoft_la_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_microsoft_la_SVGID_00000129928352737962937240000016489009966998995616_">
<use xlink:href="#full-logo_microsoft_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="outlook_la_SVGID_1_" width="150" height="100"/>
<clipPath id="outlook_la_SVGID_00000154404825764364194380000012342248236497552543_">
<use xlink:href="#outlook_la_SVGID_1_" style="overflow:visible;"/>
</clipPath><linearGradient id="outlook_la_SVGID_00000152981272714850775810000004303565754682278323_" gradientUnits="userSpaceOnUse" x1="15.15" y1="-428.7631" x2="15.15" y2="-417.9203" gradientTransform="matrix(1 0 0 1 0 479.3334)">
<rect id="full-logo_outlook_la_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_outlook_la_SVGID_00000154404825764364194380000012342248236497552543_">
<use xlink:href="#full-logo_outlook_la_SVGID_1_" style="overflow:visible;"/>
</clipPath><linearGradient id="full-logo_outlook_la_SVGID_00000152981272714850775810000004303565754682278323_" gradientUnits="userSpaceOnUse" x1="15.15" y1="-428.7631" x2="15.15" y2="-417.9203" gradientTransform="matrix(1 0 0 1 0 479.3334)">
<stop offset="0" style="stop-color:#35B8F1"/>
<stop offset="1" style="stop-color:#28A8EA"/>
</linearGradient><linearGradient id="outlook_la_SVGID_00000064339090414695984750000011110627263165002412_" gradientUnits="userSpaceOnUse" x1="2.1756" y1="-436.44" x2="10.3682" y2="-422.2508" gradientTransform="matrix(1 0 0 1 0 479.3334)">
</linearGradient><linearGradient id="full-logo_outlook_la_SVGID_00000064339090414695984750000011110627263165002412_" gradientUnits="userSpaceOnUse" x1="2.1756" y1="-436.44" x2="10.3682" y2="-422.2508" gradientTransform="matrix(1 0 0 1 0 479.3334)">
<stop offset="0" style="stop-color:#1784D9"/>
<stop offset="0.5" style="stop-color:#107AD5"/>
<stop offset="1" style="stop-color:#0A63C9"/>
</linearGradient><clipPath id="paypal_la_b"><rect x=".207" width="150" height="100" fill="none"/></clipPath>
<rect id="reddit_la_SVGID_1_" width="150" height="100"/>
<clipPath id="reddit_la_SVGID_00000008827057192512136310000012488757103502315176_">
<use xlink:href="#reddit_la_SVGID_1_" style="overflow:visible;"/>
</linearGradient><clipPath id="full-logo_paypal_la_b"><rect x=".207" width="150" height="100" fill="none"/></clipPath>
<rect id="full-logo_reddit_la_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_reddit_la_SVGID_00000008827057192512136310000012488757103502315176_">
<use xlink:href="#full-logo_reddit_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="tiktok_la_SVGID_1_" width="150" height="100"/>
<clipPath id="tiktok_la_SVGID_00000119808487936749333020000002873267051657242269_">
<use xlink:href="#tiktok_la_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_tiktok_la_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_tiktok_la_SVGID_00000119808487936749333020000002873267051657242269_">
<use xlink:href="#full-logo_tiktok_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="x_la_SVGID_1_" width="45" height="45"/>
<clipPath id="x_la_SVGID_00000033354764030288795930000001479703675480923282_">
<use xlink:href="#x_la_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_x_la_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_x_la_SVGID_00000168801652664521502660000000954705109869302948_">
<use xlink:href="#full-logo_x_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="yahoo_la_SVGID_1_" width="150" height="100"/>
<clipPath id="yahoo_la_SVGID_00000006690309531539367560000016457833304281468817_">
<use xlink:href="#yahoo_la_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_yahoo_la_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_yahoo_la_SVGID_00000006690309531539367560000016457833304281468817_">
<use xlink:href="#full-logo_yahoo_la_SVGID_1_" style="overflow:visible;"/>
</clipPath></defs>
<symbol id="amazon_la" viewBox="0 0 150 100"><g clip-path="url(#amazon_la_b)"><g><g><path d="M93.058,67.749c-8.715,6.431-21.35,9.852-32.23,9.852-15.249,0-28.98-5.636-39.372-15.02-.816-.736-.088-1.743,.893-1.173,11.211,6.524,25.075,10.453,39.394,10.453,9.659,0,20.278-2.005,30.048-6.149,1.474-.625,2.709,.971,1.267,2.036Z" fill="#f90" fill-rule="evenodd"/><path d="M96.685,63.609c-1.115-1.428-7.369-.677-10.178-.34-.851,.102-.983-.641-.215-1.18,4.988-3.504,13.163-2.492,14.113-1.32,.958,1.184-.25,9.379-4.926,13.291-.719,.602-1.403,.281-1.084-.514,1.052-2.627,3.407-8.509,2.292-9.937Z" fill="#f90" fill-rule="evenodd"/></g><path d="M86.705,37.336v-3.405c.002-.518,.392-.864,.863-.863l15.26-.002c.488,0,.879,.355,.88,.86v2.92c-.005,.49-.417,1.129-1.15,2.143l-7.904,11.286c2.934-.069,6.038,.37,8.704,1.869,.601,.338,.762,.839,.809,1.329v3.633c0,.501-.548,1.08-1.123,.779-4.697-2.46-10.93-2.729-16.124,.03-.531,.283-1.086-.288-1.086-.789v-3.454c0-.552,.01-1.498,.568-2.34l9.158-13.138-7.974-.002c-.487,0-.878-.347-.881-.857Z" fill-rule="evenodd"/><path d="M31.04,58.601h-4.642c-.442-.029-.795-.361-.831-.785l.003-23.827c0-.477,.401-.858,.896-.858h4.323c.453,.022,.816,.364,.844,.799v3.111h.087c1.127-3.008,3.25-4.412,6.11-4.412,2.904,0,4.724,1.404,6.024,4.412,1.126-3.008,3.683-4.412,6.413-4.412,1.95,0,4.073,.802,5.374,2.607,1.473,2.006,1.17,4.914,1.17,7.471l-.004,15.036c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856v-12.632c-.001-1.003,.086-3.51-.131-4.463-.347-1.604-1.386-2.056-2.73-2.056-1.127,0-2.297,.752-2.774,1.956-.477,1.203-.433,3.209-.433,4.563v12.63c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856l-.005-12.632c0-2.657,.434-6.569-2.86-6.569-3.337,0-3.207,3.811-3.207,6.569l-.002,12.63c0,.476-.401,.858-.895,.858Z" fill-rule="evenodd"/><path d="M116.845,32.629c6.891,0,10.617,5.917,10.617,13.438,0,7.27-4.116,13.037-10.617,13.037-6.761,0-10.444-5.917-10.444-13.287,0-7.421,3.727-13.187,10.444-13.187Zm.043,4.864c-3.424,0-3.641,4.663-3.641,7.571s-.043,9.126,3.597,9.126c3.597,0,3.77-5.014,3.77-8.073,0-2.006-.086-4.412-.693-6.318-.52-1.655-1.561-2.306-3.034-2.306Z" fill-rule="evenodd"/><path d="M136.398,58.601h-4.625c-.465-.03-.833-.399-.833-.856l-.007-23.837c.039-.436,.424-.778,.892-.778h4.307c.405,.02,.74,.296,.825,.666v3.645h.087c1.3-3.259,3.12-4.814,6.327-4.814,2.08,0,4.117,.752,5.417,2.808,1.214,1.905,1.214,5.114,1.214,7.421v14.993c-.052,.423-.431,.751-.89,.751h-4.654c-.43-.028-.777-.344-.827-.751v-12.937c0-2.607,.303-6.418-2.904-6.418-1.127,0-2.167,.752-2.686,1.905-.65,1.454-.737,2.908-.737,4.513v12.83c-.008,.476-.409,.858-.904,.858Z" fill-rule="evenodd"/><path d="M74.54,47.223c0,1.809,.043,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.906-4.673v1.005Zm4.68,11.319c-.308,.276-.75,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.549,2.596-4.354,3.375-7.654,3.375-3.908,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.73-1.608v-.603c0-1.105,.087-2.412-.565-3.367-.565-.854-1.65-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.08,.418-.386,.832-.806,.853l-4.5-.487c-.38-.086-.802-.39-.693-.97,1.034-5.459,5.964-7.108,10.382-7.108,2.258,0,5.212,.603,6.992,2.312,2.259,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.753,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.633,2.259-3.56,3.084l-.011-.01Z" fill-rule="evenodd"/><path d="M13.68,47.223c0,1.809,.044,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.905-4.673v1.005Zm4.681,11.319c-.308,.276-.751,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.548,2.596-4.353,3.375-7.654,3.375-3.909,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.729-1.608v-.603c0-1.105,.087-2.412-.564-3.367-.565-.854-1.651-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.081,.418-.386,.832-.807,.853l-4.499-.487c-.38-.086-.803-.39-.693-.97,1.034-5.459,5.963-7.108,10.382-7.108,2.259,0,5.212,.603,6.992,2.312,2.258,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.752,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.634,2.259-3.56,3.084l-.011-.01Z" fill-rule="evenodd"/></g></g></symbol>
<symbol id="apple_la" viewBox="0 0 150 100"><g>
<symbol id="full-logo_amazon_la" viewBox="0 0 150 100"><g clip-path="url(#full-logo_amazon_la_b)"><g><g><path d="M93.058,67.749c-8.715,6.431-21.35,9.852-32.23,9.852-15.249,0-28.98-5.636-39.372-15.02-.816-.736-.088-1.743,.893-1.173,11.211,6.524,25.075,10.453,39.394,10.453,9.659,0,20.278-2.005,30.048-6.149,1.474-.625,2.709,.971,1.267,2.036Z" fill="#f90" fill-rule="evenodd"/><path d="M96.685,63.609c-1.115-1.428-7.369-.677-10.178-.34-.851,.102-.983-.641-.215-1.18,4.988-3.504,13.163-2.492,14.113-1.32,.958,1.184-.25,9.379-4.926,13.291-.719,.602-1.403,.281-1.084-.514,1.052-2.627,3.407-8.509,2.292-9.937Z" fill="#f90" fill-rule="evenodd"/></g><path d="M86.705,37.336v-3.405c.002-.518,.392-.864,.863-.863l15.26-.002c.488,0,.879,.355,.88,.86v2.92c-.005,.49-.417,1.129-1.15,2.143l-7.904,11.286c2.934-.069,6.038,.37,8.704,1.869,.601,.338,.762,.839,.809,1.329v3.633c0,.501-.548,1.08-1.123,.779-4.697-2.46-10.93-2.729-16.124,.03-.531,.283-1.086-.288-1.086-.789v-3.454c0-.552,.01-1.498,.568-2.34l9.158-13.138-7.974-.002c-.487,0-.878-.347-.881-.857Z" fill-rule="evenodd"/><path d="M31.04,58.601h-4.642c-.442-.029-.795-.361-.831-.785l.003-23.827c0-.477,.401-.858,.896-.858h4.323c.453,.022,.816,.364,.844,.799v3.111h.087c1.127-3.008,3.25-4.412,6.11-4.412,2.904,0,4.724,1.404,6.024,4.412,1.126-3.008,3.683-4.412,6.413-4.412,1.95,0,4.073,.802,5.374,2.607,1.473,2.006,1.17,4.914,1.17,7.471l-.004,15.036c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856v-12.632c-.001-1.003,.086-3.51-.131-4.463-.347-1.604-1.386-2.056-2.73-2.056-1.127,0-2.297,.752-2.774,1.956-.477,1.203-.433,3.209-.433,4.563v12.63c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856l-.005-12.632c0-2.657,.434-6.569-2.86-6.569-3.337,0-3.207,3.811-3.207,6.569l-.002,12.63c0,.476-.401,.858-.895,.858Z" fill-rule="evenodd"/><path d="M116.845,32.629c6.891,0,10.617,5.917,10.617,13.438,0,7.27-4.116,13.037-10.617,13.037-6.761,0-10.444-5.917-10.444-13.287,0-7.421,3.727-13.187,10.444-13.187Zm.043,4.864c-3.424,0-3.641,4.663-3.641,7.571s-.043,9.126,3.597,9.126c3.597,0,3.77-5.014,3.77-8.073,0-2.006-.086-4.412-.693-6.318-.52-1.655-1.561-2.306-3.034-2.306Z" fill-rule="evenodd"/><path d="M136.398,58.601h-4.625c-.465-.03-.833-.399-.833-.856l-.007-23.837c.039-.436,.424-.778,.892-.778h4.307c.405,.02,.74,.296,.825,.666v3.645h.087c1.3-3.259,3.12-4.814,6.327-4.814,2.08,0,4.117,.752,5.417,2.808,1.214,1.905,1.214,5.114,1.214,7.421v14.993c-.052,.423-.431,.751-.89,.751h-4.654c-.43-.028-.777-.344-.827-.751v-12.937c0-2.607,.303-6.418-2.904-6.418-1.127,0-2.167,.752-2.686,1.905-.65,1.454-.737,2.908-.737,4.513v12.83c-.008,.476-.409,.858-.904,.858Z" fill-rule="evenodd"/><path d="M74.54,47.223c0,1.809,.043,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.906-4.673v1.005Zm4.68,11.319c-.308,.276-.75,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.549,2.596-4.354,3.375-7.654,3.375-3.908,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.73-1.608v-.603c0-1.105,.087-2.412-.565-3.367-.565-.854-1.65-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.08,.418-.386,.832-.806,.853l-4.5-.487c-.38-.086-.802-.39-.693-.97,1.034-5.459,5.964-7.108,10.382-7.108,2.258,0,5.212,.603,6.992,2.312,2.259,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.753,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.633,2.259-3.56,3.084l-.011-.01Z" fill-rule="evenodd"/><path d="M13.68,47.223c0,1.809,.044,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.905-4.673v1.005Zm4.681,11.319c-.308,.276-.751,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.548,2.596-4.353,3.375-7.654,3.375-3.909,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.729-1.608v-.603c0-1.105,.087-2.412-.564-3.367-.565-.854-1.651-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.081,.418-.386,.832-.807,.853l-4.499-.487c-.38-.086-.803-.39-.693-.97,1.034-5.459,5.963-7.108,10.382-7.108,2.259,0,5.212,.603,6.992,2.312,2.258,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.752,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.634,2.259-3.56,3.084l-.011-.01Z" fill-rule="evenodd"/></g></g></symbol>
<symbol id="full-logo_apple_la" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#apple_la_SVGID_00000081647517059607176170000008484062834122158216_);">
<g style="clip-path:url(#full-logo_apple_la_SVGID_00000081647517059607176170000008484062834122158216_);">
<path d="M34.9,51.6c-0.1-6.5,5.3-9.6,5.5-9.8c-3-4.4-7.7-5-9.4-5.1c-4-0.4-7.8,2.4-9.8,2.4s-5.2-2.3-8.5-2.2
c-4.4,0.1-8.4,2.5-10.6,6.4C-2.4,51.2,1,62.8,5.4,69.2c2.2,3.1,4.7,6.6,8.1,6.5c3.3-0.1,4.5-2.1,8.4-2.1s5,2.1,8.5,2
c3.5-0.1,5.7-3.2,7.9-6.3c2.5-3.6,3.5-7.1,3.5-7.3C41.7,61.9,35,59.4,34.9,51.6"/>
@@ -68,18 +68,18 @@
c-3.8,0-5.4,3.5-5.7,6.1H146.4z"/>
</g>
</g></symbol>
<symbol id="facebook_la" viewBox="0 0 150 100"><g>
<symbol id="full-logo_facebook_la" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#facebook_la_SVGID_00000075865216647744801580000014916326942865744290_);">
<g id="facebook_la_Logo">
<path id="facebook_la_Initiator" style="fill:#0866FF;" d="M34.6,50c0-9.6-7.7-17.3-17.3-17.3S0,40.4,0,50c0,8.1,5.6,14.9,13.1,16.8V55.3H9.6V50h3.6
<g style="clip-path:url(#full-logo_facebook_la_SVGID_00000075865216647744801580000014916326942865744290_);">
<g id="full-logo_facebook_la_Logo">
<path id="full-logo_facebook_la_Initiator" style="fill:#0866FF;" d="M34.6,50c0-9.6-7.7-17.3-17.3-17.3S0,40.4,0,50c0,8.1,5.6,14.9,13.1,16.8V55.3H9.6V50h3.6
v-2.3c0-5.9,2.7-8.6,8.4-8.6c1.1,0,3,0.2,3.8,0.4v4.8c-0.4,0-1.1-0.1-2-0.1c-2.8,0-3.9,1.1-3.9,3.9V50H25l-1,5.3h-4.7v11.9
C28,66.1,34.6,58.8,34.6,50z"/>
<path id="facebook_la_F" style="fill:#FFFFFF;" d="M24.1,55.3l1-5.3h-5.6v-1.9c0-2.8,1.1-3.9,3.9-3.9c0.9,0,1.6,0,2,0.1v-4.8c-0.8-0.2-2.7-0.4-3.8-0.4
<path id="full-logo_facebook_la_F" style="fill:#FFFFFF;" d="M24.1,55.3l1-5.3h-5.6v-1.9c0-2.8,1.1-3.9,3.9-3.9c0.9,0,1.6,0,2,0.1v-4.8c-0.8-0.2-2.7-0.4-3.8-0.4
c-5.8,0-8.4,2.7-8.4,8.6V50H9.6v5.3h3.6v11.5c1.3,0.3,2.7,0.5,4.2,0.5c0.7,0,1.4,0,2.1-0.1V55.3H24.1z"/>
</g>
<path id="facebook_la_path46" style="fill:#0766FF;" d="M137.4,59.1h3.5v-5.6l4.9,5.6h4.3l-5.7-6.5l4.8-5.6h-3.9l-4.4,5.2V40.6l-3.5,0.5L137.4,59.1
<path id="full-logo_facebook_la_path46" style="fill:#0766FF;" d="M137.4,59.1h3.5v-5.6l4.9,5.6h4.3l-5.7-6.5l4.8-5.6h-3.9l-4.4,5.2V40.6l-3.5,0.5L137.4,59.1
L137.4,59.1z M129.3,46.6c-3.9,0-6.6,2.6-6.6,6.4s2.7,6.4,6.6,6.4c3.9,0,6.6-2.6,6.6-6.4S133.2,46.6,129.3,46.6z M129.3,56.4
c-1.8,0-3-1.4-3-3.4c0-2,1.2-3.4,3-3.4c1.8,0,3,1.4,3,3.4C132.3,55,131.1,56.4,129.3,56.4z M115.1,46.6c-3.9,0-6.6,2.6-6.6,6.4
s2.7,6.4,6.6,6.4s6.6-2.6,6.6-6.4S119,46.6,115.1,46.6z M115.1,56.4c-1.8,0-3-1.4-3-3.4c0-2,1.2-3.4,3-3.4s3,1.4,3,3.4
@@ -95,10 +95,10 @@
c0.5,0,0.9,0,1.1,0v-2.7c-0.4-0.1-1.5-0.2-2.1-0.2c-3.2,0-4.7,1.5-4.7,4.8v1.3h-2v2.9h2v9.2h3.5v-9.2h2.6L53.7,46.9z"/>
</g>
</g></symbol>
<symbol id="google_la" viewBox="0 0 150 100"><g>
<symbol id="full-logo_google_la" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#google_la_SVGID_00000153666185488983044530000005209633213846120369_);">
<g style="clip-path:url(#full-logo_google_la_SVGID_00000153666185488983044530000005209633213846120369_);">
<path style="fill:#3780FF;" d="M18.5,25.5h1.3c4.6,0.1,9.2,2,12.5,5.3c-1.2,1.2-2.4,2.4-3.6,3.6c-1.8-1.7-4.1-2.9-6.5-3.4
c-3.6-0.8-7.4-0.1-10.4,2c-3.3,2.1-5.5,5.8-6,9.6c-0.5,3.8,0.6,7.9,3,10.8c2.4,2.9,6,4.7,9.8,4.8c3.5,0.2,7.2-0.9,9.8-3.3
c2-1.7,2.9-4.4,3.2-6.9c-4.2,0-8.4,0-12.5,0v-5.2h17.6c0.9,5.6-0.4,11.8-4.6,15.8c-2.8,2.8-6.7,4.5-10.7,4.8
@@ -123,44 +123,44 @@
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
</g>
</g></symbol>
<symbol id="linkedin_la" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="linkedin_la_base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
<symbol id="full-logo_linkedin_la" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="full-logo_linkedin_la_base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<g>
<g id="linkedin_la_layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#linkedin_la_SVGID_00000065070852576844334280000001281980592361120161_);">
<g id="linkedin_la_g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
<path id="linkedin_la_path14" inkscape:connector-curvature="0" style="fill:#006699;" d="M137.9,69.8c0,1.5,1.3,2.8,2.9,2.8h33c1.6,0,2.9-1.3,2.9-2.8
<g id="full-logo_linkedin_la_layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#full-logo_linkedin_la_SVGID_00000065070852576844334280000001281980592361120161_);">
<g id="full-logo_linkedin_la_g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
<path id="full-logo_linkedin_la_path14" inkscape:connector-curvature="0" style="fill:#006699;" d="M137.9,69.8c0,1.5,1.3,2.8,2.9,2.8h33c1.6,0,2.9-1.3,2.9-2.8
V36.4c0-1.5-1.3-2.8-2.9-2.8h-33c-1.6,0-2.9,1.3-2.9,2.8V69.8z"/>
<path id="linkedin_la_path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M29.4,39.9h16.2v5.3H35.3v20.3h-5.9
<path id="full-logo_linkedin_la_path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M29.4,39.9h16.2v5.3H35.3v20.3h-5.9
C29.4,65.5,29.4,39.9,29.4,39.9z"/>
<path id="linkedin_la_path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M53.8,39.9v17.6h-5.9V39.9H53.8z M50.8,59.9
<path id="full-logo_linkedin_la_path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M53.8,39.9v17.6h-5.9V39.9H53.8z M50.8,59.9
c2,0,3.3,1.4,3.3,3c0,1.7-1.3,3-3.3,3c-2,0-3.3-1.3-3.3-3C47.6,61.3,48.8,59.9,50.8,59.9L50.8,59.9L50.8,59.9z"/>
<path id="linkedin_la_path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M56.5,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
<path id="full-logo_linkedin_la_path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M56.5,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
c0.4,1.1,1.4,2.1,3,2.1c2.1,0,3-1.6,3-4v-9.4h5.9V50c0,5.4-2.9,7.9-6.7,7.9c-3.2,0-4.5-1.8-5.3-3h0v2.6h-5.9
C56.6,55.9,56.5,39.9,56.5,39.9L56.5,39.9z"/>
<path id="linkedin_la_path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M82.6,65.5h-5.9V39.9h5.9v5.7l1.5,1.8l4.6-7.6h7.2l-7.7,10.9
<path id="full-logo_linkedin_la_path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M82.6,65.5h-5.9V39.9h5.9v5.7l1.5,1.8l4.6-7.6h7.2l-7.7,10.9
l6.7,7.4h-7c0,0-4.8-6.7-5.2-7.4L82.6,65.5L82.6,65.5z"/>
<path id="linkedin_la_path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M111.5,47.2c0.1,0.5,0.2,1.3,0.2,2.3c0,4.6-2.3,9.2-8.4,9.2
<path id="full-logo_linkedin_la_path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M111.5,47.2c0.1,0.5,0.2,1.3,0.2,2.3c0,4.6-2.3,9.2-8.4,9.2
c-6.5,0-9.5-5.1-9.5-9.8c0-5.8,3.7-9.4,10-9.4c2.5,0,4.9,0.4,6.8,1.2l-0.8,3.9c-1.6-0.5-3.2-0.8-5.2-0.8c-2.7,0-5.1,1.1-5.3,3.5
L111.5,47.2L111.5,47.2z M99.3,51.2c0.2,1.5,1.2,3.7,3.7,3.7c2.7,0,3.3-2.4,3.3-3.7H99.3z"/>
<path id="linkedin_la_path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M126.1,65.5v-8.8h-0.1c-0.8,1.2-2.6,2.1-5,2.1
<path id="full-logo_linkedin_la_path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M126.1,65.5v-8.8h-0.1c-0.8,1.2-2.6,2.1-5,2.1
c-4.5,0-8.5-3.6-8.4-9.8c0-5.7,3.6-9.4,8-9.4c2.4,0,4.7,1.1,5.9,3.1h0.1l0.2-2.7h5.2c-0.1,1.2-0.2,3.4-0.2,5.5v20.1H126.1
L126.1,65.5z M126.1,48.1c0-0.5,0-0.9-0.1-1.3c-0.3-1.6-1.7-2.7-3.4-2.7c-2.4,0-4,2-4,5c0,2.9,1.3,5.2,4,5.2
c1.8,0,3.1-1.2,3.4-2.8c0.1-0.3,0.1-0.7,0.1-1.1L126.1,48.1L126.1,48.1z"/>
<path id="linkedin_la_path28" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M149.6,39.9v17.6h-5.9V39.9H149.6z M146.7,59.9
<path id="full-logo_linkedin_la_path28" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M149.6,39.9v17.6h-5.9V39.9H149.6z M146.7,59.9
c2,0,3.3,1.4,3.3,3c0,1.7-1.3,3-3.3,3c-2,0-3.3-1.3-3.3-3C143.4,61.3,144.7,59.9,146.7,59.9L146.7,59.9L146.7,59.9z"/>
<path id="linkedin_la_path30" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M152.9,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
<path id="full-logo_linkedin_la_path30" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M152.9,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
c0.4,1.1,1.4,2.1,3,2.1c2.1,0,3-1.6,3-4v-9.4h5.9V50c0,5.4-2.9,7.9-6.7,7.9c-3.2,0-4.5-1.8-5.3-3h0v2.6h-5.9
C152.9,55.9,152.9,39.9,152.9,39.9L152.9,39.9z"/>
</g>
</g>
</g></symbol>
<symbol id="microsoft_la" viewBox="0 0 150 100"><g>
<symbol id="full-logo_microsoft_la" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#microsoft_la_SVGID_00000129928352737962937240000016489009966998995616_);">
<g style="clip-path:url(#full-logo_microsoft_la_SVGID_00000129928352737962937240000016489009966998995616_);">
<path style="fill:#737373;" d="M62.4,40.4v19.2H59V44.5h0l-6,15.1h-2.2l-6.1-15.1h0v15.1h-3.1V40.4h4.8l5.5,14.2H52l5.8-14.2
C57.8,40.4,62.4,40.4,62.4,40.4z M65.1,41.9c0-0.5,0.2-1,0.6-1.3c0.4-0.4,0.8-0.5,1.4-0.5c0.6,0,1.1,0.2,1.4,0.5
c0.4,0.4,0.6,0.8,0.6,1.3s-0.2,1-0.6,1.3s-0.8,0.5-1.4,0.5c-0.6,0-1-0.2-1.4-0.5C65.4,42.8,65.1,42.4,65.1,41.9z M68.7,45.8v13.8
@@ -191,11 +191,11 @@
<rect x="16.8" y="50.8" style="fill:#FFB900;" width="15.2" height="15.2"/>
</g>
</g></symbol>
<symbol id="outlook_la" viewBox="0 0 150 100"><g>
<symbol id="full-logo_outlook_la" viewBox="0 0 150 100"><g>
<g>
<g style="clip-path:url(#outlook_la_SVGID_00000154404825764364194380000012342248236497552543_);">
<g style="clip-path:url(#full-logo_outlook_la_SVGID_00000154404825764364194380000012342248236497552543_);">
<g>
<path style="fill:#0A2767;" d="M24.5,50.6c0-0.2-0.1-0.4-0.3-0.5l0,0l0,0l-8.5-5c0,0-0.1,0-0.1-0.1c-0.3-0.2-0.7-0.2-1,0
c0,0-0.1,0-0.1,0.1l-8.5,5l0,0c-0.3,0.2-0.3,0.5-0.2,0.8c0,0,0.1,0.1,0.2,0.1l8.5,5c0,0,0.1,0,0.1,0.1c0.3,0.2,0.7,0.2,1,0
@@ -209,7 +209,7 @@
<path style="fill:#0078D4;" d="M18.3,52.3h5.1v5.1h-5.1V52.3z"/>
<path style="fill:url(#outlook_la_SVGID_00000152981272714850775810000004303565754682278323_);" d="M24.3,51L24.3,51l-8.5,4.8
<path style="fill:url(#full-logo_outlook_la_SVGID_00000152981272714850775810000004303565754682278323_);" d="M24.3,51L24.3,51l-8.5,4.8
c0,0-0.1,0-0.1,0.1C15.6,56,15.4,56,15.2,56l-0.5-0.3c0,0-0.1,0-0.1-0.1L6,50.7l0,0l-0.3-0.2v9.7c0,0.6,0.5,1.2,1.2,1.2h16.5
l0,0c0.1,0,0.3,0,0.4-0.1c0.1,0,0.1-0.1,0.2-0.1l0.1-0.1c0.3-0.2,0.5-0.6,0.5-0.9v-9.7C24.5,50.8,24.4,50.9,24.3,51z"/>
<path style="opacity:0.5;fill:#0A2767;enable-background:new ;" d="M24.1,50.5v0.6l-8.9,6.1L6,50.7l0,0l0,0l-0.8-0.5v-0.4h0.3l0.7,0.4l0,0h0.1l8.7,4.9l0.3,0.2h0.1
@@ -230,7 +230,7 @@
<path style="opacity:0.2;enable-background:new ;" d="M12.6,44.8v11c0,0.6-0.5,1-1,1H5.7V43.7h5.8C12.1,43.7,12.6,44.2,12.6,44.8L12.6,44.8z"/>
<path style="fill:url(#outlook_la_SVGID_00000064339090414695984750000011110627263165002412_);" d="M1,43.7h10.5c0.6,0,1,0.5,1,1v10.5
<path style="fill:url(#full-logo_outlook_la_SVGID_00000064339090414695984750000011110627263165002412_);" d="M1,43.7h10.5c0.6,0,1,0.5,1,1v10.5
c0,0.6-0.5,1-1,1H1c-0.6,0-1-0.5-1-1V44.8C0,44.2,0.5,43.7,1,43.7z"/>
<path style="fill:#FFFFFF;" d="M3.3,48.1c0.3-0.5,0.7-1,1.2-1.3c0.6-0.3,1.2-0.5,1.9-0.5c0.6,0,1.2,0.1,1.8,0.5C8.6,47.1,9,47.5,9.3,48
c0.3,0.6,0.4,1.2,0.4,1.9s-0.1,1.3-0.4,1.9c-0.3,0.5-0.7,1-1.2,1.3c-0.6,0.3-1.2,0.5-1.8,0.5S5,53.5,4.5,53.1
@@ -275,11 +275,11 @@
</g>
</g>
</g></symbol>
<symbol id="paypal_la" viewBox="0 0 150.207 100"><g clip-path="url(#paypal_la_b)"><g><path d="M56.088,39.878h-8.301c-.568,0-1.051,.413-1.14,.973l-3.357,21.285c-.067,.42,.259,.799,.685,.799h3.963c.568,0,1.051-.413,1.14-.975l.905-5.741c.087-.562,.572-.975,1.138-.975h2.628c5.468,0,8.624-2.646,9.448-7.889,.371-2.294,.016-4.096-1.058-5.359-1.18-1.386-3.272-2.119-6.05-2.119Zm.958,7.774c-.454,2.978-2.73,2.978-4.93,2.978h-1.253l.879-5.563c.052-.336,.343-.584,.683-.584h.574c1.499,0,2.913,0,3.644,.854,.436,.51,.569,1.267,.403,2.313Z" fill="#253b80"/><path d="M80.9,47.556h-3.975c-.339,0-.631,.248-.683,.584l-.176,1.112-.278-.403c-.861-1.249-2.779-1.666-4.695-1.666-4.392,0-8.144,3.327-8.875,7.994-.38,2.328,.16,4.554,1.481,6.106,1.211,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.682,.801h3.58c.569,0,1.05-.413,1.14-.975l2.148-13.605c.068-.419-.256-.799-.681-.799Zm-5.541,7.736c-.384,2.271-2.186,3.795-4.485,3.795-1.154,0-2.077-.37-2.669-1.072-.587-.697-.811-1.688-.624-2.793,.358-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.606,.715,.846,1.713,.672,2.812Z" fill="#253b80"/><path d="M102.07,47.556h-3.994c-.381,0-.739,.189-.955,.506l-5.509,8.115-2.335-7.798c-.147-.488-.597-.823-1.107-.823h-3.925c-.477,0-.808,.466-.657,.915l4.4,12.912-4.136,5.839c-.325,.46,.002,1.092,.564,1.092h3.99c.379,0,.733-.184,.948-.495l13.285-19.177c.318-.459-.009-1.086-.568-1.086Z" fill="#253b80"/><path d="M115.294,39.878h-8.302c-.567,0-1.05,.413-1.138,.973l-3.357,21.285c-.067,.42,.259,.799,.682,.799h4.26c.396,0,.734-.289,.796-.682l.953-6.033c.087-.562,.572-.975,1.138-.975h2.627c5.469,0,8.624-2.646,9.449-7.889,.373-2.294,.015-4.096-1.06-5.359-1.179-1.386-3.27-2.119-6.048-2.119Zm.958,7.774c-.453,2.978-2.728,2.978-4.93,2.978h-1.251l.88-5.563c.052-.336,.341-.584,.682-.584h.574c1.498,0,2.913,0,3.644,.854,.436,.51,.568,1.267,.402,2.313Z" fill="#179bd7"/><path d="M140.105,47.556h-3.973c-.341,0-.631,.248-.682,.584l-.176,1.112-.279-.403c-.861-1.249-2.778-1.666-4.693-1.666-4.392,0-8.143,3.327-8.874,7.994-.379,2.328,.159,4.554,1.48,6.106,1.214,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.685,.801h3.579c.567,0,1.05-.413,1.138-.975l2.15-13.605c.066-.419-.26-.799-.686-.799Zm-5.541,7.736c-.381,2.271-2.186,3.795-4.485,3.795-1.152,0-2.077-.37-2.669-1.072-.587-.697-.808-1.688-.624-2.793,.36-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.608,.715,.848,1.713,.672,2.812Z" fill="#179bd7"/><path d="M144.792,40.461l-3.407,21.675c-.067,.42,.259,.799,.682,.799h3.425c.569,0,1.052-.413,1.14-.975l3.36-21.284c.067-.42-.259-.8-.682-.8h-3.835c-.339,.001-.63,.249-.682,.585Z" fill="#179bd7"/><path d="M8.819,67.071l.635-4.032-1.414-.033H1.288l4.692-29.752c.015-.09,.062-.174,.131-.233,.069-.059,.158-.092,.25-.092h11.385c3.78,0,6.388,.786,7.75,2.339,.638,.728,1.045,1.489,1.242,2.327,.206,.879,.21,1.929,.008,3.209l-.015,.093v.82l.638,.362c.538,.285,.965,.612,1.293,.986,.546,.623,.899,1.414,1.049,2.352,.154,.965,.103,2.113-.149,3.413-.291,1.495-.762,2.798-1.398,3.863-.585,.982-1.33,1.796-2.215,2.427-.845,.6-1.849,1.055-2.983,1.346-1.1,.286-2.353,.431-3.729,.431h-.886c-.634,0-1.249,.228-1.732,.637-.484,.418-.805,.988-.903,1.612l-.067,.363-1.121,7.106-.051,.261c-.013,.083-.036,.124-.07,.152-.03,.025-.074,.042-.117,.042,0,0-5.47,0-5.47,0Z" fill="#253b80"/><path d="M27.974,40.992h0c-.034,.217-.073,.439-.117,.668-1.501,7.708-6.638,10.371-13.198,10.371h-3.34c-.802,0-1.478,.583-1.603,1.374h0l-1.71,10.846-.484,3.074c-.081,.519,.319,.988,.844,.988h5.924c.702,0,1.297-.51,1.408-1.202l.058-.301,1.115-7.078,.072-.388c.109-.694,.706-1.204,1.408-1.204h.886c5.74,0,10.233-2.33,11.546-9.074,.549-2.817,.265-5.169-1.187-6.824-.439-.499-.984-.913-1.622-1.25Z" fill="#179bd7"/><path d="M26.403,40.365c-.229-.067-.466-.127-.709-.182-.244-.053-.494-.101-.751-.142-.901-.146-1.887-.215-2.945-.215H13.075c-.22,0-.428,.05-.615,.14-.411,.198-.717,.587-.791,1.064l-1.898,12.023-.055,.351c.125-.791,.801-1.374,1.603-1.374h3.34c6.56,0,11.697-2.664,13.198-10.371,.045-.228,.083-.45,.117-.668-.38-.201-.791-.374-1.234-.521-.109-.036-.222-.072-.336-.106Z" fill="#222d65"/><path d="M11.669,41.031c.074-.477,.38-.867,.791-1.063,.188-.09,.396-.14,.615-.14h8.923c1.057,0,2.044,.069,2.945,.215,.257,.041,.507,.089,.751,.142,.243,.055,.479,.115,.709,.182,.114,.034,.227,.069,.337,.104,.443,.147,.854,.32,1.234,.521,.447-2.849-.004-4.788-1.544-6.544-1.698-1.933-4.763-2.761-8.684-2.761H6.362c-.801,0-1.484,.583-1.608,1.375L.012,63.119c-.093,.595,.365,1.131,.965,1.131h7.029l1.765-11.197,1.898-12.023Z" fill="#253b80"/></g></g></symbol>
<symbol id="reddit_la" viewBox="0 0 150 100"><g>
<symbol id="full-logo_paypal_la" viewBox="0 0 150.207 100"><g clip-path="url(#full-logo_paypal_la_b)"><g><path d="M56.088,39.878h-8.301c-.568,0-1.051,.413-1.14,.973l-3.357,21.285c-.067,.42,.259,.799,.685,.799h3.963c.568,0,1.051-.413,1.14-.975l.905-5.741c.087-.562,.572-.975,1.138-.975h2.628c5.468,0,8.624-2.646,9.448-7.889,.371-2.294,.016-4.096-1.058-5.359-1.18-1.386-3.272-2.119-6.05-2.119Zm.958,7.774c-.454,2.978-2.73,2.978-4.93,2.978h-1.253l.879-5.563c.052-.336,.343-.584,.683-.584h.574c1.499,0,2.913,0,3.644,.854,.436,.51,.569,1.267,.403,2.313Z" fill="#253b80"/><path d="M80.9,47.556h-3.975c-.339,0-.631,.248-.683,.584l-.176,1.112-.278-.403c-.861-1.249-2.779-1.666-4.695-1.666-4.392,0-8.144,3.327-8.875,7.994-.38,2.328,.16,4.554,1.481,6.106,1.211,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.682,.801h3.58c.569,0,1.05-.413,1.14-.975l2.148-13.605c.068-.419-.256-.799-.681-.799Zm-5.541,7.736c-.384,2.271-2.186,3.795-4.485,3.795-1.154,0-2.077-.37-2.669-1.072-.587-.697-.811-1.688-.624-2.793,.358-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.606,.715,.846,1.713,.672,2.812Z" fill="#253b80"/><path d="M102.07,47.556h-3.994c-.381,0-.739,.189-.955,.506l-5.509,8.115-2.335-7.798c-.147-.488-.597-.823-1.107-.823h-3.925c-.477,0-.808,.466-.657,.915l4.4,12.912-4.136,5.839c-.325,.46,.002,1.092,.564,1.092h3.99c.379,0,.733-.184,.948-.495l13.285-19.177c.318-.459-.009-1.086-.568-1.086Z" fill="#253b80"/><path d="M115.294,39.878h-8.302c-.567,0-1.05,.413-1.138,.973l-3.357,21.285c-.067,.42,.259,.799,.682,.799h4.26c.396,0,.734-.289,.796-.682l.953-6.033c.087-.562,.572-.975,1.138-.975h2.627c5.469,0,8.624-2.646,9.449-7.889,.373-2.294,.015-4.096-1.06-5.359-1.179-1.386-3.27-2.119-6.048-2.119Zm.958,7.774c-.453,2.978-2.728,2.978-4.93,2.978h-1.251l.88-5.563c.052-.336,.341-.584,.682-.584h.574c1.498,0,2.913,0,3.644,.854,.436,.51,.568,1.267,.402,2.313Z" fill="#179bd7"/><path d="M140.105,47.556h-3.973c-.341,0-.631,.248-.682,.584l-.176,1.112-.279-.403c-.861-1.249-2.778-1.666-4.693-1.666-4.392,0-8.143,3.327-8.874,7.994-.379,2.328,.159,4.554,1.48,6.106,1.214,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.685,.801h3.579c.567,0,1.05-.413,1.138-.975l2.15-13.605c.066-.419-.26-.799-.686-.799Zm-5.541,7.736c-.381,2.271-2.186,3.795-4.485,3.795-1.152,0-2.077-.37-2.669-1.072-.587-.697-.808-1.688-.624-2.793,.36-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.608,.715,.848,1.713,.672,2.812Z" fill="#179bd7"/><path d="M144.792,40.461l-3.407,21.675c-.067,.42,.259,.799,.682,.799h3.425c.569,0,1.052-.413,1.14-.975l3.36-21.284c.067-.42-.259-.8-.682-.8h-3.835c-.339,.001-.63,.249-.682,.585Z" fill="#179bd7"/><path d="M8.819,67.071l.635-4.032-1.414-.033H1.288l4.692-29.752c.015-.09,.062-.174,.131-.233,.069-.059,.158-.092,.25-.092h11.385c3.78,0,6.388,.786,7.75,2.339,.638,.728,1.045,1.489,1.242,2.327,.206,.879,.21,1.929,.008,3.209l-.015,.093v.82l.638,.362c.538,.285,.965,.612,1.293,.986,.546,.623,.899,1.414,1.049,2.352,.154,.965,.103,2.113-.149,3.413-.291,1.495-.762,2.798-1.398,3.863-.585,.982-1.33,1.796-2.215,2.427-.845,.6-1.849,1.055-2.983,1.346-1.1,.286-2.353,.431-3.729,.431h-.886c-.634,0-1.249,.228-1.732,.637-.484,.418-.805,.988-.903,1.612l-.067,.363-1.121,7.106-.051,.261c-.013,.083-.036,.124-.07,.152-.03,.025-.074,.042-.117,.042,0,0-5.47,0-5.47,0Z" fill="#253b80"/><path d="M27.974,40.992h0c-.034,.217-.073,.439-.117,.668-1.501,7.708-6.638,10.371-13.198,10.371h-3.34c-.802,0-1.478,.583-1.603,1.374h0l-1.71,10.846-.484,3.074c-.081,.519,.319,.988,.844,.988h5.924c.702,0,1.297-.51,1.408-1.202l.058-.301,1.115-7.078,.072-.388c.109-.694,.706-1.204,1.408-1.204h.886c5.74,0,10.233-2.33,11.546-9.074,.549-2.817,.265-5.169-1.187-6.824-.439-.499-.984-.913-1.622-1.25Z" fill="#179bd7"/><path d="M26.403,40.365c-.229-.067-.466-.127-.709-.182-.244-.053-.494-.101-.751-.142-.901-.146-1.887-.215-2.945-.215H13.075c-.22,0-.428,.05-.615,.14-.411,.198-.717,.587-.791,1.064l-1.898,12.023-.055,.351c.125-.791,.801-1.374,1.603-1.374h3.34c6.56,0,11.697-2.664,13.198-10.371,.045-.228,.083-.45,.117-.668-.38-.201-.791-.374-1.234-.521-.109-.036-.222-.072-.336-.106Z" fill="#222d65"/><path d="M11.669,41.031c.074-.477,.38-.867,.791-1.063,.188-.09,.396-.14,.615-.14h8.923c1.057,0,2.044,.069,2.945,.215,.257,.041,.507,.089,.751,.142,.243,.055,.479,.115,.709,.182,.114,.034,.227,.069,.337,.104,.443,.147,.854,.32,1.234,.521,.447-2.849-.004-4.788-1.544-6.544-1.698-1.933-4.763-2.761-8.684-2.761H6.362c-.801,0-1.484,.583-1.608,1.375L.012,63.119c-.093,.595,.365,1.131,.965,1.131h7.029l1.765-11.197,1.898-12.023Z" fill="#253b80"/></g></g></symbol>
<symbol id="full-logo_reddit_la" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#reddit_la_SVGID_00000008827057192512136310000012488757103502315176_);">
<g style="clip-path:url(#full-logo_reddit_la_SVGID_00000008827057192512136310000012488757103502315176_);">
<g>
<circle style="fill:#FF4500;" cx="23.8" cy="50.6" r="24.2"/>
<path style="fill:#FFFFFF;" d="M40,50.6c-0.1-2-1.7-3.5-3.7-3.4c-0.9,0-1.7,0.4-2.3,1c-2.8-1.9-6-2.9-9.3-3l1.6-7.6l5.2,1.1
@@ -315,10 +315,10 @@
</g>
</g>
</g></symbol>
<symbol id="tiktok_la" viewBox="0 0 150 100"><g>
<symbol id="full-logo_tiktok_la" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#tiktok_la_SVGID_00000119808487936749333020000002873267051657242269_);">
<g style="clip-path:url(#full-logo_tiktok_la_SVGID_00000119808487936749333020000002873267051657242269_);">
<path style="fill:#FF004F;" d="M28.7,43.9c2.8,2,6.3,3.2,10,3.2v-7.2c-0.7,0-1.4-0.1-2.1-0.2v5.7c-3.7,0-7.2-1.2-10-3.2v14.7
c0,7.3-5.9,13.3-13.3,13.3c-2.7,0-5.3-0.8-7.4-2.2c2.4,2.5,5.8,4,9.5,4c7.3,0,13.3-5.9,13.3-13.3L28.7,43.9L28.7,43.9z M31.3,36.7
c-1.4-1.6-2.4-3.6-2.6-5.9v-0.9h-2C27.2,32.8,28.9,35.2,31.3,36.7L31.3,36.7z M10.5,62.2c-0.8-1.1-1.2-2.3-1.2-3.7
@@ -343,21 +343,19 @@
M114.2,54.7c0-2.5,2.1-4.6,4.6-4.6c2.6,0,4.6,2.1,4.6,4.6s-2.1,4.6-4.6,4.6C116.3,59.3,114.2,57.2,114.2,54.7z"/>
</g>
</g></symbol>
<symbol id="x_la" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="x_la_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
<inkscape:page bleed="0" height="799.33301" id="x_la_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
</sodipodi:namedview>
<g>
<symbol id="full-logo_x_la" viewBox="0 0 150 100"><g>
<path id="x_la_path1-93" style="clip-path:url(#x_la_SVGID_00000033354764030288795930000001479703675480923282_);" d="M35.6,2.2h6.9
L27.3,19.4L45,42.8H31.1L20.2,28.6L7.8,42.8H0.9l16-18.4L0,2.2h14.2l9.8,13L35.6,2.2z M33.1,38.8H37L12.2,6.1H8.1L33.1,38.8z"/>
<path id="full-logo_x_la_path1-93" style="clip-path:url(#full-logo_x_la_SVGID_00000168801652664521502660000000954705109869302948_);fill:#1D1D1B;" d="M107.3,0
h17L86.8,42.4l43.6,57.6H96.2L69.3,65l-30.5,35h-17l39.4-45.3L19.6,0h35l24.1,32L107.3,0z M101.1,90.1h9.6L49.6,9.6H39.5
L101.1,90.1z"/>
</g></symbol>
<symbol id="yahoo_la" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="yahoo_la_base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
<symbol id="full-logo_yahoo_la" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="full-logo_yahoo_la_base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
</sodipodi:namedview>
<g>
<path id="yahoo_la_path1" style="clip-path:url(#yahoo_la_SVGID_00000006690309531539367560000016457833304281468817_);fill:#7D2EFF;" d="M53.8,29.2
<path id="full-logo_yahoo_la_path1" style="clip-path:url(#full-logo_yahoo_la_SVGID_00000006690309531539367560000016457833304281468817_);fill:#7D2EFF;" d="M53.8,29.2
v33.1h8.1V49.8c0-1.8,1-3.5,3-3.5c1.9,0,2.8,1.7,2.8,3.5v12.5h8.1V47.8c0-5.3-2.9-9-7.9-9c-4,0-6,2.7-6,2.7V29.2H53.8z M140.3,29.2
L131.7,50h9.7l8.6-20.7H140.3z M37.1,38.8c-6.7,0-10.9,6-10.9,12c0,6.7,4.6,12.1,10.8,12.1c4.6,0,6.3-2.8,6.3-2.8v2.2h7.8V39.3
h-7.8v2.1C43.3,41.4,41.4,38.8,37.1,38.8L37.1,38.8z M89.7,38.8c-7.7,0-12.3,5.8-12.3,12.1c0,7.1,5.5,12,12.3,12

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 41 KiB

View File

@@ -1,50 +1,50 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs><clipPath id="amazon_b"><rect width="150" height="100" fill="none"/></clipPath>
<rect id="apple_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="apple_lm_SVGID_00000138540640262228557590000009082720799748770710_">
<use xlink:href="#apple_lm_SVGID_1_" style="overflow:visible;"/>
<defs><clipPath id="full-logo_amazon_lm_b"><rect width="150" height="100" fill="none"/></clipPath>
<rect id="full-logo_apple_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_apple_lm_SVGID_00000138540640262228557590000009082720799748770710_">
<use xlink:href="#full-logo_apple_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="facebook_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="facebook_lm_SVGID_00000147921392127827107650000013033570347606849468_">
<use xlink:href="#facebook_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_facebook_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_facebook_lm_SVGID_00000147921392127827107650000013033570347606849468_">
<use xlink:href="#full-logo_facebook_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="google_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="google_lm_SVGID_00000087377062677790808880000014354829741297969578_">
<use xlink:href="#google_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_google_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_google_lm_SVGID_00000087377062677790808880000014354829741297969578_">
<use xlink:href="#full-logo_google_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="linkedin_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="linkedin_lm_SVGID_00000016759110836212236780000016179219727050997645_">
<use xlink:href="#linkedin_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_linkedin_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_linkedin_lm_SVGID_00000016759110836212236780000016179219727050997645_">
<use xlink:href="#full-logo_linkedin_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="microsoft_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="microsoft_lm_SVGID_00000036940774178017761740000013908608175270815634_">
<use xlink:href="#microsoft_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_microsoft_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_microsoft_lm_SVGID_00000036940774178017761740000013908608175270815634_">
<use xlink:href="#full-logo_microsoft_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="outlook_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="outlook_lm_SVGID_00000119833196125725362670000007786869035082204049_">
<use xlink:href="#outlook_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath><clipPath id="paypal_b"><rect width="150" height="100" fill="none"/></clipPath>
<rect id="reddit_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="reddit_lm_SVGID_00000077306300773993296170000006282503448525722808_">
<use xlink:href="#reddit_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_outlook_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_outlook_lm_SVGID_00000119833196125725362670000007786869035082204049_">
<use xlink:href="#full-logo_outlook_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath><clipPath id="full-logo_paypal_lm_b"><rect width="150" height="100" fill="none"/></clipPath>
<rect id="full-logo_reddit_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_reddit_lm_SVGID_00000077306300773993296170000006282503448525722808_">
<use xlink:href="#full-logo_reddit_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="tiktok_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="tiktok_lm_SVGID_00000032639560811427434040000000811433255322531472_">
<use xlink:href="#tiktok_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_tiktok_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_tiktok_lm_SVGID_00000032639560811427434040000000811433255322531472_">
<use xlink:href="#full-logo_tiktok_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="x_lm_SVGID_1_" width="45" height="45"/>
<clipPath id="x_lm_SVGID_00000177462708669193929580000017692624354562733996_">
<use xlink:href="#x_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_x_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_x_lm_SVGID_00000081637214850573032100000008755495560982913698_">
<use xlink:href="#full-logo_x_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="yahoo_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="yahoo_lm_SVGID_00000031181146065471032980000007153336671717816469_">
<use xlink:href="#yahoo_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="full-logo_yahoo_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="full-logo_yahoo_lm_SVGID_00000031181146065471032980000007153336671717816469_">
<use xlink:href="#full-logo_yahoo_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath></defs>
<symbol id="amazon" viewBox="0 0 150 100"><g clip-path="url(#amazon_b)"><g><g><path d="M93.058,67.749c-8.715,6.431-21.35,9.852-32.23,9.852-15.249,0-28.98-5.636-39.372-15.02-.816-.736-.088-1.743,.893-1.173,11.211,6.524,25.075,10.453,39.394,10.453,9.659,0,20.278-2.005,30.048-6.149,1.474-.625,2.709,.971,1.267,2.036Z" fill-rule="evenodd"/><path d="M96.685,63.609c-1.115-1.428-7.369-.677-10.178-.34-.851,.102-.983-.641-.215-1.18,4.988-3.504,13.163-2.492,14.113-1.32,.958,1.184-.25,9.379-4.926,13.291-.719,.602-1.403,.281-1.084-.514,1.052-2.627,3.407-8.509,2.292-9.937Z" fill-rule="evenodd"/></g><path d="M86.705,37.336v-3.405c.002-.518,.392-.864,.863-.863l15.26-.002c.488,0,.879,.355,.88,.86v2.92c-.005,.49-.417,1.129-1.15,2.143l-7.904,11.286c2.934-.069,6.038,.37,8.704,1.869,.601,.338,.762,.839,.809,1.329v3.633c0,.501-.548,1.08-1.123,.779-4.697-2.46-10.93-2.729-16.124,.03-.531,.283-1.086-.288-1.086-.789v-3.454c0-.552,.01-1.498,.568-2.34l9.158-13.138-7.974-.002c-.487,0-.878-.347-.881-.857Z" fill-rule="evenodd"/><path d="M31.04,58.601h-4.642c-.442-.029-.795-.361-.831-.785l.003-23.827c0-.477,.401-.858,.896-.858h4.323c.453,.022,.816,.364,.844,.799v3.111h.087c1.127-3.008,3.25-4.412,6.11-4.412,2.904,0,4.724,1.404,6.024,4.412,1.126-3.008,3.683-4.412,6.413-4.412,1.95,0,4.073,.802,5.374,2.607,1.473,2.006,1.17,4.914,1.17,7.471l-.004,15.036c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856v-12.632c-.001-1.003,.086-3.51-.131-4.463-.347-1.604-1.386-2.056-2.73-2.056-1.127,0-2.297,.752-2.774,1.956-.477,1.203-.433,3.209-.433,4.563v12.63c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856l-.005-12.632c0-2.657,.434-6.569-2.86-6.569-3.337,0-3.207,3.811-3.207,6.569l-.002,12.63c0,.476-.401,.858-.895,.858Z" fill-rule="evenodd"/><path d="M116.845,32.629c6.891,0,10.617,5.917,10.617,13.438,0,7.27-4.116,13.037-10.617,13.037-6.761,0-10.444-5.917-10.444-13.287,0-7.421,3.727-13.187,10.444-13.187Zm.043,4.864c-3.424,0-3.641,4.663-3.641,7.571s-.043,9.126,3.597,9.126c3.597,0,3.77-5.014,3.77-8.073,0-2.006-.086-4.412-.693-6.318-.52-1.655-1.561-2.306-3.034-2.306Z" fill-rule="evenodd"/><path d="M136.398,58.601h-4.625c-.465-.03-.833-.399-.833-.856l-.007-23.837c.039-.436,.424-.778,.892-.778h4.307c.405,.02,.74,.296,.825,.666v3.645h.087c1.3-3.259,3.12-4.814,6.327-4.814,2.08,0,4.117,.752,5.417,2.808,1.214,1.905,1.214,5.114,1.214,7.421v14.993c-.052,.423-.431,.751-.89,.751h-4.654c-.43-.028-.777-.344-.827-.751v-12.937c0-2.607,.303-6.418-2.904-6.418-1.127,0-2.167,.752-2.686,1.905-.65,1.454-.737,2.908-.737,4.513v12.83c-.008,.476-.409,.858-.904,.858Z" fill-rule="evenodd"/><path d="M74.54,47.223c0,1.809,.043,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.906-4.673v1.005Zm4.68,11.319c-.308,.276-.75,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.549,2.596-4.354,3.375-7.654,3.375-3.908,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.73-1.608v-.603c0-1.105,.087-2.412-.565-3.367-.565-.854-1.65-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.08,.418-.386,.832-.806,.853l-4.5-.487c-.38-.086-.802-.39-.693-.97,1.034-5.459,5.964-7.108,10.382-7.108,2.258,0,5.212,.603,6.992,2.312,2.259,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.753,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.633,2.259-3.56,3.084l-.011-.01Z" fill-rule="evenodd"/><path d="M13.68,47.223c0,1.809,.044,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.905-4.673v1.005Zm4.681,11.319c-.308,.276-.751,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.548,2.596-4.353,3.375-7.654,3.375-3.909,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.729-1.608v-.603c0-1.105,.087-2.412-.564-3.367-.565-.854-1.651-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.081,.418-.386,.832-.807,.853l-4.499-.487c-.38-.086-.803-.39-.693-.97,1.034-5.459,5.963-7.108,10.382-7.108,2.259,0,5.212,.603,6.992,2.312,2.258,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.752,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.634,2.259-3.56,3.084l-.011-.01Z" fill-rule="evenodd"/></g></g></symbol>
<symbol id="apple_lm" viewBox="0 0 150 100"><g>
<symbol id="full-logo_amazon_lm" viewBox="0 0 150 100"><g clip-path="url(#full-logo_amazon_lm_b)"><g><g><path d="M93.058,67.749c-8.715,6.431-21.35,9.852-32.23,9.852-15.249,0-28.98-5.636-39.372-15.02-.816-.736-.088-1.743,.893-1.173,11.211,6.524,25.075,10.453,39.394,10.453,9.659,0,20.278-2.005,30.048-6.149,1.474-.625,2.709,.971,1.267,2.036Z" fill-rule="evenodd"/><path d="M96.685,63.609c-1.115-1.428-7.369-.677-10.178-.34-.851,.102-.983-.641-.215-1.18,4.988-3.504,13.163-2.492,14.113-1.32,.958,1.184-.25,9.379-4.926,13.291-.719,.602-1.403,.281-1.084-.514,1.052-2.627,3.407-8.509,2.292-9.937Z" fill-rule="evenodd"/></g><path d="M86.705,37.336v-3.405c.002-.518,.392-.864,.863-.863l15.26-.002c.488,0,.879,.355,.88,.86v2.92c-.005,.49-.417,1.129-1.15,2.143l-7.904,11.286c2.934-.069,6.038,.37,8.704,1.869,.601,.338,.762,.839,.809,1.329v3.633c0,.501-.548,1.08-1.123,.779-4.697-2.46-10.93-2.729-16.124,.03-.531,.283-1.086-.288-1.086-.789v-3.454c0-.552,.01-1.498,.568-2.34l9.158-13.138-7.974-.002c-.487,0-.878-.347-.881-.857Z" fill-rule="evenodd"/><path d="M31.04,58.601h-4.642c-.442-.029-.795-.361-.831-.785l.003-23.827c0-.477,.401-.858,.896-.858h4.323c.453,.022,.816,.364,.844,.799v3.111h.087c1.127-3.008,3.25-4.412,6.11-4.412,2.904,0,4.724,1.404,6.024,4.412,1.126-3.008,3.683-4.412,6.413-4.412,1.95,0,4.073,.802,5.374,2.607,1.473,2.006,1.17,4.914,1.17,7.471l-.004,15.036c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856v-12.632c-.001-1.003,.086-3.51-.131-4.463-.347-1.604-1.386-2.056-2.73-2.056-1.127,0-2.297,.752-2.774,1.956-.477,1.203-.433,3.209-.433,4.563v12.63c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856l-.005-12.632c0-2.657,.434-6.569-2.86-6.569-3.337,0-3.207,3.811-3.207,6.569l-.002,12.63c0,.476-.401,.858-.895,.858Z" fill-rule="evenodd"/><path d="M116.845,32.629c6.891,0,10.617,5.917,10.617,13.438,0,7.27-4.116,13.037-10.617,13.037-6.761,0-10.444-5.917-10.444-13.287,0-7.421,3.727-13.187,10.444-13.187Zm.043,4.864c-3.424,0-3.641,4.663-3.641,7.571s-.043,9.126,3.597,9.126c3.597,0,3.77-5.014,3.77-8.073,0-2.006-.086-4.412-.693-6.318-.52-1.655-1.561-2.306-3.034-2.306Z" fill-rule="evenodd"/><path d="M136.398,58.601h-4.625c-.465-.03-.833-.399-.833-.856l-.007-23.837c.039-.436,.424-.778,.892-.778h4.307c.405,.02,.74,.296,.825,.666v3.645h.087c1.3-3.259,3.12-4.814,6.327-4.814,2.08,0,4.117,.752,5.417,2.808,1.214,1.905,1.214,5.114,1.214,7.421v14.993c-.052,.423-.431,.751-.89,.751h-4.654c-.43-.028-.777-.344-.827-.751v-12.937c0-2.607,.303-6.418-2.904-6.418-1.127,0-2.167,.752-2.686,1.905-.65,1.454-.737,2.908-.737,4.513v12.83c-.008,.476-.409,.858-.904,.858Z" fill-rule="evenodd"/><path d="M74.54,47.223c0,1.809,.043,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.906-4.673v1.005Zm4.68,11.319c-.308,.276-.75,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.549,2.596-4.354,3.375-7.654,3.375-3.908,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.73-1.608v-.603c0-1.105,.087-2.412-.565-3.367-.565-.854-1.65-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.08,.418-.386,.832-.806,.853l-4.5-.487c-.38-.086-.802-.39-.693-.97,1.034-5.459,5.964-7.108,10.382-7.108,2.258,0,5.212,.603,6.992,2.312,2.259,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.753,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.633,2.259-3.56,3.084l-.011-.01Z" fill-rule="evenodd"/><path d="M13.68,47.223c0,1.809,.044,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.905-4.673v1.005Zm4.681,11.319c-.308,.276-.751,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.548,2.596-4.353,3.375-7.654,3.375-3.909,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.729-1.608v-.603c0-1.105,.087-2.412-.564-3.367-.565-.854-1.651-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.081,.418-.386,.832-.807,.853l-4.499-.487c-.38-.086-.803-.39-.693-.97,1.034-5.459,5.963-7.108,10.382-7.108,2.259,0,5.212,.603,6.992,2.312,2.258,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.752,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.634,2.259-3.56,3.084l-.011-.01Z" fill-rule="evenodd"/></g></g></symbol>
<symbol id="full-logo_apple_lm" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#apple_lm_SVGID_00000138540640262228557590000009082720799748770710_);">
<g style="clip-path:url(#full-logo_apple_lm_SVGID_00000138540640262228557590000009082720799748770710_);">
<path d="M34.9,51.6c-0.1-6.5,5.3-9.6,5.5-9.8c-3-4.4-7.7-5-9.4-5.1c-4-0.4-7.8,2.4-9.8,2.4s-5.2-2.3-8.5-2.2
c-4.4,0.1-8.4,2.5-10.6,6.4C-2.4,51.2,1,62.8,5.4,69.2c2.2,3.1,4.7,6.6,8.1,6.5c3.3-0.1,4.5-2.1,8.4-2.1s5,2.1,8.5,2
c3.5-0.1,5.7-3.2,7.9-6.3c2.5-3.6,3.5-7.1,3.5-7.3C41.7,61.9,35,59.4,34.9,51.6"/>
@@ -61,18 +61,18 @@
c-3.8,0-5.4,3.5-5.7,6.1H146.4z"/>
</g>
</g></symbol>
<symbol id="facebook_lm" viewBox="0 0 150 100"><g>
<symbol id="full-logo_facebook_lm" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#facebook_lm_SVGID_00000147921392127827107650000013033570347606849468_);">
<g id="facebook_lm_Logo">
<g style="clip-path:url(#full-logo_facebook_lm_SVGID_00000147921392127827107650000013033570347606849468_);">
<g id="full-logo_facebook_lm_Logo">
<path d="M34.6,50c0,8.8-6.6,16.1-15.2,17.2V55.3h4.7v0l1-5.3h-5.6v-1.9c0-1.4,0.3-2.4,0.9-3c0.1-0.1,0.2-0.1,0.2-0.2
c0.1-0.1,0.2-0.1,0.3-0.2c0.2-0.1,0.4-0.2,0.7-0.3c0.5-0.1,1.1-0.2,1.8-0.2c0.4,0,0.8,0,1.2,0c0.2,0,0.5,0,0.6,0
c0.1,0,0.1,0,0.2,0v-4.8c-0.2-0.1-0.6-0.1-1-0.2c-0.2,0-0.3,0-0.5-0.1c-0.1,0-0.2,0-0.3,0c-0.4,0-0.7-0.1-1.1-0.1
c-0.3,0-0.7,0-0.9,0c-2.9,0-5,0.7-6.4,2.1c-1.4,1.4-2,3.6-2,6.5V50H9.5v5.3h3.6v11.5C5.6,64.9,0,58.1,0,50
c0-9.6,7.7-17.3,17.3-17.3C26.8,32.7,34.6,40.4,34.6,50z"/>
</g>
<path id="facebook_lm_path46" d="M137.4,59.1h3.5v-5.6l4.9,5.6h4.3l-5.7-6.5l4.8-5.6h-3.9l-4.4,5.2V40.6l-3.5,0.5L137.4,59.1L137.4,59.1z
<path id="full-logo_facebook_lm_path46" d="M137.4,59.1h3.5v-5.6l4.9,5.6h4.3l-5.7-6.5l4.8-5.6h-3.9l-4.4,5.2V40.6l-3.5,0.5L137.4,59.1L137.4,59.1z
M129.3,46.6c-3.9,0-6.6,2.6-6.6,6.4s2.7,6.4,6.6,6.4c3.9,0,6.6-2.6,6.6-6.4S133.2,46.6,129.3,46.6z M129.3,56.4
c-1.8,0-3-1.4-3-3.4c0-2,1.2-3.4,3-3.4c1.8,0,3,1.4,3,3.4C132.3,55,131.1,56.4,129.3,56.4z M115.1,46.6c-3.9,0-6.6,2.6-6.6,6.4
s2.7,6.4,6.6,6.4s6.6-2.6,6.6-6.4S119,46.6,115.1,46.6z M115.1,56.4c-1.8,0-3-1.4-3-3.4c0-2,1.2-3.4,3-3.4s3,1.4,3,3.4
@@ -88,10 +88,10 @@
c0.5,0,0.9,0,1.1,0v-2.7c-0.4-0.1-1.5-0.2-2.1-0.2c-3.2,0-4.7,1.5-4.7,4.8v1.3h-2v2.9h2v9.2h3.5v-9.2h2.6L53.7,46.9z"/>
</g>
</g></symbol>
<symbol id="google_lm" viewBox="0 0 150 100"><g>
<symbol id="full-logo_google_lm" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#google_lm_SVGID_00000087377062677790808880000014354829741297969578_);">
<g style="clip-path:url(#full-logo_google_lm_SVGID_00000087377062677790808880000014354829741297969578_);">
<path d="M18.5,25.5h1.3c4.6,0.1,9.2,2,12.5,5.3c-1.2,1.2-2.4,2.4-3.6,3.6c-1.8-1.7-4.1-2.9-6.5-3.4c-3.6-0.8-7.4-0.1-10.4,2
c-3.3,2.1-5.5,5.8-6,9.6c-0.5,3.8,0.6,7.9,3,10.8c2.4,2.9,6,4.7,9.8,4.8c3.5,0.2,7.2-0.9,9.8-3.3c2-1.7,2.9-4.4,3.2-6.9
c-4.2,0-8.4,0-12.5,0v-5.2h17.6c0.9,5.6-0.4,11.8-4.6,15.8c-2.8,2.8-6.7,4.5-10.7,4.8c-3.9,0.4-7.8-0.4-11.2-2.2
@@ -115,32 +115,32 @@
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
</g>
</g></symbol>
<symbol id="linkedin_lm" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="linkedin_lm_base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
<symbol id="full-logo_linkedin_lm" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="full-logo_linkedin_lm_base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<g>
<g id="linkedin_lm_layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#linkedin_lm_SVGID_00000016759110836212236780000016179219727050997645_);">
<g id="linkedin_lm_g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
<g id="full-logo_linkedin_lm_layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#full-logo_linkedin_lm_SVGID_00000016759110836212236780000016179219727050997645_);">
<g id="full-logo_linkedin_lm_g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
<path d="M173.8,72.6h-33c-1.6,0-2.9-1.3-2.9-2.8V36.4c0-1.5,1.3-2.8,2.9-2.8h33c1.6,0,2.9,1.3,2.9,2.8v33.4
C176.6,71.3,175.3,72.6,173.8,72.6z M149.6,39.9h-5.9v17.6h5.9V39.9z M146.7,59.9L146.7,59.9c-2,0-3.3,1.3-3.3,3
c0,1.7,1.3,3,3.3,3c2,0,3.2-1.3,3.3-3C150,61.3,148.7,59.9,146.7,59.9z M170.7,39.9h-5.8v9.4c0,2.4-0.9,4-3,4
c-1.6,0-2.6-1.1-3-2.1c-0.2-0.4-0.2-0.9-0.2-1.4v-9.8h-5.8c0,0,0.1,15.9,0,17.6h5.8V55c0.8,1.2,2.2,2.9,5.3,2.9
c3.9,0,6.7-2.5,6.7-7.9V39.9z M158.7,55L158.7,55C158.7,55,158.7,55,158.7,55L158.7,55z"/>
<path id="linkedin_lm_path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M29.4,39.9h16.2v5.3H35.3v20.3h-5.9
<path id="full-logo_linkedin_lm_path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M29.4,39.9h16.2v5.3H35.3v20.3h-5.9
C29.4,65.5,29.4,39.9,29.4,39.9z"/>
<path id="linkedin_lm_path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M53.8,39.9v17.6h-5.9V39.9H53.8z M50.8,59.9
<path id="full-logo_linkedin_lm_path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M53.8,39.9v17.6h-5.9V39.9H53.8z M50.8,59.9
c2,0,3.3,1.4,3.3,3c0,1.7-1.3,3-3.3,3c-2,0-3.3-1.3-3.3-3C47.6,61.3,48.8,59.9,50.8,59.9L50.8,59.9L50.8,59.9z"/>
<path id="linkedin_lm_path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M56.5,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
<path id="full-logo_linkedin_lm_path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M56.5,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
c0.4,1.1,1.4,2.1,3,2.1c2.1,0,3-1.6,3-4v-9.4h5.9V50c0,5.4-2.9,7.9-6.7,7.9c-3.2,0-4.5-1.8-5.3-3h0v2.6h-5.9
C56.6,55.9,56.5,39.9,56.5,39.9L56.5,39.9z"/>
<path id="linkedin_lm_path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M82.6,65.5h-5.9V39.9h5.9v5.7l1.5,1.8l4.6-7.6h7.2l-7.7,10.9
<path id="full-logo_linkedin_lm_path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M82.6,65.5h-5.9V39.9h5.9v5.7l1.5,1.8l4.6-7.6h7.2l-7.7,10.9
l6.7,7.4h-7c0,0-4.8-6.7-5.2-7.4L82.6,65.5L82.6,65.5z"/>
<path id="linkedin_lm_path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M111.5,47.2c0.1,0.5,0.2,1.3,0.2,2.3c0,4.6-2.3,9.2-8.4,9.2
<path id="full-logo_linkedin_lm_path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M111.5,47.2c0.1,0.5,0.2,1.3,0.2,2.3c0,4.6-2.3,9.2-8.4,9.2
c-6.5,0-9.5-5.1-9.5-9.8c0-5.8,3.7-9.4,10-9.4c2.5,0,4.9,0.4,6.8,1.2l-0.8,3.9c-1.6-0.5-3.2-0.8-5.2-0.8c-2.7,0-5.1,1.1-5.3,3.5
L111.5,47.2L111.5,47.2z M99.3,51.2c0.2,1.5,1.2,3.7,3.7,3.7c2.7,0,3.3-2.4,3.3-3.7H99.3z"/>
<path id="linkedin_lm_path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M126.1,65.5v-8.8h-0.1c-0.8,1.2-2.6,2.1-5,2.1
<path id="full-logo_linkedin_lm_path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M126.1,65.5v-8.8h-0.1c-0.8,1.2-2.6,2.1-5,2.1
c-4.5,0-8.5-3.6-8.4-9.8c0-5.7,3.6-9.4,8-9.4c2.4,0,4.7,1.1,5.9,3.1h0.1l0.2-2.7h5.2c-0.1,1.2-0.2,3.4-0.2,5.5v20.1H126.1
L126.1,65.5z M126.1,48.1c0-0.5,0-0.9-0.1-1.3c-0.3-1.6-1.7-2.7-3.4-2.7c-2.4,0-4,2-4,5c0,2.9,1.3,5.2,4,5.2
c1.8,0,3.1-1.2,3.4-2.8c0.1-0.3,0.1-0.7,0.1-1.1L126.1,48.1L126.1,48.1z"/>
@@ -148,10 +148,10 @@
</g>
</g>
</g></symbol>
<symbol id="microsoft_lm" viewBox="0 0 150 100"><g>
<symbol id="full-logo_microsoft_lm" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#microsoft_lm_SVGID_00000036940774178017761740000013908608175270815634_);">
<g style="clip-path:url(#full-logo_microsoft_lm_SVGID_00000036940774178017761740000013908608175270815634_);">
<path d="M62.4,40.4v19.2H59V44.5h0l-6,15.1h-2.2l-6.1-15.1h0v15.1h-3.1V40.4h4.8l5.5,14.2H52l5.8-14.2
C57.8,40.4,62.4,40.4,62.4,40.4z M65.1,41.9c0-0.5,0.2-1,0.6-1.3c0.4-0.4,0.8-0.5,1.4-0.5c0.6,0,1.1,0.2,1.4,0.5
c0.4,0.4,0.6,0.8,0.6,1.3s-0.2,1-0.6,1.3s-0.8,0.5-1.4,0.5c-0.6,0-1-0.2-1.4-0.5C65.4,42.8,65.1,42.4,65.1,41.9z M68.7,45.8v13.8
@@ -182,11 +182,11 @@
<rect x="16.8" y="50.8" width="15.2" height="15.2"/>
</g>
</g></symbol>
<symbol id="outlook_lm" viewBox="0 0 150 100"><g>
<symbol id="full-logo_outlook_lm" viewBox="0 0 150 100"><g>
<g>
<g style="clip-path:url(#outlook_lm_SVGID_00000119833196125725362670000007786869035082204049_);">
<g style="clip-path:url(#full-logo_outlook_lm_SVGID_00000119833196125725362670000007786869035082204049_);">
<g>
<path d="M8.1,48.9c0.1,0.4,0.2,0.8,0.2,1.1c0,0.4-0.1,0.8-0.2,1.2c0,0,0,0,0,0c-0.1,0.2-0.2,0.3-0.3,0.5c0,0.1-0.1,0.1-0.1,0.2
c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0.1-0.1,0.1c-0.1,0.1-0.3,0.2-0.4,0.2c-0.2,0.1-0.5,0.1-0.7,0.1c-0.2,0-0.4,0-0.6-0.1
@@ -248,11 +248,11 @@
</g>
</g>
</g></symbol>
<symbol id="paypal" viewBox="0 0 150 100"><g clip-path="url(#paypal_b)"><g><path d="M55.881,39.878h-8.301c-.568,0-1.051,.413-1.14,.973l-3.357,21.285c-.067,.42,.259,.799,.685,.799h3.963c.568,0,1.051-.413,1.14-.975l.905-5.741c.087-.562,.572-.975,1.138-.975h2.628c5.468,0,8.624-2.646,9.448-7.889,.371-2.294,.016-4.096-1.058-5.359-1.18-1.386-3.272-2.119-6.05-2.119Zm.958,7.774c-.454,2.978-2.73,2.978-4.93,2.978h-1.253l.879-5.563c.052-.336,.343-.584,.683-.584h.574c1.499,0,2.913,0,3.644,.854,.436,.51,.569,1.267,.403,2.313Z"/><path d="M80.693,47.556h-3.975c-.339,0-.631,.248-.683,.584l-.176,1.112-.278-.403c-.861-1.249-2.779-1.666-4.695-1.666-4.392,0-8.144,3.327-8.875,7.994-.38,2.328,.16,4.554,1.481,6.106,1.211,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.682,.801h3.58c.569,0,1.05-.413,1.14-.975l2.148-13.605c.068-.419-.256-.799-.681-.799Zm-5.541,7.736c-.384,2.271-2.186,3.795-4.485,3.795-1.154,0-2.077-.37-2.669-1.072-.587-.697-.811-1.688-.624-2.793,.358-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.606,.715,.846,1.713,.672,2.812Z"/><path d="M101.863,47.556h-3.994c-.381,0-.739,.189-.955,.506l-5.509,8.115-2.335-7.798c-.147-.488-.597-.823-1.107-.823h-3.925c-.477,0-.808,.466-.657,.915l4.4,12.912-4.136,5.839c-.325,.46,.002,1.092,.564,1.092h3.99c.379,0,.733-.184,.948-.495l13.285-19.177c.318-.459-.009-1.086-.568-1.086Z"/><path d="M115.088,39.878h-8.302c-.567,0-1.05,.413-1.138,.973l-3.357,21.285c-.067,.42,.259,.799,.682,.799h4.26c.396,0,.734-.289,.796-.682l.953-6.033c.087-.562,.572-.975,1.138-.975h2.627c5.469,0,8.624-2.646,9.449-7.889,.373-2.294,.015-4.096-1.06-5.359-1.179-1.386-3.27-2.119-6.048-2.119Zm.958,7.774c-.453,2.978-2.728,2.978-4.93,2.978h-1.251l.88-5.563c.052-.336,.341-.584,.682-.584h.574c1.498,0,2.913,0,3.644,.854,.436,.51,.568,1.267,.402,2.313Z"/><path d="M139.899,47.556h-3.973c-.341,0-.631,.248-.682,.584l-.176,1.112-.279-.403c-.861-1.249-2.778-1.666-4.693-1.666-4.392,0-8.143,3.327-8.874,7.994-.379,2.328,.159,4.554,1.48,6.106,1.214,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.685,.801h3.579c.567,0,1.05-.413,1.138-.975l2.15-13.605c.066-.419-.26-.799-.686-.799Zm-5.541,7.736c-.381,2.271-2.186,3.795-4.485,3.795-1.152,0-2.077-.37-2.669-1.072-.587-.697-.808-1.688-.624-2.793,.36-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.608,.715,.848,1.713,.672,2.812Z"/><path d="M144.585,40.461l-3.407,21.675c-.067,.42,.259,.799,.682,.799h3.425c.569,0,1.052-.413,1.14-.975l3.36-21.284c.067-.42-.259-.8-.682-.8h-3.835c-.339,.001-.63,.249-.682,.585Z"/><g><path d="M25.677,40.069h0c.081-4.558-3.663-8.383-8.872-8.383H5.736c-.488,0-.977,.407-1.058,.895L.364,60.011c-.081,.488,.326,.977,.814,.977H7.608l1.628-10.093h0c.081-.488,.488-.895,1.058-.895h5.046c5.128,0,9.442-3.744,10.255-8.79,.081-.326,.081-.733,.081-1.139h0Z"/><path d="M27.875,41.697c-.977,6.186-6.267,10.581-12.453,10.581h-3.988l-1.709,10.988h-2.36l-.651,4.07c-.081,.488,.244,.895,.733,.977h5.697c.488,0,.977-.407,1.058-.895l1.465-9.197c.081-.488,.488-.895,1.058-.895h3.256c5.128,0,9.442-3.744,10.255-8.79,.244-2.605-.651-5.046-2.36-6.837h0Z"/></g></g></g></symbol>
<symbol id="reddit_lm" viewBox="0 0 150 100"><g>
<symbol id="full-logo_paypal_lm" viewBox="0 0 150 100"><g clip-path="url(#full-logo_paypal_lm_b)"><g><path d="M55.881,39.878h-8.301c-.568,0-1.051,.413-1.14,.973l-3.357,21.285c-.067,.42,.259,.799,.685,.799h3.963c.568,0,1.051-.413,1.14-.975l.905-5.741c.087-.562,.572-.975,1.138-.975h2.628c5.468,0,8.624-2.646,9.448-7.889,.371-2.294,.016-4.096-1.058-5.359-1.18-1.386-3.272-2.119-6.05-2.119Zm.958,7.774c-.454,2.978-2.73,2.978-4.93,2.978h-1.253l.879-5.563c.052-.336,.343-.584,.683-.584h.574c1.499,0,2.913,0,3.644,.854,.436,.51,.569,1.267,.403,2.313Z"/><path d="M80.693,47.556h-3.975c-.339,0-.631,.248-.683,.584l-.176,1.112-.278-.403c-.861-1.249-2.779-1.666-4.695-1.666-4.392,0-8.144,3.327-8.875,7.994-.38,2.328,.16,4.554,1.481,6.106,1.211,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.682,.801h3.58c.569,0,1.05-.413,1.14-.975l2.148-13.605c.068-.419-.256-.799-.681-.799Zm-5.541,7.736c-.384,2.271-2.186,3.795-4.485,3.795-1.154,0-2.077-.37-2.669-1.072-.587-.697-.811-1.688-.624-2.793,.358-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.606,.715,.846,1.713,.672,2.812Z"/><path d="M101.863,47.556h-3.994c-.381,0-.739,.189-.955,.506l-5.509,8.115-2.335-7.798c-.147-.488-.597-.823-1.107-.823h-3.925c-.477,0-.808,.466-.657,.915l4.4,12.912-4.136,5.839c-.325,.46,.002,1.092,.564,1.092h3.99c.379,0,.733-.184,.948-.495l13.285-19.177c.318-.459-.009-1.086-.568-1.086Z"/><path d="M115.088,39.878h-8.302c-.567,0-1.05,.413-1.138,.973l-3.357,21.285c-.067,.42,.259,.799,.682,.799h4.26c.396,0,.734-.289,.796-.682l.953-6.033c.087-.562,.572-.975,1.138-.975h2.627c5.469,0,8.624-2.646,9.449-7.889,.373-2.294,.015-4.096-1.06-5.359-1.179-1.386-3.27-2.119-6.048-2.119Zm.958,7.774c-.453,2.978-2.728,2.978-4.93,2.978h-1.251l.88-5.563c.052-.336,.341-.584,.682-.584h.574c1.498,0,2.913,0,3.644,.854,.436,.51,.568,1.267,.402,2.313Z"/><path d="M139.899,47.556h-3.973c-.341,0-.631,.248-.682,.584l-.176,1.112-.279-.403c-.861-1.249-2.778-1.666-4.693-1.666-4.392,0-8.143,3.327-8.874,7.994-.379,2.328,.159,4.554,1.48,6.106,1.214,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.685,.801h3.579c.567,0,1.05-.413,1.138-.975l2.15-13.605c.066-.419-.26-.799-.686-.799Zm-5.541,7.736c-.381,2.271-2.186,3.795-4.485,3.795-1.152,0-2.077-.37-2.669-1.072-.587-.697-.808-1.688-.624-2.793,.36-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.608,.715,.848,1.713,.672,2.812Z"/><path d="M144.585,40.461l-3.407,21.675c-.067,.42,.259,.799,.682,.799h3.425c.569,0,1.052-.413,1.14-.975l3.36-21.284c.067-.42-.259-.8-.682-.8h-3.835c-.339,.001-.63,.249-.682,.585Z"/><g><path d="M25.677,40.069h0c.081-4.558-3.663-8.383-8.872-8.383H5.736c-.488,0-.977,.407-1.058,.895L.364,60.011c-.081,.488,.326,.977,.814,.977H7.608l1.628-10.093h0c.081-.488,.488-.895,1.058-.895h5.046c5.128,0,9.442-3.744,10.255-8.79,.081-.326,.081-.733,.081-1.139h0Z"/><path d="M27.875,41.697c-.977,6.186-6.267,10.581-12.453,10.581h-3.988l-1.709,10.988h-2.36l-.651,4.07c-.081,.488,.244,.895,.733,.977h5.697c.488,0,.977-.407,1.058-.895l1.465-9.197c.081-.488,.488-.895,1.058-.895h3.256c5.128,0,9.442-3.744,10.255-8.79,.244-2.605-.651-5.046-2.36-6.837h0Z"/></g></g></g></symbol>
<symbol id="full-logo_reddit_lm" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#reddit_lm_SVGID_00000077306300773993296170000006282503448525722808_);">
<g style="clip-path:url(#full-logo_reddit_lm_SVGID_00000077306300773993296170000006282503448525722808_);">
<g>
<path d="M20.6,53c0,1.3-1.1,2.4-2.4,2.4c-1.3,0-2.4-1.1-2.4-2.4c0-1.3,1.1-2.4,2.4-2.4C19.5,50.6,20.6,51.7,20.6,53z"/>
<path d="M29.8,59.8L29.8,59.8c-1.7,1.2-3.8,1.9-6,1.8c-2.2,0.1-4.3-0.6-6-1.9c-0.2-0.3-0.2-0.7,0.1-0.9c0.2-0.2,0.6-0.2,0.8,0
@@ -288,10 +288,10 @@
</g>
</g>
</g></symbol>
<symbol id="tiktok_lm" viewBox="0 0 150 100"><g>
<symbol id="full-logo_tiktok_lm" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#tiktok_lm_SVGID_00000032639560811427434040000000811433255322531472_);">
<g style="clip-path:url(#full-logo_tiktok_lm_SVGID_00000032639560811427434040000000811433255322531472_);">
<path d="M37.1,39.8v7.3c-3.8,0-7.3-1.2-10.2-3.2v14.9c0,7.4-6,13.5-13.5,13.5c-1.9,0-3.7-0.4-5.3-1.1c-1.6-0.7-3.1-1.7-4.3-3
C1.5,65.7,0,62.3,0,58.7c0-7.3,5.9-13.3,13.2-13.5c0.7,0,1.4,0,2.1,0.1v7.4c-0.6-0.2-1.2-0.3-1.9-0.3c-3.4,0-6.2,2.8-6.2,6.2
c0,1.3,0.4,2.7,1.3,3.7c1.1,1.5,2.9,2.4,4.9,2.4c3.4,0,6.1-2.7,6.2-6.1V29.6h7.3v0.9c0.2,2.3,1.2,4.4,2.6,5.9
@@ -304,21 +304,19 @@
M113.7,54.7c0-2.6,2.1-4.6,4.7-4.6c2.6,0,4.7,2.1,4.7,4.6c0,2.6-2.1,4.6-4.7,4.6C115.8,59.4,113.7,57.3,113.7,54.7z"/>
</g>
</g></symbol>
<symbol id="x_lm" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="x_lm_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
<inkscape:page bleed="0" height="799.33301" id="x_lm_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
</sodipodi:namedview>
<g>
<symbol id="full-logo_x_lm" viewBox="0 0 150 100"><g>
<path id="x_lm_path1-93" style="clip-path:url(#x_lm_SVGID_00000177462708669193929580000017692624354562733996_);" d="M35.6,2.2h6.9
L27.3,19.4L45,42.8H31.1L20.2,28.6L7.8,42.8H0.9l16-18.4L0,2.2h14.2l9.8,13L35.6,2.2z M33.1,38.8H37L12.2,6.1H8.1L33.1,38.8z"/>
<path id="full-logo_x_lm_path1-93" style="clip-path:url(#full-logo_x_lm_SVGID_00000081637214850573032100000008755495560982913698_);fill:#1D1D1B;" d="M107.3,0
h17L86.8,42.4l43.6,57.6H96.2L69.3,65l-30.5,35h-17l39.4-45.3L19.6,0h35l24.1,32L107.3,0z M101.1,90.1h9.6L49.6,9.6H39.5
L101.1,90.1z"/>
</g></symbol>
<symbol id="yahoo_lm" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="yahoo_lm_base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
<symbol id="full-logo_yahoo_lm" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="full-logo_yahoo_lm_base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
</sodipodi:namedview>
<g>
<path id="yahoo_lm_path1" style="clip-path:url(#yahoo_lm_SVGID_00000031181146065471032980000007153336671717816469_);" d="M53.8,29.2v33.1h8.1V49.8
<path id="full-logo_yahoo_lm_path1" style="clip-path:url(#full-logo_yahoo_lm_SVGID_00000031181146065471032980000007153336671717816469_);" d="M53.8,29.2v33.1h8.1V49.8
c0-1.8,1-3.5,3-3.5c1.9,0,2.8,1.7,2.8,3.5v12.5h8.1V47.8c0-5.3-2.9-9-7.9-9c-4,0-6,2.7-6,2.7V29.2H53.8z M140.3,29.2L131.7,50h9.7
l8.6-20.7H140.3z M37.1,38.8c-6.7,0-10.9,6-10.9,12c0,6.7,4.6,12.1,10.8,12.1c4.6,0,6.3-2.8,6.3-2.8v2.2h7.8V39.3h-7.8v2.1
C43.3,41.4,41.4,38.8,37.1,38.8L37.1,38.8z M89.7,38.8c-7.7,0-12.3,5.8-12.3,12.1c0,7.1,5.5,12,12.3,12c6.5,0,12.3-4.6,12.3-11.9

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 36 KiB

View File

@@ -1,68 +1,68 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<rect id="amazon_da_SVGID_1_" width="45" height="45"/>
<clipPath id="amazon_da_SVGID_00000103945626923729522640000002728947690711649722_">
<use xlink:href="#amazon_da_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_amazon_da_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_amazon_da_SVGID_00000103945626923729522640000002728947690711649722_">
<use xlink:href="#icon_amazon_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="apple_da_SVGID_1_" y="0" width="45" height="45"/>
<clipPath id="apple_da_SVGID_00000060735205758585109570000013329734257957802172_">
<use xlink:href="#apple_da_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_apple_da_SVGID_1_" y="0" width="45" height="45"/>
<clipPath id="icon_apple_da_SVGID_00000060735205758585109570000013329734257957802172_">
<use xlink:href="#icon_apple_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="facebook_da_SVGID_1_" width="45" height="45"/>
<clipPath id="facebook_da_SVGID_00000034085081856624986540000002135340857348496052_">
<use xlink:href="#facebook_da_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_facebook_da_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_facebook_da_SVGID_00000034085081856624986540000002135340857348496052_">
<use xlink:href="#icon_facebook_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="google_da_SVGID_1_" y="0" width="45" height="45"/>
<clipPath id="google_da_SVGID_00000093175742716061305440000012839878743406280589_">
<use xlink:href="#google_da_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_google_da_SVGID_1_" y="0" width="45" height="45"/>
<clipPath id="icon_google_da_SVGID_00000093175742716061305440000012839878743406280589_">
<use xlink:href="#icon_google_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="linkedin_da_SVGID_1_" width="45" height="45"/>
<clipPath id="linkedin_da_SVGID_00000175314073918417958300000008145520864861192858_">
<use xlink:href="#linkedin_da_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_linkedin_da_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_linkedin_da_SVGID_00000175314073918417958300000008145520864861192858_">
<use xlink:href="#icon_linkedin_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="microsoft_da_SVGID_1_" width="45" height="45"/>
<clipPath id="microsoft_da_SVGID_00000134964504126155181390000016015544168301834665_">
<use xlink:href="#microsoft_da_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_microsoft_da_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_microsoft_da_SVGID_00000134964504126155181390000016015544168301834665_">
<use xlink:href="#icon_microsoft_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="outlook_da_SVGID_1_" width="45" height="45"/>
<clipPath id="outlook_da_SVGID_00000142175343618381503510000018209596900072540076_">
<use xlink:href="#outlook_da_SVGID_1_" style="overflow:visible;"/>
</clipPath><linearGradient id="outlook_da_SVGID_00000178893677566534872460000008175661915959753105_" gradientUnits="userSpaceOnUse" x1="27.8" y1="-400.7875" x2="27.8" y2="-380.9034" gradientTransform="matrix(1 0 0 1 0 424.3334)">
<rect id="icon_outlook_da_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_outlook_da_SVGID_00000142175343618381503510000018209596900072540076_">
<use xlink:href="#icon_outlook_da_SVGID_1_" style="overflow:visible;"/>
</clipPath><linearGradient id="icon_outlook_da_SVGID_00000178893677566534872460000008175661915959753105_" gradientUnits="userSpaceOnUse" x1="27.8" y1="-400.7875" x2="27.8" y2="-380.9034" gradientTransform="matrix(1 0 0 1 0 424.3334)">
<stop offset="0" style="stop-color:#35B8F1"/>
<stop offset="1" style="stop-color:#28A8EA"/>
</linearGradient><linearGradient id="outlook_da_SVGID_00000004522009818112132130000013891631424962776760_" gradientUnits="userSpaceOnUse" x1="3.9917" y1="-414.8341" x2="19.0054" y2="-388.831" gradientTransform="matrix(1 0 0 1 0 424.3334)">
</linearGradient><linearGradient id="icon_outlook_da_SVGID_00000004522009818112132130000013891631424962776760_" gradientUnits="userSpaceOnUse" x1="3.9917" y1="-414.8341" x2="19.0054" y2="-388.831" gradientTransform="matrix(1 0 0 1 0 424.3334)">
<stop offset="0" style="stop-color:#1784D9"/>
<stop offset="0.5" style="stop-color:#107AD5"/>
<stop offset="1" style="stop-color:#0A63C9"/>
</linearGradient>
<rect id="paypal_da_SVGID_1_" width="45" height="45"/>
<rect id="icon_paypal_da_SVGID_1_" width="45" height="45"/>
<rect id="paypal_da_SVGID_00000090278111375063928200000005660436191898252989_" x="3.8" width="37.5" height="45"/>
<clipPath id="paypal_da_SVGID_00000178905000801018816270000000595340288601248653_">
<use xlink:href="#paypal_da_SVGID_1_" style="overflow:visible;"/>
</clipPath><clipPath id="paypal_da_SVGID_00000013902957048494893340000011614360303027698863_">
<use xlink:href="#paypal_da_SVGID_00000090278111375063928200000005660436191898252989_" style="overflow:visible;"/>
<rect id="icon_paypal_da_SVGID_00000090278111375063928200000005660436191898252989_" x="3.8" width="37.5" height="45"/>
<clipPath id="icon_paypal_da_SVGID_00000178905000801018816270000000595340288601248653_">
<use xlink:href="#icon_paypal_da_SVGID_1_" style="overflow:visible;"/>
</clipPath><clipPath id="icon_paypal_da_SVGID_00000013902957048494893340000011614360303027698863_">
<use xlink:href="#icon_paypal_da_SVGID_00000090278111375063928200000005660436191898252989_" style="overflow:visible;"/>
</clipPath>
<rect id="reddit_da_SVGID_1_" width="45" height="45"/>
<clipPath id="reddit_da_SVGID_00000124849647007209382570000004658845687698315425_">
<use xlink:href="#reddit_da_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_reddit_da_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_reddit_da_SVGID_00000124849647007209382570000004658845687698315425_">
<use xlink:href="#icon_reddit_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="tiktok_da_SVGID_1_" width="45" height="45"/>
<clipPath id="tiktok_da_SVGID_00000018223504416230893350000004742180968103937210_">
<use xlink:href="#tiktok_da_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_tiktok_da_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_tiktok_da_SVGID_00000018223504416230893350000004742180968103937210_">
<use xlink:href="#icon_tiktok_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="x_da_SVGID_1_" width="45" height="45"/>
<clipPath id="x_da_SVGID_00000164514804879238509620000002248351286751785613_">
<use xlink:href="#x_da_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_x_da_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_x_da_SVGID_00000164514804879238509620000002248351286751785613_">
<use xlink:href="#icon_x_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="yahoo_da_SVGID_1_" width="45" height="45"/>
<clipPath id="yahoo_da_SVGID_00000123421341152736845370000000721072103824160703_">
<use xlink:href="#yahoo_da_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_yahoo_da_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_yahoo_da_SVGID_00000123421341152736845370000000721072103824160703_">
<use xlink:href="#icon_yahoo_da_SVGID_1_" style="overflow:visible;"/>
</clipPath></defs>
<symbol id="amazon_da" viewBox="0 0 45 45"><g>
<symbol id="icon_amazon_da" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#amazon_da_SVGID_00000103945626923729522640000002728947690711649722_);">
<g style="clip-path:url(#icon_amazon_da_SVGID_00000103945626923729522640000002728947690711649722_);">
<g>
<path style="fill:#FF9900;" d="M39,37c-18.6,8.8-30.1,1.4-37.5-3c-0.5-0.3-1.2,0.1-0.6,0.8C3.4,37.8,11.4,45,22,45s16.8-5.7,17.6-6.7
C40.3,37.3,39.8,36.7,39,37L39,37L39,37z M44.2,34.2c-0.5-0.6-3-0.8-4.6-0.6c-1.6,0.2-4,1.2-3.8,1.8c0.1,0.2,0.3,0.1,1.4,0
@@ -76,11 +76,11 @@
</g>
</g>
</g></symbol>
<symbol id="apple_da" viewBox="0 0 45 45"><g>
<symbol id="icon_apple_da" viewBox="0 0 45 45"><g>
<g>
<g style="clip-path:url(#apple_da_SVGID_00000060735205758585109570000013329734257957802172_);">
<g style="clip-path:url(#icon_apple_da_SVGID_00000060735205758585109570000013329734257957802172_);">
<path style="fill:#FFFFFF;" d="M28.8,7.2c-1.5,1.8-4.2,3.3-6.6,3c-0.3-2.4,0.9-5.1,2.4-6.9S29.1,0,31.2,0C31.5,2.7,30.3,5.4,28.8,7.2
M31.2,11c-3.6-0.3-6.9,2.1-8.3,2.1c-1.8,0-4.5-2.1-7.2-1.8c-3.9,0-7.2,2.1-9.2,5.7c-3.9,6.9-0.9,16.7,2.7,22.4
c1.8,2.7,4.2,5.7,7.2,5.7c2.7,0,3.9-1.8,7.2-1.8s4.5,1.8,7.2,1.8c3,0,5.1-2.7,6.9-5.4c2.1-3,3-6,3-6.3c0,0-6-2.4-6-8.9
@@ -88,10 +88,10 @@
</g>
</g>
</g></symbol>
<symbol id="facebook_da" viewBox="0 0 45 45"><g>
<symbol id="icon_facebook_da" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#facebook_da_SVGID_00000034085081856624986540000002135340857348496052_);">
<g style="clip-path:url(#icon_facebook_da_SVGID_00000034085081856624986540000002135340857348496052_);">
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#1977F3;" d="M45,22.5C45,10.1,35,0,22.5,0S0,10.1,0,22.5c0,11.2,8.2,20.5,19,22.2V29.1h-5.7v-6.5H19v-5
c0-5.6,3.4-8.8,8.5-8.8c2.5,0,5,0.4,5,0.4v5.5h-2.8c-2.8,0-3.7,1.7-3.7,3.5v4.2h6.2l-1,6.5h-5.2v15.7C36.8,43.1,45,33.8,45,22.5
L45,22.5z"/>
@@ -99,10 +99,10 @@
v6.5H19v15.7c1.1,0.2,2.3,0.3,3.5,0.3c1.2,0,2.4-0.1,3.5-0.3V29.1L31.3,29.1L31.3,29.1z"/>
</g>
</g></symbol>
<symbol id="google_da" viewBox="0 0 45 45"><g>
<symbol id="icon_google_da" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#google_da_SVGID_00000093175742716061305440000012839878743406280589_);">
<g style="clip-path:url(#icon_google_da_SVGID_00000093175742716061305440000012839878743406280589_);">
<g>
<g>
<g>
@@ -119,31 +119,31 @@
</g>
</g>
</g></symbol>
<symbol id="linkedin_da" viewBox="0 0 45 45"><g>
<symbol id="icon_linkedin_da" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#linkedin_da_SVGID_00000175314073918417958300000008145520864861192858_);">
<g style="clip-path:url(#icon_linkedin_da_SVGID_00000175314073918417958300000008145520864861192858_);">
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#007EBB;" d="M5,45h35c2.8,0,5-2.2,5-5V5c0-2.8-2.2-5-5-5H5C2.2,0,0,2.2,0,5v35C0,42.8,2.2,45,5,45z"/>
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M38.8,38.8h-6.7V27.4c0-3.1-1.2-4.9-3.7-4.9c-2.7,0-4.1,1.8-4.1,4.9v11.4h-6.4V17.1h6.4V20
c0,0,1.9-3.6,6.5-3.6c4.6,0,7.9,2.8,7.9,8.6V38.8z M10.2,14.2c-2.2,0-4-1.8-4-4s1.8-4,4-4s4,1.8,4,4S12.4,14.2,10.2,14.2z
M6.9,38.8h6.7V17.1H6.9V38.8z"/>
</g>
</g></symbol>
<symbol id="microsoft_da" viewBox="0 0 45 45"><g>
<symbol id="icon_microsoft_da" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#microsoft_da_SVGID_00000134964504126155181390000016015544168301834665_);">
<g style="clip-path:url(#icon_microsoft_da_SVGID_00000134964504126155181390000016015544168301834665_);">
<path style="fill:#F25022;" d="M0,0h21.4v21.4H0V0z"/>
<path style="fill:#7FBA00;" d="M23.6,0H45v21.4H23.6V0z"/>
<path style="fill:#00A4EF;" d="M0,23.6h21.4V45H0V23.6z"/>
<path style="fill:#FFB900;" d="M23.6,23.6H45V45H23.6V23.6z"/>
</g>
</g></symbol>
<symbol id="outlook_da" viewBox="0 0 45 45"><g>
<symbol id="icon_outlook_da" viewBox="0 0 45 45"><g>
<g>
<g style="clip-path:url(#outlook_da_SVGID_00000142175343618381503510000018209596900072540076_);">
<g style="clip-path:url(#icon_outlook_da_SVGID_00000142175343618381503510000018209596900072540076_);">
<path style="fill:#0A2767;" d="M45,23.5c0-0.4-0.2-0.7-0.5-0.9l0,0l0,0l-15.6-9.2c-0.1,0-0.1-0.1-0.2-0.1c-0.6-0.3-1.3-0.3-1.9,0
c-0.1,0-0.1,0.1-0.2,0.1L11,22.7l0,0c-0.5,0.3-0.6,0.9-0.3,1.4c0.1,0.1,0.2,0.3,0.4,0.3l15.6,9.2c0.1,0,0.1,0.1,0.2,0.1
c0.6,0.3,1.3,0.3,1.9,0c0.1,0,0.1-0.1,0.2-0.1l15.6-9.2C44.8,24.2,45,23.9,45,23.5z"/>
@@ -157,7 +157,7 @@
<path style="fill:#0078D4;" d="M33.5,26.7h9.4v9.4h-9.4V26.7z"/>
<path style="fill:url(#outlook_da_SVGID_00000178893677566534872460000008175661915959753105_);" d="M44.5,24.4L44.5,24.4l-15.6,8.8
<path style="fill:url(#icon_outlook_da_SVGID_00000178893677566534872460000008175661915959753105_);" d="M44.5,24.4L44.5,24.4l-15.6,8.8
c-0.1,0-0.1,0.1-0.2,0.1c-0.3,0.1-0.6,0.2-0.8,0.2L27,33c-0.1,0-0.1-0.1-0.2-0.1l-15.8-9l0,0l-0.5-0.3v17.8c0,1.2,1,2.1,2.2,2.1
h30.2c0,0,0,0,0.1,0c0.3,0,0.5-0.1,0.7-0.2c0.1,0,0.2-0.1,0.3-0.2c0.1,0,0.2-0.1,0.2-0.1c0.5-0.4,0.9-1,0.9-1.7V23.5
C45,23.9,44.8,24.2,44.5,24.4z"/>
@@ -181,7 +181,7 @@
<path style="opacity:0.2;enable-background:new ;" d="M23,12.9v20.2c0,1.1-0.9,1.9-1.9,1.9H10.5V11h10.6C22.2,11,23,11.8,23,12.9L23,12.9z"/>
<path style="fill:url(#outlook_da_SVGID_00000004522009818112132130000013891631424962776760_);" d="M1.9,11h19.2c1.1,0,1.9,0.9,1.9,1.9
<path style="fill:url(#icon_outlook_da_SVGID_00000004522009818112132130000013891631424962776760_);" d="M1.9,11h19.2c1.1,0,1.9,0.9,1.9,1.9
v19.2c0,1.1-0.9,1.9-1.9,1.9H1.9c-1,0-1.9-0.8-1.9-1.9V12.9C0,11.8,0.9,11,1.9,11z"/>
<path style="fill:#FFFFFF;" d="M6,19c0.5-1,1.2-1.9,2.2-2.4c1.1-0.6,2.3-0.9,3.5-0.9c1.1,0,2.2,0.3,3.2,0.8c0.9,0.5,1.7,1.4,2.1,2.3
c0.5,1.1,0.8,2.2,0.7,3.4c0,1.2-0.2,2.4-0.8,3.6c-0.5,1-1.2,1.8-2.2,2.4s-2.2,0.9-3.3,0.8c-1.2,0-2.3-0.3-3.3-0.8
@@ -192,14 +192,14 @@
</g>
</g>
</g></symbol>
<symbol id="paypal_da" viewBox="0 0 45 45"><g>
<symbol id="icon_paypal_da" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#paypal_da_SVGID_00000178905000801018816270000000595340288601248653_);">
<g style="clip-path:url(#icon_paypal_da_SVGID_00000178905000801018816270000000595340288601248653_);">
<g>
<g style="clip-path:url(#paypal_da_SVGID_00000013902957048494893340000011614360303027698863_);">
<g style="clip-path:url(#icon_paypal_da_SVGID_00000013902957048494893340000011614360303027698863_);">
<g>
<path style="fill:#002991;" d="M35.7,10.4c0,5.6-5.2,12.1-13,12.1h-7.5l-0.4,2.3L13.1,36H3.8L9.4,0h15.2c5.1,0,9.1,2.8,10.6,6.8
C35.5,7.9,35.8,9.1,35.7,10.4z"/>
@@ -212,10 +212,10 @@
</g>
</g>
</g></symbol>
<symbol id="reddit_da" viewBox="0 0 45 45"><g>
<symbol id="icon_reddit_da" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#reddit_da_SVGID_00000124849647007209382570000004658845687698315425_);">
<g style="clip-path:url(#icon_reddit_da_SVGID_00000124849647007209382570000004658845687698315425_);">
<circle style="fill:#FF4500;" cx="22.5" cy="22.5" r="22.5"/>
<path style="fill:#FFFFFF;" d="M37.5,22.5c-0.1-1.8-1.6-3.2-3.4-3.2c-0.8,0-1.6,0.4-2.2,0.9c-2.6-1.7-5.6-2.7-8.7-2.8l1.5-7l4.8,1
c0.1,1.2,1.2,2.1,2.5,2c1.2-0.1,2.1-1.2,2-2.5s-1.2-2.1-2.5-2c-0.7,0.1-1.3,0.5-1.7,1.1L24.3,9c-0.4-0.1-0.7,0.2-0.8,0.5
@@ -227,10 +227,10 @@
c0-1.2,1-2.3,2.3-2.3s2.3,1,2.3,2.3C30,26.1,29,27.1,27.7,27.1C27.7,27.2,27.7,27.2,27.7,27.1L27.7,27.1z"/>
</g>
</g></symbol>
<symbol id="tiktok_da" viewBox="0 0 45 45"><g>
<symbol id="icon_tiktok_da" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#tiktok_da_SVGID_00000018223504416230893350000004742180968103937210_);">
<g style="clip-path:url(#icon_tiktok_da_SVGID_00000018223504416230893350000004742180968103937210_);">
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M10.2,0h24.6C40.4,0,45,4.6,45,10.2v24.6C45,40.4,40.4,45,34.8,45H10.2C4.6,45,0,40.4,0,34.8V10.2
C0,4.6,4.6,0,10.2,0z"/>
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M0,0"/>
@@ -251,20 +251,20 @@
</g>
</g>
</g></symbol>
<symbol id="x_da" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="x_da_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
<inkscape:page bleed="0" height="799.33301" id="x_da_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
<symbol id="icon_x_da" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="icon_x_da_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
<inkscape:page bleed="0" height="799.33301" id="icon_x_da_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
</sodipodi:namedview>
<g>
<path id="x_da_path1-93" style="clip-path:url(#x_da_SVGID_00000164514804879238509620000002248351286751785613_);fill:#FFFFFF;" d="
<path id="icon_x_da_path1-93" style="clip-path:url(#icon_x_da_SVGID_00000164514804879238509620000002248351286751785613_);fill:#FFFFFF;" d="
M35.6,2.2h6.9L27.3,19.4L45,42.8H31.1L20.2,28.6L7.8,42.8H0.9l16-18.4L0,2.2h14.2l9.8,13L35.6,2.2z M33.1,38.8H37L12.2,6.1H8.1
L33.1,38.8z"/>
</g></symbol>
<symbol id="yahoo_da" viewBox="0 0 45 45"><g>
<symbol id="icon_yahoo_da" viewBox="0 0 45 45"><g>
<path style="clip-path:url(#yahoo_da_SVGID_00000123421341152736845370000000721072103824160703_);fill:#5F01D1;" d="M0,12.2h8.6l5,12.8
<path style="clip-path:url(#icon_yahoo_da_SVGID_00000123421341152736845370000000721072103824160703_);fill:#5F01D1;" d="M0,12.2h8.6l5,12.8
l5.1-12.8H27L14.4,42.5H6l3.4-8L0,12.2L0,12.2z M36.7,22.5h-9.4l8.3-20l9.3,0L36.7,22.5L36.7,22.5z M29.8,24.4
c2.9,0,5.2,2.3,5.2,5.2c0,2.9-2.3,5.2-5.2,5.2c-2.9,0-5.2-2.3-5.2-5.2C24.6,26.7,26.9,24.4,29.8,24.4L29.8,24.4z"/>
</g></symbol>

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

@@ -1,66 +1,66 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<rect id="amazon_dm_SVGID_1_" width="45" height="45"/>
<rect id="icon_amazon_dm_SVGID_1_" width="45" height="45"/>
<rect id="amazon_dm_SVGID_00000093872422312005854910000000962687890768438402_" width="45" height="45"/>
<clipPath id="amazon_dm_SVGID_00000103248556473531316020000006347545801468702399_">
<use xlink:href="#amazon_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath><clipPath id="amazon_dm_SVGID_00000169531717617770325750000004330323237332989317_">
<use xlink:href="#amazon_dm_SVGID_00000093872422312005854910000000962687890768438402_" style="overflow:visible;"/>
<rect id="icon_amazon_dm_SVGID_00000093872422312005854910000000962687890768438402_" width="45" height="45"/>
<clipPath id="icon_amazon_dm_SVGID_00000103248556473531316020000006347545801468702399_">
<use xlink:href="#icon_amazon_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath><clipPath id="icon_amazon_dm_SVGID_00000169531717617770325750000004330323237332989317_">
<use xlink:href="#icon_amazon_dm_SVGID_00000093872422312005854910000000962687890768438402_" style="overflow:visible;"/>
</clipPath>
<rect id="apple_dm_SVGID_1_" y="0" width="45" height="45"/>
<clipPath id="apple_dm_SVGID_00000006667370234986338750000006430319485248344488_">
<use xlink:href="#apple_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_apple_dm_SVGID_1_" y="0" width="45" height="45"/>
<clipPath id="icon_apple_dm_SVGID_00000006667370234986338750000006430319485248344488_">
<use xlink:href="#icon_apple_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="facebook_dm_SVGID_1_" width="45" height="45"/>
<clipPath id="facebook_dm_SVGID_00000160911352011852748990000012412001075002997915_">
<use xlink:href="#facebook_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_facebook_dm_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_facebook_dm_SVGID_00000160911352011852748990000012412001075002997915_">
<use xlink:href="#icon_facebook_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="google_dm_SVGID_1_" width="45" height="45"/>
<clipPath id="google_dm_SVGID_00000157289140752715482350000007521226302924868282_">
<use xlink:href="#google_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_google_dm_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_google_dm_SVGID_00000157289140752715482350000007521226302924868282_">
<use xlink:href="#icon_google_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="linkedin_dm_SVGID_1_" width="45" height="45"/>
<clipPath id="linkedin_dm_SVGID_00000067207488217466862340000013022568391259568783_">
<use xlink:href="#linkedin_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_linkedin_dm_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_linkedin_dm_SVGID_00000067207488217466862340000013022568391259568783_">
<use xlink:href="#icon_linkedin_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="microsoft_dm_SVGID_1_" width="45" height="45"/>
<clipPath id="microsoft_dm_SVGID_00000067227851144764912490000015670900565484668574_">
<use xlink:href="#microsoft_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_microsoft_dm_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_microsoft_dm_SVGID_00000067227851144764912490000015670900565484668574_">
<use xlink:href="#icon_microsoft_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="outlook_dm_SVGID_1_" width="45" height="45"/>
<clipPath id="outlook_dm_SVGID_00000027577413913333259450000010373114094098190499_">
<use xlink:href="#outlook_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_outlook_dm_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_outlook_dm_SVGID_00000027577413913333259450000010373114094098190499_">
<use xlink:href="#icon_outlook_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="paypal_dm_SVGID_1_" width="45" height="45"/>
<rect id="icon_paypal_dm_SVGID_1_" width="45" height="45"/>
<rect id="paypal_dm_SVGID_00000183242323167375670930000002421128438921142686_" width="45" height="45"/>
<clipPath id="paypal_dm_SVGID_00000028289222173765833380000004189814725540328076_">
<use xlink:href="#paypal_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath><clipPath id="paypal_dm_SVGID_00000057830829683723910860000009463646960710544536_">
<use xlink:href="#paypal_dm_SVGID_00000183242323167375670930000002421128438921142686_" style="overflow:visible;"/>
<rect id="icon_paypal_dm_SVGID_00000183242323167375670930000002421128438921142686_" width="45" height="45"/>
<clipPath id="icon_paypal_dm_SVGID_00000028289222173765833380000004189814725540328076_">
<use xlink:href="#icon_paypal_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath><clipPath id="icon_paypal_dm_SVGID_00000057830829683723910860000009463646960710544536_">
<use xlink:href="#icon_paypal_dm_SVGID_00000183242323167375670930000002421128438921142686_" style="overflow:visible;"/>
</clipPath>
<rect id="reddit_dm_SVGID_1_" width="45" height="45"/>
<clipPath id="reddit_dm_SVGID_00000031168642836518867390000007570234273682262957_">
<use xlink:href="#reddit_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_reddit_dm_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_reddit_dm_SVGID_00000031168642836518867390000007570234273682262957_">
<use xlink:href="#icon_reddit_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="tiktok_dm_SVGID_1_" width="45" height="45"/>
<clipPath id="tiktok_dm_SVGID_00000168097799505604195400000002784558140406772116_">
<use xlink:href="#tiktok_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_tiktok_dm_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_tiktok_dm_SVGID_00000168097799505604195400000002784558140406772116_">
<use xlink:href="#icon_tiktok_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="x_dm_SVGID_1_" width="45" height="45"/>
<clipPath id="x_dm_SVGID_00000078743550890106176290000000360767509830120849_">
<use xlink:href="#x_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_x_dm_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_x_dm_SVGID_00000078743550890106176290000000360767509830120849_">
<use xlink:href="#icon_x_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="yahoo_dm_SVGID_1_" width="45" height="45"/>
<clipPath id="yahoo_dm_SVGID_00000096762850415739735390000017350860078463233711_">
<use xlink:href="#yahoo_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_yahoo_dm_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_yahoo_dm_SVGID_00000096762850415739735390000017350860078463233711_">
<use xlink:href="#icon_yahoo_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath></defs>
<symbol id="amazon_dm" viewBox="0 0 45 45"><g>
<symbol id="icon_amazon_dm" viewBox="0 0 45 45"><g>
<g>
<path style="clip-path:url(#amazon_dm_SVGID_00000103248556473531316020000006347545801468702399_);fill:#FFFFFF;" d="M39,37
<path style="clip-path:url(#icon_amazon_dm_SVGID_00000103248556473531316020000006347545801468702399_);fill:#FFFFFF;" d="M39,37
c-18.6,8.8-30.1,1.4-37.5-3c-0.5-0.3-1.2,0.1-0.6,0.8C3.4,37.8,11.4,45,22,45s16.8-5.7,17.6-6.7C40.3,37.3,39.8,36.7,39,37L39,37
L39,37z M44.2,34.2c-0.5-0.6-3-0.8-4.6-0.6s-4,1.2-3.8,1.8c0.1,0.2,0.3,0.1,1.4,0c1.1-0.1,4.2-0.5,4.8,0.3s-1,4.9-1.3,5.5
s0.1,0.8,0.6,0.4c0.5-0.4,1.5-1.6,2.1-3.1C44.2,36.9,44.6,34.7,44.2,34.2L44.2,34.2L44.2,34.2z"/>
@@ -69,7 +69,7 @@
<path style="clip-path:url(#amazon_dm_SVGID_00000169531717617770325750000004330323237332989317_);fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="
<path style="clip-path:url(#icon_amazon_dm_SVGID_00000169531717617770325750000004330323237332989317_);fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="
M26.5,19c0,2.3,0.1,4.3-1.1,6.3c-1,1.7-2.5,2.7-4.2,2.7c-2.3,0-3.6-1.7-3.6-4.3c0-5.1,4.5-6,8.9-6V19z M32.5,33.5
c-0.4,0.4-1,0.4-1.4,0.1c-2-1.6-2.3-2.4-3.4-4C24.4,33,22.1,34,17.8,34c-5,0-8.9-3.1-8.9-9.3c0-4.8,2.6-8.1,6.3-9.7
c3.2-1.4,7.7-1.7,11.2-2.1v-0.8c0-1.4,0.1-3.1-0.7-4.3c-0.7-1.1-2.1-1.5-3.3-1.5c-2.3,0-4.3,1.2-4.8,3.6c-0.1,0.5-0.5,1.1-1,1.1
@@ -77,11 +77,11 @@
c0.4,0.5,0.5,1.2,0,1.6C35.8,30.6,33.7,32.5,32.5,33.5L32.5,33.5"/>
</g>
</g></symbol>
<symbol id="apple_dm" viewBox="0 0 45 45"><g>
<symbol id="icon_apple_dm" viewBox="0 0 45 45"><g>
<g>
<g style="clip-path:url(#apple_dm_SVGID_00000006667370234986338750000006430319485248344488_);">
<g style="clip-path:url(#icon_apple_dm_SVGID_00000006667370234986338750000006430319485248344488_);">
<g>
<path style="fill:#FFFFFF;" d="M28.8,7.2c-1.5,1.8-4.2,3.3-6.6,3c-0.3-2.4,0.9-5.1,2.4-6.9S29.1,0,31.2,0C31.5,2.7,30.3,5.4,28.8,7.2
M31.2,11c-3.6-0.3-6.9,2.1-8.3,2.1c-1.8,0-4.5-2.1-7.2-1.8c-3.9,0-7.2,2.1-9.2,5.7c-3.9,6.9-0.9,16.7,2.7,22.4
@@ -91,20 +91,20 @@
</g>
</g>
</g></symbol>
<symbol id="facebook_dm" viewBox="0 0 45 45"><g>
<symbol id="icon_facebook_dm" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#facebook_dm_SVGID_00000160911352011852748990000012412001075002997915_);">
<g style="clip-path:url(#icon_facebook_dm_SVGID_00000160911352011852748990000012412001075002997915_);">
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M45,22.5C45,10.1,35,0,22.5,0S0,10.1,0,22.5c0,11.2,8.2,20.5,19,22.2V29.1h-5.7v-6.5H19v-5
c0-5.6,3.4-8.8,8.5-8.8c2.5,0,5,0.4,5,0.4v5.5h-2.8c-2.8,0-3.7,1.7-3.7,3.5v4.2h6.2l-1,6.5h-5.2v15.7C36.8,43.1,45,33.8,45,22.5
L45,22.5z"/>
</g>
</g></symbol>
<symbol id="google_dm" viewBox="0 0 45 45"><g>
<symbol id="icon_google_dm" viewBox="0 0 45 45"><g>
<g>
<g style="clip-path:url(#google_dm_SVGID_00000157289140752715482350000007521226302924868282_);">
<g style="clip-path:url(#icon_google_dm_SVGID_00000157289140752715482350000007521226302924868282_);">
<g>
<path style="fill:#FFFFFF;" d="M44.9,20.6c-0.1-0.9-0.2-1.8-0.4-2.7h-22v9.2H35c-0.7,1.8-1.7,3.4-3.1,4.8c-2.5,2.5-5.9,3.9-9.4,3.9
s-6.9-1.4-9.4-3.9S9.2,26,9.2,22.5s1.4-6.9,3.9-9.4c5.2-5.2,13.6-5.2,18.8,0l6.5-6.5c-8.8-8.8-23-8.8-31.8,0
@@ -114,29 +114,29 @@
</g>
</g>
</g></symbol>
<symbol id="linkedin_dm" viewBox="0 0 45 45"><g>
<symbol id="icon_linkedin_dm" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#linkedin_dm_SVGID_00000067207488217466862340000013022568391259568783_);">
<g style="clip-path:url(#icon_linkedin_dm_SVGID_00000067207488217466862340000013022568391259568783_);">
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M40,0H5C2.2,0,0,2.2,0,5v35c0,2.8,2.2,5,5,5h35c2.8,0,5-2.2,5-5V5C45,2.2,42.8,0,40,0z M13.6,38.8H6.9V17.1
h6.7V38.8z M10.2,14.2c-2.2,0-4-1.8-4-4s1.8-4,4-4c2.2,0,4,1.8,4,4S12.4,14.2,10.2,14.2z M38.8,38.8h-6.7V27.4
c0-3.1-1.2-4.9-3.7-4.9c-2.7,0-4.1,1.8-4.1,4.9v11.4h-6.4V17.1h6.4V20c0,0,1.9-3.6,6.5-3.6c4.6,0,7.9,2.8,7.9,8.6V38.8z"/>
</g>
</g></symbol>
<symbol id="microsoft_dm" viewBox="0 0 45 45"><g>
<symbol id="icon_microsoft_dm" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#microsoft_dm_SVGID_00000067227851144764912490000015670900565484668574_);">
<g style="clip-path:url(#icon_microsoft_dm_SVGID_00000067227851144764912490000015670900565484668574_);">
<path style="fill:#FFFFFF;" d="M0,0h21.4v21.4H0V0z"/>
<path style="fill:#FFFFFF;" d="M23.6,0H45v21.4H23.6V0z"/>
<path style="fill:#FFFFFF;" d="M0,23.6h21.4V45H0V23.6z"/>
<path style="fill:#FFFFFF;" d="M23.6,23.6H45V45H23.6V23.6z"/>
</g>
</g></symbol>
<symbol id="outlook_dm" viewBox="0 0 45 45"><g>
<symbol id="icon_outlook_dm" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#outlook_dm_SVGID_00000027577413913333259450000010373114094098190499_);">
<g style="clip-path:url(#icon_outlook_dm_SVGID_00000027577413913333259450000010373114094098190499_);">
<path style="fill:#FFFFFF;" d="M14.8,20.4c0.2,0.7,0.3,1.4,0.3,2.1c0,0.8-0.1,1.5-0.4,2.2c0,0,0,0,0,0.1c-0.1,0.3-0.3,0.6-0.5,0.9
c-0.1,0.1-0.1,0.2-0.2,0.3c0,0,0,0-0.1,0.1c0,0,0,0.1-0.1,0.1c-0.1,0.1-0.2,0.1-0.2,0.2c-0.2,0.2-0.5,0.3-0.8,0.4
c-0.4,0.2-0.9,0.2-1.3,0.2c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.9-0.4c-0.6-0.4-1-1-1.2-1.6c-0.6-1.5-0.6-3.1,0-4.6
@@ -163,26 +163,26 @@
c0.1,0,0.1,0.1,0.2,0.1l0.9,0.5v0l0,0l0,0l0.6,0.4l1.2,0.7l2.7,1.6L44.1,43L44.1,43L44.1,43z"/>
</g>
</g></symbol>
<symbol id="paypal_dm" viewBox="0 0 45 45"><g>
<symbol id="icon_paypal_dm" viewBox="0 0 45 45"><g>
<g>
<path style="clip-path:url(#paypal_dm_SVGID_00000028289222173765833380000004189814725540328076_);fill:#FFFFFF;" d="M35.3,10.3L35.3,10.3
<path style="clip-path:url(#icon_paypal_dm_SVGID_00000028289222173765833380000004189814725540328076_);fill:#FFFFFF;" d="M35.3,10.3L35.3,10.3
C35.4,4.7,30.8,0,24.4,0H10.8c-0.6,0-1.2,0.5-1.3,1.1L4.2,34.8c-0.1,0.6,0.4,1.2,1,1.2h7.9l2-12.4l0,0c0.1-0.6,0.6-1.1,1.3-1.1
h6.2c6.3,0,11.6-4.6,12.6-10.8C35.3,11.3,35.3,10.8,35.3,10.3L35.3,10.3L35.3,10.3z"/>
</g>
<g>
<path style="clip-path:url(#paypal_dm_SVGID_00000057830829683723910860000009463646960710544536_);fill:#FFFFFF;" d="M38,12.3
<path style="clip-path:url(#icon_paypal_dm_SVGID_00000057830829683723910860000009463646960710544536_);fill:#FFFFFF;" d="M38,12.3
c-1.2,7.6-7.7,13-15.3,13h-4.9l-2.1,13.5h-2.9l-0.8,5c-0.1,0.6,0.3,1.1,0.9,1.2c0.1,0,0.1,0,0.2,0h6.8c0.6,0,1.2-0.5,1.3-1.1
L23,32.6c0.1-0.6,0.6-1.1,1.3-1.1h4c6.3,0,11.6-4.6,12.6-10.8C41.2,17.5,40.1,14.5,38,12.3L38,12.3z"/>
</g>
</g></symbol>
<symbol id="reddit_dm" viewBox="0 0 45 45"><g>
<symbol id="icon_reddit_dm" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#reddit_dm_SVGID_00000031168642836518867390000007570234273682262957_);">
<g style="clip-path:url(#icon_reddit_dm_SVGID_00000031168642836518867390000007570234273682262957_);">
<path style="fill:#FFFFFF;" d="M17.3,27C16,27,15,26,15,24.8c0-1.2,1-2.2,2.2-2.2s2.2,1,2.2,2.2C19.5,26,18.5,27,17.3,27z"/>
<path style="fill:#FFFFFF;" d="M28.1,30.1c0.2,0.2,0.2,0.6,0,0.9v-0.1c-1.6,1.2-3.6,1.8-5.6,1.7c-2,0.1-4-0.5-5.6-1.7
c-0.2-0.3-0.2-0.6,0.1-0.9c0.2-0.2,0.5-0.2,0.8,0c1.4,1,3,1.5,4.7,1.4c1.7,0.1,3.3-0.4,4.7-1.4C27.4,29.9,27.8,29.9,28.1,30.1z"/>
@@ -194,10 +194,10 @@
c0.6-0.6,1.3-0.9,2.2-0.9c1.8-0.1,3.3,1.4,3.4,3.2C37.5,23.8,36.8,24.9,35.7,25.5z"/>
</g>
</g></symbol>
<symbol id="tiktok_dm" viewBox="0 0 45 45"><g>
<symbol id="icon_tiktok_dm" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#tiktok_dm_SVGID_00000168097799505604195400000002784558140406772116_);">
<g style="clip-path:url(#icon_tiktok_dm_SVGID_00000168097799505604195400000002784558140406772116_);">
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M34.8,0H10.2C4.6,0,0,4.6,0,10.2v24.6C0,40.4,4.6,45,10.2,45h24.6C40.4,45,45,40.4,45,34.8V10.2
C45,4.6,40.4,0,34.8,0z M34.7,20.7c-2.4,0-4.5-0.8-6.3-2v9.3c0,4.6-3.8,8.4-8.4,8.4c-2.4,0-4.5-1-6-2.5c-1.5-1.5-2.4-3.6-2.4-5.9
c0-4.6,3.7-8.3,8.2-8.4c0.4,0,0.9,0,1.3,0.1v4.6c-0.4-0.1-0.8-0.2-1.2-0.2c-2.1,0-3.8,1.7-3.8,3.8c0,0.8,0.3,1.7,0.8,2.3
@@ -207,20 +207,20 @@
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M0,0L0,0z"/>
</g>
</g></symbol>
<symbol id="x_dm" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="x_dm_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
<inkscape:page bleed="0" height="799.33301" id="x_dm_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
<symbol id="icon_x_dm" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="icon_x_dm_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
<inkscape:page bleed="0" height="799.33301" id="icon_x_dm_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
</sodipodi:namedview>
<g>
<path id="x_dm_path1-93" style="clip-path:url(#x_dm_SVGID_00000078743550890106176290000000360767509830120849_);fill:#FFFFFF;" d="
<path id="icon_x_dm_path1-93" style="clip-path:url(#icon_x_dm_SVGID_00000078743550890106176290000000360767509830120849_);fill:#FFFFFF;" d="
M35.6,2.2h6.9L27.3,19.4L45,42.8H31.1L20.2,28.6L7.8,42.8H0.9l16-18.4L0,2.2h14.2l9.8,13L35.6,2.2z M33.1,38.8H37L12.2,6.1H8.1
L33.1,38.8z"/>
</g></symbol>
<symbol id="yahoo_dm" viewBox="0 0 45 45"><g>
<symbol id="icon_yahoo_dm" viewBox="0 0 45 45"><g>
<path style="clip-path:url(#yahoo_dm_SVGID_00000096762850415739735390000017350860078463233711_);fill:#FFFFFF;" d="M0,12.2h8.6l5,12.8
<path style="clip-path:url(#icon_yahoo_dm_SVGID_00000096762850415739735390000017350860078463233711_);fill:#FFFFFF;" d="M0,12.2h8.6l5,12.8
l5.1-12.8H27L14.4,42.5H6l3.4-8L0,12.2L0,12.2z M36.7,22.5h-9.4l8.3-20l9.3,0L36.7,22.5L36.7,22.5z M29.8,24.4
c2.9,0,5.2,2.3,5.2,5.2c0,2.9-2.3,5.2-5.2,5.2c-2.9,0-5.2-2.3-5.2-5.2C24.6,26.7,26.9,24.4,29.8,24.4L29.8,24.4z"/>
</g></symbol>

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

@@ -1,60 +1,60 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<rect id="amazon_la_SVGID_1_" width="45" height="45"/>
<clipPath id="amazon_la_SVGID_00000142168186715899202250000013054533252006571413_">
<use xlink:href="#amazon_la_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_amazon_la_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_amazon_la_SVGID_00000142168186715899202250000013054533252006571413_">
<use xlink:href="#icon_amazon_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="apple_la_SVGID_1_" y="0" width="45" height="45"/>
<clipPath id="apple_la_SVGID_00000114072568368762591020000006640464628649871488_">
<use xlink:href="#apple_la_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_apple_la_SVGID_1_" y="0" width="45" height="45"/>
<clipPath id="icon_apple_la_SVGID_00000114072568368762591020000006640464628649871488_">
<use xlink:href="#icon_apple_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="facebook_la_SVGID_1_" width="45" height="45"/>
<clipPath id="facebook_la_SVGID_00000054257908208795084750000004230826471285896073_">
<use xlink:href="#facebook_la_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_facebook_la_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_facebook_la_SVGID_00000054257908208795084750000004230826471285896073_">
<use xlink:href="#icon_facebook_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="google_la_SVGID_1_" width="45" height="45"/>
<clipPath id="google_la_SVGID_00000102513091760644500740000017185415237100361878_">
<use xlink:href="#google_la_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_google_la_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_google_la_SVGID_00000102513091760644500740000017185415237100361878_">
<use xlink:href="#icon_google_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="linkedin_la_SVGID_1_" width="45" height="45"/>
<clipPath id="linkedin_la_SVGID_00000080907358863836193900000009604794423283550342_">
<use xlink:href="#linkedin_la_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_linkedin_la_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_linkedin_la_SVGID_00000080907358863836193900000009604794423283550342_">
<use xlink:href="#icon_linkedin_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="microsoft_la_SVGID_1_" width="45" height="45"/>
<clipPath id="microsoft_la_SVGID_00000126314016431027277170000003219967991448194953_">
<use xlink:href="#microsoft_la_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_microsoft_la_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_microsoft_la_SVGID_00000126314016431027277170000003219967991448194953_">
<use xlink:href="#icon_microsoft_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="outlook_la_SVGID_1_" width="45" height="45"/>
<clipPath id="outlook_la_SVGID_00000176730272450267255090000013251615914216981905_">
<use xlink:href="#outlook_la_SVGID_1_" style="overflow:visible;"/>
</clipPath><linearGradient id="outlook_la_SVGID_00000029750942765430990420000002715400090524807562_" gradientUnits="userSpaceOnUse" x1="27.8" y1="-400.7875" x2="27.8" y2="-380.9034" gradientTransform="matrix(1 0 0 1 0 424.3334)">
<rect id="icon_outlook_la_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_outlook_la_SVGID_00000176730272450267255090000013251615914216981905_">
<use xlink:href="#icon_outlook_la_SVGID_1_" style="overflow:visible;"/>
</clipPath><linearGradient id="icon_outlook_la_SVGID_00000029750942765430990420000002715400090524807562_" gradientUnits="userSpaceOnUse" x1="27.8" y1="-400.7875" x2="27.8" y2="-380.9034" gradientTransform="matrix(1 0 0 1 0 424.3334)">
<stop offset="0" style="stop-color:#35B8F1"/>
<stop offset="1" style="stop-color:#28A8EA"/>
</linearGradient><linearGradient id="outlook_la_SVGID_00000059282709050909659550000016828186450885963673_" gradientUnits="userSpaceOnUse" x1="3.9917" y1="-414.8341" x2="19.0054" y2="-388.831" gradientTransform="matrix(1 0 0 1 0 424.3334)">
</linearGradient><linearGradient id="icon_outlook_la_SVGID_00000059282709050909659550000016828186450885963673_" gradientUnits="userSpaceOnUse" x1="3.9917" y1="-414.8341" x2="19.0054" y2="-388.831" gradientTransform="matrix(1 0 0 1 0 424.3334)">
<stop offset="0" style="stop-color:#1784D9"/>
<stop offset="0.5" style="stop-color:#107AD5"/>
<stop offset="1" style="stop-color:#0A63C9"/>
</linearGradient><clipPath id="paypal_la_b"><rect width="45" height="45" fill="none"/></clipPath><clipPath id="paypal_la_c"><rect x="3.75" width="37.5" height="45" fill="none"/></clipPath>
<rect id="reddit_la_SVGID_1_" width="45" height="45"/>
<clipPath id="reddit_la_SVGID_00000022530605022877929990000016602649888151477144_">
<use xlink:href="#reddit_la_SVGID_1_" style="overflow:visible;"/>
</linearGradient><clipPath id="icon_paypal_la_b"><rect width="45" height="45" fill="none"/></clipPath><clipPath id="icon_paypal_la_c"><rect x="3.75" width="37.5" height="45" fill="none"/></clipPath>
<rect id="icon_reddit_la_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_reddit_la_SVGID_00000022530605022877929990000016602649888151477144_">
<use xlink:href="#icon_reddit_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="tiktok_la_SVGID_1_" width="45" height="45"/>
<clipPath id="tiktok_la_SVGID_00000092438193370301972870000004532972528775059339_">
<use xlink:href="#tiktok_la_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_tiktok_la_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_tiktok_la_SVGID_00000092438193370301972870000004532972528775059339_">
<use xlink:href="#icon_tiktok_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="x_la_SVGID_1_" width="45" height="45"/>
<clipPath id="x_la_SVGID_00000033354764030288795930000001479703675480923282_">
<use xlink:href="#x_la_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_x_la_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_x_la_SVGID_00000033354764030288795930000001479703675480923282_">
<use xlink:href="#icon_x_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="yahoo_la_SVGID_1_" width="45" height="45"/>
<clipPath id="yahoo_la_SVGID_00000013159504510969130410000001647023282424193931_">
<use xlink:href="#yahoo_la_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_yahoo_la_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_yahoo_la_SVGID_00000013159504510969130410000001647023282424193931_">
<use xlink:href="#icon_yahoo_la_SVGID_1_" style="overflow:visible;"/>
</clipPath></defs>
<symbol id="amazon_la" viewBox="0 0 45 45"><g>
<symbol id="icon_amazon_la" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#amazon_la_SVGID_00000142168186715899202250000013054533252006571413_);">
<g style="clip-path:url(#icon_amazon_la_SVGID_00000142168186715899202250000013054533252006571413_);">
<g>
<path style="fill:#FF9900;" d="M39,37c-18.6,8.8-30.1,1.4-37.5-3c-0.5-0.3-1.2,0.1-0.6,0.8C3.4,37.8,11.4,45,22,45s16.8-5.7,17.6-6.7
C40.3,37.3,39.8,36.7,39,37L39,37L39,37z M44.2,34.2c-0.5-0.6-3-0.8-4.6-0.6c-1.6,0.2-4,1.2-3.8,1.8c0.1,0.2,0.3,0.1,1.4,0
@@ -68,12 +68,12 @@
</g>
</g>
</g></symbol>
<symbol id="apple_la" viewBox="0 0 45 45"><g>
<symbol id="icon_apple_la" viewBox="0 0 45 45"><g>
<g>
<g>
<g style="clip-path:url(#apple_la_SVGID_00000114072568368762591020000006640464628649871488_);">
<g style="clip-path:url(#icon_apple_la_SVGID_00000114072568368762591020000006640464628649871488_);">
<path d="M28.8,7.2c-1.5,1.8-4.2,3.3-6.6,3c-0.3-2.4,0.9-5.1,2.4-6.9S29.1,0,31.2,0C31.5,2.7,30.3,5.4,28.8,7.2 M31.2,11
c-3.6-0.3-6.9,2.1-8.3,2.1c-1.8,0-4.5-2.1-7.2-1.8c-3.9,0-7.2,2.1-9.2,5.7c-3.9,6.9-0.9,16.7,2.7,22.4c1.8,2.7,4.2,5.7,7.2,5.7
c2.7,0,3.9-1.8,7.2-1.8s4.5,1.8,7.2,1.8c3,0,5.1-2.7,6.9-5.4c2.1-3,3-6,3-6.3c0,0-6-2.4-6-8.9c0-5.7,4.5-8.3,4.8-8.3
@@ -82,10 +82,10 @@
</g>
</g>
</g></symbol>
<symbol id="facebook_la" viewBox="0 0 45 45"><g>
<symbol id="icon_facebook_la" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#facebook_la_SVGID_00000054257908208795084750000004230826471285896073_);">
<g style="clip-path:url(#icon_facebook_la_SVGID_00000054257908208795084750000004230826471285896073_);">
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#1977F3;" d="M45,22.5C45,10.1,35,0,22.5,0S0,10.1,0,22.5c0,11.2,8.2,20.5,19,22.2V29.1h-5.7v-6.5H19v-5
c0-5.6,3.4-8.8,8.5-8.8c2.5,0,5,0.4,5,0.4v5.5h-2.8c-2.8,0-3.7,1.7-3.7,3.5v4.2h6.2l-1,6.5h-5.2v15.7C36.8,43.1,45,33.8,45,22.5
L45,22.5z"/>
@@ -93,11 +93,11 @@
v6.5H19v15.7c1.1,0.2,2.3,0.3,3.5,0.3c1.2,0,2.4-0.1,3.5-0.3V29.1L31.3,29.1L31.3,29.1z"/>
</g>
</g></symbol>
<symbol id="google_la" viewBox="0 0 45 45"><g>
<symbol id="icon_google_la" viewBox="0 0 45 45"><g>
<g>
<g style="clip-path:url(#google_la_SVGID_00000102513091760644500740000017185415237100361878_);">
<g style="clip-path:url(#icon_google_la_SVGID_00000102513091760644500740000017185415237100361878_);">
<g>
<g>
<g>
@@ -114,31 +114,31 @@
</g>
</g>
</g></symbol>
<symbol id="linkedin_la" viewBox="0 0 45 45"><g>
<symbol id="icon_linkedin_la" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#linkedin_la_SVGID_00000080907358863836193900000009604794423283550342_);">
<g style="clip-path:url(#icon_linkedin_la_SVGID_00000080907358863836193900000009604794423283550342_);">
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#007EBB;" d="M5,45h35c2.8,0,5-2.2,5-5V5c0-2.8-2.2-5-5-5H5C2.2,0,0,2.2,0,5v35C0,42.8,2.2,45,5,45z"/>
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M38.8,38.8h-6.7V27.4c0-3.1-1.2-4.9-3.7-4.9c-2.7,0-4.1,1.8-4.1,4.9v11.4h-6.4V17.1h6.4V20
c0,0,1.9-3.6,6.5-3.6c4.6,0,7.9,2.8,7.9,8.6V38.8z M10.2,14.2c-2.2,0-4-1.8-4-4s1.8-4,4-4s4,1.8,4,4S12.4,14.2,10.2,14.2z
M6.9,38.8h6.7V17.1H6.9V38.8z"/>
</g>
</g></symbol>
<symbol id="microsoft_la" viewBox="0 0 45 45"><g>
<symbol id="icon_microsoft_la" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#microsoft_la_SVGID_00000126314016431027277170000003219967991448194953_);">
<g style="clip-path:url(#icon_microsoft_la_SVGID_00000126314016431027277170000003219967991448194953_);">
<path style="fill:#F25022;" d="M0,0h21.4v21.4H0V0z"/>
<path style="fill:#7FBA00;" d="M23.6,0H45v21.4H23.6V0z"/>
<path style="fill:#00A4EF;" d="M0,23.6h21.4V45H0V23.6z"/>
<path style="fill:#FFB900;" d="M23.6,23.6H45V45H23.6V23.6z"/>
</g>
</g></symbol>
<symbol id="outlook_la" viewBox="0 0 45 45"><g>
<symbol id="icon_outlook_la" viewBox="0 0 45 45"><g>
<g>
<g style="clip-path:url(#outlook_la_SVGID_00000176730272450267255090000013251615914216981905_);">
<g style="clip-path:url(#icon_outlook_la_SVGID_00000176730272450267255090000013251615914216981905_);">
<path style="fill:#0A2767;" d="M45,23.5c0-0.4-0.2-0.7-0.5-0.9l0,0l0,0l-15.6-9.2c-0.1,0-0.1-0.1-0.2-0.1c-0.6-0.3-1.3-0.3-1.9,0
c-0.1,0-0.1,0.1-0.2,0.1L11,22.7l0,0c-0.5,0.3-0.6,0.9-0.3,1.4c0.1,0.1,0.2,0.3,0.4,0.3l15.6,9.2c0.1,0,0.1,0.1,0.2,0.1
c0.6,0.3,1.3,0.3,1.9,0c0.1,0,0.1-0.1,0.2-0.1l15.6-9.2C44.8,24.2,45,23.9,45,23.5z"/>
@@ -152,7 +152,7 @@
<path style="fill:#0078D4;" d="M33.5,26.7h9.4v9.4h-9.4V26.7z"/>
<path style="fill:url(#outlook_la_SVGID_00000029750942765430990420000002715400090524807562_);" d="M44.5,24.4L44.5,24.4l-15.6,8.8
<path style="fill:url(#icon_outlook_la_SVGID_00000029750942765430990420000002715400090524807562_);" d="M44.5,24.4L44.5,24.4l-15.6,8.8
c-0.1,0-0.1,0.1-0.2,0.1c-0.3,0.1-0.6,0.2-0.8,0.2L27,33c-0.1,0-0.1-0.1-0.2-0.1l-15.8-9l0,0l-0.5-0.3v17.8c0,1.2,1,2.1,2.2,2.1
h30.2c0,0,0,0,0.1,0c0.3,0,0.5-0.1,0.7-0.2c0.1,0,0.2-0.1,0.3-0.2c0.1,0,0.2-0.1,0.2-0.1c0.5-0.4,0.9-1,0.9-1.7V23.5
C45,23.9,44.8,24.2,44.5,24.4z"/>
@@ -176,7 +176,7 @@
<path style="opacity:0.2;enable-background:new ;" d="M23,12.9v20.2c0,1.1-0.9,1.9-1.9,1.9H10.5V11h10.6C22.2,11,23,11.8,23,12.9L23,12.9z"/>
<path style="fill:url(#outlook_la_SVGID_00000059282709050909659550000016828186450885963673_);" d="M1.9,11h19.2c1.1,0,1.9,0.9,1.9,1.9
<path style="fill:url(#icon_outlook_la_SVGID_00000059282709050909659550000016828186450885963673_);" d="M1.9,11h19.2c1.1,0,1.9,0.9,1.9,1.9
v19.2c0,1.1-0.9,1.9-1.9,1.9H1.9c-1,0-1.9-0.8-1.9-1.9V12.9C0,11.8,0.9,11,1.9,11z"/>
<path style="fill:#FFFFFF;" d="M6,19c0.5-1,1.2-1.9,2.2-2.4c1.1-0.6,2.3-0.9,3.5-0.9c1.1,0,2.2,0.3,3.2,0.8c0.9,0.5,1.7,1.4,2.1,2.3
c0.5,1.1,0.8,2.2,0.7,3.4c0,1.2-0.2,2.4-0.8,3.6c-0.5,1-1.2,1.8-2.2,2.4s-2.2,0.9-3.3,0.8c-1.2,0-2.3-0.3-3.3-0.8
@@ -187,11 +187,11 @@
</g>
</g>
</g></symbol>
<symbol id="paypal_la" viewBox="0 0 45 45"><g clip-path="url(#paypal_la_b)"><g clip-path="url(#paypal_la_c)"><g><path d="M35.73,10.35c0,5.569-5.167,12.15-12.975,12.15h-7.521l-.365,2.319-1.759,11.181H3.75L9.377,0h15.157c5.101,0,9.12,2.835,10.592,6.775,.417,1.116,.629,2.32,.604,3.575Z" fill="#002991"/><path d="M41.126,20.7c-1.033,6.244-6.43,10.8-12.803,10.8h-5.225l-2.182,13.5H11.616l1.493-9,1.759-11.181,.365-2.319h7.521c7.808,0,12.975-6.581,12.975-12.15,.002,0,.003,.002,.005,.002,3.843,1.97,6.08,5.962,5.392,10.348Z" fill="#60cdff"/><path d="M35.729,10.35s.003,.002,.005,.003c0-.095-.003-.101-.005-.003Z"/><path d="M35.729,10.35c-1.607-.844-3.56-1.35-5.684-1.35h-12.688l-2.124,13.5h7.521c7.808,0,12.975-6.581,12.975-12.15Z" fill="#008cff"/></g></g></g></symbol>
<symbol id="reddit_la" viewBox="0 0 45 45"><g>
<symbol id="icon_paypal_la" viewBox="0 0 45 45"><g clip-path="url(#icon_paypal_la_b)"><g clip-path="url(#icon_paypal_la_c)"><g><path d="M35.73,10.35c0,5.569-5.167,12.15-12.975,12.15h-7.521l-.365,2.319-1.759,11.181H3.75L9.377,0h15.157c5.101,0,9.12,2.835,10.592,6.775,.417,1.116,.629,2.32,.604,3.575Z" fill="#002991"/><path d="M41.126,20.7c-1.033,6.244-6.43,10.8-12.803,10.8h-5.225l-2.182,13.5H11.616l1.493-9,1.759-11.181,.365-2.319h7.521c7.808,0,12.975-6.581,12.975-12.15,.002,0,.003,.002,.005,.002,3.843,1.97,6.08,5.962,5.392,10.348Z" fill="#60cdff"/><path d="M35.729,10.35s.003,.002,.005,.003c0-.095-.003-.101-.005-.003Z"/><path d="M35.729,10.35c-1.607-.844-3.56-1.35-5.684-1.35h-12.688l-2.124,13.5h7.521c7.808,0,12.975-6.581,12.975-12.15Z" fill="#008cff"/></g></g></g></symbol>
<symbol id="icon_reddit_la" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#reddit_la_SVGID_00000022530605022877929990000016602649888151477144_);">
<g style="clip-path:url(#icon_reddit_la_SVGID_00000022530605022877929990000016602649888151477144_);">
<circle style="fill:#FF4500;" cx="22.5" cy="22.5" r="22.5"/>
<path style="fill:#FFFFFF;" d="M37.5,22.5c-0.1-1.8-1.6-3.2-3.4-3.2c-0.8,0-1.6,0.4-2.2,0.9c-2.6-1.7-5.6-2.7-8.7-2.8l1.5-7l4.8,1
c0.1,1.2,1.2,2.1,2.5,2c1.2-0.1,2.1-1.2,2-2.5s-1.2-2.1-2.5-2c-0.7,0.1-1.3,0.5-1.7,1.1L24.3,9c-0.4-0.1-0.7,0.2-0.8,0.5
@@ -203,10 +203,10 @@
c0-1.2,1-2.3,2.3-2.3s2.3,1,2.3,2.3C30,26.1,29,27.1,27.7,27.1C27.7,27.2,27.7,27.2,27.7,27.1L27.7,27.1z"/>
</g>
</g></symbol>
<symbol id="tiktok_la" viewBox="0 0 45 45"><g>
<symbol id="icon_tiktok_la" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#tiktok_la_SVGID_00000092438193370301972870000004532972528775059339_);">
<g style="clip-path:url(#icon_tiktok_la_SVGID_00000092438193370301972870000004532972528775059339_);">
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M10.2,0h24.6C40.4,0,45,4.6,45,10.2v24.6C45,40.4,40.4,45,34.8,45H10.2C4.6,45,0,40.4,0,34.8V10.2
C0,4.6,4.6,0,10.2,0z"/>
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M0,0"/>
@@ -227,19 +227,19 @@
</g>
</g>
</g></symbol>
<symbol id="x_la" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="x_la_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
<inkscape:page bleed="0" height="799.33301" id="x_la_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
<symbol id="icon_x_la" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="icon_x_la_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
<inkscape:page bleed="0" height="799.33301" id="icon_x_la_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
</sodipodi:namedview>
<g>
<path id="x_la_path1-93" style="clip-path:url(#x_la_SVGID_00000033354764030288795930000001479703675480923282_);" d="M35.6,2.2h6.9
<path id="icon_x_la_path1-93" style="clip-path:url(#icon_x_la_SVGID_00000033354764030288795930000001479703675480923282_);" d="M35.6,2.2h6.9
L27.3,19.4L45,42.8H31.1L20.2,28.6L7.8,42.8H0.9l16-18.4L0,2.2h14.2l9.8,13L35.6,2.2z M33.1,38.8H37L12.2,6.1H8.1L33.1,38.8z"/>
</g></symbol>
<symbol id="yahoo_la" viewBox="0 0 45 45"><g>
<symbol id="icon_yahoo_la" viewBox="0 0 45 45"><g>
<path style="clip-path:url(#yahoo_la_SVGID_00000013159504510969130410000001647023282424193931_);fill:#5F01D1;" d="M0,12.2h8.6l5,12.8
<path style="clip-path:url(#icon_yahoo_la_SVGID_00000013159504510969130410000001647023282424193931_);fill:#5F01D1;" d="M0,12.2h8.6l5,12.8
l5.1-12.8H27L14.4,42.5H6l3.4-8L0,12.2L0,12.2z M36.7,22.5h-9.4l8.3-20l9.3,0L36.7,22.5L36.7,22.5z M29.8,24.4
c2.9,0,5.2,2.3,5.2,5.2c0,2.9-2.3,5.2-5.2,5.2c-2.9,0-5.2-2.3-5.2-5.2C24.6,26.7,26.9,24.4,29.8,24.4L29.8,24.4z"/>
</g></symbol>

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

@@ -1,61 +1,61 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<rect id="amazon_lm_SVGID_1_" width="45" height="45"/>
<clipPath id="amazon_lm_SVGID_00000016768420444881560270000004072029250126184884_">
<use xlink:href="#amazon_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_amazon_lm_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_amazon_lm_SVGID_00000016768420444881560270000004072029250126184884_">
<use xlink:href="#icon_amazon_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="apple_lm_SVGID_1_" y="0" width="45" height="45"/>
<clipPath id="apple_lm_SVGID_00000079467736700769421420000011382047755397369512_">
<use xlink:href="#apple_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_apple_lm_SVGID_1_" y="0" width="45" height="45"/>
<clipPath id="icon_apple_lm_SVGID_00000079467736700769421420000011382047755397369512_">
<use xlink:href="#icon_apple_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="facebook_lm_SVGID_1_" width="45" height="45"/>
<clipPath id="facebook_lm_SVGID_00000160174582295849981990000005061812937508582029_">
<use xlink:href="#facebook_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_facebook_lm_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_facebook_lm_SVGID_00000160174582295849981990000005061812937508582029_">
<use xlink:href="#icon_facebook_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="google_lm_SVGID_1_" width="45" height="45"/>
<clipPath id="google_lm_SVGID_00000160178592024345442830000015868723928434106771_">
<use xlink:href="#google_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_google_lm_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_google_lm_SVGID_00000160178592024345442830000015868723928434106771_">
<use xlink:href="#icon_google_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="linkedin_lm_SVGID_1_" width="45" height="45"/>
<clipPath id="linkedin_lm_SVGID_00000132046683924186930450000015646060399515813563_">
<use xlink:href="#linkedin_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_linkedin_lm_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_linkedin_lm_SVGID_00000132046683924186930450000015646060399515813563_">
<use xlink:href="#icon_linkedin_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="microsoft_lm_SVGID_1_" width="45" height="45"/>
<clipPath id="microsoft_lm_SVGID_00000136394497080933620450000000690769635235795370_">
<use xlink:href="#microsoft_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_microsoft_lm_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_microsoft_lm_SVGID_00000136394497080933620450000000690769635235795370_">
<use xlink:href="#icon_microsoft_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="outlook_lm_SVGID_1_" width="45" height="45"/>
<clipPath id="outlook_lm_SVGID_00000075153440128831008830000000882307718200593080_">
<use xlink:href="#outlook_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_outlook_lm_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_outlook_lm_SVGID_00000075153440128831008830000000882307718200593080_">
<use xlink:href="#icon_outlook_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="paypal_lm_SVGID_1_" width="45" height="45"/>
<rect id="icon_paypal_lm_SVGID_1_" width="45" height="45"/>
<rect id="paypal_lm_SVGID_00000070115738859719507910000017731325256944194960_" width="45" height="45"/>
<clipPath id="paypal_lm_SVGID_00000003098359324509561290000017114423789194791818_">
<use xlink:href="#paypal_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath><clipPath id="paypal_lm_SVGID_00000152957664877793118690000015113994058607663257_">
<use xlink:href="#paypal_lm_SVGID_00000070115738859719507910000017731325256944194960_" style="overflow:visible;"/>
<rect id="icon_paypal_lm_SVGID_00000070115738859719507910000017731325256944194960_" width="45" height="45"/>
<clipPath id="icon_paypal_lm_SVGID_00000003098359324509561290000017114423789194791818_">
<use xlink:href="#icon_paypal_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath><clipPath id="icon_paypal_lm_SVGID_00000152957664877793118690000015113994058607663257_">
<use xlink:href="#icon_paypal_lm_SVGID_00000070115738859719507910000017731325256944194960_" style="overflow:visible;"/>
</clipPath>
<rect id="reddit_lm_SVGID_1_" width="45" height="45"/>
<clipPath id="reddit_lm_SVGID_00000091016122291419929460000016936434739354706359_">
<use xlink:href="#reddit_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_reddit_lm_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_reddit_lm_SVGID_00000091016122291419929460000016936434739354706359_">
<use xlink:href="#icon_reddit_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="tiktok_lm_SVGID_1_" width="45" height="45"/>
<clipPath id="tiktok_lm_SVGID_00000036212560110256920030000006902593223283565447_">
<use xlink:href="#tiktok_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_tiktok_lm_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_tiktok_lm_SVGID_00000036212560110256920030000006902593223283565447_">
<use xlink:href="#icon_tiktok_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="x_lm_SVGID_1_" width="45" height="45"/>
<clipPath id="x_lm_SVGID_00000177462708669193929580000017692624354562733996_">
<use xlink:href="#x_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_x_lm_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_x_lm_SVGID_00000177462708669193929580000017692624354562733996_">
<use xlink:href="#icon_x_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="yahoo_lm_SVGID_1_" width="45" height="45"/>
<clipPath id="yahoo_lm_SVGID_00000093144766463551197780000008957191406563489707_">
<use xlink:href="#yahoo_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="icon_yahoo_lm_SVGID_1_" width="45" height="45"/>
<clipPath id="icon_yahoo_lm_SVGID_00000093144766463551197780000008957191406563489707_">
<use xlink:href="#icon_yahoo_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath></defs>
<symbol id="amazon_lm" viewBox="0 0 45 45"><g>
<symbol id="icon_amazon_lm" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#amazon_lm_SVGID_00000016768420444881560270000004072029250126184884_);">
<g style="clip-path:url(#icon_amazon_lm_SVGID_00000016768420444881560270000004072029250126184884_);">
<path d="M39,37c-18.6,8.8-30.1,1.4-37.5-3c-0.5-0.3-1.2,0.1-0.6,0.8C3.4,37.8,11.4,45,22,45s16.8-5.7,17.6-6.7
C40.3,37.3,39.8,36.7,39,37L39,37z M44.2,34.2c-0.5-0.6-3-0.8-4.6-0.6s-4,1.2-3.8,1.8c0.1,0.2,0.3,0.1,1.4,0
c1.1-0.1,4.2-0.5,4.8,0.3s-1,4.9-1.3,5.5s0.1,0.8,0.6,0.4c0.5-0.4,1.5-1.6,2.1-3.1C44.2,36.9,44.6,34.7,44.2,34.2
@@ -67,10 +67,10 @@
c0.4,0.5,0.5,1.2,0,1.6C35.8,30.6,33.7,32.5,32.5,33.5L32.5,33.5"/>
</g>
</g></symbol>
<symbol id="apple_lm" viewBox="0 0 45 45"><g>
<symbol id="icon_apple_lm" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#apple_lm_SVGID_00000079467736700769421420000011382047755397369512_);">
<g style="clip-path:url(#icon_apple_lm_SVGID_00000079467736700769421420000011382047755397369512_);">
<g>
<path d="M28.8,7.2c-1.5,1.8-4.2,3.3-6.6,3c-0.3-2.4,0.9-5.1,2.4-6.9S29.1,0,31.2,0C31.5,2.7,30.3,5.4,28.8,7.2 M31.2,11
c-3.6-0.3-6.9,2.1-8.3,2.1c-1.8,0-4.5-2.1-7.2-1.8c-3.9,0-7.2,2.1-9.2,5.7c-3.9,6.9-0.9,16.7,2.7,22.4c1.8,2.7,4.2,5.7,7.2,5.7
@@ -79,20 +79,20 @@
</g>
</g>
</g></symbol>
<symbol id="facebook_lm" viewBox="0 0 45 45"><g>
<symbol id="icon_facebook_lm" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#facebook_lm_SVGID_00000160174582295849981990000005061812937508582029_);">
<g style="clip-path:url(#icon_facebook_lm_SVGID_00000160174582295849981990000005061812937508582029_);">
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M45,22.5C45,10.1,35,0,22.5,0S0,10.1,0,22.5c0,11.2,8.2,20.5,19,22.2V29.1h-5.7v-6.5H19v-5
c0-5.6,3.4-8.8,8.5-8.8c2.5,0,5,0.4,5,0.4v5.5h-2.8c-2.8,0-3.7,1.7-3.7,3.5v4.2h6.2l-1,6.5h-5.2v15.7C36.8,43.1,45,33.8,45,22.5
L45,22.5z"/>
</g>
</g></symbol>
<symbol id="google_lm" viewBox="0 0 45 45"><g>
<symbol id="icon_google_lm" viewBox="0 0 45 45"><g>
<g>
<g style="clip-path:url(#google_lm_SVGID_00000160178592024345442830000015868723928434106771_);">
<g style="clip-path:url(#icon_google_lm_SVGID_00000160178592024345442830000015868723928434106771_);">
<g>
<path d="M44.9,20.6c-0.1-0.9-0.2-1.8-0.4-2.7h-22v9.2H35c-0.7,1.8-1.7,3.4-3.1,4.8c-2.5,2.5-5.9,3.9-9.4,3.9s-6.9-1.4-9.4-3.9
S9.2,26,9.2,22.5s1.4-6.9,3.9-9.4c5.2-5.2,13.6-5.2,18.8,0l6.5-6.5c-8.8-8.8-23-8.8-31.8,0C2.3,10.8,0,16.5,0,22.5
@@ -101,29 +101,29 @@
</g>
</g>
</g></symbol>
<symbol id="linkedin_lm" viewBox="0 0 45 45"><g>
<symbol id="icon_linkedin_lm" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#linkedin_lm_SVGID_00000132046683924186930450000015646060399515813563_);">
<g style="clip-path:url(#icon_linkedin_lm_SVGID_00000132046683924186930450000015646060399515813563_);">
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M40,0H5C2.2,0,0,2.2,0,5v35c0,2.8,2.2,5,5,5h35c2.8,0,5-2.2,5-5V5C45,2.2,42.8,0,40,0z M13.6,38.8H6.9V17.1
h6.7V38.8z M10.2,14.2c-2.2,0-4-1.8-4-4s1.8-4,4-4c2.2,0,4,1.8,4,4S12.4,14.2,10.2,14.2z M38.8,38.8h-6.7V27.4
c0-3.1-1.2-4.9-3.7-4.9c-2.7,0-4.1,1.8-4.1,4.9v11.4h-6.4V17.1h6.4V20c0,0,1.9-3.6,6.5-3.6c4.6,0,7.9,2.8,7.9,8.6V38.8z"/>
</g>
</g></symbol>
<symbol id="microsoft_lm" viewBox="0 0 45 45"><g>
<symbol id="icon_microsoft_lm" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#microsoft_lm_SVGID_00000136394497080933620450000000690769635235795370_);">
<g style="clip-path:url(#icon_microsoft_lm_SVGID_00000136394497080933620450000000690769635235795370_);">
<path d="M0,0h21.4v21.4H0V0z"/>
<path d="M23.6,0H45v21.4H23.6V0z"/>
<path d="M0,23.6h21.4V45H0V23.6z"/>
<path d="M23.6,23.6H45V45H23.6V23.6z"/>
</g>
</g></symbol>
<symbol id="outlook_lm" viewBox="0 0 45 45"><g>
<symbol id="icon_outlook_lm" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#outlook_lm_SVGID_00000075153440128831008830000000882307718200593080_);">
<g style="clip-path:url(#icon_outlook_lm_SVGID_00000075153440128831008830000000882307718200593080_);">
<path d="M14.8,20.4c0.2,0.7,0.3,1.4,0.3,2.1c0,0.8-0.1,1.5-0.4,2.2c0,0,0,0,0,0.1c-0.1,0.3-0.3,0.6-0.5,0.9
c-0.1,0.1-0.1,0.2-0.2,0.3c0,0,0,0-0.1,0.1c0,0,0,0.1-0.1,0.1c-0.1,0.1-0.2,0.1-0.2,0.2c-0.2,0.2-0.5,0.3-0.8,0.4
c-0.4,0.2-0.9,0.2-1.3,0.2c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.9-0.4c-0.6-0.4-1-1-1.2-1.6c-0.6-1.5-0.6-3.1,0-4.6
@@ -150,10 +150,10 @@
c0.1,0,0.1,0.1,0.2,0.1l0.9,0.5v0l0,0l0,0l0.6,0.4l1.2,0.7l2.7,1.6L44.1,43L44.1,43L44.1,43z"/>
</g>
</g></symbol>
<symbol id="paypal_lm" viewBox="0 0 45 45"><g>
<symbol id="icon_paypal_lm" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#paypal_lm_SVGID_00000003098359324509561290000017114423789194791818_);">
<g style="clip-path:url(#icon_paypal_lm_SVGID_00000003098359324509561290000017114423789194791818_);">
<path d="M35.3,10.3L35.3,10.3C35.4,4.7,30.8,0,24.4,0H10.8c-0.6,0-1.2,0.5-1.3,1.1L4.2,34.8c-0.1,0.6,0.4,1.2,1,1.2h7.9l2-12.4
l0,0c0.1-0.6,0.6-1.1,1.3-1.1h6.2c6.3,0,11.6-4.6,12.6-10.8C35.3,11.3,35.3,10.8,35.3,10.3C35.3,10.3,35.3,10.3,35.3,10.3z"/>
</g>
@@ -161,15 +161,15 @@
<g>
<g style="clip-path:url(#paypal_lm_SVGID_00000152957664877793118690000015113994058607663257_);">
<g style="clip-path:url(#icon_paypal_lm_SVGID_00000152957664877793118690000015113994058607663257_);">
<path d="M38,12.3c-1.2,7.6-7.7,13-15.3,13h-4.9l-2.1,13.5h-2.9l-0.8,5c-0.1,0.6,0.3,1.1,0.9,1.2h7c0.6,0,1.2-0.5,1.3-1.1L23,32.6
c0.1-0.6,0.6-1.1,1.3-1.1h4c6.3,0,11.6-4.6,12.6-10.8C41.2,17.5,40.1,14.5,38,12.3C38,12.3,38,12.3,38,12.3z"/>
</g>
</g></symbol>
<symbol id="reddit_lm" viewBox="0 0 45 45"><g>
<symbol id="icon_reddit_lm" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#reddit_lm_SVGID_00000091016122291419929460000016936434739354706359_);">
<g style="clip-path:url(#icon_reddit_lm_SVGID_00000091016122291419929460000016936434739354706359_);">
<path d="M17.3,27C16,27,15,26,15,24.8c0-1.2,1-2.2,2.2-2.2s2.2,1,2.2,2.2C19.5,26,18.5,27,17.3,27z"/>
<path d="M28.1,30.1c0.2,0.2,0.2,0.6,0,0.9v-0.1c-1.6,1.2-3.6,1.8-5.6,1.7c-2,0.1-4-0.5-5.6-1.7c-0.2-0.3-0.2-0.6,0.1-0.9
c0.2-0.2,0.5-0.2,0.8,0c1.4,1,3,1.5,4.7,1.4c1.7,0.1,3.3-0.4,4.7-1.4C27.4,29.9,27.8,29.9,28.1,30.1z"/>
@@ -181,10 +181,10 @@
c0.6-0.6,1.3-0.9,2.2-0.9c1.8-0.1,3.3,1.4,3.4,3.2C37.5,23.8,36.8,24.9,35.7,25.5z"/>
</g>
</g></symbol>
<symbol id="tiktok_lm" viewBox="0 0 45 45"><g>
<symbol id="icon_tiktok_lm" viewBox="0 0 45 45"><g>
<g style="clip-path:url(#tiktok_lm_SVGID_00000036212560110256920030000006902593223283565447_);">
<g style="clip-path:url(#icon_tiktok_lm_SVGID_00000036212560110256920030000006902593223283565447_);">
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M34.8,0H10.2C4.6,0,0,4.6,0,10.2v24.6C0,40.4,4.6,45,10.2,45h24.6C40.4,45,45,40.4,45,34.8V10.2
C45,4.6,40.4,0,34.8,0z M34.7,20.7c-2.4,0-4.5-0.8-6.3-2v9.3c0,4.6-3.8,8.4-8.4,8.4c-2.4,0-4.5-1-6-2.5c-1.5-1.5-2.4-3.6-2.4-5.9
c0-4.6,3.7-8.3,8.2-8.4c0.4,0,0.9,0,1.3,0.1v4.6c-0.4-0.1-0.8-0.2-1.2-0.2c-2.1,0-3.8,1.7-3.8,3.8c0,0.8,0.3,1.7,0.8,2.3
@@ -194,19 +194,19 @@
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M0,0L0,0z"/>
</g>
</g></symbol>
<symbol id="x_lm" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="x_lm_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
<inkscape:page bleed="0" height="799.33301" id="x_lm_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
<symbol id="icon_x_lm" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="icon_x_lm_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
<inkscape:page bleed="0" height="799.33301" id="icon_x_lm_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
</sodipodi:namedview>
<g>
<path id="x_lm_path1-93" style="clip-path:url(#x_lm_SVGID_00000177462708669193929580000017692624354562733996_);" d="M35.6,2.2h6.9
<path id="icon_x_lm_path1-93" style="clip-path:url(#icon_x_lm_SVGID_00000177462708669193929580000017692624354562733996_);" d="M35.6,2.2h6.9
L27.3,19.4L45,42.8H31.1L20.2,28.6L7.8,42.8H0.9l16-18.4L0,2.2h14.2l9.8,13L35.6,2.2z M33.1,38.8H37L12.2,6.1H8.1L33.1,38.8z"/>
</g></symbol>
<symbol id="yahoo_lm" viewBox="0 0 45 45"><g>
<symbol id="icon_yahoo_lm" viewBox="0 0 45 45"><g>
<path style="clip-path:url(#yahoo_lm_SVGID_00000093144766463551197780000008957191406563489707_);" d="M0,12.2h8.6l5,12.8l5.1-12.8H27
<path style="clip-path:url(#icon_yahoo_lm_SVGID_00000093144766463551197780000008957191406563489707_);" d="M0,12.2h8.6l5,12.8l5.1-12.8H27
L14.4,42.5H6l3.4-8L0,12.2L0,12.2z M36.7,22.5h-9.4l8.3-20l9.3,0L36.7,22.5L36.7,22.5z M29.8,24.4c2.9,0,5.2,2.3,5.2,5.2
c0,2.9-2.3,5.2-5.2,5.2c-2.9,0-5.2-2.3-5.2-5.2C24.6,26.7,26.9,24.4,29.8,24.4L29.8,24.4z"/>
</g></symbol>

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -1,58 +1,58 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<rect id="amazon_da_SVGID_1_" width="150" height="100"/>
<clipPath id="amazon_da_SVGID_00000137093233678431687520000003280587415585381019_">
<use xlink:href="#amazon_da_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_amazon_da_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_amazon_da_SVGID_00000137093233678431687520000003280587415585381019_">
<use xlink:href="#text-only_amazon_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="apple_da_SVGID_1_" width="150" height="100"/>
<clipPath id="apple_da_SVGID_00000121990650443453624250000008803342828077021829_">
<use xlink:href="#apple_da_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_apple_da_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_apple_da_SVGID_00000121990650443453624250000008803342828077021829_">
<use xlink:href="#text-only_apple_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="facebook_da_SVGID_1_" width="150" height="100"/>
<clipPath id="facebook_da_SVGID_00000104672561479708352790000014128242558117340321_">
<use xlink:href="#facebook_da_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_facebook_da_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_facebook_da_SVGID_00000104672561479708352790000014128242558117340321_">
<use xlink:href="#text-only_facebook_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="google_da_SVGID_1_" width="150" height="100"/>
<clipPath id="google_da_SVGID_00000010298734730609544400000000568488005254226823_">
<use xlink:href="#google_da_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_google_da_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_google_da_SVGID_00000010298734730609544400000000568488005254226823_">
<use xlink:href="#text-only_google_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="linkedin_da_SVGID_1_" width="150" height="100"/>
<clipPath id="linkedin_da_SVGID_00000031897073382923130020000003029520824740490669_">
<use xlink:href="#linkedin_da_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_linkedin_da_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_linkedin_da_SVGID_00000031897073382923130020000003029520824740490669_">
<use xlink:href="#text-only_linkedin_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="microsoft_da_SVGID_1_" width="150" height="100"/>
<clipPath id="microsoft_da_SVGID_00000059306687771037721190000015549763561247054232_">
<use xlink:href="#microsoft_da_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_microsoft_da_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_microsoft_da_SVGID_00000059306687771037721190000015549763561247054232_">
<use xlink:href="#text-only_microsoft_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="outlook_da_SVGID_1_" width="150" height="100"/>
<clipPath id="outlook_da_SVGID_00000044176771689925151940000015978105338346814648_">
<use xlink:href="#outlook_da_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_outlook_da_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_outlook_da_SVGID_00000044176771689925151940000015978105338346814648_">
<use xlink:href="#text-only_outlook_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="paypal_da_SVGID_1_" x="0.2" width="150" height="100"/>
<clipPath id="paypal_da_SVGID_00000062189005979654764830000014265510031276431525_">
<use xlink:href="#paypal_da_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_paypal_da_SVGID_1_" x="0.2" width="150" height="100"/>
<clipPath id="text-only_paypal_da_SVGID_00000062189005979654764830000014265510031276431525_">
<use xlink:href="#text-only_paypal_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="reddit_da_SVGID_1_" width="150" height="100"/>
<clipPath id="reddit_da_SVGID_00000080175393403253162870000002766530118521356964_">
<use xlink:href="#reddit_da_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_reddit_da_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_reddit_da_SVGID_00000080175393403253162870000002766530118521356964_">
<use xlink:href="#text-only_reddit_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="tiktok_da_SVGID_1_" width="150" height="100"/>
<clipPath id="tiktok_da_SVGID_00000085963710605139734970000008392142293593068733_">
<use xlink:href="#tiktok_da_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_tiktok_da_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_tiktok_da_SVGID_00000085963710605139734970000008392142293593068733_">
<use xlink:href="#text-only_tiktok_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="x_da_SVGID_1_" width="45" height="45"/>
<clipPath id="x_da_SVGID_00000164514804879238509620000002248351286751785613_">
<use xlink:href="#x_da_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_x_da_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_x_da_SVGID_00000057860892759905079850000004575091592652621744_">
<use xlink:href="#text-only_x_da_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="yahoo_da_SVGID_1_" width="150" height="100"/>
<clipPath id="yahoo_da_SVGID_00000079456815953310622440000010919934911467776653_">
<use xlink:href="#yahoo_da_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_yahoo_da_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_yahoo_da_SVGID_00000079456815953310622440000010919934911467776653_">
<use xlink:href="#text-only_yahoo_da_SVGID_1_" style="overflow:visible;"/>
</clipPath></defs>
<symbol id="amazon_da" viewBox="0 0 150 100"><g>
<symbol id="text-only_amazon_da" viewBox="0 0 150 100"><g>
<g>
<g style="clip-path:url(#amazon_da_SVGID_00000137093233678431687520000003280587415585381019_);">
<g style="clip-path:url(#text-only_amazon_da_SVGID_00000137093233678431687520000003280587415585381019_);">
<g>
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M86.7,41.6v-3.4c0-0.5,0.4-0.9,0.9-0.9h15.3c0.5,0,0.9,0.4,0.9,0.9v2.9c0,0.5-0.4,1.1-1.2,2.1l-7.9,11.3
c2.9-0.1,6,0.4,8.7,1.9c0.6,0.3,0.8,0.8,0.8,1.3v3.6c0,0.5-0.5,1.1-1.1,0.8c-4.7-2.5-10.9-2.7-16.1,0c-0.5,0.3-1.1-0.3-1.1-0.8
@@ -83,10 +83,10 @@
</g>
</g>
</g></symbol>
<symbol id="apple_da" viewBox="0 0 150 100"><g>
<symbol id="text-only_apple_da" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#apple_da_SVGID_00000121990650443453624250000008803342828077021829_);">
<g style="clip-path:url(#text-only_apple_da_SVGID_00000121990650443453624250000008803342828077021829_);">
<path style="fill:#FFFFFF;" d="M10.3,52.8L5.8,66.4H0l14.7-43.2h6.7l14.8,43.2h-6l-4.6-13.6H10.3z M24.4,48.5L20.2,36
c-1-2.8-1.6-5.4-2.2-7.9h-0.1c-0.6,2.6-1.3,5.2-2.2,7.8l-4.2,12.5L24.4,48.5z M40.6,45.5c0-4-0.1-7.2-0.3-10.1h5.1l0.3,5.3h0.1
c2.3-3.8,6-6,11-6c7.5,0,13.2,6.4,13.2,15.8c0,11.2-6.8,16.7-14.1,16.7c-4.1,0-7.7-1.8-9.6-4.9h-0.1v16.9h-5.6V45.5z M46.1,53.8
@@ -99,37 +99,37 @@
c0,1.2-0.1,2-0.2,2.6L128,51.9L128,51.9z M144.6,47.9c0.1-3.6-1.5-9.2-7.8-9.2c-5.7,0-8.2,5.3-8.7,9.2H144.6z"/>
</g>
</g></symbol>
<symbol id="facebook_da" viewBox="0 0 150 100"><g>
<symbol id="text-only_facebook_da" viewBox="0 0 150 100"><g>
<g id="facebook_da__Group_" style="clip-path:url(#facebook_da_SVGID_00000104672561479708352790000014128242558117340321_);">
<path id="facebook_da__Path_" style="fill:#004F9D;" d="M11.7,40.3c-1.8,0-2.3,0.8-2.3,2.5v2.8h4.7l-0.5,4.6H9.5v14H3.8v-14H0v-4.6h3.8v-2.8
<g id="text-only_facebook_da__Group_" style="clip-path:url(#text-only_facebook_da_SVGID_00000104672561479708352790000014128242558117340321_);">
<path id="text-only_facebook_da__Path_" style="fill:#004F9D;" d="M11.7,40.3c-1.8,0-2.3,0.8-2.3,2.5v2.8h4.7l-0.5,4.6H9.5v14H3.8v-14H0v-4.6h3.8v-2.8
c0-4.7,1.9-7.2,7.1-7.2c1.1,0,2.2,0.1,3.3,0.2v4.4"/>
<path id="facebook_da__Compound_Path_" style="fill:#004F9D;" d="M14.6,54.4c0-5.2,2.5-9.1,7.7-9.1c2.8,0,4.5,1.4,5.4,3.3v-2.8H33v18.7h-5.5v-2.8
<path id="text-only_facebook_da__Compound_Path_" style="fill:#004F9D;" d="M14.6,54.4c0-5.2,2.5-9.1,7.7-9.1c2.8,0,4.5,1.4,5.4,3.3v-2.8H33v18.7h-5.5v-2.8
c-0.8,1.8-2.6,3.2-5.4,3.2c-5.2,0-7.7-3.9-7.7-9.1 M20.2,55.7c0,2.8,1,4.6,3.7,4.6c2.3,0,3.5-1.7,3.5-4.4v-1.9
c0-2.7-1.2-4.4-3.5-4.4c-2.6,0-3.7,1.8-3.7,4.6L20.2,55.7L20.2,55.7z"/>
<path id="facebook_da__Path_2" style="fill:#004F9D;" d="M44.8,45.3c2.2,0,4.3,0.5,5.4,1.3l-1.3,4c-1.2-0.6-2.5-0.8-3.8-0.8c-3.1,0-4.4,1.8-4.4,4.8v1.1
<path id="text-only_facebook_da__Path_2" style="fill:#004F9D;" d="M44.8,45.3c2.2,0,4.3,0.5,5.4,1.3l-1.3,4c-1.2-0.6-2.5-0.8-3.8-0.8c-3.1,0-4.4,1.8-4.4,4.8v1.1
c0,3,1.3,4.8,4.4,4.8c1.3,0,2.6-0.3,3.8-0.9l1.3,4c-1.1,0.8-3.2,1.3-5.4,1.3c-6.6,0-9.6-3.6-9.6-9.3v-0.9
C35.1,48.9,38.1,45.3,44.8,45.3"/>
<path id="facebook_da__Compound_Path_2" style="fill:#004F9D;" d="M50.9,55.7v-1.7c0-5.3,3-8.8,9.2-8.8c5.8,0,8.4,3.5,8.4,8.7v3H56.6
<path id="text-only_facebook_da__Compound_Path_2" style="fill:#004F9D;" d="M50.9,55.7v-1.7c0-5.3,3-8.8,9.2-8.8c5.8,0,8.4,3.5,8.4,8.7v3H56.6
c0.1,2.6,1.3,3.7,4.4,3.7c2,0,4.1-0.4,6-1.1l1,3.9c-1.5,0.8-4.5,1.4-7.2,1.4C53.6,64.8,50.9,61.2,50.9,55.7 M56.6,53.3h6.8v-0.5
c0-2-0.8-3.7-3.3-3.7C57.6,49.2,56.6,50.8,56.6,53.3"/>
<path id="facebook_da__Compound_Path_3" style="fill:#004F9D;" d="M89.5,55.6c0,5.2-2.5,9.1-7.7,9.1c-2.8,0-4.8-1.4-5.6-3.2v2.8h-5.3V36.3l5.7-0.5v12.5
<path id="text-only_facebook_da__Compound_Path_3" style="fill:#004F9D;" d="M89.5,55.6c0,5.2-2.5,9.1-7.7,9.1c-2.8,0-4.8-1.4-5.6-3.2v2.8h-5.3V36.3l5.7-0.5v12.5
c0.8-1.7,2.6-3,5.3-3c5.2,0,7.7,3.9,7.7,9.1 M83.8,54.3c0-2.6-1-4.6-3.7-4.6c-2.3,0-3.6,1.7-3.6,4.3v2c0,2.7,1.3,4.3,3.6,4.3
c2.7,0,3.7-2,3.7-4.6V54.3L83.8,54.3z"/>
<path id="facebook_da__Compound_Path_4" style="fill:#004F9D;" d="M91.3,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9
<path id="text-only_facebook_da__Compound_Path_4" style="fill:#004F9D;" d="M91.3,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9
c0,5.4-3.1,9.3-9.3,9.3C94.4,64.8,91.3,60.9,91.3,55.5 M104.3,54.2c0-2.5-1-4.4-3.7-4.4c-2.6,0-3.7,2-3.7,4.4v1.8
c0,2.5,1,4.4,3.7,4.4c2.6,0,3.7-2,3.7-4.4V54.2z"/>
<path id="facebook_da__Compound_Path_5" style="fill:#004F9D;" d="M111.8,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9
<path id="text-only_facebook_da__Compound_Path_5" style="fill:#004F9D;" d="M111.8,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9
c0,5.4-3.1,9.3-9.3,9.3C114.9,64.8,111.8,60.9,111.8,55.5 M124.8,54.2c0-2.5-1-4.4-3.7-4.4c-2.6,0-3.7,2-3.7,4.4v1.8
c0,2.5,1,4.4,3.7,4.4c2.6,0,3.7-2,3.7-4.4V54.2z"/>
<path id="facebook_da__Path_3" style="fill:#004F9D;" d="M138.2,54.6l5.6-8.9h6l-5.8,9.3l6.1,9.5h-6l-5.8-9.1v9.1h-5.6V36.3l5.6-0.5"/>
<path id="text-only_facebook_da__Path_3" style="fill:#004F9D;" d="M138.2,54.6l5.6-8.9h6l-5.8,9.3l6.1,9.5h-6l-5.8-9.1v9.1h-5.6V36.3l5.6-0.5"/>
</g>
</g></symbol>
<symbol id="google_da" viewBox="0 0 150 100"><g>
<symbol id="text-only_google_da" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#google_da_SVGID_00000010298734730609544400000000568488005254226823_);">
<g style="clip-path:url(#text-only_google_da_SVGID_00000010298734730609544400000000568488005254226823_);">
<path style="fill:#3780FF;" d="M18.5,25.5h1.3c4.6,0.1,9.2,2,12.5,5.3c-1.2,1.2-2.4,2.4-3.6,3.6c-1.8-1.7-4.1-2.9-6.5-3.4
c-3.6-0.8-7.4-0.1-10.4,2c-3.3,2.1-5.5,5.8-6,9.6c-0.5,3.8,0.6,7.9,3,10.8c2.4,2.9,6,4.7,9.8,4.8c3.5,0.2,7.2-0.9,9.8-3.3
c2-1.7,2.9-4.4,3.2-6.9c-4.2,0-8.4,0-12.5,0v-5.2h17.6c0.9,5.6-0.4,11.8-4.6,15.8c-2.8,2.8-6.7,4.5-10.7,4.8
@@ -154,37 +154,37 @@
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
</g>
</g></symbol>
<symbol id="linkedin_da" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="linkedin_da_base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
<symbol id="text-only_linkedin_da" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="text-only_linkedin_da_base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<g>
<g id="linkedin_da_layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#linkedin_da_SVGID_00000031897073382923130020000003029520824740490669_);">
<g id="linkedin_da_g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
<path id="linkedin_da_path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M29.4,34.3h23.2V42H37.8v29h-8.4C29.4,71,29.4,34.3,29.4,34.3
<g id="text-only_linkedin_da_layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#text-only_linkedin_da_SVGID_00000031897073382923130020000003029520824740490669_);">
<g id="text-only_linkedin_da_g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
<path id="text-only_linkedin_da_path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M29.4,34.3h23.2V42H37.8v29h-8.4C29.4,71,29.4,34.3,29.4,34.3
z"/>
<path id="linkedin_da_path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M64.3,34.3v25.2h-8.4V34.3H64.3z M60.1,63
<path id="text-only_linkedin_da_path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M64.3,34.3v25.2h-8.4V34.3H64.3z M60.1,63
c2.9,0,4.7,1.9,4.7,4.4c-0.1,2.5-1.8,4.4-4.7,4.4c-2.9,0-4.7-1.9-4.7-4.4C55.4,65,57.2,63,60.1,63L60.1,63L60.1,63z"/>
<path id="linkedin_da_path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M68.2,34.3h8.4v14.1c0,0.8,0.1,1.5,0.3,2
<path id="text-only_linkedin_da_path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M68.2,34.3h8.4v14.1c0,0.8,0.1,1.5,0.3,2
c0.6,1.5,2,3.1,4.3,3.1c3,0,4.2-2.3,4.2-5.7V34.3h8.4v14.5c0,7.8-4.1,11.4-9.7,11.4c-4.5,0-6.5-2.5-7.6-4.3h0.1v3.7h-8.4
C68.3,57.2,68.2,34.3,68.2,34.3L68.2,34.3z"/>
<path id="linkedin_da_path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M105.6,71h-8.4V34.3h8.4v8.2l2.1,2.6l6.6-10.8h10.3l-11,15.7
<path id="text-only_linkedin_da_path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M105.6,71h-8.4V34.3h8.4v8.2l2.1,2.6l6.6-10.8h10.3l-11,15.7
l9.7,10.7h-10.1c0,0-6.9-9.5-7.5-10.7L105.6,71L105.6,71z"/>
<path id="linkedin_da_path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M147,44.9c0.1,0.6,0.3,1.9,0.3,3.3c0,6.5-3.3,13.1-12,13.1
<path id="text-only_linkedin_da_path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M147,44.9c0.1,0.6,0.3,1.9,0.3,3.3c0,6.5-3.3,13.1-12,13.1
c-9.3,0-13.6-7.4-13.6-14.1c0-8.3,5.2-13.4,14.4-13.4c3.6,0,7,0.5,9.8,1.7l-1.1,5.5c-2.3-0.8-4.6-1.1-7.4-1.1
c-3.9,0-7.3,1.6-7.6,5L147,44.9L147,44.9z M129.6,50.5c0.2,2.2,1.7,5.3,5.2,5.3c3.8,0,4.7-3.4,4.7-5.3H129.6z"/>
<path id="linkedin_da_path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M168,71V58.3h-0.1c-1.2,1.8-3.8,3-7.1,3
<path id="text-only_linkedin_da_path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M168,71V58.3h-0.1c-1.2,1.8-3.8,3-7.1,3
c-6.5,0-12.1-5.2-12.1-14c0-8.2,5.1-13.5,11.5-13.5c3.5,0,6.8,1.5,8.4,4.4h0.2l0.3-3.8h7.4c-0.1,1.8-0.2,4.8-0.2,7.9V71H168
L168,71z M168,46c0-0.6-0.1-1.3-0.2-1.8c-0.5-2.3-2.5-3.9-4.9-3.9c-3.5,0-5.7,2.8-5.7,7.2c0,4.1,1.9,7.5,5.8,7.5
c2.6,0,4.4-1.8,4.9-4c0.1-0.5,0.1-1,0.1-1.5L168,46L168,46z"/>
</g>
</g>
</g></symbol>
<symbol id="microsoft_da" viewBox="0 0 150 100"><g>
<symbol id="text-only_microsoft_da" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#microsoft_da_SVGID_00000059306687771037721190000015549763561247054232_);">
<g style="clip-path:url(#text-only_microsoft_da_SVGID_00000059306687771037721190000015549763561247054232_);">
<path style="fill:#FFFFFF;" d="M28.7,37.5V64h-4.6V43.2H24L15.8,64h-3.1L4.3,43.2H4.2V64H0V37.5h6.6l7.6,19.7h0.1l8.1-19.7
C22.4,37.5,28.7,37.5,28.7,37.5z M32.5,39.5c0-0.7,0.2-1.4,0.8-1.8c0.6-0.5,1.2-0.7,1.9-0.7c0.8,0,1.5,0.2,2,0.7
c0.5,0.5,0.8,1.1,0.8,1.8c0,0.7-0.2,1.4-0.8,1.8c-0.6,0.5-1.2,0.7-2,0.7c-0.8,0-1.4-0.2-1.9-0.7C32.8,40.8,32.5,40.2,32.5,39.5z
@@ -212,11 +212,11 @@
c-0.9-1-1.4-2.5-1.4-4.6L141,48.6L141,48.6z"/>
</g>
</g></symbol>
<symbol id="outlook_da" viewBox="0 0 150 100"><g>
<symbol id="text-only_outlook_da" viewBox="0 0 150 100"><g>
<g>
<g style="clip-path:url(#outlook_da_SVGID_00000044176771689925151940000015978105338346814648_);">
<g style="clip-path:url(#text-only_outlook_da_SVGID_00000044176771689925151940000015978105338346814648_);">
<g>
<path style="fill:#FFFFFF;" d="M8.6,59.7c-2.6,0-4.7-0.8-6.3-2.5C0.8,55.5,0,53.3,0,50.6c0-2.9,0.8-5.2,2.4-7C4,41.9,6.2,41,8.9,41
c2.5,0,4.6,0.8,6.1,2.5c1.6,1.7,2.3,3.9,2.3,6.6c0,3-0.8,5.3-2.4,7C13.4,58.8,11.3,59.7,8.6,59.7z M8.7,43.7c-1.7,0-3,0.6-4,1.9
@@ -252,11 +252,11 @@
</g>
</g>
</g></symbol>
<symbol id="paypal_da" viewBox="0 0 150.2 100"><g>
<symbol id="text-only_paypal_da" viewBox="0 0 150.2 100"><g>
<g>
<g style="clip-path:url(#paypal_da_SVGID_00000062189005979654764830000014265510031276431525_);">
<g style="clip-path:url(#text-only_paypal_da_SVGID_00000062189005979654764830000014265510031276431525_);">
<g>
<path style="fill:#253B80;" d="M18.1,34.1H6.4c-0.8,0-1.5,0.6-1.6,1.4L0.1,65.4c-0.1,0.6,0.4,1.1,1,1.1h5.6c0.8,0,1.5-0.6,1.6-1.4L9.6,57
c0.1-0.8,0.8-1.4,1.6-1.4h3.7c7.7,0,12.1-3.7,13.3-11.1c0.5-3.2,0-5.8-1.5-7.5C25,35.1,22,34.1,18.1,34.1L18.1,34.1z M19.5,45
@@ -283,10 +283,10 @@
</g>
</g>
</g></symbol>
<symbol id="reddit_da" viewBox="0 0 150 100"><g>
<symbol id="text-only_reddit_da" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#reddit_da_SVGID_00000080175393403253162870000002766530118521356964_);">
<g style="clip-path:url(#text-only_reddit_da_SVGID_00000080175393403253162870000002766530118521356964_);">
<circle style="fill:#FF4500;" cx="124.9" cy="35.3" r="5.6"/>
<path style="fill:#FFFFFF;" d="M45.6,59.1c2.2,0.2,4-1.5,4.2-3.7c0-0.1,0-0.3,0-0.4c0-0.8-0.1-1.5-0.3-2.3c-1.3-7.1-7.4-12.3-14.6-12.6
c-8.2,0-15,7.5-15,16.8s6.7,16.8,15,16.8c4.4,0.2,8.7-1.6,11.6-4.9c1.2-1.3,1.1-3.4-0.2-4.6c-0.1-0.1-0.2-0.2-0.3-0.2
@@ -309,10 +309,10 @@
C144.4,70,144.4,69.9,144.4,69.9z"/>
</g>
</g></symbol>
<symbol id="tiktok_da" viewBox="0 0 150 100"><g>
<symbol id="text-only_tiktok_da" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#tiktok_da_SVGID_00000085963710605139734970000008392142293593068733_);">
<g style="clip-path:url(#text-only_tiktok_da_SVGID_00000085963710605139734970000008392142293593068733_);">
<path style="fill:#FF004F;" d="M107,66.8c7.6,0,13.8-6.1,13.8-13.7c0-7.5-6.2-13.7-13.8-13.7h-2.1c7.6,0,13.8,6.1,13.8,13.7
s-6.2,13.7-13.8,13.7H107z"/>
<path style="fill:#00F2EA;" d="M104.7,39.4h-2.1c-7.6,0-13.8,6.1-13.8,13.7s6.2,13.7,13.8,13.7h2.1c-7.6,0-13.8-6.1-13.8-13.7
@@ -326,22 +326,19 @@
C101.1,59.7,98.1,56.8,98.1,53.1z"/>
</g>
</g></symbol>
<symbol id="x_da" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="x_da_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
<inkscape:page bleed="0" height="799.33301" id="x_da_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
</sodipodi:namedview>
<g>
<symbol id="text-only_x_da" viewBox="0 0 150 100"><g>
<path id="x_da_path1-93" style="clip-path:url(#x_da_SVGID_00000164514804879238509620000002248351286751785613_);fill:#FFFFFF;" d="
M35.6,2.2h6.9L27.3,19.4L45,42.8H31.1L20.2,28.6L7.8,42.8H0.9l16-18.4L0,2.2h14.2l9.8,13L35.6,2.2z M33.1,38.8H37L12.2,6.1H8.1
L33.1,38.8z"/>
<path id="text-only_x_da_path1-93" style="clip-path:url(#text-only_x_da_SVGID_00000057860892759905079850000004575091592652621744_);fill:#FFFFFF;" d="M107.3,0
h17L86.8,42.4l43.6,57.6H96.2L69.3,65l-30.5,35h-17l39.4-45.3L19.6,0h35l24.1,32L107.3,0z M101.1,90.1h9.6L49.6,9.6H39.5
L101.1,90.1z"/>
</g></symbol>
<symbol id="yahoo_da" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="yahoo_da_base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
<symbol id="text-only_yahoo_da" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="text-only_yahoo_da_base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
</sodipodi:namedview>
<g>
<path id="yahoo_da_path1" style="clip-path:url(#yahoo_da_SVGID_00000079456815953310622440000010919934911467776653_);fill:#7D2EFF;" d="M53.8,29.2
<path id="text-only_yahoo_da_path1" style="clip-path:url(#text-only_yahoo_da_SVGID_00000079456815953310622440000010919934911467776653_);fill:#7D2EFF;" d="M53.8,29.2
v33.1h8.1V49.8c0-1.8,1-3.5,3-3.5c1.9,0,2.8,1.7,2.8,3.5v12.5h8.1V47.8c0-5.3-2.9-9-7.9-9c-4,0-6,2.7-6,2.7V29.2H53.8z M140.3,29.2
L131.7,50h9.7l8.6-20.7H140.3z M37.1,38.8c-6.7,0-10.9,6-10.9,12c0,6.7,4.6,12.1,10.8,12.1c4.6,0,6.3-2.8,6.3-2.8v2.2h7.8V39.3
h-7.8v2.1C43.3,41.4,41.4,38.8,37.1,38.8L37.1,38.8z M89.7,38.8c-7.7,0-12.3,5.8-12.3,12.1c0,7.1,5.5,12,12.3,12

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

View File

@@ -1,58 +1,58 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<rect id="amazon_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="amazon_dm_SVGID_00000137093233678431687520000003280587415585381019_">
<use xlink:href="#amazon_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_amazon_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_amazon_dm_SVGID_00000137093233678431687520000003280587415585381019_">
<use xlink:href="#text-only_amazon_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="apple_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="apple_dm_SVGID_00000055688321392233486270000010116386682300519345_">
<use xlink:href="#apple_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_apple_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_apple_dm_SVGID_00000055688321392233486270000010116386682300519345_">
<use xlink:href="#text-only_apple_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="facebook_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="facebook_dm_SVGID_00000150794007832118935800000016894567039313884065_">
<use xlink:href="#facebook_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_facebook_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_facebook_dm_SVGID_00000150794007832118935800000016894567039313884065_">
<use xlink:href="#text-only_facebook_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="google_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="google_dm_SVGID_00000053523213113259821400000013631981694104637080_">
<use xlink:href="#google_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_google_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_google_dm_SVGID_00000053523213113259821400000013631981694104637080_">
<use xlink:href="#text-only_google_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="linkedin_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="linkedin_dm_SVGID_00000026844789663998423150000017153776654943351971_">
<use xlink:href="#linkedin_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_linkedin_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_linkedin_dm_SVGID_00000026844789663998423150000017153776654943351971_">
<use xlink:href="#text-only_linkedin_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="microsoft_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="microsoft_dm_SVGID_00000036963931076808790240000005204133160887327922_">
<use xlink:href="#microsoft_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_microsoft_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_microsoft_dm_SVGID_00000036963931076808790240000005204133160887327922_">
<use xlink:href="#text-only_microsoft_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="outlook_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="outlook_dm_SVGID_00000127749825550579351220000004022360664497137538_">
<use xlink:href="#outlook_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_outlook_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_outlook_dm_SVGID_00000127749825550579351220000004022360664497137538_">
<use xlink:href="#text-only_outlook_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="paypal_dm_SVGID_1_" x="0.2" width="150" height="100"/>
<clipPath id="paypal_dm_SVGID_00000036243014027052732520000013798028043357185471_">
<use xlink:href="#paypal_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_paypal_dm_SVGID_1_" x="0.2" width="150" height="100"/>
<clipPath id="text-only_paypal_dm_SVGID_00000036243014027052732520000013798028043357185471_">
<use xlink:href="#text-only_paypal_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="reddit_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="reddit_dm_SVGID_00000134221440663882431140000017358905033642358954_">
<use xlink:href="#reddit_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_reddit_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_reddit_dm_SVGID_00000134221440663882431140000017358905033642358954_">
<use xlink:href="#text-only_reddit_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="tiktok_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="tiktok_dm_SVGID_00000021097504377761911610000000206456576103740579_">
<use xlink:href="#tiktok_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_tiktok_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_tiktok_dm_SVGID_00000021097504377761911610000000206456576103740579_">
<use xlink:href="#text-only_tiktok_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="x_dm_SVGID_1_" width="45" height="45"/>
<clipPath id="x_dm_SVGID_00000078743550890106176290000000360767509830120849_">
<use xlink:href="#x_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_x_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_x_dm_SVGID_00000104700770152320486820000015121293047056206237_">
<use xlink:href="#text-only_x_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="yahoo_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="yahoo_dm_SVGID_00000177476906562754991750000014625481674889339810_">
<use xlink:href="#yahoo_dm_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_yahoo_dm_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_yahoo_dm_SVGID_00000177476906562754991750000014625481674889339810_">
<use xlink:href="#text-only_yahoo_dm_SVGID_1_" style="overflow:visible;"/>
</clipPath></defs>
<symbol id="amazon_dm" viewBox="0 0 150 100"><g>
<symbol id="text-only_amazon_dm" viewBox="0 0 150 100"><g>
<g>
<g style="clip-path:url(#amazon_dm_SVGID_00000137093233678431687520000003280587415585381019_);">
<g style="clip-path:url(#text-only_amazon_dm_SVGID_00000137093233678431687520000003280587415585381019_);">
<g>
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M86.7,41.6v-3.4c0-0.5,0.4-0.9,0.9-0.9h15.3c0.5,0,0.9,0.4,0.9,0.9v2.9c0,0.5-0.4,1.1-1.2,2.1l-7.9,11.3
c2.9-0.1,6,0.4,8.7,1.9c0.6,0.3,0.8,0.8,0.8,1.3v3.6c0,0.5-0.5,1.1-1.1,0.8c-4.7-2.5-10.9-2.7-16.1,0c-0.5,0.3-1.1-0.3-1.1-0.8
@@ -83,10 +83,10 @@
</g>
</g>
</g></symbol>
<symbol id="apple_dm" viewBox="0 0 150 100"><g>
<symbol id="text-only_apple_dm" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#apple_dm_SVGID_00000055688321392233486270000010116386682300519345_);">
<g style="clip-path:url(#text-only_apple_dm_SVGID_00000055688321392233486270000010116386682300519345_);">
<path style="fill:#FFFFFF;" d="M10.3,52.8L5.8,66.4H0l14.7-43.2h6.7l14.8,43.2h-6l-4.6-13.6H10.3z M24.4,48.5L20.2,36
c-1-2.8-1.6-5.4-2.2-7.9h-0.1c-0.6,2.6-1.3,5.2-2.2,7.8l-4.2,12.5L24.4,48.5z M40.6,45.5c0-4-0.1-7.2-0.3-10.1h5.1l0.3,5.3h0.1
c2.3-3.8,6-6,11-6c7.5,0,13.2,6.4,13.2,15.8c0,11.2-6.8,16.7-14.1,16.7c-4.1,0-7.7-1.8-9.6-4.9h-0.1v16.9h-5.6V45.5z M46.1,53.8
@@ -99,37 +99,37 @@
c0,1.2-0.1,2-0.2,2.6L128,51.9L128,51.9z M144.6,47.9c0.1-3.6-1.5-9.2-7.8-9.2c-5.7,0-8.2,5.3-8.7,9.2H144.6z"/>
</g>
</g></symbol>
<symbol id="facebook_dm" viewBox="0 0 150 100"><g>
<symbol id="text-only_facebook_dm" viewBox="0 0 150 100"><g>
<g id="facebook_dm__Group_" style="clip-path:url(#facebook_dm_SVGID_00000150794007832118935800000016894567039313884065_);">
<path id="facebook_dm__Path_" style="fill:#FFFFFF;" d="M11.7,40.3c-1.8,0-2.3,0.8-2.3,2.5v2.8h4.7l-0.5,4.6H9.5v14H3.8v-14H0v-4.6h3.8v-2.8
<g id="text-only_facebook_dm__Group_" style="clip-path:url(#text-only_facebook_dm_SVGID_00000150794007832118935800000016894567039313884065_);">
<path id="text-only_facebook_dm__Path_" style="fill:#FFFFFF;" d="M11.7,40.3c-1.8,0-2.3,0.8-2.3,2.5v2.8h4.7l-0.5,4.6H9.5v14H3.8v-14H0v-4.6h3.8v-2.8
c0-4.7,1.9-7.2,7.1-7.2c1.1,0,2.2,0.1,3.3,0.2v4.4"/>
<path id="facebook_dm__Compound_Path_" style="fill:#FFFFFF;" d="M14.6,54.4c0-5.2,2.5-9.1,7.7-9.1c2.8,0,4.5,1.4,5.4,3.3v-2.8H33v18.7h-5.5v-2.8
<path id="text-only_facebook_dm__Compound_Path_" style="fill:#FFFFFF;" d="M14.6,54.4c0-5.2,2.5-9.1,7.7-9.1c2.8,0,4.5,1.4,5.4,3.3v-2.8H33v18.7h-5.5v-2.8
c-0.8,1.8-2.6,3.2-5.4,3.2c-5.2,0-7.7-3.9-7.7-9.1 M20.2,55.7c0,2.8,1,4.6,3.7,4.6c2.3,0,3.5-1.7,3.5-4.4v-1.9
c0-2.7-1.2-4.4-3.5-4.4c-2.6,0-3.7,1.8-3.7,4.6L20.2,55.7L20.2,55.7z"/>
<path id="facebook_dm__Path_2" style="fill:#FFFFFF;" d="M44.8,45.3c2.2,0,4.3,0.5,5.4,1.3l-1.3,4c-1.2-0.6-2.5-0.8-3.8-0.8c-3.1,0-4.4,1.8-4.4,4.8v1.1
<path id="text-only_facebook_dm__Path_2" style="fill:#FFFFFF;" d="M44.8,45.3c2.2,0,4.3,0.5,5.4,1.3l-1.3,4c-1.2-0.6-2.5-0.8-3.8-0.8c-3.1,0-4.4,1.8-4.4,4.8v1.1
c0,3,1.3,4.8,4.4,4.8c1.3,0,2.6-0.3,3.8-0.9l1.3,4c-1.1,0.8-3.2,1.3-5.4,1.3c-6.6,0-9.6-3.6-9.6-9.3v-0.9
C35.1,48.9,38.1,45.3,44.8,45.3"/>
<path id="facebook_dm__Compound_Path_2" style="fill:#FFFFFF;" d="M50.9,55.7v-1.7c0-5.3,3-8.8,9.2-8.8c5.8,0,8.4,3.5,8.4,8.7v3H56.6
<path id="text-only_facebook_dm__Compound_Path_2" style="fill:#FFFFFF;" d="M50.9,55.7v-1.7c0-5.3,3-8.8,9.2-8.8c5.8,0,8.4,3.5,8.4,8.7v3H56.6
c0.1,2.6,1.3,3.7,4.4,3.7c2,0,4.1-0.4,6-1.1l1,3.9c-1.5,0.8-4.5,1.4-7.2,1.4C53.6,64.8,50.9,61.2,50.9,55.7 M56.6,53.3h6.8v-0.5
c0-2-0.8-3.7-3.3-3.7C57.6,49.2,56.6,50.8,56.6,53.3"/>
<path id="facebook_dm__Compound_Path_3" style="fill:#FFFFFF;" d="M89.5,55.6c0,5.2-2.5,9.1-7.7,9.1c-2.8,0-4.8-1.4-5.6-3.2v2.8h-5.3V36.3l5.7-0.5v12.5
<path id="text-only_facebook_dm__Compound_Path_3" style="fill:#FFFFFF;" d="M89.5,55.6c0,5.2-2.5,9.1-7.7,9.1c-2.8,0-4.8-1.4-5.6-3.2v2.8h-5.3V36.3l5.7-0.5v12.5
c0.8-1.7,2.6-3,5.3-3c5.2,0,7.7,3.9,7.7,9.1 M83.8,54.3c0-2.6-1-4.6-3.7-4.6c-2.3,0-3.6,1.7-3.6,4.3v2c0,2.7,1.3,4.3,3.6,4.3
c2.7,0,3.7-2,3.7-4.6V54.3L83.8,54.3z"/>
<path id="facebook_dm__Compound_Path_4" style="fill:#FFFFFF;" d="M91.3,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9
<path id="text-only_facebook_dm__Compound_Path_4" style="fill:#FFFFFF;" d="M91.3,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9
c0,5.4-3.1,9.3-9.3,9.3C94.4,64.8,91.3,60.9,91.3,55.5 M104.3,54.2c0-2.5-1-4.4-3.7-4.4c-2.6,0-3.7,2-3.7,4.4v1.8
c0,2.5,1,4.4,3.7,4.4c2.6,0,3.7-2,3.7-4.4V54.2z"/>
<path id="facebook_dm__Compound_Path_5" style="fill:#FFFFFF;" d="M111.8,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9
<path id="text-only_facebook_dm__Compound_Path_5" style="fill:#FFFFFF;" d="M111.8,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9
c0,5.4-3.1,9.3-9.3,9.3C114.9,64.8,111.8,60.9,111.8,55.5 M124.8,54.2c0-2.5-1-4.4-3.7-4.4c-2.6,0-3.7,2-3.7,4.4v1.8
c0,2.5,1,4.4,3.7,4.4c2.6,0,3.7-2,3.7-4.4V54.2z"/>
<path id="facebook_dm__Path_3" style="fill:#FFFFFF;" d="M138.2,54.6l5.6-8.9h6l-5.8,9.3l6.1,9.5h-6l-5.8-9.1v9.1h-5.6V36.3l5.6-0.5"/>
<path id="text-only_facebook_dm__Path_3" style="fill:#FFFFFF;" d="M138.2,54.6l5.6-8.9h6l-5.8,9.3l6.1,9.5h-6l-5.8-9.1v9.1h-5.6V36.3l5.6-0.5"/>
</g>
</g></symbol>
<symbol id="google_dm" viewBox="0 0 150 100"><g>
<symbol id="text-only_google_dm" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#google_dm_SVGID_00000053523213113259821400000013631981694104637080_);">
<g style="clip-path:url(#text-only_google_dm_SVGID_00000053523213113259821400000013631981694104637080_);">
<path style="fill:#FFFFFF;" d="M18.5,25.5h1.3c4.6,0.1,9.2,2,12.5,5.3c-1.2,1.2-2.4,2.4-3.6,3.6c-1.8-1.7-4.1-2.9-6.5-3.4
c-3.6-0.8-7.4-0.1-10.4,2c-3.3,2.1-5.5,5.8-6,9.6c-0.5,3.8,0.6,7.9,3,10.8c2.4,2.9,6,4.7,9.8,4.8c3.5,0.2,7.2-0.9,9.8-3.3
c2-1.7,2.9-4.4,3.2-6.9c-4.2,0-8.4,0-12.5,0v-5.2h17.6c0.9,5.6-0.4,11.8-4.6,15.8c-2.8,2.8-6.7,4.5-10.7,4.8
@@ -154,37 +154,37 @@
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
</g>
</g></symbol>
<symbol id="linkedin_dm" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="linkedin_dm_base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
<symbol id="text-only_linkedin_dm" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="text-only_linkedin_dm_base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<g>
<g id="linkedin_dm_layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#linkedin_dm_SVGID_00000026844789663998423150000017153776654943351971_);">
<g id="linkedin_dm_g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
<path id="linkedin_dm_path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M29.4,34.3h23.2V42H37.8v29h-8.4C29.4,71,29.4,34.3,29.4,34.3
<g id="text-only_linkedin_dm_layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#text-only_linkedin_dm_SVGID_00000026844789663998423150000017153776654943351971_);">
<g id="text-only_linkedin_dm_g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
<path id="text-only_linkedin_dm_path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M29.4,34.3h23.2V42H37.8v29h-8.4C29.4,71,29.4,34.3,29.4,34.3
z"/>
<path id="linkedin_dm_path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M64.3,34.3v25.2h-8.4V34.3H64.3z M60.1,63
<path id="text-only_linkedin_dm_path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M64.3,34.3v25.2h-8.4V34.3H64.3z M60.1,63
c2.9,0,4.7,1.9,4.7,4.4c-0.1,2.5-1.8,4.4-4.7,4.4c-2.9,0-4.7-1.9-4.7-4.4C55.4,65,57.2,63,60.1,63L60.1,63L60.1,63z"/>
<path id="linkedin_dm_path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M68.2,34.3h8.4v14.1c0,0.8,0.1,1.5,0.3,2
<path id="text-only_linkedin_dm_path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M68.2,34.3h8.4v14.1c0,0.8,0.1,1.5,0.3,2
c0.6,1.5,2,3.1,4.3,3.1c3,0,4.2-2.3,4.2-5.7V34.3h8.4v14.5c0,7.8-4.1,11.4-9.7,11.4c-4.5,0-6.5-2.5-7.6-4.3h0.1v3.7h-8.4
C68.3,57.2,68.2,34.3,68.2,34.3L68.2,34.3z"/>
<path id="linkedin_dm_path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M105.6,71h-8.4V34.3h8.4v8.2l2.1,2.6l6.6-10.8h10.3l-11,15.7
<path id="text-only_linkedin_dm_path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M105.6,71h-8.4V34.3h8.4v8.2l2.1,2.6l6.6-10.8h10.3l-11,15.7
l9.7,10.7h-10.1c0,0-6.9-9.5-7.5-10.7L105.6,71L105.6,71z"/>
<path id="linkedin_dm_path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M147,44.9c0.1,0.6,0.3,1.9,0.3,3.3c0,6.5-3.3,13.1-12,13.1
<path id="text-only_linkedin_dm_path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M147,44.9c0.1,0.6,0.3,1.9,0.3,3.3c0,6.5-3.3,13.1-12,13.1
c-9.3,0-13.6-7.4-13.6-14.1c0-8.3,5.2-13.4,14.4-13.4c3.6,0,7,0.5,9.8,1.7l-1.1,5.5c-2.3-0.8-4.6-1.1-7.4-1.1
c-3.9,0-7.3,1.6-7.6,5L147,44.9L147,44.9z M129.6,50.5c0.2,2.2,1.7,5.3,5.2,5.3c3.8,0,4.7-3.4,4.7-5.3H129.6z"/>
<path id="linkedin_dm_path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M168,71V58.3h-0.1c-1.2,1.8-3.8,3-7.1,3
<path id="text-only_linkedin_dm_path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M168,71V58.3h-0.1c-1.2,1.8-3.8,3-7.1,3
c-6.5,0-12.1-5.2-12.1-14c0-8.2,5.1-13.5,11.5-13.5c3.5,0,6.8,1.5,8.4,4.4h0.2l0.3-3.8h7.4c-0.1,1.8-0.2,4.8-0.2,7.9V71H168
L168,71z M168,46c0-0.6-0.1-1.3-0.2-1.8c-0.5-2.3-2.5-3.9-4.9-3.9c-3.5,0-5.7,2.8-5.7,7.2c0,4.1,1.9,7.5,5.8,7.5
c2.6,0,4.4-1.8,4.9-4c0.1-0.5,0.1-1,0.1-1.5L168,46L168,46z"/>
</g>
</g>
</g></symbol>
<symbol id="microsoft_dm" viewBox="0 0 150 100"><g>
<symbol id="text-only_microsoft_dm" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#microsoft_dm_SVGID_00000036963931076808790240000005204133160887327922_);">
<g style="clip-path:url(#text-only_microsoft_dm_SVGID_00000036963931076808790240000005204133160887327922_);">
<path style="fill:#FFFFFF;" d="M28.7,37.5V64h-4.6V43.2H24L15.8,64h-3.1L4.3,43.2H4.2V64H0V37.5h6.6l7.6,19.7h0.1l8.1-19.7
C22.4,37.5,28.7,37.5,28.7,37.5z M32.5,39.5c0-0.7,0.2-1.4,0.8-1.8c0.6-0.5,1.2-0.7,1.9-0.7c0.8,0,1.5,0.2,2,0.7
c0.5,0.5,0.8,1.1,0.8,1.8c0,0.7-0.2,1.4-0.8,1.8c-0.6,0.5-1.2,0.7-2,0.7c-0.8,0-1.4-0.2-1.9-0.7C32.8,40.8,32.5,40.2,32.5,39.5z
@@ -212,11 +212,11 @@
c-0.9-1-1.4-2.5-1.4-4.6L141,48.6L141,48.6z"/>
</g>
</g></symbol>
<symbol id="outlook_dm" viewBox="0 0 150 100"><g>
<symbol id="text-only_outlook_dm" viewBox="0 0 150 100"><g>
<g>
<g style="clip-path:url(#outlook_dm_SVGID_00000127749825550579351220000004022360664497137538_);">
<g style="clip-path:url(#text-only_outlook_dm_SVGID_00000127749825550579351220000004022360664497137538_);">
<g>
<path style="fill:#FFFFFF;" d="M8.6,59.7c-2.6,0-4.7-0.8-6.3-2.5C0.8,55.5,0,53.3,0,50.6c0-2.9,0.8-5.2,2.4-7C4,41.9,6.2,41,8.9,41
c2.5,0,4.6,0.8,6.1,2.5c1.6,1.7,2.3,3.9,2.3,6.6c0,3-0.8,5.3-2.4,7C13.4,58.8,11.3,59.7,8.6,59.7z M8.7,43.7c-1.7,0-3,0.6-4,1.9
@@ -252,12 +252,12 @@
</g>
</g>
</g></symbol>
<symbol id="paypal_dm" viewBox="0 0 150.2 100"><g>
<symbol id="text-only_paypal_dm" viewBox="0 0 150.2 100"><g>
<g>
<g>
<g style="clip-path:url(#paypal_dm_SVGID_00000036243014027052732520000013798028043357185471_);">
<g style="clip-path:url(#text-only_paypal_dm_SVGID_00000036243014027052732520000013798028043357185471_);">
<g>
<path style="fill:#FFFFFF;" d="M18.1,34.1H6.4c-0.8,0-1.5,0.6-1.6,1.4L0.1,65.4c-0.1,0.6,0.4,1.1,1,1.1h5.6c0.8,0,1.5-0.6,1.6-1.4L9.6,57
c0.1-0.8,0.8-1.4,1.6-1.4h3.7c7.7,0,12.1-3.7,13.3-11.1c0.5-3.2,0-5.8-1.5-7.5C25,35.1,22,34.1,18.1,34.1L18.1,34.1z M19.5,45
@@ -287,10 +287,10 @@
</g>
</g>
</g></symbol>
<symbol id="reddit_dm" viewBox="0 0 150 100"><g>
<symbol id="text-only_reddit_dm" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#reddit_dm_SVGID_00000134221440663882431140000017358905033642358954_);">
<g style="clip-path:url(#text-only_reddit_dm_SVGID_00000134221440663882431140000017358905033642358954_);">
<circle style="fill:#FFFFFF;" cx="124.9" cy="35.3" r="5.6"/>
<path style="fill:#FFFFFF;" d="M45.6,59.1c2.2,0.2,4-1.5,4.2-3.7c0-0.1,0-0.3,0-0.4c0-0.8-0.1-1.5-0.3-2.3c-1.3-7.1-7.4-12.3-14.6-12.6
c-8.2,0-15,7.5-15,16.8s6.7,16.8,15,16.8c4.4,0.2,8.7-1.6,11.6-4.9c1.2-1.3,1.1-3.4-0.2-4.6c-0.1-0.1-0.2-0.2-0.3-0.2
@@ -313,10 +313,10 @@
C144.4,70,144.4,69.9,144.4,69.9z"/>
</g>
</g></symbol>
<symbol id="tiktok_dm" viewBox="0 0 150 100"><g>
<symbol id="text-only_tiktok_dm" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#tiktok_dm_SVGID_00000021097504377761911610000000206456576103740579_);">
<g style="clip-path:url(#text-only_tiktok_dm_SVGID_00000021097504377761911610000000206456576103740579_);">
<path style="fill:#FFFFFF;" d="M0,33.2v6.9h8.1v26.4h8.1V40.4h6.6l2.3-7.1L0,33.2L0,33.2z M66.4,33.2v6.9h8.1v26.4h8.1V40.4h6.6l2.3-7.1
L66.4,33.2L66.4,33.2z M26.6,37.2c0-2.2,1.8-3.9,4-3.9c2.2,0,4,1.8,4,3.9c0,2.2-1.8,3.9-4,3.9C28.4,41.1,26.6,39.4,26.6,37.2z
M26.6,43.9h7.9v22.6h-7.9V43.9z M37.9,33.2v33.3h7.9V58l2.5-2.2l7.7,11h8.5L53.4,50.7l10-9.7h-9.6l-7.9,7.9V33.2H37.9z
@@ -326,22 +326,19 @@
C101.1,59.7,98.1,56.8,98.1,53.1z"/>
</g>
</g></symbol>
<symbol id="x_dm" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="x_dm_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
<inkscape:page bleed="0" height="799.33301" id="x_dm_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
</sodipodi:namedview>
<g>
<symbol id="text-only_x_dm" viewBox="0 0 150 100"><g>
<path id="x_dm_path1-93" style="clip-path:url(#x_dm_SVGID_00000078743550890106176290000000360767509830120849_);fill:#FFFFFF;" d="
M35.6,2.2h6.9L27.3,19.4L45,42.8H31.1L20.2,28.6L7.8,42.8H0.9l16-18.4L0,2.2h14.2l9.8,13L35.6,2.2z M33.1,38.8H37L12.2,6.1H8.1
L33.1,38.8z"/>
<path id="text-only_x_dm_path1-93" style="clip-path:url(#text-only_x_dm_SVGID_00000104700770152320486820000015121293047056206237_);fill:#FFFFFF;" d="M107.3,0
h17L86.8,42.4l43.6,57.6H96.2L69.3,65l-30.5,35h-17l39.4-45.3L19.6,0h35l24.1,32L107.3,0z M101.1,90.1h9.6L49.6,9.6H39.5
L101.1,90.1z"/>
</g></symbol>
<symbol id="yahoo_dm" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="yahoo_dm_base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
<symbol id="text-only_yahoo_dm" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="text-only_yahoo_dm_base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
</sodipodi:namedview>
<g>
<path id="yahoo_dm_path1" style="clip-path:url(#yahoo_dm_SVGID_00000177476906562754991750000014625481674889339810_);fill:#FFFFFF;" d="M53.8,29.2
<path id="text-only_yahoo_dm_path1" style="clip-path:url(#text-only_yahoo_dm_SVGID_00000177476906562754991750000014625481674889339810_);fill:#FFFFFF;" d="M53.8,29.2
v33.1h8.1V49.8c0-1.8,1-3.5,3-3.5c1.9,0,2.8,1.7,2.8,3.5v12.5h8.1V47.8c0-5.3-2.9-9-7.9-9c-4,0-6,2.7-6,2.7V29.2H53.8z M140.3,29.2
L131.7,50h9.7l8.6-20.7H140.3z M37.1,38.8c-6.7,0-10.9,6-10.9,12c0,6.7,4.6,12.1,10.8,12.1c4.6,0,6.3-2.8,6.3-2.8v2.2h7.8V39.3
h-7.8v2.1C43.3,41.4,41.4,38.8,37.1,38.8L37.1,38.8z M89.7,38.8c-7.7,0-12.3,5.8-12.3,12.1c0,7.1,5.5,12,12.3,12

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

View File

@@ -1,57 +1,57 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<rect id="amazon_la_SVGID_1_" width="150" height="100"/>
<clipPath id="amazon_la_SVGID_00000165195048988715220940000004028576733995095169_">
<use xlink:href="#amazon_la_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_amazon_la_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_amazon_la_SVGID_00000165195048988715220940000004028576733995095169_">
<use xlink:href="#text-only_amazon_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="apple_la_SVGID_1_" width="150" height="100"/>
<clipPath id="apple_la_SVGID_00000124162922579081768550000000470427650842801289_">
<use xlink:href="#apple_la_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_apple_la_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_apple_la_SVGID_00000124162922579081768550000000470427650842801289_">
<use xlink:href="#text-only_apple_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="facebook_la_SVGID_1_" width="150" height="100"/>
<clipPath id="facebook_la_SVGID_00000145024650331022725360000008517668312300099993_">
<use xlink:href="#facebook_la_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_facebook_la_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_facebook_la_SVGID_00000145024650331022725360000008517668312300099993_">
<use xlink:href="#text-only_facebook_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="google_la_SVGID_1_" width="150" height="100"/>
<clipPath id="google_la_SVGID_00000153666185488983044530000005209633213846120369_">
<use xlink:href="#google_la_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_google_la_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_google_la_SVGID_00000153666185488983044530000005209633213846120369_">
<use xlink:href="#text-only_google_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="linkedin_la_SVGID_1_" width="150" height="100"/>
<clipPath id="linkedin_la_SVGID_00000121992424463380394770000014124234435591412119_">
<use xlink:href="#linkedin_la_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_linkedin_la_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_linkedin_la_SVGID_00000121992424463380394770000014124234435591412119_">
<use xlink:href="#text-only_linkedin_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="microsoft_la_SVGID_1_" width="150" height="100"/>
<clipPath id="microsoft_la_SVGID_00000013180992022712425430000017050052858446154655_">
<use xlink:href="#microsoft_la_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_microsoft_la_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_microsoft_la_SVGID_00000013180992022712425430000017050052858446154655_">
<use xlink:href="#text-only_microsoft_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="outlook_la_SVGID_1_" width="150" height="100"/>
<clipPath id="outlook_la_SVGID_00000088852853217679041080000000707030508703721369_">
<use xlink:href="#outlook_la_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_outlook_la_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_outlook_la_SVGID_00000088852853217679041080000000707030508703721369_">
<use xlink:href="#text-only_outlook_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="paypal_la_SVGID_1_" x="0.2" width="150" height="100"/>
<clipPath id="paypal_la_SVGID_00000145756893474158148390000005795882491925734833_">
<use xlink:href="#paypal_la_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_paypal_la_SVGID_1_" x="0.2" width="150" height="100"/>
<clipPath id="text-only_paypal_la_SVGID_00000145756893474158148390000005795882491925734833_">
<use xlink:href="#text-only_paypal_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="reddit_la_SVGID_1_" width="150" height="100"/>
<clipPath id="reddit_la_SVGID_00000170261202049381256950000010231849415396175780_">
<use xlink:href="#reddit_la_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_reddit_la_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_reddit_la_SVGID_00000170261202049381256950000010231849415396175780_">
<use xlink:href="#text-only_reddit_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="tiktok_la_SVGID_1_" width="150" height="100"/>
<clipPath id="tiktok_la_SVGID_00000011017480343044825530000006239946808708909704_">
<use xlink:href="#tiktok_la_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_tiktok_la_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_tiktok_la_SVGID_00000011017480343044825530000006239946808708909704_">
<use xlink:href="#text-only_tiktok_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="x_la_SVGID_1_" width="45" height="45"/>
<clipPath id="x_la_SVGID_00000033354764030288795930000001479703675480923282_">
<use xlink:href="#x_la_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_x_la_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_x_la_SVGID_00000127745169838837890980000011811730515443747495_">
<use xlink:href="#text-only_x_la_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="yahoo_la_SVGID_1_" width="150" height="100"/>
<clipPath id="yahoo_la_SVGID_00000006690309531539367560000016457833304281468817_">
<use xlink:href="#yahoo_la_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_yahoo_la_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_yahoo_la_SVGID_00000006690309531539367560000016457833304281468817_">
<use xlink:href="#text-only_yahoo_la_SVGID_1_" style="overflow:visible;"/>
</clipPath></defs>
<symbol id="amazon_la" viewBox="0 0 150 100"><g>
<symbol id="text-only_amazon_la" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#amazon_la_SVGID_00000165195048988715220940000004028576733995095169_);">
<g style="clip-path:url(#text-only_amazon_la_SVGID_00000165195048988715220940000004028576733995095169_);">
<g>
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M86.7,41.6v-3.4c0-0.5,0.4-0.9,0.9-0.9l15.3,0c0.5,0,0.9,0.4,0.9,0.9v2.9c0,0.5-0.4,1.1-1.2,2.1l-7.9,11.3
c2.9-0.1,6,0.4,8.7,1.9c0.6,0.3,0.8,0.8,0.8,1.3v3.6c0,0.5-0.5,1.1-1.1,0.8c-4.7-2.5-10.9-2.7-16.1,0c-0.5,0.3-1.1-0.3-1.1-0.8
@@ -81,10 +81,10 @@
</g>
</g>
</g></symbol>
<symbol id="apple_la" viewBox="0 0 150 100"><g>
<symbol id="text-only_apple_la" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#apple_la_SVGID_00000124162922579081768550000000470427650842801289_);">
<g style="clip-path:url(#text-only_apple_la_SVGID_00000124162922579081768550000000470427650842801289_);">
<path d="M10.3,52.8L5.8,66.4H0l14.7-43.2h6.7l14.8,43.2h-6l-4.6-13.6H10.3z M24.4,48.5L20.2,36c-1-2.8-1.6-5.4-2.2-7.9h-0.1
c-0.6,2.6-1.3,5.2-2.2,7.8l-4.2,12.5L24.4,48.5z M40.6,45.5c0-4-0.1-7.2-0.3-10.1h5.1l0.3,5.3h0.1c2.3-3.8,6-6,11-6
c7.5,0,13.2,6.4,13.2,15.8c0,11.2-6.8,16.7-14.1,16.7c-4.1,0-7.7-1.8-9.6-4.9h-0.1v16.9h-5.6V45.5z M46.1,53.8
@@ -97,37 +97,37 @@
c0,1.2-0.1,2-0.2,2.6L128,51.9L128,51.9z M144.6,47.9c0.1-3.6-1.5-9.2-7.8-9.2c-5.7,0-8.2,5.3-8.7,9.2H144.6z"/>
</g>
</g></symbol>
<symbol id="facebook_la" viewBox="0 0 150 100"><g>
<symbol id="text-only_facebook_la" viewBox="0 0 150 100"><g>
<g id="facebook_la__Group_" style="clip-path:url(#facebook_la_SVGID_00000145024650331022725360000008517668312300099993_);">
<path id="facebook_la__Path_" style="fill:#004F9D;" d="M11.7,40.3c-1.8,0-2.3,0.8-2.3,2.5v2.8h4.7l-0.5,4.6H9.5v14H3.8v-14H0v-4.6h3.8v-2.8
<g id="text-only_facebook_la__Group_" style="clip-path:url(#text-only_facebook_la_SVGID_00000145024650331022725360000008517668312300099993_);">
<path id="text-only_facebook_la__Path_" style="fill:#004F9D;" d="M11.7,40.3c-1.8,0-2.3,0.8-2.3,2.5v2.8h4.7l-0.5,4.6H9.5v14H3.8v-14H0v-4.6h3.8v-2.8
c0-4.7,1.9-7.2,7.1-7.2c1.1,0,2.2,0.1,3.3,0.2v4.4"/>
<path id="facebook_la__Compound_Path_" style="fill:#004F9D;" d="M14.6,54.4c0-5.2,2.5-9.1,7.7-9.1c2.8,0,4.5,1.4,5.4,3.3v-2.8H33v18.7h-5.5v-2.8
<path id="text-only_facebook_la__Compound_Path_" style="fill:#004F9D;" d="M14.6,54.4c0-5.2,2.5-9.1,7.7-9.1c2.8,0,4.5,1.4,5.4,3.3v-2.8H33v18.7h-5.5v-2.8
c-0.8,1.8-2.6,3.2-5.4,3.2c-5.2,0-7.7-3.9-7.7-9.1 M20.2,55.7c0,2.8,1,4.6,3.7,4.6c2.3,0,3.5-1.7,3.5-4.4v-1.9
c0-2.7-1.2-4.4-3.5-4.4c-2.6,0-3.7,1.8-3.7,4.6L20.2,55.7L20.2,55.7z"/>
<path id="facebook_la__Path_2" style="fill:#004F9D;" d="M44.8,45.3c2.2,0,4.3,0.5,5.4,1.3l-1.3,4c-1.2-0.6-2.5-0.8-3.8-0.8c-3.1,0-4.4,1.8-4.4,4.8v1.1
<path id="text-only_facebook_la__Path_2" style="fill:#004F9D;" d="M44.8,45.3c2.2,0,4.3,0.5,5.4,1.3l-1.3,4c-1.2-0.6-2.5-0.8-3.8-0.8c-3.1,0-4.4,1.8-4.4,4.8v1.1
c0,3,1.3,4.8,4.4,4.8c1.3,0,2.6-0.3,3.8-0.9l1.3,4c-1.1,0.8-3.2,1.3-5.4,1.3c-6.6,0-9.6-3.6-9.6-9.3v-0.9
C35.1,48.9,38.1,45.3,44.8,45.3"/>
<path id="facebook_la__Compound_Path_2" style="fill:#004F9D;" d="M50.9,55.7v-1.7c0-5.3,3-8.8,9.2-8.8c5.8,0,8.4,3.5,8.4,8.7v3H56.6
<path id="text-only_facebook_la__Compound_Path_2" style="fill:#004F9D;" d="M50.9,55.7v-1.7c0-5.3,3-8.8,9.2-8.8c5.8,0,8.4,3.5,8.4,8.7v3H56.6
c0.1,2.6,1.3,3.7,4.4,3.7c2,0,4.1-0.4,6-1.1l1,3.9c-1.5,0.8-4.5,1.4-7.2,1.4C53.6,64.8,50.9,61.2,50.9,55.7 M56.6,53.3h6.8v-0.5
c0-2-0.8-3.7-3.3-3.7C57.6,49.2,56.6,50.8,56.6,53.3"/>
<path id="facebook_la__Compound_Path_3" style="fill:#004F9D;" d="M89.5,55.6c0,5.2-2.5,9.1-7.7,9.1c-2.8,0-4.8-1.4-5.6-3.2v2.8h-5.3V36.3l5.7-0.5v12.5
<path id="text-only_facebook_la__Compound_Path_3" style="fill:#004F9D;" d="M89.5,55.6c0,5.2-2.5,9.1-7.7,9.1c-2.8,0-4.8-1.4-5.6-3.2v2.8h-5.3V36.3l5.7-0.5v12.5
c0.8-1.7,2.6-3,5.3-3c5.2,0,7.7,3.9,7.7,9.1 M83.8,54.3c0-2.6-1-4.6-3.7-4.6c-2.3,0-3.6,1.7-3.6,4.3v2c0,2.7,1.3,4.3,3.6,4.3
c2.7,0,3.7-2,3.7-4.6V54.3L83.8,54.3z"/>
<path id="facebook_la__Compound_Path_4" style="fill:#004F9D;" d="M91.3,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9
<path id="text-only_facebook_la__Compound_Path_4" style="fill:#004F9D;" d="M91.3,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9
c0,5.4-3.1,9.3-9.3,9.3C94.4,64.8,91.3,60.9,91.3,55.5 M104.3,54.2c0-2.5-1-4.4-3.7-4.4c-2.6,0-3.7,2-3.7,4.4v1.8
c0,2.5,1,4.4,3.7,4.4c2.6,0,3.7-2,3.7-4.4V54.2z"/>
<path id="facebook_la__Compound_Path_5" style="fill:#004F9D;" d="M111.8,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9
<path id="text-only_facebook_la__Compound_Path_5" style="fill:#004F9D;" d="M111.8,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9
c0,5.4-3.1,9.3-9.3,9.3C114.9,64.8,111.8,60.9,111.8,55.5 M124.8,54.2c0-2.5-1-4.4-3.7-4.4c-2.6,0-3.7,2-3.7,4.4v1.8
c0,2.5,1,4.4,3.7,4.4c2.6,0,3.7-2,3.7-4.4V54.2z"/>
<path id="facebook_la__Path_3" style="fill:#004F9D;" d="M138.2,54.6l5.6-8.9h6l-5.8,9.3l6.1,9.5h-6l-5.8-9.1v9.1h-5.6V36.3l5.6-0.5"/>
<path id="text-only_facebook_la__Path_3" style="fill:#004F9D;" d="M138.2,54.6l5.6-8.9h6l-5.8,9.3l6.1,9.5h-6l-5.8-9.1v9.1h-5.6V36.3l5.6-0.5"/>
</g>
</g></symbol>
<symbol id="google_la" viewBox="0 0 150 100"><g>
<symbol id="text-only_google_la" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#google_la_SVGID_00000153666185488983044530000005209633213846120369_);">
<g style="clip-path:url(#text-only_google_la_SVGID_00000153666185488983044530000005209633213846120369_);">
<path style="fill:#3780FF;" d="M18.5,25.5h1.3c4.6,0.1,9.2,2,12.5,5.3c-1.2,1.2-2.4,2.4-3.6,3.6c-1.8-1.7-4.1-2.9-6.5-3.4
c-3.6-0.8-7.4-0.1-10.4,2c-3.3,2.1-5.5,5.8-6,9.6c-0.5,3.8,0.6,7.9,3,10.8c2.4,2.9,6,4.7,9.8,4.8c3.5,0.2,7.2-0.9,9.8-3.3
c2-1.7,2.9-4.4,3.2-6.9c-4.2,0-8.4,0-12.5,0v-5.2h17.6c0.9,5.6-0.4,11.8-4.6,15.8c-2.8,2.8-6.7,4.5-10.7,4.8
@@ -152,37 +152,37 @@
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
</g>
</g></symbol>
<symbol id="linkedin_la" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="linkedin_la_base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
<symbol id="text-only_linkedin_la" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="text-only_linkedin_la_base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<g>
<g id="linkedin_la_layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#linkedin_la_SVGID_00000121992424463380394770000014124234435591412119_);">
<g id="linkedin_la_g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
<path id="linkedin_la_path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M29.4,34.3h23.2V42H37.8v29h-8.4C29.4,71,29.4,34.3,29.4,34.3
<g id="text-only_linkedin_la_layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#text-only_linkedin_la_SVGID_00000121992424463380394770000014124234435591412119_);">
<g id="text-only_linkedin_la_g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
<path id="text-only_linkedin_la_path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M29.4,34.3h23.2V42H37.8v29h-8.4C29.4,71,29.4,34.3,29.4,34.3
z"/>
<path id="linkedin_la_path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M64.3,34.3v25.2h-8.4V34.3H64.3z M60.1,63
<path id="text-only_linkedin_la_path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M64.3,34.3v25.2h-8.4V34.3H64.3z M60.1,63
c2.9,0,4.7,1.9,4.7,4.4c-0.1,2.5-1.8,4.4-4.7,4.4c-2.9,0-4.7-1.9-4.7-4.4C55.4,65,57.2,63,60.1,63L60.1,63L60.1,63z"/>
<path id="linkedin_la_path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M68.2,34.3h8.4v14.1c0,0.8,0.1,1.5,0.3,2
<path id="text-only_linkedin_la_path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M68.2,34.3h8.4v14.1c0,0.8,0.1,1.5,0.3,2
c0.6,1.5,2,3.1,4.3,3.1c3,0,4.2-2.3,4.2-5.7V34.3h8.4v14.5c0,7.8-4.1,11.4-9.7,11.4c-4.5,0-6.5-2.5-7.6-4.3h0.1v3.7h-8.4
C68.3,57.2,68.2,34.3,68.2,34.3L68.2,34.3z"/>
<path id="linkedin_la_path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M105.6,71h-8.4V34.3h8.4v8.2l2.1,2.6l6.6-10.8h10.3l-11,15.7
<path id="text-only_linkedin_la_path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M105.6,71h-8.4V34.3h8.4v8.2l2.1,2.6l6.6-10.8h10.3l-11,15.7
l9.7,10.7h-10.1c0,0-6.9-9.5-7.5-10.7L105.6,71L105.6,71z"/>
<path id="linkedin_la_path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M147,44.9c0.1,0.6,0.3,1.9,0.3,3.3c0,6.5-3.3,13.1-12,13.1
<path id="text-only_linkedin_la_path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M147,44.9c0.1,0.6,0.3,1.9,0.3,3.3c0,6.5-3.3,13.1-12,13.1
c-9.3,0-13.6-7.4-13.6-14.1c0-8.3,5.2-13.4,14.4-13.4c3.6,0,7,0.5,9.8,1.7l-1.1,5.5c-2.3-0.8-4.6-1.1-7.4-1.1
c-3.9,0-7.3,1.6-7.6,5L147,44.9L147,44.9z M129.6,50.5c0.2,2.2,1.7,5.3,5.2,5.3c3.8,0,4.7-3.4,4.7-5.3H129.6z"/>
<path id="linkedin_la_path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M168,71V58.3h-0.1c-1.2,1.8-3.8,3-7.1,3
<path id="text-only_linkedin_la_path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M168,71V58.3h-0.1c-1.2,1.8-3.8,3-7.1,3
c-6.5,0-12.1-5.2-12.1-14c0-8.2,5.1-13.5,11.5-13.5c3.5,0,6.8,1.5,8.4,4.4h0.2l0.3-3.8h7.4c-0.1,1.8-0.2,4.8-0.2,7.9V71H168
L168,71z M168,46c0-0.6-0.1-1.3-0.2-1.8c-0.5-2.3-2.5-3.9-4.9-3.9c-3.5,0-5.7,2.8-5.7,7.2c0,4.1,1.9,7.5,5.8,7.5
c2.6,0,4.4-1.8,4.9-4c0.1-0.5,0.1-1,0.1-1.5L168,46L168,46z"/>
</g>
</g>
</g></symbol>
<symbol id="microsoft_la" viewBox="0 0 150 100"><g>
<symbol id="text-only_microsoft_la" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#microsoft_la_SVGID_00000013180992022712425430000017050052858446154655_);">
<g style="clip-path:url(#text-only_microsoft_la_SVGID_00000013180992022712425430000017050052858446154655_);">
<path style="fill:#737373;" d="M28.7,37.5V64h-4.6V43.2H24L15.8,64h-3.1L4.3,43.2H4.2V64H0V37.5h6.6l7.6,19.7h0.1l8.1-19.7
C22.4,37.5,28.7,37.5,28.7,37.5z M32.5,39.5c0-0.7,0.2-1.4,0.8-1.8c0.6-0.5,1.2-0.7,1.9-0.7c0.8,0,1.5,0.2,2,0.7
c0.5,0.5,0.8,1.1,0.8,1.8c0,0.7-0.2,1.4-0.8,1.8c-0.6,0.5-1.2,0.7-2,0.7c-0.8,0-1.4-0.2-1.9-0.7C32.8,40.8,32.5,40.2,32.5,39.5z
@@ -210,11 +210,11 @@
c-0.9-1-1.4-2.5-1.4-4.6L141,48.6L141,48.6z"/>
</g>
</g></symbol>
<symbol id="outlook_la" viewBox="0 0 150 100"><g>
<symbol id="text-only_outlook_la" viewBox="0 0 150 100"><g>
<g>
<g style="clip-path:url(#outlook_la_SVGID_00000088852853217679041080000000707030508703721369_);">
<g style="clip-path:url(#text-only_outlook_la_SVGID_00000088852853217679041080000000707030508703721369_);">
<g>
<path d="M8.6,59.7c-2.6,0-4.7-0.8-6.3-2.5C0.8,55.5,0,53.3,0,50.6c0-2.9,0.8-5.2,2.4-7C4,41.9,6.2,41,8.9,41
c2.5,0,4.6,0.8,6.1,2.5c1.6,1.7,2.3,3.9,2.3,6.6c0,3-0.8,5.3-2.4,7C13.4,58.8,11.3,59.7,8.6,59.7z M8.7,43.7c-1.7,0-3,0.6-4,1.9
@@ -250,10 +250,10 @@
</g>
</g>
</g></symbol>
<symbol id="paypal_la" viewBox="0 0 150.2 100"><g>
<symbol id="text-only_paypal_la" viewBox="0 0 150.2 100"><g>
<g style="clip-path:url(#paypal_la_SVGID_00000145756893474158148390000005795882491925734833_);">
<g style="clip-path:url(#text-only_paypal_la_SVGID_00000145756893474158148390000005795882491925734833_);">
<g>
<path style="fill:#253B80;" d="M18.1,34.1H6.4c-0.8,0-1.5,0.6-1.6,1.4L0.1,65.4c-0.1,0.6,0.4,1.1,1,1.1h5.6c0.8,0,1.5-0.6,1.6-1.4l1.3-8.1
c0.1-0.8,0.8-1.4,1.6-1.4h3.7c7.7,0,12.1-3.7,13.3-11.1c0.5-3.2,0-5.8-1.5-7.5C25,35.1,22,34.1,18.1,34.1L18.1,34.1z M19.5,45
@@ -278,10 +278,10 @@
</g>
</g>
</g></symbol>
<symbol id="reddit_la" viewBox="0 0 150 100"><g>
<symbol id="text-only_reddit_la" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#reddit_la_SVGID_00000170261202049381256950000010231849415396175780_);">
<g style="clip-path:url(#text-only_reddit_la_SVGID_00000170261202049381256950000010231849415396175780_);">
<circle style="fill:#FF4500;" cx="124.9" cy="35.3" r="5.6"/>
<path d="M45.6,59.1c2.2,0.2,4-1.5,4.2-3.7c0-0.1,0-0.3,0-0.4c0-0.8-0.1-1.5-0.3-2.3c-1.3-7.1-7.4-12.3-14.6-12.6
c-8.2,0-15,7.5-15,16.8s6.7,16.8,15,16.8c4.4,0.2,8.7-1.6,11.6-4.9c1.2-1.3,1.1-3.4-0.2-4.6c-0.1-0.1-0.2-0.2-0.3-0.2
@@ -303,10 +303,10 @@
C144.4,70,144.4,69.9,144.4,69.9z"/>
</g>
</g></symbol>
<symbol id="tiktok_la" viewBox="0 0 150 100"><g>
<symbol id="text-only_tiktok_la" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#tiktok_la_SVGID_00000011017480343044825530000006239946808708909704_);">
<g style="clip-path:url(#text-only_tiktok_la_SVGID_00000011017480343044825530000006239946808708909704_);">
<path style="fill:#FF004F;" d="M107,66.8c7.6,0,13.8-6.1,13.8-13.7c0-7.5-6.2-13.7-13.8-13.7h-2.1c7.6,0,13.8,6.1,13.8,13.7
s-6.2,13.7-13.8,13.7H107z"/>
<path style="fill:#00F2EA;" d="M104.7,39.4h-2.1c-7.6,0-13.8,6.1-13.8,13.7s6.2,13.7,13.8,13.7h2.1c-7.6,0-13.8-6.1-13.8-13.7
@@ -319,21 +319,19 @@
z M98.1,53.1c0-3.7,3-6.6,6.7-6.6c3.7,0,6.7,3,6.7,6.6c0,3.7-3,6.6-6.7,6.6C101.1,59.7,98.1,56.8,98.1,53.1z"/>
</g>
</g></symbol>
<symbol id="x_la" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="x_la_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
<inkscape:page bleed="0" height="799.33301" id="x_la_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
</sodipodi:namedview>
<g>
<symbol id="text-only_x_la" viewBox="0 0 150 100"><g>
<path id="x_la_path1-93" style="clip-path:url(#x_la_SVGID_00000033354764030288795930000001479703675480923282_);" d="M35.6,2.2h6.9
L27.3,19.4L45,42.8H31.1L20.2,28.6L7.8,42.8H0.9l16-18.4L0,2.2h14.2l9.8,13L35.6,2.2z M33.1,38.8H37L12.2,6.1H8.1L33.1,38.8z"/>
<path id="text-only_x_la_path1-93" style="clip-path:url(#text-only_x_la_SVGID_00000127745169838837890980000011811730515443747495_);fill:#1D1D1B;" d="M107.3,0
h17L86.8,42.4l43.6,57.6H96.2L69.3,65l-30.5,35h-17l39.4-45.3L19.6,0h35l24.1,32L107.3,0z M101.1,90.1h9.6L49.6,9.6H39.5
L101.1,90.1z"/>
</g></symbol>
<symbol id="yahoo_la" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="yahoo_la_base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
<symbol id="text-only_yahoo_la" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="text-only_yahoo_la_base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
</sodipodi:namedview>
<g>
<path id="yahoo_la_path1" style="clip-path:url(#yahoo_la_SVGID_00000006690309531539367560000016457833304281468817_);fill:#7D2EFF;" d="M53.8,29.2
<path id="text-only_yahoo_la_path1" style="clip-path:url(#text-only_yahoo_la_SVGID_00000006690309531539367560000016457833304281468817_);fill:#7D2EFF;" d="M53.8,29.2
v33.1h8.1V49.8c0-1.8,1-3.5,3-3.5c1.9,0,2.8,1.7,2.8,3.5v12.5h8.1V47.8c0-5.3-2.9-9-7.9-9c-4,0-6,2.7-6,2.7V29.2H53.8z M140.3,29.2
L131.7,50h9.7l8.6-20.7H140.3z M37.1,38.8c-6.7,0-10.9,6-10.9,12c0,6.7,4.6,12.1,10.8,12.1c4.6,0,6.3-2.8,6.3-2.8v2.2h7.8V39.3
h-7.8v2.1C43.3,41.4,41.4,38.8,37.1,38.8L37.1,38.8z M89.7,38.8c-7.7,0-12.3,5.8-12.3,12.1c0,7.1,5.5,12,12.3,12

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

View File

@@ -1,57 +1,57 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<rect id="amazon_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="amazon_lm_SVGID_00000165195048988715220940000004028576733995095169_">
<use xlink:href="#amazon_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_amazon_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_amazon_lm_SVGID_00000165195048988715220940000004028576733995095169_">
<use xlink:href="#text-only_amazon_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="apple_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="apple_lm_SVGID_00000059282519639729104130000006286457641063824537_">
<use xlink:href="#apple_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_apple_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_apple_lm_SVGID_00000059282519639729104130000006286457641063824537_">
<use xlink:href="#text-only_apple_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="facebook_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="facebook_lm_SVGID_00000060748757594314917570000011668390786519884943_">
<use xlink:href="#facebook_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_facebook_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_facebook_lm_SVGID_00000060748757594314917570000011668390786519884943_">
<use xlink:href="#text-only_facebook_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="google_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="google_lm_SVGID_00000087377062677790808880000014354829741297969578_">
<use xlink:href="#google_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_google_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_google_lm_SVGID_00000087377062677790808880000014354829741297969578_">
<use xlink:href="#text-only_google_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="linkedin_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="linkedin_lm_SVGID_00000140016176575275911740000010454108651681686149_">
<use xlink:href="#linkedin_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_linkedin_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_linkedin_lm_SVGID_00000140016176575275911740000010454108651681686149_">
<use xlink:href="#text-only_linkedin_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="microsoft_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="microsoft_lm_SVGID_00000116224980170766476630000016015771759897314467_">
<use xlink:href="#microsoft_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_microsoft_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_microsoft_lm_SVGID_00000116224980170766476630000016015771759897314467_">
<use xlink:href="#text-only_microsoft_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="outlook_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="outlook_lm_SVGID_00000046315375174050204870000009485390275366761384_">
<use xlink:href="#outlook_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_outlook_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_outlook_lm_SVGID_00000046315375174050204870000009485390275366761384_">
<use xlink:href="#text-only_outlook_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="paypal_lm_SVGID_1_" x="0.2" width="150" height="100"/>
<clipPath id="paypal_lm_SVGID_00000116233172859777081950000000804139164183397310_">
<use xlink:href="#paypal_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_paypal_lm_SVGID_1_" x="0.2" width="150" height="100"/>
<clipPath id="text-only_paypal_lm_SVGID_00000116233172859777081950000000804139164183397310_">
<use xlink:href="#text-only_paypal_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="reddit_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="reddit_lm_SVGID_00000011027464625814244990000002392846815609377176_">
<use xlink:href="#reddit_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_reddit_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_reddit_lm_SVGID_00000011027464625814244990000002392846815609377176_">
<use xlink:href="#text-only_reddit_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="tiktok_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="tiktok_lm_SVGID_00000029003995596520580310000004747285448409720754_">
<use xlink:href="#tiktok_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_tiktok_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_tiktok_lm_SVGID_00000029003995596520580310000004747285448409720754_">
<use xlink:href="#text-only_tiktok_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="x_lm_SVGID_1_" width="45" height="45"/>
<clipPath id="x_lm_SVGID_00000177462708669193929580000017692624354562733996_">
<use xlink:href="#x_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_x_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_x_lm_SVGID_00000026846602492080684470000014714696395560492186_">
<use xlink:href="#text-only_x_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath>
<rect id="yahoo_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="yahoo_lm_SVGID_00000031181146065471032980000007153336671717816469_">
<use xlink:href="#yahoo_lm_SVGID_1_" style="overflow:visible;"/>
<rect id="text-only_yahoo_lm_SVGID_1_" width="150" height="100"/>
<clipPath id="text-only_yahoo_lm_SVGID_00000031181146065471032980000007153336671717816469_">
<use xlink:href="#text-only_yahoo_lm_SVGID_1_" style="overflow:visible;"/>
</clipPath></defs>
<symbol id="amazon_lm" viewBox="0 0 150 100"><g>
<symbol id="text-only_amazon_lm" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#amazon_lm_SVGID_00000165195048988715220940000004028576733995095169_);">
<g style="clip-path:url(#text-only_amazon_lm_SVGID_00000165195048988715220940000004028576733995095169_);">
<g>
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M86.7,41.6v-3.4c0-0.5,0.4-0.9,0.9-0.9l15.3,0c0.5,0,0.9,0.4,0.9,0.9v2.9c0,0.5-0.4,1.1-1.2,2.1l-7.9,11.3
c2.9-0.1,6,0.4,8.7,1.9c0.6,0.3,0.8,0.8,0.8,1.3v3.6c0,0.5-0.5,1.1-1.1,0.8c-4.7-2.5-10.9-2.7-16.1,0c-0.5,0.3-1.1-0.3-1.1-0.8
@@ -81,10 +81,10 @@
</g>
</g>
</g></symbol>
<symbol id="apple_lm" viewBox="0 0 150 100"><g>
<symbol id="text-only_apple_lm" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#apple_lm_SVGID_00000059282519639729104130000006286457641063824537_);">
<g style="clip-path:url(#text-only_apple_lm_SVGID_00000059282519639729104130000006286457641063824537_);">
<path d="M10.3,52.8L5.8,66.4H0l14.7-43.2h6.7l14.8,43.2h-6l-4.6-13.6H10.3z M24.4,48.5L20.2,36c-1-2.8-1.6-5.4-2.2-7.9h-0.1
c-0.6,2.6-1.3,5.2-2.2,7.8l-4.2,12.5L24.4,48.5z M40.6,45.5c0-4-0.1-7.2-0.3-10.1h5.1l0.3,5.3h0.1c2.3-3.8,6-6,11-6
c7.5,0,13.2,6.4,13.2,15.8c0,11.2-6.8,16.7-14.1,16.7c-4.1,0-7.7-1.8-9.6-4.9h-0.1v16.9h-5.6V45.5z M46.1,53.8
@@ -97,37 +97,37 @@
c0,1.2-0.1,2-0.2,2.6L128,51.9L128,51.9z M144.6,47.9c0.1-3.6-1.5-9.2-7.8-9.2c-5.7,0-8.2,5.3-8.7,9.2H144.6z"/>
</g>
</g></symbol>
<symbol id="facebook_lm" viewBox="0 0 150 100"><g>
<symbol id="text-only_facebook_lm" viewBox="0 0 150 100"><g>
<g id="facebook_lm__Group_" style="clip-path:url(#facebook_lm_SVGID_00000060748757594314917570000011668390786519884943_);">
<path id="facebook_lm__Path_" d="M11.7,40.3c-1.8,0-2.3,0.8-2.3,2.5v2.8h4.7l-0.5,4.6H9.5v14H3.8v-14H0v-4.6h3.8v-2.8c0-4.7,1.9-7.2,7.1-7.2
<g id="text-only_facebook_lm__Group_" style="clip-path:url(#text-only_facebook_lm_SVGID_00000060748757594314917570000011668390786519884943_);">
<path id="text-only_facebook_lm__Path_" d="M11.7,40.3c-1.8,0-2.3,0.8-2.3,2.5v2.8h4.7l-0.5,4.6H9.5v14H3.8v-14H0v-4.6h3.8v-2.8c0-4.7,1.9-7.2,7.1-7.2
c1.1,0,2.2,0.1,3.3,0.2v4.4"/>
<path id="facebook_lm__Compound_Path_" d="M14.6,54.4c0-5.2,2.5-9.1,7.7-9.1c2.8,0,4.5,1.4,5.4,3.3v-2.8H33v18.7h-5.5v-2.8
<path id="text-only_facebook_lm__Compound_Path_" d="M14.6,54.4c0-5.2,2.5-9.1,7.7-9.1c2.8,0,4.5,1.4,5.4,3.3v-2.8H33v18.7h-5.5v-2.8
c-0.8,1.8-2.6,3.2-5.4,3.2c-5.2,0-7.7-3.9-7.7-9.1 M20.2,55.7c0,2.8,1,4.6,3.7,4.6c2.3,0,3.5-1.7,3.5-4.4v-1.9
c0-2.7-1.2-4.4-3.5-4.4c-2.6,0-3.7,1.8-3.7,4.6L20.2,55.7L20.2,55.7z"/>
<path id="facebook_lm__Path_2" d="M44.8,45.3c2.2,0,4.3,0.5,5.4,1.3l-1.3,4c-1.2-0.6-2.5-0.8-3.8-0.8c-3.1,0-4.4,1.8-4.4,4.8v1.1
<path id="text-only_facebook_lm__Path_2" d="M44.8,45.3c2.2,0,4.3,0.5,5.4,1.3l-1.3,4c-1.2-0.6-2.5-0.8-3.8-0.8c-3.1,0-4.4,1.8-4.4,4.8v1.1
c0,3,1.3,4.8,4.4,4.8c1.3,0,2.6-0.3,3.8-0.9l1.3,4c-1.1,0.8-3.2,1.3-5.4,1.3c-6.6,0-9.6-3.6-9.6-9.3v-0.9
C35.1,48.9,38.1,45.3,44.8,45.3"/>
<path id="facebook_lm__Compound_Path_2" d="M50.9,55.7v-1.7c0-5.3,3-8.8,9.2-8.8c5.8,0,8.4,3.5,8.4,8.7v3H56.6c0.1,2.6,1.3,3.7,4.4,3.7
<path id="text-only_facebook_lm__Compound_Path_2" d="M50.9,55.7v-1.7c0-5.3,3-8.8,9.2-8.8c5.8,0,8.4,3.5,8.4,8.7v3H56.6c0.1,2.6,1.3,3.7,4.4,3.7
c2,0,4.1-0.4,6-1.1l1,3.9c-1.5,0.8-4.5,1.4-7.2,1.4C53.6,64.8,50.9,61.2,50.9,55.7 M56.6,53.3h6.8v-0.5c0-2-0.8-3.7-3.3-3.7
C57.6,49.2,56.6,50.8,56.6,53.3"/>
<path id="facebook_lm__Compound_Path_3" d="M89.5,55.6c0,5.2-2.5,9.1-7.7,9.1c-2.8,0-4.8-1.4-5.6-3.2v2.8h-5.3V36.3l5.7-0.5v12.5
<path id="text-only_facebook_lm__Compound_Path_3" d="M89.5,55.6c0,5.2-2.5,9.1-7.7,9.1c-2.8,0-4.8-1.4-5.6-3.2v2.8h-5.3V36.3l5.7-0.5v12.5
c0.8-1.7,2.6-3,5.3-3c5.2,0,7.7,3.9,7.7,9.1 M83.8,54.3c0-2.6-1-4.6-3.7-4.6c-2.3,0-3.6,1.7-3.6,4.3v2c0,2.7,1.3,4.3,3.6,4.3
c2.7,0,3.7-2,3.7-4.6V54.3L83.8,54.3z"/>
<path id="facebook_lm__Compound_Path_4" d="M91.3,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9c0,5.4-3.1,9.3-9.3,9.3
<path id="text-only_facebook_lm__Compound_Path_4" d="M91.3,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9c0,5.4-3.1,9.3-9.3,9.3
C94.4,64.8,91.3,60.9,91.3,55.5 M104.3,54.2c0-2.5-1-4.4-3.7-4.4c-2.6,0-3.7,2-3.7,4.4v1.8c0,2.5,1,4.4,3.7,4.4
c2.6,0,3.7-2,3.7-4.4V54.2z"/>
<path id="facebook_lm__Compound_Path_5" d="M111.8,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9c0,5.4-3.1,9.3-9.3,9.3
<path id="text-only_facebook_lm__Compound_Path_5" d="M111.8,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9c0,5.4-3.1,9.3-9.3,9.3
C114.9,64.8,111.8,60.9,111.8,55.5 M124.8,54.2c0-2.5-1-4.4-3.7-4.4c-2.6,0-3.7,2-3.7,4.4v1.8c0,2.5,1,4.4,3.7,4.4
c2.6,0,3.7-2,3.7-4.4V54.2z"/>
<path id="facebook_lm__Path_3" d="M138.2,54.6l5.6-8.9h6l-5.8,9.3l6.1,9.5h-6l-5.8-9.1v9.1h-5.6V36.3l5.6-0.5"/>
<path id="text-only_facebook_lm__Path_3" d="M138.2,54.6l5.6-8.9h6l-5.8,9.3l6.1,9.5h-6l-5.8-9.1v9.1h-5.6V36.3l5.6-0.5"/>
</g>
</g></symbol>
<symbol id="google_lm" viewBox="0 0 150 100"><g>
<symbol id="text-only_google_lm" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#google_lm_SVGID_00000087377062677790808880000014354829741297969578_);">
<g style="clip-path:url(#text-only_google_lm_SVGID_00000087377062677790808880000014354829741297969578_);">
<path d="M18.5,25.5h1.3c4.6,0.1,9.2,2,12.5,5.3c-1.2,1.2-2.4,2.4-3.6,3.6c-1.8-1.7-4.1-2.9-6.5-3.4c-3.6-0.8-7.4-0.1-10.4,2
c-3.3,2.1-5.5,5.8-6,9.6c-0.5,3.8,0.6,7.9,3,10.8c2.4,2.9,6,4.7,9.8,4.8c3.5,0.2,7.2-0.9,9.8-3.3c2-1.7,2.9-4.4,3.2-6.9
c-4.2,0-8.4,0-12.5,0v-5.2h17.6c0.9,5.6-0.4,11.8-4.6,15.8c-2.8,2.8-6.7,4.5-10.7,4.8c-3.9,0.4-7.8-0.4-11.2-2.2
@@ -151,37 +151,37 @@
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
</g>
</g></symbol>
<symbol id="linkedin_lm" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="linkedin_lm_base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
<symbol id="text-only_linkedin_lm" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="text-only_linkedin_lm_base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<g>
<g id="linkedin_lm_layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#linkedin_lm_SVGID_00000140016176575275911740000010454108651681686149_);">
<g id="linkedin_lm_g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
<path id="linkedin_lm_path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M29.4,34.3h23.2V42H37.8v29h-8.4C29.4,71,29.4,34.3,29.4,34.3
<g id="text-only_linkedin_lm_layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#text-only_linkedin_lm_SVGID_00000140016176575275911740000010454108651681686149_);">
<g id="text-only_linkedin_lm_g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
<path id="text-only_linkedin_lm_path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M29.4,34.3h23.2V42H37.8v29h-8.4C29.4,71,29.4,34.3,29.4,34.3
z"/>
<path id="linkedin_lm_path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M64.3,34.3v25.2h-8.4V34.3H64.3z M60.1,63
<path id="text-only_linkedin_lm_path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M64.3,34.3v25.2h-8.4V34.3H64.3z M60.1,63
c2.9,0,4.7,1.9,4.7,4.4c-0.1,2.5-1.8,4.4-4.7,4.4c-2.9,0-4.7-1.9-4.7-4.4C55.4,65,57.2,63,60.1,63L60.1,63L60.1,63z"/>
<path id="linkedin_lm_path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M68.2,34.3h8.4v14.1c0,0.8,0.1,1.5,0.3,2
<path id="text-only_linkedin_lm_path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M68.2,34.3h8.4v14.1c0,0.8,0.1,1.5,0.3,2
c0.6,1.5,2,3.1,4.3,3.1c3,0,4.2-2.3,4.2-5.7V34.3h8.4v14.5c0,7.8-4.1,11.4-9.7,11.4c-4.5,0-6.5-2.5-7.6-4.3h0.1v3.7h-8.4
C68.3,57.2,68.2,34.3,68.2,34.3L68.2,34.3z"/>
<path id="linkedin_lm_path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M105.6,71h-8.4V34.3h8.4v8.2l2.1,2.6l6.6-10.8h10.3l-11,15.7
<path id="text-only_linkedin_lm_path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M105.6,71h-8.4V34.3h8.4v8.2l2.1,2.6l6.6-10.8h10.3l-11,15.7
l9.7,10.7h-10.1c0,0-6.9-9.5-7.5-10.7L105.6,71L105.6,71z"/>
<path id="linkedin_lm_path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M147,44.9c0.1,0.6,0.3,1.9,0.3,3.3c0,6.5-3.3,13.1-12,13.1
<path id="text-only_linkedin_lm_path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M147,44.9c0.1,0.6,0.3,1.9,0.3,3.3c0,6.5-3.3,13.1-12,13.1
c-9.3,0-13.6-7.4-13.6-14.1c0-8.3,5.2-13.4,14.4-13.4c3.6,0,7,0.5,9.8,1.7l-1.1,5.5c-2.3-0.8-4.6-1.1-7.4-1.1
c-3.9,0-7.3,1.6-7.6,5L147,44.9L147,44.9z M129.6,50.5c0.2,2.2,1.7,5.3,5.2,5.3c3.8,0,4.7-3.4,4.7-5.3H129.6z"/>
<path id="linkedin_lm_path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M168,71V58.3h-0.1c-1.2,1.8-3.8,3-7.1,3
<path id="text-only_linkedin_lm_path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M168,71V58.3h-0.1c-1.2,1.8-3.8,3-7.1,3
c-6.5,0-12.1-5.2-12.1-14c0-8.2,5.1-13.5,11.5-13.5c3.5,0,6.8,1.5,8.4,4.4h0.2l0.3-3.8h7.4c-0.1,1.8-0.2,4.8-0.2,7.9V71H168
L168,71z M168,46c0-0.6-0.1-1.3-0.2-1.8c-0.5-2.3-2.5-3.9-4.9-3.9c-3.5,0-5.7,2.8-5.7,7.2c0,4.1,1.9,7.5,5.8,7.5
c2.6,0,4.4-1.8,4.9-4c0.1-0.5,0.1-1,0.1-1.5L168,46L168,46z"/>
</g>
</g>
</g></symbol>
<symbol id="microsoft_lm" viewBox="0 0 150 100"><g>
<symbol id="text-only_microsoft_lm" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#microsoft_lm_SVGID_00000116224980170766476630000016015771759897314467_);">
<g style="clip-path:url(#text-only_microsoft_lm_SVGID_00000116224980170766476630000016015771759897314467_);">
<path d="M28.7,37.5V64h-4.6V43.2H24L15.8,64h-3.1L4.3,43.2H4.2V64H0V37.5h6.6l7.6,19.7h0.1l8.1-19.7
C22.4,37.5,28.7,37.5,28.7,37.5z M32.5,39.5c0-0.7,0.2-1.4,0.8-1.8c0.6-0.5,1.2-0.7,1.9-0.7c0.8,0,1.5,0.2,2,0.7
c0.5,0.5,0.8,1.1,0.8,1.8c0,0.7-0.2,1.4-0.8,1.8c-0.6,0.5-1.2,0.7-2,0.7c-0.8,0-1.4-0.2-1.9-0.7C32.8,40.8,32.5,40.2,32.5,39.5z
@@ -209,10 +209,10 @@
c-0.9-1-1.4-2.5-1.4-4.6L141,48.6L141,48.6z"/>
</g>
</g></symbol>
<symbol id="outlook_lm" viewBox="0 0 150 100"><g>
<symbol id="text-only_outlook_lm" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#outlook_lm_SVGID_00000046315375174050204870000009485390275366761384_);">
<g style="clip-path:url(#text-only_outlook_lm_SVGID_00000046315375174050204870000009485390275366761384_);">
<g>
<path d="M8.6,59.7c-2.6,0-4.7-0.8-6.3-2.5C0.8,55.5,0,53.3,0,50.6c0-2.9,0.8-5.2,2.4-7C4,41.9,6.2,41,8.9,41
c2.5,0,4.6,0.8,6.1,2.5c1.6,1.7,2.3,3.9,2.3,6.6c0,3-0.8,5.3-2.4,7C13.4,58.8,11.3,59.7,8.6,59.7z M8.7,43.7c-1.7,0-3,0.6-4,1.9
@@ -247,11 +247,11 @@
</g>
</g>
</g></symbol>
<symbol id="paypal_lm" viewBox="0 0 150.2 100"><g>
<symbol id="text-only_paypal_lm" viewBox="0 0 150.2 100"><g>
<g>
<g style="clip-path:url(#paypal_lm_SVGID_00000116233172859777081950000000804139164183397310_);">
<g style="clip-path:url(#text-only_paypal_lm_SVGID_00000116233172859777081950000000804139164183397310_);">
<g>
<path d="M18.1,34.1H6.4c-0.8,0-1.5,0.6-1.6,1.4L0.1,65.4c-0.1,0.6,0.4,1.1,1,1.1h5.6c0.8,0,1.5-0.6,1.6-1.4L9.6,57
c0.1-0.8,0.8-1.4,1.6-1.4h3.7c7.7,0,12.1-3.7,13.3-11.1c0.5-3.2,0-5.8-1.5-7.5C25,35.1,22,34.1,18.1,34.1L18.1,34.1z M19.5,45
@@ -277,10 +277,10 @@
</g>
</g>
</g></symbol>
<symbol id="reddit_lm" viewBox="0 0 150 100"><g>
<symbol id="text-only_reddit_lm" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#reddit_lm_SVGID_00000011027464625814244990000002392846815609377176_);">
<g style="clip-path:url(#text-only_reddit_lm_SVGID_00000011027464625814244990000002392846815609377176_);">
<circle cx="124.9" cy="35.3" r="5.6"/>
<path d="M45.6,59.1c2.2,0.2,4-1.5,4.2-3.7c0-0.1,0-0.3,0-0.4c0-0.8-0.1-1.5-0.3-2.3c-1.3-7.1-7.4-12.3-14.6-12.6
c-8.2,0-15,7.5-15,16.8s6.7,16.8,15,16.8c4.4,0.2,8.7-1.6,11.6-4.9c1.2-1.3,1.1-3.4-0.2-4.6c-0.1-0.1-0.2-0.2-0.3-0.2
@@ -302,10 +302,10 @@
C144.4,70,144.4,69.9,144.4,69.9z"/>
</g>
</g></symbol>
<symbol id="tiktok_lm" viewBox="0 0 150 100"><g>
<symbol id="text-only_tiktok_lm" viewBox="0 0 150 100"><g>
<g style="clip-path:url(#tiktok_lm_SVGID_00000029003995596520580310000004747285448409720754_);">
<g style="clip-path:url(#text-only_tiktok_lm_SVGID_00000029003995596520580310000004747285448409720754_);">
<path d="M0,33.2v6.9h8.1v26.4h8.1V40.4h6.6l2.3-7.1L0,33.2L0,33.2z M66.4,33.2v6.9h8.1v26.4h8.1V40.4h6.6l2.3-7.1L66.4,33.2
L66.4,33.2z M26.6,37.2c0-2.2,1.8-3.9,4-3.9c2.2,0,4,1.8,4,3.9c0,2.2-1.8,3.9-4,3.9C28.4,41.1,26.6,39.4,26.6,37.2z M26.6,43.9
h7.9v22.6h-7.9V43.9z M37.9,33.2v33.3h7.9V58l2.5-2.2l7.7,11h8.5L53.4,50.7l10-9.7h-9.6l-7.9,7.9V33.2H37.9z M123.4,33.2v33.3h7.9
@@ -314,21 +314,19 @@
z M98.1,53.1c0-3.7,3-6.6,6.7-6.6c3.7,0,6.7,3,6.7,6.6c0,3.7-3,6.6-6.7,6.6C101.1,59.7,98.1,56.8,98.1,53.1z"/>
</g>
</g></symbol>
<symbol id="x_lm" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="x_lm_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
<inkscape:page bleed="0" height="799.33301" id="x_lm_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
</sodipodi:namedview>
<g>
<symbol id="text-only_x_lm" viewBox="0 0 150 100"><g>
<path id="x_lm_path1-93" style="clip-path:url(#x_lm_SVGID_00000177462708669193929580000017692624354562733996_);" d="M35.6,2.2h6.9
L27.3,19.4L45,42.8H31.1L20.2,28.6L7.8,42.8H0.9l16-18.4L0,2.2h14.2l9.8,13L35.6,2.2z M33.1,38.8H37L12.2,6.1H8.1L33.1,38.8z"/>
<path id="text-only_x_lm_path1-93" style="clip-path:url(#text-only_x_lm_SVGID_00000026846602492080684470000014714696395560492186_);fill:#1D1D1B;" d="M107.3,0
h17L86.8,42.4l43.6,57.6H96.2L69.3,65l-30.5,35h-17l39.4-45.3L19.6,0h35l24.1,32L107.3,0z M101.1,90.1h9.6L49.6,9.6H39.5
L101.1,90.1z"/>
</g></symbol>
<symbol id="yahoo_lm" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="yahoo_lm_base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
<symbol id="text-only_yahoo_lm" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="text-only_yahoo_lm_base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
</sodipodi:namedview>
<g>
<path id="yahoo_lm_path1" style="clip-path:url(#yahoo_lm_SVGID_00000031181146065471032980000007153336671717816469_);" d="M53.8,29.2v33.1h8.1V49.8
<path id="text-only_yahoo_lm_path1" style="clip-path:url(#text-only_yahoo_lm_SVGID_00000031181146065471032980000007153336671717816469_);" d="M53.8,29.2v33.1h8.1V49.8
c0-1.8,1-3.5,3-3.5c1.9,0,2.8,1.7,2.8,3.5v12.5h8.1V47.8c0-5.3-2.9-9-7.9-9c-4,0-6,2.7-6,2.7V29.2H53.8z M140.3,29.2L131.7,50h9.7
l8.6-20.7H140.3z M37.1,38.8c-6.7,0-10.9,6-10.9,12c0,6.7,4.6,12.1,10.8,12.1c4.6,0,6.3-2.8,6.3-2.8v2.2h7.8V39.3h-7.8v2.1
C43.3,41.4,41.4,38.8,37.1,38.8L37.1,38.8z M89.7,38.8c-7.7,0-12.3,5.8-12.3,12.1c0,7.1,5.5,12,12.3,12c6.5,0,12.3-4.6,12.3-11.9

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 29 KiB

View File

@@ -367,4 +367,25 @@ class MprIcons
{
return array_keys(self::$map);
}
/**
* Register icon font CSS assets
* Convenience method that delegates to MprIconsAssets
* Call from hookHeader or setMedia
*
* @param \Module $module The module instance
* @return bool Whether assets were registered
*/
public static function registerAssets(\Module $module): bool
{
return MprIconsAssets::registerAssets($module);
}
/**
* Check if self-hosted icon fonts are enabled
*/
public static function isSelfHostEnabled(): bool
{
return MprIconsConfig::isSelfHostEnabled();
}
}

193
src/MprIconsAssets.php Normal file
View File

@@ -0,0 +1,193 @@
<?php
/**
* MprIconsAssets - CSS injection helper for self-hosted icon fonts
*
* Usage in module:
* // In hookHeader or setMedia:
* MprIconsAssets::registerAssets($this);
*
* @package myprestarocks/prestashop-icons
*/
namespace MyPrestaRocks\Icons;
class MprIconsAssets
{
/**
* Get the base path to this package's assets
* Works regardless of which module includes the package
*/
public static function getAssetsPath(): string
{
return dirname(__DIR__) . '/assets';
}
/**
* Get the assets URL relative to module
* Requires module context to determine URL path
*
* @param \Module $module The module instance
* @return string URL path to assets
*/
public static function getAssetsUrl(\Module $module): string
{
// Find the vendor path relative to module
$modulePath = $module->getLocalPath();
$assetsPath = self::getAssetsPath();
// Get relative path from module to assets
$relativePath = str_replace($modulePath, '', $assetsPath);
return $module->getPathUri() . ltrim($relativePath, '/');
}
/**
* Register icon font CSS if self-hosting is enabled
* Call this from your module's hookHeader or setMedia
*
* @param \Module $module The module instance
* @return bool Whether assets were registered
*/
public static function registerAssets(\Module $module): bool
{
// Skip in admin context (admin always has Material Icons)
if (defined('_PS_ADMIN_DIR_')) {
return false;
}
// Check if self-hosting is enabled
if (!MprIconsConfig::isSelfHostEnabled()) {
return false;
}
$iconSet = MprIcons::getIconSet();
$assetsUrl = self::getAssetsUrl($module);
if ($iconSet === MprIcons::MATERIAL) {
$cssFile = $assetsUrl . '/material-icons/material-icons.css';
} else {
$cssFile = $assetsUrl . '/fontawesome/fontawesome.min.css';
}
// Register CSS
$controller = \Context::getContext()->controller;
if ($controller instanceof \FrontController) {
$controller->registerStylesheet(
'mpr-icons-' . $iconSet,
$cssFile,
['media' => 'all', 'priority' => 50]
);
return true;
}
return false;
}
/**
* Get CSS link tag HTML (for manual inclusion)
*
* @param \Module $module The module instance
* @return string HTML link tag or empty string
*/
public static function getCssTag(\Module $module): string
{
if (!MprIconsConfig::isSelfHostEnabled()) {
return '';
}
$iconSet = MprIcons::getIconSet();
$assetsUrl = self::getAssetsUrl($module);
if ($iconSet === MprIcons::MATERIAL) {
$cssFile = $assetsUrl . '/material-icons/material-icons.css';
} else {
$cssFile = $assetsUrl . '/fontawesome/fontawesome.min.css';
}
return '<link rel="stylesheet" href="' . htmlspecialchars($cssFile) . '" media="all">';
}
/**
* Check if bundled assets exist
*
* @param string $iconSet The icon set to check ('fontawesome' or 'material')
* @return bool
*/
public static function assetsExist(string $iconSet): bool
{
$assetsPath = self::getAssetsPath();
if ($iconSet === MprIcons::MATERIAL) {
return file_exists($assetsPath . '/material-icons/material-icons.css');
}
return file_exists($assetsPath . '/fontawesome/fontawesome.min.css');
}
/**
* Copy assets to module's public directory
* Use this if your module needs assets in a specific location
*
* @param string $targetDir Target directory
* @param string $iconSet Which icon set to copy
* @return bool Success
*/
public static function copyAssets(string $targetDir, string $iconSet): bool
{
$assetsPath = self::getAssetsPath();
if ($iconSet === MprIcons::MATERIAL) {
$sourceDir = $assetsPath . '/material-icons';
} else {
$sourceDir = $assetsPath . '/fontawesome';
}
if (!is_dir($sourceDir)) {
return false;
}
return self::recursiveCopy($sourceDir, $targetDir);
}
/**
* Recursively copy directory
*/
private static function recursiveCopy(string $source, string $dest): bool
{
if (!is_dir($dest)) {
if (!mkdir($dest, 0755, true)) {
return false;
}
}
$dir = opendir($source);
if (!$dir) {
return false;
}
while (($file = readdir($dir)) !== false) {
if ($file === '.' || $file === '..') {
continue;
}
$srcPath = $source . '/' . $file;
$destPath = $dest . '/' . $file;
if (is_dir($srcPath)) {
if (!self::recursiveCopy($srcPath, $destPath)) {
closedir($dir);
return false;
}
} else {
if (!copy($srcPath, $destPath)) {
closedir($dir);
return false;
}
}
}
closedir($dir);
return true;
}
}

172
src/MprIconsConfig.php Normal file
View File

@@ -0,0 +1,172 @@
<?php
/**
* MprIconsConfig - Form field generator for icon set configuration
*
* Usage in module admin:
* $fields = array_merge($fields, MprIconsConfig::getFormFields());
* // Then in postProcess:
* MprIconsConfig::processForm();
*
* @package myprestarocks/prestashop-icons
*/
namespace MyPrestaRocks\Icons;
class MprIconsConfig
{
const CONFIG_KEY_SELFHOST = 'front_icon_selfhost';
/**
* Get form fields for HelperForm integration
*
* @param string $formName Form name prefix (default: 'MPR_ICONS')
* @return array HelperForm-compatible field definitions
*/
public static function getFormFields(string $formName = 'MPR_ICONS'): array
{
return [
[
'type' => 'select',
'label' => 'Front Office Icon Set',
'name' => $formName . '_ICON_SET',
'desc' => 'Choose which icon font to use on the front office. Most themes include Font Awesome.',
'options' => [
'query' => [
['id' => MprIcons::FA, 'name' => 'Font Awesome (default)'],
['id' => MprIcons::MATERIAL, 'name' => 'Material Icons'],
],
'id' => 'id',
'name' => 'name',
],
],
[
'type' => 'switch',
'label' => 'Include Icon Fonts from Module',
'name' => $formName . '_SELFHOST',
'desc' => 'Enable this if your theme does not load icon fonts. The module will include the necessary CSS.',
'is_bool' => true,
'values' => [
['id' => 'active_on', 'value' => 1, 'label' => 'Yes'],
['id' => 'active_off', 'value' => 0, 'label' => 'No'],
],
],
];
}
/**
* Get current form values for HelperForm
*
* @param string $formName Form name prefix
* @return array Field values
*/
public static function getFormValues(string $formName = 'MPR_ICONS'): array
{
return [
$formName . '_ICON_SET' => MprIcons::getIconSet(),
$formName . '_SELFHOST' => self::isSelfHostEnabled() ? 1 : 0,
];
}
/**
* Process form submission
*
* @param string $formName Form name prefix
* @return bool Success
*/
public static function processForm(string $formName = 'MPR_ICONS'): bool
{
$iconSet = \Tools::getValue($formName . '_ICON_SET', MprIcons::FA);
$selfHost = (int) \Tools::getValue($formName . '_SELFHOST', 0);
$success = MprIcons::saveIconSet($iconSet);
$success = self::saveSelfHostOption($selfHost) && $success;
return $success;
}
/**
* Check if self-hosting is enabled
*/
public static function isSelfHostEnabled(): bool
{
$value = self::readConfig(self::CONFIG_KEY_SELFHOST);
return $value === '1';
}
/**
* Save self-host option
*/
public static function saveSelfHostOption(int $enabled): bool
{
return self::saveConfig(self::CONFIG_KEY_SELFHOST, $enabled ? '1' : '0');
}
/**
* Read config from mpr_config table
*/
private static function readConfig(string $key): ?string
{
if (!defined('_DB_PREFIX_')) {
return null;
}
try {
$table = _DB_PREFIX_ . MprIcons::CONFIG_TABLE;
$sql = "SELECT `value` FROM `{$table}`
WHERE `module` = '" . pSQL(MprIcons::CONFIG_MODULE) . "'
AND `key` = '" . pSQL($key) . "'";
$result = \Db::getInstance()->getValue($sql);
return $result !== false ? $result : null;
} catch (\Exception $e) {
return null;
}
}
/**
* Save config to mpr_config table
*/
private static function saveConfig(string $key, string $value): bool
{
if (!defined('_DB_PREFIX_')) {
return false;
}
// Ensure table exists
MprIcons::ensureConfigTable();
try {
$table = _DB_PREFIX_ . MprIcons::CONFIG_TABLE;
$now = date('Y-m-d H:i:s');
$sql = "INSERT INTO `{$table}` (`module`, `key`, `value`, `date_add`, `date_upd`)
VALUES ('" . pSQL(MprIcons::CONFIG_MODULE) . "', '" . pSQL($key) . "', '" . pSQL($value) . "', '{$now}', '{$now}')
ON DUPLICATE KEY UPDATE `value` = '" . pSQL($value) . "', `date_upd` = '{$now}'";
return \Db::getInstance()->execute($sql);
} catch (\Exception $e) {
return false;
}
}
/**
* Get complete form input array for a HelperForm
* Includes form wrapper with legend
*
* @param string $formName Form name prefix
* @return array Complete form input structure
*/
public static function getFormInput(string $formName = 'MPR_ICONS'): array
{
return [
'form' => [
'legend' => [
'title' => 'Icon Settings',
'icon' => 'icon-picture',
],
'input' => self::getFormFields($formName),
],
];
}
}